From 165d64ca4ba87ef3e783b42aea37ab9e9bcf54b3 Mon Sep 17 00:00:00 2001 From: Alexander Tismer Date: Mon, 26 Aug 2024 11:39:13 +0200 Subject: [PATCH 001/157] Fix CMake check for NOTFOUND --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 96fd85284..582c5cacd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -158,7 +158,7 @@ endif(DEFINED OCCT_INCLUDE_DIR) # After the OCC paths are properly set up, find_file(OCCT_GP_PNT_HEADER_LOCATION "gp_Pnt.hxx" PATHS ${OpenCASCADE_INCLUDE_DIR} ${OCCT_INCLUDE_DIR}) -if(${OCCT_GP_PNT_HEADER_LOCATION} STREQUAL "GP_PNT_HEADER_LOCATION-NOTFOUND") +if(${OCCT_GP_PNT_HEADER_LOCATION} STREQUAL "OCCT_GP_PNT_HEADER_LOCATION-NOTFOUND") message(FATAL_ERROR "gp_Pnt.hxx can not be found.") endif() From b3bfeaae2555dc01311ef84745ee1b24afd9cde0 Mon Sep 17 00:00:00 2001 From: Alexander Tismer Date: Tue, 27 Aug 2024 11:01:14 +0200 Subject: [PATCH 002/157] Follow recommendation of Sourcery AI --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 582c5cacd..41cb75eaa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -158,7 +158,7 @@ endif(DEFINED OCCT_INCLUDE_DIR) # After the OCC paths are properly set up, find_file(OCCT_GP_PNT_HEADER_LOCATION "gp_Pnt.hxx" PATHS ${OpenCASCADE_INCLUDE_DIR} ${OCCT_INCLUDE_DIR}) -if(${OCCT_GP_PNT_HEADER_LOCATION} STREQUAL "OCCT_GP_PNT_HEADER_LOCATION-NOTFOUND") +if(NOT OCCT_GP_PNT_HEADER_LOCATION) message(FATAL_ERROR "gp_Pnt.hxx can not be found.") endif() From 17e40bf1795a2d13b69923a00312dbe82ebc2c81 Mon Sep 17 00:00:00 2001 From: Pasukhin Dmitry <44947322+dpasukhi@users.noreply.github.com> Date: Thu, 26 Sep 2024 12:15:02 +0100 Subject: [PATCH 003/157] Update INSTALL.md The package located in OCCT gitolite is not well type defined. Better to use GitHub releases. They are up-to-date. --- INSTALL.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index c7b85501c..5c30fd41e 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -31,16 +31,16 @@ cd swig-4.2.1 Build OpenCascade ----------------- -Download/extract version 7.8.1 https://git.dev.opencascade.org/gitweb/?p=occt.git;a=snapshot;h=bd2a789f15235755ce4d1a3b07379a2e062fdc2e;sf=tgz +Download/extract version 7.8.1 https://github.com/Open-Cascade-SAS/OCCT/archive/refs/tags/V7_8_1.tar.gz ```bash -wget -O occt-7.8.1.tgz https://git.dev.opencascade.org/gitweb/?p=occt.git;a=snapshot;h=bd2a789f15235755ce4d1a3b07379a2e062fdc2e;sf=tgz -tar -zxvf occt-7.8.1.tgz +wget https://github.com/Open-Cascade-SAS/OCCT/archive/refs/tags/V7_8_1.tar.gz +tar -xvzf V7_8_1.tar.gz ``` Prepare the build stage: ```bash -cd occt-bd2a789 +cd OCCT-7.8.1 mkdir cmake-build cd cmake-build ``` From 3cfb2e2c993d16b29f46bba8f93ea00432a0c912 Mon Sep 17 00:00:00 2001 From: Pasukhin Dmitry <44947322+dpasukhi@users.noreply.github.com> Date: Thu, 26 Sep 2024 12:38:42 +0100 Subject: [PATCH 004/157] Update INSTALL.md RUN is misleading name. xx/repo is not valid if clone by the path --- INSTALL.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 5c30fd41e..b56cd682e 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -68,19 +68,22 @@ git clone https://github.com/tpaviot/pythonocc-core.git ``` then ```bash -cd xx/pythonocc-core +cd pythonocc-core mkdir cmake-build && cd cmake-build -RUN cmake \ +# Path to the installation folder +INSTALL_DIR= + +cmake \ -DOCCT_INCLUDE_DIR=/opt/occt781/include/opencascade \ -DOCCT_LIBRARY_DIR=/opt/occt781/lib \ -DCMAKE_BUILD_TYPE=Release \ - -DPYTHONOCC_INSTALL_DIRECTORY= \ + -DPYTHONOCC_INSTALL_DIRECTORY=$INSTALL_DIR \ .. -RUN make -j4 && make install +make -j4 && make install -RUN export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/build/occt781/lib +export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/build/occt781/lib ``` If `PYTHONOCC_INSTALL_DIRECTORY` is unset, it will be installed to `site-packages/OCC`. Also add your LD_LIBRARY_PATH in your .bashrc file. From f7cb7426c5455b580c0e32b7acbce6f7e607654f Mon Sep 17 00:00:00 2001 From: Pasukhin Dmitry <44947322+dpasukhi@users.noreply.github.com> Date: Thu, 26 Sep 2024 13:01:16 +0100 Subject: [PATCH 005/157] Update INSTALL.md Making variable name more clear --- INSTALL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index b56cd682e..977dcc57b 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -72,13 +72,13 @@ cd pythonocc-core mkdir cmake-build && cd cmake-build # Path to the installation folder -INSTALL_DIR= +PYTHONOCC_INSTALL_DIRECTORY= cmake \ -DOCCT_INCLUDE_DIR=/opt/occt781/include/opencascade \ -DOCCT_LIBRARY_DIR=/opt/occt781/lib \ -DCMAKE_BUILD_TYPE=Release \ - -DPYTHONOCC_INSTALL_DIRECTORY=$INSTALL_DIR \ + -DPYTHONOCC_INSTALL_DIRECTORY=$PYTHONOCC_INSTALL_DIRECTORY \ .. make -j4 && make install From 389778736bf30efd0229325e1fe3b6d6fce865de Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Wed, 16 Oct 2024 08:48:22 +0200 Subject: [PATCH 006/157] Fix azure-build (conda osx missing and MeshDS test segfault) --- azure-pipelines.yml | 7 +++++++ ci/conda/meta.yaml | 1 - conda-build.yml | 21 ++++++++++++++++----- 3 files changed, 23 insertions(+), 6 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c3c9aa3a7..a2a758c49 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -41,6 +41,13 @@ jobs: py_maj: 3 py_min: 10 +- template: conda-build.yml + parameters: + name: Ubuntu_24_04_python310 + vmImage: 'ubuntu-24.04' + py_maj: 3 + py_min: 10 + - template: conda-build.yml parameters: name: macOS_12_python310 diff --git a/ci/conda/meta.yaml b/ci/conda/meta.yaml index 054db095f..fd02ba7b4 100644 --- a/ci/conda/meta.yaml +++ b/ci/conda/meta.yaml @@ -38,7 +38,6 @@ test: imports: - OCC - OCC.Core.BRepPrimAPI - - OCC.Core.MeshDS - OCC.Core.Tesselator requires: - pyqt >=5 diff --git a/conda-build.yml b/conda-build.yml index 6f4ff69a1..b6b81ffcf 100644 --- a/conda-build.yml +++ b/conda-build.yml @@ -1,8 +1,8 @@ parameters: name: 'Conda build job' - vmImage: 'Ubuntu-18.04' + vmImage: 'ubuntu-22.04' py_maj: '3' - py_min: '6' + py_min: '9' jobs: - job: ${{ parameters.name }} @@ -12,9 +12,20 @@ jobs: vmImage: ${{ parameters.vmImage }} steps: - + # install conda on osx + - ${{ if contains(parameters.vmImage, 'macOS') }}: + - bash: | + curl -O https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh + bash Miniconda3-latest-MacOSX-x86_64.sh -b -p $HOME/miniconda + echo "##vso[task.prependpath]$HOME/miniconda/bin" + displayName: 'Install Miniconda on macOS' #activate conda - - ${{ if or(contains(parameters.vmImage, 'macOS'),contains(parameters.vmImage, 'Ubuntu')) }}: + - ${{ if contains(parameters.vmImage, 'macOS') }}: + - bash: | + source $HOME/miniconda/bin/activate + conda init bash + displayName: 'Add conda to PATH' + - ${{ if contains(parameters.vmImage, 'ubuntu') }}: - bash: echo "##vso[task.prependpath]$CONDA/bin" displayName: 'Add conda to PATH' - ${{ if contains(parameters.vmImage, 'win') }}: @@ -22,7 +33,7 @@ jobs: displayName: 'Add conda to PATH' # Ubuntu install opengl items and remove swig packages that conflict with anaconda - - ${{ if contains(parameters.vmImage, 'Ubuntu') }}: + - ${{ if contains(parameters.vmImage, 'ubuntu') }}: - bash: | sudo apt-get update && \ sudo apt-get -q -y install libglu1-mesa-dev libgl1-mesa-dev libxmu-dev libxi-dev && \ From 11e59d4cfce31c221f918010c25f4f2e052f653b Mon Sep 17 00:00:00 2001 From: Jan-Niclas Walther Date: Sun, 3 Nov 2024 13:16:35 +0100 Subject: [PATCH 007/157] Added numpy interface for selected OCC array types and geometry evaluation --- src/SWIG_files/common/ArrayMacros.i | 525 ++++++++++++++++++++++++++++ src/SWIG_files/wrapper/Geom.i | 21 ++ src/SWIG_files/wrapper/Geom2d.i | 18 + src/SWIG_files/wrapper/Poly.i | 50 +-- src/SWIG_files/wrapper/TColStd.i | 300 ++-------------- src/SWIG_files/wrapper/TColgp.i | 392 ++------------------- src/SWIG_files/wrapper/TShort.i | 54 +-- test/test_core_numpy.py | 156 +++++++++ 8 files changed, 825 insertions(+), 691 deletions(-) create mode 100644 src/SWIG_files/common/ArrayMacros.i create mode 100644 test/test_core_numpy.py diff --git a/src/SWIG_files/common/ArrayMacros.i b/src/SWIG_files/common/ArrayMacros.i new file mode 100644 index 000000000..0f33134ce --- /dev/null +++ b/src/SWIG_files/common/ArrayMacros.i @@ -0,0 +1,525 @@ +%{ +#include + +//Dependencies +#include +#include +#include +#include +#include +#include +#include +%}; +%import Standard.i +%import NCollection.i + +/* macros */ + +%define Array1ExtendIter(T) + + %extend NCollection_Array1 { + %pythoncode { + def __getitem__(self, index): + if index + self.Lower() > self.Upper(): + raise IndexError("index out of range") + else: + return self.Value(index + self.Lower()) + + def __setitem__(self, index, value): + if index + self.Lower() > self.Upper(): + raise IndexError("index out of range") + else: + self.SetValue(index + self.Lower(), value) + + def __len__(self): + return self.Length() + + def __iter__(self): + self.low = self.Lower() + self.up = self.Upper() + self.current = self.Lower() - 1 + return self + + def next(self): + if self.current >= self.Upper(): + raise StopIteration + else: + self.current += 1 + return self.Value(self.current) + + __next__ = next + } + }; + +%enddef + +%define Array1Template(name, array_dtype, T) + + %template(name) NCollection_Array1; + + Array1ExtendIter(T) + + %extend NCollection_Array1 { + void AddDataFromNumpyArray(array_dtype* numpyArray1, int nRows1) { + for (int rowID = 0; rowID < nRows1; rowID++) + { + array_dtype v = numpyArray1[rowID]; + self->SetValue(rowID + 1, v); + } + } + + void BuildNumpyArray(array_dtype* numpyArray1Argout, int nRows1Argout) { + for (int rowID = 0; rowID < nRows1Argout; rowID++) + { + T v = self->Value(rowID + self->Lower()); + numpyArray1Argout[rowID] = v; + } + } + + %pythoncode { + @classmethod + def from_numpy_array(cls, arr): + inst = cls(1, len(arr)) + inst.AddDataFromNumpyArray(arr) + return inst + + def to_numpy_array(self): + return self.BuildNumpyArray(self.Length()) + + } + }; + +%enddef + +%define Array2Template(name, array_dtype, T) + + %template(name) NCollection_Array2; + + %extend NCollection_Array2 { + void AddDataFromNumpyArray(array_dtype* numpyArray2, int nRows2, int nCols2) { + int flatID = 0; + + for (int rowID = 0; rowID < nRows2; rowID++) + { + for (int colID = 0; colID < nCols2; colID++) + { + array_dtype v = numpyArray2[flatID]; + flatID += 1; + self->SetValue(rowID + 1, colID + 1, v); + } + } + } + + void BuildNumpyArray(array_dtype* numpyArray2Argout, int aSizeArgout, int nRows2Argout, int nCols2Argout) { + int flatID = 0; + + for (int rowID = 0; rowID < nRows2Argout; rowID++) + { + for (int colID = 0; colID < nCols2Argout; colID++) + { + T v = self->Value(rowID + self->LowerRow(), colID + self->LowerCol()); + numpyArray2Argout[flatID] = v; + flatID += 1; + } + } + } + + %pythoncode { + @classmethod + def from_numpy_array(cls, arr): + n_rows, n_cols = arr.shape + inst = cls(1, n_rows, 1, n_cols) + inst.AddDataFromNumpyArray(arr) + return inst + + def to_numpy_array(self): + return self.BuildNumpyArray(self.Size(), self.ColLength(), self.RowLength()).reshape(self.ColLength(), self.RowLength()) + + } + }; + +%enddef + +%define Array1Of2DTemplate(name, T) + + %template(name) NCollection_Array1; + + Array1ExtendIter(T) + + %extend NCollection_Array1 { + void AddDataFromNumpyArray(double* numpyArray2, int nRows2, int nDims2) { + double x=0., y=0.; + int flatID = 0; + + for (int rowID = 0; rowID < nRows2; rowID++) + { + x = numpyArray2[flatID]; + y = numpyArray2[flatID + 1]; + flatID += nDims2; + self->SetValue(rowID + 1, T(x, y)); + } + } + + void BuildNumpyArray(double* numpyArray2Argout, int aSizeArgout, int nRows2Argout, int nDims2Argout) { + int flatID = 0; + + for (int rowID = 0; rowID < nRows2Argout; rowID++) + { + T v = self->Value(rowID + self->Lower()); + numpyArray2Argout[flatID] = v.X(); + numpyArray2Argout[flatID + 1] = v.Y(); + flatID += nDims2Argout; + } + } + + %pythoncode { + @classmethod + def from_numpy_array(cls, arr): + inst = cls(1, len(arr)) + inst.AddDataFromNumpyArray(arr) + return inst + + def to_numpy_array(self): + return self.BuildNumpyArray(self.Size() * 2, self.Length(), 2).reshape(self.Length(), 2) + + } + }; + +%enddef + +%define Array1Of3DTemplate(name, T) + + %template(name) NCollection_Array1; + + Array1ExtendIter(T) + + %extend NCollection_Array1 { + void AddDataFromNumpyArray(double* numpyArray2, int nRows2, int nDims2) { + double x=0., y=0., z=0.; + int flatID = 0; + + for (int rowID = 0; rowID < nRows2; rowID++) + { + x = numpyArray2[flatID]; + y = numpyArray2[flatID + 1]; + z = numpyArray2[flatID + 2]; + flatID += nDims2; + self->SetValue(rowID + 1, T(x, y, z)); + } + } + + void BuildNumpyArray(double* numpyArray2Argout, int aSizeArgout, int nRows2Argout, int nDims2Argout) { + int flatID = 0; + + for (int rowID = 0; rowID < nRows2Argout; rowID++) + { + T v = self->Value(rowID + self->Lower()); + numpyArray2Argout[flatID] = v.X(); + numpyArray2Argout[flatID + 1] = v.Y(); + numpyArray2Argout[flatID + 2] = v.Z(); + flatID += nDims2Argout; + } + } + + %pythoncode { + @classmethod + def from_numpy_array(cls, arr): + inst = cls(1, len(arr)) + inst.AddDataFromNumpyArray(arr) + return inst + + def to_numpy_array(self): + return self.BuildNumpyArray(self.Size() * 3, self.Length(), 3).reshape(self.Length(), 3) + + } + }; + +%enddef + +%define Array1OfTriaTemplate(name, T) + + %template(name) NCollection_Array1; + + Array1ExtendIter(T) + + %extend NCollection_Array1 { + void AddDataFromNumpyArray(long long* numpyArray2, int nRows2, int nDims2) { + long long p1=0, p2=0, p3=0; + int flatID = 0; + + for (int rowID = 0; rowID < nRows2; rowID++) + { + p1 = numpyArray2[flatID]; + p2 = numpyArray2[flatID + 1]; + p3 = numpyArray2[flatID + 2]; + flatID += nDims2; + self->SetValue(rowID + 1, T(p1, p2, p3)); + } + } + + void BuildNumpyArray(long long* numpyArray2Argout, int aSizeArgout, int nRows2Argout, int nDims2Argout) { + int flatID = 0; + + for (int rowID = 0; rowID < nRows2Argout; rowID++) + { + T tria = self->Value(rowID + self->Lower()); + numpyArray2Argout[flatID] = tria.Value(1); + numpyArray2Argout[flatID + 1] = tria.Value(2); + numpyArray2Argout[flatID + 2] = tria.Value(3); + flatID += nDims2Argout; + } + } + + %pythoncode { + @classmethod + def from_numpy_array(cls, arr): + inst = cls(1, len(arr)) + inst.AddDataFromNumpyArray(arr) + return inst + + def to_numpy_array(self): + return self.BuildNumpyArray(self.Size() * 3, self.Length(), 3).reshape(self.Length(), 3) + + } + }; + +%enddef + +%define Array2Of2DTemplate(name, T) + + %template(name) NCollection_Array2; + + %extend NCollection_Array2 { + void AddDataFromNumpyArray(double* numpyArray3, int nRows3, int nCols3, int nDims3) { + double x=0., y=0.; + int flatID = 0; + + for (int rowID = 0; rowID < nRows3; rowID++) + { + for (int colID = 0; colID < nCols3; colID++) + { + x = numpyArray3[flatID]; + y = numpyArray3[flatID + 1]; + flatID += nDims3; + self->SetValue(rowID + 1, colID + 1, T(x, y)); + } + } + } + + void BuildNumpyArray(double* numpyArray3Argout, int aSizeArgout, int nRows3Argout, int nCols3Argout, int nDims3Argout) { + int flatID = 0; + + for (int rowID = 0; rowID < nRows3Argout; rowID++) + { + for (int colID = 0; colID < nCols3Argout; colID++) + { + T v = self->Value(rowID + self->LowerRow(), colID + self->LowerCol()); + numpyArray3Argout[flatID] = v.X(); + numpyArray3Argout[flatID + 1] = v.Y(); + flatID += nDims3Argout; + } + } + } + + %pythoncode { + @classmethod + def from_numpy_array(cls, arr): + n_rows, n_cols = arr.shape[:-1] + inst = cls(1, n_rows, 1, n_cols) + inst.AddDataFromNumpyArray(arr) + return inst + + def to_numpy_array(self): + return self.BuildNumpyArray( + self.Size() * 2, self.ColLength(), self.RowLength(), 2 + ).reshape(self.ColLength(), self.RowLength(), 2) + + } + }; + +%enddef + +%define Array2Of3DTemplate(name, T) + + %template(name) NCollection_Array2; + + %extend NCollection_Array2 { + void AddDataFromNumpyArray(double* numpyArray3, int nRows3, int nCols3, int nDims3) { + double x=0., y=0., z=0.; + int flatID = 0; + + for (int rowID = 0; rowID < nRows3; rowID++) + { + for (int colID = 0; colID < nCols3; colID++) + { + x = numpyArray3[flatID]; + y = numpyArray3[flatID + 1]; + z = numpyArray3[flatID + 2]; + flatID += nDims3; + self->SetValue(rowID + 1, colID + 1, T(x, y, z)); + } + } + } + + void BuildNumpyArray(double* numpyArray3Argout, int aSizeArgout, int nRows3Argout, int nCols3Argout, int nDims3Argout) { + int flatID = 0; + + for (int rowID = 0; rowID < nRows3Argout; rowID++) + { + for (int colID = 0; colID < nCols3Argout; colID++) + { + T v = self->Value(rowID + self->LowerRow(), colID + self->LowerCol()); + numpyArray3Argout[flatID] = v.X(); + numpyArray3Argout[flatID + 1] = v.Y(); + numpyArray3Argout[flatID + 2] = v.Z(); + flatID += nDims3Argout; + } + } + } + + %pythoncode { + @classmethod + def from_numpy_array(cls, arr): + n_rows, n_cols = arr.shape[:-1] + inst = cls(1, n_rows, 1, n_cols) + inst.AddDataFromNumpyArray(arr) + return inst + + def to_numpy_array(self): + return self.BuildNumpyArray( + self.Size() * 3, self.ColLength(), self.RowLength(), 3 + ).reshape(self.ColLength(), self.RowLength(), 3) + + } + }; + +%enddef + +%define CurveArrayEvalExtend(T) + %extend T{ + void evalNumpy(double* numpyArrayU, int nRowsU, double* numpyArrayResultArgout, int aSizeArgout, int nDimsResult) { + int flatID = 0; + + for (int rowID = 0; rowID < nRowsU; rowID++) + { + double u = numpyArrayU[rowID]; + gp_Pnt res = self->Value(u); + numpyArrayResultArgout[flatID] = res.X(); + numpyArrayResultArgout[flatID + 1] = res.Y(); + numpyArrayResultArgout[flatID + 2] = res.Z(); + flatID += nDimsResult; + } + } + + void evalDerivativeNumpy(double* numpyArrayU, int nRowsU, double* numpyArrayResultArgout, int aSizeArgout, int nDimsResult, int nU) { + int flatID = 0; + + for (int rowID = 0; rowID < nRowsU; rowID++) + { + double u = numpyArrayU[rowID]; + gp_Vec res = self->DN(u, nU); + numpyArrayResultArgout[flatID] = res.X(); + numpyArrayResultArgout[flatID + 1] = res.Y(); + numpyArrayResultArgout[flatID + 2] = res.Z(); + flatID += nDimsResult; + } + } + + %pythoncode { + def eval_numpy_array(self, u_arr): + return self.evalNumpy(u_arr, len(u_arr) * 3, 3).reshape(-1, 3) + + def eval_derivative_numpy_array(self, u_arr, n_u): + return self.evalDerivativeNumpy(u_arr, len(u_arr) * 3, 3, n_u).reshape(-1, 3) + } + + }; + +%enddef + + +%define SurfaceArrayEvalExtend(T) + %extend T{ + void evalNumpy(double* numpyArrayUV, int nRowsUV, int nColUV, double* numpyArrayResultArgout, int aSizeArgout, int nDimsResult) { + int flatID = 0; + + for (int rowID = 0; rowID < nRowsUV; rowID++) + { + double u = numpyArrayUV[rowID * nColUV]; + double v = numpyArrayUV[rowID * nColUV + 1]; + gp_Pnt res = self->Value(u, v); + numpyArrayResultArgout[flatID] = res.X(); + numpyArrayResultArgout[flatID + 1] = res.Y(); + numpyArrayResultArgout[flatID + 2] = res.Z(); + flatID += nDimsResult; + } + } + + void evalDerivativeNumpy(double* numpyArrayUV, int nRowsUV, int nColUV, double* numpyArrayResultArgout, int aSizeArgout, int nDimsResult, int nU, int nV) { + int flatID = 0; + + for (int rowID = 0; rowID < nRowsUV; rowID++) + { + double u = numpyArrayUV[rowID * nColUV]; + double v = numpyArrayUV[rowID * nColUV + 1]; + gp_Vec res = self->DN(u, v, nU, nV); + numpyArrayResultArgout[flatID] = res.X(); + numpyArrayResultArgout[flatID + 1] = res.Y(); + numpyArrayResultArgout[flatID + 2] = res.Z(); + flatID += nDimsResult; + } + } + + %pythoncode { + def eval_numpy_array(self, u_arr): + return self.evalNumpy(u_arr, len(u_arr) * 3, 3).reshape(-1, 3) + + def eval_derivative_numpy_array(self, u_arr, n_u): + return self.evalDerivativeNumpy(u_arr, len(u_arr) * 3, 3, n_u).reshape(-1, 3) + } + + }; + +%enddef + +%define Curve2dArrayEvalExtend(T) + %extend T{ + void evalNumpy(double* numpyArrayU, int nRowsU, double* numpyArrayResultArgout, int aSizeArgout, int nDimsResult) { + int flatID = 0; + + for (int rowID = 0; rowID < nRowsU; rowID++) + { + double u = numpyArrayU[rowID]; + gp_Pnt2d res = self->Value(u); + numpyArrayResultArgout[flatID] = res.X(); + numpyArrayResultArgout[flatID + 1] = res.Y(); + flatID += nDimsResult; + } + } + + void evalDerivativeNumpy(double* numpyArrayU, int nRowsU, double* numpyArrayResultArgout, int aSizeArgout, int nDimsResult, int nU) { + int flatID = 0; + + for (int rowID = 0; rowID < nRowsU; rowID++) + { + double u = numpyArrayU[rowID]; + gp_Vec2d res = self->DN(u, nU); + numpyArrayResultArgout[flatID] = res.X(); + numpyArrayResultArgout[flatID + 1] = res.Y(); + flatID += nDimsResult; + } + } + + %pythoncode { + def eval_numpy_array(self, u_arr): + return self.evalNumpy(u_arr, len(u_arr) * 2, 2).reshape(-1, 2) + + def eval_derivative_numpy_array(self, u_arr, n_u): + return self.evalDerivativeNumpy(u_arr, len(u_arr) * 2, 2, n_u).reshape(-1, 2) + } + + }; + +%enddef + +/* end macros declaration */ \ No newline at end of file diff --git a/src/SWIG_files/wrapper/Geom.i b/src/SWIG_files/wrapper/Geom.i index 184805eb7..b7d69c278 100644 --- a/src/SWIG_files/wrapper/Geom.i +++ b/src/SWIG_files/wrapper/Geom.i @@ -52,6 +52,17 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geom.html" #include #include %}; + +%{ +#define SWIG_FILE_WITH_INIT +%} +%include ../common/numpy.i +%include ../common/ArrayMacros.i + +%init %{ + import_array(); +%} + %import Standard.i %import NCollection.i %import gp.i @@ -60,6 +71,8 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geom.html" %import TColStd.i %pythoncode { +import numpy as np + from enum import IntEnum from OCC.Core.Exception import * }; @@ -125,6 +138,10 @@ from OCC.Core.Exception import * }; /* end templates declaration */ +%apply (double* IN_ARRAY1, int DIM1) { (double* numpyArrayU, int nRowsU) }; +%apply (double* IN_ARRAY2, int DIM1, int DIM2) { (double* numpyArrayUV, int nRowsUV, int nColUV) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArrayResultArgout, int aSizeArgout) }; + /* typedefs */ typedef NCollection_Sequence> Geom_SequenceOfBSplineSurface; /* end typedefs declaration */ @@ -1561,6 +1578,8 @@ Computes the point of parameter u on . if the curve is periodic then the r } }; +CurveArrayEvalExtend(Geom_Curve) + /******************* * class Geom_Point * *******************/ @@ -2167,6 +2186,8 @@ Computes the point of parameter (u, v) on the surface. //! it is implemented wit } }; +SurfaceArrayEvalExtend(Geom_Surface) + /******************** * class Geom_Vector * ********************/ diff --git a/src/SWIG_files/wrapper/Geom2d.i b/src/SWIG_files/wrapper/Geom2d.i index 416bb07df..1bb24a12a 100644 --- a/src/SWIG_files/wrapper/Geom2d.i +++ b/src/SWIG_files/wrapper/Geom2d.i @@ -52,6 +52,17 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geom2d.html" #include #include %}; + +%{ +#define SWIG_FILE_WITH_INIT +%} +%include ../common/numpy.i +%include ../common/ArrayMacros.i + +%init %{ + import_array(); +%} + %import Standard.i %import NCollection.i %import gp.i @@ -60,6 +71,8 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geom2d.html" %import TColStd.i %pythoncode { +import numpy as np + from enum import IntEnum from OCC.Core.Exception import * }; @@ -98,6 +111,9 @@ from OCC.Core.Exception import * /* templates */ /* end templates declaration */ +%apply (double* IN_ARRAY1, int DIM1) { (double* numpyArrayU, int nRowsU) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArrayResultArgout, int aSizeArgout) }; + /* typedefs */ /* end typedefs declaration */ @@ -1425,6 +1441,8 @@ Computes the point of parameter u on . if the curve is periodic then the r } }; +Curve2dArrayEvalExtend(Geom2d_Curve) + /********************* * class Geom2d_Point * *********************/ diff --git a/src/SWIG_files/wrapper/Poly.i b/src/SWIG_files/wrapper/Poly.i index f90ba7698..91c98a401 100644 --- a/src/SWIG_files/wrapper/Poly.i +++ b/src/SWIG_files/wrapper/Poly.i @@ -55,6 +55,17 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_poly.html" #include #include %}; + +%{ +#define SWIG_FILE_WITH_INIT +%} +%include ../common/numpy.i +%include ../common/ArrayMacros.i + +%init %{ + import_array(); +%} + %import Standard.i %import NCollection.i %import gp.i @@ -65,6 +76,8 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_poly.html" %import TShort.i %pythoncode { +import numpy as np + from enum import IntEnum from OCC.Core.Exception import * }; @@ -99,41 +112,10 @@ enum { /* end handles declaration */ /* templates */ -%template(Poly_Array1OfTriangle) NCollection_Array1; - -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) +%apply (long long* IN_ARRAY2, int DIM1, int DIM2) { (long long* numpyArray2, int nRows2, int nDims2) }; +%apply (long long* ARGOUT_ARRAY1, int DIM1) { (long long* numpyArray2Argout, int aSizeArgout) }; +Array1OfTriaTemplate(Poly_Array1OfTriangle, Poly_Triangle) - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(Poly_ListOfTriangulation) NCollection_List>; %extend NCollection_List> { diff --git a/src/SWIG_files/wrapper/TColStd.i b/src/SWIG_files/wrapper/TColStd.i index 952dcfeec..0b06a45f8 100644 --- a/src/SWIG_files/wrapper/TColStd.i +++ b/src/SWIG_files/wrapper/TColStd.i @@ -49,11 +49,24 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_tcolstd.html" #include #include %}; + +%{ +#define SWIG_FILE_WITH_INIT +%} +%include ../common/numpy.i +%include ../common/ArrayMacros.i + +%init %{ + import_array(); +%} + %import Standard.i %import NCollection.i %import TCollection.i %pythoncode { +import numpy as np + from enum import IntEnum from OCC.Core.Exception import * }; @@ -93,289 +106,40 @@ from OCC.Core.Exception import * /* templates */ %template(TColStd_Array1OfAsciiString) NCollection_Array1; +Array1ExtendIter(TCollection_AsciiString) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(TColStd_Array1OfBoolean) NCollection_Array1; +Array1ExtendIter(Standard_Boolean) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(TColStd_Array1OfByte) NCollection_Array1; +Array1ExtendIter(Standard_Byte) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(TColStd_Array1OfCharacter) NCollection_Array1; +Array1ExtendIter(Standard_Character) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(TColStd_Array1OfExtendedString) NCollection_Array1; +Array1ExtendIter(TCollection_ExtendedString) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; -%template(TColStd_Array1OfInteger) NCollection_Array1; - -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; -%template(TColStd_Array1OfReal) NCollection_Array1; +%apply (long long* IN_ARRAY1, int DIM1) { (long long* numpyArray1, int nRows1) }; +%apply (long long* ARGOUT_ARRAY1, int DIM1) { (long long* numpyArray1Argout, int nRows1Argout) }; +Array1Template(TColStd_Array1OfInteger, long long, Standard_Integer) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) +%apply (double* IN_ARRAY1, int DIM1) { (double* numpyArray1, int nRows1) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArray1Argout, int nRows1Argout) }; +Array1Template(TColStd_Array1OfReal, double, Standard_Real) - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(TColStd_Array1OfTransient) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(TColStd_Array2OfBoolean) NCollection_Array2; %template(TColStd_Array2OfCharacter) NCollection_Array2; -%template(TColStd_Array2OfInteger) NCollection_Array2; -%template(TColStd_Array2OfReal) NCollection_Array2; + +%apply (long long* IN_ARRAY2, int DIM1, int DIM2) { (long long* numpyArray2, int nRows2, int nCols2) }; +%apply (long long* ARGOUT_ARRAY1, int DIM1) { (long long* numpyArray2Argout, int aSizeArgout) }; +Array2Template(TColStd_Array2OfInteger, long long, Standard_Integer) +%apply (double* IN_ARRAY2, int DIM1, int DIM2) { (double* numpyArray2, int nRows2, int nCols2) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArray2Argout, int aSizeArgout) }; +Array2Template(TColStd_Array2OfReal, double, Standard_Real) %template(TColStd_Array2OfTransient) NCollection_Array2>; %template(TColStd_DataMapOfAsciiStringInteger) NCollection_DataMap; %template(TColStd_DataMapOfIntegerInteger) NCollection_DataMap; diff --git a/src/SWIG_files/wrapper/TColgp.i b/src/SWIG_files/wrapper/TColgp.i index 1f1fe8297..a8a81653c 100644 --- a/src/SWIG_files/wrapper/TColgp.i +++ b/src/SWIG_files/wrapper/TColgp.i @@ -49,10 +49,23 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_tcolgp.html" #include #include %}; + +%{ +#define SWIG_FILE_WITH_INIT +%} +%include ../common/numpy.i +%include ../common/ArrayMacros.i + +%init %{ + import_array(); +%} + %import Standard.i %import NCollection.i %pythoncode { +import numpy as np + from enum import IntEnum from OCC.Core.Exception import * }; @@ -96,367 +109,37 @@ from OCC.Core.Exception import * %wrap_handle(TColgp_HSequenceOfDir) /* end handles declaration */ -/* templates */ -%template(TColgp_Array1OfCirc2d) NCollection_Array1; - -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; -%template(TColgp_Array1OfDir) NCollection_Array1; - -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; -%template(TColgp_Array1OfDir2d) NCollection_Array1; -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) +/* templates */ +%apply (double* IN_ARRAY2, int DIM1, int DIM2) { (double* numpyArray2, int nRows2, int nDims2) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArray2Argout, int aSizeArgout) }; - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; +%template(TColgp_Array1OfCirc2d) NCollection_Array1; +Array1ExtendIter(gp_Circ2d) +Array1Of3DTemplate(TColgp_Array1OfDir, gp_Dir) +Array1Of2DTemplate(TColgp_Array1OfDir2d, gp_Dir2d) %template(TColgp_Array1OfLin2d) NCollection_Array1; +Array1ExtendIter(gp_Lin2d) +Array1Of3DTemplate(TColgp_Array1OfPnt, gp_Pnt) +Array1Of2DTemplate(TColgp_Array1OfPnt2d, gp_Pnt2d) +Array1Of3DTemplate(TColgp_Array1OfVec, gp_Vec) +Array1Of2DTemplate(TColgp_Array1OfVec2d, gp_Vec2d) +Array1Of2DTemplate(TColgp_Array1OfXY, gp_XY) +Array1Of3DTemplate(TColgp_Array1OfXYZ, gp_XYZ) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; -%template(TColgp_Array1OfPnt) NCollection_Array1; - -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; -%template(TColgp_Array1OfPnt2d) NCollection_Array1; - -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; -%template(TColgp_Array1OfVec) NCollection_Array1; - -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; -%template(TColgp_Array1OfVec2d) NCollection_Array1; - -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; -%template(TColgp_Array1OfXY) NCollection_Array1; +%apply (double* IN_ARRAY3, int DIM1, int DIM2, int DIM3) { (double* numpyArray3, int nRows3, int nCols3, int nDims3) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArray3Argout, int aSizeArgout) }; -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; -%template(TColgp_Array1OfXYZ) NCollection_Array1; - -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(TColgp_Array2OfCirc2d) NCollection_Array2; -%template(TColgp_Array2OfDir) NCollection_Array2; -%template(TColgp_Array2OfDir2d) NCollection_Array2; +Array2Of3DTemplate(TColgp_Array2OfDir, gp_Dir) +Array2Of2DTemplate(TColgp_Array2OfDir2d, gp_Dir2d) %template(TColgp_Array2OfLin2d) NCollection_Array2; -%template(TColgp_Array2OfPnt) NCollection_Array2; -%template(TColgp_Array2OfPnt2d) NCollection_Array2; -%template(TColgp_Array2OfVec) NCollection_Array2; -%template(TColgp_Array2OfVec2d) NCollection_Array2; -%template(TColgp_Array2OfXY) NCollection_Array2; -%template(TColgp_Array2OfXYZ) NCollection_Array2; +Array2Of3DTemplate(TColgp_Array2OfPnt, gp_Pnt) +Array2Of2DTemplate(TColgp_Array2OfPnt2d, gp_Pnt2d) +Array2Of3DTemplate(TColgp_Array2OfVec, gp_Vec) +Array2Of2DTemplate(TColgp_Array2OfVec2d, gp_Vec2d) +Array2Of2DTemplate(TColgp_Array2OfXY, gp_XY) +Array2Of3DTemplate(TColgp_Array2OfXYZ, gp_XYZ) %template(TColgp_SequenceOfArray1OfPnt2d) NCollection_Sequence>; %extend NCollection_Sequence> { @@ -465,6 +148,7 @@ from OCC.Core.Exception import * return self.Size() } }; + %template(TColgp_SequenceOfAx1) NCollection_Sequence; %extend NCollection_Sequence { diff --git a/src/SWIG_files/wrapper/TShort.i b/src/SWIG_files/wrapper/TShort.i index daf5dc8ab..c7d5be26c 100644 --- a/src/SWIG_files/wrapper/TShort.i +++ b/src/SWIG_files/wrapper/TShort.i @@ -49,10 +49,23 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_tshort.html" #include #include %}; + +%{ +#define SWIG_FILE_WITH_INIT +%} +%include ../common/numpy.i +%include ../common/ArrayMacros.i + +%init %{ + import_array(); +%} + %import Standard.i %import NCollection.i %pythoncode { +import numpy as np + from enum import IntEnum from OCC.Core.Exception import * }; @@ -72,42 +85,13 @@ from OCC.Core.Exception import * /* end handles declaration */ /* templates */ -%template(TShort_Array1OfShortReal) NCollection_Array1; - -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) +%apply (float* IN_ARRAY1, int DIM1) { (float* numpyArray1, int nRows1) }; +%apply (float* ARGOUT_ARRAY1, int DIM1) { (float* numpyArray1Argout, int nRows1Argout) }; +Array1Template(TShort_Array1OfShortReal, float, Standard_ShortReal) - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; -%template(TShort_Array2OfShortReal) NCollection_Array2; +%apply (float* IN_ARRAY2, int DIM1, int DIM2) { (float* numpyArray2, int nRows2, int nCols2) }; +%apply (float* ARGOUT_ARRAY1, int DIM1) { (float* numpyArray2Argout, int aSizeArgout) }; +Array2Template(TShort_Array2OfShortReal, float, Standard_ShortReal) %template(TShort_SequenceOfShortReal) NCollection_Sequence; %extend NCollection_Sequence { diff --git a/test/test_core_numpy.py b/test/test_core_numpy.py new file mode 100644 index 000000000..b31581ff5 --- /dev/null +++ b/test/test_core_numpy.py @@ -0,0 +1,156 @@ +import numpy as np +import pytest +from OCC.Core.Geom import Geom_Line, Geom_Plane +from OCC.Core.Geom2d import Geom2d_Line +from OCC.Core.gp import gp_Dir, gp_Dir2d, gp_Pnt, gp_Pnt2d +from OCC.Core.Poly import Poly_Array1OfTriangle +from OCC.Core.TColgp import ( + TColgp_Array1OfDir, + TColgp_Array1OfDir2d, + TColgp_Array1OfPnt, + TColgp_Array1OfPnt2d, + TColgp_Array1OfVec, + TColgp_Array1OfVec2d, + TColgp_Array1OfXY, + TColgp_Array1OfXYZ, + TColgp_Array2OfDir, + TColgp_Array2OfDir2d, + TColgp_Array2OfPnt, + TColgp_Array2OfPnt2d, + TColgp_Array2OfVec, + TColgp_Array2OfVec2d, + TColgp_Array2OfXY, + TColgp_Array2OfXYZ, +) +from OCC.Core.TColStd import ( + TColStd_Array1OfInteger, + TColStd_Array1OfReal, + TColStd_Array2OfInteger, + TColStd_Array2OfReal, +) +from OCC.Core.TShort import TShort_Array1OfShortReal, TShort_Array2OfShortReal + + +@pytest.fixture +def array_types_2d(): + return { + TColgp_Array1OfPnt2d, + TColgp_Array1OfVec2d, + TColgp_Array1OfDir2d, + TColgp_Array1OfXY, + TColgp_Array2OfPnt2d, + TColgp_Array2OfVec2d, + TColgp_Array2OfDir2d, + TColgp_Array2OfXY, + } + + +@pytest.fixture +def normalizing_array_types(): + return { + TColgp_Array1OfDir, + TColgp_Array1OfDir2d, + TColgp_Array2OfDir, + TColgp_Array2OfDir2d, + } + + +@pytest.mark.parametrize( + "type_,arr", + [ + (TShort_Array1OfShortReal, np.random.rand(500).astype(np.float32)), + (TColStd_Array1OfInteger, np.arange(500).astype(int)), + (TColStd_Array1OfReal, np.random.rand(500)), + (TShort_Array2OfShortReal, np.random.rand(101, 201).astype(np.float32)), + (TColStd_Array2OfInteger, np.arange(101 * 201).reshape(101, 201).astype(int)), + (TColStd_Array2OfReal, np.random.rand(101, 201)), + (Poly_Array1OfTriangle, np.arange(303).reshape(-1, 3).astype(int)), + ], +) +def test_standard_array(type_, arr): + arr_occ = type_.from_numpy_array(arr) + arr_out = arr_occ.to_numpy_array() + assert np.all(arr_out == arr) + + +@pytest.mark.parametrize( + "type_", + ( + TColgp_Array1OfPnt, + TColgp_Array1OfVec, + TColgp_Array1OfDir, + TColgp_Array1OfXYZ, + TColgp_Array1OfPnt2d, + TColgp_Array1OfVec2d, + TColgp_Array1OfDir2d, + TColgp_Array1OfXY, + ), +) +def test_array1_of_gp(type_, array_types_2d, normalizing_array_types): + points = np.random.rand(10001, 3) + + p = points[:, :-1] if type_ in array_types_2d else points + + gp_arr = type_.from_numpy_array(p) + assert gp_arr.Size() == len(points) + np_arr_out = gp_arr.to_numpy_array() + + if type_ in normalizing_array_types: + assert np.all(np_arr_out == p / np.linalg.norm(p, axis=-1, keepdims=True)) + else: + assert np.all(np_arr_out == p) + + +@pytest.mark.parametrize( + "type_", + ( + TColgp_Array2OfPnt, + TColgp_Array2OfVec, + TColgp_Array2OfDir, + TColgp_Array2OfXYZ, + TColgp_Array2OfPnt2d, + TColgp_Array2OfVec2d, + TColgp_Array2OfDir2d, + TColgp_Array2OfXY, + ), +) +def test_array2_of_gp(type_, array_types_2d, normalizing_array_types): + points = np.random.rand(201, 101, 3) + + p = points[..., :-1] if type_ in array_types_2d else points + arr_occ = type_.from_numpy_array(p) + np_arr_out = arr_occ.to_numpy_array() + + if type_ in normalizing_array_types: + assert np.all(np_arr_out == p / np.linalg.norm(p, axis=-1, keepdims=True)) + else: + assert np.all(np_arr_out == p) + + +@pytest.mark.parametrize( + "line", + ( + Geom2d_Line(gp_Pnt2d(0.0, 0.0), gp_Dir2d(1.0, 0.15)), + Geom_Line(gp_Pnt(0.0, 0.0, 0.0), gp_Dir(1.0, 0.15, 0.0)), + ), +) +def test_curve_eval(line): + u = np.arange(5, dtype=float) + points = line.eval_numpy_array(u) + assert np.all(np.linalg.norm(points, axis=1) == u) + + +def test_surface_eval(): + n_vec = np.array([1.0, 0.15, 0.0]) + u = np.arange(5, dtype=float) + v = np.arange(6, dtype=float) + + plane = Geom_Plane(gp_Pnt(0.0, 0.0, 0.0), gp_Dir(*n_vec)) + uv = np.dstack(np.meshgrid(u, v, indexing="ij")).reshape(-1, 2) + arr_out = plane.eval_numpy_array(uv).reshape(len(u), len(v), -1) + + v_vec = np.array([0.0, 0.0, 1.0]) + u_vec = np.cross(v_vec, n_vec / np.linalg.norm(n_vec)) + res = u[:, None, None] * u_vec + v[None, :, None] * v_vec + + assert np.all(res == arr_out) From 28e56953321e9e780e4e3a603a80dcda3b9c2585 Mon Sep 17 00:00:00 2001 From: Jan-Niclas Walther Date: Sun, 3 Nov 2024 13:17:52 +0100 Subject: [PATCH 008/157] Fixed some issues and unwanted sideeffects in Qt UI backend --- src/Display/SimpleGui.py | 9 ++++--- src/Display/qtDisplay.py | 3 +-- test/test_display_sideeffects.py | 45 ++++++++++++++++++++++++++++++++ 3 files changed, 51 insertions(+), 6 deletions(-) create mode 100644 test/test_display_sideeffects.py diff --git a/src/Display/SimpleGui.py b/src/Display/SimpleGui.py index 033dbf8a8..678faab36 100644 --- a/src/Display/SimpleGui.py +++ b/src/Display/SimpleGui.py @@ -23,7 +23,7 @@ from typing import Any, Callable, List, Optional, Tuple from OCC import VERSION -from OCC.Display.backend import load_backend, get_qt_modules +from OCC.Display.backend import get_qt_modules, load_backend from OCC.Display.OCCViewer import OffscreenRenderer log = logging.getLogger(__name__) @@ -86,6 +86,7 @@ def call_function(s, func: Callable) -> None: # tkinter SimpleGui if used_backend == "tk": import tkinter as tk + from OCC.Display.tkDisplay import tkViewer3d root = tk.Tk() @@ -145,7 +146,7 @@ def add_function_to_menu(self, menu_name: str, _callable: Callable) -> None: # point on curve _id = wx.NewId() check_callable(_callable) - if not menu_name in self._menus: + if menu_name not in self._menus: raise ValueError(f"the menu item {menu_name} does not exist") self._menus[menu_name].Append( _id, _callable.__name__.replace("_", " ").lower() @@ -215,7 +216,7 @@ def add_menu(self, menu_name: str) -> None: def add_function_to_menu(self, menu_name: str, _callable: Callable) -> None: check_callable(_callable) - if not menu_name in self._menus: + if menu_name not in self._menus: raise ValueError(f"the menu item {menu_name} does not exist") qaction = ( QtGui.QAction @@ -227,7 +228,7 @@ def add_function_to_menu(self, menu_name: str, _callable: Callable) -> None: self._menus[menu_name].addAction(_action) # following couple of lines is a tweak to enable ipython --gui='qt' - app = QtWidgets.QApplication(sys.argv) + app = QtWidgets.QApplication.instance() or QtWidgets.QApplication(sys.argv) win = MainWindow() win.resize(size[0] - 1, size[1] - 1) win.show() diff --git a/src/Display/qtDisplay.py b/src/Display/qtDisplay.py index 35836f756..848157186 100644 --- a/src/Display/qtDisplay.py +++ b/src/Display/qtDisplay.py @@ -19,7 +19,6 @@ import logging import os -import sys from OCC.Core.AIS import AIS_Manipulator from OCC.Core.gp import gp_Trsf @@ -28,8 +27,8 @@ QtCore, QtGui, QtWidgets, QtOpenGL = get_qt_modules() -logging.basicConfig(stream=sys.stdout, level=logging.DEBUG) log = logging.getLogger(__name__) +log.setLevel(logging.DEBUG) class qtBaseViewer(QtWidgets.QWidget): diff --git a/test/test_display_sideeffects.py b/test/test_display_sideeffects.py new file mode 100644 index 000000000..cc1f81226 --- /dev/null +++ b/test/test_display_sideeffects.py @@ -0,0 +1,45 @@ +from unittest.mock import patch + +import pytest +from OCC.Core.BRepPrimAPI import BRepPrimAPI_MakeCylinder +from OCC.Display.backend import load_backend +from OCC.Display.SimpleGui import init_display + + +@pytest.fixture +def cylinder_shape(): + return BRepPrimAPI_MakeCylinder(5, 6).Shape() + + +@pytest.fixture(params=["pyqt5", "pyqt6", "pyside2", "pyside6", "wx", "tk"]) +def backend(request): + backend_str = request.param + try: + if backend_str != "tk": + assert load_backend(backend_str) == backend_str + return backend_str + except (AssertionError, ValueError) as e: + pytest.skip(str(e)) + + +def plot_cylinder(cylinder_shape, backend): + display, start_display, add_menu, add_function_to_menu = init_display(backend) + display.DisplayShape(cylinder_shape, update=True) + del display + + +def test_global_log_level_change(cylinder_shape, backend): + with patch("logging.basicConfig") as logcfg: + plot_cylinder(cylinder_shape, backend) + assert not logcfg.called + + +def test_cylinder_plot(cylinder_shape, backend): + plot_cylinder(cylinder_shape, backend) + + +def test_cylinder_plot_again(cylinder_shape, backend): + """ + To catch problems if more than display is intialized + """ + plot_cylinder(cylinder_shape, backend) From 493d0a179e3c055aac453533dc242d8a0ac0cc11 Mon Sep 17 00:00:00 2001 From: Jan-Niclas Walther Date: Thu, 7 Nov 2024 23:06:20 +0100 Subject: [PATCH 009/157] Add bandit.yml to stop Codacy flagging assert --- bandit.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 bandit.yml diff --git a/bandit.yml b/bandit.yml new file mode 100644 index 000000000..ec2e3a917 --- /dev/null +++ b/bandit.yml @@ -0,0 +1 @@ +skips: ['B101'] \ No newline at end of file From 699932865f78b36fe0fa1ae1f9bd79d2c22fa702 Mon Sep 17 00:00:00 2001 From: Jan-Niclas Walther Date: Thu, 7 Nov 2024 23:18:55 +0100 Subject: [PATCH 010/157] Turn off display tests for linux machines --- test/test_display_sideeffects.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/test_display_sideeffects.py b/test/test_display_sideeffects.py index cc1f81226..984c289d5 100644 --- a/test/test_display_sideeffects.py +++ b/test/test_display_sideeffects.py @@ -1,3 +1,4 @@ +import sys from unittest.mock import patch import pytest @@ -5,6 +6,11 @@ from OCC.Display.backend import load_backend from OCC.Display.SimpleGui import init_display +pytestmark = pytest.mark.skipif( + sys.platform == "linux", + reason="Avoid problems with Qt and Ubuntu machines on Azure", +) + @pytest.fixture def cylinder_shape(): From efbb1394a54e363dd71b59747a16d0c4700b8285 Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Fri, 8 Nov 2024 11:31:29 +0100 Subject: [PATCH 011/157] Add test for TShape hash/eq/neq operators --- src/SWIG_files/wrapper/NCollection.i | 4 ++++ test/test_core_wrapper_features.py | 32 ++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/src/SWIG_files/wrapper/NCollection.i b/src/SWIG_files/wrapper/NCollection.i index 34647d1e0..cf71fbe13 100644 --- a/src/SWIG_files/wrapper/NCollection.i +++ b/src/SWIG_files/wrapper/NCollection.i @@ -88,6 +88,10 @@ from OCC.Core.Exception import * %ignore NCollection_List::First(); %ignore NCollection_List::Last(); %ignore NCollection_TListIterator::Value(); + +%ignore NCollection_Array2::Value(); +%ignore NCollection_Array2::ChangeValue(); +%ignore NCollection_Array2::operator(); /* public enums */ enum NCollection_CellFilter_Action { CellFilter_Keep = 0, diff --git a/test/test_core_wrapper_features.py b/test/test_core_wrapper_features.py index 4b47f9283..741f6c95e 100644 --- a/test/test_core_wrapper_features.py +++ b/test/test_core_wrapper_features.py @@ -539,6 +539,38 @@ def test_neq_operator() -> None: assert shape_1 != "some_string" +def test_tshape_hash_operator() -> None: + shape_1 = BRepPrimAPI_MakeBox(10, 20, 30).Shape() + shape_2 = BRepPrimAPI_MakeBox(10, 20, 30).Shape() + # Create a shape that differs from shape_2, but has the same TShape + shape_3 = shape_2.Reversed() + assert hash(shape_1.TShape()) == hash(shape_1.TShape()) + assert not hash(shape_1.TShape()) == hash(shape_2.TShape()) + assert hash(shape_2.TShape()) == hash(shape_3.TShape()) + + +def test_tshape_eq_operator() -> None: + shape_1 = BRepPrimAPI_MakeBox(10, 20, 30).Shape() + shape_2 = BRepPrimAPI_MakeBox(10, 20, 30).Shape() + # Create a shape that differs from shape_2, but has the same TShape + shape_3 = shape_2.Reversed() + assert shape_1.TShape() == shape_1.TShape() + assert not shape_1.TShape() == shape_2.TShape() + assert shape_2.TShape() == shape_3.TShape() + assert not shape_1.TShape() == "some_string" + + +def test_tshape_neq_operator() -> None: + shape_1 = BRepPrimAPI_MakeBox(10, 20, 30).Shape() + shape_2 = BRepPrimAPI_MakeBox(10, 20, 30).Shape() + # Create a shape that differs from shape_2, but has the same TShape + shape_3 = shape_2.Reversed() + assert not shape_1.TShape() != shape_1.TShape() + assert shape_1.TShape() != shape_2.TShape() + assert not shape_2.TShape() != shape_3.TShape() + assert shape_1.TShape() != "some_string" + + def test_inherit_topods_shape() -> None: class InheritEdge(TopoDS_Edge): def __init__(self, edge: TopoDS_Edge) -> None: From 74494f11df0768fbdfb7f56b290bc3dcdaf9c8b2 Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Fri, 8 Nov 2024 14:28:14 +0100 Subject: [PATCH 012/157] Add eq/neq/hash to Standard_Transient, small refactoring in code extension --- src/SWIG_files/wrapper/BOPDS.i | 8 +++--- src/SWIG_files/wrapper/BOPTools.i | 4 +-- src/SWIG_files/wrapper/BRepMesh.i | 16 +++++------ src/SWIG_files/wrapper/Bnd.i | 4 +-- src/SWIG_files/wrapper/Geom2dConvert.i | 8 +++--- src/SWIG_files/wrapper/Graphic3d.i | 36 +++++++++++------------ src/SWIG_files/wrapper/IGESData.i | 4 +-- src/SWIG_files/wrapper/IntPolyh.i | 4 +-- src/SWIG_files/wrapper/IntTools.i | 8 +++--- src/SWIG_files/wrapper/Intf.i | 12 ++++---- src/SWIG_files/wrapper/MAT2d.i | 4 +-- src/SWIG_files/wrapper/MeshVS.i | 8 +++--- src/SWIG_files/wrapper/Quantity.i | 24 ++++++++-------- src/SWIG_files/wrapper/RWPly.i | 23 +++------------ src/SWIG_files/wrapper/Standard.i | 40 ++++++++++++++++++++++---- src/SWIG_files/wrapper/StepToTopoDS.i | 4 +-- src/SWIG_files/wrapper/TColStd.i | 4 +-- src/SWIG_files/wrapper/TCollection.i | 32 ++++++++++----------- src/SWIG_files/wrapper/TDF.i | 10 +++---- src/SWIG_files/wrapper/TopLoc.i | 8 +++--- src/SWIG_files/wrapper/TopoDS.i | 15 +++++----- src/SWIG_files/wrapper/XCAFDoc.i | 4 +-- src/SWIG_files/wrapper/XCAFPrs.i | 10 +++---- src/SWIG_files/wrapper/generator.log | 19 +++++------- 24 files changed, 160 insertions(+), 149 deletions(-) diff --git a/src/SWIG_files/wrapper/BOPDS.i b/src/SWIG_files/wrapper/BOPDS.i index d5bba3202..e9471b8a8 100644 --- a/src/SWIG_files/wrapper/BOPDS.i +++ b/src/SWIG_files/wrapper/BOPDS.i @@ -3152,8 +3152,8 @@ Sets the indices. %extend{ bool __eq_wrapper__(const BOPDS_Pair other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { @@ -3322,8 +3322,8 @@ Modifier sets the parameter of vertex . %extend{ bool __eq_wrapper__(const BOPDS_Pave other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { diff --git a/src/SWIG_files/wrapper/BOPTools.i b/src/SWIG_files/wrapper/BOPTools.i index f1ee2ad44..dba9ab4f1 100644 --- a/src/SWIG_files/wrapper/BOPTools.i +++ b/src/SWIG_files/wrapper/BOPTools.i @@ -2466,8 +2466,8 @@ No available documentation. %extend{ bool __eq_wrapper__(const BOPTools_Set other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { diff --git a/src/SWIG_files/wrapper/BRepMesh.i b/src/SWIG_files/wrapper/BRepMesh.i index ed564d6de..a071c6b5e 100644 --- a/src/SWIG_files/wrapper/BRepMesh.i +++ b/src/SWIG_files/wrapper/BRepMesh.i @@ -3262,8 +3262,8 @@ Returns index of last node of the link. %extend{ bool __eq_wrapper__(const BRepMesh_OrientedEdge other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { @@ -4232,8 +4232,8 @@ Sets movability of the triangle. %extend{ bool __eq_wrapper__(const BRepMesh_Triangle other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { @@ -4510,8 +4510,8 @@ Sets movability of the vertex. %extend{ bool __eq_wrapper__(const BRepMesh_Vertex other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { @@ -5254,8 +5254,8 @@ Sets movability flag of the link. @param themovability flag to be set. %extend{ bool __eq_wrapper__(const BRepMesh_Edge other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { diff --git a/src/SWIG_files/wrapper/Bnd.i b/src/SWIG_files/wrapper/Bnd.i index 9105e20a7..8f43d139a 100644 --- a/src/SWIG_files/wrapper/Bnd.i +++ b/src/SWIG_files/wrapper/Bnd.i @@ -4328,8 +4328,8 @@ Joins *this and theother to one interval. replaces *this to the result. returns %extend{ bool __eq_wrapper__(const Bnd_Range other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { diff --git a/src/SWIG_files/wrapper/Geom2dConvert.i b/src/SWIG_files/wrapper/Geom2dConvert.i index 2bf76bf34..6212c2f6e 100644 --- a/src/SWIG_files/wrapper/Geom2dConvert.i +++ b/src/SWIG_files/wrapper/Geom2dConvert.i @@ -930,8 +930,8 @@ Change the value of the derivative at the point. %extend{ bool __ne_wrapper__(const Geom2dConvert_PPoint other) { - if (*self!=other) return true; - else return false; + if (*self!=other) return true; + else return false; } } %pythoncode { @@ -944,8 +944,8 @@ def __ne__(self, right): %extend{ bool __eq_wrapper__(const Geom2dConvert_PPoint other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { diff --git a/src/SWIG_files/wrapper/Graphic3d.i b/src/SWIG_files/wrapper/Graphic3d.i index 3754b71f6..f3afb3276 100644 --- a/src/SWIG_files/wrapper/Graphic3d.i +++ b/src/SWIG_files/wrapper/Graphic3d.i @@ -5086,8 +5086,8 @@ Normalizes bsdf components. %extend{ bool __eq_wrapper__(const Graphic3d_BSDF other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { @@ -8369,8 +8369,8 @@ Return offset position from lower-left corner. %extend{ bool __eq_wrapper__(const Graphic3d_CameraTile other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { @@ -10283,8 +10283,8 @@ Returns serialized representation of fresnel factor. %extend{ bool __eq_wrapper__(const Graphic3d_Fresnel other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { @@ -13603,8 +13603,8 @@ Returns the transparency coefficient of the surface (1.0 - alpha); 0.0 means opa %extend{ bool __ne_wrapper__(const Graphic3d_MaterialAspect other) { - if (*self!=other) return true; - else return false; + if (*self!=other) return true; + else return false; } } %pythoncode { @@ -13617,8 +13617,8 @@ def __ne__(self, right): %extend{ bool __eq_wrapper__(const Graphic3d_MaterialAspect other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { @@ -14038,8 +14038,8 @@ Shows how much times less samples can be used in certain roughness value specula %extend{ bool __eq_wrapper__(const Graphic3d_PBRMaterial other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { @@ -14103,8 +14103,8 @@ Dump the object to JSON string. %extend{ bool __eq_wrapper__(const Graphic3d_PolygonOffset other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { @@ -19713,8 +19713,8 @@ Return world view state counter. %extend{ bool __ne_wrapper__(const Graphic3d_WorldViewProjState other) { - if (*self!=other) return true; - else return false; + if (*self!=other) return true; + else return false; } } %pythoncode { @@ -19727,8 +19727,8 @@ def __ne__(self, right): %extend{ bool __eq_wrapper__(const Graphic3d_WorldViewProjState other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { diff --git a/src/SWIG_files/wrapper/IGESData.i b/src/SWIG_files/wrapper/IGESData.i index 35052ac2b..7133f20cb 100644 --- a/src/SWIG_files/wrapper/IGESData.i +++ b/src/SWIG_files/wrapper/IGESData.i @@ -5043,8 +5043,8 @@ Returns 'type' data. %extend{ bool __eq_wrapper__(const IGESData_IGESType other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { diff --git a/src/SWIG_files/wrapper/IntPolyh.i b/src/SWIG_files/wrapper/IntPolyh.i index d0427a9a0..febb5ed93 100644 --- a/src/SWIG_files/wrapper/IntPolyh.i +++ b/src/SWIG_files/wrapper/IntPolyh.i @@ -296,8 +296,8 @@ Sets the triangles. %extend{ bool __eq_wrapper__(const IntPolyh_Couple other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { diff --git a/src/SWIG_files/wrapper/IntTools.i b/src/SWIG_files/wrapper/IntTools.i index a05b7c11b..2b12652a8 100644 --- a/src/SWIG_files/wrapper/IntTools.i +++ b/src/SWIG_files/wrapper/IntTools.i @@ -5500,8 +5500,8 @@ No available documentation. %extend{ bool __eq_wrapper__(const IntTools_SurfaceRangeSample other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { @@ -6389,8 +6389,8 @@ No available documentation. %extend{ bool __eq_wrapper__(const IntTools_CurveRangeSample other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { diff --git a/src/SWIG_files/wrapper/Intf.i b/src/SWIG_files/wrapper/Intf.i index 2af2c40b8..c1477eadf 100644 --- a/src/SWIG_files/wrapper/Intf.i +++ b/src/SWIG_files/wrapper/Intf.i @@ -744,8 +744,8 @@ Reverses the order of the elements of the sectionline. %extend{ bool __eq_wrapper__(const Intf_SectionLine other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { @@ -1065,8 +1065,8 @@ Returns the type of the section point on the second element. %extend{ bool __eq_wrapper__(const Intf_SectionPoint other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { @@ -1413,8 +1413,8 @@ Returns true if is in the parameter range of the tangentzone. %extend{ bool __eq_wrapper__(const Intf_TangentZone other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { diff --git a/src/SWIG_files/wrapper/MAT2d.i b/src/SWIG_files/wrapper/MAT2d.i index 89c623d7a..eb5fdf80e 100644 --- a/src/SWIG_files/wrapper/MAT2d.i +++ b/src/SWIG_files/wrapper/MAT2d.i @@ -305,8 +305,8 @@ No available documentation. %extend{ bool __eq_wrapper__(const MAT2d_BiInt other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { diff --git a/src/SWIG_files/wrapper/MeshVS.i b/src/SWIG_files/wrapper/MeshVS.i index acff3c641..fb6744772 100644 --- a/src/SWIG_files/wrapper/MeshVS.i +++ b/src/SWIG_files/wrapper/MeshVS.i @@ -3539,8 +3539,8 @@ class MeshVS_TwoColors { %extend{ bool __eq_wrapper__(const MeshVS_TwoColors other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { @@ -3588,8 +3588,8 @@ No available documentation. %extend{ bool __eq_wrapper__(const MeshVS_TwoNodes other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { diff --git a/src/SWIG_files/wrapper/Quantity.i b/src/SWIG_files/wrapper/Quantity.i index aae6c3e2c..98a58ea4a 100644 --- a/src/SWIG_files/wrapper/Quantity.i +++ b/src/SWIG_files/wrapper/Quantity.i @@ -2641,8 +2641,8 @@ Returns in thec1, thec2 and thec3 the components of this color according to the %extend{ bool __ne_wrapper__(const Quantity_Color other) { - if (*self!=other) return true; - else return false; + if (*self!=other) return true; + else return false; } } %pythoncode { @@ -2655,8 +2655,8 @@ def __ne__(self, right): %extend{ bool __eq_wrapper__(const Quantity_Color other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { @@ -3058,8 +3058,8 @@ Assign new values to the color. %extend{ bool __ne_wrapper__(const Quantity_ColorRGBA other) { - if (*self!=other) return true; - else return false; + if (*self!=other) return true; + else return false; } } %pythoncode { @@ -3072,8 +3072,8 @@ def __ne__(self, right): %extend{ bool __eq_wrapper__(const Quantity_ColorRGBA other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { @@ -3496,8 +3496,8 @@ No available documentation. %extend{ bool __eq_wrapper__(const Quantity_Date other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { @@ -3834,8 +3834,8 @@ No available documentation. %extend{ bool __eq_wrapper__(const Quantity_Period other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { diff --git a/src/SWIG_files/wrapper/RWPly.i b/src/SWIG_files/wrapper/RWPly.i index a1e6de69c..0b6ec7f71 100644 --- a/src/SWIG_files/wrapper/RWPly.i +++ b/src/SWIG_files/wrapper/RWPly.i @@ -798,25 +798,6 @@ Return number of written vertices. ") NbWrittenVertices; Standard_Integer NbWrittenVertices(); - /****************** Open ******************/ - /**** md5 signature: 8602e84f6acfb0cc325e9d67eb1ded24 ****/ - %feature("compactdefaultargs") Open; - %feature("autodoc", " -Parameters ----------- -theName: str -theStream: std::shared_ptr (optional, default to std::shared_ptr()) - -Return -------- -bool - -Description ------------ -Open file for writing. -") Open; - bool Open(TCollection_AsciiString theName, const std::shared_ptr & theStream = std::shared_ptr()); - /****************** SetColors ******************/ /**** md5 signature: ba154b7155d7a27211ce6b222d360537 ****/ %feature("compactdefaultargs") SetColors; @@ -1052,6 +1033,10 @@ Write single point with all attributes. @param[in] thepoint 3d point coordinates %extend RWPly_PlyWriterContext { %pythoncode { __repr__ = _dumps_object + + @methodnotwrapped + def Open(self): + pass } }; diff --git a/src/SWIG_files/wrapper/Standard.i b/src/SWIG_files/wrapper/Standard.i index 288a4d2a4..2829b8c9b 100644 --- a/src/SWIG_files/wrapper/Standard.i +++ b/src/SWIG_files/wrapper/Standard.i @@ -595,7 +595,7 @@ Removes handler from the handlers list. **********************/ class Standard_GUID { public: - friend struct std:: hash; + friend struct std::hash ; /****************** Standard_GUID ******************/ /**** md5 signature: bd47278e877fa95d24363f9cfe93d187 ****/ %feature("compactdefaultargs") Standard_GUID; @@ -867,8 +867,8 @@ No available documentation. %extend{ bool __ne_wrapper__(const Standard_GUID other) { - if (*self!=other) return true; - else return false; + if (*self!=other) return true; + else return false; } } %pythoncode { @@ -881,8 +881,8 @@ def __ne__(self, right): %extend{ bool __eq_wrapper__(const Standard_GUID other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { @@ -1243,6 +1243,36 @@ No available documentation. %make_alias(Standard_Transient) + +%extend Standard_Transient { + %pythoncode { + __repr__ = _dumps_object + + def __eq__(self, right): + if not isinstance(right, Standard_Transient): + return False + return self.__eq_wrapper__(right) + + def __ne__(self, right): + if not isinstance(right, Standard_Transient): + return True + return self.__ne_wrapper__(right) + } +}; + +%extend Standard_Transient { + bool __eq_wrapper__(const opencascade::handle & other) { + if (self==other) return true; + else return false; + } + bool __ne_wrapper__(const opencascade::handle & other) { + if (self!=other) return true; + else return false; + } + size_t __hash__() { + return opencascade::hash(self); + } +}; %extend Standard_Transient { %pythoncode { __repr__ = _dumps_object diff --git a/src/SWIG_files/wrapper/StepToTopoDS.i b/src/SWIG_files/wrapper/StepToTopoDS.i index a4ea2153a..be734120a 100644 --- a/src/SWIG_files/wrapper/StepToTopoDS.i +++ b/src/SWIG_files/wrapper/StepToTopoDS.i @@ -857,8 +857,8 @@ No available documentation. %extend{ bool __eq_wrapper__(const StepToTopoDS_PointPair other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { diff --git a/src/SWIG_files/wrapper/TColStd.i b/src/SWIG_files/wrapper/TColStd.i index 952dcfeec..85f11ee7c 100644 --- a/src/SWIG_files/wrapper/TColStd.i +++ b/src/SWIG_files/wrapper/TColStd.i @@ -1135,8 +1135,8 @@ def __isub__(self, right): %extend{ bool __eq_wrapper__(const TColStd_PackedMapOfInteger other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { diff --git a/src/SWIG_files/wrapper/TCollection.i b/src/SWIG_files/wrapper/TCollection.i index b03232e84..2d29954d4 100644 --- a/src/SWIG_files/wrapper/TCollection.i +++ b/src/SWIG_files/wrapper/TCollection.i @@ -1637,8 +1637,8 @@ Returns character at position in . if is less than zero or %extend{ bool __ne_wrapper__(const Standard_CString other) { - if (*self!=other) return true; - else return false; + if (*self!=other) return true; + else return false; } } %pythoncode { @@ -1651,8 +1651,8 @@ def __ne__(self, right): %extend{ bool __ne_wrapper__(const TCollection_AsciiString other) { - if (*self!=other) return true; - else return false; + if (*self!=other) return true; + else return false; } } %pythoncode { @@ -1810,8 +1810,8 @@ def __iadd__(self, right): %extend{ bool __eq_wrapper__(const Standard_CString other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { @@ -1824,8 +1824,8 @@ def __eq__(self, right): %extend{ bool __eq_wrapper__(const TCollection_AsciiString other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { @@ -2726,8 +2726,8 @@ Returns character at position in . if is less than zero or %extend{ bool __ne_wrapper__(const Standard_ExtString other) { - if (*self!=other) return true; - else return false; + if (*self!=other) return true; + else return false; } } %pythoncode { @@ -2740,8 +2740,8 @@ def __ne__(self, right): %extend{ bool __ne_wrapper__(const TCollection_ExtendedString other) { - if (*self!=other) return true; - else return false; + if (*self!=other) return true; + else return false; } } %pythoncode { @@ -2783,8 +2783,8 @@ def __iadd__(self, right): %extend{ bool __eq_wrapper__(const Standard_ExtString other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { @@ -2797,8 +2797,8 @@ def __eq__(self, right): %extend{ bool __eq_wrapper__(const TCollection_ExtendedString other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { diff --git a/src/SWIG_files/wrapper/TDF.i b/src/SWIG_files/wrapper/TDF.i index ee166ba32..529e63516 100644 --- a/src/SWIG_files/wrapper/TDF.i +++ b/src/SWIG_files/wrapper/TDF.i @@ -2919,7 +2919,7 @@ Attributes with id owned by are to be kept and the filter will answer ******************/ class TDF_Label { public: - friend struct std:: hash; + friend struct std::hash ; /****************** TDF_Label ******************/ /**** md5 signature: 1a8e59ba046467c4e163db826620fcdb ****/ %feature("compactdefaultargs") TDF_Label; @@ -3485,8 +3485,8 @@ Returns the current transaction index. %extend{ bool __ne_wrapper__(const TDF_Label other) { - if (*self!=other) return true; - else return false; + if (*self!=other) return true; + else return false; } } %pythoncode { @@ -3499,8 +3499,8 @@ def __ne__(self, right): %extend{ bool __eq_wrapper__(const TDF_Label other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { diff --git a/src/SWIG_files/wrapper/TopLoc.i b/src/SWIG_files/wrapper/TopLoc.i index f2f25ccf1..9417fcf01 100644 --- a/src/SWIG_files/wrapper/TopLoc.i +++ b/src/SWIG_files/wrapper/TopLoc.i @@ -593,8 +593,8 @@ Returns the transformation associated to the coordinate system. %extend{ bool __ne_wrapper__(const TopLoc_Location other) { - if (*self!=other) return true; - else return false; + if (*self!=other) return true; + else return false; } } %pythoncode { @@ -643,8 +643,8 @@ No available documentation. %extend{ bool __eq_wrapper__(const TopLoc_Location other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { diff --git a/src/SWIG_files/wrapper/TopoDS.i b/src/SWIG_files/wrapper/TopoDS.i index 5c4f57046..862503801 100644 --- a/src/SWIG_files/wrapper/TopoDS.i +++ b/src/SWIG_files/wrapper/TopoDS.i @@ -1612,8 +1612,8 @@ No available documentation. %extend{ bool __ne_wrapper__(const TopoDS_Shape other) { - if (*self!=other) return true; - else return false; + if (*self!=other) return true; + else return false; } } %pythoncode { @@ -1626,8 +1626,8 @@ def __ne__(self, right): %extend{ bool __eq_wrapper__(const TopoDS_Shape other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { @@ -1643,9 +1643,10 @@ def __eq__(self, right): %extend TopoDS_Shape { size_t __hash__() { - std::hash shapeHasher; - size_t hashValue = shapeHasher(*self); - return hashValue;} + std::hash shapeHasher; + size_t hashValue = shapeHasher(*self); + return hashValue; + } }; %extend TopoDS_Shape { diff --git a/src/SWIG_files/wrapper/XCAFDoc.i b/src/SWIG_files/wrapper/XCAFDoc.i index 31bfb6499..7fe5ada1f 100644 --- a/src/SWIG_files/wrapper/XCAFDoc.i +++ b/src/SWIG_files/wrapper/XCAFDoc.i @@ -1174,8 +1174,8 @@ Returns the full pass as a formatted string. %extend{ bool __eq_wrapper__(const XCAFDoc_AssemblyItemId other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { diff --git a/src/SWIG_files/wrapper/XCAFPrs.i b/src/SWIG_files/wrapper/XCAFPrs.i index 321790255..cc4adc6c7 100644 --- a/src/SWIG_files/wrapper/XCAFPrs.i +++ b/src/SWIG_files/wrapper/XCAFPrs.i @@ -713,8 +713,8 @@ No available documentation. %extend{ bool __eq_wrapper__(const XCAFPrs_DocumentNode other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { @@ -786,7 +786,7 @@ No available documentation. **********************/ class XCAFPrs_Style { public: - friend struct std:: hash; + friend struct std::hash ; /****************** XCAFPrs_Style ******************/ /**** md5 signature: 9543f66d0ab16adfbffa6f1ff76c2dd5 ****/ %feature("compactdefaultargs") XCAFPrs_Style; @@ -1075,8 +1075,8 @@ Manage surface color setting. %extend{ bool __eq_wrapper__(const XCAFPrs_Style other) { - if (*self==other) return true; - else return false; + if (*self==other) return true; + else return false; } } %pythoncode { diff --git a/src/SWIG_files/wrapper/generator.log b/src/SWIG_files/wrapper/generator.log index eec6989f9..37e4195c4 100644 --- a/src/SWIG_files/wrapper/generator.log +++ b/src/SWIG_files/wrapper/generator.log @@ -2,13 +2,13 @@ ############################ Running pythonocc-generator. ############################ -git revision : 0a2712e +git revision : 020d4e8 -operating system : Linux 64bit 6.5.0-35-generic +operating system : Linux 64bit 6.8.0-48-generic occt version targeted : 7.8.1 -date : 2024-05-22 13:48:56.569965 +date : 2024-11-08 14:20:50.686717 ############################ [INFO ] Processing toolkit TKBO === @@ -280,11 +280,7 @@ date : 2024-05-22 13:48:56.569965 [INFO ] Class: BRepTools [INFO ] Class: BRepTools_History [INFO ] Enum: TRelationType -[INFO ] explicitly excluded method BRepTools_History::4a35f50a2b6bb1bb1303ad7d8374073c -[INFO ] explicitly excluded method BRepTools_History::7dfa827711ec2050a35ebaeda60fa3a6 -[INFO ] explicitly excluded method BRepTools_History::fb045f600989a1f096e90b81d587d65a -[INFO ] explicitly excluded method BRepTools_History::bcea4b93e38784928b17c2d0cc2cf68c -[INFO ] explicitly excluded method BRepTools_History::1e361db725f2785773b933e1d47f0346 +[INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [INFO ] Class: BRepTools_Modification [INFO ] Class BRepTools_Modification is abstract, using %nodefaultctor. [INFO ] Class: BRepTools_Modifier @@ -296,7 +292,6 @@ date : 2024-05-22 13:48:56.569965 [INFO ] Class: BRepTools_Quilt [INFO ] Class: BRepTools_ReShape [INFO ] Wrap nested class BRepTools_ReShape::TReplacement -[INFO ] explicitly excluded method BRepTools_ReShape::4a1e1cf3a68bb84f97ab6c753f9ff817 [INFO ] Class: BRepTools_ShapeSet [INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [INFO ] Class: BRepTools_Substitution @@ -4635,7 +4630,7 @@ date : 2024-05-22 13:48:56.569965 [INFO ] Wrap nested class RWPly_ConfigurationNode::RWPly_InternalSection [INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [INFO ] Class: RWPly_PlyWriterContext -[WARNI] [TypeHint] Skip type std::shared_ptr, because of trailing : +[INFO ] explicitly excluded method RWPly_PlyWriterContext::8602e84f6acfb0cc325e9d67eb1ded24 [INFO ] Class: RWPly_Provider [INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [INFO ] Processing toolkit TKSTEP === @@ -9559,8 +9554,8 @@ date : 2024-05-22 13:48:56.569965 [INFO ] Class: UnitsMethods [INFO ] ################################################# -SWIG interface file generation completed in 17.47s +SWIG interface file generation completed in 17.97s ################################################# [INFO ] Number of classes: 4743 -[INFO ] Number of methods: 47534 +[INFO ] Number of methods: 47536 From a52f05fb86001b4ea4c80c868eb20294095dd92a Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Fri, 8 Nov 2024 18:40:48 +0100 Subject: [PATCH 013/157] Add Johannes Verherstraeten to the list of authors #1375 --- AUTHORS | 1 + 1 file changed, 1 insertion(+) diff --git a/AUTHORS b/AUTHORS index da8f104a9..8e9e5ae26 100644 --- a/AUTHORS +++ b/AUTHORS @@ -17,5 +17,6 @@ Thomas Severin Kristoffer Andersen Tanneguy de Villemagne Simon Klein +Johannes Verherstraeten Please report any missing name From e9c642a110f33e8947c3f4f2cdd868e01b1c313a Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Sun, 10 Nov 2024 18:09:08 +0100 Subject: [PATCH 014/157] Rename array macros to numpy explicit --- src/SWIG_files/common/ArrayMacros.i | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/SWIG_files/common/ArrayMacros.i b/src/SWIG_files/common/ArrayMacros.i index 0f33134ce..8c0546390 100644 --- a/src/SWIG_files/common/ArrayMacros.i +++ b/src/SWIG_files/common/ArrayMacros.i @@ -53,7 +53,7 @@ %enddef -%define Array1Template(name, array_dtype, T) +%define Array1NumpyTemplate(name, array_dtype, T) %template(name) NCollection_Array1; @@ -91,7 +91,7 @@ %enddef -%define Array2Template(name, array_dtype, T) +%define Array2NumpyTemplate(name, array_dtype, T) %template(name) NCollection_Array2; @@ -140,7 +140,7 @@ %enddef -%define Array1Of2DTemplate(name, T) +%define Array1Of2DNumpyTemplate(name, T) %template(name) NCollection_Array1; @@ -187,7 +187,7 @@ %enddef -%define Array1Of3DTemplate(name, T) +%define Array1Of3DNumpyTemplate(name, T) %template(name) NCollection_Array1; @@ -236,7 +236,7 @@ %enddef -%define Array1OfTriaTemplate(name, T) +%define Array1OfTriaNumpyTemplate(name, T) %template(name) NCollection_Array1; @@ -285,7 +285,7 @@ %enddef -%define Array2Of2DTemplate(name, T) +%define Array2Of2DNumpyTemplate(name, T) %template(name) NCollection_Array2; @@ -339,7 +339,7 @@ %enddef -%define Array2Of3DTemplate(name, T) +%define Array2Of3DNumpyTemplate(name, T) %template(name) NCollection_Array2; From a78a6978a771b5793b73c3ac80b5adb1b65e9c02 Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Sun, 10 Nov 2024 18:09:24 +0100 Subject: [PATCH 015/157] Update SWIG files --- src/SWIG_files/wrapper/AIS.i | 35 +- src/SWIG_files/wrapper/APIHeaderSection.i | 1 + src/SWIG_files/wrapper/Adaptor2d.i | 1 + src/SWIG_files/wrapper/Adaptor3d.i | 1 + src/SWIG_files/wrapper/AdvApp2Var.i | 1 + src/SWIG_files/wrapper/AdvApprox.i | 1 + src/SWIG_files/wrapper/AppBlend.i | 1 + src/SWIG_files/wrapper/AppCont.i | 1 + src/SWIG_files/wrapper/AppDef.i | 35 +- src/SWIG_files/wrapper/AppParCurves.i | 137 +--- src/SWIG_files/wrapper/AppStd.i | 1 + src/SWIG_files/wrapper/AppStdL.i | 1 + src/SWIG_files/wrapper/Approx.i | 69 +- src/SWIG_files/wrapper/ApproxInt.i | 1 + src/SWIG_files/wrapper/Aspect.i | 35 +- src/SWIG_files/wrapper/BOPAlgo.i | 1 + src/SWIG_files/wrapper/BOPDS.i | 35 +- src/SWIG_files/wrapper/BOPTools.i | 1 + src/SWIG_files/wrapper/BRep.i | 1 + src/SWIG_files/wrapper/BRepAdaptor.i | 35 +- src/SWIG_files/wrapper/BRepAlgo.i | 1 + src/SWIG_files/wrapper/BRepAlgoAPI.i | 1 + src/SWIG_files/wrapper/BRepApprox.i | 1 + src/SWIG_files/wrapper/BRepBlend.i | 1 + src/SWIG_files/wrapper/BRepBndLib.i | 1 + src/SWIG_files/wrapper/BRepBuilderAPI.i | 1 + src/SWIG_files/wrapper/BRepCheck.i | 1 + src/SWIG_files/wrapper/BRepClass.i | 1 + src/SWIG_files/wrapper/BRepClass3d.i | 1 + src/SWIG_files/wrapper/BRepExtrema.i | 1 + src/SWIG_files/wrapper/BRepFeat.i | 1 + src/SWIG_files/wrapper/BRepFill.i | 1 + src/SWIG_files/wrapper/BRepFilletAPI.i | 1 + src/SWIG_files/wrapper/BRepGProp.i | 1 + src/SWIG_files/wrapper/BRepIntCurveSurface.i | 1 + src/SWIG_files/wrapper/BRepLProp.i | 1 + src/SWIG_files/wrapper/BRepLib.i | 1 + src/SWIG_files/wrapper/BRepMAT2d.i | 1 + src/SWIG_files/wrapper/BRepMesh.i | 1 + src/SWIG_files/wrapper/BRepMeshData.i | 1 + src/SWIG_files/wrapper/BRepOffset.i | 1 + src/SWIG_files/wrapper/BRepOffsetAPI.i | 1 + src/SWIG_files/wrapper/BRepPrim.i | 1 + src/SWIG_files/wrapper/BRepPrimAPI.i | 1 + src/SWIG_files/wrapper/BRepProj.i | 1 + src/SWIG_files/wrapper/BRepSweep.i | 1 + src/SWIG_files/wrapper/BRepTools.i | 1 + src/SWIG_files/wrapper/BRepTopAdaptor.i | 1 + src/SWIG_files/wrapper/BSplCLib.i | 1 + src/SWIG_files/wrapper/BSplSLib.i | 1 + src/SWIG_files/wrapper/BVH.i | 1 + src/SWIG_files/wrapper/BiTgte.i | 1 + src/SWIG_files/wrapper/BinDrivers.i | 1 + src/SWIG_files/wrapper/BinLDrivers.i | 1 + src/SWIG_files/wrapper/BinMDF.i | 1 + src/SWIG_files/wrapper/BinMDataStd.i | 1 + src/SWIG_files/wrapper/BinMDataXtd.i | 1 + src/SWIG_files/wrapper/BinMDocStd.i | 1 + src/SWIG_files/wrapper/BinMFunction.i | 1 + src/SWIG_files/wrapper/BinMNaming.i | 1 + src/SWIG_files/wrapper/BinMXCAFDoc.i | 1 + src/SWIG_files/wrapper/BinObjMgt.i | 1 + src/SWIG_files/wrapper/BinTObjDrivers.i | 1 + src/SWIG_files/wrapper/BinTools.i | 1 + src/SWIG_files/wrapper/BinXCAFDrivers.i | 1 + src/SWIG_files/wrapper/Bisector.i | 1 + src/SWIG_files/wrapper/Blend.i | 1 + src/SWIG_files/wrapper/BlendFunc.i | 1 + src/SWIG_files/wrapper/Bnd.i | 103 +-- src/SWIG_files/wrapper/BndLib.i | 1 + src/SWIG_files/wrapper/CDF.i | 1 + src/SWIG_files/wrapper/CDM.i | 1 + src/SWIG_files/wrapper/CPnts.i | 1 + src/SWIG_files/wrapper/CSLib.i | 1 + src/SWIG_files/wrapper/ChFi2d.i | 1 + src/SWIG_files/wrapper/ChFi3d.i | 1 + src/SWIG_files/wrapper/ChFiDS.i | 69 +- src/SWIG_files/wrapper/ChFiKPart.i | 1 + src/SWIG_files/wrapper/Contap.i | 1 + src/SWIG_files/wrapper/Convert.i | 1 + src/SWIG_files/wrapper/DE.i | 1 + src/SWIG_files/wrapper/DEBRepCascade.i | 1 + src/SWIG_files/wrapper/DEXCAFCascade.i | 1 + src/SWIG_files/wrapper/Draft.i | 1 + src/SWIG_files/wrapper/DsgPrs.i | 1 + src/SWIG_files/wrapper/ElCLib.i | 1 + src/SWIG_files/wrapper/ElSLib.i | 1 + src/SWIG_files/wrapper/Expr.i | 103 +-- src/SWIG_files/wrapper/ExprIntrp.i | 1 + src/SWIG_files/wrapper/Extrema.i | 103 +-- src/SWIG_files/wrapper/FEmTool.i | 1 + src/SWIG_files/wrapper/FSD.i | 1 + src/SWIG_files/wrapper/FairCurve.i | 1 + src/SWIG_files/wrapper/FilletSurf.i | 1 + src/SWIG_files/wrapper/GC.i | 1 + src/SWIG_files/wrapper/GCE2d.i | 1 + src/SWIG_files/wrapper/GCPnts.i | 1 + src/SWIG_files/wrapper/GProp.i | 1 + src/SWIG_files/wrapper/GccAna.i | 1 + src/SWIG_files/wrapper/GccEnt.i | 1 + src/SWIG_files/wrapper/GccInt.i | 1 + src/SWIG_files/wrapper/Geom.i | 26 +- src/SWIG_files/wrapper/Geom2d.i | 24 +- src/SWIG_files/wrapper/Geom2dAPI.i | 1 + src/SWIG_files/wrapper/Geom2dAdaptor.i | 1 + src/SWIG_files/wrapper/Geom2dConvert.i | 1 + src/SWIG_files/wrapper/Geom2dEvaluator.i | 1 + src/SWIG_files/wrapper/Geom2dGcc.i | 1 + src/SWIG_files/wrapper/Geom2dHatch.i | 1 + src/SWIG_files/wrapper/Geom2dInt.i | 1 + src/SWIG_files/wrapper/Geom2dLProp.i | 1 + src/SWIG_files/wrapper/GeomAPI.i | 1 + src/SWIG_files/wrapper/GeomAbs.i | 1 + src/SWIG_files/wrapper/GeomAdaptor.i | 1 + src/SWIG_files/wrapper/GeomConvert.i | 1 + src/SWIG_files/wrapper/GeomEvaluator.i | 1 + src/SWIG_files/wrapper/GeomFill.i | 69 +- src/SWIG_files/wrapper/GeomInt.i | 1 + src/SWIG_files/wrapper/GeomLProp.i | 1 + src/SWIG_files/wrapper/GeomLib.i | 35 +- src/SWIG_files/wrapper/GeomPlate.i | 69 +- src/SWIG_files/wrapper/GeomProjLib.i | 1 + src/SWIG_files/wrapper/GeomToStep.i | 1 + src/SWIG_files/wrapper/GeomTools.i | 1 + src/SWIG_files/wrapper/Graphic3d.i | 35 +- src/SWIG_files/wrapper/HLRAlgo.i | 137 +--- src/SWIG_files/wrapper/HLRAppli.i | 1 + src/SWIG_files/wrapper/HLRBRep.i | 69 +- src/SWIG_files/wrapper/HLRTopoBRep.i | 1 + src/SWIG_files/wrapper/Hatch.i | 1 + src/SWIG_files/wrapper/HatchGen.i | 1 + src/SWIG_files/wrapper/HeaderSection.i | 1 + src/SWIG_files/wrapper/Hermit.i | 1 + src/SWIG_files/wrapper/IFSelect.i | 1 + src/SWIG_files/wrapper/IGESCAFControl.i | 1 + src/SWIG_files/wrapper/IGESControl.i | 1 + src/SWIG_files/wrapper/IGESData.i | 69 +- src/SWIG_files/wrapper/IGESToBRep.i | 1 + src/SWIG_files/wrapper/IMeshData.i | 1 + src/SWIG_files/wrapper/IMeshTools.i | 1 + src/SWIG_files/wrapper/IVtk.i | 1 + src/SWIG_files/wrapper/IVtkOCC.i | 1 + src/SWIG_files/wrapper/IVtkTools.i | 1 + src/SWIG_files/wrapper/IVtkVTK.i | 1 + src/SWIG_files/wrapper/Image.i | 1 + src/SWIG_files/wrapper/IntAna.i | 1 + src/SWIG_files/wrapper/IntAna2d.i | 1 + src/SWIG_files/wrapper/IntCurve.i | 1 + src/SWIG_files/wrapper/IntCurveSurface.i | 1 + src/SWIG_files/wrapper/IntCurvesFace.i | 1 + src/SWIG_files/wrapper/IntImp.i | 1 + src/SWIG_files/wrapper/IntImpParGen.i | 1 + src/SWIG_files/wrapper/IntPatch.i | 1 + src/SWIG_files/wrapper/IntPolyh.i | 1 + src/SWIG_files/wrapper/IntRes2d.i | 1 + src/SWIG_files/wrapper/IntStart.i | 1 + src/SWIG_files/wrapper/IntSurf.i | 1 + src/SWIG_files/wrapper/IntTools.i | 69 +- src/SWIG_files/wrapper/IntWalk.i | 1 + src/SWIG_files/wrapper/Interface.i | 69 +- src/SWIG_files/wrapper/InterfaceGraphic.i | 1 + src/SWIG_files/wrapper/Intf.i | 35 +- src/SWIG_files/wrapper/Intrv.i | 1 + src/SWIG_files/wrapper/LDOM.i | 1 + src/SWIG_files/wrapper/LProp.i | 1 + src/SWIG_files/wrapper/LProp3d.i | 1 + src/SWIG_files/wrapper/Law.i | 1 + src/SWIG_files/wrapper/LocOpe.i | 1 + src/SWIG_files/wrapper/LocalAnalysis.i | 1 + src/SWIG_files/wrapper/MAT.i | 1 + src/SWIG_files/wrapper/MAT2d.i | 1 + src/SWIG_files/wrapper/Media.i | 1 + src/SWIG_files/wrapper/MeshVS.i | 35 +- src/SWIG_files/wrapper/Message.i | 1 + src/SWIG_files/wrapper/MoniTool.i | 1 + src/SWIG_files/wrapper/NCollection.i | 1 + src/SWIG_files/wrapper/NLPlate.i | 1 + src/SWIG_files/wrapper/OSD.i | 1 + src/SWIG_files/wrapper/PCDM.i | 1 + src/SWIG_files/wrapper/PLib.i | 1 + src/SWIG_files/wrapper/Plate.i | 35 +- src/SWIG_files/wrapper/Plugin.i | 1 + src/SWIG_files/wrapper/Poly.i | 22 +- src/SWIG_files/wrapper/Precision.i | 1 + src/SWIG_files/wrapper/ProjLib.i | 1 + src/SWIG_files/wrapper/Prs3d.i | 1 + src/SWIG_files/wrapper/PrsDim.i | 1 + src/SWIG_files/wrapper/PrsMgr.i | 1 + src/SWIG_files/wrapper/Quantity.i | 35 +- src/SWIG_files/wrapper/RWGltf.i | 1 + src/SWIG_files/wrapper/RWHeaderSection.i | 1 + src/SWIG_files/wrapper/RWMesh.i | 1 + src/SWIG_files/wrapper/RWObj.i | 1 + src/SWIG_files/wrapper/RWPly.i | 1 + src/SWIG_files/wrapper/RWStepAP203.i | 1 + src/SWIG_files/wrapper/RWStepAP214.i | 1 + src/SWIG_files/wrapper/RWStepAP242.i | 1 + src/SWIG_files/wrapper/RWStepBasic.i | 1 + src/SWIG_files/wrapper/RWStepDimTol.i | 1 + src/SWIG_files/wrapper/RWStepElement.i | 1 + src/SWIG_files/wrapper/RWStepFEA.i | 1 + src/SWIG_files/wrapper/RWStepGeom.i | 1 + src/SWIG_files/wrapper/RWStepKinematics.i | 1 + src/SWIG_files/wrapper/RWStepRepr.i | 1 + src/SWIG_files/wrapper/RWStepShape.i | 1 + src/SWIG_files/wrapper/RWStepVisual.i | 1 + src/SWIG_files/wrapper/RWStl.i | 1 + src/SWIG_files/wrapper/Resource.i | 1 + src/SWIG_files/wrapper/STEPCAFControl.i | 1 + src/SWIG_files/wrapper/STEPConstruct.i | 1 + src/SWIG_files/wrapper/STEPControl.i | 1 + src/SWIG_files/wrapper/STEPEdit.i | 1 + src/SWIG_files/wrapper/STEPSelections.i | 1 + src/SWIG_files/wrapper/Select3D.i | 1 + src/SWIG_files/wrapper/SelectBasics.i | 1 + src/SWIG_files/wrapper/SelectMgr.i | 1 + src/SWIG_files/wrapper/ShapeAlgo.i | 1 + src/SWIG_files/wrapper/ShapeAnalysis.i | 1 + src/SWIG_files/wrapper/ShapeBuild.i | 1 + src/SWIG_files/wrapper/ShapeConstruct.i | 1 + src/SWIG_files/wrapper/ShapeCustom.i | 1 + src/SWIG_files/wrapper/ShapeExtend.i | 1 + src/SWIG_files/wrapper/ShapeFix.i | 1 + src/SWIG_files/wrapper/ShapeProcess.i | 1 + src/SWIG_files/wrapper/ShapeProcessAPI.i | 1 + src/SWIG_files/wrapper/ShapeUpgrade.i | 1 + src/SWIG_files/wrapper/Standard.i | 1 + src/SWIG_files/wrapper/StdFail.i | 1 + src/SWIG_files/wrapper/StdPrs.i | 1 + src/SWIG_files/wrapper/StdSelect.i | 1 + src/SWIG_files/wrapper/StepAP203.i | 341 +--------- src/SWIG_files/wrapper/StepAP209.i | 1 + src/SWIG_files/wrapper/StepAP214.i | 579 +---------------- src/SWIG_files/wrapper/StepAP242.i | 1 + src/SWIG_files/wrapper/StepBasic.i | 341 +--------- src/SWIG_files/wrapper/StepData.i | 35 +- src/SWIG_files/wrapper/StepDimTol.i | 205 +----- src/SWIG_files/wrapper/StepElement.i | 273 +------- src/SWIG_files/wrapper/StepFEA.i | 205 +----- src/SWIG_files/wrapper/StepGeom.i | 239 +------ src/SWIG_files/wrapper/StepKinematics.i | 1 + src/SWIG_files/wrapper/StepRepr.i | 137 +--- src/SWIG_files/wrapper/StepShape.i | 375 +---------- src/SWIG_files/wrapper/StepToGeom.i | 1 + src/SWIG_files/wrapper/StepToTopoDS.i | 1 + src/SWIG_files/wrapper/StepVisual.i | 647 +------------------ src/SWIG_files/wrapper/StlAPI.i | 1 + src/SWIG_files/wrapper/Storage.i | 69 +- src/SWIG_files/wrapper/Sweep.i | 1 + src/SWIG_files/wrapper/TColGeom.i | 137 +--- src/SWIG_files/wrapper/TColGeom2d.i | 103 +-- src/SWIG_files/wrapper/TColQuantity.i | 1 + src/SWIG_files/wrapper/TColStd.i | 31 +- src/SWIG_files/wrapper/TColgp.i | 91 ++- src/SWIG_files/wrapper/TCollection.i | 1 + src/SWIG_files/wrapper/TDF.i | 35 +- src/SWIG_files/wrapper/TDataStd.i | 35 +- src/SWIG_files/wrapper/TDataXtd.i | 35 +- src/SWIG_files/wrapper/TDocStd.i | 1 + src/SWIG_files/wrapper/TFunction.i | 1 + src/SWIG_files/wrapper/TNaming.i | 1 + src/SWIG_files/wrapper/TObj.i | 1 + src/SWIG_files/wrapper/TPrsStd.i | 1 + src/SWIG_files/wrapper/TShort.i | 25 +- src/SWIG_files/wrapper/TopAbs.i | 1 + src/SWIG_files/wrapper/TopBas.i | 1 + src/SWIG_files/wrapper/TopClass.i | 1 + src/SWIG_files/wrapper/TopCnx.i | 1 + src/SWIG_files/wrapper/TopExp.i | 1 + src/SWIG_files/wrapper/TopLoc.i | 1 + src/SWIG_files/wrapper/TopOpeBRep.i | 69 +- src/SWIG_files/wrapper/TopOpeBRepBuild.i | 1 + src/SWIG_files/wrapper/TopOpeBRepDS.i | 1 + src/SWIG_files/wrapper/TopOpeBRepTool.i | 1 + src/SWIG_files/wrapper/TopTools.i | 35 +- src/SWIG_files/wrapper/TopTrans.i | 1 + src/SWIG_files/wrapper/TopoDS.i | 1 + src/SWIG_files/wrapper/TopoDSToStep.i | 1 + src/SWIG_files/wrapper/Transfer.i | 1 + src/SWIG_files/wrapper/TransferBRep.i | 1 + src/SWIG_files/wrapper/UTL.i | 1 + src/SWIG_files/wrapper/Units.i | 1 + src/SWIG_files/wrapper/UnitsAPI.i | 1 + src/SWIG_files/wrapper/UnitsMethods.i | 1 + src/SWIG_files/wrapper/V3d.i | 1 + src/SWIG_files/wrapper/Vrml.i | 1 + src/SWIG_files/wrapper/VrmlAPI.i | 1 + src/SWIG_files/wrapper/VrmlConverter.i | 1 + src/SWIG_files/wrapper/VrmlData.i | 1 + src/SWIG_files/wrapper/XBRepMesh.i | 1 + src/SWIG_files/wrapper/XCAFApp.i | 1 + src/SWIG_files/wrapper/XCAFDimTolObjects.i | 1 + src/SWIG_files/wrapper/XCAFDoc.i | 1 + src/SWIG_files/wrapper/XCAFNoteObjects.i | 1 + src/SWIG_files/wrapper/XCAFPrs.i | 1 + src/SWIG_files/wrapper/XCAFView.i | 1 + src/SWIG_files/wrapper/XSControl.i | 1 + src/SWIG_files/wrapper/XmlDrivers.i | 1 + src/SWIG_files/wrapper/XmlLDrivers.i | 1 + src/SWIG_files/wrapper/XmlMDF.i | 1 + src/SWIG_files/wrapper/XmlMDataStd.i | 1 + src/SWIG_files/wrapper/XmlMDataXtd.i | 1 + src/SWIG_files/wrapper/XmlMDocStd.i | 1 + src/SWIG_files/wrapper/XmlMFunction.i | 1 + src/SWIG_files/wrapper/XmlMNaming.i | 1 + src/SWIG_files/wrapper/XmlMXCAFDoc.i | 1 + src/SWIG_files/wrapper/XmlObjMgt.i | 1 + src/SWIG_files/wrapper/XmlTObjDrivers.i | 1 + src/SWIG_files/wrapper/XmlXCAFDrivers.i | 1 + src/SWIG_files/wrapper/gce.i | 1 + src/SWIG_files/wrapper/generator.log | 502 +++++++------- src/SWIG_files/wrapper/gp.i | 1 + src/SWIG_files/wrapper/math.i | 35 +- 313 files changed, 870 insertions(+), 5563 deletions(-) diff --git a/src/SWIG_files/wrapper/AIS.i b/src/SWIG_files/wrapper/AIS.i index 5a8dfca38..59fe2584c 100644 --- a/src/SWIG_files/wrapper/AIS.i +++ b/src/SWIG_files/wrapper/AIS.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_ais.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -615,40 +616,8 @@ AIS_WalkTranslation_Up = AIS_WalkTranslation.AIS_WalkTranslation_Up %template(AIS_MouseGestureMap) NCollection_DataMap; %template(AIS_MouseSelectionSchemeMap) NCollection_DataMap; %template(AIS_NArray1OfEntityOwner) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(AIS_NListOfEntityOwner) NCollection_List>; %extend NCollection_List> { diff --git a/src/SWIG_files/wrapper/APIHeaderSection.i b/src/SWIG_files/wrapper/APIHeaderSection.i index 28295f8b0..dafe0e9df 100644 --- a/src/SWIG_files/wrapper/APIHeaderSection.i +++ b/src/SWIG_files/wrapper/APIHeaderSection.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_apiheadersection. %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Adaptor2d.i b/src/SWIG_files/wrapper/Adaptor2d.i index fb575a889..4d388f909 100644 --- a/src/SWIG_files/wrapper/Adaptor2d.i +++ b/src/SWIG_files/wrapper/Adaptor2d.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_adaptor2d.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Adaptor3d.i b/src/SWIG_files/wrapper/Adaptor3d.i index beb69d789..caadeb44e 100644 --- a/src/SWIG_files/wrapper/Adaptor3d.i +++ b/src/SWIG_files/wrapper/Adaptor3d.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_adaptor3d.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/AdvApp2Var.i b/src/SWIG_files/wrapper/AdvApp2Var.i index 0615813bd..6127dbfbe 100644 --- a/src/SWIG_files/wrapper/AdvApp2Var.i +++ b/src/SWIG_files/wrapper/AdvApp2Var.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_advapp2var.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/AdvApprox.i b/src/SWIG_files/wrapper/AdvApprox.i index 5a22ef058..74721ee16 100644 --- a/src/SWIG_files/wrapper/AdvApprox.i +++ b/src/SWIG_files/wrapper/AdvApprox.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_advapprox.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/AppBlend.i b/src/SWIG_files/wrapper/AppBlend.i index 291887b8d..0ed2ff3dc 100644 --- a/src/SWIG_files/wrapper/AppBlend.i +++ b/src/SWIG_files/wrapper/AppBlend.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_appblend.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/AppCont.i b/src/SWIG_files/wrapper/AppCont.i index 48de45419..26ebbc31c 100644 --- a/src/SWIG_files/wrapper/AppCont.i +++ b/src/SWIG_files/wrapper/AppCont.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_appcont.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/AppDef.i b/src/SWIG_files/wrapper/AppDef.i index f4db4a8f0..f9ac7f493 100644 --- a/src/SWIG_files/wrapper/AppDef.i +++ b/src/SWIG_files/wrapper/AppDef.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_appdef.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -94,40 +95,8 @@ from OCC.Core.Exception import * /* templates */ %template(AppDef_Array1OfMultiPointConstraint) NCollection_Array1; +Array1ExtendIter(AppDef_MultiPointConstraint) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; /* end templates declaration */ /* typedefs */ diff --git a/src/SWIG_files/wrapper/AppParCurves.i b/src/SWIG_files/wrapper/AppParCurves.i index 4927aa9d5..9caeb52b7 100644 --- a/src/SWIG_files/wrapper/AppParCurves.i +++ b/src/SWIG_files/wrapper/AppParCurves.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_appparcurves.html %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -99,145 +100,17 @@ AppParCurves_CurvaturePoint = AppParCurves_Constraint.AppParCurves_CurvaturePoin /* templates */ %template(AppParCurves_Array1OfConstraintCouple) NCollection_Array1; +Array1ExtendIter(AppParCurves_ConstraintCouple) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(AppParCurves_Array1OfMultiBSpCurve) NCollection_Array1; +Array1ExtendIter(AppParCurves_MultiBSpCurve) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(AppParCurves_Array1OfMultiCurve) NCollection_Array1; +Array1ExtendIter(AppParCurves_MultiCurve) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(AppParCurves_Array1OfMultiPoint) NCollection_Array1; +Array1ExtendIter(AppParCurves_MultiPoint) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(AppParCurves_SequenceOfMultiBSpCurve) NCollection_Sequence; %extend NCollection_Sequence { diff --git a/src/SWIG_files/wrapper/AppStd.i b/src/SWIG_files/wrapper/AppStd.i index 7974c03db..957d16da1 100644 --- a/src/SWIG_files/wrapper/AppStd.i +++ b/src/SWIG_files/wrapper/AppStd.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_appstd.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/AppStdL.i b/src/SWIG_files/wrapper/AppStdL.i index 5d1201251..1df6f2f80 100644 --- a/src/SWIG_files/wrapper/AppStdL.i +++ b/src/SWIG_files/wrapper/AppStdL.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_appstdl.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Approx.i b/src/SWIG_files/wrapper/Approx.i index f2076a091..1887124d4 100644 --- a/src/SWIG_files/wrapper/Approx.i +++ b/src/SWIG_files/wrapper/Approx.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_approx.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -124,75 +125,11 @@ Approx_NoApproximation = Approx_Status.Approx_NoApproximation /* templates */ %template(Approx_Array1OfAdHSurface) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(Approx_Array1OfGTrsf2d) NCollection_Array1; +Array1ExtendIter(gp_GTrsf2d) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(Approx_SequenceOfHArray1OfReal) NCollection_Sequence>; %extend NCollection_Sequence> { diff --git a/src/SWIG_files/wrapper/ApproxInt.i b/src/SWIG_files/wrapper/ApproxInt.i index a17d3ad61..ecc3b83d6 100644 --- a/src/SWIG_files/wrapper/ApproxInt.i +++ b/src/SWIG_files/wrapper/ApproxInt.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_approxint.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Aspect.i b/src/SWIG_files/wrapper/Aspect.i index 4473ecce9..8d596f01e 100644 --- a/src/SWIG_files/wrapper/Aspect.i +++ b/src/SWIG_files/wrapper/Aspect.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_aspect.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -1145,40 +1146,8 @@ Aspect_XRTrackedDeviceRole_Other = Aspect_XRTrackedDeviceRole.Aspect_XRTrackedDe }; %template(Aspect_TouchMap) NCollection_IndexedDataMap; %template(Aspect_TrackedDevicePoseArray) NCollection_Array1; +Array1ExtendIter(Aspect_TrackedDevicePose) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(Aspect_XRActionMap) NCollection_IndexedDataMap>; %template(Aspect_XRActionSetMap) NCollection_IndexedDataMap>; /* end templates declaration */ diff --git a/src/SWIG_files/wrapper/BOPAlgo.i b/src/SWIG_files/wrapper/BOPAlgo.i index 9d16ea4a8..3e6501fa4 100644 --- a/src/SWIG_files/wrapper/BOPAlgo.i +++ b/src/SWIG_files/wrapper/BOPAlgo.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_bopalgo.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BOPDS.i b/src/SWIG_files/wrapper/BOPDS.i index e9471b8a8..901387031 100644 --- a/src/SWIG_files/wrapper/BOPDS.i +++ b/src/SWIG_files/wrapper/BOPDS.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_bopds.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -166,40 +167,8 @@ from OCC.Core.Exception import * %template(BOPDS_VectorOfListOfPaveBlock) NCollection_Vector; %template(BOPDS_VectorOfPair) NCollection_Vector; %template(BOPDS_VectorOfPave) NCollection_Array1; +Array1ExtendIter(BOPDS_Pave) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(BOPDS_VectorOfPoint) NCollection_Vector; %template(BOPDS_VectorOfShapeInfo) NCollection_Vector; %template(BOPDS_VectorOfVectorOfPair) NCollection_Vector; diff --git a/src/SWIG_files/wrapper/BOPTools.i b/src/SWIG_files/wrapper/BOPTools.i index dba9ab4f1..af6301702 100644 --- a/src/SWIG_files/wrapper/BOPTools.i +++ b/src/SWIG_files/wrapper/BOPTools.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_boptools.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRep.i b/src/SWIG_files/wrapper/BRep.i index 8664102e4..7d0582bb3 100644 --- a/src/SWIG_files/wrapper/BRep.i +++ b/src/SWIG_files/wrapper/BRep.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brep.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepAdaptor.i b/src/SWIG_files/wrapper/BRepAdaptor.i index 5577a0981..5b79d3640 100644 --- a/src/SWIG_files/wrapper/BRepAdaptor.i +++ b/src/SWIG_files/wrapper/BRepAdaptor.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepadaptor.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -96,40 +97,8 @@ from OCC.Core.Exception import * /* templates */ %template(BRepAdaptor_Array1OfCurve) NCollection_Array1; +Array1ExtendIter(BRepAdaptor_Curve) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; /* end templates declaration */ /* typedefs */ diff --git a/src/SWIG_files/wrapper/BRepAlgo.i b/src/SWIG_files/wrapper/BRepAlgo.i index a62e785e1..e945af730 100644 --- a/src/SWIG_files/wrapper/BRepAlgo.i +++ b/src/SWIG_files/wrapper/BRepAlgo.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepalgo.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepAlgoAPI.i b/src/SWIG_files/wrapper/BRepAlgoAPI.i index 43747531c..eda58d076 100644 --- a/src/SWIG_files/wrapper/BRepAlgoAPI.i +++ b/src/SWIG_files/wrapper/BRepAlgoAPI.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepalgoapi.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepApprox.i b/src/SWIG_files/wrapper/BRepApprox.i index cc5975149..fedda20aa 100644 --- a/src/SWIG_files/wrapper/BRepApprox.i +++ b/src/SWIG_files/wrapper/BRepApprox.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepapprox.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepBlend.i b/src/SWIG_files/wrapper/BRepBlend.i index 87717752c..928bd1cc7 100644 --- a/src/SWIG_files/wrapper/BRepBlend.i +++ b/src/SWIG_files/wrapper/BRepBlend.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepblend.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepBndLib.i b/src/SWIG_files/wrapper/BRepBndLib.i index 834b435fd..158702726 100644 --- a/src/SWIG_files/wrapper/BRepBndLib.i +++ b/src/SWIG_files/wrapper/BRepBndLib.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepbndlib.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepBuilderAPI.i b/src/SWIG_files/wrapper/BRepBuilderAPI.i index f0666289b..50e4fd89d 100644 --- a/src/SWIG_files/wrapper/BRepBuilderAPI.i +++ b/src/SWIG_files/wrapper/BRepBuilderAPI.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepbuilderapi.ht %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepCheck.i b/src/SWIG_files/wrapper/BRepCheck.i index a903da9b5..755c840d0 100644 --- a/src/SWIG_files/wrapper/BRepCheck.i +++ b/src/SWIG_files/wrapper/BRepCheck.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepcheck.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepClass.i b/src/SWIG_files/wrapper/BRepClass.i index 189ba76b8..18242f5cd 100644 --- a/src/SWIG_files/wrapper/BRepClass.i +++ b/src/SWIG_files/wrapper/BRepClass.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepclass.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepClass3d.i b/src/SWIG_files/wrapper/BRepClass3d.i index ec8b7c21d..d803a54ad 100644 --- a/src/SWIG_files/wrapper/BRepClass3d.i +++ b/src/SWIG_files/wrapper/BRepClass3d.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepclass3d.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepExtrema.i b/src/SWIG_files/wrapper/BRepExtrema.i index 25bed1a6b..8e9815e64 100644 --- a/src/SWIG_files/wrapper/BRepExtrema.i +++ b/src/SWIG_files/wrapper/BRepExtrema.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepextrema.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepFeat.i b/src/SWIG_files/wrapper/BRepFeat.i index 8e5b460fb..b8cd95fd5 100644 --- a/src/SWIG_files/wrapper/BRepFeat.i +++ b/src/SWIG_files/wrapper/BRepFeat.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepfeat.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepFill.i b/src/SWIG_files/wrapper/BRepFill.i index c7829a7db..9ec3ca5a4 100644 --- a/src/SWIG_files/wrapper/BRepFill.i +++ b/src/SWIG_files/wrapper/BRepFill.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepfill.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepFilletAPI.i b/src/SWIG_files/wrapper/BRepFilletAPI.i index 5874aac8b..c50855cb6 100644 --- a/src/SWIG_files/wrapper/BRepFilletAPI.i +++ b/src/SWIG_files/wrapper/BRepFilletAPI.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepfilletapi.htm %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepGProp.i b/src/SWIG_files/wrapper/BRepGProp.i index 9df9a9759..b7343d167 100644 --- a/src/SWIG_files/wrapper/BRepGProp.i +++ b/src/SWIG_files/wrapper/BRepGProp.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepgprop.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepIntCurveSurface.i b/src/SWIG_files/wrapper/BRepIntCurveSurface.i index a5d61b0b7..fcc5a9d72 100644 --- a/src/SWIG_files/wrapper/BRepIntCurveSurface.i +++ b/src/SWIG_files/wrapper/BRepIntCurveSurface.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepintcurvesurfa %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepLProp.i b/src/SWIG_files/wrapper/BRepLProp.i index 428affa09..409aec579 100644 --- a/src/SWIG_files/wrapper/BRepLProp.i +++ b/src/SWIG_files/wrapper/BRepLProp.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_breplprop.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepLib.i b/src/SWIG_files/wrapper/BRepLib.i index 19670f239..101ed8689 100644 --- a/src/SWIG_files/wrapper/BRepLib.i +++ b/src/SWIG_files/wrapper/BRepLib.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_breplib.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepMAT2d.i b/src/SWIG_files/wrapper/BRepMAT2d.i index 5efdb4c5f..830984124 100644 --- a/src/SWIG_files/wrapper/BRepMAT2d.i +++ b/src/SWIG_files/wrapper/BRepMAT2d.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepmat2d.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepMesh.i b/src/SWIG_files/wrapper/BRepMesh.i index a071c6b5e..003c57b7b 100644 --- a/src/SWIG_files/wrapper/BRepMesh.i +++ b/src/SWIG_files/wrapper/BRepMesh.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepmesh.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepMeshData.i b/src/SWIG_files/wrapper/BRepMeshData.i index a2964e965..f9af2ffb4 100644 --- a/src/SWIG_files/wrapper/BRepMeshData.i +++ b/src/SWIG_files/wrapper/BRepMeshData.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepmeshdata.html %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepOffset.i b/src/SWIG_files/wrapper/BRepOffset.i index 006dbfe7d..06c3e77bf 100644 --- a/src/SWIG_files/wrapper/BRepOffset.i +++ b/src/SWIG_files/wrapper/BRepOffset.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepoffset.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepOffsetAPI.i b/src/SWIG_files/wrapper/BRepOffsetAPI.i index 7c56d2dac..502e4a839 100644 --- a/src/SWIG_files/wrapper/BRepOffsetAPI.i +++ b/src/SWIG_files/wrapper/BRepOffsetAPI.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepoffsetapi.htm %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepPrim.i b/src/SWIG_files/wrapper/BRepPrim.i index 1e317d657..a22e6d70e 100644 --- a/src/SWIG_files/wrapper/BRepPrim.i +++ b/src/SWIG_files/wrapper/BRepPrim.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepprim.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepPrimAPI.i b/src/SWIG_files/wrapper/BRepPrimAPI.i index f95ba2fa5..62eeff84c 100644 --- a/src/SWIG_files/wrapper/BRepPrimAPI.i +++ b/src/SWIG_files/wrapper/BRepPrimAPI.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepprimapi.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepProj.i b/src/SWIG_files/wrapper/BRepProj.i index 3bf778a49..3d4bee92c 100644 --- a/src/SWIG_files/wrapper/BRepProj.i +++ b/src/SWIG_files/wrapper/BRepProj.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepproj.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepSweep.i b/src/SWIG_files/wrapper/BRepSweep.i index e1bf6b726..fc65c4500 100644 --- a/src/SWIG_files/wrapper/BRepSweep.i +++ b/src/SWIG_files/wrapper/BRepSweep.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepsweep.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepTools.i b/src/SWIG_files/wrapper/BRepTools.i index c38d145e8..1bcbbcf72 100644 --- a/src/SWIG_files/wrapper/BRepTools.i +++ b/src/SWIG_files/wrapper/BRepTools.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_breptools.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BRepTopAdaptor.i b/src/SWIG_files/wrapper/BRepTopAdaptor.i index 707eb7bf9..1dff5765e 100644 --- a/src/SWIG_files/wrapper/BRepTopAdaptor.i +++ b/src/SWIG_files/wrapper/BRepTopAdaptor.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_breptopadaptor.ht %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BSplCLib.i b/src/SWIG_files/wrapper/BSplCLib.i index f40e9465c..e6a57d37d 100644 --- a/src/SWIG_files/wrapper/BSplCLib.i +++ b/src/SWIG_files/wrapper/BSplCLib.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_bsplclib.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BSplSLib.i b/src/SWIG_files/wrapper/BSplSLib.i index d9780de8d..8d97f5c92 100644 --- a/src/SWIG_files/wrapper/BSplSLib.i +++ b/src/SWIG_files/wrapper/BSplSLib.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_bsplslib.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BVH.i b/src/SWIG_files/wrapper/BVH.i index b9260f09d..ad665ba54 100644 --- a/src/SWIG_files/wrapper/BVH.i +++ b/src/SWIG_files/wrapper/BVH.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_bvh.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BiTgte.i b/src/SWIG_files/wrapper/BiTgte.i index c6fb5d2ac..88345a370 100644 --- a/src/SWIG_files/wrapper/BiTgte.i +++ b/src/SWIG_files/wrapper/BiTgte.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_bitgte.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BinDrivers.i b/src/SWIG_files/wrapper/BinDrivers.i index dfd3e3024..c55a2845c 100644 --- a/src/SWIG_files/wrapper/BinDrivers.i +++ b/src/SWIG_files/wrapper/BinDrivers.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_bindrivers.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BinLDrivers.i b/src/SWIG_files/wrapper/BinLDrivers.i index 9a751cd6b..9214efc88 100644 --- a/src/SWIG_files/wrapper/BinLDrivers.i +++ b/src/SWIG_files/wrapper/BinLDrivers.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_binldrivers.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BinMDF.i b/src/SWIG_files/wrapper/BinMDF.i index 3e18a8eca..3f3cf5096 100644 --- a/src/SWIG_files/wrapper/BinMDF.i +++ b/src/SWIG_files/wrapper/BinMDF.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_binmdf.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BinMDataStd.i b/src/SWIG_files/wrapper/BinMDataStd.i index fdbca1043..58059efd6 100644 --- a/src/SWIG_files/wrapper/BinMDataStd.i +++ b/src/SWIG_files/wrapper/BinMDataStd.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_binmdatastd.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BinMDataXtd.i b/src/SWIG_files/wrapper/BinMDataXtd.i index 049a45b41..c27d08255 100644 --- a/src/SWIG_files/wrapper/BinMDataXtd.i +++ b/src/SWIG_files/wrapper/BinMDataXtd.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_binmdataxtd.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BinMDocStd.i b/src/SWIG_files/wrapper/BinMDocStd.i index a87af92e5..d6762faaf 100644 --- a/src/SWIG_files/wrapper/BinMDocStd.i +++ b/src/SWIG_files/wrapper/BinMDocStd.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_binmdocstd.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BinMFunction.i b/src/SWIG_files/wrapper/BinMFunction.i index 63195e897..1bc790d81 100644 --- a/src/SWIG_files/wrapper/BinMFunction.i +++ b/src/SWIG_files/wrapper/BinMFunction.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_binmfunction.html %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BinMNaming.i b/src/SWIG_files/wrapper/BinMNaming.i index 081b91260..67b4d5b9b 100644 --- a/src/SWIG_files/wrapper/BinMNaming.i +++ b/src/SWIG_files/wrapper/BinMNaming.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_binmnaming.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BinMXCAFDoc.i b/src/SWIG_files/wrapper/BinMXCAFDoc.i index 33abb801b..39a42ac33 100644 --- a/src/SWIG_files/wrapper/BinMXCAFDoc.i +++ b/src/SWIG_files/wrapper/BinMXCAFDoc.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_binmxcafdoc.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BinObjMgt.i b/src/SWIG_files/wrapper/BinObjMgt.i index 7c034d23a..924221ba9 100644 --- a/src/SWIG_files/wrapper/BinObjMgt.i +++ b/src/SWIG_files/wrapper/BinObjMgt.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_binobjmgt.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BinTObjDrivers.i b/src/SWIG_files/wrapper/BinTObjDrivers.i index ebc2ac7bb..b77a9b7fa 100644 --- a/src/SWIG_files/wrapper/BinTObjDrivers.i +++ b/src/SWIG_files/wrapper/BinTObjDrivers.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_bintobjdrivers.ht %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BinTools.i b/src/SWIG_files/wrapper/BinTools.i index b827c4c22..68162a230 100644 --- a/src/SWIG_files/wrapper/BinTools.i +++ b/src/SWIG_files/wrapper/BinTools.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_bintools.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BinXCAFDrivers.i b/src/SWIG_files/wrapper/BinXCAFDrivers.i index 4afba7423..738d89265 100644 --- a/src/SWIG_files/wrapper/BinXCAFDrivers.i +++ b/src/SWIG_files/wrapper/BinXCAFDrivers.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_binxcafdrivers.ht %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Bisector.i b/src/SWIG_files/wrapper/Bisector.i index 5a5eda348..833e0911d 100644 --- a/src/SWIG_files/wrapper/Bisector.i +++ b/src/SWIG_files/wrapper/Bisector.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_bisector.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Blend.i b/src/SWIG_files/wrapper/Blend.i index 8c3c1e33c..303d51c62 100644 --- a/src/SWIG_files/wrapper/Blend.i +++ b/src/SWIG_files/wrapper/Blend.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_blend.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/BlendFunc.i b/src/SWIG_files/wrapper/BlendFunc.i index 2da22a908..798ef87cd 100644 --- a/src/SWIG_files/wrapper/BlendFunc.i +++ b/src/SWIG_files/wrapper/BlendFunc.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_blendfunc.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Bnd.i b/src/SWIG_files/wrapper/Bnd.i index 8f43d139a..9fedade99 100644 --- a/src/SWIG_files/wrapper/Bnd.i +++ b/src/SWIG_files/wrapper/Bnd.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_bnd.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -80,110 +81,14 @@ from OCC.Core.Exception import * /* templates */ %template(Bnd_Array1OfBox) NCollection_Array1; +Array1ExtendIter(Bnd_Box) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(Bnd_Array1OfBox2d) NCollection_Array1; +Array1ExtendIter(Bnd_Box2d) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(Bnd_Array1OfSphere) NCollection_Array1; +Array1ExtendIter(Bnd_Sphere) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; /* end templates declaration */ /* typedefs */ diff --git a/src/SWIG_files/wrapper/BndLib.i b/src/SWIG_files/wrapper/BndLib.i index a9bbf88a5..f12caad13 100644 --- a/src/SWIG_files/wrapper/BndLib.i +++ b/src/SWIG_files/wrapper/BndLib.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_bndlib.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/CDF.i b/src/SWIG_files/wrapper/CDF.i index d856a0da8..0a37abb64 100644 --- a/src/SWIG_files/wrapper/CDF.i +++ b/src/SWIG_files/wrapper/CDF.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_cdf.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/CDM.i b/src/SWIG_files/wrapper/CDM.i index 159a2e556..90d45a399 100644 --- a/src/SWIG_files/wrapper/CDM.i +++ b/src/SWIG_files/wrapper/CDM.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_cdm.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/CPnts.i b/src/SWIG_files/wrapper/CPnts.i index ebebc77f8..81cf533e7 100644 --- a/src/SWIG_files/wrapper/CPnts.i +++ b/src/SWIG_files/wrapper/CPnts.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_cpnts.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/CSLib.i b/src/SWIG_files/wrapper/CSLib.i index 6aae80a3c..02b8497d2 100644 --- a/src/SWIG_files/wrapper/CSLib.i +++ b/src/SWIG_files/wrapper/CSLib.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_cslib.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/ChFi2d.i b/src/SWIG_files/wrapper/ChFi2d.i index 001ee59c0..52fa67e1f 100644 --- a/src/SWIG_files/wrapper/ChFi2d.i +++ b/src/SWIG_files/wrapper/ChFi2d.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_chfi2d.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/ChFi3d.i b/src/SWIG_files/wrapper/ChFi3d.i index 6ebbe4174..000f33abb 100644 --- a/src/SWIG_files/wrapper/ChFi3d.i +++ b/src/SWIG_files/wrapper/ChFi3d.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_chfi3d.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/ChFiDS.i b/src/SWIG_files/wrapper/ChFiDS.i index 9059f1e6d..091a84988 100644 --- a/src/SWIG_files/wrapper/ChFiDS.i +++ b/src/SWIG_files/wrapper/ChFiDS.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_chfids.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -229,40 +230,8 @@ ChFiDS_Mixed = ChFiDS_TypeOfConcavity.ChFiDS_Mixed } }; %template(ChFiDS_SecArray1) NCollection_Array1; +Array1ExtendIter(ChFiDS_CircSection) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(ChFiDS_SequenceOfSpine) NCollection_Sequence>; %extend NCollection_Sequence> { @@ -280,40 +249,8 @@ ChFiDS_Mixed = ChFiDS_TypeOfConcavity.ChFiDS_Mixed } }; %template(ChFiDS_StripeArray1) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; /* end templates declaration */ /* typedefs */ diff --git a/src/SWIG_files/wrapper/ChFiKPart.i b/src/SWIG_files/wrapper/ChFiKPart.i index 47137ac55..97bd2a976 100644 --- a/src/SWIG_files/wrapper/ChFiKPart.i +++ b/src/SWIG_files/wrapper/ChFiKPart.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_chfikpart.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Contap.i b/src/SWIG_files/wrapper/Contap.i index 6fbf0cf8a..75e798fa3 100644 --- a/src/SWIG_files/wrapper/Contap.i +++ b/src/SWIG_files/wrapper/Contap.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_contap.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Convert.i b/src/SWIG_files/wrapper/Convert.i index f43ac28bf..dc44861a1 100644 --- a/src/SWIG_files/wrapper/Convert.i +++ b/src/SWIG_files/wrapper/Convert.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_convert.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/DE.i b/src/SWIG_files/wrapper/DE.i index e52a3446a..009f3af8f 100644 --- a/src/SWIG_files/wrapper/DE.i +++ b/src/SWIG_files/wrapper/DE.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_de.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/DEBRepCascade.i b/src/SWIG_files/wrapper/DEBRepCascade.i index 5dc896ce2..56ebb5d8c 100644 --- a/src/SWIG_files/wrapper/DEBRepCascade.i +++ b/src/SWIG_files/wrapper/DEBRepCascade.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_debrepcascade.htm %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/DEXCAFCascade.i b/src/SWIG_files/wrapper/DEXCAFCascade.i index 0a56ab3a8..4e10dbd2f 100644 --- a/src/SWIG_files/wrapper/DEXCAFCascade.i +++ b/src/SWIG_files/wrapper/DEXCAFCascade.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_dexcafcascade.htm %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Draft.i b/src/SWIG_files/wrapper/Draft.i index 43d268357..09a6127d9 100644 --- a/src/SWIG_files/wrapper/Draft.i +++ b/src/SWIG_files/wrapper/Draft.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_draft.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/DsgPrs.i b/src/SWIG_files/wrapper/DsgPrs.i index 66af73459..a2206938d 100644 --- a/src/SWIG_files/wrapper/DsgPrs.i +++ b/src/SWIG_files/wrapper/DsgPrs.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_dsgprs.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/ElCLib.i b/src/SWIG_files/wrapper/ElCLib.i index 054ebaa8e..64eb3371f 100644 --- a/src/SWIG_files/wrapper/ElCLib.i +++ b/src/SWIG_files/wrapper/ElCLib.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_elclib.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/ElSLib.i b/src/SWIG_files/wrapper/ElSLib.i index 44d6dc638..7a050fd82 100644 --- a/src/SWIG_files/wrapper/ElSLib.i +++ b/src/SWIG_files/wrapper/ElSLib.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_elslib.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Expr.i b/src/SWIG_files/wrapper/Expr.i index 50d1390f5..86444da21 100644 --- a/src/SWIG_files/wrapper/Expr.i +++ b/src/SWIG_files/wrapper/Expr.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_expr.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -120,110 +121,14 @@ from OCC.Core.Exception import * /* templates */ %template(Expr_Array1OfGeneralExpression) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(Expr_Array1OfNamedUnknown) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(Expr_Array1OfSingleRelation) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(Expr_MapOfNamedUnknown) NCollection_IndexedMap>; %template(Expr_SequenceOfGeneralExpression) NCollection_Sequence>; diff --git a/src/SWIG_files/wrapper/ExprIntrp.i b/src/SWIG_files/wrapper/ExprIntrp.i index 3a89b7e05..1885370a5 100644 --- a/src/SWIG_files/wrapper/ExprIntrp.i +++ b/src/SWIG_files/wrapper/ExprIntrp.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_exprintrp.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Extrema.i b/src/SWIG_files/wrapper/Extrema.i index 57ac86787..bea9f028d 100644 --- a/src/SWIG_files/wrapper/Extrema.i +++ b/src/SWIG_files/wrapper/Extrema.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_extrema.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -139,110 +140,14 @@ Extrema_ExtFlag_MINMAX = Extrema_ExtFlag.Extrema_ExtFlag_MINMAX /* templates */ %template(Extrema_Array1OfPOnCurv) NCollection_Array1; +Array1ExtendIter(Extrema_POnCurv) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(Extrema_Array1OfPOnCurv2d) NCollection_Array1; +Array1ExtendIter(Extrema_POnCurv2d) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(Extrema_Array1OfPOnSurf) NCollection_Array1; +Array1ExtendIter(Extrema_POnSurf) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(Extrema_SequenceOfPOnCurv) NCollection_Sequence; %extend NCollection_Sequence { diff --git a/src/SWIG_files/wrapper/FEmTool.i b/src/SWIG_files/wrapper/FEmTool.i index a6cf887b9..6ed9699b8 100644 --- a/src/SWIG_files/wrapper/FEmTool.i +++ b/src/SWIG_files/wrapper/FEmTool.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_femtool.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/FSD.i b/src/SWIG_files/wrapper/FSD.i index ceeb6f5e2..de5d95cf9 100644 --- a/src/SWIG_files/wrapper/FSD.i +++ b/src/SWIG_files/wrapper/FSD.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_fsd.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/FairCurve.i b/src/SWIG_files/wrapper/FairCurve.i index 76f04174a..4e68d9446 100644 --- a/src/SWIG_files/wrapper/FairCurve.i +++ b/src/SWIG_files/wrapper/FairCurve.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_faircurve.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/FilletSurf.i b/src/SWIG_files/wrapper/FilletSurf.i index a99c9f878..ee6ce3050 100644 --- a/src/SWIG_files/wrapper/FilletSurf.i +++ b/src/SWIG_files/wrapper/FilletSurf.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_filletsurf.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/GC.i b/src/SWIG_files/wrapper/GC.i index 41a0240c2..7f3731b15 100644 --- a/src/SWIG_files/wrapper/GC.i +++ b/src/SWIG_files/wrapper/GC.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_gc.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/GCE2d.i b/src/SWIG_files/wrapper/GCE2d.i index 69fe3607b..1ece8486a 100644 --- a/src/SWIG_files/wrapper/GCE2d.i +++ b/src/SWIG_files/wrapper/GCE2d.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_gce2d.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/GCPnts.i b/src/SWIG_files/wrapper/GCPnts.i index 2921c634f..e91ee0e25 100644 --- a/src/SWIG_files/wrapper/GCPnts.i +++ b/src/SWIG_files/wrapper/GCPnts.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_gcpnts.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/GProp.i b/src/SWIG_files/wrapper/GProp.i index af8b665d5..b22fc0615 100644 --- a/src/SWIG_files/wrapper/GProp.i +++ b/src/SWIG_files/wrapper/GProp.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_gprop.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/GccAna.i b/src/SWIG_files/wrapper/GccAna.i index 178c9c426..5870f59ce 100644 --- a/src/SWIG_files/wrapper/GccAna.i +++ b/src/SWIG_files/wrapper/GccAna.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_gccana.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/GccEnt.i b/src/SWIG_files/wrapper/GccEnt.i index 0adcf2af8..52ca4066d 100644 --- a/src/SWIG_files/wrapper/GccEnt.i +++ b/src/SWIG_files/wrapper/GccEnt.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_gccent.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/GccInt.i b/src/SWIG_files/wrapper/GccInt.i index 89cd1c1da..26ccf45a5 100644 --- a/src/SWIG_files/wrapper/GccInt.i +++ b/src/SWIG_files/wrapper/GccInt.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_gccint.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Geom.i b/src/SWIG_files/wrapper/Geom.i index b7d69c278..30ed4f7e7 100644 --- a/src/SWIG_files/wrapper/Geom.i +++ b/src/SWIG_files/wrapper/Geom.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geom.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -53,16 +54,29 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geom.html" #include %}; +/* +numpy support for Geom, Geom2d, Poly, TColStd, TColgp, TShort see +https://github.com/tpaviot/pythonocc-core/pull/1381 +*/ %{ #define SWIG_FILE_WITH_INIT %} %include ../common/numpy.i -%include ../common/ArrayMacros.i %init %{ - import_array(); + import_array(); %} +%pythoncode { + import numpy as np +} +%apply (double* IN_ARRAY1, int DIM1) { (double* numpyArrayU, int nRowsU) }; +%apply (double* IN_ARRAY2, int DIM1, int DIM2) { (double* numpyArrayUV, int nRowsUV, int nColUV) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArrayResultArgout, int aSizeArgout) }; + +/* +end of numpy support section +*/ %import Standard.i %import NCollection.i %import gp.i @@ -71,8 +85,6 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geom.html" %import TColStd.i %pythoncode { -import numpy as np - from enum import IntEnum from OCC.Core.Exception import * }; @@ -138,10 +150,6 @@ from OCC.Core.Exception import * }; /* end templates declaration */ -%apply (double* IN_ARRAY1, int DIM1) { (double* numpyArrayU, int nRowsU) }; -%apply (double* IN_ARRAY2, int DIM1, int DIM2) { (double* numpyArrayUV, int nRowsUV, int nColUV) }; -%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArrayResultArgout, int aSizeArgout) }; - /* typedefs */ typedef NCollection_Sequence> Geom_SequenceOfBSplineSurface; /* end typedefs declaration */ @@ -1578,6 +1586,7 @@ Computes the point of parameter u on . if the curve is periodic then the r } }; +// numpy support for Geom_Curve CurveArrayEvalExtend(Geom_Curve) /******************* @@ -2186,6 +2195,7 @@ Computes the point of parameter (u, v) on the surface. //! it is implemented wit } }; +// numpy support for Geom_Surface SurfaceArrayEvalExtend(Geom_Surface) /******************** diff --git a/src/SWIG_files/wrapper/Geom2d.i b/src/SWIG_files/wrapper/Geom2d.i index 1bb24a12a..95ccc7ac5 100644 --- a/src/SWIG_files/wrapper/Geom2d.i +++ b/src/SWIG_files/wrapper/Geom2d.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geom2d.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -53,16 +54,29 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geom2d.html" #include %}; +/* +numpy support for Geom, Geom2d, Poly, TColStd, TColgp, TShort see +https://github.com/tpaviot/pythonocc-core/pull/1381 +*/ %{ #define SWIG_FILE_WITH_INIT %} %include ../common/numpy.i -%include ../common/ArrayMacros.i %init %{ - import_array(); + import_array(); %} +%pythoncode { + import numpy as np +} +%apply (double* IN_ARRAY1, int DIM1) { (double* numpyArrayU, int nRowsU) }; +%apply (double* IN_ARRAY2, int DIM1, int DIM2) { (double* numpyArrayUV, int nRowsUV, int nColUV) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArrayResultArgout, int aSizeArgout) }; + +/* +end of numpy support section +*/ %import Standard.i %import NCollection.i %import gp.i @@ -71,8 +85,6 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geom2d.html" %import TColStd.i %pythoncode { -import numpy as np - from enum import IntEnum from OCC.Core.Exception import * }; @@ -111,9 +123,6 @@ from OCC.Core.Exception import * /* templates */ /* end templates declaration */ -%apply (double* IN_ARRAY1, int DIM1) { (double* numpyArrayU, int nRowsU) }; -%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArrayResultArgout, int aSizeArgout) }; - /* typedefs */ /* end typedefs declaration */ @@ -1441,6 +1450,7 @@ Computes the point of parameter u on . if the curve is periodic then the r } }; +// numpy support for Geom2d_Curve Curve2dArrayEvalExtend(Geom2d_Curve) /********************* diff --git a/src/SWIG_files/wrapper/Geom2dAPI.i b/src/SWIG_files/wrapper/Geom2dAPI.i index 025a86b3b..68b004090 100644 --- a/src/SWIG_files/wrapper/Geom2dAPI.i +++ b/src/SWIG_files/wrapper/Geom2dAPI.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geom2dapi.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Geom2dAdaptor.i b/src/SWIG_files/wrapper/Geom2dAdaptor.i index 6919effb0..f3d077357 100644 --- a/src/SWIG_files/wrapper/Geom2dAdaptor.i +++ b/src/SWIG_files/wrapper/Geom2dAdaptor.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geom2dadaptor.htm %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Geom2dConvert.i b/src/SWIG_files/wrapper/Geom2dConvert.i index 6212c2f6e..e8dad87f4 100644 --- a/src/SWIG_files/wrapper/Geom2dConvert.i +++ b/src/SWIG_files/wrapper/Geom2dConvert.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geom2dconvert.htm %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Geom2dEvaluator.i b/src/SWIG_files/wrapper/Geom2dEvaluator.i index f992d1f05..bd48930f8 100644 --- a/src/SWIG_files/wrapper/Geom2dEvaluator.i +++ b/src/SWIG_files/wrapper/Geom2dEvaluator.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geom2devaluator.h %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Geom2dGcc.i b/src/SWIG_files/wrapper/Geom2dGcc.i index 1e0b5ab9f..fd699bdf3 100644 --- a/src/SWIG_files/wrapper/Geom2dGcc.i +++ b/src/SWIG_files/wrapper/Geom2dGcc.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geom2dgcc.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Geom2dHatch.i b/src/SWIG_files/wrapper/Geom2dHatch.i index 187cc8907..4bfb91e78 100644 --- a/src/SWIG_files/wrapper/Geom2dHatch.i +++ b/src/SWIG_files/wrapper/Geom2dHatch.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geom2dhatch.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Geom2dInt.i b/src/SWIG_files/wrapper/Geom2dInt.i index c58b064af..e2d2d17da 100644 --- a/src/SWIG_files/wrapper/Geom2dInt.i +++ b/src/SWIG_files/wrapper/Geom2dInt.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geom2dint.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Geom2dLProp.i b/src/SWIG_files/wrapper/Geom2dLProp.i index 339dc83ff..7ab991cd6 100644 --- a/src/SWIG_files/wrapper/Geom2dLProp.i +++ b/src/SWIG_files/wrapper/Geom2dLProp.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geom2dlprop.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/GeomAPI.i b/src/SWIG_files/wrapper/GeomAPI.i index c7c77f898..9e7c0d92f 100644 --- a/src/SWIG_files/wrapper/GeomAPI.i +++ b/src/SWIG_files/wrapper/GeomAPI.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geomapi.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/GeomAbs.i b/src/SWIG_files/wrapper/GeomAbs.i index 109ae47da..8d458870d 100644 --- a/src/SWIG_files/wrapper/GeomAbs.i +++ b/src/SWIG_files/wrapper/GeomAbs.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geomabs.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/GeomAdaptor.i b/src/SWIG_files/wrapper/GeomAdaptor.i index bb13793ca..c72502401 100644 --- a/src/SWIG_files/wrapper/GeomAdaptor.i +++ b/src/SWIG_files/wrapper/GeomAdaptor.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geomadaptor.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/GeomConvert.i b/src/SWIG_files/wrapper/GeomConvert.i index f1988bf59..84dd63580 100644 --- a/src/SWIG_files/wrapper/GeomConvert.i +++ b/src/SWIG_files/wrapper/GeomConvert.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geomconvert.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/GeomEvaluator.i b/src/SWIG_files/wrapper/GeomEvaluator.i index e80c5cba8..4d4174c8c 100644 --- a/src/SWIG_files/wrapper/GeomEvaluator.i +++ b/src/SWIG_files/wrapper/GeomEvaluator.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geomevaluator.htm %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/GeomFill.i b/src/SWIG_files/wrapper/GeomFill.i index 4aeadcab5..7d27a5d9f 100644 --- a/src/SWIG_files/wrapper/GeomFill.i +++ b/src/SWIG_files/wrapper/GeomFill.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geomfill.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -210,75 +211,11 @@ GeomFill_IsDiscreteTrihedron = GeomFill_Trihedron.GeomFill_IsDiscreteTrihedron /* templates */ %template(GeomFill_Array1OfLocationLaw) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(GeomFill_Array1OfSectionLaw) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(GeomFill_SequenceOfAx2) NCollection_Sequence; %extend NCollection_Sequence { diff --git a/src/SWIG_files/wrapper/GeomInt.i b/src/SWIG_files/wrapper/GeomInt.i index a79b93cbc..be0e0fd67 100644 --- a/src/SWIG_files/wrapper/GeomInt.i +++ b/src/SWIG_files/wrapper/GeomInt.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geomint.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/GeomLProp.i b/src/SWIG_files/wrapper/GeomLProp.i index f96b78249..668905232 100644 --- a/src/SWIG_files/wrapper/GeomLProp.i +++ b/src/SWIG_files/wrapper/GeomLProp.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geomlprop.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/GeomLib.i b/src/SWIG_files/wrapper/GeomLib.i index 2ef740b28..dc7e91d58 100644 --- a/src/SWIG_files/wrapper/GeomLib.i +++ b/src/SWIG_files/wrapper/GeomLib.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geomlib.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -112,40 +113,8 @@ GeomLib_InversionProblem = GeomLib_InterpolationErrors.GeomLib_InversionProblem /* templates */ %template(GeomLib_Array1OfMat) NCollection_Array1; +Array1ExtendIter(gp_Mat) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; /* end templates declaration */ /* typedefs */ diff --git a/src/SWIG_files/wrapper/GeomPlate.i b/src/SWIG_files/wrapper/GeomPlate.i index 40c3bdd85..dc9ecf2c5 100644 --- a/src/SWIG_files/wrapper/GeomPlate.i +++ b/src/SWIG_files/wrapper/GeomPlate.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geomplate.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -105,75 +106,11 @@ from OCC.Core.Exception import * /* templates */ %template(GeomPlate_Array1OfHCurve) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(GeomPlate_Array1OfSequenceOfReal) NCollection_Array1; +Array1ExtendIter(TColStd_SequenceOfReal) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(GeomPlate_SequenceOfAij) NCollection_Sequence; %extend NCollection_Sequence { diff --git a/src/SWIG_files/wrapper/GeomProjLib.i b/src/SWIG_files/wrapper/GeomProjLib.i index 4a934c08c..c788790f9 100644 --- a/src/SWIG_files/wrapper/GeomProjLib.i +++ b/src/SWIG_files/wrapper/GeomProjLib.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geomprojlib.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/GeomToStep.i b/src/SWIG_files/wrapper/GeomToStep.i index d1b0a8a0a..05f862de7 100644 --- a/src/SWIG_files/wrapper/GeomToStep.i +++ b/src/SWIG_files/wrapper/GeomToStep.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geomtostep.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/GeomTools.i b/src/SWIG_files/wrapper/GeomTools.i index 59979d704..7d65548ff 100644 --- a/src/SWIG_files/wrapper/GeomTools.i +++ b/src/SWIG_files/wrapper/GeomTools.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_geomtools.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Graphic3d.i b/src/SWIG_files/wrapper/Graphic3d.i index f3afb3276..94a143dbc 100644 --- a/src/SWIG_files/wrapper/Graphic3d.i +++ b/src/SWIG_files/wrapper/Graphic3d.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_graphic3d.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -1614,40 +1615,8 @@ Graphic3d_VTA_TOPFIRSTLINE = Graphic3d_VerticalTextAlignment.Graphic3d_VTA_TOPFI /* templates */ %template(Graphic3d_Array1OfAttribute) NCollection_Array1; +Array1ExtendIter(Graphic3d_Attribute) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(Graphic3d_ArrayOfIndexedMapOfStructure) std::array; %template(Graphic3d_CameraLerp) NCollection_Lerp>; %template(Graphic3d_GraphicDriverFactoryList) NCollection_List>; diff --git a/src/SWIG_files/wrapper/HLRAlgo.i b/src/SWIG_files/wrapper/HLRAlgo.i index 503293ad8..7b01e7e0e 100644 --- a/src/SWIG_files/wrapper/HLRAlgo.i +++ b/src/SWIG_files/wrapper/HLRAlgo.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_hlralgo.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -131,145 +132,17 @@ HLRAlgo_PolyMask_FMskFrBack = HLRAlgo_PolyMask.HLRAlgo_PolyMask_FMskFrBack /* templates */ %template(HLRAlgo_Array1OfPHDat) NCollection_Array1; +Array1ExtendIter(HLRAlgo_PolyHidingData) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(HLRAlgo_Array1OfPINod) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(HLRAlgo_Array1OfPISeg) NCollection_Array1; +Array1ExtendIter(HLRAlgo_PolyInternalSegment) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(HLRAlgo_Array1OfTData) NCollection_Array1; +Array1ExtendIter(HLRAlgo_TriangleData) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(HLRAlgo_InterferenceList) NCollection_List; %extend NCollection_List { diff --git a/src/SWIG_files/wrapper/HLRAppli.i b/src/SWIG_files/wrapper/HLRAppli.i index dbd7413ee..bebb31509 100644 --- a/src/SWIG_files/wrapper/HLRAppli.i +++ b/src/SWIG_files/wrapper/HLRAppli.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_hlrappli.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/HLRBRep.i b/src/SWIG_files/wrapper/HLRBRep.i index ec17c0201..03eaeee32 100644 --- a/src/SWIG_files/wrapper/HLRBRep.i +++ b/src/SWIG_files/wrapper/HLRBRep.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_hlrbrep.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -148,75 +149,11 @@ HLRBRep_Sharp = HLRBRep_TypeOfResultingEdge.HLRBRep_Sharp /* templates */ %template(HLRBRep_Array1OfEData) NCollection_Array1; +Array1ExtendIter(HLRBRep_EdgeData) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(HLRBRep_Array1OfFData) NCollection_Array1; +Array1ExtendIter(HLRBRep_FaceData) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(HLRBRep_ListIteratorOfListOfBPnt2D) NCollection_TListIterator; %template(HLRBRep_ListIteratorOfListOfBPoint) NCollection_TListIterator; %template(HLRBRep_ListOfBPnt2D) NCollection_List; diff --git a/src/SWIG_files/wrapper/HLRTopoBRep.i b/src/SWIG_files/wrapper/HLRTopoBRep.i index 02ade2ecb..59273a098 100644 --- a/src/SWIG_files/wrapper/HLRTopoBRep.i +++ b/src/SWIG_files/wrapper/HLRTopoBRep.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_hlrtopobrep.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Hatch.i b/src/SWIG_files/wrapper/Hatch.i index 4999577d2..7de659c18 100644 --- a/src/SWIG_files/wrapper/Hatch.i +++ b/src/SWIG_files/wrapper/Hatch.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_hatch.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/HatchGen.i b/src/SWIG_files/wrapper/HatchGen.i index 95d4e631f..22452e30f 100644 --- a/src/SWIG_files/wrapper/HatchGen.i +++ b/src/SWIG_files/wrapper/HatchGen.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_hatchgen.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/HeaderSection.i b/src/SWIG_files/wrapper/HeaderSection.i index f2a88e2ac..4d070d2fa 100644 --- a/src/SWIG_files/wrapper/HeaderSection.i +++ b/src/SWIG_files/wrapper/HeaderSection.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_headersection.htm %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Hermit.i b/src/SWIG_files/wrapper/Hermit.i index 5a20c51c4..6e429c23b 100644 --- a/src/SWIG_files/wrapper/Hermit.i +++ b/src/SWIG_files/wrapper/Hermit.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_hermit.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/IFSelect.i b/src/SWIG_files/wrapper/IFSelect.i index 923d71e1f..10f36259f 100644 --- a/src/SWIG_files/wrapper/IFSelect.i +++ b/src/SWIG_files/wrapper/IFSelect.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_ifselect.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/IGESCAFControl.i b/src/SWIG_files/wrapper/IGESCAFControl.i index 444135c4b..c5ca21ad2 100644 --- a/src/SWIG_files/wrapper/IGESCAFControl.i +++ b/src/SWIG_files/wrapper/IGESCAFControl.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_igescafcontrol.ht %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/IGESControl.i b/src/SWIG_files/wrapper/IGESControl.i index 251179578..231da5d53 100644 --- a/src/SWIG_files/wrapper/IGESControl.i +++ b/src/SWIG_files/wrapper/IGESControl.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_igescontrol.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/IGESData.i b/src/SWIG_files/wrapper/IGESData.i index 7133f20cb..eace1307c 100644 --- a/src/SWIG_files/wrapper/IGESData.i +++ b/src/SWIG_files/wrapper/IGESData.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_igesdata.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -200,75 +201,11 @@ IGESData_TypeError = IGESData_Status.IGESData_TypeError /* templates */ %template(IGESData_Array1OfDirPart) NCollection_Array1; +Array1ExtendIter(IGESData_DirPart) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(IGESData_Array1OfIGESEntity) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; /* end templates declaration */ /* typedefs */ diff --git a/src/SWIG_files/wrapper/IGESToBRep.i b/src/SWIG_files/wrapper/IGESToBRep.i index ed478d905..2851750d1 100644 --- a/src/SWIG_files/wrapper/IGESToBRep.i +++ b/src/SWIG_files/wrapper/IGESToBRep.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_igestobrep.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/IMeshData.i b/src/SWIG_files/wrapper/IMeshData.i index ddaa38dcd..42948778e 100644 --- a/src/SWIG_files/wrapper/IMeshData.i +++ b/src/SWIG_files/wrapper/IMeshData.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_imeshdata.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/IMeshTools.i b/src/SWIG_files/wrapper/IMeshTools.i index 886a1e1db..485121cd7 100644 --- a/src/SWIG_files/wrapper/IMeshTools.i +++ b/src/SWIG_files/wrapper/IMeshTools.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_imeshtools.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/IVtk.i b/src/SWIG_files/wrapper/IVtk.i index 7fb5881bb..e2c0a88ac 100644 --- a/src/SWIG_files/wrapper/IVtk.i +++ b/src/SWIG_files/wrapper/IVtk.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_ivtk.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/IVtkOCC.i b/src/SWIG_files/wrapper/IVtkOCC.i index 7c94c13aa..f4c95ad92 100644 --- a/src/SWIG_files/wrapper/IVtkOCC.i +++ b/src/SWIG_files/wrapper/IVtkOCC.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_ivtkocc.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/IVtkTools.i b/src/SWIG_files/wrapper/IVtkTools.i index 26d1fa9d8..6a2b6d120 100644 --- a/src/SWIG_files/wrapper/IVtkTools.i +++ b/src/SWIG_files/wrapper/IVtkTools.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_ivtktools.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/IVtkVTK.i b/src/SWIG_files/wrapper/IVtkVTK.i index 9d18deee5..1b78e2236 100644 --- a/src/SWIG_files/wrapper/IVtkVTK.i +++ b/src/SWIG_files/wrapper/IVtkVTK.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_ivtkvtk.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Image.i b/src/SWIG_files/wrapper/Image.i index 4302999fd..3b661fd66 100644 --- a/src/SWIG_files/wrapper/Image.i +++ b/src/SWIG_files/wrapper/Image.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_image.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/IntAna.i b/src/SWIG_files/wrapper/IntAna.i index f83ab73b4..5fc985b88 100644 --- a/src/SWIG_files/wrapper/IntAna.i +++ b/src/SWIG_files/wrapper/IntAna.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_intana.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/IntAna2d.i b/src/SWIG_files/wrapper/IntAna2d.i index 88a51bd9d..48bcfe332 100644 --- a/src/SWIG_files/wrapper/IntAna2d.i +++ b/src/SWIG_files/wrapper/IntAna2d.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_intana2d.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/IntCurve.i b/src/SWIG_files/wrapper/IntCurve.i index 4d2b1a4df..3e1a1917c 100644 --- a/src/SWIG_files/wrapper/IntCurve.i +++ b/src/SWIG_files/wrapper/IntCurve.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_intcurve.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/IntCurveSurface.i b/src/SWIG_files/wrapper/IntCurveSurface.i index 84760dc6a..ca21be989 100644 --- a/src/SWIG_files/wrapper/IntCurveSurface.i +++ b/src/SWIG_files/wrapper/IntCurveSurface.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_intcurvesurface.h %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/IntCurvesFace.i b/src/SWIG_files/wrapper/IntCurvesFace.i index 64e338096..8d33589b2 100644 --- a/src/SWIG_files/wrapper/IntCurvesFace.i +++ b/src/SWIG_files/wrapper/IntCurvesFace.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_intcurvesface.htm %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/IntImp.i b/src/SWIG_files/wrapper/IntImp.i index 099db9cb3..d1cde7cab 100644 --- a/src/SWIG_files/wrapper/IntImp.i +++ b/src/SWIG_files/wrapper/IntImp.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_intimp.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/IntImpParGen.i b/src/SWIG_files/wrapper/IntImpParGen.i index 16db4953d..589f203d8 100644 --- a/src/SWIG_files/wrapper/IntImpParGen.i +++ b/src/SWIG_files/wrapper/IntImpParGen.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_intimppargen.html %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/IntPatch.i b/src/SWIG_files/wrapper/IntPatch.i index 961266085..8cde80f70 100644 --- a/src/SWIG_files/wrapper/IntPatch.i +++ b/src/SWIG_files/wrapper/IntPatch.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_intpatch.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/IntPolyh.i b/src/SWIG_files/wrapper/IntPolyh.i index febb5ed93..6d411ccb1 100644 --- a/src/SWIG_files/wrapper/IntPolyh.i +++ b/src/SWIG_files/wrapper/IntPolyh.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_intpolyh.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/IntRes2d.i b/src/SWIG_files/wrapper/IntRes2d.i index 4d1b404b7..7e4d6a30e 100644 --- a/src/SWIG_files/wrapper/IntRes2d.i +++ b/src/SWIG_files/wrapper/IntRes2d.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_intres2d.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/IntStart.i b/src/SWIG_files/wrapper/IntStart.i index 8622f6f38..f375532a6 100644 --- a/src/SWIG_files/wrapper/IntStart.i +++ b/src/SWIG_files/wrapper/IntStart.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_intstart.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/IntSurf.i b/src/SWIG_files/wrapper/IntSurf.i index 342729643..135f6974e 100644 --- a/src/SWIG_files/wrapper/IntSurf.i +++ b/src/SWIG_files/wrapper/IntSurf.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_intsurf.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/IntTools.i b/src/SWIG_files/wrapper/IntTools.i index 2b12652a8..ed3725b56 100644 --- a/src/SWIG_files/wrapper/IntTools.i +++ b/src/SWIG_files/wrapper/IntTools.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_inttools.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -127,75 +128,11 @@ from OCC.Core.Exception import * /* templates */ %template(IntTools_Array1OfRange) NCollection_Array1; +Array1ExtendIter(IntTools_Range) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(IntTools_Array1OfRoots) NCollection_Array1; +Array1ExtendIter(IntTools_Root) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(IntTools_DataMapOfCurveSampleBox) NCollection_DataMap; %template(IntTools_DataMapOfSurfaceSampleBox) NCollection_DataMap; %template(IntTools_ListIteratorOfListOfBox) NCollection_TListIterator; diff --git a/src/SWIG_files/wrapper/IntWalk.i b/src/SWIG_files/wrapper/IntWalk.i index f07eebf86..7ac914b15 100644 --- a/src/SWIG_files/wrapper/IntWalk.i +++ b/src/SWIG_files/wrapper/IntWalk.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_intwalk.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Interface.i b/src/SWIG_files/wrapper/Interface.i index 0f9af4702..3bb01cafb 100644 --- a/src/SWIG_files/wrapper/Interface.i +++ b/src/SWIG_files/wrapper/Interface.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_interface.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -191,75 +192,11 @@ Interface_ParamBinary = Interface_ParamType.Interface_ParamBinary /* templates */ %template(Interface_Array1OfFileParameter) NCollection_Array1; +Array1ExtendIter(Interface_FileParameter) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(Interface_Array1OfHAsciiString) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(Interface_DataMapOfTransientInteger) NCollection_DataMap,Standard_Integer>; %template(Interface_IndexedMapOfAsciiString) NCollection_IndexedMap; %template(Interface_SequenceOfCheck) NCollection_Sequence>; diff --git a/src/SWIG_files/wrapper/InterfaceGraphic.i b/src/SWIG_files/wrapper/InterfaceGraphic.i index 19c079cd5..4faf6d35b 100644 --- a/src/SWIG_files/wrapper/InterfaceGraphic.i +++ b/src/SWIG_files/wrapper/InterfaceGraphic.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_interfacegraphic. %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Intf.i b/src/SWIG_files/wrapper/Intf.i index c1477eadf..3985f0946 100644 --- a/src/SWIG_files/wrapper/Intf.i +++ b/src/SWIG_files/wrapper/Intf.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_intf.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -90,40 +91,8 @@ Intf_VERTEX = Intf_PIType.Intf_VERTEX /* templates */ %template(Intf_Array1OfLin) NCollection_Array1; +Array1ExtendIter(gp_Lin) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(Intf_SeqOfSectionLine) NCollection_Sequence; %extend NCollection_Sequence { diff --git a/src/SWIG_files/wrapper/Intrv.i b/src/SWIG_files/wrapper/Intrv.i index c6a4bc132..80f59367b 100644 --- a/src/SWIG_files/wrapper/Intrv.i +++ b/src/SWIG_files/wrapper/Intrv.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_intrv.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/LDOM.i b/src/SWIG_files/wrapper/LDOM.i index f2e24b070..285fbcde4 100644 --- a/src/SWIG_files/wrapper/LDOM.i +++ b/src/SWIG_files/wrapper/LDOM.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_ldom.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/LProp.i b/src/SWIG_files/wrapper/LProp.i index d04696de8..a10eff382 100644 --- a/src/SWIG_files/wrapper/LProp.i +++ b/src/SWIG_files/wrapper/LProp.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_lprop.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/LProp3d.i b/src/SWIG_files/wrapper/LProp3d.i index 7a18b7d6f..11b571917 100644 --- a/src/SWIG_files/wrapper/LProp3d.i +++ b/src/SWIG_files/wrapper/LProp3d.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_lprop3d.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Law.i b/src/SWIG_files/wrapper/Law.i index bae32c1cf..bebda6452 100644 --- a/src/SWIG_files/wrapper/Law.i +++ b/src/SWIG_files/wrapper/Law.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_law.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/LocOpe.i b/src/SWIG_files/wrapper/LocOpe.i index ee0f70a45..6d5b9df05 100644 --- a/src/SWIG_files/wrapper/LocOpe.i +++ b/src/SWIG_files/wrapper/LocOpe.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_locope.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/LocalAnalysis.i b/src/SWIG_files/wrapper/LocalAnalysis.i index 123cb94c8..dcbcd2eab 100644 --- a/src/SWIG_files/wrapper/LocalAnalysis.i +++ b/src/SWIG_files/wrapper/LocalAnalysis.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_localanalysis.htm %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/MAT.i b/src/SWIG_files/wrapper/MAT.i index 03a854670..c9bd0958e 100644 --- a/src/SWIG_files/wrapper/MAT.i +++ b/src/SWIG_files/wrapper/MAT.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_mat.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/MAT2d.i b/src/SWIG_files/wrapper/MAT2d.i index eb5fdf80e..c8e98b1cd 100644 --- a/src/SWIG_files/wrapper/MAT2d.i +++ b/src/SWIG_files/wrapper/MAT2d.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_mat2d.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Media.i b/src/SWIG_files/wrapper/Media.i index 19f1a5c88..bf3fdf2b4 100644 --- a/src/SWIG_files/wrapper/Media.i +++ b/src/SWIG_files/wrapper/Media.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_media.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/MeshVS.i b/src/SWIG_files/wrapper/MeshVS.i index fb6744772..742b6de28 100644 --- a/src/SWIG_files/wrapper/MeshVS.i +++ b/src/SWIG_files/wrapper/MeshVS.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_meshvs.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -357,40 +358,8 @@ MeshVS_SMF_Group = MeshVS_SelectionModeFlags.MeshVS_SMF_Group /* templates */ %template(MeshVS_Array1OfSequenceOfInteger) NCollection_Array1; +Array1ExtendIter(TColStd_SequenceOfInteger) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(MeshVS_DataMapOfColorMapOfInteger) NCollection_DataMap; %template(MeshVS_DataMapOfHArray1OfSequenceOfInteger) NCollection_DataMap>; diff --git a/src/SWIG_files/wrapper/Message.i b/src/SWIG_files/wrapper/Message.i index 207b24df0..f8449d7db 100644 --- a/src/SWIG_files/wrapper/Message.i +++ b/src/SWIG_files/wrapper/Message.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_message.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/MoniTool.i b/src/SWIG_files/wrapper/MoniTool.i index aeb73add1..a0c383d1d 100644 --- a/src/SWIG_files/wrapper/MoniTool.i +++ b/src/SWIG_files/wrapper/MoniTool.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_monitool.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/NCollection.i b/src/SWIG_files/wrapper/NCollection.i index cf71fbe13..6ee257507 100644 --- a/src/SWIG_files/wrapper/NCollection.i +++ b/src/SWIG_files/wrapper/NCollection.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_ncollection.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/NLPlate.i b/src/SWIG_files/wrapper/NLPlate.i index e3df3a488..52f9a3526 100644 --- a/src/SWIG_files/wrapper/NLPlate.i +++ b/src/SWIG_files/wrapper/NLPlate.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_nlplate.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/OSD.i b/src/SWIG_files/wrapper/OSD.i index b44302238..82663f2c3 100644 --- a/src/SWIG_files/wrapper/OSD.i +++ b/src/SWIG_files/wrapper/OSD.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_osd.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/PCDM.i b/src/SWIG_files/wrapper/PCDM.i index 91d6afa0f..9e9a41ba0 100644 --- a/src/SWIG_files/wrapper/PCDM.i +++ b/src/SWIG_files/wrapper/PCDM.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_pcdm.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/PLib.i b/src/SWIG_files/wrapper/PLib.i index 4abe429f3..6f623a9c1 100644 --- a/src/SWIG_files/wrapper/PLib.i +++ b/src/SWIG_files/wrapper/PLib.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_plib.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Plate.i b/src/SWIG_files/wrapper/Plate.i index d83bee344..6181bed88 100644 --- a/src/SWIG_files/wrapper/Plate.i +++ b/src/SWIG_files/wrapper/Plate.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_plate.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -78,40 +79,8 @@ from OCC.Core.Exception import * /* templates */ %template(Plate_Array1OfPinpointConstraint) NCollection_Array1; +Array1ExtendIter(Plate_PinpointConstraint) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(Plate_SequenceOfLinearScalarConstraint) NCollection_Sequence; %extend NCollection_Sequence { diff --git a/src/SWIG_files/wrapper/Plugin.i b/src/SWIG_files/wrapper/Plugin.i index 8b95a3e14..04b91dde6 100644 --- a/src/SWIG_files/wrapper/Plugin.i +++ b/src/SWIG_files/wrapper/Plugin.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_plugin.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Poly.i b/src/SWIG_files/wrapper/Poly.i index 91c98a401..69f983412 100644 --- a/src/SWIG_files/wrapper/Poly.i +++ b/src/SWIG_files/wrapper/Poly.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_poly.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -56,16 +57,29 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_poly.html" #include %}; +/* +numpy support for Geom, Geom2d, Poly, TColStd, TColgp, TShort see +https://github.com/tpaviot/pythonocc-core/pull/1381 +*/ %{ #define SWIG_FILE_WITH_INIT %} %include ../common/numpy.i -%include ../common/ArrayMacros.i %init %{ - import_array(); + import_array(); %} +%pythoncode { + import numpy as np +} +%apply (double* IN_ARRAY1, int DIM1) { (double* numpyArrayU, int nRowsU) }; +%apply (double* IN_ARRAY2, int DIM1, int DIM2) { (double* numpyArrayUV, int nRowsUV, int nColUV) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArrayResultArgout, int aSizeArgout) }; + +/* +end of numpy support section +*/ %import Standard.i %import NCollection.i %import gp.i @@ -76,8 +90,6 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_poly.html" %import TShort.i %pythoncode { -import numpy as np - from enum import IntEnum from OCC.Core.Exception import * }; @@ -114,7 +126,7 @@ enum { /* templates */ %apply (long long* IN_ARRAY2, int DIM1, int DIM2) { (long long* numpyArray2, int nRows2, int nDims2) }; %apply (long long* ARGOUT_ARRAY1, int DIM1) { (long long* numpyArray2Argout, int aSizeArgout) }; -Array1OfTriaTemplate(Poly_Array1OfTriangle, Poly_Triangle) +Array1OfTriaNumpyTemplate(Poly_Array1OfTriangle, Poly_Triangle) %template(Poly_ListOfTriangulation) NCollection_List>; diff --git a/src/SWIG_files/wrapper/Precision.i b/src/SWIG_files/wrapper/Precision.i index 589a44ab4..1a6ffdf7c 100644 --- a/src/SWIG_files/wrapper/Precision.i +++ b/src/SWIG_files/wrapper/Precision.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_precision.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/ProjLib.i b/src/SWIG_files/wrapper/ProjLib.i index 4bc4e42e5..41fbbb30d 100644 --- a/src/SWIG_files/wrapper/ProjLib.i +++ b/src/SWIG_files/wrapper/ProjLib.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_projlib.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Prs3d.i b/src/SWIG_files/wrapper/Prs3d.i index 1cdbb8687..fc1812e50 100644 --- a/src/SWIG_files/wrapper/Prs3d.i +++ b/src/SWIG_files/wrapper/Prs3d.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_prs3d.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/PrsDim.i b/src/SWIG_files/wrapper/PrsDim.i index 473c05761..837e9f627 100644 --- a/src/SWIG_files/wrapper/PrsDim.i +++ b/src/SWIG_files/wrapper/PrsDim.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_prsdim.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/PrsMgr.i b/src/SWIG_files/wrapper/PrsMgr.i index a14295bd9..400b3c28a 100644 --- a/src/SWIG_files/wrapper/PrsMgr.i +++ b/src/SWIG_files/wrapper/PrsMgr.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_prsmgr.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Quantity.i b/src/SWIG_files/wrapper/Quantity.i index 98a58ea4a..1646cb3ce 100644 --- a/src/SWIG_files/wrapper/Quantity.i +++ b/src/SWIG_files/wrapper/Quantity.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_quantity.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -1660,40 +1661,8 @@ Quantity_TOC_CIELch = Quantity_TypeOfColor.Quantity_TOC_CIELch /* templates */ %template(Quantity_Array1OfColor) NCollection_Array1; +Array1ExtendIter(Quantity_Color) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; /* end templates declaration */ /* typedefs */ diff --git a/src/SWIG_files/wrapper/RWGltf.i b/src/SWIG_files/wrapper/RWGltf.i index 6245ff70d..4ac3e7f54 100644 --- a/src/SWIG_files/wrapper/RWGltf.i +++ b/src/SWIG_files/wrapper/RWGltf.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_rwgltf.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/RWHeaderSection.i b/src/SWIG_files/wrapper/RWHeaderSection.i index 596e2b01b..27e9e81b2 100644 --- a/src/SWIG_files/wrapper/RWHeaderSection.i +++ b/src/SWIG_files/wrapper/RWHeaderSection.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_rwheadersection.h %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/RWMesh.i b/src/SWIG_files/wrapper/RWMesh.i index 219c8d4b6..76eee4c78 100644 --- a/src/SWIG_files/wrapper/RWMesh.i +++ b/src/SWIG_files/wrapper/RWMesh.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_rwmesh.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/RWObj.i b/src/SWIG_files/wrapper/RWObj.i index aaa43d69e..66fa8c7ad 100644 --- a/src/SWIG_files/wrapper/RWObj.i +++ b/src/SWIG_files/wrapper/RWObj.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_rwobj.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/RWPly.i b/src/SWIG_files/wrapper/RWPly.i index 0b6ec7f71..b6f578ddf 100644 --- a/src/SWIG_files/wrapper/RWPly.i +++ b/src/SWIG_files/wrapper/RWPly.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_rwply.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/RWStepAP203.i b/src/SWIG_files/wrapper/RWStepAP203.i index bf0426ed7..6da37e171 100644 --- a/src/SWIG_files/wrapper/RWStepAP203.i +++ b/src/SWIG_files/wrapper/RWStepAP203.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_rwstepap203.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/RWStepAP214.i b/src/SWIG_files/wrapper/RWStepAP214.i index 3783bb387..6948be1a3 100644 --- a/src/SWIG_files/wrapper/RWStepAP214.i +++ b/src/SWIG_files/wrapper/RWStepAP214.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_rwstepap214.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/RWStepAP242.i b/src/SWIG_files/wrapper/RWStepAP242.i index fe96b3d67..4050cb20d 100644 --- a/src/SWIG_files/wrapper/RWStepAP242.i +++ b/src/SWIG_files/wrapper/RWStepAP242.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_rwstepap242.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/RWStepBasic.i b/src/SWIG_files/wrapper/RWStepBasic.i index abfe02cce..71a132542 100644 --- a/src/SWIG_files/wrapper/RWStepBasic.i +++ b/src/SWIG_files/wrapper/RWStepBasic.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_rwstepbasic.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/RWStepDimTol.i b/src/SWIG_files/wrapper/RWStepDimTol.i index 6c6f73043..790f093af 100644 --- a/src/SWIG_files/wrapper/RWStepDimTol.i +++ b/src/SWIG_files/wrapper/RWStepDimTol.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_rwstepdimtol.html %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/RWStepElement.i b/src/SWIG_files/wrapper/RWStepElement.i index 1f0aaac0e..51f646de6 100644 --- a/src/SWIG_files/wrapper/RWStepElement.i +++ b/src/SWIG_files/wrapper/RWStepElement.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_rwstepelement.htm %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/RWStepFEA.i b/src/SWIG_files/wrapper/RWStepFEA.i index f46a8731f..d48f5bf56 100644 --- a/src/SWIG_files/wrapper/RWStepFEA.i +++ b/src/SWIG_files/wrapper/RWStepFEA.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_rwstepfea.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/RWStepGeom.i b/src/SWIG_files/wrapper/RWStepGeom.i index 0bc8f9acf..1f0435984 100644 --- a/src/SWIG_files/wrapper/RWStepGeom.i +++ b/src/SWIG_files/wrapper/RWStepGeom.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_rwstepgeom.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/RWStepKinematics.i b/src/SWIG_files/wrapper/RWStepKinematics.i index 633d88ee2..db79549fd 100644 --- a/src/SWIG_files/wrapper/RWStepKinematics.i +++ b/src/SWIG_files/wrapper/RWStepKinematics.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_rwstepkinematics. %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/RWStepRepr.i b/src/SWIG_files/wrapper/RWStepRepr.i index e73f1e0b3..f4ee7e10a 100644 --- a/src/SWIG_files/wrapper/RWStepRepr.i +++ b/src/SWIG_files/wrapper/RWStepRepr.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_rwsteprepr.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/RWStepShape.i b/src/SWIG_files/wrapper/RWStepShape.i index 569ee2bd3..192a28564 100644 --- a/src/SWIG_files/wrapper/RWStepShape.i +++ b/src/SWIG_files/wrapper/RWStepShape.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_rwstepshape.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/RWStepVisual.i b/src/SWIG_files/wrapper/RWStepVisual.i index 5d3530bbd..6740822f5 100644 --- a/src/SWIG_files/wrapper/RWStepVisual.i +++ b/src/SWIG_files/wrapper/RWStepVisual.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_rwstepvisual.html %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/RWStl.i b/src/SWIG_files/wrapper/RWStl.i index d9d38f293..76199a0ea 100644 --- a/src/SWIG_files/wrapper/RWStl.i +++ b/src/SWIG_files/wrapper/RWStl.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_rwstl.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Resource.i b/src/SWIG_files/wrapper/Resource.i index ff1c273bd..f4690d3a1 100644 --- a/src/SWIG_files/wrapper/Resource.i +++ b/src/SWIG_files/wrapper/Resource.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_resource.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/STEPCAFControl.i b/src/SWIG_files/wrapper/STEPCAFControl.i index 04ad903ae..a6ee30958 100644 --- a/src/SWIG_files/wrapper/STEPCAFControl.i +++ b/src/SWIG_files/wrapper/STEPCAFControl.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_stepcafcontrol.ht %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/STEPConstruct.i b/src/SWIG_files/wrapper/STEPConstruct.i index db2f8161d..aaf58fd31 100644 --- a/src/SWIG_files/wrapper/STEPConstruct.i +++ b/src/SWIG_files/wrapper/STEPConstruct.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_stepconstruct.htm %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/STEPControl.i b/src/SWIG_files/wrapper/STEPControl.i index 7be7c9b07..57c255426 100644 --- a/src/SWIG_files/wrapper/STEPControl.i +++ b/src/SWIG_files/wrapper/STEPControl.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_stepcontrol.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/STEPEdit.i b/src/SWIG_files/wrapper/STEPEdit.i index ddeb157a8..b66ffac8c 100644 --- a/src/SWIG_files/wrapper/STEPEdit.i +++ b/src/SWIG_files/wrapper/STEPEdit.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_stepedit.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/STEPSelections.i b/src/SWIG_files/wrapper/STEPSelections.i index 6816a1382..74e6afeed 100644 --- a/src/SWIG_files/wrapper/STEPSelections.i +++ b/src/SWIG_files/wrapper/STEPSelections.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_stepselections.ht %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Select3D.i b/src/SWIG_files/wrapper/Select3D.i index a6432e80b..4c35812e7 100644 --- a/src/SWIG_files/wrapper/Select3D.i +++ b/src/SWIG_files/wrapper/Select3D.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_select3d.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/SelectBasics.i b/src/SWIG_files/wrapper/SelectBasics.i index ffbccef29..16ef38631 100644 --- a/src/SWIG_files/wrapper/SelectBasics.i +++ b/src/SWIG_files/wrapper/SelectBasics.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_selectbasics.html %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/SelectMgr.i b/src/SWIG_files/wrapper/SelectMgr.i index 1529117d6..eb9b0c153 100644 --- a/src/SWIG_files/wrapper/SelectMgr.i +++ b/src/SWIG_files/wrapper/SelectMgr.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_selectmgr.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/ShapeAlgo.i b/src/SWIG_files/wrapper/ShapeAlgo.i index ebf4c01dd..e469b3a14 100644 --- a/src/SWIG_files/wrapper/ShapeAlgo.i +++ b/src/SWIG_files/wrapper/ShapeAlgo.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_shapealgo.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/ShapeAnalysis.i b/src/SWIG_files/wrapper/ShapeAnalysis.i index 4921e1e28..de34e2558 100644 --- a/src/SWIG_files/wrapper/ShapeAnalysis.i +++ b/src/SWIG_files/wrapper/ShapeAnalysis.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_shapeanalysis.htm %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/ShapeBuild.i b/src/SWIG_files/wrapper/ShapeBuild.i index 00e40ca7f..afd90f883 100644 --- a/src/SWIG_files/wrapper/ShapeBuild.i +++ b/src/SWIG_files/wrapper/ShapeBuild.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_shapebuild.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/ShapeConstruct.i b/src/SWIG_files/wrapper/ShapeConstruct.i index 56c41e957..f9e61ba04 100644 --- a/src/SWIG_files/wrapper/ShapeConstruct.i +++ b/src/SWIG_files/wrapper/ShapeConstruct.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_shapeconstruct.ht %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/ShapeCustom.i b/src/SWIG_files/wrapper/ShapeCustom.i index 73d778a99..56c1a14ef 100644 --- a/src/SWIG_files/wrapper/ShapeCustom.i +++ b/src/SWIG_files/wrapper/ShapeCustom.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_shapecustom.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/ShapeExtend.i b/src/SWIG_files/wrapper/ShapeExtend.i index 282e413d7..07909cef7 100644 --- a/src/SWIG_files/wrapper/ShapeExtend.i +++ b/src/SWIG_files/wrapper/ShapeExtend.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_shapeextend.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/ShapeFix.i b/src/SWIG_files/wrapper/ShapeFix.i index 5f3929872..d6c9d265a 100644 --- a/src/SWIG_files/wrapper/ShapeFix.i +++ b/src/SWIG_files/wrapper/ShapeFix.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_shapefix.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/ShapeProcess.i b/src/SWIG_files/wrapper/ShapeProcess.i index b18e9c099..c7dfcde00 100644 --- a/src/SWIG_files/wrapper/ShapeProcess.i +++ b/src/SWIG_files/wrapper/ShapeProcess.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_shapeprocess.html %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/ShapeProcessAPI.i b/src/SWIG_files/wrapper/ShapeProcessAPI.i index 436ce4890..9e81ecf42 100644 --- a/src/SWIG_files/wrapper/ShapeProcessAPI.i +++ b/src/SWIG_files/wrapper/ShapeProcessAPI.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_shapeprocessapi.h %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/ShapeUpgrade.i b/src/SWIG_files/wrapper/ShapeUpgrade.i index 71b82a80e..8515f0b2e 100644 --- a/src/SWIG_files/wrapper/ShapeUpgrade.i +++ b/src/SWIG_files/wrapper/ShapeUpgrade.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_shapeupgrade.html %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Standard.i b/src/SWIG_files/wrapper/Standard.i index 2829b8c9b..282ce2417 100644 --- a/src/SWIG_files/wrapper/Standard.i +++ b/src/SWIG_files/wrapper/Standard.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_standard.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/StdFail.i b/src/SWIG_files/wrapper/StdFail.i index 5b0e5b471..577b557ec 100644 --- a/src/SWIG_files/wrapper/StdFail.i +++ b/src/SWIG_files/wrapper/StdFail.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_stdfail.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/StdPrs.i b/src/SWIG_files/wrapper/StdPrs.i index 8f45b454d..3912703b9 100644 --- a/src/SWIG_files/wrapper/StdPrs.i +++ b/src/SWIG_files/wrapper/StdPrs.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_stdprs.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/StdSelect.i b/src/SWIG_files/wrapper/StdSelect.i index ca169a418..12f3bd684 100644 --- a/src/SWIG_files/wrapper/StdSelect.i +++ b/src/SWIG_files/wrapper/StdSelect.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_stdselect.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/StepAP203.i b/src/SWIG_files/wrapper/StepAP203.i index 893d36e2f..d585bf9b0 100644 --- a/src/SWIG_files/wrapper/StepAP203.i +++ b/src/SWIG_files/wrapper/StepAP203.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_stepap203.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -106,355 +107,35 @@ from OCC.Core.Exception import * /* templates */ %template(StepAP203_Array1OfApprovedItem) NCollection_Array1; +Array1ExtendIter(StepAP203_ApprovedItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP203_Array1OfCertifiedItem) NCollection_Array1; +Array1ExtendIter(StepAP203_CertifiedItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP203_Array1OfChangeRequestItem) NCollection_Array1; +Array1ExtendIter(StepAP203_ChangeRequestItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP203_Array1OfClassifiedItem) NCollection_Array1; +Array1ExtendIter(StepAP203_ClassifiedItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP203_Array1OfContractedItem) NCollection_Array1; +Array1ExtendIter(StepAP203_ContractedItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP203_Array1OfDateTimeItem) NCollection_Array1; +Array1ExtendIter(StepAP203_DateTimeItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP203_Array1OfPersonOrganizationItem) NCollection_Array1; +Array1ExtendIter(StepAP203_PersonOrganizationItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP203_Array1OfSpecifiedItem) NCollection_Array1; +Array1ExtendIter(StepAP203_SpecifiedItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP203_Array1OfStartRequestItem) NCollection_Array1; +Array1ExtendIter(StepAP203_StartRequestItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP203_Array1OfWorkItem) NCollection_Array1; +Array1ExtendIter(StepAP203_WorkItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; /* end templates declaration */ /* typedefs */ diff --git a/src/SWIG_files/wrapper/StepAP209.i b/src/SWIG_files/wrapper/StepAP209.i index a4c8107f9..642d92206 100644 --- a/src/SWIG_files/wrapper/StepAP209.i +++ b/src/SWIG_files/wrapper/StepAP209.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_stepap209.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/StepAP214.i b/src/SWIG_files/wrapper/StepAP214.i index c6dc32fb5..fb015e909 100644 --- a/src/SWIG_files/wrapper/StepAP214.i +++ b/src/SWIG_files/wrapper/StepAP214.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_stepap214.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -139,600 +140,56 @@ from OCC.Core.Exception import * /* templates */ %template(StepAP214_Array1OfApprovalItem) NCollection_Array1; +Array1ExtendIter(StepAP214_ApprovalItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP214_Array1OfAutoDesignDateAndPersonItem) NCollection_Array1; +Array1ExtendIter(StepAP214_AutoDesignDateAndPersonItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP214_Array1OfAutoDesignDateAndTimeItem) NCollection_Array1; +Array1ExtendIter(StepAP214_AutoDesignDateAndTimeItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP214_Array1OfAutoDesignDatedItem) NCollection_Array1; +Array1ExtendIter(StepAP214_AutoDesignDatedItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP214_Array1OfAutoDesignGeneralOrgItem) NCollection_Array1; +Array1ExtendIter(StepAP214_AutoDesignGeneralOrgItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP214_Array1OfAutoDesignGroupedItem) NCollection_Array1; +Array1ExtendIter(StepAP214_AutoDesignGroupedItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP214_Array1OfAutoDesignPresentedItemSelect) NCollection_Array1; +Array1ExtendIter(StepAP214_AutoDesignPresentedItemSelect) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP214_Array1OfAutoDesignReferencingItem) NCollection_Array1; +Array1ExtendIter(StepAP214_AutoDesignReferencingItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP214_Array1OfDateAndTimeItem) NCollection_Array1; +Array1ExtendIter(StepAP214_DateAndTimeItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP214_Array1OfDateItem) NCollection_Array1; +Array1ExtendIter(StepAP214_DateItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP214_Array1OfDocumentReferenceItem) NCollection_Array1; +Array1ExtendIter(StepAP214_DocumentReferenceItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP214_Array1OfExternalIdentificationItem) NCollection_Array1; +Array1ExtendIter(StepAP214_ExternalIdentificationItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP214_Array1OfGroupItem) NCollection_Array1; +Array1ExtendIter(StepAP214_GroupItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP214_Array1OfOrganizationItem) NCollection_Array1; +Array1ExtendIter(StepAP214_OrganizationItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP214_Array1OfPersonAndOrganizationItem) NCollection_Array1; +Array1ExtendIter(StepAP214_PersonAndOrganizationItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP214_Array1OfPresentedItemSelect) NCollection_Array1; +Array1ExtendIter(StepAP214_PresentedItemSelect) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepAP214_Array1OfSecurityClassificationItem) NCollection_Array1; +Array1ExtendIter(StepAP214_SecurityClassificationItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; /* end templates declaration */ /* typedefs */ diff --git a/src/SWIG_files/wrapper/StepAP242.i b/src/SWIG_files/wrapper/StepAP242.i index 02da91523..79141e236 100644 --- a/src/SWIG_files/wrapper/StepAP242.i +++ b/src/SWIG_files/wrapper/StepAP242.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_stepap242.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/StepBasic.i b/src/SWIG_files/wrapper/StepBasic.i index 84e3b5c4d..0640363ea 100644 --- a/src/SWIG_files/wrapper/StepBasic.i +++ b/src/SWIG_files/wrapper/StepBasic.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_stepbasic.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -398,355 +399,35 @@ StepBasic_sNotKnown = StepBasic_Source.StepBasic_sNotKnown /* templates */ %template(StepBasic_Array1OfApproval) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepBasic_Array1OfDerivedUnitElement) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepBasic_Array1OfDocument) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepBasic_Array1OfNamedUnit) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepBasic_Array1OfOrganization) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepBasic_Array1OfPerson) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepBasic_Array1OfProduct) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepBasic_Array1OfProductContext) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepBasic_Array1OfProductDefinition) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepBasic_Array1OfUncertaintyMeasureWithUnit) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; /* end templates declaration */ /* typedefs */ diff --git a/src/SWIG_files/wrapper/StepData.i b/src/SWIG_files/wrapper/StepData.i index 8b4264f4b..78f0420d2 100644 --- a/src/SWIG_files/wrapper/StepData.i +++ b/src/SWIG_files/wrapper/StepData.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_stepdata.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -117,40 +118,8 @@ StepData_LUnknown = StepData_Logical.StepData_LUnknown /* templates */ %template(StepData_Array1OfField) NCollection_Array1; +Array1ExtendIter(StepData_Field) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; /* end templates declaration */ /* typedefs */ diff --git a/src/SWIG_files/wrapper/StepDimTol.i b/src/SWIG_files/wrapper/StepDimTol.i index da7f74e4c..699238976 100644 --- a/src/SWIG_files/wrapper/StepDimTol.i +++ b/src/SWIG_files/wrapper/StepDimTol.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_stepdimtol.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -360,215 +361,23 @@ StepDimTol_SDRMTranslation = StepDimTol_SimpleDatumReferenceModifier.StepDimTol_ /* templates */ %template(StepDimTol_Array1OfDatumReference) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepDimTol_Array1OfDatumReferenceCompartment) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepDimTol_Array1OfDatumReferenceElement) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepDimTol_Array1OfDatumReferenceModifier) NCollection_Array1; +Array1ExtendIter(StepDimTol_DatumReferenceModifier) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepDimTol_Array1OfDatumSystemOrReference) NCollection_Array1; +Array1ExtendIter(StepDimTol_DatumSystemOrReference) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepDimTol_Array1OfToleranceZoneTarget) NCollection_Array1; +Array1ExtendIter(StepDimTol_ToleranceZoneTarget) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; /* end templates declaration */ /* typedefs */ diff --git a/src/SWIG_files/wrapper/StepElement.i b/src/SWIG_files/wrapper/StepElement.i index 3881e1eab..ce50c2c1e 100644 --- a/src/SWIG_files/wrapper/StepElement.i +++ b/src/SWIG_files/wrapper/StepElement.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_stepelement.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -270,285 +271,29 @@ StepElement_Pyramid = StepElement_Volume3dElementShape.StepElement_Pyramid /* templates */ %template(StepElement_Array1OfCurveElementEndReleasePacket) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepElement_Array1OfCurveElementSectionDefinition) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepElement_Array1OfHSequenceOfCurveElementPurposeMember) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepElement_Array1OfHSequenceOfSurfaceElementPurposeMember) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepElement_Array1OfMeasureOrUnspecifiedValue) NCollection_Array1; +Array1ExtendIter(StepElement_MeasureOrUnspecifiedValue) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepElement_Array1OfSurfaceSection) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepElement_Array1OfVolumeElementPurpose) NCollection_Array1; +Array1ExtendIter(StepElement_VolumeElementPurpose) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepElement_Array1OfVolumeElementPurposeMember) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepElement_SequenceOfCurveElementPurposeMember) NCollection_Sequence>; %extend NCollection_Sequence> { diff --git a/src/SWIG_files/wrapper/StepFEA.i b/src/SWIG_files/wrapper/StepFEA.i index 212fcdc80..e3eb92eae 100644 --- a/src/SWIG_files/wrapper/StepFEA.i +++ b/src/SWIG_files/wrapper/StepFEA.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_stepfea.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -219,215 +220,23 @@ StepFEA_Unspecified = StepFEA_UnspecifiedValue.StepFEA_Unspecified /* templates */ %template(StepFEA_Array1OfCurveElementEndOffset) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepFEA_Array1OfCurveElementEndRelease) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepFEA_Array1OfCurveElementInterval) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepFEA_Array1OfDegreeOfFreedom) NCollection_Array1; +Array1ExtendIter(StepFEA_DegreeOfFreedom) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepFEA_Array1OfElementRepresentation) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepFEA_Array1OfNodeRepresentation) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepFEA_SequenceOfCurve3dElementProperty) NCollection_Sequence>; %extend NCollection_Sequence> { diff --git a/src/SWIG_files/wrapper/StepGeom.i b/src/SWIG_files/wrapper/StepGeom.i index c558d7632..e7d1005f1 100644 --- a/src/SWIG_files/wrapper/StepGeom.i +++ b/src/SWIG_files/wrapper/StepGeom.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_stepgeom.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -304,250 +305,26 @@ StepGeom_tpUnspecified = StepGeom_TrimmingPreference.StepGeom_tpUnspecified /* templates */ %template(StepGeom_Array1OfBoundaryCurve) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepGeom_Array1OfCartesianPoint) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepGeom_Array1OfCompositeCurveSegment) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepGeom_Array1OfCurve) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepGeom_Array1OfPcurveOrSurface) NCollection_Array1; +Array1ExtendIter(StepGeom_PcurveOrSurface) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepGeom_Array1OfSurfaceBoundary) NCollection_Array1; +Array1ExtendIter(StepGeom_SurfaceBoundary) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepGeom_Array1OfTrimmingSelect) NCollection_Array1; +Array1ExtendIter(StepGeom_TrimmingSelect) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; /* end templates declaration */ /* typedefs */ diff --git a/src/SWIG_files/wrapper/StepKinematics.i b/src/SWIG_files/wrapper/StepKinematics.i index a3f76ecae..c97a157f0 100644 --- a/src/SWIG_files/wrapper/StepKinematics.i +++ b/src/SWIG_files/wrapper/StepKinematics.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_stepkinematics.ht %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/StepRepr.i b/src/SWIG_files/wrapper/StepRepr.i index 0287c3d85..4eced0cb5 100644 --- a/src/SWIG_files/wrapper/StepRepr.i +++ b/src/SWIG_files/wrapper/StepRepr.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_steprepr.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -166,145 +167,17 @@ from OCC.Core.Exception import * /* templates */ %template(StepRepr_Array1OfMaterialPropertyRepresentation) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepRepr_Array1OfPropertyDefinitionRepresentation) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepRepr_Array1OfRepresentationItem) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepRepr_Array1OfShapeAspect) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepRepr_SequenceOfMaterialPropertyRepresentation) NCollection_Sequence>; %extend NCollection_Sequence> { diff --git a/src/SWIG_files/wrapper/StepShape.i b/src/SWIG_files/wrapper/StepShape.i index 132e77bff..2ff983c5e 100644 --- a/src/SWIG_files/wrapper/StepShape.i +++ b/src/SWIG_files/wrapper/StepShape.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_stepshape.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -217,390 +218,38 @@ StepShape_boUnion = StepShape_BooleanOperator.StepShape_boUnion /* templates */ %template(StepShape_Array1OfConnectedEdgeSet) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepShape_Array1OfConnectedFaceSet) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepShape_Array1OfEdge) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepShape_Array1OfFace) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepShape_Array1OfFaceBound) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepShape_Array1OfGeometricSetSelect) NCollection_Array1; +Array1ExtendIter(StepShape_GeometricSetSelect) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepShape_Array1OfOrientedClosedShell) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepShape_Array1OfOrientedEdge) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepShape_Array1OfShapeDimensionRepresentationItem) NCollection_Array1; +Array1ExtendIter(StepShape_ShapeDimensionRepresentationItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepShape_Array1OfShell) NCollection_Array1; +Array1ExtendIter(StepShape_Shell) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepShape_Array1OfValueQualifier) NCollection_Array1; +Array1ExtendIter(StepShape_ValueQualifier) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; /* end templates declaration */ /* typedefs */ diff --git a/src/SWIG_files/wrapper/StepToGeom.i b/src/SWIG_files/wrapper/StepToGeom.i index 4d0a15a73..3d294a3a5 100644 --- a/src/SWIG_files/wrapper/StepToGeom.i +++ b/src/SWIG_files/wrapper/StepToGeom.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_steptogeom.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/StepToTopoDS.i b/src/SWIG_files/wrapper/StepToTopoDS.i index be734120a..06778d112 100644 --- a/src/SWIG_files/wrapper/StepToTopoDS.i +++ b/src/SWIG_files/wrapper/StepToTopoDS.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_steptotopods.html %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/StepVisual.i b/src/SWIG_files/wrapper/StepVisual.i index 82ec72846..889eb836c 100644 --- a/src/SWIG_files/wrapper/StepVisual.i +++ b/src/SWIG_files/wrapper/StepVisual.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_stepvisual.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -309,670 +310,62 @@ StepVisual_tpLeft = StepVisual_TextPath.StepVisual_tpLeft /* templates */ %template(StepVisual_Array1OfAnnotationPlaneElement) NCollection_Array1; +Array1ExtendIter(StepVisual_AnnotationPlaneElement) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepVisual_Array1OfBoxCharacteristicSelect) NCollection_Array1; +Array1ExtendIter(StepVisual_BoxCharacteristicSelect) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepVisual_Array1OfCameraModelD3MultiClippingInterectionSelect) NCollection_Array1; +Array1ExtendIter(StepVisual_CameraModelD3MultiClippingInterectionSelect) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepVisual_Array1OfCameraModelD3MultiClippingUnionSelect) NCollection_Array1; +Array1ExtendIter(StepVisual_CameraModelD3MultiClippingUnionSelect) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepVisual_Array1OfCurveStyleFontPattern) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepVisual_Array1OfDirectionCountSelect) NCollection_Array1; +Array1ExtendIter(StepVisual_DirectionCountSelect) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepVisual_Array1OfDraughtingCalloutElement) NCollection_Array1; +Array1ExtendIter(StepVisual_DraughtingCalloutElement) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepVisual_Array1OfFillStyleSelect) NCollection_Array1; +Array1ExtendIter(StepVisual_FillStyleSelect) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepVisual_Array1OfInvisibleItem) NCollection_Array1; +Array1ExtendIter(StepVisual_InvisibleItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepVisual_Array1OfLayeredItem) NCollection_Array1; +Array1ExtendIter(StepVisual_LayeredItem) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepVisual_Array1OfPresentationStyleAssignment) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepVisual_Array1OfPresentationStyleSelect) NCollection_Array1; +Array1ExtendIter(StepVisual_PresentationStyleSelect) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepVisual_Array1OfRenderingPropertiesSelect) NCollection_Array1; +Array1ExtendIter(StepVisual_RenderingPropertiesSelect) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepVisual_Array1OfStyleContextSelect) NCollection_Array1; +Array1ExtendIter(StepVisual_StyleContextSelect) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepVisual_Array1OfSurfaceStyleElementSelect) NCollection_Array1; +Array1ExtendIter(StepVisual_SurfaceStyleElementSelect) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepVisual_Array1OfTessellatedEdgeOrVertex) NCollection_Array1; +Array1ExtendIter(StepVisual_TessellatedEdgeOrVertex) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepVisual_Array1OfTessellatedItem) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepVisual_Array1OfTessellatedStructuredItem) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepVisual_Array1OfTextOrCharacter) NCollection_Array1; +Array1ExtendIter(StepVisual_TextOrCharacter) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(StepVisual_VectorOfHSequenceOfInteger) NCollection_Vector>; /* end templates declaration */ diff --git a/src/SWIG_files/wrapper/StlAPI.i b/src/SWIG_files/wrapper/StlAPI.i index 3dee98973..1f2df2b18 100644 --- a/src/SWIG_files/wrapper/StlAPI.i +++ b/src/SWIG_files/wrapper/StlAPI.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_stlapi.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Storage.i b/src/SWIG_files/wrapper/Storage.i index 4656939ed..82ad14500 100644 --- a/src/SWIG_files/wrapper/Storage.i +++ b/src/SWIG_files/wrapper/Storage.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_storage.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -145,75 +146,11 @@ Storage_ReadSolve = Storage_SolveMode.Storage_ReadSolve /* templates */ %template(Storage_ArrayOfCallBack) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(Storage_ArrayOfSchema) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(Storage_MapOfCallBack) NCollection_DataMap>; %template(Storage_MapOfPers) NCollection_DataMap>; %template(Storage_PType) NCollection_IndexedDataMap; diff --git a/src/SWIG_files/wrapper/Sweep.i b/src/SWIG_files/wrapper/Sweep.i index 761bb777a..03f9621ba 100644 --- a/src/SWIG_files/wrapper/Sweep.i +++ b/src/SWIG_files/wrapper/Sweep.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_sweep.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/TColGeom.i b/src/SWIG_files/wrapper/TColGeom.i index 8dc410b7d..a2497e825 100644 --- a/src/SWIG_files/wrapper/TColGeom.i +++ b/src/SWIG_files/wrapper/TColGeom.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_tcolgeom.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -79,145 +80,17 @@ from OCC.Core.Exception import * /* templates */ %template(TColGeom_Array1OfBSplineCurve) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(TColGeom_Array1OfBezierCurve) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(TColGeom_Array1OfCurve) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(TColGeom_Array1OfSurface) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(TColGeom_Array2OfSurface) NCollection_Array2>; %template(TColGeom_SequenceOfBoundedCurve) NCollection_Sequence>; diff --git a/src/SWIG_files/wrapper/TColGeom2d.i b/src/SWIG_files/wrapper/TColGeom2d.i index 3d47c1423..91f2a2e4e 100644 --- a/src/SWIG_files/wrapper/TColGeom2d.i +++ b/src/SWIG_files/wrapper/TColGeom2d.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_tcolgeom2d.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -77,110 +78,14 @@ from OCC.Core.Exception import * /* templates */ %template(TColGeom2d_Array1OfBSplineCurve) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(TColGeom2d_Array1OfBezierCurve) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(TColGeom2d_Array1OfCurve) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(TColGeom2d_SequenceOfBoundedCurve) NCollection_Sequence>; %extend NCollection_Sequence> { diff --git a/src/SWIG_files/wrapper/TColQuantity.i b/src/SWIG_files/wrapper/TColQuantity.i index f280a6bb0..d70aa0a8e 100644 --- a/src/SWIG_files/wrapper/TColQuantity.i +++ b/src/SWIG_files/wrapper/TColQuantity.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_tcolquantity.html %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/TColStd.i b/src/SWIG_files/wrapper/TColStd.i index 7f530c987..743981d5b 100644 --- a/src/SWIG_files/wrapper/TColStd.i +++ b/src/SWIG_files/wrapper/TColStd.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_tcolstd.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -50,23 +51,34 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_tcolstd.html" #include %}; +/* +numpy support for Geom, Geom2d, Poly, TColStd, TColgp, TShort see +https://github.com/tpaviot/pythonocc-core/pull/1381 +*/ %{ #define SWIG_FILE_WITH_INIT %} %include ../common/numpy.i -%include ../common/ArrayMacros.i %init %{ - import_array(); + import_array(); %} +%pythoncode { + import numpy as np +} +%apply (double* IN_ARRAY1, int DIM1) { (double* numpyArrayU, int nRowsU) }; +%apply (double* IN_ARRAY2, int DIM1, int DIM2) { (double* numpyArrayUV, int nRowsUV, int nColUV) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArrayResultArgout, int aSizeArgout) }; + +/* +end of numpy support section +*/ %import Standard.i %import NCollection.i %import TCollection.i %pythoncode { -import numpy as np - from enum import IntEnum from OCC.Core.Exception import * }; @@ -122,24 +134,21 @@ Array1ExtendIter(TCollection_ExtendedString) %apply (long long* IN_ARRAY1, int DIM1) { (long long* numpyArray1, int nRows1) }; %apply (long long* ARGOUT_ARRAY1, int DIM1) { (long long* numpyArray1Argout, int nRows1Argout) }; -Array1Template(TColStd_Array1OfInteger, long long, Standard_Integer) - +Array1NumpyTemplate(TColStd_Array1OfInteger, long long, Standard_Integer) %apply (double* IN_ARRAY1, int DIM1) { (double* numpyArray1, int nRows1) }; %apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArray1Argout, int nRows1Argout) }; -Array1Template(TColStd_Array1OfReal, double, Standard_Real) - +Array1NumpyTemplate(TColStd_Array1OfReal, double, Standard_Real) %template(TColStd_Array1OfTransient) NCollection_Array1>; Array1ExtendIter(opencascade::handle) %template(TColStd_Array2OfBoolean) NCollection_Array2; %template(TColStd_Array2OfCharacter) NCollection_Array2; - %apply (long long* IN_ARRAY2, int DIM1, int DIM2) { (long long* numpyArray2, int nRows2, int nCols2) }; %apply (long long* ARGOUT_ARRAY1, int DIM1) { (long long* numpyArray2Argout, int aSizeArgout) }; -Array2Template(TColStd_Array2OfInteger, long long, Standard_Integer) +Array2NumpyTemplate(TColStd_Array2OfInteger, long long, Standard_Integer) %apply (double* IN_ARRAY2, int DIM1, int DIM2) { (double* numpyArray2, int nRows2, int nCols2) }; %apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArray2Argout, int aSizeArgout) }; -Array2Template(TColStd_Array2OfReal, double, Standard_Real) +Array2NumpyTemplate(TColStd_Array2OfReal, double, Standard_Real) %template(TColStd_Array2OfTransient) NCollection_Array2>; %template(TColStd_DataMapOfAsciiStringInteger) NCollection_DataMap; %template(TColStd_DataMapOfIntegerInteger) NCollection_DataMap; diff --git a/src/SWIG_files/wrapper/TColgp.i b/src/SWIG_files/wrapper/TColgp.i index a8a81653c..7e5a03a3a 100644 --- a/src/SWIG_files/wrapper/TColgp.i +++ b/src/SWIG_files/wrapper/TColgp.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_tcolgp.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -50,22 +51,33 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_tcolgp.html" #include %}; +/* +numpy support for Geom, Geom2d, Poly, TColStd, TColgp, TShort see +https://github.com/tpaviot/pythonocc-core/pull/1381 +*/ %{ #define SWIG_FILE_WITH_INIT %} %include ../common/numpy.i -%include ../common/ArrayMacros.i %init %{ - import_array(); + import_array(); %} +%pythoncode { + import numpy as np +} +%apply (double* IN_ARRAY1, int DIM1) { (double* numpyArrayU, int nRowsU) }; +%apply (double* IN_ARRAY2, int DIM1, int DIM2) { (double* numpyArrayUV, int nRowsUV, int nColUV) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArrayResultArgout, int aSizeArgout) }; + +/* +end of numpy support section +*/ %import Standard.i %import NCollection.i %pythoncode { -import numpy as np - from enum import IntEnum from OCC.Core.Exception import * }; @@ -109,37 +121,63 @@ from OCC.Core.Exception import * %wrap_handle(TColgp_HSequenceOfDir) /* end handles declaration */ - /* templates */ -%apply (double* IN_ARRAY2, int DIM1, int DIM2) { (double* numpyArray2, int nRows2, int nDims2) }; -%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArray2Argout, int aSizeArgout) }; - %template(TColgp_Array1OfCirc2d) NCollection_Array1; Array1ExtendIter(gp_Circ2d) -Array1Of3DTemplate(TColgp_Array1OfDir, gp_Dir) -Array1Of2DTemplate(TColgp_Array1OfDir2d, gp_Dir2d) + +%apply (double* IN_ARRAY2, int DIM1, int DIM2) { (double* numpyArray2, int nRows2, int nDims2) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArray2Argout, int aSizeArgout) }; +Array1Of3DNumpyTemplate(TColgp_Array1OfDir, gp_Dir) +%apply (double* IN_ARRAY2, int DIM1, int DIM2) { (double* numpyArray2, int nRows2, int nDims2) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArray2Argout, int aSizeArgout) }; +Array1Of2DNumpyTemplate(TColgp_Array1OfDir2d, gp_Dir2d) %template(TColgp_Array1OfLin2d) NCollection_Array1; Array1ExtendIter(gp_Lin2d) -Array1Of3DTemplate(TColgp_Array1OfPnt, gp_Pnt) -Array1Of2DTemplate(TColgp_Array1OfPnt2d, gp_Pnt2d) -Array1Of3DTemplate(TColgp_Array1OfVec, gp_Vec) -Array1Of2DTemplate(TColgp_Array1OfVec2d, gp_Vec2d) -Array1Of2DTemplate(TColgp_Array1OfXY, gp_XY) -Array1Of3DTemplate(TColgp_Array1OfXYZ, gp_XYZ) +%apply (double* IN_ARRAY2, int DIM1, int DIM2) { (double* numpyArray2, int nRows2, int nDims2) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArray2Argout, int aSizeArgout) }; +Array1Of3DNumpyTemplate(TColgp_Array1OfPnt, gp_Pnt) +%apply (double* IN_ARRAY2, int DIM1, int DIM2) { (double* numpyArray2, int nRows2, int nDims2) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArray2Argout, int aSizeArgout) }; +Array1Of2DNumpyTemplate(TColgp_Array1OfPnt2d, gp_Pnt2d) +%apply (double* IN_ARRAY2, int DIM1, int DIM2) { (double* numpyArray2, int nRows2, int nDims2) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArray2Argout, int aSizeArgout) }; +Array1Of3DNumpyTemplate(TColgp_Array1OfVec, gp_Vec) +%apply (double* IN_ARRAY2, int DIM1, int DIM2) { (double* numpyArray2, int nRows2, int nDims2) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArray2Argout, int aSizeArgout) }; +Array1Of2DNumpyTemplate(TColgp_Array1OfVec2d, gp_Vec2d) +%apply (double* IN_ARRAY2, int DIM1, int DIM2) { (double* numpyArray2, int nRows2, int nDims2) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArray2Argout, int aSizeArgout) }; +Array1Of2DNumpyTemplate(TColgp_Array1OfXY, gp_XY) +%apply (double* IN_ARRAY2, int DIM1, int DIM2) { (double* numpyArray2, int nRows2, int nDims2) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArray2Argout, int aSizeArgout) }; +Array1Of3DNumpyTemplate(TColgp_Array1OfXYZ, gp_XYZ) +%template(TColgp_Array2OfCirc2d) NCollection_Array2; %apply (double* IN_ARRAY3, int DIM1, int DIM2, int DIM3) { (double* numpyArray3, int nRows3, int nCols3, int nDims3) }; %apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArray3Argout, int aSizeArgout) }; - -%template(TColgp_Array2OfCirc2d) NCollection_Array2; -Array2Of3DTemplate(TColgp_Array2OfDir, gp_Dir) -Array2Of2DTemplate(TColgp_Array2OfDir2d, gp_Dir2d) +Array2Of3DNumpyTemplate(TColgp_Array2OfDir, gp_Dir) +%apply (double* IN_ARRAY3, int DIM1, int DIM2, int DIM3) { (double* numpyArray3, int nRows3, int nCols3, int nDims3) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArray3Argout, int aSizeArgout) }; +Array2Of2DNumpyTemplate(TColgp_Array2OfDir2d, gp_Dir2d) %template(TColgp_Array2OfLin2d) NCollection_Array2; -Array2Of3DTemplate(TColgp_Array2OfPnt, gp_Pnt) -Array2Of2DTemplate(TColgp_Array2OfPnt2d, gp_Pnt2d) -Array2Of3DTemplate(TColgp_Array2OfVec, gp_Vec) -Array2Of2DTemplate(TColgp_Array2OfVec2d, gp_Vec2d) -Array2Of2DTemplate(TColgp_Array2OfXY, gp_XY) -Array2Of3DTemplate(TColgp_Array2OfXYZ, gp_XYZ) +%apply (double* IN_ARRAY3, int DIM1, int DIM2, int DIM3) { (double* numpyArray3, int nRows3, int nCols3, int nDims3) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArray3Argout, int aSizeArgout) }; +Array2Of3DNumpyTemplate(TColgp_Array2OfPnt, gp_Pnt) +%apply (double* IN_ARRAY3, int DIM1, int DIM2, int DIM3) { (double* numpyArray3, int nRows3, int nCols3, int nDims3) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArray3Argout, int aSizeArgout) }; +Array2Of2DNumpyTemplate(TColgp_Array2OfPnt2d, gp_Pnt2d) +%apply (double* IN_ARRAY3, int DIM1, int DIM2, int DIM3) { (double* numpyArray3, int nRows3, int nCols3, int nDims3) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArray3Argout, int aSizeArgout) }; +Array2Of3DNumpyTemplate(TColgp_Array2OfVec, gp_Vec) +%apply (double* IN_ARRAY3, int DIM1, int DIM2, int DIM3) { (double* numpyArray3, int nRows3, int nCols3, int nDims3) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArray3Argout, int aSizeArgout) }; +Array2Of2DNumpyTemplate(TColgp_Array2OfVec2d, gp_Vec2d) +%apply (double* IN_ARRAY3, int DIM1, int DIM2, int DIM3) { (double* numpyArray3, int nRows3, int nCols3, int nDims3) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArray3Argout, int aSizeArgout) }; +Array2Of2DNumpyTemplate(TColgp_Array2OfXY, gp_XY) +%apply (double* IN_ARRAY3, int DIM1, int DIM2, int DIM3) { (double* numpyArray3, int nRows3, int nCols3, int nDims3) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArray3Argout, int aSizeArgout) }; +Array2Of3DNumpyTemplate(TColgp_Array2OfXYZ, gp_XYZ) %template(TColgp_SequenceOfArray1OfPnt2d) NCollection_Sequence>; %extend NCollection_Sequence> { @@ -148,7 +186,6 @@ Array2Of3DTemplate(TColgp_Array2OfXYZ, gp_XYZ) return self.Size() } }; - %template(TColgp_SequenceOfAx1) NCollection_Sequence; %extend NCollection_Sequence { diff --git a/src/SWIG_files/wrapper/TCollection.i b/src/SWIG_files/wrapper/TCollection.i index 2d29954d4..3f09fe577 100644 --- a/src/SWIG_files/wrapper/TCollection.i +++ b/src/SWIG_files/wrapper/TCollection.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_tcollection.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/TDF.i b/src/SWIG_files/wrapper/TDF.i index 529e63516..2de1b9bd2 100644 --- a/src/SWIG_files/wrapper/TDF.i +++ b/src/SWIG_files/wrapper/TDF.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_tdf.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -97,40 +98,8 @@ enum { /* templates */ %template(TDF_AttributeArray1) NCollection_Array1>; +Array1ExtendIter(opencascade::handle) -%extend NCollection_Array1> { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(TDF_AttributeDataMap) NCollection_DataMap,opencascade::handle>; %template(TDF_AttributeDeltaList) NCollection_List>; diff --git a/src/SWIG_files/wrapper/TDataStd.i b/src/SWIG_files/wrapper/TDataStd.i index 7c5758155..8aed2d44c 100644 --- a/src/SWIG_files/wrapper/TDataStd.i +++ b/src/SWIG_files/wrapper/TDataStd.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_tdatastd.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -133,40 +134,8 @@ TDataStd_ANGULAR = TDataStd_RealEnum.TDataStd_ANGULAR %template(TDataStd_DataMapOfStringReal) NCollection_DataMap; %template(TDataStd_DataMapOfStringString) NCollection_DataMap; %template(TDataStd_LabelArray1) NCollection_Array1; +Array1ExtendIter(TDF_Label) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(TDataStd_ListIteratorOfListOfByte) NCollection_TListIterator; %template(TDataStd_ListIteratorOfListOfExtendedString) NCollection_TListIterator; %template(TDataStd_ListOfByte) NCollection_List; diff --git a/src/SWIG_files/wrapper/TDataXtd.i b/src/SWIG_files/wrapper/TDataXtd.i index ebdd07c42..b7647fbd6 100644 --- a/src/SWIG_files/wrapper/TDataXtd.i +++ b/src/SWIG_files/wrapper/TDataXtd.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_tdataxtd.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -214,40 +215,8 @@ TDataXtd_CYLINDER = TDataXtd_GeometryEnum.TDataXtd_CYLINDER /* templates */ %template(TDataXtd_Array1OfTrsf) NCollection_Array1; +Array1ExtendIter(gp_Trsf) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; /* end templates declaration */ /* typedefs */ diff --git a/src/SWIG_files/wrapper/TDocStd.i b/src/SWIG_files/wrapper/TDocStd.i index 85c72da2b..8a68e7322 100644 --- a/src/SWIG_files/wrapper/TDocStd.i +++ b/src/SWIG_files/wrapper/TDocStd.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_tdocstd.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/TFunction.i b/src/SWIG_files/wrapper/TFunction.i index 8482ad7e1..aa892905c 100644 --- a/src/SWIG_files/wrapper/TFunction.i +++ b/src/SWIG_files/wrapper/TFunction.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_tfunction.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/TNaming.i b/src/SWIG_files/wrapper/TNaming.i index d2ba73a6c..fc8c0a53f 100644 --- a/src/SWIG_files/wrapper/TNaming.i +++ b/src/SWIG_files/wrapper/TNaming.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_tnaming.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/TObj.i b/src/SWIG_files/wrapper/TObj.i index d50e5381f..f03d92b47 100644 --- a/src/SWIG_files/wrapper/TObj.i +++ b/src/SWIG_files/wrapper/TObj.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_tobj.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/TPrsStd.i b/src/SWIG_files/wrapper/TPrsStd.i index a2eceba7c..cf7dcda12 100644 --- a/src/SWIG_files/wrapper/TPrsStd.i +++ b/src/SWIG_files/wrapper/TPrsStd.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_tprsstd.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/TShort.i b/src/SWIG_files/wrapper/TShort.i index c7d5be26c..f5c07f84c 100644 --- a/src/SWIG_files/wrapper/TShort.i +++ b/src/SWIG_files/wrapper/TShort.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_tshort.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -50,22 +51,33 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_tshort.html" #include %}; +/* +numpy support for Geom, Geom2d, Poly, TColStd, TColgp, TShort see +https://github.com/tpaviot/pythonocc-core/pull/1381 +*/ %{ #define SWIG_FILE_WITH_INIT %} %include ../common/numpy.i -%include ../common/ArrayMacros.i %init %{ - import_array(); + import_array(); %} +%pythoncode { + import numpy as np +} +%apply (double* IN_ARRAY1, int DIM1) { (double* numpyArrayU, int nRowsU) }; +%apply (double* IN_ARRAY2, int DIM1, int DIM2) { (double* numpyArrayUV, int nRowsUV, int nColUV) }; +%apply (double* ARGOUT_ARRAY1, int DIM1) { (double* numpyArrayResultArgout, int aSizeArgout) }; + +/* +end of numpy support section +*/ %import Standard.i %import NCollection.i %pythoncode { -import numpy as np - from enum import IntEnum from OCC.Core.Exception import * }; @@ -87,11 +99,10 @@ from OCC.Core.Exception import * /* templates */ %apply (float* IN_ARRAY1, int DIM1) { (float* numpyArray1, int nRows1) }; %apply (float* ARGOUT_ARRAY1, int DIM1) { (float* numpyArray1Argout, int nRows1Argout) }; -Array1Template(TShort_Array1OfShortReal, float, Standard_ShortReal) - +Array1NumpyTemplate(TShort_Array1OfShortReal, float, Standard_ShortReal) %apply (float* IN_ARRAY2, int DIM1, int DIM2) { (float* numpyArray2, int nRows2, int nCols2) }; %apply (float* ARGOUT_ARRAY1, int DIM1) { (float* numpyArray2Argout, int aSizeArgout) }; -Array2Template(TShort_Array2OfShortReal, float, Standard_ShortReal) +Array2NumpyTemplate(TShort_Array2OfShortReal, float, Standard_ShortReal) %template(TShort_SequenceOfShortReal) NCollection_Sequence; %extend NCollection_Sequence { diff --git a/src/SWIG_files/wrapper/TopAbs.i b/src/SWIG_files/wrapper/TopAbs.i index 44d1fffbe..e1ab14411 100644 --- a/src/SWIG_files/wrapper/TopAbs.i +++ b/src/SWIG_files/wrapper/TopAbs.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_topabs.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/TopBas.i b/src/SWIG_files/wrapper/TopBas.i index 2867b8208..bafecf03b 100644 --- a/src/SWIG_files/wrapper/TopBas.i +++ b/src/SWIG_files/wrapper/TopBas.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_topbas.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/TopClass.i b/src/SWIG_files/wrapper/TopClass.i index 60c26ecba..9e5cfccca 100644 --- a/src/SWIG_files/wrapper/TopClass.i +++ b/src/SWIG_files/wrapper/TopClass.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_topclass.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/TopCnx.i b/src/SWIG_files/wrapper/TopCnx.i index 4812d2b49..8491f9556 100644 --- a/src/SWIG_files/wrapper/TopCnx.i +++ b/src/SWIG_files/wrapper/TopCnx.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_topcnx.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/TopExp.i b/src/SWIG_files/wrapper/TopExp.i index 18d5daffd..0f46b7093 100644 --- a/src/SWIG_files/wrapper/TopExp.i +++ b/src/SWIG_files/wrapper/TopExp.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_topexp.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/TopLoc.i b/src/SWIG_files/wrapper/TopLoc.i index 9417fcf01..f7b13e926 100644 --- a/src/SWIG_files/wrapper/TopLoc.i +++ b/src/SWIG_files/wrapper/TopLoc.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_toploc.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/TopOpeBRep.i b/src/SWIG_files/wrapper/TopOpeBRep.i index 365888f28..17e836339 100644 --- a/src/SWIG_files/wrapper/TopOpeBRep.i +++ b/src/SWIG_files/wrapper/TopOpeBRep.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_topopebrep.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -171,75 +172,11 @@ TopOpeBRep_OTHERTYPE = TopOpeBRep_TypeLineCurve.TopOpeBRep_OTHERTYPE /* templates */ %template(TopOpeBRep_Array1OfLineInter) NCollection_Array1; +Array1ExtendIter(TopOpeBRep_LineInter) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(TopOpeBRep_Array1OfVPointInter) NCollection_Array1; +Array1ExtendIter(TopOpeBRep_VPointInter) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(TopOpeBRep_DataMapOfTopolTool) NCollection_DataMap,TopTools_ShapeMapHasher>; %template(TopOpeBRep_ListIteratorOfListOfBipoint) NCollection_TListIterator; %template(TopOpeBRep_ListOfBipoint) NCollection_List; diff --git a/src/SWIG_files/wrapper/TopOpeBRepBuild.i b/src/SWIG_files/wrapper/TopOpeBRepBuild.i index 350727948..6e996fa1a 100644 --- a/src/SWIG_files/wrapper/TopOpeBRepBuild.i +++ b/src/SWIG_files/wrapper/TopOpeBRepBuild.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_topopebrepbuild.h %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/TopOpeBRepDS.i b/src/SWIG_files/wrapper/TopOpeBRepDS.i index 96679a0fe..8828f9564 100644 --- a/src/SWIG_files/wrapper/TopOpeBRepDS.i +++ b/src/SWIG_files/wrapper/TopOpeBRepDS.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_topopebrepds.html %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/TopOpeBRepTool.i b/src/SWIG_files/wrapper/TopOpeBRepTool.i index bf8b533da..b7183d766 100644 --- a/src/SWIG_files/wrapper/TopOpeBRepTool.i +++ b/src/SWIG_files/wrapper/TopOpeBRepTool.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_topopebreptool.ht %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/TopTools.i b/src/SWIG_files/wrapper/TopTools.i index c6a1edbd2..c3e490436 100644 --- a/src/SWIG_files/wrapper/TopTools.i +++ b/src/SWIG_files/wrapper/TopTools.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_toptools.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -106,40 +107,8 @@ TopTools_FormatVersion_CURRENT = TopTools_FormatVersion.TopTools_FormatVersion_C /* templates */ %template(TopTools_Array1OfShape) NCollection_Array1; +Array1ExtendIter(TopoDS_Shape) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; %template(TopTools_Array2OfShape) NCollection_Array2; %template(TopTools_DataMapOfIntegerListOfShape) NCollection_DataMap; diff --git a/src/SWIG_files/wrapper/TopTrans.i b/src/SWIG_files/wrapper/TopTrans.i index 893611cc1..1d5a9d652 100644 --- a/src/SWIG_files/wrapper/TopTrans.i +++ b/src/SWIG_files/wrapper/TopTrans.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_toptrans.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/TopoDS.i b/src/SWIG_files/wrapper/TopoDS.i index 862503801..738307f5c 100644 --- a/src/SWIG_files/wrapper/TopoDS.i +++ b/src/SWIG_files/wrapper/TopoDS.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_topods.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/TopoDSToStep.i b/src/SWIG_files/wrapper/TopoDSToStep.i index 98adca4e3..2946e5739 100644 --- a/src/SWIG_files/wrapper/TopoDSToStep.i +++ b/src/SWIG_files/wrapper/TopoDSToStep.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_topodstostep.html %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Transfer.i b/src/SWIG_files/wrapper/Transfer.i index 557e7dcd4..b64ad9cb7 100644 --- a/src/SWIG_files/wrapper/Transfer.i +++ b/src/SWIG_files/wrapper/Transfer.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_transfer.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/TransferBRep.i b/src/SWIG_files/wrapper/TransferBRep.i index fc6302b85..36f2ad48a 100644 --- a/src/SWIG_files/wrapper/TransferBRep.i +++ b/src/SWIG_files/wrapper/TransferBRep.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_transferbrep.html %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/UTL.i b/src/SWIG_files/wrapper/UTL.i index 232103474..4e9d024fb 100644 --- a/src/SWIG_files/wrapper/UTL.i +++ b/src/SWIG_files/wrapper/UTL.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_utl.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Units.i b/src/SWIG_files/wrapper/Units.i index ad49d071f..c50eb8033 100644 --- a/src/SWIG_files/wrapper/Units.i +++ b/src/SWIG_files/wrapper/Units.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_units.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/UnitsAPI.i b/src/SWIG_files/wrapper/UnitsAPI.i index 693977be9..7517d3a55 100644 --- a/src/SWIG_files/wrapper/UnitsAPI.i +++ b/src/SWIG_files/wrapper/UnitsAPI.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_unitsapi.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/UnitsMethods.i b/src/SWIG_files/wrapper/UnitsMethods.i index 64a1c2454..286024422 100644 --- a/src/SWIG_files/wrapper/UnitsMethods.i +++ b/src/SWIG_files/wrapper/UnitsMethods.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_unitsmethods.html %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/V3d.i b/src/SWIG_files/wrapper/V3d.i index 70be8db0d..bb2116834 100644 --- a/src/SWIG_files/wrapper/V3d.i +++ b/src/SWIG_files/wrapper/V3d.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_v3d.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/Vrml.i b/src/SWIG_files/wrapper/Vrml.i index e7e1967fe..048b44e15 100644 --- a/src/SWIG_files/wrapper/Vrml.i +++ b/src/SWIG_files/wrapper/Vrml.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_vrml.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/VrmlAPI.i b/src/SWIG_files/wrapper/VrmlAPI.i index 7ddbea57a..11004eb5e 100644 --- a/src/SWIG_files/wrapper/VrmlAPI.i +++ b/src/SWIG_files/wrapper/VrmlAPI.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_vrmlapi.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/VrmlConverter.i b/src/SWIG_files/wrapper/VrmlConverter.i index 7edaccbbf..332a36deb 100644 --- a/src/SWIG_files/wrapper/VrmlConverter.i +++ b/src/SWIG_files/wrapper/VrmlConverter.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_vrmlconverter.htm %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/VrmlData.i b/src/SWIG_files/wrapper/VrmlData.i index 8adfcd1ff..ecd317f0a 100644 --- a/src/SWIG_files/wrapper/VrmlData.i +++ b/src/SWIG_files/wrapper/VrmlData.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_vrmldata.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/XBRepMesh.i b/src/SWIG_files/wrapper/XBRepMesh.i index f93e60ade..95ba9a7e2 100644 --- a/src/SWIG_files/wrapper/XBRepMesh.i +++ b/src/SWIG_files/wrapper/XBRepMesh.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_xbrepmesh.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/XCAFApp.i b/src/SWIG_files/wrapper/XCAFApp.i index 049b5fcad..ab6aafb14 100644 --- a/src/SWIG_files/wrapper/XCAFApp.i +++ b/src/SWIG_files/wrapper/XCAFApp.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_xcafapp.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/XCAFDimTolObjects.i b/src/SWIG_files/wrapper/XCAFDimTolObjects.i index b3fe2502d..ac16af1f1 100644 --- a/src/SWIG_files/wrapper/XCAFDimTolObjects.i +++ b/src/SWIG_files/wrapper/XCAFDimTolObjects.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_xcafdimtolobjects %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/XCAFDoc.i b/src/SWIG_files/wrapper/XCAFDoc.i index 7fe5ada1f..00959510d 100644 --- a/src/SWIG_files/wrapper/XCAFDoc.i +++ b/src/SWIG_files/wrapper/XCAFDoc.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_xcafdoc.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/XCAFNoteObjects.i b/src/SWIG_files/wrapper/XCAFNoteObjects.i index a2c94a7c0..6c44a6dd3 100644 --- a/src/SWIG_files/wrapper/XCAFNoteObjects.i +++ b/src/SWIG_files/wrapper/XCAFNoteObjects.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_xcafnoteobjects.h %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/XCAFPrs.i b/src/SWIG_files/wrapper/XCAFPrs.i index cc4adc6c7..9517bfb4b 100644 --- a/src/SWIG_files/wrapper/XCAFPrs.i +++ b/src/SWIG_files/wrapper/XCAFPrs.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_xcafprs.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/XCAFView.i b/src/SWIG_files/wrapper/XCAFView.i index 5ce677616..377032769 100644 --- a/src/SWIG_files/wrapper/XCAFView.i +++ b/src/SWIG_files/wrapper/XCAFView.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_xcafview.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/XSControl.i b/src/SWIG_files/wrapper/XSControl.i index d26cda0b2..d70786b63 100644 --- a/src/SWIG_files/wrapper/XSControl.i +++ b/src/SWIG_files/wrapper/XSControl.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_xscontrol.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/XmlDrivers.i b/src/SWIG_files/wrapper/XmlDrivers.i index 2b4b4ee42..b0355777b 100644 --- a/src/SWIG_files/wrapper/XmlDrivers.i +++ b/src/SWIG_files/wrapper/XmlDrivers.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_xmldrivers.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/XmlLDrivers.i b/src/SWIG_files/wrapper/XmlLDrivers.i index 922f9fe6b..0d1849bc7 100644 --- a/src/SWIG_files/wrapper/XmlLDrivers.i +++ b/src/SWIG_files/wrapper/XmlLDrivers.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_xmlldrivers.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/XmlMDF.i b/src/SWIG_files/wrapper/XmlMDF.i index 690e427ff..60355807a 100644 --- a/src/SWIG_files/wrapper/XmlMDF.i +++ b/src/SWIG_files/wrapper/XmlMDF.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_xmlmdf.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/XmlMDataStd.i b/src/SWIG_files/wrapper/XmlMDataStd.i index c4c7ee25c..1d5a5b3fa 100644 --- a/src/SWIG_files/wrapper/XmlMDataStd.i +++ b/src/SWIG_files/wrapper/XmlMDataStd.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_xmlmdatastd.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/XmlMDataXtd.i b/src/SWIG_files/wrapper/XmlMDataXtd.i index 4219f037d..a18e40d49 100644 --- a/src/SWIG_files/wrapper/XmlMDataXtd.i +++ b/src/SWIG_files/wrapper/XmlMDataXtd.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_xmlmdataxtd.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/XmlMDocStd.i b/src/SWIG_files/wrapper/XmlMDocStd.i index e9c90b185..5c0132c68 100644 --- a/src/SWIG_files/wrapper/XmlMDocStd.i +++ b/src/SWIG_files/wrapper/XmlMDocStd.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_xmlmdocstd.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/XmlMFunction.i b/src/SWIG_files/wrapper/XmlMFunction.i index 5ed76d753..9495e989d 100644 --- a/src/SWIG_files/wrapper/XmlMFunction.i +++ b/src/SWIG_files/wrapper/XmlMFunction.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_xmlmfunction.html %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/XmlMNaming.i b/src/SWIG_files/wrapper/XmlMNaming.i index 4ebfff23d..ea3f5ef5d 100644 --- a/src/SWIG_files/wrapper/XmlMNaming.i +++ b/src/SWIG_files/wrapper/XmlMNaming.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_xmlmnaming.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/XmlMXCAFDoc.i b/src/SWIG_files/wrapper/XmlMXCAFDoc.i index 76ec6ccd9..e18d10f86 100644 --- a/src/SWIG_files/wrapper/XmlMXCAFDoc.i +++ b/src/SWIG_files/wrapper/XmlMXCAFDoc.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_xmlmxcafdoc.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/XmlObjMgt.i b/src/SWIG_files/wrapper/XmlObjMgt.i index 85c1040d8..d34e48426 100644 --- a/src/SWIG_files/wrapper/XmlObjMgt.i +++ b/src/SWIG_files/wrapper/XmlObjMgt.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_xmlobjmgt.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/XmlTObjDrivers.i b/src/SWIG_files/wrapper/XmlTObjDrivers.i index 7f94ebb69..562075ffb 100644 --- a/src/SWIG_files/wrapper/XmlTObjDrivers.i +++ b/src/SWIG_files/wrapper/XmlTObjDrivers.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_xmltobjdrivers.ht %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/XmlXCAFDrivers.i b/src/SWIG_files/wrapper/XmlXCAFDrivers.i index a6befbb6e..f6fe9650e 100644 --- a/src/SWIG_files/wrapper/XmlXCAFDrivers.i +++ b/src/SWIG_files/wrapper/XmlXCAFDrivers.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_xmlxcafdrivers.ht %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/gce.i b/src/SWIG_files/wrapper/gce.i index aad0150a9..89ae7de48 100644 --- a/src/SWIG_files/wrapper/gce.i +++ b/src/SWIG_files/wrapper/gce.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_gce.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/generator.log b/src/SWIG_files/wrapper/generator.log index 37e4195c4..7f1cedb4d 100644 --- a/src/SWIG_files/wrapper/generator.log +++ b/src/SWIG_files/wrapper/generator.log @@ -2,13 +2,13 @@ ############################ Running pythonocc-generator. ############################ -git revision : 020d4e8 +git revision : ee0643e operating system : Linux 64bit 6.8.0-48-generic occt version targeted : 7.8.1 -date : 2024-11-08 14:20:50.686717 +date : 2024-11-10 17:47:59.350215 ############################ [INFO ] Processing toolkit TKBO === @@ -253,7 +253,7 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: BRep_PolygonOnClosedTriangulation [INFO ] Class: BRep_CurveOnClosedSurface [INFO ] ## Processing module BRepAdaptor -[INFO ] Found HARRAY1 definitionBRepAdaptor_HArray1OfCurve: BRepAdaptor_Array1OfCurve +[INFO ] Found HARRAY1 definition BRepAdaptor_HArray1OfCurve: BRepAdaptor_Array1OfCurve [INFO ] Class: BRepAdaptor_CompCurve [INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [INFO ] Class: BRepAdaptor_Curve @@ -328,10 +328,10 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: TopExp_Explorer [INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [INFO ] ## Processing module TopTools -[INFO ] Found HARRAY2 definitionTopTools_HArray2OfShape: TopTools_Array2OfShape -[INFO ] Found HARRAY1 definitionTopTools_HArray1OfShape: TopTools_Array1OfShape -[INFO ] Found HSEQUENCE definitionTopTools_HSequenceOfShape: TopTools_SequenceOfShape -[INFO ] Found HARRAY1 definitionTopTools_HArray1OfListOfShape: TopTools_Array1OfListOfShape +[INFO ] Found HARRAY2 definition TopTools_HArray2OfShape: TopTools_Array2OfShape +[INFO ] Found HARRAY1 definition TopTools_HArray1OfShape: TopTools_Array1OfShape +[INFO ] Found HSEQUENCE definition TopTools_HSequenceOfShape: TopTools_SequenceOfShape +[INFO ] Found HARRAY1 definition TopTools_HArray1OfListOfShape: TopTools_Array1OfListOfShape [INFO ] Enum: [INFO ] Enum: TopTools_FormatVersion [WARNI] [TypeHint] Skipping unknown type int,TopTools_ListOfShape, int,TopTools not in module list @@ -586,8 +586,8 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: BRepProj_Projection [INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [INFO ] ## Processing module TopOpeBRep -[INFO ] Found HARRAY1 definitionTopOpeBRep_HArray1OfLineInter: TopOpeBRep_Array1OfLineInter -[INFO ] Found HARRAY1 definitionTopOpeBRep_HArray1OfVPointInter: TopOpeBRep_Array1OfVPointInter +[INFO ] Found HARRAY1 definition TopOpeBRep_HArray1OfLineInter: TopOpeBRep_Array1OfLineInter +[INFO ] Found HARRAY1 definition TopOpeBRep_HArray1OfVPointInter: TopOpeBRep_Array1OfVPointInter [INFO ] Enum: TopOpeBRep_P2Dstatus [INFO ] Enum: TopOpeBRep_TypeLineCurve [WARNI] [TypeHint] Skip type TopoDS_Shape,opencascade::handle, because of trailing : @@ -691,7 +691,7 @@ date : 2024-11-08 14:20:50.686717 [INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [INFO ] Class: TopOpeBRepBuild_WireEdgeClassifier [INFO ] ## Processing module TopOpeBRepDS -[INFO ] Found HARRAY1 definitionTopOpeBRepDS_HArray1OfDataMapOfIntegerListOfInterference: TopOpeBRepDS_Array1OfDataMapOfIntegerListOfInterference +[INFO ] Found HARRAY1 definition TopOpeBRepDS_HArray1OfDataMapOfIntegerListOfInterference: TopOpeBRepDS_Array1OfDataMapOfIntegerListOfInterference [INFO ] Enum: TopOpeBRepDS_CheckStatus [INFO ] Enum: TopOpeBRepDS_Config [INFO ] Enum: TopOpeBRepDS_Kind @@ -867,7 +867,7 @@ date : 2024-11-08 14:20:50.686717 [INFO ] ## Processing module AppStd [INFO ] Class: AppStd_Application [INFO ] ## Processing module TDataXtd -[INFO ] Found HARRAY1 definitionTDataXtd_HArray1OfTrsf: TDataXtd_Array1OfTrsf +[INFO ] Found HARRAY1 definition TDataXtd_HArray1OfTrsf: TDataXtd_Array1OfTrsf [INFO ] Enum: TDataXtd_ConstraintEnum [INFO ] Enum: TDataXtd_GeometryEnum [INFO ] Class: TDataXtd @@ -1165,8 +1165,8 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: ChFi3d_ChBuilder [INFO ] Class: ChFi3d_FilBuilder [INFO ] ## Processing module ChFiDS -[INFO ] Found HSEQUENCE definitionChFiDS_HData: ChFiDS_SequenceOfSurfData -[INFO ] Found HARRAY1 definitionChFiDS_SecHArray1: ChFiDS_SecArray1 +[INFO ] Found HSEQUENCE definition ChFiDS_HData: ChFiDS_SequenceOfSurfData +[INFO ] Found HARRAY1 definition ChFiDS_SecHArray1: ChFiDS_SecArray1 [INFO ] Enum: ChFiDS_ChamfMethod [INFO ] Enum: ChFiDS_ChamfMode [INFO ] Enum: ChFiDS_ErrorStatus @@ -1281,11 +1281,11 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: LProp_AnalyticCurInf [INFO ] Class: LProp_CurAndInf [INFO ] ## Processing module TColGeom2d -[INFO ] Found HARRAY1 definitionTColGeom2d_HArray1OfBezierCurve: TColGeom2d_Array1OfBezierCurve -[INFO ] Found HARRAY1 definitionTColGeom2d_HArray1OfCurve: TColGeom2d_Array1OfCurve -[INFO ] Found HARRAY1 definitionTColGeom2d_HArray1OfBSplineCurve: TColGeom2d_Array1OfBSplineCurve -[INFO ] Found HSEQUENCE definitionTColGeom2d_HSequenceOfBoundedCurve: TColGeom2d_SequenceOfBoundedCurve -[INFO ] Found HSEQUENCE definitionTColGeom2d_HSequenceOfCurve: TColGeom2d_SequenceOfCurve +[INFO ] Found HARRAY1 definition TColGeom2d_HArray1OfBezierCurve: TColGeom2d_Array1OfBezierCurve +[INFO ] Found HARRAY1 definition TColGeom2d_HArray1OfCurve: TColGeom2d_Array1OfCurve +[INFO ] Found HARRAY1 definition TColGeom2d_HArray1OfBSplineCurve: TColGeom2d_Array1OfBSplineCurve +[INFO ] Found HSEQUENCE definition TColGeom2d_HSequenceOfBoundedCurve: TColGeom2d_SequenceOfBoundedCurve +[INFO ] Found HSEQUENCE definition TColGeom2d_HSequenceOfCurve: TColGeom2d_SequenceOfCurve [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ @@ -1333,7 +1333,7 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: GProp_VelGProps [INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [INFO ] ## Processing module Geom -[INFO ] Found HSEQUENCE definitionGeom_HSequenceOfBSplineSurface: Geom_SequenceOfBSplineSurface +[INFO ] Found HSEQUENCE definition Geom_HSequenceOfBSplineSurface: Geom_SequenceOfBSplineSurface [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ [INFO ] Class: Geom_Geometry [INFO ] Class Geom_Geometry is abstract, using %nodefaultctor. @@ -1445,13 +1445,13 @@ date : 2024-11-08 14:20:50.686717 [INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [INFO ] Class: LProp3d_SurfaceTool [INFO ] ## Processing module TColGeom -[INFO ] Found HARRAY1 definitionTColGeom_HArray1OfBSplineCurve: TColGeom_Array1OfBSplineCurve -[INFO ] Found HARRAY1 definitionTColGeom_HArray1OfSurface: TColGeom_Array1OfSurface -[INFO ] Found HSEQUENCE definitionTColGeom_HSequenceOfBoundedCurve: TColGeom_SequenceOfBoundedCurve -[INFO ] Found HARRAY1 definitionTColGeom_HArray1OfCurve: TColGeom_Array1OfCurve -[INFO ] Found HSEQUENCE definitionTColGeom_HSequenceOfCurve: TColGeom_SequenceOfCurve -[INFO ] Found HARRAY1 definitionTColGeom_HArray1OfBezierCurve: TColGeom_Array1OfBezierCurve -[INFO ] Found HARRAY2 definitionTColGeom_HArray2OfSurface: TColGeom_Array2OfSurface +[INFO ] Found HARRAY1 definition TColGeom_HArray1OfBSplineCurve: TColGeom_Array1OfBSplineCurve +[INFO ] Found HARRAY1 definition TColGeom_HArray1OfSurface: TColGeom_Array1OfSurface +[INFO ] Found HSEQUENCE definition TColGeom_HSequenceOfBoundedCurve: TColGeom_SequenceOfBoundedCurve +[INFO ] Found HARRAY1 definition TColGeom_HArray1OfCurve: TColGeom_Array1OfCurve +[INFO ] Found HSEQUENCE definition TColGeom_HSequenceOfCurve: TColGeom_SequenceOfCurve +[INFO ] Found HARRAY1 definition TColGeom_HArray1OfBezierCurve: TColGeom_Array1OfBezierCurve +[INFO ] Found HARRAY2 definition TColGeom_HArray2OfSurface: TColGeom_Array2OfSurface [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ @@ -1782,9 +1782,9 @@ date : 2024-11-08 14:20:50.686717 [INFO ] operand gp_Pnt cannot be wrapped [INFO ] operand Standard_Real cannot be wrapped [INFO ] ## Processing module GeomFill -[INFO ] Found HARRAY1 definitionGeomFill_HArray1OfLocationLaw: GeomFill_Array1OfLocationLaw -[INFO ] Found HARRAY1 definitionGeomFill_HArray1OfSectionLaw: GeomFill_Array1OfSectionLaw -[INFO ] Found HSEQUENCE definitionGeomFill_HSequenceOfAx2: GeomFill_SequenceOfAx2 +[INFO ] Found HARRAY1 definition GeomFill_HArray1OfLocationLaw: GeomFill_Array1OfLocationLaw +[INFO ] Found HARRAY1 definition GeomFill_HArray1OfSectionLaw: GeomFill_Array1OfSectionLaw +[INFO ] Found HSEQUENCE definition GeomFill_HSequenceOfAx2: GeomFill_SequenceOfAx2 [INFO ] Enum: GeomFill_ApproxStyle [INFO ] Enum: GeomFill_FillingStyle [INFO ] Enum: GeomFill_PipeError @@ -1930,10 +1930,10 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: GeomInt_TheZerImpFuncOfTheImpPrmSvSurfacesOfWLApprox [INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [INFO ] ## Processing module GeomPlate -[INFO ] Found HSEQUENCE definitionGeomPlate_HSequenceOfCurveConstraint: GeomPlate_SequenceOfCurveConstraint -[INFO ] Found HARRAY1 definitionGeomPlate_HArray1OfHCurve: GeomPlate_Array1OfHCurve -[INFO ] Found HSEQUENCE definitionGeomPlate_HSequenceOfPointConstraint: GeomPlate_SequenceOfPointConstraint -[INFO ] Found HARRAY1 definitionGeomPlate_HArray1OfSequenceOfReal: GeomPlate_Array1OfSequenceOfReal +[INFO ] Found HSEQUENCE definition GeomPlate_HSequenceOfCurveConstraint: GeomPlate_SequenceOfCurveConstraint +[INFO ] Found HARRAY1 definition GeomPlate_HArray1OfHCurve: GeomPlate_Array1OfHCurve +[INFO ] Found HSEQUENCE definition GeomPlate_HSequenceOfPointConstraint: GeomPlate_SequenceOfPointConstraint +[INFO ] Found HARRAY1 definition GeomPlate_HArray1OfSequenceOfReal: GeomPlate_Array1OfSequenceOfReal [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ @@ -2219,7 +2219,7 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: NLPlate_HPG3Constraint [INFO ] Class: NLPlate_HPG0G3Constraint [INFO ] ## Processing module Plate -[INFO ] Found HARRAY1 definitionPlate_HArray1OfPinpointConstraint: Plate_Array1OfPinpointConstraint +[INFO ] Found HARRAY1 definition Plate_HArray1OfPinpointConstraint: Plate_Array1OfPinpointConstraint [INFO ] Class: Plate_D1 [INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [INFO ] Class: Plate_D2 @@ -2400,7 +2400,7 @@ date : 2024-11-08 14:20:50.686717 [WARNI] const AppParCurves_MultiCurve & wrapped as a copy [WARNI] const AppParCurves_MultiCurve & wrapped as a copy [INFO ] ## Processing module AppDef -[INFO ] Found HARRAY1 definitionAppDef_HArray1OfMultiPointConstraint: AppDef_Array1OfMultiPointConstraint +[INFO ] Found HARRAY1 definition AppDef_HArray1OfMultiPointConstraint: AppDef_Array1OfMultiPointConstraint [INFO ] Class: AppDef_BSpGradient_BFGSOfMyBSplGradientOfBSplineCompute [INFO ] Class: AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute [INFO ] Class: AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute @@ -2473,10 +2473,10 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: AppDef_LinearCriteria [INFO ] Creating Get and Set methods for method EstLength [INFO ] ## Processing module AppParCurves -[INFO ] Found HARRAY1 definitionAppParCurves_HArray1OfMultiPoint: AppParCurves_Array1OfMultiPoint -[INFO ] Found HARRAY1 definitionAppParCurves_HArray1OfMultiBSpCurve: AppParCurves_Array1OfMultiBSpCurve -[INFO ] Found HARRAY1 definitionAppParCurves_HArray1OfMultiCurve: AppParCurves_Array1OfMultiCurve -[INFO ] Found HARRAY1 definitionAppParCurves_HArray1OfConstraintCouple: AppParCurves_Array1OfConstraintCouple +[INFO ] Found HARRAY1 definition AppParCurves_HArray1OfMultiPoint: AppParCurves_Array1OfMultiPoint +[INFO ] Found HARRAY1 definition AppParCurves_HArray1OfMultiBSpCurve: AppParCurves_Array1OfMultiBSpCurve +[INFO ] Found HARRAY1 definition AppParCurves_HArray1OfMultiCurve: AppParCurves_Array1OfMultiCurve +[INFO ] Found HARRAY1 definition AppParCurves_HArray1OfConstraintCouple: AppParCurves_Array1OfConstraintCouple [INFO ] Enum: AppParCurves_Constraint [INFO ] Class: AppParCurves [INFO ] Class: AppParCurves_ConstraintCouple @@ -2490,8 +2490,8 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: AppParCurves_MultiBSpCurve [INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [INFO ] ## Processing module Approx -[INFO ] Found HARRAY1 definitionApprox_HArray1OfAdHSurface: Approx_Array1OfAdHSurface -[INFO ] Found HARRAY1 definitionApprox_HArray1OfGTrsf2d: Approx_Array1OfGTrsf2d +[INFO ] Found HARRAY1 definition Approx_HArray1OfAdHSurface: Approx_Array1OfAdHSurface +[INFO ] Found HARRAY1 definition Approx_HArray1OfGTrsf2d: Approx_Array1OfGTrsf2d [INFO ] Enum: Approx_ParametrizationType [INFO ] Enum: Approx_Status [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ @@ -2532,12 +2532,12 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: CPnts_UniformDeflection [INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [INFO ] ## Processing module Extrema -[INFO ] Found HARRAY2 definitionExtrema_HArray2OfPOnSurf: Extrema_Array2OfPOnSurf -[INFO ] Found HARRAY1 definitionExtrema_HArray1OfPOnCurv: Extrema_Array1OfPOnCurv -[INFO ] Found HARRAY2 definitionExtrema_HArray2OfPOnCurv: Extrema_Array2OfPOnCurv -[INFO ] Found HARRAY2 definitionExtrema_HArray2OfPOnCurv2d: Extrema_Array2OfPOnCurv2d -[INFO ] Found HARRAY1 definitionExtrema_HArray1OfPOnSurf: Extrema_Array1OfPOnSurf -[INFO ] Found HARRAY1 definitionExtrema_HArray1OfPOnCurv2d: Extrema_Array1OfPOnCurv2d +[INFO ] Found HARRAY2 definition Extrema_HArray2OfPOnSurf: Extrema_Array2OfPOnSurf +[INFO ] Found HARRAY1 definition Extrema_HArray1OfPOnCurv: Extrema_Array1OfPOnCurv +[INFO ] Found HARRAY2 definition Extrema_HArray2OfPOnCurv: Extrema_Array2OfPOnCurv +[INFO ] Found HARRAY2 definition Extrema_HArray2OfPOnCurv2d: Extrema_Array2OfPOnCurv2d +[INFO ] Found HARRAY1 definition Extrema_HArray1OfPOnSurf: Extrema_Array1OfPOnSurf +[INFO ] Found HARRAY1 definition Extrema_HArray1OfPOnCurv2d: Extrema_Array1OfPOnCurv2d [INFO ] Enum: Extrema_ElementType [INFO ] Enum: Extrema_ExtAlgo [INFO ] Enum: Extrema_ExtFlag @@ -2662,7 +2662,7 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: Extrema_POnSurfParams [INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [INFO ] ## Processing module FEmTool -[INFO ] Found HARRAY2 definitionFEmTool_HAssemblyTable: FEmTool_AssemblyTable +[INFO ] Found HARRAY2 definition FEmTool_HAssemblyTable: FEmTool_AssemblyTable [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ [INFO ] ## Processing module GC [INFO ] Class: GC_MakeMirror @@ -2874,7 +2874,7 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: IntAna2d_IntPoint [INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [INFO ] ## Processing module ProjLib -[INFO ] Found HSEQUENCE definitionProjLib_HSequenceOfHSequenceOfPnt: ProjLib_SequenceOfHSequenceOfPnt +[INFO ] Found HSEQUENCE definition ProjLib_HSequenceOfHSequenceOfPnt: ProjLib_SequenceOfHSequenceOfPnt [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ [INFO ] Class: ProjLib [INFO ] Class: ProjLib_CompProjectedCurve @@ -2980,7 +2980,7 @@ date : 2024-11-08 14:20:50.686717 [INFO ] operand gp_Pln cannot be wrapped [INFO ] Processing toolkit TKHLR === [INFO ] ## Processing module Contap -[INFO ] Found HSEQUENCE definitionContap_TheHSequenceOfPoint: Contap_TheSequenceOfPoint +[INFO ] Found HSEQUENCE definition Contap_TheHSequenceOfPoint: Contap_TheSequenceOfPoint [INFO ] Enum: Contap_IType [INFO ] Enum: Contap_TFunction [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ @@ -3004,10 +3004,10 @@ date : 2024-11-08 14:20:50.686717 [INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [INFO ] Class: Contap_TheSegmentOfTheSearch [INFO ] ## Processing module HLRAlgo -[INFO ] Found HARRAY1 definitionHLRAlgo_HArray1OfPISeg: HLRAlgo_Array1OfPISeg -[INFO ] Found HARRAY1 definitionHLRAlgo_HArray1OfPINod: HLRAlgo_Array1OfPINod -[INFO ] Found HARRAY1 definitionHLRAlgo_HArray1OfPHDat: HLRAlgo_Array1OfPHDat -[INFO ] Found HARRAY1 definitionHLRAlgo_HArray1OfTData: HLRAlgo_Array1OfTData +[INFO ] Found HARRAY1 definition HLRAlgo_HArray1OfPISeg: HLRAlgo_Array1OfPISeg +[INFO ] Found HARRAY1 definition HLRAlgo_HArray1OfPINod: HLRAlgo_Array1OfPINod +[INFO ] Found HARRAY1 definition HLRAlgo_HArray1OfPHDat: HLRAlgo_Array1OfPHDat +[INFO ] Found HARRAY1 definition HLRAlgo_HArray1OfTData: HLRAlgo_Array1OfTData [INFO ] Enum: HLRAlgo_PolyMask [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ [INFO ] Class: HLRAlgo @@ -3199,7 +3199,7 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: IGESControl_Writer [INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [INFO ] ## Processing module IGESData -[INFO ] Found HARRAY1 definitionIGESData_HArray1OfIGESEntity: IGESData_Array1OfIGESEntity +[INFO ] Found HARRAY1 definition IGESData_HArray1OfIGESEntity: IGESData_Array1OfIGESEntity [INFO ] Enum: IGESData_DefList [INFO ] Enum: IGESData_DefType [INFO ] Enum: IGESData_ReadStage @@ -3353,7 +3353,7 @@ date : 2024-11-08 14:20:50.686717 [INFO ] ## Processing module AppStdL [INFO ] Class: AppStdL_Application [INFO ] ## Processing module TDF -[INFO ] Found HARRAY1 definitionTDF_HAttributeArray1: TDF_AttributeArray1 +[INFO ] Found HARRAY1 definition TDF_HAttributeArray1: TDF_AttributeArray1 [INFO ] Enum: [WARNI] This template type cannot be handled: NCollection_DataMap, opencascade::handle> [WARNI] This template type cannot be handled: NCollection_DataMap, opencascade::handle>::Iterator @@ -3410,7 +3410,7 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: TDF_DefaultDeltaOnModification [INFO ] Class: TDF_DefaultDeltaOnRemoval [INFO ] ## Processing module TDataStd -[INFO ] Found HARRAY1 definitionTDataStd_HLabelArray1: TDataStd_LabelArray1 +[INFO ] Found HARRAY1 definition TDataStd_HLabelArray1: TDataStd_LabelArray1 [INFO ] Enum: TDataStd_RealEnum [WARNI] [TypeHint] Skip type TCollection_ExtendedString,opencascade::handle, because of trailing : [WARNI] [TypeHint] Skip type TCollection_ExtendedString,opencascade::handle, because of trailing : @@ -3488,7 +3488,7 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: TDocStd_XLinkRoot [INFO ] Class: TDocStd_XLinkTool [INFO ] ## Processing module TFunction -[INFO ] Found HARRAY1 definitionTFunction_HArray1OfDataMapOfGUIDDriver: TFunction_Array1OfDataMapOfGUIDDriver +[INFO ] Found HARRAY1 definition TFunction_HArray1OfDataMapOfGUIDDriver: TFunction_Array1OfDataMapOfGUIDDriver [INFO ] Enum: TFunction_ExecutionStatus [WARNI] [TypeHint] Skip type Standard_GUID,opencascade::handle, because of trailing : [WARNI] [TypeHint] Skipping unknown type int,TDF_Label, int,TDF not in module list @@ -3542,9 +3542,9 @@ date : 2024-11-08 14:20:50.686717 [WARNI] [TypeHint] Skipping type T, should contain _ [INFO ] Class: BVH_Tree [INFO ] ## Processing module Bnd -[INFO ] Found HARRAY1 definitionBnd_HArray1OfBox2d: Bnd_Array1OfBox2d -[INFO ] Found HARRAY1 definitionBnd_HArray1OfBox: Bnd_Array1OfBox -[INFO ] Found HARRAY1 definitionBnd_HArray1OfSphere: Bnd_Array1OfSphere +[INFO ] Found HARRAY1 definition Bnd_HArray1OfBox2d: Bnd_Array1OfBox2d +[INFO ] Found HARRAY1 definition Bnd_HArray1OfBox: Bnd_Array1OfBox +[INFO ] Found HARRAY1 definition Bnd_HArray1OfSphere: Bnd_Array1OfSphere [INFO ] Class: Bnd_B2d [INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [INFO ] Class: Bnd_B2f @@ -3707,7 +3707,7 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: PLib_HermitJacobi [INFO ] Class: PLib_JacobiPolynomial [INFO ] ## Processing module Poly -[INFO ] Found HARRAY1 definitionPoly_HArray1OfTriangle: Poly_Array1OfTriangle +[INFO ] Found HARRAY1 definition Poly_HArray1OfTriangle: Poly_Array1OfTriangle [INFO ] Enum: [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ [INFO ] Class: Poly @@ -3762,34 +3762,34 @@ date : 2024-11-08 14:20:50.686717 [INFO ] ## Processing module Precision [INFO ] Class: Precision [INFO ] ## Processing module TColgp -[INFO ] Found HSEQUENCE definitionTColgp_HSequenceOfXYZ: TColgp_SequenceOfXYZ -[INFO ] Found HARRAY2 definitionTColgp_HArray2OfCirc2d: TColgp_Array2OfCirc2d -[INFO ] Found HARRAY2 definitionTColgp_HArray2OfDir: TColgp_Array2OfDir -[INFO ] Found HARRAY2 definitionTColgp_HArray2OfPnt: TColgp_Array2OfPnt -[INFO ] Found HARRAY2 definitionTColgp_HArray2OfLin2d: TColgp_Array2OfLin2d -[INFO ] Found HARRAY1 definitionTColgp_HArray1OfDir2d: TColgp_Array1OfDir2d -[INFO ] Found HARRAY2 definitionTColgp_HArray2OfVec2d: TColgp_Array2OfVec2d -[INFO ] Found HARRAY2 definitionTColgp_HArray2OfPnt2d: TColgp_Array2OfPnt2d -[INFO ] Found HARRAY2 definitionTColgp_HArray2OfVec: TColgp_Array2OfVec -[INFO ] Found HARRAY1 definitionTColgp_HArray1OfVec: TColgp_Array1OfVec -[INFO ] Found HARRAY1 definitionTColgp_HArray1OfCirc2d: TColgp_Array1OfCirc2d -[INFO ] Found HSEQUENCE definitionTColgp_HSequenceOfPnt: TColgp_SequenceOfPnt -[INFO ] Found HSEQUENCE definitionTColgp_HSequenceOfPnt2d: TColgp_SequenceOfPnt2d -[INFO ] Found HARRAY2 definitionTColgp_HArray2OfXYZ: TColgp_Array2OfXYZ -[INFO ] Found HSEQUENCE definitionTColgp_HSequenceOfXY: TColgp_SequenceOfXY -[INFO ] Found HARRAY1 definitionTColgp_HArray1OfXYZ: TColgp_Array1OfXYZ -[INFO ] Found HARRAY1 definitionTColgp_HArray1OfPnt: TColgp_Array1OfPnt -[INFO ] Found HSEQUENCE definitionTColgp_HSequenceOfVec: TColgp_SequenceOfVec -[INFO ] Found HARRAY1 definitionTColgp_HArray1OfLin2d: TColgp_Array1OfLin2d -[INFO ] Found HSEQUENCE definitionTColgp_HSequenceOfVec2d: TColgp_SequenceOfVec2d -[INFO ] Found HARRAY1 definitionTColgp_HArray1OfDir: TColgp_Array1OfDir -[INFO ] Found HARRAY1 definitionTColgp_HArray1OfPnt2d: TColgp_Array1OfPnt2d -[INFO ] Found HARRAY2 definitionTColgp_HArray2OfDir2d: TColgp_Array2OfDir2d -[INFO ] Found HARRAY2 definitionTColgp_HArray2OfXY: TColgp_Array2OfXY -[INFO ] Found HARRAY1 definitionTColgp_HArray1OfVec2d: TColgp_Array1OfVec2d -[INFO ] Found HARRAY1 definitionTColgp_HArray1OfXY: TColgp_Array1OfXY -[INFO ] Found HSEQUENCE definitionTColgp_HSequenceOfDir2d: TColgp_SequenceOfDir2d -[INFO ] Found HSEQUENCE definitionTColgp_HSequenceOfDir: TColgp_SequenceOfDir +[INFO ] Found HSEQUENCE definition TColgp_HSequenceOfXYZ: TColgp_SequenceOfXYZ +[INFO ] Found HARRAY2 definition TColgp_HArray2OfCirc2d: TColgp_Array2OfCirc2d +[INFO ] Found HARRAY2 definition TColgp_HArray2OfDir: TColgp_Array2OfDir +[INFO ] Found HARRAY2 definition TColgp_HArray2OfPnt: TColgp_Array2OfPnt +[INFO ] Found HARRAY2 definition TColgp_HArray2OfLin2d: TColgp_Array2OfLin2d +[INFO ] Found HARRAY1 definition TColgp_HArray1OfDir2d: TColgp_Array1OfDir2d +[INFO ] Found HARRAY2 definition TColgp_HArray2OfVec2d: TColgp_Array2OfVec2d +[INFO ] Found HARRAY2 definition TColgp_HArray2OfPnt2d: TColgp_Array2OfPnt2d +[INFO ] Found HARRAY2 definition TColgp_HArray2OfVec: TColgp_Array2OfVec +[INFO ] Found HARRAY1 definition TColgp_HArray1OfVec: TColgp_Array1OfVec +[INFO ] Found HARRAY1 definition TColgp_HArray1OfCirc2d: TColgp_Array1OfCirc2d +[INFO ] Found HSEQUENCE definition TColgp_HSequenceOfPnt: TColgp_SequenceOfPnt +[INFO ] Found HSEQUENCE definition TColgp_HSequenceOfPnt2d: TColgp_SequenceOfPnt2d +[INFO ] Found HARRAY2 definition TColgp_HArray2OfXYZ: TColgp_Array2OfXYZ +[INFO ] Found HSEQUENCE definition TColgp_HSequenceOfXY: TColgp_SequenceOfXY +[INFO ] Found HARRAY1 definition TColgp_HArray1OfXYZ: TColgp_Array1OfXYZ +[INFO ] Found HARRAY1 definition TColgp_HArray1OfPnt: TColgp_Array1OfPnt +[INFO ] Found HSEQUENCE definition TColgp_HSequenceOfVec: TColgp_SequenceOfVec +[INFO ] Found HARRAY1 definition TColgp_HArray1OfLin2d: TColgp_Array1OfLin2d +[INFO ] Found HSEQUENCE definition TColgp_HSequenceOfVec2d: TColgp_SequenceOfVec2d +[INFO ] Found HARRAY1 definition TColgp_HArray1OfDir: TColgp_Array1OfDir +[INFO ] Found HARRAY1 definition TColgp_HArray1OfPnt2d: TColgp_Array1OfPnt2d +[INFO ] Found HARRAY2 definition TColgp_HArray2OfDir2d: TColgp_Array2OfDir2d +[INFO ] Found HARRAY2 definition TColgp_HArray2OfXY: TColgp_Array2OfXY +[INFO ] Found HARRAY1 definition TColgp_HArray1OfVec2d: TColgp_Array1OfVec2d +[INFO ] Found HARRAY1 definition TColgp_HArray1OfXY: TColgp_Array1OfXY +[INFO ] Found HSEQUENCE definition TColgp_HSequenceOfDir2d: TColgp_SequenceOfDir2d +[INFO ] Found HSEQUENCE definition TColgp_HSequenceOfDir: TColgp_SequenceOfDir [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ [INFO ] ## Processing module TopLoc [INFO ] Class: TopLoc_Datum3D @@ -4309,7 +4309,7 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class IMeshTools_ShapeVisitor is abstract, using %nodefaultctor. [INFO ] Processing toolkit TKMeshVS === [INFO ] ## Processing module MeshVS -[INFO ] Found HARRAY1 definitionMeshVS_HArray1OfSequenceOfInteger: MeshVS_Array1OfSequenceOfInteger +[INFO ] Found HARRAY1 definition MeshVS_HArray1OfSequenceOfInteger: MeshVS_Array1OfSequenceOfInteger [INFO ] Enum: [INFO ] Enum: MeshVS_DrawerAttribute [INFO ] Enum: MeshVS_EntityType @@ -4765,7 +4765,7 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: STEPEdit_EditContext [INFO ] Class: STEPEdit_EditSDR [INFO ] ## Processing module STEPSelections -[INFO ] Found HSEQUENCE definitionSTEPSelections_HSequenceOfAssemblyLink: STEPSelections_SequenceOfAssemblyLink +[INFO ] Found HSEQUENCE definition STEPSelections_HSequenceOfAssemblyLink: STEPSelections_SequenceOfAssemblyLink [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ [INFO ] Class: STEPSelections_AssemblyComponent @@ -4784,16 +4784,16 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: STEPSelections_SelectGSCurves [INFO ] Class: STEPSelections_SelectInstances [INFO ] ## Processing module StepAP203 -[INFO ] Found HARRAY1 definitionStepAP203_HArray1OfClassifiedItem: StepAP203_Array1OfClassifiedItem -[INFO ] Found HARRAY1 definitionStepAP203_HArray1OfWorkItem: StepAP203_Array1OfWorkItem -[INFO ] Found HARRAY1 definitionStepAP203_HArray1OfSpecifiedItem: StepAP203_Array1OfSpecifiedItem -[INFO ] Found HARRAY1 definitionStepAP203_HArray1OfStartRequestItem: StepAP203_Array1OfStartRequestItem -[INFO ] Found HARRAY1 definitionStepAP203_HArray1OfChangeRequestItem: StepAP203_Array1OfChangeRequestItem -[INFO ] Found HARRAY1 definitionStepAP203_HArray1OfPersonOrganizationItem: StepAP203_Array1OfPersonOrganizationItem -[INFO ] Found HARRAY1 definitionStepAP203_HArray1OfDateTimeItem: StepAP203_Array1OfDateTimeItem -[INFO ] Found HARRAY1 definitionStepAP203_HArray1OfApprovedItem: StepAP203_Array1OfApprovedItem -[INFO ] Found HARRAY1 definitionStepAP203_HArray1OfContractedItem: StepAP203_Array1OfContractedItem -[INFO ] Found HARRAY1 definitionStepAP203_HArray1OfCertifiedItem: StepAP203_Array1OfCertifiedItem +[INFO ] Found HARRAY1 definition StepAP203_HArray1OfClassifiedItem: StepAP203_Array1OfClassifiedItem +[INFO ] Found HARRAY1 definition StepAP203_HArray1OfWorkItem: StepAP203_Array1OfWorkItem +[INFO ] Found HARRAY1 definition StepAP203_HArray1OfSpecifiedItem: StepAP203_Array1OfSpecifiedItem +[INFO ] Found HARRAY1 definition StepAP203_HArray1OfStartRequestItem: StepAP203_Array1OfStartRequestItem +[INFO ] Found HARRAY1 definition StepAP203_HArray1OfChangeRequestItem: StepAP203_Array1OfChangeRequestItem +[INFO ] Found HARRAY1 definition StepAP203_HArray1OfPersonOrganizationItem: StepAP203_Array1OfPersonOrganizationItem +[INFO ] Found HARRAY1 definition StepAP203_HArray1OfDateTimeItem: StepAP203_Array1OfDateTimeItem +[INFO ] Found HARRAY1 definition StepAP203_HArray1OfApprovedItem: StepAP203_Array1OfApprovedItem +[INFO ] Found HARRAY1 definition StepAP203_HArray1OfContractedItem: StepAP203_Array1OfContractedItem +[INFO ] Found HARRAY1 definition StepAP203_HArray1OfCertifiedItem: StepAP203_Array1OfCertifiedItem [INFO ] Class: StepAP203_ApprovedItem [INFO ] Class: StepAP203_CcDesignApproval [INFO ] Class: StepAP203_CcDesignCertification @@ -4819,23 +4819,23 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: StepAP209_Construct [INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [INFO ] ## Processing module StepAP214 -[INFO ] Found HARRAY1 definitionStepAP214_HArray1OfSecurityClassificationItem: StepAP214_Array1OfSecurityClassificationItem -[INFO ] Found HARRAY1 definitionStepAP214_HArray1OfPresentedItemSelect: StepAP214_Array1OfPresentedItemSelect -[INFO ] Found HARRAY1 definitionStepAP214_HArray1OfOrganizationItem: StepAP214_Array1OfOrganizationItem -[INFO ] Found HARRAY1 definitionStepAP214_HArray1OfAutoDesignGroupedItem: StepAP214_Array1OfAutoDesignGroupedItem -[INFO ] Found HARRAY1 definitionStepAP214_HArray1OfPersonAndOrganizationItem: StepAP214_Array1OfPersonAndOrganizationItem -[INFO ] Found HARRAY1 definitionStepAP214_HArray1OfDocumentReferenceItem: StepAP214_Array1OfDocumentReferenceItem -[INFO ] Found HARRAY1 definitionStepAP214_HArray1OfAutoDesignPresentedItemSelect: StepAP214_Array1OfAutoDesignPresentedItemSelect -[INFO ] Found HARRAY1 definitionStepAP214_HArray1OfDateAndTimeItem: StepAP214_Array1OfDateAndTimeItem -[INFO ] Found HARRAY1 definitionStepAP214_HArray1OfAutoDesignDatedItem: StepAP214_Array1OfAutoDesignDatedItem -[INFO ] Found HARRAY1 definitionStepAP214_HArray1OfExternalIdentificationItem: StepAP214_Array1OfExternalIdentificationItem -[INFO ] Found HARRAY1 definitionStepAP214_HArray1OfAutoDesignReferencingItem: StepAP214_Array1OfAutoDesignReferencingItem -[INFO ] Found HARRAY1 definitionStepAP214_HArray1OfAutoDesignDateAndTimeItem: StepAP214_Array1OfAutoDesignDateAndTimeItem -[INFO ] Found HARRAY1 definitionStepAP214_HArray1OfGroupItem: StepAP214_Array1OfGroupItem -[INFO ] Found HARRAY1 definitionStepAP214_HArray1OfAutoDesignGeneralOrgItem: StepAP214_Array1OfAutoDesignGeneralOrgItem -[INFO ] Found HARRAY1 definitionStepAP214_HArray1OfDateItem: StepAP214_Array1OfDateItem -[INFO ] Found HARRAY1 definitionStepAP214_HArray1OfApprovalItem: StepAP214_Array1OfApprovalItem -[INFO ] Found HARRAY1 definitionStepAP214_HArray1OfAutoDesignDateAndPersonItem: StepAP214_Array1OfAutoDesignDateAndPersonItem +[INFO ] Found HARRAY1 definition StepAP214_HArray1OfSecurityClassificationItem: StepAP214_Array1OfSecurityClassificationItem +[INFO ] Found HARRAY1 definition StepAP214_HArray1OfPresentedItemSelect: StepAP214_Array1OfPresentedItemSelect +[INFO ] Found HARRAY1 definition StepAP214_HArray1OfOrganizationItem: StepAP214_Array1OfOrganizationItem +[INFO ] Found HARRAY1 definition StepAP214_HArray1OfAutoDesignGroupedItem: StepAP214_Array1OfAutoDesignGroupedItem +[INFO ] Found HARRAY1 definition StepAP214_HArray1OfPersonAndOrganizationItem: StepAP214_Array1OfPersonAndOrganizationItem +[INFO ] Found HARRAY1 definition StepAP214_HArray1OfDocumentReferenceItem: StepAP214_Array1OfDocumentReferenceItem +[INFO ] Found HARRAY1 definition StepAP214_HArray1OfAutoDesignPresentedItemSelect: StepAP214_Array1OfAutoDesignPresentedItemSelect +[INFO ] Found HARRAY1 definition StepAP214_HArray1OfDateAndTimeItem: StepAP214_Array1OfDateAndTimeItem +[INFO ] Found HARRAY1 definition StepAP214_HArray1OfAutoDesignDatedItem: StepAP214_Array1OfAutoDesignDatedItem +[INFO ] Found HARRAY1 definition StepAP214_HArray1OfExternalIdentificationItem: StepAP214_Array1OfExternalIdentificationItem +[INFO ] Found HARRAY1 definition StepAP214_HArray1OfAutoDesignReferencingItem: StepAP214_Array1OfAutoDesignReferencingItem +[INFO ] Found HARRAY1 definition StepAP214_HArray1OfAutoDesignDateAndTimeItem: StepAP214_Array1OfAutoDesignDateAndTimeItem +[INFO ] Found HARRAY1 definition StepAP214_HArray1OfGroupItem: StepAP214_Array1OfGroupItem +[INFO ] Found HARRAY1 definition StepAP214_HArray1OfAutoDesignGeneralOrgItem: StepAP214_Array1OfAutoDesignGeneralOrgItem +[INFO ] Found HARRAY1 definition StepAP214_HArray1OfDateItem: StepAP214_Array1OfDateItem +[INFO ] Found HARRAY1 definition StepAP214_HArray1OfApprovalItem: StepAP214_Array1OfApprovalItem +[INFO ] Found HARRAY1 definition StepAP214_HArray1OfAutoDesignDateAndPersonItem: StepAP214_Array1OfAutoDesignDateAndPersonItem [INFO ] Class: StepAP214 [INFO ] Class: StepAP214_AppliedApprovalAssignment [INFO ] Class: StepAP214_AppliedDateAndTimeAssignment @@ -5039,21 +5039,21 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: RWStepFEA_RWSurface3dElementRepresentation [INFO ] Class: RWStepFEA_RWVolume3dElementRepresentation [INFO ] ## Processing module StepElement -[INFO ] Found HARRAY1 definitionStepElement_HArray1OfHSequenceOfCurveElementPurposeMember: StepElement_Array1OfHSequenceOfCurveElementPurposeMember -[INFO ] Found HARRAY2 definitionStepElement_HArray2OfCurveElementPurposeMember: StepElement_Array2OfCurveElementPurposeMember -[INFO ] Found HARRAY1 definitionStepElement_HArray1OfSurfaceSection: StepElement_Array1OfSurfaceSection -[INFO ] Found HARRAY1 definitionStepElement_HArray1OfVolumeElementPurpose: StepElement_Array1OfVolumeElementPurpose -[INFO ] Found HARRAY2 definitionStepElement_HArray2OfSurfaceElementPurposeMember: StepElement_Array2OfSurfaceElementPurposeMember -[INFO ] Found HARRAY1 definitionStepElement_HArray1OfHSequenceOfSurfaceElementPurposeMember: StepElement_Array1OfHSequenceOfSurfaceElementPurposeMember -[INFO ] Found HARRAY1 definitionStepElement_HArray1OfCurveElementSectionDefinition: StepElement_Array1OfCurveElementSectionDefinition -[INFO ] Found HSEQUENCE definitionStepElement_HSequenceOfElementMaterial: StepElement_SequenceOfElementMaterial -[INFO ] Found HARRAY1 definitionStepElement_HArray1OfMeasureOrUnspecifiedValue: StepElement_Array1OfMeasureOrUnspecifiedValue -[INFO ] Found HARRAY1 definitionStepElement_HArray1OfCurveElementEndReleasePacket: StepElement_Array1OfCurveElementEndReleasePacket -[INFO ] Found HARRAY1 definitionStepElement_HArray1OfVolumeElementPurposeMember: StepElement_Array1OfVolumeElementPurposeMember -[INFO ] Found HSEQUENCE definitionStepElement_HSequenceOfCurveElementPurposeMember: StepElement_SequenceOfCurveElementPurposeMember -[INFO ] Found HSEQUENCE definitionStepElement_HSequenceOfCurveElementSectionDefinition: StepElement_SequenceOfCurveElementSectionDefinition -[INFO ] Found HSEQUENCE definitionStepElement_HSequenceOfSurfaceElementPurposeMember: StepElement_SequenceOfSurfaceElementPurposeMember -[INFO ] Found HARRAY2 definitionStepElement_HArray2OfSurfaceElementPurpose: StepElement_Array2OfSurfaceElementPurpose +[INFO ] Found HARRAY1 definition StepElement_HArray1OfHSequenceOfCurveElementPurposeMember: StepElement_Array1OfHSequenceOfCurveElementPurposeMember +[INFO ] Found HARRAY2 definition StepElement_HArray2OfCurveElementPurposeMember: StepElement_Array2OfCurveElementPurposeMember +[INFO ] Found HARRAY1 definition StepElement_HArray1OfSurfaceSection: StepElement_Array1OfSurfaceSection +[INFO ] Found HARRAY1 definition StepElement_HArray1OfVolumeElementPurpose: StepElement_Array1OfVolumeElementPurpose +[INFO ] Found HARRAY2 definition StepElement_HArray2OfSurfaceElementPurposeMember: StepElement_Array2OfSurfaceElementPurposeMember +[INFO ] Found HARRAY1 definition StepElement_HArray1OfHSequenceOfSurfaceElementPurposeMember: StepElement_Array1OfHSequenceOfSurfaceElementPurposeMember +[INFO ] Found HARRAY1 definition StepElement_HArray1OfCurveElementSectionDefinition: StepElement_Array1OfCurveElementSectionDefinition +[INFO ] Found HSEQUENCE definition StepElement_HSequenceOfElementMaterial: StepElement_SequenceOfElementMaterial +[INFO ] Found HARRAY1 definition StepElement_HArray1OfMeasureOrUnspecifiedValue: StepElement_Array1OfMeasureOrUnspecifiedValue +[INFO ] Found HARRAY1 definition StepElement_HArray1OfCurveElementEndReleasePacket: StepElement_Array1OfCurveElementEndReleasePacket +[INFO ] Found HARRAY1 definition StepElement_HArray1OfVolumeElementPurposeMember: StepElement_Array1OfVolumeElementPurposeMember +[INFO ] Found HSEQUENCE definition StepElement_HSequenceOfCurveElementPurposeMember: StepElement_SequenceOfCurveElementPurposeMember +[INFO ] Found HSEQUENCE definition StepElement_HSequenceOfCurveElementSectionDefinition: StepElement_SequenceOfCurveElementSectionDefinition +[INFO ] Found HSEQUENCE definition StepElement_HSequenceOfSurfaceElementPurposeMember: StepElement_SequenceOfSurfaceElementPurposeMember +[INFO ] Found HARRAY2 definition StepElement_HArray2OfSurfaceElementPurpose: StepElement_Array2OfSurfaceElementPurpose [INFO ] Enum: StepElement_CurveEdge [INFO ] Enum: StepElement_Element2dShape [INFO ] Enum: StepElement_ElementOrder @@ -5102,16 +5102,16 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: StepElement_UniformSurfaceSection [INFO ] Class: StepElement_Volume3dElementDescriptor [INFO ] ## Processing module StepFEA -[INFO ] Found HSEQUENCE definitionStepFEA_HSequenceOfElementRepresentation: StepFEA_SequenceOfElementRepresentation -[INFO ] Found HSEQUENCE definitionStepFEA_HSequenceOfNodeRepresentation: StepFEA_SequenceOfNodeRepresentation -[INFO ] Found HARRAY1 definitionStepFEA_HArray1OfCurveElementEndOffset: StepFEA_Array1OfCurveElementEndOffset -[INFO ] Found HARRAY1 definitionStepFEA_HArray1OfCurveElementEndRelease: StepFEA_Array1OfCurveElementEndRelease -[INFO ] Found HSEQUENCE definitionStepFEA_HSequenceOfCurve3dElementProperty: StepFEA_SequenceOfCurve3dElementProperty -[INFO ] Found HARRAY1 definitionStepFEA_HArray1OfDegreeOfFreedom: StepFEA_Array1OfDegreeOfFreedom -[INFO ] Found HARRAY1 definitionStepFEA_HArray1OfElementRepresentation: StepFEA_Array1OfElementRepresentation -[INFO ] Found HARRAY1 definitionStepFEA_HArray1OfCurveElementInterval: StepFEA_Array1OfCurveElementInterval -[INFO ] Found HARRAY1 definitionStepFEA_HArray1OfNodeRepresentation: StepFEA_Array1OfNodeRepresentation -[INFO ] Found HSEQUENCE definitionStepFEA_HSequenceOfElementGeometricRelationship: StepFEA_SequenceOfElementGeometricRelationship +[INFO ] Found HSEQUENCE definition StepFEA_HSequenceOfElementRepresentation: StepFEA_SequenceOfElementRepresentation +[INFO ] Found HSEQUENCE definition StepFEA_HSequenceOfNodeRepresentation: StepFEA_SequenceOfNodeRepresentation +[INFO ] Found HARRAY1 definition StepFEA_HArray1OfCurveElementEndOffset: StepFEA_Array1OfCurveElementEndOffset +[INFO ] Found HARRAY1 definition StepFEA_HArray1OfCurveElementEndRelease: StepFEA_Array1OfCurveElementEndRelease +[INFO ] Found HSEQUENCE definition StepFEA_HSequenceOfCurve3dElementProperty: StepFEA_SequenceOfCurve3dElementProperty +[INFO ] Found HARRAY1 definition StepFEA_HArray1OfDegreeOfFreedom: StepFEA_Array1OfDegreeOfFreedom +[INFO ] Found HARRAY1 definition StepFEA_HArray1OfElementRepresentation: StepFEA_Array1OfElementRepresentation +[INFO ] Found HARRAY1 definition StepFEA_HArray1OfCurveElementInterval: StepFEA_Array1OfCurveElementInterval +[INFO ] Found HARRAY1 definition StepFEA_HArray1OfNodeRepresentation: StepFEA_Array1OfNodeRepresentation +[INFO ] Found HSEQUENCE definition StepFEA_HSequenceOfElementGeometricRelationship: StepFEA_SequenceOfElementGeometricRelationship [INFO ] Enum: StepFEA_CoordinateSystemType [INFO ] Enum: StepFEA_CurveEdge [INFO ] Enum: StepFEA_ElementVolume @@ -5414,13 +5414,13 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: RWStepVisual_RWTriangulatedSurfaceSet [INFO ] Class: RWStepVisual_RWViewVolume [INFO ] ## Processing module StepDimTol -[INFO ] Found HARRAY1 definitionStepDimTol_HArray1OfGeometricToleranceModifier: StepDimTol_Array1OfGeometricToleranceModifier -[INFO ] Found HARRAY1 definitionStepDimTol_HArray1OfDatumReference: StepDimTol_Array1OfDatumReference -[INFO ] Found HARRAY1 definitionStepDimTol_HArray1OfToleranceZoneTarget: StepDimTol_Array1OfToleranceZoneTarget -[INFO ] Found HARRAY1 definitionStepDimTol_HArray1OfDatumReferenceElement: StepDimTol_Array1OfDatumReferenceElement -[INFO ] Found HARRAY1 definitionStepDimTol_HArray1OfDatumReferenceModifier: StepDimTol_Array1OfDatumReferenceModifier -[INFO ] Found HARRAY1 definitionStepDimTol_HArray1OfDatumSystemOrReference: StepDimTol_Array1OfDatumSystemOrReference -[INFO ] Found HARRAY1 definitionStepDimTol_HArray1OfDatumReferenceCompartment: StepDimTol_Array1OfDatumReferenceCompartment +[INFO ] Found HARRAY1 definition StepDimTol_HArray1OfGeometricToleranceModifier: StepDimTol_Array1OfGeometricToleranceModifier +[INFO ] Found HARRAY1 definition StepDimTol_HArray1OfDatumReference: StepDimTol_Array1OfDatumReference +[INFO ] Found HARRAY1 definition StepDimTol_HArray1OfToleranceZoneTarget: StepDimTol_Array1OfToleranceZoneTarget +[INFO ] Found HARRAY1 definition StepDimTol_HArray1OfDatumReferenceElement: StepDimTol_Array1OfDatumReferenceElement +[INFO ] Found HARRAY1 definition StepDimTol_HArray1OfDatumReferenceModifier: StepDimTol_Array1OfDatumReferenceModifier +[INFO ] Found HARRAY1 definition StepDimTol_HArray1OfDatumSystemOrReference: StepDimTol_Array1OfDatumSystemOrReference +[INFO ] Found HARRAY1 definition StepDimTol_HArray1OfDatumReferenceCompartment: StepDimTol_Array1OfDatumReferenceCompartment [INFO ] Enum: StepDimTol_AreaUnitType [INFO ] Enum: StepDimTol_DatumReferenceModifierType [INFO ] Enum: StepDimTol_GeometricToleranceModifier @@ -5575,24 +5575,24 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: StepKinematics_SurfacePairWithRange [INFO ] Class: StepKinematics_UniversalPairWithRange [INFO ] ## Processing module StepVisual -[INFO ] Found HARRAY1 definitionStepVisual_HArray1OfSurfaceStyleElementSelect: StepVisual_Array1OfSurfaceStyleElementSelect -[INFO ] Found HARRAY1 definitionStepVisual_HArray1OfDraughtingCalloutElement: StepVisual_Array1OfDraughtingCalloutElement -[INFO ] Found HARRAY1 definitionStepVisual_HArray1OfPresentationStyleAssignment: StepVisual_Array1OfPresentationStyleAssignment -[INFO ] Found HARRAY1 definitionStepVisual_HArray1OfDirectionCountSelect: StepVisual_Array1OfDirectionCountSelect -[INFO ] Found HARRAY1 definitionStepVisual_HArray1OfTessellatedEdgeOrVertex: StepVisual_Array1OfTessellatedEdgeOrVertex -[INFO ] Found HARRAY1 definitionStepVisual_HArray1OfBoxCharacteristicSelect: StepVisual_Array1OfBoxCharacteristicSelect -[INFO ] Found HARRAY1 definitionStepVisual_HArray1OfFillStyleSelect: StepVisual_Array1OfFillStyleSelect -[INFO ] Found HARRAY1 definitionStepVisual_HArray1OfTextOrCharacter: StepVisual_Array1OfTextOrCharacter -[INFO ] Found HARRAY1 definitionStepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect: StepVisual_Array1OfCameraModelD3MultiClippingInterectionSelect -[INFO ] Found HARRAY1 definitionStepVisual_HArray1OfStyleContextSelect: StepVisual_Array1OfStyleContextSelect -[INFO ] Found HARRAY1 definitionStepVisual_HArray1OfCameraModelD3MultiClippingUnionSelect: StepVisual_Array1OfCameraModelD3MultiClippingUnionSelect -[INFO ] Found HARRAY1 definitionStepVisual_HArray1OfTessellatedStructuredItem: StepVisual_Array1OfTessellatedStructuredItem -[INFO ] Found HARRAY1 definitionStepVisual_HArray1OfCurveStyleFontPattern: StepVisual_Array1OfCurveStyleFontPattern -[INFO ] Found HARRAY1 definitionStepVisual_HArray1OfAnnotationPlaneElement: StepVisual_Array1OfAnnotationPlaneElement -[INFO ] Found HARRAY1 definitionStepVisual_HArray1OfRenderingPropertiesSelect: StepVisual_Array1OfRenderingPropertiesSelect -[INFO ] Found HARRAY1 definitionStepVisual_HArray1OfPresentationStyleSelect: StepVisual_Array1OfPresentationStyleSelect -[INFO ] Found HARRAY1 definitionStepVisual_HArray1OfInvisibleItem: StepVisual_Array1OfInvisibleItem -[INFO ] Found HARRAY1 definitionStepVisual_HArray1OfLayeredItem: StepVisual_Array1OfLayeredItem +[INFO ] Found HARRAY1 definition StepVisual_HArray1OfSurfaceStyleElementSelect: StepVisual_Array1OfSurfaceStyleElementSelect +[INFO ] Found HARRAY1 definition StepVisual_HArray1OfDraughtingCalloutElement: StepVisual_Array1OfDraughtingCalloutElement +[INFO ] Found HARRAY1 definition StepVisual_HArray1OfPresentationStyleAssignment: StepVisual_Array1OfPresentationStyleAssignment +[INFO ] Found HARRAY1 definition StepVisual_HArray1OfDirectionCountSelect: StepVisual_Array1OfDirectionCountSelect +[INFO ] Found HARRAY1 definition StepVisual_HArray1OfTessellatedEdgeOrVertex: StepVisual_Array1OfTessellatedEdgeOrVertex +[INFO ] Found HARRAY1 definition StepVisual_HArray1OfBoxCharacteristicSelect: StepVisual_Array1OfBoxCharacteristicSelect +[INFO ] Found HARRAY1 definition StepVisual_HArray1OfFillStyleSelect: StepVisual_Array1OfFillStyleSelect +[INFO ] Found HARRAY1 definition StepVisual_HArray1OfTextOrCharacter: StepVisual_Array1OfTextOrCharacter +[INFO ] Found HARRAY1 definition StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect: StepVisual_Array1OfCameraModelD3MultiClippingInterectionSelect +[INFO ] Found HARRAY1 definition StepVisual_HArray1OfStyleContextSelect: StepVisual_Array1OfStyleContextSelect +[INFO ] Found HARRAY1 definition StepVisual_HArray1OfCameraModelD3MultiClippingUnionSelect: StepVisual_Array1OfCameraModelD3MultiClippingUnionSelect +[INFO ] Found HARRAY1 definition StepVisual_HArray1OfTessellatedStructuredItem: StepVisual_Array1OfTessellatedStructuredItem +[INFO ] Found HARRAY1 definition StepVisual_HArray1OfCurveStyleFontPattern: StepVisual_Array1OfCurveStyleFontPattern +[INFO ] Found HARRAY1 definition StepVisual_HArray1OfAnnotationPlaneElement: StepVisual_Array1OfAnnotationPlaneElement +[INFO ] Found HARRAY1 definition StepVisual_HArray1OfRenderingPropertiesSelect: StepVisual_Array1OfRenderingPropertiesSelect +[INFO ] Found HARRAY1 definition StepVisual_HArray1OfPresentationStyleSelect: StepVisual_Array1OfPresentationStyleSelect +[INFO ] Found HARRAY1 definition StepVisual_HArray1OfInvisibleItem: StepVisual_Array1OfInvisibleItem +[INFO ] Found HARRAY1 definition StepVisual_HArray1OfLayeredItem: StepVisual_Array1OfLayeredItem [INFO ] Enum: StepVisual_CentralOrParallel [INFO ] Enum: StepVisual_MarkerType [INFO ] Enum: StepVisual_NullStyle @@ -6113,16 +6113,16 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: RWStepShape_RWVertexLoop [INFO ] Class: RWStepShape_RWVertexPoint [INFO ] ## Processing module StepBasic -[INFO ] Found HARRAY1 definitionStepBasic_HArray1OfUncertaintyMeasureWithUnit: StepBasic_Array1OfUncertaintyMeasureWithUnit -[INFO ] Found HARRAY1 definitionStepBasic_HArray1OfProduct: StepBasic_Array1OfProduct -[INFO ] Found HARRAY1 definitionStepBasic_HArray1OfProductContext: StepBasic_Array1OfProductContext -[INFO ] Found HARRAY1 definitionStepBasic_HArray1OfDerivedUnitElement: StepBasic_Array1OfDerivedUnitElement -[INFO ] Found HARRAY1 definitionStepBasic_HArray1OfPerson: StepBasic_Array1OfPerson -[INFO ] Found HARRAY1 definitionStepBasic_HArray1OfApproval: StepBasic_Array1OfApproval -[INFO ] Found HARRAY1 definitionStepBasic_HArray1OfDocument: StepBasic_Array1OfDocument -[INFO ] Found HARRAY1 definitionStepBasic_HArray1OfNamedUnit: StepBasic_Array1OfNamedUnit -[INFO ] Found HARRAY1 definitionStepBasic_HArray1OfProductDefinition: StepBasic_Array1OfProductDefinition -[INFO ] Found HARRAY1 definitionStepBasic_HArray1OfOrganization: StepBasic_Array1OfOrganization +[INFO ] Found HARRAY1 definition StepBasic_HArray1OfUncertaintyMeasureWithUnit: StepBasic_Array1OfUncertaintyMeasureWithUnit +[INFO ] Found HARRAY1 definition StepBasic_HArray1OfProduct: StepBasic_Array1OfProduct +[INFO ] Found HARRAY1 definition StepBasic_HArray1OfProductContext: StepBasic_Array1OfProductContext +[INFO ] Found HARRAY1 definition StepBasic_HArray1OfDerivedUnitElement: StepBasic_Array1OfDerivedUnitElement +[INFO ] Found HARRAY1 definition StepBasic_HArray1OfPerson: StepBasic_Array1OfPerson +[INFO ] Found HARRAY1 definition StepBasic_HArray1OfApproval: StepBasic_Array1OfApproval +[INFO ] Found HARRAY1 definition StepBasic_HArray1OfDocument: StepBasic_Array1OfDocument +[INFO ] Found HARRAY1 definition StepBasic_HArray1OfNamedUnit: StepBasic_Array1OfNamedUnit +[INFO ] Found HARRAY1 definition StepBasic_HArray1OfProductDefinition: StepBasic_Array1OfProductDefinition +[INFO ] Found HARRAY1 definition StepBasic_HArray1OfOrganization: StepBasic_Array1OfOrganization [INFO ] Enum: StepBasic_AheadOrBehind [INFO ] Enum: StepBasic_SiPrefix [INFO ] Enum: StepBasic_SiUnitName @@ -6280,15 +6280,15 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: StepBasic_SiUnitAndTimeUnit [INFO ] Class: StepBasic_SiUnitAndVolumeUnit [INFO ] ## Processing module StepGeom -[INFO ] Found HARRAY1 definitionStepGeom_HArray1OfSurfaceBoundary: StepGeom_Array1OfSurfaceBoundary -[INFO ] Found HARRAY2 definitionStepGeom_HArray2OfCartesianPoint: StepGeom_Array2OfCartesianPoint -[INFO ] Found HARRAY1 definitionStepGeom_HArray1OfCartesianPoint: StepGeom_Array1OfCartesianPoint -[INFO ] Found HARRAY1 definitionStepGeom_HArray1OfBoundaryCurve: StepGeom_Array1OfBoundaryCurve -[INFO ] Found HARRAY2 definitionStepGeom_HArray2OfSurfacePatch: StepGeom_Array2OfSurfacePatch -[INFO ] Found HARRAY1 definitionStepGeom_HArray1OfPcurveOrSurface: StepGeom_Array1OfPcurveOrSurface -[INFO ] Found HARRAY1 definitionStepGeom_HArray1OfCurve: StepGeom_Array1OfCurve -[INFO ] Found HARRAY1 definitionStepGeom_HArray1OfTrimmingSelect: StepGeom_Array1OfTrimmingSelect -[INFO ] Found HARRAY1 definitionStepGeom_HArray1OfCompositeCurveSegment: StepGeom_Array1OfCompositeCurveSegment +[INFO ] Found HARRAY1 definition StepGeom_HArray1OfSurfaceBoundary: StepGeom_Array1OfSurfaceBoundary +[INFO ] Found HARRAY2 definition StepGeom_HArray2OfCartesianPoint: StepGeom_Array2OfCartesianPoint +[INFO ] Found HARRAY1 definition StepGeom_HArray1OfCartesianPoint: StepGeom_Array1OfCartesianPoint +[INFO ] Found HARRAY1 definition StepGeom_HArray1OfBoundaryCurve: StepGeom_Array1OfBoundaryCurve +[INFO ] Found HARRAY2 definition StepGeom_HArray2OfSurfacePatch: StepGeom_Array2OfSurfacePatch +[INFO ] Found HARRAY1 definition StepGeom_HArray1OfPcurveOrSurface: StepGeom_Array1OfPcurveOrSurface +[INFO ] Found HARRAY1 definition StepGeom_HArray1OfCurve: StepGeom_Array1OfCurve +[INFO ] Found HARRAY1 definition StepGeom_HArray1OfTrimmingSelect: StepGeom_Array1OfTrimmingSelect +[INFO ] Found HARRAY1 definition StepGeom_HArray1OfCompositeCurveSegment: StepGeom_Array1OfCompositeCurveSegment [INFO ] Enum: StepGeom_BSplineCurveForm [INFO ] Enum: StepGeom_BSplineSurfaceForm [INFO ] Enum: StepGeom_KnotType @@ -6391,12 +6391,12 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: StepGeom_BoundaryCurve [INFO ] Class: StepGeom_OuterBoundaryCurve [INFO ] ## Processing module StepRepr -[INFO ] Found HARRAY1 definitionStepRepr_HArray1OfMaterialPropertyRepresentation: StepRepr_Array1OfMaterialPropertyRepresentation -[INFO ] Found HARRAY1 definitionStepRepr_HArray1OfPropertyDefinitionRepresentation: StepRepr_Array1OfPropertyDefinitionRepresentation -[INFO ] Found HARRAY1 definitionStepRepr_HArray1OfRepresentationItem: StepRepr_Array1OfRepresentationItem -[INFO ] Found HSEQUENCE definitionStepRepr_HSequenceOfMaterialPropertyRepresentation: StepRepr_SequenceOfMaterialPropertyRepresentation -[INFO ] Found HARRAY1 definitionStepRepr_HArray1OfShapeAspect: StepRepr_Array1OfShapeAspect -[INFO ] Found HSEQUENCE definitionStepRepr_HSequenceOfRepresentationItem: StepRepr_SequenceOfRepresentationItem +[INFO ] Found HARRAY1 definition StepRepr_HArray1OfMaterialPropertyRepresentation: StepRepr_Array1OfMaterialPropertyRepresentation +[INFO ] Found HARRAY1 definition StepRepr_HArray1OfPropertyDefinitionRepresentation: StepRepr_Array1OfPropertyDefinitionRepresentation +[INFO ] Found HARRAY1 definition StepRepr_HArray1OfRepresentationItem: StepRepr_Array1OfRepresentationItem +[INFO ] Found HSEQUENCE definition StepRepr_HSequenceOfMaterialPropertyRepresentation: StepRepr_SequenceOfMaterialPropertyRepresentation +[INFO ] Found HARRAY1 definition StepRepr_HArray1OfShapeAspect: StepRepr_Array1OfShapeAspect +[INFO ] Found HSEQUENCE definition StepRepr_HSequenceOfRepresentationItem: StepRepr_SequenceOfRepresentationItem [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ @@ -6485,17 +6485,17 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: StepRepr_ReprItemAndPlaneAngleMeasureWithUnitAndQRI [INFO ] Class: StepRepr_ShapeRepresentationRelationshipWithTransformation [INFO ] ## Processing module StepShape -[INFO ] Found HARRAY1 definitionStepShape_HArray1OfShell: StepShape_Array1OfShell -[INFO ] Found HARRAY1 definitionStepShape_HArray1OfFaceBound: StepShape_Array1OfFaceBound -[INFO ] Found HARRAY1 definitionStepShape_HArray1OfFace: StepShape_Array1OfFace -[INFO ] Found HARRAY1 definitionStepShape_HArray1OfShapeDimensionRepresentationItem: StepShape_Array1OfShapeDimensionRepresentationItem -[INFO ] Found HARRAY1 definitionStepShape_HArray1OfConnectedFaceSet: StepShape_Array1OfConnectedFaceSet -[INFO ] Found HARRAY1 definitionStepShape_HArray1OfConnectedEdgeSet: StepShape_Array1OfConnectedEdgeSet -[INFO ] Found HARRAY1 definitionStepShape_HArray1OfEdge: StepShape_Array1OfEdge -[INFO ] Found HARRAY1 definitionStepShape_HArray1OfOrientedClosedShell: StepShape_Array1OfOrientedClosedShell -[INFO ] Found HARRAY1 definitionStepShape_HArray1OfValueQualifier: StepShape_Array1OfValueQualifier -[INFO ] Found HARRAY1 definitionStepShape_HArray1OfOrientedEdge: StepShape_Array1OfOrientedEdge -[INFO ] Found HARRAY1 definitionStepShape_HArray1OfGeometricSetSelect: StepShape_Array1OfGeometricSetSelect +[INFO ] Found HARRAY1 definition StepShape_HArray1OfShell: StepShape_Array1OfShell +[INFO ] Found HARRAY1 definition StepShape_HArray1OfFaceBound: StepShape_Array1OfFaceBound +[INFO ] Found HARRAY1 definition StepShape_HArray1OfFace: StepShape_Array1OfFace +[INFO ] Found HARRAY1 definition StepShape_HArray1OfShapeDimensionRepresentationItem: StepShape_Array1OfShapeDimensionRepresentationItem +[INFO ] Found HARRAY1 definition StepShape_HArray1OfConnectedFaceSet: StepShape_Array1OfConnectedFaceSet +[INFO ] Found HARRAY1 definition StepShape_HArray1OfConnectedEdgeSet: StepShape_Array1OfConnectedEdgeSet +[INFO ] Found HARRAY1 definition StepShape_HArray1OfEdge: StepShape_Array1OfEdge +[INFO ] Found HARRAY1 definition StepShape_HArray1OfOrientedClosedShell: StepShape_Array1OfOrientedClosedShell +[INFO ] Found HARRAY1 definition StepShape_HArray1OfValueQualifier: StepShape_Array1OfValueQualifier +[INFO ] Found HARRAY1 definition StepShape_HArray1OfOrientedEdge: StepShape_Array1OfOrientedEdge +[INFO ] Found HARRAY1 definition StepShape_HArray1OfGeometricSetSelect: StepShape_Array1OfGeometricSetSelect [INFO ] Enum: StepShape_AngleRelator [INFO ] Enum: StepShape_BooleanOperator [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ @@ -7084,7 +7084,7 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: ShapeAlgo [INFO ] Class: ShapeAlgo_ToolContainer [INFO ] ## Processing module ShapeAnalysis -[INFO ] Found HSEQUENCE definitionShapeAnalysis_HSequenceOfFreeBounds: ShapeAnalysis_SequenceOfFreeBounds +[INFO ] Found HSEQUENCE definition ShapeAnalysis_HSequenceOfFreeBounds: ShapeAnalysis_SequenceOfFreeBounds [WARNI] [TypeHint] Skipping unknown type int,Bnd_Box, int,Bnd not in module list [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ [INFO ] Class: ShapeAnalysis @@ -7336,7 +7336,7 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: ShapeUpgrade_SplitCurve3dContinuity [INFO ] Processing toolkit TKTObj === [INFO ] ## Processing module TObj -[INFO ] Found HSEQUENCE definitionTObj_HSequenceOfObject: TObj_SequenceOfObject +[INFO ] Found HSEQUENCE definition TObj_HSequenceOfObject: TObj_SequenceOfObject [INFO ] Enum: TObj_DeletingMode [WARNI] This template type cannot be handled: NCollection_DataMap, opencascade::handle> [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ @@ -8627,7 +8627,7 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: HeaderSection_FileSchema [INFO ] Class: HeaderSection_Protocol [INFO ] ## Processing module IFSelect -[INFO ] Found HSEQUENCE definitionIFSelect_HSeqOfSelection: IFSelect_TSeqOfSelection +[INFO ] Found HSEQUENCE definition IFSelect_HSeqOfSelection: IFSelect_TSeqOfSelection [INFO ] Enum: IFSelect_EditValue [INFO ] Enum: IFSelect_PrintCount [INFO ] Enum: IFSelect_PrintFail @@ -8754,8 +8754,8 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: IFSelect_SelectType [INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [INFO ] ## Processing module Interface -[INFO ] Found HSEQUENCE definitionInterface_HSequenceOfCheck: Interface_SequenceOfCheck -[INFO ] Found HARRAY1 definitionInterface_HArray1OfHAsciiString: Interface_Array1OfHAsciiString +[INFO ] Found HSEQUENCE definition Interface_HSequenceOfCheck: Interface_SequenceOfCheck +[INFO ] Found HARRAY1 definition Interface_HArray1OfHAsciiString: Interface_Array1OfHAsciiString [INFO ] Enum: Interface_CheckStatus [INFO ] Enum: Interface_DataState [INFO ] Enum: Interface_ParamType @@ -8848,7 +8848,7 @@ date : 2024-11-08 14:20:50.686717 [INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [WARNI] [TypeHint] Skipping type NCollection_DataMap( * MoniTool_ValueInterpret ) ( const opencascade::handle& typval, const opencascade::handle& val, const Standard_Boolean native [WARNI] Template ) skipped because name doesn't contain '_'. @@ -8888,7 +8888,7 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: RWHeaderSection_RWFileSchema [INFO ] Class: RWHeaderSection_ReadWriteModule [INFO ] ## Processing module StepData -[INFO ] Found HARRAY1 definitionStepData_HArray1OfField: StepData_Array1OfField +[INFO ] Found HARRAY1 definition StepData_HArray1OfField: StepData_Array1OfField [INFO ] Enum: StepData_Logical [INFO ] Class: StepData [INFO ] Class: StepData_ConfParameters @@ -8960,8 +8960,8 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: StepData_Simple [INFO ] Class: StepData_SelectArrReal [INFO ] ## Processing module Transfer -[INFO ] Found HSEQUENCE definitionTransfer_HSequenceOfBinder: Transfer_SequenceOfBinder -[INFO ] Found HSEQUENCE definitionTransfer_HSequenceOfFinder: Transfer_SequenceOfFinder +[INFO ] Found HSEQUENCE definition Transfer_HSequenceOfBinder: Transfer_SequenceOfBinder +[INFO ] Found HSEQUENCE definition Transfer_HSequenceOfFinder: Transfer_SequenceOfFinder [INFO ] Enum: Transfer_StatusExec [INFO ] Enum: Transfer_StatusResult [INFO ] Enum: Transfer_UndefMode @@ -9013,7 +9013,7 @@ date : 2024-11-08 14:20:50.686717 [INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [INFO ] Class: Transfer_BinderOfTransientInteger [INFO ] ## Processing module TransferBRep -[INFO ] Found HSEQUENCE definitionTransferBRep_HSequenceOfTransferResultInfo: TransferBRep_SequenceOfTransferResultInfo +[INFO ] Found HSEQUENCE definition TransferBRep_HSequenceOfTransferResultInfo: TransferBRep_SequenceOfTransferResultInfo [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ [INFO ] Class: TransferBRep [INFO ] explicitly excluded method TransferBRep::ac74a29e16eb22df08dfa425a4da450d @@ -9267,9 +9267,9 @@ date : 2024-11-08 14:20:50.686717 [WARNI] [TypeHint] Skipping type const std::stringstream &, should contain _ [INFO ] Class: Message_ProgressSentry [INFO ] ## Processing module NCollection -[INFO ] Found HSEQUENCE definitionHClassName: _SequenceType_ -[INFO ] Found HARRAY1 definitionHClassName: _Array1Type_ -[INFO ] Found HARRAY2 definitionHClassName: _Array2Type_ +[INFO ] Found HSEQUENCE definition HClassName: _SequenceType_ +[INFO ] Found HARRAY1 definition HClassName: _Array1Type_ +[INFO ] Found HARRAY2 definition HClassName: _Array2Type_ [INFO ] Enum: NCollection_CellFilter_Action [WARNI] Template ) skipped because name doesn't contain '_'. [INFO ] ## Processing module OSD @@ -9289,7 +9289,7 @@ date : 2024-11-08 14:20:50.686717 [WARNI] [TypeHint] Skipping type ::std::filebuf &, should contain _ [INFO ] ## Processing module Plugin [INFO ] ## Processing module Quantity -[INFO ] Found HARRAY1 definitionQuantity_HArray1OfColor: Quantity_Array1OfColor +[INFO ] Found HARRAY1 definition Quantity_HArray1OfColor: Quantity_Array1OfColor [INFO ] Enum: Quantity_NameOfColor [INFO ] Enum: Quantity_TypeOfColor [INFO ] Class: Quantity_Color @@ -9396,10 +9396,10 @@ date : 2024-11-08 14:20:50.686717 [INFO ] operand new cannot be wrapped [INFO ] ## Processing module StdFail [INFO ] ## Processing module Storage -[INFO ] Found HARRAY1 definitionStorage_HArrayOfSchema: Storage_ArrayOfSchema -[INFO ] Found HARRAY1 definitionStorage_HPArray: Storage_PArray -[INFO ] Found HARRAY1 definitionStorage_HArrayOfCallBack: Storage_ArrayOfCallBack -[INFO ] Found HSEQUENCE definitionStorage_HSeqOfRoot: Storage_SeqOfRoot +[INFO ] Found HARRAY1 definition Storage_HArrayOfSchema: Storage_ArrayOfSchema +[INFO ] Found HARRAY1 definition Storage_HPArray: Storage_PArray +[INFO ] Found HARRAY1 definition Storage_HArrayOfCallBack: Storage_ArrayOfCallBack +[INFO ] Found HSEQUENCE definition Storage_HSeqOfRoot: Storage_SeqOfRoot [INFO ] Enum: Storage_Error [INFO ] Enum: Storage_OpenMode [INFO ] Enum: Storage_SolveMode @@ -9409,27 +9409,27 @@ date : 2024-11-08 14:20:50.686717 [WARNI] [TypeHint] Skip type TCollection_AsciiString,opencascade::handle, because of trailing : [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ [INFO ] ## Processing module TColStd -[INFO ] Found HARRAY1 definitionTColStd_HArray1OfAsciiString: TColStd_Array1OfAsciiString -[INFO ] Found HARRAY2 definitionTColStd_HArray2OfInteger: TColStd_Array2OfInteger -[INFO ] Found HARRAY1 definitionTColStd_HArray1OfByte: TColStd_Array1OfByte -[INFO ] Found HARRAY1 definitionTColStd_HArray1OfInteger: TColStd_Array1OfInteger -[INFO ] Found HARRAY1 definitionTColStd_HArray1OfBoolean: TColStd_Array1OfBoolean -[INFO ] Found HSEQUENCE definitionTColStd_HSequenceOfInteger: TColStd_SequenceOfInteger -[INFO ] Found HSEQUENCE definitionTColStd_HSequenceOfExtendedString: TColStd_SequenceOfExtendedString -[INFO ] Found HSEQUENCE definitionTColStd_HSequenceOfTransient: TColStd_SequenceOfTransient -[INFO ] Found HARRAY2 definitionTColStd_HArray2OfTransient: TColStd_Array2OfTransient -[INFO ] Found HARRAY1 definitionTColStd_HArray1OfListOfInteger: TColStd_Array1OfListOfInteger -[INFO ] Found HARRAY2 definitionTColStd_HArray2OfBoolean: TColStd_Array2OfBoolean -[INFO ] Found HARRAY1 definitionTColStd_HArray1OfTransient: TColStd_Array1OfTransient -[INFO ] Found HARRAY2 definitionTColStd_HArray2OfReal: TColStd_Array2OfReal -[INFO ] Found HARRAY1 definitionTColStd_HArray1OfCharacter: TColStd_Array1OfCharacter -[INFO ] Found HARRAY1 definitionTColStd_HArray1OfExtendedString: TColStd_Array1OfExtendedString -[INFO ] Found HSEQUENCE definitionTColStd_HSequenceOfHAsciiString: TColStd_SequenceOfHAsciiString -[INFO ] Found HSEQUENCE definitionTColStd_HSequenceOfHExtendedString: TColStd_SequenceOfHExtendedString -[INFO ] Found HARRAY2 definitionTColStd_HArray2OfCharacter: TColStd_Array2OfCharacter -[INFO ] Found HSEQUENCE definitionTColStd_HSequenceOfReal: TColStd_SequenceOfReal -[INFO ] Found HSEQUENCE definitionTColStd_HSequenceOfAsciiString: TColStd_SequenceOfAsciiString -[INFO ] Found HARRAY1 definitionTColStd_HArray1OfReal: TColStd_Array1OfReal +[INFO ] Found HARRAY1 definition TColStd_HArray1OfAsciiString: TColStd_Array1OfAsciiString +[INFO ] Found HARRAY2 definition TColStd_HArray2OfInteger: TColStd_Array2OfInteger +[INFO ] Found HARRAY1 definition TColStd_HArray1OfByte: TColStd_Array1OfByte +[INFO ] Found HARRAY1 definition TColStd_HArray1OfInteger: TColStd_Array1OfInteger +[INFO ] Found HARRAY1 definition TColStd_HArray1OfBoolean: TColStd_Array1OfBoolean +[INFO ] Found HSEQUENCE definition TColStd_HSequenceOfInteger: TColStd_SequenceOfInteger +[INFO ] Found HSEQUENCE definition TColStd_HSequenceOfExtendedString: TColStd_SequenceOfExtendedString +[INFO ] Found HSEQUENCE definition TColStd_HSequenceOfTransient: TColStd_SequenceOfTransient +[INFO ] Found HARRAY2 definition TColStd_HArray2OfTransient: TColStd_Array2OfTransient +[INFO ] Found HARRAY1 definition TColStd_HArray1OfListOfInteger: TColStd_Array1OfListOfInteger +[INFO ] Found HARRAY2 definition TColStd_HArray2OfBoolean: TColStd_Array2OfBoolean +[INFO ] Found HARRAY1 definition TColStd_HArray1OfTransient: TColStd_Array1OfTransient +[INFO ] Found HARRAY2 definition TColStd_HArray2OfReal: TColStd_Array2OfReal +[INFO ] Found HARRAY1 definition TColStd_HArray1OfCharacter: TColStd_Array1OfCharacter +[INFO ] Found HARRAY1 definition TColStd_HArray1OfExtendedString: TColStd_Array1OfExtendedString +[INFO ] Found HSEQUENCE definition TColStd_HSequenceOfHAsciiString: TColStd_SequenceOfHAsciiString +[INFO ] Found HSEQUENCE definition TColStd_HSequenceOfHExtendedString: TColStd_SequenceOfHExtendedString +[INFO ] Found HARRAY2 definition TColStd_HArray2OfCharacter: TColStd_Array2OfCharacter +[INFO ] Found HSEQUENCE definition TColStd_HSequenceOfReal: TColStd_SequenceOfReal +[INFO ] Found HSEQUENCE definition TColStd_HSequenceOfAsciiString: TColStd_SequenceOfAsciiString +[INFO ] Found HARRAY1 definition TColStd_HArray1OfReal: TColStd_Array1OfReal [WARNI] This template type cannot be handled: NCollection_IndexedDataMap, opencascade::handle> [WARNI] This template type cannot be handled: NCollection_DataMap, opencascade::handle> [WARNI] This template type cannot be handled: NCollection_DataMap, opencascade::handle>::Iterator @@ -9503,13 +9503,13 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: TCollection_HExtendedString [INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [INFO ] ## Processing module TShort -[INFO ] Found HSEQUENCE definitionTShort_HSequenceOfShortReal: TShort_SequenceOfShortReal -[INFO ] Found HARRAY1 definitionTShort_HArray1OfShortReal: TShort_Array1OfShortReal -[INFO ] Found HARRAY2 definitionTShort_HArray2OfShortReal: TShort_Array2OfShortReal +[INFO ] Found HSEQUENCE definition TShort_HSequenceOfShortReal: TShort_SequenceOfShortReal +[INFO ] Found HARRAY1 definition TShort_HArray1OfShortReal: TShort_Array1OfShortReal +[INFO ] Found HARRAY2 definition TShort_HArray2OfShortReal: TShort_Array2OfShortReal [INFO ] ## Processing module Units -[INFO ] Found HSEQUENCE definitionUnits_QuantitiesSequence: Units_QtsSequence -[INFO ] Found HSEQUENCE definitionUnits_TokensSequence: Units_TksSequence -[INFO ] Found HSEQUENCE definitionUnits_UnitsSequence: Units_UtsSequence +[INFO ] Found HSEQUENCE definition Units_QuantitiesSequence: Units_QtsSequence +[INFO ] Found HSEQUENCE definition Units_TokensSequence: Units_TksSequence +[INFO ] Found HSEQUENCE definition Units_UnitsSequence: Units_UtsSequence [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ [WARNI] [TypeHint] Skipping type opencascade::handle, should contain _ @@ -9554,7 +9554,7 @@ date : 2024-11-08 14:20:50.686717 [INFO ] Class: UnitsMethods [INFO ] ################################################# -SWIG interface file generation completed in 17.97s +SWIG interface file generation completed in 18.22s ################################################# [INFO ] Number of classes: 4743 diff --git a/src/SWIG_files/wrapper/gp.i b/src/SWIG_files/wrapper/gp.i index 1a90cad78..06c8ba355 100644 --- a/src/SWIG_files/wrapper/gp.i +++ b/src/SWIG_files/wrapper/gp.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_gp.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ diff --git a/src/SWIG_files/wrapper/math.i b/src/SWIG_files/wrapper/math.i index 04f9f47f5..83152df85 100644 --- a/src/SWIG_files/wrapper/math.i +++ b/src/SWIG_files/wrapper/math.i @@ -35,6 +35,7 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_math.html" %include ../common/Operators.i %include ../common/OccHandle.i %include ../common/IOStream.i +%include ../common/ArrayMacros.i %{ @@ -101,40 +102,8 @@ math_NotBracketed = math_Status.math_NotBracketed /* templates */ %template(math_Array1OfValueAndWeight) NCollection_Array1; +Array1ExtendIter(math_ValueAndWeight) -%extend NCollection_Array1 { - %pythoncode { - def __getitem__(self, index): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - return self.Value(index + self.Lower()) - - def __setitem__(self, index, value): - if index + self.Lower() > self.Upper(): - raise IndexError("index out of range") - else: - self.SetValue(index + self.Lower(), value) - - def __len__(self): - return self.Length() - - def __iter__(self): - self.low = self.Lower() - self.up = self.Upper() - self.current = self.Lower() - 1 - return self - - def next(self): - if self.current >= self.Upper(): - raise StopIteration - else: - self.current += 1 - return self.Value(self.current) - - __next__ = next - } -}; /* end templates declaration */ /* typedefs */ From d7eb78e88c4930d741582a6e02e664d931041cc5 Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Sun, 10 Nov 2024 18:14:21 +0100 Subject: [PATCH 016/157] Minor fixes to DataExchange --- src/Extend/DataExchange.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/Extend/DataExchange.py b/src/Extend/DataExchange.py index baa101365..fdb8c7d82 100644 --- a/src/Extend/DataExchange.py +++ b/src/Extend/DataExchange.py @@ -18,7 +18,6 @@ import os from OCC.Core.TopoDS import TopoDS_Shape -from OCC.Core.TopAbs import TopAbs_SOLID, TopAbs_SHELL, TopAbs_COMPOUND from OCC.Core.BRepTools import breptools from OCC.Core.BRepMesh import BRepMesh_IncrementalMesh from OCC.Core.StlAPI import stlapi, StlAPI_Writer @@ -54,7 +53,7 @@ from OCC.Core.Message import Message_ProgressRange from OCC.Core.RWGltf import RWGltf_CafReader, RWGltf_CafWriter -from OCC.Core.RWObj import RWObj_CafWriter, RWObj_CafReader +from OCC.Core.RWObj import RWObj_CafWriter from OCC.Core.RWMesh import ( RWMesh_CoordinateSystem_posYfwd_posZup, RWMesh_CoordinateSystem_negZfwd_posYup, @@ -743,7 +742,7 @@ def read_gltf_file( status = gltf_reader.Perform(filename, Message_ProgressRange()) if status != IFSelect_RetDone: - raise IOError("Error while writing shape to STEP file.") + raise IOError("Error while reading GLTF file.") labels = TDF_LabelSequence() shape_tool.GetFreeShapes(labels) @@ -778,4 +777,4 @@ def write_gltf_file(a_shape, gltf_filename): status = rwgltf_writer.Perform(doc, a_file_info, Message_ProgressRange()) if status != IFSelect_RetDone: - raise IOError("Error while writing shape to STEP file.") + raise IOError("Error while writing shape to GLTF file.") From 5b74d6cfeea629ff701764a17ebaf007a8f55262 Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Sun, 10 Nov 2024 18:16:35 +0100 Subject: [PATCH 017/157] Minor fix to TopologyUtils --- src/Extend/TopologyUtils.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Extend/TopologyUtils.py b/src/Extend/TopologyUtils.py index 47659fda9..1958f7a6b 100644 --- a/src/Extend/TopologyUtils.py +++ b/src/Extend/TopologyUtils.py @@ -640,13 +640,12 @@ def get_type_as_string(topods_shape: TopoDS_Shape) -> str: """just get the type string, remove TopAbs_ and lowercas all ending letters""" types = { TopAbs_VERTEX: "Vertex", - TopAbs_COMPSOLID: "CompSolid", - TopAbs_FACE: "Face", TopAbs_WIRE: "Wire", TopAbs_EDGE: "Edge", + TopAbs_FACE: "Face", + TopAbs_SOLID: "Solid", TopAbs_COMPOUND: "Compound", TopAbs_COMPSOLID: "CompSolid", - TopAbs_SOLID: "Solid", } return types[topods_shape.ShapeType()] From 86648628a94da8fb5b614386b3028ac061835fe6 Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Sun, 10 Nov 2024 18:36:30 +0100 Subject: [PATCH 018/157] Clean up pytests --- test/test_core_extend_dataexchange.py | 7 +++- test/test_core_extend_shapefactory.py | 1 - test/test_core_extend_topology.py | 2 -- test/test_core_geometry.py | 7 +--- test/test_core_meshdatasource.py | 1 - test/test_core_ocaf.py | 9 ++--- test/test_core_tesselator.py | 5 --- test/test_core_webgl.py | 1 - test/test_core_wrapper_features.py | 50 +++++++++++++-------------- 9 files changed, 34 insertions(+), 49 deletions(-) diff --git a/test/test_core_extend_dataexchange.py b/test/test_core_extend_dataexchange.py index cfb00637c..3407fee6f 100644 --- a/test/test_core_extend_dataexchange.py +++ b/test/test_core_extend_dataexchange.py @@ -74,6 +74,7 @@ def test_read_step_file_multiple_shape_as_root(): assert isinstance(t, TopoDS_Compound) l = read_step_file(STEP_MULTIPLE_ROOT, as_compound=False) + assert isinstance(l, list) assert len(l) == 3 @@ -83,7 +84,9 @@ def test_read_step_file_names_colors(): def test_read_iges_file(): - read_iges_file(IGES_SAMPLE_FILE) + list_of_shapes = read_iges_file(IGES_SAMPLE_FILE) + assert isinstance(list_of_shapes, list) + assert len(list_of_shapes) == 1 def test_read_iges_45_shapes(): @@ -112,10 +115,12 @@ def test_export_shape_to_svg(): def test_read_gltf_ascii_file(): shp = read_gltf_file(GLTF_ASCII_SAMPLE_FILE) + assert not shp.IsNull() def test_read_gltf_binary_file(): shp = read_gltf_file(GLTF_BINARY_SAMPLE_FILE) + assert not shp.IsNull() def test_write_step_ap203(): diff --git a/test/test_core_extend_shapefactory.py b/test/test_core_extend_shapefactory.py index 7b41d2470..3d015f72c 100644 --- a/test/test_core_extend_shapefactory.py +++ b/test/test_core_extend_shapefactory.py @@ -18,7 +18,6 @@ ##along with pythonOCC. If not, see . import math -import unittest from OCC.Core.BRepPrimAPI import ( BRepPrimAPI_MakeBox, diff --git a/test/test_core_extend_topology.py b/test/test_core_extend_topology.py index 3d9adda82..b81c5a9e5 100644 --- a/test/test_core_extend_topology.py +++ b/test/test_core_extend_topology.py @@ -17,8 +17,6 @@ ##You should have received a copy of the GNU Lesser General Public License ##along with pythonOCC. If not, see . -import unittest - from OCC.Core.BRepPrimAPI import ( BRepPrimAPI_MakeTorus, BRepPrimAPI_MakeBox, diff --git a/test/test_core_geometry.py b/test/test_core_geometry.py index 99659e0ff..ee7374b0b 100644 --- a/test/test_core_geometry.py +++ b/test/test_core_geometry.py @@ -17,8 +17,6 @@ ##You should have received a copy of the GNU Lesser General Public License ##along with pythonOCC. If not, see . -import unittest - from OCC.Core.gp import ( gp, gp_Pnt, @@ -45,8 +43,6 @@ Geom_Circle, Geom_SphericalSurface, Geom_OffsetSurface, - Geom_BezierSurface, - Geom_BSplineSurface, Geom_SurfaceOfRevolution, Geom_RectangularTrimmedSurface, Geom_BSplineCurve, @@ -67,7 +63,6 @@ from OCC.Core.GccEnt import gccent from OCC.Core.gce import gce_MakeCirc2d from OCC.Core.GccAna import GccAna_Lin2d2Tan, GccAna_Circ2d2TanRad -from OCC.Core.GeomConvert import GeomConvert_CompBezierSurfacesToBSplineSurface from OCC.Core.BRepBuilderAPI import ( BRepBuilderAPI_MakeVertex, @@ -194,7 +189,7 @@ def test_project_point_on_curve(): # in any case, it should be > 1 assert distance > 1.0 - pstring = f"N : at Distance : {repr(PPC.LowerDistance())}" + assert PPC.LowerDistance() > 0.0 for i in range(1, nb_results + 1): Q = PPC.Point(i) diff --git a/test/test_core_meshdatasource.py b/test/test_core_meshdatasource.py index 7785a190f..7ea2cb2c5 100644 --- a/test/test_core_meshdatasource.py +++ b/test/test_core_meshdatasource.py @@ -17,7 +17,6 @@ from math import sqrt import os -import unittest from OCC.Core.gp import gp_Pnt, gp_Vec from OCC.Core.MeshDS import MeshDS_DataSource diff --git a/test/test_core_ocaf.py b/test/test_core_ocaf.py index 725ea8f7f..b0eb75bd6 100644 --- a/test/test_core_ocaf.py +++ b/test/test_core_ocaf.py @@ -20,16 +20,10 @@ from contextlib import contextmanager import os from typing import Any, Iterator -import unittest import warnings -from OCC.Core.TCollection import TCollection_ExtendedString from OCC.Core.TDocStd import TDocStd_Document -from OCC.Core.XCAFDoc import ( - XCAFDoc_DocumentTool, - XCAFDoc_ColorGen, - XCAFDoc_Material, -) +from OCC.Core.XCAFDoc import XCAFDoc_DocumentTool, XCAFDoc_ColorGen from OCC.Core.STEPCAFControl import STEPCAFControl_Reader, STEPCAFControl_Writer from OCC.Core.IFSelect import IFSelect_RetDone from OCC.Core.Quantity import Quantity_Color, Quantity_TypeOfColor @@ -185,6 +179,7 @@ def test_read_step_material() -> None: for i in range(1, number_of_shapes + 1): label = shape_labels.Value(i) a_shape = shape_tool.GetShape(label) + assert not a_shape.IsNull() # materials number_of_materials = material_labels.Length() diff --git a/test/test_core_tesselator.py b/test/test_core_tesselator.py index d7bbd8723..9914fbe32 100644 --- a/test/test_core_tesselator.py +++ b/test/test_core_tesselator.py @@ -15,13 +15,8 @@ ##You should have received a copy of the GNU Lesser General Public License ##along with pythonOCC. If not, see . -""" This module provides unittests for the visualization wrapper -Usage : -$ python core_visualization_unittest.python """ - import json import os -import unittest from xml.etree import ElementTree as ET from OCC.Core.BRepPrimAPI import ( diff --git a/test/test_core_webgl.py b/test/test_core_webgl.py index e1f996a4d..58a2f499c 100644 --- a/test/test_core_webgl.py +++ b/test/test_core_webgl.py @@ -17,7 +17,6 @@ ##You should have received a copy of the GNU Lesser General Public License ##along with pythonOCC. If not, see . -import unittest import random from OCC.Core.BRepPrimAPI import BRepPrimAPI_MakeTorus, BRepPrimAPI_MakeBox diff --git a/test/test_core_wrapper_features.py b/test/test_core_wrapper_features.py index 741f6c95e..27223332e 100644 --- a/test/test_core_wrapper_features.py +++ b/test/test_core_wrapper_features.py @@ -187,26 +187,26 @@ def test_list() -> None: P1 = gp_Pnt(1, 2, 3) P2 = gp_Pnt(2, 3, 4) P3 = gp_Pnt(5, 7, 8) - l = [P1, P2] - assert P1 in l - assert P3 not in l - assert l.index(P1) == 0 - assert l.index(P2) == 1 + list_of_points = [P1, P2] + assert P1 in list_of_points + assert P3 not in list_of_points + assert list_of_points.index(P1) == 0 + assert list_of_points.index(P2) == 1 # Do the same for Vertices (TopoDS_Shape has # a HashCode() method overloaded V1 = BRepBuilderAPI_MakeVertex(P1).Vertex() V2 = BRepBuilderAPI_MakeVertex(P2).Vertex() V3 = BRepBuilderAPI_MakeVertex(P3).Vertex() - vl = [V1, V2] - assert V1 in vl - assert V3 not in vl + list_of_vertices = [V1, V2] + assert V1 in list_of_vertices + assert V3 not in list_of_vertices # index test() - assert vl.index(V1) == 0 - assert vl.index(V2) == 1 + assert list_of_vertices.index(V1) == 0 + assert list_of_vertices.index(V2) == 1 # reverse() test - vl.reverse() - assert vl.index(V1) == 1 - assert vl.index(V2) == 0 + list_of_vertices.reverse() + assert list_of_vertices.index(V1) == 1 + assert list_of_vertices.index(V2) == 0 def test_dict() -> None: @@ -849,8 +849,8 @@ def test_ImportFromJson() -> None: def test_json_pickle() -> None: - p1 = gp_Pnt(-1.0, 0.414, 7.88) - dmp = pickle.dumps(p1) + point = gp_Pnt(-1.0, 0.414, 7.88) + dmp = pickle.dumps(point) res = pickle.loads(dmp) assert res.X() == -1.0 assert res.Y() == 0.414 @@ -868,22 +868,22 @@ def test_harray1_harray2_hsequence() -> None: def test_NCollection_List() -> None: """Check that python proxy for NCollection_List is ok""" - l = TopTools_ListOfShape() + list_of_shapes = TopTools_ListOfShape() shp1 = BRepPrimAPI_MakeBox(10, 20, 30).Shape() shp2 = BRepPrimAPI_MakeBox(20, 30, 40).Shape() - l.Append(shp1) - l.Append(shp2) - assert l.Size() == 2 - assert len(l) == 2 - l.RemoveFirst() - assert len(l) == 1 + list_of_shapes.Append(shp1) + list_of_shapes.Append(shp2) + assert list_of_shapes.Size() == 2 + assert len(list_of_shapes) == 2 + list_of_shapes.RemoveFirst() + assert len(list_of_shapes) == 1 def test_NCollection_Sequence() -> None: """Check that python proxy for NCollection_Sequence is ok""" - l = TDF_LabelSequence() - assert l.Size() == 0 - assert len(l) == 0 + tdf_label_sequence = TDF_LabelSequence() + assert tdf_label_sequence.Size() == 0 + assert len(tdf_label_sequence) == 0 def test_NCollection_Datamap_extension() -> None: From d0d9d909df27b0726efcf11406aeebe39f1564ff Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Mon, 11 Nov 2024 06:55:59 +0100 Subject: [PATCH 019/157] Fix gltf read test --- test/test_core_extend_dataexchange.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test/test_core_extend_dataexchange.py b/test/test_core_extend_dataexchange.py index 3407fee6f..ac96d0aab 100644 --- a/test/test_core_extend_dataexchange.py +++ b/test/test_core_extend_dataexchange.py @@ -114,13 +114,11 @@ def test_export_shape_to_svg(): def test_read_gltf_ascii_file(): - shp = read_gltf_file(GLTF_ASCII_SAMPLE_FILE) - assert not shp.IsNull() + read_gltf_file(GLTF_ASCII_SAMPLE_FILE) def test_read_gltf_binary_file(): - shp = read_gltf_file(GLTF_BINARY_SAMPLE_FILE) - assert not shp.IsNull() + read_gltf_file(GLTF_BINARY_SAMPLE_FILE) def test_write_step_ap203(): From 047dbb8d3347ae585f85147d28f36c4567fa2782 Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Tue, 12 Nov 2024 06:30:05 +0100 Subject: [PATCH 020/157] Add dll paths for Windows users see #1347 --- src/PkgBase/__init__.py | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/src/PkgBase/__init__.py b/src/PkgBase/__init__.py index 31012c1cd..6b723fb2b 100644 --- a/src/PkgBase/__init__.py +++ b/src/PkgBase/__init__.py @@ -1,8 +1,38 @@ +import os +from pathlib import Path +import platform + +# Version number PYTHONOCC_VERSION_MAJOR = 7 PYTHONOCC_VERSION_MINOR = 8 PYTHONOCC_VERSION_PATCH = 1 -# Empty for official releases, set to -dev, -rc1, etc for development releases +# Empty for official releases, set to -dev, -rc1, etc for development releases PYTHONOCC_VERSION_DEVEL = "" VERSION = f"{PYTHONOCC_VERSION_MAJOR}.{PYTHONOCC_VERSION_MINOR}.{PYTHONOCC_VERSION_PATCH}{PYTHONOCC_VERSION_DEVEL}" + + +def initialize_occt_libraries(occt_essentials_path) -> None: + """ + Initializes the OCCT libraries by adding all DLL directories to the DLL search path. + + Raises: + AssertionError: If the OCCT_ESSENTIALS_PATH environment variable is not set. + """ + if not os.path.exists(occt_essentials_path): + raise AssertionError( + f"OCCT_ESSENTIALS_PATH({occt_essentials_path}) is not set correctly." + ) + + for root, dirs, files in os.walk(occt_essentials_path): + if "debug" in root.lower(): + continue + for file in files: + if Path(file).suffix.lower() == ".dll": + os.add_dll_directory(root) + + +# on windows, see #1347 +if platform.system() == "windows" and "OCCT_ESSENTIALS_PATH" in os.environ: + initialize_occt_libraries(occt_essentials_path=os.environ["OCCT_ESSENTIALS_PATH"]) From 7a7f2d9c80a6070e5b94964c41eb2347dfc5af49 Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Tue, 12 Nov 2024 06:30:27 +0100 Subject: [PATCH 021/157] Update INSTALL.md for Windows --- INSTALL.md | 344 ++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 275 insertions(+), 69 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 977dcc57b..c091eda93 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -1,127 +1,333 @@ -Build pythonocc-7.8.1 from scratch on a fresh Ubuntu 22.04 install ------------------------------------------------------------------- +# Building pythonOCC 7.8.1 - Complete Guide for Linux and Windows -Requirements ------------- +## Table of Contents +- [Linux Build Guide](#linux-build-guide) + - [Prerequisites (Linux)](#prerequisites-linux) + - [System Requirements (Linux)](#system-requirements-linux) + - [Build Process (Linux)](#build-process-linux) + - [1. Installing System Dependencies](#1-installing-system-dependencies-linux) + - [2. Building SWIG](#2-building-swig-linux) + - [3. Building OpenCascade](#3-building-opencascade-linux) + - [4. Building pythonOCC](#4-building-pythonocc-linux) + - [Optional Features (Linux)](#optional-features-linux) +- [Windows Build Guide](#windows-build-guide) + - [Prerequisites (Windows)](#prerequisites-windows) + - [System Requirements (Windows)](#system-requirements-windows) + - [Build Process (Windows)](#build-process-windows) + - [1. Installing Required Software](#1-installing-required-software-windows) + - [2. Installing OpenCascade](#2-installing-opencascade-windows) + - [3. Building pythonOCC](#3-building-pythonocc-windows) + - [Optional Features (Windows)](#optional-features-windows) +- [Common Steps](#common-steps) + - [Testing](#testing) + - [Demo Applications](#demo-applications) -pythonOCC-7.8.1 needs the following libraries or programs to be installed before you -can compile/use it: +# Linux Build Guide -* the python programming language (). Python 3.9 or more is required. -* OpenCascade 7.8.1 () -* SWIG 4.2.1 () -* rapidjson () for Gltf import/export -* cmake +## Prerequisites (Linux) + +Before starting the build process, ensure your system meets these requirements: + +- Ubuntu 22.04 LTS (fresh installation recommended) +- At least 8GB of free disk space +- Internet connection for downloading packages +- Sudo privileges + +## System Requirements (Linux) + +pythonOCC 7.8.1 requires the following components: + +| Component | Version | Purpose | +|-----------|---------|---------| +| Python | ≥ 3.9 | Runtime environment | +| OpenCascade | 7.8.1 | Core CAD functionality | +| SWIG | 4.2.1 | Interface generation | +| RapidJSON | Latest | GLTF import/export | +| CMake | ≥ 3.1 | Build system | + +## Build Process (Linux) + +### 1. Installing System Dependencies (Linux) + +First, update your system and install required packages: -All the necessary libraries can be downloaded/installed using apt: ```bash sudo apt-get update -sudo apt-get install -y wget libglu1-mesa-dev libgl1-mesa-dev libxmu-dev libxi-dev build-essential cmake libfreetype6-dev tk-dev python3-dev rapidjson-dev python3 git python3-pip libpcre2-dev +sudo apt-get install -y \ + wget \ + libglu1-mesa-dev \ + libgl1-mesa-dev \ + libxmu-dev \ + libxi-dev \ + build-essential \ + cmake \ + libfreetype6-dev \ + tk-dev \ + python3-dev \ + rapidjson-dev \ + python3 \ + git \ + python3-pip \ + libpcre2-dev ``` -Build swig ----------- -The required swgi version is 4.2.1. Unfortunately, the ubuntu ppa only provides an outdated. If swig 4.2.1 is not available on your machine, you have to download/build by yourself (depends on libpcre2, previously installed): +### 2. Building SWIG (Linux) + +SWIG 4.2.1 is required but not available in Ubuntu's default repositories. Build it from source: + ```bash wget http://prdownloads.sourceforge.net/swig/swig-4.2.1.tar.gz tar -zxvf swig-4.2.1.tar.gz cd swig-4.2.1 -./configure && make -j4 && make install +./configure +make -j$(nproc) +sudo make install ``` -Build OpenCascade ------------------ -Download/extract version 7.8.1 https://github.com/Open-Cascade-SAS/OCCT/archive/refs/tags/V7_8_1.tar.gz +### 3. Building OpenCascade (Linux) + +Download and extract OpenCascade 7.8.1: ```bash wget https://github.com/Open-Cascade-SAS/OCCT/archive/refs/tags/V7_8_1.tar.gz tar -xvzf V7_8_1.tar.gz -``` - -Prepare the build stage: -```bash cd OCCT-7.8.1 mkdir cmake-build cd cmake-build ``` -Choose an installation destination. Default is /usr/local, but it is better to set up -an other folder so that it's easier to work with concurrent versions. -```bash -$ cmake -DINSTALL_DIR=/opt/occt781 -DBUILD_RELEASE_DISABLE_EXCEPTIONS=OFF .. -``` -then +Configure and build OpenCascade: + ```bash -make -j4 +cmake -DINSTALL_DIR=/opt/occt781 \ + -DBUILD_RELEASE_DISABLE_EXCEPTIONS=OFF \ + .. + +make -j$(nproc) sudo make install ``` -and finally add the libraries to the system + +Add OpenCascade libraries to the system: + ```bash -echo "/opt/occt781/lib" >> /etc/ld.so.conf.d/occt.conf +sudo bash -c 'echo "/opt/occt781/lib" >> /etc/ld.so.conf.d/occt.conf' +sudo ldconfig ``` -Build pythonocc ---------------- -First create a local copy of the git repository: +### 4. Building pythonOCC (Linux) + +Clone and build pythonOCC: + ```bash git clone https://github.com/tpaviot/pythonocc-core.git -``` -then -```bash cd pythonocc-core mkdir cmake-build && cd cmake-build -# Path to the installation folder -PYTHONOCC_INSTALL_DIRECTORY= +# Set installation directory (optional) +PYTHONOCC_INSTALL_DIRECTORY=${PYTHONOCC_INSTALL_DIRECTORY:-/usr/local} cmake \ - -DOCCT_INCLUDE_DIR=/opt/occt781/include/opencascade \ - -DOCCT_LIBRARY_DIR=/opt/occt781/lib \ - -DCMAKE_BUILD_TYPE=Release \ - -DPYTHONOCC_INSTALL_DIRECTORY=$PYTHONOCC_INSTALL_DIRECTORY \ - .. + -DOCCT_INCLUDE_DIR=/opt/occt781/include/opencascade \ + -DOCCT_LIBRARY_DIR=/opt/occt781/lib \ + -DCMAKE_BUILD_TYPE=Release \ + -DPYTHONOCC_INSTALL_DIRECTORY=$PYTHONOCC_INSTALL_DIRECTORY \ + .. + +make -j$(nproc) && sudo make install +``` + +Add OpenCascade libraries to your environment: + +```bash +echo 'export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/occt781/lib' >> ~/.bashrc +source ~/.bashrc +``` + +# Windows Build Guide + +## Prerequisites (Windows) + +Before starting the build process, ensure your system meets these requirements: + +- Windows 10 or 11 (64-bit) +- At least 10GB of free disk space +- Internet connection for downloading packages +- Administrator privileges + +## System Requirements (Windows) + +| Component | Version | Download Link | +|-----------|---------|---------------| +| Visual Studio | 2019 or 2022 Community | [Download](https://visualstudio.microsoft.com/downloads/) | +| Python | ≥ 3.9 | [Download](https://www.python.org/downloads/) | +| CMake | ≥ 3.1 | [Download](https://cmake.org/download/) | +| Git | Latest | [Download](https://git-scm.com/download/win) | +| SWIG | 4.2.1 | [Download](http://www.swig.org/download.html) | +| OpenCascade | 7.8.1 | [Download](https://dev.opencascade.org/download) | + +## Build Process (Windows) + +### 1. Installing Required Software (Windows) + +1. Install Visual Studio 2019/2022 Community Edition: + - During installation, select "Desktop development with C++" + - Include "Windows 10 SDK" and "MSBuild" + +2. Install Python 3.9 or later: + - Download and run the installer + - Check "Add Python to PATH" + - Choose "Customize installation" + - Select "pip" and "py launcher" + - Install for all users + +3. Install CMake: + - Download and run the installer + - Add CMake to the system PATH for all users + +4. Install Git: + - Download and run the installer + - Use Git from Windows Command Prompt + - Use OpenSSL library + +5. Install SWIG: + - Download SWIG 4.2.1 for Windows + - Extract to C:\swigwin + - Add C:\swigwin to the system PATH + +### 2. Installing OpenCascade (Windows) + +1. Download OpenCascade 7.8.1 for Windows +2. Extract to C:\OpenCASCADE-7.8.1 +3. Set environment variables: +```batch +setx CASROOT "C:\OpenCASCADE-7.8.1" +setx PATH "%PATH%;%CASROOT%\win64\vc14\bin" +``` + +### 3. Building pythonOCC (Windows) + +1. Clone the repository: +```batch +git clone https://github.com/tpaviot/pythonocc-core.git +cd pythonocc-core +``` -make -j4 && make install +2. Create build directory: +```batch +mkdir cmake-build +cd cmake-build +``` -export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/build/occt781/lib +3. Configure with CMake: +```batch +cmake -G "Visual Studio 16 2019" -A x64 ^ + -DCMAKE_BUILD_TYPE=Release ^ + -DOCCT_INCLUDE_DIR=C:\OpenCASCADE-7.8.1\inc ^ + -DOCCT_LIBRARY_DIR=C:\OpenCASCADE-7.8.1\win64\vc14\lib ^ + .. ``` -If `PYTHONOCC_INSTALL_DIRECTORY` is unset, it will be installed to `site-packages/OCC`. Also add your LD_LIBRARY_PATH in your .bashrc file. +4. Build: +```batch +cmake --build . --config Release +``` + +5. Install: +```batch +cmake --install . +``` -Build pythonocc with numpy support ----------------------------------- -numpy enables fast STL file loading. In order to benefit from this feature, you must install the numpy package (including the dev part), and compile pythonocc with: +# Common Steps + +## Optional Features + +### NumPy Support + +To enable fast STL file loading with NumPy support: + +1. Install NumPy: ```bash - -DPYTHONOCC_MESHDS_NUMPY=ON +pip install numpy ``` -simple test ------------ +2. Add the following CMake flag during pythonOCC configuration: ```bash -$ python +-DPYTHONOCC_MESHDS_NUMPY=ON +``` + +### Additional Dependencies + +Install additional Python packages for full functionality: + +```bash +pip install svgwrite numpy numpy-stl matplotlib PyQt5 +``` + +## Testing + +### Quick Test + +Verify the installation: + +```python +python3 >>> from OCC.Core.gp import gp_Pnt >>> p = gp_Pnt(1., 2., 3.) >>> p.X() 1.0 ->>> ``` -additional dependencies ------------------------ -Additional python packages are required if you want to benefit from all pythonocc features. -``` -pip install svgwrite numpy numpy-stl matplotlib PyQt5 -``` +### Full Test Suite -test ----- -In order to check that everything is ok, run the pythonocc unittest suite: +Run the complete test suite: ```bash pip install pytest pytest ``` -demos ------ -Download/test demos available at +## Demo Applications + +Try the demo applications: + +```bash +git clone https://github.com/tpaviot/pythonocc-demos +cd pythonocc-demos +python3 examples/core_classic_occ_bottle.py +``` + +## Troubleshooting + +### Linux Issues + +1. **Library not found errors**: + ```bash + sudo ldconfig + ``` + +2. **SWIG version mismatch**: + - Ensure no other SWIG versions are installed + - Verify installation: `swig -version` + +### Windows Issues + +1. **DLL not found errors**: + - Verify PATH environment variable includes OpenCascade bin directory + - Check Visual Studio installation + - if you encounter the following error: + +```bash +>>> ImportError: DLL load failed while importing _gp: +``` +set the ```OCCT_ESSENTIALS_PATH``` environment variable +```batch +setx OCCT_ESSENTIALS_PATH "%CASROOT%\win64\vc14\bin" +``` + +2. **CMake configuration errors**: + - Ensure all paths use backslashes + - Verify Visual Studio installation + - Check environment variables + +For more examples and documentation, visit: +- [Demo Repository](https://github.com/tpaviot/pythonocc-demos) From 444d3c90f39abf17d2aa23e435d8da2514de888c Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Tue, 12 Nov 2024 10:20:46 +0100 Subject: [PATCH 022/157] Add missing break, changed OCCT_ESSENTIALS_PAZTH to OCCT_ESSENTIALS_ROOT --- src/PkgBase/__init__.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/PkgBase/__init__.py b/src/PkgBase/__init__.py index 6b723fb2b..eb0fccca8 100644 --- a/src/PkgBase/__init__.py +++ b/src/PkgBase/__init__.py @@ -18,11 +18,11 @@ def initialize_occt_libraries(occt_essentials_path) -> None: Initializes the OCCT libraries by adding all DLL directories to the DLL search path. Raises: - AssertionError: If the OCCT_ESSENTIALS_PATH environment variable is not set. + AssertionError: If the OCCT_ESSENTIALS_ROOT environment variable is not set. """ if not os.path.exists(occt_essentials_path): raise AssertionError( - f"OCCT_ESSENTIALS_PATH({occt_essentials_path}) is not set correctly." + f"OCCT_ESSENTIALS_ROOT({occt_essentials_path}) is not set correctly." ) for root, dirs, files in os.walk(occt_essentials_path): @@ -31,8 +31,9 @@ def initialize_occt_libraries(occt_essentials_path) -> None: for file in files: if Path(file).suffix.lower() == ".dll": os.add_dll_directory(root) + break # on windows, see #1347 -if platform.system() == "windows" and "OCCT_ESSENTIALS_PATH" in os.environ: - initialize_occt_libraries(occt_essentials_path=os.environ["OCCT_ESSENTIALS_PATH"]) +if platform.system() == "windows" and "OCCT_ESSENTIALS_ROOT" in os.environ: + initialize_occt_libraries(occt_essentials_path=os.environ["OCCT_ESSENTIALS_ROOT"]) From c10980ca5e70dbbc8bcdaee9fcb797d0d7e3f339 Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Tue, 12 Nov 2024 11:03:30 +0100 Subject: [PATCH 023/157] Update INSTALL --- INSTALL.md | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index c091eda93..f1fd671c7 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -42,7 +42,6 @@ pythonOCC 7.8.1 requires the following components: | Python | ≥ 3.9 | Runtime environment | | OpenCascade | 7.8.1 | Core CAD functionality | | SWIG | 4.2.1 | Interface generation | -| RapidJSON | Latest | GLTF import/export | | CMake | ≥ 3.1 | Build system | ## Build Process (Linux) @@ -162,6 +161,7 @@ Before starting the build process, ensure your system meets these requirements: | Python | ≥ 3.9 | [Download](https://www.python.org/downloads/) | | CMake | ≥ 3.1 | [Download](https://cmake.org/download/) | | Git | Latest | [Download](https://git-scm.com/download/win) | +| RapidJSON | Latest | [Download](https://github.com/Tencent/rapidjson.git) | | SWIG | 4.2.1 | [Download](http://www.swig.org/download.html) | | OpenCascade | 7.8.1 | [Download](https://dev.opencascade.org/download) | @@ -194,16 +194,21 @@ Before starting the build process, ensure your system meets these requirements: - Extract to C:\swigwin - Add C:\swigwin to the system PATH +6. Install RapidJSON + - Clone the git repository git clone https://github.com/Tencent/rapidjson.git + ### 2. Installing OpenCascade (Windows) 1. Download OpenCascade 7.8.1 for Windows -2. Extract to C:\OpenCASCADE-7.8.1 +2. Extract to, for example, C:\OpenCASCADE-7.8.1 3. Set environment variables: ```batch setx CASROOT "C:\OpenCASCADE-7.8.1" setx PATH "%PATH%;%CASROOT%\win64\vc14\bin" ``` +If the binaries are not available, consider compiling by yourself OCCT on Windows. Refer to the official OpenCascade Technology documentation https://dev.opencascade.org/doc/overview/html/build_upgrade.html + ### 3. Building pythonOCC (Windows) 1. Clone the repository: @@ -227,6 +232,12 @@ cmake -G "Visual Studio 16 2019" -A x64 ^ .. ``` +If using CMake GUI, make sure to set these two variables before clicking the "Generate" button: +``` +OCCT_INCLUDE_DIR=C:\OpenCASCADE-7.8.1\inc +OCCT_LIBRARY_DIR=C:\OpenCASCADE-7.8.1\win64\vc14\lib +``` + 4. Build: ```batch cmake --build . --config Release @@ -319,9 +330,9 @@ python3 examples/core_classic_occ_bottle.py ```bash >>> ImportError: DLL load failed while importing _gp: ``` -set the ```OCCT_ESSENTIALS_PATH``` environment variable +set the ```OCCT_ESSENTIALS_ROOT``` environment variable ```batch -setx OCCT_ESSENTIALS_PATH "%CASROOT%\win64\vc14\bin" +setx OCCT_ESSENTIALS_ROOT "%CASROOT%\win64\vc14\bin" ``` 2. **CMake configuration errors**: From 86dd31c8ad662ef0a10b6f785c60cc31a54e6f46 Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Wed, 13 Nov 2024 08:52:23 +0100 Subject: [PATCH 024/157] Typo in ShapeTesselator --- src/Tesselator/ShapeTesselator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tesselator/ShapeTesselator.cpp b/src/Tesselator/ShapeTesselator.cpp index 5795e7925..df06360a6 100644 --- a/src/Tesselator/ShapeTesselator.cpp +++ b/src/Tesselator/ShapeTesselator.cpp @@ -302,7 +302,7 @@ void ShapeTesselator::EnsureMeshIsComputed() printf("The mesh is not computed. Currently computing with default parameters ..."); Compute(true, 1.0, false); printf("done\n"); - printf("Call explicitely the Compute method to set the parameters value."); + printf("Call explicitely the Compute method to set the parameters value.\n"); } } From 748584108b9ad395df081f3b0c7f75aa5cfcd3ba Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Wed, 13 Nov 2024 17:21:07 +0100 Subject: [PATCH 025/157] Minor fixes to threejs renderer --- src/Display/WebGl/flask_server.py | 2 +- src/Display/WebGl/simple_server.py | 9 +- src/Display/WebGl/threejs_renderer.py | 123 ++++++++------------------ 3 files changed, 47 insertions(+), 87 deletions(-) diff --git a/src/Display/WebGl/flask_server.py b/src/Display/WebGl/flask_server.py index 1a7f86760..6584e1dd7 100644 --- a/src/Display/WebGl/flask_server.py +++ b/src/Display/WebGl/flask_server.py @@ -3,7 +3,7 @@ import sys import uuid -from OCC.Display.WebGl.threejs_renderer import ( +from threejs_renderer import ( ThreejsRenderer, OCC_VERSION, THREEJS_RELEASE, diff --git a/src/Display/WebGl/simple_server.py b/src/Display/WebGl/simple_server.py index e78a41575..6d0cb288a 100644 --- a/src/Display/WebGl/simple_server.py +++ b/src/Display/WebGl/simple_server.py @@ -93,10 +93,15 @@ def start_server(addr="127.0.0.1", port=8080, x3d_path=".", open_webbrowser=Fals httpd = HTTPServer((addr, port), SimpleHTTPRequestHandler) print(f"\n## Serving {x3d_path} using SimpleHTTPServer") display_hostname = "localhost" - if addr == "0.0.0.0": # Did not consider ipv6 `::` because httpd does not support it + if ( + addr == "0.0.0.0" + ): # Did not consider ipv6 `::` because httpd does not support it display_hostname = get_interface_ip(socket.AF_INET) print(f"## Running on all addresses ({addr})") - print("## Open your webbrowser at the URL: http://%s:%i" % (display_hostname, port)) + print( + "## Open your webbrowser at the URL: http://%s:%i" + % (display_hostname, port) + ) # open webbrowser if open_webbrowser: webbrowser.open("http://%s:%i" % (display_hostname, port), new=2) diff --git a/src/Display/WebGl/threejs_renderer.py b/src/Display/WebGl/threejs_renderer.py index b5422b66f..56dd2060a 100644 --- a/src/Display/WebGl/threejs_renderer.py +++ b/src/Display/WebGl/threejs_renderer.py @@ -1,4 +1,4 @@ -##Copyright 2011-2019 Thomas Paviot (tpaviot@gmail.com) +##Copyright 2011-2024 Thomas Paviot (tpaviot@gmail.com) ## ##This file is part of pythonOCC. ## @@ -168,7 +168,6 @@ def export_edgedata_to_json(edge_hash, point_set): """ import * as THREE from 'three'; import { TrackballControls } from 'three/addons/controls/TrackballControls.js'; -import Stats from 'three/addons/libs/stats.module.js' var camera, scene, renderer, object, stats, container, shape_material; var controls; @@ -202,21 +201,21 @@ def export_edgedata_to_json(edge_hash, point_set): camera = new THREE.PerspectiveCamera(50, window.innerWidth / window.innerHeight, 1, 200); camera.position.z = 100; - //controls = new THREE.OrbitControls(camera); - //controls = new THREE.OrbitControls(camera); - // for selection + raycaster = new THREE.Raycaster(); mouse = new THREE.Vector2(); - // create scene + scene = new THREE.Scene(); - scene.add(new THREE.AmbientLight(0x101010)); - directionalLight = new THREE.DirectionalLight(0xffffff); - directionalLight.position.x = 1; - directionalLight.position.y = -1; - directionalLight.position.z = 2; - directionalLight.position.normalize(); + scene.background = new THREE.Color(0xf0f0f0); + const ambientLight = new THREE.AmbientLight(0x404040, 1.5); + scene.add(ambientLight); + + directionalLight = new THREE.DirectionalLight(0xffffff, 1); + directionalLight.position.set(1, 1, 1).normalize(); scene.add(directionalLight); - light1 = new THREE.PointLight(0xffffff); + + light1 = new THREE.PointLight(0xffffff, 0.8); + light1.position.set(50, 50, 50); scene.add(light1); $Uniforms @@ -231,39 +230,42 @@ def export_edgedata_to_json(edge_hash, point_set): renderer.setSize(window.innerWidth, window.innerHeight); renderer.setPixelRatio( window.devicePixelRatio ); container.appendChild(renderer.domElement); - //renderer.gammaInput = true; - //renderer.gammaOutput = true; - // for shadow rendering + + // shadow rendering renderer.shadowMap.enabled = true; - renderer.shadowMap.type = THREE.PCFShadowMap; + renderer.shadowMap.type = THREE.PCFSoftShadowMap; + + // tone mapping + renderer.toneMapping = THREE.ACESFilmicToneMapping; + renderer.toneMappingExposure = 1.0; + renderer.outputColorSpace = THREE.SRGBColorSpace; + controls = new TrackballControls(camera, renderer.domElement); - // show stats, is it really useful ? - stats = new Stats(); - stats.domElement.style.position = 'absolute'; - stats.domElement.style.top = '2%'; - stats.domElement.style.left = '1%'; - container.appendChild(stats.domElement); - // add events + document.addEventListener('keypress', onDocumentKeyPress, false); document.addEventListener('click', onDocumentMouseClick, false); window.addEventListener('resize', onWindowResize, false); } + function animate() { requestAnimationFrame(animate); controls.update(); render(); stats.update(); } + function update_lights() { if (directionalLight != undefined) { directionalLight.position.copy(camera.position); } } + function onWindowResize() { camera.aspect = window.innerWidth / window.innerHeight; camera.updateProjectionMatrix(); renderer.setSize(window.innerWidth, window.innerHeight); } + function onDocumentKeyPress(event) { event.preventDefault(); if (event.key=="t") { // t key @@ -283,6 +285,7 @@ def export_edgedata_to_json(edge_hash, point_set): } } } + function onDocumentMouseClick(event) { event.preventDefault(); mouse.x = ( event.clientX / window.innerWidth ) * 2 - 1; @@ -306,11 +309,13 @@ def export_edgedata_to_json(edge_hash, point_set): selected_target = target; } } + function fit_to_scene() { // compute bounding sphere of whole scene var center = new THREE.Vector3(0,0,0); var radiuses = new Array(); var positions = new Array(); + // compute center of all objects scene.traverse(function(child) { if (child instanceof THREE.Mesh) { @@ -323,9 +328,11 @@ def export_edgedata_to_json(edge_hash, point_set): radiuses.push(radius); } }); + if (radiuses.length > 0) { center.divideScalar(radiuses.length*0.7); } + var maxRad = 1.; // compute bounding radius for (var ichild = 0; ichild < radiuses.length; ++ichild) { @@ -335,6 +342,7 @@ def export_edgedata_to_json(edge_hash, point_set): maxRad = totalDist; } } + maxRad = maxRad * 0.7; // otherwise the scene seems to be too far away camera.lookAt(center); var direction = new THREE.Vector3().copy(camera.position).sub(controls.target); @@ -348,18 +356,21 @@ def export_edgedata_to_json(edge_hash, point_set): var pnew = new THREE.Vector3().copy(center).add(direction); // change near far values to avoid culling of objects camera.position.set(pnew.x, pnew.y, pnew.z); - camera.far = lnew*50; - camera.near = lnew*50*0.001; + camera.far = lnew * 50; + camera.near = lnew * 50 * 0.001; camera.updateProjectionMatrix(); controls.target = center; controls.update(); + // adds and adjust a grid helper if needed gridHelper = new THREE.GridHelper(maxRad*4, 10) scene.add(gridHelper); + // axisHelper axisHelper = new THREE.AxesHelper(maxRad); scene.add(axisHelper); } + function render() { //@IncrementTime@ TODO UNCOMMENT update_lights(); @@ -384,57 +395,6 @@ def get_str(self): ) -# class HTMLBody_Part1: -# def __init__(self, vertex_shader=None, fragment_shader=None, uniforms=None): -# self._vertex_shader = vertex_shader -# self._fragment_shader = fragment_shader -# self._uniforms = uniforms - -# def get_str(self): -# global BODY_TEMPLATE_PART2 -# # get the location where pythonocc is running from -# body_str = BODY_TEMPLATE_PART1.replace("@VERSION@", VERSION) -# if self._fragment_shader is not None: -# vertex_shader_string_definition = f'' -# fragment_shader_string_definition = f'' -# shader_material_definition = """ -# var vertexShader = document.getElementById('vertexShader').textContent; -# var fragmentShader = document.getElementById('fragmentShader').textContent; -# var shader_material = new THREE.ShaderMaterial({uniforms: uniforms, -# vertexShader: vertexShader, -# fragmentShader: fragmentShader}); -# """ -# if self._uniforms is None: -# body_str = body_str.replace("@Uniforms@", "uniforms ={};\n") -# BODY_TEMPLATE_PART2 = BODY_TEMPLATE_PART2.replace("@IncrementTime@", "") -# else: -# body_str = body_str.replace("@Uniforms@", self._uniforms) -# if "time" in self._uniforms: -# BODY_TEMPLATE_PART2 = BODY_TEMPLATE_PART2.replace( -# "@IncrementTime@", "uniforms.time.value += 0.05;" -# ) -# else: -# BODY_TEMPLATE_PART2 = BODY_TEMPLATE_PART2.replace("@IncrementTime@", "") -# body_str = body_str.replace( -# "@VertexShaderDefinition@", vertex_shader_string_definition -# ) -# body_str = body_str.replace( -# "@FragmentShaderDefinition@", fragment_shader_string_definition -# ) -# body_str = body_str.replace( -# "@ShaderMaterialDefinition@", shader_material_definition -# ) -# body_str = body_str.replace("@ShapeMaterial@", "shader_material") -# else: -# body_str = body_str.replace("@Uniforms@", "") -# body_str = body_str.replace("@VertexShaderDefinition@", "") -# body_str = body_str.replace("@FragmentShaderDefinition@", "") -# body_str = body_str.replace("@ShaderMaterialDefinition@", "") -# body_str = body_str.replace("@ShapeMaterial@", "phong_material") -# body_str = body_str.replace("@IncrementTime@", "") -# return body_str - - class ThreejsRenderer: def __init__(self, path=None): self._path = tempfile.mkdtemp() if not path else path @@ -443,7 +403,7 @@ def __init__(self, path=None): self._3js_shapes = {} self._3js_edges = {} self.spinning_cursor = spinning_cursor() - print(f"## threejs renderer") + print("## threejs renderer") def DisplayShape( self, @@ -506,7 +466,6 @@ def DisplayShape( line_width, ] # generate the mesh - # tess.ExportShapeToThreejs(shape_hash, shape_full_path) # and also to JSON with open(shape_full_path, "w") as json_file: json_file.write(tess.ExportShapeToThreejsJSONString(shape_uuid)) @@ -559,6 +518,7 @@ def generate_html_file(self): f"specular:{color_to_hex(specular_color)},", "shininess:%g," % shininess, "side: THREE.DoubleSide,", + "flatShading:false", ) ) if transparency > 0.0: @@ -606,11 +566,6 @@ def generate_html_file(self): "ShaderMaterialDefinition": "", } ) - # fp.write(HTMLBody_Part1().get_str()) - # fp.write("".join(shape_string_list)) - # fp.write("".join(edge_string_list)) - ## then write header part 2 - # fp.write(BODY_TEMPLATE_PART2) fp.write(main_js) # write the index.html file From 6e057567dcc1ef71cbebd0486bc501f459bb5cf7 Mon Sep 17 00:00:00 2001 From: RSM92 Date: Wed, 13 Nov 2024 21:48:09 +0100 Subject: [PATCH 026/157] Replaced deprecated method Replaced deprecated method --- src/Tesselator/ShapeTesselator.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Tesselator/ShapeTesselator.cpp b/src/Tesselator/ShapeTesselator.cpp index 5795e7925..f6673a53e 100644 --- a/src/Tesselator/ShapeTesselator.cpp +++ b/src/Tesselator/ShapeTesselator.cpp @@ -158,11 +158,11 @@ void ShapeTesselator::Tesselate(bool compute_edges, float mesh_quality, bool par //write triangle buffer TopAbs_Orientation orient = myFace.Orientation(); - const Poly_Array1OfTriangle& triangles = myT->Triangles(); - this_face->tri_indexes = new int[triangles.Length()* 3]; - for (Standard_Integer nt = 1; nt <= myT->NbTriangles(); nt++) { + const Standard_Integer trianglesNb = myT->NbTriangles(); + this_face->tri_indexes = new int[trianglesNb * 3]; + for (Standard_Integer nt = 1; nt <= trianglesNb; nt++) { Standard_Integer n0 , n1 , n2; - triangles(nt).Get(n0, n1, n2); + myT->Triangle(nt).Get(n0, n1, n2); if (orient == TopAbs_REVERSED) { Standard_Integer tmp=n1; n1 = n2; From af88c94857f0b64f2d24abc7e6f17128219daa23 Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Thu, 14 Nov 2024 06:17:50 +0100 Subject: [PATCH 027/157] Hardcode OCCT_ESSENTIALS_ROOT in __init__.py if defined at build time --- CMakeLists.txt | 21 +++++++++++++++++++++ src/PkgBase/__init__.py | 16 ++++++++++++++-- 2 files changed, 35 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 41cb75eaa..00012e569 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -123,6 +123,27 @@ if(CMAKE_BUILD_TYPE STREQUAL "Release") add_definitions(-DSWIG_PYTHON_SILENT_MEMLEAK) endif(CMAKE_BUILD_TYPE STREQUAL "Release") +######################### +# On Windows, see #1347 # +######################### +if(WIN32 AND OCCT_ESSENTIALS_ROOT) + # Générer le fichier config.py.in + file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/config.py.in + "# Configuration file generated by CMake + +OCCT_ESSENTIALS_ROOT = \"@OCCT_ESSENTIALS_ROOT@\" + ") + configure_file( + ${CMAKE_CURRENT_BINARY_DIR}/config.py.in + ${CMAKE_CURRENT_BINARY_DIR}/config.py + @ONLY + ) + set(OCCT_ESSENTIALS_PATH ${OCCT_ESSENTIALS_ROOT}) + install(FILES ${CMAKE_CURRENT_BINARY_DIR}/config.py + DESTINATION ${PYTHONOCC_INSTALL_DIRECTORY} + ) +endif() + ################################ # OCE include and lib location # ################################ diff --git a/src/PkgBase/__init__.py b/src/PkgBase/__init__.py index eb0fccca8..15fc6f115 100644 --- a/src/PkgBase/__init__.py +++ b/src/PkgBase/__init__.py @@ -35,5 +35,17 @@ def initialize_occt_libraries(occt_essentials_path) -> None: # on windows, see #1347 -if platform.system() == "windows" and "OCCT_ESSENTIALS_ROOT" in os.environ: - initialize_occt_libraries(occt_essentials_path=os.environ["OCCT_ESSENTIALS_ROOT"]) +if platform.system() == "windows": + try: + # OCC_ESSENTIALS_ROOT was defined at build time + # and is available in config.py + from .config import OCCT_ESSENTIALS_ROOT + + initialize_occt_libraries(occt_essentials_path=OCCT_ESSENTIALS_ROOT) + except ( + ImportError + ): # anyway, still possible to set up the OCC_ESSENTIALS_ROOT env var + if "OCCT_ESSENTIALS_ROOT" in os.environ: + initialize_occt_libraries( + occt_essentials_path=os.environ["OCCT_ESSENTIALS_ROOT"] + ) From f6b4fbb77391adbc09baf9effa5b2efb27b92468 Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Thu, 14 Nov 2024 06:35:08 +0100 Subject: [PATCH 028/157] Fix INSTALL to be consistent with suggested occt path structure on Windows --- INSTALL.md | 41 ++++++++++++++++++++++++++--------------- 1 file changed, 26 insertions(+), 15 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index f1fd671c7..33b93e70f 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -197,18 +197,27 @@ Before starting the build process, ensure your system meets these requirements: 6. Install RapidJSON - Clone the git repository git clone https://github.com/Tencent/rapidjson.git +Binaries for dependencies can be downloaded at https://dev.opencascade.org/resources/download/3rd-party-components + ### 2. Installing OpenCascade (Windows) 1. Download OpenCascade 7.8.1 for Windows -2. Extract to, for example, C:\OpenCASCADE-7.8.1 -3. Set environment variables: -```batch -setx CASROOT "C:\OpenCASCADE-7.8.1" -setx PATH "%PATH%;%CASROOT%\win64\vc14\bin" -``` +2. Extract to, for example, occt-7.8.1 If the binaries are not available, consider compiling by yourself OCCT on Windows. Refer to the official OpenCascade Technology documentation https://dev.opencascade.org/doc/overview/html/build_upgrade.html +When installing OpenCascade and third-party libraries, you should have a structure similar to the one described at https://dev.opencascade.org/doc/overview/html/index.html#intro_install_windows + +C:\OpenCASCADE-7.8.1-vc10-64 +├── ffmpeg-3.3.4-gpl-64 +├── freeimage-3.17.0-vc10-64 +├── freetype-2.6.3-vc10-64 +├── occt-7.8.1 +├── qt486-vc10-64 +├── tclkit-86-64 +├── vtk-6.1.0-vc10-64 +└── zlib-1.2.8-vc10-64 + ### 3. Building pythonOCC (Windows) 1. Clone the repository: @@ -227,15 +236,16 @@ cd cmake-build ```batch cmake -G "Visual Studio 16 2019" -A x64 ^ -DCMAKE_BUILD_TYPE=Release ^ - -DOCCT_INCLUDE_DIR=C:\OpenCASCADE-7.8.1\inc ^ - -DOCCT_LIBRARY_DIR=C:\OpenCASCADE-7.8.1\win64\vc14\lib ^ + -DOCCT_INCLUDE_DIR=C:\OpenCASCADE-7.8.1-vc10-64\occt-7.8.1\inc ^ + -DOCCT_LIBRARY_DIR=C:\OpenCASCADE-7.8.1-vc10-64\occt-7.8.1\win64\vc14\lib ^ + -DOCCT_ESSENTIALS_ROOT=C:\OpenCASCADE-7.8.1-vc10-64 .. ``` If using CMake GUI, make sure to set these two variables before clicking the "Generate" button: ``` -OCCT_INCLUDE_DIR=C:\OpenCASCADE-7.8.1\inc -OCCT_LIBRARY_DIR=C:\OpenCASCADE-7.8.1\win64\vc14\lib +OCCT_INCLUDE_DIR=C:\OpenCASCADE-7.8.1-vc10-64\occt-7.8.1\inc +OCCT_LIBRARY_DIR=C:\OpenCASCADE-7.8.1-vc10-64\occt-7.8.1\win64\vc14\lib ``` 4. Build: @@ -327,15 +337,16 @@ python3 examples/core_classic_occ_bottle.py - Check Visual Studio installation - if you encounter the following error: -```bash ->>> ImportError: DLL load failed while importing _gp: -``` -set the ```OCCT_ESSENTIALS_ROOT``` environment variable +2. **DLL not found** for 3rd part libraries: + +If it was not done at build time, you can define the OCCT_ESSENTIALS_ROOT path +at run time, by setting the env var: + ```batch setx OCCT_ESSENTIALS_ROOT "%CASROOT%\win64\vc14\bin" ``` -2. **CMake configuration errors**: +3. **CMake configuration errors**: - Ensure all paths use backslashes - Verify Visual Studio installation - Check environment variables From d22afdc89689fd05605089e28fb2a90a826efcaa Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Thu, 14 Nov 2024 14:01:23 +0100 Subject: [PATCH 029/157] Update and sort contributors list --- AUTHORS | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/AUTHORS b/AUTHORS index 8e9e5ae26..64ab7c381 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,22 +1,22 @@ pythonOCC is developed and maintained by Thomas Paviot (tpaviot@gmail.com). -The pythonocc-core package contains contributions from : +The pythonocc-core package contains contributions from (alphabetical sort): Adam Urbańczyk François Granade Hinko Kočevar Jelle Feringa Jeremy Wright +Johannes Verherstraeten +Kristoffer Andersen Martin Siggel Matthis Thorade +Tanneguy de Villemagne +Thomas Severin Thomas Krijnen Trevor Laughlin -Jelle Feringa nxsofsys -Thomas Severin -Kristoffer Andersen -Tanneguy de Villemagne +Rafael Senties Martinelli Simon Klein -Johannes Verherstraeten Please report any missing name From 02f8ddf2f0f94c932bfc01cbe91fd848a01660d0 Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Thu, 14 Nov 2024 14:51:01 +0100 Subject: [PATCH 030/157] Add back BRepTools_ShapeSet ReadFromString and WriteToString methods to fix regressions. Fix #1350 --- src/SWIG_files/wrapper/BRepTools.i | 15 + src/SWIG_files/wrapper/BRepTools.pyi | 3 + test/test_core_wrapper_features.py | 8 + test/test_io/Motor-c.brep | 17781 +++++++++++++++++++++++++ 4 files changed, 17807 insertions(+) create mode 100644 test/test_io/Motor-c.brep diff --git a/src/SWIG_files/wrapper/BRepTools.i b/src/SWIG_files/wrapper/BRepTools.i index 1bcbbcf72..c29136741 100644 --- a/src/SWIG_files/wrapper/BRepTools.i +++ b/src/SWIG_files/wrapper/BRepTools.i @@ -2552,6 +2552,21 @@ Writes the triangulation on the stream in a format that can be read back by }; + +%extend BRepTools_ShapeSet { + static TopoDS_Shape ReadFromString(const std::string & src) { + std::stringstream s(src); + TopoDS_Shape shape; + BRep_Builder b; + BRepTools::Read(shape, s, b); + return shape; + }; + std::string WriteToString() { + std::stringstream s; + self->Write(s); + return s.str(); + }; +}; %extend BRepTools_ShapeSet { %pythoncode { __repr__ = _dumps_object diff --git a/src/SWIG_files/wrapper/BRepTools.pyi b/src/SWIG_files/wrapper/BRepTools.pyi index a22f20561..bc5b8a03a 100644 --- a/src/SWIG_files/wrapper/BRepTools.pyi +++ b/src/SWIG_files/wrapper/BRepTools.pyi @@ -248,6 +248,9 @@ class BRepTools_ShapeSet(TopTools_ShapeSet): def WritePolygonOnTriangulation(self, Compact: Optional[bool] = True, theProgress: Optional[Message_ProgressRange] = Message_ProgressRange()) -> str: ... def WriteTriangulation(self, Compact: Optional[bool] = True, theProgress: Optional[Message_ProgressRange] = Message_ProgressRange()) -> str: ... + def ReadFromString(str: src) -> TopoDS_Shape + def WriteToString() -> str + class BRepTools_Substitution: def __init__(self) -> None: ... def Build(self, S: TopoDS_Shape) -> None: ... diff --git a/test/test_core_wrapper_features.py b/test/test_core_wrapper_features.py index 27223332e..1b47a0218 100644 --- a/test/test_core_wrapper_features.py +++ b/test/test_core_wrapper_features.py @@ -48,6 +48,7 @@ BRepBuilderAPI_MakeEdge, BRepBuilderAPI_Sewing, ) +from OCC.Core.BRepTools import BRepTools_ShapeSet from OCC.Core.gp import ( gp_Pnt, gp_Vec, @@ -1210,3 +1211,10 @@ def test_iterator(): assert shp1.IsSame(shps[0]) assert shp2.IsSame(shps[1]) + + +def test_breptools_shape_set_extensions(): + with open(os.path.join(".", "test_io", "Motor-c.brep"), "r", encoding="utf8") as f: + brep_string_content = f.read() + new_shape_set = BRepTools_ShapeSet() + new_shape_set.ReadFromString(brep_string_content) diff --git a/test/test_io/Motor-c.brep b/test/test_io/Motor-c.brep new file mode 100644 index 000000000..35879c80d --- /dev/null +++ b/test/test_io/Motor-c.brep @@ -0,0 +1,17781 @@ + +CASCADE Topology V1, (c) Matra-Datavision +Locations 694 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 19 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 5 +2 1 1 2 1 0 +2 2 -1 1 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 40 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -2 +2 5 1 6 1 0 +1 + 1 0 0 -50 + 0 1 0 -0.1 + 0 0 1 -50 +2 6 -1 5 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -1 +2 8 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -1 +2 12 1 1 1 2 1 0 +2 10 1 5 1 6 1 0 +2 6 -1 5 -1 10 -1 0 +2 2 -1 1 -1 12 -1 0 +1 + 0 0 -1 0 + 0 1 0 0 + 1 0 0 0 +1 + 1 0 0 -69 + 0 1 0 -32 + 0 0 1 -54 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 32 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -10 +1 + 1 0 0 0 + 0 1 0 16 + 0 0 1 0 +1 + 1 0 0 0 + 0 1 0 6 + 0 0 1 0 +1 + 1 0 0 0 + 0 1 0 10 + 0 0 1 0 +1 + 0 0 1 0 + 0 1 0 0 + -1 0 0 0 +1 + 0 0 -1 0 + 0 1 0 0 + 1 0 0 0 +2 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 0 +2 25 -1 24 -1 23 -1 22 -1 21 -1 20 -1 19 -1 18 -1 17 -1 0 +2 23 -1 22 -1 21 -1 20 -1 19 -1 18 -1 17 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 29 -1 23 -1 22 -1 21 -1 20 -1 19 -1 18 -1 17 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 31 -1 23 -1 22 -1 21 -1 20 -1 19 -1 18 -1 17 -1 0 +1 + 1 0 0 -100 + 0 1 0 -0.1 + 0 0 1 -100 +1 + 1 0 0 -80 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 9 + 0 1 0 0 + 0 0 1 10 +1 + 1 0 0 5 + 0 1 0 0 + 0 0 1 5 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 1 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 1 +2 33 1 34 1 35 1 36 1 37 1 38 1 0 +1 + 0 0 1 0 + 0 1 0 0 + -1 0 0 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 -28 +1 + 1 0 0 -60 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -2 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -2 +1 + 1 0 0 0.5 + 0 1 0 0 + 0 0 1 0 +2 40 1 41 1 42 1 43 1 44 1 45 1 0 +2 24 1 25 1 0 +2 17 1 18 1 19 1 20 1 21 1 22 1 23 1 0 +1 + 0 0 1 0 + 0 1 0 0 + -1 0 0 0 +1 + 1 0 0 -80 + 0 1 0 -32 + 0 0 1 -32 +1 + 1 0 0 0 + 0 1 0 16 + 0 0 1 0 +1 + 1 0 0 0 + 0 1 0 16 + 0 0 1 0 +1 + 1 0 0 -10 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 -10 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 -10 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 -10 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 -10 + 0 1 0 0 + 0 0 1 0 +2 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 0 +2 31 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 60 -1 0 +2 25 -1 24 -1 0 +2 38 -1 37 -1 36 -1 35 -1 34 -1 33 -1 0 +2 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 24 1 25 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -1 +1 + 0 0 1 0 + 0 1 0 0 + -1 0 0 0 +1 + 1 0 0 -60 + 0 1 0 0 + 0 0 1 -16 +1 + 1 0 0 -0.5 + 0 1 0 0 + 0 0 1 -16 +2 65 1 66 1 67 1 68 1 24 1 25 1 0 +2 66 1 67 1 68 1 24 1 25 1 0 +2 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 24 1 25 1 0 +1 + 0 0 -1 0 + 0 1 0 0 + 1 0 0 0 +1 + 1 0 0 -70 + 0 1 0 -40 + 0 0 1 -40 +1 + 1 0 0 10 + 0 1 0 0 + 0 0 1 -20 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -10 +2 72 1 73 1 74 1 75 1 24 1 25 1 0 +2 49 1 50 1 51 1 52 1 53 1 54 1 55 1 24 1 25 1 0 +2 49 1 50 1 51 1 52 1 53 1 24 1 25 1 0 +2 49 1 50 1 51 1 52 1 53 1 54 1 24 1 25 1 0 +2 45 -1 44 -1 43 -1 42 -1 41 -1 40 -1 0 +2 25 -1 24 -1 57 -1 56 -1 55 -1 54 -1 53 -1 52 -1 51 -1 50 -1 49 -1 0 +2 57 -1 56 -1 55 -1 54 -1 53 -1 52 -1 51 -1 50 -1 49 -1 0 +2 60 -1 57 -1 56 -1 55 -1 54 -1 53 -1 52 -1 51 -1 50 -1 49 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 84 -1 57 -1 56 -1 55 -1 54 -1 53 -1 52 -1 51 -1 50 -1 49 -1 0 +2 56 -1 55 -1 54 -1 53 -1 52 -1 51 -1 50 -1 49 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 87 -1 56 -1 55 -1 54 -1 53 -1 52 -1 51 -1 50 -1 49 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 89 -1 56 -1 55 -1 54 -1 53 -1 52 -1 51 -1 50 -1 49 -1 0 +2 53 -1 52 -1 51 -1 50 -1 49 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 92 -1 53 -1 52 -1 51 -1 50 -1 49 -1 0 +2 55 -1 54 -1 53 -1 52 -1 51 -1 50 -1 49 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 95 -1 55 -1 54 -1 53 -1 52 -1 51 -1 50 -1 49 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 97 -1 53 -1 52 -1 51 -1 50 -1 49 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 99 -1 55 -1 54 -1 53 -1 52 -1 51 -1 50 -1 49 -1 0 +2 54 -1 53 -1 52 -1 51 -1 50 -1 49 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 102 -1 54 -1 53 -1 52 -1 51 -1 50 -1 49 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 104 -1 54 -1 53 -1 52 -1 51 -1 50 -1 49 -1 0 +2 25 -1 24 -1 68 -1 67 -1 66 -1 65 -1 0 +2 68 -1 67 -1 66 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 108 -1 68 -1 67 -1 66 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 110 -1 68 -1 67 -1 66 -1 0 +2 25 -1 24 -1 68 -1 67 -1 66 -1 0 +2 84 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 114 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 116 -1 68 -1 67 -1 66 -1 0 +2 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 0 +2 87 -1 0 +2 72 1 73 1 74 1 75 1 0 +2 66 1 67 1 68 1 0 +2 116 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 123 -1 0 +2 25 -1 24 -1 56 -1 55 -1 54 -1 53 -1 52 -1 51 -1 50 -1 49 -1 0 +2 25 -1 24 -1 75 -1 74 -1 73 -1 72 -1 0 +2 89 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 128 -1 0 +2 75 -1 74 -1 73 -1 72 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 131 -1 75 -1 74 -1 73 -1 72 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 133 -1 75 -1 74 -1 73 -1 72 -1 0 +2 49 1 50 1 51 1 52 1 53 1 54 1 55 1 0 +2 95 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 137 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 139 -1 0 +2 25 -1 24 -1 55 -1 54 -1 53 -1 52 -1 51 -1 50 -1 49 -1 0 +2 49 1 50 1 51 1 52 1 53 1 0 +2 92 -1 0 +2 99 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 145 -1 0 +2 25 -1 24 -1 53 -1 52 -1 51 -1 50 -1 49 -1 0 +2 49 1 50 1 51 1 52 1 53 1 54 1 0 +2 104 -1 0 +2 97 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 151 -1 0 +2 25 -1 24 -1 54 -1 53 -1 52 -1 51 -1 50 -1 49 -1 0 +2 102 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 155 -1 75 -1 74 -1 73 -1 72 -1 0 +1 + 0 0 1 0 + 0 1 0 0 + -1 0 0 0 +1 + 1 0 0 -10 + 0 1 0 0 + 0 0 1 20 +1 + 0 0 1 0 + 0 1 0 0 + -1 0 0 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -20 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -6 +1 + 1 0 0 -80 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -14 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 7 +1 + 1 0 0 -30 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 -5 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 -5 + 0 1 0 0 + 0 0 1 0 +2 157 1 158 1 159 1 160 1 161 1 162 1 163 1 164 1 165 1 166 1 167 1 0 +2 167 -1 166 -1 165 -1 164 -1 163 -1 162 -1 161 -1 160 -1 159 -1 158 -1 157 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 100 +2 170 -1 167 -1 166 -1 165 -1 164 -1 163 -1 162 -1 161 -1 160 -1 159 -1 158 -1 157 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 100 +2 172 -1 167 -1 166 -1 165 -1 164 -1 163 -1 162 -1 161 -1 160 -1 159 -1 158 -1 157 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 174 -1 167 -1 166 -1 165 -1 164 -1 163 -1 162 -1 161 -1 160 -1 159 -1 158 -1 157 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 176 -1 167 -1 166 -1 165 -1 164 -1 163 -1 162 -1 161 -1 160 -1 159 -1 158 -1 157 -1 0 +1 + 1 0 0 -100.5 + 0 1 0 0 + 0 0 1 -60 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -2 +1 + 1 0 0 0.5 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 0 + 0 1 0 0.01 + 0 0 1 0 +2 178 1 179 1 180 1 181 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 100 +2 183 -1 167 -1 166 -1 165 -1 164 -1 163 -1 162 -1 161 -1 160 -1 159 -1 158 -1 157 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 185 -1 167 -1 166 -1 165 -1 164 -1 163 -1 162 -1 161 -1 160 -1 159 -1 158 -1 157 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 10 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -20 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -10 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -5 +1 + 1 0 0 -0.5 + 0 1 0 -2 + 0 0 1 0 +2 187 1 188 1 189 1 190 1 191 1 192 1 0 +2 181 -1 180 -1 179 -1 178 -1 0 +2 192 -1 191 -1 190 -1 189 -1 188 -1 187 -1 0 +1 + 1 0 0 21 + 0 1 0 0 + 0 0 1 -37.5 +2 196 -1 0 +1 + 1 0 0 21 + 0 1 0 0 + 0 0 1 -37 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 1 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -2 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -0.001 +2 198 1 199 1 200 1 201 1 0 +2 201 -1 200 -1 199 -1 198 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 70 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 4 +2 204 1 205 1 0 +2 205 -1 204 -1 0 +1 + 1 0 0 -50 + 0 1 0 -0.1 + 0 0 1 -50 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 50 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 15 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -0.1 +2 209 1 210 1 211 1 0 +2 208 -1 0 +2 211 -1 210 -1 209 -1 0 +1 + 1 0 0 -50 + 0 1 0 -45 + 0 0 1 -80 +1 + 1 0 0 -2 + 0 1 0 0 + 0 0 1 10 +1 + 1 0 0 -40 + 0 1 0 -40 + 0 0 1 -75 +1 + 1 0 0 40 + 0 1 0 40 + 0 0 1 75 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -4 +2 215 1 216 1 217 1 218 1 219 1 0 +2 219 -1 218 -1 217 -1 216 -1 215 -1 0 +1 + 1 0 0 -40 + 0 1 0 -38 + 0 0 1 -75 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 2 +2 222 1 223 1 0 +2 223 -1 222 -1 0 +1 + 1 0 0 0 + 0 -1 0 0 + 0 0 -1 0 +1 + 1 0 0 40 + 0 1 0 0 + 0 0 1 21 +1 + 1 0 0 1 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -2 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 2 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -1.5 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 1.5 +1 + 0 -1 0 0 + 1 0 0 0 + 0 0 1 0 +1 + 0 -1 0 0 + 1 0 0 0 + 0 0 1 0 +1 + 0 -1 0 0 + 1 0 0 0 + 0 0 1 0 +1 + 0 -1 0 0 + 1 0 0 0 + 0 0 1 0 +2 226 1 227 1 228 1 229 1 230 1 231 1 232 1 233 1 234 1 235 1 236 1 0 +2 236 -1 235 -1 234 -1 233 -1 232 -1 231 -1 230 -1 229 -1 228 -1 227 -1 226 -1 0 +1 + 1 0 0 40.5 + 0 1 0 -5 + 0 0 1 22 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -1 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -1.9 +2 239 1 240 1 241 1 0 +2 241 -1 240 -1 239 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 2 +2 244 1 226 1 227 1 228 1 229 1 230 1 231 1 232 1 233 1 234 1 235 1 236 1 0 +2 244 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 10 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -1 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 40 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 10 +2 247 1 248 1 249 1 250 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -2 +2 252 -1 0 +1 + 1 0 0 -0.1 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 -0.1 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 -0.1 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 -0.1 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 -0.1 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 0.5 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 1 + 0 1 0 0 + 0 0 1 0 +1 + -1 0 0 0 + 0 -1 0 0 + 0 0 1 0 +1 + 1 0 0 0.0798716 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 0.000255228015664266 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 7.67688503875453e-007 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 -5e-008 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 -8.90504048001045e-008 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 8.90504048001045e-008 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 8.90504048001045e-008 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 8.90504048001045e-008 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 -8.90504048001045e-008 + 0 1 0 0 + 0 0 1 0 +2 254 1 255 1 256 1 257 1 258 1 259 1 260 1 261 1 262 1 263 1 264 1 265 1 266 1 267 1 268 1 269 1 270 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 2 +1 + 1 0 0 0 + 0 -1 0 0 + 0 0 -1 0 +1 + 1 0 0 40 + 0 1 0 0 + 0 0 1 21 +1 + 1 0 0 1 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -2 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 2 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -1.5 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 1.5 +1 + 0 -1 0 0 + 1 0 0 0 + 0 0 1 0 +1 + 0 -1 0 0 + 1 0 0 0 + 0 0 1 0 +1 + 0 -1 0 0 + 1 0 0 0 + 0 0 1 0 +1 + 0 0 1 0 + 0 1 0 0 + -1 0 0 0 +1 + 1 0 0 36 + 0 1 0 40 + 0 0 1 40 +1 + 1 0 0 -0.5 + 0 1 0 0.5 + 0 0 1 0 +1 + 1 0 0 0 + 0 1 0 0.5 + 0 0 1 0 +1 + 1 0 0 -18 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 2 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 -1 + 0 1 0 0 + 0 0 1 0 +2 272 1 273 1 274 1 275 1 276 1 277 1 278 1 279 1 280 1 281 1 282 1 283 1 284 1 285 1 286 1 287 1 288 1 289 1 0 +2 289 -1 288 -1 287 -1 286 -1 285 -1 284 -1 283 -1 282 -1 281 -1 280 -1 279 -1 278 -1 277 -1 276 -1 275 -1 274 -1 273 -1 272 -1 0 +2 272 -1 0 +1 + 1 0 0 0 + 0 1 0 -5 + 0 0 1 0 +2 273 1 274 1 275 1 276 1 277 1 278 1 279 1 280 1 281 1 282 1 283 1 284 1 285 1 286 1 287 1 288 1 289 1 0 +2 293 -1 0 +1 + 0 0 1 0 + 0 1 0 0 + -1 0 0 0 +1 + 1 0 0 -10 + 0 1 0 0 + 0 0 1 20 +1 + 0 0 1 0 + 0 1 0 0 + -1 0 0 0 +1 + 1 0 0 -60 + 0 1 0 0 + 0 0 1 -29 +1 + 1 0 0 -60 + 0 1 0 0 + 0 0 1 -2 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -1 +1 + -1 0 0 0 + 0 -1 0 0 + 0 0 1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 296 1 297 1 298 1 299 1 300 1 301 1 302 1 303 1 304 1 0 +2 304 -1 303 -1 302 -1 301 -1 300 -1 299 -1 298 -1 297 -1 296 -1 0 +2 298 1 299 1 300 1 301 1 302 1 303 1 304 1 0 +1 + 0 0 1 0 + 0 1 0 0 + -1 0 0 0 +1 + 1 0 0 -27 + 0 1 0 0 + 0 0 1 20 +1 + 1 0 0 0 + 0 1 0 -0.01 + 0 0 1 0 +2 308 1 309 1 310 1 0 +2 296 1 297 1 0 +2 304 -1 303 -1 302 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 314 -1 304 -1 303 -1 302 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 316 -1 304 -1 303 -1 302 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 -100 + 0 1 0 -0.1 + 0 0 1 -100 +1 + 1 0 0 -80 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 9 + 0 1 0 0 + 0 0 1 10 +1 + 1 0 0 5 + 0 1 0 0 + 0 0 1 5 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 1 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 1 +2 318 1 319 1 320 1 321 1 322 1 323 1 0 +1 + 0 0 1 0 + 0 1 0 0 + -1 0 0 0 +1 + 1 0 0 -40 + 0 1 0 0 + 0 0 1 20 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 0.01 +1 + 1 0 0 -40 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 80 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 -60 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 -1 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 4 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 2 + 0 1 0 0 + 0 0 1 0 +2 325 1 326 1 327 1 328 1 329 1 330 1 331 1 332 1 333 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 335 -1 304 -1 303 -1 302 -1 301 -1 300 -1 299 -1 298 -1 0 +2 308 1 309 1 310 1 298 1 299 1 300 1 301 1 302 1 303 1 304 1 0 +2 304 -1 303 -1 302 -1 301 -1 300 -1 299 -1 298 -1 310 -1 309 -1 308 -1 0 +2 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 340 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 342 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 100 + 0 1 0 0 + 0 0 1 0 +2 344 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 100 + 0 1 0 0 + 0 0 1 0 +2 346 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 348 -1 304 -1 303 -1 302 -1 301 -1 300 -1 299 -1 298 -1 0 +2 323 -1 322 -1 321 -1 320 -1 319 -1 318 -1 0 +2 325 1 326 1 327 1 328 1 329 1 330 1 331 1 332 1 333 1 298 1 299 1 300 1 301 1 302 1 303 1 304 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -10 +2 352 1 298 1 299 1 300 1 301 1 302 1 303 1 304 1 0 +2 304 -1 303 -1 302 -1 301 -1 300 -1 299 -1 298 -1 333 -1 332 -1 331 -1 330 -1 329 -1 328 -1 327 -1 326 -1 325 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 355 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 357 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 100 + 0 1 0 0 + 0 0 1 0 +2 359 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 100 + 0 1 0 0 + 0 0 1 0 +2 361 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 363 -1 304 -1 303 -1 302 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 365 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 100 + 0 1 0 0 + 0 0 1 0 +2 367 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 369 -1 304 -1 303 -1 302 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 371 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 100 + 0 1 0 0 + 0 0 1 0 +2 373 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 375 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 100 + 0 1 0 0 + 0 0 1 0 +2 377 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 379 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 100 + 0 1 0 0 + 0 0 1 0 +2 381 -1 301 -1 300 -1 299 -1 298 -1 0 +2 304 -1 303 -1 302 -1 301 -1 300 -1 299 -1 298 -1 352 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 384 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 100 + 0 1 0 0 + 0 0 1 0 +2 386 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 388 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 100 + 0 1 0 0 + 0 0 1 0 +2 390 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 392 -1 304 -1 303 -1 302 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 394 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 100 + 0 1 0 0 + 0 0 1 0 +2 396 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 398 -1 304 -1 303 -1 302 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 400 -1 304 -1 303 -1 302 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 402 -1 304 -1 303 -1 302 -1 301 -1 300 -1 299 -1 298 -1 0 +2 402 -1 304 -1 303 -1 302 -1 301 -1 300 -1 299 -1 298 -1 333 -1 332 -1 331 -1 330 -1 329 -1 328 -1 327 -1 326 -1 325 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 405 -1 304 -1 303 -1 302 -1 301 -1 300 -1 299 -1 298 -1 333 -1 332 -1 331 -1 330 -1 329 -1 328 -1 327 -1 326 -1 325 -1 0 +1 + 1 0 0 -100 + 0 1 0 0 + 0 0 1 0 +2 407 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 100 + 0 1 0 0 + 0 0 1 0 +2 409 -1 301 -1 300 -1 299 -1 298 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 10 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -1 +2 411 1 412 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -2 +2 414 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -0.1 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 0.1 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 24 +2 416 1 417 1 418 1 0 +2 418 -1 417 -1 416 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 421 -1 418 -1 417 -1 416 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 423 -1 418 -1 417 -1 416 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 100 +2 425 -1 418 -1 417 -1 416 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 100 +2 427 -1 418 -1 417 -1 416 -1 0 +1 + 1 0 0 -50 + 0 1 0 -0.1 + 0 0 1 -50 +2 416 1 417 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -0.1 +2 418 -1 0 +2 421 -1 418 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 434 -1 418 -1 0 +2 425 -1 418 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 100 +2 437 -1 418 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 439 -1 418 -1 417 -1 416 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 100 +2 441 -1 418 -1 417 -1 416 -1 0 +2 429 -1 0 +2 431 1 418 1 0 +2 418 -1 431 -1 0 +2 439 -1 418 -1 0 +2 441 -1 418 -1 0 +1 + 1 0 0 21 + 0 1 0 0 + 0 0 1 -60.05 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 60.05 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -38.95 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -0.5 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -0.5 +2 448 1 449 1 450 1 451 1 452 1 0 +2 452 -1 451 -1 450 -1 449 -1 448 -1 0 +1 + 1 0 0 21 + 0 1 0 0 + 0 0 1 -38 +1 + 1 0 0 21 + 0 1 0 0 + 0 0 1 -1 +1 + 1 0 0 -21 + 0 1 0 0 + 0 0 1 0 +2 455 1 456 1 457 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 0.5 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -1 +2 459 1 460 1 0 +2 457 -1 456 -1 455 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 463 -1 457 -1 456 -1 455 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 465 -1 457 -1 456 -1 455 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 467 -1 457 -1 456 -1 455 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 469 -1 457 -1 456 -1 455 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 471 -1 457 -1 456 -1 455 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 473 -1 457 -1 456 -1 455 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 475 -1 457 -1 456 -1 455 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 477 -1 457 -1 456 -1 455 -1 0 +2 459 1 460 1 455 1 456 1 457 1 0 +2 460 -1 459 -1 0 +2 457 -1 456 -1 455 -1 460 -1 459 -1 0 +2 463 -1 457 -1 456 -1 455 -1 460 -1 459 -1 0 +2 467 -1 457 -1 456 -1 455 -1 460 -1 459 -1 0 +2 471 -1 457 -1 456 -1 455 -1 460 -1 459 -1 0 +2 475 -1 457 -1 456 -1 455 -1 460 -1 459 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 486 -1 457 -1 456 -1 455 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 488 -1 457 -1 456 -1 455 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 490 -1 457 -1 456 -1 455 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -100 +2 492 -1 457 -1 456 -1 455 -1 0 +1 + 1 0 0 21 + 0 1 0 0 + 0 0 1 -15 +2 494 -1 0 +1 + 1 0 0 21 + 0 1 0 0 + 0 0 1 -40 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 3 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -1 +2 496 1 497 1 498 1 0 +2 498 -1 497 -1 496 -1 0 +1 + 1 0 0 21 + 0 1 0 0 + 0 0 1 -38 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 0.5 +2 501 1 502 1 0 +1 + 1 0 0 -50 + 0 1 0 -0.1 + 0 0 1 -50 +2 502 -1 501 -1 0 +1 + 1 0 0 21 + 0 1 0 0 + 0 0 1 -37 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 1 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -2 +2 506 1 507 1 508 1 0 +2 504 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -1 +2 511 1 496 1 497 1 498 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -15.9 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 1 +2 513 1 514 1 0 +2 508 -1 507 -1 506 -1 0 +2 498 -1 497 -1 496 -1 511 -1 0 +2 514 -1 513 -1 0 +1 + 1 0 0 -50 + 0 1 0 -40 + 0 0 1 -65 +1 + 1 0 0 4 + 0 1 0 0 + 0 0 1 1 +1 + 1 0 0 -1 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -0.5 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 0.1 +2 519 1 520 1 521 1 522 1 523 1 0 +2 523 -1 522 -1 521 -1 520 -1 519 -1 0 +1 + 1 0 0 -100 + 0 1 0 -0.1 + 0 0 1 -100 +1 + 1 0 0 -80 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 20 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 20 + 0 1 0 0 + 0 0 1 0 +2 526 1 527 1 528 1 529 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -90 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 10 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 10 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 5 +2 531 1 532 1 533 1 534 1 0 +1 + 1 0 0 100 + 0 1 0 0 + 0 0 1 0 +2 536 -1 0 +1 + 1 0 0 100 + 0 1 0 0 + 0 0 1 0 +2 538 -1 0 +1 + 0 0 -1 0 + 0 1 0 0 + 1 0 0 0 +1 + 1 0 0 -69 + 0 1 0 -32 + 0 0 1 -54 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 32 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -10 +1 + 1 0 0 0 + 0 1 0 16 + 0 0 1 0 +1 + 1 0 0 0 + 0 1 0 6 + 0 0 1 0 +1 + 1 0 0 0 + 0 1 0 10 + 0 0 1 0 +1 + 1 0 0 -30 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 60 + 0 1 0 0 + 0 0 1 0 +2 540 1 541 1 542 1 543 1 544 1 545 1 546 1 547 1 548 1 0 +1 + 1 0 0 100 + 0 1 0 0 + 0 0 1 0 +2 550 -1 0 +2 529 -1 528 -1 527 -1 526 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 0.1 +1 + 1 0 0 -60 + 0 1 0 -50 + 0 0 1 -70 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -0.1 +2 554 1 555 1 553 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 2 +1 + 1 0 0 0 + 0 -1 0 0 + 0 0 -1 0 +1 + 1 0 0 40 + 0 1 0 0 + 0 0 1 21 +1 + 1 0 0 1 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -2 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 2 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -1.5 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 1.5 +1 + 0 -1 0 0 + 1 0 0 0 + 0 0 1 0 +1 + 0 -1 0 0 + 1 0 0 0 + 0 0 1 0 +1 + 0 -1 0 0 + 1 0 0 0 + 0 0 1 0 +1 + 0 -1 0 0 + 1 0 0 0 + 0 0 1 0 +2 557 1 558 1 559 1 560 1 561 1 562 1 563 1 564 1 565 1 566 1 567 1 568 1 0 +2 534 -1 533 -1 532 -1 531 -1 0 +1 + 1 0 0 100 + 0 1 0 0 + 0 0 1 0 +2 571 -1 0 +2 548 -1 547 -1 546 -1 545 -1 544 -1 543 -1 542 -1 541 -1 540 -1 0 +1 + 1 0 0 100 + 0 1 0 0 + 0 0 1 0 +2 574 -1 0 +1 + 1 0 0 100 + 0 1 0 0 + 0 0 1 0 +2 576 -1 0 +2 553 -1 0 +2 554 1 555 1 0 +2 553 -1 555 -1 554 -1 0 +1 + 0 -1 0 0 + 1 0 0 0 + 0 0 1 0 +1 + 0 -1 0 0 + 1 0 0 0 + 0 0 1 0 +1 + 0 -1 0 0 + 1 0 0 0 + 0 0 1 0 +2 557 1 558 1 559 1 560 1 561 1 562 1 563 1 564 1 565 1 566 1 567 1 568 1 581 1 582 1 583 1 0 +2 557 1 558 1 559 1 560 1 561 1 562 1 563 1 564 1 565 1 566 1 567 1 568 1 581 1 582 1 0 +2 568 -1 567 -1 566 -1 565 -1 564 -1 563 -1 562 -1 561 -1 560 -1 559 -1 558 -1 557 -1 0 +2 583 -1 582 -1 581 -1 568 -1 567 -1 566 -1 565 -1 564 -1 563 -1 562 -1 561 -1 560 -1 559 -1 558 -1 557 -1 0 +2 582 -1 581 -1 568 -1 567 -1 566 -1 565 -1 564 -1 563 -1 562 -1 561 -1 560 -1 559 -1 558 -1 557 -1 0 +1 + 1 0 0 35 + 0 1 0 -5 + 0 0 1 31 +2 589 -1 0 +1 + 1 0 0 -100 + 0 1 0 -0.1 + 0 0 1 -100 +1 + 1 0 0 -80 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 9 + 0 1 0 0 + 0 0 1 10 +1 + 1 0 0 5 + 0 1 0 0 + 0 0 1 5 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 1 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 1 +1 + 1 0 0 20 + 0 1 0 0 + 0 0 1 0 +2 591 1 592 1 593 1 594 1 595 1 596 1 597 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 2 +1 + 1 0 0 0 + 0 -1 0 0 + 0 0 -1 0 +1 + 1 0 0 40 + 0 1 0 0 + 0 0 1 21 +1 + 1 0 0 1 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -2 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 2 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -1.5 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 1.5 +1 + 0 -1 0 0 + 1 0 0 0 + 0 0 1 0 +1 + 0 -1 0 0 + 1 0 0 0 + 0 0 1 0 +1 + 0 -1 0 0 + 1 0 0 0 + 0 0 1 0 +1 + 0 0 1 0 + 0 1 0 0 + -1 0 0 0 +1 + 1 0 0 36 + 0 1 0 40 + 0 0 1 40 +1 + 1 0 0 -0.5 + 0 1 0 0.5 + 0 0 1 0 +1 + 1 0 0 0 + 0 1 0 0.5 + 0 0 1 0 +1 + 1 0 0 -18 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 2 + 0 1 0 0 + 0 0 1 0 +1 + 1 0 0 -1 + 0 1 0 0 + 0 0 1 0 +2 599 1 600 1 601 1 602 1 603 1 604 1 605 1 606 1 607 1 608 1 609 1 610 1 611 1 612 1 613 1 614 1 615 1 616 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -5 +2 597 -1 596 -1 595 -1 594 -1 593 -1 592 -1 591 -1 0 +2 616 -1 615 -1 614 -1 613 -1 612 -1 611 -1 610 -1 609 -1 608 -1 607 -1 606 -1 605 -1 604 -1 603 -1 602 -1 601 -1 600 -1 599 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 10 +2 600 1 601 1 602 1 603 1 604 1 0 +2 599 1 600 1 601 1 602 1 603 1 604 1 0 +2 618 -1 0 +2 600 1 601 1 602 1 603 1 604 1 605 1 606 1 607 1 608 1 0 +2 599 1 600 1 601 1 602 1 603 1 604 1 605 1 606 1 607 1 608 1 0 +2 621 -1 0 +2 600 1 601 1 602 1 603 1 604 1 605 1 606 1 607 1 608 1 609 1 0 +2 604 -1 603 -1 602 -1 601 -1 600 -1 0 +2 604 -1 603 -1 602 -1 601 -1 600 -1 599 -1 0 +2 599 1 600 1 601 1 602 1 603 1 604 1 605 1 606 1 607 1 608 1 609 1 0 +2 608 -1 607 -1 606 -1 605 -1 604 -1 603 -1 602 -1 601 -1 600 -1 0 +2 608 -1 607 -1 606 -1 605 -1 604 -1 603 -1 602 -1 601 -1 600 -1 599 -1 0 +2 609 -1 608 -1 607 -1 606 -1 605 -1 604 -1 603 -1 602 -1 601 -1 600 -1 0 +2 609 -1 608 -1 607 -1 606 -1 605 -1 604 -1 603 -1 602 -1 601 -1 600 -1 599 -1 0 +2 599 -1 0 +1 + 1 0 0 21 + 0 1 0 0 + 0 0 1 -38 +1 + 1 0 0 21 + 0 1 0 0 + 0 0 1 -1 +1 + 1 0 0 -21 + 0 1 0 0 + 0 0 1 0 +2 637 1 638 1 639 1 0 +2 639 -1 638 -1 637 -1 0 +1 + 1 0 0 -50 + 0 1 0 -0.1 + 0 0 1 -50 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 0.5 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -1 +2 643 1 644 1 0 +2 642 -1 0 +2 643 1 644 1 637 1 638 1 639 1 0 +2 639 -1 638 -1 637 -1 644 -1 643 -1 0 +1 + 1 0 0 21 + 0 1 0 0 + 0 0 1 -15 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -0.5 +2 649 1 650 1 0 +2 650 -1 649 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -15.9 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 1 +2 653 1 654 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -0.5 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -0.5 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -0.5 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -0.5 +2 656 1 657 1 658 1 659 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 6 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -2 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 1 +2 661 1 662 1 663 1 0 +2 657 1 658 1 659 1 0 +2 654 -1 653 -1 0 +2 659 -1 658 -1 657 -1 656 -1 0 +2 659 -1 658 -1 657 -1 0 +2 663 -1 662 -1 661 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 44 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -44 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 10 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -1 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -0.1 +2 670 1 671 1 672 1 673 1 674 1 0 +2 674 -1 673 -1 672 -1 671 -1 670 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 16 +2 677 1 670 1 671 1 672 1 673 1 674 1 0 +2 671 -1 670 -1 677 -1 0 +2 677 1 670 1 671 1 0 +2 677 -1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 44 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 -0.1 +2 682 1 683 1 0 +2 670 1 671 1 0 +2 682 1 683 1 672 1 673 1 674 1 0 +2 683 -1 682 -1 0 +2 673 -1 672 -1 683 -1 682 -1 0 +2 682 1 683 1 672 1 673 1 0 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 50 +1 + 1 0 0 0 + 0 1 0 0 + 0 0 1 15 +2 690 1 691 1 0 +2 690 1 691 1 674 1 0 +2 691 -1 690 -1 0 +Curve2ds 1250 +1 -1.5707963267949001 14 1 0 +2 0 0 0 -1 1 0 26 +1 3.1454388169186398 0 0 1 +1 74 24.000192308403498 1 0 +1 6.2793391438507404 0 0 1 +1 74 75.999807691596502 1 0 +1 0 0 1 0 +2 0 0 1 0 0 1 26 +1 -25 -0.10000000000000001 -1 0 +1 88 25 0 -1 +2 0 0 0 -1 1 0 24 +1 -1.5707963267949001 1 1 0 +1 -25 -0.10000000000000001 -1 0 +1 74 25 0 -1 +1 3.1459404933751198 0 0 1 +1 73 27.000217392331699 1 0 +1 3.1457593323128799 0 0 1 +1 87 26.000208334237598 1 0 +1 -25 -0.10000000000000001 -1 0 +1 109 25 0 -1 +1 -25 -0.10000000000000001 -1 0 +1 92 25 0 -1 +1 3.1454388169186398 0 0 1 +1 74 24.000192308403498 1 0 +1 6.2788374673942604 0 0 1 +1 73 72.999782607668294 1 0 +1 6.2790186284564999 0 0 1 +1 87 73.999791665762402 1 0 +1 6.2793391438507404 0 0 1 +1 74 75.999807691596502 1 0 +2 0 0 0 -1 1 0 23 +1 -1.5707963267949001 1 1 0 +2 0 0 0 -1 1 0 24 +1 -1.5707963267949001 5 1 0 +2 0 0 0 -1 1 0 23 +1 -1.5707963267949001 36 1 0 +1 0 35 1 0 +2 0 0 1 0 0 1 26 +1 -1.5707963267949001 18 1 0 +2 0 0 0 -1 1 0 26 +1 0 90 1 0 +2 0 0 1 0 0 1 32 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 -25.5 -0.10000000000000001 -1 0 +1 25.5 7 -1 0 +2 0 0 1 0 0 -1 29 +1 -3.14159265358979 0.5 1 0 +1 3.1447176586760799 0 0 1 +1 19.000156250381501 97 0 -1 +1 6.2800603020933004 0 0 1 +1 82.999843749618506 97 0 -1 +7 0 0 6 22 5 3.14159265358979 64 3.2646156225052798 64 3.3877121462803799 64 3.5107256407829199 64 3.6337392781920501 64 3.7568378786538799 64 4.0133517070209903 64 4.1469451922083698 64 4.2804147313581504 64 4.4138854869037303 64 4.54748269159965 64 4.8144629984550003 64 4.9480600180628898 64 5.0815307719432798 64 5.2150004492172499 64 5.3485941767637897 64 5.6155708318604196 64 5.7491675058043796 64 5.88263720997079 64 6.0161057655457597 64 6.1496989273647698 64 6.2831853071795898 64 + 0 7 0.23501735746602601 5 0.49000787063611001 5 0.74499758603337995 5 1 7 +7 0 0 6 22 5 6.2831853071795898 4.7123889803651799 6.1601623382641 4.7123889803651799 6.0370658144889902 4.7123889804623804 5.9140523199864603 4.7123889803036603 5.7910386825773204 4.7123889804167698 5.6679400821154999 4.7123889803846897 5.4114262537483899 4.7123889803846897 5.27783276856103 4.7123889803846799 5.1443632294111703 4.7123889803847101 5.0108924738656704 4.7123889803846799 4.8772952691697302 4.7123889803846897 4.61031496231438 4.7123889803846897 4.4767179427064798 4.7123889803846799 4.3432471888261199 4.7123889803847101 4.2097775115521197 4.7123889803846799 4.0761837840055897 4.7123889803846897 3.8092071289089602 4.7123889803846897 3.6756104549649899 4.7123889803846799 3.5421407507986 4.7123889803847199 3.4086721952236099 4.7123889803846604 3.27507903340461 4.7123889803847003 3.14159265358979 4.7123889803847003 + 0 7 0.23501735746602601 5 0.49000787063611001 5 0.74499758603337995 5 1 7 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 6.2797370244837998 0 0 1 +1 22.000172414305599 6.5 0 1 +1 25.5 -0.10000000000000001 -1 0 +1 25.5 106.5 1 0 +7 0 0 7 20 4 6.2800603020933004 4.7123889803652101 6.2800812293551997 4.7838203535414099 6.2801019602776504 4.8556981839600502 6.2801224037533201 4.9282980001432302 6.2801424548681801 5.0018600061396103 6.2801619965245701 5.0766111537067298 6.28018089845561 5.15280105965277 6.2802150622511004 5.29980996349164 6.28023048156735 5.3701998165103904 6.2802451763493403 5.4421667634797899 6.2802590139333496 5.5158968503932098 6.2802718320876201 5.5915420548917201 6.2802834445592701 5.6692380709250099 6.2803028242719998 5.8210049621506803 6.2803108663870804 5.8947129757835102 6.2803175921402197 5.9701422482820998 6.2803228171353496 6.0470994863867 6.2803263803054596 6.1252820387109104 6.2803281604319698 6.20425267723963 6.2803281604338999 6.2831853071795898 + 0 8 0.37267989255128098 6 0.70284495690860505 6 1 8 +7 0 0 7 20 4 19.0001562504399 33 18.785861084545601 33.000000021425201 18.570227928075099 33.0178588684863 18.3542087490518 33.053976522495098 18.138985916033601 33.108953737181103 17.925984832041902 33.183467757251996 17.716905541360202 33.278241393842301 17.3338141328585 33.4967519011159 17.1586548093955 33.6158762611852 16.9896317218737 33.752051933275098 16.8285756277152 33.905788580501103 16.6777736135728 34.077355561906202 16.539900329415701 34.266616609517499 16.3081324610107 34.658513034335698 16.211141002086698 34.8580514346922 16.129431877136799 35.070515389102901 16.065598715135302 35.294154063651597 16.0219494097066 35.526289798999599 16.0001428811144 35.763202110180103 16.000142857434501 36 + 0 8 0.37267989255128098 6 0.70284495690860505 6 1 8 +1 6.2793391438507404 0 0 1 +1 25.000192308403498 104.5 0 1 +7 0 0 7 20 4 6.2800603020933004 1.5707963268138101 6.2800812293551997 1.49936495363748 6.2801019602776504 1.4274871232209301 6.2801224037533201 1.35488730703558 6.2801424548681801 1.28132530103877 6.2801619965245701 1.2065741534736101 6.28018089845561 1.1303842475263699 6.2802150622511004 0.983375343687236 6.28023048156735 0.91298549067155099 6.2802451763493403 0.84101854369882401 6.2802590139333496 0.76728845678464097 6.2802718320876201 0.69164325228908596 6.2802834445592701 0.61394723625432002 6.2803028242719998 0.46218034502870098 6.2803108663870804 0.38847233139608001 6.2803175921402197 0.31304305889723499 6.2803228171353496 0.236085820792962 6.2803263803054596 0.157903268468543 6.2803281604319698 0.078932629939963306 6.2803281604338999 0 + 0 8 0.37267989254975797 6 0.70284495690768201 6 1 8 +7 0 0 7 20 4 19.000156250438199 39 18.785861084543601 38.9999999785746 18.570227928079301 38.982141131514098 18.354208749049501 38.946023477504397 18.138985916029998 38.891046262818399 17.925984832044101 38.816532242748302 17.716905541359001 38.721758606157103 17.333814132856698 38.503248098882999 17.158654809401099 38.3841237388189 16.989631721871501 38.247948066722898 16.828575627711 38.0942114194957 16.677773613575599 37.9226444380961 16.5399003294152 37.733383390481798 16.308132461010501 37.341486965663798 16.211141002086698 37.141948565307999 16.129431877136501 36.929484610895997 16.065598715135501 36.705845936349 16.021949409706501 36.473710200999797 16.0001428811144 36.236797889819897 16.000142857434501 36 + 0 8 0.37267989254975797 6 0.70284495690768201 6 1 8 +1 25.5 -0.10000000000000001 -1 0 +1 25.5 110.5 1 0 +1 3.1447176586760799 0 0 1 +1 19.000156250381501 97 0 -1 +1 6.2800603020933004 0 0 1 +1 19.000156250381501 105.5 0 1 +7 0 0 7 20 4 6.2800603020933004 4.7123889803652101 6.2800812293551997 4.7838203535414001 6.2801019602776504 4.8556981839600803 6.2801224037533201 4.9282980001432097 6.2801424548681801 5.0018600061395899 6.2801619965245701 5.0766111537067502 6.28018089845561 5.1528010596527496 6.2802150622511004 5.2998099634916596 6.28023048156735 5.37019981651033 6.2802451763493403 5.4421667634798299 6.2802590139333496 5.51589685039324 6.2802718320876201 5.5915420548916499 6.2802834445592701 5.6692380709250401 6.2803028242719998 5.8210049621507904 6.2803108663870804 5.8947129757831203 6.2803175921402197 5.97014224828275 6.2803228171353496 6.0470994863860703 6.2803263803054596 6.1252820387112701 6.2803281604319698 6.2042526772395297 6.2803281604338999 6.2831853071795898 + 0 8 0.37267989255106798 6 0.702844956908247 6 1 8 +7 0 0 7 20 4 19.0001562504399 43 18.785861084545701 43.000000021425201 18.570227928075099 43.0178588684863 18.3542087490518 43.053976522495098 18.138985916033601 43.108953737181203 17.925984832041799 43.183467757252103 17.716905541360202 43.278241393842301 17.3338141328584 43.4967519011159 17.1586548093956 43.6158762611851 16.9896317218736 43.752051933275197 16.8285756277151 43.905788580501202 16.677773613572999 44.077355561906103 16.539900329415602 44.266616609517598 16.308132461010601 44.658513034335897 16.211141002087199 44.858051434691198 16.129431877136099 45.070515389104699 16.065598715135799 45.2941540636497 16.021949409706401 45.5262897990007 16.0001428811144 45.763202110179797 16.000142857434501 46 + 0 8 0.37267989255106798 6 0.702844956908247 6 1 8 +1 -6.5 39.899999999999999 -1 0 +1 6.5 106 -1 0 +7 0 0 7 20 4 6.2800603020933004 1.5707963268138101 6.2800812293551997 1.49936495363748 6.2801019602776504 1.4274871232209001 6.2801224037533201 1.3548873070356 6.2801424548681801 1.2813253010387899 6.2801619965245701 1.2065741534735901 6.28018089845561 1.1303842475263699 6.2802150622511004 0.983375343687239 6.28023048156735 0.91298549067155499 6.2802451763493403 0.84101854369881501 6.2802590139333496 0.76728845678463997 6.2802718320876201 0.69164325228910195 6.2802834445592701 0.61394723625431502 6.2803028242719998 0.462180345028674 6.2803108663870804 0.38847233139618498 6.2803175921402197 0.31304305889707701 6.2803228171353496 0.23608582079308299 6.2803263803054596 0.15790326846849501 6.2803281604319698 0.078932629939965304 6.2803281604338999 0 + 0 8 0.37267989254978201 6 0.70284495690764603 6 1 8 +7 0 0 7 20 4 19.000156250438199 49 18.785861084543601 48.9999999785746 18.570227928079301 48.982141131514098 18.354208749049501 48.946023477504397 18.138985916029998 48.891046262818399 17.925984832044101 48.816532242748302 17.716905541359001 48.721758606157202 17.333814132856698 48.503248098882999 17.158654809401099 48.3841237388189 16.989631721871501 48.247948066722898 16.828575627711 48.0942114194957 16.677773613575599 47.9226444380961 16.5399003294152 47.733383390481798 16.308132461010398 47.341486965663698 16.211141002086901 47.141948565308098 16.129431877136302 46.929484610895898 16.0655987151356 46.7058459363491 16.021949409706501 46.473710200999797 16.0001428811144 46.236797889819897 16.000142857434501 46 + 0 8 0.37267989254978201 6 0.70284495690764603 6 1 8 +1 53 -39.899999999999999 1 0 +1 13 53 0 -1 +1 3.1447176586760799 0 0 1 +1 19.000156250381501 97 0 -1 +1 -6.5 39.899999999999999 -1 0 +1 6.5 96 -1 0 +7 0 0 7 20 4 6.2800603020933004 4.7123889803652101 6.2800812293551997 4.7838203535414001 6.2801019602776504 4.8556981839600803 6.2801224037533201 4.9282980001432204 6.2801424548681801 5.0018600061395997 6.2801619965245701 5.0766111537067502 6.28018089845561 5.1528010596527496 6.2802150622511004 5.2998099634916498 6.28023048156735 5.3701998165103602 6.2802451763493403 5.4421667634798103 6.2802590139333496 5.5158968503932204 6.2802718320876201 5.5915420548916801 6.2802834445592701 5.6692380709250196 6.2803028242719998 5.8210049621506998 6.2803108663870804 5.8947129757834098 6.2803175921402197 5.9701422482822499 6.2803228171353496 6.0470994863865801 6.2803263803054596 6.1252820387109601 6.2803281604319698 6.20425267723963 6.2803281604338999 6.2831853071795898 + 0 8 0.37267989255126399 6 0.702844956908524 6 1 8 +7 0 0 7 20 4 19.0001562504399 53 18.785861084545701 53.000000021425201 18.570227928075099 53.0178588684863 18.3542087490518 53.053976522495098 18.138985916033601 53.108953737181203 17.925984832041799 53.183467757252103 17.716905541360202 53.278241393842201 17.3338141328585 53.4967519011159 17.1586548093955 53.6158762611852 16.9896317218736 53.752051933275197 16.8285756277151 53.905788580501202 16.677773613572899 54.077355561906103 16.539900329415602 54.266616609517499 16.3081324610107 54.658513034335698 16.211141002086801 54.858051434692001 16.1294318771366 55.0705153891032 16.065598715135501 55.294154063651298 16.021949409706501 55.526289798999699 16.0001428811144 55.763202110180103 16.000142857434501 56 + 0 8 0.37267989255126399 6 0.702844956908524 6 1 8 +1 3.1447176586760799 0 0 1 +1 19.000156250381501 97 0 -1 +7 0 0 7 20 4 6.2800603020933004 1.5707963268138101 6.2800812293551997 1.49936495363748 6.2801019602776504 1.4274871232209101 6.2801224037533201 1.3548873070356 6.2801424548681801 1.28132530103878 6.2801619965245701 1.2065741534735801 6.28018089845561 1.1303842475263799 6.2802150622511004 0.98337534368723001 6.28023048156735 0.91298549067156198 6.2802451763493403 0.84101854369881501 6.2802590139333496 0.76728845678463797 6.2802718320876201 0.69164325228910795 6.2802834445592701 0.61394723625431002 6.2803028242719998 0.46218034502871103 6.2803108663870804 0.38847233139604598 6.2803175921402197 0.31304305889731998 6.2803228171353496 0.23608582079285201 6.2803263803054596 0.15790326846862399 6.2803281604319698 0.078932629939934398 6.2803281604338999 0 + 0 8 0.37267989254982098 6 0.70284495690773796 6 1 8 +7 0 0 7 20 4 19.000156250438199 59 18.785861084543601 58.9999999785746 18.570227928079198 58.982141131514098 18.354208749049601 58.946023477504397 18.138985916029998 58.891046262818399 17.925984832044001 58.816532242748302 17.716905541359001 58.721758606157202 17.333814132856599 58.503248098882999 17.158654809401199 58.384123738819 16.989631721871501 58.247948066722898 16.828575627711 58.0942114194957 16.677773613575599 57.9226444380961 16.5399003294152 57.733383390481798 16.308132461010501 57.341486965663798 16.211141002086698 57.1419485653078 16.129431877136501 56.929484610896502 16.065598715135501 56.705845936348503 16.021949409706501 56.473710201000202 16.0001428811144 56.236797889819798 16.000142857434501 56 + 0 8 0.37267989254982098 6 0.70284495690773796 6 1 8 +7 0 0 7 20 4 6.2800603020933004 1.5707963268138101 6.2800812293551997 1.49936495363748 6.2801019602776504 1.4274871232208799 6.2801224037533201 1.35488730703563 6.2801424548681801 1.2813253010388099 6.2801619965245701 1.2065741534735399 6.28018089845561 1.1303842475263901 6.2802150622511004 0.98337534368723301 6.28023048156735 0.91298549067156598 6.2802451763493403 0.84101854369881002 6.2802590139333496 0.76728845678463298 6.2802718320876201 0.69164325228911105 6.2802834445592701 0.61394723625431302 6.2803028242719998 0.46218034502873401 6.2803108663870804 0.38847233139599502 6.2803175921402197 0.313043058897362 6.2803228171353496 0.23608582079284601 6.2803263803054596 0.157903268468609 6.2803281604319698 0.078932629939940394 6.2803281604338999 0 + 0 8 0.37267989254992101 6 0.70284495690784599 6 1 8 +7 0 0 7 20 4 19.000156250438199 79 18.785861084543601 78.999999978574607 18.570227928079198 78.982141131513998 18.354208749049601 78.946023477504497 18.138985916030101 78.891046262818406 17.925984832044001 78.816532242748195 17.7169055413591 78.721758606157195 17.333814132856698 78.503248098883006 17.158654809401199 78.3841237388189 16.989631721871501 78.247948066722898 16.828575627711 78.094211419495707 16.677773613575599 77.9226444380961 16.5399003294152 77.733383390481805 16.308132461010501 77.341486965663904 16.211141002086599 77.141948565307601 16.1294318771366 76.929484610896694 16.065598715135401 76.705845936348297 16.021949409706501 76.473710201000202 16.0001428811144 76.236797889819798 16.000142857434501 76 + 0 8 0.37267989254992101 6 0.70284495690784599 6 1 8 +1 3.1447176586760799 0 0 1 +1 19.000156250381501 97 0 -1 +7 0 0 7 20 4 6.2800603020933004 4.7123889803652101 6.2800812293551997 4.7838203535414099 6.2801019602776504 4.8556981839600599 6.2801224037533201 4.9282980001432204 6.2801424548681801 5.0018600061395997 6.2801619965245701 5.0766111537067404 6.28018089845561 5.1528010596527603 6.2802150622511004 5.2998099634916498 6.28023048156735 5.3701998165103504 6.2802451763493403 5.4421667634798201 6.2802590139333496 5.5158968503932302 6.2802718320876201 5.5915420548916703 6.2802834445592701 5.6692380709250303 6.2803028242719998 5.8210049621507496 6.2803108663870804 5.8947129757832197 6.2803175921402197 5.9701422482826096 6.2803228171353496 6.0470994863861902 6.2803263803054596 6.1252820387111804 6.2803281604319698 6.2042526772395696 6.2803281604338999 6.2831853071795898 + 0 8 0.37267989255115103 6 0.70284495690836102 6 1 8 +7 0 0 7 20 4 19.0001562504399 73 18.785861084545701 73.000000021425194 18.570227928075099 73.0178588684863 18.3542087490518 73.053976522495105 18.138985916033601 73.108953737181196 17.925984832041902 73.183467757252103 17.716905541360202 73.278241393842293 17.3338141328584 73.4967519011159 17.1586548093955 73.615876261185207 16.9896317218736 73.752051933275197 16.8285756277151 73.905788580501195 16.677773613572899 74.077355561906103 16.539900329415602 74.266616609517598 16.308132461010601 74.658513034335797 16.211141002087 74.858051434691603 16.129431877136401 75.070515389104003 16.0655987151356 75.294154063650495 16.021949409706501 75.526289799000196 16.0001428811144 75.763202110179904 16.000142857434501 76 + 0 8 0.37267989255115103 6 0.70284495690836102 6 1 8 +7 0 0 7 20 4 6.2800603020933004 4.7123889803652101 6.2800812293551997 4.7838203535414001 6.2801019602776504 4.8556981839600803 6.2801224037533201 4.9282980001432097 6.2801424548681801 5.0018600061395899 6.2801619965245701 5.0766111537067502 6.28018089845561 5.1528010596527496 6.2802150622511004 5.2998099634916498 6.28023048156735 5.3701998165103797 6.2802451763493403 5.4421667634797899 6.2802590139333496 5.5158968503932 6.2802718320876201 5.5915420548916996 6.2802834445592701 5.6692380709250196 6.2803028242719998 5.8210049621506998 6.2803108663870804 5.8947129757834098 6.2803175921402197 5.9701422482822704 6.2803228171353496 6.0470994863865499 6.2803263803054596 6.1252820387109699 6.2803281604319698 6.20425267723963 6.2803281604338999 6.2831853071795898 + 0 8 0.37267989255128797 6 0.70284495690855298 6 1 8 +7 0 0 7 20 4 19.0001562504399 63 18.785861084545701 63.000000021425201 18.570227928075099 63.0178588684863 18.3542087490518 63.053976522495098 18.138985916033601 63.108953737181203 17.925984832041799 63.183467757252103 17.716905541360301 63.278241393842301 17.3338141328585 63.4967519011159 17.1586548093955 63.6158762611852 16.9896317218736 63.752051933275197 16.8285756277151 63.905788580501202 16.677773613572899 64.077355561906202 16.539900329415602 64.266616609517499 16.3081324610107 64.658513034335698 16.211141002086901 64.858051434692001 16.129431877136501 65.070515389103207 16.065598715135501 65.294154063651305 16.021949409706501 65.526289798999699 16.0001428811144 65.763202110180103 16.000142857434501 66 + 0 8 0.37267989255128797 6 0.70284495690855298 6 1 8 +1 3.1447176586760799 0 0 1 +1 19.000156250381501 97 0 -1 +7 0 0 7 20 4 6.2800603020933004 1.5707963268138101 6.2800812293551997 1.49936495363748 6.2801019602776504 1.4274871232209301 6.2801224037533201 1.35488730703558 6.2801424548681801 1.28132530103877 6.2801619965245701 1.2065741534736101 6.28018089845561 1.1303842475263699 6.2802150622511004 0.98337534368723201 6.28023048156735 0.91298549067155399 6.2802451763493403 0.841018543698828 6.2802590139333496 0.76728845678463997 6.2802718320876201 0.69164325228908397 6.2802834445592701 0.61394723625432102 6.2803028242719998 0.46218034502869099 6.2803108663870804 0.38847233139613102 6.2803175921402197 0.31304305889714101 6.2803228171353496 0.23608582079304699 6.2803263803054596 0.15790326846851099 6.2803281604319698 0.078932629939965193 6.2803281604338999 0 + 0 8 0.37267989254976103 6 0.70284495690766902 6 1 8 +7 0 0 7 20 4 19.000156250438199 69 18.785861084543601 68.999999978574706 18.570227928079301 68.982141131514098 18.354208749049501 68.946023477504397 18.138985916029998 68.891046262818406 17.925984832044101 68.816532242748295 17.716905541359001 68.721758606157195 17.333814132856698 68.503248098883006 17.158654809401199 68.3841237388189 16.989631721871501 68.247948066722898 16.828575627711 68.094211419495707 16.677773613575599 67.9226444380961 16.5399003294152 67.733383390481805 16.308132461010398 67.341486965663805 16.211141002086801 67.141948565307999 16.129431877136401 66.929484610895997 16.0655987151356 66.705845936348993 16.021949409706501 66.473710200999804 16.0001428811144 66.236797889819897 16.000142857434501 66 + 0 8 0.37267989254976103 6 0.70284495690766902 6 1 8 +1 3.14504093628558 0 0 1 +1 79.999827585694405 6.5 0 1 +7 0 0 7 20 4 3.1447176586760799 4.7123889803847003 3.14469673141418 4.7838203535662096 3.14467600049172 4.8556981839875197 3.1446555570160499 4.9282980001733501 3.1446355059011899 5.0018600061718299 3.1446159642447999 5.07661115373873 3.14459706231376 5.1528010596806197 3.1445628985182701 5.2998099635220299 3.14454747920202 5.3701998165534404 3.1445327844200301 5.4421667635258499 3.14451894683602 5.5158968504397397 3.1445061286817499 5.5915420549375199 3.1444945162100999 5.6692380709612902 3.1444751364974599 5.8210049615038804 3.1444670943809001 5.8947129790858197 3.1444603686329802 5.9701422428635 3.14445514362906 6.0470994918377796 3.1444515804671598 6.1252820344324697 3.1444498003368402 6.2042526793804296 3.1444498003349 6.2831853071795898 + 0 8 0.37267989349248298 6 0.70284495877112196 6 1 8 +7 0 0 7 20 4 82.999843749618506 33 83.214138915528693 33.0000000214294 83.429772072006699 33.017858868498202 83.645791251037494 33.0539765225125 83.861014084060002 33.1089537372075 84.074015168047595 33.183467757288597 84.283094458714601 33.278241393879703 84.666185867218701 33.496751901164501 84.841345190709205 33.615876261261498 85.010368278231198 33.752051933366403 85.171424372381694 33.9057885806033 85.322226386513506 34.077355562013899 85.4600996706438 34.266616609608803 85.691867537997894 34.658513032667599 85.788859001877796 34.858051443525902 85.870568117973093 35.070515374277697 85.934401287527606 35.294154079082297 85.978050589712893 35.526289786427697 85.9998571188856 35.7632021166025 85.999857142565503 36 + 0 8 0.37267989349248298 6 0.70284495877112196 6 1 8 +7 0 0 7 20 4 3.1447176586760799 1.5707963267949001 3.14469673141418 1.4993649536134199 3.14467600049172 1.42748712319246 3.1446555570160499 1.3548873070060601 3.1446355059011899 1.2813253010074099 3.1446159642447999 1.2065741534410399 3.14459706231376 1.1303842474992001 3.1445628985182701 0.98337534365768497 3.14454747920202 0.91298549062666401 3.1445327844200301 0.841018543653413 3.14451894683602 0.76728845673964396 3.1445061286817499 0.69164325224283996 3.1444945162100999 0.61394723621861802 3.1444751364974599 0.46218034567598498 3.1444670943809001 0.38847232809463 3.1444603686329802 0.31304306431524997 3.14445514362906 0.23608581534260101 3.1444515804671598 0.15790327274701599 3.1444498003368402 0.078932627799313204 3.1444498003349 0 + 0 8 0.372679893492039 6 0.70284495877048303 6 1 8 +7 0 0 7 20 4 82.999843749618506 39 83.214138915528594 38.9999999785706 83.429772072005505 38.982141131501997 83.645791251038005 38.946023477487302 83.861014084060997 38.891046262792202 84.074015168047097 38.816532242711503 84.283094458714004 38.721758606120602 84.666185867218402 38.503248098835698 84.841345190708097 38.384123738739397 85.010368278231894 38.247948066632802 85.171424372382205 38.094211419396302 85.322226386512 37.922644437987799 85.460099670643203 37.7333833903919 85.691867537997595 37.341486967333097 85.788859001876602 37.141948556476599 85.8705681179745 36.929484625719702 85.934401287526399 36.705845920920197 85.978050589713206 36.473710213571898 85.9998571188856 36.236797883397898 85.999857142565503 36 + 0 8 0.372679893492039 6 0.70284495877048303 6 1 8 +1 3.1454388169186398 0 0 1 +1 76.999807691596502 104.5 0 1 +1 6.2800603020933004 0 0 1 +1 82.999843749618506 97 0 -1 +7 0 0 7 20 4 3.1447176586760799 4.7123889803847003 3.14469673141418 4.7838203535662096 3.14467600049172 4.85569818398751 3.1446555570160499 4.9282980001733598 3.1446355059011899 5.0018600061718397 3.1446159642447999 5.0766111537387104 3.14459706231376 5.1528010596806304 3.1445628985182701 5.2998099635220299 3.14454747920202 5.3701998165534404 3.1445327844200301 5.4421667635258499 3.14451894683602 5.5158968504397397 3.1445061286817499 5.5915420549375199 3.1444945162100999 5.6692380709612902 3.1444751364974599 5.8210049615038804 3.1444670943809001 5.8947129790857602 3.1444603686329802 5.9701422428636004 3.14445514362906 6.0470994918377103 3.1444515804671598 6.1252820344324999 3.1444498003368402 6.2042526793804296 3.1444498003349 6.2831853071795898 + 0 8 0.37267989349244601 6 0.70284495877105801 6 1 8 +7 0 0 7 20 4 82.999843749618506 43 83.214138915528693 43.0000000214294 83.4297720720066 43.017858868498301 83.645791251037494 43.053976522512599 83.861014084060002 43.1089537372075 84.074015168047595 43.183467757288597 84.283094458714601 43.278241393879703 84.666185867218701 43.496751901164501 84.841345190709205 43.615876261261597 85.010368278231297 43.752051933366403 85.171424372381694 43.9057885806033 85.322226386513506 44.077355562013899 85.4600996706438 44.266616609608803 85.691867537997894 44.658513032667599 85.788859001877597 44.858051443525902 85.870568117973605 45.070515374277598 85.934401287527194 45.294154079082404 85.978050589713106 45.526289786427697 85.9998571188856 45.7632021166025 85.999857142565503 46 + 0 8 0.37267989349244601 6 0.70284495877105801 6 1 8 +1 3.1447176586760799 0 0 1 +1 82.999843749618506 105.5 0 1 +7 0 0 7 20 4 3.1447176586760799 1.5707963267949001 3.14469673141418 1.4993649536134099 3.14467600049172 1.4274871231924799 3.1446555570160499 1.3548873070060501 3.1446355059011899 1.2813253010073999 3.1446159642447999 1.2065741534410599 3.14459706231376 1.1303842474991901 3.1445628985182701 0.98337534365766599 3.14454747920202 0.91298549062669099 3.1445327844200301 0.84101854365339901 3.14451894683602 0.76728845673963497 3.1445061286817499 0.69164325224287604 3.1444945162100999 0.61394723621860003 3.1444751364974599 0.46218034567600702 3.1444670943809001 0.38847232809460402 3.1444603686329802 0.31304306431526602 3.14445514362906 0.23608581534261 3.1444515804671598 0.157903272746998 3.1444498003368402 0.078932627799318603 3.1444498003349 0 + 0 8 0.37267989349195801 6 0.70284495877045206 6 1 8 +7 0 0 7 20 4 82.999843749618506 49 83.214138915528594 48.9999999785706 83.429772072005406 48.982141131502097 83.645791251038005 48.946023477487302 83.861014084060997 48.891046262792202 84.074015168046998 48.816532242711602 84.283094458714004 48.721758606120602 84.666185867218402 48.503248098835698 84.841345190707997 48.384123738739603 85.010368278231894 48.247948066632802 85.171424372382205 48.094211419396203 85.3222263865119 47.922644437987898 85.460099670643203 47.7333833903919 85.691867537997496 47.341486967333203 85.788859001876801 47.1419485564764 85.870568117974202 46.929484625719901 85.934401287526697 46.705845920920098 85.978050589713106 46.473710213571898 85.9998571188856 46.236797883397998 85.999857142565503 46 + 0 8 0.37267989349195801 6 0.70284495877045206 6 1 8 +1 6.2800603020933004 0 0 1 +1 82.999843749618506 97 0 -1 +1 53 -39.899999999999999 1 0 +1 93 53 0 -1 +7 0 0 7 20 4 3.1447176586760799 4.7123889803847003 3.14469673141418 4.7838203535662096 3.14467600049172 4.85569818398751 3.1446555570160499 4.9282980001733501 3.1446355059011899 5.0018600061718397 3.1446159642447999 5.0766111537387202 3.14459706231376 5.1528010596806304 3.1445628985182701 5.2998099635220202 3.14454747920202 5.3701998165534404 3.1445327844200301 5.4421667635258597 3.14451894683602 5.5158968504397397 3.1445061286817499 5.5915420549375199 3.1444945162100999 5.6692380709612902 3.1444751364974599 5.8210049615038404 3.1444670943809001 5.8947129790859396 3.1444603686329802 5.9701422428633304 3.14445514362906 6.0470994918379199 3.1444515804671598 6.1252820344324297 3.1444498003368402 6.2042526793804402 3.1444498003349 6.2831853071795898 + 0 8 0.37267989349254899 6 0.70284495877120201 6 1 8 +7 0 0 7 20 4 82.999843749618506 53 83.214138915528693 53.0000000214294 83.4297720720066 53.017858868498202 83.645791251037494 53.053976522512599 83.861014084060002 53.1089537372075 84.074015168047595 53.183467757288597 84.283094458714601 53.278241393879703 84.666185867218701 53.496751901164501 84.841345190709205 53.615876261261597 85.010368278231297 53.752051933366502 85.171424372381694 53.9057885806033 85.322226386513506 54.077355562013899 85.4600996706438 54.266616609608803 85.691867537997794 54.6585130326675 85.788859001877896 54.8580514435262 85.870568117972894 55.070515374277299 85.934401287527805 55.294154079082702 85.978050589712893 55.526289786427597 85.9998571188856 55.763202116602599 85.999857142565503 56 + 0 8 0.37267989349254899 6 0.70284495877120201 6 1 8 +7 0 0 7 20 4 3.1447176586760799 1.5707963267949001 3.14469673141418 1.4993649536134199 3.14467600049172 1.42748712319246 3.1446555570160499 1.3548873070060601 3.1446355059011899 1.2813253010074199 3.1446159642447999 1.2065741534410399 3.14459706231376 1.1303842474992001 3.1445628985182701 0.98337534365768897 3.14454747920202 0.91298549062664502 3.1445327844200301 0.84101854365342998 3.14451894683602 0.76728845673965895 3.1445061286817499 0.69164325224281897 3.1444945162100999 0.61394723621862801 3.1444751364974599 0.46218034567602101 3.1444670943809001 0.38847232809453203 3.1444603686329802 0.31304306431539602 3.14445514362906 0.236085815342476 3.1444515804671598 0.15790327274707 3.1444498003368402 0.078932627799303698 3.1444498003349 0 + 0 8 0.372679893492116 6 0.70284495877062403 6 1 8 +7 0 0 7 20 4 82.999843749618506 59 83.214138915528594 58.9999999785706 83.429772072005505 58.982141131501997 83.645791251038005 58.946023477487302 83.861014084060997 58.891046262792202 84.074015168047097 58.816532242711503 84.283094458714004 58.721758606120602 84.666185867218402 58.503248098835698 84.841345190708097 58.384123738739397 85.010368278231894 58.247948066632901 85.171424372382205 58.094211419396302 85.322226386512 57.922644437987699 85.460099670643203 57.733383390392 85.691867537997496 57.341486967333203 85.788859001876801 57.141948556476301 85.870568117974102 56.9294846257201 85.934401287526796 56.705845920919899 85.978050589713106 56.473710213572097 85.9998571188856 56.236797883397898 85.999857142565503 56 + 0 8 0.372679893492116 6 0.70284495877062403 6 1 8 +1 6.2800603020933004 0 0 1 +1 82.999843749618506 97 0 -1 +1 6.2800603020933004 0 0 1 +1 82.999843749618506 97 0 -1 +7 0 0 7 20 4 3.1447176586760799 1.5707963267949001 3.14469673141418 1.4993649536134099 3.14467600049172 1.4274871231924799 3.1446555570160499 1.3548873070060501 3.1446355059011899 1.2813253010073999 3.1446159642447999 1.2065741534410499 3.14459706231376 1.1303842474992001 3.1445628985182701 0.98337534365770196 3.14454747920202 0.91298549062661405 3.1445327844200301 0.84101854365344098 3.14451894683602 0.76728845673968005 3.1445061286817499 0.69164325224280199 3.1444945162100999 0.61394723621863201 3.1444751364974599 0.46218034567601701 3.1444670943809001 0.38847232809455601 3.1444603686329802 0.313043064315352 3.14445514362906 0.23608581534252199 3.1444515804671598 0.15790327274704799 3.1444498003368402 0.078932627799305502 3.1444498003349 0 + 0 8 0.37267989349214098 6 0.70284495877062703 6 1 8 +7 0 0 7 20 4 82.999843749618506 79 83.214138915528594 78.9999999785706 83.429772072005406 78.982141131502104 83.645791251038005 78.946023477487302 83.861014084060997 78.891046262792202 84.074015168046998 78.816532242711602 84.283094458714004 78.721758606120602 84.666185867218303 78.503248098835698 84.841345190708196 78.384123738739405 85.010368278231795 78.247948066632901 85.171424372382106 78.094211419396302 85.322226386512 77.922644437987699 85.460099670643203 77.733383390392007 85.691867537997496 77.341486967333196 85.788859001876801 77.141948556476294 85.870568117974202 76.929484625720207 85.934401287526697 76.705845920919799 85.978050589713106 76.473710213572105 85.9998571188856 76.236797883397898 85.999857142565503 76 + 0 8 0.37267989349214098 6 0.70284495877062703 6 1 8 +7 0 0 7 20 4 3.1447176586760799 4.7123889803846897 3.14469673141418 4.7838203535661998 3.14467600049172 4.8556981839875002 3.1446555570160499 4.9282980001733501 3.1446355059011899 5.0018600061718299 3.1446159642447999 5.0766111537386998 3.14459706231376 5.1528010596806197 3.1445628985182701 5.2998099635220104 3.14454747920202 5.3701998165534404 3.1445327844200301 5.4421667635258402 3.14451894683602 5.5158968504397299 3.1445061286817499 5.5915420549375101 3.1444945162100999 5.6692380709612804 3.1444751364974599 5.8210049615038502 3.1444670943809001 5.8947129790858899 3.1444603686329802 5.9701422428633899 3.14445514362906 6.0470994918378196 3.1444515804671598 6.1252820344324901 3.1444498003368402 6.20425267938041 3.1444498003349 6.2831853071795898 + 0 8 0.37267989349250202 6 0.70284495877113495 6 1 8 +7 0 0 7 20 4 82.999843749618506 63 83.214138915528693 63.0000000214294 83.4297720720066 63.017858868498301 83.645791251037494 63.0539765225125 83.861014084060002 63.1089537372075 84.074015168047595 63.183467757288597 84.283094458714601 63.278241393879703 84.666185867218601 63.496751901164501 84.841345190709205 63.615876261261597 85.010368278231198 63.752051933366403 85.171424372381694 63.9057885806033 85.322226386513506 64.077355562013906 85.4600996706437 64.266616609608803 85.691867537997894 64.658513032667599 85.788859001877697 64.858051443526193 85.870568117973505 65.070515374277306 85.934401287527194 65.294154079082503 85.978050589713106 65.526289786427796 85.9998571188856 65.7632021166025 85.999857142565503 66 + 0 8 0.37267989349250202 6 0.70284495877113495 6 1 8 +7 0 0 7 20 4 3.1447176586760799 4.7123889803846897 3.14469673141418 4.7838203535661998 3.14467600049172 4.8556981839874904 3.1446555570160499 4.9282980001733501 3.1446355059011899 5.0018600061718299 3.1446159642447999 5.0766111537386998 3.14459706231376 5.1528010596806197 3.1445628985182701 5.2998099635220202 3.14454747920202 5.3701998165534199 3.1445327844200301 5.4421667635258499 3.14451894683602 5.5158968504397397 3.1445061286817499 5.5915420549375003 3.1444945162100999 5.6692380709612804 3.1444751364974599 5.8210049615038697 3.1444670943809001 5.89471297908573 3.1444603686329802 5.9701422428636999 3.14445514362906 6.0470994918375496 3.1444515804671598 6.1252820344325896 3.1444498003368402 6.20425267938041 3.1444498003349 6.2831853071795898 + 0 8 0.37267989349244302 6 0.70284495877106801 6 1 8 +7 0 0 7 20 4 82.999843749618506 73 83.214138915528693 73.0000000214294 83.4297720720066 73.017858868498294 83.645791251037494 73.0539765225125 83.861014084060002 73.1089537372075 84.074015168047495 73.183467757288597 84.283094458714601 73.278241393879696 84.666185867218701 73.496751901164501 84.841345190709205 73.615876261261604 85.010368278231198 73.752051933366403 85.171424372381694 73.9057885806033 85.322226386513506 74.077355562013906 85.4600996706437 74.266616609608803 85.691867537997894 74.658513032667599 85.788859001877697 74.858051443525895 85.870568117973406 75.070515374277804 85.934401287527294 75.294154079082205 85.978050589713007 75.526289786427895 85.9998571188856 75.7632021166025 85.999857142565503 76 + 0 8 0.37267989349244302 6 0.70284495877106801 6 1 8 +7 0 0 7 20 4 3.1447176586760799 1.5707963267949001 3.14469673141418 1.4993649536134199 3.14467600049172 1.42748712319246 3.1446555570160499 1.3548873070060601 3.1446355059011899 1.2813253010074099 3.1446159642447999 1.2065741534410399 3.14459706231376 1.1303842474992001 3.1445628985182701 0.98337534365768298 3.14454747920202 0.912985490626674 3.1445327844200301 0.841018543653406 3.14451894683602 0.76728845673964197 3.1445061286817499 0.69164325224285705 3.1444945162100999 0.61394723621861602 3.1444751364974599 0.46218034567601601 3.1444670943809001 0.38847232809454801 3.1444603686329802 0.31304306431538598 3.14445514362906 0.23608581534247799 3.1444515804671598 0.15790327274707899 3.1444498003368402 0.078932627799300006 3.1444498003349 0 + 0 8 0.37267989349206498 6 0.70284495877054898 6 1 8 +7 0 0 7 20 4 82.999843749618506 69 83.214138915528594 68.9999999785706 83.429772072005505 68.982141131502004 83.645791251038005 68.946023477487302 83.861014084060997 68.891046262792202 84.074015168047097 68.816532242711503 84.283094458714004 68.721758606120602 84.666185867218402 68.503248098835698 84.841345190707997 68.384123738739405 85.010368278231894 68.247948066632901 85.171424372382205 68.094211419396302 85.3222263865119 67.922644437987799 85.460099670643203 67.733383390392007 85.691867537997496 67.341486967333196 85.788859001876801 67.141948556476294 85.870568117974102 66.929484625720207 85.934401287526796 66.705845920919799 85.978050589713106 66.473710213572105 85.9998571188856 66.236797883397898 85.999857142565503 66 + 0 8 0.37267989349206498 6 0.70284495877054898 6 1 8 +1 6.2800603020933004 0 0 1 +1 82.999843749618506 97 0 -1 +1 0 100 1 0 +2 0 0 1 0 0 1 29 +1 0 0 1 0 +1 0 6.2831853071795898 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 -3.14159265358979 2 1 0 +2 0 0 -1 0 0 -1 26 +2 0 0 0 -1 1 0 26 +1 -1.5707963267949001 6 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +7 0 0 6 22 5 3.14159265358979 58 3.2646156225051901 58 3.3877121462805602 58 3.5107256407827201 58 3.63373927819221 58 3.7568378786537999 58 4.0133517070209903 58 4.1469451922083804 58 4.2804147313581504 58 4.4138854869037196 58 4.5474826915996598 58 4.8144629984549603 58 4.9480600180630097 58 5.0815307719431404 58 5.2150004492173396 58 5.3485941767637701 58 5.6155708318604498 58 5.7491675058043201 58 5.8826372099708397 58 6.0161057655457304 58 6.1496989273647698 58 6.2831853071795898 58 + 0 7 0.235017357466172 5 0.49000787063624601 5 0.74499758603343802 5 1 7 +7 0 0 6 22 5 6.2831853071795898 1.5707963268138401 6.1601623382641897 1.5707963268138401 6.0370658144888099 1.5707963267195 5.9140523199866699 1.5707963268735201 5.7910386825771596 1.5707963267637699 5.6679400821155799 1.5707963267949001 5.4114262537483899 1.5707963267949001 5.2778327685610202 1.5707963267948899 5.1443632294111898 1.5707963267949101 5.0108924738656802 1.5707963267948899 4.8772952691697196 1.5707963267949001 4.61031496231442 1.5707963267949001 4.4767179427063404 1.5707963267948799 4.3432471888262896 1.5707963267949201 4.2097775115520104 1.5707963267948799 4.0761837840056101 1.5707963267949001 3.80920712890893 1.5707963267949001 3.6756104549650699 1.5707963267948899 3.5421407507985099 1.5707963267949101 3.4086721952236601 1.5707963267948899 3.27507903340461 1.5707963267949001 3.14159265358979 1.5707963267949001 + 0 7 0.235017357466172 5 0.49000787063624601 5 0.74499758603343802 5 1 7 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 5 1 0 +2 0 0 1 0 0 1 32 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +7 0 0 6 22 5 3.14159265358979 54 3.2646156225052798 54 3.3877121462803799 54 3.5107256407829199 54 3.6337392781920501 54 3.7568378786538799 54 4.0133517070209903 54 4.1469451922083698 54 4.2804147313581504 54 4.4138854869037303 54 4.54748269159965 54 4.8144629984550003 54 4.9480600180628898 54 5.0815307719432798 54 5.2150004492172499 54 5.3485941767637897 54 5.6155708318604196 54 5.7491675058043796 54 5.88263720997079 54 6.0161057655457597 54 6.1496989273647698 54 6.2831853071795898 54 + 0 7 0.23501735746602601 5 0.49000787063611001 5 0.74499758603337995 5 1 7 +7 0 0 6 22 5 6.2831853071795898 4.7123889803651799 6.1601623382641 4.7123889803651799 6.0370658144889902 4.7123889804623804 5.9140523199864603 4.7123889803036603 5.7910386825773204 4.7123889804167698 5.6679400821154999 4.7123889803846897 5.4114262537483899 4.7123889803846897 5.27783276856103 4.7123889803846799 5.1443632294111703 4.7123889803847101 5.0108924738656704 4.7123889803846799 4.8772952691697302 4.7123889803846897 4.61031496231438 4.7123889803846897 4.4767179427064798 4.7123889803846799 4.3432471888261199 4.7123889803847101 4.2097775115521197 4.7123889803846799 4.0761837840055897 4.7123889803846897 3.8092071289089602 4.7123889803846897 3.6756104549649899 4.7123889803846799 3.5421407507986 4.7123889803847199 3.4086721952236099 4.7123889803846604 3.27507903340461 4.7123889803847003 3.14159265358979 4.7123889803847003 + 0 7 0.23501735746602601 5 0.49000787063611001 5 0.74499758603337995 5 1 7 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +2 38 40 1 0 0 -1 32 +1 -3.14159265358979 0.5 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 0 -1 +1 80 0 0 1 +1 0 0 0 -1 +1 0 0 0 1 +1 0 0 0 1 +1 0 0 1 0 +7 0 0 6 22 5 3.14159265358979 48 3.2646156225051901 48 3.3877121462805602 48 3.5107256407827201 48 3.63373927819221 48 3.7568378786537999 48 4.0133517070209903 48 4.1469451922083804 48 4.2804147313581504 48 4.4138854869037196 48 4.5474826915996598 48 4.8144629984549798 48 4.9480600180629599 48 5.0815307719431804 48 5.2150004492173201 48 5.3485941767637799 48 5.6155708318604596 48 5.7491675058042704 48 5.8826372099709303 48 6.0161057655456798 48 6.1496989273647804 48 6.2831853071795898 48 + 0 7 0.23501735746614999 5 0.49000787063619899 5 0.74499758603340405 5 1 7 +7 0 0 6 22 5 6.2831853071795898 1.5707963268138401 6.1601623382641897 1.5707963268138401 6.0370658144888099 1.5707963267195 5.9140523199866699 1.5707963268735201 5.7910386825771596 1.5707963267637699 5.6679400821155799 1.5707963267949001 5.4114262537483899 1.5707963267949001 5.2778327685610202 1.5707963267948899 5.1443632294111898 1.5707963267949101 5.0108924738656802 1.5707963267948899 4.8772952691697196 1.5707963267949001 4.6103149623144004 1.5707963267949001 4.4767179427063999 1.5707963267949001 4.3432471888262301 1.5707963267948799 4.2097775115520504 1.5707963267949001 4.0761837840056003 1.5707963267949001 3.8092071289089202 1.5707963267949001 3.6756104549650899 1.5707963267949101 3.5421407507984801 1.5707963267948799 3.40867219522368 1.5707963267949001 3.2750790334045998 1.5707963267949001 3.14159265358979 1.5707963267949001 + 0 7 0.23501735746614999 5 0.49000787063619899 5 0.74499758603340405 5 1 7 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 0 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 10 0 0 -1 +1 0 0 0 1 +7 0 0 6 22 5 3.14159265358979 44 3.2646156225052798 44 3.3877121462803799 44 3.5107256407829199 44 3.6337392781920599 44 3.7568378786538799 44 4.0133517070209903 44 4.1469451922083698 44 4.2804147313581504 44 4.4138854869037303 44 4.54748269159965 44 4.8144629984550003 44 4.9480600180628898 44 5.0815307719432798 44 5.2150004492172499 44 5.3485941767637897 44 5.6155708318604196 44 5.7491675058043796 44 5.88263720997079 44 6.0161057655457597 44 6.1496989273647698 44 6.2831853071795898 44 + 0 7 0.235017357466032 5 0.49000787063611401 5 0.74499758603338195 5 1 7 +7 0 0 6 22 5 6.2831853071795898 4.7123889803651799 6.1601623382641 4.7123889803651799 6.0370658144889999 4.7123889804623502 5.9140523199864701 4.71238898030371 5.7910386825773204 4.7123889804167503 5.6679400821154999 4.7123889803846897 5.4114262537483899 4.7123889803846897 5.27783276856103 4.7123889803846799 5.1443632294111703 4.7123889803847101 5.0108924738656704 4.7123889803846799 4.8772952691697302 4.7123889803846897 4.61031496231438 4.7123889803846897 4.4767179427064798 4.7123889803846799 4.3432471888261199 4.7123889803847101 4.2097775115521197 4.7123889803846799 4.0761837840055897 4.7123889803846897 3.8092071289089602 4.7123889803846897 3.6756104549649899 4.7123889803846799 3.5421407507986 4.7123889803847199 3.4086721952236099 4.7123889803846604 3.27507903340461 4.7123889803847003 3.14159265358979 4.7123889803847003 + 0 7 0.235017357466032 5 0.49000787063611401 5 0.74499758603338195 5 1 7 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 10 0 0 1 +1 0 0 1 0 +1 -3.14159265358979 1 1 0 +2 38 40 -1 0 0 -1 32 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 10 0 0 -1 +1 80 0 0 1 +7 0 0 6 22 5 3.14159265358979 18 3.2646156225051901 18 3.3877121462805602 18 3.5107256407827201 18 3.63373927819221 18 3.7568378786537999 18 4.0133517070209903 18 4.1469451922083804 18 4.2804147313581504 18 4.4138854869037196 18 4.5474826915996598 18 4.8144629984549798 18 4.9480600180629599 18 5.0815307719431804 18 5.2150004492173201 18 5.3485941767637799 18 5.6155708318604596 18 5.7491675058042704 18 5.8826372099709303 18 6.0161057655456798 18 6.1496989273647804 18 6.2831853071795898 18 + 0 7 0.23501735746614999 5 0.49000787063619899 5 0.74499758603340405 5 1 7 +7 0 0 6 22 5 6.2831853071795898 1.5707963268138401 6.1601623382641897 1.5707963268138401 6.0370658144888099 1.5707963267195 5.9140523199866699 1.5707963268735201 5.7910386825771596 1.5707963267637699 5.6679400821155799 1.5707963267949001 5.4114262537483899 1.5707963267949001 5.2778327685610202 1.5707963267948899 5.1443632294111898 1.5707963267949101 5.0108924738656802 1.5707963267948899 4.8772952691697196 1.5707963267949001 4.6103149623144004 1.5707963267949001 4.4767179427063999 1.5707963267949001 4.3432471888262301 1.5707963267948799 4.2097775115520504 1.5707963267949001 4.0761837840056003 1.5707963267949001 3.8092071289089202 1.5707963267949001 3.6756104549650899 1.5707963267949101 3.5421407507984801 1.5707963267948799 3.40867219522368 1.5707963267949001 3.2750790334045998 1.5707963267949001 3.14159265358979 1.5707963267949001 + 0 7 0.23501735746614999 5 0.49000787063619899 5 0.74499758603340405 5 1 7 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +7 0 0 6 22 5 3.14159265358979 38 3.2646156225051901 38 3.3877121462805602 38 3.5107256407827201 38 3.63373927819221 38 3.7568378786537999 38 4.0133517070209903 38 4.1469451922083698 38 4.2804147313581602 38 4.4138854869037303 38 4.54748269159965 38 4.8144629984549896 38 4.9480600180629102 38 5.0815307719432701 38 5.2150004492172499 38 5.3485941767638003 38 5.6155708318604596 38 5.7491675058042704 38 5.8826372099709303 38 6.0161057655456798 38 6.1496989273647804 38 6.2831853071795898 38 + 0 7 0.23501735746613001 5 0.49000787063615697 5 0.74499758603335997 5 1 7 +7 0 0 6 22 5 6.2831853071795898 1.5707963268138401 6.1601623382641897 1.5707963268138401 6.0370658144888099 1.5707963267195 5.9140523199866699 1.5707963268735201 5.7910386825771596 1.5707963267637699 5.6679400821155799 1.5707963267949001 5.4114262537483899 1.5707963267949001 5.2778327685609803 1.5707963267949101 5.1443632294112698 1.5707963267948699 5.0108924738656198 1.5707963267949101 4.8772952691697302 1.5707963267949001 4.6103149623143898 1.5707963267949001 4.47671794270651 1.5707963267949001 4.34324718882604 1.5707963267948899 4.2097775115521703 1.5707963267949001 4.0761837840055799 1.5707963267949001 3.8092071289089202 1.5707963267949001 3.6756104549650899 1.5707963267949101 3.5421407507984801 1.5707963267948799 3.40867219522368 1.5707963267949001 3.2750790334045998 1.5707963267949001 3.14159265358979 1.5707963267949001 + 0 7 0.23501735746613001 5 0.49000787063615697 5 0.74499758603335997 5 1 7 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +7 0 0 6 22 5 3.14159265358979 34 3.2646156225052798 34 3.3877121462803799 34 3.5107256407829199 34 3.6337392781920501 34 3.7568378786538799 34 4.0133517070209903 34 4.14694519220836 34 4.2804147313581797 34 4.4138854869037196 34 4.54748269159965 34 4.8144629984549798 34 4.9480600180629404 34 5.0815307719432097 34 5.2150004492172997 34 5.3485941767637799 34 5.6155708318604702 34 5.7491675058042802 34 5.8826372099708903 34 6.0161057655457002 34 6.1496989273647804 34 6.2831853071795898 34 + 0 7 0.23501735746602401 5 0.49000787063610701 5 0.74499758603334398 5 1 7 +7 0 0 6 22 5 6.2831853071795898 4.7123889803651799 6.1601623382641 4.7123889803651799 6.0370658144889902 4.7123889804623804 5.9140523199864603 4.7123889803036603 5.7910386825773204 4.7123889804167698 5.6679400821154999 4.7123889803846897 5.4114262537483899 4.7123889803846897 5.2778327685609803 4.7123889803846497 5.1443632294112804 4.7123889803847696 5.01089247386561 4.7123889803846497 4.8772952691697302 4.7123889803846897 4.6103149623144004 4.7123889803846897 4.4767179427064097 4.7123889803846799 4.3432471888262096 4.7123889803847003 4.2097775115520601 4.7123889803846799 4.0761837840056003 4.7123889803846897 3.80920712890891 4.7123889803846897 3.6756104549650801 4.7123889803847003 3.5421407507985201 4.7123889803846701 3.4086721952236601 4.7123889803847003 3.2750790334045998 4.7123889803846897 3.14159265358979 4.7123889803846897 + 0 7 0.23501735746602401 5 0.49000787063610701 5 0.74499758603334398 5 1 7 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +7 0 0 6 22 5 3.14159265358979 24 3.2646156225052798 24 3.3877121462803701 24 3.5107256407829501 24 3.6337392781920301 24 3.7568378786538901 24 4.0133517070209903 24 4.1469451922083502 24 4.2804147313582002 24 4.4138854869037001 24 4.5474826915996598 24 4.8144629984550198 24 4.9480600180628498 24 5.0815307719433198 24 5.2150004492172304 24 5.3485941767638003 24 5.6155708318604702 24 5.7491675058042802 24 5.8826372099708903 24 6.0161057655457002 24 6.1496989273647804 24 6.2831853071795898 24 + 0 7 0.235017357465967 5 0.49000787063600199 5 0.74499758603327704 5 1 7 +7 0 0 6 22 5 6.2831853071795898 4.7123889803651799 6.1601623382641 4.7123889803651799 6.0370658144890204 4.71238898046236 5.9140523199864203 4.7123889803036798 5.7910386825773497 4.7123889804167698 5.6679400821154902 4.7123889803846897 5.4114262537483899 4.7123889803846897 5.27783276856099 4.7123889803846497 5.14436322941126 4.7123889803847501 5.0108924738656402 4.7123889803846604 4.8772952691697196 4.7123889803846897 4.6103149623143604 4.7123889803846897 4.4767179427065198 4.7123889803846604 4.34324718882608 4.7123889803847403 4.2097775115521303 4.7123889803846604 4.0761837840055799 4.7123889803846897 3.80920712890891 4.7123889803846897 3.6756104549650801 4.7123889803847003 3.5421407507985201 4.7123889803846701 3.4086721952236601 4.7123889803847003 3.2750790334045998 4.7123889803846897 3.14159265358979 4.7123889803846897 + 0 7 0.235017357465967 5 0.49000787063600199 5 0.74499758603327704 5 1 7 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +7 0 0 6 22 5 3.14159265358979 28 3.2646156225051901 28 3.3877121462805602 28 3.5107256407827201 28 3.63373927819221 28 3.7568378786537999 28 4.0133517070209903 28 4.1469451922083902 28 4.2804147313581398 28 4.4138854869037401 28 4.54748269159965 28 4.8144629984549701 28 4.9480600180629999 28 5.0815307719431404 28 5.2150004492173503 28 5.3485941767637701 28 5.6155708318604596 28 5.7491675058042704 28 5.8826372099709303 28 6.0161057655456798 28 6.1496989273647804 28 6.2831853071795898 28 + 0 7 0.235017357466171 5 0.49000787063624002 5 0.74499758603343202 5 1 7 +7 0 0 6 22 5 6.2831853071795898 1.5707963268138401 6.1601623382641897 1.5707963268138401 6.0370658144888099 1.5707963267195 5.9140523199866699 1.5707963268735201 5.7910386825771596 1.5707963267637699 5.6679400821155799 1.5707963267949001 5.4114262537483899 1.5707963267949001 5.2778327685610602 1.5707963267949001 5.1443632294111303 1.5707963267948799 5.0108924738656997 1.5707963267949001 4.8772952691697302 1.5707963267949001 4.6103149623144102 1.5707963267949001 4.4767179427063297 1.5707963267948799 4.3432471888263304 1.5707963267949301 4.2097775115519802 1.5707963267948799 4.0761837840056101 1.5707963267949001 3.8092071289089202 1.5707963267949001 3.6756104549650899 1.5707963267949101 3.5421407507984801 1.5707963267948799 3.40867219522368 1.5707963267949001 3.2750790334045998 1.5707963267949001 3.14159265358979 1.5707963267949001 + 0 7 0.235017357466171 5 0.49000787063624002 5 0.74499758603343202 5 1 7 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 80 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 20 1 0 +2 0 0 1 0 0 1 10 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +2 0 0.01 0 -1 -1 0 5 +1 -1.5707963267949001 19 1 0 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +2 0 0 1 0 0 1 10 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 12 0.29795897113271502 -1 0 +1 3.34295057438012 0 0 1 +2 -9.5 2 0 1 1 0 10 +1 1.5707963267949001 2 1 0 +2 -9.5 2 0 1 1 0 10 +1 1.5707963267949001 12 1 0 +1 12 0.29795897113271502 -1 0 +1 2.94023473279946 0 0 1 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +2 0 0.01 0 -1 -1 0 5 +1 -1.5707963267949001 39 1 0 +1 0 0 0 1 +1 0 0 1 0 +1 1 0 0 1 +7 0 0 7 14 3 0 100.916994755742 0 100.898044239144 0 100.87950232643399 0 100.86115536546301 0 100.842969820335 0 100.825162356208 0 100.807876324209 0 100.774449104772 0 100.758307037842 0 100.742787677012 0 100.727821655856 0 100.71319235358401 0 100.698532794779 0 100.683346173608 + 0 8 0.5 6 1 8 +1 10 0 0 1 +1 0 0 1 0 +1 1.2945696960313 0 0 1 +1 0 100.916994755742 1 0 +1 1 0 0 1 +7 0 0 7 26 5 10 100.916994755742 10 100.912781849091 9.9999999999998597 100.908555439046 10.0000000000003 100.904313560883 9.9999999999997602 100.900054841976 10.000000000000099 100.89577850182 9.9999999999999591 100.89148435200001 10 100.882861240433 9.9999999999998597 100.878532342037 10.000000000000201 100.874186646054 9.9999999999997797 100.86982525462599 10.000000000000099 100.86544982704901 9.9999999999999805 100.861062579731 10 100.847873699212 9.9999999999999307 100.83904482705 10.000000000000099 100.830201237533 9.9999999999999805 100.821372019918 10 100.81258879252 10 100.803880710256 10 100.778046996187 9.9999999999999503 100.761211730482 10.000000000000099 100.744938048187 9.9999999999999307 100.72927820807 10 100.714042600488 9.9999999999999893 100.69887339103499 10 100.683346173608 + 0 8 0.125 6 0.25 6 0.5 6 1 8 +1 0 4.7123889803846897 1 0 +2 111.5 2 -0.97979589711668502 0.199999999983276 -0.199999999983276 -0.97979589711668502 11 +1 10 0 0 1 +1 0 4 1 0 +1 0 4.7123889803846897 1 0 +2 111.5 2 -0.97979589711668502 0.199999999983276 -0.199999999983276 -0.97979589711668502 11 +1 0 0 0 1 +1 0 4 1 0 +1 1 0 0 1 +7 0 0 7 14 3 0 100.916994755742 0 100.89804423746899 0 100.87950232559299 0 100.86115536003101 0 100.84296982066 0 100.825162349012 0 100.807876320302 0 100.774449100015 0 100.75830703522399 0 100.74278767185 0 100.727821653806 0 100.71319235729401 0 100.698532794068 0 100.683346173608 + 0 8 0.5 6 1 8 +1 1.2945696960313 0 0 1 +1 0 100.916994755742 1 0 +1 1 0 0 1 +7 0 0 7 26 5 10 100.916994755742 10 100.912781849092 9.9999999999998597 100.908555439045 10.0000000000003 100.90431356088401 9.9999999999997602 100.90005484197501 10.000000000000099 100.895778501821 9.9999999999999591 100.89148435200001 10 100.882861240434 9.9999999999998597 100.878532342037 10.000000000000201 100.874186646054 9.9999999999997797 100.86982525462599 10.000000000000099 100.86544982704901 9.9999999999999805 100.86106257973201 10 100.847873699212 9.9999999999999307 100.839044827051 10.000000000000099 100.83020123753199 9.9999999999999805 100.821372019919 10 100.81258879252 10 100.803880710257 10 100.778046996187 9.9999999999999503 100.761211730482 10.000000000000099 100.744938048188 9.9999999999999307 100.729278208069 10 100.71404260048899 9.9999999999999893 100.69887339103499 10 100.683346173608 + 0 8 0.125 6 0.25 6 0.5 6 1 8 +7 0 0 7 8 2 7.7715611723760997e-016 0 0.17229219690158001 0 0.35620439349128402 0 0.54894022126526099 0 0.74562947486423203 0 0.93836530269583496 0 1.12227749912972 0 1.2945696960313 0 + 0 8 1 8 +8 0 1 +1 0 0 1 0 +1 0 0 0 1 +7 0 0 5 98 25 3.4178192843533899 2.5 3.4178192843533899 2.4846835190317198 3.41779104173321 2.4695473633728899 3.4177359516335102 2.4545944789748 3.4176553209887599 2.43982615955301 3.41744447800468 2.4105319570691699 3.4173138402058099 2.3960093161121301 3.41715968201542 2.38167475380672 3.4169831397850201 2.3675272912954299 3.41658586518205 2.33949795874751 3.41636481013852 2.3256189022159202 3.4161231406828598 2.3119262712153699 3.41586181105848 2.2984176048428302 3.4152995993711799 2.27166978976804 3.4149984552557999 2.25843317562089 3.4146791217146002 2.24537720582294 3.41434237610367 2.2324985349139399 3.4136329771925502 2.2070002186772202 3.4132600904096702 2.1943830093258501 3.4128709503192201 2.1819383533642398 3.4124661709161801 2.1696624611098301 3.4116232419339401 2.1453493606310601 3.4111848642785798 2.1333146522596498 3.4107317013480798 2.12144346516981 3.4102642204801898 2.10973189019322 3.4092972907652399 2.0865212473486698 3.4087976024217399 2.0750248683431498 3.4082841625389801 2.06368305716633 3.4077573088845101 2.0524920310473198 3.4066719257031299 2.03029387447183 3.40611313269229 2.01928971146745 3.4055412235102098 2.0084320084224601 3.40495642531969 1.9977173186046 3.40375438990749 1.97644366601084 3.4031368540186002 1.96588800771669 3.4025064777143301 1.95547218013236 3.4018633893821901 1.94519322353385 3.4005430319347201 1.92476585802947 3.3998654180605201 1.91462113171246 3.3991749109347502 1.9046116116616501 3.3984715536357699 1.8947349825111199 3.3970280300626001 1.8750924662877 3.39628746306636 1.8653306812975301 3.3955336507702798 1.85570199318761 3.3947665634289801 1.84620488850825 3.39319218664795 1.82730942485158 3.39238443193112 1.81791563494288 3.3915628088863499 1.80865587484648 3.3907272269913098 1.7995296000838099 3.3889590901744899 1.78081557891224 3.3880241641114299 1.7712503374797199 3.38707264662234 1.76184108495346 3.3861043706076899 1.75258859171158 3.3841765277737199 1.73479345395957 3.38321839606335 1.7262374178962101 3.3822445882791401 1.71782764208842 3.3812549322316299 1.7095661386061101 3.3792699263892101 1.69355762891029 3.3782754069290899 1.6858028153803399 3.3772655236756002 1.67819360865728 3.3762401120341798 1.67073308241223 3.37413825383332 1.65597879999797 3.3730612103411199 1.6486908519431001 3.3719677054738 1.6415649610480401 3.3708575769032101 1.6346056792427299 3.3685841342549701 1.62091250089561 3.3674202317791599 1.6141846460904701 3.36623880511066 1.6076401464364101 3.36503971631952 1.60128521329278 3.36277258265457 1.58981148606871 3.36170907345018 1.5846425721938 3.3606322479457802 1.5796244940575299 3.3595420515038699 1.57476211407265 3.3573338700438802 1.5653551254122 3.3562158621860898 1.5608108017879501 3.3550843899966099 1.55643301176976 3.35393944607398 1.55222744366906 3.3517509210410701 1.54461886215318 3.35071015460354 1.54117854588586 3.3496587663569102 1.5378835290739701 3.34859679515271 1.5347383446948899 3.3464412125927701 1.52872764077126 3.3453473929508699 1.5258651901184299 3.34424290986161 1.5231653452332501 3.34312786143572 1.5206332656683801 3.3408541803293601 1.5158678129276699 3.3396951226856402 1.5136414988278499 3.3385253483449802 1.5116011228638999 3.33734504061588 1.5097526432745401 3.3350611304439401 1.5065866121904301 3.3339591417556802 1.5052380175512301 3.33284865617268 1.50406115188331 3.3317298967355602 1.5030608826459999 3.3293859825712899 1.50135768216981 3.32815949220437 1.5006850419529001 3.32692400927982 1.5002303955271299 3.3256799437061 1.5 3.3244277905827002 1.5 + 0 6 0.040099905557437497 4 0.080548941488914394 4 0.121302649574392 4 0.16233958108360599 4 0.20366226380580801 4 0.24529608526125099 4 0.28728689017495801 4 0.32969783695436 4 0.37260578185410198 4 0.41609721082407702 4 0.46026353353147897 4 0.50519539488713305 4 0.55376685639189804 4 0.60023800608618005 4 0.64549097673320199 4 0.69159813110431001 4 0.73850862303907205 4 0.77899666732106099 4 0.81952053904117095 4 0.85555734813302897 4 0.89195034526454897 4 0.92907789768065596 4 0.963171395364531 4 1 6 +7 0 0 6 12 3 0.38419305776617102 3.14159265358979 0.38419305776617102 3.2594437837875598 0.38419305776616902 3.3841983567148199 0.38419305776617202 3.5151413716589999 0.38419305776617002 3.6508494091543602 0.38419305776617102 3.7889196296307701 0.38419305776617002 4.0650620043124102 0.38419305776617202 4.20313222580935 0.38419305776616802 4.3388402605237903 0.38419305776617302 4.4697832779315299 0.38419305776617002 4.5945378501869101 0.38419305776617102 4.7123889803846897 + 0 7 0.5 5 1 7 +8 0 1 +1 0 1 1 0 +1 8.8817841970012405e-016 0 0 1 +1 3.4178192843533801 2.5 0 1 +7 0 0 7 8 2 9.9920072216264108e-016 10 0.17229219690158201 10 0.35620439349127703 9.9999999999998508 0.54894022126526598 10.0000000000003 0.74562947486422804 9.9999999999997495 0.93836530269583895 10.000000000000099 1.12227749912972 9.9999999999999698 1.2945696960313 10 + 0 8 1 8 +8 0 1 +1 0 0 1 0 +1 0 0 0 1 +7 0 0 5 94 24 3.4178192843533899 12.5 3.4178192843533899 12.515707479236999 3.4177895814079 12.5312949826415 3.4177311530267298 12.546756257616201 3.4176449511696601 12.5620863822204 3.41741976162626 12.592349182598801 3.41728122313924 12.6072841050461 3.4171171501468001 12.6220826123952 3.4169283826270198 12.6367420142233 3.41650490920301 12.6656503873439 3.41627062481574 12.6799018346252 3.4160136152194598 12.6940129869019 3.4157345911297301 12.707982783853801 3.4151363566297501 12.735521778173799 3.41481750622096 12.749093357130601 3.4144782871569301 12.762525038416401 3.4141192776784801 12.7758168901149 3.4133654763833201 12.802025840747 3.4129709650846101 12.8149449607879 3.4125579697959001 12.827727180558901 3.41212694114214 12.8403732873137 3.41123206562244 12.8653266370992 3.4107684120858002 12.8776353479542 3.41028769837264 12.889811434219901 3.4097902569203602 12.9018560350287 3.4087640893522 12.925647369481 3.4082354668268899 12.9373949051741 3.4076907737832101 12.949014275215299 3.4071302355236801 12.9605067237346 3.4059780424333201 12.9832358425396 3.4053864003162899 12.9944725968078 3.4047792757280901 13.005584982460499 3.4041567984838701 13.016574102633101 3.40287962237353 13.0383364864566 3.40222484338666 13.0491090904285 3.40155480177016 13.059759721570201 3.4008695438254701 13.070289116868 3.39948810970257 13.090816665618201 3.3987927692786899 13.100821438161899 3.3980830622312399 13.1107125402175 3.39735896703636 13.1204901218346 3.3958755615723102 13.1399008937542 3.39511600320143 13.1495321160488 3.3943417077895801 13.159047540919399 3.39355260263395 13.168446626375401 3.3919354217520201 13.1871160407287 3.3911070053255998 13.196383674701201 3.39026324650384 13.2055303868851 3.3894040334899902 13.2145547540814 3.3876422925057601 13.232478689054201 3.3867393296109101 13.2413747749395 3.3858202203297001 13.250141180723199 3.3848848277221699 13.258775403977801 3.3829660664204502 13.2759084596712 3.38198217272596 13.284402956317299 3.38098117863571 13.292754710665299 3.3799629389879602 13.3009599344816 3.3778739056622502 13.3172068310935 3.3768025111506499 13.3252432738844 3.3757129811520401 13.333118944172799 3.37460518376942 13.3408285583949 3.3723331110416099 13.356035720369 3.3711681876116 13.3635271907653 3.3699841133943398 13.3708343244612 3.3687807948842101 13.3779501349022 3.3663151829335001 13.3918990073852 3.36505224158824 13.398725377916699 3.36376929231611 13.4053379825808 3.3624663201347098 13.411727981215099 3.35980129353542 13.424132681852999 3.3584386580464498 13.430140619551899 3.3570555094350398 13.4358996637523 3.35565196207037 13.4413990630818 3.3530753827931501 13.450860890753701 3.3519093053115601 13.4549166601905 3.35073009680967 13.458788632070901 3.3495379069875 13.46247044203 3.3471996721183199 13.469233147588399 3.3460551030908299 13.472336763784501 3.3448993971624699 13.4752608472344 3.3437327630043399 13.477999718705099 3.3413761238106998 13.483099846752401 3.3401860819849198 13.485460442599701 3.3389855960691999 13.4876235448762 3.3377749794673002 13.489583208563101 3.3353367797403402 13.4930801087296 3.3341092371909999 13.4946182159609 3.33287235716262 13.4959418878015 3.3316265786350798 13.4970452006638 3.32919730167511 13.4987442847982 3.3280148265796701 13.4993676621287 3.3268254163358901 13.4997877748424 3.3256295540096801 13.5 3.3244277905827002 13.5 + 0 6 0.0462455633780023 4 0.092102972749340997 4 0.13755449764282099 4 0.18262160994979701 4 0.227359738790962 4 0.27185237149071301 4 0.31620523893743002 4 0.36054091138286498 4 0.404993792264293 4 0.448209178595322 4 0.49179551400524102 4 0.53587855676249496 4 0.58057410297953005 4 0.625979856383587 4 0.67216520738826802 4 0.71915896563691795 4 0.76693580883103096 4 0.81540332199514898 4 0.85464861730869202 4 0.89155849730080505 4 0.92853213523237399 4 0.96542880978193002 4 1 6 +7 0 0 6 12 3 0.38419305776617102 3.14159265358979 0.38419305776617102 3.2594437837875598 0.38419305776616902 3.3841983567148302 0.38419305776617202 3.5151413716589901 0.38419305776617002 3.65084940915437 0.38419305776617102 3.7889196296307799 0.38419305776617002 4.0650620043123897 0.38419305776617202 4.2031322258093997 0.38419305776616802 4.3388402605237397 0.38419305776617302 4.4697832779315396 0.38419305776617002 4.5945378501869101 0.38419305776617102 4.7123889803846897 + 0 7 0.5 5 1 7 +8 0 1 +1 0 1 1 0 +7 0 0 6 12 3 0.018522783780352998 3.14159265358979 0.018522783780352998 3.2594437837875598 0.018522783780352901 3.3841983567148399 0.018522783780353099 3.5151413716589701 0.018522783780352901 3.65084940915437 0.018522783780352998 3.7889196296307701 0.018522783780352998 4.0650620043123897 0.018522783780352901 4.2031322258093402 0.018522783780352998 4.3388402605238401 0.018522783780352901 4.4697832779314304 0.018522783780352998 4.5945378501869296 0.018522783780352998 4.7123889803846897 + 0 7 0.5 5 1 7 +8 0 1 +1 0 1 1 0 +1 0 3.14159265358979 1 0 +1 2.9402347328165299 13.5 1 0 +7 0 0 6 12 3 0.018522783780352998 3.14159265358979 0.018522783780352998 3.2594437837875598 0.018522783780352901 3.3841983567148 0.018522783780353099 3.5151413716590398 0.018522783780352901 3.65084940915431 0.018522783780352998 3.7889196296307999 0.018522783780352998 4.0650620043123498 0.018522783780352901 4.2031322258094104 0.018522783780352998 4.3388402605237602 0.018522783780352901 4.4697832779314703 0.018522783780352998 4.5945378501869296 0.018522783780352998 4.7123889803846897 + 0 7 0.5 5 1 7 +8 0 1 +1 0 1 1 0 +1 0 3.14159265358979 1 0 +1 2.9402347328165299 1.5 1 0 +7 0 0 7 8 2 7.7715611723760997e-016 0 0.17229219690158101 0 0.35620439349128802 0 0.548940221265238 0 0.74562947486425601 0 0.93836530269582497 0 1.12227749912972 0 1.2945696960313 0 + 0 8 1 8 +8 0 1 +1 0 0 1 0 +1 0 0 0 1 +7 0 0 5 94 24 2.8653660228261999 2.5 2.8653660228261999 2.4841528651795302 2.86539625633913 2.4684987684528301 2.8654551780875401 2.4530409702112501 2.86554134401963 2.4377808410084398 2.86576651078814 2.4075211013049098 2.8659059779566798 2.39252506390361 2.86607046126294 2.37773039273022 2.8662587130698398 2.3631358928145101 2.8666821230939199 2.3342318476846202 2.8669176326682999 2.3199253918663101 2.8671749735649699 2.3058181080718798 2.8674531068301099 2.29190715949784 2.8680512360931201 2.2643730096335601 2.8683715175940598 2.2507525957654599 2.8687109990091599 2.2373246215822902 2.8690688426899 2.2240852979991401 2.8698225033481402 2.1978812371782501 2.8702185767461499 2.1849191984215102 2.8706317770784899 2.1721404263633501 2.8710614512652 2.1595406819865501 2.8719561592014 2.1345920052192802 2.8724214465232598 2.1222458692980801 2.8729023187443499 2.1100729462216301 2.8733982873349202 2.09806891450885 2.8744242678514902 2.0742819167820099 2.87495454948216 2.0625019853586202 2.8754993636214201 2.0508854837552799 2.8760583661795298 2.0394282857535599 2.8772103578933201 2.0167031394701498 2.8778036477300502 2.0054385593972301 2.8784108631349699 1.9943287687359399 2.8790317856672001 1.9833700595613999 2.88029796689138 1.96179502259696 2.88094310745177 1.9511774210059001 2.8816015179153398 1.9407029397933799 2.8822730900576201 1.9303686399283999 2.8837443502392501 1.9084575739056 2.8845482280891601 1.89692483543208 2.8853693065104302 1.88556988850288 2.8862075677481198 1.8743896168676899 2.88799280247604 1.85141812680671 2.8889428953122098 1.8396581396877001 2.8899133814973901 1.8280987274923901 2.8909043873855498 1.8167380517312 2.8929186215920502 1.7945140953201399 2.8939414753141302 1.7836472464031601 2.8949848292262499 1.7729742544088001 2.8960489046951401 1.7624956642349201 2.8981107668396202 1.7429564075075199 2.8991045773246999 1.7338585695858 2.9001155682415898 1.7249209484924499 2.9011439354204001 1.71614560757121 2.9032306313289902 1.6989680647559999 2.90428878414223 1.6905642259342299 2.9053645484372699 1.68232671741032 2.90645812765711 1.67425916128437 2.9085911746568298 1.65911290991492 2.9096278374517399 1.6520070816630501 2.91067987050095 1.64505192415796 2.91174742260498 1.6382514476908201 2.91385419302711 1.6253347685927 2.9148917334226798 1.61920150750744 2.9159433736216198 1.61321433188033 2.9170092187702501 1.6073775827732599 2.91918886080316 1.5959127341035899 2.9203031737433802 1.59029025010478 2.9214323968546498 1.5848336908407401 2.9225766046325301 1.5795486399049401 2.92477595204562 1.5698586592796699 2.9258281591320698 1.5654190991686101 2.9268925073731999 1.5611269136578401 2.9279690128807698 1.5569868361521899 2.9301741065183702 1.54891939765805 2.9313033217769302 1.5450001591528599 2.9324453110224802 1.5412516804327201 2.9336000364048398 1.5376797839310099 2.93586588195785 1.5311016501539201 2.9369755492963101 1.52807446356351 2.9380963707524801 1.52521424162698 2.9392282527836802 1.52252639573327 2.9416606402017802 1.51718449274528 2.9429641330335699 1.5145790994317501 2.9442813576449001 1.51220855479266 2.9456120619147499 1.51008139634156 2.9481718867828302 1.5065098885891199 2.9493986263177598 1.5050198289991199 2.9506358706140499 1.5037427991254699 2.9518833081629601 1.5026855208655301 2.95424927626296 1.5011221636263199 2.95536562751693 1.5005657259449501 2.9564893364232701 1.5001901103747499 2.95762008985785 1.5 2.9587575165968798 1.5 + 0 6 0.041489200739118298 4 0.083350133285974001 4 0.125534858217589 4 0.16802192270003299 4 0.21081726699165301 4 0.25395268602285198 4 0.29748282160366801 4 0.34148132100578399 4 0.385288771868879 4 0.435616739549813 4 0.49031382516684002 4 0.54451477954025096 4 0.59330920744109195 4 0.64186080012923596 4 0.68647500395018202 4 0.72863230664180101 4 0.77154514498825399 4 0.81004763353957099 4 0.84953255694862395 4 0.88668582103210003 4 0.92861026263871904 4 0.96654575159215805 4 1 6 +1 8.8817841970012405e-016 0 0 1 +1 2.8653660228261999 2.5 0 1 +7 0 0 7 8 2 7.7715611723760997e-016 10 0.17229219690158101 10 0.35620439349128802 9.9999999999998508 0.548940221265238 10.0000000000003 0.74562947486425601 9.9999999999997495 0.93836530269582497 10.000000000000099 1.12227749912972 9.9999999999999698 1.2945696960313 10 + 0 8 1 8 +8 0 1 +1 0 0 1 0 +1 0 0 0 1 +7 0 0 5 94 24 2.8653660228261999 12.5 2.8653660228261999 12.515707479236999 2.86539572577168 12.5312949826415 2.8654541541528502 12.546756257616201 2.86554035600992 12.5620863822204 2.8657655455533302 12.592349182598801 2.8659040840403498 12.6072841050461 2.8660681570327902 12.6220826123952 2.8662569245525602 12.6367420142233 2.8666803979765798 12.665650387343801 2.8669146823638498 12.6799018346253 2.86717169196013 12.6940129869018 2.8674507160498499 12.707982783853801 2.8680489505498401 12.735521778173799 2.8683678009586302 12.7490933571307 2.8687070200226499 12.762525038416401 2.8690660295010999 12.7758168901149 2.8698198307962599 12.802025840747 2.8702143420949802 12.814944960788001 2.8706273373836901 12.827727180558799 2.8710583660374498 12.8403732873137 2.8719532415571498 12.8653266370992 2.8724168950937901 12.8776353479542 2.8728976088069502 12.88981143422 2.87339505025923 12.9018560350287 2.87442121782738 12.925647369481 2.8749498403526998 12.9373949051742 2.8754945333963802 12.949014275215299 2.8760550716559101 12.9605067237346 2.8772072647462701 12.9832358425396 2.8777989068632999 12.9944725968078 2.8784060314515001 13.005584982460499 2.8790285086957201 13.0165741026332 2.8803056848060602 13.0383364864566 2.8809604637929298 13.0491090904285 2.8816305054094302 13.059759721570201 2.8823157633541201 13.070289116868 2.8836971974770198 13.090816665618201 2.8843925379008999 13.100821438161899 2.8851022449483499 13.1107125402175 2.8858263401432298 13.1204901218346 2.88730974560728 13.1399008937542 2.88806930397815 13.1495321160488 2.8888435993900101 13.159047540919399 2.8896327045456398 13.168446626375401 2.8912498854275701 13.1871160407287 2.89207830185399 13.196383674701201 2.89292206067574 13.2055303868851 2.8937812736895898 13.2145547540814 2.8955430146738199 13.232478689054201 2.8964459775686802 13.2413747749395 2.8973650868498799 13.250141180723199 2.8983004794574199 13.258775403977801 2.9002192407591401 13.2759084596712 2.90120313445362 13.284402956317299 2.9022041285438802 13.292754710665299 2.9032223681916198 13.3009599344816 2.90531140151734 13.3172068310935 2.9063827960289399 13.3252432738844 2.9074723260275501 13.333118944172901 2.9085801234101698 13.3408285583949 2.9108521961379799 13.356035720369 2.91201711956798 13.3635271907653 2.9132011937852398 13.3708343244612 2.9144045122953801 13.3779501349022 2.9168701242460799 13.3918990073852 2.91813306559136 13.398725377916801 2.91941601486347 13.4053379825808 2.92071898704488 13.411727981215099 2.9233840136441702 13.4241326818531 2.92474664913314 13.430140619552001 2.9261297977445402 13.4358996637523 2.92753334510921 13.4413990630818 2.9301099243864299 13.450860890753701 2.9312760018680399 13.4549166601906 2.93245521036991 13.458788632070799 2.93364740019208 13.46247044203 2.9359856350612801 13.469233147588399 2.9371302040887302 13.4723367637844 2.9382859100171301 13.4752608472344 2.9394525441752402 13.477999718705099 2.94180918336889 13.483099846752401 2.9429992251946699 13.4854604425998 2.9441997111103801 13.4876235448762 2.9454103277122901 13.489583208563101 2.9478485274392501 13.4930801087296 2.9490760699885801 13.4946182159609 2.9503129500169698 13.4959418878015 2.9515587285445002 13.4970452006638 2.9539880055044798 13.4987442847982 2.9551704805999099 13.4993676621287 2.9563598908437099 13.4997877748424 2.9575557531698999 13.5 2.9587575165968798 13.5 + 0 6 0.0462455633784222 4 0.092102972750156401 4 0.13755449764372599 4 0.18262160995094201 4 0.227359738792105 4 0.27185237149185298 4 0.316205238938502 4 0.36054091138382699 4 0.40499379226523102 4 0.44820917859625597 4 0.49179551400607502 4 0.53587855676332696 4 0.58057410298023804 4 0.62597985638426801 4 0.67216520738879404 4 0.719158965637262 4 0.76693580883110102 4 0.81540332199507104 4 0.85464861730841102 4 0.89155849730067405 4 0.92853213523215705 4 0.965428809781818 4 1 6 +1 0 22.5 1 0 +2 0 0 1 0 0 1 10 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +1 0 0 1 0 +2 0 0 1 0 0 1 10 +2 0 0 0 -1 1 0 8 +1 -1.5707963267949001 23.001000000000001 1 0 +2 0 0 0 -1 1 0 8 +1 -1.5707963267949001 0.500999999999998 1 0 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +1 0 20 1 0 +2 0 0 1 0 0 1 20 +1 -25 -0.10000000000000001 -1 0 +1 144 25 0 -1 +2 0 0 0 -1 1 0 14 +1 -1.5707963267949001 29.100000000000001 1 0 +1 3.1465926744233599 0 0 1 +1 124 30.000250001562499 1 0 +1 6.2781852863460204 0 0 1 +1 124 69.999749998437494 1 0 +1 0 0 1 0 +2 0 0 1 0 0 1 20 +1 3.1487355714726299 0 0 1 +1 114.90000000000001 36.0003571474127 1 0 +1 -25 -0.10000000000000001 -1 0 +1 124 25 0 -1 +1 6.2760423892967498 0 0 1 +1 114.90000000000001 63.9996428525873 1 0 +2 0 0 0 -1 1 0 14 +1 -1.5707963267949001 9.0999999999999908 1 0 +1 4 0 0 -1 +1 0 0 0 1 +1 4 0 0 1 +1 0 90 1 0 +1 4 0 0 -1 +1 100 0 0 1 +1 4 0 0 1 +1 0 0 1 0 +1 12 3.5 0 1 +1 3 3.5 0 -1 +1 6 7 -1 0 +1 3 -6 0 -1 +1 6 83 -1 0 +1 3 -6 0 -1 +1 92 3.5 0 1 +1 3 3.5 0 -1 +1 0 0 1 0 +1 0 0 1 0 +1 0 -90 1 0 +1 0 0 1 0 +1 0 0 0 -1 +1 0 0 0 1 +1 0 0 0 1 +1 0 90 1 0 +1 0 -90 1 0 +1 0 100 1 0 +1 0 0 1 0 +1 0 100 1 0 +1 0 0 0 -1 +1 100 0 0 1 +1 0 0 0 1 +1 0 0 1 0 +1 0 0 1 0 +1 0 0 1 0 +1 6 0 0 -1 +1 0 0 0 1 +1 0 -76 1 0 +1 0 0 1 0 +1 0 0 1 0 +1 0 80 1 0 +1 6 0 0 1 +1 0 0 1 0 +1 0 -76 1 0 +1 0 80 1 0 +1 6 0 0 1 +1 0 76 1 0 +1 6 0 0 -1 +1 80 0 0 1 +1 0 0 1 0 +2 0 0 1 0 0 1 4 +1 1.44546849562683 0 0 1 +1 1.8999999999999999 -1.0313730334031099 -1 0 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +1 -1.5707963267949001 1.8999999999999999 1 0 +2 0.5 5 0 1 1 0 4 +1 0 4 1 0 +2 0 0 1 0 0 1 4 +1 1.69612415796296 0 0 1 +1 1.8999999999999999 -1.0313730334031099 -1 0 +1 4.5870611492166198 0 0 1 +1 1.8999999999999999 -8.9686269665968901 -1 0 +1 4.8377168115527596 0 0 1 +1 1.8999999999999999 -8.9686269665968901 -1 0 +1 -1.5707963267949001 1.8999999999999999 1 0 +1 0.5 2.5 0 1 +1 1.8999999999999999 -2.5 0 1 +1 0 0 0 -1 +1 1 0 0 1 +1 0 0 0 -1 +1 0 0 0 1 +2 0 0 0 -1 1 0 2 +1 -1.5707963267949001 2 1 0 +1 -0.5 2.5 0 1 +1 1.8999999999999999 -2.5 0 1 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +1 0 18 1 0 +2 0 0 1 0 0 1 2 +1 0 15 1 0 +2 0 0 1 0 0 1 26 +2 0 0 0 -1 1 0 16 +1 -1.5707963267949001 17 1 0 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +1 0 0 1 0 +2 0 0 1 0 0 1 26 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +2 0 0 0 -1 1 0 16 +1 -1.5707963267949001 2 1 0 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +1 -1.5707963267949001 13.5 1 0 +2 40 -5 -1 0 0 1 2 +2 0 0 0 -1 1 0 2 +1 -1.5707963267949001 2 1 0 +1 0 4 1 0 +2 0 0 1 0 0 1 4 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +1 0 0 1 0 +2 0 0 1 0 0 1 4 +1 -3.14159265358979 17 1 0 +2 0 -0.01 -1 0 0 -1 5 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 -33 0.10000000000000001 1 0 +1 61 33 0 1 +2 -0.0100000000000016 0 -1 0 0 -1 4 +1 -3.14159265358979 45 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0.022001775053300501 0 0 1 +1 78 70.998789853554598 -1 0 +1 3.1195908785364899 0 0 1 +1 78 61.001210146445402 -1 0 +1 1 0 0 1 +7 0 0 8 226 33 6.2831853071795898 5.0000021671206998 6.2557095307206003 5.0001080534066098 6.2286943837987101 5.0027537129246999 6.2026025836053602 5.0077871048002098 6.1776638743220902 5.0148117072617202 6.1539541075171904 5.0234009836008902 6.1314318512311496 5.0332078556348696 6.1099551820426301 5.0440047174925597 6.05989046600964 5.07237663167421 6.0324865956835003 5.0907117800575099 6.0055931969467897 5.1106592482476003 5.9806185532474503 5.13148485201474 5.9559073167614596 5.1533822276692396 5.9323871128116998 5.1759152337749503 5.9094542245631096 5.19910128354437 5.8617045757515198 5.2499084241078204 5.8370830004713401 5.2776662062037198 5.8131502792139198 5.3059781996767699 5.7898138083386996 5.3347415064217003 5.7669983587680802 5.3638735486284697 5.7446384100272496 5.39330792312514 5.7226757113954596 5.42299304349328 5.6758839242618002 5.48769524306985 5.6511475940370204 5.5227983704272097 5.6270599845604297 5.5579572804267903 5.6025951433027803 5.59367814977018 5.5788362949768704 5.6292518263514797 5.5548885169156801 5.6651153829638004 5.5311069199360299 5.7009917571203399 5.4841594598750998 5.77188148088592 5.4610089618324498 5.8068840241467496 5.4378233915653702 5.8418744548713404 5.4145554877039404 5.8768141069443098 5.3911566794485202 5.9116623271814897 5.3675750863674798 5.94637580077453 5.3437525599407296 5.9809075184271103 5.2970421115041297 6.0472905268757202 5.2741852120229904 6.0791665681277101 5.2510784745041104 6.1107757358807797 5.2273714164381699 6.1421299515098697 5.2035035616488203 6.1730568341954104 5.1788670266746202 6.2035917349474099 5.1535733056364696 6.2335929096892304 5.1053705975611097 6.28768229802861 5.0827379489116904 6.3119309168500299 5.0594120250163099 6.3356322780857903 5.0352730707451201 6.3586931455785498 5.0101902709577804 6.3809801394573098 4.9839958134861702 6.4022989437343201 4.9564865644933302 6.4223962554850402 4.9055217359745296 6.4546539608957296 4.8829752218558697 6.467427986723 4.85931387362037 6.4791883715479601 4.8343022614431099 6.48971163254767 4.8078253690603301 6.4985844528868002 4.7799007413614998 6.5052535655747903 4.7507029276081498 6.5091283978666299 4.6904019359307902 6.5106734703576503 4.6608873194586398 6.5082415205003104 4.6326631491557304 6.5028527947620498 4.60605895387266 6.4951766095215602 4.5808283155893204 6.4857192283456397 4.5570879595803699 6.4749619194401999 4.5344552595767604 6.4631194755130297 4.4830432907697801 6.4327379865281102 4.4552314221394997 6.4135037960710699 4.4287902412161602 6.3929493765380698 4.4035080166871197 6.3713490515217197 4.3792091102997803 6.3489139878527903 4.3557576019340196 6.3257885639380396 4.3330287365895197 6.3020743442420102 4.28492159810639 6.2493493109706701 4.2597919879773301 6.2201690879590803 4.2354731414111502 6.1904668511677796 4.2115632588146301 6.1602404723463504 4.18835904730006 6.1297021487731298 4.1656398140268003 6.0988856630525801 4.1430552366431703 6.0677075346419302 4.0894179940482003 5.9921959460768504 4.0585657751120801 5.9476151612147197 4.0280297466560002 5.9026561905898802 3.99770018280842 5.8574238303914399 3.9674831655405298 5.8120164252022901 3.9372919189173601 5.7665290413788304 3.9070419266409102 5.7210555346700396 3.8493985873920802 5.6350382209157299 3.82202662349055 5.5944683966836504 3.7945261244273198 5.5541083667971796 3.76671428181352 5.5139266526561999 3.7385527567494798 5.4740954594906199 3.7102986408130199 5.43486078185036 3.6812504124765302 5.3959813283533 3.6277151062058199 5.3272188005385699 3.6034859934126202 5.2971141304882901 3.5786817776689199 5.2674670176226499 3.5531892665440501 5.2383549947401198 3.5268837415487102 5.2098873900422698 3.4996062695491399 5.18221904836461 3.4711623988601499 5.1555493816475897 3.4195178103269002 5.1117988667574696 3.3970195757042401 5.0941441081294396 3.3741709038373302 5.0774359598535801 3.3487829335467398 5.0612422427454096 3.3242950015068899 5.0468755530160401 3.2968144143926099 5.0334488087370701 3.2678180298533399 5.0221202652491099 3.21266633532063 5.0067035224605201 3.1867146387222198 5.00136909245116 3.1595947113093201 4.9981730144873104 3.13201872630792 4.9975690974700999 3.10463844025477 4.9996222747380701 3.0780370263385599 5.0040579085134 3.05272831663564 5.0103736106155399 3.0027560086512701 5.02643055324579 2.9778279338965898 5.0367228145382903 2.9542447459566898 5.0483875680813597 2.93168585083952 5.0612495924196601 2.9106609472448302 5.0747324523250503 2.8899933499066801 5.0891688709386704 2.8702930876949799 5.1041382273020997 2.8247219493742302 5.1412296425002104 2.7995382402567599 5.1637992070667504 2.7753812250902201 5.1871765659524698 2.7520912837350999 5.2112102825154603 2.7295382104064001 5.2357836630005803 2.7076166649106201 5.26081250179584 2.6862323302561699 5.2862364578133398 2.64070533014534 5.3423071267075501 2.6167588963347002 5.3730660053822703 2.5932384561137098 5.4042689290418098 2.5704474501583099 5.4356200887742299 2.5473136510393499 5.46763543767144 2.5253738114176598 5.4993675126263604 2.5029227624280099 5.5317003635263999 2.4565588293293001 5.59920164106732 2.4325659214387501 5.6344460691130003 2.4085707972333901 5.6699101002944801 2.3845539419291999 5.7055285576605197 2.3604949300022202 5.7412391872428401 2.3363718745768498 5.7769818609643497 2.31216067145361 5.8126975900318802 2.2654487713827902 5.8811127989309702 2.2429678973534601 5.9138224214373301 2.22036902023941 5.94641107935308 2.1976297934361 5.9788304911715304 2.1747263932751002 6.0110286419870098 2.15163268294563 6.0429491115068599 2.1283183173573601 6.0745301642418097 2.0837423147844198 6.1334757003479297 2.0625392724237601 6.1609149150525102 2.0410959782166098 6.1879927283314897 2.0194716102963302 6.2145921581497499 1.9973577711714099 6.2407846937222802 1.9748421213385501 6.2664168054169904 1.9516930197712501 6.2914544850095497 1.9093193843925 6.3345004006173804 1.8904254977977 6.3527894253642101 1.87098363373761 6.3705949630749803 1.8508908915533999 6.3878505652001101 1.8300310748580999 6.4044623541995804 1.8082608182581701 6.42029771575283 1.7854034443165501 6.4351813068375696 1.7417893412749501 6.4597910125220697 1.72162583231838 6.46989400349955 1.70043495917712 6.4791101546784899 1.6780211605567299 6.4872559041945701 1.6542577487800101 6.49402733097814 1.6290973246582401 6.49903080509646 1.6025997777763099 6.5018374050631298 1.54874397526534 6.50249120613244 1.5273900291521501 6.5005789469756898 1.49654937148502 6.49659828904392 1.4804556505861901 6.4905980733439899 1.4529812320139399 6.4833308885482603 1.4340388930371999 6.4748201420762097 1.41338163093285 6.4654498099877298 1.36709131910423 6.4411222009720799 1.3418742484367301 6.42556119592453 1.3178447483397699 6.4088209154416198 1.2948326378778701 6.3911349492345897 1.27269799949568 6.3726824695049604 1.2513268135209501 6.3535897976462001 1.2306149295700299 6.3339464973737201 1.1795187931145501 6.2828759080693004 1.1499363470128301 6.2508234546652899 1.12152190177227 6.21794246996369 1.09377956057783 6.1843273603109097 1.0670926275524999 6.1502609528083596 1.0408483941255799 6.1157117157740899 1.01509448896532 6.0807975724303001 0.96022474118736401 6.0045929243781204 0.93125816820080498 5.9632143089537903 0.90268717124823505 5.9215285309968202 0.87440517217118696 5.8796214914625402 0.84632009090676097 5.8375704864807396 0.81834672203982595 5.7954469082353599 0.79040238176611699 5.7533177171024699 0.73800587113298599 5.6745999076151996 0.71359017152862203 5.6380114763682796 0.68894809596152795 5.6014429661014997 0.66452028259887697 5.5652310035761996 0.63926281206996505 5.5288561243622798 0.61437790228508304 5.4931151557484803 0.58879282192931903 5.4574822923198196 0.53918249808448204 5.3904476380444999 0.51524415664363499 5.3589786644527804 0.49078981115555997 5.3278436389993997 0.46573706935457099 5.2971140074971901 0.43999542102172401 5.2668847064146203 0.41345520249281498 5.2372810609233502 0.38598242426811602 5.2084616866881097 0.336876313356475 5.1607255555573603 0.31581946056575799 5.1413442022464899 0.29413338354620799 5.12255511531668 0.27159087335735999 5.1044682690981897 0.24847547585427401 5.0872471016585896 0.223960899382876 5.07098596385379 0.19886457257083001 5.0561135464729601 0.15336059629068099 5.0334385020130599 0.13396173421058599 5.0249134375975304 0.113710415787486 5.0172659675298199 0.092524272632606402 5.0106781830751004 0.070402321107116403 5.0054037854302198 0.0474379400757921 5.0017335209683704 0.023844631232863799 4.9999102745605803 0 5.0000021671206998 + 0 9 0.020451729175787799 7 0.049551654993566598 7 0.082736039907863101 7 0.12136931361011299 7 0.15899622479377501 7 0.194196793783219 7 0.223874120262156 7 0.246027867209892 7 0.268403962672838 7 0.29867604159600197 7 0.33423817758737101 7 0.384122190106365 7 0.42882802026695599 7 0.46449856729266198 7 0.49034851210107999 7 0.51026955206567604 7 0.53258899886508504 7 0.56349573686483001 7 0.59980604534557402 7 0.63880670867184197 7 0.67469353488106998 7 0.70666552597802601 7 0.73129729106955099 7 0.75102879689399205 7 0.76986187455783395 7 0.795489602605709 7 0.83484838012461104 7 0.88061571790158299 7 0.92048473951999299 7 0.95636710916293499 7 0.98206683298474395 7 1 9 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 3.1381443708940102 0 0 1 +1 79.999827585694405 86 0 -1 +1 25.5 0.10000000000000001 1 0 +1 25.5 86 -1 0 +1 0.025002604899361101 0 0 1 +1 106 69.988749804626394 -1 0 +7 0 0 7 20 4 3.1378889414169402 1.5707963267949001 3.1378686792510102 1.644651413976 3.1378482573268198 1.71814657277533 3.1378277809975099 1.79154787514944 3.1378073659339298 1.8650938476891501 3.13778713884198 1.93901848609906 3.1377672408249899 2.0135891180883498 3.1377298154791702 2.1593184938504999 3.1377122383898399 2.2302704394817501 3.1376952158892899 2.3023484148775402 3.1376789129898 2.3758341157298899 3.1376635431273598 2.4509869172007299 3.1376493701101298 2.5280912496027699 3.1376253907376799 2.67859746971574 3.1376152740110399 2.7515862490879099 3.1376066245288299 2.8265947976164401 3.1375997639947899 2.9035317080450702 3.1375950177698302 2.9821109726885702 3.1375926429239498 3.0618362262976802 3.1375926429213998 3.14159265358979 + 0 8 0.36243057694228398 6 0.69891205666346401 6 1 8 +7 0 0 7 20 4 77.999814814179601 86 77.852103626705599 85.999999985228996 77.705113277608802 85.987272442924095 77.559622239421103 85.962041917478302 77.416423927213501 85.924421515875395 77.276327208639799 85.874465279053197 77.140176353357703 85.812146648608106 76.887004225355795 85.6677408836659 76.769432936410894 85.587457068241207 76.656802068250698 85.496232681970596 76.550045706119604 85.393830821373797 76.450355335449999 85.280060826718497 76.359185765524998 85.154821433843097 76.205956767870603 84.895727375860105 76.141794035523901 84.764078478643 76.087297995151999 84.6233780486738 76.044306017633005 84.474462377859396 76.014642902330607 84.318963846672006 75.999800015151195 84.159512854584193 75.999799999199794 84 + 0 8 0.36243057694228398 6 0.69891205666346401 6 1 8 +1 3.1375926429230501 0 0 1 +1 75.999799999199993 96 0 -1 +7 0 0 7 20 4 0 0.99881415272804497 0.051833707627756603 0.998782846958714 0.101840063335323 0.99874910815011697 0.15013385418167599 0.99871301051721995 0.19690023922094299 0.99867466913065694 0.242336781250657 0.99863425773235803 0.28663479308538398 0.99859202094448096 0.37879625596138899 0.99849906279812695 0.42640033477426098 0.99844795172244705 0.47318510719642698 0.99839532738209802 0.51950860112248698 0.99834168059969497 0.56575883826357298 0.99828765900498095 0.61236911002774497 0.99823406473358101 0.70348113652919397 0.99813444797163098 0.74768255227373104 0.99808831706041101 0.79327825746870895 0.99804420265100102 0.84081387730076396 0.99800331135141795 0.89076200878043199 0.99796738895717996 0.943746843409761 0.99793893523816901 1 0.99791978836376105 + 0 8 0.31721406143543601 6 0.67415596823477897 6 1 8 +7 0 0 7 20 4 75.999799999677606 73.999404049842596 75.999799968569505 73.779474816335707 75.980991925798904 73.559503635035895 75.943364952709203 73.342401861017805 75.887653337555193 73.130696144879195 75.815024454084295 72.926447440650506 75.726836279235499 72.731248507956806 75.509271799402597 72.338188371785193 75.376145063657802 72.143099801681998 75.226864544500302 71.962392240408093 75.063086227554507 71.796958242663095 74.886105729639596 71.647419804211196 74.696774288942507 71.514245738565506 74.310884983891398 71.292320085495106 74.116949228595402 71.201031166040394 73.912521696787806 71.124345933298599 73.697365925031804 71.063692722718102 73.4720737001999 71.020952439165995 73.238061858816906 70.998789888049501 72.999369592100095 70.998789854247207 + 0 8 0.31721406143543601 6 0.67415596823477897 6 1 8 +1 0.0034482826957873804 0 0 1 +1 22.000172414305599 86 0 -1 +1 25.5 0.10000000000000001 1 0 +1 25.5 36 -1 0 +7 0 0 7 20 4 0.00370371217216389 1.5707963267949001 0.0037239743381431399 1.6446514141392301 0.0037443962639009199 1.7181465697921501 0.0037648725918519601 1.7915478752437699 0.0037852876550399498 1.86509384883048 0.0038055147482439398 1.9390184847621801 0.0038254127647657501 2.0135891179554899 0.0038628381106264502 2.1593184938500398 0.0038804151999499601 2.2302704394808699 0.00389743770050621 2.3023484148758899 0.0039137405999928997 2.3758341157282601 0.0039291104624323298 2.4509869171997298 0.0039432834796639497 2.5280912496019101 0.0039672628522423098 2.6785974705476399 0.0039773795769033997 2.7515862450642699 0.0039860290659105603 2.82659480438886 0.0039928895886793599 2.9035317012689799 0.0039976358240650604 2.9821109781367099 0.0040000106651162199 3.0618362235739101 0.0040000106676684501 3.14159265358979 + 0 8 0.36243057607400703 6 0.69891205439529702 6 1 8 +7 0 0 7 20 4 24.0001851858203 86 24.147896373620799 85.999999985228996 24.294886716434899 85.987272443324599 24.440377760795901 85.962041917716704 24.583576075110901 85.924421516021795 24.7236727887305 85.874465279344406 24.859823646411499 85.812146648739798 25.112995774643402 85.667740883666397 25.2305670635876 85.587457068242102 25.3431979317469 85.496232681972799 25.4499542938782 85.393830821376199 25.549644664548801 85.280060826720103 25.640814234474199 85.154821433844603 25.7940432329763 84.895727374428006 25.858205961277498 84.764078485818999 25.912702008853898 84.623378036303905 25.955693980251599 84.474462390659795 25.9853570981251 84.318963835989805 26.000199984848699 84.159512860031796 26.000200000800099 84 + 0 8 0.36243057607400703 6 0.69891205439529702 6 1 8 +1 0.0040000106667434695 0 0 1 +1 26.0002000008 96 0 -1 +1 3.1165900486904299 0 0 1 +1 106 61.991250195373603 -1 0 +7 0 0 7 20 4 0 0.0032516220077650503 0.051820691813397803 0.0033498536141272003 0.101829610754102 0.0034559094399071897 0.15013349873935999 0.0035695872275746296 0.19691154344860301 0.0036905547365179703 0.24235605157089901 0.0038182895602933398 0.28665264546619001 0.0039520364677304203 0.378898582206881 0.0042472964989632104 0.42658028990661501 0.0044101459304481203 0.47341104794691402 0.0045781326268381798 0.51974502356198404 0.0047497051158616101 0.56596551388435601 0.0049228158164627096 0.61250079622251097 0.0050949338950312603 0.703567571790224 0.0054164655598618397 0.74781242814497795 0.0055661006303196203 0.79341029654150896 0.0057096314972490004 0.84091188410222095 0.0058432564695923795 0.89080358062507303 0.00596146249077837 0.94372975157954497 0.0060562605424062605 1 0.0061214620931098205 + 0 8 0.31617979157878001 6 0.67285103423515502 6 1 8 +7 0 0 7 20 4 26.000200000372701 73.999403623125701 26.000200031454199 73.779529759478095 26.018998596544598 73.559551765103606 26.056625863796501 73.342404742207904 26.112353877695501 73.130644166937202 26.1850073817387 72.926360611768601 26.273205614543599 72.731173064530907 26.490969330277501 72.337753029280194 26.624366365056101 72.142366910821195 26.7738825693405 71.961536875876803 26.937789095123399 71.796153759212999 27.114724549706299 71.646809351997604 27.3037832755255 71.513926288184194 27.689481847941099 71.292110529785106 27.883629215942801 71.200780648839398 28.088080648633799 71.124168462906397 28.303083239924899 71.063627293171194 28.528101873297999 71.020966003968894 28.761871538187499 70.998789888588206 29.0006377004967 70.998789854748196 + 0 8 0.31617979157878001 6 0.67285103423515502 6 1 8 +1 0.022001775053300501 0 0 1 +1 78 70.998789853554598 -1 0 +1 -33 0.10000000000000001 1 0 +1 41 33 0 1 +7 0 0 7 20 4 0 0.50054282854116305 0.051830401224164602 0.50057592264416895 0.101823102571339 0.50061153426067895 0.15010139341977999 0.50064957276736599 0.19685646398901999 0.50068990490792897 0.24229101031480399 0.50073233807893902 0.28660162849758902 0.50077660932224599 0.37869578512129898 0.50087373772128096 0.42623075848209502 0.500926971117301 0.47298095048640698 0.50098168147678601 0.51930523237792503 0.50103735703097696 0.56559127800838305 0.50109332733675505 0.61227140667043201 0.50114876327245605 0.70349054542082501 0.50125155061320104 0.74773151187874398 0.50129904555008598 0.79337417914668296 0.50134439104469497 0.84094791068542296 0.50138635558965905 0.89091187474472899 0.50142317351240895 0.94386181367224398 0.50145237183760105 1 0.50147215583535598 + 0 8 0.31801594493853902 6 0.67485047079525096 6 1 8 +7 0 0 7 20 4 75.999799999098897 58.000596971831598 75.999799968000801 58.220511493456698 75.980994357727795 58.440423040086699 75.943386190647999 58.657451392254004 75.887707420552601 58.8691029179273 75.815107888380396 59.073345682478198 75.726915155279301 59.268607557946602 75.509509729938898 59.661380067879101 75.376631500757597 59.856206378936498 75.227546415521701 60.036834683806703 75.063845885145696 60.202351582819702 74.886782176403401 60.3520886312145 74.697187335726895 60.4855139520471 74.310842638775199 60.707701311633599 74.116735322549999 60.7990802092474 73.912087294278393 60.875822890934003 73.696749435321905 60.9364732601382 73.471392665746606 60.979138180557101 73.237565209227299 61.0012101121768 72.999359519186498 61.001210145889999 + 0 8 0.31801594493853902 6 0.67485047079525096 6 1 8 +1 0.025002604899361101 0 0 1 +1 106 69.988749804626394 -1 0 +1 -32.994999999999997 0.10000000000000001 1 0 +1 26 32.994999999999997 0 1 +7 0 0 6 17 4 3.1375926429213998 0 3.1375926429199898 0.088402133292635895 3.1375911422131399 0.17684396337334299 3.1375881398463101 0.263945737369852 3.1375838109513601 0.349147590343661 3.1375783569536 0.432070599614651 3.1375645883374501 0.60572696340727605 3.13755595398308 0.69573069709913005 3.13754632140652 0.78293486544087998 3.1375359061803101 0.86762645557691498 3.1375248755567 0.95014729958847799 3.13749990728085 1.1250621231857501 3.13748580562712 1.21674351846942 3.1374712180752899 1.30669467785995 3.1374562980355201 1.39536853455276 3.13744117943981 1.48321873540769 3.13742597486501 1.5707963267949001 + 0 7 0.28555594372548598 5 0.61569544728126102 5 1 7 +7 0 0 6 17 4 75.999799999199794 47 75.999799990359506 46.911597866707403 75.990420778261495 46.823154724505599 75.971654740875806 46.737303293999503 75.944655833107703 46.6558173229418 75.910767603694893 46.579733961174199 75.825596340903004 46.428398222007402 75.772385381562501 46.355065033957999 75.713330893442105 46.289904661750803 75.649870012787801 46.232881550117597 75.583113355399206 46.183743568439802 75.4330701512161 46.093840248008597 75.348966036949705 46.055829970210901 75.262689884638903 46.0277179782248 75.175220069352903 46.009203997573202 75.087370017381502 46.000000008757802 74.999791665762302 46 + 0 7 0.28555594372548598 5 0.61569544728126102 5 1 7 +1 3.1165900486904299 0 0 1 +1 106 61.991250195373603 -1 0 +1 25.5 0.10000000000000001 1 0 +1 25.5 46 -1 0 +7 0 0 6 17 4 0.0040000106676684501 0 0.0040000106690829002 0.088402286969327698 0.00400151138501555 0.17684428590429299 0.0040045137561827097 0.26394619449461099 0.0040088426707881198 0.34914820172092698 0.0040142966844679195 0.43207133427057498 0.0040280653319782903 0.60572782231276401 0.0040366996967172901 0.69573155379900797 0.0040463322826423597 0.78293572066368999 0.00405674751736506 0.867627310774991 0.0040677781487657395 0.95014815645129802 0.0040927464164206605 1.12506282198475 0.0041068480521082801 1.21674406278039 0.0041214355809447304 1.3066950904491901 0.0041363556017149404 1.39536879328754 0.0041514741725708895 1.4832188697947699 0.0041666787240467896 1.5707963267949001 + 0 7 0.28555645806668101 5 0.61569603631612901 5 1 7 +7 0 0 6 17 4 26.000200000800099 47 26.000200009640398 46.911597713030702 26.009579255702199 46.8231544021343 26.0283453578074 46.737302843106498 26.055344360953001 46.6558167385652 26.089232696240099 46.579733286962998 26.1744041501662 46.428397512788997 26.227615171216598 46.355064372289398 26.286669713956702 46.2899040516388 26.350130643111601 46.232880994052003 26.4168873438839 46.183743068379499 26.566930489822902 46.093839958271303 26.6510344850767 46.055829799438399 26.737310522439799 46.027717893441199 26.824780189408902 46.009203970100302 26.912630117006699 46.000000008757802 27.000208334237701 46 + 0 7 0.28555645806668101 5 0.61569603631612901 5 1 7 +1 3.1195908785364899 0 0 1 +1 78 61.001210146445402 -1 0 +7 0 0 7 20 4 0 0.99677720171606998 0.051885160786187198 0.99658132641349195 0.101941494480683 0.99636925344820004 0.15026903006258399 0.99614134672224897 0.197045455661959 0.99589826864942899 0.242464269228537 0.99564112537398497 0.28671420426073502 0.99537154888561097 0.37889501355684602 0.99477561989889396 0.42654953692883801 0.99444649781164096 0.473345399897597 0.99410692972737502 0.519650568374732 0.99376027174387604 0.56586268981787402 0.99341091218228394 0.61242488515104099 0.99306417272386904 0.70350774512126901 0.99241872386947205 0.74774222513912203 0.99211930739006204 0.79336206750081995 0.991832856966267 0.84090576358716895 0.99156701770480404 0.89084801480390596 0.99133267536328395 0.94379632429503002 0.99114485921376305 1 0.99101486486810797 + 0 8 0.31619457555234898 6 0.67336450922297297 6 1 8 +7 0 0 7 20 4 26.000199977257999 58.001227350599599 26.000200003999801 58.221340190744499 26.019042792615998 58.441500842540002 26.056742245845001 58.6587263862993 26.112530238063599 58.870437361531103 26.1851892261143 59.074549673189601 26.273310945441601 59.269477091621397 26.4908915838786 59.662529497999202 26.624204716548402 59.857754729535898 26.773580114095601 60.038409740139599 26.937334486885401 60.2036772322922 27.114187374191498 60.353012697870199 27.303329693833302 60.485994375895402 27.6890999214781 60.707802181059598 27.883192038494698 60.7991338063675 28.087750247232801 60.875809796517501 28.302967699685301 60.936421930899698 28.528248488023401 60.979092914006998 28.762116673952502 61.001211636534002 29.0006247660701 61.001211712306301 + 0 8 0.31619457555234898 6 0.67336450922297297 6 1 8 +7 0 0 8 37 6 3.0032204762046901 20.010000000000002 3.0032204762046901 19.8025570552192 3.0036485838663101 19.608922447916701 3.0044046466793102 19.4323868348371 3.0053692254322102 19.2722918080098 3.0064683413641502 19.127256115928699 3.00765056978253 18.994822209773599 3.0089076887502602 18.871507354436702 3.0122127735714899 18.584438377620401 3.0143025665099401 18.431518432738699 3.0165100049459599 18.289492865935799 3.0188212359437498 18.156468398694599 3.0212274870359002 18.0310449905651 3.02372382550565 17.9119971316583 3.0263112965947698 17.798576063752201 3.03390807408385 17.491119468275201 3.0391235982877198 17.309270858550502 3.0446643179008399 17.139715221445002 3.0505800435473098 16.980774776255 3.0569054899860002 16.831063885066701 3.0637582816635498 16.690256016134601 3.0712154236920499 16.5580594567014 3.0829259719826601 16.387851688476399 3.0863361930306401 16.341853030270101 3.0899125719668201 16.297390958519198 3.0936792029732598 16.2545520659719 3.09767121637551 16.2135723204327 3.1019282845090999 16.1747910142814 3.1065025937588699 16.138691737614799 3.1146045156345501 16.086224703206 3.1178180188356102 16.067879285361101 3.12121811254256 16.051078724874198 3.1248498740290902 16.0361388516096 3.1287344322628399 16.023686758483301 3.13286577170209 16.014646246026601 3.1371958638426198 16.0099997385596 3.14159265358979 16.010000000000002 + 0 9 0.15011495303757999 7 0.36383874622435602 7 0.75502119456363104 7 0.90659934075579696 7 1 9 +7 0 0 8 37 6 1.5707963267949001 26.2771867673099 1.5189355905997 26.2771867673099 1.4705270857861199 26.2754743761454 1.4261796429287099 26.2724498463209 1.3856407628487399 26.2686220978396 1.34859093657824 26.2643056033757 1.3144429803479101 26.259710661279801 1.2823374366763001 26.254875821663301 1.20674083960821 26.242325142915401 1.16572541903133 26.234513282128798 1.12689774633512 26.226411573834799 1.0897819124774799 26.218098671321801 1.05402084617501 26.209631762930499 1.0192941673595901 26.201053253914701 0.98538906988967401 26.192384855636401 0.89103188928595201 26.167631321899201 0.83219079096583704 26.151433018981301 0.77414222282530798 26.135133517425501 0.71605296132066099 26.118814189938298 0.65727038949536798 26.1025589337948 0.59673671474730705 26.086498260974501 0.53371531926029003 26.0707574583369 0.43889266545911398 26.0497369092217 0.41167539435489398 26.043968216471999 0.38352052667875802 26.0383115590482 0.35425129483756101 26.032786837211599 0.323614891523267 26.027434205082599 0.29132761807452201 26.022308973104298 0.257014458829805 26.017488156029099 0.19685487092925399 26.0104222312853 0.17312511272508299 26.007936057186701 0.148140392414331 26.0056470544863 0.12157205652103401 26.0036010162056 0.093270976186627094 26.001887976216 0.063269691390524394 26.0006408030853 0.031876770473484597 25.999999976095499 0 26 + 0 9 0.15011495303757999 7 0.36383874622435602 7 0.75502119456363104 7 0.90659934075579696 7 1 9 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +7 0 0 8 135 20 3.14159265358979 16.010000000000002 3.1458158062870201 16.009999741551901 3.1499834888235201 16.014286513567299 3.1539721508168901 16.022657742297401 3.15773430038147 16.034252241492599 3.1612612865966301 16.0482329880337 3.164570178015 16.064011768627001 3.16770104323605 16.0812816085907 3.1736895567071199 16.118768489146898 3.1765155325335699 16.138735785450098 3.1792116494151101 16.159806312666099 3.18179376547709 16.1818233480017 3.1842740238218501 16.204671546847901 3.1866628671902402 16.228264531619399 3.18896985806786 16.2525404384571 3.1963980011969899 16.3354379249981 3.2011851470244701 16.396799152093202 3.2056693099016198 16.46104639855 3.2099001568941898 16.527931029458099 3.21391387903634 16.597307203667 3.2177407601254702 16.669110984079399 3.2214018822675201 16.7433863381934 3.2288801092818602 16.906918476654798 3.2326541961045301 16.996804405624999 3.2362659088646901 17.090063890986698 3.2397325700757298 17.186907071850801 3.2430664542672498 17.287608139415902 3.2462768407440299 17.392528892250301 3.2493708024182602 17.502180362793801 3.2544995894636601 17.700218593362301 3.25658760071931 17.7859369091017 3.2586188694606202 17.874756897624898 3.2605940148493802 17.967035628750999 3.2625124970878798 18.063181007028099 3.2643726075858299 18.163692167179899 3.2661711224366798 18.269267064763898 3.26893377011235 18.447503491795501 3.2699405889047202 18.516176744772402 3.2709222170124002 18.5872291998846 3.2718768943240799 18.660936848871199 3.2728020983073498 18.737606031889101 3.27369441655043 18.8175985482101 3.2745491527235799 18.901395342021999 3.2760132678694598 19.0609127768356 3.2766366487232301 19.134887312068699 3.2772276429109901 19.212125805674599 3.2777816603511201 19.293085342799198 3.2782914587309002 19.3781930654539 3.2787469157464701 19.4678625808784 3.2791348013427601 19.562510369901901 3.2796650805484702 19.737204588122999 3.2798468261042402 19.815549516337502 3.2799715462456298 19.896642078176601 3.2800298537977199 19.979402105258298 3.2800170355156202 20.062632628295599 3.2799342021351898 20.145026303339399 3.2797887677448401 20.225179798558901 3.2791825819880902 20.463370642621499 3.27854573283199 20.6106325114024 3.2777546519365299 20.746214960192599 3.27685102230478 20.871603780509101 3.27586427383905 20.9881698834504 3.2748138101747801 21.097335954293499 3.2737065443161799 21.200432841167501 3.2712104771642601 21.411259947678602 3.2698147009459699 21.516715370019998 3.26836181115016 21.616662208210801 3.2668578205137599 21.711920486004299 3.26530667378587 21.803061718182601 3.2637109382973502 21.8905574609241 3.2620719558842501 21.974830301710401 3.2572296779960501 22.2090391698848 3.2539201504213202 22.3515137872872 3.2504628308741599 22.485843121979698 3.2468540861949799 22.613208606600701 3.2430858044705899 22.7344517655856 3.23914533902032 22.850238110659699 3.2350130765979399 22.961030262105702 3.2263012863234901 23.173345246821601 3.2217362715153501 23.2745116595136 3.2169226636764199 23.371395255448899 3.21180810927302 23.4641846564489 3.20635248078792 23.552929621061899 3.2004545908176598 23.637145883108101 3.19404590912912 23.716377502886399 3.18385532659231 23.8188054584021 3.18076386174008 23.847387815963302 3.1775175310334798 23.874724617042698 3.17409052804142 23.9006670124867 3.1704531926667401 23.924907904893701 3.1665740508525499 23.9470074602329 3.1624152089131399 23.9663537933864 3.1555111509884401 23.990198906427601 3.1530249822030298 23.9973765519902 3.15043814508534 24.003321591838201 3.14775356419117 24.0078037647793 3.1449888114274098 24.010562539771001 3.14217804234405 24.011394205829401 3.1393742121502499 24.010262481581002 3.1304960356315599 24.0010344794172 3.1248310636793901 23.986021480285 3.1196334863270399 23.9648666887955 3.11486396537257 23.939451566397 3.11047150518029 23.9111047497464 3.10639566320532 23.880620398494599 3.1025664595460398 23.848256135362298 3.09347501539236 23.762546557456702 3.0885196329673699 23.707637508949102 3.08390175875825 23.649737448013401 3.0795640999062801 23.589213677401201 3.0754644467862402 23.526305583164799 3.0715664085920702 23.4611559512681 3.0678460908075702 23.393768803878299 3.0573574880074799 23.188803866008602 3.0510373141084699 23.045260037759199 3.04515093515261 22.893032376763699 3.0396371190444902 22.731107246513499 3.03444429497018 22.558540822991699 3.0295529587629799 22.3729073222046 3.02494727486354 22.1720209311794 3.0189598297206302 21.8608315466055 3.01732800106292 21.770148579575601 3.0157433848226298 21.6756376520642 3.01420836906131 21.576704445095402 3.0127271854479298 21.4727087799969 3.0113061747611001 21.362888245418802 3.0099552524395601 21.2460842840132 3.00760620417562 21.012400322162399 3.0066082164132402 20.9000955783733 3.0056768387468602 20.7801942765518 3.0048253362005899 20.649888658981901 3.0040871755490102 20.5075344982343 3.00352438840144 20.352294908146099 3.00322038565802 20.184674565590999 3.0032204762046901 20.010000000000002 + 0 9 0.029843027886451101 7 0.0593759307342498 7 0.128065561568356 7 0.20546995861752801 7 0.26119721485254199 7 0.29438420215910099 7 0.321148352645382 7 0.34111072035250001 7 0.38335509115817801 7 0.43148545948003197 7 0.52187718826764495 7 0.61223739746654005 7 0.64930319235210798 7 0.66899793938283503 7 0.71352519979502105 7 0.77946905512364695 7 0.90738371807450302 7 0.95724747794979004 7 1 9 +7 0 0 8 135 20 6.2831853071795898 26 6.2525674068779002 25.9999999765331 6.22235193293068 26.000591189234399 6.1933906686305296 26.001746022446198 6.1659919398697101 26.003341452358399 6.1402070541463996 26.005257203348702 6.1159147769350204 26.0074088623767 6.0928231422080801 26.009751995771701 6.0484245186450796 26.014808240858802 6.0273546585259297 26.017487981698899 6.00713223882543 26.020299728489199 5.9876425974996002 26.023219547382599 5.9687985069720204 26.0262295067302 5.9505249898544896 26.029315865773899 5.9327529285913299 26.032468322771098 5.8751107912189404 26.0431510468513 5.8372592822222096 26.050928041498899 5.8011059851187001 26.0589197748948 5.7662839554520904 26.067071350923801 5.7325194177837204 26.075342094249699 5.6995752315781996 26.083701406750102 5.6672713904877297 26.092130400609999 5.5995177233748903 26.110180068219201 5.5642227802193904 26.119807596639099 5.5292925588866702 26.129475986835299 5.4945326023786896 26.139163997242399 5.4597702485380299 26.148851460425401 5.4248326009414498 26.1585181604406 5.3895241095989803 26.168142683876901 5.3277429453661798 26.184582960922501 5.3015725283831401 26.1914278333794 5.2750019143772402 26.198228082234799 5.24792666642246 26.204972368792401 5.2202336295855201 26.2116461959098 5.1917897390510301 26.2182311521785 5.1624145135848796 26.224702999747802 5.1136261032406702 26.234795666668699 5.0949973308387397 26.238508786813199 5.0758905573578703 26.2421619608272 5.0562365258731097 26.245745767099201 5.0359591143131599 26.249247732754501 5.0149686708564696 26.252651662523402 4.9931456527168798 26.2559359315295 4.9519019341972399 26.261598707798399 4.9328779799211198 26.264023689959298 4.9131145136406698 26.266335296463598 4.8924976229692501 26.268513294704999 4.8709212136291304 26.2705266380725 4.8482805480968203 26.2723324925344 4.8244657842485497 26.273875263223999 4.7806266549334504 26.2759883232427 4.7610009887629996 26.2767142219279 4.7407168248126101 26.277213461876698 4.7200345285324099 26.2774471429687 4.6992390460673601 26.2773956870635 4.6786415552480998 26.277063854863101 4.6585802430097196 26.276482412738599 4.5988737261255297 26.274064134795001 4.5618224527431401 26.2715290247802 4.5275023256448899 26.268395069741299 4.4955318263636501 26.264841233473799 4.4655730696000298 26.260993422500199 4.4372770965215604 26.256934212890801 4.4103140113981896 26.252696698659701 4.3546371898822498 26.243245021876401 4.3264458126804897 26.2380178243316 4.2993861034535001 26.232642557962699 4.2732528875813101 26.227150663182901 4.2479021919282003 26.221564881467302 4.2232134486650503 26.215902424999001 4.1990758915511401 26.210176090398601 4.1309326187982203 26.193533128297499 4.0881344062218501 26.182486792939201 4.0464024768107896 26.1713158833569 4.0053753607861404 26.160064643011999 3.96475275168395 26.1487704758344 3.92425128082676 26.137466294420101 3.8835939145668199 26.126180845787399 3.8012832899089801 26.103709340721601 3.7597670866619399 26.092561166815202 3.7174556882480001 26.081498127567901 3.6738961656162701 26.070553949922299 3.6287527575554299 26.059770945416599 3.5812726987932 26.0492596991932 3.5309469821739201 26.039129014177099 3.45282478575984 26.0257678891819 3.4293265042878298 26.022005062615701 3.4048486882124598 26.018375221645499 3.3792055246740502 26.014902582030299 3.35218479563656 26.011633235882201 3.3235605050685302 26.008632756155102 3.2930550681793198 26.005992041365801 3.24265352789598 26.002725696227099 3.2245447958331801 26.001739898179601 3.2057387543634599 26.000921407562899 3.1862532869701199 26.000303204215101 3.1662082701874201 25.999922336060202 3.1458387210030101 25.9998075798351 3.1255138882192202 25.9999639429555 3.0611066356020298 26.0012358509554 3.0199291713209999 26.003304171203201 2.9819520588363999 26.006208815010801 2.9468589396185001 26.009675024549299 2.9142872065312 26.013507706989799 2.8838130756621498 26.0175915556785 2.8549294561530898 26.0218870219122 2.7856783252930399 26.033139058709899 2.7473079574775001 26.040246131956302 2.71093380278427 26.047618377136398 2.6761396446612098 26.055186948319498 2.6426156281996098 26.062901775853799 2.6100889945889798 26.070725923067901 2.5783691299471201 26.078639490829801 2.4868615553531801 26.1021325456319 2.4289410226970198 26.117871410728299 2.3720931793152502 26.133741587173699 2.3155636054591202 26.149661005468499 2.2586822936748301 26.165545994810302 2.2006132396693698 26.181293407459801 2.14061024560471 26.196798314170699 2.0516760334965598 26.2177490097658 2.0261543646105502 26.223551687527401 1.99993951186115 26.229272862862199 1.97287871013753 26.234895176913 1.94481101152546 26.240394376330599 1.9155467310188701 26.245737472761 1.8847976113582601 26.250876262320599 1.8239872335781899 26.259903253612201 1.7950222624676599 26.263776933188201 1.76433782290409 26.267422698706898 1.73122907413195 26.2707830961544 1.6953091262845501 26.273719555900701 1.6563691344668301 26.275971259692 1.6144651642504999 26.277187102112201 1.5707963267949001 26.2771867673098 + 0 9 0.029843027886451101 7 0.0593759307342498 7 0.128065561568356 7 0.20546995861752801 7 0.26119721485254199 7 0.29438420215910099 7 0.321148352645382 7 0.34111072035250001 7 0.38335509115817801 7 0.43148545948003197 7 0.52187718826764495 7 0.61223739746654005 7 0.64930319235210798 7 0.66899793938283503 7 0.71352519979502105 7 0.77946905512364695 7 0.90738371807450302 7 0.95724747794979004 7 1 9 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 0 1 +7 0 0 8 226 33 3.1421180197888798 22.000000402911699 3.1520029522041999 22.000042392082399 3.1617179663790602 22.0067880026326 3.17110280906881 22.019833239226202 3.1800806494900802 22.0382020761527 3.1886266378500601 22.060884608353401 3.1967561238170101 22.087047407431498 3.2045199355984599 22.116160872769999 3.2226468927352498 22.193568097797101 3.2326615706302602 22.2445401835921 3.2420015936748601 22.299100221245901 3.2509803277025702 22.357541585718899 3.2594354985467202 22.418428849362598 3.2675763274341199 22.482049489468 3.2753760124795699 22.547915041634099 3.29147805230081 22.6937130104678 3.2996823665522999 22.7742068556588 3.3075666682028899 22.857295063129701 3.3151689871336401 22.942839452301499 3.3225191851690399 23.030752157652898 3.3296421607272002 23.120986666169301 3.3365587929019598 23.213538925939702 3.35112132719585 23.418937071319601 3.3586914696481198 23.532470719957701 3.36608099036637 23.6500169617842 3.3731373050367801 23.7687876421186 3.3800897544370199 23.892184061452902 3.3867965861375802 24.017901095541699 3.3933457017550399 24.147246595522802 3.40593852133419 24.409461379576701 3.4119936910821802 24.542191837880399 3.4179005827859399 24.678468060259899 3.4236666520945001 24.8185144430796 3.42929747580069 24.962595866714 3.43479704936165 25.111026772438802 3.4401678895638601 25.2641909492616 3.4503159879262002 25.570759905549099 3.4551079724445599 25.7234871383592 3.4597893882988702 25.881130037304001 3.4643570686273799 26.044352949363098 3.4688127567893901 26.213386922328102 3.4731461322026198 26.3892372907607 3.4773522818666698 26.572632332642801 3.4848467474133602 26.9268514370956 3.4881716665649298 27.0949474715935 3.49138960000381 27.2699583420377 3.4944913999051401 27.452833676826401 3.4974627731046501 27.6446253509841 3.5002819102741798 27.846682242415302 3.5029199617693498 28.060631687672501 3.5071278251318101 28.459992550318301 3.5087849691181798 28.637566262528701 3.51030315919169 28.824759928369399 3.5116554101499502 29.0234532376274 3.5127907855986198 29.234548726538801 3.5136418147964301 29.457818733039399 3.5141361052900701 29.691590639267901 3.5143350822932198 30.174287851564099 3.5140265100547299 30.410440534936399 3.51334473736518 30.635830762850301 3.51236563363859 30.8488971832024 3.5111570358428401 31.049204396261 3.5097735013336702 31.237846585787 3.50824318469243 31.4167144190009 3.5042942293113701 31.821405227569699 3.5017779852092898 32.038921400036102 3.4990683804734899 32.244229589898701 3.49619669889361 32.439010945432102 3.4931867361818001 32.624665232969498 3.4900540903060602 32.802277311934503 3.48680891344697 32.972830987540704 3.4795161177065901 33.330309975192002 3.4754338608628199 33.514587241133199 3.47121438049862 33.691521776955 3.46688570578414 33.861230661783097 3.46242984275499 34.0253846378885 3.4578552283741102 34.1840733320076 3.4531875934210299 34.337253662132099 3.44171199646056 34.6941415203544 3.43480737997709 34.893105283353599 3.4276973547557201 35.083893979307803 3.4203767547720099 35.267376286480001 3.4128359104064598 35.444237789460502 3.4050603484800699 35.615046753502298 3.3970293255565198 35.780275283968102 3.3812593210527599 36.083767125374699 3.3735796737084902 36.222987166241197 3.3656404897636198 36.358532206643801 3.3574400745267199 36.489990925033197 3.34894575679226 36.618022937257599 3.3400366260187901 36.7433683953588 3.3308033063761 36.864195373252599 3.3133999731522499 37.074634309410698 3.3054047140481799 37.165449683512897 3.2971029756288401 37.253675315907401 3.2884555436402998 37.339194108057903 3.2794181858036899 37.421795512062502 3.2699338676258001 37.501143172750702 3.2599326014546302 37.576781971846202 3.2415848830297298 37.699561544940202 3.2335813876935 37.748577863865002 3.2251339839685098 37.795265446239803 3.2164375035833501 37.838230048203499 3.2069650049462002 37.878876262964503 3.1971309784787998 37.914003639271598 3.1866765733532598 37.943735533524197 3.1669647314536502 37.9835438072244 3.1577341691574601 37.997081237160302 3.1481341373277698 38.0049411019045 3.1384091309844102 38.006112940477003 3.1287711998459899 38.000520110563599 3.1194087228196001 37.988797875094001 3.1104914441624101 37.972146866932697 3.0928527893712099 37.929664236517802 3.0840325352129101 37.902364727466498 3.07565325893398 37.8711239031011 3.0676712404384601 37.836770313102797 3.0599785206535 37.7991720156352 3.0526752879891199 37.759684202284603 3.0456248889038799 37.717929929053497 3.0294025844682801 37.613733996819597 3.0204739039716699 37.549619975505898 3.0119562301912501 37.482428582831297 3.0037996043487798 37.412519406849199 2.9959632918321102 37.3401676175285 2.9884144723543402 37.265564247324797 2.9811238790073502 37.188832945963298 2.9657722610669599 37.017441606894302 2.95780268242964 36.9220123608116 2.9501317847194302 36.8241792327673 2.9426756099487399 36.722888397214597 2.9355562246040998 36.621036888540999 2.9285124747902 36.514095481123597 2.9217784987436102 36.406580316632599 2.9081983371686699 36.178511615290802 2.9014000598037502 36.057905150106102 2.8948102474192399 35.934656889633203 2.88840888965714 35.808582870172998 2.8821799599902 35.679467122070299 2.8761103159865198 35.547059391965703 2.8701890907452601 35.4110633511931 2.8590870507597201 35.142343380653202 2.8538853538125899 35.010236938970102 2.8487950287658999 34.874513794596901 2.8438107690166499 34.734855659481802 2.83892880612667 34.5908952167593 2.8341467412996701 34.442201896178098 2.8294636463553999 34.288252488978998 2.8207974698027201 33.9859314675032 2.8167945936254002 33.838796170842798 2.81287526490377 33.6866894232977 2.80902717390045 33.528291260737497 2.8052829310438399 33.364066992533097 2.8016348417060701 33.192723269769303 2.7981050202914299 33.013784165452101 2.7920916902905701 32.6814518375894 2.7895562421789002 32.531742582966203 2.7871083833471499 32.376368487710401 2.7847578006201599 32.214710819611199 2.7825176021118598 32.046093476335102 2.7804053514793599 31.869712678252501 2.7784431804868599 31.684610037964401 2.7752366384799001 31.332880864814602 2.77393495562321 31.170763391452699 2.7727616111720002 31.001215322360299 2.77173824709896 30.8231309967098 2.7709003159796302 30.636134761594299 2.7702914510733798 30.440688169272001 2.7699551035826899 30.238257690129501 2.7698769173965299 29.834646115906601 2.77011195388704 29.622954609622798 2.7706391453026602 29.445535360888901 2.7713867866586099 29.2385578779698 2.7723362894986998 29.075172431769801 2.7734268067025298 28.900551216849099 2.7746406804773001 28.741447949144099 2.7778015827124798 28.3758044105391 2.7798326932056998 28.1777868428291 2.78202990110149 27.990320148765498 2.7843658551117598 27.812037051382799 2.7868197938362198 27.6418059010227 2.7893775032406798 27.4787012123026 2.7920294255498499 27.321885155353201 2.7989808771983702 26.9382300646765 2.8033944174466501 26.719285939166401 2.8079853408145699 26.5114020721063 2.8127337818448601 26.312988818856901 2.8176333929819699 26.123116397126601 2.8226736794301299 25.940640929286801 2.8278516570466001 25.764881731797999 2.8393550147575799 25.397712804844598 2.8457258999264599 25.208538435378099 2.8522826576609899 25.026591378561701 2.8590283717423399 24.851150778169 2.8659692340111 24.681649229838602 2.8731147152307002 24.517620310280702 2.88047835292664 24.358681430832601 2.89470066143208 24.0702085638871 2.9015055933862302 23.939475582788202 2.9084775480958101 23.812538264228099 2.91572538036919 23.6878241705646 2.9230787253625499 23.568076859371399 2.93079933043601 23.449519036084599 2.9387269621140799 23.3350883120399 2.9543444904493201 23.123832863937 2.9619715308760601 23.026508990564398 2.96985417261818 22.931884225139999 2.9780225854059301 22.839984006841402 2.9865117577601898 22.750897724553798 2.9953660253356 22.664792023114298 3.0046412439488499 22.581911823816601 3.02143315299316 22.445908798895399 3.0286931032984099 22.391082004866799 3.03624929607872 22.338269041906202 3.04411791555383 22.2877070289247 3.05240263111145 22.239597881054902 3.06104891332427 22.194668668236101 3.0702557331577198 22.153121008946901 3.0867823446490701 22.090723986489401 3.09381492452352 22.0674678476081 3.1011434668011799 22.046757341103898 3.10879713820799 22.029018993245501 3.1167761721043701 22.014861409918002 3.12504815689134 22.004977254512099 3.1335394608332399 21.9999639629482 3.1421180197888798 22.000000402911699 + 0 9 0.020451729175787799 7 0.049551654993566598 7 0.082736039907863101 7 0.12136931361011299 7 0.15899622479377501 7 0.194196793783219 7 0.223874120262156 7 0.246027867209892 7 0.268403962672838 7 0.29867604159600197 7 0.33423817758737101 7 0.384122190106365 7 0.42882802026695599 7 0.46449856729266198 7 0.49034851210107999 7 0.51026955206567604 7 0.53258899886508504 7 0.56349573686483001 7 0.59980604534557402 7 0.63880670867184197 7 0.67469353488106998 7 0.70666552597802601 7 0.73129729106955099 7 0.75102879689399205 7 0.76986187455783395 7 0.795489602605709 7 0.83484838012461104 7 0.88061571790158299 7 0.92048473951999299 7 0.95636710916293499 7 0.98206683298474395 7 1 9 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +2 0 0 1 0 0 1 29 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 50 1 0 +2 0 0 1 0 0 1 29 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 1.5707963267949001 1 0 +2 0 0 1 0 0 1 27 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 3.14159265358979 1 0 +1 0 12 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 49 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 0 1 +7 0 0 8 114 17 0 22.000006323777601 0.0089768718080584405 22.0002515125902 0.017922642771300599 22.006030920926602 0.026786792354139301 22.017273583982401 0.035532098065944401 22.033754541413199 0.0441329994629132 22.055168572825998 0.052574400183356199 22.081187325260601 0.060850874541977198 22.1115058616783 0.0783953566502191 22.185828801141199 0.087589635639376398 22.2311774556347 0.096535057911997305 22.2813888680876 0.105278689387505 22.336286555903001 0.11378834856968199 22.395353087746798 0.122109245509989 22.458515735595 0.13023728232655299 22.525518792127102 0.14723065743313099 22.676705004477501 0.15603666437320701 22.761914347904298 0.164587820338574 22.851286227427099 0.17296850639080999 22.945352444389801 0.181117670257328 23.043280738522299 0.189106250560164 23.145615287123402 0.19691668627961101 23.252094273938301 0.212829828143595 23.482506510179899 0.22090518073791199 23.607151745302499 0.228778904910766 23.736439144473302 0.23650598334376099 23.871189757354198 0.24404790945459501 24.010854491913399 0.25144721400038 24.156241374839599 0.25869216768106601 24.3074212285958 0.27281348891233997 24.620705147104299 0.27969295929202398 24.7826722300914 0.286419297903868 24.9509343428896 0.293019826390856 25.126552899612602 0.29947189808061803 25.309719642135601 0.305789984219421 25.501634269581398 0.31196170660716799 25.703238277444299 0.32277850819445703 26.086036455882201 0.327474093311727 26.262887250270701 0.332069105688993 26.447865160289599 0.33655426277560302 26.641940246029499 0.340918697070621 26.846361639110899 0.34514190087688801 27.062742171322899 0.34919714175219702 27.2930100885245 0.35530770088748098 27.687018883680398 0.35749651241893898 27.839033119964199 0.35960428716736997 27.997941174137601 0.36161102197531197 28.164209462176299 0.36350371619878402 28.339024400736399 0.36525425818646401 28.523254262232498 0.366828117465343 28.7179107984139 0.36929644957706198 29.0953711675451 0.37026812712622398 29.275633066235699 0.37105439938715201 29.464255875253802 0.37161081794927803 29.6617090721262 0.37189228334159102 29.862586594943298 0.37187773321789602 30.0662339426699 0.37157559348825098 30.266528009100799 0.37047094535900599 30.6669076320164 0.36961141213510901 30.8678228320118 0.36851787637838701 31.059174931617001 0.36723478763608602 31.241077617594598 0.36579914358571503 31.413962163296301 0.36423952415501698 31.578526343890299 0.362574837148819 31.7356900687052 0.35834896761551299 32.097752159303802 0.35570215362978802 32.296005180578803 0.35293624347895097 32.481662995593702 0.350043170492154 32.659183975583701 0.34706795897225801 32.827112149614699 0.344002651810842 32.988321475192201 0.34086204331153303 33.142858833093896 0.33390383749948599 33.465036164648701 0.33006679293213798 33.630352076126997 0.32611709381272802 33.789845817826198 0.32214187892016499 33.940953860021203 0.31799017894558601 34.090688894619802 0.31380217283012402 34.233501386399901 0.309520432649529 34.3724797607154 0.29977156383763498 34.673854692841999 0.29425939267148499 34.834129132316299 0.28867352405247199 34.987359312342697 0.28295210106028601 35.136046234326898 0.27717093338391302 35.2779941858171 0.27139891037491398 35.413047163762798 0.26544997491724898 35.545406080865597 0.25343727030924801 35.799612296567403 0.24736898786071601 35.921823039496701 0.24113151224460799 36.041185708788603 0.23489890149046699 36.155184356236802 0.22829908761331 36.269442283760498 0.221788572050616 36.3770193255761 0.21493879698062701 36.484250559510102 0.20097967714679499 36.6911820213857 0.193924102659154 36.790030944720897 0.18680587338025501 36.884339352598403 0.17961474193986701 36.974371070340801 0.17233931991550999 37.060291248051897 0.16496291294466001 37.142228377075398 0.15746759446702099 37.220263086935503 0.14221832289315101 37.3684063505263 0.13460387953720501 37.436932818997299 0.12583915291557601 37.513002529886798 0.11677894019424 37.585222258809701 0.10729550857110801 37.6518319932201 0.097591410338756707 37.711935996934301 0.087946699993986299 37.764644025289897 0.069019346150611394 37.855969370009298 0.059725609222081401 37.894754933397998 0.0504079952593042 37.927947792312601 0.040982160384184001 37.955069021930498 0.0311911284166137 37.976244391728798 0.021313384141184999 37.990532918644199 0.0108948826297675 37.998899813367302 0 37.999426772196699 + 0 9 0.058332155897488497 7 0.12610729780597399 7 0.203128329129593 7 0.28628459510170901 7 0.36851128230551999 7 0.43406476811713302 7 0.47276130537807498 7 0.50482077164509598 7 0.54019847315269998 7 0.58971540073372097 7 0.64731694618928504 7 0.71873230465626603 7 0.78913885664921002 7 0.85997049029116002 7 0.93027647875214803 7 1 9 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 1 0 0 1 +7 0 0 8 114 17 0.0013773535676264701 49.000000119827 0.0259559030892977 48.999992699930502 0.050531294087884503 48.997933524814599 0.074959011008345094 48.993829695286799 0.099127150333165395 48.987763626552699 0.122954884237576 48.979866217059701 0.146391127781726 48.9702894719357 0.16941341144733699 48.959182619581703 0.218301260046668 48.932144252083397 0.244052109663984 48.915720069595501 0.26950624547246499 48.897513113489097 0.29429304992511202 48.8778410329137 0.31886120153341302 48.856716080888702 0.342894988511879 48.8344065457458 0.366598622267504 48.8109740377405 0.416492065163102 48.758775025823802 0.442579634731812 48.729729279406499 0.468568059264587 48.699370026774702 0.493983197486902 48.668131254370103 0.51942763901042799 48.6357979698656 0.54450024425114196 48.6027317973072 0.56946180884264996 48.568891317798098 0.62107968095666899 48.497157015277402 0.64770642244105403 48.459163648086097 0.67441504751069103 48.420380588941399 0.70095416277850597 48.381099590513202 0.72770084879814201 48.341185933205999 0.754470761700752 48.3008787716009 0.78144891971587105 48.2601703731412 0.83559556952498804 48.178603848454102 0.86273938082036805 48.137766315460802 0.89035517954917498 48.0966209728537 0.918287167078088 48.055364831837402 0.94685399147718396 48.013962899987902 0.97600551117582801 47.972595883446601 1.0059520161954201 47.931338591829402 1.06152120593874 47.857667538214898 1.0867657862575 47.8251865591834 1.11272898266327 47.7929608595717 1.13955116968065 47.761060382317403 1.16737085808685 47.729617753023 1.19639455546461 47.698812615120403 1.2268556970204301 47.668887631169099 1.27830197276246 47.623317773218602 1.2980303986266499 47.606878507847199 1.318434468362 47.590973539935398 1.3397725332125801 47.575688969952097 1.36212869740474 47.561188208140997 1.38555047137219 47.547706440053801 1.4102318222080299 47.535525599369002 1.45792260282789 47.516364235299399 1.4806062071714301 47.508795543434999 1.5044945359197699 47.502651625518602 1.5289147379967201 47.4983145957221 1.5544509341858099 47.496101682244799 1.5798300240113701 47.496278408460199 1.6047469933090499 47.4986668447009 1.6544885135334999 47.507308506830199 1.67940260912399 47.513997947289297 1.7031419840820801 47.522462695976699 1.7257626819804199 47.532341567211901 1.7473429394492399 47.543338836514003 1.76798398098809 47.555228372194001 1.78780927096382 47.5678607837798 1.8337807855942301 47.599785073995299 1.85910982178794 47.619632279467801 1.88382135991583 47.640511930024097 1.9071781704944599 47.662075702061003 1.93007467296501 47.684282027121498 1.9520488854553799 47.706926274776798 1.97342368335178 47.729956746251503 2.0183614993697701 47.780465670531697 2.0417355469480301 47.808048283852798 2.0641337742547901 47.83579908139 2.0865543190679201 47.864069531386598 2.1072513627346798 47.891939021592499 2.1280026663568798 47.920119472976602 2.1481017886193299 47.948239739347301 2.1924123471394599 48.011308326106899 2.2163570909063801 48.046221236096798 2.2401736825340399 48.081280844430196 2.2633945875865402 48.1161190937651 2.2867643419419199 48.151084187174497 2.3107741310376801 48.186425368913198 2.3340183526497 48.221209323516199 2.3800003449584701 48.289852662575903 2.40269597191817 48.323695528303098 2.4247944614788799 48.356949226844897 2.4477536555835999 48.390434361365998 2.4687165139166201 48.4223595725976 2.4913591752236699 48.4548843658417 2.5124050007353298 48.4859743938731 2.5553301035037501 48.5477382993014 2.5775154391772701 48.5785572862465 2.6003632948255699 48.609121898666402 2.6238598836473699 48.639324471463702 2.6479854492986599 48.669052574192598 2.6726973677436701 48.698174051557402 2.6979569175304698 48.726549315650701 2.7491379384758399 48.781165918885698 2.7765765138075902 48.808363835771701 2.7968265914935699 48.830054589600103 2.81936260985362 48.851825348381801 2.8396281726778101 48.871592007222702 2.86145521373607 48.891144793794403 2.88528055339818 48.909627834772301 2.9372313972517801 48.943494372133102 2.96579192165182 48.959063857062297 2.9961432438318298 48.9727301347123 3.0279284792298702 48.983947996265798 3.0585585966906201 48.992622318121398 3.0912147118870199 48.998425004702902 3.12129666963911 49.0007677736915 3.1496339543934901 49.000169124066097 + 0 9 0.058332155897488497 7 0.12610729780597399 7 0.203128329129593 7 0.28628459510170901 7 0.36851128230551999 7 0.43406476811713302 7 0.47276130537807498 7 0.50482077164509598 7 0.54019847315269998 7 0.58971540073372097 7 0.64731694618928504 7 0.71873230465626603 7 0.78913885664921002 7 0.85997049029116002 7 0.93027647875214803 7 1 9 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 -3.14159265358979 37 1 0 +2 0 -0.01 -1 0 0 -1 5 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +2 -0.0100000000000016 0 -1 0 0 -1 4 +1 -3.14159265358979 65 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 80 1 0 +2 0 0 1 0 0 1 4 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 1.5707963267949001 1 0 +2 0 0 1 0 0 1 24 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 15 1 0 +2 0 0 1 0 0 1 26 +2 0 0 0 -1 1 0 16 +1 -1.5707963267949001 17 1 0 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +1 0 0 1 0 +2 0 0 1 0 0 1 26 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +2 0 0 0 -1 1 0 16 +1 -1.5707963267949001 2 1 0 +1 0 35 1 0 +2 0 0 1 0 0 1 18 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 -25 -0.10000000000000001 -1 0 +1 109 25 0 -1 +2 0 0 0 -1 1 0 16 +1 -1.5707963267949001 35.100000000000001 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 3.1471482377237101 0 0 1 +1 74 32.000277779921198 1 0 +1 6.2776297230456697 0 0 1 +1 74 67.999722220078795 1 0 +1 0 0 1 0 +2 0 0 1 0 0 1 18 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 3.1478426942806101 0 0 1 +1 73.900000000000006 34.000312503051802 1 0 +1 -25 -0.10000000000000001 -1 0 +1 74 25 0 -1 +1 6.2769352664887696 0 0 1 +1 73.900000000000006 65.999687496948198 1 0 +2 0 0 0 -1 1 0 16 +1 -1.5707963267949001 0.10000000000000001 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +1 -1.5707963267949001 0.95000000000000295 1 0 +2 0 0 0 -1 1 0 7 +1 0 0 1 0 +2 0 0 1 0 0 1 7 +2 0 0 0 -1 1 0 6 +1 -1.5707963267949001 0.5 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +2 0 0 0 -1 1 0 6 +1 -1.5707963267949001 1.5 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 -1.5707963267949001 1.95 1 0 +2 0 0 0 -1 1 0 7 +1 0 25 1 0 +2 0 0 1 0 0 1 7 +2 0 0 0 -1 1 0 6 +1 -1.5707963267949001 0.049999999999997199 1 0 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +1 0 14 1 0 +2 0 0 1 0 0 1 6 +1 -1.5707963267949001 0.5 1 0 +2 0 0 0 -1 1 0 9 +1 3.15270399333729 0 0 1 +1 12 62.000555572703398 1 0 +1 6.2720739674320898 0 0 1 +1 12 79.999444427296595 1 0 +1 0 0 1 0 +2 0 0 1 0 0 1 9 +1 -35.5 -0.10000000000000001 -1 0 +1 12.5 35.5 0 -1 +2 0 0 0 -1 1 0 8 +1 -1.5707963267949001 0.5 1 0 +1 -35.5 -0.10000000000000001 -1 0 +1 12 35.5 0 -1 +1 3.1558788538287899 0 0 1 +1 11 64.000714322161201 1 0 +1 3.1540929791335199 0 0 1 +1 12 63.000625024416003 1 0 +1 -25 -0.10000000000000001 -1 0 +1 35.100000000000001 25 0 -1 +1 6.2688991069405899 0 0 1 +1 11 77.999285677838898 1 0 +1 6.2706849816358599 0 0 1 +1 12 78.999374975584004 1 0 +2 0 0 0 -1 1 0 7 +1 -1.5707963267949001 1 1 0 +2 21 0 0 -1 1 0 8 +1 -1.5707963267949001 23.100000000000001 1 0 +1 -1.5707963267949001 24.100000000000001 1 0 +2 21 0 0 -1 1 0 7 +1 1.5707963267949001 0 0 1 +1 1 0 0 1 +1 -46.5 39.899999999999999 -1 0 +1 35.600000000000001 46.5 0 -1 +1 1.5707963267949001 0 0 1 +1 0 1 1 0 +2 47 40 0 -1 1 0 30 +1 -1.5707963267949001 0.59999999999999398 1 0 +1 1.5707963267949001 0 0 1 +1 89 0 0 1 +1 4.7123889803846897 39.899999999999999 -1 0 +2 36.600000000000001 94 1 0 0 1 1 +8 0 1 +7 0 0 1 2 2 1.5707963267949001 1 0 1 + 0 2 1 2 +8 0 1 +1 0 0 0 1 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +7 0 0 8 30 5 0 33.832342421956298 0.063941750800577096 34.157874595189398 0.12608410689509 34.494632362813498 0.186269392490584 34.842124739925701 0.24435210330316101 35.200156601715797 0.30013792243635501 35.569176248343801 0.35338886031788502 35.950219642153499 0.40377048554029699 36.345375211687902 0.49246089104822999 37.129763463920298 0.53151647783522504 37.515431286083299 0.56739163983257201 37.921091529702601 0.59890480235002896 38.349179416693303 0.62436924226731505 38.800243698089197 0.64126389103104997 39.273283792533697 0.64715487954151696 39.764065910852899 0.63820804642787998 40.656243002187601 0.627185727855468 41.047612742314499 0.60978269026575405 41.424812272251401 0.58739018661481301 41.786225878976403 0.56124583199754197 42.131866622437997 0.53222347433794803 42.462643625533801 0.50089285580849596 42.780587922311298 0.419678792928464 43.528227303978902 0.36783512769994497 43.945468487345003 0.31276101565412001 44.346804010369802 0.25487002725310298 44.734725603427798 0.194449249056103 45.110498733102503 0.131727079559146 45.4747405614035 0.066857522419909707 45.827280996266801 0 46.167657578043702 + 0 9 0.27405809103505002 7 0.51884783229647502 7 0.71714785071540399 7 1 9 +7 0 0 8 30 5 3.3355456813891302 8 3.3251784147256598 8 3.3144777700011798 7.9953269530283197 3.3034604170142101 7.9864437182271502 3.2921329819885901 7.9738901619558202 3.28048133790463 7.95827822014716 3.2684725311898202 7.9402654903456797 3.2560404189985501 7.9205812083369498 3.2314016437503201 7.8819546547909196 3.2193029782757798 7.8631452902367904 3.2065918704289098 7.8443783373739597 3.19319211851175 7.8267177291950301 3.1790855064780801 7.8115738721392303 3.16430125846844 7.8013162360738697 3.1489660041933698 7.7978121721927396 3.1210845711730002 7.8031710415994899 3.10885244842963 7.80975732878548 3.0970588406981401 7.8200669864838899 3.0857520886720402 7.8329438301383698 3.0749307200614502 7.8473105325600399 3.0645659431640899 7.8623907587874902 3.0545939434645701 7.8776513661741596 3.0311206113948099 7.9142452854721199 3.0179995554608601 7.9352794523395298 3.00535640257546 7.95467118059904 2.9931122430357902 7.9715672217623901 2.9812268245120599 7.9852082072251296 2.9696806724176801 7.99489088513673 2.9584796443183801 8 2.94763962579046 8 + 0 9 0.27405809103505002 7 0.51884783229647502 7 0.71714785071540399 7 1 9 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 0 1 +1 1 0 0 -1 +1 -1.5707963267949001 39.899999999999999 1 0 +2 36.600000000000001 182 1 0 0 1 1 +1 6.2798519676733804 0 0 1 +1 35 169.99983333287 1 0 +1 -17.800000000000001 -39.899999999999999 1 0 +1 17.800000000000001 183 1 0 +1 -70 -0.10000000000000001 -1 0 +1 35 70 0 -1 +1 1.5707963267949001 39.899999999999999 -1 0 +2 99.599999999999994 182 1 0 0 1 1 +1 3.1449259930959998 0 0 1 +1 35 110.00016666713 1 0 +1 -46.5 39.899999999999999 -1 0 +1 100.59999999999999 46.5 0 -1 +1 6.28040752582955 0 0 1 +1 100.09999999999999 175.999861110843 1 0 +1 -40 49.899999999999999 -1 0 +1 110 40 0 -1 +1 3.1447176586760799 0 0 1 +1 36.000156250381501 101 0 -1 +1 3.0915717967840202 0 0 1 +1 119 179.002501564456 -1 0 +1 -15 -49.899999999999999 1 0 +1 15 80 1 0 +1 -90.5 0.10000000000000001 1 0 +1 101 90.5 0 1 +1 -40 49.899999999999999 -1 0 +1 30 40 0 -1 +1 0.050020856805770002 0 0 1 +1 119 182.997498435544 -1 0 +1 -15 -49.899999999999999 1 0 +1 15 190 1 0 +8 0 1 +7 0 0 1 2 2 1.5707963267949001 1 0 1 + 0 2 1 2 +8 0 1 +1 1 0 0 1 +1 0 0 0 1 +1 1 0 0 1 +8 0 1 +7 0 0 1 2 2 1.5707963267949001 89 0 89 + 0 2 1 2 +8 0 1 +1 1 0 0 1 +1 0 0 1 0 +2 0 0 1 0 0 1 30 +8 0 1 +7 0 0 1 2 2 1.5707963267949001 1 0 1 + 0 2 1 2 +8 0 1 +1 0 0 0 1 +1 0 0 0 1 +1 1 0 0 -1 +1 0 0 1 0 +8 0 1 +6 0 3 0 1 0.52359877559829904 1 1.0471975511966001 1 1.5707963267949001 1 +1 0 1 1 0 +1 0 0 1 0 +1 0 -100 1 0 +2 32.399999999999999 -40 -1 0 0 1 32 +1 3.14159265358979 8 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +2 38 -50 -1 0 0 1 32 +1 -3.14159265358979 21 1 0 +1 0 0 1 0 +1 0 -100 1 0 +7 0 0 7 14 3 0 34.956191914832601 0.0481062221348241 35.2575825692333 0.094521165872387194 35.569931583934498 0.139115015614174 35.893925854719299 0.181648009184459 36.230483432730303 0.22177840402316401 36.580693624393199 0.25900735023404198 36.946176858909404 0.32219158267513098 37.668698438068297 0.34897593015296202 38.021964622790598 0.37232521444111399 38.391252814947698 0.39131255933629 38.776727466742798 0.40475428113130402 39.176826158304301 0.41151689106720601 39.587672252001703 0.41151684607856198 40 + 0 8 0.53103945332248503 6 1 8 +7 0 0 7 14 3 6.1249062572547599 8 6.1344439361915004 8 6.1443114581799403 7.9973002195700502 6.1545298741537202 7.99224156008765 6.1651276382044502 7.9852092243242003 6.1761387772719099 7.9766648816968297 6.1876142414812501 7.9671854516650296 6.21027205639672 7.9489628011025699 6.2213392304036299 7.9402565021785501 6.2328981131937802 7.9319162875127001 6.2449545378674296 7.9246012321782304 6.2574611266116102 7.9192191838562502 6.2703000650546397 7.9165151209680404 6.2831853071795898 7.9165151389634998 + 0 8 0.53103945332248503 6 1 8 +1 0 0 1 0 +1 0 -100 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 6.2800603020933004 0 0 1 +1 99.999843749618506 101 0 -1 +1 0 0 0 1 +1 0 -1 1 0 +1 0 0 0 1 +1 64 0 0 -1 +1 0 0 0 1 +1 0 -1 1 0 +1 0 0 0 1 +1 64 0 0 -1 +8 0 1 +7 0 0 1 2 2 1.5707963267949001 1 0 1 + 0 2 1 2 +8 0 1 +1 0 0 0 1 +1 1.5707963267949001 0 0 1 +1 89 0 0 1 +1 1.5707963267949001 0 0 1 +1 1 0 0 1 +1 1.5707963267949001 0 0 1 +1 0 1 1 0 +1 -1.5707963267949001 0.499999999999994 1 0 +2 47 40 0 -1 1 0 36 +1 3.1443704349398298 0 0 1 +1 100.09999999999999 104.000138889157 1 0 +2 60 50 0 -1 1 0 36 +1 -1.5707963267949001 9.9000000000000092 1 0 +2 60 9 0 1 1 0 2 +1 -3.14159265358979 9 1 0 +1 80 0 0 -1 +1 0 0 0 1 +1 80 0 0 1 +1 0 0 1 0 +2 19 50 0 1 1 0 2 +1 -4.7123889803846897 9 1 0 +1 80 0 0 -1 +1 110 0 0 1 +2 101 50 0 1 1 0 2 +1 -1.5707963267949001 9 1 0 +1 0 18 1 0 +2 0 0 1 0 0 1 2 +1 0 0 0 -1 +1 0 0 0 1 +1 0 0 1 0 +1 0 0 1 0 +1 0 0 0 1 +1 0 0 1 0 +1 0 0 0 -1 +1 110 0 0 1 +1 0 0 1 0 +1 0 110 1 0 +1 1.5707963267949001 0 0 1 +1 0 1 1 0 +1 0 0 0 1 +1 64 0 0 1 +1 1.5707963267949001 0 0 1 +1 0 89 1 0 +1 0 0 1 0 +8 0 1 +6 0 3 0 1 0.52359877559829904 1 1.0471975511966001 1 1.5707963267949001 1 +1 0 1 1 0 +8 0 1 +6 0 3 0 64 0.52359877559829904 64 1.0471975511966001 64 1.5707963267949001 64 +1 0 1 1 0 +1 0 0 1 0 +1 0 -100 1 0 +1 -4.7123889803846897 39.899999999999999 1 0 +2 99.599999999999994 94 1 0 0 1 1 +8 0 1 +7 0 0 1 2 2 1.5707963267949001 1 0 1 + 0 2 1 2 +8 0 1 +1 0 0 0 1 +1 0 0 1 0 +1 0 -100 1 0 +1 6.2331644503738204 0 0 1 +1 119 97.002501564456196 -1 0 +1 49.5 -0.10000000000000001 -1 0 +1 101 49.5 0 1 +1 3.1916135103955598 0 0 1 +1 119 100.997498435544 -1 0 +8 0 1 +6 0 3 0 64 0.52359877559829904 64 1.0471975511966001 64 1.5707963267949001 64 +1 0 1 1 0 +1 0 0 1 0 +8 0 1 +7 0 0 1 2 2 1.5707963267949001 89 0 89 + 0 2 1 2 +8 0 1 +1 1 0 0 1 +8 0 1 +7 0 0 1 2 2 1.5707963267949001 1 0 1 + 0 2 1 2 +8 0 1 +1 1 0 0 1 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +1 0 0 1 0 +1 35 -2.5 0 1 +1 49 -2.5 0 -1 +1 -57 -4.9000000000000004 1 0 +1 57 181 1 0 +1 0 0 1 0 +1 0 0 1 0 +2 9 -5 -1 0 0 1 2 +1 -1.5707963267949001 2.5 1 0 +1 0 0 0 -1 +1 0 0 0 1 +1 -73 -0.10000000000000001 -1 0 +1 163 73 0 -1 +1 17.5 -5 -1 0 +1 49 -17.5 0 -1 +2 0 0 0 -1 1 0 26 +1 -1.5707963267949001 85 1 0 +1 0 80 1 0 +2 0 0 1 0 0 1 36 +1 6.2793391438507404 0 0 1 +1 78 171.999807691596 1 0 +1 1.52077546998913 0 0 1 +1 124.997498435544 183.5 0 -1 +1 0 0 0 1 +1 0 0 1 0 +1 6.1438459664218197 0 0 1 +1 -31 0.65108693995177402 1 0 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +7 0 0 8 37 6 6.2831853071795898 47 6.27876763910169 47 6.2747111174429904 46.992460510889003 6.27104971402568 46.979545468013697 6.2677551656940897 46.963302445755801 6.2647885823899703 46.944996297085403 6.2620913679051498 46.9254438479336 6.2595835996058096 46.9047178713029 6.2542205007888496 46.854629923636701 6.25151274543604 46.825317153023001 6.2489821031804702 46.794540513352402 6.2465990298773502 46.7624472822462 6.2443419305263603 46.729128604624499 6.2421925266516904 46.694631971809599 6.2401383965314796 46.658945422225401 6.2346988062211599 46.557025419391401 6.2314967437868596 46.488346487491903 6.2284969793735403 46.415729451848101 6.2256722662371597 46.338711909180297 6.2230019927645097 46.256817910739002 6.2204773781873204 46.169024610374002 6.21809261788282 46.074305744817799 6.2149213935373702 45.925876342770998 6.2140156193783502 45.880540768166298 6.2131361196660704 45.833288603506098 6.21228422235707 45.783823334021797 6.2114622785222702 45.731825468779498 6.2106738090986502 45.676914568717898 6.2099243140961802 45.618513374228897 6.2086203987073896 45.5016134172512 6.2080660796220402 45.445387770404899 6.2075488807973498 45.385359121765198 6.2070762056352704 45.320129320724298 6.2066666470097402 45.248880158637697 6.20635457652907 45.171198927686298 6.2061861163282899 45.0873483736206 6.2061861665227598 45 + 0 9 0.16564733820084801 7 0.36813293306086597 7 0.72435178341570605 7 0.87266714746790996 7 1 9 +7 0 0 8 37 6 1.5707963267949001 11.5 1.51336664178228 11.5 1.4606320008276299 11.5005799526083 1.41274588020485 11.501573475792901 1.36925662081043 11.502810528916701 1.3296950497073401 11.5041883031605 1.2933403224875399 11.5056423993667 1.2591640233152599 11.5071655087769 1.1851044519323799 11.510792681047199 1.14703516352338 11.512882191516301 1.11078570129556 11.5150370828652 1.0759679769131101 11.517240546306599 1.04229331138936 11.5194802375935 1.0095103999436601 11.5217469569006 0.97743495396652602 11.524035325568301 0.89032939537429401 11.5304000434374 0.83652016915656502 11.5345037262533 0.78343716213250403 11.538632065324499 0.73045134063908501 11.5427668135035 0.67700879507460499 11.5468889184768 0.62241021530684604 11.550974275289001 0.56599026063511504 11.5549972865208 0.48113940611577899 11.5605447149879 0.45561759824187498 11.5621549379343 0.42940127113339699 11.5637424380159 0.40233807047855702 11.5653023904491 0.37426742577151401 11.5668280563566 0.34500010299494999 11.5683102733607 0.31424890356410301 11.5697356659217 0.25340397196987802 11.572240847476101 0.22439966627663099 11.5733165871238 0.19367425920023901 11.574328814859999 0.16052579815486501 11.575261499024601 0.124569300966014 11.576076129889101 0.085598542285362497 11.576700425897201 0.043674384379912098 11.577037299042701 0 11.577037206368599 + 0 9 0.16564733820084801 7 0.36813293306086597 7 0.72435178341570605 7 0.87266714746790996 7 1 9 +1 -90.5 4.9000000000000004 -1 0 +1 114 90.5 0 -1 +1 4.7123889803846897 31 1 0 +2 -35 5 0 -1 1 0 36 +1 4.76240983719046 0 0 1 +1 121.002501564456 183.5 0 -1 +7 0 0 8 37 6 6.2061861665227598 45 6.2061861661234001 44.896472740043002 6.2064224536760904 44.799768097460898 6.2068402919420604 44.711556856894298 6.2073738949031796 44.631528812696097 6.2079823578540099 44.559006670223503 6.2086372202952598 44.492772209779901 6.2093337628149596 44.431098703547001 6.2111653475007502 44.2875284653149 6.2123239976455702 44.211038340172998 6.2135481383764404 44.1400042383395 6.21483004730944 44.073479610122398 6.2161648279069599 44.010764239916597 6.2175497192745697 43.951245165120099 6.2189852831024401 43.894547177162998 6.2232064181761402 43.740653543346099 6.2261073873893098 43.6496055331558 6.2291898074323999 43.5647476578892 6.2324813500043597 43.485235235521699 6.2360013200416704 43.410368648381898 6.2398151548072596 43.339979342628602 6.24396576338322 43.273915799824401 6.2504854912459296 43.188860745996799 6.2523850908431404 43.165866542320799 6.2543773571730403 43.143642885899801 6.2564757165440597 43.122232541474702 6.2586997802107902 43.1017528428007 6.2610716961184396 43.082372561997602 6.2636206026170802 43.064332324826402 6.2681358723248701 43.038110509854199 6.2699267920689801 43.0289421739473 6.2718218961428898 43.020544761391498 6.2738464720169702 43.013075689376599 6.27601243214969 43.006848328371298 6.2783165416329298 43.002325332899602 6.2807320920581402 42.999999866439502 6.2831853071795898 43 + 0 9 0.149827758533533 7 0.36322873546102702 7 0.75468941848701099 7 0.90647438673820302 7 1 9 +7 0 0 8 37 6 6.2831853071795898 11.5770372063684 6.2314216772011104 11.5770372071671 6.1830695019414499 11.576564643091499 6.1387515407192597 11.575728888889399 6.0982240989947902 11.5746700900833 6.06117385706278 11.573475237271801 6.0270185801886997 11.572202546297399 5.9949062580488697 11.570863038147101 5.91929536996959 11.567385213578101 5.8782664062662704 11.565219487817201 5.83942954341172 11.5629729124466 5.8023091919132099 11.5606673904093 5.7665485151410101 11.558318848495601 5.7318273982752999 11.555939095413001 5.6979330420391596 11.553534181752701 5.6034858866464896 11.5466562166353 5.5445662335998902 11.5421510232655 5.4864594106925297 11.5376171443842 5.4283314026164202 11.533077353146201 5.3695278011290499 11.5285550979294 5.3089921821076302 11.5240866796861 5.24598759632417 11.519706932494501 5.15120513338604 11.5138563224828 5.12398930571843 11.512249908363399 5.0958385269327398 11.5106746201762 5.0665761910377798 11.509135986004299 5.0359493058168097 11.5076451715251 5.0036739727711899 11.5062175533697 4.9693748425109696 11.5048745422491 4.9092381153808704 11.5029057225826 4.8855188870550004 11.5022129536147 4.8605441866812003 11.501574998335199 4.8339834260010797 11.5010045926043 4.8056859544885597 11.500526836275499 4.7756827257329801 11.500178855225901 4.7442808227238098 11.499999993162501 4.7123889803846897 11.5 + 0 9 0.149827758533533 7 0.36322873546102702 7 0.75468941848701099 7 0.90647438673820302 7 1 9 +1 6.28040752582955 0 0 1 +1 83 181.999861110843 1 0 +1 -73 -0.10000000000000001 -1 0 +1 103 73 0 -1 +1 3.1165900486904299 0 0 1 +1 104 183.00125019537401 -1 0 +1 -93.5 0.10000000000000001 1 0 +1 100 93.5 0 1 +1 3.0915717967840202 0 0 1 +1 102 185.002501564456 -1 0 +1 -73 -0.10000000000000001 -1 0 +1 93 73 0 -1 +1 -73 -0.10000000000000001 -1 0 +1 83 73 0 -1 +1 6.28040752582955 0 0 1 +1 83 181.999861110843 1 0 +2 0 0 0 -1 1 0 26 +1 -1.5707963267949001 5 1 0 +1 3.1454388169186398 0 0 1 +1 78 120.000192308404 1 0 +1 -1.5707963267949001 20 1 0 +2 0 0 0 -1 1 0 36 +1 3.1443704349398298 0 0 1 +1 83 110.000138889157 1 0 +1 3.1443704349398298 0 0 1 +1 83 110.000138889157 1 0 +1 3.1665952584891501 0 0 1 +1 104 108.998749804626 -1 0 +1 52.5 -0.10000000000000001 -1 0 +1 100 52.5 0 1 +1 3.1916135103955598 0 0 1 +1 102 106.997498435544 -1 0 +2 0 -41 0 1 1 0 4 +1 -3.14159265358979 1 1 0 +2 -41 0 0 1 1 0 4 +1 -4.7123889803846897 1 1 0 +2 41 0 0 1 1 0 4 +1 -1.5707963267949001 1 1 0 +1 0 10 1 0 +2 0 0 1 0 0 1 46 +1 0.025002604899361101 0 0 1 +1 104 190.99874980462599 -1 0 +1 0 4 1 0 +2 0 0 1 0 0 1 4 +2 0 0 0 -1 1 0 2 +1 -1.5707963267949001 2 1 0 +2 41 0 0 1 1 0 2 +1 -1.5707963267949001 9 1 0 +1 0.050020856805770002 0 0 1 +1 102 188.997498435544 -1 0 +2 0 -41 0 1 1 0 2 +1 -3.14159265358979 9 1 0 +1 0 0 1 0 +2 0 0 1 0 0 1 46 +2 -41 0 0 1 1 0 2 +1 -4.7123889803846897 9 1 0 +1 -1.5707963267949001 10 1 0 +2 0 0 0 -1 1 0 36 +1 0 0 1 0 +2 0 0 1 0 0 1 36 +1 6.2581827022802203 0 0 1 +1 104 101.001250195374 -1 0 +1 6.2331644503738204 0 0 1 +1 102 103.002501564456 -1 0 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +1 3.1437665683455598 0 0 1 +1 93 100.00010869578099 1 0 +1 6.28101139242382 0 0 1 +1 93 191.99989130421901 1 0 +1 0 1 1 0 +2 0 0 1 0 0 1 9 +1 -35.5 -0.10000000000000001 -1 0 +1 12 35.5 0 -1 +2 0 0 0 -1 1 0 6 +1 -1.5707963267949001 1.5 1 0 +1 3.15270399333729 0 0 1 +1 11 62.000555572703398 1 0 +1 6.2720739674320898 0 0 1 +1 11 79.999444427296595 1 0 +1 0 0 1 0 +2 0 0 1 0 0 1 9 +1 3.1582600919578598 0 0 1 +1 10.5 65.0008333912117 1 0 +1 -35.5 -0.10000000000000001 -1 0 +1 11 35.5 0 -1 +1 6.2665178688115102 0 0 1 +1 10.5 76.9991666087883 1 0 +2 0 0 0 -1 1 0 6 +1 -1.5707963267949001 0.5 1 0 +2 21 0 0 -1 1 0 6 +1 -1.5707963267949001 20.600000000000001 1 0 +1 1.88131816146066 0 0 1 +1 0.289686993997119 -13.5 0 1 +7 0 0 4 5 2 0.28962431716394998 0.11180339887499 0.28936721186587 0.50402776286378903 0.28876107625985398 0.89600481665788601 0.28778700691289599 1.28723143721331 0.286421644346532 1.6770509831259699 + 0 5 1 5 +7 0 0 4 5 2 1.88965413089648 20.600000000000001 1.91890130528706 20.9508161361242 1.94816376339297 21.301411071286999 1.9774720753838499 21.651334798552501 2.0068558690210501 22 + 0 5 1 5 +1 -1.5707963267949001 14 1 0 +2 21 0 0 -1 1 0 6 +1 0 22 1 0 +2 0 0 1 0 0 1 6 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +7 0 0 4 5 2 5.9967636628331498 1.67705098313168 5.9953982990959496 1.28723110293617 5.9944242314908696 0.89600488538582101 5.9938180953869402 0.50402787472814503 5.9935609900155304 0.11180339887499 + 0 5 1 5 +7 0 0 4 5 2 4.2763294381563801 22 4.3057132569911403 21.6513344995608 4.33502153849685 21.301411132765502 4.3642839935510898 20.950816236178799 4.39353117628312 20.600000000000001 + 0 5 1 5 +2 21 0 0 -1 1 0 6 +1 -1.5707963267949001 0.59999999999999998 1 0 +1 -1.5707963267949001 20.600000000000001 1 0 +1 4.4018671457189198 0 0 1 +1 5.9934983131824699 -13.5 0 1 +1 -1.5707963267949001 14 1 0 +2 0 0 0 -1 1 0 20 +1 -1.5707963267949001 7.0999999999999996 1 0 +1 -1.5707963267949001 0.111803398874989 1 0 +2 0 0 0 -1 1 0 19.949999999999999 +2 0 0 0 -1 1 0 20 +1 -1.5707963267949001 0.5 1 0 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +1 4.7123889803846897 1.6770509831248399 1 0 +2 -21 0 0 -1 1 0 19.25 +1 0 4.4721359549995796 1 0 +2 0 0 1 0 0 1 18 +1 -1.5707963267949001 1.6770509831248399 1 0 +1 -1.5707963267949001 13.4 1 0 +2 0 0 0 -1 1 0 34 +1 0 0 1 0 +2 0 0 1 0 0 1 34 +1 -1.5707963267949001 0.100000000000001 1 0 +2 0 0 0 -1 1 0 16 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +1 0 17 1 0 +2 0 0 1 0 0 1 16 +2 0 0 0 -1 1 0 15 +1 -1.5707963267949001 1 1 0 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +1 -1.5707963267949001 27.899999999999999 1 0 +2 0 0 0 -1 1 0 15 +1 0 0 1 0 +2 0 0 1 0 0 1 16 +1 0 17 1 0 +2 0 0 1 0 0 1 16 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +2 0 0 0 -1 1 0 14 +1 -1.5707963267949001 4.9000000000000101 1 0 +1 6.2831853071795898 0 0 1 +1 0 0 0 1 +1 0 50 1 0 +2 0 0 1 0 0 1 14 +Curves 449 +2 0 0 38 0 0 1 0 -1 0 1 0 0 26 +1 -25.999807691596502 -0.10000000000000001 24 0 0 1 +1 25.999807691596502 -0.10000000000000001 24 0 0 1 +2 0 0 0 0 0 1 1 0 0 0 1 0 26 +1 -25 -0.10000000000000001 38 -1 0 0 +2 0 0 0 0 0 1 0 -1 0 1 0 0 24 +1 -25 -0.10000000000000001 24 -1 0 0 +1 -22.999782607668301 -0.10000000000000001 23 0 0 1 +1 -23.999791665762402 -0.10000000000000001 37 0 0 1 +1 -25 -0.10000000000000001 59 -1 0 0 +1 -25 -0.10000000000000001 42 -1 0 0 +1 -25.999807691596502 -0.10000000000000001 24 0 0 1 +1 22.999782607668301 -0.10000000000000001 23 0 0 1 +1 23.999791665762402 -0.10000000000000001 37 0 0 1 +1 25.999807691596502 -0.10000000000000001 24 0 0 1 +2 0 0 0 0 0 1 0 -1 0 1 0 0 23 +2 0 0 4 0 0 1 0 -1 0 1 0 0 24 +2 0 0 35 0 0 1 0 -1 0 1 0 0 23 +2 0 0 35 0 0 1 1 0 0 0 1 0 26 +2 0 0 42 0 0 1 0 -1 0 1 0 0 26 +2 0 0 90 0 0 1 1 0 0 0 1 0 32 +1 -159 -0.10000000000000001 -57.5 0 0 -1 +2 -159 0 -32 1 0 0 0 0 1 0 -1 0 29 +1 -69 -0.10000000000000001 -63.999843749618499 -1 0 0 +1 -69 -0.10000000000000001 -0.00015625038147248902 -1 0 0 +7 0 0 6 22 5 -133 0 -63.999999999941501 -133 -3.9367350052954899 -63.999999606267899 -133 -7.8758970446441996 -63.418815539857597 -133 -11.7047230549851 -62.255232671957003 -133 -15.31976488089 -60.539041971665299 -133 -18.624524916214799 -58.317797893253598 -133 -24.695744236289102 -52.793413369113999 -133 -27.397248476601298 -49.410113885409203 -133 -29.5321403310767 -45.614694155493503 -133 -31.0317772842956 -41.526362377619499 -133 -31.8500328562519 -37.274728060535899 -133 -32.118386587363602 -28.735573878443599 -133 -31.568712084902302 -24.4409565369678 -133 -30.328746893340799 -20.266528131251299 -133 -28.436385094965999 -16.3445407930041 -133 -25.9526470408404 -12.798281438651699 -133 -20.007287979299399 -6.6631468174117998 -133 -16.540680122118602 -4.0692236194236102 -133 -12.680035013817401 -2.0546612285118502 -133 -8.5466730279652392 -0.68426370769690004 -133 -4.2715641540742402 1.4210854715202001e-014 -133 1.13686837721616e-013 0 + 0 7 0.23501735746602601 5 0.49000787063611001 5 0.74499758603337995 5 1 7 +1 -159.5 -0.10000000000000001 -60.999827585694398 1 0 0 +1 -59.5 -0.10000000000000001 -57.5 0 0 1 +7 0 0 7 20 4 -133 -0.100000000000004 -63.9998437495601 -132.999999978575 -0.100000000000004 -64.214138915454399 -132.982141131514 -0.099999999999982395 -64.429772071924901 -132.94602347750501 -0.10000000000001601 -64.645791250948193 -132.891046262819 -0.100000000000008 -64.861014083966396 -132.816532242748 -0.099999999999970807 -65.074015167958095 -132.72175860615801 -0.100000000000011 -65.283094458639795 -132.503248098884 -0.100000000000011 -65.666185867141493 -132.38412373881499 -0.099999999999992803 -65.8413451906045 -132.247948066725 -0.099999999999993899 -66.010368278126293 -132.094211419499 -0.100000000000006 -66.171424372284804 -131.92264443809401 -0.100000000000009 -66.322226386427204 -131.733383390482 -0.099999999999993996 -66.460099670584299 -131.34148696566399 -0.099999999999993996 -66.6918675389893 -131.14194856530801 -0.100000000081775 -66.788858997913295 -130.92948461089699 -0.099999999737885203 -66.870568122863205 -130.705845936348 -0.100000000363952 -66.934401284864705 -130.47371020099999 -0.099999999755069902 -66.978050590293407 -130.23679788982 -0.100000000044039 -66.9998571188856 -130 -0.100000000044039 -66.999857142565503 + 0 8 0.37267989255128098 6 0.70284495690860505 6 1 8 +1 -61.5 -0.10000000000000001 -57.999807691596502 1 0 0 +7 0 0 7 20 4 -127 -0.100000000000009 -63.999843749561798 -127.000000021425 -0.100000000000009 -64.214138915456402 -127.017858868486 -0.099999999999953501 -64.429772071920695 -127.053976522496 -0.100000000000025 -64.645791250950495 -127.10895373718201 -0.100000000000024 -64.861014083970005 -127.183467757252 -0.099999999999954098 -65.074015167955906 -127.278241393843 -0.100000000000013 -65.283094458641003 -127.49675190111699 -0.100000000000013 -65.666185867143298 -127.615876261181 -0.099999999999946798 -65.841345190598901 -127.752051933277 -0.100000000000012 -66.010368278128496 -127.90578858050399 -0.100000000000036 -66.171424372288996 -128.077355561904 -0.099999999999980396 -66.322226386424404 -128.266616609518 -0.099999999999994801 -66.460099670584796 -128.65851303433601 -0.099999999999994801 -66.691867538989499 -128.85805143469199 -0.100000000081775 -66.788858997913295 -129.070515389104 -0.099999999737886106 -66.870568122863503 -129.29415406365101 -0.100000000363951 -66.934401284864506 -129.52628979900001 -0.099999999755069999 -66.978050590293506 -129.76320211018 -0.100000000044039 -66.9998571188856 -130 -0.100000000044039 -66.999857142565503 + 0 8 0.37267989254975797 6 0.70284495690768201 6 1 8 +1 -55.5 -0.10000000000000001 -57.5 0 0 1 +1 -69 -0.10000000000000001 -63.999843749618499 -1 0 0 +1 -60.5 -0.10000000000000001 -63.999843749618499 1 0 0 +7 0 0 7 20 4 -123 -0.100000000000004 -63.9998437495601 -122.999999978575 -0.100000000000004 -64.214138915454299 -122.982141131514 -0.099999999999982395 -64.429772071924901 -122.94602347750499 -0.10000000000001601 -64.645791250948193 -122.891046262819 -0.100000000000008 -64.861014083966396 -122.816532242748 -0.099999999999970807 -65.074015167958194 -122.72175860615801 -0.100000000000011 -65.283094458639795 -122.503248098884 -0.100000000000011 -65.666185867141607 -122.38412373881501 -0.099999999999992803 -65.8413451906044 -122.247948066725 -0.099999999999993899 -66.010368278126407 -122.094211419499 -0.100000000000006 -66.171424372284903 -121.922644438094 -0.100000000000009 -66.322226386427005 -121.733383390482 -0.099999999999993996 -66.460099670584398 -121.341486965664 -0.099999999999993996 -66.691867538989399 -121.14194856530899 -0.100000000081775 -66.788858997912797 -120.929484610895 -0.099999999737885203 -66.870568122863901 -120.70584593635 -0.100000000363952 -66.934401284864194 -120.47371020099899 -0.099999999755069902 -66.978050590293606 -120.23679788982 -0.100000000044039 -66.9998571188856 -120 -0.100000000044039 -66.999857142565503 + 0 8 0.37267989255106798 6 0.702844956908247 6 1 8 +1 -60 -0.100000000000001 -76.5 0 0 -1 +7 0 0 7 20 4 -117 -0.100000000000009 -63.999843749561798 -117.000000021425 -0.100000000000009 -64.214138915456402 -117.017858868486 -0.099999999999953501 -64.429772071920695 -117.053976522496 -0.100000000000025 -64.645791250950495 -117.10895373718201 -0.100000000000024 -64.861014083970005 -117.183467757252 -0.099999999999954098 -65.074015167955906 -117.278241393843 -0.100000000000013 -65.283094458641003 -117.49675190111699 -0.100000000000013 -65.666185867143298 -117.615876261181 -0.099999999999946798 -65.841345190598901 -117.752051933277 -0.100000000000012 -66.010368278128496 -117.90578858050399 -0.100000000000036 -66.171424372288996 -118.077355561904 -0.099999999999980396 -66.322226386424404 -118.266616609518 -0.099999999999994801 -66.460099670584796 -118.658513034336 -0.099999999999994801 -66.691867538989598 -118.858051434692 -0.100000000081775 -66.788858997913096 -119.070515389104 -0.099999999737886106 -66.870568122863702 -119.29415406365101 -0.100000000363951 -66.934401284864407 -119.526289799 -0.099999999755069999 -66.978050590293506 -119.76320211018 -0.100000000044039 -66.9998571188856 -120 -0.100000000044039 -66.999857142565503 + 0 8 0.37267989254978201 6 0.70284495690764603 6 1 8 +1 -113 -0.100000000000001 -70 -1 0 0 +1 -69 -0.10000000000000001 -63.999843749618499 -1 0 0 +1 -70 -0.100000000000001 -76.5 0 0 -1 +7 0 0 7 20 4 -113 -0.100000000000004 -63.9998437495601 -112.999999978575 -0.100000000000004 -64.214138915454299 -112.982141131514 -0.099999999999982395 -64.429772071924901 -112.94602347750499 -0.10000000000001601 -64.645791250948193 -112.891046262819 -0.100000000000008 -64.861014083966396 -112.816532242748 -0.099999999999970807 -65.074015167958194 -112.72175860615801 -0.100000000000011 -65.283094458639795 -112.503248098884 -0.100000000000011 -65.666185867141493 -112.38412373881501 -0.099999999999992803 -65.8413451906045 -112.247948066725 -0.099999999999993899 -66.010368278126407 -112.094211419499 -0.100000000000006 -66.171424372284903 -111.922644438094 -0.100000000000009 -66.322226386427104 -111.733383390482 -0.099999999999993996 -66.460099670584398 -111.341486965664 -0.099999999999993996 -66.6918675389893 -111.141948565308 -0.100000000081775 -66.788858997913195 -110.92948461089701 -0.099999999737885203 -66.870568122863403 -110.70584593634899 -0.100000000363952 -66.934401284864506 -110.473710201 -0.099999999755069902 -66.978050590293506 -110.23679788982 -0.100000000044039 -66.9998571188856 -110 -0.100000000044039 -66.999857142565503 + 0 8 0.37267989255126399 6 0.702844956908524 6 1 8 +1 -69 -0.10000000000000001 -63.999843749618499 -1 0 0 +7 0 0 7 20 4 -107 -0.100000000000009 -63.999843749561798 -107.000000021425 -0.100000000000009 -64.214138915456402 -107.017858868486 -0.099999999999953501 -64.429772071920794 -107.053976522496 -0.100000000000025 -64.645791250950396 -107.10895373718201 -0.100000000000024 -64.861014083970005 -107.183467757252 -0.099999999999954098 -65.074015167956006 -107.278241393843 -0.100000000000013 -65.283094458641003 -107.49675190111699 -0.100000000000013 -65.666185867143398 -107.615876261181 -0.099999999999946798 -65.841345190598801 -107.752051933277 -0.100000000000012 -66.010368278128496 -107.90578858050399 -0.100000000000036 -66.171424372288996 -108.077355561904 -0.099999999999980396 -66.322226386424404 -108.266616609518 -0.099999999999994801 -66.460099670584796 -108.658513034336 -0.099999999999994801 -66.691867538989499 -108.858051434692 -0.100000000081775 -66.788858997913295 -109.070515389104 -0.099999999737886106 -66.870568122863503 -109.294154063652 -0.100000000363951 -66.934401284864506 -109.526289799 -0.099999999755069999 -66.978050590293506 -109.76320211018 -0.100000000044039 -66.9998571188856 -110 -0.100000000044039 -66.999857142565503 + 0 8 0.37267989254982098 6 0.70284495690773796 6 1 8 +7 0 0 7 20 4 -87 -0.100000000000009 -63.999843749561798 -87.000000021425393 -0.100000000000009 -64.214138915456402 -87.017858868486002 -0.099999999999953501 -64.429772071920794 -87.053976522495503 -0.100000000000025 -64.645791250950396 -87.108953737181594 -0.100000000000024 -64.861014083969906 -87.183467757251805 -0.099999999999954098 -65.074015167956006 -87.278241393842805 -0.100000000000013 -65.283094458640903 -87.496751901116994 -0.100000000000013 -65.666185867143298 -87.6158762611811 -0.099999999999946798 -65.841345190598801 -87.752051933277102 -0.100000000000012 -66.010368278128496 -87.905788580504293 -0.100000000000036 -66.171424372288996 -88.0773555619039 -0.099999999999980396 -66.322226386424404 -88.266616609518195 -0.099999999999994801 -66.460099670584796 -88.658513034336096 -0.099999999999994801 -66.691867538989499 -88.858051434692399 -0.100000000081775 -66.788858997913394 -89.070515389103306 -0.099999999737886106 -66.870568122863403 -89.294154063651703 -0.100000000363951 -66.934401284864606 -89.526289798999798 -0.099999999755069999 -66.978050590293506 -89.763202110180202 -0.100000000044039 -66.9998571188856 -90 -0.100000000044039 -66.999857142565503 + 0 8 0.37267989254992101 6 0.70284495690784599 6 1 8 +1 -69 -0.10000000000000001 -63.999843749618499 -1 0 0 +7 0 0 7 20 4 -93 -0.100000000000004 -63.9998437495601 -92.999999978574806 -0.100000000000004 -64.214138915454299 -92.9821411315137 -0.099999999999982395 -64.429772071924901 -92.946023477504895 -0.10000000000001601 -64.645791250948193 -92.891046262818804 -0.100000000000008 -64.861014083966396 -92.816532242747897 -0.099999999999970807 -65.074015167958095 -92.721758606157707 -0.100000000000011 -65.283094458639795 -92.5032480988841 -0.100000000000011 -65.666185867141607 -92.384123738814793 -0.099999999999992803 -65.8413451906045 -92.247948066724803 -0.099999999999993899 -66.010368278126407 -92.094211419498805 -0.100000000000006 -66.171424372284903 -91.922644438093897 -0.100000000000009 -66.322226386427104 -91.733383390482402 -0.099999999999993996 -66.460099670584398 -91.341486965664203 -0.099999999999993996 -66.691867538989399 -91.141948565308397 -0.100000000081775 -66.788858997912996 -90.929484610895997 -0.099999999737885203 -66.870568122863602 -90.705845936349505 -0.100000000363952 -66.934401284864407 -90.473710200999804 -0.099999999755069902 -66.978050590293506 -90.236797889820096 -0.100000000044039 -66.9998571188856 -90 -0.100000000044039 -66.999857142565503 + 0 8 0.37267989255115103 6 0.70284495690836102 6 1 8 +7 0 0 7 20 4 -103 -0.100000000000004 -63.9998437495601 -102.999999978575 -0.100000000000004 -64.214138915454299 -102.982141131514 -0.099999999999982395 -64.429772071924901 -102.94602347750499 -0.10000000000001601 -64.645791250948193 -102.891046262819 -0.100000000000008 -64.861014083966396 -102.816532242748 -0.099999999999970807 -65.074015167958194 -102.72175860615801 -0.100000000000011 -65.283094458639695 -102.503248098884 -0.100000000000011 -65.666185867141493 -102.38412373881501 -0.099999999999992803 -65.8413451906045 -102.247948066725 -0.099999999999993899 -66.010368278126407 -102.094211419499 -0.100000000000006 -66.171424372284903 -101.922644438094 -0.100000000000009 -66.322226386427104 -101.733383390482 -0.099999999999993996 -66.460099670584398 -101.341486965664 -0.099999999999993996 -66.6918675389893 -101.141948565308 -0.100000000081775 -66.788858997913096 -100.92948461089701 -0.099999999737885203 -66.870568122863503 -100.70584593634899 -0.100000000363952 -66.934401284864506 -100.473710201 -0.099999999755069902 -66.978050590293506 -100.23679788982 -0.100000000044039 -66.9998571188856 -100 -0.100000000044039 -66.999857142565503 + 0 8 0.37267989255128797 6 0.70284495690855298 6 1 8 +1 -69 -0.10000000000000001 -63.999843749618499 -1 0 0 +7 0 0 7 20 4 -97 -0.100000000000009 -63.999843749561798 -97.000000021425294 -0.100000000000009 -64.214138915456402 -97.017858868485902 -0.099999999999953501 -64.429772071920695 -97.053976522495603 -0.100000000000025 -64.645791250950495 -97.108953737181594 -0.100000000000024 -64.861014083970005 -97.183467757251705 -0.099999999999954098 -65.074015167955906 -97.278241393842805 -0.100000000000013 -65.283094458641003 -97.496751901116994 -0.100000000000013 -65.666185867143298 -97.6158762611811 -0.099999999999946798 -65.841345190598801 -97.752051933277102 -0.100000000000012 -66.010368278128496 -97.905788580504293 -0.100000000000036 -66.171424372288996 -98.0773555619039 -0.099999999999980396 -66.322226386424404 -98.266616609518195 -0.099999999999994801 -66.460099670584796 -98.658513034336195 -0.099999999999994801 -66.691867538989598 -98.858051434692001 -0.100000000081775 -66.788858997913195 -99.070515389104003 -0.099999999737886106 -66.870568122863602 -99.294154063651007 -0.100000000363951 -66.934401284864407 -99.526289799000196 -0.099999999755069999 -66.978050590293506 -99.763202110180103 -0.100000000044039 -66.9998571188856 -100 -0.100000000044039 -66.999857142565503 + 0 8 0.37267989254976103 6 0.70284495690766902 6 1 8 +1 -159.5 -0.10000000000000001 -3.0001724143056299 1 0 0 +7 0 0 7 20 4 -133 -0.100000000000002 -0.00015625038144406698 -132.999999978571 -0.100000000000002 0.21413891552872599 -132.982141131502 -0.100000000000008 0.42977207200666201 -132.94602347748699 -0.099999999999994593 0.64579125103744806 -132.891046262793 -0.099999999999991707 0.86101408405998903 -132.81653224271099 -0.100000000000002 1.07401516804763 -132.72175860612001 -0.099999999999998701 1.28309445871462 -132.503248098835 -0.099999999999998701 1.66618586721871 -132.384123738738 -0.100000000000025 1.84134519070921 -132.247948066634 -0.099999999999986405 2.01036827823124 -132.094211419397 -0.099999999999976996 2.1714243723817299 -131.92264443798601 -0.100000000000011 2.3222263865135502 -131.733383390391 -0.100000000000003 2.4600996706437601 -131.341486967332 -0.100000000000003 2.69186753799789 -131.14194855647401 -0.100000000044401 2.7888590018777899 -130.92948462572201 -0.099999999857673799 2.8705681179731002 -130.70584592091799 -0.100000000197611 2.9344012875276002 -130.47371021357199 -0.099999999867008693 2.9780505897129199 -130.236797883397 -0.100000000023911 2.9998571188856502 -130 -0.100000000023911 2.99985714256553 + 0 8 0.37267989349248298 6 0.70284495877112196 6 1 8 +7 0 0 7 20 4 -127 -0.100000000000002 -0.00015625038148314702 -127.000000021429 -0.100000000000002 0.214138915528613 -127.017858868498 -0.099999999999998798 0.42977207200548101 -127.053976522513 -0.100000000000001 0.64579125103797297 -127.108953737208 -0.100000000000001 0.86101408406097601 -127.183467757288 -0.099999999999997397 1.07401516804707 -127.278241393879 -0.099999999999997105 1.2830944587139801 -127.496751901164 -0.099999999999997105 1.66618586721839 -127.61587626126099 -0.100000000000023 1.84134519070805 -127.752051933367 -0.099999999999994801 2.0103682782318999 -127.905788580604 -0.099999999999982297 2.1714243723821798 -128.077355562012 -0.100000000000004 2.3222263865119599 -128.26661660960801 -0.100000000000002 2.4600996706431899 -128.658513032667 -0.100000000000002 2.6918675379975499 -128.85805144352301 -0.100000000044389 2.78885900187659 -129.07051537428001 -0.099999999857703803 2.8705681179745399 -129.29415407907999 -0.10000000019758599 2.9344012875263998 -129.52628978642801 -0.099999999867014203 2.9780505897131899 -129.763202116602 -0.100000000023911 2.9998571188856502 -130 -0.100000000023911 2.99985714256553 + 0 8 0.372679893492039 6 0.70284495877048303 6 1 8 +1 -61.5 -0.10000000000000001 -6.00019230840351 1 0 0 +1 -69 -0.10000000000000001 -0.00015625038147248902 -1 0 0 +7 0 0 7 20 4 -123 -0.100000000000002 -0.00015625038144406698 -122.999999978571 -0.100000000000002 0.21413891552874501 -122.982141131502 -0.100000000000008 0.42977207200661599 -122.946023477487 -0.099999999999994593 0.64579125103747503 -122.891046262792 -0.099999999999991707 0.86101408406001201 -122.81653224271101 -0.100000000000002 1.07401516804758 -122.72175860612001 -0.099999999999998701 1.28309445871464 -122.503248098835 -0.099999999999998701 1.66618586721869 -122.384123738738 -0.100000000000025 1.84134519070921 -122.247948066634 -0.099999999999986405 2.01036827823126 -122.094211419397 -0.099999999999976996 2.1714243723817299 -121.92264443798599 -0.100000000000011 2.32222638651354 -121.733383390391 -0.100000000000003 2.4600996706437601 -121.341486967332 -0.100000000000003 2.6918675379978998 -121.14194855647401 -0.100000000044401 2.7888590018775599 -120.929484625722 -0.099999999857673799 2.87056811797359 -120.70584592091799 -0.100000000197611 2.9344012875271601 -120.47371021357201 -0.099999999867008693 2.97805058971309 -120.236797883397 -0.100000000023911 2.9998571188856502 -120 -0.100000000023911 2.99985714256553 + 0 8 0.37267989349244601 6 0.70284495877105801 6 1 8 +1 -60.5 -0.10000000000000001 -0.00015625038147248902 1 0 0 +7 0 0 7 20 4 -117 -0.100000000000002 -0.00015625038148314702 -117.000000021429 -0.100000000000002 0.21413891552862199 -117.017858868498 -0.099999999999998798 0.42977207200545298 -117.053976522513 -0.100000000000001 0.64579125103800095 -117.108953737208 -0.100000000000001 0.861014084060992 -117.183467757288 -0.099999999999997397 1.07401516804702 -117.278241393879 -0.099999999999997105 1.2830944587140101 -117.496751901164 -0.099999999999997105 1.66618586721844 -117.61587626126 -0.100000000000023 1.8413451907079701 -117.752051933367 -0.099999999999994801 2.0103682782319301 -117.905788580604 -0.099999999999982297 2.1714243723822202 -118.077355562012 -0.100000000000004 2.32222638651188 -118.26661660960799 -0.100000000000002 2.4600996706432201 -118.658513032667 -0.100000000000002 2.6918675379975099 -118.858051443524 -0.100000000044389 2.7888590018767698 -119.07051537428001 -0.099999999857703803 2.87056811797419 -119.29415407908 -0.10000000019758599 2.93440128752672 -119.52628978642799 -0.099999999867014203 2.97805058971307 -119.763202116602 -0.100000000023911 2.9998571188856502 -120 -0.100000000023911 2.99985714256553 + 0 8 0.37267989349195801 6 0.70284495877045206 6 1 8 +1 -69 -0.10000000000000001 -0.00015625038147248902 -1 0 0 +1 -113 -0.100000000000001 10 -1 0 0 +7 0 0 7 20 4 -113 -0.100000000000002 -0.00015625038144406698 -112.999999978571 -0.100000000000002 0.21413891552873601 -112.982141131502 -0.100000000000008 0.42977207200662598 -112.946023477487 -0.099999999999994593 0.64579125103746804 -112.891046262792 -0.099999999999991707 0.86101408406001501 -112.81653224271101 -0.100000000000002 1.0740151680476 -112.72175860612001 -0.099999999999998701 1.28309445871462 -112.503248098835 -0.099999999999998701 1.66618586721868 -112.384123738738 -0.100000000000025 1.84134519070923 -112.247948066634 -0.099999999999986405 2.01036827823126 -112.094211419397 -0.099999999999976996 2.1714243723817299 -111.92264443798599 -0.100000000000011 2.3222263865135502 -111.733383390391 -0.100000000000003 2.4600996706437601 -111.341486967332 -0.100000000000003 2.6918675379978301 -111.14194855647401 -0.100000000044401 2.7888590018779298 -110.92948462572301 -0.099999999857673799 2.8705681179728999 -110.705845920917 -0.100000000197611 2.9344012875277601 -110.47371021357201 -0.099999999867008693 2.9780505897128702 -110.236797883397 -0.100000000023911 2.9998571188856502 -110 -0.100000000023911 2.99985714256553 + 0 8 0.37267989349254899 6 0.70284495877120201 6 1 8 +7 0 0 7 20 4 -107 -0.100000000000002 -0.00015625038148314702 -107.000000021429 -0.100000000000002 0.214138915528612 -107.017858868498 -0.099999999999998798 0.42977207200547302 -107.053976522513 -0.100000000000001 0.64579125103798496 -107.108953737208 -0.100000000000001 0.86101408406098101 -107.183467757288 -0.099999999999997397 1.07401516804705 -107.278241393879 -0.099999999999997105 1.2830944587139901 -107.496751901164 -0.099999999999997105 1.66618586721838 -107.61587626126099 -0.100000000000023 1.84134519070807 -107.752051933367 -0.099999999999994801 2.0103682782318799 -107.905788580604 -0.099999999999982297 2.17142437238217 -108.077355562012 -0.100000000000004 2.3222263865119799 -108.26661660960799 -0.100000000000002 2.4600996706431801 -108.658513032667 -0.100000000000002 2.6918675379974899 -108.858051443524 -0.100000000044389 2.78885900187684 -109.07051537428001 -0.099999999857703803 2.8705681179741198 -109.29415407908 -0.10000000019758599 2.93440128752676 -109.52628978642799 -0.099999999867014203 2.97805058971307 -109.763202116602 -0.100000000023911 2.9998571188856502 -110 -0.100000000023911 2.99985714256553 + 0 8 0.372679893492116 6 0.70284495877062403 6 1 8 +1 -69 -0.10000000000000001 -0.00015625038147248902 -1 0 0 +1 -69 -0.10000000000000001 -0.00015625038147248902 -1 0 0 +7 0 0 7 20 4 -87 -0.100000000000002 -0.00015625038148314702 -87.0000000214294 -0.100000000000002 0.21413891552862699 -87.017858868497896 -0.099999999999998798 0.42977207200544898 -87.053976522512698 -0.100000000000001 0.64579125103799195 -87.108953737207798 -0.100000000000001 0.861014084060997 -87.183467757288398 -0.099999999999997397 1.07401516804704 -87.278241393879398 -0.099999999999997105 1.2830944587139901 -87.496751901164302 -0.099999999999997105 1.6661858672183401 -87.615876261260595 -0.100000000000023 1.8413451907081699 -87.752051933367099 -0.099999999999994801 2.0103682782318399 -87.905788580603698 -0.099999999999982297 2.1714243723820901 -88.077355562012301 -0.100000000000004 2.32222638651205 -88.266616609607993 -0.100000000000002 2.4600996706431699 -88.658513032666804 -0.100000000000002 2.6918675379975001 -88.858051443523706 -0.100000000044389 2.7888590018767898 -89.070515374279793 -0.099999999857703803 2.8705681179742202 -89.294154079080201 -0.10000000019758599 2.9344012875266499 -89.526289786427895 -0.099999999867014203 2.97805058971311 -89.763202116602102 -0.100000000023911 2.9998571188856502 -90 -0.100000000023911 2.99985714256553 + 0 8 0.37267989349214098 6 0.70284495877062703 6 1 8 +7 0 0 7 20 4 -103 -0.100000000000002 -0.00015625038147248902 -102.999999978571 -0.100000000000002 0.214138915528716 -102.982141131502 -0.100000000000008 0.42977207200657402 -102.946023477487 -0.099999999999994496 0.64579125103744495 -102.891046262793 -0.099999999999991596 0.86101408405999302 -102.81653224271101 -0.100000000000002 1.07401516804755 -102.72175860612001 -0.099999999999998604 1.2830944587146 -102.503248098835 -0.099999999999998604 1.66618586721865 -102.384123738738 -0.100000000000025 1.84134519070922 -102.247948066634 -0.099999999999986405 2.01036827823122 -102.094211419397 -0.099999999999976899 2.1714243723816899 -101.92264443798599 -0.100000000000011 2.3222263865135502 -101.733383390391 -0.100000000000003 2.4600996706437401 -101.341486967332 -0.100000000000003 2.6918675379978501 -101.14194855647401 -0.100000000044401 2.78885900187767 -100.92948462572301 -0.099999999857673799 2.8705681179734599 -100.705845920917 -0.100000000197611 2.9344012875272099 -100.47371021357201 -0.099999999867008693 2.9780505897130798 -100.236797883398 -0.100000000023911 2.9998571188856502 -100 -0.100000000023911 2.99985714256553 + 0 8 0.37267989349250202 6 0.70284495877113495 6 1 8 +7 0 0 7 20 4 -93 -0.100000000000002 -0.00015625038147248902 -92.9999999785706 -0.100000000000002 0.214138915528715 -92.982141131501706 -0.100000000000008 0.42977207200656098 -92.9460234774875 -0.099999999999994496 0.64579125103746404 -92.8910462627925 -0.099999999999991596 0.86101408406000501 -92.816532242711403 -0.100000000000002 1.0740151680475301 -92.721758606120304 -0.099999999999998604 1.28309445871461 -92.503248098835499 -0.099999999999998604 1.66618586721867 -92.384123738738396 -0.100000000000025 1.8413451907092 -92.247948066633597 -0.099999999999986405 2.01036827823122 -92.0942114193967 -0.099999999999976899 2.1714243723817099 -91.922644437986094 -0.100000000000011 2.32222638651354 -91.733383390391197 -0.100000000000003 2.4600996706437499 -91.341486967332401 -0.100000000000003 2.6918675379978798 -91.141948556474105 -0.100000000044401 2.78885900187765 -90.929484625722196 -0.099999999857673799 2.8705681179734301 -90.705845920917795 -0.100000000197611 2.93440128752726 -90.473710213572105 -0.099999999867008693 2.97805058971305 -90.2367978833975 -0.100000000023911 2.9998571188856502 -90 -0.100000000023911 2.99985714256553 + 0 8 0.37267989349244302 6 0.70284495877106801 6 1 8 +7 0 0 7 20 4 -97 -0.100000000000002 -0.00015625038148314702 -97.0000000214294 -0.100000000000002 0.214138915528613 -97.017858868497996 -0.099999999999998798 0.42977207200548101 -97.053976522512698 -0.100000000000001 0.64579125103797297 -97.108953737207798 -0.100000000000001 0.86101408406097601 -97.183467757288497 -0.099999999999997397 1.07401516804707 -97.278241393879398 -0.099999999999997105 1.2830944587139801 -97.496751901164302 -0.099999999999997105 1.66618586721839 -97.615876261260595 -0.100000000000023 1.84134519070804 -97.752051933367099 -0.099999999999994801 2.0103682782318999 -97.905788580603698 -0.099999999999982297 2.1714243723821798 -98.077355562012201 -0.100000000000004 2.3222263865119399 -98.266616609607993 -0.100000000000002 2.4600996706431899 -98.658513032666804 -0.100000000000002 2.6918675379975001 -98.858051443523706 -0.100000000044389 2.78885900187684 -99.070515374279793 -0.099999999857703803 2.8705681179740901 -99.294154079080201 -0.10000000019758599 2.9344012875267902 -99.526289786427895 -0.099999999867014203 2.9780505897130598 -99.763202116602102 -0.100000000023911 2.9998571188856502 -100 -0.100000000023911 2.99985714256553 + 0 8 0.37267989349206498 6 0.70284495877054898 6 1 8 +1 -69 -0.10000000000000001 -0.00015625038147248902 -1 0 0 +2 0 0 100 0 0 1 1 0 0 0 1 0 29 +2 0 0 0 0 0 1 1 0 0 0 1 0 35 +2 -59.5 0 -32 1 0 0 0 0 1 0 -1 0 26 +2 0 0 5 0 0 1 0 -1 0 1 0 0 26 +7 0 0 6 22 5 -127 0 -63.999999999943199 -127 -3.9367350052928201 -63.999999606269697 -127 -7.8758970446497898 -63.418815539850002 -127 -11.704723054979 -62.255232671966503 -127 -15.319764880894301 -60.539041971659501 -127 -18.624524916212899 -58.317797893255303 -127 -24.695744236288999 -52.793413369113999 -127 -27.397248476601401 -49.410113885409501 -127 -29.532140331076601 -45.6146941554927 -127 -31.0317772842957 -41.526362377620302 -127 -31.8500328562519 -37.274728060535601 -127 -32.118386587363503 -28.735573878445098 -127 -31.5687120849019 -24.440956536964201 -127 -30.328746893341901 -20.266528131255299 -127 -28.436385094964901 -16.344540793001901 -127 -25.952647040840802 -12.7982814386522 -127 -20.007287979298699 -6.6631468174110804 -127 -16.540680122120499 -4.0692236194250002 -127 -12.6800350138152 -2.0546612285107 -127 -8.5466730279662997 -0.68426370769728395 -127 -4.2715641540740297 1.4210854715202001e-014 -127 1.13686837721616e-013 0 + 0 7 0.235017357466172 5 0.49000787063624601 5 0.74499758603343802 5 1 7 +2 0 0 5 0 0 1 1 0 0 0 1 0 32 +7 0 0 6 22 5 -123 0 -63.999999999941501 -123 -3.9367350052954899 -63.999999606267899 -123 -7.8758970446441996 -63.418815539857597 -123 -11.7047230549851 -62.255232671957003 -123 -15.31976488089 -60.539041971665299 -123 -18.624524916214799 -58.317797893253598 -123 -24.695744236289102 -52.793413369113999 -123 -27.397248476601298 -49.410113885409203 -123 -29.5321403310767 -45.614694155493503 -123 -31.0317772842956 -41.526362377619499 -123 -31.8500328562519 -37.274728060535899 -123 -32.118386587363602 -28.735573878443599 -123 -31.568712084902302 -24.4409565369678 -123 -30.328746893340799 -20.266528131251299 -123 -28.436385094965999 -16.3445407930041 -123 -25.9526470408404 -12.798281438651699 -123 -20.007287979299399 -6.6631468174117998 -123 -16.540680122118602 -4.0692236194236102 -123 -12.680035013817401 -2.0546612285118502 -123 -8.5466730279652392 -0.68426370769690004 -123 -4.2715641540742402 1.4210854715202001e-014 -123 1.13686837721616e-013 0 + 0 7 0.23501735746602601 5 0.49000787063611001 5 0.74499758603337995 5 1 7 +2 -60 0 -32 1 0 0 0 0 1 0 -1 0 32 +1 80 0 0 0 1 0 +1 0 0 0 0 1 0 +1 0 0 0 1 0 0 +7 0 0 6 22 5 -117 0 -63.999999999943199 -117 -3.9367350052928201 -63.999999606269697 -117 -7.8758970446497898 -63.418815539850002 -117 -11.704723054979 -62.255232671966503 -117 -15.319764880894301 -60.539041971659501 -117 -18.624524916212899 -58.317797893255303 -117 -24.695744236288999 -52.793413369113999 -117 -27.397248476601401 -49.410113885409501 -117 -29.532140331076601 -45.6146941554927 -117 -31.0317772842957 -41.526362377620302 -117 -31.8500328562519 -37.274728060535601 -117 -32.118386587363503 -28.735573878444399 -117 -31.568712084902099 -24.440956536965899 -117 -30.3287468933413 -20.266528131253501 -117 -28.436385094965299 -16.3445407930027 -117 -25.952647040840699 -12.798281438651999 -117 -20.007287979298599 -6.6631468174109703 -117 -16.5406801221209 -4.0692236194251903 -117 -12.6800350138144 -2.0546612285105299 -117 -8.5466730279670706 -0.68426370769731903 -117 -4.2715641540737304 1.4210854715202001e-014 -117 1.13686837721616e-013 0 + 0 7 0.23501735746614999 5 0.49000787063619899 5 0.74499758603340405 5 1 7 +1 0 0 0 0 0 1 +1 0 0 10 0 1 0 +7 0 0 6 22 5 -113 0 -63.999999999941501 -113 -3.9367350052956498 -63.999999606267899 -113 -7.8758970446439296 -63.418815539857597 -113 -11.7047230549852 -62.255232671957202 -113 -15.3197648808901 -60.539041971665 -113 -18.6245249162147 -58.317797893253598 -113 -24.695744236289102 -52.793413369113999 -113 -27.397248476601298 -49.410113885409203 -113 -29.5321403310767 -45.614694155493503 -113 -31.0317772842956 -41.526362377619499 -113 -31.8500328562519 -37.274728060535899 -113 -32.118386587363602 -28.735573878443599 -113 -31.568712084902302 -24.4409565369678 -113 -30.328746893340799 -20.266528131251299 -113 -28.436385094965999 -16.3445407930041 -113 -25.9526470408404 -12.798281438651699 -113 -20.007287979299399 -6.6631468174117998 -113 -16.540680122118602 -4.0692236194236102 -113 -12.680035013817401 -2.0546612285118502 -113 -8.5466730279652392 -0.68426370769690004 -113 -4.2715641540742402 1.4210854715202001e-014 -113 1.13686837721616e-013 0 + 0 7 0.235017357466032 5 0.49000787063611401 5 0.74499758603338195 5 1 7 +1 0 0 10 1 0 0 +2 -70 0 -32 -1 0 0 0 0 -1 0 -1 0 32 +1 80 0 10 0 1 0 +7 0 0 6 22 5 -87 0 -63.999999999943199 -87 -3.9367350052928201 -63.999999606269697 -87 -7.8758970446497898 -63.418815539850002 -87 -11.704723054979 -62.255232671966503 -87 -15.319764880894301 -60.539041971659501 -87 -18.624524916212899 -58.317797893255303 -87 -24.695744236288999 -52.793413369113999 -87 -27.397248476601401 -49.410113885409501 -87 -29.532140331076601 -45.6146941554927 -87 -31.0317772842957 -41.526362377620302 -87 -31.8500328562519 -37.274728060535601 -87 -32.118386587363503 -28.735573878444399 -87 -31.568712084902099 -24.440956536965899 -87 -30.3287468933413 -20.266528131253501 -87 -28.436385094965299 -16.3445407930027 -87 -25.952647040840699 -12.798281438651999 -87 -20.007287979298599 -6.6631468174109703 -87 -16.5406801221209 -4.0692236194251903 -87 -12.6800350138144 -2.0546612285105299 -87 -8.5466730279670706 -0.68426370769731903 -87 -4.2715641540737304 1.4210854715202001e-014 -87 1.13686837721616e-013 0 + 0 7 0.23501735746614999 5 0.49000787063619899 5 0.74499758603340405 5 1 7 +7 0 0 6 22 5 -107 0 -63.999999999943199 -107 -3.9367350052928201 -63.999999606269697 -107 -7.8758970446497898 -63.418815539850002 -107 -11.704723054979 -62.255232671966503 -107 -15.319764880894301 -60.539041971659501 -107 -18.624524916212899 -58.317797893255303 -107 -24.695744236288999 -52.793413369113999 -107 -27.397248476601298 -49.410113885409302 -107 -29.5321403310768 -45.614694155493197 -107 -31.0317772842956 -41.526362377619897 -107 -31.8500328562519 -37.2747280605358 -107 -32.118386587363503 -28.735573878443901 -107 -31.568712084902401 -24.440956536967501 -107 -30.328746893340401 -20.266528131251199 -107 -28.436385094966401 -16.344540793004398 -107 -25.952647040840201 -12.7982814386515 -107 -20.007287979298599 -6.6631468174109703 -107 -16.5406801221209 -4.0692236194251903 -107 -12.6800350138144 -2.0546612285105299 -107 -8.5466730279670706 -0.68426370769731903 -107 -4.2715641540737304 1.4210854715202001e-014 -107 1.13686837721616e-013 0 + 0 7 0.23501735746613001 5 0.49000787063615697 5 0.74499758603335997 5 1 7 +7 0 0 6 22 5 -103 0 -63.999999999941501 -103 -3.9367350052954899 -63.999999606267899 -103 -7.8758970446441996 -63.418815539857597 -103 -11.7047230549851 -62.255232671957003 -103 -15.31976488089 -60.539041971665299 -103 -18.624524916214799 -58.317797893253598 -103 -24.695744236289102 -52.7934133691139 -103 -27.397248476601298 -49.410113885409402 -103 -29.5321403310767 -45.614694155493197 -103 -31.0317772842956 -41.526362377619698 -103 -31.8500328562519 -37.274728060535899 -103 -32.118386587363503 -28.7355738784442 -103 -31.568712084902199 -24.440956536966201 -103 -30.328746893341201 -20.266528131253398 -103 -28.436385094965601 -16.344540793002899 -103 -25.952647040840599 -12.7982814386519 -103 -20.0072879792984 -6.66314681741075 -103 -16.540680122121501 -4.0692236194260296 -103 -12.680035013814001 -2.0546612285096399 -103 -8.5466730279671594 -0.68426370769771705 -103 -4.2715641540738103 1.4210854715202001e-014 -103 1.13686837721616e-013 0 + 0 7 0.23501735746602401 5 0.49000787063610701 5 0.74499758603334398 5 1 7 +7 0 0 6 22 5 -93 0 -63.999999999941501 -93 -3.9367350052956001 -63.999999606267899 -93 -7.87589704464395 -63.418815539857697 -93 -11.704723054985401 -62.255232671956897 -93 -15.3197648808897 -60.539041971665398 -93 -18.624524916214899 -58.317797893253498 -93 -24.695744236289102 -52.7934133691139 -93 -27.397248476601199 -49.4101138854098 -93 -29.5321403310768 -45.614694155492401 -93 -31.0317772842956 -41.526362377620401 -93 -31.8500328562519 -37.274728060535601 -93 -32.118386587363602 -28.735573878442999 -93 -31.568712084902401 -24.440956536969399 -93 -30.328746893340401 -20.266528131249601 -93 -28.436385094966301 -16.344540793004899 -93 -25.952647040840301 -12.7982814386516 -93 -20.0072879792984 -6.66314681741075 -93 -16.540680122121501 -4.0692236194260296 -93 -12.680035013814001 -2.0546612285096399 -93 -8.5466730279671594 -0.68426370769771705 -93 -4.2715641540738103 1.4210854715202001e-014 -93 1.13686837721616e-013 0 + 0 7 0.235017357465967 5 0.49000787063600199 5 0.74499758603327704 5 1 7 +7 0 0 6 22 5 -97 0 -63.999999999943199 -97 -3.9367350052928201 -63.999999606269697 -97 -7.8758970446497898 -63.418815539850002 -97 -11.704723054979 -62.255232671966503 -97 -15.319764880894301 -60.539041971659501 -97 -18.624524916212899 -58.317797893255303 -97 -24.695744236288999 -52.793413369113999 -97 -27.397248476601501 -49.410113885409103 -97 -29.532140331076501 -45.614694155493602 -97 -31.0317772842957 -41.526362377619598 -97 -31.8500328562519 -37.2747280605358 -97 -32.118386587363503 -28.7355738784448 -97 -31.568712084902 -24.440956536964801 -97 -30.328746893341702 -20.266528131254798 -97 -28.436385094964901 -16.344540793002 -97 -25.952647040840901 -12.7982814386522 -97 -20.007287979298599 -6.6631468174109703 -97 -16.5406801221209 -4.0692236194251903 -97 -12.6800350138144 -2.0546612285105299 -97 -8.5466730279670706 -0.68426370769731903 -97 -4.2715641540737304 1.4210854715202001e-014 -97 1.13686837721616e-013 0 + 0 7 0.235017357466171 5 0.49000787063624002 5 0.74499758603343202 5 1 7 +1 80 0 0 0 0 1 +2 0 0 20 0 0 1 1 0 0 0 1 0 10 +2 -100 0.01 -43 0 0 1 0 -1 0 1 0 0 5 +1 10 0 0 0 0 1 +2 0 0 0 0 0 1 1 0 0 0 1 0 10 +1 -90.202041028867299 -2 -23 0 0 -1 +2 -100 0 -25 0 0 -1 0 1 0 1 0 0 10 +2 -100 0 -35 0 0 -1 0 1 0 1 0 0 10 +1 -90.202041028867299 2 -23 0 0 -1 +1 5 0 0 0 0 1 +2 -100 0.01 -23 0 0 1 0 -1 0 1 0 0 5 +1 0 0 0 1 0 0 +7 1 0 5 98 25 10.4169947557416 -2 -35 1 10.4148669967493 -2 -35 1 10.4127447529258 -2 -34.999999999999901 1 10.4106276422942 -2 -35.000000000000099 0.999999999999998 10.408515336212 -2 -35 1 10.404281421084001 -2 -35 1 10.4021598928746 -2 -35.000000000000099 0.999999999999997 10.400042681167401 -2 -34.999999999999901 1 10.3979295595657 -2 -35 1 10.393695259339699 -2 -35 1 10.3915741414883 -2.0000000000000102 -35.000000000000099 0.999999999999998 10.389456819923399 -2 -34.999999999999901 1 10.3873431789136 -2 -35 1 10.3831084603811 -2 -35 1 10.3809874347084 -2 -34.999999999999901 1 10.3788700061844 -2.0000000000000102 -35.000000000000099 0.999999999999998 10.3767561665404 -2 -35 1 10.3725210399146 -2 -35 1 10.370399804884199 -2 -35 1 10.368282280342401 -2 -35 1 10.3661685543196 -2 -35 1 10.361933057624899 -2 -35 1 10.359811347392499 -2 -35 1 10.3576937430929 -2 -35 0.999999999999999 10.3555804126424 -2 -35 1 10.351344600132199 -2 -35 1 10.3492221960219 -2 -35 1 10.347104531714599 -2 -35 0.999999999999999 10.344991835158799 -2 -35 1 10.3407557704077 -2 -35 1 10.338632506907601 -2 -35 1 10.3365148066662 -2 -35 1 10.334402929649199 -2 -35 1 10.3301666828763 -2 -35 1 10.3280424556617 -2 -35 1 10.3259247414538 -2 -35 1 10.323813814185099 -2 -35 1 10.3195774629891 -2 -35 1 10.3174522312246 -2 -35 1 10.315334528556001 -2 -35 1 10.3132246173761 -2 -35 1 10.3089882499483 -2 -35 1 10.3068620440636 -2 -35 1 10.304744379938301 -2 -35 1 10.302635481422101 -2 -35 1 10.2983992012926 -2 -35 1 10.2962721320866 -2 -35 1 10.2941545349302 -2 -35 1 10.2920465667043 -2 -35 1 10.287680149706601 -2 -35 1 10.285423342146601 -2 -35 1 10.283178057549399 -2 -35 1 10.280944363668301 -2 -35 1 10.2765962340277 -2 -35 1 10.2744808175493 -2 -35 1 10.272376000288499 -2 -35 1 10.2702817087148 -2 -35 1 10.2661685202001 -2 -35 1 10.264149086055401 -2 -35 1 10.2621393675748 -2 -35 1 10.2601391692272 -2 -35 1 10.256119712267401 -2 -35 1 10.2541008066625 -2 -35 1 10.2520912389861 -2 -35 1 10.250090662903 -2 -35 1 10.246071951731301 -2 -35 1 10.244054118257599 -2 -35 1 10.242044720800999 -2 -35 1 10.2400432428065 -2 -35 1 10.2363279553688 -2 -35 1 10.234612277581 -2 -35 1 10.232901675871 -2 -35 1 10.231195726012199 -2 -35 1 10.2277906904622 -2 -35 1 10.226091612220401 -2 -35 1 10.224396258394901 -2 -35 1 10.2227041178639 -2 -35 1 10.2195122252158 -2 -35 1 10.218011916944199 -2 -35 1 10.2165133218182 -2 -35 1 10.215016023211 -2 -35 1 10.212008341259899 -2 -35 1 10.210497974662999 -2 -35 1 10.2089880210505 -2 -35 1 10.207477995424 -2 -35 1 10.2044262836874 -2 -35 1 10.202884573705401 -2 -35.000000000000099 0.999999999999998 10.201341710171899 -2 -34.999999999999901 1 10.199797118022 -2 -35 1 10.196829682632799 -2 -35 1 10.1954072048811 -2 -35 1 10.1939822923456 -2 -35 1 10.1925544560234 -2 -35 1 10.189577098971601 -2 -35 1 10.1880270051139 -2.0000000000000102 -35.000000000000099 0.999999999999997 10.186472267625501 -1.99999999999999 -34.999999999999901 1 10.184912219395301 -2 -35 1 10.183346173607999 -2 -35 1 + 0 6 0.040099905557437497 4 0.080548941488914394 4 0.121302649574392 4 0.16233958108360599 4 0.20366226380580801 4 0.24529608526125099 4 0.28728689017495801 4 0.32969783695436 4 0.37260578185410198 4 0.41609721082407702 4 0.46026353353147897 4 0.50519539488713305 4 0.55376685639189804 4 0.60023800608618005 4 0.64549097673320199 4 0.69159813110431001 4 0.73850862303907205 4 0.77899666732106099 4 0.81952053904117095 4 0.85555734813302897 4 0.89195034526454897 4 0.92907789768065596 4 0.963171395364531 4 1 6 +1 0 0 10 1 0 0 +1 10.4169947557416 -2 -35 0 0 1 +7 1 0 5 94 24 10.4169947557416 -2 -25 1 10.4148126794368 -2 -25 1 10.4126267245018 -1.99999999999999 -24.999999999999901 1 10.4104365412365 -2.0000000000000102 -25.000000000000099 0.999999999999997 10.4082418579858 -2 -25 1 10.4038615590279 -2 -25 1 10.401676023164599 -2 -25 0.999999999999999 10.399485678871701 -2 -25 1 10.3972904161934 -2 -25 1 10.3929094602693 -2 -25 1 10.3907238555642 -2 -25 0.999999999999999 10.388533353577801 -2 -25 1 10.3863380027259 -2 -25 1 10.3819564525049 -2 -25 1 10.3797703339301 -2.0000000000000102 -25.000000000000099 0.999999999999998 10.3775796856919 -2 -24.999999999999901 1 10.375384703142601 -2 -25 1 10.3710026428385 -2 -25 1 10.3688156253902 -1.99999999999999 -24.999999999999901 1 10.366624848675301 -2.0000000000000102 -25.000000000000099 0.999999999999997 10.364430637187301 -2 -25 1 10.3600481587152 -2 -25 1 10.357859925189199 -2 -25 1 10.355669044532901 -2 -25 1 10.353475941945099 -2 -25 1 10.3490931367971 -2 -25 1 10.3469034439886 -2 -25 1 10.3447124840648 -2 -25 1 10.342520761491899 -2 -25 1 10.338137717754 -2 -25 1 10.335946395260599 -2 -25 1 10.3337553853377 -2 -25 1 10.3315652424508 -2 -25 1 10.3271820462408 -2 -25 1 10.324988998839199 -2 -25 1 10.322797970744499 -2 -25 1 10.320609534593901 -2 -25 1 10.3162998201338 -2 -25 1 10.314178366681899 -2 -25 1 10.312060423031999 -2 -25 1 10.309946492558399 -2 -25 1 10.30570951819 -2 -25 1 10.303586550406401 -2 -25 1 10.301468651331 -2 -25 1 10.2993562797636 -2 -25 1 10.2951194303657 -2 -25 1 10.292995087664799 -2 -25 1 10.290877265266101 -2 -25 1 10.2887663452928 -2 -25 1 10.2845297374369 -2 -25 1 10.2824042509368 -2 -25 1 10.280286538251 -2 -25 1 10.2781768717897 -2 -25 1 10.2739406462136 -2 -25 1 10.2718143507826 -2 -25 1 10.2696967807922 -2 -25 1 10.2675880659573 -2 -25 1 10.2633523876748 -2 -25 1 10.261225732421099 -2 -25 1 10.2591083364883 -2 -25 1 10.2570001555335 -2 -25 1 10.252765206489901 -2 -25 1 10.250638759648099 -2 -25 1 10.248521564625699 -2 -25 0.999999999999999 10.246413377447301 -2 -25 1 10.2421793379036 -2 -25 1 10.2400537777773 -2 -25 1 10.2379368052649 -2 -25 1 10.2358279532121 -2 -25 1 10.2315949682487 -2 -25 1 10.229471056329301 -2 -25 1 10.2273543163056 -2 -25 0.999999999999999 10.225244047865701 -2 -25 1 10.221435303109001 -2 -25 1 10.2197348757042 -2.0000000000000102 -25.000000000000099 0.999999999999997 10.2180377396403 -1.99999999999999 -24.999999999999901 1 10.2163434277342 -2 -25 1 10.213060125477901 -2 -25 1 10.211470867851499 -2 -25 1 10.2098832384694 -2 -25 1 10.2082967860875 -2 -25 1 10.2051225383314 -2 -25 1 10.203534745501701 -2 -25 0.999999999999999 10.2019471723703 -2 -25 1 10.200359311109301 -2 -25 1 10.197185257423 -2 -25 1 10.195599068413999 -2 -25 1 10.1940115367332 -2 -25 0.999999999999999 10.1924221126123 -2 -25 1 10.189338678395099 -2 -25 1 10.1878449683783 -1.99999999999999 -24.999999999999901 1 10.186348634443601 -2.0000000000000102 -25.000000000000099 0.999999999999998 10.1848491978923 -2 -25 1 10.183346173607999 -2 -25 1 + 0 6 0.0462455633780023 4 0.092102972749340997 4 0.13755449764282099 4 0.18262160994979701 4 0.227359738790962 4 0.27185237149071301 4 0.31620523893743002 4 0.36054091138286498 4 0.404993792264293 4 0.448209178595322 4 0.49179551400524102 4 0.53587855676249496 4 0.58057410297953005 4 0.625979856383587 4 0.67216520738826802 4 0.71915896563691795 4 0.76693580883103096 4 0.81540332199514898 4 0.85464861730869202 4 0.89155849730080505 4 0.92853213523237399 4 0.96542880978193002 4 1 6 +2 21 0 -25 0 0 1 -0.97979589711668502 0.199999999983276 0 -0.199999999983276 -0.97979589711668502 0 11 +1 0 4 10 1 0 0 +2 21 0 -35 0 0 1 -0.97979589711668502 0.199999999983276 0 -0.199999999983276 -0.97979589711668502 0 11 +1 0 4 0 1 0 0 +7 1 0 5 94 24 10.4169947557416 2 -35 1 10.4147932785429 2 -35 1 10.4125977054562 1.99999999999999 -34.999999999999901 1 10.4104076131082 2.0000000000000102 -35.000000000000099 0.999999999999997 10.408222639607301 2 -35 1 10.4038427836577 2 -35 1 10.4016479898429 1.99999999999999 -34.999999999999901 1 10.3994577811563 2.0000000000000102 -35.000000000000099 0.999999999999997 10.3972719134612 2 -35 1 10.392891613427899 2 -35 1 10.3906972474692 2 -34.999999999999901 1 10.388506912851099 2 -35.000000000000099 0.999999999999998 10.386320492328601 2 -35 1 10.381939712877401 2 -35 1 10.3797454110586 2 -35 1 10.3775549548991 2 -35 0.999999999999999 10.3753683492798 2 -35 1 10.3709871065379 2 -35 1 10.368792527793101 2 -35 0.999999999999999 10.366601963949 2 -35 1 10.364415527885599 2 -35 1 10.3600338701211 2 -35 1 10.357838718039501 2 -35 1 10.355648066523999 2 -35 1 10.353462116257701 2 -35 1 10.349080110014899 2 -35 1 10.3468841458143 1.99999999999999 -34.999999999999901 1 10.344693430636299 2.0000000000000102 -35.000000000000099 0.999999999999996 10.342508228834699 2 -35 1 10.3381259511509 2 -35 1 10.335929001566001 2 -35.000000000000099 0.999999999999998 10.3337382494792 2 -34.999999999999901 1 10.3315539960699 2 -35 1 10.3272085336876 2 -35 1 10.325047265772399 2 -35 1 10.3228930302305 2 -35 1 10.3207461147373 2 -35 1 10.3161490550533 2 -35 1 10.313701341220799 2 -34.999999999999901 1 10.311264073123599 2 -35 0.999999999999999 10.3088376442129 2 -35 1 10.303797459731801 2 -35 1 10.301185730592101 2 -35 1 10.298587632517201 2 -35 1 10.2960035291579 2 -35 1 10.2908871273439 2 -35 1 10.2883545736063 2 -35 0.999999999999999 10.285836258535101 2 -35 1 10.2833323357016 2 -35 1 10.278601656636299 2 -35 1 10.2763721676044 2 -35 1 10.2741543893256 2 -35 1 10.271948263928101 2 -35 1 10.267569961756699 2 -35 1 10.265397670461001 2 -35 1 10.2632366402377 2 -35 1 10.261086648137301 2 -35 1 10.256981611650801 2 -35 1 10.255024897742 2 -35 1 10.253077004723099 2 -35 1 10.251137631083701 2 -35 1 10.2473815476813 2 -35 1 10.245563964291399 2 -35 1 10.243753356212901 2 -35 1 10.2419493663682 2 -35 1 10.2383215893389 2 -35 1 10.2364980270338 2 -35 1 10.234680471045801 2 -35 1 10.2328684381241 2 -35 1 10.229440063170699 2 -35 1 10.227822748751199 2 -35 1 10.226209060274099 2 -35 1 10.2245985747522 2 -35 1 10.221342070058499 2 -35 1 10.2196961927887 2 -35 1 10.2180527085047 2 -35 1 10.2164110843333 2 -35 1 10.213227277183501 2 -35 1 10.2116849467838 2 -35 1 10.2101432808885 2 -35 1 10.2086017726809 2 -35 1 10.205319989375999 2 -35 1 10.203579610524599 2 -35.000000000000099 0.999999999999998 10.201837976639499 2 -35 1 10.200094266222299 2 -35 1 10.1967671421377 2 -35 1 10.1951842619881 2 -35 1 10.193598326942199 2 -35 1 10.1920086607324 2 -35 1 10.189008764675 2 -35 1 10.1875995206679 2 -35 1 10.1861863439405 2 -35 1 10.184768733133399 2 -35 1 10.183346173607999 2 -35 1 + 0 6 0.041489200739118298 4 0.083350133285974001 4 0.125534858217589 4 0.16802192270003299 4 0.21081726699165301 4 0.25395268602285198 4 0.29748282160366801 4 0.34148132100578399 4 0.385288771868879 4 0.435616739549813 4 0.49031382516684002 4 0.54451477954025096 4 0.59330920744109195 4 0.64186080012923596 4 0.68647500395018202 4 0.72863230664180101 4 0.77154514498825399 4 0.81004763353957099 4 0.84953255694862395 4 0.88668582103210003 4 0.92861026263871904 4 0.96654575159215805 4 1 6 +1 10.4169947557416 2 -35 0 0 1 +7 1 0 5 94 24 10.4169947557416 2 -25 1 10.4148126794368 2 -25 1 10.4126267245018 2 -25 1 10.4104365412365 2 -25 1 10.4082418579858 2 -25 1 10.4038615590279 2 -25 1 10.401676023164599 2 -25 1 10.399485678871701 2 -25 1 10.3972904161934 2 -25 1 10.3929094602693 2 -25 1 10.3907238555642 1.99999999999999 -24.999999999999901 1 10.388533353577801 2.0000000000000102 -25.000000000000099 0.999999999999997 10.3863380027259 2 -25 1 10.3819564525049 2 -25 1 10.379770333930001 2 -25 1 10.3775796856919 2 -25 1 10.375384703142601 2 -25 1 10.3710026428385 2 -25 1 10.3688156253902 2 -25 0.999999999999999 10.366624848675301 2 -25 1 10.364430637187301 2 -25 1 10.3600481587152 2 -25 1 10.357859925189301 2 -25 1 10.355669044532901 2 -25 1 10.353475941945099 2 -25 1 10.3490931367971 2 -25 1 10.3469034439886 2 -25 1 10.3447124840648 2 -25 1 10.342520761491899 2 -25 1 10.338137717754 2 -25 1 10.335946395260599 2 -25 1 10.3337553853377 2 -25 1 10.3315652424508 2 -25 1 10.3271820462408 2 -25 1 10.324988998839199 2 -25 1 10.322797970744499 2 -25 1 10.320609534593901 2 -25 1 10.3162998201338 2 -25 1 10.314178366681899 2 -25 1 10.312060423031999 2 -25 1 10.309946492558399 2 -25 1 10.30570951819 2 -25 1 10.303586550406401 2 -25 1 10.301468651331 2 -25 1 10.2993562797636 2 -25 1 10.2951194303657 2 -25 1 10.292995087664799 2 -25 1 10.290877265266101 2 -25 1 10.2887663452928 2 -25 1 10.2845297374369 2 -25 1 10.2824042509368 2 -25 1 10.280286538251 2 -25 1 10.2781768717897 2 -25 1 10.2739406462136 2 -25 1 10.2718143507826 2 -25 1 10.2696967807922 2 -25 1 10.2675880659573 2 -25 1 10.2633523876748 2 -25 1 10.261225732421099 2 -25 1 10.2591083364883 2 -25 1 10.2570001555336 2 -25 1 10.252765206489901 2 -25 1 10.250638759648099 2.0000000000000102 -25.000000000000099 0.999999999999997 10.2485215646256 1.99999999999999 -24.999999999999901 1 10.246413377447301 2 -25 1 10.2421793379036 2 -25 1 10.2400537777773 2 -25 0.999999999999999 10.2379368052649 2 -25 1 10.2358279532121 2 -25 1 10.2315949682487 2 -25 1 10.229471056329301 2 -25 0.999999999999999 10.2273543163056 2 -25 1 10.225244047865701 2 -25 1 10.221435303109001 2 -25 1 10.2197348757042 2 -25 1 10.2180377396403 2 -25 1 10.2163434277342 2 -25 1 10.213060125477901 2 -25 1 10.211470867851499 2 -25 0.999999999999999 10.2098832384694 2 -25 1 10.208296786087599 2 -25 1 10.2051225383314 2 -25 1 10.203534745501701 2 -25 0.999999999999999 10.2019471723703 2 -25 1 10.200359311109301 2 -25 1 10.197185257423 2 -25 1 10.195599068414101 2.0000000000000102 -25.000000000000099 0.999999999999997 10.1940115367331 1.99999999999999 -24.999999999999901 1 10.1924221126123 2 -25 1 10.189338678395099 2 -25 1 10.1878449683783 2 -25 1 10.186348634443601 2 -25 0.999999999999999 10.1848491978923 2 -25 1 10.183346173607999 2 -25 1 + 0 6 0.0462455633784222 4 0.092102972750156401 4 0.13755449764372599 4 0.18262160995094201 4 0.227359738792105 4 0.27185237149185298 4 0.316205238938502 4 0.36054091138382699 4 0.40499379226523102 4 0.44820917859625597 4 0.49179551400607502 4 0.53587855676332696 4 0.58057410298023804 4 0.62597985638426801 4 0.67216520738879404 4 0.719158965637262 4 0.76693580883110102 4 0.81540332199507104 4 0.85464861730841102 4 0.89155849730067405 4 0.92853213523215705 4 0.965428809781818 4 1 6 +7 1 0 2 3 2 11.379086141583301 -2.7272727272727302 -35 1 11.1729237017601 -2 -35 0.79772403521746604 10.4169947557416 -2 -35 1 + 0 3 1 3 +7 1 0 5 98 25 11.379086141583301 -2.7272727272727302 -35 1 11.379086141583301 -2.7272727272727302 -35.015316480968302 1 11.3790091162089 -2.7270010074696298 -35.030452636627103 1 11.3788588706888 -2.72647099030997 -35.045405521025302 0.999999999999998 11.378639045093999 -2.72569522822441 -35.060173840447 1 11.3780645643154 -2.72366657146965 -35.089468042930797 1 11.3777087522116 -2.7224095825213399 -35.103990683888 0.999999999999997 11.377289115609999 -2.7209262147378599 -35.118325246193201 1 11.3768089223083 -2.7192273531944 -35.132472708704597 1 11.3757293989344 -2.7154040901505998 -35.160502041252499 1 11.375129199193101 -2.7132765813389601 -35.174381097784099 0.999999999999998 11.374473669796901 -2.7109504913881701 -35.188073728784602 1 11.373765635965899 -2.7084349385036601 -35.201582395157203 1 11.3722444383801 -2.7030225309026501 -35.228330210232002 1 11.371430578759 -2.7001231497051799 -35.241566824378999 1 11.3705687199314 -2.6970483175908 -35.254622794177102 0.999999999999998 11.369661235026999 -2.69380544321203 -35.267501465086099 1 11.367752667428499 -2.6869730167592598 -35.292999781322798 1 11.3667509775991 -2.6833812100721701 -35.305616990674203 1 11.365707376020399 -2.67963235671811 -35.318061646635698 1 11.364623808866 -2.6757322895914899 -35.330337538890198 1 11.362371767237001 -2.6676094061495998 -35.354650639368899 1 11.3612027155198 -2.6633843830776298 -35.366685347740301 1 11.3599966309612 -2.6590161989094998 -35.378556534830203 0.999999999999999 11.3587550753992 -2.6545092726439901 -35.390268109806797 1 11.356192839914399 -2.64518563297454 -35.413478752651301 1 11.3548715734675 -2.64036659700013 -35.424975131656801 1 11.3535170407735 -2.6354140918849698 -35.436316942833699 0.999999999999999 11.352130469272799 -2.63033128654929 -35.447507968952699 1 11.3492812073435 -2.6198581126511602 -35.469706125528198 1 11.347817896215201 -2.6144651823549601 -35.480710288532599 1 11.3463240941057 -2.6089446217959802 -35.491567991577497 1 11.3448007547799 -2.6032985302724798 -35.5022826813954 1 11.341678433586299 -2.5916907732289101 -35.523556333989198 1 11.340078778061701 -2.5857261960976001 -35.5341119922833 1 11.3384505607441 -2.5796363381447902 -35.544527819867596 1 11.336794504206001 -2.5734223405750201 -35.554806776466201 1 11.3334050345708 -2.5606612326880702 -35.575234141970498 1 11.3316708792892 -2.5541107523986102 -35.585378868287499 1 11.3299093801292 -2.5474341381873198 -35.5953883883383 1 11.328121079058601 -2.54063169971199 -35.605265017488897 1 11.3244636185398 -2.5266674950019099 -35.624907533712303 1 11.3225936384131 -2.5195018013591799 -35.6346693187025 1 11.3206969624246 -2.5122061872314698 -35.644298006812399 1 11.318774002324 -2.5047802474889398 -35.653795111491803 1 11.314842432010201 -2.4895352817712699 -35.672690575148401 1 11.3128329183088 -2.4817116838364601 -35.682084365057101 1 11.310796934409799 -2.47375170219942 -35.691344125153499 1 11.308734813249901 -2.4656543293114801 -35.700470399916199 1 11.304389761458699 -2.4485151547329802 -35.719184421087803 1 11.302102479129299 -2.4394499948169099 -35.7287496625203 1 11.2997853813626 -2.4302212471916702 -35.738158915046597 1 11.297438835835599 -2.42082711527233 -35.7474114082884 1 11.292790294745901 -2.4021175224123299 -35.765206546040403 1 11.290490763895599 -2.39281623659345 -35.773762582103799 1 11.2881649258349 -2.3833599780568502 -35.782172357911598 1 11.285813119620499 -2.37374691008629 -35.7904338613939 1 11.281120615207101 -2.3544594731965698 -35.806442371089702 1 11.278781244657999 -2.3447933269111698 -35.814197184619701 1 11.276417930443801 -2.3349749063658698 -35.821806391342697 1 11.2740310509146 -2.3250024496836499 -35.829266917587802 1 11.2691655135887 -2.30455477655978 -35.844021200001997 1 11.2666859763721 -2.29407363347479 -35.851309148056899 1 11.2641828623105 -2.2834289160787602 -35.858435038951903 1 11.261656686512 -2.2726188637646798 -35.865394320757296 1 11.256514973561 -2.25047350453494 -35.879087499104401 1 11.253898648985301 -2.23913234005733 -35.8858153539095 1 11.251259674370401 -2.2276165631612699 -35.892359853563597 1 11.2485987619014 -2.2159246309451599 -35.898714786707203 1 11.243601874128 -2.1938108203723101 -35.910188513931303 1 11.2412712900949 -2.1834342240911999 -35.9153574278062 1 11.238925489627601 -2.1729245705490299 -35.920375505942502 1 11.236565060117799 -2.1622811955257601 -35.925237885927302 1 11.2318141497033 -2.1407165163893702 -35.934644874587804 1 11.2294236453852 -2.1297949836154602 -35.939189198211999 1 11.2270197979747 -2.1187385469728599 -35.943566988230202 1 11.2246033419414 -2.1075470019686202 -35.947772556330897 1 11.2200157110804 -2.0861479873872701 -35.9553811378468 1 11.217847004796401 -2.0759687749171798 -35.958821454114101 1 11.215669544165699 -2.0656828308894601 -35.962116470925999 1 11.213483959281101 -2.0552904438187101 -35.965261655305099 1 11.209076241002901 -2.0341900732804201 -35.971272359228699 1 11.2068539604576 -2.02347999275195 -35.974134809881598 1 11.204624804743201 -2.0126624392186101 -35.976834654766797 1 11.202389550643099 -2.00173828301094 -35.979366734331599 1 11.197863313826399 -1.9794565470457699 -35.984132187072298 1 11.195572117357999 -1.9680946742936101 -35.986358501172198 0.999999999999998 11.193276353817399 -1.9566244057414299 -35.988398877135999 1 11.190977002018601 -1.94504744893755 -35.990247356725497 1 11.1865613676166 -1.92263926426816 -35.993413387809603 1 11.184445479708399 -1.9118244065024499 -35.9947619824488 1 11.182328294583201 -1.90092322917413 -35.995938848116701 1 11.180210702752699 -1.8899378605172099 -35.996939117354003 1 11.1758067905829 -1.8669161551383899 -35.998642317830203 1 11.173520562013101 -1.8548662022831 -35.999314958047201 0.999999999999997 11.1712361910526 -1.8427243761807199 -35.999769604472803 1 11.1689549816862 -1.83049464261219 -36 1 11.166678339643701 -1.8181818181818199 -36 1 + 0 6 0.040099905557437497 4 0.080548941488914394 4 0.121302649574392 4 0.16233958108360599 4 0.20366226380580801 4 0.24529608526125099 4 0.28728689017495801 4 0.32969783695436 4 0.37260578185410198 4 0.41609721082407702 4 0.46026353353147897 4 0.50519539488713305 4 0.55376685639189804 4 0.60023800608618005 4 0.64549097673320199 4 0.69159813110431001 4 0.73850862303907205 4 0.77899666732106099 4 0.81952053904117095 4 0.85555734813302897 4 0.89195034526454897 4 0.92907789768065596 4 0.963171395364531 4 1 6 +7 1 0 2 3 2 11.166678339643701 -1.8181818181818199 -36 1 11.166678339643701 -1.8181818181818199 -35 0.70710678118654602 10.183346173607999 -2 -35 1 + 0 3 1 3 +1 11.379086141583301 -2.7272727272727302 -35 0 0 1 +7 1 0 2 3 2 11.379086141583301 -2.7272727272727302 -25 1 11.1729237017601 -2 -25 0.79772403521746604 10.4169947557416 -2 -25 1 + 0 3 1 3 +7 1 0 5 94 24 11.379086141583301 -2.7272727272727302 -25 1 11.379086141583301 -2.7272727272727302 -24.984292520762999 1 11.379005133528199 -2.7269869577983701 -24.968705017358499 1 11.378845783493199 -2.7264248233526098 -24.953243742383901 0.999999999999997 11.378610772143601 -2.7255954587125202 -24.9379136177796 1 11.377997241534599 -2.7234287530939199 -24.907650817401201 1 11.377619943551 -2.7220957349036898 -24.892715894953898 0.999999999999999 11.3771733704399 -2.7205169482635601 -24.8779173876048 1 11.3766600103618 -2.7187004187699402 -24.863257985776698 1 11.375509579749799 -2.7146249453628699 -24.834349612656101 1 11.3748736447443 -2.7123700608006001 -24.820098165374802 0.999999999999999 11.3741767461874 -2.7098962527035 -24.8059870130981 1 11.3734210903652 -2.7072102836390801 -24.792017216146199 1 11.371803273837999 -2.70145084604657 -24.764478221826199 1 11.370942068404901 -2.6983808485303298 -24.750906642869399 0.999999999999998 11.370027148615399 -2.6951143700305402 -24.737474961583501 1 11.3690604035035 -2.6916568871817002 -24.7241831098851 1 11.367034175598199 -2.6843963059560298 -24.697974159253 1 11.3659754217828 -2.6805959165093398 -24.685055039212099 1 11.364869024402701 -2.67661692145465 -24.672272819441201 0.999999999999997 11.363716554753299 -2.6724635625638902 -24.6596267126863 1 11.361328902008401 -2.6638392171426202 -24.634673362900799 1 11.3600942082487 -2.6593701011671 -24.6223646520458 1 11.3588167696425 -2.65473580194781 -24.610188565780099 1 11.3574978617676 -2.64993941866088 -24.5981439649713 1 11.3547836654552 -2.64004320088987 -24.574352630519002 1 11.3533886312494 -2.6349443708659299 -24.562605094825901 1 11.3519546583905 -2.6296895833816198 -24.550985724784699 1 11.350482760495201 -2.6242809007599601 -24.5394932762654 1 11.3474654895209 -2.6131610550948898 -24.5167641574604 1 11.3459201470266 -2.6074500155171401 -24.5055274031922 1 11.3443386980979 -2.60158835412004 -24.494415017539499 1 11.3427219344298 -2.5955772067372598 -24.483425897366899 1 11.339414792550199 -2.5832410527876402 -24.4616635135434 1 11.3377242333938 -2.5769152652645202 -24.450890909571498 1 11.335999564054299 -2.57044061201591 -24.440240278429801 1 11.3342413992468 -2.5638174149819499 -24.429710883132 1 11.3307090091796 -2.5504623319045301 -24.409183334381801 1 11.328936596003301 -2.54373861155223 -24.399178561838099 1 11.3271335245058 -2.5368744003361701 -24.389287459782501 1 11.3253002358652 -2.52986936756745 -24.3795098781654 1 11.321558014921999 -2.51551510132041 -24.360099106245801 1 11.3196485709956 -2.50816343732457 -24.3504678839512 1 11.317709191397199 -2.5006672902803202 -24.340952459080601 1 11.3157402506874 -2.4930258223546899 -24.331553373624601 1 11.3117211713364 -2.4773613912555801 -24.3128839592713 1 11.3096703658753 -2.4693350818706099 -24.303616325298801 1 11.307590039664399 -2.46115796478185 -24.294469613114899 1 11.3054805501862 -2.4528288084353802 -24.285445245918599 1 11.301174245238199 -2.4357458090720701 -24.267521310945799 1 11.298976626624 -2.42698768327939 -24.258625225060499 1 11.296749767524901 -2.4180704283771299 -24.249858819276799 1 11.294494063391699 -2.4089925509035801 -24.241224596022199 1 11.2898895111675 -2.3903656190008 -24.2240915403288 1 11.287539755612 -2.3808113809501501 -24.215597043682699 1 11.285161108921599 -2.3710881527373102 -24.207245289334701 1 11.2827540661544 -2.3611943404321001 -24.1990400655184 1 11.2778424806031 -2.3408896032762501 -24.1827931689065 1 11.275336976477099 -2.3304727294526302 -24.1747567261156 1 11.2728032423187 -2.3198761239693502 -24.166881055827201 1 11.270241941850401 -2.3090982997865299 -24.1591714416051 1 11.26502040535 -2.28698570146291 -24.143964279631 1 11.262359224716599 -2.2756444913507101 -24.1364728092347 1 11.2596710752742 -2.2641129070787902 -24.1291656755388 0.999999999999999 11.256956860928 -2.2523898130632598 -24.1220498650978 1 11.251432720396 -2.2283604955421699 -24.108100992614801 1 11.248621954551901 -2.2160478170158502 -24.101274622083299 1 11.2457864004515 -2.2035355798387002 -24.0946620174192 1 11.242927290049099 -2.1908233960410701 -24.088272018784899 1 11.2371230980877 -2.16481285907687 -24.075867318147001 1 11.2341773728338 -2.1515086959255698 -24.069859380448101 1 11.2312103031616 -2.1379991708935 -24.064100336247702 0.999999999999999 11.2282235337742 -2.1242851499225299 -24.0586009369182 1 11.2227860023243 -2.0990996515373599 -24.049139109246301 1 11.2203413880671 -2.0876979934822901 -24.045083339809501 0.999999999999997 11.217886053908 -2.07616434679887 -24.041211367929101 1 11.215421074636801 -2.0645000481132501 -24.03752955797 1 11.210621363689899 -2.0416156209809699 -24.030766852411599 1 11.208287610672 -2.0304103686227402 -24.027663236215499 1 11.2059473416421 -2.0190927217020498 -24.024739152765601 1 11.2036016130512 -2.0076646254708499 -24.022000281294901 1 11.1988974583175 -1.9845725108612 -24.016900153247601 1 11.1965390174422 -1.9729081200257499 -24.014539557400301 0.999999999999999 11.1941773896305 -1.9611378273159701 -24.0123764551238 1 11.191813808007 -1.9492646186428999 -24.010416791436899 1 11.1870903028959 -1.92534453732362 -24.0069198912704 1 11.184730382062 -1.91329807774661 -24.005381784038999 1 11.1823711468393 -1.9011563431932099 -24.004058112198599 0.999999999999999 11.18001400068 -1.8889235731643801 -24.002954799336202 1 11.1754552079409 -1.8650623899668299 -24.0012557152018 1 11.1732531240893 -1.85344447880547 -24.000632337871199 1 11.171055411247799 -1.84175516108001 -24.0002122251577 0.999999999999998 11.1688633640563 -1.8299991445189101 -24 1 11.166678339643701 -1.8181818181818199 -24 1 + 0 6 0.0462455633780023 4 0.092102972749340997 4 0.13755449764282099 4 0.18262160994979701 4 0.227359738790962 4 0.27185237149071301 4 0.31620523893743002 4 0.36054091138286498 4 0.404993792264293 4 0.448209178595322 4 0.49179551400524102 4 0.53587855676249496 4 0.58057410297953005 4 0.625979856383587 4 0.67216520738826802 4 0.71915896563691795 4 0.76693580883103096 4 0.81540332199514898 4 0.85464861730869202 4 0.89155849730080505 4 0.92853213523237399 4 0.96542880978193002 4 1 6 +7 1 0 2 3 2 11.166678339643701 -1.8181818181818199 -24 1 11.166678339643701 -1.8181818181818199 -25 0.70710678118654602 10.183346173607999 -2 -25 1 + 0 3 1 3 +7 1 0 2 3 2 11.166678339643701 1.8181818181818199 -24 1 11.166678339643701 1.8181818181818199 -25 0.70710678118655101 10.183346173607999 2 -25 1 + 0 3 1 3 +2 21 0 -24 0 0 1 -0.97979589711668502 0.199999999983276 0 -0.199999999983276 -0.97979589711668502 0 10 +7 1 0 2 3 2 11.166678339643701 1.8181818181818199 -36 1 11.166678339643701 1.8181818181818199 -35 0.70710678118655101 10.183346173607999 2 -35 1 + 0 3 1 3 +2 21 0 -36 0 0 1 -0.97979589711668502 0.199999999983276 0 -0.199999999983276 -0.97979589711668502 0 10 +7 1 0 2 3 2 11.379086141583301 2.7272727272727302 -35 1 11.1729237017601 2 -35 0.79772403521746604 10.4169947557416 2 -35 1 + 0 3 1 3 +7 1 0 5 94 24 11.379086141583301 2.7272727272727302 -35 1 11.379086141583301 2.7272727272727302 -35.015847134820497 1 11.379003686490799 2.7269818532647498 -35.031501231547097 1 11.378842991066101 2.7264149721303301 -35.046959029788901 0.999999999999997 11.3786080803037 2.7255859523822199 -35.062219158991603 1 11.377994611745001 2.7234194658967299 -35.092478898695099 1 11.3776147861506 2.7220775114810798 -35.107474936096303 1 11.377167101507499 2.7204947751216202 -35.122269607269899 0.999999999999997 11.3766551515799 2.7186832062267698 -35.136864107185502 1 11.3755048932035 2.7146083429754699 -35.165768152315401 1 11.374865638558401 2.71234166483787 -35.180074608133602 1 11.374167854452701 2.7098646642499999 -35.194181891928203 0.999999999999998 11.3734146249343 2.7071872666621002 -35.208092840502196 1 11.371797093001399 2.7014288422271799 -35.235626990366399 1 11.370932033878701 2.69834506240925 -35.249247404234502 1 11.3700164275098 2.6950760517327099 -35.262675378417697 0.999999999999999 11.3690528416146 2.6916297906698099 -35.275914702000897 1 11.367026991743201 2.6843705640527902 -35.302118762821699 1 11.3659640632336 2.6805551217665502 -35.315080801578503 0.999999999999999 11.3648571454383 2.6765741431847498 -35.327859573636601 1 11.363708322935199 2.67243382874145 -35.340459318013501 1 11.361321117326399 2.6638110984028902 -35.365407994780703 1 11.3600820958243 2.6593262281413002 -35.377754130701902 1 11.3588042720024 2.6546903909296899 -35.389927053778401 1 11.3574892997557 2.6499082007516299 -35.4019310854911 1 11.354775598191701 2.6400137868802398 -35.425718083218001 1 11.353376213307 2.6348989463403698 -35.4374980146412 1 11.351941963874999 2.62964297911528 -35.449114516244798 0.999999999999996 11.3504741330607 2.6242491052263199 -35.460571714246399 1 11.347457389435201 2.6131312030518101 -35.483296860529897 1 11.3459077748946 2.6074042496396501 -35.494561440602901 0.999999999999998 11.344326136759999 2.60154169867472 -35.505671231264003 1 11.3427134489833 2.5955455547008901 -35.516629940438598 1 11.3394347774517 2.5833155995810402 -35.538204977402998 1 11.337769057792199 2.5770829406768199 -35.548822578994098 1 11.3360742050229 2.57072071250996 -35.559297060206603 1 11.3343509203221 2.56422985445802 -35.569631360071597 1 11.3305880093505 2.5500065934667799 -35.591542426094399 1 11.328539479383 2.54223320652435 -35.603075164567898 1 11.326455093838099 2.5342913925947999 -35.6144301114971 0.999999999999999 11.324335580819101 2.5261811559460399 -35.625610383132297 1 11.3198405348367 2.5089039783699798 -35.648581873193301 1 11.317458751576799 2.4997064316850599 -35.6603418603123 1 11.3150369965481 2.4903085792801698 -35.671901272507597 1 11.312575916894 2.4807089689944202 -35.6832619482688 1 11.3075989342728 2.4611911927929002 -35.705485904679897 1 11.3050837330133 2.4512767137763798 -35.716352753596901 0.999999999999999 11.302531043821 2.4411602538277402 -35.727025745591199 1 11.2999413706043 2.4308394268488902 -35.737504335765102 1 11.2949510218381 2.4108338283955302 -35.757043592492501 1 11.2925572636202 2.4011883117741801 -35.766141430414201 1 11.2901343050685 2.3913730301215401 -35.775079051507603 1 11.287682530599 2.38138589372738 -35.7838543924288 1 11.2827345057299 2.3611140652112201 -35.801031935243998 1 11.2802385410673 2.3508311142671898 -35.809435774065797 1 11.2777148538974 2.34037366882596 -35.817673282589702 1 11.2751638995709 2.3297395529545999 -35.825740838715603 1 11.270217520169799 2.3089905221068299 -35.840887090085097 1 11.2678262617542 2.2989034498122001 -35.847992918336899 1 11.265412808233799 2.2886636816584498 -35.854948075842003 1 11.2629776145801 2.2782696066368802 -35.861748552309201 1 11.258200049807 2.25775076076307 -35.874665231407299 1 11.255859953667199 2.2476426883398202 -35.880798492492602 1 11.253501340091301 2.2373941807253499 -35.8867856681197 1 11.2511247037113 2.2270040700631899 -35.892622417226697 1 11.246293589668801 2.2057497934048098 -35.904087265896401 1 11.243838482147099 2.1948804784554401 -35.9097097498952 1 11.241365863008101 2.1838622672716301 -35.915166309159297 1 11.2388763986611 2.1726942776379299 -35.9204513600951 1 11.234122782281499 2.15122066509457 -35.930141340720297 1 11.231861770083899 2.14094438261758 -35.934580900831399 1 11.2295883397616 2.1305465222506799 -35.938873086342198 1 11.2273030933675 2.1200268131896101 -35.943013163847802 1 11.222651701501499 2.0984720376453301 -35.951080602341897 1 11.220284980879001 2.0874306796759599 -35.954999840847101 1 11.2179072496278 2.0762610470687801 -35.958748319567299 1 11.2155193044107 2.0649633889824499 -35.962320216069003 1 11.210866303843 2.0427878350383901 -35.9688983498461 1 11.208602320048801 2.0319245590660802 -35.971925536436501 1 11.2063308018835 2.0209489220510299 -35.974785758373002 1 11.204052553367299 2.0098617428224701 -35.977473604266699 1 11.199191027753701 1.9860286476839299 -35.982815507254699 1 11.196606151423699 1.9732525683686699 -35.9854209005683 0.999999999999998 11.1940150860293 1.9603376516081299 -35.9877914452073 1 11.191419221098201 1.94728623864697 -35.989918603658403 1 11.186468259851001 1.92217133633267 -35.9934901114109 1 11.1841137547004 1.9101319993197201 -35.994980171000897 1 11.1817577147087 1.8979859337443401 -35.996257200874503 1 11.1794013738812 1.88573611365664 -35.997314479134502 1 11.1749690016893 1.8624953180211501 -35.998877836373701 1 11.172892738458 1.8515265724546599 -35.999434274054998 1 11.1708182058109 1.8404826230932001 -35.999809889625197 1 11.1687463882601 1.8293665011718601 -36 1 11.166678339643701 1.8181818181818199 -36 1 + 0 6 0.041489200739118298 4 0.083350133285974001 4 0.125534858217589 4 0.16802192270003299 4 0.21081726699165301 4 0.25395268602285198 4 0.29748282160366801 4 0.34148132100578399 4 0.385288771868879 4 0.435616739549813 4 0.49031382516684002 4 0.54451477954025096 4 0.59330920744109195 4 0.64186080012923596 4 0.68647500395018202 4 0.72863230664180101 4 0.77154514498825399 4 0.81004763353957099 4 0.84953255694862395 4 0.88668582103210003 4 0.92861026263871904 4 0.96654575159215805 4 1 6 +1 11.379086141583301 2.7272727272727302 -35 0 0 1 +7 1 0 2 3 2 11.379086141583301 2.7272727272727302 -25 1 11.1729237017601 2 -25 0.79772403521746604 10.4169947557416 2 -25 1 + 0 3 1 3 +7 1 0 5 94 24 11.379086141583301 2.7272727272727302 -25 1 11.379086141583301 2.7272727272727302 -24.984292520762999 1 11.379005133528199 2.7269869577983799 -24.968705017358499 1 11.378845783493199 2.7264248233526001 -24.953243742383801 1 11.378610772143601 2.7255954587125202 -24.9379136177796 1 11.377997241534599 2.7234287530939199 -24.907650817401201 1 11.377619943551 2.7220957349036898 -24.892715894953898 1 11.3771733704399 2.7205169482635601 -24.8779173876048 1 11.3766600103618 2.7187004187699402 -24.863257985776698 1 11.375509579749799 2.7146249453628801 -24.834349612656201 1 11.3748736447442 2.7123700608005601 -24.820098165374599 1 11.3741767461875 2.70989625270354 -24.805987013098299 0.999999999999997 11.3734210903652 2.7072102836390601 -24.792017216146199 1 11.371803273837999 2.70145084604657 -24.764478221826199 1 11.370942068404901 2.6983808485303098 -24.7509066428693 1 11.370027148615501 2.6951143700305402 -24.737474961583601 1 11.3690604035035 2.6916568871817099 -24.7241831098851 1 11.367034175598199 2.6843963059560401 -24.697974159253 1 11.3659754217828 2.6805959165093198 -24.685055039212099 0.999999999999999 11.364869024402701 2.6766169214546598 -24.672272819441201 1 11.363716554753299 2.6724635625638902 -24.6596267126863 1 11.361328902008401 2.6638392171426202 -24.634673362900799 1 11.3600942082487 2.6593701011670898 -24.6223646520458 1 11.3588167696425 2.6547358019477998 -24.61018856578 1 11.3574978617676 2.64993941866088 -24.5981439649713 1 11.3547836654552 2.64004320088987 -24.574352630519002 1 11.3533886312494 2.6349443708659299 -24.562605094825798 1 11.3519546583905 2.6296895833816101 -24.550985724784699 1 11.350482760495201 2.6242809007599601 -24.5394932762654 1 11.3474654895209 2.6131610550948898 -24.5167641574604 1 11.3459201470266 2.6074500155171298 -24.5055274031922 1 11.3443386980979 2.60158835412002 -24.494415017539499 1 11.3427219344298 2.59557720673725 -24.4834258973668 1 11.339414792550199 2.5832410527876402 -24.4616635135434 1 11.3377242333938 2.57691526526451 -24.450890909571399 1 11.335999564054299 2.57044061201589 -24.440240278429801 1 11.3342413992468 2.5638174149819499 -24.429710883132 1 11.3307090091796 2.5504623319045399 -24.409183334381801 1 11.328936596003301 2.5437386115521998 -24.399178561838099 1 11.3271335245058 2.5368744003361399 -24.389287459782501 1 11.3253002358652 2.5298693675674602 -24.3795098781654 1 11.321558014921999 2.5155151013204202 -24.360099106245801 1 11.3196485709956 2.5081634373245798 -24.3504678839512 1 11.317709191397199 2.5006672902803202 -24.340952459080601 1 11.3157402506874 2.4930258223546802 -24.331553373624601 1 11.3117211713364 2.4773613912555699 -24.3128839592713 1 11.3096703658753 2.4693350818706099 -24.303616325298801 1 11.307590039664399 2.4611579647818602 -24.294469613114899 1 11.3054805501862 2.45282880843539 -24.285445245918599 1 11.301174245238199 2.4357458090720798 -24.267521310945799 1 11.298976626624 2.42698768327939 -24.258625225060499 1 11.296749767524901 2.4180704283771202 -24.249858819276799 1 11.294494063391699 2.4089925509035699 -24.241224596022199 1 11.2898895111675 2.3903656190007898 -24.2240915403288 1 11.287539755612 2.3808113809501399 -24.215597043682699 1 11.285161108921599 2.3710881527373102 -24.207245289334701 1 11.2827540661544 2.3611943404321099 -24.1990400655184 1 11.2778424806031 2.34088960327627 -24.1827931689065 1 11.275336976477099 2.3304727294526 -24.1747567261156 1 11.2728032423187 2.3198761239693102 -24.166881055827101 1 11.270241941850401 2.3090982997865299 -24.1591714416051 1 11.26502040535 2.2869857014629198 -24.143964279631 1 11.262359224716599 2.2756444913506999 -24.1364728092348 0.999999999999997 11.2596710752742 2.26411290707882 -24.129165675538701 1 11.256956860928 2.25238981306327 -24.1220498650978 1 11.251432720396 2.2283604955421801 -24.108100992614801 1 11.248621954551901 2.21604781701576 -24.101274622083299 0.999999999999999 11.2457864004515 2.2035355798387499 -24.0946620174192 1 11.242927290049099 2.1908233960410399 -24.088272018784899 1 11.2371230980877 2.1648128590768598 -24.075867318146901 1 11.2341773728338 2.1515086959255099 -24.069859380448101 0.999999999999999 11.2312103031616 2.13799917089352 -24.064100336247702 1 11.2282235337742 2.1242851499225299 -24.0586009369182 1 11.2227860023243 2.0990996515373799 -24.049139109246301 1 11.220341388067 2.08769799348216 -24.045083339809398 1 11.217886053908 2.0761643467989601 -24.041211367929201 1 11.215421074636801 2.0645000481132398 -24.03752955797 1 11.210621363689899 2.0416156209808798 -24.030766852411599 1 11.208287610672 2.0304103686229298 -24.027663236215599 0.999999999999999 11.205947341642 2.0190927217018899 -24.024739152765601 1 11.2036016130512 2.0076646254709098 -24.022000281294901 1 11.1988974583175 1.98457251086122 -24.016900153247601 1 11.1965390174422 1.9729081200257299 -24.014539557400301 0.999999999999999 11.1941773896305 1.96113782731605 -24.0123764551238 1 11.191813808007 1.9492646186428699 -24.010416791436899 1 11.1870903028959 1.9253445373236 -24.0069198912704 1 11.184730382062099 1.9132980777466799 -24.005381784039098 0.999999999999997 11.1823711468393 1.90115634319316 -24.0040581121985 1 11.180014000680099 1.8889235731644101 -24.002954799336202 1 11.1754552079409 1.86506238996681 -24.0012557152018 1 11.1732531240893 1.85344447880555 -24.000632337871298 1 11.1710554112477 1.8417551610799101 -24.0002122251576 0.999999999999999 11.168863364056399 1.82999914451898 -24 1 11.166678339643701 1.8181818181818199 -24 1 + 0 6 0.0462455633784222 4 0.092102972750156401 4 0.13755449764372599 4 0.18262160995094201 4 0.227359738792105 4 0.27185237149185298 4 0.316205238938502 4 0.36054091138382699 4 0.40499379226523102 4 0.44820917859625597 4 0.49179551400607502 4 0.53587855676332696 4 0.58057410298023804 4 0.62597985638426801 4 0.67216520738879404 4 0.719158965637262 4 0.76693580883110102 4 0.81540332199507104 4 0.85464861730841102 4 0.89155849730067405 4 0.92853213523215705 4 0.965428809781818 4 1 6 +2 0 0 22.5 0 0 1 1 0 0 0 1 0 10 +1 10 0 0 0 0 1 +2 0 0 0 0 0 1 1 0 0 0 1 0 10 +2 21 0 -15 0 0 1 0 -1 0 1 0 0 8 +2 21 0 -37.5 0 0 1 0 -1 0 1 0 0 8 +1 8 0 0 0 0 1 +2 0 0 20 0 0 1 1 0 0 0 1 0 20 +1 -25 -0.10000000000000001 94 -1 0 0 +2 0 0 94 0 0 1 0 -1 0 1 0 0 14 +1 -19.999749998437501 -0.10000000000000001 74 0 0 1 +1 19.999749998437501 -0.10000000000000001 74 0 0 1 +2 0 0 0 0 0 1 1 0 0 0 1 0 20 +1 -13.9996428525873 -0.10000000000000001 64.900000000000006 0 0 1 +1 -25 -0.10000000000000001 74 -1 0 0 +1 13.9996428525873 -0.10000000000000001 64.900000000000006 0 0 1 +2 0 0 74 0 0 1 0 -1 0 1 0 0 14 +1 0 0 4 0 1 0 +1 0 90 4 1 0 0 +1 100 0 4 0 1 0 +1 0 0 4 1 0 0 +1 -40 -41.5 -70 0 1 0 +1 -46 -38 -70 -1 0 0 +1 -46 38 -70 -1 0 0 +1 40 -41.5 -70 0 1 0 +1 0 0 0 0 0 1 +1 0 90 0 0 0 1 +1 0 0 0 0 1 0 +1 0 90 0 1 0 0 +1 100 90 0 0 0 1 +1 100 0 0 0 0 1 +1 100 0 0 0 1 0 +1 0 0 0 1 0 0 +1 0 0 0 0 0 1 +1 0 0 6 0 1 0 +1 0 76 0 0 0 1 +1 80 0 0 0 0 1 +1 0 0 6 1 0 0 +1 80 76 0 0 0 1 +1 0 76 6 1 0 0 +1 80 0 6 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 4 +1 41.5 -3.9686269665968901 21 0 0 -1 +1 4 0 0 0 0 1 +2 41 0 19.100000000000001 0 0 -1 0 1 0 1 0 0 4 +2 0 0 4 0 0 1 1 0 0 0 1 0 4 +1 40.5 -3.9686269665968901 21 0 0 -1 +1 40.5 3.9686269665968901 21 0 0 -1 +1 41.5 3.9686269665968901 21 0 0 -1 +1 41.5 -2.5 21 0 -1 0 +1 1 0 0 0 1 0 +1 0 0 0 0 1 0 +2 0 0 4 0 0 1 0 -1 0 1 0 0 2 +1 40.5 -2.5 21 0 -1 0 +1 2 0 0 0 0 1 +2 0 0 18 0 0 1 1 0 0 0 1 0 2 +2 0 0 15 0 0 1 1 0 0 0 1 0 26 +2 0 0 15 0 0 1 0 -1 0 1 0 0 16 +1 26 0 0 0 0 1 +2 0 0 0 0 0 1 1 0 0 0 1 0 26 +1 16 0 0 0 0 1 +2 0 0 0 0 0 1 0 -1 0 1 0 0 16 +1 2 0 0 0 0 1 +2 24 0 40 -1 0 0 0 0 -1 0 -1 0 2 +2 0 0 4 0 0 1 0 -1 0 1 0 0 2 +2 0 0 4 0 0 1 1 0 0 0 1 0 4 +1 4 0 0 0 0 1 +2 0 0 0 0 0 1 1 0 0 0 1 0 4 +2 -10 -0.01 20 1 0 0 0 0 1 0 -1 0 5 +1 -133 -0.10000000000000001 -22 1 0 0 +2 -10 0 20.010000000000002 1 0 0 0 0 1 0 -1 0 4 +1 -95.001210146445402 -0.10000000000000001 -5 0 0 -1 +1 -104.998789853555 -0.10000000000000001 -5 0 0 -1 +7 1 0 8 226 33 -21.999997832879298 -0.0099999999999997903 15 1 -21.999891946593401 -0.14737888229492699 15 1 -21.9972462870759 -0.282454608776886 15.004313774765601 0.99999999999997102 -21.992212895197799 -0.41275563312865399 15.0126885746709 1.0000000000000999 -21.985188292741199 -0.53699710265937495 15.024461824451601 0.99999999999984901 -21.9765990163969 -0.65474216804953 15.0389217190924 1.0000000000001099 -21.966792144365801 -0.766182315877034 15.055488910689601 0.99999999999996403 -21.955995282507399 -0.87202357071040704 15.073785443503301 1 -21.927623368325801 -1.1176564499186801 15.1220180407634 1 -21.909288219943502 -1.2511600045751501 15.1532469770424 0.99999999999995703 -21.8893407517497 -1.3812184461305199 15.187785206013 1.0000000000001099 -21.868515147988301 -1.5008896161426999 15.2238839107207 0.99999999999987499 -21.8466177723292 -1.6183526296566799 15.262443684445 1.00000000000006 -21.824084766225401 -1.72903635225536 15.3024033211024 0.99999999999999001 -21.800898716455599 -1.83592892100645 15.3439903295418 1 -21.750091575892199 -2.0561970404837902 15.436091793062699 1 -21.722333793796199 -2.1683491392106098 15.486994904901399 1.00000000000001 -21.694021800323402 -2.2759417760992302 15.5395491816404 0.99999999999999001 -21.6652584935783 -2.3794325076104199 15.593621927171901 1 -21.6361264513714 -2.47918992008649 15.6491135170349 1.00000000000001 -21.6066920768749 -2.5755298186379099 15.705952848040999 0.999999999999994 -21.5770069565067 -2.66872490186626 15.7640976884833 1 -21.512304756930199 -2.8641492177933698 15.892729412111001 1 -21.477201629572502 -2.9654621650847899 15.9637645262753 1.00000000000001 -21.442042719574602 -3.0621442128628802 16.035715754605299 0.99999999999996303 -21.406321850227499 -3.1583778604157802 16.111374173473301 1.0000000000000699 -21.370748173650401 -3.2496574723596199 16.187547568955299 0.99999999999993705 -21.334884617035598 -3.3396398288786302 16.266650197143001 1.00000000000002 -21.299008242879701 -3.4267724132971198 16.347629858978902 1 -21.228118519114101 -3.5943320513961798 16.512023799969501 1 -21.193115975852798 -3.6748109512969198 16.595277556567499 1.00000000000002 -21.158125545129401 -3.7532044178500499 16.680772041458798 0.99999999999996902 -21.123185893055702 -3.8295957689576001 16.768625324616401 0.999999999999998 -21.088337672817801 -3.9040481075164002 16.858980078067201 1.00000000000003 -21.053624199225901 -3.9766078644099898 16.9520094482126 0.99999999999998301 -21.019092481572901 -4.0473060665214202 17.047929511286402 1 -20.952709473124301 -4.1805698179532396 17.239729986736901 1 -20.9208334318729 -4.2433808856878903 17.3352503522791 0.99999999999997102 -20.889224264117999 -4.3044050792215502 17.433429826175601 1.00000000000006 -20.857870048491002 -4.3643069330105302 17.535812361107499 0.99999999999994904 -20.826943165804501 -4.4218392039804097 17.640470220744 1.00000000000001 -20.796408265052499 -4.4782246024768302 17.7500854266776 1 -20.7664070903108 -4.53279159090199 17.864243474727399 1 -20.712317701971401 -4.6299726944675301 18.084795871573899 1 -20.688069083151099 -4.6730597151734896 18.189472209277099 0.99999999999994704 -20.664367721910502 -4.7147349469268596 18.298469699352701 1.0000000000001901 -20.641306854426901 -4.7548823652195704 18.412383125234001 0.99999999999971501 -20.6190198605386 -4.7933194144083 18.531871016309299 1.00000000000022 -20.597701056266999 -4.8297666431967796 18.657777852050899 0.99999999999992795 -20.577603744514999 -4.86385441861374 18.791121991695199 1 -20.545346039104299 -4.9181996438280704 19.040083715952399 1 -20.532572013274901 -4.9395924994350597 19.150801083830199 1.0000000000000899 -20.520811628459001 -4.9591830998784197 19.2675365201994 0.99999999999970901 -20.510288367442499 -4.9766245188465801 19.391466999235099 1.0000000000004099 -20.5014155471202 -4.9912606080547901 19.523163636900001 0.99999999999971201 -20.494746434423099 -5.0022236929642503 19.662494646471099 1.0000000000000899 -20.490871602133399 -5.0085801110263901 19.808435926941499 1 -20.489326529642302 -5.0110867944524902 20.109930464984899 1 -20.4917584794986 -5.0070690080594904 20.257542159028699 1.00000000000004 -20.497147205242001 -4.9982098138455804 20.3985289637167 0.99999999999983802 -20.504823390471898 -4.9855413303693101 20.5310711206142 1.00000000000026 -20.514280771659699 -4.9698944309876998 20.6563453903509 0.99999999999978195 -20.525038080557898 -4.9520079550909903 20.773755095337801 1.0000000000000799 -20.536880524487 -4.9322291554419904 20.885209840365601 1 -20.5672620134719 -4.8812135631846303 21.1371566060958 1 -20.586496203926199 -4.8487220931053896 21.272458961911301 1.0000000000001199 -20.607050623470801 -4.8137479407929398 21.400065588796799 0.99999999999960998 -20.628650948465701 -4.7766949038067299 21.521035810918701 1.00000000000056 -20.651086012156298 -4.7378700861126299 21.636252582375398 0.99999999999959299 -20.6742114360591 -4.6974744021341301 21.746400699935698 1.0000000000001299 -20.697925655757999 -4.6556382458589498 21.852101102253201 1 -20.7506506890293 -4.5616412238471602 22.0735101788033 1 -20.7798309120402 -4.5089801374061604 22.187655359331501 1.00000000000004 -20.809533148834699 -4.4548613047947603 22.296633561749701 0.999999999999866 -20.839759527650099 -4.3987124972368798 22.402279668859599 1.0000000000001901 -20.870297851229498 -4.3414477799772104 22.503272051972399 0.999999999999865 -20.901114336946598 -4.2829559828225996 22.600724036146001 1.00000000000004 -20.932292465358099 -4.2223408071515696 22.6960421662546 1 -21.007804053923198 -4.0727633505966301 22.9186414234869 1 -21.052384838785098 -3.9820755732416599 23.043555790807201 1.00000000000001 -21.097343809410301 -3.8879886635263898 23.1639996720128 0.99999999999999001 -21.142576169608599 -3.7904367039069098 23.280342198724799 0.999999999999999 -21.187983574797499 -3.6893251994581502 23.392846015268699 1.00000000000001 -21.2334709586213 -3.58452726922323 23.5017046437363 0.999999999999995 -21.27894446533 -3.4758717334023901 23.607053689863399 1 -21.3649617790843 -3.2620733504625901 23.800338752520201 1 -21.4055316033159 -3.1577046096145902 23.888972179319701 1.00000000000003 -21.445891633203999 -3.0500904892534999 23.974739416920499 0.99999999999993305 -21.4860733473426 -2.9386166402931799 24.058111488415701 1.0000000000000699 -21.525904540509899 -2.8230167053063302 24.138753530565499 0.99999999999996403 -21.5651392181496 -2.70460227436272 24.216027537224601 1.00000000000001 -21.604018671646699 -2.5803130892645898 24.2913467425603 1 -21.672781199461401 -2.3466843307026899 24.421992556156798 1 -21.7028858695103 -2.2393738409360702 24.478305079016899 1.00000000000006 -21.732532982381699 -2.1279595124297401 24.532961710343301 0.99999999999982503 -21.761645005253801 -2.0119015994952298 24.585909979293699 1.00000000000024 -21.790112609962101 -1.89058945064513 24.637040902274201 0.99999999999982703 -21.817780951633999 -1.7632335072610501 24.6861702362907 1.00000000000005 -21.844450618352401 -1.62886277718015 24.733043407889401 1 -21.8882011332425 -1.3821444094228901 24.809261090420399 1 -21.905855891870999 -1.27385622036103 24.839833893784899 0.99999999999998501 -21.922564040144898 -1.16316927953078 24.868382212122899 1.00000000000006 -21.9387577572571 -1.0392813330849799 24.896455535274601 0.99999999999990397 -21.9531244469818 -0.91910472436035895 24.9204055645734 1.0000000000000799 -21.966551191263701 -0.78351425428635302 24.943386567130801 0.99999999999997002 -21.9778797347509 -0.63970758461183597 24.962632677178899 1 -21.993296477539499 -0.365194564925167 24.9888116242211 1 -21.9986309075469 -0.23570953967348801 24.9978525269727 1.0000000000000999 -22.0018269855189 -0.100113459458923 25.0032295899797 0.99999999999969302 -22.0024309025215 0.037914883296553098 25.004150861182101 1.0000000000004201 -22.0003777252677 0.174909014114285 25.0004837106402 0.99999999999971101 -21.995942091484899 0.30778138324785698 24.992695542775099 1.0000000000000899 -21.989626389384501 0.43388206721902001 24.981651766420701 1 -21.973569446754201 0.68216603195726899 24.953618536389701 1 -21.963277185459901 0.80557127869237799 24.935670615936498 1.0000000000000799 -21.951612431923699 0.92180519677449901 24.915353507269799 0.99999999999978095 -21.9387504075743 1.03240921679512 24.892864812272901 1.00000000000027 -21.925267547678601 1.1349644592015899 24.869503724804801 0.99999999999983702 -21.910831129060401 1.23520358157501 24.844212548087299 1.00000000000004 -21.895861772697899 1.33017430612304 24.8179935758425 1 -21.8587703574998 1.5484889597022999 24.752748436339299 1 -21.836200792932601 1.66798916236763 24.712858744987901 1.00000000000002 -21.812823434049601 1.7814834967145099 24.671293257035099 0.99999999999992095 -21.788789717481301 1.88977769283257 24.628255776313601 1.0000000000001199 -21.764216337002001 1.99352685213865 24.583890875891001 0.99999999999989997 -21.7391874982033 2.0932558094649401 24.538287117126099 1.00000000000004 -21.713763542186701 2.1894252261736802 24.491490176665401 1 -21.657692873292401 2.3917245061840302 24.387122103076901 1 -21.626933994616099 2.4965539979114899 24.329166961254401 1.00000000000006 -21.595731070963801 2.5978918970635299 24.269360206311902 0.99999999999978095 -21.5643799112175 2.6946486459590302 24.208996281865002 1.00000000000033 -21.532364562334699 2.79103773341309 24.144929194256299 0.99999999999975697 -21.5006324873717 2.8810241820387299 24.082085020054599 1.0000000000000799 -21.468299636473599 2.9713997507968499 24.015438689560099 1 -21.4007983589327 3.1543898855155099 23.873118740483399 1 -21.365553930887401 3.2470632042629801 23.796869158635999 0.99999999999997802 -21.330089899704799 3.3376446815226801 23.7180836954829 1.00000000000003 -21.2944714423395 3.4261270532756498 23.636764792582799 1 -21.258760812757899 3.5124989761688798 23.552903861079599 0.99999999999996503 -21.223018139035201 3.5967453049869702 23.466479680618701 1.00000000000002 -21.187302409968101 3.6788468103191398 23.377455314142999 1 -21.118887201069001 3.8323314562558899 23.2014084349677 1 -21.086177578562499 3.9040402548850901 23.114801332267 1.00000000000001 -21.0535889206473 3.9738898965787501 23.025903987539099 0.99999999999998102 -21.0211695088285 4.0418537006677102 22.934662266749399 1 -20.988971358012702 4.1078960129135096 22.841010971413699 1.00000000000002 -20.957050888493399 4.1719731587886999 22.744871137129401 0.99999999999998801 -20.9254698357582 4.2340342784431 22.6461417503881 1 -20.866524299652099 4.3474659195725103 22.4542856508623 1 -20.8390850849479 4.3992525365944699 22.361745245299101 0.999999999999996 -20.812007271667099 4.4493616093737902 22.266899824114301 1.00000000000001 -20.785407841852301 4.4975617078784103 22.170044075817898 0.99999999999997802 -20.7592153062762 4.5444143467577103 22.069815275234301 1.00000000000002 -20.733583194583499 4.5894810857124897 21.9665803504551 0.999999999999995 -20.708545514990401 4.6329960917154303 21.859276343745499 1 -20.665499599382599 4.7070291369156196 21.660763793515901 1 -20.6472105746378 4.7382190699955 21.5715705570056 0.99999999999992895 -20.629405036918701 4.7683726114838603 21.479117435533698 1.00000000000022 -20.612149434808501 4.7974348509046099 21.382896936546398 0.99999999999970002 -20.595537645794401 4.82530570768869 21.2823289052637 1.0000000000002101 -20.579702284248999 4.8518196245881002 21.176694513521699 0.99999999999993805 -20.564818693162401 4.87673790926259 21.065106913460902 1 -20.5402089874779 4.9180062606023096 20.850976876378802 1 -20.5301059965024 4.9349739260057097 20.751574137026399 0.99999999999992295 -20.520889845315399 4.9505000363981102 20.646719050204901 1.00000000000024 -20.512744095813702 4.9642909838249798 20.535433807213099 0.99999999999968003 -20.505972669016199 4.9758396623512997 20.417091126978502 1.00000000000022 -20.500969194905199 4.9844679603392601 20.291484077396799 0.99999999999993705 -20.4981625949369 4.9893695802473301 20.1590159477703 1 -20.497508793867599 4.9905135327680501 19.889739365099 1 -20.499421053026001 4.98724926458 19.782955714608899 0.99999999999992595 -20.503401710950701 4.9809334371240501 19.6288443700127 1.00000000000024 -20.509401926663401 4.9707743991685396 19.548695353151899 0.99999999999967104 -20.5166691114466 4.9589538957794996 19.4119196389689 1.00000000000023 -20.525179857925298 4.9447343063819398 19.318103645989702 0.99999999999992994 -20.5345501900123 4.9291265910958701 19.216009953433801 1 -20.558877799027901 4.88836806020187 18.988175438074201 1 -20.5744388040731 4.8621598912871002 18.864776925168101 1.0000000000001099 -20.5911790845661 4.8337872367382504 18.747944624049801 0.99999999999964595 -20.608865050754702 4.8036002201633297 18.636831468037901 1.0000000000004901 -20.627317530502498 4.7718653064835896 18.530736100346999 0.99999999999966405 -20.6464102023516 4.7387652475328403 18.4290848802966 1.0000000000000999 -20.666053502626301 4.704423022666 18.331358000411601 1 -20.7171240919307 4.6143445286153497 18.0922842797176 1 -20.749176545334901 4.5570619122803899 17.9558051045707 0.99999999999996603 -20.7820575300358 4.4976532150358297 17.826604445822401 1.0000000000001099 -20.8156726396899 4.4355792012103104 17.702402105445699 0.99999999999983902 -20.849739047191001 4.3722441770406997 17.584821018166199 1.0000000000001199 -20.884288284226098 4.3066173880499798 17.471082215094199 0.99999999999996403 -20.919202427569701 4.2390043539014899 17.361429880207901 1 -20.995407075621898 4.0884089131558401 17.1321086126441 1 -21.036785691046301 4.0047506211082498 17.013776147584199 0.999999999999995 -21.078471469002899 3.9183913674998001 16.8998175179707 1.00000000000001 -21.120378508537499 3.8292865569257901 16.789823445747199 0.999999999999998 -21.162429513519498 3.7373593816125901 16.6834805684298 0.99999999999998801 -21.204553091764499 3.6424986194771898 16.5805383557203 1.00000000000001 -21.246682282897499 3.54454924319902 16.480797895829902 1 -21.3254000923848 3.3550885093507099 16.299857329640801 1 -21.361988523630998 3.26446732245754 16.217986598188499 1.00000000000003 -21.398557033900701 3.1706703324444199 16.137977789769302 0.99999999999992495 -21.4347689964209 3.0756142576929899 16.061119118300802 1.0000000000000999 -21.471143875639601 2.9749890035585702 15.984647099118 0.99999999999993405 -21.506884844251001 2.8738269304348498 15.912056308565999 1.00000000000002 -21.542517707680201 2.7677093463566802 15.8405078571163 1 -21.609552361955501 2.55790051219001 15.7081830336501 1 -21.6410213355508 2.4549785914075999 15.647001851721599 0.99999999999983702 -21.672156360989 2.3481647489378799 15.5873402464997 1.00000000000053 -21.702885992519001 2.2370650638131 15.5292659208712 0.99999999999926203 -21.733115293573899 2.1212353461036599 15.472890848091099 1.00000000000052 -21.762718939080202 2.00013030002718 15.4183784682259 0.99999999999983702 -21.7915383133119 1.8730815367321401 15.3659443887303 1 -21.839274444442601 1.64306354340644 15.2800550647832 1 -21.858655797754999 1.543590044563 15.245481258277501 0.99999999999991995 -21.877444884678098 1.4403223988376499 15.2122397790555 1.00000000000028 -21.8955317309096 1.33211494007793 15.1804744822538 0.99999999999959099 -21.912752898335501 1.2203929014574499 15.1505101183077 1.00000000000031 -21.9290140361482 1.10103296615837 15.1222929822822 0.99999999999989897 -21.943886453527 0.97810530532210505 15.0967759274449 1 -21.966561497986898 0.75394505437051296 15.0578211032773 1 -21.975086562405501 0.65804079153930894 15.0431834255418 0.99999999999987199 -21.982734032460499 0.55759942910276805 15.0300502744341 1.0000000000004099 -21.9893218169384 0.45221717556748398 15.0187235449615 0.99999999999943601 -21.9945962145603 0.34190836176316802 15.009627149777801 1.0000000000003999 -21.998266479034601 0.227189691426463 15.003248922897001 0.99999999999987699 -22.000089725439398 0.109223156164319 15 1 -21.999997832879298 -0.0099999999999997903 15 1 + 0 9 0.020451729175787799 7 0.049551654993566598 7 0.082736039907863101 7 0.12136931361011299 7 0.15899622479377501 7 0.194196793783219 7 0.223874120262156 7 0.246027867209892 7 0.268403962672838 7 0.29867604159600197 7 0.33423817758737101 7 0.384122190106365 7 0.42882802026695599 7 0.46449856729266198 7 0.49034851210107999 7 0.51026955206567604 7 0.53258899886508504 7 0.56349573686483001 7 0.59980604534557402 7 0.63880670867184197 7 0.67469353488106998 7 0.70666552597802601 7 0.73129729106955099 7 0.75102879689399205 7 0.76986187455783395 7 0.795489602605709 7 0.83484838012461104 7 0.88061571790158299 7 0.92048473951999299 7 0.95636710916293499 7 0.98206683298474395 7 1 9 +1 -80 -0.10000000000000001 -3.0001724143056299 -1 0 0 +1 -80 -0.10000000000000001 -57.5 0 0 -1 +1 -96.011250195373606 -0.10000000000000001 23 0 0 -1 +7 0 0 7 20 4 -80 -0.10000000004192 -5.0001851858204196 -80.000000014771004 -0.10000000004192 -5.1478963732943797 -80.012727557075905 -0.099999999893331706 -5.2948867223912401 -80.037958082521698 -0.100000000027494 -5.4403777605788699 -80.075578484124605 -0.10000000006947 -5.5835760727864896 -80.125534720946803 -0.099999999951314394 -5.7236727913602401 -80.187853351391894 -0.099999999999996703 -5.8598236466423002 -80.3322591163341 -0.099999999999996703 -6.1129957746441903 -80.412542931758793 -0.100000000000013 -6.2305670635891097 -80.503767318029404 -0.099999999999989306 -6.3431979317493301 -80.606169178626203 -0.099999999999989903 -6.4499542938804399 -80.719939173281503 -0.10000000000001399 -6.5496446645499802 -80.845178566156903 -0.099999999999996605 -6.6408142344750303 -81.104272624139895 -0.099999999999996605 -6.7940432321294004 -81.235921521357 -0.10000000007704 -6.8582059644761202 -81.3766219513262 -0.099999999753478494 -6.9127020048479997 -81.525537622140604 -0.10000000034173 -6.9556939823669897 -81.681036153327994 -0.099999999770390396 -6.98535709766937 -81.840487145415807 -0.10000000004119 -7.0001999848487602 -82 -0.10000000004119 -7.0002000008001701 + 0 8 0.36243057694228398 6 0.69891205666346401 6 1 8 +1 -70 -0.10000000000000001 -7.0002000008000103 -1 0 0 +7 0 0 7 20 4 -92.000595950157404 -0.10000000000107 -7.0002000003223701 -92.220525183664293 -0.10000000000107 -7.0002000314305404 -92.440496364964105 -0.099999999997228306 -7.0190080742011203 -92.657598138982195 -0.100000000000748 -7.0566350472908201 -92.869303855120805 -0.10000000000181999 -7.1123466624448204 -93.073552559349494 -0.099999999998707303 -7.1849755459157301 -93.268751492043194 -0.099999999999996703 -7.2731637207645203 -93.661811628214807 -0.099999999999996703 -7.4907282005974496 -93.856900198318002 -0.10000000000001 -7.6238549363421999 -94.037607759591907 -0.099999999999982797 -7.7731354554996903 -94.203041757336905 -0.100000000000021 -7.9369137724454504 -94.352580195788804 -0.0999999999999929 -8.1138942703603707 -94.485754261434494 -0.10000000000000001 -8.3032257110574506 -94.707679914504894 -0.10000000000000001 -8.6891150161086408 -94.798968833959606 -0.10000000000001499 -8.8830507714045499 -94.875654066701401 -0.099999999999945702 -9.0874783032121798 -94.936307277281898 -0.100000000000073 -9.3026340749682195 -94.979047560834005 -0.099999999999948297 -9.5279262998001499 -95.001210111950499 -0.100000000000009 -9.7619381411831405 -95.001210145752793 -0.100000000000009 -10.0006304078999 + 0 8 0.31721406143543601 6 0.67415596823477897 6 1 8 +1 -80 -0.10000000000000001 -60.999827585694398 -1 0 0 +1 -130 -0.10000000000000001 -57.5 0 0 -1 +7 0 0 7 20 4 -80 -0.100000000023328 -58.9998148141797 -80.000000014771004 -0.100000000023328 -58.852103626379197 -80.012727556675401 -0.099999999940636297 -58.705113283565098 -80.037958082283296 -0.100000000015301 -58.559622239204103 -80.075578483978205 -0.100000000038662 -58.416423924889102 -80.125534720655594 -0.099999999972905901 -58.276327211269503 -80.187853351260202 -0.10000000000000001 -58.140176353588501 -80.332259116333603 -0.10000000000000001 -57.887004225356598 -80.412542931757898 -0.10000000000000001 -57.7694329364124 -80.503767318027201 -0.10000000000000001 -57.6568020682531 -80.606169178623801 -0.10000000000000001 -57.5500457061218 -80.719939173279897 -0.10000000000000001 -57.450355335451199 -80.845178566155397 -0.10000000000000001 -57.359185765525801 -81.104272625571994 -0.099999999999999895 -57.2059567670237 -81.235921514181001 -0.100000000043239 -57.141794038722502 -81.376621963696095 -0.099999999861613398 -57.087297991146102 -81.525537609340205 -0.10000000019184301 -57.044306019748397 -81.681036164010195 -0.099999999871098894 -57.0146429018749 -81.840487139968204 -0.10000000002312399 -56.999800015151301 -82 -0.10000000002312399 -56.999799999199901 + 0 8 0.36243057607400703 6 0.69891205439529702 6 1 8 +1 -70 -0.10000000000000001 -56.9997999992 -1 0 0 +1 -104.00874980462601 -0.10000000000000001 23 0 0 -1 +7 0 0 7 20 4 -92.000596376874299 -0.10000000000001499 -56.999799999627299 -92.220470240521905 -0.10000000000001499 -56.999799968545801 -92.440448234896394 -0.0999999999999618 -56.981001403455402 -92.657595257792096 -0.10000000000001 -56.943374136203502 -92.869355833062798 -0.100000000000025 -56.887646122304503 -93.073639388231399 -0.099999999999982103 -56.8149926182613 -93.268826935469093 -0.10000000000000001 -56.726794385456401 -93.662246970719806 -0.10000000000000001 -56.509030669722499 -93.857633089178805 -0.10000000000000001 -56.375633634943902 -94.038463124123197 -0.099999999999999895 -56.2261174306595 -94.203846240787001 -0.10000000000000001 -56.062210904876601 -94.353190648002396 -0.10000000000000001 -55.885275450293697 -94.486073711815806 -0.10000000000000001 -55.696216724474503 -94.707889470214894 -0.10000000000000001 -55.310518152058897 -94.799219351160602 -0.099999999999538999 -55.116370784057203 -94.875831537093603 -0.100000000001465 -54.911919351366201 -94.936372706828806 -0.099999999997986394 -54.696916760075098 -94.979033996031106 -0.100000000001338 -54.471898126702001 -95.001210111411794 -0.099999999999764499 -54.238128461812501 -95.001210145251804 -0.099999999999764499 -53.999362299503296 + 0 8 0.31617979157878001 6 0.67285103423515502 6 1 8 +1 -95.001210146445402 -0.10000000000000001 -5 0 0 -1 +1 -133 -0.10000000000000001 -42 1 0 0 +7 0 0 7 20 4 -107.999403028168 -0.099999999999963604 -7.0002000009010903 -107.779488506543 -0.099999999999963604 -7.0002000319991904 -107.559576959913 -0.100000000000097 -7.0190056422721696 -107.342548607746 -0.099999999999969405 -7.0566138093520498 -107.13089708207301 -0.099999999999934197 -7.1122925794473701 -106.92665431752199 -0.10000000000004799 -7.1848921116196101 -106.73139244205299 -0.099999999999997799 -7.2730848447206604 -106.33861993212101 -0.099999999999997799 -7.4904902700610902 -106.14379362106401 -0.100000000000009 -7.6233684992424298 -105.963165316193 -0.099999999999995606 -7.7724535844783302 -105.79764841718 -0.099999999999990694 -7.9361541148542596 -105.647911368785 -0.100000000000008 -8.1132178235965906 -105.514486047953 -0.0999999999999968 -8.3028126642731106 -105.292298688366 -0.0999999999999968 -8.6891573612247495 -105.20091979075301 -0.100000000000027 -8.8832646774499597 -105.124177109066 -0.099999999999967601 -9.0879127057216404 -105.063526739862 -0.100000000000008 -9.3032505646780503 -105.020861819443 -0.100000000000003 -9.5286073342533903 -104.99878988782299 -0.099999999999999006 -9.7624347907726605 -104.99878985411 -0.099999999999999006 -10.0006404808135 + 0 8 0.31801594493853902 6 0.67485047079525096 6 1 8 +1 -96.011250195373606 -0.10000000000000001 23 0 0 -1 +1 -133.005 -0.10000000000000001 -57 1 0 0 +7 0 0 6 17 4 -119 -0.10000000004119 -7.0002000008001701 -119.088402133293 -0.10000000004119 -7.0002000096404497 -119.176845275494 -0.099999999833099901 -7.00957922173854 -119.262696706 -0.100000000175924 -7.0283452591242304 -119.344182677058 -0.099999999929667405 -7.05534416689229 -119.420266038826 -0.099999999999996994 -7.08923239630513 -119.571601777993 -0.099999999999996994 -7.1744036590969502 -119.644934966042 -0.099999999999999395 -7.2276146184374603 -119.710095338249 -0.100000000000004 -7.2866691065578904 -119.76711844988201 -0.100000000000004 -7.3501299872122301 -119.81625643156001 -0.099999999999998299 -7.4168866446008099 -119.906159751991 -0.099999999999998299 -7.5669298487838903 -119.94417002978901 -0.099999999934538897 -7.6510339630503097 -119.972282021775 -0.100000000166468 -7.7373101153610504 -119.990796002427 -0.099999999839269604 -7.82477993064711 -119.99999999124201 -0.100000000040779 -7.9126299826184896 -120 -0.100000000040779 -8.0002083342377404 + 0 7 0.28555594372548598 5 0.61569544728126102 5 1 7 +1 -104.00874980462601 -0.10000000000000001 23 0 0 -1 +1 -120 -0.10000000000000001 -57.5 0 0 -1 +7 0 0 6 17 4 -119 -0.10000000002312399 -56.999799999199901 -119.088402286969 -0.10000000002312399 -56.999799990359598 -119.17684559786601 -0.099999999906301207 -56.990420744297801 -119.262697156893 -0.100000000098766 -56.971654642192597 -119.34418326143501 -0.099999999960511704 -56.944655639046999 -119.42026671303699 -0.10000000000000001 -56.910767303759897 -119.571602487211 -0.10000000000000001 -56.825595849833803 -119.64493562771101 -0.10000000000000001 -56.772384828783402 -119.710095948361 -0.10000000000000001 -56.713330286043302 -119.767119005948 -0.10000000000000001 -56.649869356888402 -119.816256931621 -0.10000000000000001 -56.5831126561161 -119.906160041729 -0.10000000000000001 -56.433069510177098 -119.944170200562 -0.099999999963060707 -56.3489655149233 -119.97228210655901 -0.100000000093937 -56.262689477560201 -119.9907960299 -0.099999999909299503 -56.175219810591102 -119.99999999124201 -0.10000000002301 -56.087369882993301 -120 -0.10000000002301 -55.999791665762302 + 0 7 0.28555645806668101 5 0.61569603631612901 5 1 7 +1 -104.998789853555 -0.10000000000000001 -5 0 0 -1 +7 0 0 7 20 4 -107.9987726494 -0.100000000000001 -56.999800022742001 -107.778659809256 -0.100000000000001 -56.999799996000199 -107.55849915746001 -0.099999999999999395 -56.980957207384002 -107.34127361370101 -0.099999999999999103 -56.943257754154999 -107.129562638469 -0.10000000000000001 -56.887469761936401 -106.92545032680999 -0.100000000000001 -56.814810773885696 -106.730522908379 -0.099999999999999506 -56.726689054558399 -106.337470502001 -0.099999999999999506 -56.5091084161214 -106.142245270464 -0.100000000000005 -56.375795283451602 -105.96159025986 -0.099999999999990694 -56.226419885904399 -105.79632276770801 -0.100000000000008 -56.062665513114602 -105.64698730213 -0.099999999999994205 -55.885812625808498 -105.514005624105 -0.100000000000001 -55.696670306166702 -105.29219781894 -0.100000000000001 -55.310900078521897 -105.200866193632 -0.099999999999997105 -55.116807961505302 -105.124190203482 -0.100000000000001 -54.912249752767202 -105.0635780691 -0.100000000000002 -54.697032300314703 -105.020907085993 -0.099999999999997896 -54.471751511976599 -104.99878836346601 -0.100000000000001 -54.237883326047502 -104.998788287694 -0.100000000000001 -53.999375233929896 + 0 8 0.31619457555234898 6 0.67336450922297297 6 1 8 +7 0 0 8 37 6 -28.7228132326901 4 20.010000000000002 -28.7228132326901 4 19.8025570552192 -28.724525623854699 3.9877035375692498 19.608922447916701 -28.727550153678902 3.9659873289249701 19.4323868348371 -28.731377902160698 3.93827764418422 19.2722918080098 -28.735694396624201 3.9066968396944302 19.127256115928699 -28.740289338720299 3.8727214744841798 18.994822209773599 -28.745124178336699 3.83658699082957 18.871507354436702 -28.757674857084599 3.7415648039420799 18.584438377620401 -28.765486717871202 3.6814662620693999 18.431518432738699 -28.773588426165301 3.6179649811540702 18.289492865935799 -28.781901328678199 3.55145632752911 18.156468398694599 -28.790368237069401 3.4821900720865901 18.0310449905651 -28.798946746085399 3.4103057866828701 17.9119971316583 -28.807615144363599 3.3357711214950401 17.798576063752201 -28.832368678100799 3.1168596384710998 17.491119468275201 -28.8485669810186 2.96647726936791 17.309270858550502 -28.864866482574499 2.8066203391051898 17.139715221445002 -28.881185810061599 2.6358360450585199 16.980774776255 -28.8974410662052 2.4531089351364201 16.831063885066701 -28.913501739025499 2.2550184879211099 16.690256016134601 -28.9292425416631 2.0393221386275302 16.5580594567014 -28.9502630907783 1.7003674253574801 16.387851688476399 -28.956031783528001 1.6016387265649199 16.341853030270101 -28.9616884409518 1.49807693475007 16.297390958519198 -28.967213162788401 1.3889824952018399 16.2545520659719 -28.972565794917401 1.2733355591523601 16.2135723204327 -28.977691026895599 1.1499844076888599 16.1747910142814 -28.982511843970901 1.0174144809491299 16.138691737614799 -28.9895777687147 0.78256500906958204 16.086224703206 -28.992063942813299 0.68940607544587196 16.067879285361101 -28.9943529455137 0.59082884686468295 16.051078724874198 -28.9963989837944 0.48552610502414101 16.0361388516096 -28.998112023784 0.37288462709787401 16.023686758483301 -28.9993591969147 0.2530795908606 16.014646246026601 -29.000000023904501 0.127506899061511 16.0099997385596 -29 0 16.010000000000002 + 0 9 0.15011495303757999 7 0.36383874622435602 7 0.75502119456363104 7 0.90659934075579696 7 1 9 +7 0 0 8 135 20 -29 0 16.010000000000002 -29.0000000234669 -0.12247142476504801 16.009999741551901 -28.999408810765601 -0.243334236110265 16.014286513567299 -28.998253977553802 -0.35900206195598899 16.022657742297401 -28.996658547641601 -0.46809484335532497 16.034252241492599 -28.994742796651298 -0.57036092823031503 16.0482329880337 -28.992591137623201 -0.66629564416078002 16.064011768627001 -28.990248004228299 -0.75706097548988005 16.0812816085907 -28.985191759141301 -0.93065424983636602 16.118768489146898 -28.982512018301101 -1.01256424727119 16.138735785450098 -28.979700271510801 -1.0907017395101899 16.159806312666099 -28.976780452617401 -1.1655268071534 16.1818233480017 -28.9737704932699 -1.23739183877981 16.204671546847901 -28.970684134226101 -1.3065999090895699 16.228264531619399 -28.967531677228902 -1.3734285306140599 16.2525404384571 -28.9568489531487 -1.5885796399312599 16.3354379249981 -28.949071958501101 -1.72719172370098 16.396799152093202 -28.941080225105299 -1.8569897087898299 16.46104639855 -28.932928649076199 -1.9794160099909901 16.527931029458099 -28.924657905750198 -2.0955220868369602 16.597307203667 -28.916298593249898 -2.2061878648928501 16.669110984079399 -28.907869599390001 -2.3120261145350298 16.7433863381934 -28.889819931780799 -2.5281422644351998 16.906918476654798 -28.880192403360901 -2.6371677523589399 16.996804405624999 -28.870524013164701 -2.7414618549811398 17.090063890986698 -28.860836002757701 -2.8415287279177099 17.186907071850801 -28.851148539574702 -2.9377261509929098 17.287608139415902 -28.8414818395594 -3.0303251186462798 17.392528892250301 -28.831857316123099 -3.11953279278457 17.502180362793801 -28.815417039077499 -3.2673562216611498 17.700218593362301 -28.8085721666206 -3.3275206236793502 17.7859369091017 -28.801771917765201 -3.3860338706019002 17.874756897624898 -28.795027631207599 -3.4429149503009699 17.967035628750999 -28.7883538040902 -3.4981494671766602 18.063181007028099 -28.7817688478215 -3.5516894331662199 18.163692167179899 -28.775297000252198 -3.60344337463816 18.269267064763898 -28.7652043333314 -3.68292190593833 18.447503491795501 -28.761491213186801 -3.7118826084809902 18.516176744772402 -28.7578380391728 -3.7401144781614799 18.5872291998846 -28.754254232900799 -3.7675672190466498 18.660936848871199 -28.750752267245499 -3.7941686446095502 18.737606031889101 -28.747348337476598 -3.8198210383586901 18.8175985482101 -28.7440640684705 -3.8443898543948198 18.901395342021999 -28.738401292201601 -3.8864698786656202 19.0609127768356 -28.735976310040702 -3.9043845478122501 19.134887312068699 -28.733664703536402 -3.9213667819404301 19.212125805674599 -28.731486705295001 -3.9372849837398798 19.293085342799198 -28.7294733619275 -3.9519314087859398 19.3781930654539 -28.7276675074656 -3.9650156323407701 19.4678625808784 -28.726124736776001 -3.9761580161546202 19.562510369901901 -28.7240116767573 -3.99139024660884 19.737204588122999 -28.7232857780721 -3.9966106413840001 19.815549516337502 -28.722786538123302 -4.0001929046959201 19.896642078176601 -28.7225528570313 -4.0018675987604997 19.979402105258298 -28.7226043129365 -4.0014994471385403 20.062632628295599 -28.722936145136899 -3.9991203089027501 20.145026303339399 -28.723517587261401 -3.9949429827390901 20.225179798558901 -28.725935865204999 -3.97753072332879 20.463370642621499 -28.7284709752198 -3.95923691634284 20.6106325114024 -28.731604930258701 -3.9365106311799001 20.746214960192599 -28.735158766526201 -3.91054744004076 20.871603780509101 -28.739006577499801 -3.8821915711489501 20.9881698834504 -28.743065787109199 -3.8519997375610799 21.097335954293499 -28.747303301340299 -3.8201698268446602 21.200432841167501 -28.756754978123599 -3.7484036009154398 21.411259947678602 -28.7619821756684 -3.70826498271501 21.516715370019998 -28.767357442037301 -3.6664753734427098 21.616662208210801 -28.772849336817099 -3.6232066565882599 21.711920486004299 -28.778435118532698 -3.5785714093848999 21.803061718182601 -28.784097575000999 -3.53264268356275 21.8905574609241 -28.789823909601399 -3.48545830721529 21.974830301710401 -28.806466871702501 -3.3460219784229399 22.2090391698848 -28.817513207060799 -3.2506829071916501 22.3515137872872 -28.8286841166431 -3.1510437315462099 22.485843121979698 -28.839935356988001 -3.0469949874280702 22.613208606600701 -28.8512295241656 -2.93829796411468 22.7344517655856 -28.862533705579899 -2.8245828569452698 22.850238110659699 -28.873819154212601 -2.70527817426535 22.961030262105702 -28.896290659278399 -2.4536376167828098 23.173345246821601 -28.907438833184699 -2.3217209607125602 23.2745116595136 -28.918501872432198 -2.1825621780659801 23.371395255448899 -28.929446050077601 -2.03464036113655 23.4641846564489 -28.940229054583501 -1.8767881923035099 23.552929621061899 -28.9507403008067 -1.7060665182024399 23.637145883108101 -28.960870985823 -1.52048303015094 23.716377502886399 -28.9742321108181 -1.2252583312076599 23.8188054584021 -28.977994937384299 -1.1356843608244001 23.847387815963302 -28.981624778354501 -1.04160987231635 23.874724617042698 -28.985097417969701 -0.94228604878186195 23.9006670124867 -28.988366764117799 -0.83685220463394405 23.924907904893701 -28.991367243844898 -0.72439509326061602 23.9470074602329 -28.994007958634199 -0.603815720594292 23.9663537933864 -28.997274303772901 -0.40362468621262698 23.990198906427601 -28.998260101820399 -0.33153227242099298 23.9973765519902 -28.999078592437101 -0.25651798585829899 24.003321591838201 -28.999696795784899 -0.17866687104887899 24.0078037647793 -29.000077663939798 -0.098489084747884106 24.010562539771001 -29.0001924201649 -0.016976117759896901 24.011394205829401 -29.0000360570445 0.064335183950912506 24.010262481581002 -28.9987641490446 0.32179916114623303 24.0010344794172 -28.996695828796799 0.486075129611999 23.986021480285 -28.993791184989199 0.63678204801869198 23.9648666887955 -28.990324975450701 0.77505873526798796 23.939451566397 -28.986492293010201 0.90238515061157398 23.9111047497464 -28.9824084443215 1.02051573478193 23.880620398494599 -28.9781129780878 1.1314804270432599 23.848256135362298 -28.966860941290101 1.3948920968932501 23.762546557456702 -28.959753868043599 1.5384256120907001 23.707637508949102 -28.952381622863701 1.67214421176012 23.649737448013401 -28.944813051680502 1.7977114444817099 23.589213677401201 -28.937098224146201 1.9163533276123299 23.526305583164799 -28.929274076932199 2.0291268778584799 23.4611559512681 -28.921360509170199 2.13672635083871 23.393768803878299 -28.8978674543681 2.4399872014157999 23.188803866008602 -28.882128589271801 2.6226021263831498 23.045260037759199 -28.866258412826301 2.7925745121568699 22.893032376763699 -28.850338994531501 2.9516874115127498 22.731107246513499 -28.834454005189802 3.1014438929384802 22.558540822991699 -28.818706592540199 3.2424190845055501 22.3729073222046 -28.803201685829301 3.3750823325267398 22.1720209311794 -28.7822509902342 3.5474496649477198 21.8608315466055 -28.776448312472599 3.59441568392934 21.770148579575601 -28.770727137137801 3.64001216151875 21.6756376520642 -28.765104823087 3.6841712833668399 21.576704445095402 -28.759605623669401 3.7267722595194601 21.4727087799969 -28.754262527239 3.7676337973864098 21.362888245418802 -28.749123737679401 3.80647209252052 21.2460842840132 -28.740096746387799 3.8739937541218001 21.012400322162399 -28.736223066811899 3.9026750183611298 20.9000955783733 -28.732577301292999 3.92943781770835 20.7801942765518 -28.7292169038456 3.95390170461254 20.649888658981901 -28.726280444099402 3.9751060171311501 20.5075344982343 -28.724028740308 3.9912707660028302 20.352294908146099 -28.722812897887799 4.0000026047861503 20.184674565590999 -28.7228132326902 4 20.010000000000002 + 0 9 0.029843027886451101 7 0.0593759307342498 7 0.128065561568356 7 0.20546995861752801 7 0.26119721485254199 7 0.29438420215910099 7 0.321148352645382 7 0.34111072035250001 7 0.38335509115817801 7 0.43148545948003197 7 0.52187718826764495 7 0.61223739746654005 7 0.64930319235210798 7 0.66899793938283503 7 0.71352519979502105 7 0.77946905512364695 7 0.90738371807450302 7 0.95724747794979004 7 1 9 +7 1 0 8 226 33 -24.999996549879501 -0.0131341543728976 12.0000004029117 1 -24.999866719651202 -0.260257430651823 12.000042392082401 1 -24.996947370226199 -0.503131284255393 12.006788002633 0.99999999999997102 -24.9914084387852 -0.73771268347097996 12.0198332392249 1.0000000000000999 -24.983669598212199 -0.96204956217815896 12.0382020761545 0.99999999999984901 -24.9741713728666 -1.1755070325369501 12.060884608352101 1.0000000000001099 -24.963275790019001 -1.37846458054254 12.0870474074319 0.99999999999996403 -24.951216368799699 -1.57219147947364 12.116160872769999 1 -24.919335237836499 -2.0242425859737501 12.193568097797099 1 -24.898486748224698 -2.2737610636321302 12.244540183592701 0.99999999999995703 -24.876306932760102 -2.50623111325246 12.2991002212443 1.0000000000001099 -24.8527486172888 -2.7294817800088 12.3575415857206 0.99999999999987499 -24.8283949511587 -2.9394736187741199 12.4184288493617 1.00000000000006 -24.803176524343399 -3.1414381602288799 12.482049489468199 0.99999999999999001 -24.777309296707301 -3.3347138885314198 12.5479150416341 1 -24.720615373087899 -3.73325259810388 12.6937130104678 1 -24.689646884429301 -3.9360199618939502 12.774206855658701 1.00000000000001 -24.658044447743698 -4.1305920333586501 12.857295063129699 0.99999999999999001 -24.625902608093401 -4.3179270406341397 12.9428394523015 1 -24.593295844892701 -4.4987785373808098 13.030752157652801 1.00000000000001 -24.5602834264092 -4.6737753552896502 13.120986666169401 0.999999999999994 -24.5269104948567 -4.8434450331894698 13.2135389259397 1 -24.453977600054099 -5.2001282554171704 13.418937071319601 1 -24.414350030983801 -5.3851948241112604 13.532470719957599 1.00000000000001 -24.374089945695602 -5.5655043278005998 13.6500169617849 0.99999999999996303 -24.334174510773899 -5.73734945147228 13.768787642117401 1.0000000000000699 -24.293559855571701 -5.9063591547847203 13.892184061454 0.99999999999993705 -24.253090075865401 -6.0690809168654498 14.017901095541401 1.00000000000002 -24.212422696247199 -6.2276820278891103 14.1472465955228 1 -24.1320567642369 -6.5320720040178299 14.4094613795766 1 -24.092346901007499 -6.6781542366987496 14.5421918378801 1.00000000000002 -24.052614197633599 -6.8203870130902704 14.6784680602603 0.99999999999996902 -24.0128951586052 -6.9589653126697 14.8185144430796 0.999999999999998 -23.973229692017199 -7.0940379321942704 14.9625958667135 1.00000000000003 -23.933662055028599 -7.2257151616635902 15.111026772439001 0.99999999999998301 -23.894242214629401 -7.35407168069022 15.2641909492616 1 -23.818343106111602 -7.5961548545344204 15.570759905549099 1 -23.781847307954799 -7.7102621577583701 15.723487138359699 0.99999999999997102 -23.745576307007401 -7.82153833177414 15.881130037303 1.00000000000006 -23.709606384661502 -7.9299205437459204 16.044352949364001 0.99999999999994904 -23.673972363687401 -8.0354623333007407 16.2133869223278 1.00000000000001 -23.638807041588102 -8.1379327555560899 16.3892372907607 1 -23.604202323574501 -8.23723051990968 16.572632332642801 1 -23.541750393430799 -8.4138774560998097 16.9268514370956 1 -23.5137270139716 -8.4921349322040793 17.094947471594502 0.99999999999994704 -23.4863124413584 -8.5677691421778892 17.269958342034101 1.0000000000001901 -23.459617297377001 -8.6405754131099197 17.452833676831901 0.99999999999971501 -23.433799159878099 -8.7102296284937193 17.644625350979901 1.00000000000022 -23.4090868196663 -8.7762340507957006 17.846682242416701 0.99999999999992795 -23.385778407623299 -8.8379294131868402 18.060631687672501 1 -23.348352737449598 -8.9362434025792705 18.459992550318301 1 -23.333527378825501 -8.9749286218490205 18.637566262527301 1.0000000000000899 -23.3198752312525 -9.0103431734923891 18.8247599283741 0.99999999999970901 -23.3076574660722 -9.0418645553393695 19.0234532376206 1.0000000000004099 -23.297355320198601 -9.0683133838929599 19.2345487265437 0.99999999999971201 -23.289613323303499 -9.0881305006426807 19.4578187330379 1.0000000000000899 -23.285114602410101 -9.0996397773335307 19.691590639267901 1 -23.283303524726399 -9.1042728003734794 20.174287851564099 1 -23.286111839499199 -9.0970878237942507 20.4104405349362 1.00000000000004 -23.292320735919802 -9.0812146286345108 20.635830762851601 0.99999999999983802 -23.3012202568374 -9.0584121864221796 20.848897183199799 1.00000000000026 -23.3121633198773 -9.0302484321826402 21.049204396263502 0.99999999999978195 -23.3246359086769 -8.9979870732805907 21.237846585785999 1.0000000000000799 -23.338366212727198 -8.9622777831798697 21.4167144190009 1 -23.3736030679318 -8.8700564764699106 21.821405227569699 1 -23.395918119889 -8.8112411902736607 22.038921400032802 1.0000000000001199 -23.419768684725401 -8.7478382205966696 22.244229589909398 0.99999999999960998 -23.444833064230099 -8.6805628024322701 22.439010945416801 1.00000000000056 -23.470863266798801 -8.6099583366716708 22.624665232980501 0.99999999999959299 -23.497688938518799 -8.5363788233039095 22.802277311931 1.0000000000001299 -23.525189684485301 -8.4600519261275995 22.9728309875407 1 -23.586311104699501 -8.28828255877605 23.330309975192002 1 -23.620107482903901 -8.1919834707471004 23.514587241131299 1.00000000000004 -23.654579962870301 -8.0922861286320291 23.691521776961299 0.999999999999866 -23.689448864380498 -7.9898380667250901 23.861230661774002 1.0000000000001901 -23.7248174579166 -7.8842022569793704 24.025384637895201 0.999999999999865 -23.760552036078501 -7.7755601801672096 24.184073332005401 1.00000000000004 -23.7964168976448 -7.6645156147089599 24.337253662132099 1 -23.883065573286501 -7.39102368519554 24.6941415203544 1 -23.9339777100557 -7.2260822391109096 24.8931052833533 1.00000000000001 -23.9850837798767 -7.0558274866678303 25.083893979308201 0.99999999999999001 -24.0362819513897 -6.8801067302410104 25.267376286480101 0.999999999999999 -24.087489053729801 -6.6986587459111604 25.4442377894601 1.00000000000001 -24.138635751403399 -6.5111050073193102 25.615046753502501 0.999999999999995 -24.1896641013922 -6.3169122110690097 25.780275283968098 1 -24.286102601386599 -5.9346390534982802 26.083767125374699 1 -24.331527647993099 -5.74809233490069 26.222987166240198 1.00000000000003 -24.376832923730401 -5.55483953798963 26.3585322066467 0.99999999999993305 -24.421804887151701 -5.3548056333878504 26.489990925029701 1.0000000000000699 -24.4664989975746 -5.1471830429691803 26.618022937259799 0.99999999999996403 -24.511127186065799 -4.9289507951340399 26.743368395358299 1.00000000000001 -24.554976843141699 -4.7023052107494197 26.864195373252599 1 -24.6326687802596 -4.2742147209349399 27.074634309410701 1 -24.666684155498899 -4.0772414740479102 27.165449683511401 1.00000000000006 -24.700181704913401 -3.8724048712878201 27.253675315912101 0.99999999999982503 -24.733071096871701 -3.65871557669881 27.339194108051299 1.00000000000024 -24.765225303846702 -3.4350567842484399 27.421795512067298 0.99999999999982703 -24.796464335108201 -3.1999906136513001 27.501143172749099 1.00000000000005 -24.826555824427601 -2.9517552785654599 27.576781971846199 1 -24.8758623621314 -2.4957200853355799 27.699561544940099 1 -24.895695927036002 -2.2966107377482001 27.748577863865901 0.99999999999998501 -24.914717890714901 -2.0862702425862198 27.795265446237099 1.00000000000006 -24.9323535179748 -1.8695544398442501 27.8382300482075 0.99999999999990397 -24.949118089523399 -1.6333082485896 27.878876262961398 1.0000000000000799 -24.963726113629399 -1.3878633521795301 27.9140036392727 0.99999999999997002 -24.9761453860093 -1.1267745488871199 27.943735533524201 1 -24.992873248513799 -0.63426249518895395 27.9835438072244 1 -24.998604766086899 -0.40356004345519603 27.9970812371558 1.0000000000000999 -25.001988660757 -0.16355984670484999 28.004941101918899 0.99999999999969302 -25.002585915455899 0.079597624613907403 28.0061129404572 1.0000000000004201 -25.000359136397499 0.32056623167390802 28.000520110577401 0.99999999999971101 -24.9955843731253 0.55459989107335395 27.988797875089901 1.0000000000000899 -24.9887743089139 0.77743658460414999 27.9721468669327 1 -24.9713960144746 1.218060385776 27.929664236517802 1 -24.960226895451399 1.43829771441944 27.902364727464299 1.0000000000000799 -24.9474707484719 1.6474081771209701 27.8711239031072 0.99999999999978095 -24.933475059451499 1.84648412282334 27.8367703130954 1.00000000000027 -24.918252596444599 2.03821271372483 27.799172015639702 0.99999999999983702 -24.902305496277599 2.2201052408216402 27.759684202283498 1.00000000000004 -24.885541190515401 2.3955711608792498 27.717929929053501 1 -24.8439352430876 2.7989889602999698 27.613733996819601 1 -24.818513736774499 3.0207681460444 27.549619975506602 1.00000000000002 -24.7920876645215 3.2320820724153299 27.4824285828286 0.99999999999992095 -24.764839069023299 3.4341869928338502 27.4125194068532 1.0000000000001199 -24.7369121465841 3.6281090640175799 27.340167617525399 0.99999999999989997 -24.7084146530925 3.8146762956160201 27.265564247325798 1.00000000000004 -24.679426611498499 3.9946268112798 27.188832945963298 1 -24.615431472436299 4.3730442138179502 27.017441606894302 1 -24.580268605732801 4.5691660196445101 26.922012360811099 1.00000000000006 -24.5447061668815 4.7576260166063999 26.824179232769499 0.99999999999978095 -24.508495522846601 4.9404926110695602 26.722888397211001 1.00000000000033 -24.472554049673001 5.1148228016959898 26.621036888543902 0.99999999999975697 -24.435566265116599 5.2869968739101498 26.514095481122599 1.0000000000000799 -24.3989721997286 5.4513254656401102 26.406580316632599 1 -24.322776118407599 5.7821685552495001 26.178511615290802 1 -24.283255058134699 5.9474726433193998 26.057905150106698 0.99999999999997802 -24.243690161524199 6.1074049899584599 25.934656889632301 1.00000000000003 -24.2040963351836 6.2624725636334997 25.808582870173002 1 -24.164488284041798 6.4130823666444403 25.679467122071198 0.99999999999996503 -24.124881313611599 6.5595691457376901 25.547059391965199 1.00000000000002 -24.085291459943502 6.7022107383878797 25.4110633511931 1 -24.0093397492336 6.9691674671672299 25.142343380653202 1 -23.972975861303699 7.0940247999310202 25.010236938969602 1.00000000000001 -23.936658277178399 7.2159945503623897 24.874513794597799 0.99999999999998102 -23.900404913318599 7.3352148928657996 24.734855659481799 1 -23.864239220957302 7.4517864482548202 24.590895216758501 1.00000000000002 -23.828190869660698 7.5657767200945303 24.442201896178702 0.99999999999998801 -23.792298123163199 7.6772181054412796 24.288252488979001 1 -23.7248224381302 7.8830971159198198 23.9859314675032 1 -23.693202821662599 7.9780434841032397 23.8387961708437 0.999999999999996 -23.6618144164431 8.07086490060769 23.686689423294801 1.00000000000001 -23.6305877492862 8.1618601627985008 23.528291260741401 0.99999999999997802 -23.599814575897899 8.2502650686103198 23.3640669925304 1.00000000000002 -23.569473035662998 8.3362735646593293 23.192723269770099 0.999999999999995 -23.539782012879801 8.4193748686842405 23.013784165452101 1 -23.488673331334901 8.5607537523010393 22.6814518375894 1 -23.466939983511299 8.6202979423884099 22.5317425829681 0.99999999999992895 -23.4457873265887 8.6777229064790404 22.3763684877045 1.00000000000022 -23.425319502886701 8.7328082472653694 22.214710819619199 0.99999999999970002 -23.405672922591499 8.7852544826059304 22.046093476329599 1.0000000000002101 -23.387026735686401 8.8346593841884502 21.8697126782541 0.99999999999993805 -23.369604661208001 8.8805156967251193 21.684610037964401 1 -23.340995592554499 8.9554003811891594 21.332880864814602 1 -23.329327576134201 8.9857787812446901 21.1707633914544 0.99999999999992295 -23.3187668968162 9.0131454759599201 21.001215322355101 1.00000000000024 -23.309522250051501 9.0370009788071695 20.823130996716699 0.99999999999968003 -23.301929164881599 9.0565246999554692 20.636134761589702 1.00000000000022 -23.296402138915798 9.0707074279004498 20.440688169273301 0.99999999999993705 -23.2933483303194 9.0785419844047492 20.238257690129501 1 -23.292638440891199 9.0803631740751598 19.834646115906601 1 -23.294772368624901 9.07488844153076 19.6229546096238 0.99999999999992595 -23.299560131575401 9.0626090244949804 19.445535360885899 1.00000000000024 -23.3063406198021 9.0451912252854996 19.238557877973701 0.99999999999967104 -23.314927283871199 9.0230610811225294 19.075172431767299 1.00000000000023 -23.324754027099399 8.9976306897132101 18.900551216849799 0.99999999999992994 -23.335651588768201 8.9693079650233791 18.741447949144099 1 -23.3639038825897 8.8955084241608198 18.3758044105391 1 -23.381969467136202 8.8480529208282004 18.177786842827 1.0000000000001099 -23.401395392488102 8.7966721209276404 17.990320148772302 0.99999999999964595 -23.4219074571484 8.7419937139664903 17.812037051373501 1.0000000000004901 -23.443295394206899 8.6844936912000605 17.641805901028999 0.99999999999966405 -23.4654107563981 8.6244966268844401 17.478701212300699 1.0000000000000999 -23.488148098879599 8.5622190882650493 17.321885155353201 1 -23.547219910425099 8.3987804266996893 16.9382300646765 1 -23.584248953474201 8.2948396145204608 16.719285939166401 0.99999999999996603 -23.6222270484867 8.1865295047448008 16.511402072106101 1.0000000000001099 -23.6609165928033 8.0742965455417206 16.3129888188572 0.99999999999983902 -23.7001963621836 7.9582709797028404 16.123116397126399 1.0000000000001199 -23.739913633901601 7.8386830381688597 15.9406409292869 0.99999999999996403 -23.779978859136101 7.7155871873382296 15.764881731798001 1 -23.867276627704001 7.4415732757484996 15.3977128048446 1 -23.914583312997699 7.2894848687714404 15.2085384353782 0.999999999999995 -23.962146770030799 7.13261079444099 15.0265913785615 1.00000000000001 -24.009873134247599 6.9708520590229703 14.851150778169 0.999999999999998 -24.057681886129199 6.8040351326461002 14.681649229838801 0.99999999999998801 -24.1055023203145 6.6319068041729698 14.5176203102806 1.00000000000001 -24.153271464231899 6.4541139241938099 14.358681430832601 1 -24.242447670999599 6.1099208226338897 14.0702085638871 1 -24.283897821429498 5.9449197420324698 13.9394755827878 1.00000000000003 -24.3250971024646 5.7755507703223596 13.812538264229101 0.99999999999992495 -24.366470201646099 5.5991300255011804 13.687824170563299 1.0000000000000999 -24.407029381561301 5.4198125210427497 13.568076859372299 0.99999999999993405 -24.447934692189801 5.2311681791190896 13.4495190360843 1.00000000000002 -24.4881588821526 5.0370926120972799 13.3350883120399 1 -24.5636771278512 4.6540273576948596 13.123832863937 1 -24.5990233754932 4.4666495921531002 13.0265089905667 0.99999999999983702 -24.633902357179601 4.2726823717373099 12.9318842251327 1.00000000000053 -24.6682510272787 4.07136446304962 12.8399840068515 0.99999999999926203 -24.701983956014899 3.8618127607512598 12.7508977245467 1.00000000000052 -24.734985345218401 3.6429095092511301 12.664792023116499 0.99999999999983702 -24.767106569451201 3.41324833178186 12.581911823816601 1 -24.820347293299001 2.9968404113846199 12.445908798895401 1 -24.841976020633101 2.81662943539262 12.391082004867799 0.99999999999991995 -24.8629610936737 2.6288836851595101 12.338269041902899 1.00000000000028 -24.8831839227079 2.43319461020931 12.287707028929599 0.99999999999959099 -24.902542889520699 2.2269657861149201 12.2395978810511 1.00000000000031 -24.920721512649799 2.0115545670678401 12.1946686682373 0.99999999999989897 -24.937596948978399 1.7819875214873599 12.153121008946901 1 -24.9630329779928 1.3696059469181801 12.090723986489399 1 -24.9725410642619 1.1940437905302099 12.0674678476097 0.99999999999987199 -24.981025497985801 1.0110173235706099 12.046757341098999 1.0000000000004099 -24.988298614334798 0.81979997270707095 12.029018993252301 0.99999999999943601 -24.994096297589898 0.62039118361415502 12.0148614099132 1.0000000000003999 -24.998118143501401 0.41361346228328599 12.0049772545135 0.99999999999987699 -25.000109221997199 0.20132978992088199 11.9999639629482 1 -24.999996549879501 -0.0131341543728976 12.0000004029117 1 + 0 9 0.020451729175787799 7 0.049551654993566598 7 0.082736039907863101 7 0.12136931361011299 7 0.15899622479377501 7 0.194196793783219 7 0.223874120262156 7 0.246027867209892 7 0.268403962672838 7 0.29867604159600197 7 0.33423817758737101 7 0.384122190106365 7 0.42882802026695599 7 0.46449856729266198 7 0.49034851210107999 7 0.51026955206567604 7 0.53258899886508504 7 0.56349573686483001 7 0.59980604534557402 7 0.63880670867184197 7 0.67469353488106998 7 0.70666552597802601 7 0.73129729106955099 7 0.75102879689399205 7 0.76986187455783395 7 0.795489602605709 7 0.83484838012461104 7 0.88061571790158299 7 0.92048473951999299 7 0.95636710916293499 7 0.98206683298474395 7 1 9 +2 0 0 0 0 0 1 1 0 0 0 1 0 29 +2 0 0 50 0 0 1 1 0 0 0 1 0 29 +2 0 0 0 0 0 1 1 0 0 0 1 0 27 +2 0 0 2 0 0 1 1 0 0 0 1 0 25 +2 0 0 39 0 0 1 1 0 0 0 1 0 25 +7 1 0 8 114 17 25 6.9388939039072299e-018 12.000006323777599 1 25 0.22442179520146099 12.0002515125902 1 24.997697604240201 0.44806606866886101 12.0060309209266 1 24.993120663058701 0.66964225352149498 12.0172735839824 1 24.986370116437101 0.88819301630970005 12.0337545414133 0.999999999999997 24.977588211770001 1.1030566809864799 12.055168572826 0.999999999999996 24.966931766308299 1.3138380587234599 12.081187325260601 1 24.954550351249999 1.5203877112725299 12.1115058616783 1 24.924324898610699 1.9579570826775201 12.1858288011412 1 24.9059502657122 2.1870925409163999 12.2311774556365 0.999999999999859 24.885698458713001 2.4098300570898901 12.2813888680817 1.0000000000004801 24.863698529699398 2.62733288044637 12.3362865559118 0.99999999999929501 24.840191132020198 2.83879155356649 12.395353087740199 1.00000000000053 24.8152635040476 3.0453297166823101 12.458515735597199 0.99999999999982703 24.789061246500101 3.2468423412416301 12.5255187921271 1 24.730539461057401 3.66762666732108 12.676705004477499 1 24.697899955339 3.8853563564325801 12.761914347904799 0.99999999999997302 24.664047612738901 4.0964563291320601 12.8512862274257 1.0000000000000899 24.628881994341 4.3030205338380298 12.945352444392 0.999999999999862 24.592769988602001 4.5035414722462397 13.0432807385206 1.0000000000001099 24.555609373801499 4.6997814008331504 13.145615287123899 0.99999999999996303 24.517578945208101 4.8913103110747098 13.252094273938299 1 24.436762194536598 5.2808436283922999 13.482506510179901 1 24.393840546827398 5.4781216366364003 13.6071517453037 0.99999999999992695 24.350193823704501 5.6700792012785 13.736439144469401 1.00000000000022 24.305685741585599 5.8580743006170604 13.871189757359399 0.99999999999972 24.260631742738401 6.0411748024316401 14.0108544919098 1.0000000000001901 24.214930568937 6.2204338118517803 14.1562413748407 0.99999999999994305 24.168742692177801 6.3955755025173504 14.3074212285958 1 24.0760100812365 6.7362116481200198 14.620705147104299 1 24.029474339759101 6.9017889868176798 14.782672230091499 0.999999999999996 23.9826870952005 7.0633165626916901 14.950934342889401 1.00000000000002 23.935565732895402 7.2214685339073696 15.126552899613101 0.99999999999996003 23.8883445595946 7.3757126098105097 15.309719642135301 1.00000000000003 23.841019838778099 7.5264152739305601 15.501634269581499 0.99999999999999201 23.793762935382698 7.6732968854079404 15.703238277444299 1 23.709216446403801 7.9301604465899196 16.086036455882201 1 23.6718899425628 8.0414595459144795 16.262887250270602 1.00000000000003 23.634772583967901 8.1501760384884303 16.4478651602901 0.99999999999989697 23.597982864045601 8.2561009767437792 16.6419402460287 1.0000000000001401 23.561658221362901 8.3589906440666901 16.8463616391115 0.99999999999990197 23.526022772558498 8.4583771205389304 17.0627421713227 1.00000000000003 23.4913659584439 8.5536514334772793 17.2930100885245 1 23.438547589100398 8.6969938659633392 17.687018883680398 1 23.419490097957901 8.7482885398878594 17.8390331199634 1.00000000000005 23.401011866856301 8.7976371060310505 17.9979411741399 0.999999999999864 23.383303869749799 8.8445766475375205 18.1642094621733 1.0000000000001701 23.3665013695155 8.8888104395027092 18.339024400738602 0.99999999999988998 23.350875494969898 8.9296894104194795 18.523254262231902 1.00000000000003 23.3367626402013 8.9664178145642097 18.7179107984139 1 23.314552823592699 9.0239907133952197 19.0953711675451 1 23.305776403113899 9.0466418500169805 19.275633066236701 0.99999999999992895 23.2986503412322 9.0649615197129894 19.464255875250899 1.0000000000002101 23.293593020645201 9.0779200879775992 19.661709072130002 0.99999999999972 23.291032014936999 9.0844741280427606 19.862586594940801 1.0000000000001901 23.291167770281501 9.0841366398498593 20.0662339426706 0.99999999999994704 23.2939139542597 9.0771000354564997 20.266528009100799 1 23.303927440208899 9.0513631984315897 20.6669076320164 1 23.311710048774302 9.0313337338618709 20.867822832013299 0.99999999999990696 23.321589805125999 9.0058429704372305 21.0591749316117 1.00000000000032 23.333142317855302 8.9759182109138003 21.241077617602699 0.99999999999953104 23.346012949984601 8.9424140946443291 21.413962163290002 1.0000000000003499 23.359927848161401 8.9059909836571993 21.578526343892399 0.99999999999988498 23.374703098509301 8.8670848260212001 21.7356900687052 1 23.4120001751619 8.7682406992685404 22.097752159303798 1 23.435198119353402 8.7062697321373204 22.296005180578199 1.00000000000005 23.4592436612818 8.6414368891842006 22.4816629955953 0.99999999999984102 23.4841799545088 8.5735438786916998 22.659183975581701 1.0000000000002101 23.509583238022302 8.5036351153440393 22.8271121496158 0.999999999999861 23.535504696093799 8.4315187413185395 22.988321475191899 1.00000000000004 23.561792851047201 8.3575345589927998 23.1428588330939 1 23.6194183586035 8.1934014012956595 23.465036164648701 1 23.650819432403299 8.1027595086107702 23.630352076129601 0.99999999999989198 23.6827320282401 8.0093144811695396 23.7898458178176 1.0000000000003699 23.714432570216299 7.9151235085771603 23.940953860034199 0.999999999999448 23.747089874110301 7.8166000749981599 24.090688894609801 1.0000000000004201 23.779540306446499 7.7170534027899897 24.233501386403301 0.999999999999863 23.812219674847999 7.6151188092300401 24.3724797607154 1 23.885446676004101 7.3826578808003704 24.673854692841999 1 23.926054875564901 7.2509700215652702 24.834129132314299 1.0000000000000699 23.966371147264098 7.1172649636991796 24.9873593123489 0.99999999999978195 24.006804178562199 6.9800564273061099 25.136046234318201 1.0000000000003 24.0466844107364 6.8411320019445396 25.2779941858232 0.99999999999978295 24.085644311091901 6.7021846539568299 25.413047163761 1.0000000000000699 24.1248056156007 6.5587059386445299 25.5454060808656 1 24.2018375463553 6.2684358030059304 25.7996122965674 1 24.239778863864501 6.1215461027667901 25.921823039497799 0.99999999999998401 24.277693306053401 5.9702831233962499 26.041185708785399 1.00000000000004 24.314624844234299 5.8188983728891301 26.155184356240898 0.99999999999995204 24.352408742851399 5.6582793297091003 26.269442283758 1.00000000000002 24.3886100416053 5.4995844880087299 26.3770193255768 0.999999999999995 24.425328179625701 5.33231720135863 26.484250559510102 1 24.497386584051402 4.9908596960432901 26.6911820213857 1 24.532438087769499 4.8179824015781998 26.7900309447183 1.0000000000000799 24.566402877366698 4.6432882460464002 26.8843393526064 0.99999999999977196 24.5992833942069 4.4665302362003496 26.974371070329799 1.0000000000003 24.6310788627028 4.2874325006294596 27.060291248059698 0.99999999999979305 24.661790602437801 4.1055863664703098 27.142228377073 1.00000000000006 24.691413020295698 3.9205520820771298 27.2202630869355 1 24.748313684887499 3.5435905567492201 27.3684063505263 1 24.775107061479702 3.35511754325691 27.4369328189965 1.00000000000006 24.8044774292119 3.1379661377278998 27.5130025298891 0.99999999999982803 24.832142393347201 2.91312694588167 27.585222258806699 1.00000000000023 24.8587497850076 2.6775108611308802 27.651831993222199 0.99999999999984601 24.883040985098098 2.4361004680847098 27.711935996933601 1.00000000000005 24.904504613073499 2.1959263097125601 27.7646440252899 1 24.941584829236 1.72419756375303 27.855969370009301 1 24.957277619766899 1.49237025052556 27.8947549333989 0.99999999999996703 24.970513330326401 1.25978744112534 27.927947792309901 1.0000000000001099 24.981717971710601 1.0243790154901 27.955069021934101 0.99999999999983202 24.990364311763301 0.77972765740926098 27.976244391726201 1.0000000000001299 24.996607729970901 0.53283487283069997 27.990532918644998 0.99999999999995803 25 0.27237206574418799 27.998899813367299 1 25 6.9388939039072299e-018 27.999426772196699 1 + 0 9 0.058332155897488497 7 0.12610729780597399 7 0.203128329129593 7 0.28628459510170901 7 0.36851128230551999 7 0.43406476811713302 7 0.47276130537807498 7 0.50482077164509598 7 0.54019847315269998 7 0.58971540073372097 7 0.64731694618928504 7 0.71873230465626603 7 0.78913885664921002 7 0.85997049029116002 7 0.93027647875214803 7 1 9 +7 1 0 8 114 17 22.000000119827 -0.0031132343393519401 15.000004742756399 1 21.999992699930502 0.11977939669893201 15.0001740094672 1 21.997933524814599 0.24265147122327399 15.003795260857199 1 21.993829695286799 0.364667346589923 15.010865913946301 1 21.987763626552699 0.485154485493897 15.0212650438911 0.999999999999997 21.979866217059801 0.60361066331906799 15.0347948699387 0.999999999999996 21.970289471935601 0.71970215953530903 15.0512235941125 1 21.9591826195817 0.83325545397204703 15.0703240923227 1 21.9321442520834 1.0732017590921199 15.1169750749062 1 21.915720069598599 1.1988372778159899 15.1454163311982 0.999999999999859 21.897513113478599 1.32217492834354 15.1771799379474 1.0000000000004801 21.877841032929101 1.44132468778175 15.211660277186899 0.99999999999929501 21.856716080877099 1.5584346652923899 15.2490424747507 1.00000000000053 21.834406545749498 1.6719116049251601 15.2888111594237 0.99999999999982703 21.8109740377405 1.78271922827383 15.3309751851175 1 21.758775025823802 2.0134582310409299 15.4258087430042 1 21.729729279407099 2.1325756514761398 15.4791119212844 0.99999999999997302 21.699370026772701 2.2496487409291999 15.535711338815201 1.0000000000000899 21.668131254373201 2.36242304309526 15.594524315210601 0.999999999999862 21.635797969863301 2.4736330555180102 15.6565193937111 1.0000000000001099 21.602731797308099 2.5813606202728399 15.7208045328954 0.99999999999996303 21.568891317798101 2.68674607293819 15.7877604647343 1 21.497157015277399 2.9005861735923602 15.9322683516876 1 21.4591636480876 3.00859837639242 16.010209076620399 0.99999999999992695 21.420380588936901 3.1145683740756498 16.0916416926868 1.00000000000022 21.381099590519 3.2173378092879501 16.175782514229901 0.99999999999972 21.341185933202102 3.3183477858203099 16.2636114628115 1.0000000000001901 21.3008787716021 3.4166684060497698 16.3545921244373 0.99999999999994305 21.2601703731412 3.51287245204264 16.449239464596602 1 21.178603848454099 3.69980237058342 16.6450804656487 1 21.137766315460901 3.7905167383029901 16.7461135543921 0.999999999999996 21.096620972853099 3.8796618124062801 16.851702039794102 1.00000000000002 21.0553648318384 3.9664142887699101 16.961330738752601 0.99999999999996003 21.013962899987199 4.0515642477948903 17.0761952680181 1.00000000000003 20.9725958834468 4.1344975747573303 17.196231337989001 0.99999999999999201 20.931338591829402 4.21540441185038 17.3223409948347 1 20.857667538214901 4.3568046334552504 17.561515300620901 1 20.8251865591828 4.4180523378705603 17.671937093624599 1.00000000000003 20.7929608595737 4.4778315816175498 17.787269265836201 0.99999999999989697 20.761060382314501 4.5360783179824704 17.908202486214002 1.0000000000001401 20.729617753025 4.5926287036925499 18.0354424200575 0.99999999999990197 20.698812615119898 4.6472629190310899 18.170034919565801 1.00000000000003 20.668887631169099 4.6996474493078502 18.313173429252501 1 20.623317773218599 4.7785076732227303 18.558018374630599 1 20.6068785078463 4.80676388140005 18.6525499143752 1.00000000000005 20.590973539938201 4.8338327832882202 18.7509568431967 0.999999999999864 20.575688969948501 4.8598053859679604 18.854497951057301 1.0000000000001701 20.5611882081433 4.8843133499610802 18.963634830805798 0.99999999999988998 20.547706440053201 4.9069691865062097 19.078608935962801 1.00000000000003 20.535525599368999 4.9273692126032396 19.200379958620601 1 20.516364235299399 4.9593404839068196 19.436680829788099 1 20.508795543436399 4.9719189927779999 19.549431247594701 0.99999999999992895 20.502651625514201 4.98209047573663 19.668503726483099 1.0000000000002101 20.498314595727901 4.9892195984243699 19.790492685743601 0.99999999999972 20.496101682241001 4.9928552824512602 19.918241209218198 1.0000000000001901 20.496278408461301 4.9924906638783 20.045228109719002 0.99999999999994704 20.4986668447009 4.9885148597758002 20.1697901934157 1 20.507308506830199 4.9741978019204103 20.418085365963101 1 20.513997947291301 4.9631422329591999 20.542225287254499 0.99999999999990696 20.522462695970098 4.9491632415803899 20.660177627652999 1.00000000000032 20.5323415672216 4.9328256793332503 20.7721718065477 0.99999999999953104 20.543338836506699 4.9145816058723604 20.8785819002876 1.0000000000003499 20.5552283721963 4.8947729515472496 20.9799114278077 0.99999999999988498 20.5678607837798 4.8736181896945601 21.076776948166302 1 20.599785073995299 4.8198358681444304 21.3002539398769 1 20.6196322794667 4.78621838261782 21.422424459153401 1.00000000000005 20.640511930027301 4.7500666429844403 21.540659893536098 0.99999999999984102 20.6620757020568 4.7125964928156696 21.651368810740301 1.0000000000002101 20.684282027124301 4.6732627241953999 21.758952244743401 0.999999999999861 20.706926274775999 4.6328117033314804 21.8611679134304 1.00000000000004 20.729956746251499 4.5911599527550102 21.9596211699197 1 20.780465670531701 4.4988435215770997 22.1644695510366 1 20.808048283855101 4.4477658798692401 22.269639765246499 0.99999999999989198 20.835799081382401 4.3961721030628897 22.369113898556702 1.0000000000003699 20.864069531397998 4.3419093749718201 22.467290950806699 0.999999999999448 20.891939021583799 4.2895635659694902 22.5566278734983 1.0000000000004201 20.920119472979501 4.2351642769115596 22.645030669134101 0.999999999999863 20.948239739347301 4.1804941536559301 22.729385103323999 1 21.011308326106899 4.0559289351980796 22.912603951316498 1 21.046221236095199 3.98578670476746 23.0096890820727 1.0000000000000699 21.081280844435099 3.9133889394268202 23.1043338595039 0.99999999999978195 21.116119093758201 3.84028095569606 23.1946233053058 1.0000000000003 21.1510841871794 3.7646195979323802 23.2837896599484 0.99999999999978295 21.186425368911699 3.6841264646862202 23.372952573553 1.0000000000000699 21.221209323516199 3.6040167564823 23.457207861374201 1 21.2898526625759 3.4412868824158802 23.619619617424799 1 21.323695528303499 3.3588273062497498 23.697630891360699 0.99999999999998401 21.356949226843799 3.2767254969792798 23.771689327747001 1.00000000000004 21.390434361367198 3.1891213130026701 23.845958730824599 0.99999999999995204 21.4223595725969 3.1078760276664998 23.912313464197599 1.00000000000002 21.454884365841799 3.0180060104707001 23.9812464139676 0.999999999999995 21.4859743938731 2.93310117653991 24.043464143238999 1 21.5477382993014 2.75691246834714 24.166026985476599 1 21.578557286245001 2.6643392441696698 24.227198416997901 1.0000000000000799 21.609121898670999 2.56743466163709 24.287810785635401 0.99999999999977196 21.639324471457599 2.46616640436473 24.347530960251198 1.0000000000003 21.669052574196701 2.3605434927356099 24.4059894749808 0.99999999999979305 21.698174051556101 2.2507089019507101 24.4627786699 1.00000000000006 21.726549315650701 2.1368127462696398 24.517487029762702 1 21.781165918885701 1.90293519460014 24.621355761584699 1 21.8083638357705 1.7759995629621199 24.673553034336901 1.00000000000006 21.830054589603801 1.6804153727944999 24.7074098679259 0.99999999999982803 21.851825348377101 1.5744215671417301 24.7455257179084 1.00000000000023 21.8715920072258 1.47758202919328 24.775792440216001 0.99999999999984601 21.891144793793501 1.3730928199419301 24.8073806562962 1.00000000000005 21.909627834772198 1.25797682554575 24.838309979140298 1 21.943494372133099 1.0050764169814901 24.897585925151699 1 21.959063857062901 0.86516074302299495 24.926350545282901 0.99999999999996703 21.9727301347103 0.71551836112779998 24.9526645488104 1.0000000000001099 21.983947996268999 0.55770513878355099 24.972787704181599 0.99999999999983202 21.992622318119 0.40512708279195397 24.9886618562651 1.0000000000001299 21.998425004703702 0.24191225518759801 24.9975999724685 0.99999999999995803 22.0007677736915 0.091475772185151794 25.0009776754491 1 22.000169124066101 -0.0502060707109281 24.999838344574499 1 + 0 9 0.058332155897488497 7 0.12610729780597399 7 0.203128329129593 7 0.28628459510170901 7 0.36851128230551999 7 0.43406476811713302 7 0.47276130537807498 7 0.50482077164509598 7 0.54019847315269998 7 0.58971540073372097 7 0.64731694618928504 7 0.71873230465626603 7 0.78913885664921002 7 0.85997049029116002 7 0.93027647875214803 7 1 9 +2 10 -0.01 20 1 0 0 0 0 1 0 -1 0 5 +2 10 0 20.010000000000002 1 0 0 0 0 1 0 -1 0 4 +2 0 0 80 0 0 1 1 0 0 0 1 0 4 +2 0 0 40 0 0 1 1 0 0 0 1 0 24 +2 0 0 15 0 0 1 1 0 0 0 1 0 26 +2 0 0 15 0 0 1 0 -1 0 1 0 0 16 +1 26 0 0 0 0 1 +2 0 0 0 0 0 1 1 0 0 0 1 0 26 +1 16 0 0 0 0 1 +2 0 0 0 0 0 1 0 -1 0 1 0 0 16 +2 0 0 35 0 0 1 1 0 0 0 1 0 18 +1 -25 -0.10000000000000001 59 -1 0 0 +2 0 0 35 0 0 1 0 -1 0 1 0 0 16 +1 -17.999722220078802 -0.10000000000000001 24 0 0 1 +1 17.999722220078802 -0.10000000000000001 24 0 0 1 +2 0 0 0 0 0 1 1 0 0 0 1 0 18 +1 -15.9996874969482 -0.10000000000000001 23.899999999999999 0 0 1 +1 -25 -0.10000000000000001 24 -1 0 0 +1 15.9996874969482 -0.10000000000000001 23.899999999999999 0 0 1 +2 0 0 0 0 0 1 0 -1 0 1 0 0 16 +1 7 0 0 0 0 1 +2 21 0 -39 0 0 1 0 -1 0 1 0 0 7 +2 0 0 0 0 0 1 1 0 0 0 1 0 7 +2 0 0 0 0 0 1 0 -1 0 1 0 0 6 +1 6 0 0 0 0 1 +2 0 0 1 0 0 1 0 -1 0 1 0 0 6 +2 21 0 -38 0 0 1 0 -1 0 1 0 0 7 +2 0 0 25 0 0 1 1 0 0 0 1 0 7 +2 21 0 -14.949999999999999 0 0 1 0 -1 0 1 0 0 6 +1 6 0 0 0 0 1 +2 0 0 14 0 0 1 1 0 0 0 1 0 6 +2 21 0 -37.5 0 0 1 0 -1 0 1 0 0 9 +1 12.0005555727034 -0.10000000000000001 -38 0 0 1 +1 29.999444427296599 -0.10000000000000001 -38 0 0 1 +2 0 0 0 0 0 1 1 0 0 0 1 0 9 +1 -14.5 -0.10000000000000001 -37.5 -1 0 0 +2 21 0 -37.5 0 0 1 0 -1 0 1 0 0 8 +1 -14.5 -0.10000000000000001 -38 -1 0 0 +1 14.000714322161199 -0.10000000000000001 -39 0 0 1 +1 13.000625024415999 -0.10000000000000001 -38 0 0 1 +1 -25 -0.10000000000000001 -14.9 -1 0 0 +1 27.999285677838799 -0.10000000000000001 -39 0 0 1 +1 28.999374975584001 -0.10000000000000001 -38 0 0 1 +2 0 0 0 0 0 1 0 -1 0 1 0 0 7 +2 21 0 -14.9 0 0 1 0 -1 0 1 0 0 8 +2 21 0 -14.9 0 0 1 0 -1 0 1 0 0 7 +1 -46 -40 -64.400000000000006 0 1 0 +1 -93.5 -0.100000000000001 -64.400000000000006 -1 0 0 +1 -47 -39 -64.400000000000006 1 0 0 +2 0 0 -64.400000000000006 0 0 1 0 -1 0 1 0 0 30 +1 42 -40 -64.400000000000006 0 1 0 +2 -46 -0.100000000000001 -63.399999999999999 0 1 0 0 0 1 1 0 0 1 +7 0 0 8 9 2 -46 -39 -64.400000000000006 -46.196349540849603 -39 -64.400000000000304 -46.392698267550998 -39 -64.355938335085597 -46.5775160373842 -39 -64.267820868920694 -46.739254831510998 -38.999999999999801 -64.139254831510797 -46.867820868920397 -39.000000000000199 -63.977516037384198 -46.955938335085598 -38.999999999999801 -63.792698267550797 -47 -39 -63.596349540849403 -47 -39 -63.399999999999999 + 0 9 1 9 +7 0 0 8 30 5 -47 -6.1676575780437197 -63.399999999999999 -47 -5.8421254048106404 -63.463941750800601 -46.995326953028403 -5.5053676371864899 -63.526083979204401 -46.986443718227001 -5.1578752600744302 -63.585871378814403 -46.973890161955801 -4.7998433982841604 -63.642852505981502 -46.958278220147299 -4.4308237516560904 -63.696638847265703 -46.940265490345602 -4.0497803578465801 -63.746905894313898 -46.920581208336898 -3.6546247883121401 -63.793350803701799 -46.881954654790903 -2.87023653607966 -63.873187996727999 -46.863145290236901 -2.4845687139159001 -63.907474991386103 -46.844378337373598 -2.0789084702999698 -63.938119958791503 -46.826717729195501 -1.6508205833026499 -63.964294227456001 -46.811573872138901 -1.19975630191407 -63.984766905750398 -46.801316236074001 -0.72671620746514498 -63.998190210132101 -46.7978121721927 -0.23593408914712699 -64.0029263378932 -46.803171041599498 0.656243002187618 -63.995761957847101 -46.809757328785402 1.0476127423144601 -63.986923393616799 -46.820066986484001 1.4248122722513801 -63.972904210002099 -46.832943830138397 1.7862258789763701 -63.954570044225399 -46.847310532559902 2.1318666224379599 -63.932694716694797 -46.862390758787598 2.4626436255338899 -63.907859214821897 -46.877651366174199 2.78058792231124 -63.880466858415502 -46.914245285472099 3.5282273039788801 -63.807964382044801 -46.9352794523395 3.94546848734486 -63.760507897460599 -46.9546711805991 4.34680401037006 -63.708789638830297 -46.971567221762399 4.7347256034278402 -63.653161746748602 -46.985208207225099 5.1104987331022498 -63.593994412026198 -46.994890885136797 5.4747405614037001 -63.531726881706597 -47 5.8272809962667802 -63.4668575224199 -47 6.1676575780437197 -63.399999999999999 + 0 9 0.27405809103505002 7 0.51884783229647502 7 0.71714785071540399 7 1 9 +1 -47 -40 -63.399999999999999 0 1 0 +2 42 -0.100000000000001 -63.399999999999999 0 1 0 0 0 1 1 0 0 1 +1 29.999833332870399 -0.10000000000000001 -65 0 0 1 +1 43 -0.100000000000001 -82.200000000000003 0 0 1 +1 -70 -0.10000000000000001 -65 -1 0 0 +2 42 -0.100000000000001 -0.40000000000000602 0 1 0 0 0 1 1 0 0 1 +1 -29.999833332870399 -0.10000000000000001 -65 0 0 1 +1 -93.5 -0.100000000000001 0.59999999999999398 -1 0 0 +1 35.999861110843199 -0.10000000000000001 0.10000000000000001 0 0 1 +1 -100 -0.100000000000001 10 -1 0 0 +1 -39 -0.10000000000000001 -63.999843749618499 -1 0 0 +1 39.002501564456203 -0.10000000000000001 19 0 0 -1 +1 -60 -0.100000000000001 -85 0 0 1 +1 -49.5 -0.10000000000000001 1 1 0 0 +1 -100 -0.100000000000001 -70 -1 0 0 +1 42.997498435543797 -0.10000000000000001 19 0 0 -1 +1 50 -0.100000000000001 -85 0 0 1 +7 0 0 8 9 2 -46 -39 -64.400000000000006 -46 -39.196349540849297 -64.400000000000304 -46 -39.392698267551999 -64.355938335085597 -46 -39.577516037382701 -64.267820868920694 -46 -39.7392548315133 -64.139254831510797 -46 -39.867820868919097 -63.977516037384198 -46 -39.955938335086799 -63.792698267550797 -46 -40 -63.596349540849403 -46 -40 -63.399999999999999 + 0 9 1 9 +1 -47 -40 -63.399999999999999 1 0 0 +7 0 0 8 9 2 42 -39 -64.400000000000006 41.999999999999901 -39.196349540849297 -64.400000000000304 42.000000000000298 -39.392698267551999 -64.355938335085597 41.999999999999602 -39.577516037382701 -64.267820868920694 42.000000000000497 -39.7392548315133 -64.139254831510797 41.999999999999801 -39.867820868919097 -63.977516037384198 42.000000000000199 -39.955938335086799 -63.792698267550797 42 -40 -63.596349540849403 42 -40 -63.399999999999999 + 0 9 1 9 +2 0 0 0 0 0 1 1 0 0 0 1 0 30 +7 0 0 8 9 2 42 -39 -64.400000000000006 42.196349540849504 -39 -64.400000000000304 42.392698267551403 -39 -64.355938335085597 42.577516037383504 -39 -64.267820868920694 42.739254831512099 -38.999999999999801 -64.139254831510797 42.867820868919701 -39.000000000000199 -63.977516037384198 42.955938335086103 -38.999999999999801 -63.792698267550797 43 -39 -63.596349540849403 43 -39 -63.399999999999999 + 0 9 1 9 +1 43 -40 -63.399999999999999 0 1 0 +7 0 0 7 8 2 -47 -39 -63.399999999999999 -47 -39.224399475256398 -63.399999999999999 -46.941251113447699 -39.4487978649829 -63.399999999998499 -46.823762722203497 -39.654746940823898 -63.4000000000025 -46.654746940821802 -39.823762722201401 -63.399999999997902 -46.448797864984499 -39.941251113449098 -63.400000000002102 -46.224399475256398 -40 -63.399999999999999 -46 -40 -63.399999999999999 + 0 8 1 8 +2 -47 0 -32 -1 0 0 0 0 -1 0 -1 0 32 +2 -60 0 -32 -1 0 0 0 0 -1 0 -1 0 32 +7 0 0 7 14 3 -47 -5.0438080851674298 -0.40000000000000602 -47 -4.74241743076667 -0.351893777865183 -46.99730021957 -4.4300684160654296 -0.30547898049886002 -46.992241560087699 -4.1060741452807603 -0.261066473916509 -46.985209224324201 -3.7695165672697399 -0.21902210705768499 -46.976664881696799 -3.4193063756068098 -0.17974820198105701 -46.967185451665003 -3.0538231410906098 -0.143722557786301 -46.948962801102603 -2.3313015619316899 -0.083223117824859499 -46.940256502178599 -1.9780353772094199 -0.057872834180607798 -46.9319162875125 -1.60874718505218 -0.036042246255630503 -46.924601232178397 -1.2232725332572401 -0.018514600148056899 -46.9192191838562 -0.82317384169567598 -0.0061986657517043601 -46.916515120968 -0.41232774799833799 4.1232774750099599e-008 -46.916515138963497 0 0 + 0 8 0.53103945332248503 6 1 8 +1 -39 -0.10000000000000001 -0.00015625038147248902 -1 0 0 +1 -47 -39 -64.400000000000006 0 0 1 +1 -47 -40 -0.40000000000000602 0 1 0 +1 43 -39 -64.400000000000006 0 0 1 +1 43 -40 -0.40000000000000602 0 1 0 +7 0 0 8 9 2 42 -39 0.59999999999999398 42.196349540849397 -39 0.59999999999999598 42.392698267551502 -39 0.55593833508626 42.577516037383603 -39 0.46782086891951902 42.739254831511801 -38.999999999999801 0.33925483151256702 42.867820868919999 -39.000000000000199 0.17751603738313301 42.955938335085897 -38.999999999999801 -0.00730173244830942 43 -39 -0.203650459150647 43 -39 -0.40000000000000602 + 0 9 1 9 +1 42 -40 0.59999999999999398 0 1 0 +1 -46 -40 0.59999999999999398 0 1 0 +1 -47 -39 0.59999999999999398 1 0 0 +2 0 0 0.59999999999999398 0 0 1 0 -1 0 1 0 0 36 +1 -35.999861110843199 -0.10000000000000001 0.10000000000000001 0 0 1 +2 0 0 9.9000000000000092 0 0 1 0 -1 0 1 0 0 36 +2 0 -41 10 0 0 -1 0 1 0 1 0 0 2 +1 0 0 80 0 1 0 +1 0 0 80 1 0 0 +2 -41 0 10 0 0 -1 0 1 0 1 0 0 2 +1 110 0 80 0 1 0 +2 41 0 10 0 0 -1 0 1 0 1 0 0 2 +2 0 0 18 0 0 1 1 0 0 0 1 0 2 +1 0 0 0 0 1 0 +1 0 0 0 0 0 1 +1 0 0 0 1 0 0 +1 110 0 0 0 1 0 +1 110 0 0 0 0 1 +1 -46 -40 -64.400000000000006 0 0 1 +1 -47 -40 -0.40000000000000602 1 0 0 +1 42 -40 -64.400000000000006 0 0 1 +7 0 0 7 8 2 43 -39 -63.399999999999999 43 -39.224399475256398 -63.399999999999999 42.941251113447898 -39.4487978649829 -63.399999999998499 42.823762722203298 -39.654746940823898 -63.4000000000025 42.654746940822001 -39.823762722201401 -63.399999999997902 42.448797864984499 -39.941251113449098 -63.400000000002102 42.224399475256398 -40 -63.399999999999999 42 -40 -63.399999999999999 + 0 8 1 8 +7 0 0 7 8 2 -47 -39 -0.40000000000000602 -47 -39.224399475256398 -0.40000000000000602 -46.941251113447699 -39.4487978649829 -0.39999999999999802 -46.823762722203497 -39.654746940823898 -0.40000000000001801 -46.654746940821802 -39.823762722201401 -0.39999999999999403 -46.448797864984499 -39.941251113449098 -0.40000000000001501 -46.224399475256398 -40 -0.40000000000000602 -46 -40 -0.40000000000000602 + 0 8 1 8 +2 -46 -0.100000000000001 -0.40000000000000602 0 1 0 0 0 1 1 0 0 1 +7 0 0 8 9 2 -46 -39 0.59999999999999398 -46.196349540849603 -39 0.59999999999999598 -46.392698267550898 -39 0.55593833508626 -46.577516037384498 -39 0.46782086891951902 -46.7392548315106 -38.999999999999801 0.33925483151256702 -46.867820868920703 -39.000000000000199 0.17751603738313301 -46.955938335085499 -38.999999999999801 -0.00730173244830942 -47 -39 -0.203650459150647 -47 -39 -0.40000000000000602 + 0 9 1 9 +1 -42.997498435543797 -0.10000000000000001 19 0 0 -1 +1 -90.5 -0.10000000000000001 1 1 0 0 +1 -39.002501564456203 -0.10000000000000001 19 0 0 -1 +7 0 0 7 8 2 43 -39 -0.40000000000000602 43 -39.224399475256398 -0.40000000000000602 42.941251113447898 -39.4487978649829 -0.39999999999999802 42.823762722203298 -39.654746940823898 -0.40000000000001801 42.654746940822001 -39.823762722201401 -0.39999999999999403 42.448797864984499 -39.941251113449098 -0.40000000000001501 42.224399475256398 -40 -0.40000000000000602 42 -40 -0.40000000000000602 + 0 8 1 8 +7 0 0 8 9 2 42 -39 0.59999999999999398 41.999999999999901 -39.196349540849397 0.59999999999999598 42.000000000000298 -39.392698267551403 0.55593833508626 41.999999999999602 -39.577516037383702 0.46782086891951902 42.000000000000497 -39.7392548315119 0.33925483151256702 41.999999999999801 -39.8678208689198 0.17751603738313301 42.000000000000199 -39.955938335086003 -0.0073017324483093905 42 -40 -0.203650459150647 42 -40 -0.40000000000000602 + 0 9 1 9 +7 0 0 8 9 2 -46 -39 0.59999999999999398 -46 -39.196349540849397 0.59999999999999598 -46 -39.392698267551403 0.55593833508626 -46 -39.577516037383702 0.46782086891951902 -46 -39.7392548315119 0.33925483151256702 -46 -39.8678208689198 0.17751603738313301 -46 -39.955938335086003 -0.0073017324483093905 -46 -40 -0.203650459150647 -46 -40 -0.40000000000000602 + 0 9 1 9 +1 2 0 0 0 0 1 +1 35 -2.5 80 0 1 0 +1 35 -0.099999999999999797 -26 0 0 1 +1 0 0 0 0 0 1 +2 35 0 40 -1 0 0 0 0 -1 0 -1 0 2 +1 0 0 0 0 1 0 +1 -73 -0.10000000000000001 80 -1 0 0 +1 17.5 -5 80 -1 0 0 +2 0 0 80 0 0 1 0 -1 0 1 0 0 26 +2 0 0 80 0 0 1 1 0 0 0 1 0 36 +1 25.999807691596502 -0.10000000000000001 -5 0 0 1 +1 37.5 -0.10000000000000001 41.997498435543797 -1 0 0 +1 0 0 0 1 0 0 +1 35.651086939951803 -5 0 0 0 1 +1 2 0 0 0 0 1 +7 0 0 8 37 6 26 0 42 26 -0.114859370025228 42 25.999420047391698 -0.22032893539760101 41.992460510889003 25.998426524207101 -0.31552199371966499 41.979545468013697 25.9971894710832 -0.40117240174523 41.963302445755801 25.995811696839599 -0.47829201706482299 41.944996297085403 25.9943576006333 -0.54840492002144503 41.9254438479336 25.9928344912231 -0.61358933610668098 41.9047178713029 25.989207318952801 -0.752982722554289 41.854629923636701 25.987117808483699 -0.82335381634945703 41.825317153023001 25.984962917134801 -0.88911571009652202 41.794540513352402 25.982759453693401 -0.95103687358395606 41.7624472822462 25.980519762406399 -1.00967907690098 41.729128604624499 25.9782530430994 -1.0655178235156999 41.694631971809599 25.975964674431701 -1.1188762894894899 41.658945422225401 25.9695999565626 -1.2601623486643301 41.557025419391401 25.965496273746702 -1.34331553975447 41.488346487491903 25.961367934675501 -1.42120088769554 41.415729451848101 25.957233186496499 -1.4945277348534201 41.338711909180297 25.9531110815232 -1.56383295434222 41.256817910739002 25.949025724710999 -1.62934607557477 41.169024610374002 25.945002713479202 -1.69121937105681 41.074305744817799 25.939455285012201 -1.77348437454273 40.925876342770998 25.937845062065701 -1.79697940346601 40.880540768166298 25.9362575619841 -1.81979124541842 40.833288603506098 25.934697609550899 -1.84188559595199 40.783823334021797 25.933171943643401 -1.86320162511432 40.731825468779498 25.931689726639298 -1.8836481884235201 40.676914568717898 25.930264334078299 -1.9030828629457299 40.618513374228897 25.927759152523901 -1.9368919758851599 40.5016134172512 25.926683412876201 -1.95126407317408 40.445387770404899 25.925671185140001 -1.96467309538722 40.385359121765198 25.924738500975401 -1.9769272111515901 40.320129320724298 25.923923870110901 -1.9875445315619 40.248880158637697 25.9232995741027 -1.9956343104577401 40.171198927686298 25.922962700957299 -2.0000013018181702 40.0873483736206 25.922962793631399 -2.0000000000000102 40 + 0 9 0.16564733820084801 7 0.36813293306086597 7 0.72435178341570605 7 0.87266714746790996 7 1 9 +1 -55.5 -0.099999999999999797 31 -1 0 0 +2 0 0 31 0 0 1 0 -1 0 1 0 0 36 +1 37.5 -0.10000000000000001 38.002501564456203 -1 0 0 +7 0 0 8 37 6 25.922962793631601 -2 40 25.922962792832902 -2.0000000103527298 39.896472740043002 25.923435356908499 -1.99387473598614 39.799768097460898 25.924271111110599 -1.9830431366856101 39.711556856894298 25.925329909916599 -1.96920991646788 39.631528812696097 25.926524762728199 -1.9534350560926601 39.559006670223503 25.927797453702599 -1.9364562570194199 39.492772209779901 25.929136961852901 -1.91839574955684 39.431098703547001 25.932614786421901 -1.8709017120479701 39.2875284653149 25.934780512182801 -1.84085473803383 39.211038340172998 25.9370270875534 -1.80910641977938 39.1400042383395 25.939332609590799 -1.77585655365719 39.073479610122398 25.941681151504401 -1.7412317328015601 39.010764239916597 25.944060904586902 -1.7053032021793999 38.951245165120099 25.946465818247301 -1.6680560421427799 38.894547177162998 25.953343783364701 -1.5585222621052599 38.740653543346099 25.9578489767345 -1.4832314161553199 38.6496055331558 25.9623828556159 -1.4032160888016201 38.5647476578892 25.966922646853799 -1.31775552363147 38.485235235521699 25.971444902070701 -1.2263464350218001 38.410368648381898 25.975913320313801 -1.1272859922134799 38.339979342628602 25.980293067505499 -1.01945709681536 38.273915799824401 25.986143677517202 -0.85004516864239399 38.188860745996799 25.987750091636698 -0.80068160572922897 38.165866542320799 25.9893253798238 -0.748906458288218 38.143642885899801 25.990864013995701 -0.69437051426859897 38.122232541474702 25.992354828474902 -0.63656371482906604 38.1017528428007 25.993782446630298 -0.57491002348395304 38.082372561997602 25.995125457750898 -0.50865166325093503 38.064332324826402 25.9970942774174 -0.39127115962641701 38.038110509854199 25.997787046385302 -0.34471232095617599 38.0289421739473 25.998425001664899 -0.29544357693915901 38.020544761391498 25.9989954073957 -0.24280745676659099 38.013075689376599 25.999473163724499 -0.18649416029020899 38.006848328371298 25.999821144774099 -0.12658790674305501 38.002325332899602 26.000000006837499 -0.063783592591831695 37.999999866439502 26 0 38 + 0 9 0.149827758533533 7 0.36322873546102702 7 0.75468941848701099 7 0.90647438673820302 7 1 9 +1 35.999861110843199 -0.10000000000000001 0 0 0 1 +1 -73 -0.10000000000000001 20 -1 0 0 +1 37.001250195373601 -0.10000000000000001 21 0 0 -1 +1 -52.5 -0.10000000000000001 17 1 0 0 +1 39.002501564456203 -0.10000000000000001 19 0 0 -1 +1 -73 -0.10000000000000001 10 -1 0 0 +1 -73 -0.10000000000000001 0 -1 0 0 +1 35.999861110843199 -0.10000000000000001 0 0 0 1 +2 0 0 0 0 0 1 0 -1 0 1 0 0 26 +1 -25.999807691596502 -0.10000000000000001 -5 0 0 1 +2 0 0 20 0 0 1 0 -1 0 1 0 0 36 +1 -35.999861110843199 -0.10000000000000001 0 0 0 1 +1 -35.999861110843199 -0.10000000000000001 0 0 0 1 +1 -37.001250195373601 -0.10000000000000001 21 0 0 -1 +1 -93.5 -0.10000000000000001 17 1 0 0 +1 -39.002501564456203 -0.10000000000000001 19 0 0 -1 +2 0 -41 20 0 0 -1 0 1 0 1 0 0 4 +2 -41 0 20 0 0 -1 0 1 0 1 0 0 4 +2 41 0 20 0 0 -1 0 1 0 1 0 0 4 +2 0 0 10 0 0 1 1 0 0 0 1 0 46 +1 44.998749804626399 -0.10000000000000001 21 0 0 -1 +2 0 0 4 0 0 1 1 0 0 0 1 0 4 +2 0 0 4 0 0 1 0 -1 0 1 0 0 2 +2 41 0 10 0 0 -1 0 1 0 1 0 0 2 +1 42.997498435543797 -0.10000000000000001 19 0 0 -1 +2 0 -41 10 0 0 -1 0 1 0 1 0 0 2 +2 0 0 0 0 0 1 1 0 0 0 1 0 46 +2 -41 0 10 0 0 -1 0 1 0 1 0 0 2 +2 0 0 10 0 0 1 0 -1 0 1 0 0 36 +2 0 0 0 0 0 1 1 0 0 0 1 0 36 +1 -44.998749804626399 -0.10000000000000001 21 0 0 -1 +1 -42.997498435543797 -0.10000000000000001 19 0 0 -1 +1 4 0 0 0 0 1 +1 -45.999891304219403 -0.10000000000000001 10 0 0 1 +1 45.999891304219403 -0.10000000000000001 10 0 0 1 +2 0 0 1 0 0 1 1 0 0 0 1 0 9 +1 -14.5 -0.10000000000000001 -38 -1 0 0 +2 0 0 1 0 0 1 0 -1 0 1 0 0 6 +1 12.0005555727034 -0.10000000000000001 -39 0 0 1 +1 29.999444427296599 -0.10000000000000001 -39 0 0 1 +2 0 0 0 0 0 1 1 0 0 0 1 0 9 +1 15.0008333912117 -0.10000000000000001 -39.5 0 0 1 +1 -14.5 -0.10000000000000001 -39 -1 0 0 +1 26.9991666087883 -0.10000000000000001 -39.5 0 0 1 +2 0 0 0 0 0 1 0 -1 0 1 0 0 6 +2 21 0 5.0999999999999996 0 0 1 0 -1 0 1 0 0 6 +1 19.1666666666667 5.7130455003342 -15.5 0 0 1 +7 0 0 4 5 2 19.119107142857601 5.6975645726865203 5.0999999999999996 18.952469478198601 5.6425537712836604 5.4508161361242298 18.7878902236451 5.5810161657777897 5.80141107128697 18.6255786939304 5.5130033654447104 6.1513347985524804 18.465773809521501 5.4385381873710203 6.5 + 0 5 1 5 +2 21 0 -1.5 0 0 1 0 -1 0 1 0 0 6 +2 0 0 22 0 0 1 1 0 0 0 1 0 6 +1 6 0 0 0 0 1 +7 0 0 4 5 2 18.465773809509798 -5.4385381873655598 6.5 18.625578830956599 -5.5130034292955497 6.1513344995608001 18.787890197176502 -5.5810161468247497 5.80141113276549 18.9524694306721 -5.6425537555963503 5.45081623617875 19.119107142857001 -5.6975645726885604 5.0999999999999996 + 0 5 1 5 +2 21 0 -14.9 0 0 1 0 -1 0 1 0 0 6 +1 19.1666666666667 -5.7130455003342 -15.5 0 0 1 +2 0 0 5.0999999999999996 0 0 1 0 -1 0 1 0 0 20 +2 0 0 5.0999999999999996 0 0 1 0 -1 0 1 0 0 19.949999999999999 +2 0 0 0 0 0 1 0 -1 0 1 0 0 20 +1 20 0 0 -0.44721359549995798 0 0.89442719099991597 +2 0 0 6.5 0 0 1 0 -1 0 1 0 0 19.25 +2 0 0 4 0 0 1 1 0 0 0 1 0 18 +2 0 0 -1.5 0 0 1 0 -1 0 1 0 0 34 +2 0 0 0 0 0 1 1 0 0 0 1 0 34 +2 0 0 9 0 0 1 0 -1 0 1 0 0 16 +1 34 0 0 0 0 1 +1 16 0 0 0 0 1 +2 0 0 17 0 0 1 1 0 0 0 1 0 16 +2 0 0 17 0 0 1 0 -1 0 1 0 0 15 +1 15 0 0 0 0 1 +2 0 0 43.899999999999999 0 0 1 0 -1 0 1 0 0 15 +2 0 0 0 0 0 1 1 0 0 0 1 0 16 +2 0 0 17 0 0 1 1 0 0 0 1 0 16 +1 16 0 0 0 0 1 +2 0 0 69.900000000000006 0 0 1 0 -1 0 1 0 0 14 +1 14 0 0 0 0 1 +2 0 0 50 0 0 1 1 0 0 0 1 0 14 +Polygon3D 0 +PolygonOnTriangulations 1024 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.22513591323589 1 4.71623514371443 4.90058222176911 5.08492929982379 5.26927637787848 5.45362345593316 5.63797053398784 5.82231761204253 6.00666469009721 6.19101176815189 6.37535884620657 6.55970592426126 6.74405300231594 6.92840008037062 7.1127471584253 7.29709423647999 7.48144131453467 7.66578839258935 7.85013547064404 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.22513591323589 1 4.71623514371443 4.90058222176911 5.08492929982379 5.26927637787848 5.45362345593316 5.63797053398784 5.82231761204253 6.00666469009721 6.19101176815189 6.37535884620657 6.55970592426126 6.74405300231594 6.92840008037062 7.1127471584253 7.29709423647999 7.48144131453467 7.66578839258935 7.85013547064404 +2 19 1 +p 0.22513591323589 1 0 14 +2 1 2 +p 0.22513591323589 1 0 14 +2 20 2 +p 0.22513591323589 1 0 14 +2 1 2 +p 0.22513591323589 1 0 14 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.22513591323589 1 3.14543881691953 3.32978589497421 3.5141329730289 3.69848005108358 3.88282712913826 4.06717420719295 4.25152128524763 4.43586836330231 4.62021544135699 4.80456251941168 4.98890959746636 5.17325667552104 5.35760375357572 5.54195083163041 5.72629790968509 5.91064498773977 6.09499206579445 6.27933914384914 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.22513591323589 1 3.14543881691953 3.32978589497421 3.5141329730289 3.69848005108358 3.88282712913826 4.06717420719295 4.25152128524763 4.43586836330231 4.62021544135699 4.80456251941168 4.98890959746636 5.17325667552104 5.35760375357572 5.54195083163041 5.72629790968509 5.91064498773977 6.09499206579445 6.27933914384914 +2 19 1 +p 0.22513591323589 1 -1.00020833423747 0.999807691596402 +2 4 2 +p 0.22513591323589 1 -1.00020833423747 0.999807691596402 +2 2 20 +p 0.22513591323589 1 -50.9998076915963 -48.9997916657623 +2 2 4 +p 0.22513591323589 1 -50.9998076915963 -48.9997916657623 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.22513591323589 1 4.71655565910682 4.90086502946817 5.08517439982951 5.26948377019086 5.4537931405522 5.63810251091355 5.8224118812749 6.00672125163624 6.19103062199759 6.37533999235893 6.55964936272028 6.74395873308162 6.92826810344297 7.11257747380432 7.29688684416566 7.48119621452701 7.66550558488835 7.8498149552497 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.22513591323589 1 4.71655565910682 4.90086502946817 5.08517439982951 5.26948377019086 5.4537931405522 5.63810251091355 5.8224118812749 6.00672125163624 6.19103062199759 6.37533999235893 6.55964936272028 6.74395873308162 6.92826810344297 7.11257747380432 7.29688684416566 7.48119621452701 7.66550558488835 7.8498149552497 +2 3 1 +p 0.22513591323589 1 -2.00021739233183 0.999807691596402 +2 19 1 +p 0.22513591323589 1 -2.00021739233183 0.999807691596402 +2 1 19 +p 0.22513591323589 1 1 36 +2 3 5 +p 0.22513591323589 1 1 36 +2 1 19 +p 0.22513591323589 1 1 5 +2 4 6 +p 0.22513591323589 1 1 5 +2 5 7 +p 0.22513591323589 1 -2.00021739233183 0.999807691596402 +2 1 19 +p 0.22513591323589 1 -2.00021739233183 0.999807691596402 +2 6 8 +p 0.22513591323589 1 -1.00020833423747 0.999807691596402 +2 1 19 +p 0.22513591323589 1 -1.00020833423747 0.999807691596402 +2 1 19 +p 0.22513591323589 1 18 35 +2 8 7 +p 0.22513591323589 1 18 35 +2 1 3 +p 0.22513591323589 1 -50.9998076915963 -47.9997826076681 +2 2 20 +p 0.22513591323589 1 -50.9998076915963 -47.9997826076681 +2 2 20 +p 0.22513591323589 1 1 36 +2 3 5 +p 0.22513591323589 1 1 36 +2 2 20 +p 0.22513591323589 1 1 5 +2 4 6 +p 0.22513591323589 1 1 5 +2 7 5 +p 0.22513591323589 1 -50.9998076915963 -47.9997826076681 +2 20 2 +p 0.22513591323589 1 -50.9998076915963 -47.9997826076681 +2 8 6 +p 0.22513591323589 1 -50.9998076915963 -48.9997916657623 +2 20 2 +p 0.22513591323589 1 -50.9998076915963 -48.9997916657623 +2 2 20 +p 0.22513591323589 1 18 35 +2 8 7 +p 0.22513591323589 1 18 35 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.22513591323589 1 4.71673682017101 4.90102487746609 5.08531293476117 5.26960099205626 5.45388904935134 5.63817710664642 5.8224651639415 6.00675322123658 6.19104127853167 6.37532933582675 6.55961739312183 6.74390545041691 6.92819350771199 7.11248156500708 7.29676962230216 7.48105767959724 7.66534573689232 7.8496337941874 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.22513591323589 1 4.71673682017101 4.90102487746609 5.08531293476117 5.26960099205626 5.45388904935134 5.63817710664642 5.8224651639415 6.00675322123658 6.19104127853167 6.37532933582675 6.55961739312183 6.74390545041691 6.92819350771199 7.11248156500708 7.29676962230216 7.48105767959724 7.66534573689232 7.8496337941874 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.22513591323589 1 4.71655565910874 4.90086502946997 5.08517439983121 5.26948377019244 5.45379314055367 5.63810251091491 5.82241188127614 6.00672125163737 6.1910306219986 6.37533999235984 6.55964936272107 6.7439587330823 6.92826810344354 7.11257747380477 7.296886844166 7.48119621452724 7.66550558488847 7.8498149552497 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.22513591323589 1 4.71655565910874 4.90086502946997 5.08517439983121 5.26948377019244 5.45379314055367 5.63810251091491 5.82241188127614 6.00672125163737 6.1910306219986 6.37533999235984 6.55964936272107 6.7439587330823 6.92826810344354 7.11257747380477 7.296886844166 7.48119621452724 7.66550558488847 7.8498149552497 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.22513591323589 1 4.71673682017102 4.9010248774661 5.08531293476118 5.26960099205626 5.45388904935134 5.63817710664643 5.82246516394151 6.00675322123659 6.19104127853167 6.37532933582675 6.55961739312183 6.74390545041691 6.92819350771199 7.11248156500707 7.29676962230216 7.48105767959724 7.66534573689232 7.8496337941874 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.22513591323589 1 4.71673682017102 4.9010248774661 5.08531293476118 5.26960099205626 5.45388904935134 5.63817710664643 5.82246516394151 6.00675322123659 6.19104127853167 6.37532933582675 6.55961739312183 6.74390545041691 6.92819350771199 7.11248156500707 7.29676962230216 7.48105767959724 7.66534573689232 7.8496337941874 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.22513591323589 1 3.14543881691953 3.32978589497421 3.5141329730289 3.69848005108358 3.88282712913826 4.06717420719295 4.25152128524763 4.43586836330231 4.62021544135699 4.80456251941168 4.98890959746636 5.17325667552104 5.35760375357572 5.54195083163041 5.72629790968509 5.91064498773977 6.09499206579445 6.27933914384914 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.22513591323589 1 3.14543881691953 3.32978589497421 3.5141329730289 3.69848005108358 3.88282712913826 4.06717420719295 4.25152128524763 4.43586836330231 4.62021544135699 4.80456251941168 4.98890959746636 5.17325667552104 5.35760375357572 5.54195083163041 5.72629790968509 5.91064498773977 6.09499206579445 6.27933914384914 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.22513591323589 1 4.71623514371443 4.90058222176911 5.08492929982379 5.26927637787848 5.45362345593316 5.63797053398784 5.82231761204253 6.00666469009721 6.19101176815189 6.37535884620657 6.55970592426126 6.74405300231594 6.92840008037062 7.1127471584253 7.29709423647999 7.48144131453467 7.66578839258935 7.85013547064404 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.22513591323589 1 4.71623514371443 4.90058222176911 5.08492929982379 5.26927637787848 5.45362345593316 5.63797053398784 5.82231761204253 6.00666469009721 6.19101176815189 6.37535884620657 6.55970592426126 6.74405300231594 6.92840008037062 7.1127471584253 7.29709423647999 7.48144131453467 7.66578839258935 7.85013547064404 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.4140000008 1 3.14471765867682 3.32914957887771 3.5135814990786 3.69801341927949 3.88244533948038 4.06687725968127 4.25130917988216 4.43574110008305 4.62017302028394 4.80460494048483 4.98903686068572 5.17346878088661 5.3579007010875 5.54233262128839 5.72676454148928 5.91119646169017 6.09562838189106 6.28006030209195 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.4140000008 1 3.14471765867682 3.32914957887771 3.5135814990786 3.69801341927949 3.88244533948038 4.06687725968127 4.25130917988216 4.43574110008305 4.62017302028394 4.80460494048483 4.98903686068572 5.17346878088661 5.3579007010875 5.54233262128839 5.72676454148928 5.91119646169017 6.09562838189106 6.28006030209195 +2 19 1 +p 0.4140000008 1 3.49982758569422 6.49984374961845 +2 1 2 +p 0.4140000008 1 3.49982758569422 6.49984374961845 +2 2 20 +p 0.4140000008 1 -57.4998437496184 -54.4998275856943 +2 1 2 +p 0.4140000008 1 -57.4998437496184 -54.4998275856943 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.4140000008 1 6.28663358987618 6.47102747741712 6.65542136495806 6.83981525249899 7.02420914003993 7.20860302758087 7.39299691512181 7.57739080266274 7.76178469020368 7.94617857774462 8.13057246528556 8.31496635282649 8.49936024036743 8.68375412790837 8.8681480154493 9.05254190299024 9.23693579053118 9.42132967807212 +18 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 19 +p 0.4140000008 1 6.28663358987618 6.47102747741712 6.65542136495806 6.83981525249899 7.02420914003993 7.20860302758087 7.39299691512181 7.57739080266274 7.76178469020368 7.94617857774462 8.13057246528556 8.31496635282649 8.49936024036743 8.68375412790837 8.8681480154493 9.05254190299024 9.23693579053118 9.42132967807212 +2 19 1 +p 0.4140000008 1 64 90 +2 4 2 +p 0.4140000008 1 64 90 +2 20 2 +p 0.4140000008 1 64 90 +2 3 1 +p 0.4140000008 1 64 90 +20 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 +p 0.4140000008 1 0.000994971172122092 0.0537951660727794 0.106595360973437 0.159395555874094 0.212195750774751 0.264995945675408 0.317796140576066 0.370596335476723 0.42339653037738 0.476196725278037 0.528996920178695 0.581797115079352 0.634597309980009 0.687397504880667 0.740197699781324 0.792997894681981 0.845798089582639 0.898598284483296 0.948801664712774 0.999005044942252 +20 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 20 +p 0.4140000008 1 0.000994971172122092 0.0537951660727794 0.106595360973437 0.159395555874094 0.212195750774751 0.264995945675408 0.317796140576066 0.370596335476723 0.42339653037738 0.476196725278037 0.528996920178695 0.581797115079352 0.634597309980009 0.687397504880667 0.740197699781324 0.792997894681981 0.845798089582639 0.898598284483296 0.948801664712774 0.999005044942252 +2 2 20 +p 0.4140000008 1 0.5 100 +2 1 3 +p 0.4140000008 1 0.5 100 +2 3 5 +p 0.4140000008 1 -3.49982758569422 -0.499807691596651 +2 2 20 +p 0.4140000008 1 -3.49982758569422 -0.499807691596651 +11 1 22 23 24 25 26 27 28 29 30 21 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 4 7 8 9 10 11 12 13 14 15 6 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +2 2 20 +p 0.4140000008 1 2 6 +2 5 16 +p 0.4140000008 1 2 6 +11 29 30 31 32 33 34 35 36 37 38 2 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 17 18 19 20 21 22 23 24 25 26 6 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +2 27 16 +p 0.4140000008 1 -6.49984374961839 -0.499807691596331 +2 20 2 +p 0.4140000008 1 -6.49984374961839 -0.499807691596331 +2 21 1 +p 0.4140000008 1 54 58 +2 28 17 +p 0.4140000008 1 54 58 +2 20 2 +p 0.4140000008 1 0.5 5 +2 29 27 +p 0.4140000008 1 0.5 5 +11 1 22 23 24 25 26 27 28 29 30 21 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 28 31 32 33 34 35 36 37 38 39 30 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +2 29 40 +p 0.4140000008 1 -12.5001562503816 -6.5 +2 2 20 +p 0.4140000008 1 -12.5001562503816 -6.5 +11 29 30 31 32 33 34 35 36 37 38 2 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 41 42 43 44 45 46 47 48 49 50 30 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +2 40 51 +p 0.4140000008 1 -53 -43 +2 2 3 +p 0.4140000008 1 -53 -43 +2 21 1 +p 0.4140000008 1 44 48 +2 52 41 +p 0.4140000008 1 44 48 +2 53 51 +p 0.4140000008 1 -12.5001562503814 -6.5 +2 3 2 +p 0.4140000008 1 -12.5001562503814 -6.5 +11 1 22 23 24 25 26 27 28 29 30 21 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 52 55 56 57 58 59 60 61 62 63 54 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +2 1 19 +p 0.4140000008 1 1 18 +2 53 64 +p 0.4140000008 1 1 18 +11 29 30 31 32 33 34 35 36 37 38 2 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 65 66 67 68 69 70 71 72 73 74 54 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 1 22 23 24 25 26 27 28 29 30 21 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 64 76 77 78 79 80 81 82 83 84 75 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +2 21 1 +p 0.4140000008 1 34 38 +2 85 65 +p 0.4140000008 1 34 38 +11 29 30 31 32 33 34 35 36 37 38 2 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 86 87 88 89 90 91 92 93 94 95 75 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 1 22 23 24 25 26 27 28 29 30 21 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 85 97 98 99 100 101 102 103 104 105 96 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +2 21 1 +p 0.4140000008 1 24 28 +2 86 106 +p 0.4140000008 1 24 28 +11 29 30 31 32 33 34 35 36 37 38 2 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 106 107 108 109 110 111 112 113 114 115 96 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +2 1 19 +p 0.4140000008 1 0.5 100 +2 2 4 +p 0.4140000008 1 0.5 100 +11 2 32 33 34 35 36 37 38 39 40 31 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 3 6 7 8 9 10 11 12 13 14 5 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +2 15 4 +p 0.4140000008 1 51.4998076915966 54.4998275856943 +2 19 1 +p 0.4140000008 1 51.4998076915966 54.4998275856943 +11 19 20 21 22 23 24 25 26 27 28 1 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 16 17 18 19 20 21 22 23 24 25 5 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +2 1 19 +p 0.4140000008 1 2 6 +2 15 26 +p 0.4140000008 1 2 6 +2 22 2 +p 0.4140000008 1 54 58 +2 27 16 +p 0.4140000008 1 54 58 +2 26 28 +p 0.4140000008 1 51.4998076915964 57.4998437496184 +2 1 19 +p 0.4140000008 1 51.4998076915964 57.4998437496184 +11 2 32 33 34 35 36 37 38 39 40 31 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 27 30 31 32 33 34 35 36 37 38 29 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +2 19 1 +p 0.4140000008 1 0.5 5 +2 39 28 +p 0.4140000008 1 0.5 5 +11 19 20 21 22 23 24 25 26 27 28 1 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 40 41 42 43 44 45 46 47 48 49 29 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +2 50 39 +p 0.4140000008 1 -86.5 -76.4998437496186 +2 19 1 +p 0.4140000008 1 -86.5 -76.4998437496186 +2 22 2 +p 0.4140000008 1 44 48 +2 51 40 +p 0.4140000008 1 44 48 +2 50 52 +p 0.4140000008 1 -53 -43 +2 2 3 +p 0.4140000008 1 -53 -43 +11 2 32 33 34 35 36 37 38 39 40 31 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 51 54 55 56 57 58 59 60 61 62 53 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +2 52 63 +p 0.4140000008 1 -86.5 -76.4998437496184 +2 22 5 +p 0.4140000008 1 -86.5 -76.4998437496184 +11 19 20 21 22 23 24 25 26 27 28 1 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 64 65 66 67 68 69 70 71 72 73 53 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +2 2 20 +p 0.4140000008 1 1 18 +2 63 74 +p 0.4140000008 1 1 18 +2 22 2 +p 0.4140000008 1 34 38 +2 75 64 +p 0.4140000008 1 34 38 +11 2 32 33 34 35 36 37 38 39 40 31 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 74 77 78 79 80 81 82 83 84 85 76 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 2 32 33 34 35 36 37 38 39 40 31 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 75 87 88 89 90 91 92 93 94 95 86 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 19 20 21 22 23 24 25 26 27 28 1 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 96 97 98 99 100 101 102 103 104 105 76 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 19 20 21 22 23 24 25 26 27 28 1 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +11 106 107 108 109 110 111 112 113 114 115 86 +p 0.4140000008 1 0 0.1215 0.243 0.3645 0.47385 0.572265 0.67068 0.769095 0.8576685 0.92883425 1 +2 22 2 +p 0.4140000008 1 24 28 +2 96 106 +p 0.4140000008 1 24 28 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.4140000008 1 3.14504093628639 3.32943482382733 3.51382871136827 3.6982225989092 3.88261648645014 4.06701037399108 4.25140426153202 4.43579814907295 4.62019203661389 4.80458592415483 4.98897981169577 5.1733736992367 5.35776758677764 5.54216147431858 5.72655536185952 5.91094924940045 6.09534313694139 6.27973702448233 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.4140000008 1 3.14504093628639 3.32943482382733 3.51382871136827 3.6982225989092 3.88261648645014 4.06701037399108 4.25140426153202 4.43579814907295 4.62019203661389 4.80458592415483 4.98897981169577 5.1733736992367 5.35776758677764 5.54216147431858 5.72655536185952 5.91094924940045 6.09534313694139 6.27973702448233 +18 31 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 21 +p 0.4140000008 1 3.1444498003349 3.3289132332819 3.5133766662289 3.6978400991759 3.8823035321229 4.0667669650699 4.2512303980169 4.4356938309639 4.6201572639109 4.8046206968579 4.9890841298049 5.1735475627519 5.3580109956989 5.5424744286459 5.7269378615929 5.9114012945399 6.0958647274869 6.2803281604339 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.4140000008 1 3.1444498003349 3.3289132332819 3.5133766662289 3.6978400991759 3.8823035321229 4.0667669650699 4.2512303980169 4.4356938309639 4.6201572639109 4.8046206968579 4.9890841298049 5.1735475627519 5.3580109956989 5.5424744286459 5.7269378615929 5.9114012945399 6.0958647274869 6.2803281604339 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.4140000008 1 6.28703147050754 6.47137854856252 6.65572562661749 6.84007270467247 7.02441978272744 7.20876686078242 7.39311393883739 7.57746101689237 7.76180809494735 7.94615517300232 8.1305022510573 8.31484932911227 8.49919640716725 8.68354348522223 8.8678905632772 9.05223764133218 9.23658471938716 9.42093179744213 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.4140000008 1 6.28703147050754 6.47137854856252 6.65572562661749 6.84007270467247 7.02441978272744 7.20876686078242 7.39311393883739 7.57746101689237 7.76180809494735 7.94615517300232 8.1305022510573 8.31484932911227 8.49919640716725 8.68354348522223 8.8678905632772 9.05223764133218 9.23658471938716 9.42093179744213 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.4140000008 1 4.71623514371443 4.90058222176911 5.08492929982379 5.26927637787848 5.45362345593316 5.63797053398784 5.82231761204253 6.00666469009721 6.19101176815189 6.37535884620657 6.55970592426126 6.74405300231594 6.92840008037062 7.1127471584253 7.29709423647999 7.48144131453467 7.66578839258935 7.85013547064404 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.4140000008 1 4.71623514371443 4.90058222176911 5.08492929982379 5.26927637787848 5.45362345593316 5.63797053398784 5.82231761204253 6.00666469009721 6.19101176815189 6.37535884620657 6.55970592426126 6.74405300231594 6.92840008037062 7.1127471584253 7.29709423647999 7.48144131453467 7.66578839258935 7.85013547064404 +20 29 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 19 +p 0.4140000008 1 0.000994971172125308 0.0537951660724129 0.1065953609727 0.159395555872988 0.212195750773276 0.264995945673563 0.317796140573851 0.370596335474138 0.423396530374426 0.476196725274714 0.528996920175001 0.581797115075289 0.634597309975576 0.687397504875864 0.740197699776151 0.792997894676439 0.845798089576726 0.898598284477014 0.948801664709633 0.999005044942252 +20 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 +p 0.4140000008 1 0.000994971172125308 0.0537951660724129 0.1065953609727 0.159395555872988 0.212195750773276 0.264995945673563 0.317796140573851 0.370596335474138 0.423396530374426 0.476196725274714 0.528996920175001 0.581797115075289 0.634597309975576 0.687397504875864 0.740197699776151 0.792997894676439 0.845798089576726 0.898598284477014 0.948801664709633 0.999005044942252 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.4140000008 1 3.14471765867682 3.32914957887771 3.5135814990786 3.69801341927949 3.88244533948038 4.06687725968127 4.25130917988216 4.43574110008305 4.62017302028394 4.80460494048483 4.98903686068572 5.17346878088661 5.3579007010875 5.54233262128839 5.72676454148928 5.91119646169017 6.09562838189106 6.28006030209195 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.4140000008 1 3.14471765867682 3.32914957887771 3.5135814990786 3.69801341927949 3.88244533948038 4.06687725968127 4.25130917988216 4.43574110008305 4.62017302028394 4.80460494048483 4.98903686068572 5.17346878088661 5.3579007010875 5.54233262128839 5.72676454148928 5.91119646169017 6.09562838189106 6.28006030209195 +20 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 +p 0.4140000008 1 0.000994971172122092 0.0537951660727794 0.106595360973437 0.159395555874094 0.212195750774751 0.264995945675408 0.317796140576066 0.370596335476723 0.42339653037738 0.476196725278037 0.528996920178695 0.581797115079352 0.634597309980009 0.687397504880667 0.740197699781324 0.792997894681981 0.845798089582639 0.898598284483296 0.948801664712774 0.999005044942252 +20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 22 +p 0.4140000008 1 0.000994971172122092 0.0537951660727794 0.106595360973437 0.159395555874094 0.212195750774751 0.264995945675408 0.317796140576066 0.370596335476723 0.42339653037738 0.476196725278037 0.528996920178695 0.581797115079352 0.634597309980009 0.687397504880667 0.740197699781324 0.792997894681981 0.845798089582639 0.898598284483296 0.948801664712774 0.999005044942252 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.4140000008 1 6.28631031226661 6.4707422324675 6.65517415266839 6.83960607286928 7.02403799307017 7.20846991327106 7.39290183347195 7.57733375367284 7.76176567387373 7.94619759407462 8.13062951427551 8.3150614344764 8.49949335467729 8.68392527487818 8.86835719507907 9.05278911527996 9.23722103548085 9.42165295568174 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.4140000008 1 6.28631031226661 6.4707422324675 6.65517415266839 6.83960607286928 7.02403799307017 7.20846991327106 7.39290183347195 7.57733375367284 7.76176567387373 7.94619759407462 8.13062951427551 8.3150614344764 8.49949335467729 8.68392527487818 8.86835719507907 9.05278911527996 9.23722103548085 9.42165295568174 +18 31 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 21 +p 0.4140000008 1 3.1444498003349 3.3289132332819 3.5133766662289 3.6978400991759 3.8823035321229 4.0667669650699 4.2512303980169 4.4356938309639 4.6201572639109 4.8046206968579 4.9890841298049 5.1735475627519 5.3580109956989 5.5424744286459 5.7269378615929 5.9114012945399 6.0958647274869 6.2803281604339 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.4140000008 1 3.1444498003349 3.3289132332819 3.5133766662289 3.6978400991759 3.8823035321229 4.0667669650699 4.2512303980169 4.4356938309639 4.6201572639109 4.8046206968579 4.9890841298049 5.1735475627519 5.3580109956989 5.5424744286459 5.7269378615929 5.9114012945399 6.0958647274869 6.2803281604339 +2 21 19 +p 0.4140000008 1 0 39.9 +2 1 2 +p 0.4140000008 1 0 39.9 +2 22 20 +p 0.4140000008 1 0 39.9 +2 1 2 +p 0.4140000008 1 0 39.9 +2 22 21 +p 0.4140000008 1 0 80 +2 1 2 +p 0.4140000008 1 0 80 +20 29 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 19 +p 0.4140000008 1 0.000994971172125231 0.0537951660724078 0.10659536097269 0.159395555872973 0.212195750773256 0.264995945673538 0.317796140573821 0.370596335474103 0.423396530374386 0.476196725274669 0.528996920174951 0.581797115075234 0.634597309975517 0.687397504875799 0.740197699776082 0.792997894676365 0.845798089576647 0.89859828447693 0.948801664709591 0.999005044942252 +20 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 +p 0.4140000008 1 0.000994971172125231 0.0537951660724078 0.10659536097269 0.159395555872973 0.212195750773256 0.264995945673538 0.317796140573821 0.370596335474103 0.423396530374386 0.476196725274669 0.528996920174951 0.581797115075234 0.634597309975517 0.687397504875799 0.740197699776082 0.792997894676365 0.845798089576647 0.89859828447693 0.948801664709591 0.999005044942252 +2 1 4 +p 0.4140000008 1 0 10 +2 1 4 +p 0.4140000008 1 0 10 +2 4 3 +p 0.4140000008 1 0 39.9 +2 1 2 +p 0.4140000008 1 0 39.9 +20 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 +p 0.4140000008 1 0.000994971172121984 0.0537951660727807 0.106595360973439 0.159395555874098 0.212195750774757 0.264995945675416 0.317796140576074 0.370596335476733 0.423396530377392 0.47619672527805 0.528996920178709 0.581797115079368 0.634597309980027 0.687397504880686 0.740197699781344 0.792997894682003 0.845798089582662 0.898598284483321 0.948801664712786 0.999005044942252 +20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 22 +p 0.4140000008 1 0.000994971172121984 0.0537951660727807 0.106595360973439 0.159395555874098 0.212195750774757 0.264995945675416 0.317796140576074 0.370596335476733 0.423396530377392 0.47619672527805 0.528996920178709 0.581797115079368 0.634597309980027 0.687397504880686 0.740197699781344 0.792997894682003 0.845798089582662 0.898598284483321 0.948801664712786 0.999005044942252 +2 1 4 +p 0.4140000008 1 0 80 +2 4 3 +p 0.4140000008 1 0 80 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.4140000008 1 6.28631031226661 6.4707422324675 6.65517415266839 6.83960607286928 7.02403799307017 7.20846991327106 7.39290183347195 7.57733375367284 7.76176567387373 7.94619759407462 8.13062951427551 8.3150614344764 8.49949335467729 8.68392527487818 8.86835719507907 9.05278911527996 9.23722103548085 9.42165295568174 +18 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 5 +p 0.4140000008 1 6.28631031226661 6.4707422324675 6.65517415266839 6.83960607286928 7.02403799307017 7.20846991327106 7.39290183347195 7.57733375367284 7.76176567387373 7.94619759407462 8.13062951427551 8.3150614344764 8.49949335467729 8.68392527487818 8.86835719507907 9.05278911527996 9.23722103548085 9.42165295568174 +2 4 22 +p 0.4140000008 1 0 39.9 +2 4 3 +p 0.4140000008 1 0 39.9 +18 31 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 21 +p 0.4140000008 1 3.1444498003349 3.3289132332819 3.5133766662289 3.6978400991759 3.8823035321229 4.0667669650699 4.2512303980169 4.4356938309639 4.6201572639109 4.8046206968579 4.9890841298049 5.1735475627519 5.3580109956989 5.5424744286459 5.7269378615929 5.9114012945399 6.0958647274869 6.2803281604339 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.4140000008 1 3.1444498003349 3.3289132332819 3.5133766662289 3.6978400991759 3.8823035321229 4.0667669650699 4.2512303980169 4.4356938309639 4.6201572639109 4.8046206968579 4.9890841298049 5.1735475627519 5.3580109956989 5.5424744286459 5.7269378615929 5.9114012945399 6.0958647274869 6.2803281604339 +20 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 +p 0.4140000008 1 0.00099497117212322 0.0537951660724058 0.106595360972688 0.159395555872971 0.212195750773254 0.264995945673536 0.317796140573819 0.370596335474102 0.423396530374384 0.476196725274667 0.52899692017495 0.581797115075232 0.634597309975515 0.687397504875798 0.74019769977608 0.792997894676363 0.845798089576645 0.898598284476928 0.94880166470959 0.999005044942252 +20 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 20 +p 0.4140000008 1 0.00099497117212322 0.0537951660724058 0.106595360972688 0.159395555872971 0.212195750773254 0.264995945673536 0.317796140573819 0.370596335474102 0.423396530374384 0.476196725274667 0.52899692017495 0.581797115075232 0.634597309975515 0.687397504875798 0.74019769977608 0.792997894676363 0.845798089576645 0.898598284476928 0.94880166470959 0.999005044942252 +20 29 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 19 +p 0.4140000008 1 0.000994971172125155 0.0537951660724033 0.106595360972681 0.15939555587296 0.212195750773238 0.264995945673516 0.317796140573794 0.370596335474072 0.42339653037435 0.476196725274628 0.528996920174906 0.581797115075184 0.634597309975462 0.68739750487574 0.740197699776018 0.792997894676296 0.845798089576574 0.898598284476852 0.948801664709552 0.999005044942252 +20 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 +p 0.4140000008 1 0.000994971172125155 0.0537951660724033 0.106595360972681 0.15939555587296 0.212195750773238 0.264995945673516 0.317796140573794 0.370596335474072 0.42339653037435 0.476196725274628 0.528996920174906 0.581797115075184 0.634597309975462 0.68739750487574 0.740197699776018 0.792997894676296 0.845798089576574 0.898598284476852 0.948801664709552 0.999005044942252 +18 31 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 21 +p 0.4140000008 1 3.1444498003349 3.3289132332819 3.5133766662289 3.6978400991759 3.8823035321229 4.0667669650699 4.2512303980169 4.4356938309639 4.6201572639109 4.8046206968579 4.9890841298049 5.1735475627519 5.3580109956989 5.5424744286459 5.7269378615929 5.9114012945399 6.0958647274869 6.2803281604339 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.4140000008 1 3.1444498003349 3.3289132332819 3.5133766662289 3.6978400991759 3.8823035321229 4.0667669650699 4.2512303980169 4.4356938309639 4.6201572639109 4.8046206968579 4.9890841298049 5.1735475627519 5.3580109956989 5.5424744286459 5.7269378615929 5.9114012945399 6.0958647274869 6.2803281604339 +20 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 +p 0.4140000008 1 0.000994971172121957 0.0537951660727788 0.106595360973436 0.159395555874092 0.212195750774749 0.264995945675406 0.317796140576063 0.37059633547672 0.423396530377377 0.476196725278034 0.528996920178691 0.581797115079348 0.634597309980004 0.687397504880661 0.740197699781318 0.792997894681975 0.845798089582632 0.898598284483289 0.94880166471277 0.999005044942252 +20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 22 +p 0.4140000008 1 0.000994971172121957 0.0537951660727788 0.106595360973436 0.159395555874092 0.212195750774749 0.264995945675406 0.317796140576063 0.37059633547672 0.423396530377377 0.476196725278034 0.528996920178691 0.581797115079348 0.634597309980004 0.687397504880661 0.740197699781318 0.792997894681975 0.845798089582632 0.898598284483289 0.94880166471277 0.999005044942252 +20 29 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 19 +p 0.4140000008 1 0.000994971172121721 0.0537951660727699 0.106595360973418 0.159395555874066 0.212195750774714 0.264995945675363 0.317796140576011 0.370596335476659 0.423396530377307 0.476196725277955 0.528996920178604 0.581797115079252 0.6345973099799 0.687397504880548 0.740197699781197 0.792997894681845 0.845798089582493 0.898598284483141 0.948801664712696 0.999005044942251 +20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 22 +p 0.4140000008 1 0.000994971172121721 0.0537951660727699 0.106595360973418 0.159395555874066 0.212195750774714 0.264995945675363 0.317796140576011 0.370596335476659 0.423396530377307 0.476196725277955 0.528996920178604 0.581797115079252 0.6345973099799 0.687397504880548 0.740197699781197 0.792997894681845 0.845798089582493 0.898598284483141 0.948801664712696 0.999005044942251 +18 31 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 21 +p 0.4140000008 1 3.1444498003349 3.3289132332819 3.5133766662289 3.6978400991759 3.8823035321229 4.0667669650699 4.2512303980169 4.4356938309639 4.6201572639109 4.8046206968579 4.9890841298049 5.1735475627519 5.3580109956989 5.5424744286459 5.7269378615929 5.9114012945399 6.0958647274869 6.2803281604339 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.4140000008 1 3.1444498003349 3.3289132332819 3.5133766662289 3.6978400991759 3.8823035321229 4.0667669650699 4.2512303980169 4.4356938309639 4.6201572639109 4.8046206968579 4.9890841298049 5.1735475627519 5.3580109956989 5.5424744286459 5.7269378615929 5.9114012945399 6.0958647274869 6.2803281604339 +20 29 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 19 +p 0.4140000008 1 0.000994971172125318 0.0537951660724127 0.1065953609727 0.159395555872987 0.212195750773275 0.264995945673562 0.317796140573849 0.370596335474137 0.423396530374424 0.476196725274711 0.528996920174999 0.581797115075286 0.634597309975573 0.68739750487586 0.740197699776148 0.792997894676435 0.845798089576722 0.89859828447701 0.948801664709631 0.999005044942252 +20 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 +p 0.4140000008 1 0.000994971172125318 0.0537951660724127 0.1065953609727 0.159395555872987 0.212195750773275 0.264995945673562 0.317796140573849 0.370596335474137 0.423396530374424 0.476196725274711 0.528996920174999 0.581797115075286 0.634597309975573 0.68739750487586 0.740197699776148 0.792997894676435 0.845798089576722 0.89859828447701 0.948801664709631 0.999005044942252 +2 1 4 +p 0.4140000008 1 0 10 +2 2 3 +p 0.4140000008 1 0 10 +37 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 2 +p 0.570591376823391 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.570591376823391 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +36 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 1 +p 0.570591376823391 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 37 +p 0.570591376823391 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +2 38 2 +p 0.570591376823391 1 0 20 +2 39 1 +p 0.570591376823391 1 0 20 +37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 38 +p 0.570591376823391 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.570591376823391 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +2 75 76 +p 0.570591376823391 1 2 12 +2 3 1 +p 0.570591376823391 1 2 12 +4 77 78 79 75 +p 0.570591376823391 1 1.36943840602053 1.50367701987011 1.63791563371968 1.77215424756926 +4 3 4 5 1 +p 0.570591376823391 1 1.36943840602053 1.50367701987011 1.63791563371968 1.77215424756926 +4 80 81 82 76 +p 0.570591376823391 1 1.36943840602053 1.50367701987011 1.63791563371968 1.77215424756926 +4 3 4 5 1 +p 0.570591376823391 1 1.36943840602053 1.50367701987011 1.63791563371968 1.77215424756926 +2 77 80 +p 0.570591376823391 1 2 12 +2 3 1 +p 0.570591376823391 1 2 12 +2 1 2 +p 0.570591376823391 1 19 39 +2 3 38 +p 0.570591376823391 1 19 39 +36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 2 +p 0.570591376823391 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 37 +p 0.570591376823391 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +2 1 2 +p 0.570591376823391 1 0.297958971930918 100.683346173608 +2 1 2 +p 0.570591376823391 1 0.297958971930918 100.683346173608 +4 2 24 25 23 +p 0.570591376823391 1 0 0.25 0.5 1 +4 4 5 6 2 +p 0.570591376823391 1 0 0.25 0.5 1 +2 3 7 +p 0.570591376823391 1 0.297958971930918 100.683346173608 +2 1 2 +p 0.570591376823391 1 0.297958971930918 100.683346173608 +2 2 12 +p 0.570591376823391 1 0 10 +2 4 8 +p 0.570591376823391 1 0 10 +4 2 23 24 22 +p 0.570591376823391 1 0 0.25 0.5 1 +4 8 9 10 7 +p 0.570591376823391 1 0 0.25 0.5 1 +4 2 17 18 16 +p 0.570591376823391 1 0.018522783780353 0.140412875108959 0.262302966437565 0.384193057766171 +4 6 7 8 2 +p 0.570591376823391 1 0.018522783780353 0.140412875108959 0.262302966437565 0.384193057766171 +2 3 6 +p 0.570591376823391 1 0.297958971930918 100.683346173608 +2 3 7 +p 0.570591376823391 1 0.297958971930918 100.683346173608 +4 2 17 18 16 +p 0.570591376823391 1 0.018522783780353 0.140412875108959 0.262302966437565 0.384193057766171 +4 6 7 8 2 +p 0.570591376823391 1 0.018522783780353 0.140412875108959 0.262302966437565 0.384193057766171 +2 3 6 +p 0.570591376823391 1 0.297958971930918 100.683346173608 +2 1 2 +p 0.570591376823391 1 0.297958971930918 100.683346173608 +4 2 22 23 21 +p 0.570591376823391 1 0 0.25 0.5 1 +4 4 5 6 2 +p 0.570591376823391 1 0 0.25 0.5 1 +2 2 12 +p 0.570591376823391 1 0 10 +2 4 8 +p 0.570591376823391 1 0 10 +4 2 22 23 21 +p 0.570591376823391 1 0 0.25 0.5 1 +4 8 9 10 7 +p 0.570591376823391 1 0 0.25 0.5 1 +10 1 3 4 5 6 7 8 9 10 2 +p 0.570591376823391 1 0 0.1215 0.243 0.3645 0.486 0.6075 0.729 0.8505 0.92525 1 +10 1 3 4 5 6 7 8 9 10 2 +p 0.570591376823391 1 0 0.1215 0.243 0.3645 0.486 0.6075 0.729 0.8505 0.92525 1 +13 1 12 13 14 15 16 17 18 19 20 21 22 11 +p 0.570591376823391 1 0 0.0833333333333333 0.166666666666667 0.25 0.333333333333333 0.438693732671857 0.539943732671857 0.633693732671857 0.727443732671857 0.821193732671857 0.905568732671857 0.952784366335929 1 +13 1 4 5 6 7 8 9 10 11 12 13 14 3 +p 0.570591376823391 1 0 0.0833333333333333 0.166666666666667 0.25 0.333333333333333 0.438693732671857 0.539943732671857 0.633693732671857 0.727443732671857 0.821193732671857 0.905568732671857 0.952784366335929 1 +13 11 26 27 28 29 30 31 32 33 34 35 36 23 +p 0.570591376823391 1 0 0.0833333333333333 0.166666666666667 0.25 0.333333333333333 0.416666666666667 0.5 0.583333333333333 0.666666666666667 0.75 0.833333333333334 0.916666666666667 1 +13 13 19 20 21 22 23 24 25 26 27 28 29 16 +p 0.570591376823391 1 0 0.0833333333333333 0.166666666666667 0.25 0.333333333333333 0.416666666666667 0.5 0.583333333333333 0.666666666666667 0.75 0.833333333333334 0.916666666666667 1 +2 1 11 +p 0.570591376823391 1 0 10 +2 1 2 +p 0.570591376823391 1 0 10 +10 1 3 4 5 6 7 8 9 10 2 +p 0.570591376823391 1 0 0.135 0.27 0.3915 0.50085 0.6102 0.71955 0.8289 0.91445 1 +10 11 13 14 15 16 17 18 19 20 12 +p 0.570591376823391 1 0 0.135 0.27 0.3915 0.50085 0.6102 0.71955 0.8289 0.91445 1 +12 1 12 13 14 15 16 17 18 19 20 21 11 +p 0.570591376823391 1 0 0.0833333333333333 0.166666666666667 0.25 0.354653170111916 0.467153170111916 0.568403170111917 0.669653170111917 0.760778170111917 0.842790670111917 0.921395335055958 1 +12 2 16 17 18 19 20 21 22 23 24 25 15 +p 0.570591376823391 1 0 0.0833333333333333 0.166666666666667 0.25 0.354653170111916 0.467153170111916 0.568403170111917 0.669653170111917 0.760778170111917 0.842790670111917 0.921395335055958 1 +13 11 25 26 27 28 29 30 31 32 33 34 35 22 +p 0.570591376823391 1 0 0.0833333333333333 0.166666666666667 0.25 0.333333333333333 0.416666666666667 0.5 0.583333333333333 0.666666666666667 0.75 0.833333333333334 0.916666666666667 1 +13 13 19 20 21 22 23 24 25 26 27 28 29 16 +p 0.570591376823391 1 0 0.0833333333333333 0.166666666666667 0.25 0.333333333333333 0.416666666666667 0.5 0.583333333333333 0.666666666666667 0.75 0.833333333333334 0.916666666666667 1 +12 11 24 25 26 27 28 29 30 31 32 33 21 +p 0.570591376823391 1 0 0.10935 0.2187 0.317115 0.4056885 0.494262 0.5828355 0.671409 0.7599825 0.848556 0.924278 1 +12 1 3 4 5 6 7 8 9 10 11 12 2 +p 0.570591376823391 1 0 0.10935 0.2187 0.317115 0.4056885 0.494262 0.5828355 0.671409 0.7599825 0.848556 0.924278 1 +4 1 14 15 13 +p 0.570591376823391 1 0.018522783780353 0.140412875108959 0.262302966437565 0.384193057766171 +4 29 30 31 15 +p 0.570591376823391 1 0.018522783780353 0.140412875108959 0.262302966437565 0.384193057766171 +12 11 24 25 26 27 28 29 30 31 32 33 21 +p 0.570591376823391 1 0 0.10935 0.2187 0.317115 0.4056885 0.494262 0.5828355 0.671409 0.7599825 0.848556 0.924278 1 +12 1 3 4 5 6 7 8 9 10 11 12 2 +p 0.570591376823391 1 0 0.10935 0.2187 0.317115 0.4056885 0.494262 0.5828355 0.671409 0.7599825 0.848556 0.924278 1 +4 1 14 15 13 +p 0.570591376823391 1 0.018522783780353 0.140412875108959 0.262302966437565 0.384193057766171 +4 26 27 28 3 +p 0.570591376823391 1 0.018522783780353 0.140412875108959 0.262302966437565 0.384193057766171 +10 1 3 4 5 6 7 8 9 10 2 +p 0.570591376823391 1 0 0.135 0.27 0.3915 0.50085 0.6102 0.71955 0.8289 0.91445 1 +10 1 3 4 5 6 7 8 9 10 2 +p 0.570591376823391 1 0 0.135 0.27 0.3915 0.50085 0.6102 0.71955 0.8289 0.91445 1 +11 1 12 13 14 15 16 17 18 19 20 11 +p 0.570591376823391 1 0 0.0833333333333333 0.166666666666667 0.274389194178656 0.399389194178656 0.524389194178656 0.636889194178656 0.738139194178656 0.839389194178656 0.919694597089328 1 +11 32 33 34 35 36 37 38 39 40 41 26 +p 0.570591376823391 1 0 0.0833333333333333 0.166666666666667 0.274389194178656 0.399389194178656 0.524389194178656 0.636889194178656 0.738139194178656 0.839389194178656 0.919694597089328 1 +2 1 11 +p 0.570591376823391 1 0 10 +2 32 42 +p 0.570591376823391 1 0 10 +10 1 3 4 5 6 7 8 9 10 2 +p 0.570591376823391 1 0 0.135 0.27 0.3915 0.50085 0.6102 0.71955 0.8289 0.91445 1 +10 11 13 14 15 16 17 18 19 20 12 +p 0.570591376823391 1 0 0.135 0.27 0.3915 0.50085 0.6102 0.71955 0.8289 0.91445 1 +11 1 12 13 14 15 16 17 18 19 20 11 +p 0.570591376823391 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.754515 0.8430885 0.92154425 1 +11 42 43 44 45 46 47 48 49 50 51 29 +p 0.570591376823391 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.754515 0.8430885 0.92154425 1 +37 52 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 53 +p 0.570591376823391 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.570591376823391 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +2 89 53 +p 0.570591376823391 1 0 22.5 +2 90 52 +p 0.570591376823391 1 0 22.5 +37 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 89 +p 0.570591376823391 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.570591376823391 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 2 +p 0.570591376823391 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 37 +p 0.570591376823391 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 1 +p 0.570591376823391 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 37 +p 0.570591376823391 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +2 1 2 +p 0.570591376823391 1 0.500999999999998 23.001 +2 3 38 +p 0.570591376823391 1 0.500999999999998 23.001 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.173180588048852 1 3.14659267442448 3.3308040045374 3.51501533465032 3.69922666476323 3.88343799487615 4.06764932498907 4.25186065510199 4.4360719852149 4.62028331532782 4.80449464544074 4.98870597555366 5.17291730566658 5.35712863577949 5.54133996589241 5.72555129600533 5.90976262611825 6.09397395623116 6.27818528634408 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.173180588048852 1 3.14659267442448 3.3308040045374 3.51501533465032 3.69922666476323 3.88343799487615 4.06764932498907 4.25186065510199 4.4360719852149 4.62028331532782 4.80449464544074 4.98870597555366 5.17291730566658 5.35712863577949 5.54133996589241 5.72555129600533 5.90976262611825 6.09397395623116 6.27818528634408 +2 19 1 +p 0.173180588048852 1 -11.0003571474128 -5.00025000156263 +2 1 2 +p 0.173180588048852 1 -11.0003571474128 -5.00025000156263 +2 2 20 +p 0.173180588048852 1 -44.9997499984373 -38.9996428525871 +2 1 2 +p 0.173180588048852 1 -44.9997499984373 -38.9996428525871 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.173180588048852 1 4.71953189826903 4.90349112284669 5.08745034742435 5.27140957200201 5.45536879657966 5.63932802115732 5.82328724573498 6.00724647031264 6.1912056948903 6.37516491946796 6.55912414404561 6.74308336862327 6.92704259320093 7.11100181777859 7.29496104235625 7.47892026693391 7.66287949151157 7.84683871608922 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.173180588048852 1 4.71953189826903 4.90349112284669 5.08745034742435 5.27140957200201 5.45536879657966 5.63932802115732 5.82328724573498 6.00724647031264 6.1912056948903 6.37516491946796 6.55912414404561 6.74308336862327 6.92704259320093 7.11100181777859 7.29496104235625 7.47892026693391 7.66287949151157 7.84683871608922 +2 19 1 +p 0.173180588048852 1 0 20 +2 4 2 +p 0.173180588048852 1 0 20 +2 20 2 +p 0.173180588048852 1 0 20 +2 3 1 +p 0.173180588048852 1 0 20 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.173180588048852 1 3.14659267442448 3.3308040045374 3.51501533465032 3.69922666476323 3.88343799487615 4.06764932498907 4.25186065510199 4.4360719852149 4.62028331532782 4.80449464544074 4.98870597555366 5.17291730566658 5.35712863577949 5.54133996589241 5.72555129600533 5.90976262611825 6.09397395623116 6.27818528634408 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.173180588048852 1 3.14659267442448 3.3308040045374 3.51501533465032 3.69922666476323 3.88343799487615 4.06764932498907 4.25186065510199 4.4360719852149 4.62028331532782 4.80449464544074 4.98870597555366 5.17291730566658 5.35712863577949 5.54133996589241 5.72555129600533 5.90976262611825 6.09397395623116 6.27818528634408 +2 19 1 +p 0.173180588048852 1 9.09999999999999 29.1 +2 3 1 +p 0.173180588048852 1 9.09999999999999 29.1 +2 3 4 +p 0.173180588048852 1 -11.0003571474128 -5.00025000156263 +2 19 1 +p 0.173180588048852 1 -11.0003571474128 -5.00025000156263 +2 20 2 +p 0.173180588048852 1 9.09999999999999 29.1 +2 4 2 +p 0.173180588048852 1 9.09999999999999 29.1 +2 3 4 +p 0.173180588048852 1 -44.9997499984373 -38.9996428525871 +2 2 20 +p 0.173180588048852 1 -44.9997499984373 -38.9996428525871 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.173180588048852 1 4.71953189826903 4.90349112284669 5.08745034742435 5.27140957200201 5.45536879657966 5.63932802115732 5.82328724573498 6.00724647031264 6.1912056948903 6.37516491946796 6.55912414404561 6.74308336862327 6.92704259320093 7.11100181777859 7.29496104235625 7.47892026693391 7.66287949151157 7.84683871608922 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.173180588048852 1 4.71953189826903 4.90349112284669 5.08745034742435 5.27140957200201 5.45536879657966 5.63932802115732 5.82328724573498 6.00724647031264 6.1912056948903 6.37516491946796 6.55912414404561 6.74308336862327 6.92704259320093 7.11100181777859 7.29496104235625 7.47892026693391 7.66287949151157 7.84683871608922 +2 1 2 +p 0.4000000008 1 0 90 +2 2 3 +p 0.4000000008 1 0 90 +2 2 3 +p 0.4000000008 1 0 100 +2 4 3 +p 0.4000000008 1 0 100 +2 4 3 +p 0.4000000008 1 0 90 +2 2 3 +p 0.4000000008 1 0 90 +2 1 4 +p 0.4000000008 1 0 100 +2 4 3 +p 0.4000000008 1 0 100 +2 5 6 +p 0.4000000008 1 3.5 79.5 +2 1 3 +p 0.4000000008 1 3.5 79.5 +2 7 5 +p 0.4000000008 1 -86 -6 +2 1 3 +p 0.4000000008 1 -86 -6 +2 8 6 +p 0.4000000008 1 -86 -6 +2 1 3 +p 0.4000000008 1 -86 -6 +2 7 8 +p 0.4000000008 1 3.5 79.5 +2 1 3 +p 0.4000000008 1 3.5 79.5 +2 1 2 +p 0.4000000008 1 0 4 +2 1 4 +p 0.4000000008 1 0 4 +2 4 3 +p 0.4000000008 1 0 4 +2 1 4 +p 0.4000000008 1 0 4 +2 1 4 +p 0.4000000008 1 0 90 +2 1 2 +p 0.4000000008 1 0 90 +2 1 2 +p 0.4000000008 1 0 100 +2 2 3 +p 0.4000000008 1 0 100 +2 2 3 +p 0.4000000008 1 0 4 +2 4 3 +p 0.4000000008 1 0 4 +2 1 2 +p 0.4000000008 1 0 4 +2 2 3 +p 0.4000000008 1 0 4 +2 1 4 +p 0.4000000008 1 0 90 +2 4 3 +p 0.4000000008 1 0 90 +2 1 2 +p 0.4000000008 1 0 100 +2 1 4 +p 0.4000000008 1 0 100 +2 1 2 +p 0.4000000008 1 3 6 +2 3 4 +p 0.4000000008 1 3 6 +2 2 4 +p 0.4000000008 1 0 76 +2 1 2 +p 0.4000000008 1 0 76 +2 3 4 +p 0.4000000008 1 3 6 +2 3 4 +p 0.4000000008 1 3 6 +2 1 2 +p 0.4000000008 1 3 6 +2 1 2 +p 0.4000000008 1 3 6 +2 4 2 +p 0.4000000008 1 0 80 +2 1 4 +p 0.4000000008 1 0 80 +2 1 2 +p 0.4000000008 1 3 6 +2 3 4 +p 0.4000000008 1 3 6 +2 4 2 +p 0.4000000008 1 0 80 +2 2 3 +p 0.4000000008 1 0 80 +2 2 4 +p 0.4000000008 1 0 76 +2 4 3 +p 0.4000000008 1 0 76 +9 1 3 4 5 6 7 8 9 2 +p 0.0800000008 1 0 0.180683561953331 0.361367123906662 0.542050685859994 0.722734247813325 0.903417809766656 1.08410137171999 1.26478493367332 1.44546849562665 +9 1 3 4 5 6 7 8 9 2 +p 0.0800000008 1 0 0.180683561953331 0.361367123906662 0.542050685859994 0.722734247813325 0.903417809766656 1.08410137171999 1.26478493367332 1.44546849562665 +2 2 10 +p 0.0800000008 1 0 1.9 +2 3 1 +p 0.0800000008 1 0 1.9 +2 52 15 +p 0.0800000008 1 0 4 +2 1 11 +p 0.0800000008 1 0 4 +4 10 13 14 12 +p 0.0800000008 1 3.01626482242173 3.09981670986711 3.18336859731248 3.26692048475786 +4 3 4 5 1 +p 0.0800000008 1 3.01626482242173 3.09981670986711 3.18336859731248 3.26692048475786 +37 11 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 15 +p 0.0800000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.0800000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +2 51 12 +p 0.0800000008 1 0 1.9 +2 3 1 +p 0.0800000008 1 0 1.9 +17 51 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 53 +p 0.0800000008 1 1.69612415796314 1.87680771991662 2.05749128187009 2.23817484382357 2.41885840577705 2.59954196773052 2.780225529684 2.96090909163748 3.14159265359095 3.32227621554443 3.50295977749791 3.68364333945138 3.86432690140486 4.04501046335834 4.22569402531182 4.40637758726529 4.58706114921877 +17 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 2 +p 0.0800000008 1 1.69612415796314 1.87680771991662 2.05749128187009 2.23817484382357 2.41885840577705 2.59954196773052 2.780225529684 2.96090909163748 3.14159265359095 3.32227621554443 3.50295977749791 3.68364333945138 3.86432690140486 4.04501046335834 4.22569402531182 4.40637758726529 4.58706114921877 +9 69 70 71 72 73 74 75 76 52 +p 0.0800000008 1 4.8377168115506 5.01840037350422 5.19908393545785 5.37976749741147 5.56045105936509 5.74113462131872 5.92181818327234 6.10250174522596 6.28318530717959 +9 10 11 12 13 14 15 16 17 1 +p 0.0800000008 1 4.8377168115506 5.01840037350422 5.19908393545785 5.37976749741147 5.56045105936509 5.74113462131872 5.92181818327234 6.10250174522596 6.28318530717959 +2 53 77 +p 0.0800000008 1 0 1.9 +2 4 2 +p 0.0800000008 1 0 1.9 +2 69 78 +p 0.0800000008 1 0 1.9 +2 4 2 +p 0.0800000008 1 0 1.9 +4 77 79 80 78 +p 0.0800000008 1 6.15785747601152 6.2414093634569 6.32496125090227 6.40851313834765 +4 2 7 8 6 +p 0.0800000008 1 6.15785747601152 6.2414093634569 6.32496125090227 6.40851313834765 +2 10 2 +p 0.0800000008 1 -6.46862696659796 1.4686269665968 +2 4 3 +p 0.0800000008 1 -6.46862696659796 1.4686269665968 +2 1 2 +p 0.0800000008 1 1.03137303340311 8.96862696659689 +2 3 6 +p 0.0800000008 1 1.03137303340311 8.96862696659689 +2 1 2 +p 0.0800000008 1 1.03137303340311 8.96862696659689 +2 1 2 +p 0.0800000008 1 1.03137303340311 8.96862696659689 +36 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 1 +p 0.0800000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 37 +p 0.0800000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +2 4 3 +p 0.0800000008 1 -6.46862696659796 1.4686269665968 +2 2 1 +p 0.0800000008 1 -6.46862696659796 1.4686269665968 +2 1 2 +p 0.0800000008 1 2 18 +2 3 38 +p 0.0800000008 1 2 18 +37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 2 +p 0.0800000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.0800000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +37 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 2 +p 0.225137578460818 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.225137578460818 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 2 +p 0.225137578460818 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 37 +p 0.225137578460818 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +2 38 2 +p 0.225137578460818 1 0 15 +2 39 1 +p 0.225137578460818 1 0 15 +37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 38 +p 0.225137578460818 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.225137578460818 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +2 1 2 +p 0.225137578460818 1 2 17 +2 3 38 +p 0.225137578460818 1 2 17 +36 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 1 +p 0.225137578460818 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 37 +p 0.225137578460818 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +2 1 2 +p 0.0620000008 1 2 13.5 +2 38 3 +p 0.0620000008 1 2 13.5 +36 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 2 +p 0.0620000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 1 +p 0.0620000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 1 +p 0.0620000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 37 +p 0.0620000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +37 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 2 +p 0.0620000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.0620000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +2 38 2 +p 0.0620000008 1 0 4 +2 39 1 +p 0.0620000008 1 0 4 +37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 38 +p 0.0620000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.0620000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.251116608224409 1 3.16359442864602 3.34580555237998 3.52801667611395 3.71022779984791 3.89243892358188 4.07465004731584 4.25686117104981 4.43907229478377 4.62128341851774 4.8034945422517 4.98570566598567 5.16791678971963 5.3501279134536 5.53233903718756 5.71455016092153 5.89676128465549 6.07897240838946 6.26118353212342 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.251116608224409 1 3.16359442864602 3.34580555237998 3.52801667611395 3.71022779984791 3.89243892358188 4.07465004731584 4.25686117104981 4.43907229478377 4.62128341851774 4.8034945422517 4.98570566598567 5.16791678971963 5.3501279134536 5.53233903718756 5.71455016092153 5.89676128465549 6.07897240838946 6.26118353212342 +2 19 1 +p 0.251116608224409 1 36.9887498046261 37.9987898535542 +2 4 15 +p 0.251116608224409 1 36.9887498046261 37.9987898535542 +2 2 20 +p 0.251116608224409 1 28.0012101464458 28.9912501953738 +2 30 17 +p 0.251116608224409 1 28.0012101464458 28.9912501953738 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.251116608224409 1 3.16659525849218 3.34845334342073 3.53031142834929 3.71216951327784 3.89402759820639 4.07588568313495 4.2577437680635 4.43960185299205 4.62145993792061 4.80331802284916 4.98517610777771 5.16703419270627 5.34889227763482 5.53075036256337 5.71260844749193 5.89446653242048 6.07632461734903 6.25818270227759 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.251116608224409 1 3.16659525849218 3.34845334342073 3.53031142834929 3.71216951327784 3.89402759820639 4.07588568313495 4.2577437680635 4.43960185299205 4.62145993792061 4.80331802284916 4.98517610777771 5.16703419270627 5.34889227763482 5.53075036256337 5.71260844749193 5.89446653242048 6.07632461734903 6.25818270227759 +2 19 1 +p 0.251116608224409 1 5.00063040789759 17 +2 17 15 +p 0.251116608224409 1 5.00063040789759 17 +2 20 2 +p 0.251116608224409 1 5.00064048080828 17 +2 32 30 +p 0.251116608224409 1 5.00064048080828 17 +27 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 2 +p 0.251116608224409 1 0.501472155827491 0.517097062813329 0.532721969799167 0.548346876785005 0.569180086099455 0.592617446578212 0.616054807056969 0.639492167535725 0.662929528014482 0.686366888493239 0.709804248971996 0.730897873402877 0.746275125612989 0.760513322103834 0.774751518594679 0.788989715085524 0.807973977073317 0.829331271809584 0.850688566545851 0.872045861282118 0.893403156018385 0.914760450754652 0.936117745490919 0.957475040227187 0.978832334963454 0.988376061665581 0.997919788367708 +27 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 19 +p 0.251116608224409 1 0.501472155827491 0.517097062813329 0.532721969799167 0.548346876785005 0.569180086099455 0.592617446578212 0.616054807056969 0.639492167535725 0.662929528014482 0.686366888493239 0.709804248971996 0.730897873402877 0.746275125612989 0.760513322103834 0.774751518594679 0.788989715085524 0.807973977073317 0.829331271809584 0.850688566545851 0.872045861282118 0.893403156018385 0.914760450754652 0.936117745490919 0.957475040227187 0.978832334963454 0.988376061665581 0.997919788367708 +2 14 2 +p 0.251116608224409 1 0 16.0112501972302 +2 1 2 +p 0.251116608224409 1 0 16.0112501972302 +2 1 3 +p 0.251116608224409 1 -54.4998275856942 -52.4998148141796 +2 2 20 +p 0.251116608224409 1 -54.4998275856942 -52.4998148141796 +2 19 1 +p 0.251116608224409 1 26.000172414396 45 +2 2 4 +p 0.251116608224409 1 26.000172414396 45 +11 2 30 31 32 33 34 35 36 37 38 29 +p 0.251116608224409 1 0 0.1215 0.243 0.35235 0.450765 0.54918 0.647595 0.74601 0.844425 0.9222125 1 +11 3 6 7 8 9 10 11 12 13 14 5 +p 0.251116608224409 1 0 0.1215 0.243 0.35235 0.450765 0.54918 0.647595 0.74601 0.844425 0.9222125 1 +2 29 2 +p 0.251116608224409 1 12 22.0005959501568 +2 5 16 +p 0.251116608224409 1 12 22.0005959501568 +13 40 41 42 43 44 45 46 47 48 49 50 51 2 +p 0.251116608224409 1 0 0.0833333333333333 0.166666666666667 0.25 0.333333333333333 0.416666666666667 0.5 0.583333333333333 0.666666666666667 0.75 0.833333333333334 0.916666666666667 1 +13 16 18 19 20 21 22 23 24 25 26 27 28 17 +p 0.251116608224409 1 0 0.0833333333333333 0.166666666666667 0.25 0.333333333333333 0.416666666666667 0.5 0.583333333333333 0.666666666666667 0.75 0.833333333333334 0.916666666666667 1 +2 27 45 +p 0.251116608224409 1 0 50 +2 1 2 +p 0.251116608224409 1 0 50 +2 3 1 +p 0.251116608224409 1 1.49981481417966 3.49982758569428 +2 19 1 +p 0.251116608224409 1 1.49981481417966 3.49982758569428 +2 4 2 +p 0.251116608224409 1 -54.4998275856942 3.49982758569428 +2 2 1 +p 0.251116608224409 1 -54.4998275856942 3.49982758569428 +11 1 20 21 22 23 24 25 26 27 28 19 +p 0.251116608224409 1 0 0.1215 0.243 0.35235 0.450765 0.54918 0.647595 0.74601 0.844425 0.9222125 1 +11 3 6 7 8 9 10 11 12 13 14 5 +p 0.251116608224409 1 0 0.1215 0.243 0.35235 0.450765 0.54918 0.647595 0.74601 0.844425 0.9222125 1 +2 15 44 +p 0.251116608224409 1 24.0087497150345 50 +2 15 4 +p 0.251116608224409 1 24.0087497150345 50 +2 47 65 +p 0.251116608224409 1 12 22.0005963768741 +2 5 16 +p 0.251116608224409 1 12 22.0005963768741 +2 20 2 +p 0.251116608224409 1 26.0001724153762 45 +2 15 17 +p 0.251116608224409 1 26.0001724153762 45 +13 1 28 29 30 31 32 33 34 35 36 37 38 27 +p 0.251116608224409 1 0 0.0833333333333333 0.166666666666667 0.25 0.333333333333333 0.416666666666667 0.5 0.583333333333333 0.666666666666667 0.75 0.833333333333334 0.916666666666667 1 +13 16 19 20 21 22 23 24 25 26 27 28 29 18 +p 0.251116608224409 1 0 0.0833333333333333 0.166666666666667 0.25 0.333333333333333 0.416666666666667 0.5 0.583333333333333 0.666666666666667 0.75 0.833333333333334 0.916666666666667 1 +2 27 1 +p 0.251116608224409 1 37 48.9993622995099 +2 31 18 +p 0.251116608224409 1 37 48.9993622995099 +2 33 31 +p 0.251116608224409 1 36.9887498046261 37.9987898535542 +2 19 1 +p 0.251116608224409 1 36.9887498046261 37.9987898535542 +13 28 29 30 31 32 33 34 35 36 37 38 39 1 +p 0.251116608224409 1 0 0.0833333333333333 0.166666666666667 0.25 0.333333333333333 0.416666666666667 0.5 0.583333333333333 0.666666666666667 0.75 0.833333333333334 0.916666666666667 1 +13 34 35 36 37 38 39 40 41 42 43 44 45 32 +p 0.251116608224409 1 0 0.0833333333333333 0.166666666666667 0.25 0.333333333333333 0.416666666666667 0.5 0.583333333333333 0.666666666666667 0.75 0.833333333333334 0.916666666666667 1 +2 1 19 +p 0.251116608224409 1 65 80 +2 33 46 +p 0.251116608224409 1 65 80 +2 1 28 +p 0.251116608224409 1 37.9994030281684 49 +2 34 47 +p 0.251116608224409 1 37.9994030281684 49 +2 48 46 +p 0.251116608224409 1 28.9962501953738 36.9937498046261 +2 2 1 +p 0.251116608224409 1 28.9962501953738 36.9937498046261 +13 2 32 33 34 35 36 37 38 39 40 41 42 31 +p 0.251116608224409 1 0 0.0833333333333333 0.166666666666667 0.25 0.333333333333333 0.416666666666667 0.5 0.583333333333333 0.666666666666667 0.75 0.833333333333334 0.916666666666667 1 +13 47 50 51 52 53 54 55 56 57 58 59 60 49 +p 0.251116608224409 1 0 0.0833333333333333 0.166666666666667 0.25 0.333333333333333 0.416666666666667 0.5 0.583333333333333 0.666666666666667 0.75 0.833333333333334 0.916666666666667 1 +2 2 20 +p 0.251116608224409 1 65 80 +2 61 48 +p 0.251116608224409 1 65 80 +2 49 62 +p 0.251116608224409 1 -49.4997916657623 -1.50020833423766 +2 2 1 +p 0.251116608224409 1 -49.4997916657623 -1.50020833423766 +2 63 61 +p 0.251116608224409 1 28.0012101464458 28.9912501953738 +2 2 20 +p 0.251116608224409 1 28.0012101464458 28.9912501953738 +13 1 20 21 22 23 24 25 26 27 28 29 30 19 +p 0.251116608224409 1 0 0.0833333333333333 0.166666666666667 0.25 0.333333333333333 0.416666666666667 0.5 0.583333333333333 0.666666666666667 0.75 0.833333333333334 0.916666666666667 1 +13 64 65 66 67 68 69 70 71 72 73 74 75 62 +p 0.251116608224409 1 0 0.0833333333333333 0.166666666666667 0.25 0.333333333333333 0.416666666666667 0.5 0.583333333333333 0.666666666666667 0.75 0.833333333333334 0.916666666666667 1 +2 28 2 +p 0.251116608224409 1 37 48.9993752360582 +2 63 76 +p 0.251116608224409 1 37 48.9993752360582 +2 64 30 +p 0.251116608224409 1 37.9987726493176 49 +2 77 64 +p 0.251116608224409 1 37.9987726493176 49 +13 2 40 41 42 43 44 45 46 47 48 49 50 39 +p 0.251116608224409 1 0 0.0833333333333333 0.166666666666667 0.25 0.333333333333333 0.416666666666667 0.5 0.583333333333333 0.666666666666667 0.75 0.833333333333334 0.916666666666667 1 +13 77 78 79 80 81 82 83 84 85 86 87 88 76 +p 0.251116608224409 1 0 0.0833333333333333 0.166666666666667 0.25 0.333333333333333 0.416666666666667 0.5 0.583333333333333 0.666666666666667 0.75 0.833333333333334 0.916666666666667 1 +13 21 22 23 24 25 26 27 28 29 30 31 32 19 +p 0.251116608224409 1 0 0.0657687639395143 0.131537527879029 0.197306291818543 0.284997977071229 0.3836511229805 0.482304268889772 0.580957414799043 0.679610560708314 0.778263706617586 0.876916852526857 0.933847290274612 0.990777728022367 +13 1 3 4 5 6 7 8 9 10 11 12 13 2 +p 0.251116608224409 1 0 0.0657687639395143 0.131537527879029 0.197306291818543 0.284997977071229 0.3836511229805 0.482304268889772 0.580957414799043 0.679610560708314 0.778263706617586 0.876916852526857 0.933847290274612 0.990777728022367 +13 20 33 34 35 36 37 38 39 40 41 42 43 21 +p 0.251116608224409 1 0.667656509622193 0.69006379784123 0.712471086060266 0.734878374279302 0.764754758571351 0.798365690899906 0.831976623228461 0.865587555557015 0.89919848788557 0.932809420214125 0.966420352542679 0.98321017627134 1 +13 15 16 17 18 19 20 21 22 23 24 25 26 1 +p 0.251116608224409 1 0.667656509622193 0.69006379784123 0.712471086060266 0.734878374279302 0.764754758571351 0.798365690899906 0.831976623228461 0.865587555557015 0.89919848788557 0.932809420214125 0.966420352542679 0.98321017627134 1 +27 28 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 40 +p 0.251116608224409 1 0.500542828541322 0.516781432698461 0.5330200368556 0.549258641012738 0.570910113222257 0.595268019457965 0.619625925693673 0.643983831929381 0.668341738165089 0.692699644400797 0.717057550636505 0.734814464282336 0.749611892320529 0.763313214578115 0.777014536835701 0.790715859093287 0.808984288770068 0.829536272156446 0.850088255542825 0.870640238929204 0.891192222315582 0.911744205701961 0.93229618908834 0.952848172474718 0.973400155861097 0.986107154294842 0.998814152728588 +27 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 2 +p 0.251116608224409 1 0.500542828541322 0.516781432698461 0.5330200368556 0.549258641012738 0.570910113222257 0.595268019457965 0.619625925693673 0.643983831929381 0.668341738165089 0.692699644400797 0.717057550636505 0.734814464282336 0.749611892320529 0.763313214578115 0.777014536835701 0.790715859093287 0.808984288770068 0.829536272156446 0.850088255542825 0.870640238929204 0.891192222315582 0.911744205701961 0.93229618908834 0.952848172474718 0.973400155861097 0.986107154294842 0.998814152728588 +18 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 14 +p 0.251116608224409 1 0.00344828269659791 0.187842170237536 0.372236057778473 0.556629945319411 0.741023832860349 0.925417720401287 1.10981160794222 1.29420549548316 1.4785993830241 1.66299327056504 1.84738715810598 2.03178104564691 2.21617493318785 2.40056882072879 2.58496270826973 2.76935659581066 2.9537504833516 3.13814437089254 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.251116608224409 1 0.00344828269659791 0.187842170237536 0.372236057778473 0.556629945319411 0.741023832860349 0.925417720401287 1.10981160794222 1.29420549548316 1.4785993830241 1.66299327056504 1.84738715810598 2.03178104564691 2.21617493318785 2.40056882072879 2.58496270826973 2.76935659581066 2.9537504833516 3.13814437089254 +18 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 44 +p 0.251116608224409 1 0.00344828269659791 0.187842170237536 0.372236057778473 0.556629945319411 0.741023832860349 0.925417720401287 1.10981160794222 1.29420549548316 1.4785993830241 1.66299327056504 1.84738715810598 2.03178104564691 2.21617493318785 2.40056882072879 2.58496270826973 2.76935659581066 2.9537504833516 3.13814437089254 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.251116608224409 1 0.00344828269659791 0.187842170237536 0.372236057778473 0.556629945319411 0.741023832860349 0.925417720401287 1.10981160794222 1.29420549548316 1.4785993830241 1.66299327056504 1.84738715810598 2.03178104564691 2.21617493318785 2.40056882072879 2.58496270826973 2.76935659581066 2.9537504833516 3.13814437089254 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.251116608224409 1 0.00370371217216389 0.188067549186563 0.372431386200961 0.55679522321536 0.741159060229758 0.925522897244157 1.10988673425856 1.29425057127295 1.47861440828735 1.66297824530175 1.84734208231615 2.03170591933055 2.21606975634495 2.40043359335935 2.58479743037374 2.76916126738814 2.95352510440254 3.13788894141694 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.251116608224409 1 0.00370371217216389 0.188067549186563 0.372431386200961 0.55679522321536 0.741159060229758 0.925522897244157 1.10988673425856 1.29425057127295 1.47861440828735 1.66297824530175 1.84734208231615 2.03170591933055 2.21606975634495 2.40043359335935 2.58479743037374 2.76916126738814 2.95352510440254 3.13788894141694 +18 19 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 29 +p 0.251116608224409 1 0.00400001066766845 0.188328989035535 0.372657967403402 0.556986945771268 0.741315924139135 0.925644902507001 1.10997388087487 1.29430285924273 1.4786318376106 1.66296081597847 1.84728979434633 2.0316187727142 2.21594775108207 2.40027672944993 2.5846057078178 2.76893468618567 2.95326366455353 3.1375926429214 +18 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 29 +p 0.251116608224409 1 0.00400001066766845 0.188328989035535 0.372657967403402 0.556986945771268 0.741315924139135 0.925644902507001 1.10997388087487 1.29430285924273 1.4786318376106 1.66296081597847 1.84728979434633 2.0316187727142 2.21594775108207 2.40027672944993 2.5846057078178 2.76893468618567 2.95326366455353 3.1375926429214 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.251116608224409 1 0.00400001066766845 0.188328989035535 0.372657967403402 0.556986945771268 0.741315924139135 0.925644902507001 1.10997388087487 1.29430285924273 1.4786318376106 1.66296081597847 1.84728979434633 2.0316187727142 2.21594775108207 2.40027672944993 2.5846057078178 2.76893468618567 2.95326366455353 3.1375926429214 +18 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 28 +p 0.251116608224409 1 0.00400001066766845 0.188328989035535 0.372657967403402 0.556986945771268 0.741315924139135 0.925644902507001 1.10997388087487 1.29430285924273 1.4786318376106 1.66296081597847 1.84728979434633 2.0316187727142 2.21594775108207 2.40027672944993 2.5846057078178 2.76893468618567 2.95326366455353 3.1375926429214 +26 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 +p 0.251116608224409 1 0.00325162200704329 0.0537891404946056 0.104326658982168 0.15486417746973 0.205401695957292 0.255939214444855 0.306476732932417 0.357014251419979 0.407551769907541 0.444393620884974 0.475095163366168 0.498121320227064 0.519441835839004 0.540762351450945 0.562082867062885 0.590510221212139 0.62249099463005 0.65447176804796 0.697112799271841 0.745083959398707 0.793055119525573 0.841026279652439 0.888997439779305 0.936968599906171 0.966872900690434 0.996777201474697 +26 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 64 +p 0.251116608224409 1 0.00325162200704329 0.0537891404946056 0.104326658982168 0.15486417746973 0.205401695957292 0.255939214444855 0.306476732932417 0.357014251419979 0.407551769907541 0.444393620884974 0.475095163366168 0.498121320227064 0.519441835839004 0.540762351450945 0.562082867062885 0.590510221212139 0.62249099463005 0.65447176804796 0.697112799271841 0.745083959398707 0.793055119525573 0.841026279652439 0.888997439779305 0.936968599906171 0.966872900690434 0.996777201474697 +26 27 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 39 +p 0.251116608224409 1 0.00612146209310982 0.0511356828195542 0.0961499035459985 0.141164124272443 0.186178344998887 0.231192565725332 0.276206786451776 0.32122100717822 0.366235227904665 0.411249448631109 0.451762247284909 0.481296077503529 0.503446450167494 0.52395605448598 0.544465658804467 0.571811797895782 0.602576204373511 0.643595413010483 0.689742022727077 0.735888632443671 0.782035242160264 0.828181851876858 0.874328461593452 0.920475071310046 0.955744968089076 0.991014864868107 +26 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 +p 0.251116608224409 1 0.00612146209310982 0.0511356828195542 0.0961499035459985 0.141164124272443 0.186178344998887 0.231192565725332 0.276206786451776 0.32122100717822 0.366235227904665 0.411249448631109 0.451762247284909 0.481296077503529 0.503446450167494 0.52395605448598 0.544465658804467 0.571811797895782 0.602576204373511 0.643595413010483 0.689742022727077 0.735888632443671 0.782035242160264 0.828181851876858 0.874328461593452 0.920475071310046 0.955744968089076 0.991014864868107 +18 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 28 +p 0.251116608224409 1 3.16359442864602 3.34580555237998 3.52801667611395 3.71022779984791 3.89243892358188 4.07465004731584 4.25686117104981 4.43907229478377 4.62128341851774 4.8034945422517 4.98570566598567 5.16791678971963 5.3501279134536 5.53233903718756 5.71455016092153 5.89676128465549 6.07897240838946 6.26118353212342 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.251116608224409 1 3.16359442864602 3.34580555237998 3.52801667611395 3.71022779984791 3.89243892358188 4.07465004731584 4.25686117104981 4.43907229478377 4.62128341851774 4.8034945422517 4.98570566598567 5.16791678971963 5.3501279134536 5.53233903718756 5.71455016092153 5.89676128465549 6.07897240838946 6.26118353212342 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.251116608224409 1 3.16659525849218 3.34845334342073 3.53031142834929 3.71216951327784 3.89402759820639 4.07588568313495 4.2577437680635 4.43960185299205 4.62145993792061 4.80331802284916 4.98517610777771 5.16703419270627 5.34889227763482 5.53075036256337 5.71260844749193 5.89446653242048 6.07632461734903 6.25818270227759 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.251116608224409 1 3.16659525849218 3.34845334342073 3.53031142834929 3.71216951327784 3.89402759820639 4.07588568313495 4.2577437680635 4.43960185299205 4.62145993792061 4.80331802284916 4.98517610777771 5.16703419270627 5.34889227763482 5.53075036256337 5.71260844749193 5.89446653242048 6.07632461734903 6.25818270227759 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.251116608224409 1 0.0250026049023839 0.206860689830937 0.388718774759491 0.570576859688044 0.752434944616597 0.934293029545151 1.1161511144737 1.29800919940226 1.47986728433081 1.66172536925936 1.84358345418792 2.02544153911647 2.20729962404502 2.38915770897358 2.57101579390213 2.75287387883068 2.93473196375924 3.11659004868779 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.251116608224409 1 0.0250026049023839 0.206860689830937 0.388718774759491 0.570576859688044 0.752434944616597 0.934293029545151 1.1161511144737 1.29800919940226 1.47986728433081 1.66172536925936 1.84358345418792 2.02544153911647 2.20729962404502 2.38915770897358 2.57101579390213 2.75287387883068 2.93473196375924 3.11659004868779 +18 19 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 31 +p 0.251116608224409 1 0.00416667872404679 0.18847604908528 0.372785419446513 0.557094789807746 0.741404160168979 0.925713530530212 1.11002290089145 1.29433227125268 1.47864164161391 1.66295101197514 1.84726038233638 2.03156975269761 2.21587912305884 2.40018849342008 2.58449786378131 2.76880723414254 2.95311660450378 3.13742597486501 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.251116608224409 1 0.00416667872404679 0.18847604908528 0.372785419446513 0.557094789807746 0.741404160168979 0.925713530530212 1.11002290089145 1.29433227125268 1.47864164161391 1.66295101197514 1.84726038233638 2.03156975269761 2.21587912305884 2.40018849342008 2.58449786378131 2.76880723414254 2.95311660450378 3.13742597486501 +37 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 2 +p 0.225137578460818 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.225137578460818 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 2 +p 0.225137578460818 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 37 +p 0.225137578460818 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +2 38 2 +p 0.225137578460818 1 0 15 +2 39 1 +p 0.225137578460818 1 0 15 +37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 38 +p 0.225137578460818 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.225137578460818 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +2 1 2 +p 0.225137578460818 1 2 17 +2 3 38 +p 0.225137578460818 1 2 17 +36 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 1 +p 0.225137578460818 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 37 +p 0.225137578460818 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.155862072307544 1 3.14714823772493 3.33129420744956 3.51544017717418 3.69958614689881 3.88373211662344 4.06787808634806 4.25202405607269 4.43617002579732 4.62031599552194 4.80446196524657 4.9886079349712 5.17275390469583 5.35689987442045 5.54104584414508 5.72519181386971 5.90933778359433 6.09348375331896 6.27762972304359 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.155862072307544 1 3.14714823772493 3.33129420744956 3.51544017717418 3.69958614689881 3.88373211662344 4.06787808634806 4.25202405607269 4.43617002579732 4.62031599552194 4.80446196524657 4.9886079349712 5.17275390469583 5.35689987442045 5.54104584414508 5.72519181386971 5.90933778359433 6.09348375331896 6.27762972304359 +2 19 1 +p 0.155862072307544 1 -9.00031250305195 -7.00027777992128 +2 1 2 +p 0.155862072307544 1 -9.00031250305195 -7.00027777992128 +2 2 20 +p 0.155862072307544 1 -42.9997222200786 -40.999687496948 +2 1 2 +p 0.155862072307544 1 -42.9997222200786 -40.999687496948 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.155862072307544 1 4.71863902107686 4.90270329003007 5.08676755898328 5.27083182793649 5.4548960968897 5.63896036584291 5.82302463479612 6.00708890374932 6.19115317270253 6.37521744165574 6.55928171060895 6.74334597956216 6.92741024851537 7.11147451746858 7.29553878642179 7.479603055375 7.66366732432821 7.84773159328141 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.155862072307544 1 4.71863902107686 4.90270329003007 5.08676755898328 5.27083182793649 5.4548960968897 5.63896036584291 5.82302463479612 6.00708890374932 6.19115317270253 6.37521744165574 6.55928171060895 6.74334597956216 6.92741024851537 7.11147451746858 7.29553878642179 7.479603055375 7.66366732432821 7.84773159328141 +2 19 1 +p 0.155862072307544 1 0 35 +2 4 2 +p 0.155862072307544 1 0 35 +2 20 2 +p 0.155862072307544 1 0 35 +2 3 1 +p 0.155862072307544 1 0 35 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.155862072307544 1 3.14714823772493 3.33129420744956 3.51544017717418 3.69958614689881 3.88373211662344 4.06787808634806 4.25202405607269 4.43617002579732 4.62031599552194 4.80446196524657 4.9886079349712 5.17275390469583 5.35689987442045 5.54104584414508 5.72519181386971 5.90933778359433 6.09348375331896 6.27762972304359 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.155862072307544 1 3.14714823772493 3.33129420744956 3.51544017717418 3.69958614689881 3.88373211662344 4.06787808634806 4.25202405607269 4.43617002579732 4.62031599552194 4.80446196524657 4.9886079349712 5.17275390469583 5.35689987442045 5.54104584414508 5.72519181386971 5.90933778359433 6.09348375331896 6.27762972304359 +2 19 1 +p 0.155862072307544 1 0.100000000000001 35.1 +2 3 1 +p 0.155862072307544 1 0.100000000000001 35.1 +2 3 4 +p 0.155862072307544 1 -9.00031250305195 -7.00027777992128 +2 19 1 +p 0.155862072307544 1 -9.00031250305195 -7.00027777992128 +2 20 2 +p 0.155862072307544 1 0.100000000000001 35.1 +2 4 2 +p 0.155862072307544 1 0.100000000000001 35.1 +2 3 4 +p 0.155862072307544 1 -42.9997222200786 -40.999687496948 +2 2 20 +p 0.155862072307544 1 -42.9997222200786 -40.999687496948 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.155862072307544 1 4.71863902107686 4.90270329003007 5.08676755898328 5.27083182793649 5.4548960968897 5.63896036584291 5.82302463479612 6.00708890374932 6.19115317270253 6.37521744165574 6.55928171060895 6.74334597956216 6.92741024851537 7.11147451746858 7.29553878642179 7.479603055375 7.66366732432821 7.84773159328142 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.155862072307544 1 4.71863902107686 4.90270329003007 5.08676755898328 5.27083182793649 5.4548960968897 5.63896036584291 5.82302463479612 6.00708890374932 6.19115317270253 6.37521744165574 6.55928171060895 6.74334597956216 6.92741024851537 7.11147451746858 7.29553878642179 7.479603055375 7.66366732432821 7.84773159328142 +2 1 2 +p 0.1558000008 1 0 0.950000000000004 +2 38 3 +p 0.1558000008 1 0 0.950000000000004 +36 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 2 +p 0.1558000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 36 +p 0.1558000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 1 +p 0.1558000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.1558000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +36 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 1 +p 0.1558000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 1 +p 0.1558000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +2 1 2 +p 0.1558000008 1 0.5 1.5 +2 3 38 +p 0.1558000008 1 0.5 1.5 +36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 2 +p 0.1558000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 1 +p 0.1558000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 1 +p 0.1558000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 36 +p 0.1558000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +2 1 2 +p 0.1558000008 1 1.95 25 +2 3 38 +p 0.1558000008 1 1.95 25 +37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 2 +p 0.1558000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.1558000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +36 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 1 +p 0.1558000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 37 +p 0.1558000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +2 1 2 +p 0.1558000008 1 0.0499999999999974 14 +2 3 38 +p 0.1558000008 1 0.0499999999999974 14 +37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 2 +p 0.1558000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.1558000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.0924000008 1 4.72350032013427 4.90699267155131 5.09048502296836 5.2739773743854 5.45746972580245 5.64096207721949 5.82445442863654 6.00794678005358 6.19143913147063 6.37493148288767 6.55842383430472 6.74191618572176 6.92540853713881 7.10890088855585 7.2923932399729 7.47588559138994 7.65937794280699 7.84287029422403 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.0924000008 1 4.72350032013427 4.90699267155131 5.09048502296836 5.2739773743854 5.45746972580245 5.64096207721949 5.82445442863654 6.00794678005358 6.19143913147063 6.37493148288767 6.55842383430472 6.74191618572176 6.92540853713881 7.10890088855585 7.2923932399729 7.47588559138994 7.65937794280699 7.84287029422403 +2 19 1 +p 0.0924000008 1 0 0.5 +2 1 2 +p 0.0924000008 1 0 0.5 +2 20 2 +p 0.0924000008 1 0 0.5 +2 1 2 +p 0.0924000008 1 0 0.5 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.0924000008 1 3.15270399333937 3.33619634475641 3.51968869617346 3.7031810475905 3.88667339900755 4.07016575042459 4.25365810184164 4.43715045325868 4.62064280467573 4.80413515609277 4.98762750750982 5.17111985892686 5.35461221034391 5.53810456176095 5.721596913178 5.90508926459504 6.08858161601209 6.27207396742913 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.0924000008 1 3.15270399333937 3.33619634475641 3.51968869617346 3.7031810475905 3.88667339900755 4.07016575042459 4.25365810184164 4.43715045325868 4.62064280467573 4.80413515609277 4.98762750750982 5.17111985892686 5.35461221034391 5.53810456176095 5.721596913178 5.90508926459504 6.08858161601209 6.27207396742913 +2 19 1 +p 0.0924000008 1 -27.5006250244162 -26.5005555727036 +2 4 2 +p 0.0924000008 1 -27.5006250244162 -26.5005555727036 +2 2 20 +p 0.0924000008 1 -44.4994444272963 -43.4993749755837 +2 2 4 +p 0.0924000008 1 -44.4994444272963 -43.4993749755837 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.0924000008 1 4.72488930593065 4.90821824725401 5.09154718857736 5.27487612990072 5.45820507122408 5.64153401254743 5.82486295387079 6.00819189519415 6.1915208365175 6.37484977784086 6.55817871916422 6.74150766048757 6.92483660181093 7.10816554313428 7.29149448445764 7.474823425781 7.65815236710435 7.84148130842771 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.0924000008 1 4.72488930593065 4.90821824725401 5.09154718857736 5.27487612990072 5.45820507122408 5.64153401254743 5.82486295387079 6.00819189519415 6.1915208365175 6.37484977784086 6.55817871916422 6.74150766048757 6.92483660181093 7.10816554313428 7.29149448445764 7.474823425781 7.65815236710435 7.84148130842771 +2 3 1 +p 0.0924000008 1 -28.5007143221609 -26.5005555727036 +2 19 1 +p 0.0924000008 1 -28.5007143221609 -26.5005555727036 +2 1 19 +p 0.0924000008 1 1 24.1 +2 3 5 +p 0.0924000008 1 1 24.1 +2 1 19 +p 0.0924000008 1 0.5 23.1 +2 4 6 +p 0.0924000008 1 0.5 23.1 +2 5 6 +p 0.0924000008 1 -39.0007143221609 -38.0006250244162 +2 1 19 +p 0.0924000008 1 -39.0007143221609 -38.0006250244162 +2 1 3 +p 0.0924000008 1 -44.4994444272963 -42.4992856778385 +2 2 20 +p 0.0924000008 1 -44.4994444272963 -42.4992856778385 +2 2 20 +p 0.0924000008 1 1 24.1 +2 3 5 +p 0.0924000008 1 1 24.1 +2 2 20 +p 0.0924000008 1 0.5 23.1 +2 4 6 +p 0.0924000008 1 0.5 23.1 +2 6 5 +p 0.0924000008 1 -53.9993749755837 -52.9992856778385 +2 20 2 +p 0.0924000008 1 -53.9993749755837 -52.9992856778385 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.0924000008 1 4.72667518062126 4.90979401903956 5.09291285745786 5.27603169587616 5.45915053429447 5.64226937271277 5.82538821113107 6.00850704954937 6.19162588796767 6.37474472638597 6.55786356480427 6.74098240322258 6.92410124164088 7.10722008005918 7.29033891847748 7.47345775689578 7.65657659531408 7.83969543373238 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.0924000008 1 4.72667518062126 4.90979401903956 5.09291285745786 5.27603169587616 5.45915053429447 5.64226937271277 5.82538821113107 6.00850704954937 6.19162588796767 6.37474472638597 6.55786356480427 6.74098240322258 6.92410124164088 7.10722008005918 7.29033891847748 7.47345775689578 7.65657659531408 7.83969543373238 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.0924000008 1 4.72488930593065 4.90821824725401 5.09154718857736 5.27487612990072 5.45820507122408 5.64153401254743 5.82486295387079 6.00819189519415 6.1915208365175 6.37484977784086 6.55817871916422 6.74150766048757 6.92483660181093 7.10816554313428 7.29149448445764 7.474823425781 7.65815236710435 7.84148130842771 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.0924000008 1 4.72488930593065 4.90821824725401 5.09154718857736 5.27487612990072 5.45820507122408 5.64153401254743 5.82486295387079 6.00819189519415 6.1915208365175 6.37484977784086 6.55817871916422 6.74150766048757 6.92483660181093 7.10816554313428 7.29149448445764 7.474823425781 7.65815236710435 7.84148130842771 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.0924000008 1 4.72667518062127 4.90979401903957 5.09291285745787 5.27603169587617 5.45915053429448 5.64226937271278 5.82538821113108 6.00850704954938 6.19162588796768 6.37474472638598 6.55786356480428 6.74098240322258 6.92410124164089 7.10722008005919 7.29033891847749 7.47345775689579 7.65657659531409 7.83969543373239 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.0924000008 1 4.72667518062127 4.90979401903957 5.09291285745787 5.27603169587617 5.45915053429448 5.64226937271278 5.82538821113108 6.00850704954938 6.19162588796768 6.37474472638598 6.55786356480428 6.74098240322258 6.92410124164089 7.10722008005919 7.29033891847749 7.47345775689579 7.65657659531409 7.83969543373239 +2 1 2 +p 0.4400000008 1 1 39.9 +2 1 2 +p 0.4400000008 1 1 39.9 +2 3 2 +p 0.4400000008 1 -63.5001666671297 -47.5 +2 22 24 +p 0.4400000008 1 -63.5001666671297 -47.5 +2 1 12 +p 0.4400000008 1 1 89 +2 1 4 +p 0.4400000008 1 1 89 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.4400000008 1 4.71572231989168 4.90012973016081 5.08453714042993 5.26894455069906 5.45335196096819 5.63775937123732 5.82216678150644 6.00657419177557 6.1909816020447 6.37538901231383 6.55979642258295 6.74420383285208 6.92861124312121 7.11301865339034 7.29742606365946 7.48183347392859 7.66624088419772 7.85064829446685 +18 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 5 +p 0.4400000008 1 4.71572231989168 4.90012973016081 5.08453714042993 5.26894455069906 5.45335196096819 5.63775937123732 5.82216678150644 6.00657419177557 6.1909816020447 6.37538901231383 6.55979642258295 6.74420383285208 6.92861124312121 7.11301865339034 7.29742606365946 7.48183347392859 7.66624088419772 7.85064829446685 +2 1 2 +p 0.4400000008 1 1 39.9 +2 4 22 +p 0.4400000008 1 1 39.9 +2 22 5 +p 0.4400000008 1 -135.5 -123.49983333287 +2 1 2 +p 0.4400000008 1 -135.5 -123.49983333287 +6 2 4 5 6 7 3 +p 0.4400000008 1 3.14159265358979 3.32709073175439 3.51258880991898 3.69808688808358 3.88358496624817 4.06908304441277 +6 24 27 28 29 30 26 +p 0.4400000008 1 3.14159265358979 3.32709073175439 3.51258880991898 3.69808688808358 3.88358496624817 4.06908304441277 +11 1 3 4 5 6 7 8 9 10 11 2 +p 0.4400000008 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.76545 0.8748 0.9374 1 +11 1 9 10 11 12 13 14 15 16 17 8 +p 0.4400000008 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.76545 0.8748 0.9374 1 +2 18 3 +p 0.4400000008 1 0 0.496620143436885 +2 1 2 +p 0.4400000008 1 0 0.496620143436885 +2 8 18 +p 0.4400000008 1 1 33.8323424219563 +2 1 2 +p 0.4400000008 1 1 33.8323424219563 +9 3 4 5 6 7 8 9 10 2 +p 0.4400000008 1 1.5707963267949 1.76714586764426 1.96349540849362 2.15984494934298 2.35619449019235 2.55254403104171 2.74889357189107 2.94524311274043 3.14159265358979 +9 3 4 5 6 7 8 9 10 1 +p 0.4400000008 1 1.5707963267949 1.76714586764426 1.96349540849362 2.15984494934298 2.35619449019235 2.55254403104171 2.74889357189107 2.94524311274043 3.14159265358979 +2 20 2 +p 0.4400000008 1 0 0.599999999999994 +2 11 2 +p 0.4400000008 1 0 0.599999999999994 +2 3 12 +p 0.4400000008 1 18.8 81.8 +2 2 3 +p 0.4400000008 1 18.8 81.8 +2 11 13 +p 0.4400000008 1 -99.9998333328702 -40.0001666671297 +2 2 1 +p 0.4400000008 1 -99.9998333328702 -40.0001666671297 +9 3 4 5 6 7 8 9 10 2 +p 0.4400000008 1 7.105427357601e-015 0.196349540849369 0.39269908169873 0.589048622548092 0.785398163397454 0.981747704246815 1.17809724509618 1.37444678594554 1.5707963267949 +9 14 15 16 17 18 19 20 21 12 +p 0.4400000008 1 7.105427357601e-015 0.196349540849369 0.39269908169873 0.589048622548092 0.785398163397454 0.981747704246815 1.17809724509618 1.37444678594554 1.5707963267949 +2 19 1 +p 0.4400000008 1 0 0.599999999999994 +2 13 22 +p 0.4400000008 1 0 0.599999999999994 +2 14 23 +p 0.4400000008 1 -135.5 -129.499861110843 +2 22 5 +p 0.4400000008 1 -135.5 -129.499861110843 +2 2 20 +p 0.4400000008 1 0.499999999999994 9.90000000000001 +2 23 25 +p 0.4400000008 1 0.499999999999994 9.90000000000001 +2 31 25 +p 0.4400000008 1 -139.002501564456 -135.999861110843 +2 78 61 +p 0.4400000008 1 -139.002501564456 -135.999861110843 +2 2 3 +p 0.4400000008 1 7.80011699240453 21 +2 26 32 +p 0.4400000008 1 7.80011699240453 21 +2 2 20 +p 0.4400000008 1 9 18 +2 31 33 +p 0.4400000008 1 9 18 +2 34 32 +p 0.4400000008 1 15 21.0001562503814 +2 19 1 +p 0.4400000008 1 15 21.0001562503814 +2 2 1 +p 0.432415365345757 1 88.5025015644561 92.4974984355436 +2 33 35 +p 0.4400000008 1 88.5025015644561 92.4974984355436 +2 36 34 +p 0.4400000008 1 -150 -40 +2 3 2 +p 0.4400000008 1 -150 -40 +2 1 19 +p 0.4400000008 1 9 18 +2 37 35 +p 0.4400000008 1 9 18 +2 36 38 +p 0.4400000008 1 15 95 +2 3 2 +p 0.4400000008 1 15 95 +2 38 37 +p 0.4400000008 1 -150 -142.997498435544 +2 58 60 +p 0.4400000008 1 -150 -142.997498435544 +11 12 14 15 16 17 18 19 20 21 22 13 +p 0.4400000008 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.76545 0.8748 0.9374 1 +11 1 3 4 5 6 7 8 9 10 11 2 +p 0.4400000008 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.76545 0.8748 0.9374 1 +2 2 13 +p 0.4400000008 1 1 89 +2 1 3 +p 0.4400000008 1 1 89 +11 12 14 15 16 17 18 19 20 21 22 13 +p 0.4400000008 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.76545 0.8748 0.9374 1 +11 12 14 15 16 17 18 19 20 21 22 13 +p 0.4400000008 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.76545 0.8748 0.9374 1 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.4400000008 1 3.14492599309678 3.32933340336591 3.51374081363504 3.69814822390416 3.88255563417329 4.06696304444242 4.25137045471155 4.43577786498067 4.6201852752498 4.80459268551893 4.98900009578806 5.17340750605718 5.35781491632631 5.54222232659544 5.72662973686456 5.91103714713369 6.09544455740282 6.27985196767195 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.4400000008 1 3.14492599309678 3.32933340336591 3.51374081363504 3.69814822390416 3.88255563417329 4.06696304444242 4.25137045471155 4.43577786498067 4.6201852752498 4.80459268551893 4.98900009578806 5.17340750605718 5.35781491632631 5.54222232659544 5.72662973686456 5.91103714713369 6.09544455740282 6.27985196767195 +11 1 3 4 5 6 7 8 9 10 11 2 +p 0.4400000008 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.76545 0.8748 0.9374 1 +11 1 12 13 14 15 16 17 18 19 20 11 +p 0.4400000008 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.76545 0.8748 0.9374 1 +2 11 3 +p 0.4400000008 1 1 39.9 +2 1 2 +p 0.4400000008 1 1 39.9 +2 1 12 +p 0.4400000008 1 0 1 +11 2 23 24 25 26 27 28 29 30 31 13 +p 0.4400000008 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.76545 0.8748 0.9374 1 +11 1 4 5 6 7 8 9 10 11 12 3 +p 0.4400000008 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.76545 0.8748 0.9374 1 +16 1 5 6 7 8 9 10 11 12 13 14 15 16 17 18 4 +p 0.4400000008 1 0.193953027799336 0.379910399523712 0.565867771248087 0.751825142972463 0.937782514696838 1.12373988642121 1.30969725814559 1.49565462986997 1.68161200159434 1.86756937331872 2.05352674504309 2.23948411676747 2.42544148849184 2.61139886021622 2.79735623194059 2.98331360366497 +16 2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 3 +p 0.4400000008 1 0.193953027799336 0.379910399523712 0.565867771248087 0.751825142972463 0.937782514696838 1.12373988642121 1.30969725814559 1.49565462986997 1.68161200159434 1.86756937331872 2.05352674504309 2.23948411676747 2.42544148849184 2.61139886021622 2.79735623194059 2.98331360366497 +18 3 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 19 +p 0.4400000008 1 6.28631031226661 6.4707422324675 6.65517415266839 6.83960607286928 7.02403799307017 7.20846991327106 7.39290183347195 7.57733375367284 7.76176567387373 7.94619759407462 8.13062951427551 8.3150614344764 8.49949335467729 8.68392527487818 8.86835719507907 9.05278911527996 9.23722103548085 9.42165295568174 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.4400000008 1 6.28631031226661 6.4707422324675 6.65517415266839 6.83960607286928 7.02403799307017 7.20846991327106 7.39290183347195 7.57733375367284 7.76176567387373 7.94619759407462 8.13062951427551 8.3150614344764 8.49949335467729 8.68392527487818 8.86835719507907 9.05278911527996 9.23722103548085 9.42165295568174 +2 4 36 +p 0.4400000008 1 0 0.983743931512503 +2 1 2 +p 0.4400000008 1 0 0.983743931512503 +2 36 19 +p 0.4400000008 1 7.91658329426948 21 +2 1 2 +p 0.4400000008 1 7.91658329426948 21 +2 1 2 +p 0.4400000008 1 1 64 +2 1 18 +p 0.4400000008 1 1 64 +2 9 1 +p 0.4400000008 1 1 34.9561919148326 +2 18 3 +p 0.4400000008 1 1 34.9561919148326 +2 1 2 +p 0.4400000008 1 1 64 +2 1 4 +p 0.4400000008 1 1 64 +2 1 2 +p 0.4400000008 1 1 39.9 +2 4 3 +p 0.4400000008 1 1 39.9 +11 1 3 4 5 6 7 8 9 10 11 2 +p 0.4400000008 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.76545 0.8748 0.9374 1 +11 11 12 13 14 15 16 17 18 19 20 1 +p 0.4400000008 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.76545 0.8748 0.9374 1 +2 11 3 +p 0.4400000008 1 1 39.9 +2 4 22 +p 0.4400000008 1 1 39.9 +2 10 3 +p 0.4400000008 1 1 39.9 +2 1 2 +p 0.4400000008 1 1 39.9 +2 3 2 +p 0.4400000008 1 -57.5001388891567 -47.5 +2 10 3 +p 0.4400000008 1 -57.5001388891567 -47.5 +2 1 12 +p 0.4400000008 1 1 89 +2 1 4 +p 0.4400000008 1 1 89 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.4400000008 1 4.71516676173406 4.89963953178636 5.08411230183867 5.26858507189097 5.45305784194327 5.63753061199558 5.82200338204788 6.00647615210018 6.19094892215249 6.37542169220479 6.55989446225709 6.7443672323094 6.9288400023617 7.113312772414 7.29778554246631 7.48225831251861 7.66673108257091 7.85120385262322 +18 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 5 +p 0.4400000008 1 4.71516676173406 4.89963953178636 5.08411230183867 5.26858507189097 5.45305784194327 5.63753061199558 5.82200338204788 6.00647615210018 6.19094892215249 6.37542169220479 6.55989446225709 6.7443672323094 6.9288400023617 7.113312772414 7.29778554246631 7.48225831251861 7.66673108257091 7.85120385262322 +2 1 19 +p 0.4400000008 1 0.499999999999994 9.90000000000001 +2 10 12 +p 0.4400000008 1 0.499999999999994 9.90000000000001 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.4400000008 1 4.71516676173406 4.89963953178636 5.08411230183867 5.26858507189097 5.45305784194327 5.63753061199558 5.82200338204788 6.00647615210018 6.19094892215249 6.37542169220479 6.55989446225709 6.7443672323094 6.9288400023617 7.113312772414 7.29778554246631 7.48225831251861 7.66673108257091 7.85120385262322 +18 59 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 61 +p 0.4400000008 1 4.71516676173406 4.89963953178636 5.08411230183867 5.26858507189097 5.45305784194327 5.63753061199558 5.82200338204788 6.00647615210018 6.19094892215249 6.37542169220479 6.55989446225709 6.7443672323094 6.9288400023617 7.113312772414 7.29778554246631 7.48225831251861 7.66673108257091 7.85120385262322 +37 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 +p 0.4400000008 1 3.14159265358979 3.31612557878922 3.49065850398866 3.66519142918809 3.83972435438752 4.01425727958696 4.18879020478639 4.36332312998582 4.53785605518525 4.71238898038469 4.88692190558412 5.06145483078355 5.23598775598299 5.41052068118242 5.58505360638185 5.75958653158128 5.93411945678072 6.10865238198015 6.28318530717958 6.45771823237901 6.63225115757845 6.80678408277788 6.98131700797731 7.15584993317675 7.33038285837618 7.50491578357561 7.67944870877504 7.85398163397448 8.02851455917391 8.20304748437334 8.37758040957278 8.55211333477221 8.72664625997164 8.90117918517107 9.07571211037051 9.25024503556994 9.42477796076938 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.4400000008 1 3.14159265358979 3.31612557878922 3.49065850398866 3.66519142918809 3.83972435438752 4.01425727958696 4.18879020478639 4.36332312998582 4.53785605518525 4.71238898038469 4.88692190558412 5.06145483078355 5.23598775598299 5.41052068118242 5.58505360638185 5.75958653158128 5.93411945678072 6.10865238198015 6.28318530717958 6.45771823237901 6.63225115757845 6.80678408277788 6.98131700797731 7.15584993317675 7.33038285837618 7.50491578357561 7.67944870877504 7.85398163397448 8.02851455917391 8.20304748437334 8.37758040957278 8.55211333477221 8.72664625997164 8.90117918517107 9.07571211037051 9.25024503556994 9.42477796076938 +2 37 38 +p 0.4400000008 1 0 49.9 +2 22 20 +p 0.4400000008 1 0 49.9 +2 39 38 +p 0.4400000008 1 -57.0025015644562 -40 +2 11 9 +p 0.4400000008 1 -57.0025015644562 -40 +2 37 40 +p 0.4400000008 1 0 110 +2 4 3 +p 0.4400000008 1 0 110 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.4400000008 1 7.90400249077768 8.08291725195299 8.26183201312829 8.4407467743036 8.61966153547891 8.79857629665421 8.97749105782952 9.15640581900483 9.33532058018013 9.51423534135544 9.69315010253075 9.87206486370605 10.0509796248814 10.2298943860567 10.408809147232 10.5877239084073 10.7666386695826 10.9455534307579 +18 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 39 +p 0.4400000008 1 7.90400249077768 8.08291725195299 8.26183201312829 8.4407467743036 8.61966153547891 8.79857629665421 8.97749105782952 9.15640581900483 9.33532058018013 9.51423534135544 9.69315010253075 9.87206486370605 10.0509796248814 10.2298943860567 10.408809147232 10.5877239084073 10.7666386695826 10.9455534307579 +2 40 58 +p 0.4400000008 1 0 49.9 +2 1 2 +p 0.4400000008 1 0 49.9 +2 59 41 +p 0.4400000008 1 -64.0001388891567 -60.9974984355441 +2 12 14 +p 0.4400000008 1 -64.0001388891567 -60.9974984355441 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.4400000008 1 1.62081718360324 1.79973194477832 1.9786467059534 2.15756146712848 2.33647622830355 2.51539098947863 2.69430575065371 2.87322051182879 3.05213527300387 3.23105003417895 3.40996479535403 3.58887955652911 3.76779431770419 3.94670907887926 4.12562384005434 4.30453860122942 4.4834533624045 4.66236812357958 +18 60 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 78 +p 0.4400000008 1 1.62081718360324 1.79973194477832 1.9786467059534 2.15756146712848 2.33647622830355 2.51539098947863 2.69430575065371 2.87322051182879 3.05213527300387 3.23105003417895 3.40996479535403 3.58887955652911 3.76779431770419 3.94670907887926 4.12562384005434 4.30453860122942 4.4834533624045 4.66236812357958 +24 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 2 +p 0.432415365345757 1 0.0500208568083474 0.18226220202471 0.314503547241072 0.446744892457434 0.578986237673797 0.711227582890159 0.843468928106521 0.975710273322884 1.10795161853925 1.24019296375561 1.37243430897197 1.50467565418833 1.63691699940469 1.76915834462106 1.90139968983742 2.03364103505378 2.16588238027014 2.29812372548651 2.43036507070287 2.56260641591923 2.69484776113559 2.82708910635195 2.95933045156832 3.09157179678468 +24 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 20 +p 0.4400000008 1 0.0500208568083474 0.18226220202471 0.314503547241072 0.446744892457434 0.578986237673797 0.711227582890159 0.843468928106521 0.975710273322884 1.10795161853925 1.24019296375561 1.37243430897197 1.50467565418833 1.63691699940469 1.76915834462106 1.90139968983742 2.03364103505378 2.16588238027014 2.29812372548651 2.43036507070287 2.56260641591923 2.69484776113559 2.82708910635195 2.95933045156832 3.09157179678468 +2 2 20 +p 0.4400000008 1 84.9998437496184 95 +2 2 9 +p 0.4400000008 1 84.9998437496184 95 +2 21 19 +p 0.4400000008 1 0 49.9 +2 1 2 +p 0.4400000008 1 0 49.9 +2 21 22 +p 0.4400000008 1 0 80 +2 1 4 +p 0.4400000008 1 0 80 +2 1 4 +p 0.4400000008 1 0 110 +2 1 2 +p 0.4400000008 1 0 110 +2 4 3 +p 0.4400000008 1 0 49.9 +2 4 3 +p 0.4400000008 1 0 49.9 +2 4 1 +p 0.4400000008 1 0 80 +2 2 3 +p 0.4400000008 1 0 80 +2 3 13 +p 0.4400000008 1 1 64 +2 1 2 +p 0.4400000008 1 1 64 +2 2 13 +p 0.4400000008 1 1 89 +2 2 4 +p 0.4400000008 1 1 89 +2 3 13 +p 0.4400000008 1 1 64 +2 3 4 +p 0.4400000008 1 1 64 +2 1 12 +p 0.4400000008 1 0 1 +11 2 23 24 25 26 27 28 29 30 31 13 +p 0.4400000008 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.76545 0.8748 0.9374 1 +11 1 4 5 6 7 8 9 10 11 12 3 +p 0.4400000008 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.76545 0.8748 0.9374 1 +11 2 23 24 25 26 27 28 29 30 31 13 +p 0.4400000008 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.76545 0.8748 0.9374 1 +11 2 14 15 16 17 18 19 20 21 22 13 +p 0.4400000008 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.76545 0.8748 0.9374 1 +7 2 4 5 6 7 8 3 +p 0.4400000008 1 5.12373536564779 5.31697702256976 5.51021867949172 5.70346033641369 5.89670199333566 6.08994365025762 6.28318530717959 +7 1 4 5 6 7 8 3 +p 0.4400000008 1 5.12373536564779 5.31697702256976 5.51021867949172 5.70346033641369 5.89670199333566 6.08994365025762 6.28318530717959 +11 1 3 4 5 6 7 8 9 10 11 2 +p 0.4400000008 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.76545 0.8748 0.9374 1 +11 10 11 12 13 14 15 16 17 18 19 9 +p 0.4400000008 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.76545 0.8748 0.9374 1 +2 2 20 +p 0.4400000008 1 9 18 +2 11 13 +p 0.4400000008 1 9 18 +2 2 1 +p 0.432415365345743 1 47.5025015644562 51.4974984355436 +2 13 15 +p 0.4400000008 1 47.5025015644562 51.4974984355436 +2 1 19 +p 0.4400000008 1 9 18 +2 14 15 +p 0.4400000008 1 9 18 +11 2 23 24 25 26 27 28 29 30 31 13 +p 0.4400000008 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.76545 0.8748 0.9374 1 +11 2 14 15 16 17 18 19 20 21 22 13 +p 0.4400000008 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.76545 0.8748 0.9374 1 +2 1 12 +p 0.4400000008 1 0 1 +11 12 14 15 16 17 18 19 20 21 22 13 +p 0.4400000008 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.76545 0.8748 0.9374 1 +11 12 14 15 16 17 18 19 20 21 22 13 +p 0.4400000008 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.76545 0.8748 0.9374 1 +11 12 14 15 16 17 18 19 20 21 22 13 +p 0.4400000008 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.76545 0.8748 0.9374 1 +11 1 3 4 5 6 7 8 9 10 11 2 +p 0.4400000008 1 0 0.10935 0.2187 0.32805 0.4374 0.54675 0.6561 0.76545 0.8748 0.9374 1 +2 1 2 +p 0.4400000008 1 9 18 +2 3 39 +p 0.4400000008 1 9 18 +49 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 1 +p 0.432956900116958 1 0 0.130899693899575 0.26179938779915 0.392699081698724 0.523598775598299 0.654498469497874 0.785398163397449 0.916297857297024 1.0471975511966 1.17809724509617 1.30899693899575 1.43989663289532 1.5707963267949 1.70169602069447 1.83259571459405 1.96349540849362 2.0943951023932 2.22529479629277 2.35619449019235 2.48709418409192 2.61799387799149 2.74889357189107 2.87979326579064 3.01069295969022 3.14159265358979 3.27249234748937 3.40339204138894 3.53429173528852 3.66519142918809 3.79609112308767 3.92699081698724 4.05789051088682 4.18879020478639 4.31968989868596 4.45058959258554 4.58148928648511 4.71238898038469 4.84328867428426 4.97418836818384 5.10508806208341 5.23598775598299 5.36688744988256 5.49778714378214 5.62868683768171 5.75958653158128 5.89048622548086 6.02138591938043 6.15228561328001 6.28318530717959 +49 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 2 +p 0.4400000008 1 0 0.130899693899575 0.26179938779915 0.392699081698724 0.523598775598299 0.654498469497874 0.785398163397449 0.916297857297024 1.0471975511966 1.17809724509617 1.30899693899575 1.43989663289532 1.5707963267949 1.70169602069447 1.83259571459405 1.96349540849362 2.0943951023932 2.22529479629277 2.35619449019235 2.48709418409192 2.61799387799149 2.74889357189107 2.87979326579064 3.01069295969022 3.14159265358979 3.27249234748937 3.40339204138894 3.53429173528852 3.66519142918809 3.79609112308767 3.92699081698724 4.05789051088682 4.18879020478639 4.31968989868596 4.45058959258554 4.58148928648511 4.71238898038469 4.84328867428426 4.97418836818384 5.10508806208341 5.23598775598299 5.36688744988256 5.49778714378214 5.62868683768171 5.75958653158128 5.89048622548086 6.02138591938043 6.15228561328001 6.28318530717959 +24 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 2 +p 0.432415365345743 1 3.19161351039814 3.32385485561445 3.45609620083075 3.58833754604706 3.72057889126336 3.85282023647967 3.98506158169597 4.11730292691228 4.24954427212859 4.38178561734489 4.5140269625612 4.6462683077775 4.77850965299381 4.91075099821012 5.04299234342642 5.17523368864273 5.30747503385903 5.43971637907534 5.57195772429164 5.70419906950795 5.83644041472426 5.96868175994056 6.10092310515687 6.23316445037317 +24 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 20 +p 0.4400000008 1 3.19161351039814 3.32385485561445 3.45609620083075 3.58833754604706 3.72057889126336 3.85282023647967 3.98506158169597 4.11730292691228 4.24954427212859 4.38178561734489 4.5140269625612 4.6462683077775 4.77850965299381 4.91075099821012 5.04299234342642 5.17523368864273 5.30747503385903 5.43971637907534 5.57195772429164 5.70419906950795 5.83644041472426 5.96868175994056 6.10092310515687 6.23316445037317 +2 1 12 +p 0.4400000008 1 0 1 +2 1 2 +p 0.39831938929588 1 -2.5 2.4 +2 1 2 +p 0.39831938929588 1 -2.5 2.4 +2 3 2 +p 0.39831938929588 1 67.9974984355436 106 +2 3 1 +p 0.39831938929588 1 67.9974984355436 106 +2 4 1 +p 0.39831938929588 1 0 49 +2 1 2 +p 0.39831938929588 1 0 49 +9 1 3 4 5 6 7 8 9 2 +p 0.39831938929588 1 1.5707963267949 1.76089326054322 1.95099019429154 2.14108712803986 2.33118406178817 2.52128099553649 2.71137792928481 2.90147486303313 3.09157179678145 +9 5 6 7 8 9 10 11 12 3 +p 0.39831938929588 1 1.5707963267949 1.76089326054322 1.95099019429154 2.14108712803986 2.33118406178817 2.52128099553649 2.71137792928481 2.90147486303313 3.09157179678145 +2 4 13 +p 0.39831938929588 1 0 4.9 +2 1 2 +p 0.39831938929588 1 0 4.9 +9 1 3 4 5 6 7 8 9 2 +p 0.39831938929588 1 6.33320616398601 6.52330309773457 6.71340003148313 6.90349696523169 7.09359389898025 7.28369083272881 7.47378776647736 7.66388470022592 7.85398163397448 +9 14 15 16 17 18 19 20 21 5 +p 0.39831938929588 1 6.33320616398601 6.52330309773457 6.71340003148313 6.90349696523169 7.09359389898025 7.28369083272881 7.47378776647736 7.66388470022592 7.85398163397448 +2 13 14 +p 0.39831938929588 1 57 64.0025015644563 +2 4 6 +p 0.39831938929588 1 57 64.0025015644563 +2 2 3 +p 0.39831938929588 1 -108 -98.9998076915963 +2 1 2 +p 0.39831938929588 1 -108 -98.9998076915963 +2 4 1 +p 0.39831938929588 1 -18.1510869399611 -17.5 +2 3 2 +p 0.39831938929588 1 -18.1510869399611 -17.5 +18 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 40 +p 0.39831938929588 1 4.71623514371443 4.90058222176911 5.08492929982379 5.26927637787848 5.45362345593316 5.63797053398784 5.82231761204253 6.00666469009721 6.19101176815189 6.37535884620657 6.55970592426126 6.74405300231594 6.92840008037062 7.1127471584253 7.29709423647999 7.48144131453467 7.66578839258935 7.85013547064404 +18 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 3 +p 0.39831938929588 1 4.71623514371443 4.90058222176911 5.08492929982379 5.26927637787848 5.45362345593316 5.63797053398784 5.82231761204253 6.00666469009721 6.19101176815189 6.37535884620657 6.55970592426126 6.74405300231594 6.92840008037062 7.1127471584253 7.29709423647999 7.48144131453467 7.66578839258935 7.85013547064404 +18 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 6 +p 0.39831938929588 1 3.14437043494029 3.32081017208637 3.49724990923245 3.67368964637854 3.85012938352462 4.0265691206707 4.20300885781678 4.37944859496286 4.55588833210895 4.73232806925503 4.90876780640111 5.08520754354719 5.26164728069327 5.43808701783936 5.61452675498544 5.79096649213152 5.9674062292776 6.14384596642368 +18 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 4 +p 0.39831938929588 1 3.14437043494029 3.32081017208637 3.49724990923245 3.67368964637854 3.85012938352462 4.0265691206707 4.20300885781678 4.37944859496286 4.55588833210895 4.73232806925503 4.90876780640111 5.08520754354719 5.26164728069327 5.43808701783936 5.61452675498544 5.79096649213152 5.9674062292776 6.14384596642368 +2 5 22 +p 0.39831938929588 1 -47.0001923084036 -37.0001388891569 +2 1 2 +p 0.39831938929588 1 -47.0001923084036 -37.0001388891569 +2 13 40 +p 0.39831938929588 1 46.9974984159807 85 +2 4 2 +p 0.39831938929588 1 46.9974984159807 85 +2 2 10 +p 0.39831938929588 1 2.5 11.5001923097777 +2 3 4 +p 0.39831938929588 1 2.5 11.5001923097777 +2 1 4 +p 0.39831938929588 1 0 0.651086939951783 +2 1 4 +p 0.39831938929588 1 0 0.651086939951783 +2 1 6 +p 0.39831938929588 1 31 80 +2 4 3 +p 0.39831938929588 1 31 80 +2 1 11 +p 0.39831938929588 1 2.5 11.5770372063684 +2 2 11 +p 0.39831938929588 1 2.5 11.5770372063684 +11 10 12 13 14 15 16 17 18 19 20 11 +p 0.39831938929588 1 0.0186368456408336 0.0922390822177711 0.185058071250169 0.295461426115575 0.405864780980982 0.516268135846388 0.626671490711794 0.7370748455772 0.847478200442607 0.923739100221303 1 +11 13 14 15 16 17 18 19 20 21 22 1 +p 0.39831938929588 1 0.0186368456408336 0.0922390822177711 0.185058071250169 0.295461426115575 0.405864780980982 0.516268135846388 0.626671490711794 0.7370748455772 0.847478200442607 0.923739100221303 1 +2 3 2 +p 0.39831938929588 1 -91.4998611108432 -90.5 +2 2 4 +p 0.39831938929588 1 -91.4998611108432 -90.5 +4 1 3 4 2 +p 0.39831938929588 1 1.43145698603713 1.4769775058397 1.52249802564228 1.56801854544485 +4 4 5 6 3 +p 0.39831938929588 1 1.43145698603713 1.4769775058397 1.52249802564228 1.56801854544485 +2 1 10 +p 0.39831938929588 1 2.5 11.500192308739 +2 6 8 +p 0.39831938929588 1 2.5 11.500192308739 +11 11 12 13 14 15 16 17 18 19 20 10 +p 0.39831938929588 1 0 0.0662402979787815 0.150444773275064 0.249805220243237 0.37414532659895 0.508281930005982 0.629004873072311 0.74972781613864 0.858378464898337 0.919858106366068 0.9813377478338 +11 1 3 4 5 6 7 8 9 10 11 2 +p 0.39831938929588 1 0 0.0662402979787815 0.150444773275064 0.249805220243237 0.37414532659895 0.508281930005982 0.629004873072311 0.74972781613864 0.858378464898337 0.919858106366068 0.9813377478338 +2 5 2 +p 0.39831938929588 1 20 31 +2 1 2 +p 0.39831938929588 1 20 31 +2 3 1 +p 0.39831938929588 1 -110.001250195374 -108.999861110843 +2 56 38 +p 0.39831938929588 1 -110.001250195374 -108.999861110843 +2 2 20 +p 0.39831938929588 1 1 4 +2 3 5 +p 0.39831938929588 1 1 4 +2 5 7 +p 0.39831938929588 1 89.5012501953738 91.5025015644563 +2 2 20 +p 0.39831938929588 1 89.5012501953738 91.5025015644563 +2 20 2 +p 0.39831938929588 1 2 9 +2 7 9 +p 0.39831938929588 1 2 9 +2 12 2 +p 0.39831938929588 1 5 43.0025015697718 +2 10 8 +p 0.39831938929588 1 5 43.0025015697718 +2 9 11 +p 0.39831938929588 1 -112.002501564456 -108.999861110843 +2 74 92 +p 0.39831938929588 1 -112.002501564456 -108.999861110843 +2 12 10 +p 0.39831938929588 1 -108.999861110843 -98.9998076915963 +2 20 2 +p 0.39831938929588 1 -108.999861110843 -98.9998076915963 +2 2 20 +p 0.39831938929588 1 0 10 +2 12 11 +p 0.39831938929588 1 0 10 +18 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 12 +p 0.39831938929588 1 4.71623514371443 4.90058222176911 5.08492929982379 5.26927637787848 5.45362345593316 5.63797053398784 5.82231761204253 6.00666469009721 6.19101176815189 6.37535884620657 6.55970592426126 6.74405300231594 6.92840008037062 7.1127471584253 7.29709423647999 7.48144131453467 7.66578839258935 7.85013547064404 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.39831938929588 1 4.71623514371443 4.90058222176911 5.08492929982379 5.26927637787848 5.45362345593316 5.63797053398784 5.82231761204253 6.00666469009721 6.19101176815189 6.37535884620657 6.55970592426126 6.74405300231594 6.92840008037062 7.1127471584253 7.29709423647999 7.48144131453467 7.66578839258935 7.85013547064404 +2 23 41 +p 0.39831938929588 1 5 85 +2 3 1 +p 0.39831938929588 1 5 85 +18 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 5 +p 0.39831938929588 1 4.71516676173406 4.89963953178636 5.08411230183867 5.26858507189097 5.45305784194327 5.63753061199558 5.82200338204788 6.00647615210018 6.19094892215249 6.37542169220479 6.55989446225709 6.7443672323094 6.9288400023617 7.113312772414 7.29778554246631 7.48225831251861 7.66673108257091 7.85120385262322 +18 37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 38 +p 0.39831938929588 1 4.71516676173406 4.89963953178636 5.08411230183867 5.26858507189097 5.45305784194327 5.63753061199558 5.82200338204788 6.00647615210018 6.19094892215249 6.37542169220479 6.55989446225709 6.7443672323094 6.9288400023617 7.113312772414 7.29778554246631 7.48225831251861 7.66673108257091 7.85120385262322 +2 7 24 +p 0.39831938929588 1 20 80 +2 4 2 +p 0.39831938929588 1 20 80 +2 3 5 +p 0.39831938929588 1 -47.0001923084036 -37.0001388891569 +2 1 19 +p 0.39831938929588 1 -47.0001923084036 -37.0001388891569 +2 4 6 +p 0.39831938929588 1 -37.0001388891567 -35.9987498046261 +2 37 55 +p 0.39831938929588 1 -37.0001388891567 -35.9987498046261 +2 1 19 +p 0.39831938929588 1 0 10 +2 5 7 +p 0.39831938929588 1 0 10 +2 1 19 +p 0.39831938929588 1 1 4 +2 6 8 +p 0.39831938929588 1 1 4 +2 7 9 +p 0.39831938929588 1 -37.0001388891567 -33.9974984355436 +2 91 57 +p 0.39831938929588 1 -37.0001388891567 -33.9974984355436 +2 10 8 +p 0.39831938929588 1 54.4974984355436 56.4987498046261 +2 19 1 +p 0.39831938929588 1 54.4974984355436 56.4987498046261 +2 19 1 +p 0.39831938929588 1 2 9 +2 10 9 +p 0.39831938929588 1 2 9 +37 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 +p 0.39831938929588 1 3.14159265358979 3.31612557878922 3.49065850398866 3.66519142918809 3.83972435438752 4.01425727958696 4.18879020478639 4.36332312998582 4.53785605518525 4.71238898038469 4.88692190558412 5.06145483078355 5.23598775598299 5.41052068118242 5.58505360638185 5.75958653158128 5.93411945678072 6.10865238198015 6.28318530717958 6.45771823237901 6.63225115757845 6.80678408277788 6.98131700797731 7.15584993317675 7.33038285837618 7.50491578357561 7.67944870877504 7.85398163397448 8.02851455917391 8.20304748437334 8.37758040957278 8.55211333477221 8.72664625997164 8.90117918517107 9.07571211037051 9.25024503556994 9.42477796076938 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.39831938929588 1 3.14159265358979 3.31612557878922 3.49065850398866 3.66519142918809 3.83972435438752 4.01425727958696 4.18879020478639 4.36332312998582 4.53785605518525 4.71238898038469 4.88692190558412 5.06145483078355 5.23598775598299 5.41052068118242 5.58505360638185 5.75958653158128 5.93411945678072 6.10865238198015 6.28318530717958 6.45771823237901 6.63225115757845 6.80678408277788 6.98131700797731 7.15584993317675 7.33038285837618 7.50491578357561 7.67944870877504 7.85398163397448 8.02851455917391 8.20304748437334 8.37758040957278 8.55211333477221 8.72664625997164 8.90117918517107 9.07571211037051 9.25024503556994 9.42477796076938 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.39831938929588 1 7.87898423887687 8.06084232380542 8.24270040873398 8.42455849366253 8.60641657859109 8.78827466351964 8.9701327484482 9.15199083337675 9.33384891830531 9.51570700323386 9.69756508816242 9.87942317309097 10.0612812580195 10.2431393429481 10.4249974278766 10.6068555128052 10.7887135977337 10.9705716826623 +18 55 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 57 +p 0.39831938929588 1 7.87898423887687 8.06084232380542 8.24270040873398 8.42455849366253 8.60641657859109 8.78827466351964 8.9701327484482 9.15199083337675 9.33384891830531 9.51570700323386 9.69756508816242 9.87942317309097 10.0612812580195 10.2431393429481 10.4249974278766 10.6068555128052 10.7887135977337 10.9705716826623 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.39831938929588 1 1.59579893169728 1.77765701662583 1.95951510155439 2.14137318648294 2.32323127141149 2.50508935634005 2.6869474412686 2.86880552619716 3.05066361112571 3.23252169605426 3.41437978098282 3.59623786591137 3.77809595083992 3.95995403576848 4.14181212069703 4.32367020562558 4.50552829055414 4.68738637548269 +18 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 56 +p 0.39831938929588 1 1.59579893169728 1.77765701662583 1.95951510155439 2.14137318648294 2.32323127141149 2.50508935634005 2.6869474412686 2.86880552619716 3.05066361112571 3.23252169605426 3.41437978098282 3.59623786591137 3.77809595083992 3.95995403576848 4.14181212069703 4.32367020562558 4.50552829055414 4.68738637548269 +2 57 91 +p 0.39831938929588 1 -28.0012501953738 -27.0001086957805 +2 1 2 +p 0.39831938929588 1 -28.0012501953738 -27.0001086957805 +2 92 74 +p 0.39831938929588 1 -118.999891304219 -117.998749804626 +2 1 2 +p 0.39831938929588 1 -118.999891304219 -117.998749804626 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.39831938929588 1 3.14376656834503 3.32831038152608 3.51285419470712 3.69739800788817 3.88194182106922 4.06648563425026 4.25102944743131 4.43557326061236 4.6201170737934 4.80466088697445 4.9892047001555 5.17374851333654 5.35829232651759 5.54283613969864 5.72737995287968 5.91192376606073 6.09646757924178 6.28101139242283 +18 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 92 +p 0.39831938929588 1 3.14376656834503 3.32831038152608 3.51285419470712 3.69739800788817 3.88194182106922 4.06648563425026 4.25102944743131 4.43557326061236 4.6201170737934 4.80466088697445 4.9892047001555 5.17374851333654 5.35829232651759 5.54283613969864 5.72737995287968 5.91192376606073 6.09646757924178 6.28101139242283 +2 1 19 +p 0.39831938929588 1 1 4 +2 2 4 +p 0.39831938929588 1 1 4 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.39831938929588 1 0.0250026049023839 0.206860689830937 0.388718774759491 0.570576859688044 0.752434944616597 0.934293029545151 1.1161511144737 1.29800919940226 1.47986728433081 1.66172536925936 1.84358345418792 2.02544153911647 2.20729962404502 2.38915770897358 2.57101579390213 2.75287387883068 2.93473196375924 3.11659004868779 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.39831938929588 1 0.0250026049023839 0.206860689830937 0.388718774759491 0.570576859688044 0.752434944616597 0.934293029545151 1.1161511144737 1.29800919940226 1.47986728433081 1.66172536925936 1.84358345418792 2.02544153911647 2.20729962404502 2.38915770897358 2.57101579390213 2.75287387883068 2.93473196375924 3.11659004868779 +2 19 1 +p 0.39831938929588 1 95.4974984355436 97.4987498046261 +2 6 4 +p 0.39831938929588 1 95.4974984355436 97.4987498046261 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.39831938929588 1 1.62081718360324 1.79973194477824 1.97864670595324 2.15756146712824 2.33647622830324 2.51539098947825 2.69430575065325 2.87322051182825 3.05213527300325 3.23105003417825 3.40996479535325 3.58887955652825 3.76779431770325 3.94670907887825 4.12562384005326 4.30453860122826 4.48345336240326 4.66236812357826 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.39831938929588 1 1.62081718360324 1.79973194477824 1.97864670595324 2.15756146712824 2.33647622830324 2.51539098947825 2.69430575065325 2.87322051182825 3.05213527300325 3.23105003417825 3.40996479535325 3.58887955652825 3.76779431770325 3.94670907887825 4.12562384005326 4.30453860122826 4.48345336240326 4.66236812357826 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.39831938929588 1 1.62081718360324 1.79973194477824 1.97864670595324 2.15756146712824 2.33647622830324 2.51539098947825 2.69430575065325 2.87322051182825 3.05213527300325 3.23105003417825 3.40996479535325 3.58887955652825 3.76779431770325 3.94670907887825 4.12562384005326 4.30453860122826 4.48345336240326 4.66236812357826 +18 56 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 74 +p 0.39831938929588 1 1.62081718360324 1.79973194477824 1.97864670595324 2.15756146712824 2.33647622830324 2.51539098947825 2.69430575065325 2.87322051182825 3.05213527300325 3.23105003417825 3.40996479535325 3.58887955652825 3.76779431770325 3.94670907887825 4.12562384005326 4.30453860122826 4.48345336240326 4.66236812357826 +2 19 1 +p 0.39831938929588 1 2 9 +2 6 5 +p 0.39831938929588 1 2 9 +37 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 +p 0.39831938929588 1 3.14159265358979 3.31612557878922 3.49065850398866 3.66519142918809 3.83972435438752 4.01425727958696 4.18879020478639 4.36332312998582 4.53785605518525 4.71238898038469 4.88692190558412 5.06145483078355 5.23598775598299 5.41052068118242 5.58505360638185 5.75958653158128 5.93411945678072 6.10865238198015 6.28318530717958 6.45771823237901 6.63225115757845 6.80678408277788 6.98131700797731 7.15584993317675 7.33038285837618 7.50491578357561 7.67944870877504 7.85398163397448 8.02851455917391 8.20304748437334 8.37758040957278 8.55211333477221 8.72664625997164 8.90117918517107 9.07571211037051 9.25024503556994 9.42477796076938 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.39831938929588 1 3.14159265358979 3.31612557878922 3.49065850398866 3.66519142918809 3.83972435438752 4.01425727958696 4.18879020478639 4.36332312998582 4.53785605518525 4.71238898038469 4.88692190558412 5.06145483078355 5.23598775598299 5.41052068118242 5.58505360638185 5.75958653158128 5.93411945678072 6.10865238198015 6.28318530717958 6.45771823237901 6.63225115757845 6.80678408277788 6.98131700797731 7.15584993317675 7.33038285837618 7.50491578357561 7.67944870877504 7.85398163397448 8.02851455917391 8.20304748437334 8.37758040957278 8.55211333477221 8.72664625997164 8.90117918517107 9.07571211037051 9.25024503556994 9.42477796076938 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.39831938929588 1 3.14376656834503 3.32831038152608 3.51285419470712 3.69739800788817 3.88194182106922 4.06648563425026 4.25102944743131 4.43557326061236 4.6201170737934 4.80466088697445 4.9892047001555 5.17374851333654 5.35829232651759 5.54283613969864 5.72737995287968 5.91192376606073 6.09646757924178 6.28101139242283 +18 37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 38 +p 0.39831938929588 1 3.14376656834503 3.32831038152608 3.51285419470712 3.69739800788817 3.88194182106922 4.06648563425026 4.25102944743131 4.43557326061236 4.6201170737934 4.80466088697445 4.9892047001555 5.17374851333654 5.35829232651759 5.54283613969864 5.72737995287968 5.91192376606073 6.09646757924178 6.28101139242283 +2 55 37 +p 0.39831938929588 1 -30.0025015644561 -27.0001086957805 +2 6 4 +p 0.39831938929588 1 -30.0025015644561 -27.0001086957805 +2 38 56 +p 0.39831938929588 1 -118.999891304219 -115.997498435544 +2 3 5 +p 0.39831938929588 1 -118.999891304219 -115.997498435544 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.39831938929588 1 7.90400249078283 8.08291725195791 8.26183201313299 8.44074677430807 8.61966153548315 8.79857629665823 8.97749105783332 9.1564058190084 9.33532058018348 9.51423534135856 9.69315010253364 9.87206486370872 10.0509796248838 10.2298943860589 10.408809147234 10.587723908409 10.7666386695841 10.9455534307592 +18 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 55 +p 0.39831938929588 1 7.90400249078283 8.08291725195791 8.26183201313299 8.44074677430807 8.61966153548315 8.79857629665823 8.97749105783332 9.1564058190084 9.33532058018348 9.51423534135856 9.69315010253364 9.87206486370872 10.0509796248838 10.2298943860589 10.408809147234 10.587723908409 10.7666386695841 10.9455534307592 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.39831938929588 1 4.71516676173406 4.89963953178636 5.08411230183867 5.26858507189097 5.45305784194327 5.63753061199558 5.82200338204788 6.00647615210018 6.19094892215249 6.37542169220479 6.55989446225709 6.7443672323094 6.9288400023617 7.113312772414 7.29778554246631 7.48225831251861 7.66673108257091 7.85120385262322 +18 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 92 +p 0.39831938929588 1 4.71516676173406 4.89963953178636 5.08411230183867 5.26858507189097 5.45305784194327 5.63753061199558 5.82200338204788 6.00647615210018 6.19094892215249 6.37542169220479 6.55989446225709 6.7443672323094 6.9288400023617 7.113312772414 7.29778554246631 7.48225831251861 7.66673108257091 7.85120385262322 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.39831938929588 1 3.14437043494049 3.32884320499272 3.51331597504494 3.69778874509717 3.88226151514939 4.06673428520162 4.25120705525384 4.43567982530607 4.62015259535829 4.80462536541052 4.98909813546274 5.17357090551497 5.35804367556719 5.54251644561942 5.72698921567164 5.91146198572387 6.09593475577609 6.28040752582832 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.39831938929588 1 3.14437043494049 3.32884320499272 3.51331597504494 3.69778874509717 3.88226151514939 4.06673428520162 4.25120705525384 4.43567982530607 4.62015259535829 4.80462536541052 4.98909813546274 5.17357090551497 5.35804367556719 5.54251644561942 5.72698921567164 5.91146198572387 6.09593475577609 6.28040752582832 +2 2 20 +p 0.39831938929588 1 1 4 +2 1 3 +p 0.39831938929588 1 1 4 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.39831938929588 1 3.16659525849218 3.34845334342073 3.53031142834929 3.71216951327784 3.8940275982064 4.07588568313495 4.25774376806351 4.43960185299206 4.62145993792062 4.80331802284917 4.98517610777773 5.16703419270628 5.34889227763484 5.53075036256339 5.71260844749195 5.8944665324205 6.07632461734906 6.25818270227761 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.39831938929588 1 3.16659525849218 3.34845334342073 3.53031142834929 3.71216951327784 3.8940275982064 4.07588568313495 4.25774376806351 4.43960185299206 4.62145993792062 4.80331802284917 4.98517610777773 5.16703419270628 5.34889227763484 5.53075036256339 5.71260844749195 5.8944665324205 6.07632461734906 6.25818270227761 +2 2 20 +p 0.39831938929588 1 48.5012501953738 50.5025015644562 +2 3 5 +p 0.39831938929588 1 48.5012501953738 50.5025015644562 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.39831938929588 1 4.76240983719304 4.94132459836804 5.12023935954304 5.29915412071805 5.47806888189305 5.65698364306805 5.83589840424305 6.01481316541805 6.19372792659306 6.37264268776806 6.55155744894306 6.73047221011806 6.90938697129306 7.08830173246807 7.26721649364307 7.44613125481807 7.62504601599307 7.80396077716807 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.39831938929588 1 4.76240983719304 4.94132459836804 5.12023935954304 5.29915412071805 5.47806888189305 5.65698364306805 5.83589840424305 6.01481316541805 6.19372792659306 6.37264268776806 6.55155744894306 6.73047221011806 6.90938697129306 7.08830173246807 7.26721649364307 7.44613125481807 7.62504601599307 7.80396077716807 +2 20 2 +p 0.39831938929588 1 2 9 +2 5 6 +p 0.39831938929588 1 2 9 +2 1 2 +p 0.39831938929588 1 1 4 +2 3 39 +p 0.39831938929588 1 1 4 +37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 2 +p 0.39831938929588 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.39831938929588 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +2 19 1 +p 0.39831938929588 1 0 10 +2 4 2 +p 0.39831938929588 1 0 10 +2 20 2 +p 0.39831938929588 1 0 10 +2 3 1 +p 0.39831938929588 1 0 10 +2 1 2 +p 0.39831938929588 1 2 9 +2 39 3 +p 0.39831938929588 1 2 9 +36 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 1 +p 0.39831938929588 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 37 +p 0.39831938929588 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.0779274284405656 1 3.15270399333937 3.33619634475641 3.51968869617346 3.7031810475905 3.88667339900755 4.07016575042459 4.25365810184164 4.43715045325868 4.62064280467573 4.80413515609277 4.98762750750982 5.17111985892686 5.35461221034391 5.53810456176095 5.721596913178 5.90508926459504 6.08858161601209 6.27207396742913 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.0779274284405656 1 3.15270399333937 3.33619634475641 3.51968869617346 3.7031810475905 3.88667339900755 4.07016575042459 4.25365810184164 4.43715045325868 4.62064280467573 4.80413515609277 4.98762750750982 5.17111985892686 5.35461221034391 5.53810456176095 5.721596913178 5.90508926459504 6.08858161601209 6.27207396742913 +2 19 1 +p 0.0779274284405656 1 -29.500833391212 -26.5005555727036 +2 1 2 +p 0.0779274284405656 1 -29.500833391212 -26.5005555727036 +2 2 20 +p 0.0779274284405656 1 -44.4994444272963 -41.4991666087879 +2 1 2 +p 0.0779274284405656 1 -44.4994444272963 -41.4991666087879 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.0779274284405656 1 4.72905641875538 4.91189511151114 5.0947338042669 5.27757249702266 5.46041118977842 5.64324988253418 5.82608857528994 6.0089272680457 6.19176596080146 6.37460465355722 6.55744334631299 6.74028203906875 6.92312073182451 7.10595942458027 7.28879811733603 7.47163681009179 7.65447550284755 7.83731419560331 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.0779274284405656 1 4.72905641875538 4.91189511151114 5.0947338042669 5.27757249702266 5.46041118977842 5.64324988253418 5.82608857528994 6.0089272680457 6.19176596080146 6.37460465355722 6.55744334631299 6.74028203906875 6.92312073182451 7.10595942458027 7.28879811733603 7.47163681009179 7.65447550284755 7.83731419560331 +2 19 1 +p 0.0779274284405656 1 0 1 +2 4 2 +p 0.0779274284405656 1 0 1 +2 20 2 +p 0.0779274284405656 1 0 1 +2 3 1 +p 0.0779274284405656 1 0 1 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.0779274284405656 1 3.15270399333937 3.33619634475641 3.51968869617346 3.7031810475905 3.88667339900755 4.07016575042459 4.25365810184164 4.43715045325868 4.62064280467573 4.80413515609277 4.98762750750982 5.17111985892686 5.35461221034391 5.53810456176095 5.721596913178 5.90508926459504 6.08858161601209 6.27207396742913 +18 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 +p 0.0779274284405656 1 3.15270399333937 3.33619634475641 3.51968869617346 3.7031810475905 3.88667339900755 4.07016575042459 4.25365810184164 4.43715045325868 4.62064280467573 4.80413515609277 4.98762750750982 5.17111985892686 5.35461221034391 5.53810456176095 5.721596913178 5.90508926459504 6.08858161601209 6.27207396742913 +2 19 1 +p 0.0779274284405656 1 0.5 1.5 +2 3 1 +p 0.0779274284405656 1 0.5 1.5 +2 3 4 +p 0.0779274284405656 1 -29.500833391212 -26.5005555727036 +2 19 1 +p 0.0779274284405656 1 -29.500833391212 -26.5005555727036 +2 20 2 +p 0.0779274284405656 1 0.5 1.5 +2 4 2 +p 0.0779274284405656 1 0.5 1.5 +2 3 4 +p 0.0779274284405656 1 -44.4994444272963 -41.4991666087879 +2 2 20 +p 0.0779274284405656 1 -44.4994444272963 -41.4991666087879 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.0779274284405656 1 4.72905641875539 4.91189511151115 5.09473380426691 5.27757249702267 5.46041118977843 5.64324988253419 5.82608857528995 6.00892726804571 6.19176596080148 6.37460465355724 6.557443346313 6.74028203906876 6.92312073182452 7.10595942458028 7.28879811733604 7.4716368100918 7.65447550284756 7.83731419560332 +18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 20 +p 0.0779274284405656 1 4.72905641875539 4.91189511151115 5.09473380426691 5.27757249702267 5.46041118977843 5.64324988253419 5.82608857528995 6.00892726804571 6.19176596080148 6.37460465355724 6.557443346313 6.74028203906876 6.92312073182452 7.10595942458028 7.28879811733604 7.4716368100918 7.65447550284756 7.83731419560332 +4 1 3 4 2 +p 0.5192000008 1 3.45211448825381 3.454893144733 3.45767180121219 3.46045045769138 +4 1 3 4 2 +p 0.5192000008 1 3.45211448825381 3.454893144733 3.45767180121219 3.46045045769138 +2 5 1 +p 0.5192000008 1 14 20.6 +2 1 34 +p 0.5192000008 1 14 20.6 +2 44 76 +p 0.5192000008 1 0 1 +2 2 6 +p 0.5192000008 1 0 1 +11 7 8 9 10 11 12 13 14 15 16 5 +p 0.5192000008 1 1.5707963267949 1.75892814294097 1.94705995908703 2.1351917752331 2.32332359137916 2.51145540752523 2.6995872236713 2.88771903981736 3.07585085596343 3.26398267210949 3.45211448825556 +11 34 35 36 37 38 39 40 41 42 43 1 +p 0.5192000008 1 1.5707963267949 1.75892814294097 1.94705995908703 2.1351917752331 2.32332359137916 2.51145540752523 2.6995872236713 2.88771903981736 3.07585085596343 3.26398267210949 3.45211448825556 +14 6 18 19 20 21 22 23 24 25 26 27 28 29 17 +p 0.5192000008 1 2.00685586902105 2.18143075895454 2.35600564888802 2.53058053882151 2.705155428755 2.87973031868849 3.05430520862197 3.22888009855546 3.40345498848895 3.57802987842243 3.75260476835592 3.92717965828941 4.1017545482229 4.27632943815638 +14 1 3 4 5 6 7 8 9 10 11 12 13 14 2 +p 0.5192000008 1 2.00685586902105 2.18143075895454 2.35600564888802 2.53058053882151 2.705155428755 2.87973031868849 3.05430520862197 3.22888009855546 3.40345498848895 3.57802987842243 3.75260476835592 3.92717965828941 4.1017545482229 4.27632943815638 +2 32 70 +p 0.5192000008 1 0.6 14 +2 30 7 +p 0.5192000008 1 0.6 14 +2 3 42 +p 0.5192000008 1 0 1 +2 17 31 +p 0.5192000008 1 0 1 +36 30 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 32 +p 0.5192000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 37 +p 0.5192000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +4 31 68 69 67 +p 0.5192000008 1 5.96432750307801 5.9671061595572 5.96988481603639 5.97266347251558 +4 37 69 70 5 +p 0.5192000008 1 5.96432750307801 5.9671061595572 5.96988481603639 5.97266347251558 +2 71 67 +p 0.5192000008 1 14 20.6 +2 2 35 +p 0.5192000008 1 14 20.6 +11 71 72 73 74 75 76 77 78 79 80 70 +p 0.5192000008 1 5.97266347251382 6.16079528865989 6.34892710480595 6.53705892095202 6.72519073709808 6.91332255324415 7.10145436939021 7.28958618553628 7.47771800168235 7.66584981782841 7.85398163397448 +11 2 44 45 46 47 48 49 50 51 52 34 +p 0.5192000008 1 5.97266347251382 6.16079528865989 6.34892710480595 6.53705892095202 6.72519073709808 6.91332255324415 7.10145436939021 7.28958618553628 7.47771800168235 7.66584981782841 7.85398163397448 +33 34 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 35 +p 0.5192000008 1 1.86048332079203 2.03872742451657 2.21697152824111 2.39521563196565 2.57345973569019 2.75170383941474 2.92994794313928 3.10819204686382 3.28643615058836 3.4646802543129 3.64292435803744 3.82116846176198 3.99941256548652 4.17765666921107 4.35590077293561 4.53414487666015 4.71238898038469 4.89063308410923 5.06887718783377 5.24712129155831 5.42536539528285 5.6036094990074 5.78185360273194 5.96009770645648 6.13834181018102 6.31658591390556 6.4948300176301 6.67307412135464 6.85131822507918 7.02956232880373 7.20780643252827 7.38605053625281 7.56429463997735 +33 1 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 5 +p 0.5192000008 1 1.86048332079203 2.03872742451657 2.21697152824111 2.39521563196565 2.57345973569019 2.75170383941474 2.92994794313928 3.10819204686382 3.28643615058836 3.4646802543129 3.64292435803744 3.82116846176198 3.99941256548652 4.17765666921107 4.35590077293561 4.53414487666015 4.71238898038469 4.89063308410923 5.06887718783377 5.24712129155831 5.42536539528285 5.6036094990074 5.78185360273194 5.96009770645648 6.13834181018102 6.31658591390556 6.4948300176301 6.67307412135464 6.85131822507918 7.02956232880373 7.20780643252827 7.38605053625281 7.56429463997735 +33 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 42 +p 0.5192000008 1 1.86042064395885 2.03866866498546 2.21691668601207 2.39516470703869 2.5734127280653 2.75166074909191 2.92990877011852 3.10815679114513 3.28640481217175 3.46465283319836 3.64290085422497 3.82114887525158 3.99939689627819 4.17764491730481 4.35589293833142 4.53414095935803 4.71238898038464 4.89063700141125 5.06888502243786 5.24713304346447 5.42538106449109 5.6036290855177 5.78187710654431 5.96012512757092 6.13837314859753 6.31662116962414 6.49486919065076 6.67311721167737 6.85136523270398 7.02961325373059 7.2078612747572 7.38610929578381 7.56435731681043 +33 2 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 37 +p 0.5192000008 1 1.86042064395885 2.03866866498546 2.21691668601207 2.39516470703869 2.5734127280653 2.75166074909191 2.92990877011852 3.10815679114513 3.28640481217175 3.46465283319836 3.64290085422497 3.82114887525158 3.99939689627819 4.17764491730481 4.35589293833142 4.53414095935803 4.71238898038464 4.89063700141125 5.06888502243786 5.24713304346447 5.42538106449109 5.6036290855177 5.78187710654431 5.96012512757092 6.13837314859753 6.31662116962414 6.49486919065076 6.67311721167737 6.85136523270398 7.02961325373059 7.2078612747572 7.38610929578381 7.56435731681043 +33 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 2 +p 0.5192000008 1 1.86048332079207 2.03872742451661 2.21697152824115 2.39521563196569 2.57345973569023 2.75170383941478 2.92994794313932 3.10819204686386 3.2864361505884 3.46468025431294 3.64292435803748 3.82116846176202 3.99941256548656 4.17765666921111 4.35590077293565 4.53414487666019 4.71238898038473 4.89063308410927 5.06887718783381 5.24712129155835 5.42536539528289 5.60360949900744 5.78185360273198 5.96009770645652 6.13834181018106 6.3165859139056 6.49483001763014 6.67307412135468 6.85131822507922 7.02956232880377 7.20780643252831 7.38605053625285 7.56429463997739 +33 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 2 +p 0.5192000008 1 1.86048332079207 2.03872742451661 2.21697152824115 2.39521563196569 2.57345973569023 2.75170383941478 2.92994794313932 3.10819204686386 3.2864361505884 3.46468025431294 3.64292435803748 3.82116846176202 3.99941256548656 4.17765666921111 4.35590077293565 4.53414487666019 4.71238898038473 4.89063308410927 5.06887718783381 5.24712129155835 5.42536539528289 5.60360949900744 5.78185360273198 5.96009770645652 6.13834181018106 6.3165859139056 6.49483001763014 6.67307412135468 6.85131822507922 7.02956232880377 7.20780643252831 7.38605053625285 7.56429463997739 +2 1 2 +p 0.5192000008 1 1.67705098312484 4.47213595499958 +2 43 6 +p 0.5192000008 1 1.67705098312484 4.47213595499958 +4 3 4 5 1 +p 0.5192000008 1 1.28437468244846 1.37984856389727 1.47532244534609 1.5707963267949 +4 2 18 19 15 +p 0.5192000008 1 1.28437468244846 1.37984856389727 1.47532244534609 1.5707963267949 +37 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 +p 0.5192000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.5192000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +4 43 77 78 76 +p 0.5192000008 1 1.5707963267949 1.66627020824374 1.76174408969259 1.85721797114143 +4 15 16 17 1 +p 0.5192000008 1 1.5707963267949 1.66627020824374 1.76174408969259 1.85721797114143 +36 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 2 +p 0.5192000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 53 +p 0.5192000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 1 +p 0.5192000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.5192000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +36 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 1 +p 0.5192000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 37 +p 0.5192000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +2 1 2 +p 0.5192000008 1 0 13.4 +2 38 3 +p 0.5192000008 1 0 13.4 +2 1 2 +p 0.5192000008 1 0.100000000000002 17 +2 3 38 +p 0.5192000008 1 0.100000000000002 17 +37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 2 +p 0.5192000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.5192000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 1 +p 0.5192000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 37 +p 0.5192000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +2 1 2 +p 0.5192000008 1 1 27.9 +2 38 3 +p 0.5192000008 1 1 27.9 +36 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 2 +p 0.5192000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 37 +p 0.5192000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 38 +p 0.5192000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.5192000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +37 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 2 +p 0.5192000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.5192000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +2 38 2 +p 0.5192000008 1 0 17 +2 39 1 +p 0.5192000008 1 0 17 +36 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 1 +p 0.5192000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 37 +p 0.5192000008 1 1.5707963267949 1.75031590700003 1.92983548720516 2.10935506741029 2.28887464761542 2.46839422782055 2.64791380802569 2.82743338823082 3.00695296843595 3.18647254864108 3.36599212884621 3.54551170905134 3.72503128925647 3.9045508694616 4.08407044966673 4.26359002987186 4.443109610077 4.62262919028213 4.80214877048726 4.98166835069239 5.16118793089752 5.34070751110265 5.52022709130778 5.69974667151291 5.87926625171804 6.05878583192318 6.23830541212831 6.41782499233344 6.59734457253857 6.7768641527437 6.95638373294883 7.13590331315396 7.31542289335909 7.49494247356422 7.67446205376935 7.85398163397448 +2 1 2 +p 0.5192000008 1 4.90000000000001 50 +2 3 38 +p 0.5192000008 1 4.90000000000001 50 +37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 2 +p 0.5192000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +37 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 +p 0.5192000008 1 0 0.174532925199433 0.349065850398866 0.523598775598299 0.698131700797732 0.872664625997165 1.0471975511966 1.22173047639603 1.39626340159546 1.5707963267949 1.74532925199433 1.91986217719376 2.0943951023932 2.26892802759263 2.44346095279206 2.6179938779915 2.79252680319093 2.96705972839036 3.1415926535898 3.31612557878923 3.49065850398866 3.66519142918809 3.83972435438753 4.01425727958696 4.18879020478639 4.36332312998583 4.53785605518526 4.71238898038469 4.88692190558413 5.06145483078356 5.23598775598299 5.41052068118242 5.58505360638186 5.75958653158129 5.93411945678072 6.10865238198015 6.28318530717959 +Surfaces 351 +2 0 0 0 0 0 1 1 0 0 0 1 0 26 +1 0 0 0 0 0 1 1 0 0 0 1 0 +1 0 0 0 0 1 0 0 0 1 1 0 0 +1 0 0 0 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 24 +2 0 0 0 0 0 1 1 0 0 0 1 0 23 +1 0 0 35 0 0 1 1 0 0 0 1 0 +1 0 0 4 0 0 1 1 0 0 0 1 0 +1 0 0 90 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 32 +2 -159 0 -32 1 0 0 0 0 1 0 1 0 32 +2 -159 0 -32 1 0 0 0 0 1 0 1 0 32 +1 0 0 0 0 1 0 0 0 1 1 0 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 29 +5 0 0 0 0 0 1 1 0 0 0 1 0 32 3 +6 1 0 0 +7 0 0 6 22 5 -133 0 -63.999999999941501 -133 -3.9367350052954899 -63.999999606267899 -133 -7.8758970446441996 -63.418815539857597 -133 -11.7047230549851 -62.255232671957003 -133 -15.31976488089 -60.539041971665299 -133 -18.624524916214799 -58.317797893253598 -133 -24.695744236289102 -52.793413369113999 -133 -27.397248476601298 -49.410113885409203 -133 -29.5321403310767 -45.614694155493503 -133 -31.0317772842956 -41.526362377619499 -133 -31.8500328562519 -37.274728060535899 -133 -32.118386587363602 -28.735573878443599 -133 -31.568712084902302 -24.4409565369678 -133 -30.328746893340799 -20.266528131251299 -133 -28.436385094965999 -16.3445407930041 -133 -25.9526470408404 -12.798281438651699 -133 -20.007287979299399 -6.6631468174117998 -133 -16.540680122118602 -4.0692236194236102 -133 -12.680035013817401 -2.0546612285118502 -133 -8.5466730279652392 -0.68426370769690004 -133 -4.2715641540742402 1.4210854715202001e-014 -133 1.13686837721616e-013 0 + 0 7 0.23501735746602601 5 0.49000787063611001 5 0.74499758603337995 5 1 7 +6 1 0 0 +7 0 0 6 22 5 -133 0 -63.999999999941501 -133 -3.9367350052954899 -63.999999606267899 -133 -7.8758970446441996 -63.418815539857597 -133 -11.7047230549851 -62.255232671957003 -133 -15.31976488089 -60.539041971665299 -133 -18.624524916214799 -58.317797893253598 -133 -24.695744236289102 -52.793413369113999 -133 -27.397248476601298 -49.410113885409203 -133 -29.5321403310767 -45.614694155493503 -133 -31.0317772842956 -41.526362377619499 -133 -31.8500328562519 -37.274728060535899 -133 -32.118386587363602 -28.735573878443599 -133 -31.568712084902302 -24.4409565369678 -133 -30.328746893340799 -20.266528131251299 -133 -28.436385094965999 -16.3445407930041 -133 -25.9526470408404 -12.798281438651699 -133 -20.007287979299399 -6.6631468174117998 -133 -16.540680122118602 -4.0692236194236102 -133 -12.680035013817401 -2.0546612285118502 -133 -8.5466730279652392 -0.68426370769690004 -133 -4.2715641540742402 1.4210854715202001e-014 -133 1.13686837721616e-013 0 + 0 7 0.23501735746602601 5 0.49000787063611001 5 0.74499758603337995 5 1 7 +1 0 0 100 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 26 +1 0 0 5 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 32 +1 0 0 0 0 0 1 1 0 0 0 1 0 +1 0 0 0 1 0 0 0 0 1 0 -1 0 +1 0 0 10 0 0 1 1 0 0 0 1 0 +1 80 0 0 1 0 0 0 0 1 0 -1 0 +2 -130 0 -32 1 0 0 0 0 -1 0 1 0 35 +2 -130 0 -32 1 0 0 0 0 -1 0 1 0 35 +2 -120 0 -32 1 0 0 0 0 -1 0 1 0 35 +2 -120 0 -32 1 0 0 0 0 -1 0 1 0 35 +2 -90 0 -32 1 0 0 0 0 -1 0 1 0 35 +2 -110 0 -32 1 0 0 0 0 -1 0 1 0 35 +2 -90 0 -32 1 0 0 0 0 -1 0 1 0 35 +2 -110 0 -32 1 0 0 0 0 -1 0 1 0 35 +2 -100 0 -32 1 0 0 0 0 -1 0 1 0 35 +2 -100 0 -32 1 0 0 0 0 -1 0 1 0 35 +2 -55.5 0 -32 1 0 0 0 -1 0 0 0 -1 26 +2 -55.5 0 -32 1 0 0 0 -1 0 0 0 -1 26 +6 1 0 0 +7 0 0 6 22 5 -127 0 -63.999999999943199 -127 -3.9367350052928201 -63.999999606269697 -127 -7.8758970446497898 -63.418815539850002 -127 -11.704723054979 -62.255232671966503 -127 -15.319764880894301 -60.539041971659501 -127 -18.624524916212899 -58.317797893255303 -127 -24.695744236288999 -52.793413369113999 -127 -27.397248476601401 -49.410113885409501 -127 -29.532140331076601 -45.6146941554927 -127 -31.0317772842957 -41.526362377620302 -127 -31.8500328562519 -37.274728060535601 -127 -32.118386587363503 -28.735573878445098 -127 -31.5687120849019 -24.440956536964201 -127 -30.328746893341901 -20.266528131255299 -127 -28.436385094964901 -16.344540793001901 -127 -25.952647040840802 -12.7982814386522 -127 -20.007287979298699 -6.6631468174110804 -127 -16.540680122120499 -4.0692236194250002 -127 -12.6800350138152 -2.0546612285107 -127 -8.5466730279662997 -0.68426370769728395 -127 -4.2715641540740297 1.4210854715202001e-014 -127 1.13686837721616e-013 0 + 0 7 0.235017357466172 5 0.49000787063624601 5 0.74499758603343802 5 1 7 +6 1 0 0 +7 0 0 6 22 5 -127 0 -63.999999999943199 -127 -3.9367350052928201 -63.999999606269697 -127 -7.8758970446497898 -63.418815539850002 -127 -11.704723054979 -62.255232671966503 -127 -15.319764880894301 -60.539041971659501 -127 -18.624524916212899 -58.317797893255303 -127 -24.695744236288999 -52.793413369113999 -127 -27.397248476601401 -49.410113885409501 -127 -29.532140331076601 -45.6146941554927 -127 -31.0317772842957 -41.526362377620302 -127 -31.8500328562519 -37.274728060535601 -127 -32.118386587363503 -28.735573878445098 -127 -31.5687120849019 -24.440956536964201 -127 -30.328746893341901 -20.266528131255299 -127 -28.436385094964901 -16.344540793001901 -127 -25.952647040840802 -12.7982814386522 -127 -20.007287979298699 -6.6631468174110804 -127 -16.540680122120499 -4.0692236194250002 -127 -12.6800350138152 -2.0546612285107 -127 -8.5466730279662997 -0.68426370769728395 -127 -4.2715641540740297 1.4210854715202001e-014 -127 1.13686837721616e-013 0 + 0 7 0.235017357466172 5 0.49000787063624601 5 0.74499758603343802 5 1 7 +2 -55.5 0 -32 1 0 0 0 0 -1 0 1 0 32 +2 -55.5 0 -32 1 0 0 0 0 -1 0 1 0 32 +6 1 0 0 +7 0 0 6 22 5 -123 0 -63.999999999941501 -123 -3.9367350052954899 -63.999999606267899 -123 -7.8758970446441996 -63.418815539857597 -123 -11.7047230549851 -62.255232671957003 -123 -15.31976488089 -60.539041971665299 -123 -18.624524916214799 -58.317797893253598 -123 -24.695744236289102 -52.793413369113999 -123 -27.397248476601298 -49.410113885409203 -123 -29.5321403310767 -45.614694155493503 -123 -31.0317772842956 -41.526362377619499 -123 -31.8500328562519 -37.274728060535899 -123 -32.118386587363602 -28.735573878443599 -123 -31.568712084902302 -24.4409565369678 -123 -30.328746893340799 -20.266528131251299 -123 -28.436385094965999 -16.3445407930041 -123 -25.9526470408404 -12.798281438651699 -123 -20.007287979299399 -6.6631468174117998 -123 -16.540680122118602 -4.0692236194236102 -123 -12.680035013817401 -2.0546612285118502 -123 -8.5466730279652392 -0.68426370769690004 -123 -4.2715641540742402 1.4210854715202001e-014 -123 1.13686837721616e-013 0 + 0 7 0.23501735746602601 5 0.49000787063611001 5 0.74499758603337995 5 1 7 +6 1 0 0 +7 0 0 6 22 5 -123 0 -63.999999999941501 -123 -3.9367350052954899 -63.999999606267899 -123 -7.8758970446441996 -63.418815539857597 -123 -11.7047230549851 -62.255232671957003 -123 -15.31976488089 -60.539041971665299 -123 -18.624524916214799 -58.317797893253598 -123 -24.695744236289102 -52.793413369113999 -123 -27.397248476601298 -49.410113885409203 -123 -29.5321403310767 -45.614694155493503 -123 -31.0317772842956 -41.526362377619499 -123 -31.8500328562519 -37.274728060535899 -123 -32.118386587363602 -28.735573878443599 -123 -31.568712084902302 -24.4409565369678 -123 -30.328746893340799 -20.266528131251299 -123 -28.436385094965999 -16.3445407930041 -123 -25.9526470408404 -12.798281438651699 -123 -20.007287979299399 -6.6631468174117998 -123 -16.540680122118602 -4.0692236194236102 -123 -12.680035013817401 -2.0546612285118502 -123 -8.5466730279652392 -0.68426370769690004 -123 -4.2715641540742402 1.4210854715202001e-014 -123 1.13686837721616e-013 0 + 0 7 0.23501735746602601 5 0.49000787063611001 5 0.74499758603337995 5 1 7 +2 -60 0 -32 1 0 0 0 0 1 0 -1 0 32 +2 -60 0 -32 1 0 0 0 0 1 0 -1 0 32 +1 0 0 0 0 1 0 0 0 1 1 0 0 +6 1 0 0 +7 0 0 6 22 5 -117 0 -63.999999999943199 -117 -3.9367350052928201 -63.999999606269697 -117 -7.8758970446497898 -63.418815539850002 -117 -11.704723054979 -62.255232671966503 -117 -15.319764880894301 -60.539041971659501 -117 -18.624524916212899 -58.317797893255303 -117 -24.695744236288999 -52.793413369113999 -117 -27.397248476601401 -49.410113885409501 -117 -29.532140331076601 -45.6146941554927 -117 -31.0317772842957 -41.526362377620302 -117 -31.8500328562519 -37.274728060535601 -117 -32.118386587363503 -28.735573878444399 -117 -31.568712084902099 -24.440956536965899 -117 -30.3287468933413 -20.266528131253501 -117 -28.436385094965299 -16.3445407930027 -117 -25.952647040840699 -12.798281438651999 -117 -20.007287979298599 -6.6631468174109703 -117 -16.5406801221209 -4.0692236194251903 -117 -12.6800350138144 -2.0546612285105299 -117 -8.5466730279670706 -0.68426370769731903 -117 -4.2715641540737304 1.4210854715202001e-014 -117 1.13686837721616e-013 0 + 0 7 0.23501735746614999 5 0.49000787063619899 5 0.74499758603340405 5 1 7 +6 1 0 0 +7 0 0 6 22 5 -117 0 -63.999999999943199 -117 -3.9367350052928201 -63.999999606269697 -117 -7.8758970446497898 -63.418815539850002 -117 -11.704723054979 -62.255232671966503 -117 -15.319764880894301 -60.539041971659501 -117 -18.624524916212899 -58.317797893255303 -117 -24.695744236288999 -52.793413369113999 -117 -27.397248476601401 -49.410113885409501 -117 -29.532140331076601 -45.6146941554927 -117 -31.0317772842957 -41.526362377620302 -117 -31.8500328562519 -37.274728060535601 -117 -32.118386587363503 -28.735573878444399 -117 -31.568712084902099 -24.440956536965899 -117 -30.3287468933413 -20.266528131253501 -117 -28.436385094965299 -16.3445407930027 -117 -25.952647040840699 -12.798281438651999 -117 -20.007287979298599 -6.6631468174109703 -117 -16.5406801221209 -4.0692236194251903 -117 -12.6800350138144 -2.0546612285105299 -117 -8.5466730279670706 -0.68426370769731903 -117 -4.2715641540737304 1.4210854715202001e-014 -117 1.13686837721616e-013 0 + 0 7 0.23501735746614999 5 0.49000787063619899 5 0.74499758603340405 5 1 7 +6 1 0 0 +1 -60 -40 -70 -1 0 0 +6 1 0 0 +1 -60 -40 -70 -1 0 0 +6 1 0 0 +7 0 0 6 22 5 -113 0 -63.999999999941501 -113 -3.9367350052956498 -63.999999606267899 -113 -7.8758970446439296 -63.418815539857597 -113 -11.7047230549852 -62.255232671957202 -113 -15.3197648808901 -60.539041971665 -113 -18.6245249162147 -58.317797893253598 -113 -24.695744236289102 -52.793413369113999 -113 -27.397248476601298 -49.410113885409203 -113 -29.5321403310767 -45.614694155493503 -113 -31.0317772842956 -41.526362377619499 -113 -31.8500328562519 -37.274728060535899 -113 -32.118386587363602 -28.735573878443599 -113 -31.568712084902302 -24.4409565369678 -113 -30.328746893340799 -20.266528131251299 -113 -28.436385094965999 -16.3445407930041 -113 -25.9526470408404 -12.798281438651699 -113 -20.007287979299399 -6.6631468174117998 -113 -16.540680122118602 -4.0692236194236102 -113 -12.680035013817401 -2.0546612285118502 -113 -8.5466730279652392 -0.68426370769690004 -113 -4.2715641540742402 1.4210854715202001e-014 -113 1.13686837721616e-013 0 + 0 7 0.235017357466032 5 0.49000787063611401 5 0.74499758603338195 5 1 7 +6 1 0 0 +7 0 0 6 22 5 -113 0 -63.999999999941501 -113 -3.9367350052956498 -63.999999606267899 -113 -7.8758970446439296 -63.418815539857597 -113 -11.7047230549852 -62.255232671957202 -113 -15.3197648808901 -60.539041971665 -113 -18.6245249162147 -58.317797893253598 -113 -24.695744236289102 -52.793413369113999 -113 -27.397248476601298 -49.410113885409203 -113 -29.5321403310767 -45.614694155493503 -113 -31.0317772842956 -41.526362377619499 -113 -31.8500328562519 -37.274728060535899 -113 -32.118386587363602 -28.735573878443599 -113 -31.568712084902302 -24.4409565369678 -113 -30.328746893340799 -20.266528131251299 -113 -28.436385094965999 -16.3445407930041 -113 -25.9526470408404 -12.798281438651699 -113 -20.007287979299399 -6.6631468174117998 -113 -16.540680122118602 -4.0692236194236102 -113 -12.680035013817401 -2.0546612285118502 -113 -8.5466730279652392 -0.68426370769690004 -113 -4.2715641540742402 1.4210854715202001e-014 -113 1.13686837721616e-013 0 + 0 7 0.235017357466032 5 0.49000787063611401 5 0.74499758603338195 5 1 7 +2 -70 0 -32 1 0 0 0 0 -1 0 -1 0 32 +2 -70 0 -32 1 0 0 0 0 -1 0 -1 0 32 +6 1 0 0 +7 0 0 6 22 5 -87 0 -63.999999999943199 -87 -3.9367350052928201 -63.999999606269697 -87 -7.8758970446497898 -63.418815539850002 -87 -11.704723054979 -62.255232671966503 -87 -15.319764880894301 -60.539041971659501 -87 -18.624524916212899 -58.317797893255303 -87 -24.695744236288999 -52.793413369113999 -87 -27.397248476601401 -49.410113885409501 -87 -29.532140331076601 -45.6146941554927 -87 -31.0317772842957 -41.526362377620302 -87 -31.8500328562519 -37.274728060535601 -87 -32.118386587363503 -28.735573878444399 -87 -31.568712084902099 -24.440956536965899 -87 -30.3287468933413 -20.266528131253501 -87 -28.436385094965299 -16.3445407930027 -87 -25.952647040840699 -12.798281438651999 -87 -20.007287979298599 -6.6631468174109703 -87 -16.5406801221209 -4.0692236194251903 -87 -12.6800350138144 -2.0546612285105299 -87 -8.5466730279670706 -0.68426370769731903 -87 -4.2715641540737304 1.4210854715202001e-014 -87 1.13686837721616e-013 0 + 0 7 0.23501735746614999 5 0.49000787063619899 5 0.74499758603340405 5 1 7 +6 1 0 0 +7 0 0 6 22 5 -87 0 -63.999999999943199 -87 -3.9367350052928201 -63.999999606269697 -87 -7.8758970446497898 -63.418815539850002 -87 -11.704723054979 -62.255232671966503 -87 -15.319764880894301 -60.539041971659501 -87 -18.624524916212899 -58.317797893255303 -87 -24.695744236288999 -52.793413369113999 -87 -27.397248476601401 -49.410113885409501 -87 -29.532140331076601 -45.6146941554927 -87 -31.0317772842957 -41.526362377620302 -87 -31.8500328562519 -37.274728060535601 -87 -32.118386587363503 -28.735573878444399 -87 -31.568712084902099 -24.440956536965899 -87 -30.3287468933413 -20.266528131253501 -87 -28.436385094965299 -16.3445407930027 -87 -25.952647040840699 -12.798281438651999 -87 -20.007287979298599 -6.6631468174109703 -87 -16.5406801221209 -4.0692236194251903 -87 -12.6800350138144 -2.0546612285105299 -87 -8.5466730279670706 -0.68426370769731903 -87 -4.2715641540737304 1.4210854715202001e-014 -87 1.13686837721616e-013 0 + 0 7 0.23501735746614999 5 0.49000787063619899 5 0.74499758603340405 5 1 7 +6 1 0 0 +7 0 0 6 22 5 -107 0 -63.999999999943199 -107 -3.9367350052928201 -63.999999606269697 -107 -7.8758970446497898 -63.418815539850002 -107 -11.704723054979 -62.255232671966503 -107 -15.319764880894301 -60.539041971659501 -107 -18.624524916212899 -58.317797893255303 -107 -24.695744236288999 -52.793413369113999 -107 -27.397248476601298 -49.410113885409302 -107 -29.5321403310768 -45.614694155493197 -107 -31.0317772842956 -41.526362377619897 -107 -31.8500328562519 -37.2747280605358 -107 -32.118386587363503 -28.735573878443901 -107 -31.568712084902401 -24.440956536967501 -107 -30.328746893340401 -20.266528131251199 -107 -28.436385094966401 -16.344540793004398 -107 -25.952647040840201 -12.7982814386515 -107 -20.007287979298599 -6.6631468174109703 -107 -16.5406801221209 -4.0692236194251903 -107 -12.6800350138144 -2.0546612285105299 -107 -8.5466730279670706 -0.68426370769731903 -107 -4.2715641540737304 1.4210854715202001e-014 -107 1.13686837721616e-013 0 + 0 7 0.23501735746613001 5 0.49000787063615697 5 0.74499758603335997 5 1 7 +6 1 0 0 +7 0 0 6 22 5 -107 0 -63.999999999943199 -107 -3.9367350052928201 -63.999999606269697 -107 -7.8758970446497898 -63.418815539850002 -107 -11.704723054979 -62.255232671966503 -107 -15.319764880894301 -60.539041971659501 -107 -18.624524916212899 -58.317797893255303 -107 -24.695744236288999 -52.793413369113999 -107 -27.397248476601298 -49.410113885409302 -107 -29.5321403310768 -45.614694155493197 -107 -31.0317772842956 -41.526362377619897 -107 -31.8500328562519 -37.2747280605358 -107 -32.118386587363503 -28.735573878443901 -107 -31.568712084902401 -24.440956536967501 -107 -30.328746893340401 -20.266528131251199 -107 -28.436385094966401 -16.344540793004398 -107 -25.952647040840201 -12.7982814386515 -107 -20.007287979298599 -6.6631468174109703 -107 -16.5406801221209 -4.0692236194251903 -107 -12.6800350138144 -2.0546612285105299 -107 -8.5466730279670706 -0.68426370769731903 -107 -4.2715641540737304 1.4210854715202001e-014 -107 1.13686837721616e-013 0 + 0 7 0.23501735746613001 5 0.49000787063615697 5 0.74499758603335997 5 1 7 +6 1 0 0 +7 0 0 6 22 5 -103 0 -63.999999999941501 -103 -3.9367350052954899 -63.999999606267899 -103 -7.8758970446441996 -63.418815539857597 -103 -11.7047230549851 -62.255232671957003 -103 -15.31976488089 -60.539041971665299 -103 -18.624524916214799 -58.317797893253598 -103 -24.695744236289102 -52.7934133691139 -103 -27.397248476601298 -49.410113885409402 -103 -29.5321403310767 -45.614694155493197 -103 -31.0317772842956 -41.526362377619698 -103 -31.8500328562519 -37.274728060535899 -103 -32.118386587363503 -28.7355738784442 -103 -31.568712084902199 -24.440956536966201 -103 -30.328746893341201 -20.266528131253398 -103 -28.436385094965601 -16.344540793002899 -103 -25.952647040840599 -12.7982814386519 -103 -20.0072879792984 -6.66314681741075 -103 -16.540680122121501 -4.0692236194260296 -103 -12.680035013814001 -2.0546612285096399 -103 -8.5466730279671594 -0.68426370769771705 -103 -4.2715641540738103 1.4210854715202001e-014 -103 1.13686837721616e-013 0 + 0 7 0.23501735746602401 5 0.49000787063610701 5 0.74499758603334398 5 1 7 +6 1 0 0 +7 0 0 6 22 5 -103 0 -63.999999999941501 -103 -3.9367350052954899 -63.999999606267899 -103 -7.8758970446441996 -63.418815539857597 -103 -11.7047230549851 -62.255232671957003 -103 -15.31976488089 -60.539041971665299 -103 -18.624524916214799 -58.317797893253598 -103 -24.695744236289102 -52.7934133691139 -103 -27.397248476601298 -49.410113885409402 -103 -29.5321403310767 -45.614694155493197 -103 -31.0317772842956 -41.526362377619698 -103 -31.8500328562519 -37.274728060535899 -103 -32.118386587363503 -28.7355738784442 -103 -31.568712084902199 -24.440956536966201 -103 -30.328746893341201 -20.266528131253398 -103 -28.436385094965601 -16.344540793002899 -103 -25.952647040840599 -12.7982814386519 -103 -20.0072879792984 -6.66314681741075 -103 -16.540680122121501 -4.0692236194260296 -103 -12.680035013814001 -2.0546612285096399 -103 -8.5466730279671594 -0.68426370769771705 -103 -4.2715641540738103 1.4210854715202001e-014 -103 1.13686837721616e-013 0 + 0 7 0.23501735746602401 5 0.49000787063610701 5 0.74499758603334398 5 1 7 +6 1 0 0 +7 0 0 6 22 5 -93 0 -63.999999999941501 -93 -3.9367350052956001 -63.999999606267899 -93 -7.87589704464395 -63.418815539857697 -93 -11.704723054985401 -62.255232671956897 -93 -15.3197648808897 -60.539041971665398 -93 -18.624524916214899 -58.317797893253498 -93 -24.695744236289102 -52.7934133691139 -93 -27.397248476601199 -49.4101138854098 -93 -29.5321403310768 -45.614694155492401 -93 -31.0317772842956 -41.526362377620401 -93 -31.8500328562519 -37.274728060535601 -93 -32.118386587363602 -28.735573878442999 -93 -31.568712084902401 -24.440956536969399 -93 -30.328746893340401 -20.266528131249601 -93 -28.436385094966301 -16.344540793004899 -93 -25.952647040840301 -12.7982814386516 -93 -20.0072879792984 -6.66314681741075 -93 -16.540680122121501 -4.0692236194260296 -93 -12.680035013814001 -2.0546612285096399 -93 -8.5466730279671594 -0.68426370769771705 -93 -4.2715641540738103 1.4210854715202001e-014 -93 1.13686837721616e-013 0 + 0 7 0.235017357465967 5 0.49000787063600199 5 0.74499758603327704 5 1 7 +6 1 0 0 +7 0 0 6 22 5 -93 0 -63.999999999941501 -93 -3.9367350052956001 -63.999999606267899 -93 -7.87589704464395 -63.418815539857697 -93 -11.704723054985401 -62.255232671956897 -93 -15.3197648808897 -60.539041971665398 -93 -18.624524916214899 -58.317797893253498 -93 -24.695744236289102 -52.7934133691139 -93 -27.397248476601199 -49.4101138854098 -93 -29.5321403310768 -45.614694155492401 -93 -31.0317772842956 -41.526362377620401 -93 -31.8500328562519 -37.274728060535601 -93 -32.118386587363602 -28.735573878442999 -93 -31.568712084902401 -24.440956536969399 -93 -30.328746893340401 -20.266528131249601 -93 -28.436385094966301 -16.344540793004899 -93 -25.952647040840301 -12.7982814386516 -93 -20.0072879792984 -6.66314681741075 -93 -16.540680122121501 -4.0692236194260296 -93 -12.680035013814001 -2.0546612285096399 -93 -8.5466730279671594 -0.68426370769771705 -93 -4.2715641540738103 1.4210854715202001e-014 -93 1.13686837721616e-013 0 + 0 7 0.235017357465967 5 0.49000787063600199 5 0.74499758603327704 5 1 7 +6 1 0 0 +7 0 0 6 22 5 -97 0 -63.999999999943199 -97 -3.9367350052928201 -63.999999606269697 -97 -7.8758970446497898 -63.418815539850002 -97 -11.704723054979 -62.255232671966503 -97 -15.319764880894301 -60.539041971659501 -97 -18.624524916212899 -58.317797893255303 -97 -24.695744236288999 -52.793413369113999 -97 -27.397248476601501 -49.410113885409103 -97 -29.532140331076501 -45.614694155493602 -97 -31.0317772842957 -41.526362377619598 -97 -31.8500328562519 -37.2747280605358 -97 -32.118386587363503 -28.7355738784448 -97 -31.568712084902 -24.440956536964801 -97 -30.328746893341702 -20.266528131254798 -97 -28.436385094964901 -16.344540793002 -97 -25.952647040840901 -12.7982814386522 -97 -20.007287979298599 -6.6631468174109703 -97 -16.5406801221209 -4.0692236194251903 -97 -12.6800350138144 -2.0546612285105299 -97 -8.5466730279670706 -0.68426370769731903 -97 -4.2715641540737304 1.4210854715202001e-014 -97 1.13686837721616e-013 0 + 0 7 0.235017357466171 5 0.49000787063624002 5 0.74499758603343202 5 1 7 +6 1 0 0 +7 0 0 6 22 5 -97 0 -63.999999999943199 -97 -3.9367350052928201 -63.999999606269697 -97 -7.8758970446497898 -63.418815539850002 -97 -11.704723054979 -62.255232671966503 -97 -15.319764880894301 -60.539041971659501 -97 -18.624524916212899 -58.317797893255303 -97 -24.695744236288999 -52.793413369113999 -97 -27.397248476601501 -49.410113885409103 -97 -29.532140331076501 -45.614694155493602 -97 -31.0317772842957 -41.526362377619598 -97 -31.8500328562519 -37.2747280605358 -97 -32.118386587363503 -28.7355738784448 -97 -31.568712084902 -24.440956536964801 -97 -30.328746893341702 -20.266528131254798 -97 -28.436385094964901 -16.344540793002 -97 -25.952647040840901 -12.7982814386522 -97 -20.007287979298599 -6.6631468174109703 -97 -16.5406801221209 -4.0692236194251903 -97 -12.6800350138144 -2.0546612285105299 -97 -8.5466730279670706 -0.68426370769731903 -97 -4.2715641540737304 1.4210854715202001e-014 -97 1.13686837721616e-013 0 + 0 7 0.235017357466171 5 0.49000787063624002 5 0.74499758603343202 5 1 7 +6 1 0 0 +1 -60 -40 10 -1 0 0 +6 1 0 0 +1 -60 -40 10 -1 0 0 +1 0 0 20 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 10 +2 -100 0 -43 0 0 -1 -1 0 0 0 1 0 10 +2 -100 0 -43 0 0 -1 -1 0 0 0 1 0 10 +2 -100 0 -43 0 0 1 -1 0 0 0 1 0 10 +2 -100 0 -43 0 0 1 -1 0 0 0 1 0 10 +2 0 0 0 0 0 1 1 0 0 0 1 0 5 +6 0 0 -1 +1 -110 0 -23 0 0 -1 +6 0 0 1 +1 -110 0 -23 0 0 -1 +1 0 0 0 0 0 1 1 0 0 0 1 0 +2 -100 0 -23 0 0 -1 -1 0 0 0 1 0 10 +2 -100 0 -23 0 0 -1 -1 0 0 0 1 0 10 +2 -100 0 -23 0 0 1 -1 0 0 0 1 0 10 +2 -100 0 -23 0 0 1 -1 0 0 0 1 0 10 +1 0 0 0 0 1 0 0 0 1 1 0 0 +1 0 0 10 0 0 1 1 0 0 0 1 0 +1 0 0 0 0 0 1 1 0 0 0 1 0 +1 0 4 0 0 1 0 0 0 1 1 0 0 +9 1 1 0 0 2 5 3 98 2 25 11.379086141583301 -2.7272727272727302 -35 1 11.379086141583301 -2.7272727272727302 -35.015316480968302 1 11.3790091162089 -2.7270010074696298 -35.030452636627103 1 11.3788588706888 -2.72647099030997 -35.045405521025302 0.999999999999998 11.378639045093999 -2.72569522822441 -35.060173840447 1 11.3780645643154 -2.72366657146965 -35.089468042930797 1 11.3777087522116 -2.7224095825213399 -35.103990683888 0.999999999999997 11.377289115609999 -2.7209262147378599 -35.118325246193201 1 11.3768089223083 -2.7192273531944 -35.132472708704597 1 11.3757293989344 -2.7154040901505998 -35.160502041252499 1 11.375129199193101 -2.7132765813389601 -35.174381097784099 0.999999999999998 11.374473669796901 -2.7109504913881701 -35.188073728784602 1 11.373765635965899 -2.7084349385036601 -35.201582395157203 1 11.3722444383801 -2.7030225309026501 -35.228330210232002 1 11.371430578759 -2.7001231497051799 -35.241566824378999 1 11.3705687199314 -2.6970483175908 -35.254622794177102 0.999999999999998 11.369661235026999 -2.69380544321203 -35.267501465086099 1 11.367752667428499 -2.6869730167592598 -35.292999781322798 1 11.3667509775991 -2.6833812100721701 -35.305616990674203 1 11.365707376020399 -2.67963235671811 -35.318061646635698 1 11.364623808866 -2.6757322895914899 -35.330337538890198 1 11.362371767237001 -2.6676094061495998 -35.354650639368899 1 11.3612027155198 -2.6633843830776298 -35.366685347740301 1 11.3599966309612 -2.6590161989094998 -35.378556534830203 0.999999999999999 11.3587550753992 -2.6545092726439901 -35.390268109806797 1 11.356192839914399 -2.64518563297454 -35.413478752651301 1 11.3548715734675 -2.64036659700013 -35.424975131656801 1 11.3535170407735 -2.6354140918849698 -35.436316942833699 0.999999999999999 11.352130469272799 -2.63033128654929 -35.447507968952699 1 11.3492812073435 -2.6198581126511602 -35.469706125528198 1 11.347817896215201 -2.6144651823549601 -35.480710288532599 1 11.3463240941057 -2.6089446217959802 -35.491567991577497 1 11.3448007547799 -2.6032985302724798 -35.5022826813954 1 11.341678433586299 -2.5916907732289101 -35.523556333989198 1 11.340078778061701 -2.5857261960976001 -35.5341119922833 1 11.3384505607441 -2.5796363381447902 -35.544527819867596 1 11.336794504206001 -2.5734223405750201 -35.554806776466201 1 11.3334050345708 -2.5606612326880702 -35.575234141970498 1 11.3316708792892 -2.5541107523986102 -35.585378868287499 1 11.3299093801292 -2.5474341381873198 -35.5953883883383 1 11.328121079058601 -2.54063169971199 -35.605265017488897 1 11.3244636185398 -2.5266674950019099 -35.624907533712303 1 11.3225936384131 -2.5195018013591799 -35.6346693187025 1 11.3206969624246 -2.5122061872314698 -35.644298006812399 1 11.318774002324 -2.5047802474889398 -35.653795111491803 1 11.314842432010201 -2.4895352817712699 -35.672690575148401 1 11.3128329183088 -2.4817116838364601 -35.682084365057101 1 11.310796934409799 -2.47375170219942 -35.691344125153499 1 11.308734813249901 -2.4656543293114801 -35.700470399916199 1 11.304389761458699 -2.4485151547329802 -35.719184421087803 1 11.302102479129299 -2.4394499948169099 -35.7287496625203 1 11.2997853813626 -2.4302212471916702 -35.738158915046597 1 11.297438835835599 -2.42082711527233 -35.7474114082884 1 11.292790294745901 -2.4021175224123299 -35.765206546040403 1 11.290490763895599 -2.39281623659345 -35.773762582103799 1 11.2881649258349 -2.3833599780568502 -35.782172357911598 1 11.285813119620499 -2.37374691008629 -35.7904338613939 1 11.281120615207101 -2.3544594731965698 -35.806442371089702 1 11.278781244657999 -2.3447933269111698 -35.814197184619701 1 11.276417930443801 -2.3349749063658698 -35.821806391342697 1 11.2740310509146 -2.3250024496836499 -35.829266917587802 1 11.2691655135887 -2.30455477655978 -35.844021200001997 1 11.2666859763721 -2.29407363347479 -35.851309148056899 1 11.2641828623105 -2.2834289160787602 -35.858435038951903 1 11.261656686512 -2.2726188637646798 -35.865394320757296 1 11.256514973561 -2.25047350453494 -35.879087499104401 1 11.253898648985301 -2.23913234005733 -35.8858153539095 1 11.251259674370401 -2.2276165631612699 -35.892359853563597 1 11.2485987619014 -2.2159246309451599 -35.898714786707203 1 11.243601874128 -2.1938108203723101 -35.910188513931303 1 11.2412712900949 -2.1834342240911999 -35.9153574278062 1 11.238925489627601 -2.1729245705490299 -35.920375505942502 1 11.236565060117799 -2.1622811955257601 -35.925237885927302 1 11.2318141497033 -2.1407165163893702 -35.934644874587804 1 11.2294236453852 -2.1297949836154602 -35.939189198211999 1 11.2270197979747 -2.1187385469728599 -35.943566988230202 1 11.2246033419414 -2.1075470019686202 -35.947772556330897 1 11.2200157110804 -2.0861479873872701 -35.9553811378468 1 11.217847004796401 -2.0759687749171798 -35.958821454114101 1 11.215669544165699 -2.0656828308894601 -35.962116470925999 1 11.213483959281101 -2.0552904438187101 -35.965261655305099 1 11.209076241002901 -2.0341900732804201 -35.971272359228699 1 11.2068539604576 -2.02347999275195 -35.974134809881598 1 11.204624804743201 -2.0126624392186101 -35.976834654766797 1 11.202389550643099 -2.00173828301094 -35.979366734331599 1 11.197863313826399 -1.9794565470457699 -35.984132187072298 1 11.195572117357999 -1.9680946742936101 -35.986358501172198 0.999999999999998 11.193276353817399 -1.9566244057414299 -35.988398877135999 1 11.190977002018601 -1.94504744893755 -35.990247356725497 1 11.1865613676166 -1.92263926426816 -35.993413387809603 1 11.184445479708399 -1.9118244065024499 -35.9947619824488 1 11.182328294583201 -1.90092322917413 -35.995938848116701 1 11.180210702752699 -1.8899378605172099 -35.996939117354003 1 11.1758067905829 -1.8669161551383899 -35.998642317830203 1 11.173520562013101 -1.8548662022831 -35.999314958047201 0.999999999999997 11.1712361910526 -1.8427243761807199 -35.999769604472803 1 11.1689549816862 -1.83049464261219 -36 1 11.166678339643701 -1.8181818181818199 -36 1 +11.1729237017601 -2 -35 0.79772403521746604 11.1724673864279 -1.9983902708154599 -35.003348276616897 0.79708249174274404 11.172013945754401 -1.99671227438006 -35.006596124090898 0.79643344722990494 11.171564100158401 -1.9949716826841 -35.009743738826998 0.79577715414904804 11.171118458264599 -1.99317376660773 -35.012791793283299 0.79511388339682498 11.1702320431936 -1.9894537659995799 -35.018721435357101 0.793768101460816 11.1697913529262 -1.9875305153502101 -35.021601066403598 0.79308547359145098 11.169356021071399 -1.9855586818573201 -35.0243811278647 0.79239630669851502 11.168926510256 -1.9835429004084 -35.027062891477598 0.79170088939313599 11.168075994210801 -1.97941282763782 -35.032256805789103 0.79029284206739003 11.167655091596901 -1.9772977244926699 -35.034767227200497 0.78958012238105402 11.1672409368448 -1.9751465406813999 -35.037180521713999 0.78886164028820105 11.1668338916382 -1.9729633202029999 -35.039498312859003 0.78813768855041799 11.1660311419813 -1.9685207688331601 -35.043965916779698 0.78667435123426799 11.165635557410999 -1.9662608707756799 -35.046114133139497 0.78593489386651905 11.1652478594296 -1.9639759450724701 -35.048168690150803 0.78519047383122897 11.1648683439496 -1.96166952484195 -35.050131399290798 0.78444138048919798 11.1641229137811 -1.9569995382546399 -35.053893479558198 0.78292916311507599 11.163757140709301 -1.9546355853700299 -35.055691288634897 0.78216597817766098 11.163400241542 -1.9522563941476001 -35.057399402371999 0.78139862767594204 11.163052470666701 -1.94986507553559 -35.059019718782402 0.78062739392927805 11.162372429707199 -1.9450410742400199 -35.062103179839802 0.77907187304613701 11.1620403315956 -1.9426081608222401 -35.063564711757301 0.77828753178254695 11.161718014733999 -1.94016877176195 -35.064940662433401 0.77749980673296404 11.161405706142 -1.9377256797601501 -35.066232958195798 0.77670897186615595 11.1607983126757 -1.93281125389444 -35.068666931245701 0.77511480742668404 11.1605034409385 -1.93033985032802 -35.069806880888798 0.77431142925721297 11.160219222547999 -1.9278699541103099 -35.070865302997198 0.77350542985315796 11.1599458626215 -1.92540407317193 -35.071844122382203 0.77269707480227001 11.1594180540094 -1.9204552057037201 -35.073657270075302 0.77106805783049404 11.1591638709943 -1.9179723385170799 -35.074489713736099 0.77024735395569699 11.1589211993715 -1.9154984139840201 -35.075244510260099 0.76942477421605404 11.158690219369801 -1.91303574408598 -35.0759235702483 0.76860057582543195 11.1582489194096 -1.90810319676471 -35.077142372763802 0.76693976608203795 11.158038928486601 -1.90563366897555 -35.077680053030903 0.76610312259103897 11.157841290995099 -1.90318019478144 -35.078143746798702 0.76526533604206304 11.1576561543433 -1.9007449324049901 -35.078535351158898 0.76442665689040701 11.157308397836299 -1.8958766504108899 -35.079183174449803 0.76273658497540398 11.157146179203 -1.8934442597519801 -35.0794371526502 0.76188517456336902 11.156997117942 -1.89103489810167 -35.079620588845899 0.76103334915166998 11.1568613145173 -1.8886506119849 -35.079735371659901 0.76018135354095395 11.156614180459901 -1.88389408344273 -35.0798321648737 0.75846427572984199 11.1565033277066 -1.88152280337938 -35.0798117736405 0.757599195785438 11.1564063542112 -1.8791815643254099 -35.079724105919901 0.75673443301576904 11.156323293753101 -1.87687233673808 -35.079571050382903 0.75587022786645097 11.1561836245007 -1.87227688543225 -35.079133577423399 0.754128432630645 11.156127567749399 -1.86999200897354 -35.078846633824298 0.75325087037812299 11.1560859625307 -1.8677443752831799 -35.078495564166602 0.75237437135019702 11.156058750821201 -1.86553591121255 -35.078082267296402 0.75149917320672899 11.1560318143976 -1.86101977530047 -35.077095304697302 0.74968106990581296 11.156034577781799 -1.8587192613811701 -35.076511120687698 0.74873842313040095 11.1560539738144 -1.8564692873583399 -35.075858392478402 0.747797856744851 11.1560897829361 -1.8542721387196901 -35.075139410170301 0.74685965309382696 11.1561915038326 -1.85007550414097 -35.073605408891403 0.74502897445220795 11.156256123835099 -1.84807162755609 -35.072795525539803 0.74413627664144999 11.1563352991956 -1.8461203481861901 -35.071928717836798 0.74324623252195698 11.1564286901051 -1.8442235803704401 -35.071006907638498 0.74235907632846598 11.156640510388399 -1.8405868392702001 -35.069080354599997 0.74061417079335901 11.156758285986699 -1.8388442229669 -35.068078134289998 0.73975626050755305 11.1568888227506 -1.83715709596983 -35.067027057932499 0.73890151692061301 11.157031663751599 -1.8355271934722199 -35.065928842519099 0.73805014746416697 11.157344182926201 -1.8323519131900501 -35.063617209695003 0.73633856148288102 11.157514364351799 -1.8308090932113801 -35.062401859448499 0.735478481533549 11.1576962617336 -1.8293296166133299 -35.061140922410303 0.734622331509587 11.1578892332265 -1.8279153384220399 -35.059836181581801 0.73377032404603404 11.158299909038501 -1.8251942509347401 -35.057115960133899 0.73206024478629805 11.1585180235934 -1.82389015366808 -35.055698827455799 0.731202326147807 11.158746136221501 -1.8226578253080901 -35.054239883129199 0.73034913405386503 11.1589833973966 -1.8214993060771101 -35.052741016362603 0.72950088700632798 11.1594411985702 -1.81948027939285 -35.0498747912022 0.72793014053064098 11.159659665915401 -1.81860067482902 -35.048517036017401 0.727206324786146 11.1598836702975 -1.8177792328882501 -35.047132096572099 0.72648649258278197 11.1601125614767 -1.81701735800585 -35.045721235864598 0.72577078105241 11.1605793908241 -1.81561365076149 -35.042846162759901 0.72434724051251997 11.1608173486452 -1.8149721822774101 -35.0413818409694 0.723639418927573 11.161058814853501 -1.81439356217308 -35.039894086269598 0.72293599670277497 11.1613030443676 -1.8138793184391899 -35.038384262621598 0.72223710657726303 11.161768591092301 -1.81303167878345 -35.035490310243397 0.72092551911015001 11.1619894969821 -1.8126846808925501 -35.034110469053601 0.72031184646089896 11.162211409475001 -1.8123911738918801 -35.032715277555901 0.71970195135048298 11.162433747078699 -1.8121523277757301 -35.031305803803797 0.71909592151573098 11.162880635295799 -1.8117842689094299 -35.028444064615499 0.71788581005125396 11.1631051777988 -1.81165636199354 -35.026991523238003 0.71728180654408202 11.163328904378099 -1.8115868939757001 -35.025526720193298 0.71668191772879797 11.1635511669978 -1.81157716849744 -35.0240509143702 0.71608622436024805 11.163996245168599 -1.8116810288671199 -35.021047480838199 0.71489144029311802 11.1642189617053 -1.81179731718024 -35.019519460590402 0.71429252353492101 11.164438734041999 -1.81197883727042 -35.017982843361402 0.71369812918106101 11.164654830064601 -1.8122270743437101 -35.016439193306098 0.713108327268555 11.165061192035401 -1.81283461215933 -35.013465605982901 0.71198584005987897 11.165252134987901 -1.8131833921427201 -35.0120365166214 0.71145242590217606 11.1654387581004 -1.8135910607121299 -35.010604301710202 0.71092297571964702 11.1656204761924 -1.81405881614083 -35.0091704112874 0.71039752346157603 11.165987363000401 -1.8151602095122299 -35.006185051736502 0.70931282295164799 11.166171591732599 -1.81580428052295 -35.004633603306502 0.70875424501760498 11.166348652304601 -1.81652157701644 -35.003084104358898 0.70820038017510001 11.166517807405199 -1.8173136073562799 -35.001538758395803 0.70765123332483604 11.166678339643701 -1.8181818181818199 -35 0.70710678118654602 +10.4169947557416 -2 -35 1 10.4148669967493 -2 -35 1 10.4127447529258 -2 -34.999999999999901 1 10.4106276422942 -2 -35.000000000000099 0.999999999999998 10.408515336212 -2 -35 1 10.404281421084001 -2 -35 1 10.4021598928746 -2 -35.000000000000099 0.999999999999997 10.400042681167401 -2 -34.999999999999901 1 10.3979295595657 -2 -35 1 10.393695259339699 -2 -35 1 10.3915741414883 -2.0000000000000102 -35.000000000000099 0.999999999999998 10.389456819923399 -2 -34.999999999999901 1 10.3873431789136 -2 -35 1 10.3831084603811 -2 -35 1 10.3809874347084 -2 -34.999999999999901 1 10.3788700061844 -2.0000000000000102 -35.000000000000099 0.999999999999998 10.3767561665404 -2 -35 1 10.3725210399146 -2 -35 1 10.370399804884199 -2 -35 1 10.368282280342401 -2 -35 1 10.3661685543196 -2 -35 1 10.361933057624899 -2 -35 1 10.359811347392499 -2 -35 1 10.3576937430929 -2 -35 0.999999999999999 10.3555804126424 -2 -35 1 10.351344600132199 -2 -35 1 10.3492221960219 -2 -35 1 10.347104531714599 -2 -35 0.999999999999999 10.344991835158799 -2 -35 1 10.3407557704077 -2 -35 1 10.338632506907601 -2 -35 1 10.3365148066662 -2 -35 1 10.334402929649199 -2 -35 1 10.3301666828763 -2 -35 1 10.3280424556617 -2 -35 1 10.3259247414538 -2 -35 1 10.323813814185099 -2 -35 1 10.3195774629891 -2 -35 1 10.3174522312246 -2 -35 1 10.315334528556001 -2 -35 1 10.3132246173761 -2 -35 1 10.3089882499483 -2 -35 1 10.3068620440636 -2 -35 1 10.304744379938301 -2 -35 1 10.302635481422101 -2 -35 1 10.2983992012926 -2 -35 1 10.2962721320866 -2 -35 1 10.2941545349302 -2 -35 1 10.2920465667043 -2 -35 1 10.287680149706601 -2 -35 1 10.285423342146601 -2 -35 1 10.283178057549399 -2 -35 1 10.280944363668301 -2 -35 1 10.2765962340277 -2 -35 1 10.2744808175493 -2 -35 1 10.272376000288499 -2 -35 1 10.2702817087148 -2 -35 1 10.2661685202001 -2 -35 1 10.264149086055401 -2 -35 1 10.2621393675748 -2 -35 1 10.2601391692272 -2 -35 1 10.256119712267401 -2 -35 1 10.2541008066625 -2 -35 1 10.2520912389861 -2 -35 1 10.250090662903 -2 -35 1 10.246071951731301 -2 -35 1 10.244054118257599 -2 -35 1 10.242044720800999 -2 -35 1 10.2400432428065 -2 -35 1 10.2363279553688 -2 -35 1 10.234612277581 -2 -35 1 10.232901675871 -2 -35 1 10.231195726012199 -2 -35 1 10.2277906904622 -2 -35 1 10.226091612220401 -2 -35 1 10.224396258394901 -2 -35 1 10.2227041178639 -2 -35 1 10.2195122252158 -2 -35 1 10.218011916944199 -2 -35 1 10.2165133218182 -2 -35 1 10.215016023211 -2 -35 1 10.212008341259899 -2 -35 1 10.210497974662999 -2 -35 1 10.2089880210505 -2 -35 1 10.207477995424 -2 -35 1 10.2044262836874 -2 -35 1 10.202884573705401 -2 -35.000000000000099 0.999999999999998 10.201341710171899 -2 -34.999999999999901 1 10.199797118022 -2 -35 1 10.196829682632799 -2 -35 1 10.1954072048811 -2 -35 1 10.1939822923456 -2 -35 1 10.1925544560234 -2 -35 1 10.189577098971601 -2 -35 1 10.1880270051139 -2.0000000000000102 -35.000000000000099 0.999999999999997 10.186472267625501 -1.99999999999999 -34.999999999999901 1 10.184912219395301 -2 -35 1 10.183346173607999 -2 -35 1 + +0 3 +1 3 + +0 6 +0.040099905557437497 4 +0.080548941488914394 4 +0.121302649574392 4 +0.16233958108360599 4 +0.20366226380580801 4 +0.24529608526125099 4 +0.28728689017495801 4 +0.32969783695436 4 +0.37260578185410198 4 +0.41609721082407702 4 +0.46026353353147897 4 +0.50519539488713305 4 +0.55376685639189804 4 +0.60023800608618005 4 +0.64549097673320199 4 +0.69159813110431001 4 +0.73850862303907205 4 +0.77899666732106099 4 +0.81952053904117095 4 +0.85555734813302897 4 +0.89195034526454897 4 +0.92907789768065596 4 +0.963171395364531 4 +1 6 + +2 10.4169947557416 -3 -35 0 0 1 0.96209138584166898 0.27272727272727398 0 -0.27272727272727398 0.96209138584166898 0 1 +9 1 1 0 0 2 5 3 94 2 24 11.379086141583301 -2.7272727272727302 -25 1 11.379086141583301 -2.7272727272727302 -24.984292520762999 1 11.379005133528199 -2.7269869577983701 -24.968705017358499 1 11.378845783493199 -2.7264248233526098 -24.953243742383901 0.999999999999997 11.378610772143601 -2.7255954587125202 -24.9379136177796 1 11.377997241534599 -2.7234287530939199 -24.907650817401201 1 11.377619943551 -2.7220957349036898 -24.892715894953898 0.999999999999999 11.3771733704399 -2.7205169482635601 -24.8779173876048 1 11.3766600103618 -2.7187004187699402 -24.863257985776698 1 11.375509579749799 -2.7146249453628699 -24.834349612656101 1 11.3748736447443 -2.7123700608006001 -24.820098165374802 0.999999999999999 11.3741767461874 -2.7098962527035 -24.8059870130981 1 11.3734210903652 -2.7072102836390801 -24.792017216146199 1 11.371803273837999 -2.70145084604657 -24.764478221826199 1 11.370942068404901 -2.6983808485303298 -24.750906642869399 0.999999999999998 11.370027148615399 -2.6951143700305402 -24.737474961583501 1 11.3690604035035 -2.6916568871817002 -24.7241831098851 1 11.367034175598199 -2.6843963059560298 -24.697974159253 1 11.3659754217828 -2.6805959165093398 -24.685055039212099 1 11.364869024402701 -2.67661692145465 -24.672272819441201 0.999999999999997 11.363716554753299 -2.6724635625638902 -24.6596267126863 1 11.361328902008401 -2.6638392171426202 -24.634673362900799 1 11.3600942082487 -2.6593701011671 -24.6223646520458 1 11.3588167696425 -2.65473580194781 -24.610188565780099 1 11.3574978617676 -2.64993941866088 -24.5981439649713 1 11.3547836654552 -2.64004320088987 -24.574352630519002 1 11.3533886312494 -2.6349443708659299 -24.562605094825901 1 11.3519546583905 -2.6296895833816198 -24.550985724784699 1 11.350482760495201 -2.6242809007599601 -24.5394932762654 1 11.3474654895209 -2.6131610550948898 -24.5167641574604 1 11.3459201470266 -2.6074500155171401 -24.5055274031922 1 11.3443386980979 -2.60158835412004 -24.494415017539499 1 11.3427219344298 -2.5955772067372598 -24.483425897366899 1 11.339414792550199 -2.5832410527876402 -24.4616635135434 1 11.3377242333938 -2.5769152652645202 -24.450890909571498 1 11.335999564054299 -2.57044061201591 -24.440240278429801 1 11.3342413992468 -2.5638174149819499 -24.429710883132 1 11.3307090091796 -2.5504623319045301 -24.409183334381801 1 11.328936596003301 -2.54373861155223 -24.399178561838099 1 11.3271335245058 -2.5368744003361701 -24.389287459782501 1 11.3253002358652 -2.52986936756745 -24.3795098781654 1 11.321558014921999 -2.51551510132041 -24.360099106245801 1 11.3196485709956 -2.50816343732457 -24.3504678839512 1 11.317709191397199 -2.5006672902803202 -24.340952459080601 1 11.3157402506874 -2.4930258223546899 -24.331553373624601 1 11.3117211713364 -2.4773613912555801 -24.3128839592713 1 11.3096703658753 -2.4693350818706099 -24.303616325298801 1 11.307590039664399 -2.46115796478185 -24.294469613114899 1 11.3054805501862 -2.4528288084353802 -24.285445245918599 1 11.301174245238199 -2.4357458090720701 -24.267521310945799 1 11.298976626624 -2.42698768327939 -24.258625225060499 1 11.296749767524901 -2.4180704283771299 -24.249858819276799 1 11.294494063391699 -2.4089925509035801 -24.241224596022199 1 11.2898895111675 -2.3903656190008 -24.2240915403288 1 11.287539755612 -2.3808113809501501 -24.215597043682699 1 11.285161108921599 -2.3710881527373102 -24.207245289334701 1 11.2827540661544 -2.3611943404321001 -24.1990400655184 1 11.2778424806031 -2.3408896032762501 -24.1827931689065 1 11.275336976477099 -2.3304727294526302 -24.1747567261156 1 11.2728032423187 -2.3198761239693502 -24.166881055827201 1 11.270241941850401 -2.3090982997865299 -24.1591714416051 1 11.26502040535 -2.28698570146291 -24.143964279631 1 11.262359224716599 -2.2756444913507101 -24.1364728092347 1 11.2596710752742 -2.2641129070787902 -24.1291656755388 0.999999999999999 11.256956860928 -2.2523898130632598 -24.1220498650978 1 11.251432720396 -2.2283604955421699 -24.108100992614801 1 11.248621954551901 -2.2160478170158502 -24.101274622083299 1 11.2457864004515 -2.2035355798387002 -24.0946620174192 1 11.242927290049099 -2.1908233960410701 -24.088272018784899 1 11.2371230980877 -2.16481285907687 -24.075867318147001 1 11.2341773728338 -2.1515086959255698 -24.069859380448101 1 11.2312103031616 -2.1379991708935 -24.064100336247702 0.999999999999999 11.2282235337742 -2.1242851499225299 -24.0586009369182 1 11.2227860023243 -2.0990996515373599 -24.049139109246301 1 11.2203413880671 -2.0876979934822901 -24.045083339809501 0.999999999999997 11.217886053908 -2.07616434679887 -24.041211367929101 1 11.215421074636801 -2.0645000481132501 -24.03752955797 1 11.210621363689899 -2.0416156209809699 -24.030766852411599 1 11.208287610672 -2.0304103686227402 -24.027663236215499 1 11.2059473416421 -2.0190927217020498 -24.024739152765601 1 11.2036016130512 -2.0076646254708499 -24.022000281294901 1 11.1988974583175 -1.9845725108612 -24.016900153247601 1 11.1965390174422 -1.9729081200257499 -24.014539557400301 0.999999999999999 11.1941773896305 -1.9611378273159701 -24.0123764551238 1 11.191813808007 -1.9492646186428999 -24.010416791436899 1 11.1870903028959 -1.92534453732362 -24.0069198912704 1 11.184730382062 -1.91329807774661 -24.005381784038999 1 11.1823711468393 -1.9011563431932099 -24.004058112198599 0.999999999999999 11.18001400068 -1.8889235731643801 -24.002954799336202 1 11.1754552079409 -1.8650623899668299 -24.0012557152018 1 11.1732531240893 -1.85344447880547 -24.000632337871199 1 11.171055411247799 -1.84175516108001 -24.0002122251577 0.999999999999998 11.1688633640563 -1.8299991445189101 -24 1 11.166678339643701 -1.8181818181818199 -24 1 +11.1729237017601 -2 -25 0.79772403521746604 11.172455728020401 -1.99834914381957 -24.9965661782119 0.79706611445683395 11.1719886965003 -1.9966191454976101 -24.993222712039302 0.79639738649474101 11.171523432586101 -1.99481482614478 -24.989971228180899 0.79571797129303201 11.1710606885421 -1.9929409046614499 -24.986812902478 0.79502803365434804 11.170144685036499 -1.98907590563394 -24.980704583132599 0.79363338246050796 11.1696913583915 -1.9870855864935499 -24.977753179681301 0.79292884195718305 11.1692418602627 -1.98503547824745 -24.974895161350101 0.79221433857422696 11.168796818272799 -1.98292993187137 -24.9721310122357 0.79149009593151898 11.1679199100169 -1.9786315171000299 -24.966809627644999 0.79002911798501396 11.1674879512512 -1.9764392576627801 -24.964250942909501 0.78929255041405999 11.1670615206216 -1.97420049490337 -24.9617851274819 0.78854689640967601 11.166641158206 -1.9719192187936301 -24.959412164333099 0.78779241955711798 11.165816304494101 -1.9672945369486501 -24.954866426696299 0.78627283280408999 11.1654117084187 -1.9649515290203301 -24.952692339791199 0.78550786720597798 11.1650140952603 -1.9625740510332801 -24.9506093811539 0.78473477534529001 11.1646239467907 -1.96016577223011 -24.9486171688878 0.78395384811541602 11.163861536136499 -1.95530764956178 -24.9448232616908 0.78238268378359099 11.1634891742007 -1.95285799323506 -24.943020533135101 0.78159255663218896 11.163125100160199 -1.9503847818278801 -24.941306472620099 0.780795302723023 11.162769756903 -1.9478914161066501 -24.939680425785198 0.77999123201988596 11.1620785746351 -1.94287957119643 -24.936608077678301 0.77837454167353404 11.161742660179 -1.9403611147240301 -24.935161124634799 0.77756199326633402 11.161416256825699 -1.9378291019015901 -24.933800003293101 0.77674333179728905 11.1610997775815 -1.9352867178337601 -24.932523852489901 0.77591887950896898 11.1604877742888 -1.9301899719450599 -24.93014075991 0.774261661015336 11.1601922191785 -1.92763554264314 -24.9290336122212 0.77342892890648496 11.1599073566731 -1.92507686645464 -24.928009310407901 0.77259109760159705 11.1596335701601 -1.9225169584336199 -24.927066816659501 0.77174849971707105 11.1591084067338 -1.91739591779857 -24.925341635842202 0.77005477528778998 11.1588570633531 -1.9148347207913401 -24.924559219007001 0.769203652028144 11.1586175662601 -1.91227812221566 -24.923856634865 0.76834844115129297 11.158390261964399 -1.9097290061232 -24.923232690664602 0.76748948326478605 11.1579596303424 -1.9046389044835701 -24.922136871131599 0.76576248087655796 11.1577564202237 -1.9020979621318901 -24.9216657456181 0.76489441821822102 11.157566171520999 -1.89957021280642 -24.921271468009301 0.76402328028209898 11.1573891790985 -1.8970584409269799 -24.9209527014517 0.76314941404713199 11.1570664180554 -1.8921361751611001 -24.920469666046401 0.76142131357325904 11.1569199616884 -1.88972469445827 -24.9203016437047 0.76056720993244498 11.1567865764319 -1.8873334287479899 -24.920202692782802 0.75971117563285395 11.156666463499899 -1.8849648264148899 -24.920171480960001 0.75885352882451795 11.1564519415706 -1.8802522104350601 -24.920242164547201 0.75712827111230496 11.1563578241883 -1.87790871648126 -24.920345513666099 0.75626063780796904 11.156277596963401 -1.87559325540347 -24.920515259132401 0.755392011640308 11.156211372581801 -1.87330822709235 -24.920749945293799 0.75452271492261203 11.156106330224199 -1.8687727394901801 -24.9213503130368 0.75277350894210904 11.156067900119 -1.8665231710849499 -24.921717754191601 0.751893591619051 11.156043981210599 -1.86430969340978 -24.922148849847598 0.75101364570860296 11.156034567990201 -1.8621346732944299 -24.922642017880602 0.75013399763405597 11.1560446885406 -1.8578313704962499 -24.923758296841001 0.74836372832827203 11.1560646955883 -1.8557044228866899 -24.924383396090299 0.74747312449785197 11.1560995315282 -1.85362198270198 -24.925069253247301 0.74658349415803604 11.1561490383402 -1.85158640096111 -24.925814154498099 0.74569516822306403 11.1562780865622 -1.84757710949215 -24.927433278053499 0.743907687476279 11.1563581610773 -1.84560522609194 -24.9283096185153 0.74300858499713596 11.156452946100799 -1.8436867279079601 -24.929243549464498 0.74211150684857896 11.1565620936536 -1.8418239734217601 -24.9302332168728 0.74121678917353295 11.1568106460469 -1.83817909845051 -24.932340779135799 0.73941742024304802 11.156950601782199 -1.83639929995478 -24.933460801275299 0.73851286234443203 11.1571045574807 -1.83468230789955 -24.934634825758302 0.73761143686070296 11.157271937391 -1.83303052200923 -24.9358608427045 0.73671348594078101 11.157635785449701 -1.82983039215119 -24.938438319845002 0.73490955522951096 11.1578327655523 -1.82828480450637 -24.9397917779884 0.73400371037304302 11.158042276456101 -1.8268120459294099 -24.9411950323505 0.73310216501924796 11.1582634792394 -1.8254145961325099 -24.9426458913169 0.73220526846356004 11.1587318167793 -1.82274997646022 -24.945667026003299 0.73040659291923804 11.158979361996099 -1.82148584732189 -24.947239023326599 0.72950498213567905 11.1592370552313 -1.8203051686028 -24.9488557360567 0.72860888806775803 11.1595037714595 -1.8192105658351601 -24.9505147358147 0.72771866421338305 11.1600574358804 -1.8171817857059001 -24.9539410579848 0.725937863630427 11.160344642079201 -1.81625067118718 -24.955709688628499 0.72504746834407696 11.160638598826401 -1.8154141455711299 -24.957516737208 0.72416382596101503 11.160937892138501 -1.8146750391203099 -24.9593594422306 0.72328728723316904 11.1614869903028 -1.8135178659247899 -24.962756762254401 0.72171445558991398 11.161735481947099 -1.8130655587100999 -24.9643001618631 0.72101560163064204 11.1619856795509 -1.8126808605154801 -24.965863499518399 0.72032180271554702 11.162236733838601 -1.8123653376139901 -24.967445126944099 0.71963323089214903 11.1627242912804 -1.81188996364739 -24.970549116220099 0.71830752009201604 11.162960791418101 -1.8117221778047601 -24.972069586535799 0.71766975894080898 11.163196527147299 -1.81161854877392 -24.973603223317699 0.71703689926686798 11.163430736241599 -1.8115804213272499 -24.975148464895302 0.71640906842990104 11.1638953524561 -1.8116379729723 -24.9782642008289 0.71516261969885198 11.1641257375165 -1.81173411654344 -24.979834723834401 0.71454401964579295 11.1643530116274 -1.81189893793849 -24.981413501440802 0.71393069781940399 11.164576374488201 -1.81213380407297 -24.982998713982798 0.71332275874291795 11.1650135884456 -1.81274619777899 -24.986177435566798 0.71211907372475103 11.165227437187101 -1.81312366050449 -24.987770896917201 0.71152330504155104 11.1654357706949 -1.8135737871277899 -24.989366799999001 0.71093306947434998 11.1656377877342 -1.81409789461096 -24.990963019093201 0.71034843584099405 11.166015624984601 -1.8152596822151299 -24.9940533519421 0.70922695130250302 11.1661922874473 -1.81588837243547 -24.995547664060801 0.70868941116046802 11.1663620445724 -1.8165843277162701 -24.997038270523301 0.70815686311081605 11.1665242628437 -1.81734852047766 -24.998523119269301 0.70762932324255301 11.166678339643701 -1.8181818181818199 -25 0.70710678118654602 +10.4169947557416 -2 -25 1 10.4148126794368 -2 -25 1 10.4126267245018 -1.99999999999999 -24.999999999999901 1 10.4104365412365 -2.0000000000000102 -25.000000000000099 0.999999999999997 10.4082418579858 -2 -25 1 10.4038615590279 -2 -25 1 10.401676023164599 -2 -25 0.999999999999999 10.399485678871701 -2 -25 1 10.3972904161934 -2 -25 1 10.3929094602693 -2 -25 1 10.3907238555642 -2 -25 0.999999999999999 10.388533353577801 -2 -25 1 10.3863380027259 -2 -25 1 10.3819564525049 -2 -25 1 10.3797703339301 -2.0000000000000102 -25.000000000000099 0.999999999999998 10.3775796856919 -2 -24.999999999999901 1 10.375384703142601 -2 -25 1 10.3710026428385 -2 -25 1 10.3688156253902 -1.99999999999999 -24.999999999999901 1 10.366624848675301 -2.0000000000000102 -25.000000000000099 0.999999999999997 10.364430637187301 -2 -25 1 10.3600481587152 -2 -25 1 10.357859925189199 -2 -25 1 10.355669044532901 -2 -25 1 10.353475941945099 -2 -25 1 10.3490931367971 -2 -25 1 10.3469034439886 -2 -25 1 10.3447124840648 -2 -25 1 10.342520761491899 -2 -25 1 10.338137717754 -2 -25 1 10.335946395260599 -2 -25 1 10.3337553853377 -2 -25 1 10.3315652424508 -2 -25 1 10.3271820462408 -2 -25 1 10.324988998839199 -2 -25 1 10.322797970744499 -2 -25 1 10.320609534593901 -2 -25 1 10.3162998201338 -2 -25 1 10.314178366681899 -2 -25 1 10.312060423031999 -2 -25 1 10.309946492558399 -2 -25 1 10.30570951819 -2 -25 1 10.303586550406401 -2 -25 1 10.301468651331 -2 -25 1 10.2993562797636 -2 -25 1 10.2951194303657 -2 -25 1 10.292995087664799 -2 -25 1 10.290877265266101 -2 -25 1 10.2887663452928 -2 -25 1 10.2845297374369 -2 -25 1 10.2824042509368 -2 -25 1 10.280286538251 -2 -25 1 10.2781768717897 -2 -25 1 10.2739406462136 -2 -25 1 10.2718143507826 -2 -25 1 10.2696967807922 -2 -25 1 10.2675880659573 -2 -25 1 10.2633523876748 -2 -25 1 10.261225732421099 -2 -25 1 10.2591083364883 -2 -25 1 10.2570001555335 -2 -25 1 10.252765206489901 -2 -25 1 10.250638759648099 -2 -25 1 10.248521564625699 -2 -25 0.999999999999999 10.246413377447301 -2 -25 1 10.2421793379036 -2 -25 1 10.2400537777773 -2 -25 1 10.2379368052649 -2 -25 1 10.2358279532121 -2 -25 1 10.2315949682487 -2 -25 1 10.229471056329301 -2 -25 1 10.2273543163056 -2 -25 0.999999999999999 10.225244047865701 -2 -25 1 10.221435303109001 -2 -25 1 10.2197348757042 -2.0000000000000102 -25.000000000000099 0.999999999999997 10.2180377396403 -1.99999999999999 -24.999999999999901 1 10.2163434277342 -2 -25 1 10.213060125477901 -2 -25 1 10.211470867851499 -2 -25 1 10.2098832384694 -2 -25 1 10.2082967860875 -2 -25 1 10.2051225383314 -2 -25 1 10.203534745501701 -2 -25 0.999999999999999 10.2019471723703 -2 -25 1 10.200359311109301 -2 -25 1 10.197185257423 -2 -25 1 10.195599068413999 -2 -25 1 10.1940115367332 -2 -25 0.999999999999999 10.1924221126123 -2 -25 1 10.189338678395099 -2 -25 1 10.1878449683783 -1.99999999999999 -24.999999999999901 1 10.186348634443601 -2.0000000000000102 -25.000000000000099 0.999999999999998 10.1848491978923 -2 -25 1 10.183346173607999 -2 -25 1 + +0 3 +1 3 + +0 6 +0.0462455633780023 4 +0.092102972749340997 4 +0.13755449764282099 4 +0.18262160994979701 4 +0.227359738790962 4 +0.27185237149071301 4 +0.31620523893743002 4 +0.36054091138286498 4 +0.404993792264293 4 +0.448209178595322 4 +0.49179551400524102 4 +0.53587855676249496 4 +0.58057410297953005 4 +0.625979856383587 4 +0.67216520738826802 4 +0.71915896563691795 4 +0.76693580883103096 4 +0.81540332199514898 4 +0.85464861730869202 4 +0.89155849730080505 4 +0.92853213523237399 4 +0.96542880978193002 4 +1 6 + +5 21 0 -24 0 0 1 -0.97979589711668502 0.199999999983276 0 -0.199999999983276 -0.97979589711668502 0 11 1 +5 21 0 -36 0 0 -1 -0.97979589711668502 0.199999999983276 0 -0.199999999983276 -0.97979589711668502 0 11 1 +9 1 1 0 0 2 5 3 94 2 24 11.379086141583301 2.7272727272727302 -35 1 11.379086141583301 2.7272727272727302 -35.015847134820497 1 11.379003686490799 2.7269818532647498 -35.031501231547097 1 11.378842991066101 2.7264149721303301 -35.046959029788901 0.999999999999997 11.3786080803037 2.7255859523822199 -35.062219158991603 1 11.377994611745001 2.7234194658967299 -35.092478898695099 1 11.3776147861506 2.7220775114810798 -35.107474936096303 1 11.377167101507499 2.7204947751216202 -35.122269607269899 0.999999999999997 11.3766551515799 2.7186832062267698 -35.136864107185502 1 11.3755048932035 2.7146083429754699 -35.165768152315401 1 11.374865638558401 2.71234166483787 -35.180074608133602 1 11.374167854452701 2.7098646642499999 -35.194181891928203 0.999999999999998 11.3734146249343 2.7071872666621002 -35.208092840502196 1 11.371797093001399 2.7014288422271799 -35.235626990366399 1 11.370932033878701 2.69834506240925 -35.249247404234502 1 11.3700164275098 2.6950760517327099 -35.262675378417697 0.999999999999999 11.3690528416146 2.6916297906698099 -35.275914702000897 1 11.367026991743201 2.6843705640527902 -35.302118762821699 1 11.3659640632336 2.6805551217665502 -35.315080801578503 0.999999999999999 11.3648571454383 2.6765741431847498 -35.327859573636601 1 11.363708322935199 2.67243382874145 -35.340459318013501 1 11.361321117326399 2.6638110984028902 -35.365407994780703 1 11.3600820958243 2.6593262281413002 -35.377754130701902 1 11.3588042720024 2.6546903909296899 -35.389927053778401 1 11.3574892997557 2.6499082007516299 -35.4019310854911 1 11.354775598191701 2.6400137868802398 -35.425718083218001 1 11.353376213307 2.6348989463403698 -35.4374980146412 1 11.351941963874999 2.62964297911528 -35.449114516244798 0.999999999999996 11.3504741330607 2.6242491052263199 -35.460571714246399 1 11.347457389435201 2.6131312030518101 -35.483296860529897 1 11.3459077748946 2.6074042496396501 -35.494561440602901 0.999999999999998 11.344326136759999 2.60154169867472 -35.505671231264003 1 11.3427134489833 2.5955455547008901 -35.516629940438598 1 11.3394347774517 2.5833155995810402 -35.538204977402998 1 11.337769057792199 2.5770829406768199 -35.548822578994098 1 11.3360742050229 2.57072071250996 -35.559297060206603 1 11.3343509203221 2.56422985445802 -35.569631360071597 1 11.3305880093505 2.5500065934667799 -35.591542426094399 1 11.328539479383 2.54223320652435 -35.603075164567898 1 11.326455093838099 2.5342913925947999 -35.6144301114971 0.999999999999999 11.324335580819101 2.5261811559460399 -35.625610383132297 1 11.3198405348367 2.5089039783699798 -35.648581873193301 1 11.317458751576799 2.4997064316850599 -35.6603418603123 1 11.3150369965481 2.4903085792801698 -35.671901272507597 1 11.312575916894 2.4807089689944202 -35.6832619482688 1 11.3075989342728 2.4611911927929002 -35.705485904679897 1 11.3050837330133 2.4512767137763798 -35.716352753596901 0.999999999999999 11.302531043821 2.4411602538277402 -35.727025745591199 1 11.2999413706043 2.4308394268488902 -35.737504335765102 1 11.2949510218381 2.4108338283955302 -35.757043592492501 1 11.2925572636202 2.4011883117741801 -35.766141430414201 1 11.2901343050685 2.3913730301215401 -35.775079051507603 1 11.287682530599 2.38138589372738 -35.7838543924288 1 11.2827345057299 2.3611140652112201 -35.801031935243998 1 11.2802385410673 2.3508311142671898 -35.809435774065797 1 11.2777148538974 2.34037366882596 -35.817673282589702 1 11.2751638995709 2.3297395529545999 -35.825740838715603 1 11.270217520169799 2.3089905221068299 -35.840887090085097 1 11.2678262617542 2.2989034498122001 -35.847992918336899 1 11.265412808233799 2.2886636816584498 -35.854948075842003 1 11.2629776145801 2.2782696066368802 -35.861748552309201 1 11.258200049807 2.25775076076307 -35.874665231407299 1 11.255859953667199 2.2476426883398202 -35.880798492492602 1 11.253501340091301 2.2373941807253499 -35.8867856681197 1 11.2511247037113 2.2270040700631899 -35.892622417226697 1 11.246293589668801 2.2057497934048098 -35.904087265896401 1 11.243838482147099 2.1948804784554401 -35.9097097498952 1 11.241365863008101 2.1838622672716301 -35.915166309159297 1 11.2388763986611 2.1726942776379299 -35.9204513600951 1 11.234122782281499 2.15122066509457 -35.930141340720297 1 11.231861770083899 2.14094438261758 -35.934580900831399 1 11.2295883397616 2.1305465222506799 -35.938873086342198 1 11.2273030933675 2.1200268131896101 -35.943013163847802 1 11.222651701501499 2.0984720376453301 -35.951080602341897 1 11.220284980879001 2.0874306796759599 -35.954999840847101 1 11.2179072496278 2.0762610470687801 -35.958748319567299 1 11.2155193044107 2.0649633889824499 -35.962320216069003 1 11.210866303843 2.0427878350383901 -35.9688983498461 1 11.208602320048801 2.0319245590660802 -35.971925536436501 1 11.2063308018835 2.0209489220510299 -35.974785758373002 1 11.204052553367299 2.0098617428224701 -35.977473604266699 1 11.199191027753701 1.9860286476839299 -35.982815507254699 1 11.196606151423699 1.9732525683686699 -35.9854209005683 0.999999999999998 11.1940150860293 1.9603376516081299 -35.9877914452073 1 11.191419221098201 1.94728623864697 -35.989918603658403 1 11.186468259851001 1.92217133633267 -35.9934901114109 1 11.1841137547004 1.9101319993197201 -35.994980171000897 1 11.1817577147087 1.8979859337443401 -35.996257200874503 1 11.1794013738812 1.88573611365664 -35.997314479134502 1 11.1749690016893 1.8624953180211501 -35.998877836373701 1 11.172892738458 1.8515265724546599 -35.999434274054998 1 11.1708182058109 1.8404826230932001 -35.999809889625197 1 11.1687463882601 1.8293665011718601 -36 1 11.166678339643701 1.8181818181818199 -36 1 +11.1729237017601 2 -35 0.79772403521746604 11.1724515637894 1.99833445379347 -35.003464377406601 0.79706026486720305 11.171982502989099 1.9965958227976299 -35.006821242334603 0.796388464760027 11.171517317295701 1.9947903895474199 -35.010070812650604 0.79570891445913805 11.171056676634199 1.99292397675671 -35.013213850710599 0.79502191468055505 11.170140751821499 1.9890593097674301 -35.019321645296401 0.79362740453691005 11.169685560423799 1.98705978052618 -35.022284245143098 0.79291976620486304 11.1692361820726 1.9850089160870601 -35.025140358316797 0.79220516646509498 11.168793121505299 1.98291181111596 -35.0278914210365 0.79148392556958302 11.1679163310944 1.97861397399522 -35.0332120905029 0.79002316635205705 11.167482716219601 1.97641236493003 -35.035779795694097 0.78928355043137299 11.1670564310842 1.97417315654949 -35.038243813718402 0.78853783582003401 11.1666378680994 1.97190077225491 -35.0406059673196 0.78778634669101999 11.165813147042799 1.96727683416386 -35.045150973898501 0.78626702725243303 11.1654071239227 1.96492467554758 -35.0473320675789 0.78549911902053904 11.1650096704166 1.9625470071884501 -35.0494133892945 0.78472599822879097 11.1646211071529 1.9601476779021201 -35.0513969617149 0.78394798452520498 11.1638588276132 1.9552903907020001 -35.055190216460502 0.78237711332594495 11.1634852721883 1.9528320294299899 -35.056998166154301 0.78158418964014498 11.163121363925899 1.9503588303296 -35.058710772307002 0.78078693419295797 11.162767378862799 1.9478741726539499 -35.060330144751198 0.77998565821905297 11.1620763164147 1.9428631965711001 -35.063401960251902 0.77836927063059103 11.161739436451599 1.94033665231981 -35.064852599747802 0.77755410017576998 11.1614131991848 1.93780480905724 -35.066212451243501 0.77673546002864002 11.161097851109499 1.9352706742305199 -35.06748364904 0.77591365176461902 11.1604859513584 1.9301747906334299 -35.069866338437002 0.77425673535162698 11.1601896467313 1.9276130047432101 -35.070975884008703 0.77342157477301299 11.159904946335899 1.92505461706202 -35.071999096910403 0.77258378455384302 11.1596320718201 1.9225023476290899 -35.072938105441601 0.77174365676567602 11.1591069937847 1.91738213966908 -35.074663005746601 0.77005022836005699 11.1588551005898 1.91481438867328 -35.075446764656803 0.76919688368755101 11.1586157582732 1.9122581663321701 -35.076148430379199 0.76834173047585597 11.158389159532 1.9097159752809201 -35.076770114672598 0.76748505213149898 11.157962238462201 1.9046697326767299 -35.077856492038897 0.76577291707010398 11.1577618588709 1.9021655849519099 -35.078321520548997 0.764917471480422 11.1575745037188 1.89968009129249 -35.078711008394798 0.76406105540622704 11.157400315878 1.89721548594787 -35.079026949223298 0.76320393066627201 11.1570541094873 1.8919620721238 -35.0795526708105 0.76136112428152103 11.1568864224627 1.88918074507994 -35.079739093839201 0.760375297406235 11.1567365263551 1.8864331466228501 -35.079833519802598 0.75938925364625798 11.156604544782899 1.8837223390530899 -35.0798388250534 0.75840336439031297 11.1563662895369 1.8781403460138999 -35.079669503700302 0.75634706356639703 11.156263386655001 1.87527659694757 -35.079478681933999 0.75527674535385203 11.1561818998474 1.8724637607582799 -35.079188947240901 0.75420748821827999 11.156121808879099 1.8697054131027699 -35.078803793466001 0.75313973402995305 11.156044391072999 1.8643214538798001 -35.077852405883696 0.75101774512689401 11.1560267985463 1.86169512638488 -35.077287324114103 0.74996347646528605 11.156030067902 1.85912934191681 -35.076634679963199 0.74891151140844403 11.1560539537306 1.8566273122872801 -35.075897690548999 0.74786224917959199 11.1561379139671 1.8519940322830799 -35.074340915808797 0.74587425398628904 11.156194238445901 1.84985041720488 -35.0735361814085 0.74493493634603503 11.1562667808812 1.8477635762473801 -35.072667570306997 0.74399840149997898 11.1563551781984 1.8457357388534701 -35.071737322506699 0.74306492293844095 11.156562519777401 1.8418073128780099 -35.069760379021403 0.74120924014072098 11.1566813858947 1.8399064470972299 -35.0687139914832 0.740287003235646 11.15681512604 1.8380686467002401 -35.067610628132599 0.73936831875124098 11.156963196806201 1.83629605648963 -35.066452416412602 0.73845344398256796 11.157273959404099 1.83302012349368 -35.064126032181001 0.73670568230024802 11.1574345729681 1.8315065973665201 -35.062965876444999 0.73587216359458496 11.157606302821801 1.8300518875693399 -35.0617626061238 0.73504227054653404 11.1577885814203 1.82865767063496 -35.060517837974402 0.73421619631240698 11.1581627754626 1.82606421094112 -35.0580166054324 0.73261733789720795 11.1583536651542 1.8248585724122 -35.056764279214299 0.73184412430458501 11.158552899889299 1.8237101559941999 -35.0554775569261 0.73107465167848396 11.1587598834045 1.8226204286848899 -35.054157805184701 0.73030907920568 11.1591923414659 1.8205406895209499 -35.051427864000402 0.72877240182984704 11.159418099889599 1.81955313933552 -35.050016419233799 0.72800144375417497 11.159650547275101 1.81862982824969 -35.048573517688297 0.72723485634641305 11.159888933730301 1.81777240295475 -35.047100647080399 0.72647280380293999 11.1603513748795 1.8162725029664799 -35.044249632592603 0.72503592975754905 11.1605744416874 1.81561707949665 -35.042876972474403 0.724360192236434 11.160801064534001 1.81501753427122 -35.041482451255099 0.72368835297206402 11.161030620655101 1.81447515428655 -35.040067216868799 0.72302052687848095 11.161500641264499 1.8134941278285199 -35.037158351743102 0.72167619120333903 11.161741227817 1.8130587453497999 -35.035663668398399 0.720999894679342 11.1619834968091 1.81268657688252 -35.034149701808403 0.72032805880648298 11.1622266980897 1.81237913489666 -35.032617822679597 0.71966080079928096 11.1626994334638 1.8119106919643699 -35.029609962381798 0.71837479163201601 11.162928946933 1.8117423067884 -35.0281358496824 0.71775550266961696 11.163157927697 1.81163416013492 -35.026648358378402 0.71714046051281 11.1633856937994 1.8115876228818899 -35.025148797508201 0.71652975302446997 11.1638668486573 1.8116227647150001 -35.021931324631097 0.71523931141534303 11.164119697430699 1.8117219614823801 -35.020210494771803 0.71456078420786495 11.164369068939701 1.81190375526046 -35.018478118776898 0.71388799659313196 11.1646139121804 1.8121702761602501 -35.016736414109701 0.71322105221087595 11.1650700239166 1.81284407571133 -35.0134028575172 0.71196190726382902 11.1652822850694 1.81323584668616 -35.011812269321297 0.71136863270135997 11.1654891460785 1.81370063847315 -35.0102179273836 0.71078027015048595 11.1656897995391 1.8142401053027599 -35.008621842077602 0.71019686533117699 11.166054470520001 1.8153997760862901 -35.0056169676877 0.70910834552513302 11.1662200264352 1.8160031844279201 -35.004208101311903 0.70860212318303595 11.166379555283401 1.8166672502065 -35.002801179706601 0.70809979035815096 11.1665325056162 1.8173931000863499 -35.001397870834602 0.707601348830592 11.166678339643701 1.8181818181818199 -35 0.70710678118655101 +10.4169947557416 2 -35 1 10.4147932785429 2 -35 1 10.4125977054562 1.99999999999999 -34.999999999999901 1 10.4104076131082 2.0000000000000102 -35.000000000000099 0.999999999999997 10.408222639607301 2 -35 1 10.4038427836577 2 -35 1 10.4016479898429 1.99999999999999 -34.999999999999901 1 10.3994577811563 2.0000000000000102 -35.000000000000099 0.999999999999997 10.3972719134612 2 -35 1 10.392891613427899 2 -35 1 10.3906972474692 2 -34.999999999999901 1 10.388506912851099 2 -35.000000000000099 0.999999999999998 10.386320492328601 2 -35 1 10.381939712877401 2 -35 1 10.3797454110586 2 -35 1 10.3775549548991 2 -35 0.999999999999999 10.3753683492798 2 -35 1 10.3709871065379 2 -35 1 10.368792527793101 2 -35 0.999999999999999 10.366601963949 2 -35 1 10.364415527885599 2 -35 1 10.3600338701211 2 -35 1 10.357838718039501 2 -35 1 10.355648066523999 2 -35 1 10.353462116257701 2 -35 1 10.349080110014899 2 -35 1 10.3468841458143 1.99999999999999 -34.999999999999901 1 10.344693430636299 2.0000000000000102 -35.000000000000099 0.999999999999996 10.342508228834699 2 -35 1 10.3381259511509 2 -35 1 10.335929001566001 2 -35.000000000000099 0.999999999999998 10.3337382494792 2 -34.999999999999901 1 10.3315539960699 2 -35 1 10.3272085336876 2 -35 1 10.325047265772399 2 -35 1 10.3228930302305 2 -35 1 10.3207461147373 2 -35 1 10.3161490550533 2 -35 1 10.313701341220799 2 -34.999999999999901 1 10.311264073123599 2 -35 0.999999999999999 10.3088376442129 2 -35 1 10.303797459731801 2 -35 1 10.301185730592101 2 -35 1 10.298587632517201 2 -35 1 10.2960035291579 2 -35 1 10.2908871273439 2 -35 1 10.2883545736063 2 -35 0.999999999999999 10.285836258535101 2 -35 1 10.2833323357016 2 -35 1 10.278601656636299 2 -35 1 10.2763721676044 2 -35 1 10.2741543893256 2 -35 1 10.271948263928101 2 -35 1 10.267569961756699 2 -35 1 10.265397670461001 2 -35 1 10.2632366402377 2 -35 1 10.261086648137301 2 -35 1 10.256981611650801 2 -35 1 10.255024897742 2 -35 1 10.253077004723099 2 -35 1 10.251137631083701 2 -35 1 10.2473815476813 2 -35 1 10.245563964291399 2 -35 1 10.243753356212901 2 -35 1 10.2419493663682 2 -35 1 10.2383215893389 2 -35 1 10.2364980270338 2 -35 1 10.234680471045801 2 -35 1 10.2328684381241 2 -35 1 10.229440063170699 2 -35 1 10.227822748751199 2 -35 1 10.226209060274099 2 -35 1 10.2245985747522 2 -35 1 10.221342070058499 2 -35 1 10.2196961927887 2 -35 1 10.2180527085047 2 -35 1 10.2164110843333 2 -35 1 10.213227277183501 2 -35 1 10.2116849467838 2 -35 1 10.2101432808885 2 -35 1 10.2086017726809 2 -35 1 10.205319989375999 2 -35 1 10.203579610524599 2 -35.000000000000099 0.999999999999998 10.201837976639499 2 -35 1 10.200094266222299 2 -35 1 10.1967671421377 2 -35 1 10.1951842619881 2 -35 1 10.193598326942199 2 -35 1 10.1920086607324 2 -35 1 10.189008764675 2 -35 1 10.1875995206679 2 -35 1 10.1861863439405 2 -35 1 10.184768733133399 2 -35 1 10.183346173607999 2 -35 1 + +0 3 +1 3 + +0 6 +0.041489200739118298 4 +0.083350133285974001 4 +0.125534858217589 4 +0.16802192270003299 4 +0.21081726699165301 4 +0.25395268602285198 4 +0.29748282160366801 4 +0.34148132100578399 4 +0.385288771868879 4 +0.435616739549813 4 +0.49031382516684002 4 +0.54451477954025096 4 +0.59330920744109195 4 +0.64186080012923596 4 +0.68647500395018202 4 +0.72863230664180101 4 +0.77154514498825399 4 +0.81004763353957099 4 +0.84953255694862395 4 +0.88668582103210003 4 +0.92861026263871904 4 +0.96654575159215805 4 +1 6 + +2 10.4169947557416 3 -35 0 0 1 0.96209138584166898 -0.27272727272727398 0 -0.27272727272727398 -0.96209138584166898 0 1 +9 1 1 0 0 2 5 3 94 2 24 11.379086141583301 2.7272727272727302 -25 1 11.379086141583301 2.7272727272727302 -24.984292520762999 1 11.379005133528199 2.7269869577983799 -24.968705017358499 1 11.378845783493199 2.7264248233526001 -24.953243742383801 1 11.378610772143601 2.7255954587125202 -24.9379136177796 1 11.377997241534599 2.7234287530939199 -24.907650817401201 1 11.377619943551 2.7220957349036898 -24.892715894953898 1 11.3771733704399 2.7205169482635601 -24.8779173876048 1 11.3766600103618 2.7187004187699402 -24.863257985776698 1 11.375509579749799 2.7146249453628801 -24.834349612656201 1 11.3748736447442 2.7123700608005601 -24.820098165374599 1 11.3741767461875 2.70989625270354 -24.805987013098299 0.999999999999997 11.3734210903652 2.7072102836390601 -24.792017216146199 1 11.371803273837999 2.70145084604657 -24.764478221826199 1 11.370942068404901 2.6983808485303098 -24.7509066428693 1 11.370027148615501 2.6951143700305402 -24.737474961583601 1 11.3690604035035 2.6916568871817099 -24.7241831098851 1 11.367034175598199 2.6843963059560401 -24.697974159253 1 11.3659754217828 2.6805959165093198 -24.685055039212099 0.999999999999999 11.364869024402701 2.6766169214546598 -24.672272819441201 1 11.363716554753299 2.6724635625638902 -24.6596267126863 1 11.361328902008401 2.6638392171426202 -24.634673362900799 1 11.3600942082487 2.6593701011670898 -24.6223646520458 1 11.3588167696425 2.6547358019477998 -24.61018856578 1 11.3574978617676 2.64993941866088 -24.5981439649713 1 11.3547836654552 2.64004320088987 -24.574352630519002 1 11.3533886312494 2.6349443708659299 -24.562605094825798 1 11.3519546583905 2.6296895833816101 -24.550985724784699 1 11.350482760495201 2.6242809007599601 -24.5394932762654 1 11.3474654895209 2.6131610550948898 -24.5167641574604 1 11.3459201470266 2.6074500155171298 -24.5055274031922 1 11.3443386980979 2.60158835412002 -24.494415017539499 1 11.3427219344298 2.59557720673725 -24.4834258973668 1 11.339414792550199 2.5832410527876402 -24.4616635135434 1 11.3377242333938 2.57691526526451 -24.450890909571399 1 11.335999564054299 2.57044061201589 -24.440240278429801 1 11.3342413992468 2.5638174149819499 -24.429710883132 1 11.3307090091796 2.5504623319045399 -24.409183334381801 1 11.328936596003301 2.5437386115521998 -24.399178561838099 1 11.3271335245058 2.5368744003361399 -24.389287459782501 1 11.3253002358652 2.5298693675674602 -24.3795098781654 1 11.321558014921999 2.5155151013204202 -24.360099106245801 1 11.3196485709956 2.5081634373245798 -24.3504678839512 1 11.317709191397199 2.5006672902803202 -24.340952459080601 1 11.3157402506874 2.4930258223546802 -24.331553373624601 1 11.3117211713364 2.4773613912555699 -24.3128839592713 1 11.3096703658753 2.4693350818706099 -24.303616325298801 1 11.307590039664399 2.4611579647818602 -24.294469613114899 1 11.3054805501862 2.45282880843539 -24.285445245918599 1 11.301174245238199 2.4357458090720798 -24.267521310945799 1 11.298976626624 2.42698768327939 -24.258625225060499 1 11.296749767524901 2.4180704283771202 -24.249858819276799 1 11.294494063391699 2.4089925509035699 -24.241224596022199 1 11.2898895111675 2.3903656190007898 -24.2240915403288 1 11.287539755612 2.3808113809501399 -24.215597043682699 1 11.285161108921599 2.3710881527373102 -24.207245289334701 1 11.2827540661544 2.3611943404321099 -24.1990400655184 1 11.2778424806031 2.34088960327627 -24.1827931689065 1 11.275336976477099 2.3304727294526 -24.1747567261156 1 11.2728032423187 2.3198761239693102 -24.166881055827101 1 11.270241941850401 2.3090982997865299 -24.1591714416051 1 11.26502040535 2.2869857014629198 -24.143964279631 1 11.262359224716599 2.2756444913506999 -24.1364728092348 0.999999999999997 11.2596710752742 2.26411290707882 -24.129165675538701 1 11.256956860928 2.25238981306327 -24.1220498650978 1 11.251432720396 2.2283604955421801 -24.108100992614801 1 11.248621954551901 2.21604781701576 -24.101274622083299 0.999999999999999 11.2457864004515 2.2035355798387499 -24.0946620174192 1 11.242927290049099 2.1908233960410399 -24.088272018784899 1 11.2371230980877 2.1648128590768598 -24.075867318146901 1 11.2341773728338 2.1515086959255099 -24.069859380448101 0.999999999999999 11.2312103031616 2.13799917089352 -24.064100336247702 1 11.2282235337742 2.1242851499225299 -24.0586009369182 1 11.2227860023243 2.0990996515373799 -24.049139109246301 1 11.220341388067 2.08769799348216 -24.045083339809398 1 11.217886053908 2.0761643467989601 -24.041211367929201 1 11.215421074636801 2.0645000481132398 -24.03752955797 1 11.210621363689899 2.0416156209808798 -24.030766852411599 1 11.208287610672 2.0304103686229298 -24.027663236215599 0.999999999999999 11.205947341642 2.0190927217018899 -24.024739152765601 1 11.2036016130512 2.0076646254709098 -24.022000281294901 1 11.1988974583175 1.98457251086122 -24.016900153247601 1 11.1965390174422 1.9729081200257299 -24.014539557400301 0.999999999999999 11.1941773896305 1.96113782731605 -24.0123764551238 1 11.191813808007 1.9492646186428699 -24.010416791436899 1 11.1870903028959 1.9253445373236 -24.0069198912704 1 11.184730382062099 1.9132980777466799 -24.005381784039098 0.999999999999997 11.1823711468393 1.90115634319316 -24.0040581121985 1 11.180014000680099 1.8889235731644101 -24.002954799336202 1 11.1754552079409 1.86506238996681 -24.0012557152018 1 11.1732531240893 1.85344447880555 -24.000632337871298 1 11.1710554112477 1.8417551610799101 -24.0002122251576 0.999999999999999 11.168863364056399 1.82999914451898 -24 1 11.166678339643701 1.8181818181818199 -24 1 +11.1729237017601 2 -25 0.79772403521746604 11.172455728020401 1.99834914381957 -24.9965661782119 0.79706611445683495 11.1719886965003 1.9966191454976101 -24.993222712039302 0.79639738649474001 11.171523432586101 1.99481482614478 -24.989971228180799 0.79571797129303301 11.1710606885421 1.9929409046614499 -24.986812902478 0.79502803365434804 11.170144685036499 1.98907590563394 -24.980704583132599 0.79363338246050796 11.1696913583915 1.9870855864935599 -24.977753179681301 0.79292884195718405 11.1692418602627 1.98503547824744 -24.974895161350101 0.79221433857422596 11.168796818272799 1.98292993187137 -24.9721310122357 0.79149009593151998 11.1679199100169 1.9786315171000399 -24.966809627644999 0.79002911798501796 11.1674879512512 1.9764392576627601 -24.964250942909501 0.789292550414052 11.1670615206216 1.97420049490339 -24.9617851274819 0.78854689640968401 11.166641158206 1.9719192187936201 -24.959412164333099 0.78779241955711499 11.165816304494101 1.9672945369486501 -24.954866426696299 0.78627283280408999 11.1654117084188 1.9649515290203301 -24.952692339791199 0.78550786720597798 11.1650140952603 1.9625740510332801 -24.9506093811539 0.78473477534529001 11.1646239467907 1.96016577223011 -24.9486171688878 0.78395384811541602 11.163861536136499 1.95530764956179 -24.9448232616908 0.78238268378359399 11.1634891742007 1.9528579932350401 -24.943020533135101 0.78159255663218496 11.163125100160199 1.9503847818278901 -24.941306472620099 0.780795302723026 11.162769756903 1.9478914161066501 -24.939680425785198 0.77999123201988596 11.1620785746351 1.94287957119643 -24.936608077678301 0.77837454167353504 11.161742660179 1.9403611147240301 -24.935161124634799 0.77756199326633602 11.161416256825699 1.9378291019015901 -24.933800003293101 0.77674333179729105 11.1610997775815 1.9352867178337601 -24.932523852489901 0.77591887950896998 11.1604877742888 1.9301899719450599 -24.93014075991 0.774261661015336 11.1601922191785 1.92763554264314 -24.9290336122212 0.77342892890648496 11.1599073566731 1.92507686645464 -24.928009310407798 0.77259109760159705 11.1596335701601 1.9225169584336199 -24.927066816659501 0.77174849971707105 11.1591084067338 1.91739591779857 -24.925341635842202 0.77005477528778998 11.1588570633531 1.9148347207913501 -24.924559219007001 0.769203652028146 11.1586175662601 1.91227812221566 -24.923856634865 0.76834844115129497 11.158390261964399 1.9097290061232 -24.923232690664602 0.76748948326478605 11.1579596303424 1.9046389044835701 -24.922136871131599 0.76576248087655696 11.1577564202237 1.9020979621318901 -24.9216657456181 0.76489441821822401 11.157566171520999 1.89957021280643 -24.921271468009301 0.76402328028210198 11.1573891790985 1.8970584409269799 -24.9209527014517 0.76314941404713099 11.1570664180554 1.8921361751611001 -24.920469666046401 0.76142131357326004 11.1569199616884 1.88972469445828 -24.9203016437047 0.76056720993244598 11.1567865764319 1.8873334287479899 -24.920202692782802 0.75971117563285595 11.156666463499899 1.8849648264148999 -24.920171480960001 0.75885352882451795 11.1564519415706 1.8802522104350601 -24.920242164547201 0.75712827111230596 11.1563578241883 1.87790871648127 -24.920345513666099 0.75626063780797104 11.156277596963401 1.87559325540347 -24.920515259132401 0.75539201164031 11.156211372581801 1.87330822709236 -24.920749945293799 0.75452271492261602 11.156106330224199 1.8687727394901801 -24.9213503130368 0.75277350894211303 11.156067900119 1.8665231710849499 -24.921717754191601 0.751893591619054 11.156043981210599 1.86430969340979 -24.922148849847598 0.75101364570860496 11.156034567990201 1.8621346732944299 -24.922642017880602 0.75013399763405697 11.1560446885406 1.8578313704962599 -24.923758296841001 0.74836372832827303 11.1560646955883 1.8557044228866999 -24.924383396090299 0.74747312449785497 11.1560995315282 1.85362198270198 -24.925069253247301 0.74658349415804004 11.1561490383402 1.85158640096112 -24.925814154498099 0.74569516822306903 11.1562780865622 1.84757710949215 -24.927433278053499 0.743907687476283 11.1563581610773 1.84560522609195 -24.9283096185153 0.74300858499713995 11.156452946100799 1.8436867279079601 -24.929243549464498 0.74211150684858196 11.1565620936536 1.8418239734217701 -24.9302332168728 0.74121678917353295 11.1568106460469 1.83817909845051 -24.932340779135799 0.73941742024305002 11.156950601782199 1.83639929995479 -24.933460801275299 0.73851286234443603 11.1571045574807 1.83468230789956 -24.934634825758302 0.73761143686070696 11.157271937391 1.83303052200924 -24.9358608427045 0.73671348594078501 11.157635785449701 1.8298303921512 -24.938438319844899 0.73490955522951595 11.157832765552399 1.82828480450638 -24.9397917779885 0.73400371037304202 11.158042276456101 1.8268120459293899 -24.9411950323504 0.73310216501924996 11.1582634792394 1.8254145961325099 -24.9426458913169 0.73220526846356104 11.1587318167793 1.82274997646022 -24.945667026003299 0.73040659291923904 11.158979361996099 1.82148584732191 -24.9472390233265 0.72950498213568604 11.1592370552313 1.8203051686028 -24.9488557360567 0.72860888806776203 11.1595037714595 1.81921056583517 -24.9505147358147 0.72771866421338605 11.1600574358804 1.81718178570591 -24.9539410579848 0.725937863630431 11.160344642079201 1.8162506711872 -24.955709688628598 0.72504746834407996 11.160638598826401 1.8154141455711299 -24.9575167372079 0.72416382596102002 11.160937892138501 1.8146750391203099 -24.9593594422306 0.72328728723316804 11.1614869903028 1.8135178659247899 -24.962756762254401 0.72171445558991498 11.161735481947099 1.8130655587101201 -24.964300161863001 0.72101560163065004 11.1619856795509 1.8126808605154701 -24.965863499518399 0.72032180271554502 11.162236733838601 1.8123653376140001 -24.967445126944099 0.71963323089215403 11.1627242912804 1.8118899636474 -24.970549116220099 0.71830752009201504 11.162960791418 1.8117221778047701 -24.972069586535799 0.71766975894082496 11.163196527147299 1.81161854877392 -24.973603223317799 0.71703689926686298 11.163430736241599 1.8115804213272599 -24.975148464895302 0.71640906842990904 11.1638953524561 1.8116379729723 -24.9782642008289 0.71516261969885797 11.1641257375165 1.81173411654344 -24.979834723834301 0.71454401964579495 11.164353011627499 1.81189893793851 -24.981413501440802 0.71393069781940999 11.164576374488201 1.81213380407298 -24.982998713982798 0.71332275874292195 11.1650135884456 1.812746197779 -24.986177435566798 0.71211907372475602 11.1652274371872 1.8131236605045 -24.987770896917201 0.71152330504155903 11.1654357706949 1.8135737871277999 -24.989366799998901 0.71093306947435198 11.1656377877342 1.81409789461097 -24.990963019093201 0.71034843584100005 11.166015624984601 1.8152596822151399 -24.9940533519421 0.70922695130250601 11.1661922874474 1.81588837243548 -24.995547664060801 0.70868941116047501 11.1663620445724 1.8165843277162801 -24.997038270523198 0.70815686311081805 11.1665242628437 1.81734852047766 -24.998523119269201 0.707629323242561 11.166678339643701 1.8181818181818199 -25 0.70710678118655101 +10.4169947557416 2 -25 1 10.4148126794368 2 -25 1 10.4126267245018 2 -25 1 10.4104365412365 2 -25 1 10.4082418579858 2 -25 1 10.4038615590279 2 -25 1 10.401676023164599 2 -25 1 10.399485678871701 2 -25 1 10.3972904161934 2 -25 1 10.3929094602693 2 -25 1 10.3907238555642 1.99999999999999 -24.999999999999901 1 10.388533353577801 2.0000000000000102 -25.000000000000099 0.999999999999997 10.3863380027259 2 -25 1 10.3819564525049 2 -25 1 10.379770333930001 2 -25 1 10.3775796856919 2 -25 1 10.375384703142601 2 -25 1 10.3710026428385 2 -25 1 10.3688156253902 2 -25 0.999999999999999 10.366624848675301 2 -25 1 10.364430637187301 2 -25 1 10.3600481587152 2 -25 1 10.357859925189301 2 -25 1 10.355669044532901 2 -25 1 10.353475941945099 2 -25 1 10.3490931367971 2 -25 1 10.3469034439886 2 -25 1 10.3447124840648 2 -25 1 10.342520761491899 2 -25 1 10.338137717754 2 -25 1 10.335946395260599 2 -25 1 10.3337553853377 2 -25 1 10.3315652424508 2 -25 1 10.3271820462408 2 -25 1 10.324988998839199 2 -25 1 10.322797970744499 2 -25 1 10.320609534593901 2 -25 1 10.3162998201338 2 -25 1 10.314178366681899 2 -25 1 10.312060423031999 2 -25 1 10.309946492558399 2 -25 1 10.30570951819 2 -25 1 10.303586550406401 2 -25 1 10.301468651331 2 -25 1 10.2993562797636 2 -25 1 10.2951194303657 2 -25 1 10.292995087664799 2 -25 1 10.290877265266101 2 -25 1 10.2887663452928 2 -25 1 10.2845297374369 2 -25 1 10.2824042509368 2 -25 1 10.280286538251 2 -25 1 10.2781768717897 2 -25 1 10.2739406462136 2 -25 1 10.2718143507826 2 -25 1 10.2696967807922 2 -25 1 10.2675880659573 2 -25 1 10.2633523876748 2 -25 1 10.261225732421099 2 -25 1 10.2591083364883 2 -25 1 10.2570001555336 2 -25 1 10.252765206489901 2 -25 1 10.250638759648099 2.0000000000000102 -25.000000000000099 0.999999999999997 10.2485215646256 1.99999999999999 -24.999999999999901 1 10.246413377447301 2 -25 1 10.2421793379036 2 -25 1 10.2400537777773 2 -25 0.999999999999999 10.2379368052649 2 -25 1 10.2358279532121 2 -25 1 10.2315949682487 2 -25 1 10.229471056329301 2 -25 0.999999999999999 10.2273543163056 2 -25 1 10.225244047865701 2 -25 1 10.221435303109001 2 -25 1 10.2197348757042 2 -25 1 10.2180377396403 2 -25 1 10.2163434277342 2 -25 1 10.213060125477901 2 -25 1 10.211470867851499 2 -25 0.999999999999999 10.2098832384694 2 -25 1 10.208296786087599 2 -25 1 10.2051225383314 2 -25 1 10.203534745501701 2 -25 0.999999999999999 10.2019471723703 2 -25 1 10.200359311109301 2 -25 1 10.197185257423 2 -25 1 10.195599068414101 2.0000000000000102 -25.000000000000099 0.999999999999997 10.1940115367331 1.99999999999999 -24.999999999999901 1 10.1924221126123 2 -25 1 10.189338678395099 2 -25 1 10.1878449683783 2 -25 1 10.186348634443601 2 -25 0.999999999999999 10.1848491978923 2 -25 1 10.183346173607999 2 -25 1 + +0 3 +1 3 + +0 6 +0.0462455633784222 4 +0.092102972750156401 4 +0.13755449764372599 4 +0.18262160995094201 4 +0.227359738792105 4 +0.27185237149185298 4 +0.316205238938502 4 +0.36054091138382699 4 +0.40499379226523102 4 +0.44820917859625597 4 +0.49179551400607502 4 +0.53587855676332696 4 +0.58057410298023804 4 +0.62597985638426801 4 +0.67216520738879404 4 +0.719158965637262 4 +0.76693580883110102 4 +0.81540332199507104 4 +0.85464861730841102 4 +0.89155849730067405 4 +0.92853213523215705 4 +0.965428809781818 4 +1 6 + +2 0 0 0 0 0 1 1 0 0 0 1 0 10 +1 0 0 22.5 0 0 1 1 0 0 0 1 0 +1 0 0 0 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 8 +1 0 0 20 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 20 +1 0 0 0 0 1 0 0 0 1 1 0 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 14 +1 0 0 0 0 0 1 1 0 0 0 1 0 +1 0 0 4 0 0 1 1 0 0 0 1 0 +1 0 0 0 1 0 0 0 0 1 0 -1 0 +1 0 90 0 0 1 0 0 0 1 1 0 0 +1 100 0 0 1 0 0 0 0 1 0 -1 0 +1 0 0 0 0 1 0 0 0 1 1 0 0 +1 0 0 0 1 0 0 0 0 1 0 -1 0 +1 0 0 0 0 1 0 0 0 1 1 0 0 +1 0 76 0 0 1 0 0 0 1 1 0 0 +1 80 0 0 1 0 0 0 0 1 0 -1 0 +1 0 0 0 0 0 1 1 0 0 0 1 0 +1 0 0 6 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 4 +1 0 0 0 0 0 1 1 0 0 0 1 0 +1 1 0 0 1 0 0 0 0 1 0 -1 0 +1 0 0 0 0 0 1 1 0 0 0 1 0 +1 0 0 4 0 0 1 1 0 0 0 1 0 +1 0 0 0 1 0 0 0 0 1 0 -1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 2 +1 0 0 18 0 0 1 1 0 0 0 1 0 +1 0 0 15 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 26 +2 0 0 0 0 0 1 1 0 0 0 1 0 16 +1 0 0 0 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 2 +1 24 0 0 1 0 0 0 0 1 0 -1 0 +1 0 0 4 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 4 +1 0 0 0 0 0 1 1 0 0 0 1 0 +1 0 0 0 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 5 +2 -100 0.01 -22 0 0 1 -1 0 0 0 1 0 5 +2 -100 0.01 -22 0 0 1 -1 0 0 0 1 0 5 +1 0 0 0 0 1 0 0 0 1 1 0 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 4 +2 -100.01000000000001 0 -22 0 0 1 -1 0 0 0 1 0 4 +2 -100.01000000000001 0 -22 0 0 1 -1 0 0 0 1 0 4 +9 1 1 0 0 2 8 3 226 2 33 -24.999996549879501 -0.0131341543728976 12.0000004029117 1 -24.999866719651202 -0.260257430651823 12.000042392082401 1 -24.996947370226199 -0.503131284255393 12.006788002633 0.99999999999997102 -24.9914084387852 -0.73771268347097996 12.0198332392249 1.0000000000000999 -24.983669598212199 -0.96204956217815896 12.0382020761545 0.99999999999984901 -24.9741713728666 -1.1755070325369501 12.060884608352101 1.0000000000001099 -24.963275790019001 -1.37846458054254 12.0870474074319 0.99999999999996403 -24.951216368799699 -1.57219147947364 12.116160872769999 1 -24.919335237836499 -2.0242425859737501 12.193568097797099 1 -24.898486748224698 -2.2737610636321302 12.244540183592701 0.99999999999995703 -24.876306932760102 -2.50623111325246 12.2991002212443 1.0000000000001099 -24.8527486172888 -2.7294817800088 12.3575415857206 0.99999999999987499 -24.8283949511587 -2.9394736187741199 12.4184288493617 1.00000000000006 -24.803176524343399 -3.1414381602288799 12.482049489468199 0.99999999999999001 -24.777309296707301 -3.3347138885314198 12.5479150416341 1 -24.720615373087899 -3.73325259810388 12.6937130104678 1 -24.689646884429301 -3.9360199618939502 12.774206855658701 1.00000000000001 -24.658044447743698 -4.1305920333586501 12.857295063129699 0.99999999999999001 -24.625902608093401 -4.3179270406341397 12.9428394523015 1 -24.593295844892701 -4.4987785373808098 13.030752157652801 1.00000000000001 -24.5602834264092 -4.6737753552896502 13.120986666169401 0.999999999999994 -24.5269104948567 -4.8434450331894698 13.2135389259397 1 -24.453977600054099 -5.2001282554171704 13.418937071319601 1 -24.414350030983801 -5.3851948241112604 13.532470719957599 1.00000000000001 -24.374089945695602 -5.5655043278005998 13.6500169617849 0.99999999999996303 -24.334174510773899 -5.73734945147228 13.768787642117401 1.0000000000000699 -24.293559855571701 -5.9063591547847203 13.892184061454 0.99999999999993705 -24.253090075865401 -6.0690809168654498 14.017901095541401 1.00000000000002 -24.212422696247199 -6.2276820278891103 14.1472465955228 1 -24.1320567642369 -6.5320720040178299 14.4094613795766 1 -24.092346901007499 -6.6781542366987496 14.5421918378801 1.00000000000002 -24.052614197633599 -6.8203870130902704 14.6784680602603 0.99999999999996902 -24.0128951586052 -6.9589653126697 14.8185144430796 0.999999999999998 -23.973229692017199 -7.0940379321942704 14.9625958667135 1.00000000000003 -23.933662055028599 -7.2257151616635902 15.111026772439001 0.99999999999998301 -23.894242214629401 -7.35407168069022 15.2641909492616 1 -23.818343106111602 -7.5961548545344204 15.570759905549099 1 -23.781847307954799 -7.7102621577583701 15.723487138359699 0.99999999999997102 -23.745576307007401 -7.82153833177414 15.881130037303 1.00000000000006 -23.709606384661502 -7.9299205437459204 16.044352949364001 0.99999999999994904 -23.673972363687401 -8.0354623333007407 16.2133869223278 1.00000000000001 -23.638807041588102 -8.1379327555560899 16.3892372907607 1 -23.604202323574501 -8.23723051990968 16.572632332642801 1 -23.541750393430799 -8.4138774560998097 16.9268514370956 1 -23.5137270139716 -8.4921349322040793 17.094947471594502 0.99999999999994704 -23.4863124413584 -8.5677691421778892 17.269958342034101 1.0000000000001901 -23.459617297377001 -8.6405754131099197 17.452833676831901 0.99999999999971501 -23.433799159878099 -8.7102296284937193 17.644625350979901 1.00000000000022 -23.4090868196663 -8.7762340507957006 17.846682242416701 0.99999999999992795 -23.385778407623299 -8.8379294131868402 18.060631687672501 1 -23.348352737449598 -8.9362434025792705 18.459992550318301 1 -23.333527378825501 -8.9749286218490205 18.637566262527301 1.0000000000000899 -23.3198752312525 -9.0103431734923891 18.8247599283741 0.99999999999970901 -23.3076574660722 -9.0418645553393695 19.0234532376206 1.0000000000004099 -23.297355320198601 -9.0683133838929599 19.2345487265437 0.99999999999971201 -23.289613323303499 -9.0881305006426807 19.4578187330379 1.0000000000000899 -23.285114602410101 -9.0996397773335307 19.691590639267901 1 -23.283303524726399 -9.1042728003734794 20.174287851564099 1 -23.286111839499199 -9.0970878237942507 20.4104405349362 1.00000000000004 -23.292320735919802 -9.0812146286345108 20.635830762851601 0.99999999999983802 -23.3012202568374 -9.0584121864221796 20.848897183199799 1.00000000000026 -23.3121633198773 -9.0302484321826402 21.049204396263502 0.99999999999978195 -23.3246359086769 -8.9979870732805907 21.237846585785999 1.0000000000000799 -23.338366212727198 -8.9622777831798697 21.4167144190009 1 -23.3736030679318 -8.8700564764699106 21.821405227569699 1 -23.395918119889 -8.8112411902736607 22.038921400032802 1.0000000000001199 -23.419768684725401 -8.7478382205966696 22.244229589909398 0.99999999999960998 -23.444833064230099 -8.6805628024322701 22.439010945416801 1.00000000000056 -23.470863266798801 -8.6099583366716708 22.624665232980501 0.99999999999959299 -23.497688938518799 -8.5363788233039095 22.802277311931 1.0000000000001299 -23.525189684485301 -8.4600519261275995 22.9728309875407 1 -23.586311104699501 -8.28828255877605 23.330309975192002 1 -23.620107482903901 -8.1919834707471004 23.514587241131299 1.00000000000004 -23.654579962870301 -8.0922861286320291 23.691521776961299 0.999999999999866 -23.689448864380498 -7.9898380667250901 23.861230661774002 1.0000000000001901 -23.7248174579166 -7.8842022569793704 24.025384637895201 0.999999999999865 -23.760552036078501 -7.7755601801672096 24.184073332005401 1.00000000000004 -23.7964168976448 -7.6645156147089599 24.337253662132099 1 -23.883065573286501 -7.39102368519554 24.6941415203544 1 -23.9339777100557 -7.2260822391109096 24.8931052833533 1.00000000000001 -23.9850837798767 -7.0558274866678303 25.083893979308201 0.99999999999999001 -24.0362819513897 -6.8801067302410104 25.267376286480101 0.999999999999999 -24.087489053729801 -6.6986587459111604 25.4442377894601 1.00000000000001 -24.138635751403399 -6.5111050073193102 25.615046753502501 0.999999999999995 -24.1896641013922 -6.3169122110690097 25.780275283968098 1 -24.286102601386599 -5.9346390534982802 26.083767125374699 1 -24.331527647993099 -5.74809233490069 26.222987166240198 1.00000000000003 -24.376832923730401 -5.55483953798963 26.3585322066467 0.99999999999993305 -24.421804887151701 -5.3548056333878504 26.489990925029701 1.0000000000000699 -24.4664989975746 -5.1471830429691803 26.618022937259799 0.99999999999996403 -24.511127186065799 -4.9289507951340399 26.743368395358299 1.00000000000001 -24.554976843141699 -4.7023052107494197 26.864195373252599 1 -24.6326687802596 -4.2742147209349399 27.074634309410701 1 -24.666684155498899 -4.0772414740479102 27.165449683511401 1.00000000000006 -24.700181704913401 -3.8724048712878201 27.253675315912101 0.99999999999982503 -24.733071096871701 -3.65871557669881 27.339194108051299 1.00000000000024 -24.765225303846702 -3.4350567842484399 27.421795512067298 0.99999999999982703 -24.796464335108201 -3.1999906136513001 27.501143172749099 1.00000000000005 -24.826555824427601 -2.9517552785654599 27.576781971846199 1 -24.8758623621314 -2.4957200853355799 27.699561544940099 1 -24.895695927036002 -2.2966107377482001 27.748577863865901 0.99999999999998501 -24.914717890714901 -2.0862702425862198 27.795265446237099 1.00000000000006 -24.9323535179748 -1.8695544398442501 27.8382300482075 0.99999999999990397 -24.949118089523399 -1.6333082485896 27.878876262961398 1.0000000000000799 -24.963726113629399 -1.3878633521795301 27.9140036392727 0.99999999999997002 -24.9761453860093 -1.1267745488871199 27.943735533524201 1 -24.992873248513799 -0.63426249518895395 27.9835438072244 1 -24.998604766086899 -0.40356004345519603 27.9970812371558 1.0000000000000999 -25.001988660757 -0.16355984670484999 28.004941101918899 0.99999999999969302 -25.002585915455899 0.079597624613907403 28.0061129404572 1.0000000000004201 -25.000359136397499 0.32056623167390802 28.000520110577401 0.99999999999971101 -24.9955843731253 0.55459989107335395 27.988797875089901 1.0000000000000899 -24.9887743089139 0.77743658460414999 27.9721468669327 1 -24.9713960144746 1.218060385776 27.929664236517802 1 -24.960226895451399 1.43829771441944 27.902364727464299 1.0000000000000799 -24.9474707484719 1.6474081771209701 27.8711239031072 0.99999999999978095 -24.933475059451499 1.84648412282334 27.8367703130954 1.00000000000027 -24.918252596444599 2.03821271372483 27.799172015639702 0.99999999999983702 -24.902305496277599 2.2201052408216402 27.759684202283498 1.00000000000004 -24.885541190515401 2.3955711608792498 27.717929929053501 1 -24.8439352430876 2.7989889602999698 27.613733996819601 1 -24.818513736774499 3.0207681460444 27.549619975506602 1.00000000000002 -24.7920876645215 3.2320820724153299 27.4824285828286 0.99999999999992095 -24.764839069023299 3.4341869928338502 27.4125194068532 1.0000000000001199 -24.7369121465841 3.6281090640175799 27.340167617525399 0.99999999999989997 -24.7084146530925 3.8146762956160201 27.265564247325798 1.00000000000004 -24.679426611498499 3.9946268112798 27.188832945963298 1 -24.615431472436299 4.3730442138179502 27.017441606894302 1 -24.580268605732801 4.5691660196445101 26.922012360811099 1.00000000000006 -24.5447061668815 4.7576260166063999 26.824179232769499 0.99999999999978095 -24.508495522846601 4.9404926110695602 26.722888397211001 1.00000000000033 -24.472554049673001 5.1148228016959898 26.621036888543902 0.99999999999975697 -24.435566265116599 5.2869968739101498 26.514095481122599 1.0000000000000799 -24.3989721997286 5.4513254656401102 26.406580316632599 1 -24.322776118407599 5.7821685552495001 26.178511615290802 1 -24.283255058134699 5.9474726433193998 26.057905150106698 0.99999999999997802 -24.243690161524199 6.1074049899584599 25.934656889632301 1.00000000000003 -24.2040963351836 6.2624725636334997 25.808582870173002 1 -24.164488284041798 6.4130823666444403 25.679467122071198 0.99999999999996503 -24.124881313611599 6.5595691457376901 25.547059391965199 1.00000000000002 -24.085291459943502 6.7022107383878797 25.4110633511931 1 -24.0093397492336 6.9691674671672299 25.142343380653202 1 -23.972975861303699 7.0940247999310202 25.010236938969602 1.00000000000001 -23.936658277178399 7.2159945503623897 24.874513794597799 0.99999999999998102 -23.900404913318599 7.3352148928657996 24.734855659481799 1 -23.864239220957302 7.4517864482548202 24.590895216758501 1.00000000000002 -23.828190869660698 7.5657767200945303 24.442201896178702 0.99999999999998801 -23.792298123163199 7.6772181054412796 24.288252488979001 1 -23.7248224381302 7.8830971159198198 23.9859314675032 1 -23.693202821662599 7.9780434841032397 23.8387961708437 0.999999999999996 -23.6618144164431 8.07086490060769 23.686689423294801 1.00000000000001 -23.6305877492862 8.1618601627985008 23.528291260741401 0.99999999999997802 -23.599814575897899 8.2502650686103198 23.3640669925304 1.00000000000002 -23.569473035662998 8.3362735646593293 23.192723269770099 0.999999999999995 -23.539782012879801 8.4193748686842405 23.013784165452101 1 -23.488673331334901 8.5607537523010393 22.6814518375894 1 -23.466939983511299 8.6202979423884099 22.5317425829681 0.99999999999992895 -23.4457873265887 8.6777229064790404 22.3763684877045 1.00000000000022 -23.425319502886701 8.7328082472653694 22.214710819619199 0.99999999999970002 -23.405672922591499 8.7852544826059304 22.046093476329599 1.0000000000002101 -23.387026735686401 8.8346593841884502 21.8697126782541 0.99999999999993805 -23.369604661208001 8.8805156967251193 21.684610037964401 1 -23.340995592554499 8.9554003811891594 21.332880864814602 1 -23.329327576134201 8.9857787812446901 21.1707633914544 0.99999999999992295 -23.3187668968162 9.0131454759599201 21.001215322355101 1.00000000000024 -23.309522250051501 9.0370009788071695 20.823130996716699 0.99999999999968003 -23.301929164881599 9.0565246999554692 20.636134761589702 1.00000000000022 -23.296402138915798 9.0707074279004498 20.440688169273301 0.99999999999993705 -23.2933483303194 9.0785419844047492 20.238257690129501 1 -23.292638440891199 9.0803631740751598 19.834646115906601 1 -23.294772368624901 9.07488844153076 19.6229546096238 0.99999999999992595 -23.299560131575401 9.0626090244949804 19.445535360885899 1.00000000000024 -23.3063406198021 9.0451912252854996 19.238557877973701 0.99999999999967104 -23.314927283871199 9.0230610811225294 19.075172431767299 1.00000000000023 -23.324754027099399 8.9976306897132101 18.900551216849799 0.99999999999992994 -23.335651588768201 8.9693079650233791 18.741447949144099 1 -23.3639038825897 8.8955084241608198 18.3758044105391 1 -23.381969467136202 8.8480529208282004 18.177786842827 1.0000000000001099 -23.401395392488102 8.7966721209276404 17.990320148772302 0.99999999999964595 -23.4219074571484 8.7419937139664903 17.812037051373501 1.0000000000004901 -23.443295394206899 8.6844936912000605 17.641805901028999 0.99999999999966405 -23.4654107563981 8.6244966268844401 17.478701212300699 1.0000000000000999 -23.488148098879599 8.5622190882650493 17.321885155353201 1 -23.547219910425099 8.3987804266996893 16.9382300646765 1 -23.584248953474201 8.2948396145204608 16.719285939166401 0.99999999999996603 -23.6222270484867 8.1865295047448008 16.511402072106101 1.0000000000001099 -23.6609165928033 8.0742965455417206 16.3129888188572 0.99999999999983902 -23.7001963621836 7.9582709797028404 16.123116397126399 1.0000000000001199 -23.739913633901601 7.8386830381688597 15.9406409292869 0.99999999999996403 -23.779978859136101 7.7155871873382296 15.764881731798001 1 -23.867276627704001 7.4415732757484996 15.3977128048446 1 -23.914583312997699 7.2894848687714404 15.2085384353782 0.999999999999995 -23.962146770030799 7.13261079444099 15.0265913785615 1.00000000000001 -24.009873134247599 6.9708520590229703 14.851150778169 0.999999999999998 -24.057681886129199 6.8040351326461002 14.681649229838801 0.99999999999998801 -24.1055023203145 6.6319068041729698 14.5176203102806 1.00000000000001 -24.153271464231899 6.4541139241938099 14.358681430832601 1 -24.242447670999599 6.1099208226338897 14.0702085638871 1 -24.283897821429498 5.9449197420324698 13.9394755827878 1.00000000000003 -24.3250971024646 5.7755507703223596 13.812538264229101 0.99999999999992495 -24.366470201646099 5.5991300255011804 13.687824170563299 1.0000000000000999 -24.407029381561301 5.4198125210427497 13.568076859372299 0.99999999999993405 -24.447934692189801 5.2311681791190896 13.4495190360843 1.00000000000002 -24.4881588821526 5.0370926120972799 13.3350883120399 1 -24.5636771278512 4.6540273576948596 13.123832863937 1 -24.5990233754932 4.4666495921531002 13.0265089905667 0.99999999999983702 -24.633902357179601 4.2726823717373099 12.9318842251327 1.00000000000053 -24.6682510272787 4.07136446304962 12.8399840068515 0.99999999999926203 -24.701983956014899 3.8618127607512598 12.7508977245467 1.00000000000052 -24.734985345218401 3.6429095092511301 12.664792023116499 0.99999999999983702 -24.767106569451201 3.41324833178186 12.581911823816601 1 -24.820347293299001 2.9968404113846199 12.445908798895401 1 -24.841976020633101 2.81662943539262 12.391082004867799 0.99999999999991995 -24.8629610936737 2.6288836851595101 12.338269041902899 1.00000000000028 -24.8831839227079 2.43319461020931 12.287707028929599 0.99999999999959099 -24.902542889520699 2.2269657861149201 12.2395978810511 1.00000000000031 -24.920721512649799 2.0115545670678401 12.1946686682373 0.99999999999989897 -24.937596948978399 1.7819875214873599 12.153121008946901 1 -24.9630329779928 1.3696059469181801 12.090723986489399 1 -24.9725410642619 1.1940437905302099 12.0674678476097 0.99999999999987199 -24.981025497985801 1.0110173235706099 12.046757341098999 1.0000000000004099 -24.988298614334798 0.81979997270707095 12.029018993252301 0.99999999999943601 -24.994096297589898 0.62039118361415502 12.0148614099132 1.0000000000003999 -24.998118143501401 0.41361346228328599 12.0049772545135 0.99999999999987699 -25.000109221997199 0.20132978992088199 11.9999639629482 1 -24.999996549879501 -0.0131341543728976 12.0000004029117 1 +-24.999997315712601 -0.0116764417303268 15 0.70710678693263995 -24.9999301667109 -0.166917693022654 15.000046061912199 0.70710104535995 -24.999148144582701 -0.31961917064636403 15.005528697455899 0.70686590359246304 -24.9976929274148 -0.46694249413016098 15.016134699615099 0.70641517900724804 -24.995688334175998 -0.60737791778241101 15.0310304035737 0.70578360936965401 -24.993275089298798 -0.74042010703852801 15.0493169960593 0.70500789387445295 -24.990563552053501 -0.86629115808672197 15.070267320260699 0.70411823103271198 -24.9876281403807 -0.98579683902141002 15.093408761559299 0.70313423962781196 -24.980038946753101 -1.26362416073842 15.154560951248101 0.70053588638247799 -24.975245179765501 -1.4154197946982301 15.194402320513699 0.69884217398562998 -24.970057675855301 -1.5589152611413799 15.237595048947 0.69702194309479704 -24.964830756199301 -1.69326398466245 15.283030781151799 0.69509824932835595 -24.959402937337298 -1.82128075608604 15.330718955348701 0.69309368359947898 -24.953992586218501 -1.94244984076518 15.380025402141101 0.69101971884834901 -24.948568275371301 -2.05809470446084 15.4308803756347 0.68888664384797804 -24.9369992569397 -2.2956518384627 15.5431104450088 0.68420483555826594 -24.930868593393701 -2.4158746982441102 15.604882324498 0.68164309375810095 -24.9248464966353 -2.5301775302401701 15.668176644241999 0.67902506786809602 -24.918977083719799 -2.6391519406757702 15.7327989266284 0.67635902060671504 -24.913296196857001 -2.7432744970106202 15.798599430951899 0.67365152658611505 -24.907833065889701 -2.8429511812566801 15.8654646345315 0.67090786572824102 -24.9026112852026 -2.9385287637714601 15.9333157512254 0.66813212576634695 -24.8918214987231 -3.1381581625813499 16.082922481520601 0.66206218314003096 -24.886319933364501 -3.2408453812278002 16.165108961694099 0.65876073075475405 -24.8814445485995 -3.3382284213161202 16.247971966457001 0.65541177761747205 -24.876373334490399 -3.4327691225717598 16.333354482524399 0.65207185104592402 -24.872127561626201 -3.52220307922871 16.419018490024801 0.64868383586224698 -24.8679900343326 -3.6086578094561901 16.5065685994457 0.64529670530980499 -24.864332940108699 -3.6914120236011598 16.595233216752199 0.641892553030458 -24.857855765181 -3.8491440315602601 16.773868798629401 0.63515887283165895 -24.8550363743011 -3.9242000774000099 16.863781259730999 0.63182895221883595 -24.852625170324199 -3.9962354234888502 16.9550233290311 0.62849461283402996 -24.850634941598798 -4.0653825221649003 17.047635085472201 0.62515910551146003 -24.849076198557899 -4.1317514654591498 17.141673313671799 0.62182594466280505 -24.847956714108001 -4.1954356309646998 17.237215722521999 0.61849899059839997 -24.8472808762669 -4.2565149295885503 17.3343700842406 0.61518256860257603 -24.846829229188501 -4.3704009644367403 17.526807963025298 0.60879365431378596 -24.846973242848598 -4.4235611054007098 17.622076732754199 0.60572173846459598 -24.847715062192702 -4.4739253437040096 17.7178780800573 0.60265666639981796 -24.848301885584299 -4.5237098598463001 17.8186801125367 0.59964421336998996 -24.850093866112399 -4.56896010173653 17.916940132789598 0.59661595340638596 -24.851636939484699 -4.6138973913237802 18.020774552928199 0.59365801817716901 -24.8535690129575 -4.6565469669721304 18.1272149679886 0.59074394149044396 -24.8575487894358 -4.7319318701661999 18.331411325244598 0.58549177822979104 -24.8595434045682 -4.7651171627285001 18.4279152250243 0.58313726740054805 -24.8616898161861 -4.7968294986833397 18.527484918716901 0.58083589846975603 -24.863969760870201 -4.8270069902958799 18.630576525567101 0.57859660858448503 -24.866358113080899 -4.8555421023195997 18.7376853275508 0.576432176280674 -24.868817373414199 -4.8822672625799903 18.849456077771201 0.57436125906877999 -24.871295711128099 -4.9069633008373099 18.9666746256379 0.572408202794643 -24.875519924339201 -4.9460056082821104 19.183929785577899 0.56927164065709901 -24.877278916326802 -4.9612547116373404 19.280169776911102 0.56802895370749695 -24.878970026896098 -4.9750719364841398 19.3809656429131 0.566884157579857 -24.880548806911602 -4.9872352701619302 19.487245839196301 0.56585891747163797 -24.881937689931199 -4.9973175640754199 19.599406625683201 0.56499344579213995 -24.883023306940299 -5.0047828577743596 19.717281193490699 0.56434172377009995 -24.883676821942601 -5.0090704488025501 19.840124897548499 0.56396198206662396 -24.883971371161799 -5.0107181498907796 20.093159684284601 0.56380826023408004 -24.883598181840402 -5.0079495690138396 20.216201064073399 0.564044171813882 -24.882677586152202 -5.0020901352985403 20.3333492760366 0.564571345951839 -24.881491429226202 -4.9933497225165802 20.4476879558344 0.56531807844252402 -24.880012973172601 -4.9826276412108399 20.552542936590701 0.56624046461690503 -24.878432855698499 -4.9701055435608401 20.654215341780201 0.56728744520527496 -24.876748310308699 -4.95614120148712 20.7503820218271 0.56844014185733804 -24.8726291833371 -4.9197901065363601 20.9691651855209 0.57139625487513301 -24.870161706788299 -4.8964245185407496 21.087612175220201 0.57326710510573997 -24.8676851184531 -4.8709448710258698 21.200486842333 0.57526590742651895 -24.865256883326701 -4.84358771391706 21.3085934971757 0.57736627946321994 -24.862918766962402 -4.81453575288264 21.412596190091701 0.57954794244724095 -24.860698605379199 -4.7839072647284002 21.5130016543545 0.58179707811436498 -24.858616696069401 -4.7517728542139501 21.610279731224001 0.58410396905890305 -24.854441841581099 -4.6789865383591396 21.815011550291199 0.58923427528481398 -24.852434745491198 -4.6378021645332703 21.921453678570199 0.59207225308023703 -24.850519943702899 -4.59509262851273 22.023920575862999 0.59497327762812102 -24.8491638546556 -4.5498237937900399 22.125069375509899 0.59790235213160403 -24.847816312221099 -4.5033302996799804 22.222179990621001 0.60088329677173802 -24.8466192481416 -4.45544167933362 22.316729609697099 0.60390157174160497 -24.846123820089499 -4.4046242301104499 22.4109545855368 0.60692269876187599 -24.8458562864021 -4.2782167334172803 22.6320377111367 0.61422251588335097 -24.846548633068402 -4.2003812282557602 22.757882398129802 0.61850929835360802 -24.848090496691999 -4.1179837847691196 22.881427073193599 0.62280985190355898 -24.850463233679999 -4.0308511259311004 23.002811814247401 0.62711532422690497 -24.853633665606999 -3.93878356189837 23.122103795878001 0.63141836203802904 -24.857557338347998 -3.8415442867835599 23.239325174843302 0.635712662889379 -24.862180314821401 -3.7388380432206501 23.354461214352501 0.63999270509338702 -24.8720960598483 -3.53418445537327 23.567484696801799 0.64807163053442096 -24.877255579548301 -3.43350293482685 23.665848283259098 0.65187372759337003 -24.882855579366701 -3.3278867166176398 23.762527281039201 0.65565621362592696 -24.888869629543098 -3.2172956889890298 23.8573712605608 0.659414286241228 -24.895313564979102 -3.1007348739076401 23.950584910032301 0.66313682303046695 -24.9018396774199 -2.9786461049339401 24.0414109104019 0.66683710116021599 -24.9087968072986 -2.84971568238791 24.130374589573599 0.67048077467706602 -24.921695763345301 -2.6049919435110098 24.28570334474 0.67692515253482999 -24.927556603267899 -2.4921526199932198 24.352881155334401 0.67974404165428703 -24.933571211574201 -2.37392471896454 24.418641248903299 0.68251689283703898 -24.939719723623899 -2.2496399570593399 24.482881049754301 0.68523573310611796 -24.945973829875701 -2.1185345238022202 24.545426510065798 0.68788956291230396 -24.952290603774198 -1.9796258604936801 24.6060000672556 0.69046312244307495 -24.958610977174299 -1.83171370516099 24.6642235560277 0.69293702039244798 -24.969324215823999 -1.5582841590196901 24.7592807710292 0.69698199777218295 -24.973760399525101 -1.4383196284547599 24.7974439926865 0.69860765423849402 -24.978033859567599 -1.31260775115368 24.833686067039501 0.70015580160472901 -24.982403643374301 -1.1775386267460599 24.868381952033101 0.701611084506232 -24.986221923431799 -1.03668864051773 24.8997936144929 0.70295603456781297 -24.990038372618201 -0.88397407493802005 24.9286089070117 0.70415520111360697 -24.9933110921965 -0.72091350563680101 24.952971075685198 0.70516810440559896 -24.9978635589577 -0.410771420301416 24.985939956070801 0.70653244176785701 -24.9994815858282 -0.264736110102686 24.9972962906375 0.70699930894081797 -25.000499118037698 -0.111871387353959 25.004042843214201 0.70727335397731195 -25.000749659904901 0.043673803351708999 25.005199161546201 0.70731804302923096 -25.000190944597598 0.19796389638408801 25.000610915457301 0.70713036618990899 -24.9989199960911 0.34752202284429601 24.9908701149721 0.70673331847985099 -24.997103897488699 0.48939973911261198 24.977056295900798 0.70616949138135998 -24.9925084086018 0.76902731211703301 24.941933064359102 0.70473425506976395 -24.9895686275865 0.90828165182934695 24.9193895942484 0.70381356975361398 -24.9862753609133 1.03943937704904 24.893784162426201 0.70276507518196396 -24.982721785848099 1.16363031756781 24.865722223905401 0.70160888268313504 -24.978994686457501 1.2817604114865899 24.835587650707001 0.70037556842549897 -24.975224201291802 1.39283412936222 24.804114322903001 0.69905982685130796 -24.971381898366001 1.4991170846250399 24.7712220954141 0.69768436364928099 -24.962138473535099 1.7421119933897 24.689708086359001 0.69426250283198998 -24.956719809075899 1.87431680748312 24.640039488586499 0.69216834421186002 -24.951341186621399 1.99885065153555 24.5886136315325 0.68998747126966598 -24.946049553410099 2.1166966654484498 24.5357345475824 0.687734561076632 -24.940875957458701 2.2286602821352699 24.481622089787798 0.68542145176584002 -24.935838731146301 2.3353897293382202 24.426418551029599 0.68305716714617903 -24.930948608685899 2.43745088201088 24.370210390922502 0.68064855356633602 -24.920600228290901 2.65124770807236 24.245323150695 0.67532404081490405 -24.915216709011101 2.7612478987887501 24.176303371421199 0.67239399297452596 -24.9099626708717 2.8663830761509099 24.105766296482901 0.66942633035291998 -24.905293813134701 2.9659224096154202 24.035027982133499 0.66640248876272301 -24.9000878018437 3.06357111230718 23.961031638427801 0.66339587776769204 -24.896161298477601 3.1543435712502998 23.888678653050899 0.66030335635659398 -24.891661621028199 3.2441327076813802 23.813006106835999 0.65723997062550799 -24.882647631017502 3.4248948987157499 23.652230318093199 0.65085919143192505 -24.878046833478201 3.5156749806931602 23.566583640462198 0.647548045065934 -24.8735889865541 3.60328090745144 23.4790073983119 0.64423225432567199 -24.869328992869001 3.6877829210755699 23.389561725813799 0.64091344267643102 -24.8653213066532 3.7692332751147499 23.2983020471207 0.63759296144121902 -24.8616197369868 3.84767025188741 23.205280025053099 0.63427200700500697 -24.858277620830599 3.9231205004955498 23.110543876854301 0.63095170173001003 -24.8526235064326 4.0629760686147902 22.924523555149001 0.62457970845048005 -24.850255537637501 4.1277847542349999 22.833466804990501 0.62152801869950802 -24.848285455469799 4.1900422898660103 22.741002139169201 0.618479041357336 -24.846754953275799 4.2497496980809197 22.647170157122499 0.61543397885026296 -24.845704652976799 4.3068981091585696 22.552017240125299 0.61239446753356597 -24.845173329711901 4.3614718648750896 22.455596317664501 0.60936267807922695 -24.845195858928701 4.4134520099921 22.357964794248101 0.60634152897393401 -24.8463406530472 4.5072210455875803 22.1703308592515 0.60065670790311698 -24.847330482660201 4.5495643179003604 22.080454066109201 0.59799190255755896 -24.8489061206317 4.5894468436935201 21.990253511717299 0.59533683648239499 -24.8508860962264 4.6276282176552002 21.8986250280864 0.59270511039084195 -24.853173776552801 4.6640124644984997 21.805178498598401 0.59010798898569305 -24.855854049756601 4.6984726725815298 21.710265220760601 0.58754788610383601 -24.858735751006201 4.7312991239714099 21.612788326184099 0.58504372399859295 -24.864134105097602 4.7865819646541103 21.434176882043801 0.58073424464300105 -24.866581313933398 4.8096988989397298 21.354328939837799 0.57890214255056704 -24.869076574288499 4.8318052518117502 21.2722973455495 0.57711952901235697 -24.871574282491402 4.8528992928053603 21.187649113922099 0.57539526002115704 -24.874022182800498 4.8729507179220102 21.0998839928812 0.57374091586601605 -24.876361584572599 4.89188762638023 21.008366144355701 0.57217166272805198 -24.878528463435 4.9095926934454397 20.912291124932501 0.57070641516300602 -24.8820140153551 4.9388883667467196 20.728420000433399 0.56830217386353399 -24.8834060918402 4.9509170552302697 20.643183993388099 0.56732234933762804 -24.8846180567195 4.9619025536649204 20.553521199732401 0.56643629672650697 -24.885616133384399 4.9716588748963302 20.458541964047999 0.56566153151546805 -24.886361145650401 4.9798467219435896 20.3576180837217 0.56502609919460201 -24.886823137179999 4.9860072813683702 20.2504032529929 0.56456451609424296 -24.8870281091951 4.9895441410085004 20.136948833963402 0.564310069906239 -24.8870740052052 4.9903713146991304 19.905057552348101 0.56425094786283903 -24.886861226123401 4.9880772443368802 19.824994586208302 0.56442992036162998 -24.8859711281473 4.9839976691784296 19.678863803264701 0.56483746069797902 -24.885249308294199 4.9768387683478501 19.629173037896798 0.56540510747596295 -24.883913779692499 4.9688409620830898 19.4998267276499 0.566130509091056 -24.882701459660002 4.9588548050110797 19.424901674970101 0.56695544713125101 -24.881308965399199 4.9478804020640803 19.3358801592356 0.56787124134455103 -24.877880478657701 4.9189695802389197 19.138853987601799 0.57024365002130495 -24.875790203724499 4.9002351018021804 19.031435965711001 0.571759812159091 -24.873659560349001 4.8797312631456702 18.9288561399492 0.57338958034087595 -24.871537779555801 4.8576678021301998 18.830458018288098 0.575110334746611 -24.869460680991899 4.8342067037503096 18.7357055192576 0.57690479421452501 -24.8674528565044 4.8094585687565701 18.644165407268702 0.57876084046033904 -24.865532102310102 4.7834942863561096 18.555438443798501 0.58066991512337196 -24.860938514264799 4.7149889017532098 18.337745747036099 0.58563241739134597 -24.858441732889901 4.6708604205593298 18.2120798485272 0.58874373998986296 -24.8560115044714 4.6248905731330696 18.092432172336299 0.59194906480910803 -24.8544498959333 4.57494296923407 17.973826201803501 0.59519079330840996 -24.852489717606201 4.5248008175230003 17.863058648303401 0.59852325804680595 -24.851288614635202 4.4712306522430696 17.752895389692601 0.60187648464240295 -24.8505663150356 4.4149669502373801 17.645177429943899 0.60525766200838005 -24.8500343472144 4.2881685492029202 17.4181457609983 0.61262234271209204 -24.850392829605301 4.2167485821483597 17.299514403975 0.61661088450727797 -24.851401822258701 4.1415869558912197 17.183292247070899 0.62061849199796004 -24.853057941482099 4.0625495997485901 17.0692688124714 0.62463702605777205 -24.855349792994801 3.979475769754 16.9573014669161 0.62865944879333802 -24.858259740141701 3.89217089643099 16.847290776475599 0.63267951450033499 -24.8617650307527 3.8003919522048499 16.739172254114202 0.63669158905638601 -24.869346413660701 3.6206710953345498 16.541410516427199 0.644173781079035 -24.873259285972001 3.5339993116194601 16.451311049294301 0.64764786602409696 -24.877679891285901 3.4433128880692099 16.362341312789201 0.65110148938764401 -24.882191190868401 3.3493488462973202 16.275332789241901 0.654554777328343 -24.8875603913209 3.2499213369222901 16.188662362761001 0.65795502690860497 -24.892745473751599 3.14714215118244 16.104506754574299 0.66135986346384901 -24.898525164241398 3.03870075893601 16.021221887833999 0.664714354528397 -24.910083560795101 2.8227201986535202 15.866463802875799 0.67100675857266401 -24.915812531680402 2.7163293566668099 15.794656624306899 0.67395032435041502 -24.921796752522901 2.6049119489976502 15.7240470875035 0.67685300087213696 -24.928003607313201 2.4879716662692899 15.6547492001151 0.67970915127708298 -24.934391938721301 2.3649404029305301 15.5869299983533 0.68251124003553798 -24.940908868189599 2.2351165123588101 15.5208239485357 0.68524920775752296 -24.9474880763707 2.09763873323713 15.456736522048001 0.68791022865158802 -24.958704749906101 1.84696751792814 15.3512530399647 0.69231340335275504 -24.963350961023099 1.73828182174367 15.3086786606122 0.69409979739666905 -24.967954601867199 1.62459033874866 15.2674877167536 0.69583076135074196 -24.9724792199676 1.50515076776229 15.2278951951062 0.69749620974442905 -24.9768522145859 1.3797808453437701 15.190214098696501 0.69908617606023504 -24.981073912492299 1.24683565471539 15.154729364453599 0.70058069483069596 -24.984950551631801 1.10667222428886 15.122181241348899 0.70195965172709796 -24.990960493783099 0.85254254015254805 15.0728246078389 0.70404703302462701 -24.9932460798683 0.74400089089557397 15.0543292656772 0.70482894909167404 -24.995319364293 0.630326372386116 15.037753036816 0.70552814125750496 -24.9971212430424 0.51106350671492995 15.023473921688799 0.70612889064407003 -24.998570989544099 0.38623401296305998 15.0120236353618 0.70660915353847897 -24.999574109048499 0.256442673422206 15.004015125455201 0.70694385483454902 -25.0000555895489 0.12304638416147901 14.9999600261468 0.70711176971024103 -24.999997315712601 -0.0116764417303268 15 0.70710678693263995 +-21.999997832879298 -0.0099999999999997903 15 1 -21.999891946593401 -0.14737888229492699 15 1 -21.9972462870759 -0.282454608776886 15.004313774765601 0.99999999999997102 -21.992212895197799 -0.41275563312865399 15.0126885746709 1.0000000000000999 -21.985188292741199 -0.53699710265937495 15.024461824451601 0.99999999999984901 -21.9765990163969 -0.65474216804953 15.0389217190924 1.0000000000001099 -21.966792144365801 -0.766182315877034 15.055488910689601 0.99999999999996403 -21.955995282507399 -0.87202357071040704 15.073785443503301 1 -21.927623368325801 -1.1176564499186801 15.1220180407634 1 -21.909288219943502 -1.2511600045751501 15.1532469770424 0.99999999999995703 -21.8893407517497 -1.3812184461305199 15.187785206013 1.0000000000001099 -21.868515147988301 -1.5008896161426999 15.2238839107207 0.99999999999987499 -21.8466177723292 -1.6183526296566799 15.262443684445 1.00000000000006 -21.824084766225401 -1.72903635225536 15.3024033211024 0.99999999999999001 -21.800898716455599 -1.83592892100645 15.3439903295418 1 -21.750091575892199 -2.0561970404837902 15.436091793062699 1 -21.722333793796199 -2.1683491392106098 15.486994904901399 1.00000000000001 -21.694021800323402 -2.2759417760992302 15.5395491816404 0.99999999999999001 -21.6652584935783 -2.3794325076104199 15.593621927171901 1 -21.6361264513714 -2.47918992008649 15.6491135170349 1.00000000000001 -21.6066920768749 -2.5755298186379099 15.705952848040999 0.999999999999994 -21.5770069565067 -2.66872490186626 15.7640976884833 1 -21.512304756930199 -2.8641492177933698 15.892729412111001 1 -21.477201629572502 -2.9654621650847899 15.9637645262753 1.00000000000001 -21.442042719574602 -3.0621442128628802 16.035715754605299 0.99999999999996303 -21.406321850227499 -3.1583778604157802 16.111374173473301 1.0000000000000699 -21.370748173650401 -3.2496574723596199 16.187547568955299 0.99999999999993705 -21.334884617035598 -3.3396398288786302 16.266650197143001 1.00000000000002 -21.299008242879701 -3.4267724132971198 16.347629858978902 1 -21.228118519114101 -3.5943320513961798 16.512023799969501 1 -21.193115975852798 -3.6748109512969198 16.595277556567499 1.00000000000002 -21.158125545129401 -3.7532044178500499 16.680772041458798 0.99999999999996902 -21.123185893055702 -3.8295957689576001 16.768625324616401 0.999999999999998 -21.088337672817801 -3.9040481075164002 16.858980078067201 1.00000000000003 -21.053624199225901 -3.9766078644099898 16.9520094482126 0.99999999999998301 -21.019092481572901 -4.0473060665214202 17.047929511286402 1 -20.952709473124301 -4.1805698179532396 17.239729986736901 1 -20.9208334318729 -4.2433808856878903 17.3352503522791 0.99999999999997102 -20.889224264117999 -4.3044050792215502 17.433429826175601 1.00000000000006 -20.857870048491002 -4.3643069330105302 17.535812361107499 0.99999999999994904 -20.826943165804501 -4.4218392039804097 17.640470220744 1.00000000000001 -20.796408265052499 -4.4782246024768302 17.7500854266776 1 -20.7664070903108 -4.53279159090199 17.864243474727399 1 -20.712317701971401 -4.6299726944675301 18.084795871573899 1 -20.688069083151099 -4.6730597151734896 18.189472209277099 0.99999999999994704 -20.664367721910502 -4.7147349469268596 18.298469699352701 1.0000000000001901 -20.641306854426901 -4.7548823652195704 18.412383125234001 0.99999999999971501 -20.6190198605386 -4.7933194144083 18.531871016309299 1.00000000000022 -20.597701056266999 -4.8297666431967796 18.657777852050899 0.99999999999992795 -20.577603744514999 -4.86385441861374 18.791121991695199 1 -20.545346039104299 -4.9181996438280704 19.040083715952399 1 -20.532572013274901 -4.9395924994350597 19.150801083830199 1.0000000000000899 -20.520811628459001 -4.9591830998784197 19.2675365201994 0.99999999999970901 -20.510288367442499 -4.9766245188465801 19.391466999235099 1.0000000000004099 -20.5014155471202 -4.9912606080547901 19.523163636900001 0.99999999999971201 -20.494746434423099 -5.0022236929642503 19.662494646471099 1.0000000000000899 -20.490871602133399 -5.0085801110263901 19.808435926941499 1 -20.489326529642302 -5.0110867944524902 20.109930464984899 1 -20.4917584794986 -5.0070690080594904 20.257542159028699 1.00000000000004 -20.497147205242001 -4.9982098138455804 20.3985289637167 0.99999999999983802 -20.504823390471898 -4.9855413303693101 20.5310711206142 1.00000000000026 -20.514280771659699 -4.9698944309876998 20.6563453903509 0.99999999999978195 -20.525038080557898 -4.9520079550909903 20.773755095337801 1.0000000000000799 -20.536880524487 -4.9322291554419904 20.885209840365601 1 -20.5672620134719 -4.8812135631846303 21.1371566060958 1 -20.586496203926199 -4.8487220931053896 21.272458961911301 1.0000000000001199 -20.607050623470801 -4.8137479407929398 21.400065588796799 0.99999999999960998 -20.628650948465701 -4.7766949038067299 21.521035810918701 1.00000000000056 -20.651086012156298 -4.7378700861126299 21.636252582375398 0.99999999999959299 -20.6742114360591 -4.6974744021341301 21.746400699935698 1.0000000000001299 -20.697925655757999 -4.6556382458589498 21.852101102253201 1 -20.7506506890293 -4.5616412238471602 22.0735101788033 1 -20.7798309120402 -4.5089801374061604 22.187655359331501 1.00000000000004 -20.809533148834699 -4.4548613047947603 22.296633561749701 0.999999999999866 -20.839759527650099 -4.3987124972368798 22.402279668859599 1.0000000000001901 -20.870297851229498 -4.3414477799772104 22.503272051972399 0.999999999999865 -20.901114336946598 -4.2829559828225996 22.600724036146001 1.00000000000004 -20.932292465358099 -4.2223408071515696 22.6960421662546 1 -21.007804053923198 -4.0727633505966301 22.9186414234869 1 -21.052384838785098 -3.9820755732416599 23.043555790807201 1.00000000000001 -21.097343809410301 -3.8879886635263898 23.1639996720128 0.99999999999999001 -21.142576169608599 -3.7904367039069098 23.280342198724799 0.999999999999999 -21.187983574797499 -3.6893251994581502 23.392846015268699 1.00000000000001 -21.2334709586213 -3.58452726922323 23.5017046437363 0.999999999999995 -21.27894446533 -3.4758717334023901 23.607053689863399 1 -21.3649617790843 -3.2620733504625901 23.800338752520201 1 -21.4055316033159 -3.1577046096145902 23.888972179319701 1.00000000000003 -21.445891633203999 -3.0500904892534999 23.974739416920499 0.99999999999993305 -21.4860733473426 -2.9386166402931799 24.058111488415701 1.0000000000000699 -21.525904540509899 -2.8230167053063302 24.138753530565499 0.99999999999996403 -21.5651392181496 -2.70460227436272 24.216027537224601 1.00000000000001 -21.604018671646699 -2.5803130892645898 24.2913467425603 1 -21.672781199461401 -2.3466843307026899 24.421992556156798 1 -21.7028858695103 -2.2393738409360702 24.478305079016899 1.00000000000006 -21.732532982381699 -2.1279595124297401 24.532961710343301 0.99999999999982503 -21.761645005253801 -2.0119015994952298 24.585909979293699 1.00000000000024 -21.790112609962101 -1.89058945064513 24.637040902274201 0.99999999999982703 -21.817780951633999 -1.7632335072610501 24.6861702362907 1.00000000000005 -21.844450618352401 -1.62886277718015 24.733043407889401 1 -21.8882011332425 -1.3821444094228901 24.809261090420399 1 -21.905855891870999 -1.27385622036103 24.839833893784899 0.99999999999998501 -21.922564040144898 -1.16316927953078 24.868382212122899 1.00000000000006 -21.9387577572571 -1.0392813330849799 24.896455535274601 0.99999999999990397 -21.9531244469818 -0.91910472436035895 24.9204055645734 1.0000000000000799 -21.966551191263701 -0.78351425428635302 24.943386567130801 0.99999999999997002 -21.9778797347509 -0.63970758461183597 24.962632677178899 1 -21.993296477539499 -0.365194564925167 24.9888116242211 1 -21.9986309075469 -0.23570953967348801 24.9978525269727 1.0000000000000999 -22.0018269855189 -0.100113459458923 25.0032295899797 0.99999999999969302 -22.0024309025215 0.037914883296553098 25.004150861182101 1.0000000000004201 -22.0003777252677 0.174909014114285 25.0004837106402 0.99999999999971101 -21.995942091484899 0.30778138324785698 24.992695542775099 1.0000000000000899 -21.989626389384501 0.43388206721902001 24.981651766420701 1 -21.973569446754201 0.68216603195726899 24.953618536389701 1 -21.963277185459901 0.80557127869237799 24.935670615936498 1.0000000000000799 -21.951612431923699 0.92180519677449901 24.915353507269799 0.99999999999978095 -21.9387504075743 1.03240921679512 24.892864812272901 1.00000000000027 -21.925267547678601 1.1349644592015899 24.869503724804801 0.99999999999983702 -21.910831129060401 1.23520358157501 24.844212548087299 1.00000000000004 -21.895861772697899 1.33017430612304 24.8179935758425 1 -21.8587703574998 1.5484889597022999 24.752748436339299 1 -21.836200792932601 1.66798916236763 24.712858744987901 1.00000000000002 -21.812823434049601 1.7814834967145099 24.671293257035099 0.99999999999992095 -21.788789717481301 1.88977769283257 24.628255776313601 1.0000000000001199 -21.764216337002001 1.99352685213865 24.583890875891001 0.99999999999989997 -21.7391874982033 2.0932558094649401 24.538287117126099 1.00000000000004 -21.713763542186701 2.1894252261736802 24.491490176665401 1 -21.657692873292401 2.3917245061840302 24.387122103076901 1 -21.626933994616099 2.4965539979114899 24.329166961254401 1.00000000000006 -21.595731070963801 2.5978918970635299 24.269360206311902 0.99999999999978095 -21.5643799112175 2.6946486459590302 24.208996281865002 1.00000000000033 -21.532364562334699 2.79103773341309 24.144929194256299 0.99999999999975697 -21.5006324873717 2.8810241820387299 24.082085020054599 1.0000000000000799 -21.468299636473599 2.9713997507968499 24.015438689560099 1 -21.4007983589327 3.1543898855155099 23.873118740483399 1 -21.365553930887401 3.2470632042629801 23.796869158635999 0.99999999999997802 -21.330089899704799 3.3376446815226801 23.7180836954829 1.00000000000003 -21.2944714423395 3.4261270532756498 23.636764792582799 1 -21.258760812757899 3.5124989761688798 23.552903861079599 0.99999999999996503 -21.223018139035201 3.5967453049869702 23.466479680618701 1.00000000000002 -21.187302409968101 3.6788468103191398 23.377455314142999 1 -21.118887201069001 3.8323314562558899 23.2014084349677 1 -21.086177578562499 3.9040402548850901 23.114801332267 1.00000000000001 -21.0535889206473 3.9738898965787501 23.025903987539099 0.99999999999998102 -21.0211695088285 4.0418537006677102 22.934662266749399 1 -20.988971358012702 4.1078960129135096 22.841010971413699 1.00000000000002 -20.957050888493399 4.1719731587886999 22.744871137129401 0.99999999999998801 -20.9254698357582 4.2340342784431 22.6461417503881 1 -20.866524299652099 4.3474659195725103 22.4542856508623 1 -20.8390850849479 4.3992525365944699 22.361745245299101 0.999999999999996 -20.812007271667099 4.4493616093737902 22.266899824114301 1.00000000000001 -20.785407841852301 4.4975617078784103 22.170044075817898 0.99999999999997802 -20.7592153062762 4.5444143467577103 22.069815275234301 1.00000000000002 -20.733583194583499 4.5894810857124897 21.9665803504551 0.999999999999995 -20.708545514990401 4.6329960917154303 21.859276343745499 1 -20.665499599382599 4.7070291369156196 21.660763793515901 1 -20.6472105746378 4.7382190699955 21.5715705570056 0.99999999999992895 -20.629405036918701 4.7683726114838603 21.479117435533698 1.00000000000022 -20.612149434808501 4.7974348509046099 21.382896936546398 0.99999999999970002 -20.595537645794401 4.82530570768869 21.2823289052637 1.0000000000002101 -20.579702284248999 4.8518196245881002 21.176694513521699 0.99999999999993805 -20.564818693162401 4.87673790926259 21.065106913460902 1 -20.5402089874779 4.9180062606023096 20.850976876378802 1 -20.5301059965024 4.9349739260057097 20.751574137026399 0.99999999999992295 -20.520889845315399 4.9505000363981102 20.646719050204901 1.00000000000024 -20.512744095813702 4.9642909838249798 20.535433807213099 0.99999999999968003 -20.505972669016199 4.9758396623512997 20.417091126978502 1.00000000000022 -20.500969194905199 4.9844679603392601 20.291484077396799 0.99999999999993705 -20.4981625949369 4.9893695802473301 20.1590159477703 1 -20.497508793867599 4.9905135327680501 19.889739365099 1 -20.499421053026001 4.98724926458 19.782955714608899 0.99999999999992595 -20.503401710950701 4.9809334371240501 19.6288443700127 1.00000000000024 -20.509401926663401 4.9707743991685396 19.548695353151899 0.99999999999967104 -20.5166691114466 4.9589538957794996 19.4119196389689 1.00000000000023 -20.525179857925298 4.9447343063819398 19.318103645989702 0.99999999999992994 -20.5345501900123 4.9291265910958701 19.216009953433801 1 -20.558877799027901 4.88836806020187 18.988175438074201 1 -20.5744388040731 4.8621598912871002 18.864776925168101 1.0000000000001099 -20.5911790845661 4.8337872367382504 18.747944624049801 0.99999999999964595 -20.608865050754702 4.8036002201633297 18.636831468037901 1.0000000000004901 -20.627317530502498 4.7718653064835896 18.530736100346999 0.99999999999966405 -20.6464102023516 4.7387652475328403 18.4290848802966 1.0000000000000999 -20.666053502626301 4.704423022666 18.331358000411601 1 -20.7171240919307 4.6143445286153497 18.0922842797176 1 -20.749176545334901 4.5570619122803899 17.9558051045707 0.99999999999996603 -20.7820575300358 4.4976532150358297 17.826604445822401 1.0000000000001099 -20.8156726396899 4.4355792012103104 17.702402105445699 0.99999999999983902 -20.849739047191001 4.3722441770406997 17.584821018166199 1.0000000000001199 -20.884288284226098 4.3066173880499798 17.471082215094199 0.99999999999996403 -20.919202427569701 4.2390043539014899 17.361429880207901 1 -20.995407075621898 4.0884089131558401 17.1321086126441 1 -21.036785691046301 4.0047506211082498 17.013776147584199 0.999999999999995 -21.078471469002899 3.9183913674998001 16.8998175179707 1.00000000000001 -21.120378508537499 3.8292865569257901 16.789823445747199 0.999999999999998 -21.162429513519498 3.7373593816125901 16.6834805684298 0.99999999999998801 -21.204553091764499 3.6424986194771898 16.5805383557203 1.00000000000001 -21.246682282897499 3.54454924319902 16.480797895829902 1 -21.3254000923848 3.3550885093507099 16.299857329640801 1 -21.361988523630998 3.26446732245754 16.217986598188499 1.00000000000003 -21.398557033900701 3.1706703324444199 16.137977789769302 0.99999999999992495 -21.4347689964209 3.0756142576929899 16.061119118300802 1.0000000000000999 -21.471143875639601 2.9749890035585702 15.984647099118 0.99999999999993405 -21.506884844251001 2.8738269304348498 15.912056308565999 1.00000000000002 -21.542517707680201 2.7677093463566802 15.8405078571163 1 -21.609552361955501 2.55790051219001 15.7081830336501 1 -21.6410213355508 2.4549785914075999 15.647001851721599 0.99999999999983702 -21.672156360989 2.3481647489378799 15.5873402464997 1.00000000000053 -21.702885992519001 2.2370650638131 15.5292659208712 0.99999999999926203 -21.733115293573899 2.1212353461036599 15.472890848091099 1.00000000000052 -21.762718939080202 2.00013030002718 15.4183784682259 0.99999999999983702 -21.7915383133119 1.8730815367321401 15.3659443887303 1 -21.839274444442601 1.64306354340644 15.2800550647832 1 -21.858655797754999 1.543590044563 15.245481258277501 0.99999999999991995 -21.877444884678098 1.4403223988376499 15.2122397790555 1.00000000000028 -21.8955317309096 1.33211494007793 15.1804744822538 0.99999999999959099 -21.912752898335501 1.2203929014574499 15.1505101183077 1.00000000000031 -21.9290140361482 1.10103296615837 15.1222929822822 0.99999999999989897 -21.943886453527 0.97810530532210505 15.0967759274449 1 -21.966561497986898 0.75394505437051296 15.0578211032773 1 -21.975086562405501 0.65804079153930894 15.0431834255418 0.99999999999987199 -21.982734032460499 0.55759942910276805 15.0300502744341 1.0000000000004099 -21.9893218169384 0.45221717556748398 15.0187235449615 0.99999999999943601 -21.9945962145603 0.34190836176316802 15.009627149777801 1.0000000000003999 -21.998266479034601 0.227189691426463 15.003248922897001 0.99999999999987699 -22.000089725439398 0.109223156164319 15 1 -21.999997832879298 -0.0099999999999997903 15 1 + +0 3 +1 3 + +0 9 +0.020451729175787799 7 +0.049551654993566598 7 +0.082736039907863101 7 +0.12136931361011299 7 +0.15899622479377501 7 +0.194196793783219 7 +0.223874120262156 7 +0.246027867209892 7 +0.268403962672838 7 +0.29867604159600197 7 +0.33423817758737101 7 +0.384122190106365 7 +0.42882802026695599 7 +0.46449856729266198 7 +0.49034851210107999 7 +0.51026955206567604 7 +0.53258899886508504 7 +0.56349573686483001 7 +0.59980604534557402 7 +0.63880670867184197 7 +0.67469353488106998 7 +0.70666552597802601 7 +0.73129729106955099 7 +0.75102879689399205 7 +0.76986187455783395 7 +0.795489602605709 7 +0.83484838012461104 7 +0.88061571790158299 7 +0.92048473951999299 7 +0.95636710916293499 7 +0.98206683298474395 7 +1 9 + +6 1 0 0 +7 1 0 8 226 33 -105 -0.0099999999999997903 -10.0000021671207 1 -105 -0.14737888229492699 -10.000108053406599 1 -104.995686225234 -0.282454608776886 -10.0027537129241 0.99999999999997102 -104.987311425329 -0.41275563312865399 -10.007787104802199 1.0000000000000999 -104.975538175548 -0.53699710265937495 -10.014811707258801 0.99999999999984901 -104.961078280908 -0.65474216804953 -10.0234009836031 1.0000000000001099 -104.94451108931 -0.766182315877034 -10.033207855634201 0.99999999999996403 -104.926214556497 -0.87202357071040704 -10.0440047174926 1 -104.877981959237 -1.1176564499186801 -10.072376631674199 1 -104.846753022958 -1.2511600045751501 -10.0907117800565 0.99999999999995703 -104.812214793987 -1.3812184461305199 -10.1106592482503 1.0000000000001099 -104.776116089279 -1.5008896161426999 -10.131484852011701 0.99999999999987499 -104.737556315555 -1.6183526296566799 -10.1533822276708 1.00000000000006 -104.69759667889799 -1.72903635225536 -10.175915233774599 0.99999999999999001 -104.656009670458 -1.83592892100645 -10.199101283544399 1 -104.563908206937 -2.0561970404837902 -10.249908424107799 1 -104.513005095099 -2.1683491392106098 -10.277666206203801 1.00000000000001 -104.46045081836 -2.2759417760992302 -10.3059781996766 0.99999999999999001 -104.40637807282801 -2.3794325076104199 -10.3347415064217 1 -104.350886482965 -2.47918992008649 -10.3638735486286 1.00000000000001 -104.29404715195901 -2.5755298186379099 -10.3933079231251 0.999999999999994 -104.23590231151699 -2.66872490186626 -10.4229930434933 1 -104.107270587889 -2.8641492177933698 -10.487695243069799 1 -104.036235473725 -2.9654621650847899 -10.5227983704275 1.00000000000001 -103.96428424539501 -3.0621442128628802 -10.5579572804254 0.99999999999996303 -103.888625826527 -3.1583778604157802 -10.593678149772501 1.0000000000000699 -103.812452431045 -3.2496574723596199 -10.6292518263496 0.99999999999993705 -103.73334980285701 -3.3396398288786302 -10.6651153829644 1.00000000000002 -103.652370141021 -3.4267724132971198 -10.700991757120301 1 -103.48797620003 -3.5943320513961798 -10.7718814808859 1 -103.404722443433 -3.6748109512969198 -10.8068840241472 1.00000000000002 -103.31922795854101 -3.7532044178500499 -10.841874454870601 0.99999999999996902 -103.231374675384 -3.8295957689576001 -10.8768141069443 0.999999999999998 -103.14101992193299 -3.9040481075164002 -10.911662327182199 1.00000000000003 -103.047990551787 -3.9766078644099898 -10.946375800774099 0.99999999999998301 -102.952070488714 -4.0473060665214202 -10.980907518427101 1 -102.760270013263 -4.1805698179532396 -11.047290526875701 1 -102.664749647721 -4.2433808856878903 -11.0791665681271 0.99999999999997102 -102.566570173824 -4.3044050792215502 -11.110775735881999 1.00000000000006 -102.46418763889299 -4.3643069330105302 -11.142129951509 0.99999999999994904 -102.35952977925599 -4.4218392039804097 -11.173056834195499 1.00000000000001 -102.249914573322 -4.4782246024768302 -11.2035917349475 1 -102.135756525273 -4.53279159090199 -11.2335929096892 1 -101.915204128426 -4.6299726944675301 -11.287682298028599 1 -101.810527790723 -4.6730597151734896 -11.311930916848899 0.99999999999994704 -101.70153030064699 -4.7147349469268596 -11.3356322780895 1.0000000000001901 -101.587616874766 -4.7548823652195704 -11.358693145573101 0.99999999999971501 -101.468128983691 -4.7933194144083 -11.3809801394614 1.00000000000022 -101.342222147949 -4.8297666431967796 -11.402298943732999 0.99999999999992795 -101.20887800830501 -4.86385441861374 -11.422396255484999 1 -100.95991628404801 -4.9181996438280704 -11.454653960895699 1 -100.84919891617 -4.9395924994350597 -11.467427986725101 1.0000000000000899 -100.732463479801 -4.9591830998784197 -11.479188371540999 0.99999999999970901 -100.60853300076499 -4.9766245188465801 -11.489711632557499 1.0000000000004099 -100.47683636310001 -4.9912606080547901 -11.4985844528798 0.99999999999971201 -100.337505353529 -5.0022236929642503 -11.505253565576901 1.0000000000000899 -100.191564073059 -5.0085801110263901 -11.509128397866601 1 -99.890069535015101 -5.0110867944524902 -11.5106734703577 1 -99.742457840971298 -5.0070690080594904 -11.5082415205014 1.00000000000004 -99.6014710362833 -4.9982098138455804 -11.502852794758001 0.99999999999983802 -99.4689288793858 -4.9855413303693101 -11.4951766095281 1.00000000000026 -99.343654609649107 -4.9698944309876998 -11.485719228340299 0.99999999999978195 -99.226244904662195 -4.9520079550909903 -11.4749619194421 1.0000000000000799 -99.114790159634396 -4.9322291554419904 -11.463119475513 1 -98.862843393904299 -4.8812135631846303 -11.4327379865281 1 -98.727541038088702 -4.8487220931053896 -11.413503796073799 1.0000000000001199 -98.599934411203193 -4.8137479407929398 -11.3929493765292 0.99999999999960998 -98.478964189081296 -4.7766949038067299 -11.371349051534301 1.00000000000056 -98.363747417624595 -4.7378700861126299 -11.3489139878437 0.99999999999959299 -98.253599300064295 -4.6974744021341301 -11.3257885639409 1.0000000000001299 -98.147898897746799 -4.6556382458589498 -11.302074344242 1 -97.926489821196697 -4.5616412238471602 -11.2493493109707 1 -97.812344640668499 -4.5089801374061604 -11.2201690879598 1.00000000000004 -97.703366438250299 -4.4548613047947603 -11.190466851165301 0.999999999999866 -97.597720331140394 -4.3987124972368798 -11.1602404723499 1.0000000000001901 -97.496727948027598 -4.3414477799772104 -11.1297021487705 0.999999999999865 -97.399275963853995 -4.2829559828225996 -11.0988856630534 1.00000000000004 -97.3039578337454 -4.2223408071515696 -11.067707534641899 1 -97.081358576513097 -4.0727633505966301 -10.9921959460768 1 -96.956444209192796 -3.9820755732416599 -10.9476151612149 1.00000000000001 -96.836000327987193 -3.8879886635263898 -10.902656190589701 0.99999999999999001 -96.719657801275204 -3.7904367039069098 -10.857423830391401 0.999999999999999 -96.607153984731298 -3.6893251994581502 -10.812016425202501 1.00000000000001 -96.498295356263696 -3.58452726922323 -10.7665290413787 0.999999999999995 -96.392946310136594 -3.4758717334023901 -10.72105553467 1 -96.199661247479796 -3.2620733504625901 -10.6350382209157 1 -96.111027820680306 -3.1577046096145902 -10.5944683966841 1.00000000000003 -96.025260583079501 -3.0500904892534999 -10.554108366795999 0.99999999999993305 -95.941888511584295 -2.9386166402931799 -10.5139266526574 1.0000000000000699 -95.861246469434505 -2.8230167053063302 -10.474095459490099 0.99999999999996403 -95.783972462775395 -2.70460227436272 -10.4348607818504 1.00000000000001 -95.708653257439707 -2.5803130892645898 -10.395981328353299 1 -95.578007443843106 -2.3466843307026899 -10.327218800538599 1 -95.521694920983094 -2.2393738409360702 -10.2971141304897 1.00000000000006 -95.467038289656699 -2.1279595124297401 -10.2674670176183 0.99999999999982503 -95.414090020706297 -2.0119015994952298 -10.238354994746199 1.00000000000024 -95.362959097725806 -1.89058945064513 -10.209887390037901 0.99999999999982703 -95.313829763709293 -1.7632335072610501 -10.182219048365999 1.00000000000005 -95.266956592110603 -1.62886277718015 -10.155549381647599 1 -95.190738909579593 -1.3821444094228901 -10.1117988667575 1 -95.160166106215101 -1.27385622036103 -10.094144108129001 0.99999999999998501 -95.131617787877104 -1.16316927953078 -10.0774359598551 1.00000000000006 -95.103544464725402 -1.0392813330849799 -10.0612422427429 0.99999999999990397 -95.0795944354266 -0.91910472436035895 -10.0468755530182 1.0000000000000799 -95.056613432869199 -0.78351425428635302 -10.033448808736299 0.99999999999997002 -95.037367322821197 -0.63970758461183597 -10.0221202652491 1 -95.0111883757789 -0.365194564925167 -10.0067035224605 1 -95.002147473027307 -0.23570953967348801 -10.0013690924531 1.0000000000000999 -94.996770410020304 -0.100113459458923 -9.9981730144810808 0.99999999999969302 -94.995849138817903 0.037914883296553098 -9.9975690974785394 1.0000000000004201 -94.999516289359804 0.174909014114285 -9.9996222747323102 0.99999999999971101 -95.007304457224905 0.30778138324785698 -10.004057908515099 1.0000000000000899 -95.018348233579303 0.43388206721902001 -10.010373610615501 1 -95.046381463610302 0.68216603195726899 -10.026430553245801 1 -95.064329384063498 0.80557127869237799 -10.0367228145401 1.0000000000000799 -95.084646492730201 0.92180519677449901 -10.048387568076301 0.99999999999978095 -95.107135187727096 1.03240921679512 -10.0612495924257 1.00000000000027 -95.130496275195199 1.1349644592015899 -10.074732452321401 0.99999999999983702 -95.155787451912701 1.23520358157501 -10.0891688709396 1.00000000000004 -95.182006424157507 1.33017430612304 -10.1041382273021 1 -95.247251563660697 1.5484889597022999 -10.1412296425002 1 -95.287141255012102 1.66798916236763 -10.163799207067401 1.00000000000002 -95.328706742964897 1.7814834967145099 -10.1871765659504 0.99999999999992095 -95.371744223686406 1.88977769283257 -10.211210282518699 1.0000000000001199 -95.416109124108999 1.99352685213865 -10.235783662997999 0.99999999999989997 -95.461712882873897 2.0932558094649401 -10.2608125017967 1.00000000000004 -95.508509823334606 2.1894252261736802 -10.286236457813301 1 -95.612877896923095 2.3917245061840302 -10.342307126707601 1 -95.670833038745599 2.4965539979114899 -10.373066005383899 1.00000000000006 -95.730639793688098 2.5978918970635299 -10.404268929036199 0.99999999999978095 -95.791003718135002 2.6946486459590302 -10.4356200887825 1.00000000000033 -95.855070805743694 2.79103773341309 -10.467635437665299 0.99999999999975697 -95.917914979945394 2.8810241820387299 -10.4993675126283 1.0000000000000799 -95.984561310439901 2.9713997507968499 -10.531700363526401 1 -96.126881259516594 3.1543898855155099 -10.5992016410673 1 -96.203130841364001 3.2470632042629801 -10.634446069112601 0.99999999999997802 -96.281916304517097 3.3376446815226801 -10.669910100295199 1.00000000000003 -96.363235207417205 3.4261270532756498 -10.7055285576605 1 -96.447096138920401 3.5124989761688798 -10.741239187242099 0.99999999999996503 -96.533520319381296 3.5967453049869702 -10.776981860964799 1.00000000000002 -96.622544685856994 3.6788468103191398 -10.812697590031901 1 -96.798591565032297 3.8323314562558899 -10.881112798930999 1 -96.885198667732993 3.9040402548850901 -10.9138224214375 1.00000000000001 -96.974096012460905 3.9738898965787501 -10.9464110793527 0.99999999999998102 -97.065337733250601 4.0418537006677102 -10.9788304911715 1 -97.158989028586305 4.1078960129135096 -11.0110286419873 1.00000000000002 -97.255128862870606 4.1719731587886999 -11.0429491115066 0.99999999999998801 -97.353858249611903 4.2340342784431 -11.0745301642418 1 -97.545714349137697 4.3474659195725103 -11.133475700347899 1 -97.638254754700895 4.3992525365944699 -11.1609149150521 0.999999999999996 -97.733100175885696 4.4493616093737902 -11.187992728332899 1.00000000000001 -97.829955924182102 4.4975617078784103 -11.214592158147701 0.99999999999997802 -97.930184724765695 4.5444143467577103 -11.2407846937238 1.00000000000002 -98.033419649544896 4.5894810857124897 -11.266416805416499 0.999999999999995 -98.140723656254494 4.6329960917154303 -11.2914544850096 1 -98.339236206484102 4.7070291369156196 -11.334500400617401 1 -98.4284294429944 4.7382190699955 -11.3527894253622 0.99999999999992895 -98.520882564466305 4.7683726114838603 -11.370594963081301 1.00000000000022 -98.617103063453598 4.7974348509046099 -11.387850565191499 0.99999999999970002 -98.717671094736303 4.82530570768869 -11.404462354205601 1.0000000000002101 -98.823305486478304 4.8518196245881002 -11.420297715751 0.99999999999993805 -98.934893086539105 4.87673790926259 -11.435181306837601 1 -99.149023123621205 4.9180062606023096 -11.4597910125221 1 -99.248425862973605 4.9349739260057097 -11.4698940034976 0.99999999999992295 -99.353280949795106 4.9505000363981102 -11.4791101546846 1.00000000000024 -99.464566192786904 4.9642909838249798 -11.4872559041863 0.99999999999968003 -99.582908873021495 4.9758396623512997 -11.494027330983799 1.00000000000022 -99.708515922603198 4.9844679603392601 -11.499030805094799 0.99999999999993705 -99.8409840522297 4.9893695802473301 -11.5018374050631 1 -100.110260634901 4.9905135327680501 -11.502491206132399 1 -100.217044285391 4.98724926458 -11.500578946974001 0.99999999999992595 -100.371155629987 4.9809334371240501 -11.496598289049301 1.00000000000024 -100.451304646848 4.9707743991685396 -11.490598073336599 0.99999999999967104 -100.588080361031 4.9589538957794996 -11.4833308885534 1.00000000000023 -100.68189635400999 4.9447343063819398 -11.4748201420747 0.99999999999992994 -100.783990046566 4.9291265910958701 -11.4654498099877 1 -101.01182456192601 4.88836806020187 -11.441122200972099 1 -101.135223074832 4.8621598912871002 -11.4255611959269 1.0000000000001099 -101.25205537594999 4.8337872367382504 -11.4088209154339 0.99999999999964595 -101.363168531962 4.8036002201633297 -11.3911349492453 1.0000000000004901 -101.469263899653 4.7718653064835896 -11.3726824694975 0.99999999999966405 -101.570915119703 4.7387652475328403 -11.3535897976484 1.0000000000000999 -101.668641999588 4.704423022666 -11.333946497373701 1 -101.907715720282 4.6143445286153497 -11.2828759080693 1 -102.044194895429 4.5570619122803899 -11.250823454665101 0.99999999999996603 -102.173395554178 4.4976532150358297 -11.2179424699642 1.0000000000001099 -102.297597894554 4.4355792012103104 -11.1843273603101 0.99999999999983902 -102.415178981834 4.3722441770406997 -11.150260952809001 1.0000000000001199 -102.528917784906 4.3066173880499798 -11.1157117157739 0.99999999999996403 -102.63857011979201 4.2390043539014899 -11.080797572430299 1 -102.867891387356 4.0884089131558401 -11.0045929243781 1 -102.986223852416 4.0047506211082498 -10.963214308953701 0.999999999999995 -103.100182482029 3.9183913674998001 -10.921528530997101 1.00000000000001 -103.210176554253 3.8292865569257901 -10.879621491462499 0.999999999999998 -103.31651943157 3.7373593816125901 -10.8375704864805 0.99999999999998801 -103.41946164428001 3.6424986194771898 -10.795446908235499 1.00000000000001 -103.51920210417001 3.54454924319902 -10.753317717102499 1 -103.700142670359 3.3550885093507099 -10.6745999076152 1 -103.782013401811 3.26446732245754 -10.638011476369 1.00000000000003 -103.862022210231 3.1706703324444199 -10.601442966099301 0.99999999999992495 -103.93888088169901 3.0756142576929899 -10.5652310035791 1.0000000000000999 -104.01535290088199 2.9749890035585702 -10.5288561243604 0.99999999999993405 -104.08794369143401 2.8738269304348498 -10.493115155749001 1.00000000000002 -104.15949214288401 2.7677093463566802 -10.457482292319799 1 -104.29181696635 2.55790051219001 -10.390447638044501 1 -104.352998148278 2.4549785914075999 -10.3589786644492 0.99999999999983702 -104.41265975349999 2.3481647489378799 -10.327843639011 1.00000000000053 -104.470734079129 2.2370650638131 -10.297114007480999 0.99999999999926203 -104.527109151909 2.1212353461036599 -10.266884706426101 1.00000000000052 -104.581621531774 2.00013030002718 -10.2372810609198 0.99999999999983702 -104.63405561127 1.8730815367321401 -10.2084616866881 1 -104.719944935217 1.64306354340644 -10.1607255555574 1 -104.75451874172199 1.543590044563 -10.141344202245 0.99999999999991995 -104.78776022094399 1.4403223988376499 -10.1225551153219 1.00000000000028 -104.819525517746 1.33211494007793 -10.1044682690904 0.99999999999959099 -104.84948988169199 1.2203929014574499 -10.0872471016645 1.00000000000031 -104.877707017718 1.10103296615837 -10.0709859638518 0.99999999999989897 -104.90322407255501 0.97810530532210505 -10.056113546473 1 -104.94217889672299 0.75394505437051296 -10.0334385020131 1 -104.956816574458 0.65804079153930894 -10.024913437594501 0.99999999999987199 -104.969949725566 0.55759942910276805 -10.017265967539499 1.0000000000004099 -104.98127645503899 0.45221717556748398 -10.0106781830616 0.99999999999943601 -104.990372850222 0.34190836176316802 -10.0054037854397 1.0000000000003999 -104.996751077103 0.227189691426463 -10.0017335209654 0.99999999999987699 -105 0.109223156164319 -9.9999102745605803 1 -105 -0.0099999999999997903 -10.0000021671207 1 + 0 9 0.020451729175787799 7 0.049551654993566598 7 0.082736039907863101 7 0.12136931361011299 7 0.15899622479377501 7 0.194196793783219 7 0.223874120262156 7 0.246027867209892 7 0.268403962672838 7 0.29867604159600197 7 0.33423817758737101 7 0.384122190106365 7 0.42882802026695599 7 0.46449856729266198 7 0.49034851210107999 7 0.51026955206567604 7 0.53258899886508504 7 0.56349573686483001 7 0.59980604534557402 7 0.63880670867184197 7 0.67469353488106998 7 0.70666552597802601 7 0.73129729106955099 7 0.75102879689399205 7 0.76986187455783395 7 0.795489602605709 7 0.83484838012461104 7 0.88061571790158299 7 0.92048473951999299 7 0.95636710916293499 7 0.98206683298474395 7 1 9 +6 1 0 0 +7 1 0 8 226 33 -105 -0.0099999999999997903 -10.0000021671207 1 -105 -0.14737888229492699 -10.000108053406599 1 -104.995686225234 -0.282454608776886 -10.0027537129241 0.99999999999997102 -104.987311425329 -0.41275563312865399 -10.007787104802199 1.0000000000000999 -104.975538175548 -0.53699710265937495 -10.014811707258801 0.99999999999984901 -104.961078280908 -0.65474216804953 -10.0234009836031 1.0000000000001099 -104.94451108931 -0.766182315877034 -10.033207855634201 0.99999999999996403 -104.926214556497 -0.87202357071040704 -10.0440047174926 1 -104.877981959237 -1.1176564499186801 -10.072376631674199 1 -104.846753022958 -1.2511600045751501 -10.0907117800565 0.99999999999995703 -104.812214793987 -1.3812184461305199 -10.1106592482503 1.0000000000001099 -104.776116089279 -1.5008896161426999 -10.131484852011701 0.99999999999987499 -104.737556315555 -1.6183526296566799 -10.1533822276708 1.00000000000006 -104.69759667889799 -1.72903635225536 -10.175915233774599 0.99999999999999001 -104.656009670458 -1.83592892100645 -10.199101283544399 1 -104.563908206937 -2.0561970404837902 -10.249908424107799 1 -104.513005095099 -2.1683491392106098 -10.277666206203801 1.00000000000001 -104.46045081836 -2.2759417760992302 -10.3059781996766 0.99999999999999001 -104.40637807282801 -2.3794325076104199 -10.3347415064217 1 -104.350886482965 -2.47918992008649 -10.3638735486286 1.00000000000001 -104.29404715195901 -2.5755298186379099 -10.3933079231251 0.999999999999994 -104.23590231151699 -2.66872490186626 -10.4229930434933 1 -104.107270587889 -2.8641492177933698 -10.487695243069799 1 -104.036235473725 -2.9654621650847899 -10.5227983704275 1.00000000000001 -103.96428424539501 -3.0621442128628802 -10.5579572804254 0.99999999999996303 -103.888625826527 -3.1583778604157802 -10.593678149772501 1.0000000000000699 -103.812452431045 -3.2496574723596199 -10.6292518263496 0.99999999999993705 -103.73334980285701 -3.3396398288786302 -10.6651153829644 1.00000000000002 -103.652370141021 -3.4267724132971198 -10.700991757120301 1 -103.48797620003 -3.5943320513961798 -10.7718814808859 1 -103.404722443433 -3.6748109512969198 -10.8068840241472 1.00000000000002 -103.31922795854101 -3.7532044178500499 -10.841874454870601 0.99999999999996902 -103.231374675384 -3.8295957689576001 -10.8768141069443 0.999999999999998 -103.14101992193299 -3.9040481075164002 -10.911662327182199 1.00000000000003 -103.047990551787 -3.9766078644099898 -10.946375800774099 0.99999999999998301 -102.952070488714 -4.0473060665214202 -10.980907518427101 1 -102.760270013263 -4.1805698179532396 -11.047290526875701 1 -102.664749647721 -4.2433808856878903 -11.0791665681271 0.99999999999997102 -102.566570173824 -4.3044050792215502 -11.110775735881999 1.00000000000006 -102.46418763889299 -4.3643069330105302 -11.142129951509 0.99999999999994904 -102.35952977925599 -4.4218392039804097 -11.173056834195499 1.00000000000001 -102.249914573322 -4.4782246024768302 -11.2035917349475 1 -102.135756525273 -4.53279159090199 -11.2335929096892 1 -101.915204128426 -4.6299726944675301 -11.287682298028599 1 -101.810527790723 -4.6730597151734896 -11.311930916848899 0.99999999999994704 -101.70153030064699 -4.7147349469268596 -11.3356322780895 1.0000000000001901 -101.587616874766 -4.7548823652195704 -11.358693145573101 0.99999999999971501 -101.468128983691 -4.7933194144083 -11.3809801394614 1.00000000000022 -101.342222147949 -4.8297666431967796 -11.402298943732999 0.99999999999992795 -101.20887800830501 -4.86385441861374 -11.422396255484999 1 -100.95991628404801 -4.9181996438280704 -11.454653960895699 1 -100.84919891617 -4.9395924994350597 -11.467427986725101 1.0000000000000899 -100.732463479801 -4.9591830998784197 -11.479188371540999 0.99999999999970901 -100.60853300076499 -4.9766245188465801 -11.489711632557499 1.0000000000004099 -100.47683636310001 -4.9912606080547901 -11.4985844528798 0.99999999999971201 -100.337505353529 -5.0022236929642503 -11.505253565576901 1.0000000000000899 -100.191564073059 -5.0085801110263901 -11.509128397866601 1 -99.890069535015101 -5.0110867944524902 -11.5106734703577 1 -99.742457840971298 -5.0070690080594904 -11.5082415205014 1.00000000000004 -99.6014710362833 -4.9982098138455804 -11.502852794758001 0.99999999999983802 -99.4689288793858 -4.9855413303693101 -11.4951766095281 1.00000000000026 -99.343654609649107 -4.9698944309876998 -11.485719228340299 0.99999999999978195 -99.226244904662195 -4.9520079550909903 -11.4749619194421 1.0000000000000799 -99.114790159634396 -4.9322291554419904 -11.463119475513 1 -98.862843393904299 -4.8812135631846303 -11.4327379865281 1 -98.727541038088702 -4.8487220931053896 -11.413503796073799 1.0000000000001199 -98.599934411203193 -4.8137479407929398 -11.3929493765292 0.99999999999960998 -98.478964189081296 -4.7766949038067299 -11.371349051534301 1.00000000000056 -98.363747417624595 -4.7378700861126299 -11.3489139878437 0.99999999999959299 -98.253599300064295 -4.6974744021341301 -11.3257885639409 1.0000000000001299 -98.147898897746799 -4.6556382458589498 -11.302074344242 1 -97.926489821196697 -4.5616412238471602 -11.2493493109707 1 -97.812344640668499 -4.5089801374061604 -11.2201690879598 1.00000000000004 -97.703366438250299 -4.4548613047947603 -11.190466851165301 0.999999999999866 -97.597720331140394 -4.3987124972368798 -11.1602404723499 1.0000000000001901 -97.496727948027598 -4.3414477799772104 -11.1297021487705 0.999999999999865 -97.399275963853995 -4.2829559828225996 -11.0988856630534 1.00000000000004 -97.3039578337454 -4.2223408071515696 -11.067707534641899 1 -97.081358576513097 -4.0727633505966301 -10.9921959460768 1 -96.956444209192796 -3.9820755732416599 -10.9476151612149 1.00000000000001 -96.836000327987193 -3.8879886635263898 -10.902656190589701 0.99999999999999001 -96.719657801275204 -3.7904367039069098 -10.857423830391401 0.999999999999999 -96.607153984731298 -3.6893251994581502 -10.812016425202501 1.00000000000001 -96.498295356263696 -3.58452726922323 -10.7665290413787 0.999999999999995 -96.392946310136594 -3.4758717334023901 -10.72105553467 1 -96.199661247479796 -3.2620733504625901 -10.6350382209157 1 -96.111027820680306 -3.1577046096145902 -10.5944683966841 1.00000000000003 -96.025260583079501 -3.0500904892534999 -10.554108366795999 0.99999999999993305 -95.941888511584295 -2.9386166402931799 -10.5139266526574 1.0000000000000699 -95.861246469434505 -2.8230167053063302 -10.474095459490099 0.99999999999996403 -95.783972462775395 -2.70460227436272 -10.4348607818504 1.00000000000001 -95.708653257439707 -2.5803130892645898 -10.395981328353299 1 -95.578007443843106 -2.3466843307026899 -10.327218800538599 1 -95.521694920983094 -2.2393738409360702 -10.2971141304897 1.00000000000006 -95.467038289656699 -2.1279595124297401 -10.2674670176183 0.99999999999982503 -95.414090020706297 -2.0119015994952298 -10.238354994746199 1.00000000000024 -95.362959097725806 -1.89058945064513 -10.209887390037901 0.99999999999982703 -95.313829763709293 -1.7632335072610501 -10.182219048365999 1.00000000000005 -95.266956592110603 -1.62886277718015 -10.155549381647599 1 -95.190738909579593 -1.3821444094228901 -10.1117988667575 1 -95.160166106215101 -1.27385622036103 -10.094144108129001 0.99999999999998501 -95.131617787877104 -1.16316927953078 -10.0774359598551 1.00000000000006 -95.103544464725402 -1.0392813330849799 -10.0612422427429 0.99999999999990397 -95.0795944354266 -0.91910472436035895 -10.0468755530182 1.0000000000000799 -95.056613432869199 -0.78351425428635302 -10.033448808736299 0.99999999999997002 -95.037367322821197 -0.63970758461183597 -10.0221202652491 1 -95.0111883757789 -0.365194564925167 -10.0067035224605 1 -95.002147473027307 -0.23570953967348801 -10.0013690924531 1.0000000000000999 -94.996770410020304 -0.100113459458923 -9.9981730144810808 0.99999999999969302 -94.995849138817903 0.037914883296553098 -9.9975690974785394 1.0000000000004201 -94.999516289359804 0.174909014114285 -9.9996222747323102 0.99999999999971101 -95.007304457224905 0.30778138324785698 -10.004057908515099 1.0000000000000899 -95.018348233579303 0.43388206721902001 -10.010373610615501 1 -95.046381463610302 0.68216603195726899 -10.026430553245801 1 -95.064329384063498 0.80557127869237799 -10.0367228145401 1.0000000000000799 -95.084646492730201 0.92180519677449901 -10.048387568076301 0.99999999999978095 -95.107135187727096 1.03240921679512 -10.0612495924257 1.00000000000027 -95.130496275195199 1.1349644592015899 -10.074732452321401 0.99999999999983702 -95.155787451912701 1.23520358157501 -10.0891688709396 1.00000000000004 -95.182006424157507 1.33017430612304 -10.1041382273021 1 -95.247251563660697 1.5484889597022999 -10.1412296425002 1 -95.287141255012102 1.66798916236763 -10.163799207067401 1.00000000000002 -95.328706742964897 1.7814834967145099 -10.1871765659504 0.99999999999992095 -95.371744223686406 1.88977769283257 -10.211210282518699 1.0000000000001199 -95.416109124108999 1.99352685213865 -10.235783662997999 0.99999999999989997 -95.461712882873897 2.0932558094649401 -10.2608125017967 1.00000000000004 -95.508509823334606 2.1894252261736802 -10.286236457813301 1 -95.612877896923095 2.3917245061840302 -10.342307126707601 1 -95.670833038745599 2.4965539979114899 -10.373066005383899 1.00000000000006 -95.730639793688098 2.5978918970635299 -10.404268929036199 0.99999999999978095 -95.791003718135002 2.6946486459590302 -10.4356200887825 1.00000000000033 -95.855070805743694 2.79103773341309 -10.467635437665299 0.99999999999975697 -95.917914979945394 2.8810241820387299 -10.4993675126283 1.0000000000000799 -95.984561310439901 2.9713997507968499 -10.531700363526401 1 -96.126881259516594 3.1543898855155099 -10.5992016410673 1 -96.203130841364001 3.2470632042629801 -10.634446069112601 0.99999999999997802 -96.281916304517097 3.3376446815226801 -10.669910100295199 1.00000000000003 -96.363235207417205 3.4261270532756498 -10.7055285576605 1 -96.447096138920401 3.5124989761688798 -10.741239187242099 0.99999999999996503 -96.533520319381296 3.5967453049869702 -10.776981860964799 1.00000000000002 -96.622544685856994 3.6788468103191398 -10.812697590031901 1 -96.798591565032297 3.8323314562558899 -10.881112798930999 1 -96.885198667732993 3.9040402548850901 -10.9138224214375 1.00000000000001 -96.974096012460905 3.9738898965787501 -10.9464110793527 0.99999999999998102 -97.065337733250601 4.0418537006677102 -10.9788304911715 1 -97.158989028586305 4.1078960129135096 -11.0110286419873 1.00000000000002 -97.255128862870606 4.1719731587886999 -11.0429491115066 0.99999999999998801 -97.353858249611903 4.2340342784431 -11.0745301642418 1 -97.545714349137697 4.3474659195725103 -11.133475700347899 1 -97.638254754700895 4.3992525365944699 -11.1609149150521 0.999999999999996 -97.733100175885696 4.4493616093737902 -11.187992728332899 1.00000000000001 -97.829955924182102 4.4975617078784103 -11.214592158147701 0.99999999999997802 -97.930184724765695 4.5444143467577103 -11.2407846937238 1.00000000000002 -98.033419649544896 4.5894810857124897 -11.266416805416499 0.999999999999995 -98.140723656254494 4.6329960917154303 -11.2914544850096 1 -98.339236206484102 4.7070291369156196 -11.334500400617401 1 -98.4284294429944 4.7382190699955 -11.3527894253622 0.99999999999992895 -98.520882564466305 4.7683726114838603 -11.370594963081301 1.00000000000022 -98.617103063453598 4.7974348509046099 -11.387850565191499 0.99999999999970002 -98.717671094736303 4.82530570768869 -11.404462354205601 1.0000000000002101 -98.823305486478304 4.8518196245881002 -11.420297715751 0.99999999999993805 -98.934893086539105 4.87673790926259 -11.435181306837601 1 -99.149023123621205 4.9180062606023096 -11.4597910125221 1 -99.248425862973605 4.9349739260057097 -11.4698940034976 0.99999999999992295 -99.353280949795106 4.9505000363981102 -11.4791101546846 1.00000000000024 -99.464566192786904 4.9642909838249798 -11.4872559041863 0.99999999999968003 -99.582908873021495 4.9758396623512997 -11.494027330983799 1.00000000000022 -99.708515922603198 4.9844679603392601 -11.499030805094799 0.99999999999993705 -99.8409840522297 4.9893695802473301 -11.5018374050631 1 -100.110260634901 4.9905135327680501 -11.502491206132399 1 -100.217044285391 4.98724926458 -11.500578946974001 0.99999999999992595 -100.371155629987 4.9809334371240501 -11.496598289049301 1.00000000000024 -100.451304646848 4.9707743991685396 -11.490598073336599 0.99999999999967104 -100.588080361031 4.9589538957794996 -11.4833308885534 1.00000000000023 -100.68189635400999 4.9447343063819398 -11.4748201420747 0.99999999999992994 -100.783990046566 4.9291265910958701 -11.4654498099877 1 -101.01182456192601 4.88836806020187 -11.441122200972099 1 -101.135223074832 4.8621598912871002 -11.4255611959269 1.0000000000001099 -101.25205537594999 4.8337872367382504 -11.4088209154339 0.99999999999964595 -101.363168531962 4.8036002201633297 -11.3911349492453 1.0000000000004901 -101.469263899653 4.7718653064835896 -11.3726824694975 0.99999999999966405 -101.570915119703 4.7387652475328403 -11.3535897976484 1.0000000000000999 -101.668641999588 4.704423022666 -11.333946497373701 1 -101.907715720282 4.6143445286153497 -11.2828759080693 1 -102.044194895429 4.5570619122803899 -11.250823454665101 0.99999999999996603 -102.173395554178 4.4976532150358297 -11.2179424699642 1.0000000000001099 -102.297597894554 4.4355792012103104 -11.1843273603101 0.99999999999983902 -102.415178981834 4.3722441770406997 -11.150260952809001 1.0000000000001199 -102.528917784906 4.3066173880499798 -11.1157117157739 0.99999999999996403 -102.63857011979201 4.2390043539014899 -11.080797572430299 1 -102.867891387356 4.0884089131558401 -11.0045929243781 1 -102.986223852416 4.0047506211082498 -10.963214308953701 0.999999999999995 -103.100182482029 3.9183913674998001 -10.921528530997101 1.00000000000001 -103.210176554253 3.8292865569257901 -10.879621491462499 0.999999999999998 -103.31651943157 3.7373593816125901 -10.8375704864805 0.99999999999998801 -103.41946164428001 3.6424986194771898 -10.795446908235499 1.00000000000001 -103.51920210417001 3.54454924319902 -10.753317717102499 1 -103.700142670359 3.3550885093507099 -10.6745999076152 1 -103.782013401811 3.26446732245754 -10.638011476369 1.00000000000003 -103.862022210231 3.1706703324444199 -10.601442966099301 0.99999999999992495 -103.93888088169901 3.0756142576929899 -10.5652310035791 1.0000000000000999 -104.01535290088199 2.9749890035585702 -10.5288561243604 0.99999999999993405 -104.08794369143401 2.8738269304348498 -10.493115155749001 1.00000000000002 -104.15949214288401 2.7677093463566802 -10.457482292319799 1 -104.29181696635 2.55790051219001 -10.390447638044501 1 -104.352998148278 2.4549785914075999 -10.3589786644492 0.99999999999983702 -104.41265975349999 2.3481647489378799 -10.327843639011 1.00000000000053 -104.470734079129 2.2370650638131 -10.297114007480999 0.99999999999926203 -104.527109151909 2.1212353461036599 -10.266884706426101 1.00000000000052 -104.581621531774 2.00013030002718 -10.2372810609198 0.99999999999983702 -104.63405561127 1.8730815367321401 -10.2084616866881 1 -104.719944935217 1.64306354340644 -10.1607255555574 1 -104.75451874172199 1.543590044563 -10.141344202245 0.99999999999991995 -104.78776022094399 1.4403223988376499 -10.1225551153219 1.00000000000028 -104.819525517746 1.33211494007793 -10.1044682690904 0.99999999999959099 -104.84948988169199 1.2203929014574499 -10.0872471016645 1.00000000000031 -104.877707017718 1.10103296615837 -10.0709859638518 0.99999999999989897 -104.90322407255501 0.97810530532210505 -10.056113546473 1 -104.94217889672299 0.75394505437051296 -10.0334385020131 1 -104.956816574458 0.65804079153930894 -10.024913437594501 0.99999999999987199 -104.969949725566 0.55759942910276805 -10.017265967539499 1.0000000000004099 -104.98127645503899 0.45221717556748398 -10.0106781830616 0.99999999999943601 -104.990372850222 0.34190836176316802 -10.0054037854397 1.0000000000003999 -104.996751077103 0.227189691426463 -10.0017335209654 0.99999999999987699 -105 0.109223156164319 -9.9999102745605803 1 -105 -0.0099999999999997903 -10.0000021671207 1 + 0 9 0.020451729175787799 7 0.049551654993566598 7 0.082736039907863101 7 0.12136931361011299 7 0.15899622479377501 7 0.194196793783219 7 0.223874120262156 7 0.246027867209892 7 0.268403962672838 7 0.29867604159600197 7 0.33423817758737101 7 0.384122190106365 7 0.42882802026695599 7 0.46449856729266198 7 0.49034851210107999 7 0.51026955206567604 7 0.53258899886508504 7 0.56349573686483001 7 0.59980604534557402 7 0.63880670867184197 7 0.67469353488106998 7 0.70666552597802601 7 0.73129729106955099 7 0.75102879689399205 7 0.76986187455783395 7 0.795489602605709 7 0.83484838012461104 7 0.88061571790158299 7 0.92048473951999299 7 0.95636710916293499 7 0.98206683298474395 7 1 9 +6 -1 0 0 +7 1 0 8 226 33 -105 -0.0099999999999997903 -10.0000021671207 1 -105 -0.14737888229492699 -10.000108053406599 1 -104.995686225234 -0.282454608776886 -10.0027537129241 0.99999999999997102 -104.987311425329 -0.41275563312865399 -10.007787104802199 1.0000000000000999 -104.975538175548 -0.53699710265937495 -10.014811707258801 0.99999999999984901 -104.961078280908 -0.65474216804953 -10.0234009836031 1.0000000000001099 -104.94451108931 -0.766182315877034 -10.033207855634201 0.99999999999996403 -104.926214556497 -0.87202357071040704 -10.0440047174926 1 -104.877981959237 -1.1176564499186801 -10.072376631674199 1 -104.846753022958 -1.2511600045751501 -10.0907117800565 0.99999999999995703 -104.812214793987 -1.3812184461305199 -10.1106592482503 1.0000000000001099 -104.776116089279 -1.5008896161426999 -10.131484852011701 0.99999999999987499 -104.737556315555 -1.6183526296566799 -10.1533822276708 1.00000000000006 -104.69759667889799 -1.72903635225536 -10.175915233774599 0.99999999999999001 -104.656009670458 -1.83592892100645 -10.199101283544399 1 -104.563908206937 -2.0561970404837902 -10.249908424107799 1 -104.513005095099 -2.1683491392106098 -10.277666206203801 1.00000000000001 -104.46045081836 -2.2759417760992302 -10.3059781996766 0.99999999999999001 -104.40637807282801 -2.3794325076104199 -10.3347415064217 1 -104.350886482965 -2.47918992008649 -10.3638735486286 1.00000000000001 -104.29404715195901 -2.5755298186379099 -10.3933079231251 0.999999999999994 -104.23590231151699 -2.66872490186626 -10.4229930434933 1 -104.107270587889 -2.8641492177933698 -10.487695243069799 1 -104.036235473725 -2.9654621650847899 -10.5227983704275 1.00000000000001 -103.96428424539501 -3.0621442128628802 -10.5579572804254 0.99999999999996303 -103.888625826527 -3.1583778604157802 -10.593678149772501 1.0000000000000699 -103.812452431045 -3.2496574723596199 -10.6292518263496 0.99999999999993705 -103.73334980285701 -3.3396398288786302 -10.6651153829644 1.00000000000002 -103.652370141021 -3.4267724132971198 -10.700991757120301 1 -103.48797620003 -3.5943320513961798 -10.7718814808859 1 -103.404722443433 -3.6748109512969198 -10.8068840241472 1.00000000000002 -103.31922795854101 -3.7532044178500499 -10.841874454870601 0.99999999999996902 -103.231374675384 -3.8295957689576001 -10.8768141069443 0.999999999999998 -103.14101992193299 -3.9040481075164002 -10.911662327182199 1.00000000000003 -103.047990551787 -3.9766078644099898 -10.946375800774099 0.99999999999998301 -102.952070488714 -4.0473060665214202 -10.980907518427101 1 -102.760270013263 -4.1805698179532396 -11.047290526875701 1 -102.664749647721 -4.2433808856878903 -11.0791665681271 0.99999999999997102 -102.566570173824 -4.3044050792215502 -11.110775735881999 1.00000000000006 -102.46418763889299 -4.3643069330105302 -11.142129951509 0.99999999999994904 -102.35952977925599 -4.4218392039804097 -11.173056834195499 1.00000000000001 -102.249914573322 -4.4782246024768302 -11.2035917349475 1 -102.135756525273 -4.53279159090199 -11.2335929096892 1 -101.915204128426 -4.6299726944675301 -11.287682298028599 1 -101.810527790723 -4.6730597151734896 -11.311930916848899 0.99999999999994704 -101.70153030064699 -4.7147349469268596 -11.3356322780895 1.0000000000001901 -101.587616874766 -4.7548823652195704 -11.358693145573101 0.99999999999971501 -101.468128983691 -4.7933194144083 -11.3809801394614 1.00000000000022 -101.342222147949 -4.8297666431967796 -11.402298943732999 0.99999999999992795 -101.20887800830501 -4.86385441861374 -11.422396255484999 1 -100.95991628404801 -4.9181996438280704 -11.454653960895699 1 -100.84919891617 -4.9395924994350597 -11.467427986725101 1.0000000000000899 -100.732463479801 -4.9591830998784197 -11.479188371540999 0.99999999999970901 -100.60853300076499 -4.9766245188465801 -11.489711632557499 1.0000000000004099 -100.47683636310001 -4.9912606080547901 -11.4985844528798 0.99999999999971201 -100.337505353529 -5.0022236929642503 -11.505253565576901 1.0000000000000899 -100.191564073059 -5.0085801110263901 -11.509128397866601 1 -99.890069535015101 -5.0110867944524902 -11.5106734703577 1 -99.742457840971298 -5.0070690080594904 -11.5082415205014 1.00000000000004 -99.6014710362833 -4.9982098138455804 -11.502852794758001 0.99999999999983802 -99.4689288793858 -4.9855413303693101 -11.4951766095281 1.00000000000026 -99.343654609649107 -4.9698944309876998 -11.485719228340299 0.99999999999978195 -99.226244904662195 -4.9520079550909903 -11.4749619194421 1.0000000000000799 -99.114790159634396 -4.9322291554419904 -11.463119475513 1 -98.862843393904299 -4.8812135631846303 -11.4327379865281 1 -98.727541038088702 -4.8487220931053896 -11.413503796073799 1.0000000000001199 -98.599934411203193 -4.8137479407929398 -11.3929493765292 0.99999999999960998 -98.478964189081296 -4.7766949038067299 -11.371349051534301 1.00000000000056 -98.363747417624595 -4.7378700861126299 -11.3489139878437 0.99999999999959299 -98.253599300064295 -4.6974744021341301 -11.3257885639409 1.0000000000001299 -98.147898897746799 -4.6556382458589498 -11.302074344242 1 -97.926489821196697 -4.5616412238471602 -11.2493493109707 1 -97.812344640668499 -4.5089801374061604 -11.2201690879598 1.00000000000004 -97.703366438250299 -4.4548613047947603 -11.190466851165301 0.999999999999866 -97.597720331140394 -4.3987124972368798 -11.1602404723499 1.0000000000001901 -97.496727948027598 -4.3414477799772104 -11.1297021487705 0.999999999999865 -97.399275963853995 -4.2829559828225996 -11.0988856630534 1.00000000000004 -97.3039578337454 -4.2223408071515696 -11.067707534641899 1 -97.081358576513097 -4.0727633505966301 -10.9921959460768 1 -96.956444209192796 -3.9820755732416599 -10.9476151612149 1.00000000000001 -96.836000327987193 -3.8879886635263898 -10.902656190589701 0.99999999999999001 -96.719657801275204 -3.7904367039069098 -10.857423830391401 0.999999999999999 -96.607153984731298 -3.6893251994581502 -10.812016425202501 1.00000000000001 -96.498295356263696 -3.58452726922323 -10.7665290413787 0.999999999999995 -96.392946310136594 -3.4758717334023901 -10.72105553467 1 -96.199661247479796 -3.2620733504625901 -10.6350382209157 1 -96.111027820680306 -3.1577046096145902 -10.5944683966841 1.00000000000003 -96.025260583079501 -3.0500904892534999 -10.554108366795999 0.99999999999993305 -95.941888511584295 -2.9386166402931799 -10.5139266526574 1.0000000000000699 -95.861246469434505 -2.8230167053063302 -10.474095459490099 0.99999999999996403 -95.783972462775395 -2.70460227436272 -10.4348607818504 1.00000000000001 -95.708653257439707 -2.5803130892645898 -10.395981328353299 1 -95.578007443843106 -2.3466843307026899 -10.327218800538599 1 -95.521694920983094 -2.2393738409360702 -10.2971141304897 1.00000000000006 -95.467038289656699 -2.1279595124297401 -10.2674670176183 0.99999999999982503 -95.414090020706297 -2.0119015994952298 -10.238354994746199 1.00000000000024 -95.362959097725806 -1.89058945064513 -10.209887390037901 0.99999999999982703 -95.313829763709293 -1.7632335072610501 -10.182219048365999 1.00000000000005 -95.266956592110603 -1.62886277718015 -10.155549381647599 1 -95.190738909579593 -1.3821444094228901 -10.1117988667575 1 -95.160166106215101 -1.27385622036103 -10.094144108129001 0.99999999999998501 -95.131617787877104 -1.16316927953078 -10.0774359598551 1.00000000000006 -95.103544464725402 -1.0392813330849799 -10.0612422427429 0.99999999999990397 -95.0795944354266 -0.91910472436035895 -10.0468755530182 1.0000000000000799 -95.056613432869199 -0.78351425428635302 -10.033448808736299 0.99999999999997002 -95.037367322821197 -0.63970758461183597 -10.0221202652491 1 -95.0111883757789 -0.365194564925167 -10.0067035224605 1 -95.002147473027307 -0.23570953967348801 -10.0013690924531 1.0000000000000999 -94.996770410020304 -0.100113459458923 -9.9981730144810808 0.99999999999969302 -94.995849138817903 0.037914883296553098 -9.9975690974785394 1.0000000000004201 -94.999516289359804 0.174909014114285 -9.9996222747323102 0.99999999999971101 -95.007304457224905 0.30778138324785698 -10.004057908515099 1.0000000000000899 -95.018348233579303 0.43388206721902001 -10.010373610615501 1 -95.046381463610302 0.68216603195726899 -10.026430553245801 1 -95.064329384063498 0.80557127869237799 -10.0367228145401 1.0000000000000799 -95.084646492730201 0.92180519677449901 -10.048387568076301 0.99999999999978095 -95.107135187727096 1.03240921679512 -10.0612495924257 1.00000000000027 -95.130496275195199 1.1349644592015899 -10.074732452321401 0.99999999999983702 -95.155787451912701 1.23520358157501 -10.0891688709396 1.00000000000004 -95.182006424157507 1.33017430612304 -10.1041382273021 1 -95.247251563660697 1.5484889597022999 -10.1412296425002 1 -95.287141255012102 1.66798916236763 -10.163799207067401 1.00000000000002 -95.328706742964897 1.7814834967145099 -10.1871765659504 0.99999999999992095 -95.371744223686406 1.88977769283257 -10.211210282518699 1.0000000000001199 -95.416109124108999 1.99352685213865 -10.235783662997999 0.99999999999989997 -95.461712882873897 2.0932558094649401 -10.2608125017967 1.00000000000004 -95.508509823334606 2.1894252261736802 -10.286236457813301 1 -95.612877896923095 2.3917245061840302 -10.342307126707601 1 -95.670833038745599 2.4965539979114899 -10.373066005383899 1.00000000000006 -95.730639793688098 2.5978918970635299 -10.404268929036199 0.99999999999978095 -95.791003718135002 2.6946486459590302 -10.4356200887825 1.00000000000033 -95.855070805743694 2.79103773341309 -10.467635437665299 0.99999999999975697 -95.917914979945394 2.8810241820387299 -10.4993675126283 1.0000000000000799 -95.984561310439901 2.9713997507968499 -10.531700363526401 1 -96.126881259516594 3.1543898855155099 -10.5992016410673 1 -96.203130841364001 3.2470632042629801 -10.634446069112601 0.99999999999997802 -96.281916304517097 3.3376446815226801 -10.669910100295199 1.00000000000003 -96.363235207417205 3.4261270532756498 -10.7055285576605 1 -96.447096138920401 3.5124989761688798 -10.741239187242099 0.99999999999996503 -96.533520319381296 3.5967453049869702 -10.776981860964799 1.00000000000002 -96.622544685856994 3.6788468103191398 -10.812697590031901 1 -96.798591565032297 3.8323314562558899 -10.881112798930999 1 -96.885198667732993 3.9040402548850901 -10.9138224214375 1.00000000000001 -96.974096012460905 3.9738898965787501 -10.9464110793527 0.99999999999998102 -97.065337733250601 4.0418537006677102 -10.9788304911715 1 -97.158989028586305 4.1078960129135096 -11.0110286419873 1.00000000000002 -97.255128862870606 4.1719731587886999 -11.0429491115066 0.99999999999998801 -97.353858249611903 4.2340342784431 -11.0745301642418 1 -97.545714349137697 4.3474659195725103 -11.133475700347899 1 -97.638254754700895 4.3992525365944699 -11.1609149150521 0.999999999999996 -97.733100175885696 4.4493616093737902 -11.187992728332899 1.00000000000001 -97.829955924182102 4.4975617078784103 -11.214592158147701 0.99999999999997802 -97.930184724765695 4.5444143467577103 -11.2407846937238 1.00000000000002 -98.033419649544896 4.5894810857124897 -11.266416805416499 0.999999999999995 -98.140723656254494 4.6329960917154303 -11.2914544850096 1 -98.339236206484102 4.7070291369156196 -11.334500400617401 1 -98.4284294429944 4.7382190699955 -11.3527894253622 0.99999999999992895 -98.520882564466305 4.7683726114838603 -11.370594963081301 1.00000000000022 -98.617103063453598 4.7974348509046099 -11.387850565191499 0.99999999999970002 -98.717671094736303 4.82530570768869 -11.404462354205601 1.0000000000002101 -98.823305486478304 4.8518196245881002 -11.420297715751 0.99999999999993805 -98.934893086539105 4.87673790926259 -11.435181306837601 1 -99.149023123621205 4.9180062606023096 -11.4597910125221 1 -99.248425862973605 4.9349739260057097 -11.4698940034976 0.99999999999992295 -99.353280949795106 4.9505000363981102 -11.4791101546846 1.00000000000024 -99.464566192786904 4.9642909838249798 -11.4872559041863 0.99999999999968003 -99.582908873021495 4.9758396623512997 -11.494027330983799 1.00000000000022 -99.708515922603198 4.9844679603392601 -11.499030805094799 0.99999999999993705 -99.8409840522297 4.9893695802473301 -11.5018374050631 1 -100.110260634901 4.9905135327680501 -11.502491206132399 1 -100.217044285391 4.98724926458 -11.500578946974001 0.99999999999992595 -100.371155629987 4.9809334371240501 -11.496598289049301 1.00000000000024 -100.451304646848 4.9707743991685396 -11.490598073336599 0.99999999999967104 -100.588080361031 4.9589538957794996 -11.4833308885534 1.00000000000023 -100.68189635400999 4.9447343063819398 -11.4748201420747 0.99999999999992994 -100.783990046566 4.9291265910958701 -11.4654498099877 1 -101.01182456192601 4.88836806020187 -11.441122200972099 1 -101.135223074832 4.8621598912871002 -11.4255611959269 1.0000000000001099 -101.25205537594999 4.8337872367382504 -11.4088209154339 0.99999999999964595 -101.363168531962 4.8036002201633297 -11.3911349492453 1.0000000000004901 -101.469263899653 4.7718653064835896 -11.3726824694975 0.99999999999966405 -101.570915119703 4.7387652475328403 -11.3535897976484 1.0000000000000999 -101.668641999588 4.704423022666 -11.333946497373701 1 -101.907715720282 4.6143445286153497 -11.2828759080693 1 -102.044194895429 4.5570619122803899 -11.250823454665101 0.99999999999996603 -102.173395554178 4.4976532150358297 -11.2179424699642 1.0000000000001099 -102.297597894554 4.4355792012103104 -11.1843273603101 0.99999999999983902 -102.415178981834 4.3722441770406997 -11.150260952809001 1.0000000000001199 -102.528917784906 4.3066173880499798 -11.1157117157739 0.99999999999996403 -102.63857011979201 4.2390043539014899 -11.080797572430299 1 -102.867891387356 4.0884089131558401 -11.0045929243781 1 -102.986223852416 4.0047506211082498 -10.963214308953701 0.999999999999995 -103.100182482029 3.9183913674998001 -10.921528530997101 1.00000000000001 -103.210176554253 3.8292865569257901 -10.879621491462499 0.999999999999998 -103.31651943157 3.7373593816125901 -10.8375704864805 0.99999999999998801 -103.41946164428001 3.6424986194771898 -10.795446908235499 1.00000000000001 -103.51920210417001 3.54454924319902 -10.753317717102499 1 -103.700142670359 3.3550885093507099 -10.6745999076152 1 -103.782013401811 3.26446732245754 -10.638011476369 1.00000000000003 -103.862022210231 3.1706703324444199 -10.601442966099301 0.99999999999992495 -103.93888088169901 3.0756142576929899 -10.5652310035791 1.0000000000000999 -104.01535290088199 2.9749890035585702 -10.5288561243604 0.99999999999993405 -104.08794369143401 2.8738269304348498 -10.493115155749001 1.00000000000002 -104.15949214288401 2.7677093463566802 -10.457482292319799 1 -104.29181696635 2.55790051219001 -10.390447638044501 1 -104.352998148278 2.4549785914075999 -10.3589786644492 0.99999999999983702 -104.41265975349999 2.3481647489378799 -10.327843639011 1.00000000000053 -104.470734079129 2.2370650638131 -10.297114007480999 0.99999999999926203 -104.527109151909 2.1212353461036599 -10.266884706426101 1.00000000000052 -104.581621531774 2.00013030002718 -10.2372810609198 0.99999999999983702 -104.63405561127 1.8730815367321401 -10.2084616866881 1 -104.719944935217 1.64306354340644 -10.1607255555574 1 -104.75451874172199 1.543590044563 -10.141344202245 0.99999999999991995 -104.78776022094399 1.4403223988376499 -10.1225551153219 1.00000000000028 -104.819525517746 1.33211494007793 -10.1044682690904 0.99999999999959099 -104.84948988169199 1.2203929014574499 -10.0872471016645 1.00000000000031 -104.877707017718 1.10103296615837 -10.0709859638518 0.99999999999989897 -104.90322407255501 0.97810530532210505 -10.056113546473 1 -104.94217889672299 0.75394505437051296 -10.0334385020131 1 -104.956816574458 0.65804079153930894 -10.024913437594501 0.99999999999987199 -104.969949725566 0.55759942910276805 -10.017265967539499 1.0000000000004099 -104.98127645503899 0.45221717556748398 -10.0106781830616 0.99999999999943601 -104.990372850222 0.34190836176316802 -10.0054037854397 1.0000000000003999 -104.996751077103 0.227189691426463 -10.0017335209654 0.99999999999987699 -105 0.109223156164319 -9.9999102745605803 1 -105 -0.0099999999999997903 -10.0000021671207 1 + 0 9 0.020451729175787799 7 0.049551654993566598 7 0.082736039907863101 7 0.12136931361011299 7 0.15899622479377501 7 0.194196793783219 7 0.223874120262156 7 0.246027867209892 7 0.268403962672838 7 0.29867604159600197 7 0.33423817758737101 7 0.384122190106365 7 0.42882802026695599 7 0.46449856729266198 7 0.49034851210107999 7 0.51026955206567604 7 0.53258899886508504 7 0.56349573686483001 7 0.59980604534557402 7 0.63880670867184197 7 0.67469353488106998 7 0.70666552597802601 7 0.73129729106955099 7 0.75102879689399205 7 0.76986187455783395 7 0.795489602605709 7 0.83484838012461104 7 0.88061571790158299 7 0.92048473951999299 7 0.95636710916293499 7 0.98206683298474395 7 1 9 +6 -1 0 0 +7 1 0 8 226 33 -105 -0.0099999999999997903 -10.0000021671207 1 -105 -0.14737888229492699 -10.000108053406599 1 -104.995686225234 -0.282454608776886 -10.0027537129241 0.99999999999997102 -104.987311425329 -0.41275563312865399 -10.007787104802199 1.0000000000000999 -104.975538175548 -0.53699710265937495 -10.014811707258801 0.99999999999984901 -104.961078280908 -0.65474216804953 -10.0234009836031 1.0000000000001099 -104.94451108931 -0.766182315877034 -10.033207855634201 0.99999999999996403 -104.926214556497 -0.87202357071040704 -10.0440047174926 1 -104.877981959237 -1.1176564499186801 -10.072376631674199 1 -104.846753022958 -1.2511600045751501 -10.0907117800565 0.99999999999995703 -104.812214793987 -1.3812184461305199 -10.1106592482503 1.0000000000001099 -104.776116089279 -1.5008896161426999 -10.131484852011701 0.99999999999987499 -104.737556315555 -1.6183526296566799 -10.1533822276708 1.00000000000006 -104.69759667889799 -1.72903635225536 -10.175915233774599 0.99999999999999001 -104.656009670458 -1.83592892100645 -10.199101283544399 1 -104.563908206937 -2.0561970404837902 -10.249908424107799 1 -104.513005095099 -2.1683491392106098 -10.277666206203801 1.00000000000001 -104.46045081836 -2.2759417760992302 -10.3059781996766 0.99999999999999001 -104.40637807282801 -2.3794325076104199 -10.3347415064217 1 -104.350886482965 -2.47918992008649 -10.3638735486286 1.00000000000001 -104.29404715195901 -2.5755298186379099 -10.3933079231251 0.999999999999994 -104.23590231151699 -2.66872490186626 -10.4229930434933 1 -104.107270587889 -2.8641492177933698 -10.487695243069799 1 -104.036235473725 -2.9654621650847899 -10.5227983704275 1.00000000000001 -103.96428424539501 -3.0621442128628802 -10.5579572804254 0.99999999999996303 -103.888625826527 -3.1583778604157802 -10.593678149772501 1.0000000000000699 -103.812452431045 -3.2496574723596199 -10.6292518263496 0.99999999999993705 -103.73334980285701 -3.3396398288786302 -10.6651153829644 1.00000000000002 -103.652370141021 -3.4267724132971198 -10.700991757120301 1 -103.48797620003 -3.5943320513961798 -10.7718814808859 1 -103.404722443433 -3.6748109512969198 -10.8068840241472 1.00000000000002 -103.31922795854101 -3.7532044178500499 -10.841874454870601 0.99999999999996902 -103.231374675384 -3.8295957689576001 -10.8768141069443 0.999999999999998 -103.14101992193299 -3.9040481075164002 -10.911662327182199 1.00000000000003 -103.047990551787 -3.9766078644099898 -10.946375800774099 0.99999999999998301 -102.952070488714 -4.0473060665214202 -10.980907518427101 1 -102.760270013263 -4.1805698179532396 -11.047290526875701 1 -102.664749647721 -4.2433808856878903 -11.0791665681271 0.99999999999997102 -102.566570173824 -4.3044050792215502 -11.110775735881999 1.00000000000006 -102.46418763889299 -4.3643069330105302 -11.142129951509 0.99999999999994904 -102.35952977925599 -4.4218392039804097 -11.173056834195499 1.00000000000001 -102.249914573322 -4.4782246024768302 -11.2035917349475 1 -102.135756525273 -4.53279159090199 -11.2335929096892 1 -101.915204128426 -4.6299726944675301 -11.287682298028599 1 -101.810527790723 -4.6730597151734896 -11.311930916848899 0.99999999999994704 -101.70153030064699 -4.7147349469268596 -11.3356322780895 1.0000000000001901 -101.587616874766 -4.7548823652195704 -11.358693145573101 0.99999999999971501 -101.468128983691 -4.7933194144083 -11.3809801394614 1.00000000000022 -101.342222147949 -4.8297666431967796 -11.402298943732999 0.99999999999992795 -101.20887800830501 -4.86385441861374 -11.422396255484999 1 -100.95991628404801 -4.9181996438280704 -11.454653960895699 1 -100.84919891617 -4.9395924994350597 -11.467427986725101 1.0000000000000899 -100.732463479801 -4.9591830998784197 -11.479188371540999 0.99999999999970901 -100.60853300076499 -4.9766245188465801 -11.489711632557499 1.0000000000004099 -100.47683636310001 -4.9912606080547901 -11.4985844528798 0.99999999999971201 -100.337505353529 -5.0022236929642503 -11.505253565576901 1.0000000000000899 -100.191564073059 -5.0085801110263901 -11.509128397866601 1 -99.890069535015101 -5.0110867944524902 -11.5106734703577 1 -99.742457840971298 -5.0070690080594904 -11.5082415205014 1.00000000000004 -99.6014710362833 -4.9982098138455804 -11.502852794758001 0.99999999999983802 -99.4689288793858 -4.9855413303693101 -11.4951766095281 1.00000000000026 -99.343654609649107 -4.9698944309876998 -11.485719228340299 0.99999999999978195 -99.226244904662195 -4.9520079550909903 -11.4749619194421 1.0000000000000799 -99.114790159634396 -4.9322291554419904 -11.463119475513 1 -98.862843393904299 -4.8812135631846303 -11.4327379865281 1 -98.727541038088702 -4.8487220931053896 -11.413503796073799 1.0000000000001199 -98.599934411203193 -4.8137479407929398 -11.3929493765292 0.99999999999960998 -98.478964189081296 -4.7766949038067299 -11.371349051534301 1.00000000000056 -98.363747417624595 -4.7378700861126299 -11.3489139878437 0.99999999999959299 -98.253599300064295 -4.6974744021341301 -11.3257885639409 1.0000000000001299 -98.147898897746799 -4.6556382458589498 -11.302074344242 1 -97.926489821196697 -4.5616412238471602 -11.2493493109707 1 -97.812344640668499 -4.5089801374061604 -11.2201690879598 1.00000000000004 -97.703366438250299 -4.4548613047947603 -11.190466851165301 0.999999999999866 -97.597720331140394 -4.3987124972368798 -11.1602404723499 1.0000000000001901 -97.496727948027598 -4.3414477799772104 -11.1297021487705 0.999999999999865 -97.399275963853995 -4.2829559828225996 -11.0988856630534 1.00000000000004 -97.3039578337454 -4.2223408071515696 -11.067707534641899 1 -97.081358576513097 -4.0727633505966301 -10.9921959460768 1 -96.956444209192796 -3.9820755732416599 -10.9476151612149 1.00000000000001 -96.836000327987193 -3.8879886635263898 -10.902656190589701 0.99999999999999001 -96.719657801275204 -3.7904367039069098 -10.857423830391401 0.999999999999999 -96.607153984731298 -3.6893251994581502 -10.812016425202501 1.00000000000001 -96.498295356263696 -3.58452726922323 -10.7665290413787 0.999999999999995 -96.392946310136594 -3.4758717334023901 -10.72105553467 1 -96.199661247479796 -3.2620733504625901 -10.6350382209157 1 -96.111027820680306 -3.1577046096145902 -10.5944683966841 1.00000000000003 -96.025260583079501 -3.0500904892534999 -10.554108366795999 0.99999999999993305 -95.941888511584295 -2.9386166402931799 -10.5139266526574 1.0000000000000699 -95.861246469434505 -2.8230167053063302 -10.474095459490099 0.99999999999996403 -95.783972462775395 -2.70460227436272 -10.4348607818504 1.00000000000001 -95.708653257439707 -2.5803130892645898 -10.395981328353299 1 -95.578007443843106 -2.3466843307026899 -10.327218800538599 1 -95.521694920983094 -2.2393738409360702 -10.2971141304897 1.00000000000006 -95.467038289656699 -2.1279595124297401 -10.2674670176183 0.99999999999982503 -95.414090020706297 -2.0119015994952298 -10.238354994746199 1.00000000000024 -95.362959097725806 -1.89058945064513 -10.209887390037901 0.99999999999982703 -95.313829763709293 -1.7632335072610501 -10.182219048365999 1.00000000000005 -95.266956592110603 -1.62886277718015 -10.155549381647599 1 -95.190738909579593 -1.3821444094228901 -10.1117988667575 1 -95.160166106215101 -1.27385622036103 -10.094144108129001 0.99999999999998501 -95.131617787877104 -1.16316927953078 -10.0774359598551 1.00000000000006 -95.103544464725402 -1.0392813330849799 -10.0612422427429 0.99999999999990397 -95.0795944354266 -0.91910472436035895 -10.0468755530182 1.0000000000000799 -95.056613432869199 -0.78351425428635302 -10.033448808736299 0.99999999999997002 -95.037367322821197 -0.63970758461183597 -10.0221202652491 1 -95.0111883757789 -0.365194564925167 -10.0067035224605 1 -95.002147473027307 -0.23570953967348801 -10.0013690924531 1.0000000000000999 -94.996770410020304 -0.100113459458923 -9.9981730144810808 0.99999999999969302 -94.995849138817903 0.037914883296553098 -9.9975690974785394 1.0000000000004201 -94.999516289359804 0.174909014114285 -9.9996222747323102 0.99999999999971101 -95.007304457224905 0.30778138324785698 -10.004057908515099 1.0000000000000899 -95.018348233579303 0.43388206721902001 -10.010373610615501 1 -95.046381463610302 0.68216603195726899 -10.026430553245801 1 -95.064329384063498 0.80557127869237799 -10.0367228145401 1.0000000000000799 -95.084646492730201 0.92180519677449901 -10.048387568076301 0.99999999999978095 -95.107135187727096 1.03240921679512 -10.0612495924257 1.00000000000027 -95.130496275195199 1.1349644592015899 -10.074732452321401 0.99999999999983702 -95.155787451912701 1.23520358157501 -10.0891688709396 1.00000000000004 -95.182006424157507 1.33017430612304 -10.1041382273021 1 -95.247251563660697 1.5484889597022999 -10.1412296425002 1 -95.287141255012102 1.66798916236763 -10.163799207067401 1.00000000000002 -95.328706742964897 1.7814834967145099 -10.1871765659504 0.99999999999992095 -95.371744223686406 1.88977769283257 -10.211210282518699 1.0000000000001199 -95.416109124108999 1.99352685213865 -10.235783662997999 0.99999999999989997 -95.461712882873897 2.0932558094649401 -10.2608125017967 1.00000000000004 -95.508509823334606 2.1894252261736802 -10.286236457813301 1 -95.612877896923095 2.3917245061840302 -10.342307126707601 1 -95.670833038745599 2.4965539979114899 -10.373066005383899 1.00000000000006 -95.730639793688098 2.5978918970635299 -10.404268929036199 0.99999999999978095 -95.791003718135002 2.6946486459590302 -10.4356200887825 1.00000000000033 -95.855070805743694 2.79103773341309 -10.467635437665299 0.99999999999975697 -95.917914979945394 2.8810241820387299 -10.4993675126283 1.0000000000000799 -95.984561310439901 2.9713997507968499 -10.531700363526401 1 -96.126881259516594 3.1543898855155099 -10.5992016410673 1 -96.203130841364001 3.2470632042629801 -10.634446069112601 0.99999999999997802 -96.281916304517097 3.3376446815226801 -10.669910100295199 1.00000000000003 -96.363235207417205 3.4261270532756498 -10.7055285576605 1 -96.447096138920401 3.5124989761688798 -10.741239187242099 0.99999999999996503 -96.533520319381296 3.5967453049869702 -10.776981860964799 1.00000000000002 -96.622544685856994 3.6788468103191398 -10.812697590031901 1 -96.798591565032297 3.8323314562558899 -10.881112798930999 1 -96.885198667732993 3.9040402548850901 -10.9138224214375 1.00000000000001 -96.974096012460905 3.9738898965787501 -10.9464110793527 0.99999999999998102 -97.065337733250601 4.0418537006677102 -10.9788304911715 1 -97.158989028586305 4.1078960129135096 -11.0110286419873 1.00000000000002 -97.255128862870606 4.1719731587886999 -11.0429491115066 0.99999999999998801 -97.353858249611903 4.2340342784431 -11.0745301642418 1 -97.545714349137697 4.3474659195725103 -11.133475700347899 1 -97.638254754700895 4.3992525365944699 -11.1609149150521 0.999999999999996 -97.733100175885696 4.4493616093737902 -11.187992728332899 1.00000000000001 -97.829955924182102 4.4975617078784103 -11.214592158147701 0.99999999999997802 -97.930184724765695 4.5444143467577103 -11.2407846937238 1.00000000000002 -98.033419649544896 4.5894810857124897 -11.266416805416499 0.999999999999995 -98.140723656254494 4.6329960917154303 -11.2914544850096 1 -98.339236206484102 4.7070291369156196 -11.334500400617401 1 -98.4284294429944 4.7382190699955 -11.3527894253622 0.99999999999992895 -98.520882564466305 4.7683726114838603 -11.370594963081301 1.00000000000022 -98.617103063453598 4.7974348509046099 -11.387850565191499 0.99999999999970002 -98.717671094736303 4.82530570768869 -11.404462354205601 1.0000000000002101 -98.823305486478304 4.8518196245881002 -11.420297715751 0.99999999999993805 -98.934893086539105 4.87673790926259 -11.435181306837601 1 -99.149023123621205 4.9180062606023096 -11.4597910125221 1 -99.248425862973605 4.9349739260057097 -11.4698940034976 0.99999999999992295 -99.353280949795106 4.9505000363981102 -11.4791101546846 1.00000000000024 -99.464566192786904 4.9642909838249798 -11.4872559041863 0.99999999999968003 -99.582908873021495 4.9758396623512997 -11.494027330983799 1.00000000000022 -99.708515922603198 4.9844679603392601 -11.499030805094799 0.99999999999993705 -99.8409840522297 4.9893695802473301 -11.5018374050631 1 -100.110260634901 4.9905135327680501 -11.502491206132399 1 -100.217044285391 4.98724926458 -11.500578946974001 0.99999999999992595 -100.371155629987 4.9809334371240501 -11.496598289049301 1.00000000000024 -100.451304646848 4.9707743991685396 -11.490598073336599 0.99999999999967104 -100.588080361031 4.9589538957794996 -11.4833308885534 1.00000000000023 -100.68189635400999 4.9447343063819398 -11.4748201420747 0.99999999999992994 -100.783990046566 4.9291265910958701 -11.4654498099877 1 -101.01182456192601 4.88836806020187 -11.441122200972099 1 -101.135223074832 4.8621598912871002 -11.4255611959269 1.0000000000001099 -101.25205537594999 4.8337872367382504 -11.4088209154339 0.99999999999964595 -101.363168531962 4.8036002201633297 -11.3911349492453 1.0000000000004901 -101.469263899653 4.7718653064835896 -11.3726824694975 0.99999999999966405 -101.570915119703 4.7387652475328403 -11.3535897976484 1.0000000000000999 -101.668641999588 4.704423022666 -11.333946497373701 1 -101.907715720282 4.6143445286153497 -11.2828759080693 1 -102.044194895429 4.5570619122803899 -11.250823454665101 0.99999999999996603 -102.173395554178 4.4976532150358297 -11.2179424699642 1.0000000000001099 -102.297597894554 4.4355792012103104 -11.1843273603101 0.99999999999983902 -102.415178981834 4.3722441770406997 -11.150260952809001 1.0000000000001199 -102.528917784906 4.3066173880499798 -11.1157117157739 0.99999999999996403 -102.63857011979201 4.2390043539014899 -11.080797572430299 1 -102.867891387356 4.0884089131558401 -11.0045929243781 1 -102.986223852416 4.0047506211082498 -10.963214308953701 0.999999999999995 -103.100182482029 3.9183913674998001 -10.921528530997101 1.00000000000001 -103.210176554253 3.8292865569257901 -10.879621491462499 0.999999999999998 -103.31651943157 3.7373593816125901 -10.8375704864805 0.99999999999998801 -103.41946164428001 3.6424986194771898 -10.795446908235499 1.00000000000001 -103.51920210417001 3.54454924319902 -10.753317717102499 1 -103.700142670359 3.3550885093507099 -10.6745999076152 1 -103.782013401811 3.26446732245754 -10.638011476369 1.00000000000003 -103.862022210231 3.1706703324444199 -10.601442966099301 0.99999999999992495 -103.93888088169901 3.0756142576929899 -10.5652310035791 1.0000000000000999 -104.01535290088199 2.9749890035585702 -10.5288561243604 0.99999999999993405 -104.08794369143401 2.8738269304348498 -10.493115155749001 1.00000000000002 -104.15949214288401 2.7677093463566802 -10.457482292319799 1 -104.29181696635 2.55790051219001 -10.390447638044501 1 -104.352998148278 2.4549785914075999 -10.3589786644492 0.99999999999983702 -104.41265975349999 2.3481647489378799 -10.327843639011 1.00000000000053 -104.470734079129 2.2370650638131 -10.297114007480999 0.99999999999926203 -104.527109151909 2.1212353461036599 -10.266884706426101 1.00000000000052 -104.581621531774 2.00013030002718 -10.2372810609198 0.99999999999983702 -104.63405561127 1.8730815367321401 -10.2084616866881 1 -104.719944935217 1.64306354340644 -10.1607255555574 1 -104.75451874172199 1.543590044563 -10.141344202245 0.99999999999991995 -104.78776022094399 1.4403223988376499 -10.1225551153219 1.00000000000028 -104.819525517746 1.33211494007793 -10.1044682690904 0.99999999999959099 -104.84948988169199 1.2203929014574499 -10.0872471016645 1.00000000000031 -104.877707017718 1.10103296615837 -10.0709859638518 0.99999999999989897 -104.90322407255501 0.97810530532210505 -10.056113546473 1 -104.94217889672299 0.75394505437051296 -10.0334385020131 1 -104.956816574458 0.65804079153930894 -10.024913437594501 0.99999999999987199 -104.969949725566 0.55759942910276805 -10.017265967539499 1.0000000000004099 -104.98127645503899 0.45221717556748398 -10.0106781830616 0.99999999999943601 -104.990372850222 0.34190836176316802 -10.0054037854397 1.0000000000003999 -104.996751077103 0.227189691426463 -10.0017335209654 0.99999999999987699 -105 0.109223156164319 -9.9999102745605803 1 -105 -0.0099999999999997903 -10.0000021671207 1 + 0 9 0.020451729175787799 7 0.049551654993566598 7 0.082736039907863101 7 0.12136931361011299 7 0.15899622479377501 7 0.194196793783219 7 0.223874120262156 7 0.246027867209892 7 0.268403962672838 7 0.29867604159600197 7 0.33423817758737101 7 0.384122190106365 7 0.42882802026695599 7 0.46449856729266198 7 0.49034851210107999 7 0.51026955206567604 7 0.53258899886508504 7 0.56349573686483001 7 0.59980604534557402 7 0.63880670867184197 7 0.67469353488106998 7 0.70666552597802601 7 0.73129729106955099 7 0.75102879689399205 7 0.76986187455783395 7 0.795489602605709 7 0.83484838012461104 7 0.88061571790158299 7 0.92048473951999299 7 0.95636710916293499 7 0.98206683298474395 7 1 9 +6 0 0 1 +7 1 0 8 226 33 -95 0.0099999999999997903 -10.0000021671207 1 -95 0.14737888229492699 -10.000108053406599 1 -95.004313774765606 0.282454608776886 -10.0027537129241 0.99999999999997102 -95.012688574670904 0.41275563312865399 -10.007787104802199 1.0000000000000999 -95.024461824451606 0.53699710265937495 -10.014811707258801 0.99999999999984901 -95.0389217190924 0.65474216804953 -10.0234009836031 1.0000000000001099 -95.055488910689604 0.766182315877034 -10.033207855634201 0.99999999999996403 -95.073785443503297 0.87202357071040704 -10.0440047174926 1 -95.122018040763393 1.1176564499186801 -10.072376631674199 1 -95.1532469770424 1.2511600045751501 -10.0907117800565 0.99999999999995703 -95.187785206013004 1.3812184461305199 -10.1106592482503 1.0000000000001099 -95.223883910720701 1.5008896161426999 -10.131484852011701 0.99999999999987499 -95.262443684445003 1.6183526296566799 -10.1533822276708 1.00000000000006 -95.302403321102403 1.72903635225536 -10.175915233774599 0.99999999999999001 -95.343990329541796 1.83592892100645 -10.199101283544399 1 -95.436091793062701 2.0561970404837902 -10.249908424107799 1 -95.486994904901394 2.1683491392106098 -10.277666206203801 1.00000000000001 -95.539549181640396 2.2759417760992302 -10.3059781996766 0.99999999999999001 -95.593621927171895 2.3794325076104199 -10.3347415064217 1 -95.649113517034905 2.47918992008649 -10.3638735486286 1.00000000000001 -95.705952848040994 2.5755298186379099 -10.3933079231251 0.999999999999994 -95.764097688483304 2.66872490186626 -10.4229930434933 1 -95.892729412110995 2.8641492177933698 -10.487695243069799 1 -95.963764526275298 2.9654621650847899 -10.5227983704275 1.00000000000001 -96.035715754605306 3.0621442128628802 -10.5579572804254 0.99999999999996303 -96.111374173473294 3.1583778604157802 -10.593678149772501 1.0000000000000699 -96.187547568955296 3.2496574723596199 -10.6292518263496 0.99999999999993705 -96.266650197142994 3.3396398288786302 -10.6651153829644 1.00000000000002 -96.347629858978905 3.4267724132971198 -10.700991757120301 1 -96.512023799969498 3.5943320513961798 -10.7718814808859 1 -96.595277556567495 3.6748109512969198 -10.8068840241472 1.00000000000002 -96.680772041458795 3.7532044178500499 -10.841874454870601 0.99999999999996902 -96.768625324616394 3.8295957689576001 -10.8768141069443 0.999999999999998 -96.858980078067205 3.9040481075164002 -10.911662327182199 1.00000000000003 -96.952009448212607 3.9766078644099898 -10.946375800774099 0.99999999999998301 -97.047929511286398 4.0473060665214202 -10.980907518427101 1 -97.239729986736904 4.1805698179532396 -11.047290526875701 1 -97.335250352279104 4.2433808856878903 -11.0791665681271 0.99999999999997102 -97.433429826175598 4.3044050792215502 -11.110775735881999 1.00000000000006 -97.535812361107503 4.3643069330105302 -11.142129951509 0.99999999999994904 -97.640470220744007 4.4218392039804097 -11.173056834195499 1.00000000000001 -97.7500854266776 4.4782246024768302 -11.2035917349475 1 -97.864243474727402 4.53279159090199 -11.2335929096892 1 -98.084795871573903 4.6299726944675301 -11.287682298028599 1 -98.189472209277099 4.6730597151734896 -11.311930916848899 0.99999999999994704 -98.298469699352694 4.7147349469268596 -11.3356322780895 1.0000000000001901 -98.412383125234001 4.7548823652195704 -11.358693145573101 0.99999999999971501 -98.531871016309296 4.7933194144083 -11.3809801394614 1.00000000000022 -98.657777852050899 4.8297666431967796 -11.402298943732999 0.99999999999992795 -98.791121991695206 4.86385441861374 -11.422396255484999 1 -99.040083715952406 4.9181996438280704 -11.454653960895699 1 -99.150801083830203 4.9395924994350597 -11.467427986725101 1.0000000000000899 -99.2675365201994 4.9591830998784197 -11.479188371540999 0.99999999999970901 -99.391466999235107 4.9766245188465801 -11.489711632557499 1.0000000000004099 -99.523163636899994 4.9912606080547901 -11.4985844528798 0.99999999999971201 -99.662494646471103 5.0022236929642503 -11.505253565576901 1.0000000000000899 -99.808435926941499 5.0085801110263901 -11.509128397866601 1 -100.109930464985 5.0110867944524902 -11.5106734703577 1 -100.257542159029 5.0070690080594904 -11.5082415205014 1.00000000000004 -100.398528963717 4.9982098138455804 -11.502852794758001 0.99999999999983802 -100.531071120614 4.9855413303693101 -11.4951766095281 1.00000000000026 -100.65634539035101 4.9698944309876998 -11.485719228340299 0.99999999999978195 -100.773755095338 4.9520079550909903 -11.4749619194421 1.0000000000000799 -100.885209840366 4.9322291554419904 -11.463119475513 1 -101.137156606096 4.8812135631846303 -11.4327379865281 1 -101.272458961911 4.8487220931053896 -11.413503796073799 1.0000000000001199 -101.40006558879701 4.8137479407929398 -11.3929493765292 0.99999999999960998 -101.521035810919 4.7766949038067299 -11.371349051534301 1.00000000000056 -101.63625258237499 4.7378700861126299 -11.3489139878437 0.99999999999959299 -101.746400699936 4.6974744021341301 -11.3257885639409 1.0000000000001299 -101.852101102253 4.6556382458589498 -11.302074344242 1 -102.07351017880301 4.5616412238471602 -11.2493493109707 1 -102.187655359332 4.5089801374061604 -11.2201690879598 1.00000000000004 -102.29663356175 4.4548613047947603 -11.190466851165301 0.999999999999866 -102.40227966886 4.3987124972368798 -11.1602404723499 1.0000000000001901 -102.503272051972 4.3414477799772104 -11.1297021487705 0.999999999999865 -102.600724036146 4.2829559828225996 -11.0988856630534 1.00000000000004 -102.696042166255 4.2223408071515696 -11.067707534641899 1 -102.918641423487 4.0727633505966301 -10.9921959460768 1 -103.04355579080701 3.9820755732416599 -10.9476151612149 1.00000000000001 -103.16399967201301 3.8879886635263898 -10.902656190589701 0.99999999999999001 -103.28034219872499 3.7904367039069098 -10.857423830391401 0.999999999999999 -103.392846015269 3.6893251994581502 -10.812016425202501 1.00000000000001 -103.50170464373601 3.58452726922323 -10.7665290413787 0.999999999999995 -103.60705368986299 3.4758717334023901 -10.72105553467 1 -103.80033875252001 3.2620733504625901 -10.6350382209157 1 -103.88897217932001 3.1577046096145902 -10.5944683966841 1.00000000000003 -103.97473941692 3.0500904892534999 -10.554108366795999 0.99999999999993305 -104.058111488416 2.9386166402931799 -10.5139266526574 1.0000000000000699 -104.138753530565 2.8230167053063302 -10.474095459490099 0.99999999999996403 -104.216027537225 2.70460227436272 -10.4348607818504 1.00000000000001 -104.29134674255999 2.5803130892645898 -10.395981328353299 1 -104.42199255615699 2.3466843307026899 -10.327218800538599 1 -104.47830507901701 2.2393738409360702 -10.2971141304897 1.00000000000006 -104.532961710343 2.1279595124297401 -10.2674670176183 0.99999999999982503 -104.585909979294 2.0119015994952298 -10.238354994746199 1.00000000000024 -104.63704090227399 1.89058945064513 -10.209887390037901 0.99999999999982703 -104.68617023629101 1.7632335072610501 -10.182219048365999 1.00000000000005 -104.733043407889 1.62886277718015 -10.155549381647599 1 -104.80926109041999 1.3821444094228901 -10.1117988667575 1 -104.839833893785 1.27385622036103 -10.094144108129001 0.99999999999998501 -104.868382212123 1.16316927953078 -10.0774359598551 1.00000000000006 -104.896455535275 1.0392813330849799 -10.0612422427429 0.99999999999990397 -104.920405564573 0.91910472436035895 -10.0468755530182 1.0000000000000799 -104.943386567131 0.78351425428635302 -10.033448808736299 0.99999999999997002 -104.962632677179 0.63970758461183597 -10.0221202652491 1 -104.988811624221 0.365194564925167 -10.0067035224605 1 -104.99785252697301 0.23570953967348801 -10.0013690924531 1.0000000000000999 -105.00322958997999 0.100113459458923 -9.9981730144811003 0.99999999999969302 -105.004150861182 -0.037914883296553098 -9.9975690974785003 1.0000000000004201 -105.00048371064 -0.174909014114285 -9.9996222747322996 0.99999999999971101 -104.992695542775 -0.30778138324785698 -10.004057908515099 1.0000000000000899 -104.981651766421 -0.43388206721902001 -10.010373610615501 1 -104.95361853639 -0.68216603195726899 -10.026430553245801 1 -104.935670615937 -0.80557127869237799 -10.0367228145401 1.0000000000000799 -104.91535350727 -0.92180519677449901 -10.048387568076301 0.99999999999978095 -104.892864812273 -1.03240921679512 -10.0612495924257 1.00000000000027 -104.869503724805 -1.1349644592015899 -10.074732452321401 0.99999999999983702 -104.844212548087 -1.23520358157501 -10.0891688709396 1.00000000000004 -104.817993575843 -1.33017430612304 -10.1041382273021 1 -104.752748436339 -1.5484889597022999 -10.1412296425002 1 -104.712858744988 -1.66798916236763 -10.163799207067401 1.00000000000002 -104.671293257035 -1.7814834967145099 -10.1871765659504 0.99999999999992095 -104.62825577631401 -1.88977769283257 -10.211210282518699 1.0000000000001199 -104.583890875891 -1.99352685213865 -10.235783662997999 0.99999999999989997 -104.538287117126 -2.0932558094649401 -10.2608125017967 1.00000000000004 -104.491490176665 -2.1894252261736802 -10.286236457813301 1 -104.387122103077 -2.3917245061840302 -10.342307126707601 1 -104.329166961254 -2.4965539979114899 -10.373066005383899 1.00000000000006 -104.269360206312 -2.5978918970635299 -10.404268929036199 0.99999999999978095 -104.208996281865 -2.6946486459590302 -10.4356200887825 1.00000000000033 -104.14492919425599 -2.79103773341309 -10.467635437665299 0.99999999999975697 -104.082085020055 -2.8810241820387299 -10.4993675126283 1.0000000000000799 -104.01543868956 -2.9713997507968499 -10.531700363526401 1 -103.87311874048299 -3.1543898855155099 -10.5992016410673 1 -103.796869158636 -3.2470632042629801 -10.634446069112601 0.99999999999997802 -103.718083695483 -3.3376446815226801 -10.669910100295199 1.00000000000003 -103.63676479258299 -3.4261270532756498 -10.7055285576605 1 -103.55290386108 -3.5124989761688798 -10.741239187242099 0.99999999999996503 -103.466479680619 -3.5967453049869702 -10.776981860964799 1.00000000000002 -103.37745531414301 -3.6788468103191398 -10.812697590031901 1 -103.201408434968 -3.8323314562558899 -10.881112798930999 1 -103.11480133226701 -3.9040402548850901 -10.9138224214375 1.00000000000001 -103.025903987539 -3.9738898965787501 -10.9464110793527 0.99999999999998102 -102.934662266749 -4.0418537006677102 -10.9788304911715 1 -102.84101097141399 -4.1078960129135096 -11.0110286419873 1.00000000000002 -102.744871137129 -4.1719731587886999 -11.0429491115066 0.99999999999998801 -102.646141750388 -4.2340342784431 -11.0745301642418 1 -102.454285650862 -4.3474659195725103 -11.133475700347899 1 -102.36174524529901 -4.3992525365944699 -11.1609149150521 0.999999999999996 -102.26689982411401 -4.4493616093737902 -11.187992728332899 1.00000000000001 -102.170044075818 -4.4975617078784103 -11.214592158147701 0.99999999999997802 -102.06981527523401 -4.5444143467577103 -11.2407846937238 1.00000000000002 -101.966580350455 -4.5894810857124897 -11.266416805416499 0.999999999999995 -101.859276343746 -4.6329960917154303 -11.2914544850096 1 -101.660763793516 -4.7070291369156196 -11.334500400617401 1 -101.571570557006 -4.7382190699955 -11.3527894253622 0.99999999999992895 -101.47911743553399 -4.7683726114838603 -11.370594963081301 1.00000000000022 -101.382896936546 -4.7974348509046099 -11.387850565191499 0.99999999999970002 -101.282328905264 -4.82530570768869 -11.404462354205601 1.0000000000002101 -101.17669451352199 -4.8518196245881002 -11.420297715751 0.99999999999993805 -101.06510691346099 -4.87673790926259 -11.435181306837601 1 -100.85097687637899 -4.9180062606023096 -11.4597910125221 1 -100.751574137026 -4.9349739260057097 -11.4698940034976 0.99999999999992295 -100.64671905020499 -4.9505000363981102 -11.4791101546846 1.00000000000024 -100.535433807213 -4.9642909838249798 -11.4872559041863 0.99999999999968003 -100.417091126979 -4.9758396623512997 -11.494027330983799 1.00000000000022 -100.291484077397 -4.9844679603392601 -11.499030805094799 0.99999999999993705 -100.15901594777 -4.9893695802473301 -11.5018374050631 1 -99.889739365099004 -4.9905135327680501 -11.502491206132399 1 -99.782955714608903 -4.98724926458 -11.500578946974001 0.99999999999992595 -99.6288443700127 -4.9809334371240501 -11.496598289049301 1.00000000000024 -99.548695353151899 -4.9707743991685396 -11.490598073336599 0.99999999999967104 -99.411919638968897 -4.9589538957794996 -11.4833308885534 1.00000000000023 -99.318103645989694 -4.9447343063819398 -11.4748201420747 0.99999999999992994 -99.216009953433797 -4.9291265910958701 -11.4654498099877 1 -98.988175438074194 -4.88836806020187 -11.441122200972099 1 -98.864776925168101 -4.8621598912871002 -11.4255611959269 1.0000000000001099 -98.747944624049794 -4.8337872367382504 -11.4088209154339 0.99999999999964595 -98.636831468037897 -4.8036002201633297 -11.3911349492453 1.0000000000004901 -98.530736100346999 -4.7718653064835896 -11.3726824694975 0.99999999999966405 -98.4290848802966 -4.7387652475328403 -11.3535897976484 1.0000000000000999 -98.331358000411598 -4.704423022666 -11.333946497373701 1 -98.092284279717603 -4.6143445286153497 -11.2828759080693 1 -97.9558051045707 -4.5570619122803899 -11.250823454665101 0.99999999999996603 -97.826604445822397 -4.4976532150358297 -11.2179424699642 1.0000000000001099 -97.702402105445699 -4.4355792012103104 -11.1843273603101 0.99999999999983902 -97.584821018166195 -4.3722441770406997 -11.150260952809001 1.0000000000001199 -97.471082215094199 -4.3066173880499798 -11.1157117157739 0.99999999999996403 -97.361429880207893 -4.2390043539014899 -11.080797572430299 1 -97.132108612644103 -4.0884089131558401 -11.0045929243781 1 -97.013776147584196 -4.0047506211082498 -10.963214308953701 0.999999999999995 -96.899817517970703 -3.9183913674998001 -10.921528530997101 1.00000000000001 -96.789823445747203 -3.8292865569257901 -10.879621491462499 0.999999999999998 -96.6834805684298 -3.7373593816125901 -10.8375704864805 0.99999999999998801 -96.580538355720293 -3.6424986194771898 -10.795446908235499 1.00000000000001 -96.480797895829895 -3.54454924319902 -10.753317717102499 1 -96.299857329640801 -3.3550885093507099 -10.6745999076152 1 -96.217986598188503 -3.26446732245754 -10.638011476369 1.00000000000003 -96.137977789769295 -3.1706703324444199 -10.601442966099301 0.99999999999992495 -96.061119118300795 -3.0756142576929899 -10.5652310035791 1.0000000000000999 -95.984647099118007 -2.9749890035585702 -10.5288561243604 0.99999999999993405 -95.912056308565994 -2.8738269304348498 -10.493115155749001 1.00000000000002 -95.840507857116293 -2.7677093463566802 -10.457482292319799 1 -95.708183033650101 -2.55790051219001 -10.390447638044501 1 -95.647001851721598 -2.4549785914075999 -10.3589786644492 0.99999999999983702 -95.587340246499707 -2.3481647489378799 -10.327843639011 1.00000000000053 -95.529265920871197 -2.2370650638131 -10.297114007480999 0.99999999999926203 -95.472890848091097 -2.1212353461036599 -10.266884706426101 1.00000000000052 -95.418378468225896 -2.00013030002718 -10.2372810609198 0.99999999999983702 -95.365944388730298 -1.8730815367321401 -10.2084616866881 1 -95.280055064783198 -1.64306354340644 -10.1607255555574 1 -95.245481258277493 -1.543590044563 -10.141344202245 0.99999999999991995 -95.212239779055494 -1.4403223988376499 -10.1225551153219 1.00000000000028 -95.1804744822538 -1.33211494007793 -10.1044682690904 0.99999999999959099 -95.150510118307693 -1.2203929014574499 -10.0872471016645 1.00000000000031 -95.122292982282204 -1.10103296615837 -10.0709859638518 0.99999999999989897 -95.096775927444895 -0.97810530532210505 -10.056113546473 1 -95.057821103277305 -0.75394505437051296 -10.0334385020131 1 -95.043183425541798 -0.65804079153930894 -10.024913437594501 0.99999999999987199 -95.030050274434103 -0.55759942910276805 -10.017265967539499 1.0000000000004099 -95.018723544961503 -0.45221717556748398 -10.0106781830616 0.99999999999943601 -95.009627149777799 -0.34190836176316802 -10.0054037854397 1.0000000000003999 -95.003248922897001 -0.227189691426463 -10.0017335209654 0.99999999999987699 -95 -0.109223156164319 -9.9999102745605999 1 -95 0.0099999999999997903 -10.0000021671207 1 + 0 9 0.020451729175787799 7 0.049551654993566598 7 0.082736039907863101 7 0.12136931361011299 7 0.15899622479377501 7 0.194196793783219 7 0.223874120262156 7 0.246027867209892 7 0.268403962672838 7 0.29867604159600197 7 0.33423817758737101 7 0.384122190106365 7 0.42882802026695599 7 0.46449856729266198 7 0.49034851210107999 7 0.51026955206567604 7 0.53258899886508504 7 0.56349573686483001 7 0.59980604534557402 7 0.63880670867184197 7 0.67469353488106998 7 0.70666552597802601 7 0.73129729106955099 7 0.75102879689399205 7 0.76986187455783395 7 0.795489602605709 7 0.83484838012461104 7 0.88061571790158299 7 0.92048473951999299 7 0.95636710916293499 7 0.98206683298474395 7 1 9 +6 0 0 1 +7 1 0 8 226 33 -95 0.0099999999999997903 -10.0000021671207 1 -95 0.14737888229492699 -10.000108053406599 1 -95.004313774765606 0.282454608776886 -10.0027537129241 0.99999999999997102 -95.012688574670904 0.41275563312865399 -10.007787104802199 1.0000000000000999 -95.024461824451606 0.53699710265937495 -10.014811707258801 0.99999999999984901 -95.0389217190924 0.65474216804953 -10.0234009836031 1.0000000000001099 -95.055488910689604 0.766182315877034 -10.033207855634201 0.99999999999996403 -95.073785443503297 0.87202357071040704 -10.0440047174926 1 -95.122018040763393 1.1176564499186801 -10.072376631674199 1 -95.1532469770424 1.2511600045751501 -10.0907117800565 0.99999999999995703 -95.187785206013004 1.3812184461305199 -10.1106592482503 1.0000000000001099 -95.223883910720701 1.5008896161426999 -10.131484852011701 0.99999999999987499 -95.262443684445003 1.6183526296566799 -10.1533822276708 1.00000000000006 -95.302403321102403 1.72903635225536 -10.175915233774599 0.99999999999999001 -95.343990329541796 1.83592892100645 -10.199101283544399 1 -95.436091793062701 2.0561970404837902 -10.249908424107799 1 -95.486994904901394 2.1683491392106098 -10.277666206203801 1.00000000000001 -95.539549181640396 2.2759417760992302 -10.3059781996766 0.99999999999999001 -95.593621927171895 2.3794325076104199 -10.3347415064217 1 -95.649113517034905 2.47918992008649 -10.3638735486286 1.00000000000001 -95.705952848040994 2.5755298186379099 -10.3933079231251 0.999999999999994 -95.764097688483304 2.66872490186626 -10.4229930434933 1 -95.892729412110995 2.8641492177933698 -10.487695243069799 1 -95.963764526275298 2.9654621650847899 -10.5227983704275 1.00000000000001 -96.035715754605306 3.0621442128628802 -10.5579572804254 0.99999999999996303 -96.111374173473294 3.1583778604157802 -10.593678149772501 1.0000000000000699 -96.187547568955296 3.2496574723596199 -10.6292518263496 0.99999999999993705 -96.266650197142994 3.3396398288786302 -10.6651153829644 1.00000000000002 -96.347629858978905 3.4267724132971198 -10.700991757120301 1 -96.512023799969498 3.5943320513961798 -10.7718814808859 1 -96.595277556567495 3.6748109512969198 -10.8068840241472 1.00000000000002 -96.680772041458795 3.7532044178500499 -10.841874454870601 0.99999999999996902 -96.768625324616394 3.8295957689576001 -10.8768141069443 0.999999999999998 -96.858980078067205 3.9040481075164002 -10.911662327182199 1.00000000000003 -96.952009448212607 3.9766078644099898 -10.946375800774099 0.99999999999998301 -97.047929511286398 4.0473060665214202 -10.980907518427101 1 -97.239729986736904 4.1805698179532396 -11.047290526875701 1 -97.335250352279104 4.2433808856878903 -11.0791665681271 0.99999999999997102 -97.433429826175598 4.3044050792215502 -11.110775735881999 1.00000000000006 -97.535812361107503 4.3643069330105302 -11.142129951509 0.99999999999994904 -97.640470220744007 4.4218392039804097 -11.173056834195499 1.00000000000001 -97.7500854266776 4.4782246024768302 -11.2035917349475 1 -97.864243474727402 4.53279159090199 -11.2335929096892 1 -98.084795871573903 4.6299726944675301 -11.287682298028599 1 -98.189472209277099 4.6730597151734896 -11.311930916848899 0.99999999999994704 -98.298469699352694 4.7147349469268596 -11.3356322780895 1.0000000000001901 -98.412383125234001 4.7548823652195704 -11.358693145573101 0.99999999999971501 -98.531871016309296 4.7933194144083 -11.3809801394614 1.00000000000022 -98.657777852050899 4.8297666431967796 -11.402298943732999 0.99999999999992795 -98.791121991695206 4.86385441861374 -11.422396255484999 1 -99.040083715952406 4.9181996438280704 -11.454653960895699 1 -99.150801083830203 4.9395924994350597 -11.467427986725101 1.0000000000000899 -99.2675365201994 4.9591830998784197 -11.479188371540999 0.99999999999970901 -99.391466999235107 4.9766245188465801 -11.489711632557499 1.0000000000004099 -99.523163636899994 4.9912606080547901 -11.4985844528798 0.99999999999971201 -99.662494646471103 5.0022236929642503 -11.505253565576901 1.0000000000000899 -99.808435926941499 5.0085801110263901 -11.509128397866601 1 -100.109930464985 5.0110867944524902 -11.5106734703577 1 -100.257542159029 5.0070690080594904 -11.5082415205014 1.00000000000004 -100.398528963717 4.9982098138455804 -11.502852794758001 0.99999999999983802 -100.531071120614 4.9855413303693101 -11.4951766095281 1.00000000000026 -100.65634539035101 4.9698944309876998 -11.485719228340299 0.99999999999978195 -100.773755095338 4.9520079550909903 -11.4749619194421 1.0000000000000799 -100.885209840366 4.9322291554419904 -11.463119475513 1 -101.137156606096 4.8812135631846303 -11.4327379865281 1 -101.272458961911 4.8487220931053896 -11.413503796073799 1.0000000000001199 -101.40006558879701 4.8137479407929398 -11.3929493765292 0.99999999999960998 -101.521035810919 4.7766949038067299 -11.371349051534301 1.00000000000056 -101.63625258237499 4.7378700861126299 -11.3489139878437 0.99999999999959299 -101.746400699936 4.6974744021341301 -11.3257885639409 1.0000000000001299 -101.852101102253 4.6556382458589498 -11.302074344242 1 -102.07351017880301 4.5616412238471602 -11.2493493109707 1 -102.187655359332 4.5089801374061604 -11.2201690879598 1.00000000000004 -102.29663356175 4.4548613047947603 -11.190466851165301 0.999999999999866 -102.40227966886 4.3987124972368798 -11.1602404723499 1.0000000000001901 -102.503272051972 4.3414477799772104 -11.1297021487705 0.999999999999865 -102.600724036146 4.2829559828225996 -11.0988856630534 1.00000000000004 -102.696042166255 4.2223408071515696 -11.067707534641899 1 -102.918641423487 4.0727633505966301 -10.9921959460768 1 -103.04355579080701 3.9820755732416599 -10.9476151612149 1.00000000000001 -103.16399967201301 3.8879886635263898 -10.902656190589701 0.99999999999999001 -103.28034219872499 3.7904367039069098 -10.857423830391401 0.999999999999999 -103.392846015269 3.6893251994581502 -10.812016425202501 1.00000000000001 -103.50170464373601 3.58452726922323 -10.7665290413787 0.999999999999995 -103.60705368986299 3.4758717334023901 -10.72105553467 1 -103.80033875252001 3.2620733504625901 -10.6350382209157 1 -103.88897217932001 3.1577046096145902 -10.5944683966841 1.00000000000003 -103.97473941692 3.0500904892534999 -10.554108366795999 0.99999999999993305 -104.058111488416 2.9386166402931799 -10.5139266526574 1.0000000000000699 -104.138753530565 2.8230167053063302 -10.474095459490099 0.99999999999996403 -104.216027537225 2.70460227436272 -10.4348607818504 1.00000000000001 -104.29134674255999 2.5803130892645898 -10.395981328353299 1 -104.42199255615699 2.3466843307026899 -10.327218800538599 1 -104.47830507901701 2.2393738409360702 -10.2971141304897 1.00000000000006 -104.532961710343 2.1279595124297401 -10.2674670176183 0.99999999999982503 -104.585909979294 2.0119015994952298 -10.238354994746199 1.00000000000024 -104.63704090227399 1.89058945064513 -10.209887390037901 0.99999999999982703 -104.68617023629101 1.7632335072610501 -10.182219048365999 1.00000000000005 -104.733043407889 1.62886277718015 -10.155549381647599 1 -104.80926109041999 1.3821444094228901 -10.1117988667575 1 -104.839833893785 1.27385622036103 -10.094144108129001 0.99999999999998501 -104.868382212123 1.16316927953078 -10.0774359598551 1.00000000000006 -104.896455535275 1.0392813330849799 -10.0612422427429 0.99999999999990397 -104.920405564573 0.91910472436035895 -10.0468755530182 1.0000000000000799 -104.943386567131 0.78351425428635302 -10.033448808736299 0.99999999999997002 -104.962632677179 0.63970758461183597 -10.0221202652491 1 -104.988811624221 0.365194564925167 -10.0067035224605 1 -104.99785252697301 0.23570953967348801 -10.0013690924531 1.0000000000000999 -105.00322958997999 0.100113459458923 -9.9981730144811003 0.99999999999969302 -105.004150861182 -0.037914883296553098 -9.9975690974785003 1.0000000000004201 -105.00048371064 -0.174909014114285 -9.9996222747322996 0.99999999999971101 -104.992695542775 -0.30778138324785698 -10.004057908515099 1.0000000000000899 -104.981651766421 -0.43388206721902001 -10.010373610615501 1 -104.95361853639 -0.68216603195726899 -10.026430553245801 1 -104.935670615937 -0.80557127869237799 -10.0367228145401 1.0000000000000799 -104.91535350727 -0.92180519677449901 -10.048387568076301 0.99999999999978095 -104.892864812273 -1.03240921679512 -10.0612495924257 1.00000000000027 -104.869503724805 -1.1349644592015899 -10.074732452321401 0.99999999999983702 -104.844212548087 -1.23520358157501 -10.0891688709396 1.00000000000004 -104.817993575843 -1.33017430612304 -10.1041382273021 1 -104.752748436339 -1.5484889597022999 -10.1412296425002 1 -104.712858744988 -1.66798916236763 -10.163799207067401 1.00000000000002 -104.671293257035 -1.7814834967145099 -10.1871765659504 0.99999999999992095 -104.62825577631401 -1.88977769283257 -10.211210282518699 1.0000000000001199 -104.583890875891 -1.99352685213865 -10.235783662997999 0.99999999999989997 -104.538287117126 -2.0932558094649401 -10.2608125017967 1.00000000000004 -104.491490176665 -2.1894252261736802 -10.286236457813301 1 -104.387122103077 -2.3917245061840302 -10.342307126707601 1 -104.329166961254 -2.4965539979114899 -10.373066005383899 1.00000000000006 -104.269360206312 -2.5978918970635299 -10.404268929036199 0.99999999999978095 -104.208996281865 -2.6946486459590302 -10.4356200887825 1.00000000000033 -104.14492919425599 -2.79103773341309 -10.467635437665299 0.99999999999975697 -104.082085020055 -2.8810241820387299 -10.4993675126283 1.0000000000000799 -104.01543868956 -2.9713997507968499 -10.531700363526401 1 -103.87311874048299 -3.1543898855155099 -10.5992016410673 1 -103.796869158636 -3.2470632042629801 -10.634446069112601 0.99999999999997802 -103.718083695483 -3.3376446815226801 -10.669910100295199 1.00000000000003 -103.63676479258299 -3.4261270532756498 -10.7055285576605 1 -103.55290386108 -3.5124989761688798 -10.741239187242099 0.99999999999996503 -103.466479680619 -3.5967453049869702 -10.776981860964799 1.00000000000002 -103.37745531414301 -3.6788468103191398 -10.812697590031901 1 -103.201408434968 -3.8323314562558899 -10.881112798930999 1 -103.11480133226701 -3.9040402548850901 -10.9138224214375 1.00000000000001 -103.025903987539 -3.9738898965787501 -10.9464110793527 0.99999999999998102 -102.934662266749 -4.0418537006677102 -10.9788304911715 1 -102.84101097141399 -4.1078960129135096 -11.0110286419873 1.00000000000002 -102.744871137129 -4.1719731587886999 -11.0429491115066 0.99999999999998801 -102.646141750388 -4.2340342784431 -11.0745301642418 1 -102.454285650862 -4.3474659195725103 -11.133475700347899 1 -102.36174524529901 -4.3992525365944699 -11.1609149150521 0.999999999999996 -102.26689982411401 -4.4493616093737902 -11.187992728332899 1.00000000000001 -102.170044075818 -4.4975617078784103 -11.214592158147701 0.99999999999997802 -102.06981527523401 -4.5444143467577103 -11.2407846937238 1.00000000000002 -101.966580350455 -4.5894810857124897 -11.266416805416499 0.999999999999995 -101.859276343746 -4.6329960917154303 -11.2914544850096 1 -101.660763793516 -4.7070291369156196 -11.334500400617401 1 -101.571570557006 -4.7382190699955 -11.3527894253622 0.99999999999992895 -101.47911743553399 -4.7683726114838603 -11.370594963081301 1.00000000000022 -101.382896936546 -4.7974348509046099 -11.387850565191499 0.99999999999970002 -101.282328905264 -4.82530570768869 -11.404462354205601 1.0000000000002101 -101.17669451352199 -4.8518196245881002 -11.420297715751 0.99999999999993805 -101.06510691346099 -4.87673790926259 -11.435181306837601 1 -100.85097687637899 -4.9180062606023096 -11.4597910125221 1 -100.751574137026 -4.9349739260057097 -11.4698940034976 0.99999999999992295 -100.64671905020499 -4.9505000363981102 -11.4791101546846 1.00000000000024 -100.535433807213 -4.9642909838249798 -11.4872559041863 0.99999999999968003 -100.417091126979 -4.9758396623512997 -11.494027330983799 1.00000000000022 -100.291484077397 -4.9844679603392601 -11.499030805094799 0.99999999999993705 -100.15901594777 -4.9893695802473301 -11.5018374050631 1 -99.889739365099004 -4.9905135327680501 -11.502491206132399 1 -99.782955714608903 -4.98724926458 -11.500578946974001 0.99999999999992595 -99.6288443700127 -4.9809334371240501 -11.496598289049301 1.00000000000024 -99.548695353151899 -4.9707743991685396 -11.490598073336599 0.99999999999967104 -99.411919638968897 -4.9589538957794996 -11.4833308885534 1.00000000000023 -99.318103645989694 -4.9447343063819398 -11.4748201420747 0.99999999999992994 -99.216009953433797 -4.9291265910958701 -11.4654498099877 1 -98.988175438074194 -4.88836806020187 -11.441122200972099 1 -98.864776925168101 -4.8621598912871002 -11.4255611959269 1.0000000000001099 -98.747944624049794 -4.8337872367382504 -11.4088209154339 0.99999999999964595 -98.636831468037897 -4.8036002201633297 -11.3911349492453 1.0000000000004901 -98.530736100346999 -4.7718653064835896 -11.3726824694975 0.99999999999966405 -98.4290848802966 -4.7387652475328403 -11.3535897976484 1.0000000000000999 -98.331358000411598 -4.704423022666 -11.333946497373701 1 -98.092284279717603 -4.6143445286153497 -11.2828759080693 1 -97.9558051045707 -4.5570619122803899 -11.250823454665101 0.99999999999996603 -97.826604445822397 -4.4976532150358297 -11.2179424699642 1.0000000000001099 -97.702402105445699 -4.4355792012103104 -11.1843273603101 0.99999999999983902 -97.584821018166195 -4.3722441770406997 -11.150260952809001 1.0000000000001199 -97.471082215094199 -4.3066173880499798 -11.1157117157739 0.99999999999996403 -97.361429880207893 -4.2390043539014899 -11.080797572430299 1 -97.132108612644103 -4.0884089131558401 -11.0045929243781 1 -97.013776147584196 -4.0047506211082498 -10.963214308953701 0.999999999999995 -96.899817517970703 -3.9183913674998001 -10.921528530997101 1.00000000000001 -96.789823445747203 -3.8292865569257901 -10.879621491462499 0.999999999999998 -96.6834805684298 -3.7373593816125901 -10.8375704864805 0.99999999999998801 -96.580538355720293 -3.6424986194771898 -10.795446908235499 1.00000000000001 -96.480797895829895 -3.54454924319902 -10.753317717102499 1 -96.299857329640801 -3.3550885093507099 -10.6745999076152 1 -96.217986598188503 -3.26446732245754 -10.638011476369 1.00000000000003 -96.137977789769295 -3.1706703324444199 -10.601442966099301 0.99999999999992495 -96.061119118300795 -3.0756142576929899 -10.5652310035791 1.0000000000000999 -95.984647099118007 -2.9749890035585702 -10.5288561243604 0.99999999999993405 -95.912056308565994 -2.8738269304348498 -10.493115155749001 1.00000000000002 -95.840507857116293 -2.7677093463566802 -10.457482292319799 1 -95.708183033650101 -2.55790051219001 -10.390447638044501 1 -95.647001851721598 -2.4549785914075999 -10.3589786644492 0.99999999999983702 -95.587340246499707 -2.3481647489378799 -10.327843639011 1.00000000000053 -95.529265920871197 -2.2370650638131 -10.297114007480999 0.99999999999926203 -95.472890848091097 -2.1212353461036599 -10.266884706426101 1.00000000000052 -95.418378468225896 -2.00013030002718 -10.2372810609198 0.99999999999983702 -95.365944388730298 -1.8730815367321401 -10.2084616866881 1 -95.280055064783198 -1.64306354340644 -10.1607255555574 1 -95.245481258277493 -1.543590044563 -10.141344202245 0.99999999999991995 -95.212239779055494 -1.4403223988376499 -10.1225551153219 1.00000000000028 -95.1804744822538 -1.33211494007793 -10.1044682690904 0.99999999999959099 -95.150510118307693 -1.2203929014574499 -10.0872471016645 1.00000000000031 -95.122292982282204 -1.10103296615837 -10.0709859638518 0.99999999999989897 -95.096775927444895 -0.97810530532210505 -10.056113546473 1 -95.057821103277305 -0.75394505437051296 -10.0334385020131 1 -95.043183425541798 -0.65804079153930894 -10.024913437594501 0.99999999999987199 -95.030050274434103 -0.55759942910276805 -10.017265967539499 1.0000000000004099 -95.018723544961503 -0.45221717556748398 -10.0106781830616 0.99999999999943601 -95.009627149777799 -0.34190836176316802 -10.0054037854397 1.0000000000003999 -95.003248922897001 -0.227189691426463 -10.0017335209654 0.99999999999987699 -95 -0.109223156164319 -9.9999102745605999 1 -95 0.0099999999999997903 -10.0000021671207 1 + 0 9 0.020451729175787799 7 0.049551654993566598 7 0.082736039907863101 7 0.12136931361011299 7 0.15899622479377501 7 0.194196793783219 7 0.223874120262156 7 0.246027867209892 7 0.268403962672838 7 0.29867604159600197 7 0.33423817758737101 7 0.384122190106365 7 0.42882802026695599 7 0.46449856729266198 7 0.49034851210107999 7 0.51026955206567604 7 0.53258899886508504 7 0.56349573686483001 7 0.59980604534557402 7 0.63880670867184197 7 0.67469353488106998 7 0.70666552597802601 7 0.73129729106955099 7 0.75102879689399205 7 0.76986187455783395 7 0.795489602605709 7 0.83484838012461104 7 0.88061571790158299 7 0.92048473951999299 7 0.95636710916293499 7 0.98206683298474395 7 1 9 +2 0 0 0 0 0 1 1 0 0 0 1 0 29 +1 0 0 0 0 0 1 1 0 0 0 1 0 +5 0 0 2 0 0 -1 1 0 0 0 1 0 27 2 +2 0 0 0 0 0 1 1 0 0 0 1 0 25 +1 0 0 50 0 0 1 1 0 0 0 1 0 +9 1 1 0 0 2 8 3 114 2 17 25 6.9388939039072299e-018 12.000006323777599 1 25 0.22442179520146099 12.0002515125902 1 24.997697604240201 0.44806606866886101 12.0060309209266 1 24.993120663058701 0.66964225352149498 12.0172735839824 1 24.986370116437101 0.88819301630970005 12.0337545414133 0.999999999999997 24.977588211770001 1.1030566809864799 12.055168572826 0.999999999999996 24.966931766308299 1.3138380587234599 12.081187325260601 1 24.954550351249999 1.5203877112725299 12.1115058616783 1 24.924324898610699 1.9579570826775201 12.1858288011412 1 24.9059502657122 2.1870925409163999 12.2311774556365 0.999999999999859 24.885698458713001 2.4098300570898901 12.2813888680817 1.0000000000004801 24.863698529699398 2.62733288044637 12.3362865559118 0.99999999999929501 24.840191132020198 2.83879155356649 12.395353087740199 1.00000000000053 24.8152635040476 3.0453297166823101 12.458515735597199 0.99999999999982703 24.789061246500101 3.2468423412416301 12.5255187921271 1 24.730539461057401 3.66762666732108 12.676705004477499 1 24.697899955339 3.8853563564325801 12.761914347904799 0.99999999999997302 24.664047612738901 4.0964563291320601 12.8512862274257 1.0000000000000899 24.628881994341 4.3030205338380298 12.945352444392 0.999999999999862 24.592769988602001 4.5035414722462397 13.0432807385206 1.0000000000001099 24.555609373801499 4.6997814008331504 13.145615287123899 0.99999999999996303 24.517578945208101 4.8913103110747098 13.252094273938299 1 24.436762194536598 5.2808436283922999 13.482506510179901 1 24.393840546827398 5.4781216366364003 13.6071517453037 0.99999999999992695 24.350193823704501 5.6700792012785 13.736439144469401 1.00000000000022 24.305685741585599 5.8580743006170604 13.871189757359399 0.99999999999972 24.260631742738401 6.0411748024316401 14.0108544919098 1.0000000000001901 24.214930568937 6.2204338118517803 14.1562413748407 0.99999999999994305 24.168742692177801 6.3955755025173504 14.3074212285958 1 24.0760100812365 6.7362116481200198 14.620705147104299 1 24.029474339759101 6.9017889868176798 14.782672230091499 0.999999999999996 23.9826870952005 7.0633165626916901 14.950934342889401 1.00000000000002 23.935565732895402 7.2214685339073696 15.126552899613101 0.99999999999996003 23.8883445595946 7.3757126098105097 15.309719642135301 1.00000000000003 23.841019838778099 7.5264152739305601 15.501634269581499 0.99999999999999201 23.793762935382698 7.6732968854079404 15.703238277444299 1 23.709216446403801 7.9301604465899196 16.086036455882201 1 23.6718899425628 8.0414595459144795 16.262887250270602 1.00000000000003 23.634772583967901 8.1501760384884303 16.4478651602901 0.99999999999989697 23.597982864045601 8.2561009767437792 16.6419402460287 1.0000000000001401 23.561658221362901 8.3589906440666901 16.8463616391115 0.99999999999990197 23.526022772558498 8.4583771205389304 17.0627421713227 1.00000000000003 23.4913659584439 8.5536514334772793 17.2930100885245 1 23.438547589100398 8.6969938659633392 17.687018883680398 1 23.419490097957901 8.7482885398878594 17.8390331199634 1.00000000000005 23.401011866856301 8.7976371060310505 17.9979411741399 0.999999999999864 23.383303869749799 8.8445766475375205 18.1642094621733 1.0000000000001701 23.3665013695155 8.8888104395027092 18.339024400738602 0.99999999999988998 23.350875494969898 8.9296894104194795 18.523254262231902 1.00000000000003 23.3367626402013 8.9664178145642097 18.7179107984139 1 23.314552823592699 9.0239907133952197 19.0953711675451 1 23.305776403113899 9.0466418500169805 19.275633066236701 0.99999999999992895 23.2986503412322 9.0649615197129894 19.464255875250899 1.0000000000002101 23.293593020645201 9.0779200879775992 19.661709072130002 0.99999999999972 23.291032014936999 9.0844741280427606 19.862586594940801 1.0000000000001901 23.291167770281501 9.0841366398498593 20.0662339426706 0.99999999999994704 23.2939139542597 9.0771000354564997 20.266528009100799 1 23.303927440208899 9.0513631984315897 20.6669076320164 1 23.311710048774302 9.0313337338618709 20.867822832013299 0.99999999999990696 23.321589805125999 9.0058429704372305 21.0591749316117 1.00000000000032 23.333142317855302 8.9759182109138003 21.241077617602699 0.99999999999953104 23.346012949984601 8.9424140946443291 21.413962163290002 1.0000000000003499 23.359927848161401 8.9059909836571993 21.578526343892399 0.99999999999988498 23.374703098509301 8.8670848260212001 21.7356900687052 1 23.4120001751619 8.7682406992685404 22.097752159303798 1 23.435198119353402 8.7062697321373204 22.296005180578199 1.00000000000005 23.4592436612818 8.6414368891842006 22.4816629955953 0.99999999999984102 23.4841799545088 8.5735438786916998 22.659183975581701 1.0000000000002101 23.509583238022302 8.5036351153440393 22.8271121496158 0.999999999999861 23.535504696093799 8.4315187413185395 22.988321475191899 1.00000000000004 23.561792851047201 8.3575345589927998 23.1428588330939 1 23.6194183586035 8.1934014012956595 23.465036164648701 1 23.650819432403299 8.1027595086107702 23.630352076129601 0.99999999999989198 23.6827320282401 8.0093144811695396 23.7898458178176 1.0000000000003699 23.714432570216299 7.9151235085771603 23.940953860034199 0.999999999999448 23.747089874110301 7.8166000749981599 24.090688894609801 1.0000000000004201 23.779540306446499 7.7170534027899897 24.233501386403301 0.999999999999863 23.812219674847999 7.6151188092300401 24.3724797607154 1 23.885446676004101 7.3826578808003704 24.673854692841999 1 23.926054875564901 7.2509700215652702 24.834129132314299 1.0000000000000699 23.966371147264098 7.1172649636991796 24.9873593123489 0.99999999999978195 24.006804178562199 6.9800564273061099 25.136046234318201 1.0000000000003 24.0466844107364 6.8411320019445396 25.2779941858232 0.99999999999978295 24.085644311091901 6.7021846539568299 25.413047163761 1.0000000000000699 24.1248056156007 6.5587059386445299 25.5454060808656 1 24.2018375463553 6.2684358030059304 25.7996122965674 1 24.239778863864501 6.1215461027667901 25.921823039497799 0.99999999999998401 24.277693306053401 5.9702831233962499 26.041185708785399 1.00000000000004 24.314624844234299 5.8188983728891301 26.155184356240898 0.99999999999995204 24.352408742851399 5.6582793297091003 26.269442283758 1.00000000000002 24.3886100416053 5.4995844880087299 26.3770193255768 0.999999999999995 24.425328179625701 5.33231720135863 26.484250559510102 1 24.497386584051402 4.9908596960432901 26.6911820213857 1 24.532438087769499 4.8179824015781998 26.7900309447183 1.0000000000000799 24.566402877366698 4.6432882460464002 26.8843393526064 0.99999999999977196 24.5992833942069 4.4665302362003496 26.974371070329799 1.0000000000003 24.6310788627028 4.2874325006294596 27.060291248059698 0.99999999999979305 24.661790602437801 4.1055863664703098 27.142228377073 1.00000000000006 24.691413020295698 3.9205520820771298 27.2202630869355 1 24.748313684887499 3.5435905567492201 27.3684063505263 1 24.775107061479702 3.35511754325691 27.4369328189965 1.00000000000006 24.8044774292119 3.1379661377278998 27.5130025298891 0.99999999999982803 24.832142393347201 2.91312694588167 27.585222258806699 1.00000000000023 24.8587497850076 2.6775108611308802 27.651831993222199 0.99999999999984601 24.883040985098098 2.4361004680847098 27.711935996933601 1.00000000000005 24.904504613073499 2.1959263097125601 27.7646440252899 1 24.941584829236 1.72419756375303 27.855969370009301 1 24.957277619766899 1.49237025052556 27.8947549333989 0.99999999999996703 24.970513330326401 1.25978744112534 27.927947792309901 1.0000000000001099 24.981717971710601 1.0243790154901 27.955069021934101 0.99999999999983202 24.990364311763301 0.77972765740926098 27.976244391726201 1.0000000000001299 24.996607729970901 0.53283487283069997 27.990532918644998 0.99999999999995803 25 0.27237206574418799 27.998899813367299 1 25 6.9388939039072299e-018 27.999426772196699 1 +25 -0.0035672199928276798 15.0000041174572 0.70710679126004605 25.000032022673299 0.13639625825006199 15.000185738376601 0.70710244736236305 24.999494377171199 0.276146711959109 15.004779272334799 0.70691033493031397 24.998385722490799 0.41469971085733598 15.013762730681799 0.70653205495348403 24.996732890393599 0.551260754552794 15.0269606690063 0.70597548272155897 24.994583891025002 0.68524267175472797 15.0441001788856 0.70525217557752895 24.991997243007599 0.81626313619410196 15.0648682020267 0.70437509951895305 24.989032011512698 0.94412931145799395 15.088961764687101 0.70335675059277603 24.981908004650901 1.2142017018440501 15.147791868303299 0.70087273928994398 24.9776246027604 1.3553113215595101 15.183645906748501 0.69936264011281002 24.972935078002301 1.4923922644616701 15.223379845813101 0.69769310133464402 24.967979937444401 1.6249069210699301 15.266471161664199 0.69588193926172903 24.962764650570801 1.75352786509158 15.312762365648499 0.693940462850408 24.9574127989689 1.87788527162761 15.361828561378699 0.69188263815427498 24.951957094793698 1.9983798051704 15.413506205445399 0.68971726590300197 24.940170015301401 2.2486958590456099 15.5294784488907 0.684879127237495 24.933821265410501 2.3773857366595501 15.594530016237201 0.68217926761399295 24.927362347989501 2.5018952328810702 15.6627544572196 0.67936770438192995 24.9210744968446 2.6215378076753599 15.7334292497967 0.67645208408483803 24.914789063692901 2.7374357919225201 15.806889170708599 0.67344530787611701 24.908746115227402 2.8490110538683 15.882550696299999 0.67035276502318297 24.9029069843507 2.9568007003210099 15.9604968311486 0.66718262669482498 24.8912872505434 3.1743013108907898 16.127883248909701 0.66044039372729402 24.885562154576 3.2833440087519699 16.217749571452998 0.65685664997267101 24.880091380186698 3.3885259727982802 16.3103809153071 0.65320319571053898 24.8751384478849 3.4894246264454098 16.405199677762301 0.64947870259476703 24.8705230171817 3.5867971514268202 16.502698947328199 0.64569934529591899 24.866456692586599 3.6803050838865699 16.6024697811227 0.64186479404126295 24.8628908634875 3.77029523323294 16.704747869645399 0.63798488193316305 24.856871073730201 3.9433972471149099 16.914488531569599 0.63018916441029904 24.8544433660715 4.0264462092516604 17.021884045822802 0.62627347314543402 24.852367871798201 4.1068204671521604 17.132764740250401 0.62233814423589595 24.851037971150301 4.1834825541896601 17.246068485005001 0.61836991826186405 24.8501334975725 4.2575085982151704 17.3631527736222 0.61439489374047196 24.8499259512968 4.3281597763662303 17.4834598156034 0.61040840907341998 24.850317467524398 4.3957734274167004 17.607726308030198 0.60642690237533303 24.852178127221599 4.5121983670354 17.840254238739799 0.59930108452490305 24.8534352109026 4.5620288010454599 17.946792951390002 0.59615314809522502 24.855034494741702 4.6100225290735501 18.056903922052001 0.59302735804504703 24.857025111641398 4.6559408009305301 18.170777608971299 0.58992862200416996 24.859376458784201 4.6997804521244504 18.288961345240001 0.58687028639910099 24.862050008852702 4.7414195358951998 18.4122451517106 0.58387101395951102 24.8650093142146 4.7806532416762497 18.5413976589785 0.58095419371373802 24.870034136428 4.8389482622577997 18.759523710709701 0.57650890660322696 24.871951322335999 4.8597373950129104 18.8435506518158 0.57490580162984295 24.874017927365099 4.8792619005515396 18.929722265894501 0.57334737904493005 24.8759463174706 4.8980545692846897 19.020341057580399 0.57185969453723895 24.8778384170731 4.9156582010019898 19.115547313127799 0.57044954946665305 24.879686220029999 4.9317576550663196 19.2149073074564 0.56913749711075201 24.8813830056766 4.9462006930719999 19.319788911861501 0.56795385718649205 24.884139260269599 4.9687391046857199 19.522583770138301 0.56609087786005396 24.885261127505501 4.9775587518553204 19.619185449050399 0.56535476807611496 24.886203409597101 4.9846211369820299 19.720383000961299 0.56475662413345795 24.886900314518101 4.9895491932018698 19.824576507588102 0.56433248835305105 24.8872839143656 4.9919660579088996 19.932084049909498 0.56411529234256896 24.887314239256401 4.9917136915935298 20.039216129176499 0.56412714429891497 24.886971049626499 4.9889428660490198 20.144538284973802 0.56435729597291895 24.885655617730301 4.9789852125617999 20.3547044357231 0.56519763557704605 24.884612363737801 4.9713122603000199 20.459837322699201 0.56585096581355199 24.883277902164 4.9615967867918203 20.560042996981 0.56668053352577297 24.881728317021398 4.9501932077506599 20.6556085928184 0.56765089567079297 24.880033060179102 4.9373813613064499 20.746874564068399 0.568732455674962 24.878247279822599 4.9233736139135704 20.834262322615899 0.56990235341776296 24.8764115184714 4.9083013908650202 20.918281771794199 0.57114525473356104 24.8719682237972 4.8697952953499399 21.1126777856147 0.57428451757627397 24.869284623628602 4.8456492783354896 21.219357922120999 0.57623999930297298 24.867121294629801 4.8188813888629198 21.325633232847899 0.57825832057678095 24.8648455129598 4.7910612311158403 21.424720939889799 0.58035773313661998 24.8630563461994 4.76113107119075 21.523412369693101 0.58249007913263795 24.861349022861301 4.7300580154092904 21.617482058934101 0.58466870350008504 24.8598801655831 4.6975992951314103 21.709172135736399 0.58687757415753405 24.857070464083499 4.6251136862697004 21.900733437141302 0.59172176069888804 24.855830183474598 4.5846465120778097 21.999817846582499 0.59436282693003795 24.854537483591901 4.5432851336470597 22.094492709756 0.59704762791491395 24.854124443918501 4.49921372662567 22.188901017578299 0.59971955177855996 24.852676739384201 4.4564348537995002 22.275295533194001 0.60247475838648401 24.851986124843101 4.4112680579388401 22.361919826525199 0.60521234402705903 24.851273300054999 4.3653391426456301 22.445363577237 0.60797044672188905 24.8503219847777 4.25983904669088 22.627578228689501 0.61415019283874595 24.850140469407702 4.1997294530070697 22.725148736965298 0.61757609944077896 24.850665834814301 4.1368918240922996 22.821405934856301 0.62098122959698099 24.8514716600267 4.0718741513025503 22.9151533055791 0.62438288768024197 24.8530622628777 4.0040966986132203 23.008249836733899 0.62774721715454296 24.856185550259202 3.9307884796315098 23.102729167366 0.63103117069894799 24.859115181397801 3.8562834375407502 23.193501466755901 0.634320042820673 24.865804842895798 3.7034547564674098 23.369609908682101 0.64078247508764397 24.869488477296301 3.6253011718624002 23.4548764775212 0.64396115774112905 24.873025615607698 3.5461092669169698 23.537022676653201 0.64713021485231803 24.877740885590001 3.4612783892260701 23.619792183017999 0.65022235272633899 24.8808307901337 3.3801401235362798 23.695549462353998 0.65336775392948199 24.885758995296602 3.29094129010574 23.773913393722999 0.65639373222052 24.889355889790998 3.2043234995130301 23.846217831082001 0.65944901641192799 24.897514843639598 3.0241603869651499 23.9886691060914 0.66545012762460298 24.902382239573701 2.9296540335226302 24.059600860168601 0.66837449881647004 24.907950037204401 2.8304325171314302 24.130063176306098 0.67121131574012005 24.914101933712502 2.7264054736610501 24.199703165668399 0.67395984656073005 24.920707593742499 2.6175263361668502 24.268128649518999 0.67662047199940001 24.9276222343474 2.5038090794282799 24.334919713828199 0.679193539954421 24.934696865824201 2.38527849829081 24.399651512111301 0.681679233155703 24.948706188486401 2.14064527849043 24.523165636170599 0.68645159549169898 24.956668085320299 2.0090214337946199 24.584876374694101 0.68871722644912903 24.959009610656999 1.8992294100911999 24.629764228835199 0.691091875437712 24.963003318058 1.7782234159466701 24.678358118184999 0.69328516286588204 24.965489942955902 1.6626804989158499 24.719159054322901 0.69544160303542002 24.969075909983101 1.53897219781349 24.760485605454001 0.69743215280280701 24.973307716484001 1.4055957611393399 24.800095600766198 0.69920492241405197 24.982453273011402 1.1203752731466401 24.8741308536144 0.70226812745980205 24.9874754979929 0.96665473325592499 24.909058459966001 0.70356676380303296 24.992311532481999 0.80436434866004702 24.940435887111899 0.70465009441022597 24.995947361833199 0.63417607890364902 24.965141114670899 0.70558978128315697 24.998811389782599 0.46651951611394699 24.984462705937599 0.70630957546242401 25.0002397743913 0.289465455873049 24.996148767528201 0.70685903013929297 25.000468848658201 0.120509251790024 25.001007911179201 0.70713483923359999 25 -0.043034398079911898 24.999896015394501 0.70712570254384499 +22.000000119827 -0.0031132343393519401 15.000004742756399 1 21.999992699930502 0.11977939669893201 15.0001740094672 1 21.997933524814599 0.24265147122327399 15.003795260857199 1 21.993829695286799 0.364667346589923 15.010865913946301 1 21.987763626552699 0.485154485493897 15.0212650438911 0.999999999999997 21.979866217059801 0.60361066331906799 15.0347948699387 0.999999999999996 21.970289471935601 0.71970215953530903 15.0512235941125 1 21.9591826195817 0.83325545397204703 15.0703240923227 1 21.9321442520834 1.0732017590921199 15.1169750749062 1 21.915720069598599 1.1988372778159899 15.1454163311982 0.999999999999859 21.897513113478599 1.32217492834354 15.1771799379474 1.0000000000004801 21.877841032929101 1.44132468778175 15.211660277186899 0.99999999999929501 21.856716080877099 1.5584346652923899 15.2490424747507 1.00000000000053 21.834406545749498 1.6719116049251601 15.2888111594237 0.99999999999982703 21.8109740377405 1.78271922827383 15.3309751851175 1 21.758775025823802 2.0134582310409299 15.4258087430042 1 21.729729279407099 2.1325756514761398 15.4791119212844 0.99999999999997302 21.699370026772701 2.2496487409291999 15.535711338815201 1.0000000000000899 21.668131254373201 2.36242304309526 15.594524315210601 0.999999999999862 21.635797969863301 2.4736330555180102 15.6565193937111 1.0000000000001099 21.602731797308099 2.5813606202728399 15.7208045328954 0.99999999999996303 21.568891317798101 2.68674607293819 15.7877604647343 1 21.497157015277399 2.9005861735923602 15.9322683516876 1 21.4591636480876 3.00859837639242 16.010209076620399 0.99999999999992695 21.420380588936901 3.1145683740756498 16.0916416926868 1.00000000000022 21.381099590519 3.2173378092879501 16.175782514229901 0.99999999999972 21.341185933202102 3.3183477858203099 16.2636114628115 1.0000000000001901 21.3008787716021 3.4166684060497698 16.3545921244373 0.99999999999994305 21.2601703731412 3.51287245204264 16.449239464596602 1 21.178603848454099 3.69980237058342 16.6450804656487 1 21.137766315460901 3.7905167383029901 16.7461135543921 0.999999999999996 21.096620972853099 3.8796618124062801 16.851702039794102 1.00000000000002 21.0553648318384 3.9664142887699101 16.961330738752601 0.99999999999996003 21.013962899987199 4.0515642477948903 17.0761952680181 1.00000000000003 20.9725958834468 4.1344975747573303 17.196231337989001 0.99999999999999201 20.931338591829402 4.21540441185038 17.3223409948347 1 20.857667538214901 4.3568046334552504 17.561515300620901 1 20.8251865591828 4.4180523378705603 17.671937093624599 1.00000000000003 20.7929608595737 4.4778315816175498 17.787269265836201 0.99999999999989697 20.761060382314501 4.5360783179824704 17.908202486214002 1.0000000000001401 20.729617753025 4.5926287036925499 18.0354424200575 0.99999999999990197 20.698812615119898 4.6472629190310899 18.170034919565801 1.00000000000003 20.668887631169099 4.6996474493078502 18.313173429252501 1 20.623317773218599 4.7785076732227303 18.558018374630599 1 20.6068785078463 4.80676388140005 18.6525499143752 1.00000000000005 20.590973539938201 4.8338327832882202 18.7509568431967 0.999999999999864 20.575688969948501 4.8598053859679604 18.854497951057301 1.0000000000001701 20.5611882081433 4.8843133499610802 18.963634830805798 0.99999999999988998 20.547706440053201 4.9069691865062097 19.078608935962801 1.00000000000003 20.535525599368999 4.9273692126032396 19.200379958620601 1 20.516364235299399 4.9593404839068196 19.436680829788099 1 20.508795543436399 4.9719189927779999 19.549431247594701 0.99999999999992895 20.502651625514201 4.98209047573663 19.668503726483099 1.0000000000002101 20.498314595727901 4.9892195984243699 19.790492685743601 0.99999999999972 20.496101682241001 4.9928552824512602 19.918241209218198 1.0000000000001901 20.496278408461301 4.9924906638783 20.045228109719002 0.99999999999994704 20.4986668447009 4.9885148597758002 20.1697901934157 1 20.507308506830199 4.9741978019204103 20.418085365963101 1 20.513997947291301 4.9631422329591999 20.542225287254499 0.99999999999990696 20.522462695970098 4.9491632415803899 20.660177627652999 1.00000000000032 20.5323415672216 4.9328256793332503 20.7721718065477 0.99999999999953104 20.543338836506699 4.9145816058723604 20.8785819002876 1.0000000000003499 20.5552283721963 4.8947729515472496 20.9799114278077 0.99999999999988498 20.5678607837798 4.8736181896945601 21.076776948166302 1 20.599785073995299 4.8198358681444304 21.3002539398769 1 20.6196322794667 4.78621838261782 21.422424459153401 1.00000000000005 20.640511930027301 4.7500666429844403 21.540659893536098 0.99999999999984102 20.6620757020568 4.7125964928156696 21.651368810740301 1.0000000000002101 20.684282027124301 4.6732627241953999 21.758952244743401 0.999999999999861 20.706926274775999 4.6328117033314804 21.8611679134304 1.00000000000004 20.729956746251499 4.5911599527550102 21.9596211699197 1 20.780465670531701 4.4988435215770997 22.1644695510366 1 20.808048283855101 4.4477658798692401 22.269639765246499 0.99999999999989198 20.835799081382401 4.3961721030628897 22.369113898556702 1.0000000000003699 20.864069531397998 4.3419093749718201 22.467290950806699 0.999999999999448 20.891939021583799 4.2895635659694902 22.5566278734983 1.0000000000004201 20.920119472979501 4.2351642769115596 22.645030669134101 0.999999999999863 20.948239739347301 4.1804941536559301 22.729385103323999 1 21.011308326106899 4.0559289351980796 22.912603951316498 1 21.046221236095199 3.98578670476746 23.0096890820727 1.0000000000000699 21.081280844435099 3.9133889394268202 23.1043338595039 0.99999999999978195 21.116119093758201 3.84028095569606 23.1946233053058 1.0000000000003 21.1510841871794 3.7646195979323802 23.2837896599484 0.99999999999978295 21.186425368911699 3.6841264646862202 23.372952573553 1.0000000000000699 21.221209323516199 3.6040167564823 23.457207861374201 1 21.2898526625759 3.4412868824158802 23.619619617424799 1 21.323695528303499 3.3588273062497498 23.697630891360699 0.99999999999998401 21.356949226843799 3.2767254969792798 23.771689327747001 1.00000000000004 21.390434361367198 3.1891213130026701 23.845958730824599 0.99999999999995204 21.4223595725969 3.1078760276664998 23.912313464197599 1.00000000000002 21.454884365841799 3.0180060104707001 23.9812464139676 0.999999999999995 21.4859743938731 2.93310117653991 24.043464143238999 1 21.5477382993014 2.75691246834714 24.166026985476599 1 21.578557286245001 2.6643392441696698 24.227198416997901 1.0000000000000799 21.609121898670999 2.56743466163709 24.287810785635401 0.99999999999977196 21.639324471457599 2.46616640436473 24.347530960251198 1.0000000000003 21.669052574196701 2.3605434927356099 24.4059894749808 0.99999999999979305 21.698174051556101 2.2507089019507101 24.4627786699 1.00000000000006 21.726549315650701 2.1368127462696398 24.517487029762702 1 21.781165918885701 1.90293519460014 24.621355761584699 1 21.8083638357705 1.7759995629621199 24.673553034336901 1.00000000000006 21.830054589603801 1.6804153727944999 24.7074098679259 0.99999999999982803 21.851825348377101 1.5744215671417301 24.7455257179084 1.00000000000023 21.8715920072258 1.47758202919328 24.775792440216001 0.99999999999984601 21.891144793793501 1.3730928199419301 24.8073806562962 1.00000000000005 21.909627834772198 1.25797682554575 24.838309979140298 1 21.943494372133099 1.0050764169814901 24.897585925151699 1 21.959063857062901 0.86516074302299495 24.926350545282901 0.99999999999996703 21.9727301347103 0.71551836112779998 24.9526645488104 1.0000000000001099 21.983947996268999 0.55770513878355099 24.972787704181599 0.99999999999983202 21.992622318119 0.40512708279195397 24.9886618562651 1.0000000000001299 21.998425004703702 0.24191225518759801 24.9975999724685 0.99999999999995803 22.0007677736915 0.091475772185151794 25.0009776754491 1 22.000169124066101 -0.0502060707109281 24.999838344574499 1 + +0 3 +1 3 + +0 9 +0.058332155897488497 7 +0.12610729780597399 7 +0.203128329129593 7 +0.28628459510170901 7 +0.36851128230551999 7 +0.43406476811713302 7 +0.47276130537807498 7 +0.50482077164509598 7 +0.54019847315269998 7 +0.58971540073372097 7 +0.64731694618928504 7 +0.71873230465626603 7 +0.78913885664921002 7 +0.85997049029116002 7 +0.93027647875214803 7 +1 9 + +1 0 0 20 0 0 1 1 0 0 0 1 0 +1 0 0 80 0 0 1 1 0 0 0 1 0 +5 0 0 39 0 0 1 1 0 0 0 1 0 24 1 +1 0 0 50 0 0 1 1 0 0 0 1 0 +6 1 0 0 +7 0 0 8 37 6 -99.989999999999995 4 -3.27718676730986 -100.197442944781 4 -3.27718676730986 -100.391077552083 3.9877035375692498 -3.27547437614535 -100.567613165163 3.9659873289249701 -3.2724498463210598 -100.72770819199 3.93827764418422 -3.2686220978393399 -100.872743884071 3.9066968396944302 -3.2643056033757998 -101.005177790226 3.8727214744841798 -3.2597106612797302 -101.128492645563 3.83658699082957 -3.2548758216632798 -101.41556162238 3.7415648039420799 -3.2423251429154001 -101.568481567261 3.6814662620693999 -3.2345132821288298 -101.710507134064 3.6179649811540702 -3.2264115738347199 -101.843531601305 3.55145632752911 -3.2180986713218198 -101.96895500943501 3.4821900720865901 -3.20963176293056 -102.088002868342 3.4103057866828701 -3.2010532539146399 -102.20142393624801 3.3357711214950401 -3.1923848556364298 -102.508880531725 3.1168596384710998 -3.1676313218991998 -102.69072914145001 2.96647726936791 -3.1514330189813502 -102.860284778555 2.8066203391051898 -3.1351335174254702 -103.019225223745 2.6358360450585199 -3.1188141899383699 -103.168936114933 2.4531089351364201 -3.1025589337947901 -103.309743983865 2.2550184879211099 -3.0864982609744902 -103.441940543299 2.0393221386275302 -3.0707574583369102 -103.612148311524 1.7003674253574801 -3.04973690922166 -103.65814696973 1.6016387265649199 -3.0439682164720101 -103.702609041481 1.49807693475007 -3.0383115590482399 -103.74544793402799 1.3889824952018399 -3.03278683721163 -103.786427679567 1.2733355591523601 -3.0274342050826499 -103.825208985719 1.1499844076888599 -3.02230897310436 -103.86130826238499 1.0174144809491299 -3.0174881560290499 -103.913775296794 0.78256500906958204 -3.0104222312853399 -103.932120714639 0.68940607544587196 -3.0079360571867002 -103.948921275126 0.59082884686468295 -3.0056470544862699 -103.96386114839 0.48552610502414101 -3.0036010162056002 -103.976313241517 0.37288462709787401 -3.0018879762159898 -103.985353753973 0.2530795908606 -3.00064080308529 -103.99000026144 0.127506899061511 -2.9999999760954998 -103.98999999999999 0 -3 + 0 9 0.15011495303757999 7 0.36383874622435602 7 0.75502119456363104 7 0.90659934075579696 7 1 9 +6 1 0 0 +7 0 0 8 37 6 -99.989999999999995 4 -3.27718676730986 -100.197442944781 4 -3.27718676730986 -100.391077552083 3.9877035375692498 -3.27547437614535 -100.567613165163 3.9659873289249701 -3.2724498463210598 -100.72770819199 3.93827764418422 -3.2686220978393399 -100.872743884071 3.9066968396944302 -3.2643056033757998 -101.005177790226 3.8727214744841798 -3.2597106612797302 -101.128492645563 3.83658699082957 -3.2548758216632798 -101.41556162238 3.7415648039420799 -3.2423251429154001 -101.568481567261 3.6814662620693999 -3.2345132821288298 -101.710507134064 3.6179649811540702 -3.2264115738347199 -101.843531601305 3.55145632752911 -3.2180986713218198 -101.96895500943501 3.4821900720865901 -3.20963176293056 -102.088002868342 3.4103057866828701 -3.2010532539146399 -102.20142393624801 3.3357711214950401 -3.1923848556364298 -102.508880531725 3.1168596384710998 -3.1676313218991998 -102.69072914145001 2.96647726936791 -3.1514330189813502 -102.860284778555 2.8066203391051898 -3.1351335174254702 -103.019225223745 2.6358360450585199 -3.1188141899383699 -103.168936114933 2.4531089351364201 -3.1025589337947901 -103.309743983865 2.2550184879211099 -3.0864982609744902 -103.441940543299 2.0393221386275302 -3.0707574583369102 -103.612148311524 1.7003674253574801 -3.04973690922166 -103.65814696973 1.6016387265649199 -3.0439682164720101 -103.702609041481 1.49807693475007 -3.0383115590482399 -103.74544793402799 1.3889824952018399 -3.03278683721163 -103.786427679567 1.2733355591523601 -3.0274342050826499 -103.825208985719 1.1499844076888599 -3.02230897310436 -103.86130826238499 1.0174144809491299 -3.0174881560290499 -103.913775296794 0.78256500906958204 -3.0104222312853399 -103.932120714639 0.68940607544587196 -3.0079360571867002 -103.948921275126 0.59082884686468295 -3.0056470544862699 -103.96386114839 0.48552610502414101 -3.0036010162056002 -103.976313241517 0.37288462709787401 -3.0018879762159898 -103.985353753973 0.2530795908606 -3.00064080308529 -103.99000026144 0.127506899061511 -2.9999999760954998 -103.98999999999999 0 -3 + 0 9 0.15011495303757999 7 0.36383874622435602 7 0.75502119456363104 7 0.90659934075579696 7 1 9 +6 -1 0 0 +7 0 0 8 37 6 -99.989999999999995 4 -3.27718676730986 -100.197442944781 4 -3.27718676730986 -100.391077552083 3.9877035375692498 -3.27547437614535 -100.567613165163 3.9659873289249701 -3.2724498463210598 -100.72770819199 3.93827764418422 -3.2686220978393399 -100.872743884071 3.9066968396944302 -3.2643056033757998 -101.005177790226 3.8727214744841798 -3.2597106612797302 -101.128492645563 3.83658699082957 -3.2548758216632798 -101.41556162238 3.7415648039420799 -3.2423251429154001 -101.568481567261 3.6814662620693999 -3.2345132821288298 -101.710507134064 3.6179649811540702 -3.2264115738347199 -101.843531601305 3.55145632752911 -3.2180986713218198 -101.96895500943501 3.4821900720865901 -3.20963176293056 -102.088002868342 3.4103057866828701 -3.2010532539146399 -102.20142393624801 3.3357711214950401 -3.1923848556364298 -102.508880531725 3.1168596384710998 -3.1676313218991998 -102.69072914145001 2.96647726936791 -3.1514330189813502 -102.860284778555 2.8066203391051898 -3.1351335174254702 -103.019225223745 2.6358360450585199 -3.1188141899383699 -103.168936114933 2.4531089351364201 -3.1025589337947901 -103.309743983865 2.2550184879211099 -3.0864982609744902 -103.441940543299 2.0393221386275302 -3.0707574583369102 -103.612148311524 1.7003674253574801 -3.04973690922166 -103.65814696973 1.6016387265649199 -3.0439682164720101 -103.702609041481 1.49807693475007 -3.0383115590482399 -103.74544793402799 1.3889824952018399 -3.03278683721163 -103.786427679567 1.2733355591523601 -3.0274342050826499 -103.825208985719 1.1499844076888599 -3.02230897310436 -103.86130826238499 1.0174144809491299 -3.0174881560290499 -103.913775296794 0.78256500906958204 -3.0104222312853399 -103.932120714639 0.68940607544587196 -3.0079360571867002 -103.948921275126 0.59082884686468295 -3.0056470544862699 -103.96386114839 0.48552610502414101 -3.0036010162056002 -103.976313241517 0.37288462709787401 -3.0018879762159898 -103.985353753973 0.2530795908606 -3.00064080308529 -103.99000026144 0.127506899061511 -2.9999999760954998 -103.98999999999999 0 -3 + 0 9 0.15011495303757999 7 0.36383874622435602 7 0.75502119456363104 7 0.90659934075579696 7 1 9 +6 -1 0 0 +7 0 0 8 37 6 -99.989999999999995 4 -3.27718676730986 -100.197442944781 4 -3.27718676730986 -100.391077552083 3.9877035375692498 -3.27547437614535 -100.567613165163 3.9659873289249701 -3.2724498463210598 -100.72770819199 3.93827764418422 -3.2686220978393399 -100.872743884071 3.9066968396944302 -3.2643056033757998 -101.005177790226 3.8727214744841798 -3.2597106612797302 -101.128492645563 3.83658699082957 -3.2548758216632798 -101.41556162238 3.7415648039420799 -3.2423251429154001 -101.568481567261 3.6814662620693999 -3.2345132821288298 -101.710507134064 3.6179649811540702 -3.2264115738347199 -101.843531601305 3.55145632752911 -3.2180986713218198 -101.96895500943501 3.4821900720865901 -3.20963176293056 -102.088002868342 3.4103057866828701 -3.2010532539146399 -102.20142393624801 3.3357711214950401 -3.1923848556364298 -102.508880531725 3.1168596384710998 -3.1676313218991998 -102.69072914145001 2.96647726936791 -3.1514330189813502 -102.860284778555 2.8066203391051898 -3.1351335174254702 -103.019225223745 2.6358360450585199 -3.1188141899383699 -103.168936114933 2.4531089351364201 -3.1025589337947901 -103.309743983865 2.2550184879211099 -3.0864982609744902 -103.441940543299 2.0393221386275302 -3.0707574583369102 -103.612148311524 1.7003674253574801 -3.04973690922166 -103.65814696973 1.6016387265649199 -3.0439682164720101 -103.702609041481 1.49807693475007 -3.0383115590482399 -103.74544793402799 1.3889824952018399 -3.03278683721163 -103.786427679567 1.2733355591523601 -3.0274342050826499 -103.825208985719 1.1499844076888599 -3.02230897310436 -103.86130826238499 1.0174144809491299 -3.0174881560290499 -103.913775296794 0.78256500906958204 -3.0104222312853399 -103.932120714639 0.68940607544587196 -3.0079360571867002 -103.948921275126 0.59082884686468295 -3.0056470544862699 -103.96386114839 0.48552610502414101 -3.0036010162056002 -103.976313241517 0.37288462709787401 -3.0018879762159898 -103.985353753973 0.2530795908606 -3.00064080308529 -103.99000026144 0.127506899061511 -2.9999999760954998 -103.98999999999999 0 -3 + 0 9 0.15011495303757999 7 0.36383874622435602 7 0.75502119456363104 7 0.90659934075579696 7 1 9 +6 0 0 1 +7 0 0 8 37 6 -100.01000000000001 -4 -3.2771867673099 -99.802557055219197 -4 -3.2771867673099 -99.608922447916697 -3.9877035375692498 -3.2754743761452998 -99.432386834837104 -3.9659873289249701 -3.2724498463210998 -99.272291808009797 -3.93827764418422 -3.2686220978392999 -99.127256115928702 -3.9066968396944302 -3.2643056033757998 -98.994822209773602 -3.8727214744841798 -3.2597106612797 -98.871507354436702 -3.83658699082957 -3.2548758216632998 -98.584438377620401 -3.7415648039420799 -3.2423251429154001 -98.431518432738699 -3.6814662620693999 -3.2345132821288001 -98.289492865935799 -3.6179649811540702 -3.2264115738346999 -98.156468398694599 -3.55145632752911 -3.2180986713217998 -98.031044990565107 -3.4821900720865901 -3.2096317629305999 -97.911997131658296 -3.4103057866828701 -3.2010532539145999 -97.798576063752193 -3.3357711214950401 -3.1923848556364001 -97.491119468275201 -3.1168596384710998 -3.1676313218991998 -97.309270858550505 -2.96647726936791 -3.1514330189813999 -97.139715221445002 -2.8066203391051898 -3.1351335174254999 -96.980774776255004 -2.6358360450585199 -3.1188141899384001 -96.831063885066698 -2.4531089351364201 -3.1025589337947999 -96.690256016134597 -2.2550184879211099 -3.0864982609745 -96.5580594567014 -2.0393221386275302 -3.0707574583368999 -96.387851688476403 -1.7003674253574801 -3.0497369092216999 -96.341853030270101 -1.6016387265649199 -3.0439682164719999 -96.297390958519202 -1.49807693475007 -3.0383115590481999 -96.254552065971893 -1.3889824952018399 -3.0327868372115998 -96.213572320432704 -1.2733355591523601 -3.0274342050826002 -96.174791014281396 -1.1499844076888599 -3.0223089731043999 -96.138691737614806 -1.0174144809491299 -3.0174881560291 -96.086224703206 -0.78256500906958204 -3.0104222312853 -96.067879285361101 -0.68940607544587196 -3.0079360571867002 -96.051078724874202 -0.59082884686468295 -3.0056470544863001 -96.036138851609607 -0.48552610502414101 -3.0036010162056002 -96.023686758483294 -0.37288462709787401 -3.001887976216 -96.014646246026601 -0.2530795908606 -3.0006408030852998 -96.0099997385596 -0.127506899061511 -2.9999999760954998 -96.010000000000005 0 -3 + 0 9 0.15011495303757999 7 0.36383874622435602 7 0.75502119456363104 7 0.90659934075579696 7 1 9 +6 0 0 1 +7 0 0 8 37 6 -100.01000000000001 -4 -3.2771867673099 -99.802557055219197 -4 -3.2771867673099 -99.608922447916697 -3.9877035375692498 -3.2754743761452998 -99.432386834837104 -3.9659873289249701 -3.2724498463210998 -99.272291808009797 -3.93827764418422 -3.2686220978392999 -99.127256115928702 -3.9066968396944302 -3.2643056033757998 -98.994822209773602 -3.8727214744841798 -3.2597106612797 -98.871507354436702 -3.83658699082957 -3.2548758216632998 -98.584438377620401 -3.7415648039420799 -3.2423251429154001 -98.431518432738699 -3.6814662620693999 -3.2345132821288001 -98.289492865935799 -3.6179649811540702 -3.2264115738346999 -98.156468398694599 -3.55145632752911 -3.2180986713217998 -98.031044990565107 -3.4821900720865901 -3.2096317629305999 -97.911997131658296 -3.4103057866828701 -3.2010532539145999 -97.798576063752193 -3.3357711214950401 -3.1923848556364001 -97.491119468275201 -3.1168596384710998 -3.1676313218991998 -97.309270858550505 -2.96647726936791 -3.1514330189813999 -97.139715221445002 -2.8066203391051898 -3.1351335174254999 -96.980774776255004 -2.6358360450585199 -3.1188141899384001 -96.831063885066698 -2.4531089351364201 -3.1025589337947999 -96.690256016134597 -2.2550184879211099 -3.0864982609745 -96.5580594567014 -2.0393221386275302 -3.0707574583368999 -96.387851688476403 -1.7003674253574801 -3.0497369092216999 -96.341853030270101 -1.6016387265649199 -3.0439682164719999 -96.297390958519202 -1.49807693475007 -3.0383115590481999 -96.254552065971893 -1.3889824952018399 -3.0327868372115998 -96.213572320432704 -1.2733355591523601 -3.0274342050826002 -96.174791014281396 -1.1499844076888599 -3.0223089731043999 -96.138691737614806 -1.0174144809491299 -3.0174881560291 -96.086224703206 -0.78256500906958204 -3.0104222312853 -96.067879285361101 -0.68940607544587196 -3.0079360571867002 -96.051078724874202 -0.59082884686468295 -3.0056470544863001 -96.036138851609607 -0.48552610502414101 -3.0036010162056002 -96.023686758483294 -0.37288462709787401 -3.001887976216 -96.014646246026601 -0.2530795908606 -3.0006408030852998 -96.0099997385596 -0.127506899061511 -2.9999999760954998 -96.010000000000005 0 -3 + 0 9 0.15011495303757999 7 0.36383874622435602 7 0.75502119456363104 7 0.90659934075579696 7 1 9 +6 1 0 0 +7 0 0 8 135 20 -103.98999999999999 0 -3 -103.99000025844801 -0.12247142476504801 -2.99999997653308 -103.985713486433 -0.243334236110265 -3.0005911892343899 -103.977342257703 -0.35900206195598899 -3.00174602244623 -103.96574775850701 -0.46809484335532497 -3.0033414523584301 -103.951767011966 -0.57036092823031503 -3.0052572033486999 -103.935988231373 -0.66629564416078002 -3.0074088623767601 -103.918718391409 -0.75706097548988005 -3.00975199577173 -103.881231510853 -0.93065424983636602 -3.0148082408587298 -103.86126421455 -1.01256424727119 -3.0174879816989302 -103.84019368733399 -1.0907017395101899 -3.0202997284892299 -103.818176651998 -1.1655268071534 -3.02321954738263 -103.795328453152 -1.23739183877981 -3.0262295067301501 -103.771735468381 -1.3065999090895699 -3.0293158657738601 -103.747459561543 -1.3734285306140599 -3.03246832277113 -103.664562075002 -1.5885796399312599 -3.0431510468513201 -103.603200847907 -1.72719172370098 -3.0509280414989499 -103.53895360145 -1.8569897087898299 -3.0589197748946999 -103.472068970542 -1.9794160099909901 -3.0670713509238299 -103.402692796333 -2.0955220868369602 -3.0753420942497698 -103.330889015921 -2.2061878648928501 -3.0837014067500599 -103.25661366180699 -2.3120261145350298 -3.0921304006100301 -103.09308152334501 -2.5281422644351998 -3.1101800682191998 -103.003195594375 -2.6371677523589399 -3.1198075966390801 -102.909936109013 -2.7414618549811398 -3.1294759868352702 -102.813092928149 -2.8415287279177099 -3.1391639972423402 -102.71239186058401 -2.9377261509929098 -3.1488514604253499 -102.60747110775 -3.0303251186462798 -3.1585181604406101 -102.49781963720601 -3.11953279278457 -3.16814268387692 -102.299781406638 -3.2673562216611498 -3.18458296092252 -102.21406309089799 -3.3275206236793502 -3.1914278333794002 -102.12524310237499 -3.3860338706019002 -3.1982280822347899 -102.03296437124899 -3.4429149503009699 -3.2049723687924101 -101.93681899297199 -3.4981494671766602 -3.2116461959097702 -101.83630783282 -3.5516894331662199 -3.2182311521784799 -101.73073293523601 -3.60344337463816 -3.2247029997477901 -101.552496508204 -3.68292190593833 -3.2347956666686501 -101.483823255228 -3.7118826084809902 -3.2385087868132301 -101.412770800115 -3.7401144781614799 -3.2421619608271799 -101.339063151129 -3.7675672190466498 -3.2457457670992298 -101.262393968111 -3.7941686446095502 -3.24924773275451 -101.18240145179 -3.8198210383586901 -3.2526516625233999 -101.098604657978 -3.8443898543948198 -3.25593593152951 -100.93908722316399 -3.8864698786656202 -3.2615987077983601 -100.865112687931 -3.9043845478122501 -3.26402368995929 -100.787874194325 -3.9213667819404301 -3.2663352964635601 -100.706914657201 -3.9372849837398798 -3.2685132947050302 -100.621806934546 -3.9519314087859398 -3.2705266380724498 -100.53213741912199 -3.9650156323407701 -3.2723324925343502 -100.437489630098 -3.9761580161546202 -3.27387526322403 -100.26279541187699 -3.99139024660884 -3.2759883232426898 -100.184450483662 -3.9966106413840001 -3.27671422192791 -100.103357921823 -4.0001929046959201 -3.2772134618767499 -100.020597894742 -4.0018675987604997 -3.27744714296872 -99.937367371704397 -4.0014994471385403 -3.2773956870635201 -99.854973696660593 -3.9991203089027501 -3.2770638548630799 -99.774820201441102 -3.9949429827390901 -3.2764824127385599 -99.536629357378501 -3.97753072332879 -3.2740641347950201 -99.3893674885976 -3.95923691634284 -3.2715290247801998 -99.253785039807397 -3.9365106311799001 -3.26839506974131 -99.128396219490895 -3.91054744004076 -3.2648412334738 -99.011830116549604 -3.8821915711489501 -3.26099342250017 -98.902664045706501 -3.8519997375610799 -3.2569342128907599 -98.799567158832502 -3.8201698268446602 -3.2526966986597401 -98.588740052321398 -3.7484036009154398 -3.2432450218764202 -98.483284629980005 -3.70826498271501 -3.23801782433156 -98.383337791789202 -3.6664753734427098 -3.23264255796273 -98.288079513995697 -3.6232066565882599 -3.2271506631828699 -98.196938281817395 -3.5785714093848999 -3.2215648814672599 -98.1094425390759 -3.53264268356275 -3.2159024249989701 -98.025169698289503 -3.48545830721529 -3.2101760903985799 -97.790960830115196 -3.3460219784229399 -3.1935331282975201 -97.648486212712797 -3.2506829071916501 -3.18248679293916 -97.514156878020302 -3.1510437315462099 -3.1713158833569302 -97.386791393399307 -3.0469949874280702 -3.1600646430119599 -97.265548234414396 -2.93829796411468 -3.14877047583439 -97.149761889340297 -2.8245828569452698 -3.13746629442005 -97.038969737894305 -2.70527817426535 -3.1261808457873701 -96.826654753178403 -2.4536376167828098 -3.1037093407215801 -96.725488340486393 -2.3217209607125602 -3.0925611668152899 -96.628604744551097 -2.1825621780659801 -3.08149812756779 -96.535815343551107 -2.03464036113655 -3.0705539499224499 -96.447070378938093 -1.8767881923035099 -3.0597709454165001 -96.362854116891896 -1.7060665182024399 -3.0492596991932701 -96.283622497113598 -1.52048303015094 -3.0391290141770502 -96.181194541597904 -1.2252583312076599 -3.0257678891818802 -96.152612184036698 -1.1356843608244001 -3.02200506261567 -96.125275382957298 -1.04160987231635 -3.01837522164552 -96.099332987513307 -0.94228604878186195 -3.01490258203027 -96.075092095106299 -0.83685220463394405 -3.01163323588223 -96.052992539767004 -0.72439509326061602 -3.0086327561550599 -96.033646206613597 -0.603815720594292 -3.0059920413658099 -96.009801093572307 -0.40362468621262698 -3.00272569622715 -96.0026234480098 -0.33153227242099298 -3.0017398981796402 -95.996678408161799 -0.25651798585829899 -3.0009214075628998 -95.992196235220703 -0.17866687104887899 -3.0003032042150601 -95.989437460228999 -0.098489084747884106 -2.99992233606025 -95.988605794170596 -0.016976117759896901 -2.9998075798351 -95.989737518419005 0.064335183950912506 -2.9999639429555001 -95.9989655205828 0.32179916114623303 -3.0012358509553798 -96.013978519714996 0.486075129611999 -3.0033041712032 -96.035133311204504 0.63678204801869198 -3.0062088150108299 -96.060548433603003 0.77505873526798796 -3.00967502454928 -96.0888952502536 0.90238515061157398 -3.0135077069898299 -96.119379601505401 1.02051573478193 -3.01759155567854 -96.151743864637695 1.1314804270432599 -3.0218870219121898 -96.237453442543298 1.3948920968932501 -3.0331390587099301 -96.292362491050895 1.5384256120907001 -3.0402461319563701 -96.350262551986603 1.67214421176012 -3.0476183771363501 -96.410786322598796 1.7977114444817099 -3.0551869483195202 -96.473694416835201 1.9163533276123299 -3.0629017758538399 -96.538844048731903 2.0291268778584799 -3.0707259230678301 -96.606231196121698 2.13672635083871 -3.07863949082981 -96.811196133991402 2.4399872014157999 -3.10213254563189 -96.954739962240794 2.6226021263831498 -3.1178714107282501 -97.106967623236301 2.7925745121568699 -3.1337415871736898 -97.268892753486497 2.9516874115127498 -3.1496610054685301 -97.441459177008298 3.1014438929384802 -3.16554599481023 -97.627092677795403 3.2424190845055501 -3.1812934074597998 -97.827979068820596 3.3750823325267398 -3.1967983141706999 -98.139168453394504 3.5474496649477198 -3.21774900976575 -98.229851420424396 3.59441568392934 -3.2235516875274399 -98.324362347935804 3.64001216151875 -3.2292728628621501 -98.423295554904598 3.6841712833668399 -3.2348951769130401 -98.527291220003093 3.7267722595194601 -3.2403943763305798 -98.637111754581198 3.7676337973864098 -3.24573747276103 -98.753915715986807 3.80647209252052 -3.2508762623205798 -98.987599677837594 3.8739937541218001 -3.2599032536121801 -99.099904421626704 3.9026750183611298 -3.2637769331881299 -99.219805723448204 3.92943781770835 -3.2674226987069499 -99.350111341018007 3.95390170461254 -3.27078309615441 -99.492465501765693 3.9751060171311501 -3.2737195559006098 -99.647705091853894 3.9912707660028302 -3.2759712596920498 -99.815325434409004 4.0000026047861503 -3.2771871021122099 -99.989999999999995 4 -3.2771867673098498 + 0 9 0.029843027886451101 7 0.0593759307342498 7 0.128065561568356 7 0.20546995861752801 7 0.26119721485254199 7 0.29438420215910099 7 0.321148352645382 7 0.34111072035250001 7 0.38335509115817801 7 0.43148545948003197 7 0.52187718826764495 7 0.61223739746654005 7 0.64930319235210798 7 0.66899793938283503 7 0.71352519979502105 7 0.77946905512364695 7 0.90738371807450302 7 0.95724747794979004 7 1 9 +6 1 0 0 +7 0 0 8 135 20 -103.98999999999999 0 -3 -103.99000025844801 -0.12247142476504801 -2.99999997653308 -103.985713486433 -0.243334236110265 -3.0005911892343899 -103.977342257703 -0.35900206195598899 -3.00174602244623 -103.96574775850701 -0.46809484335532497 -3.0033414523584301 -103.951767011966 -0.57036092823031503 -3.0052572033486999 -103.935988231373 -0.66629564416078002 -3.0074088623767601 -103.918718391409 -0.75706097548988005 -3.00975199577173 -103.881231510853 -0.93065424983636602 -3.0148082408587298 -103.86126421455 -1.01256424727119 -3.0174879816989302 -103.84019368733399 -1.0907017395101899 -3.0202997284892299 -103.818176651998 -1.1655268071534 -3.02321954738263 -103.795328453152 -1.23739183877981 -3.0262295067301501 -103.771735468381 -1.3065999090895699 -3.0293158657738601 -103.747459561543 -1.3734285306140599 -3.03246832277113 -103.664562075002 -1.5885796399312599 -3.0431510468513201 -103.603200847907 -1.72719172370098 -3.0509280414989499 -103.53895360145 -1.8569897087898299 -3.0589197748946999 -103.472068970542 -1.9794160099909901 -3.0670713509238299 -103.402692796333 -2.0955220868369602 -3.0753420942497698 -103.330889015921 -2.2061878648928501 -3.0837014067500599 -103.25661366180699 -2.3120261145350298 -3.0921304006100301 -103.09308152334501 -2.5281422644351998 -3.1101800682191998 -103.003195594375 -2.6371677523589399 -3.1198075966390801 -102.909936109013 -2.7414618549811398 -3.1294759868352702 -102.813092928149 -2.8415287279177099 -3.1391639972423402 -102.71239186058401 -2.9377261509929098 -3.1488514604253499 -102.60747110775 -3.0303251186462798 -3.1585181604406101 -102.49781963720601 -3.11953279278457 -3.16814268387692 -102.299781406638 -3.2673562216611498 -3.18458296092252 -102.21406309089799 -3.3275206236793502 -3.1914278333794002 -102.12524310237499 -3.3860338706019002 -3.1982280822347899 -102.03296437124899 -3.4429149503009699 -3.2049723687924101 -101.93681899297199 -3.4981494671766602 -3.2116461959097702 -101.83630783282 -3.5516894331662199 -3.2182311521784799 -101.73073293523601 -3.60344337463816 -3.2247029997477901 -101.552496508204 -3.68292190593833 -3.2347956666686501 -101.483823255228 -3.7118826084809902 -3.2385087868132301 -101.412770800115 -3.7401144781614799 -3.2421619608271799 -101.339063151129 -3.7675672190466498 -3.2457457670992298 -101.262393968111 -3.7941686446095502 -3.24924773275451 -101.18240145179 -3.8198210383586901 -3.2526516625233999 -101.098604657978 -3.8443898543948198 -3.25593593152951 -100.93908722316399 -3.8864698786656202 -3.2615987077983601 -100.865112687931 -3.9043845478122501 -3.26402368995929 -100.787874194325 -3.9213667819404301 -3.2663352964635601 -100.706914657201 -3.9372849837398798 -3.2685132947050302 -100.621806934546 -3.9519314087859398 -3.2705266380724498 -100.53213741912199 -3.9650156323407701 -3.2723324925343502 -100.437489630098 -3.9761580161546202 -3.27387526322403 -100.26279541187699 -3.99139024660884 -3.2759883232426898 -100.184450483662 -3.9966106413840001 -3.27671422192791 -100.103357921823 -4.0001929046959201 -3.2772134618767499 -100.020597894742 -4.0018675987604997 -3.27744714296872 -99.937367371704397 -4.0014994471385403 -3.2773956870635201 -99.854973696660593 -3.9991203089027501 -3.2770638548630799 -99.774820201441102 -3.9949429827390901 -3.2764824127385599 -99.536629357378501 -3.97753072332879 -3.2740641347950201 -99.3893674885976 -3.95923691634284 -3.2715290247801998 -99.253785039807397 -3.9365106311799001 -3.26839506974131 -99.128396219490895 -3.91054744004076 -3.2648412334738 -99.011830116549604 -3.8821915711489501 -3.26099342250017 -98.902664045706501 -3.8519997375610799 -3.2569342128907599 -98.799567158832502 -3.8201698268446602 -3.2526966986597401 -98.588740052321398 -3.7484036009154398 -3.2432450218764202 -98.483284629980005 -3.70826498271501 -3.23801782433156 -98.383337791789202 -3.6664753734427098 -3.23264255796273 -98.288079513995697 -3.6232066565882599 -3.2271506631828699 -98.196938281817395 -3.5785714093848999 -3.2215648814672599 -98.1094425390759 -3.53264268356275 -3.2159024249989701 -98.025169698289503 -3.48545830721529 -3.2101760903985799 -97.790960830115196 -3.3460219784229399 -3.1935331282975201 -97.648486212712797 -3.2506829071916501 -3.18248679293916 -97.514156878020302 -3.1510437315462099 -3.1713158833569302 -97.386791393399307 -3.0469949874280702 -3.1600646430119599 -97.265548234414396 -2.93829796411468 -3.14877047583439 -97.149761889340297 -2.8245828569452698 -3.13746629442005 -97.038969737894305 -2.70527817426535 -3.1261808457873701 -96.826654753178403 -2.4536376167828098 -3.1037093407215801 -96.725488340486393 -2.3217209607125602 -3.0925611668152899 -96.628604744551097 -2.1825621780659801 -3.08149812756779 -96.535815343551107 -2.03464036113655 -3.0705539499224499 -96.447070378938093 -1.8767881923035099 -3.0597709454165001 -96.362854116891896 -1.7060665182024399 -3.0492596991932701 -96.283622497113598 -1.52048303015094 -3.0391290141770502 -96.181194541597904 -1.2252583312076599 -3.0257678891818802 -96.152612184036698 -1.1356843608244001 -3.02200506261567 -96.125275382957298 -1.04160987231635 -3.01837522164552 -96.099332987513307 -0.94228604878186195 -3.01490258203027 -96.075092095106299 -0.83685220463394405 -3.01163323588223 -96.052992539767004 -0.72439509326061602 -3.0086327561550599 -96.033646206613597 -0.603815720594292 -3.0059920413658099 -96.009801093572307 -0.40362468621262698 -3.00272569622715 -96.0026234480098 -0.33153227242099298 -3.0017398981796402 -95.996678408161799 -0.25651798585829899 -3.0009214075628998 -95.992196235220703 -0.17866687104887899 -3.0003032042150601 -95.989437460228999 -0.098489084747884106 -2.99992233606025 -95.988605794170596 -0.016976117759896901 -2.9998075798351 -95.989737518419005 0.064335183950912506 -2.9999639429555001 -95.9989655205828 0.32179916114623303 -3.0012358509553798 -96.013978519714996 0.486075129611999 -3.0033041712032 -96.035133311204504 0.63678204801869198 -3.0062088150108299 -96.060548433603003 0.77505873526798796 -3.00967502454928 -96.0888952502536 0.90238515061157398 -3.0135077069898299 -96.119379601505401 1.02051573478193 -3.01759155567854 -96.151743864637695 1.1314804270432599 -3.0218870219121898 -96.237453442543298 1.3948920968932501 -3.0331390587099301 -96.292362491050895 1.5384256120907001 -3.0402461319563701 -96.350262551986603 1.67214421176012 -3.0476183771363501 -96.410786322598796 1.7977114444817099 -3.0551869483195202 -96.473694416835201 1.9163533276123299 -3.0629017758538399 -96.538844048731903 2.0291268778584799 -3.0707259230678301 -96.606231196121698 2.13672635083871 -3.07863949082981 -96.811196133991402 2.4399872014157999 -3.10213254563189 -96.954739962240794 2.6226021263831498 -3.1178714107282501 -97.106967623236301 2.7925745121568699 -3.1337415871736898 -97.268892753486497 2.9516874115127498 -3.1496610054685301 -97.441459177008298 3.1014438929384802 -3.16554599481023 -97.627092677795403 3.2424190845055501 -3.1812934074597998 -97.827979068820596 3.3750823325267398 -3.1967983141706999 -98.139168453394504 3.5474496649477198 -3.21774900976575 -98.229851420424396 3.59441568392934 -3.2235516875274399 -98.324362347935804 3.64001216151875 -3.2292728628621501 -98.423295554904598 3.6841712833668399 -3.2348951769130401 -98.527291220003093 3.7267722595194601 -3.2403943763305798 -98.637111754581198 3.7676337973864098 -3.24573747276103 -98.753915715986807 3.80647209252052 -3.2508762623205798 -98.987599677837594 3.8739937541218001 -3.2599032536121801 -99.099904421626704 3.9026750183611298 -3.2637769331881299 -99.219805723448204 3.92943781770835 -3.2674226987069499 -99.350111341018007 3.95390170461254 -3.27078309615441 -99.492465501765693 3.9751060171311501 -3.2737195559006098 -99.647705091853894 3.9912707660028302 -3.2759712596920498 -99.815325434409004 4.0000026047861503 -3.2771871021122099 -99.989999999999995 4 -3.2771867673098498 + 0 9 0.029843027886451101 7 0.0593759307342498 7 0.128065561568356 7 0.20546995861752801 7 0.26119721485254199 7 0.29438420215910099 7 0.321148352645382 7 0.34111072035250001 7 0.38335509115817801 7 0.43148545948003197 7 0.52187718826764495 7 0.61223739746654005 7 0.64930319235210798 7 0.66899793938283503 7 0.71352519979502105 7 0.77946905512364695 7 0.90738371807450302 7 0.95724747794979004 7 1 9 +6 -1 0 0 +7 0 0 8 135 20 -103.98999999999999 0 -3 -103.99000025844801 -0.12247142476504801 -2.99999997653308 -103.985713486433 -0.243334236110265 -3.0005911892343899 -103.977342257703 -0.35900206195598899 -3.00174602244623 -103.96574775850701 -0.46809484335532497 -3.0033414523584301 -103.951767011966 -0.57036092823031503 -3.0052572033486999 -103.935988231373 -0.66629564416078002 -3.0074088623767601 -103.918718391409 -0.75706097548988005 -3.00975199577173 -103.881231510853 -0.93065424983636602 -3.0148082408587298 -103.86126421455 -1.01256424727119 -3.0174879816989302 -103.84019368733399 -1.0907017395101899 -3.0202997284892299 -103.818176651998 -1.1655268071534 -3.02321954738263 -103.795328453152 -1.23739183877981 -3.0262295067301501 -103.771735468381 -1.3065999090895699 -3.0293158657738601 -103.747459561543 -1.3734285306140599 -3.03246832277113 -103.664562075002 -1.5885796399312599 -3.0431510468513201 -103.603200847907 -1.72719172370098 -3.0509280414989499 -103.53895360145 -1.8569897087898299 -3.0589197748946999 -103.472068970542 -1.9794160099909901 -3.0670713509238299 -103.402692796333 -2.0955220868369602 -3.0753420942497698 -103.330889015921 -2.2061878648928501 -3.0837014067500599 -103.25661366180699 -2.3120261145350298 -3.0921304006100301 -103.09308152334501 -2.5281422644351998 -3.1101800682191998 -103.003195594375 -2.6371677523589399 -3.1198075966390801 -102.909936109013 -2.7414618549811398 -3.1294759868352702 -102.813092928149 -2.8415287279177099 -3.1391639972423402 -102.71239186058401 -2.9377261509929098 -3.1488514604253499 -102.60747110775 -3.0303251186462798 -3.1585181604406101 -102.49781963720601 -3.11953279278457 -3.16814268387692 -102.299781406638 -3.2673562216611498 -3.18458296092252 -102.21406309089799 -3.3275206236793502 -3.1914278333794002 -102.12524310237499 -3.3860338706019002 -3.1982280822347899 -102.03296437124899 -3.4429149503009699 -3.2049723687924101 -101.93681899297199 -3.4981494671766602 -3.2116461959097702 -101.83630783282 -3.5516894331662199 -3.2182311521784799 -101.73073293523601 -3.60344337463816 -3.2247029997477901 -101.552496508204 -3.68292190593833 -3.2347956666686501 -101.483823255228 -3.7118826084809902 -3.2385087868132301 -101.412770800115 -3.7401144781614799 -3.2421619608271799 -101.339063151129 -3.7675672190466498 -3.2457457670992298 -101.262393968111 -3.7941686446095502 -3.24924773275451 -101.18240145179 -3.8198210383586901 -3.2526516625233999 -101.098604657978 -3.8443898543948198 -3.25593593152951 -100.93908722316399 -3.8864698786656202 -3.2615987077983601 -100.865112687931 -3.9043845478122501 -3.26402368995929 -100.787874194325 -3.9213667819404301 -3.2663352964635601 -100.706914657201 -3.9372849837398798 -3.2685132947050302 -100.621806934546 -3.9519314087859398 -3.2705266380724498 -100.53213741912199 -3.9650156323407701 -3.2723324925343502 -100.437489630098 -3.9761580161546202 -3.27387526322403 -100.26279541187699 -3.99139024660884 -3.2759883232426898 -100.184450483662 -3.9966106413840001 -3.27671422192791 -100.103357921823 -4.0001929046959201 -3.2772134618767499 -100.020597894742 -4.0018675987604997 -3.27744714296872 -99.937367371704397 -4.0014994471385403 -3.2773956870635201 -99.854973696660593 -3.9991203089027501 -3.2770638548630799 -99.774820201441102 -3.9949429827390901 -3.2764824127385599 -99.536629357378501 -3.97753072332879 -3.2740641347950201 -99.3893674885976 -3.95923691634284 -3.2715290247801998 -99.253785039807397 -3.9365106311799001 -3.26839506974131 -99.128396219490895 -3.91054744004076 -3.2648412334738 -99.011830116549604 -3.8821915711489501 -3.26099342250017 -98.902664045706501 -3.8519997375610799 -3.2569342128907599 -98.799567158832502 -3.8201698268446602 -3.2526966986597401 -98.588740052321398 -3.7484036009154398 -3.2432450218764202 -98.483284629980005 -3.70826498271501 -3.23801782433156 -98.383337791789202 -3.6664753734427098 -3.23264255796273 -98.288079513995697 -3.6232066565882599 -3.2271506631828699 -98.196938281817395 -3.5785714093848999 -3.2215648814672599 -98.1094425390759 -3.53264268356275 -3.2159024249989701 -98.025169698289503 -3.48545830721529 -3.2101760903985799 -97.790960830115196 -3.3460219784229399 -3.1935331282975201 -97.648486212712797 -3.2506829071916501 -3.18248679293916 -97.514156878020302 -3.1510437315462099 -3.1713158833569302 -97.386791393399307 -3.0469949874280702 -3.1600646430119599 -97.265548234414396 -2.93829796411468 -3.14877047583439 -97.149761889340297 -2.8245828569452698 -3.13746629442005 -97.038969737894305 -2.70527817426535 -3.1261808457873701 -96.826654753178403 -2.4536376167828098 -3.1037093407215801 -96.725488340486393 -2.3217209607125602 -3.0925611668152899 -96.628604744551097 -2.1825621780659801 -3.08149812756779 -96.535815343551107 -2.03464036113655 -3.0705539499224499 -96.447070378938093 -1.8767881923035099 -3.0597709454165001 -96.362854116891896 -1.7060665182024399 -3.0492596991932701 -96.283622497113598 -1.52048303015094 -3.0391290141770502 -96.181194541597904 -1.2252583312076599 -3.0257678891818802 -96.152612184036698 -1.1356843608244001 -3.02200506261567 -96.125275382957298 -1.04160987231635 -3.01837522164552 -96.099332987513307 -0.94228604878186195 -3.01490258203027 -96.075092095106299 -0.83685220463394405 -3.01163323588223 -96.052992539767004 -0.72439509326061602 -3.0086327561550599 -96.033646206613597 -0.603815720594292 -3.0059920413658099 -96.009801093572307 -0.40362468621262698 -3.00272569622715 -96.0026234480098 -0.33153227242099298 -3.0017398981796402 -95.996678408161799 -0.25651798585829899 -3.0009214075628998 -95.992196235220703 -0.17866687104887899 -3.0003032042150601 -95.989437460228999 -0.098489084747884106 -2.99992233606025 -95.988605794170596 -0.016976117759896901 -2.9998075798351 -95.989737518419005 0.064335183950912506 -2.9999639429555001 -95.9989655205828 0.32179916114623303 -3.0012358509553798 -96.013978519714996 0.486075129611999 -3.0033041712032 -96.035133311204504 0.63678204801869198 -3.0062088150108299 -96.060548433603003 0.77505873526798796 -3.00967502454928 -96.0888952502536 0.90238515061157398 -3.0135077069898299 -96.119379601505401 1.02051573478193 -3.01759155567854 -96.151743864637695 1.1314804270432599 -3.0218870219121898 -96.237453442543298 1.3948920968932501 -3.0331390587099301 -96.292362491050895 1.5384256120907001 -3.0402461319563701 -96.350262551986603 1.67214421176012 -3.0476183771363501 -96.410786322598796 1.7977114444817099 -3.0551869483195202 -96.473694416835201 1.9163533276123299 -3.0629017758538399 -96.538844048731903 2.0291268778584799 -3.0707259230678301 -96.606231196121698 2.13672635083871 -3.07863949082981 -96.811196133991402 2.4399872014157999 -3.10213254563189 -96.954739962240794 2.6226021263831498 -3.1178714107282501 -97.106967623236301 2.7925745121568699 -3.1337415871736898 -97.268892753486497 2.9516874115127498 -3.1496610054685301 -97.441459177008298 3.1014438929384802 -3.16554599481023 -97.627092677795403 3.2424190845055501 -3.1812934074597998 -97.827979068820596 3.3750823325267398 -3.1967983141706999 -98.139168453394504 3.5474496649477198 -3.21774900976575 -98.229851420424396 3.59441568392934 -3.2235516875274399 -98.324362347935804 3.64001216151875 -3.2292728628621501 -98.423295554904598 3.6841712833668399 -3.2348951769130401 -98.527291220003093 3.7267722595194601 -3.2403943763305798 -98.637111754581198 3.7676337973864098 -3.24573747276103 -98.753915715986807 3.80647209252052 -3.2508762623205798 -98.987599677837594 3.8739937541218001 -3.2599032536121801 -99.099904421626704 3.9026750183611298 -3.2637769331881299 -99.219805723448204 3.92943781770835 -3.2674226987069499 -99.350111341018007 3.95390170461254 -3.27078309615441 -99.492465501765693 3.9751060171311501 -3.2737195559006098 -99.647705091853894 3.9912707660028302 -3.2759712596920498 -99.815325434409004 4.0000026047861503 -3.2771871021122099 -99.989999999999995 4 -3.2771867673098498 + 0 9 0.029843027886451101 7 0.0593759307342498 7 0.128065561568356 7 0.20546995861752801 7 0.26119721485254199 7 0.29438420215910099 7 0.321148352645382 7 0.34111072035250001 7 0.38335509115817801 7 0.43148545948003197 7 0.52187718826764495 7 0.61223739746654005 7 0.64930319235210798 7 0.66899793938283503 7 0.71352519979502105 7 0.77946905512364695 7 0.90738371807450302 7 0.95724747794979004 7 1 9 +6 -1 0 0 +7 0 0 8 135 20 -103.98999999999999 0 -3 -103.99000025844801 -0.12247142476504801 -2.99999997653308 -103.985713486433 -0.243334236110265 -3.0005911892343899 -103.977342257703 -0.35900206195598899 -3.00174602244623 -103.96574775850701 -0.46809484335532497 -3.0033414523584301 -103.951767011966 -0.57036092823031503 -3.0052572033486999 -103.935988231373 -0.66629564416078002 -3.0074088623767601 -103.918718391409 -0.75706097548988005 -3.00975199577173 -103.881231510853 -0.93065424983636602 -3.0148082408587298 -103.86126421455 -1.01256424727119 -3.0174879816989302 -103.84019368733399 -1.0907017395101899 -3.0202997284892299 -103.818176651998 -1.1655268071534 -3.02321954738263 -103.795328453152 -1.23739183877981 -3.0262295067301501 -103.771735468381 -1.3065999090895699 -3.0293158657738601 -103.747459561543 -1.3734285306140599 -3.03246832277113 -103.664562075002 -1.5885796399312599 -3.0431510468513201 -103.603200847907 -1.72719172370098 -3.0509280414989499 -103.53895360145 -1.8569897087898299 -3.0589197748946999 -103.472068970542 -1.9794160099909901 -3.0670713509238299 -103.402692796333 -2.0955220868369602 -3.0753420942497698 -103.330889015921 -2.2061878648928501 -3.0837014067500599 -103.25661366180699 -2.3120261145350298 -3.0921304006100301 -103.09308152334501 -2.5281422644351998 -3.1101800682191998 -103.003195594375 -2.6371677523589399 -3.1198075966390801 -102.909936109013 -2.7414618549811398 -3.1294759868352702 -102.813092928149 -2.8415287279177099 -3.1391639972423402 -102.71239186058401 -2.9377261509929098 -3.1488514604253499 -102.60747110775 -3.0303251186462798 -3.1585181604406101 -102.49781963720601 -3.11953279278457 -3.16814268387692 -102.299781406638 -3.2673562216611498 -3.18458296092252 -102.21406309089799 -3.3275206236793502 -3.1914278333794002 -102.12524310237499 -3.3860338706019002 -3.1982280822347899 -102.03296437124899 -3.4429149503009699 -3.2049723687924101 -101.93681899297199 -3.4981494671766602 -3.2116461959097702 -101.83630783282 -3.5516894331662199 -3.2182311521784799 -101.73073293523601 -3.60344337463816 -3.2247029997477901 -101.552496508204 -3.68292190593833 -3.2347956666686501 -101.483823255228 -3.7118826084809902 -3.2385087868132301 -101.412770800115 -3.7401144781614799 -3.2421619608271799 -101.339063151129 -3.7675672190466498 -3.2457457670992298 -101.262393968111 -3.7941686446095502 -3.24924773275451 -101.18240145179 -3.8198210383586901 -3.2526516625233999 -101.098604657978 -3.8443898543948198 -3.25593593152951 -100.93908722316399 -3.8864698786656202 -3.2615987077983601 -100.865112687931 -3.9043845478122501 -3.26402368995929 -100.787874194325 -3.9213667819404301 -3.2663352964635601 -100.706914657201 -3.9372849837398798 -3.2685132947050302 -100.621806934546 -3.9519314087859398 -3.2705266380724498 -100.53213741912199 -3.9650156323407701 -3.2723324925343502 -100.437489630098 -3.9761580161546202 -3.27387526322403 -100.26279541187699 -3.99139024660884 -3.2759883232426898 -100.184450483662 -3.9966106413840001 -3.27671422192791 -100.103357921823 -4.0001929046959201 -3.2772134618767499 -100.020597894742 -4.0018675987604997 -3.27744714296872 -99.937367371704397 -4.0014994471385403 -3.2773956870635201 -99.854973696660593 -3.9991203089027501 -3.2770638548630799 -99.774820201441102 -3.9949429827390901 -3.2764824127385599 -99.536629357378501 -3.97753072332879 -3.2740641347950201 -99.3893674885976 -3.95923691634284 -3.2715290247801998 -99.253785039807397 -3.9365106311799001 -3.26839506974131 -99.128396219490895 -3.91054744004076 -3.2648412334738 -99.011830116549604 -3.8821915711489501 -3.26099342250017 -98.902664045706501 -3.8519997375610799 -3.2569342128907599 -98.799567158832502 -3.8201698268446602 -3.2526966986597401 -98.588740052321398 -3.7484036009154398 -3.2432450218764202 -98.483284629980005 -3.70826498271501 -3.23801782433156 -98.383337791789202 -3.6664753734427098 -3.23264255796273 -98.288079513995697 -3.6232066565882599 -3.2271506631828699 -98.196938281817395 -3.5785714093848999 -3.2215648814672599 -98.1094425390759 -3.53264268356275 -3.2159024249989701 -98.025169698289503 -3.48545830721529 -3.2101760903985799 -97.790960830115196 -3.3460219784229399 -3.1935331282975201 -97.648486212712797 -3.2506829071916501 -3.18248679293916 -97.514156878020302 -3.1510437315462099 -3.1713158833569302 -97.386791393399307 -3.0469949874280702 -3.1600646430119599 -97.265548234414396 -2.93829796411468 -3.14877047583439 -97.149761889340297 -2.8245828569452698 -3.13746629442005 -97.038969737894305 -2.70527817426535 -3.1261808457873701 -96.826654753178403 -2.4536376167828098 -3.1037093407215801 -96.725488340486393 -2.3217209607125602 -3.0925611668152899 -96.628604744551097 -2.1825621780659801 -3.08149812756779 -96.535815343551107 -2.03464036113655 -3.0705539499224499 -96.447070378938093 -1.8767881923035099 -3.0597709454165001 -96.362854116891896 -1.7060665182024399 -3.0492596991932701 -96.283622497113598 -1.52048303015094 -3.0391290141770502 -96.181194541597904 -1.2252583312076599 -3.0257678891818802 -96.152612184036698 -1.1356843608244001 -3.02200506261567 -96.125275382957298 -1.04160987231635 -3.01837522164552 -96.099332987513307 -0.94228604878186195 -3.01490258203027 -96.075092095106299 -0.83685220463394405 -3.01163323588223 -96.052992539767004 -0.72439509326061602 -3.0086327561550599 -96.033646206613597 -0.603815720594292 -3.0059920413658099 -96.009801093572307 -0.40362468621262698 -3.00272569622715 -96.0026234480098 -0.33153227242099298 -3.0017398981796402 -95.996678408161799 -0.25651798585829899 -3.0009214075628998 -95.992196235220703 -0.17866687104887899 -3.0003032042150601 -95.989437460228999 -0.098489084747884106 -2.99992233606025 -95.988605794170596 -0.016976117759896901 -2.9998075798351 -95.989737518419005 0.064335183950912506 -2.9999639429555001 -95.9989655205828 0.32179916114623303 -3.0012358509553798 -96.013978519714996 0.486075129611999 -3.0033041712032 -96.035133311204504 0.63678204801869198 -3.0062088150108299 -96.060548433603003 0.77505873526798796 -3.00967502454928 -96.0888952502536 0.90238515061157398 -3.0135077069898299 -96.119379601505401 1.02051573478193 -3.01759155567854 -96.151743864637695 1.1314804270432599 -3.0218870219121898 -96.237453442543298 1.3948920968932501 -3.0331390587099301 -96.292362491050895 1.5384256120907001 -3.0402461319563701 -96.350262551986603 1.67214421176012 -3.0476183771363501 -96.410786322598796 1.7977114444817099 -3.0551869483195202 -96.473694416835201 1.9163533276123299 -3.0629017758538399 -96.538844048731903 2.0291268778584799 -3.0707259230678301 -96.606231196121698 2.13672635083871 -3.07863949082981 -96.811196133991402 2.4399872014157999 -3.10213254563189 -96.954739962240794 2.6226021263831498 -3.1178714107282501 -97.106967623236301 2.7925745121568699 -3.1337415871736898 -97.268892753486497 2.9516874115127498 -3.1496610054685301 -97.441459177008298 3.1014438929384802 -3.16554599481023 -97.627092677795403 3.2424190845055501 -3.1812934074597998 -97.827979068820596 3.3750823325267398 -3.1967983141706999 -98.139168453394504 3.5474496649477198 -3.21774900976575 -98.229851420424396 3.59441568392934 -3.2235516875274399 -98.324362347935804 3.64001216151875 -3.2292728628621501 -98.423295554904598 3.6841712833668399 -3.2348951769130401 -98.527291220003093 3.7267722595194601 -3.2403943763305798 -98.637111754581198 3.7676337973864098 -3.24573747276103 -98.753915715986807 3.80647209252052 -3.2508762623205798 -98.987599677837594 3.8739937541218001 -3.2599032536121801 -99.099904421626704 3.9026750183611298 -3.2637769331881299 -99.219805723448204 3.92943781770835 -3.2674226987069499 -99.350111341018007 3.95390170461254 -3.27078309615441 -99.492465501765693 3.9751060171311501 -3.2737195559006098 -99.647705091853894 3.9912707660028302 -3.2759712596920498 -99.815325434409004 4.0000026047861503 -3.2771871021122099 -99.989999999999995 4 -3.2771867673098498 + 0 9 0.029843027886451101 7 0.0593759307342498 7 0.128065561568356 7 0.20546995861752801 7 0.26119721485254199 7 0.29438420215910099 7 0.321148352645382 7 0.34111072035250001 7 0.38335509115817801 7 0.43148545948003197 7 0.52187718826764495 7 0.61223739746654005 7 0.64930319235210798 7 0.66899793938283503 7 0.71352519979502105 7 0.77946905512364695 7 0.90738371807450302 7 0.95724747794979004 7 1 9 +6 0 0 1 +7 0 0 8 135 20 -96.010000000000005 0 -3 -96.009999741551894 0.12247142476504801 -2.9999999765331 -96.014286513567299 0.243334236110265 -3.0005911892344002 -96.022657742297397 0.35900206195598899 -3.0017460224461998 -96.034252241492595 0.46809484335532497 -3.0033414523583999 -96.048232988033703 0.57036092823031503 -3.0052572033486999 -96.064011768626997 0.66629564416078002 -3.0074088623768001 -96.0812816085907 0.75706097548988005 -3.0097519957716998 -96.118768489146902 0.93065424983636602 -3.0148082408587 -96.138735785450095 1.01256424727119 -3.0174879816989 -96.159806312666106 1.0907017395101899 -3.0202997284892001 -96.1818233480017 1.1655268071534 -3.0232195473825998 -96.204671546847905 1.23739183877981 -3.0262295067300999 -96.228264531619402 1.3065999090895699 -3.0293158657739001 -96.252540438457103 1.3734285306140599 -3.0324683227710998 -96.335437924998104 1.5885796399312599 -3.0431510468513001 -96.396799152093195 1.72719172370098 -3.0509280414989002 -96.461046398549996 1.8569897087898299 -3.0589197748946999 -96.527931029458102 1.9794160099909901 -3.0670713509238001 -96.597307203667 2.0955220868369602 -3.0753420942498 -96.669110984079396 2.2061878648928501 -3.0837014067500998 -96.743386338193403 2.3120261145350298 -3.0921304006099999 -96.906918476654795 2.5281422644351998 -3.1101800682191998 -96.996804405624999 2.6371677523589399 -3.1198075966391001 -97.090063890986698 2.7414618549811398 -3.1294759868352999 -97.186907071850797 2.8415287279177099 -3.1391639972423002 -97.287608139415894 2.9377261509929098 -3.1488514604253002 -97.392528892250297 3.0303251186462798 -3.1585181604405999 -97.502180362793794 3.11953279278457 -3.1681426838769 -97.700218593362294 3.2673562216611498 -3.1845829609225 -97.785936909101693 3.3275206236793502 -3.1914278333794002 -97.874756897624906 3.3860338706019002 -3.1982280822348002 -97.967035628751006 3.4429149503009699 -3.2049723687923999 -98.063181007028106 3.4981494671766602 -3.2116461959097999 -98.163692167179903 3.5516894331662199 -3.2182311521784999 -98.269267064763895 3.60344337463816 -3.2247029997477998 -98.447503491795501 3.68292190593833 -3.2347956666686 -98.516176744772395 3.7118826084809902 -3.2385087868131999 -98.587229199884604 3.7401144781614799 -3.2421619608271999 -98.660936848871202 3.7675672190466498 -3.2457457670992 -98.737606031889101 3.7941686446095502 -3.2492477327545002 -98.8175985482101 3.8198210383586901 -3.2526516625233999 -98.901395342021999 3.8443898543948198 -3.2559359315294998 -99.060912776835593 3.8864698786656202 -3.2615987077984001 -99.134887312068699 3.9043845478122501 -3.2640236899592998 -99.212125805674603 3.9213667819404301 -3.2663352964636001 -99.293085342799202 3.9372849837398798 -3.268513294705 -99.3781930654539 3.9519314087859398 -3.2705266380725 -99.467862580878403 3.9650156323407701 -3.2723324925344 -99.562510369901901 3.9761580161546202 -3.2738752632239998 -99.737204588123006 3.99139024660884 -3.2759883232427001 -99.815549516337498 3.9966106413840001 -3.2767142219279002 -99.896642078176598 4.0001929046959201 -3.2772134618767002 -99.979402105258302 4.0018675987604997 -3.2774471429687 -100.062632628296 4.0014994471385403 -3.2773956870635002 -100.14502630333899 3.9991203089027501 -3.2770638548630999 -100.225179798559 3.9949429827390901 -3.2764824127385999 -100.463370642621 3.97753072332879 -3.2740641347950001 -100.610632511402 3.95923691634284 -3.2715290247801998 -100.746214960193 3.9365106311799001 -3.2683950697412998 -100.87160378050901 3.91054744004076 -3.2648412334738 -100.98816988345 3.8821915711489501 -3.2609934225002002 -101.097335954293 3.8519997375610799 -3.2569342128907999 -101.200432841167 3.8201698268446602 -3.2526966986597001 -101.411259947679 3.7484036009154398 -3.2432450218764002 -101.51671537001999 3.70826498271501 -3.2380178243316 -101.616662208211 3.6664753734427098 -3.2326425579626998 -101.711920486004 3.6232066565882599 -3.2271506631829001 -101.803061718183 3.5785714093848999 -3.2215648814672999 -101.890557460924 3.53264268356275 -3.2159024249989998 -101.97483030171 3.48545830721529 -3.2101760903985999 -102.209039169885 3.3460219784229399 -3.1935331282975001 -102.351513787287 3.2506829071916501 -3.1824867929392 -102.48584312198 3.1510437315462099 -3.1713158833569 -102.61320860660101 3.0469949874280702 -3.1600646430119999 -102.734451765586 2.93829796411468 -3.1487704758344002 -102.85023811066 2.8245828569452698 -3.1374662944201002 -102.96103026210599 2.70527817426535 -3.1261808457873999 -103.173345246822 2.4536376167828098 -3.1037093407216001 -103.274511659514 2.3217209607125602 -3.0925611668153001 -103.371395255449 2.1825621780659801 -3.0814981275678002 -103.46418465644901 2.03464036113655 -3.0705539499224002 -103.55292962106201 1.8767881923035099 -3.0597709454165001 -103.637145883108 1.7060665182024399 -3.0492596991932999 -103.716377502886 1.52048303015094 -3.039129014177 -103.818805458402 1.2252583312076599 -3.0257678891819002 -103.847387815963 1.1356843608244001 -3.0220050626156998 -103.874724617043 1.04160987231635 -3.0183752216455 -103.90066701248701 0.94228604878186195 -3.0149025820303001 -103.924907904894 0.83685220463394405 -3.0116332358822002 -103.947007460233 0.72439509326061602 -3.0086327561550998 -103.96635379338601 0.603815720594292 -3.0059920413658001 -103.99019890642801 0.40362468621262698 -3.0027256962270998 -103.99737655199 0.33153227242099298 -3.0017398981796002 -104.003321591838 0.25651798585829899 -3.0009214075628998 -104.007803764779 0.17866687104887899 -3.0003032042151001 -104.010562539771 0.098489084747884106 -2.9999223360601999 -104.01139420582901 0.016976117759896901 -2.9998075798351 -104.01026248158099 -0.064335183950912506 -2.9999639429555001 -104.001034479417 -0.32179916114623303 -3.0012358509553998 -103.986021480285 -0.486075129611999 -3.0033041712032 -103.964866688795 -0.63678204801869198 -3.0062088150108002 -103.939451566397 -0.77505873526798796 -3.0096750245493 -103.911104749746 -0.90238515061157398 -3.0135077069898002 -103.880620398495 -1.02051573478193 -3.0175915556785 -103.84825613536201 -1.1314804270432599 -3.0218870219122 -103.762546557457 -1.3948920968932501 -3.0331390587098999 -103.70763750894901 -1.5384256120907001 -3.0402461319563998 -103.649737448013 -1.67214421176012 -3.0476183771362999 -103.58921367740101 -1.7977114444817099 -3.0551869483195002 -103.526305583165 -1.9163533276123299 -3.0629017758538 -103.461155951268 -2.0291268778584799 -3.0707259230677999 -103.393768803878 -2.13672635083871 -3.0786394908297998 -103.188803866009 -2.4399872014157999 -3.1021325456319002 -103.04526003775899 -2.6226021263831498 -3.1178714107282 -102.893032376764 -2.7925745121568699 -3.1337415871737 -102.731107246514 -2.9516874115127498 -3.1496610054684999 -102.558540822992 -3.1014438929384802 -3.1655459948101998 -102.37290732220499 -3.2424190845055501 -3.1812934074597998 -102.17202093117901 -3.3750823325267398 -3.1967983141706999 -101.860831546605 -3.5474496649477198 -3.2177490097658001 -101.770148579576 -3.59441568392934 -3.2235516875274 -101.675637652064 -3.64001216151875 -3.2292728628621998 -101.576704445095 -3.6841712833668399 -3.2348951769130001 -101.47270877999701 -3.7267722595194601 -3.2403943763305998 -101.362888245419 -3.7676337973864098 -3.2457374727610002 -101.24608428401299 -3.80647209252052 -3.2508762623205998 -101.01240032216199 -3.8739937541218001 -3.2599032536122001 -100.900095578373 -3.9026750183611298 -3.2637769331881001 -100.780194276552 -3.92943781770835 -3.2674226987070001 -100.64988865898199 -3.95390170461254 -3.2707830961544002 -100.50753449823399 -3.9751060171311501 -3.2737195559006 -100.35229490814601 -3.9912707660028302 -3.2759712596920001 -100.184674565591 -4.0000026047861503 -3.2771871021122001 -100.01000000000001 -4 -3.2771867673098001 + 0 9 0.029843027886451101 7 0.0593759307342498 7 0.128065561568356 7 0.20546995861752801 7 0.26119721485254199 7 0.29438420215910099 7 0.321148352645382 7 0.34111072035250001 7 0.38335509115817801 7 0.43148545948003197 7 0.52187718826764495 7 0.61223739746654005 7 0.64930319235210798 7 0.66899793938283503 7 0.71352519979502105 7 0.77946905512364695 7 0.90738371807450302 7 0.95724747794979004 7 1 9 +6 0 0 1 +7 0 0 8 135 20 -96.010000000000005 0 -3 -96.009999741551894 0.12247142476504801 -2.9999999765331 -96.014286513567299 0.243334236110265 -3.0005911892344002 -96.022657742297397 0.35900206195598899 -3.0017460224461998 -96.034252241492595 0.46809484335532497 -3.0033414523583999 -96.048232988033703 0.57036092823031503 -3.0052572033486999 -96.064011768626997 0.66629564416078002 -3.0074088623768001 -96.0812816085907 0.75706097548988005 -3.0097519957716998 -96.118768489146902 0.93065424983636602 -3.0148082408587 -96.138735785450095 1.01256424727119 -3.0174879816989 -96.159806312666106 1.0907017395101899 -3.0202997284892001 -96.1818233480017 1.1655268071534 -3.0232195473825998 -96.204671546847905 1.23739183877981 -3.0262295067300999 -96.228264531619402 1.3065999090895699 -3.0293158657739001 -96.252540438457103 1.3734285306140599 -3.0324683227710998 -96.335437924998104 1.5885796399312599 -3.0431510468513001 -96.396799152093195 1.72719172370098 -3.0509280414989002 -96.461046398549996 1.8569897087898299 -3.0589197748946999 -96.527931029458102 1.9794160099909901 -3.0670713509238001 -96.597307203667 2.0955220868369602 -3.0753420942498 -96.669110984079396 2.2061878648928501 -3.0837014067500998 -96.743386338193403 2.3120261145350298 -3.0921304006099999 -96.906918476654795 2.5281422644351998 -3.1101800682191998 -96.996804405624999 2.6371677523589399 -3.1198075966391001 -97.090063890986698 2.7414618549811398 -3.1294759868352999 -97.186907071850797 2.8415287279177099 -3.1391639972423002 -97.287608139415894 2.9377261509929098 -3.1488514604253002 -97.392528892250297 3.0303251186462798 -3.1585181604405999 -97.502180362793794 3.11953279278457 -3.1681426838769 -97.700218593362294 3.2673562216611498 -3.1845829609225 -97.785936909101693 3.3275206236793502 -3.1914278333794002 -97.874756897624906 3.3860338706019002 -3.1982280822348002 -97.967035628751006 3.4429149503009699 -3.2049723687923999 -98.063181007028106 3.4981494671766602 -3.2116461959097999 -98.163692167179903 3.5516894331662199 -3.2182311521784999 -98.269267064763895 3.60344337463816 -3.2247029997477998 -98.447503491795501 3.68292190593833 -3.2347956666686 -98.516176744772395 3.7118826084809902 -3.2385087868131999 -98.587229199884604 3.7401144781614799 -3.2421619608271999 -98.660936848871202 3.7675672190466498 -3.2457457670992 -98.737606031889101 3.7941686446095502 -3.2492477327545002 -98.8175985482101 3.8198210383586901 -3.2526516625233999 -98.901395342021999 3.8443898543948198 -3.2559359315294998 -99.060912776835593 3.8864698786656202 -3.2615987077984001 -99.134887312068699 3.9043845478122501 -3.2640236899592998 -99.212125805674603 3.9213667819404301 -3.2663352964636001 -99.293085342799202 3.9372849837398798 -3.268513294705 -99.3781930654539 3.9519314087859398 -3.2705266380725 -99.467862580878403 3.9650156323407701 -3.2723324925344 -99.562510369901901 3.9761580161546202 -3.2738752632239998 -99.737204588123006 3.99139024660884 -3.2759883232427001 -99.815549516337498 3.9966106413840001 -3.2767142219279002 -99.896642078176598 4.0001929046959201 -3.2772134618767002 -99.979402105258302 4.0018675987604997 -3.2774471429687 -100.062632628296 4.0014994471385403 -3.2773956870635002 -100.14502630333899 3.9991203089027501 -3.2770638548630999 -100.225179798559 3.9949429827390901 -3.2764824127385999 -100.463370642621 3.97753072332879 -3.2740641347950001 -100.610632511402 3.95923691634284 -3.2715290247801998 -100.746214960193 3.9365106311799001 -3.2683950697412998 -100.87160378050901 3.91054744004076 -3.2648412334738 -100.98816988345 3.8821915711489501 -3.2609934225002002 -101.097335954293 3.8519997375610799 -3.2569342128907999 -101.200432841167 3.8201698268446602 -3.2526966986597001 -101.411259947679 3.7484036009154398 -3.2432450218764002 -101.51671537001999 3.70826498271501 -3.2380178243316 -101.616662208211 3.6664753734427098 -3.2326425579626998 -101.711920486004 3.6232066565882599 -3.2271506631829001 -101.803061718183 3.5785714093848999 -3.2215648814672999 -101.890557460924 3.53264268356275 -3.2159024249989998 -101.97483030171 3.48545830721529 -3.2101760903985999 -102.209039169885 3.3460219784229399 -3.1935331282975001 -102.351513787287 3.2506829071916501 -3.1824867929392 -102.48584312198 3.1510437315462099 -3.1713158833569 -102.61320860660101 3.0469949874280702 -3.1600646430119999 -102.734451765586 2.93829796411468 -3.1487704758344002 -102.85023811066 2.8245828569452698 -3.1374662944201002 -102.96103026210599 2.70527817426535 -3.1261808457873999 -103.173345246822 2.4536376167828098 -3.1037093407216001 -103.274511659514 2.3217209607125602 -3.0925611668153001 -103.371395255449 2.1825621780659801 -3.0814981275678002 -103.46418465644901 2.03464036113655 -3.0705539499224002 -103.55292962106201 1.8767881923035099 -3.0597709454165001 -103.637145883108 1.7060665182024399 -3.0492596991932999 -103.716377502886 1.52048303015094 -3.039129014177 -103.818805458402 1.2252583312076599 -3.0257678891819002 -103.847387815963 1.1356843608244001 -3.0220050626156998 -103.874724617043 1.04160987231635 -3.0183752216455 -103.90066701248701 0.94228604878186195 -3.0149025820303001 -103.924907904894 0.83685220463394405 -3.0116332358822002 -103.947007460233 0.72439509326061602 -3.0086327561550998 -103.96635379338601 0.603815720594292 -3.0059920413658001 -103.99019890642801 0.40362468621262698 -3.0027256962270998 -103.99737655199 0.33153227242099298 -3.0017398981796002 -104.003321591838 0.25651798585829899 -3.0009214075628998 -104.007803764779 0.17866687104887899 -3.0003032042151001 -104.010562539771 0.098489084747884106 -2.9999223360601999 -104.01139420582901 0.016976117759896901 -2.9998075798351 -104.01026248158099 -0.064335183950912506 -2.9999639429555001 -104.001034479417 -0.32179916114623303 -3.0012358509553998 -103.986021480285 -0.486075129611999 -3.0033041712032 -103.964866688795 -0.63678204801869198 -3.0062088150108002 -103.939451566397 -0.77505873526798796 -3.0096750245493 -103.911104749746 -0.90238515061157398 -3.0135077069898002 -103.880620398495 -1.02051573478193 -3.0175915556785 -103.84825613536201 -1.1314804270432599 -3.0218870219122 -103.762546557457 -1.3948920968932501 -3.0331390587098999 -103.70763750894901 -1.5384256120907001 -3.0402461319563998 -103.649737448013 -1.67214421176012 -3.0476183771362999 -103.58921367740101 -1.7977114444817099 -3.0551869483195002 -103.526305583165 -1.9163533276123299 -3.0629017758538 -103.461155951268 -2.0291268778584799 -3.0707259230677999 -103.393768803878 -2.13672635083871 -3.0786394908297998 -103.188803866009 -2.4399872014157999 -3.1021325456319002 -103.04526003775899 -2.6226021263831498 -3.1178714107282 -102.893032376764 -2.7925745121568699 -3.1337415871737 -102.731107246514 -2.9516874115127498 -3.1496610054684999 -102.558540822992 -3.1014438929384802 -3.1655459948101998 -102.37290732220499 -3.2424190845055501 -3.1812934074597998 -102.17202093117901 -3.3750823325267398 -3.1967983141706999 -101.860831546605 -3.5474496649477198 -3.2177490097658001 -101.770148579576 -3.59441568392934 -3.2235516875274 -101.675637652064 -3.64001216151875 -3.2292728628621998 -101.576704445095 -3.6841712833668399 -3.2348951769130001 -101.47270877999701 -3.7267722595194601 -3.2403943763305998 -101.362888245419 -3.7676337973864098 -3.2457374727610002 -101.24608428401299 -3.80647209252052 -3.2508762623205998 -101.01240032216199 -3.8739937541218001 -3.2599032536122001 -100.900095578373 -3.9026750183611298 -3.2637769331881001 -100.780194276552 -3.92943781770835 -3.2674226987070001 -100.64988865898199 -3.95390170461254 -3.2707830961544002 -100.50753449823399 -3.9751060171311501 -3.2737195559006 -100.35229490814601 -3.9912707660028302 -3.2759712596920001 -100.184674565591 -4.0000026047861503 -3.2771871021122001 -100.01000000000001 -4 -3.2771867673098001 + 0 9 0.029843027886451101 7 0.0593759307342498 7 0.128065561568356 7 0.20546995861752801 7 0.26119721485254199 7 0.29438420215910099 7 0.321148352645382 7 0.34111072035250001 7 0.38335509115817801 7 0.43148545948003197 7 0.52187718826764495 7 0.61223739746654005 7 0.64930319235210798 7 0.66899793938283503 7 0.71352519979502105 7 0.77946905512364695 7 0.90738371807450302 7 0.95724747794979004 7 1 9 +6 1 0 0 +7 1 0 8 226 33 -107.99999959708801 -0.0131341543728976 -7.0000034501204604 1 -107.99995760791801 -0.260257430651823 -7.0001332803487699 1 -107.993211997367 -0.503131284255393 -7.0030526297738298 0.99999999999997102 -107.98016676077501 -0.73771268347097996 -7.0085915612147698 1.0000000000000999 -107.961797923845 -0.96204956217815896 -7.0163304017878403 0.99999999999984901 -107.939115391648 -1.1755070325369501 -7.02582862713344 1.0000000000001099 -107.912952592568 -1.37846458054254 -7.0367242099810401 0.99999999999996403 -107.88383912723 -1.57219147947364 -7.0487836312002798 1 -107.806431902203 -2.0242425859737501 -7.0806647621634804 1 -107.755459816407 -2.2737610636321302 -7.1015132517753399 0.99999999999995703 -107.700899778756 -2.50623111325246 -7.1236930672399197 1.0000000000001099 -107.64245841427901 -2.7294817800088 -7.1472513827112296 0.99999999999987499 -107.581571150638 -2.9394736187741199 -7.1716050488412604 1.00000000000006 -107.517950510532 -3.1414381602288799 -7.1968234756565996 0.99999999999999001 -107.452084958366 -3.3347138885314198 -7.2226907032927397 1 -107.306286989532 -3.73325259810388 -7.2793846269120897 1 -107.225793144341 -3.9360199618939502 -7.3103531155707104 1.00000000000001 -107.14270493687 -4.1305920333586501 -7.3419555522563398 0.99999999999999001 -107.057160547698 -4.3179270406341397 -7.3740973919066404 1 -106.969247842347 -4.4987785373808098 -7.4067041551072599 1.00000000000001 -106.879013333831 -4.6737753552896502 -7.4397165735908199 0.999999999999994 -106.78646107406 -4.8434450331894698 -7.4730895051432897 1 -106.58106292868 -5.2001282554171704 -7.5460223999458798 1 -106.467529280042 -5.3851948241112604 -7.5856499690162096 1.00000000000001 -106.349983038215 -5.5655043278005998 -7.6259100543044296 0.99999999999996303 -106.231212357883 -5.73734945147228 -7.6658254892260898 1.0000000000000699 -106.107815938546 -5.9063591547847203 -7.7064401444282904 0.99999999999993705 -105.98209890445899 -6.0690809168654498 -7.7469099241346404 1.00000000000002 -105.852753404477 -6.2276820278891103 -7.7875773037528297 1 -105.590538620423 -6.5320720040178299 -7.8679432357630601 1 -105.45780816212 -6.6781542366987496 -7.9076530989925304 1.00000000000002 -105.32153193974 -6.8203870130902704 -7.9473858023664201 0.99999999999996902 -105.18148555691999 -6.9589653126697 -7.9871048413947596 0.999999999999998 -105.037404133286 -7.0940379321942704 -8.0267703079827992 1.00000000000003 -104.888973227561 -7.2257151616635902 -8.0663379449714494 0.99999999999998301 -104.735809050738 -7.35407168069022 -8.1057577853705602 1 -104.429240094451 -7.5961548545344204 -8.1816568938884195 1 -104.27651286164 -7.7102621577583701 -8.2181526920452104 0.99999999999997102 -104.118869962697 -7.82153833177414 -8.2544236929925994 1.00000000000006 -103.955647050636 -7.9299205437459204 -8.2903936153385107 0.99999999999994904 -103.786613077672 -8.0354623333007407 -8.3260276363126007 1.00000000000001 -103.610762709239 -8.1379327555560899 -8.3611929584119302 1 -103.427367667357 -8.23723051990968 -8.3957976764255005 1 -103.073148562904 -8.4138774560998097 -8.4582496065692094 1 -102.905052528406 -8.4921349322040793 -8.4862729860283697 0.99999999999994704 -102.730041657966 -8.5677691421778892 -8.5136875586415997 1.0000000000001901 -102.547166323168 -8.6405754131099197 -8.5403827026229706 0.99999999999971501 -102.35537464902001 -8.7102296284937193 -8.5662008401219403 1.00000000000022 -102.153317757583 -8.7762340507957006 -8.5909131803337306 0.99999999999992795 -101.93936831232701 -8.8379294131868402 -8.6142215923767207 1 -101.54000744968199 -8.9362434025792705 -8.6516472625504495 1 -101.362433737473 -8.9749286218490205 -8.6664726211745098 1.0000000000000899 -101.17524007162601 -9.0103431734923891 -8.6801247687474508 0.99999999999970901 -100.976546762379 -9.0418645553393695 -8.6923425339277909 1.0000000000004099 -100.76545127345599 -9.0683133838929599 -8.7026446798013701 0.99999999999971201 -100.542181266962 -9.0881305006426807 -8.7103866766964604 1.0000000000000899 -100.308409360732 -9.0996397773335307 -8.7148853975899208 1 -99.825712148435898 -9.1042728003734794 -8.7166964752735598 1 -99.5895594650638 -9.0970878237942507 -8.71388816050084 1.00000000000004 -99.364169237148403 -9.0812146286345108 -8.7076792640802108 0.99999999999983802 -99.151102816800204 -9.0584121864221796 -8.6987797431625999 1.00000000000026 -98.950795603736495 -9.0302484321826402 -8.6878366801226505 0.99999999999978195 -98.762153414213998 -8.9979870732805907 -8.6753640913231198 1.0000000000000799 -98.583285580999103 -8.9622777831798697 -8.6616337872728302 1 -98.178594772430301 -8.8700564764699106 -8.6263969320681504 1 -97.961078599967195 -8.8112411902736607 -8.6040818801109893 1.0000000000001199 -97.755770410090605 -8.7478382205966696 -8.5802313152746397 0.99999999999960998 -97.560989054583203 -8.6805628024322701 -8.5551669357698792 1.00000000000056 -97.375334767019496 -8.6099583366716708 -8.5291367332011596 0.99999999999959299 -97.197722688068893 -8.5363788233039095 -8.5023110614811994 1.0000000000001299 -97.027169012459296 -8.4600519261275995 -8.4748103155146897 1 -96.669690024808006 -8.28828255877605 -8.41368889530054 1 -96.485412758868705 -8.1919834707471004 -8.3798925170960992 1.00000000000004 -96.308478223038705 -8.0922861286320291 -8.3454200371297205 0.999999999999866 -96.138769338225998 -7.9898380667250901 -8.3105511356194697 1.0000000000001901 -95.974615362104799 -7.8842022569793704 -8.2751825420834404 0.999999999999865 -95.815926667994603 -7.7755601801672096 -8.2394479639215294 1.00000000000004 -95.662746337867901 -7.6645156147089599 -8.2035831023552195 1 -95.305858479645593 -7.39102368519554 -8.1169344267135308 1 -95.106894716646707 -7.2260822391109096 -8.0660222899443106 1.00000000000001 -94.916106020691799 -7.0558274866678303 -8.0149162201232702 0.99999999999999001 -94.732623713519899 -6.8801067302410104 -7.9637180486102803 0.999999999999999 -94.555762210539896 -6.6986587459111604 -7.9125109462702099 1.00000000000001 -94.384953246497503 -6.5111050073193102 -7.8613642485966304 0.999999999999995 -94.219724716031905 -6.3169122110690097 -7.8103358986078302 1 -93.916232874625294 -5.9346390534982802 -7.7138973986133799 1 -93.777012833759798 -5.74809233490069 -7.6684723520068703 1.00000000000003 -93.6414677933533 -5.55483953798963 -7.62316707626964 0.99999999999993305 -93.510009074970299 -5.3548056333878504 -7.5781951128483298 1.0000000000000699 -93.381977062740205 -5.1471830429691803 -7.5335010024253899 0.99999999999996403 -93.256631604641697 -4.9289507951340399 -7.4888728139342096 1.00000000000001 -93.135804626747401 -4.7023052107494197 -7.4450231568582597 1 -92.925365690589302 -4.2742147209349399 -7.3673312197404304 1 -92.834550316488603 -4.0772414740479102 -7.3333158445010804 1.00000000000006 -92.746324684087895 -3.8724048712878201 -7.2998182950865598 0.99999999999982503 -92.660805891948698 -3.65871557669881 -7.2669289031283197 1.00000000000024 -92.578204487932695 -3.4350567842484399 -7.2347746961533197 0.99999999999982703 -92.498856827250805 -3.1999906136513001 -7.2035356648918496 1.00000000000005 -92.423218028153798 -2.9517552785654599 -7.1734441755724498 1 -92.300438455059805 -2.4957200853355799 -7.1241376378686203 1 -92.251422136134195 -2.2966107377482001 -7.1043040729639904 0.99999999999998501 -92.204734553762904 -2.0862702425862198 -7.0852821092850702 1.00000000000006 -92.161769951792493 -1.8695544398442501 -7.0676464820251503 0.99999999999990397 -92.121123737038602 -1.6333082485896 -7.0508819104766403 1.0000000000000799 -92.085996360727293 -1.3878633521795301 -7.0362738863705996 0.99999999999997002 -92.056264466475795 -1.1267745488871199 -7.0238546139907303 1 -92.016456192775607 -0.63426249518895395 -7.0071267514861502 1 -92.002918762844203 -0.40356004345519603 -7.0013952339131302 1.0000000000000999 -91.995058898081098 -0.16355984670484999 -6.9980113392430097 0.99999999999969302 -91.9938870595428 0.079597624613907403 -6.9974140845440997 1.0000000000004201 -91.999479889422602 0.32056623167390802 -6.9996408636024698 0.99999999999971101 -92.011202124910099 0.55459989107335395 -7.0044156268747502 1.0000000000000899 -92.027853133067296 0.77743658460414999 -7.0112256910860999 1 -92.070335763482205 1.218060385776 -7.0286039855253701 1 -92.097635272535697 1.43829771441944 -7.0397731045486296 1.0000000000000799 -92.128876096892796 1.6474081771209701 -7.0525292515280604 0.99999999999978095 -92.1632296869047 1.84648412282334 -7.0665249405484696 1.00000000000027 -92.200827984360302 2.03821271372483 -7.0817474035554397 0.99999999999983702 -92.240315797716505 2.2201052408216402 -7.0976945037224404 1.00000000000004 -92.282070070946503 2.3955711608792498 -7.1144588094846002 1 -92.386266003180396 2.7989889602999698 -7.1560647569123699 1 -92.450380024493398 3.0207681460444 -7.1814862632254499 1.00000000000002 -92.517571417171396 3.2320820724153299 -7.2079123354784702 0.99999999999992095 -92.587480593146793 3.4341869928338502 -7.2351609309767104 1.0000000000001199 -92.659832382474605 3.6281090640175799 -7.2630878534158496 0.99999999999989997 -92.734435752674202 3.8146762956160201 -7.2915853469075103 1.00000000000004 -92.811167054036702 3.9946268112798 -7.3205733885015301 1 -92.982558393105705 4.3730442138179502 -7.3845685275636601 1 -93.077987639188905 4.5691660196445101 -7.4197313942671501 1.00000000000006 -93.175820767230505 4.7576260166063999 -7.4552938331184899 0.99999999999978095 -93.277111602789006 4.9404926110695602 -7.4915044771533603 1.00000000000033 -93.378963111456002 5.1148228016959898 -7.5274459503270501 0.99999999999975697 -93.485904518877405 5.2869968739101498 -7.5644337348834396 1.0000000000000799 -93.593419683367401 5.4513254656401102 -7.6010278002713898 1 -93.821488384709198 5.7821685552495001 -7.6772238815923801 1 -93.942094849893294 5.9474726433193998 -7.71674494186533 0.99999999999997802 -94.065343110367706 6.1074049899584599 -7.7563098384757803 1.00000000000003 -94.191417129827002 6.2624725636334997 -7.7959036648164401 1 -94.320532877928798 6.4130823666444403 -7.8355117159582104 0.99999999999996503 -94.452940608034794 6.5595691457376901 -7.8751186863884097 1.00000000000002 -94.588936648806893 6.7022107383878797 -7.9147085400565098 1 -94.857656619346798 6.9691674671672299 -7.9906602507663997 1 -94.989763061030402 7.0940247999310202 -8.0270241386963406 1.00000000000001 -95.125486205402197 7.2159945503623897 -8.0633417228215496 0.99999999999998102 -95.265144340518205 7.3352148928657996 -8.0995950866813793 1 -95.409104783241503 7.4517864482548202 -8.1357607790426698 1.00000000000002 -95.557798103821298 7.5657767200945303 -8.1718091303393106 0.99999999999998801 -95.711747511021002 7.6772181054412796 -8.2077018768367793 1 -96.014068532496793 7.8830971159198198 -8.2751775618698105 1 -96.161203829156307 7.9780434841032397 -8.3067971783374208 0.999999999999996 -96.313310576705206 8.07086490060769 -8.3381855835569194 1.00000000000001 -96.471708739258602 8.1618601627985008 -8.3694122507137898 0.99999999999997802 -96.635933007469603 8.2502650686103198 -8.4001854241020997 1.00000000000002 -96.807276730229901 8.3362735646593293 -8.4305269643370107 0.999999999999995 -96.986215834547906 8.4193748686842405 -8.4602179871201901 1 -97.318548162410593 8.5607537523010393 -8.5113266686650793 1 -97.468257417031893 8.6202979423884099 -8.5330600164886796 0.99999999999992895 -97.623631512295503 8.6777229064790404 -8.5542126734112696 1.00000000000022 -97.785289180380801 8.7328082472653694 -8.5746804971132704 0.99999999999970002 -97.953906523670398 8.7852544826059304 -8.5943270774084901 1.0000000000002101 -98.130287321745897 8.8346593841884502 -8.6129732643136006 0.99999999999993805 -98.315389962035596 8.8805156967251193 -8.6303953387919901 1 -98.667119135185303 8.9554003811891594 -8.6590044074454706 1 -98.8292366085456 8.9857787812446901 -8.67067242386576 0.99999999999992295 -98.998784677644906 9.0131454759599201 -8.6812331031837804 1.00000000000024 -99.176869003283301 9.0370009788071695 -8.6904777499485206 0.99999999999968003 -99.363865238410298 9.0565246999554692 -8.6980708351183509 1.00000000000022 -99.559311830726699 9.0707074279004498 -8.7035978610841607 0.99999999999993705 -99.761742309870499 9.0785419844047492 -8.70665166968063 1 -100.16535388409299 9.0803631740751598 -8.7073615591088007 1 -100.377045390376 9.07488844153076 -8.7052276313750507 0.99999999999992595 -100.554464639114 9.0626090244949804 -8.7004398684245601 1.00000000000024 -100.761442122026 9.0451912252854996 -8.6936593801979303 0.99999999999967104 -100.924827568233 9.0230610811225294 -8.6850727161287704 1.00000000000023 -101.09944878315 8.9976306897132101 -8.67524597290058 0.99999999999992994 -101.258552050856 8.9693079650233791 -8.6643484112318205 1 -101.624195589461 8.8955084241608198 -8.6360961174102595 1 -101.822213157173 8.8480529208282004 -8.6180305328638198 1.0000000000001099 -102.009679851228 8.7966721209276404 -8.5986046075118896 0.99999999999964595 -102.18796294862599 8.7419937139664903 -8.5780925428515609 1.0000000000004901 -102.358194098971 8.6844936912000605 -8.5567046057931506 0.99999999999966405 -102.521298787699 8.6244966268844401 -8.5345892436018804 1.0000000000000999 -102.678114844647 8.5622190882650493 -8.5118519011204103 1 -103.061769935323 8.3987804266996893 -8.4527800895749401 1 -103.280714060834 8.2948396145204608 -8.4157510465257701 0.99999999999996603 -103.48859792789401 8.1865295047448008 -8.3777729515133395 1.0000000000001099 -103.68701118114301 8.0742965455417206 -8.3390834071967301 0.99999999999983902 -103.876883602874 7.9582709797028404 -8.2998036378163906 1.0000000000001199 -104.059359070713 7.8386830381688597 -8.2600863660984292 0.99999999999996403 -104.235118268202 7.7155871873382296 -8.2200211408638708 1 -104.602287195155 7.4415732757484996 -8.1327233722960006 1 -104.791461564622 7.2894848687714404 -8.0854166870022794 0.999999999999995 -104.97340862143901 7.13261079444099 -8.0378532299692402 1.00000000000001 -105.148849221831 6.9708520590229703 -7.9901268657523801 0.999999999999998 -105.318350770161 6.8040351326461002 -7.9423181138708401 0.99999999999998801 -105.482379689719 6.6319068041729698 -7.89449767968547 1.00000000000001 -105.641318569167 6.4541139241938099 -7.8467285357680501 1 -105.92979143611301 6.1099208226338897 -7.75755232900039 1 -106.06052441721199 5.9449197420324698 -7.7161021785705204 1.00000000000003 -106.187461735771 5.7755507703223596 -7.6749028975354401 0.99999999999992495 -106.312175829437 5.5991300255011804 -7.6335297983538704 1.0000000000000999 -106.431923140628 5.4198125210427497 -7.59297061843868 0.99999999999993405 -106.550480963916 5.2311681791190896 -7.5520653078102304 1.00000000000002 -106.66491168796 5.0370926120972799 -7.5118411178474398 1 -106.876167136063 4.6540273576948596 -7.4363228721487697 1 -106.973491009433 4.4666495921531002 -7.4009766245068001 0.99999999999983702 -107.068115774867 4.2726823717373099 -7.3660976428204297 1.00000000000053 -107.160015993149 4.07136446304962 -7.3317489727213099 0.99999999999926203 -107.249102275453 3.8618127607512598 -7.2980160439851103 1.00000000000052 -107.33520797688401 3.6429095092511301 -7.2650146547816297 0.99999999999983702 -107.41808817618301 3.41324833178186 -7.2328934305488204 1 -107.554091201105 2.9968404113846199 -7.1796527067010301 1 -107.608917995132 2.81662943539262 -7.1580239793668596 0.99999999999991995 -107.661730958097 2.6288836851595101 -7.1370389063262998 1.00000000000028 -107.71229297107 2.43319461020931 -7.1168160772920501 0.99999999999959099 -107.760402118949 2.2269657861149201 -7.0974571104792901 1.00000000000031 -107.805331331763 2.0115545670678401 -7.0792784873501597 0.99999999999989897 -107.846878991053 1.7819875214873599 -7.0624030510215903 1 -107.909276013511 1.3696059469181801 -7.0369670220072003 1 -107.93253215239 1.1940437905302099 -7.0274589357381503 0.99999999999987199 -107.953242658901 1.0110173235706099 -7.0189745020142 1.0000000000004099 -107.970981006748 0.81979997270707095 -7.01170138566515 0.99999999999943601 -107.985138590087 0.62039118361415502 -7.0059037024101096 1.0000000000003999 -107.995022745486 0.41361346228328599 -7.0018818564985699 0.99999999999987699 -108.000036037052 0.20132978992088199 -6.9998907780028397 1 -107.99999959708801 -0.0131341543728976 -7.0000034501204604 1 + 0 9 0.020451729175787799 7 0.049551654993566598 7 0.082736039907863101 7 0.12136931361011299 7 0.15899622479377501 7 0.194196793783219 7 0.223874120262156 7 0.246027867209892 7 0.268403962672838 7 0.29867604159600197 7 0.33423817758737101 7 0.384122190106365 7 0.42882802026695599 7 0.46449856729266198 7 0.49034851210107999 7 0.51026955206567604 7 0.53258899886508504 7 0.56349573686483001 7 0.59980604534557402 7 0.63880670867184197 7 0.67469353488106998 7 0.70666552597802601 7 0.73129729106955099 7 0.75102879689399205 7 0.76986187455783395 7 0.795489602605709 7 0.83484838012461104 7 0.88061571790158299 7 0.92048473951999299 7 0.95636710916293499 7 0.98206683298474395 7 1 9 +6 1 0 0 +7 1 0 8 226 33 -107.99999959708801 -0.0131341543728976 -7.0000034501204604 1 -107.99995760791801 -0.260257430651823 -7.0001332803487699 1 -107.993211997367 -0.503131284255393 -7.0030526297738298 0.99999999999997102 -107.98016676077501 -0.73771268347097996 -7.0085915612147698 1.0000000000000999 -107.961797923845 -0.96204956217815896 -7.0163304017878403 0.99999999999984901 -107.939115391648 -1.1755070325369501 -7.02582862713344 1.0000000000001099 -107.912952592568 -1.37846458054254 -7.0367242099810401 0.99999999999996403 -107.88383912723 -1.57219147947364 -7.0487836312002798 1 -107.806431902203 -2.0242425859737501 -7.0806647621634804 1 -107.755459816407 -2.2737610636321302 -7.1015132517753399 0.99999999999995703 -107.700899778756 -2.50623111325246 -7.1236930672399197 1.0000000000001099 -107.64245841427901 -2.7294817800088 -7.1472513827112296 0.99999999999987499 -107.581571150638 -2.9394736187741199 -7.1716050488412604 1.00000000000006 -107.517950510532 -3.1414381602288799 -7.1968234756565996 0.99999999999999001 -107.452084958366 -3.3347138885314198 -7.2226907032927397 1 -107.306286989532 -3.73325259810388 -7.2793846269120897 1 -107.225793144341 -3.9360199618939502 -7.3103531155707104 1.00000000000001 -107.14270493687 -4.1305920333586501 -7.3419555522563398 0.99999999999999001 -107.057160547698 -4.3179270406341397 -7.3740973919066404 1 -106.969247842347 -4.4987785373808098 -7.4067041551072599 1.00000000000001 -106.879013333831 -4.6737753552896502 -7.4397165735908199 0.999999999999994 -106.78646107406 -4.8434450331894698 -7.4730895051432897 1 -106.58106292868 -5.2001282554171704 -7.5460223999458798 1 -106.467529280042 -5.3851948241112604 -7.5856499690162096 1.00000000000001 -106.349983038215 -5.5655043278005998 -7.6259100543044296 0.99999999999996303 -106.231212357883 -5.73734945147228 -7.6658254892260898 1.0000000000000699 -106.107815938546 -5.9063591547847203 -7.7064401444282904 0.99999999999993705 -105.98209890445899 -6.0690809168654498 -7.7469099241346404 1.00000000000002 -105.852753404477 -6.2276820278891103 -7.7875773037528297 1 -105.590538620423 -6.5320720040178299 -7.8679432357630601 1 -105.45780816212 -6.6781542366987496 -7.9076530989925304 1.00000000000002 -105.32153193974 -6.8203870130902704 -7.9473858023664201 0.99999999999996902 -105.18148555691999 -6.9589653126697 -7.9871048413947596 0.999999999999998 -105.037404133286 -7.0940379321942704 -8.0267703079827992 1.00000000000003 -104.888973227561 -7.2257151616635902 -8.0663379449714494 0.99999999999998301 -104.735809050738 -7.35407168069022 -8.1057577853705602 1 -104.429240094451 -7.5961548545344204 -8.1816568938884195 1 -104.27651286164 -7.7102621577583701 -8.2181526920452104 0.99999999999997102 -104.118869962697 -7.82153833177414 -8.2544236929925994 1.00000000000006 -103.955647050636 -7.9299205437459204 -8.2903936153385107 0.99999999999994904 -103.786613077672 -8.0354623333007407 -8.3260276363126007 1.00000000000001 -103.610762709239 -8.1379327555560899 -8.3611929584119302 1 -103.427367667357 -8.23723051990968 -8.3957976764255005 1 -103.073148562904 -8.4138774560998097 -8.4582496065692094 1 -102.905052528406 -8.4921349322040793 -8.4862729860283697 0.99999999999994704 -102.730041657966 -8.5677691421778892 -8.5136875586415997 1.0000000000001901 -102.547166323168 -8.6405754131099197 -8.5403827026229706 0.99999999999971501 -102.35537464902001 -8.7102296284937193 -8.5662008401219403 1.00000000000022 -102.153317757583 -8.7762340507957006 -8.5909131803337306 0.99999999999992795 -101.93936831232701 -8.8379294131868402 -8.6142215923767207 1 -101.54000744968199 -8.9362434025792705 -8.6516472625504495 1 -101.362433737473 -8.9749286218490205 -8.6664726211745098 1.0000000000000899 -101.17524007162601 -9.0103431734923891 -8.6801247687474508 0.99999999999970901 -100.976546762379 -9.0418645553393695 -8.6923425339277909 1.0000000000004099 -100.76545127345599 -9.0683133838929599 -8.7026446798013701 0.99999999999971201 -100.542181266962 -9.0881305006426807 -8.7103866766964604 1.0000000000000899 -100.308409360732 -9.0996397773335307 -8.7148853975899208 1 -99.825712148435898 -9.1042728003734794 -8.7166964752735598 1 -99.5895594650638 -9.0970878237942507 -8.71388816050084 1.00000000000004 -99.364169237148403 -9.0812146286345108 -8.7076792640802108 0.99999999999983802 -99.151102816800204 -9.0584121864221796 -8.6987797431625999 1.00000000000026 -98.950795603736495 -9.0302484321826402 -8.6878366801226505 0.99999999999978195 -98.762153414213998 -8.9979870732805907 -8.6753640913231198 1.0000000000000799 -98.583285580999103 -8.9622777831798697 -8.6616337872728302 1 -98.178594772430301 -8.8700564764699106 -8.6263969320681504 1 -97.961078599967195 -8.8112411902736607 -8.6040818801109893 1.0000000000001199 -97.755770410090605 -8.7478382205966696 -8.5802313152746397 0.99999999999960998 -97.560989054583203 -8.6805628024322701 -8.5551669357698792 1.00000000000056 -97.375334767019496 -8.6099583366716708 -8.5291367332011596 0.99999999999959299 -97.197722688068893 -8.5363788233039095 -8.5023110614811994 1.0000000000001299 -97.027169012459296 -8.4600519261275995 -8.4748103155146897 1 -96.669690024808006 -8.28828255877605 -8.41368889530054 1 -96.485412758868705 -8.1919834707471004 -8.3798925170960992 1.00000000000004 -96.308478223038705 -8.0922861286320291 -8.3454200371297205 0.999999999999866 -96.138769338225998 -7.9898380667250901 -8.3105511356194697 1.0000000000001901 -95.974615362104799 -7.8842022569793704 -8.2751825420834404 0.999999999999865 -95.815926667994603 -7.7755601801672096 -8.2394479639215294 1.00000000000004 -95.662746337867901 -7.6645156147089599 -8.2035831023552195 1 -95.305858479645593 -7.39102368519554 -8.1169344267135308 1 -95.106894716646707 -7.2260822391109096 -8.0660222899443106 1.00000000000001 -94.916106020691799 -7.0558274866678303 -8.0149162201232702 0.99999999999999001 -94.732623713519899 -6.8801067302410104 -7.9637180486102803 0.999999999999999 -94.555762210539896 -6.6986587459111604 -7.9125109462702099 1.00000000000001 -94.384953246497503 -6.5111050073193102 -7.8613642485966304 0.999999999999995 -94.219724716031905 -6.3169122110690097 -7.8103358986078302 1 -93.916232874625294 -5.9346390534982802 -7.7138973986133799 1 -93.777012833759798 -5.74809233490069 -7.6684723520068703 1.00000000000003 -93.6414677933533 -5.55483953798963 -7.62316707626964 0.99999999999993305 -93.510009074970299 -5.3548056333878504 -7.5781951128483298 1.0000000000000699 -93.381977062740205 -5.1471830429691803 -7.5335010024253899 0.99999999999996403 -93.256631604641697 -4.9289507951340399 -7.4888728139342096 1.00000000000001 -93.135804626747401 -4.7023052107494197 -7.4450231568582597 1 -92.925365690589302 -4.2742147209349399 -7.3673312197404304 1 -92.834550316488603 -4.0772414740479102 -7.3333158445010804 1.00000000000006 -92.746324684087895 -3.8724048712878201 -7.2998182950865598 0.99999999999982503 -92.660805891948698 -3.65871557669881 -7.2669289031283197 1.00000000000024 -92.578204487932695 -3.4350567842484399 -7.2347746961533197 0.99999999999982703 -92.498856827250805 -3.1999906136513001 -7.2035356648918496 1.00000000000005 -92.423218028153798 -2.9517552785654599 -7.1734441755724498 1 -92.300438455059805 -2.4957200853355799 -7.1241376378686203 1 -92.251422136134195 -2.2966107377482001 -7.1043040729639904 0.99999999999998501 -92.204734553762904 -2.0862702425862198 -7.0852821092850702 1.00000000000006 -92.161769951792493 -1.8695544398442501 -7.0676464820251503 0.99999999999990397 -92.121123737038602 -1.6333082485896 -7.0508819104766403 1.0000000000000799 -92.085996360727293 -1.3878633521795301 -7.0362738863705996 0.99999999999997002 -92.056264466475795 -1.1267745488871199 -7.0238546139907303 1 -92.016456192775607 -0.63426249518895395 -7.0071267514861502 1 -92.002918762844203 -0.40356004345519603 -7.0013952339131302 1.0000000000000999 -91.995058898081098 -0.16355984670484999 -6.9980113392430097 0.99999999999969302 -91.9938870595428 0.079597624613907403 -6.9974140845440997 1.0000000000004201 -91.999479889422602 0.32056623167390802 -6.9996408636024698 0.99999999999971101 -92.011202124910099 0.55459989107335395 -7.0044156268747502 1.0000000000000899 -92.027853133067296 0.77743658460414999 -7.0112256910860999 1 -92.070335763482205 1.218060385776 -7.0286039855253701 1 -92.097635272535697 1.43829771441944 -7.0397731045486296 1.0000000000000799 -92.128876096892796 1.6474081771209701 -7.0525292515280604 0.99999999999978095 -92.1632296869047 1.84648412282334 -7.0665249405484696 1.00000000000027 -92.200827984360302 2.03821271372483 -7.0817474035554397 0.99999999999983702 -92.240315797716505 2.2201052408216402 -7.0976945037224404 1.00000000000004 -92.282070070946503 2.3955711608792498 -7.1144588094846002 1 -92.386266003180396 2.7989889602999698 -7.1560647569123699 1 -92.450380024493398 3.0207681460444 -7.1814862632254499 1.00000000000002 -92.517571417171396 3.2320820724153299 -7.2079123354784702 0.99999999999992095 -92.587480593146793 3.4341869928338502 -7.2351609309767104 1.0000000000001199 -92.659832382474605 3.6281090640175799 -7.2630878534158496 0.99999999999989997 -92.734435752674202 3.8146762956160201 -7.2915853469075103 1.00000000000004 -92.811167054036702 3.9946268112798 -7.3205733885015301 1 -92.982558393105705 4.3730442138179502 -7.3845685275636601 1 -93.077987639188905 4.5691660196445101 -7.4197313942671501 1.00000000000006 -93.175820767230505 4.7576260166063999 -7.4552938331184899 0.99999999999978095 -93.277111602789006 4.9404926110695602 -7.4915044771533603 1.00000000000033 -93.378963111456002 5.1148228016959898 -7.5274459503270501 0.99999999999975697 -93.485904518877405 5.2869968739101498 -7.5644337348834396 1.0000000000000799 -93.593419683367401 5.4513254656401102 -7.6010278002713898 1 -93.821488384709198 5.7821685552495001 -7.6772238815923801 1 -93.942094849893294 5.9474726433193998 -7.71674494186533 0.99999999999997802 -94.065343110367706 6.1074049899584599 -7.7563098384757803 1.00000000000003 -94.191417129827002 6.2624725636334997 -7.7959036648164401 1 -94.320532877928798 6.4130823666444403 -7.8355117159582104 0.99999999999996503 -94.452940608034794 6.5595691457376901 -7.8751186863884097 1.00000000000002 -94.588936648806893 6.7022107383878797 -7.9147085400565098 1 -94.857656619346798 6.9691674671672299 -7.9906602507663997 1 -94.989763061030402 7.0940247999310202 -8.0270241386963406 1.00000000000001 -95.125486205402197 7.2159945503623897 -8.0633417228215496 0.99999999999998102 -95.265144340518205 7.3352148928657996 -8.0995950866813793 1 -95.409104783241503 7.4517864482548202 -8.1357607790426698 1.00000000000002 -95.557798103821298 7.5657767200945303 -8.1718091303393106 0.99999999999998801 -95.711747511021002 7.6772181054412796 -8.2077018768367793 1 -96.014068532496793 7.8830971159198198 -8.2751775618698105 1 -96.161203829156307 7.9780434841032397 -8.3067971783374208 0.999999999999996 -96.313310576705206 8.07086490060769 -8.3381855835569194 1.00000000000001 -96.471708739258602 8.1618601627985008 -8.3694122507137898 0.99999999999997802 -96.635933007469603 8.2502650686103198 -8.4001854241020997 1.00000000000002 -96.807276730229901 8.3362735646593293 -8.4305269643370107 0.999999999999995 -96.986215834547906 8.4193748686842405 -8.4602179871201901 1 -97.318548162410593 8.5607537523010393 -8.5113266686650793 1 -97.468257417031893 8.6202979423884099 -8.5330600164886796 0.99999999999992895 -97.623631512295503 8.6777229064790404 -8.5542126734112696 1.00000000000022 -97.785289180380801 8.7328082472653694 -8.5746804971132704 0.99999999999970002 -97.953906523670398 8.7852544826059304 -8.5943270774084901 1.0000000000002101 -98.130287321745897 8.8346593841884502 -8.6129732643136006 0.99999999999993805 -98.315389962035596 8.8805156967251193 -8.6303953387919901 1 -98.667119135185303 8.9554003811891594 -8.6590044074454706 1 -98.8292366085456 8.9857787812446901 -8.67067242386576 0.99999999999992295 -98.998784677644906 9.0131454759599201 -8.6812331031837804 1.00000000000024 -99.176869003283301 9.0370009788071695 -8.6904777499485206 0.99999999999968003 -99.363865238410298 9.0565246999554692 -8.6980708351183509 1.00000000000022 -99.559311830726699 9.0707074279004498 -8.7035978610841607 0.99999999999993705 -99.761742309870499 9.0785419844047492 -8.70665166968063 1 -100.16535388409299 9.0803631740751598 -8.7073615591088007 1 -100.377045390376 9.07488844153076 -8.7052276313750507 0.99999999999992595 -100.554464639114 9.0626090244949804 -8.7004398684245601 1.00000000000024 -100.761442122026 9.0451912252854996 -8.6936593801979303 0.99999999999967104 -100.924827568233 9.0230610811225294 -8.6850727161287704 1.00000000000023 -101.09944878315 8.9976306897132101 -8.67524597290058 0.99999999999992994 -101.258552050856 8.9693079650233791 -8.6643484112318205 1 -101.624195589461 8.8955084241608198 -8.6360961174102595 1 -101.822213157173 8.8480529208282004 -8.6180305328638198 1.0000000000001099 -102.009679851228 8.7966721209276404 -8.5986046075118896 0.99999999999964595 -102.18796294862599 8.7419937139664903 -8.5780925428515609 1.0000000000004901 -102.358194098971 8.6844936912000605 -8.5567046057931506 0.99999999999966405 -102.521298787699 8.6244966268844401 -8.5345892436018804 1.0000000000000999 -102.678114844647 8.5622190882650493 -8.5118519011204103 1 -103.061769935323 8.3987804266996893 -8.4527800895749401 1 -103.280714060834 8.2948396145204608 -8.4157510465257701 0.99999999999996603 -103.48859792789401 8.1865295047448008 -8.3777729515133395 1.0000000000001099 -103.68701118114301 8.0742965455417206 -8.3390834071967301 0.99999999999983902 -103.876883602874 7.9582709797028404 -8.2998036378163906 1.0000000000001199 -104.059359070713 7.8386830381688597 -8.2600863660984292 0.99999999999996403 -104.235118268202 7.7155871873382296 -8.2200211408638708 1 -104.602287195155 7.4415732757484996 -8.1327233722960006 1 -104.791461564622 7.2894848687714404 -8.0854166870022794 0.999999999999995 -104.97340862143901 7.13261079444099 -8.0378532299692402 1.00000000000001 -105.148849221831 6.9708520590229703 -7.9901268657523801 0.999999999999998 -105.318350770161 6.8040351326461002 -7.9423181138708401 0.99999999999998801 -105.482379689719 6.6319068041729698 -7.89449767968547 1.00000000000001 -105.641318569167 6.4541139241938099 -7.8467285357680501 1 -105.92979143611301 6.1099208226338897 -7.75755232900039 1 -106.06052441721199 5.9449197420324698 -7.7161021785705204 1.00000000000003 -106.187461735771 5.7755507703223596 -7.6749028975354401 0.99999999999992495 -106.312175829437 5.5991300255011804 -7.6335297983538704 1.0000000000000999 -106.431923140628 5.4198125210427497 -7.59297061843868 0.99999999999993405 -106.550480963916 5.2311681791190896 -7.5520653078102304 1.00000000000002 -106.66491168796 5.0370926120972799 -7.5118411178474398 1 -106.876167136063 4.6540273576948596 -7.4363228721487697 1 -106.973491009433 4.4666495921531002 -7.4009766245068001 0.99999999999983702 -107.068115774867 4.2726823717373099 -7.3660976428204297 1.00000000000053 -107.160015993149 4.07136446304962 -7.3317489727213099 0.99999999999926203 -107.249102275453 3.8618127607512598 -7.2980160439851103 1.00000000000052 -107.33520797688401 3.6429095092511301 -7.2650146547816297 0.99999999999983702 -107.41808817618301 3.41324833178186 -7.2328934305488204 1 -107.554091201105 2.9968404113846199 -7.1796527067010301 1 -107.608917995132 2.81662943539262 -7.1580239793668596 0.99999999999991995 -107.661730958097 2.6288836851595101 -7.1370389063262998 1.00000000000028 -107.71229297107 2.43319461020931 -7.1168160772920501 0.99999999999959099 -107.760402118949 2.2269657861149201 -7.0974571104792901 1.00000000000031 -107.805331331763 2.0115545670678401 -7.0792784873501597 0.99999999999989897 -107.846878991053 1.7819875214873599 -7.0624030510215903 1 -107.909276013511 1.3696059469181801 -7.0369670220072003 1 -107.93253215239 1.1940437905302099 -7.0274589357381503 0.99999999999987199 -107.953242658901 1.0110173235706099 -7.0189745020142 1.0000000000004099 -107.970981006748 0.81979997270707095 -7.01170138566515 0.99999999999943601 -107.985138590087 0.62039118361415502 -7.0059037024101096 1.0000000000003999 -107.995022745486 0.41361346228328599 -7.0018818564985699 0.99999999999987699 -108.000036037052 0.20132978992088199 -6.9998907780028397 1 -107.99999959708801 -0.0131341543728976 -7.0000034501204604 1 + 0 9 0.020451729175787799 7 0.049551654993566598 7 0.082736039907863101 7 0.12136931361011299 7 0.15899622479377501 7 0.194196793783219 7 0.223874120262156 7 0.246027867209892 7 0.268403962672838 7 0.29867604159600197 7 0.33423817758737101 7 0.384122190106365 7 0.42882802026695599 7 0.46449856729266198 7 0.49034851210107999 7 0.51026955206567604 7 0.53258899886508504 7 0.56349573686483001 7 0.59980604534557402 7 0.63880670867184197 7 0.67469353488106998 7 0.70666552597802601 7 0.73129729106955099 7 0.75102879689399205 7 0.76986187455783395 7 0.795489602605709 7 0.83484838012461104 7 0.88061571790158299 7 0.92048473951999299 7 0.95636710916293499 7 0.98206683298474395 7 1 9 +6 -1 0 0 +7 1 0 8 226 33 -107.99999959708801 -0.0131341543728976 -7.0000034501204604 1 -107.99995760791801 -0.260257430651823 -7.0001332803487699 1 -107.993211997367 -0.503131284255393 -7.0030526297738298 0.99999999999997102 -107.98016676077501 -0.73771268347097996 -7.0085915612147698 1.0000000000000999 -107.961797923845 -0.96204956217815896 -7.0163304017878403 0.99999999999984901 -107.939115391648 -1.1755070325369501 -7.02582862713344 1.0000000000001099 -107.912952592568 -1.37846458054254 -7.0367242099810401 0.99999999999996403 -107.88383912723 -1.57219147947364 -7.0487836312002798 1 -107.806431902203 -2.0242425859737501 -7.0806647621634804 1 -107.755459816407 -2.2737610636321302 -7.1015132517753399 0.99999999999995703 -107.700899778756 -2.50623111325246 -7.1236930672399197 1.0000000000001099 -107.64245841427901 -2.7294817800088 -7.1472513827112296 0.99999999999987499 -107.581571150638 -2.9394736187741199 -7.1716050488412604 1.00000000000006 -107.517950510532 -3.1414381602288799 -7.1968234756565996 0.99999999999999001 -107.452084958366 -3.3347138885314198 -7.2226907032927397 1 -107.306286989532 -3.73325259810388 -7.2793846269120897 1 -107.225793144341 -3.9360199618939502 -7.3103531155707104 1.00000000000001 -107.14270493687 -4.1305920333586501 -7.3419555522563398 0.99999999999999001 -107.057160547698 -4.3179270406341397 -7.3740973919066404 1 -106.969247842347 -4.4987785373808098 -7.4067041551072599 1.00000000000001 -106.879013333831 -4.6737753552896502 -7.4397165735908199 0.999999999999994 -106.78646107406 -4.8434450331894698 -7.4730895051432897 1 -106.58106292868 -5.2001282554171704 -7.5460223999458798 1 -106.467529280042 -5.3851948241112604 -7.5856499690162096 1.00000000000001 -106.349983038215 -5.5655043278005998 -7.6259100543044296 0.99999999999996303 -106.231212357883 -5.73734945147228 -7.6658254892260898 1.0000000000000699 -106.107815938546 -5.9063591547847203 -7.7064401444282904 0.99999999999993705 -105.98209890445899 -6.0690809168654498 -7.7469099241346404 1.00000000000002 -105.852753404477 -6.2276820278891103 -7.7875773037528297 1 -105.590538620423 -6.5320720040178299 -7.8679432357630601 1 -105.45780816212 -6.6781542366987496 -7.9076530989925304 1.00000000000002 -105.32153193974 -6.8203870130902704 -7.9473858023664201 0.99999999999996902 -105.18148555691999 -6.9589653126697 -7.9871048413947596 0.999999999999998 -105.037404133286 -7.0940379321942704 -8.0267703079827992 1.00000000000003 -104.888973227561 -7.2257151616635902 -8.0663379449714494 0.99999999999998301 -104.735809050738 -7.35407168069022 -8.1057577853705602 1 -104.429240094451 -7.5961548545344204 -8.1816568938884195 1 -104.27651286164 -7.7102621577583701 -8.2181526920452104 0.99999999999997102 -104.118869962697 -7.82153833177414 -8.2544236929925994 1.00000000000006 -103.955647050636 -7.9299205437459204 -8.2903936153385107 0.99999999999994904 -103.786613077672 -8.0354623333007407 -8.3260276363126007 1.00000000000001 -103.610762709239 -8.1379327555560899 -8.3611929584119302 1 -103.427367667357 -8.23723051990968 -8.3957976764255005 1 -103.073148562904 -8.4138774560998097 -8.4582496065692094 1 -102.905052528406 -8.4921349322040793 -8.4862729860283697 0.99999999999994704 -102.730041657966 -8.5677691421778892 -8.5136875586415997 1.0000000000001901 -102.547166323168 -8.6405754131099197 -8.5403827026229706 0.99999999999971501 -102.35537464902001 -8.7102296284937193 -8.5662008401219403 1.00000000000022 -102.153317757583 -8.7762340507957006 -8.5909131803337306 0.99999999999992795 -101.93936831232701 -8.8379294131868402 -8.6142215923767207 1 -101.54000744968199 -8.9362434025792705 -8.6516472625504495 1 -101.362433737473 -8.9749286218490205 -8.6664726211745098 1.0000000000000899 -101.17524007162601 -9.0103431734923891 -8.6801247687474508 0.99999999999970901 -100.976546762379 -9.0418645553393695 -8.6923425339277909 1.0000000000004099 -100.76545127345599 -9.0683133838929599 -8.7026446798013701 0.99999999999971201 -100.542181266962 -9.0881305006426807 -8.7103866766964604 1.0000000000000899 -100.308409360732 -9.0996397773335307 -8.7148853975899208 1 -99.825712148435898 -9.1042728003734794 -8.7166964752735598 1 -99.5895594650638 -9.0970878237942507 -8.71388816050084 1.00000000000004 -99.364169237148403 -9.0812146286345108 -8.7076792640802108 0.99999999999983802 -99.151102816800204 -9.0584121864221796 -8.6987797431625999 1.00000000000026 -98.950795603736495 -9.0302484321826402 -8.6878366801226505 0.99999999999978195 -98.762153414213998 -8.9979870732805907 -8.6753640913231198 1.0000000000000799 -98.583285580999103 -8.9622777831798697 -8.6616337872728302 1 -98.178594772430301 -8.8700564764699106 -8.6263969320681504 1 -97.961078599967195 -8.8112411902736607 -8.6040818801109893 1.0000000000001199 -97.755770410090605 -8.7478382205966696 -8.5802313152746397 0.99999999999960998 -97.560989054583203 -8.6805628024322701 -8.5551669357698792 1.00000000000056 -97.375334767019496 -8.6099583366716708 -8.5291367332011596 0.99999999999959299 -97.197722688068893 -8.5363788233039095 -8.5023110614811994 1.0000000000001299 -97.027169012459296 -8.4600519261275995 -8.4748103155146897 1 -96.669690024808006 -8.28828255877605 -8.41368889530054 1 -96.485412758868705 -8.1919834707471004 -8.3798925170960992 1.00000000000004 -96.308478223038705 -8.0922861286320291 -8.3454200371297205 0.999999999999866 -96.138769338225998 -7.9898380667250901 -8.3105511356194697 1.0000000000001901 -95.974615362104799 -7.8842022569793704 -8.2751825420834404 0.999999999999865 -95.815926667994603 -7.7755601801672096 -8.2394479639215294 1.00000000000004 -95.662746337867901 -7.6645156147089599 -8.2035831023552195 1 -95.305858479645593 -7.39102368519554 -8.1169344267135308 1 -95.106894716646707 -7.2260822391109096 -8.0660222899443106 1.00000000000001 -94.916106020691799 -7.0558274866678303 -8.0149162201232702 0.99999999999999001 -94.732623713519899 -6.8801067302410104 -7.9637180486102803 0.999999999999999 -94.555762210539896 -6.6986587459111604 -7.9125109462702099 1.00000000000001 -94.384953246497503 -6.5111050073193102 -7.8613642485966304 0.999999999999995 -94.219724716031905 -6.3169122110690097 -7.8103358986078302 1 -93.916232874625294 -5.9346390534982802 -7.7138973986133799 1 -93.777012833759798 -5.74809233490069 -7.6684723520068703 1.00000000000003 -93.6414677933533 -5.55483953798963 -7.62316707626964 0.99999999999993305 -93.510009074970299 -5.3548056333878504 -7.5781951128483298 1.0000000000000699 -93.381977062740205 -5.1471830429691803 -7.5335010024253899 0.99999999999996403 -93.256631604641697 -4.9289507951340399 -7.4888728139342096 1.00000000000001 -93.135804626747401 -4.7023052107494197 -7.4450231568582597 1 -92.925365690589302 -4.2742147209349399 -7.3673312197404304 1 -92.834550316488603 -4.0772414740479102 -7.3333158445010804 1.00000000000006 -92.746324684087895 -3.8724048712878201 -7.2998182950865598 0.99999999999982503 -92.660805891948698 -3.65871557669881 -7.2669289031283197 1.00000000000024 -92.578204487932695 -3.4350567842484399 -7.2347746961533197 0.99999999999982703 -92.498856827250805 -3.1999906136513001 -7.2035356648918496 1.00000000000005 -92.423218028153798 -2.9517552785654599 -7.1734441755724498 1 -92.300438455059805 -2.4957200853355799 -7.1241376378686203 1 -92.251422136134195 -2.2966107377482001 -7.1043040729639904 0.99999999999998501 -92.204734553762904 -2.0862702425862198 -7.0852821092850702 1.00000000000006 -92.161769951792493 -1.8695544398442501 -7.0676464820251503 0.99999999999990397 -92.121123737038602 -1.6333082485896 -7.0508819104766403 1.0000000000000799 -92.085996360727293 -1.3878633521795301 -7.0362738863705996 0.99999999999997002 -92.056264466475795 -1.1267745488871199 -7.0238546139907303 1 -92.016456192775607 -0.63426249518895395 -7.0071267514861502 1 -92.002918762844203 -0.40356004345519603 -7.0013952339131302 1.0000000000000999 -91.995058898081098 -0.16355984670484999 -6.9980113392430097 0.99999999999969302 -91.9938870595428 0.079597624613907403 -6.9974140845440997 1.0000000000004201 -91.999479889422602 0.32056623167390802 -6.9996408636024698 0.99999999999971101 -92.011202124910099 0.55459989107335395 -7.0044156268747502 1.0000000000000899 -92.027853133067296 0.77743658460414999 -7.0112256910860999 1 -92.070335763482205 1.218060385776 -7.0286039855253701 1 -92.097635272535697 1.43829771441944 -7.0397731045486296 1.0000000000000799 -92.128876096892796 1.6474081771209701 -7.0525292515280604 0.99999999999978095 -92.1632296869047 1.84648412282334 -7.0665249405484696 1.00000000000027 -92.200827984360302 2.03821271372483 -7.0817474035554397 0.99999999999983702 -92.240315797716505 2.2201052408216402 -7.0976945037224404 1.00000000000004 -92.282070070946503 2.3955711608792498 -7.1144588094846002 1 -92.386266003180396 2.7989889602999698 -7.1560647569123699 1 -92.450380024493398 3.0207681460444 -7.1814862632254499 1.00000000000002 -92.517571417171396 3.2320820724153299 -7.2079123354784702 0.99999999999992095 -92.587480593146793 3.4341869928338502 -7.2351609309767104 1.0000000000001199 -92.659832382474605 3.6281090640175799 -7.2630878534158496 0.99999999999989997 -92.734435752674202 3.8146762956160201 -7.2915853469075103 1.00000000000004 -92.811167054036702 3.9946268112798 -7.3205733885015301 1 -92.982558393105705 4.3730442138179502 -7.3845685275636601 1 -93.077987639188905 4.5691660196445101 -7.4197313942671501 1.00000000000006 -93.175820767230505 4.7576260166063999 -7.4552938331184899 0.99999999999978095 -93.277111602789006 4.9404926110695602 -7.4915044771533603 1.00000000000033 -93.378963111456002 5.1148228016959898 -7.5274459503270501 0.99999999999975697 -93.485904518877405 5.2869968739101498 -7.5644337348834396 1.0000000000000799 -93.593419683367401 5.4513254656401102 -7.6010278002713898 1 -93.821488384709198 5.7821685552495001 -7.6772238815923801 1 -93.942094849893294 5.9474726433193998 -7.71674494186533 0.99999999999997802 -94.065343110367706 6.1074049899584599 -7.7563098384757803 1.00000000000003 -94.191417129827002 6.2624725636334997 -7.7959036648164401 1 -94.320532877928798 6.4130823666444403 -7.8355117159582104 0.99999999999996503 -94.452940608034794 6.5595691457376901 -7.8751186863884097 1.00000000000002 -94.588936648806893 6.7022107383878797 -7.9147085400565098 1 -94.857656619346798 6.9691674671672299 -7.9906602507663997 1 -94.989763061030402 7.0940247999310202 -8.0270241386963406 1.00000000000001 -95.125486205402197 7.2159945503623897 -8.0633417228215496 0.99999999999998102 -95.265144340518205 7.3352148928657996 -8.0995950866813793 1 -95.409104783241503 7.4517864482548202 -8.1357607790426698 1.00000000000002 -95.557798103821298 7.5657767200945303 -8.1718091303393106 0.99999999999998801 -95.711747511021002 7.6772181054412796 -8.2077018768367793 1 -96.014068532496793 7.8830971159198198 -8.2751775618698105 1 -96.161203829156307 7.9780434841032397 -8.3067971783374208 0.999999999999996 -96.313310576705206 8.07086490060769 -8.3381855835569194 1.00000000000001 -96.471708739258602 8.1618601627985008 -8.3694122507137898 0.99999999999997802 -96.635933007469603 8.2502650686103198 -8.4001854241020997 1.00000000000002 -96.807276730229901 8.3362735646593293 -8.4305269643370107 0.999999999999995 -96.986215834547906 8.4193748686842405 -8.4602179871201901 1 -97.318548162410593 8.5607537523010393 -8.5113266686650793 1 -97.468257417031893 8.6202979423884099 -8.5330600164886796 0.99999999999992895 -97.623631512295503 8.6777229064790404 -8.5542126734112696 1.00000000000022 -97.785289180380801 8.7328082472653694 -8.5746804971132704 0.99999999999970002 -97.953906523670398 8.7852544826059304 -8.5943270774084901 1.0000000000002101 -98.130287321745897 8.8346593841884502 -8.6129732643136006 0.99999999999993805 -98.315389962035596 8.8805156967251193 -8.6303953387919901 1 -98.667119135185303 8.9554003811891594 -8.6590044074454706 1 -98.8292366085456 8.9857787812446901 -8.67067242386576 0.99999999999992295 -98.998784677644906 9.0131454759599201 -8.6812331031837804 1.00000000000024 -99.176869003283301 9.0370009788071695 -8.6904777499485206 0.99999999999968003 -99.363865238410298 9.0565246999554692 -8.6980708351183509 1.00000000000022 -99.559311830726699 9.0707074279004498 -8.7035978610841607 0.99999999999993705 -99.761742309870499 9.0785419844047492 -8.70665166968063 1 -100.16535388409299 9.0803631740751598 -8.7073615591088007 1 -100.377045390376 9.07488844153076 -8.7052276313750507 0.99999999999992595 -100.554464639114 9.0626090244949804 -8.7004398684245601 1.00000000000024 -100.761442122026 9.0451912252854996 -8.6936593801979303 0.99999999999967104 -100.924827568233 9.0230610811225294 -8.6850727161287704 1.00000000000023 -101.09944878315 8.9976306897132101 -8.67524597290058 0.99999999999992994 -101.258552050856 8.9693079650233791 -8.6643484112318205 1 -101.624195589461 8.8955084241608198 -8.6360961174102595 1 -101.822213157173 8.8480529208282004 -8.6180305328638198 1.0000000000001099 -102.009679851228 8.7966721209276404 -8.5986046075118896 0.99999999999964595 -102.18796294862599 8.7419937139664903 -8.5780925428515609 1.0000000000004901 -102.358194098971 8.6844936912000605 -8.5567046057931506 0.99999999999966405 -102.521298787699 8.6244966268844401 -8.5345892436018804 1.0000000000000999 -102.678114844647 8.5622190882650493 -8.5118519011204103 1 -103.061769935323 8.3987804266996893 -8.4527800895749401 1 -103.280714060834 8.2948396145204608 -8.4157510465257701 0.99999999999996603 -103.48859792789401 8.1865295047448008 -8.3777729515133395 1.0000000000001099 -103.68701118114301 8.0742965455417206 -8.3390834071967301 0.99999999999983902 -103.876883602874 7.9582709797028404 -8.2998036378163906 1.0000000000001199 -104.059359070713 7.8386830381688597 -8.2600863660984292 0.99999999999996403 -104.235118268202 7.7155871873382296 -8.2200211408638708 1 -104.602287195155 7.4415732757484996 -8.1327233722960006 1 -104.791461564622 7.2894848687714404 -8.0854166870022794 0.999999999999995 -104.97340862143901 7.13261079444099 -8.0378532299692402 1.00000000000001 -105.148849221831 6.9708520590229703 -7.9901268657523801 0.999999999999998 -105.318350770161 6.8040351326461002 -7.9423181138708401 0.99999999999998801 -105.482379689719 6.6319068041729698 -7.89449767968547 1.00000000000001 -105.641318569167 6.4541139241938099 -7.8467285357680501 1 -105.92979143611301 6.1099208226338897 -7.75755232900039 1 -106.06052441721199 5.9449197420324698 -7.7161021785705204 1.00000000000003 -106.187461735771 5.7755507703223596 -7.6749028975354401 0.99999999999992495 -106.312175829437 5.5991300255011804 -7.6335297983538704 1.0000000000000999 -106.431923140628 5.4198125210427497 -7.59297061843868 0.99999999999993405 -106.550480963916 5.2311681791190896 -7.5520653078102304 1.00000000000002 -106.66491168796 5.0370926120972799 -7.5118411178474398 1 -106.876167136063 4.6540273576948596 -7.4363228721487697 1 -106.973491009433 4.4666495921531002 -7.4009766245068001 0.99999999999983702 -107.068115774867 4.2726823717373099 -7.3660976428204297 1.00000000000053 -107.160015993149 4.07136446304962 -7.3317489727213099 0.99999999999926203 -107.249102275453 3.8618127607512598 -7.2980160439851103 1.00000000000052 -107.33520797688401 3.6429095092511301 -7.2650146547816297 0.99999999999983702 -107.41808817618301 3.41324833178186 -7.2328934305488204 1 -107.554091201105 2.9968404113846199 -7.1796527067010301 1 -107.608917995132 2.81662943539262 -7.1580239793668596 0.99999999999991995 -107.661730958097 2.6288836851595101 -7.1370389063262998 1.00000000000028 -107.71229297107 2.43319461020931 -7.1168160772920501 0.99999999999959099 -107.760402118949 2.2269657861149201 -7.0974571104792901 1.00000000000031 -107.805331331763 2.0115545670678401 -7.0792784873501597 0.99999999999989897 -107.846878991053 1.7819875214873599 -7.0624030510215903 1 -107.909276013511 1.3696059469181801 -7.0369670220072003 1 -107.93253215239 1.1940437905302099 -7.0274589357381503 0.99999999999987199 -107.953242658901 1.0110173235706099 -7.0189745020142 1.0000000000004099 -107.970981006748 0.81979997270707095 -7.01170138566515 0.99999999999943601 -107.985138590087 0.62039118361415502 -7.0059037024101096 1.0000000000003999 -107.995022745486 0.41361346228328599 -7.0018818564985699 0.99999999999987699 -108.000036037052 0.20132978992088199 -6.9998907780028397 1 -107.99999959708801 -0.0131341543728976 -7.0000034501204604 1 + 0 9 0.020451729175787799 7 0.049551654993566598 7 0.082736039907863101 7 0.12136931361011299 7 0.15899622479377501 7 0.194196793783219 7 0.223874120262156 7 0.246027867209892 7 0.268403962672838 7 0.29867604159600197 7 0.33423817758737101 7 0.384122190106365 7 0.42882802026695599 7 0.46449856729266198 7 0.49034851210107999 7 0.51026955206567604 7 0.53258899886508504 7 0.56349573686483001 7 0.59980604534557402 7 0.63880670867184197 7 0.67469353488106998 7 0.70666552597802601 7 0.73129729106955099 7 0.75102879689399205 7 0.76986187455783395 7 0.795489602605709 7 0.83484838012461104 7 0.88061571790158299 7 0.92048473951999299 7 0.95636710916293499 7 0.98206683298474395 7 1 9 +6 -1 0 0 +7 1 0 8 226 33 -107.99999959708801 -0.0131341543728976 -7.0000034501204604 1 -107.99995760791801 -0.260257430651823 -7.0001332803487699 1 -107.993211997367 -0.503131284255393 -7.0030526297738298 0.99999999999997102 -107.98016676077501 -0.73771268347097996 -7.0085915612147698 1.0000000000000999 -107.961797923845 -0.96204956217815896 -7.0163304017878403 0.99999999999984901 -107.939115391648 -1.1755070325369501 -7.02582862713344 1.0000000000001099 -107.912952592568 -1.37846458054254 -7.0367242099810401 0.99999999999996403 -107.88383912723 -1.57219147947364 -7.0487836312002798 1 -107.806431902203 -2.0242425859737501 -7.0806647621634804 1 -107.755459816407 -2.2737610636321302 -7.1015132517753399 0.99999999999995703 -107.700899778756 -2.50623111325246 -7.1236930672399197 1.0000000000001099 -107.64245841427901 -2.7294817800088 -7.1472513827112296 0.99999999999987499 -107.581571150638 -2.9394736187741199 -7.1716050488412604 1.00000000000006 -107.517950510532 -3.1414381602288799 -7.1968234756565996 0.99999999999999001 -107.452084958366 -3.3347138885314198 -7.2226907032927397 1 -107.306286989532 -3.73325259810388 -7.2793846269120897 1 -107.225793144341 -3.9360199618939502 -7.3103531155707104 1.00000000000001 -107.14270493687 -4.1305920333586501 -7.3419555522563398 0.99999999999999001 -107.057160547698 -4.3179270406341397 -7.3740973919066404 1 -106.969247842347 -4.4987785373808098 -7.4067041551072599 1.00000000000001 -106.879013333831 -4.6737753552896502 -7.4397165735908199 0.999999999999994 -106.78646107406 -4.8434450331894698 -7.4730895051432897 1 -106.58106292868 -5.2001282554171704 -7.5460223999458798 1 -106.467529280042 -5.3851948241112604 -7.5856499690162096 1.00000000000001 -106.349983038215 -5.5655043278005998 -7.6259100543044296 0.99999999999996303 -106.231212357883 -5.73734945147228 -7.6658254892260898 1.0000000000000699 -106.107815938546 -5.9063591547847203 -7.7064401444282904 0.99999999999993705 -105.98209890445899 -6.0690809168654498 -7.7469099241346404 1.00000000000002 -105.852753404477 -6.2276820278891103 -7.7875773037528297 1 -105.590538620423 -6.5320720040178299 -7.8679432357630601 1 -105.45780816212 -6.6781542366987496 -7.9076530989925304 1.00000000000002 -105.32153193974 -6.8203870130902704 -7.9473858023664201 0.99999999999996902 -105.18148555691999 -6.9589653126697 -7.9871048413947596 0.999999999999998 -105.037404133286 -7.0940379321942704 -8.0267703079827992 1.00000000000003 -104.888973227561 -7.2257151616635902 -8.0663379449714494 0.99999999999998301 -104.735809050738 -7.35407168069022 -8.1057577853705602 1 -104.429240094451 -7.5961548545344204 -8.1816568938884195 1 -104.27651286164 -7.7102621577583701 -8.2181526920452104 0.99999999999997102 -104.118869962697 -7.82153833177414 -8.2544236929925994 1.00000000000006 -103.955647050636 -7.9299205437459204 -8.2903936153385107 0.99999999999994904 -103.786613077672 -8.0354623333007407 -8.3260276363126007 1.00000000000001 -103.610762709239 -8.1379327555560899 -8.3611929584119302 1 -103.427367667357 -8.23723051990968 -8.3957976764255005 1 -103.073148562904 -8.4138774560998097 -8.4582496065692094 1 -102.905052528406 -8.4921349322040793 -8.4862729860283697 0.99999999999994704 -102.730041657966 -8.5677691421778892 -8.5136875586415997 1.0000000000001901 -102.547166323168 -8.6405754131099197 -8.5403827026229706 0.99999999999971501 -102.35537464902001 -8.7102296284937193 -8.5662008401219403 1.00000000000022 -102.153317757583 -8.7762340507957006 -8.5909131803337306 0.99999999999992795 -101.93936831232701 -8.8379294131868402 -8.6142215923767207 1 -101.54000744968199 -8.9362434025792705 -8.6516472625504495 1 -101.362433737473 -8.9749286218490205 -8.6664726211745098 1.0000000000000899 -101.17524007162601 -9.0103431734923891 -8.6801247687474508 0.99999999999970901 -100.976546762379 -9.0418645553393695 -8.6923425339277909 1.0000000000004099 -100.76545127345599 -9.0683133838929599 -8.7026446798013701 0.99999999999971201 -100.542181266962 -9.0881305006426807 -8.7103866766964604 1.0000000000000899 -100.308409360732 -9.0996397773335307 -8.7148853975899208 1 -99.825712148435898 -9.1042728003734794 -8.7166964752735598 1 -99.5895594650638 -9.0970878237942507 -8.71388816050084 1.00000000000004 -99.364169237148403 -9.0812146286345108 -8.7076792640802108 0.99999999999983802 -99.151102816800204 -9.0584121864221796 -8.6987797431625999 1.00000000000026 -98.950795603736495 -9.0302484321826402 -8.6878366801226505 0.99999999999978195 -98.762153414213998 -8.9979870732805907 -8.6753640913231198 1.0000000000000799 -98.583285580999103 -8.9622777831798697 -8.6616337872728302 1 -98.178594772430301 -8.8700564764699106 -8.6263969320681504 1 -97.961078599967195 -8.8112411902736607 -8.6040818801109893 1.0000000000001199 -97.755770410090605 -8.7478382205966696 -8.5802313152746397 0.99999999999960998 -97.560989054583203 -8.6805628024322701 -8.5551669357698792 1.00000000000056 -97.375334767019496 -8.6099583366716708 -8.5291367332011596 0.99999999999959299 -97.197722688068893 -8.5363788233039095 -8.5023110614811994 1.0000000000001299 -97.027169012459296 -8.4600519261275995 -8.4748103155146897 1 -96.669690024808006 -8.28828255877605 -8.41368889530054 1 -96.485412758868705 -8.1919834707471004 -8.3798925170960992 1.00000000000004 -96.308478223038705 -8.0922861286320291 -8.3454200371297205 0.999999999999866 -96.138769338225998 -7.9898380667250901 -8.3105511356194697 1.0000000000001901 -95.974615362104799 -7.8842022569793704 -8.2751825420834404 0.999999999999865 -95.815926667994603 -7.7755601801672096 -8.2394479639215294 1.00000000000004 -95.662746337867901 -7.6645156147089599 -8.2035831023552195 1 -95.305858479645593 -7.39102368519554 -8.1169344267135308 1 -95.106894716646707 -7.2260822391109096 -8.0660222899443106 1.00000000000001 -94.916106020691799 -7.0558274866678303 -8.0149162201232702 0.99999999999999001 -94.732623713519899 -6.8801067302410104 -7.9637180486102803 0.999999999999999 -94.555762210539896 -6.6986587459111604 -7.9125109462702099 1.00000000000001 -94.384953246497503 -6.5111050073193102 -7.8613642485966304 0.999999999999995 -94.219724716031905 -6.3169122110690097 -7.8103358986078302 1 -93.916232874625294 -5.9346390534982802 -7.7138973986133799 1 -93.777012833759798 -5.74809233490069 -7.6684723520068703 1.00000000000003 -93.6414677933533 -5.55483953798963 -7.62316707626964 0.99999999999993305 -93.510009074970299 -5.3548056333878504 -7.5781951128483298 1.0000000000000699 -93.381977062740205 -5.1471830429691803 -7.5335010024253899 0.99999999999996403 -93.256631604641697 -4.9289507951340399 -7.4888728139342096 1.00000000000001 -93.135804626747401 -4.7023052107494197 -7.4450231568582597 1 -92.925365690589302 -4.2742147209349399 -7.3673312197404304 1 -92.834550316488603 -4.0772414740479102 -7.3333158445010804 1.00000000000006 -92.746324684087895 -3.8724048712878201 -7.2998182950865598 0.99999999999982503 -92.660805891948698 -3.65871557669881 -7.2669289031283197 1.00000000000024 -92.578204487932695 -3.4350567842484399 -7.2347746961533197 0.99999999999982703 -92.498856827250805 -3.1999906136513001 -7.2035356648918496 1.00000000000005 -92.423218028153798 -2.9517552785654599 -7.1734441755724498 1 -92.300438455059805 -2.4957200853355799 -7.1241376378686203 1 -92.251422136134195 -2.2966107377482001 -7.1043040729639904 0.99999999999998501 -92.204734553762904 -2.0862702425862198 -7.0852821092850702 1.00000000000006 -92.161769951792493 -1.8695544398442501 -7.0676464820251503 0.99999999999990397 -92.121123737038602 -1.6333082485896 -7.0508819104766403 1.0000000000000799 -92.085996360727293 -1.3878633521795301 -7.0362738863705996 0.99999999999997002 -92.056264466475795 -1.1267745488871199 -7.0238546139907303 1 -92.016456192775607 -0.63426249518895395 -7.0071267514861502 1 -92.002918762844203 -0.40356004345519603 -7.0013952339131302 1.0000000000000999 -91.995058898081098 -0.16355984670484999 -6.9980113392430097 0.99999999999969302 -91.9938870595428 0.079597624613907403 -6.9974140845440997 1.0000000000004201 -91.999479889422602 0.32056623167390802 -6.9996408636024698 0.99999999999971101 -92.011202124910099 0.55459989107335395 -7.0044156268747502 1.0000000000000899 -92.027853133067296 0.77743658460414999 -7.0112256910860999 1 -92.070335763482205 1.218060385776 -7.0286039855253701 1 -92.097635272535697 1.43829771441944 -7.0397731045486296 1.0000000000000799 -92.128876096892796 1.6474081771209701 -7.0525292515280604 0.99999999999978095 -92.1632296869047 1.84648412282334 -7.0665249405484696 1.00000000000027 -92.200827984360302 2.03821271372483 -7.0817474035554397 0.99999999999983702 -92.240315797716505 2.2201052408216402 -7.0976945037224404 1.00000000000004 -92.282070070946503 2.3955711608792498 -7.1144588094846002 1 -92.386266003180396 2.7989889602999698 -7.1560647569123699 1 -92.450380024493398 3.0207681460444 -7.1814862632254499 1.00000000000002 -92.517571417171396 3.2320820724153299 -7.2079123354784702 0.99999999999992095 -92.587480593146793 3.4341869928338502 -7.2351609309767104 1.0000000000001199 -92.659832382474605 3.6281090640175799 -7.2630878534158496 0.99999999999989997 -92.734435752674202 3.8146762956160201 -7.2915853469075103 1.00000000000004 -92.811167054036702 3.9946268112798 -7.3205733885015301 1 -92.982558393105705 4.3730442138179502 -7.3845685275636601 1 -93.077987639188905 4.5691660196445101 -7.4197313942671501 1.00000000000006 -93.175820767230505 4.7576260166063999 -7.4552938331184899 0.99999999999978095 -93.277111602789006 4.9404926110695602 -7.4915044771533603 1.00000000000033 -93.378963111456002 5.1148228016959898 -7.5274459503270501 0.99999999999975697 -93.485904518877405 5.2869968739101498 -7.5644337348834396 1.0000000000000799 -93.593419683367401 5.4513254656401102 -7.6010278002713898 1 -93.821488384709198 5.7821685552495001 -7.6772238815923801 1 -93.942094849893294 5.9474726433193998 -7.71674494186533 0.99999999999997802 -94.065343110367706 6.1074049899584599 -7.7563098384757803 1.00000000000003 -94.191417129827002 6.2624725636334997 -7.7959036648164401 1 -94.320532877928798 6.4130823666444403 -7.8355117159582104 0.99999999999996503 -94.452940608034794 6.5595691457376901 -7.8751186863884097 1.00000000000002 -94.588936648806893 6.7022107383878797 -7.9147085400565098 1 -94.857656619346798 6.9691674671672299 -7.9906602507663997 1 -94.989763061030402 7.0940247999310202 -8.0270241386963406 1.00000000000001 -95.125486205402197 7.2159945503623897 -8.0633417228215496 0.99999999999998102 -95.265144340518205 7.3352148928657996 -8.0995950866813793 1 -95.409104783241503 7.4517864482548202 -8.1357607790426698 1.00000000000002 -95.557798103821298 7.5657767200945303 -8.1718091303393106 0.99999999999998801 -95.711747511021002 7.6772181054412796 -8.2077018768367793 1 -96.014068532496793 7.8830971159198198 -8.2751775618698105 1 -96.161203829156307 7.9780434841032397 -8.3067971783374208 0.999999999999996 -96.313310576705206 8.07086490060769 -8.3381855835569194 1.00000000000001 -96.471708739258602 8.1618601627985008 -8.3694122507137898 0.99999999999997802 -96.635933007469603 8.2502650686103198 -8.4001854241020997 1.00000000000002 -96.807276730229901 8.3362735646593293 -8.4305269643370107 0.999999999999995 -96.986215834547906 8.4193748686842405 -8.4602179871201901 1 -97.318548162410593 8.5607537523010393 -8.5113266686650793 1 -97.468257417031893 8.6202979423884099 -8.5330600164886796 0.99999999999992895 -97.623631512295503 8.6777229064790404 -8.5542126734112696 1.00000000000022 -97.785289180380801 8.7328082472653694 -8.5746804971132704 0.99999999999970002 -97.953906523670398 8.7852544826059304 -8.5943270774084901 1.0000000000002101 -98.130287321745897 8.8346593841884502 -8.6129732643136006 0.99999999999993805 -98.315389962035596 8.8805156967251193 -8.6303953387919901 1 -98.667119135185303 8.9554003811891594 -8.6590044074454706 1 -98.8292366085456 8.9857787812446901 -8.67067242386576 0.99999999999992295 -98.998784677644906 9.0131454759599201 -8.6812331031837804 1.00000000000024 -99.176869003283301 9.0370009788071695 -8.6904777499485206 0.99999999999968003 -99.363865238410298 9.0565246999554692 -8.6980708351183509 1.00000000000022 -99.559311830726699 9.0707074279004498 -8.7035978610841607 0.99999999999993705 -99.761742309870499 9.0785419844047492 -8.70665166968063 1 -100.16535388409299 9.0803631740751598 -8.7073615591088007 1 -100.377045390376 9.07488844153076 -8.7052276313750507 0.99999999999992595 -100.554464639114 9.0626090244949804 -8.7004398684245601 1.00000000000024 -100.761442122026 9.0451912252854996 -8.6936593801979303 0.99999999999967104 -100.924827568233 9.0230610811225294 -8.6850727161287704 1.00000000000023 -101.09944878315 8.9976306897132101 -8.67524597290058 0.99999999999992994 -101.258552050856 8.9693079650233791 -8.6643484112318205 1 -101.624195589461 8.8955084241608198 -8.6360961174102595 1 -101.822213157173 8.8480529208282004 -8.6180305328638198 1.0000000000001099 -102.009679851228 8.7966721209276404 -8.5986046075118896 0.99999999999964595 -102.18796294862599 8.7419937139664903 -8.5780925428515609 1.0000000000004901 -102.358194098971 8.6844936912000605 -8.5567046057931506 0.99999999999966405 -102.521298787699 8.6244966268844401 -8.5345892436018804 1.0000000000000999 -102.678114844647 8.5622190882650493 -8.5118519011204103 1 -103.061769935323 8.3987804266996893 -8.4527800895749401 1 -103.280714060834 8.2948396145204608 -8.4157510465257701 0.99999999999996603 -103.48859792789401 8.1865295047448008 -8.3777729515133395 1.0000000000001099 -103.68701118114301 8.0742965455417206 -8.3390834071967301 0.99999999999983902 -103.876883602874 7.9582709797028404 -8.2998036378163906 1.0000000000001199 -104.059359070713 7.8386830381688597 -8.2600863660984292 0.99999999999996403 -104.235118268202 7.7155871873382296 -8.2200211408638708 1 -104.602287195155 7.4415732757484996 -8.1327233722960006 1 -104.791461564622 7.2894848687714404 -8.0854166870022794 0.999999999999995 -104.97340862143901 7.13261079444099 -8.0378532299692402 1.00000000000001 -105.148849221831 6.9708520590229703 -7.9901268657523801 0.999999999999998 -105.318350770161 6.8040351326461002 -7.9423181138708401 0.99999999999998801 -105.482379689719 6.6319068041729698 -7.89449767968547 1.00000000000001 -105.641318569167 6.4541139241938099 -7.8467285357680501 1 -105.92979143611301 6.1099208226338897 -7.75755232900039 1 -106.06052441721199 5.9449197420324698 -7.7161021785705204 1.00000000000003 -106.187461735771 5.7755507703223596 -7.6749028975354401 0.99999999999992495 -106.312175829437 5.5991300255011804 -7.6335297983538704 1.0000000000000999 -106.431923140628 5.4198125210427497 -7.59297061843868 0.99999999999993405 -106.550480963916 5.2311681791190896 -7.5520653078102304 1.00000000000002 -106.66491168796 5.0370926120972799 -7.5118411178474398 1 -106.876167136063 4.6540273576948596 -7.4363228721487697 1 -106.973491009433 4.4666495921531002 -7.4009766245068001 0.99999999999983702 -107.068115774867 4.2726823717373099 -7.3660976428204297 1.00000000000053 -107.160015993149 4.07136446304962 -7.3317489727213099 0.99999999999926203 -107.249102275453 3.8618127607512598 -7.2980160439851103 1.00000000000052 -107.33520797688401 3.6429095092511301 -7.2650146547816297 0.99999999999983702 -107.41808817618301 3.41324833178186 -7.2328934305488204 1 -107.554091201105 2.9968404113846199 -7.1796527067010301 1 -107.608917995132 2.81662943539262 -7.1580239793668596 0.99999999999991995 -107.661730958097 2.6288836851595101 -7.1370389063262998 1.00000000000028 -107.71229297107 2.43319461020931 -7.1168160772920501 0.99999999999959099 -107.760402118949 2.2269657861149201 -7.0974571104792901 1.00000000000031 -107.805331331763 2.0115545670678401 -7.0792784873501597 0.99999999999989897 -107.846878991053 1.7819875214873599 -7.0624030510215903 1 -107.909276013511 1.3696059469181801 -7.0369670220072003 1 -107.93253215239 1.1940437905302099 -7.0274589357381503 0.99999999999987199 -107.953242658901 1.0110173235706099 -7.0189745020142 1.0000000000004099 -107.970981006748 0.81979997270707095 -7.01170138566515 0.99999999999943601 -107.985138590087 0.62039118361415502 -7.0059037024101096 1.0000000000003999 -107.995022745486 0.41361346228328599 -7.0018818564985699 0.99999999999987699 -108.000036037052 0.20132978992088199 -6.9998907780028397 1 -107.99999959708801 -0.0131341543728976 -7.0000034501204604 1 + 0 9 0.020451729175787799 7 0.049551654993566598 7 0.082736039907863101 7 0.12136931361011299 7 0.15899622479377501 7 0.194196793783219 7 0.223874120262156 7 0.246027867209892 7 0.268403962672838 7 0.29867604159600197 7 0.33423817758737101 7 0.384122190106365 7 0.42882802026695599 7 0.46449856729266198 7 0.49034851210107999 7 0.51026955206567604 7 0.53258899886508504 7 0.56349573686483001 7 0.59980604534557402 7 0.63880670867184197 7 0.67469353488106998 7 0.70666552597802601 7 0.73129729106955099 7 0.75102879689399205 7 0.76986187455783395 7 0.795489602605709 7 0.83484838012461104 7 0.88061571790158299 7 0.92048473951999299 7 0.95636710916293499 7 0.98206683298474395 7 1 9 +6 0 0 1 +7 1 0 8 226 33 -92.000000402911695 0.0131341543728976 -7.0000034501205004 1 -92.000042392082406 0.260257430651823 -7.0001332803488001 1 -92.006788002633002 0.503131284255393 -7.0030526297737996 0.99999999999997102 -92.019833239224894 0.73771268347097996 -7.0085915612148 1.0000000000000999 -92.038202076154505 0.96204956217815896 -7.0163304017878003 0.99999999999984901 -92.060884608352097 1.1755070325369501 -7.0258286271334001 1.0000000000001099 -92.087047407431896 1.37846458054254 -7.0367242099810001 0.99999999999996403 -92.116160872769996 1.57219147947364 -7.0487836312003003 1 -92.193568097797097 2.0242425859737501 -7.0806647621634999 1 -92.244540183592704 2.2737610636321302 -7.1015132517752999 0.99999999999995703 -92.299100221244302 2.50623111325246 -7.1236930672399001 1.0000000000001099 -92.357541585720597 2.7294817800088 -7.1472513827112003 0.99999999999987499 -92.418428849361703 2.9394736187741199 -7.1716050488413003 1.00000000000006 -92.482049489468196 3.1414381602288799 -7.1968234756565996 0.99999999999999001 -92.547915041634099 3.3347138885314198 -7.2226907032926997 1 -92.693713010467803 3.73325259810388 -7.2793846269121003 1 -92.774206855658704 3.9360199618939502 -7.3103531155706998 1.00000000000001 -92.857295063129698 4.1305920333586501 -7.3419555522562998 0.99999999999999001 -92.942839452301499 4.3179270406341397 -7.3740973919066004 1 -93.030752157652799 4.4987785373808098 -7.4067041551072998 1.00000000000001 -93.120986666169401 4.6737753552896502 -7.4397165735908004 0.999999999999994 -93.213538925939702 4.8434450331894698 -7.4730895051433004 1 -93.418937071319604 5.2001282554171704 -7.5460223999459002 1 -93.532470719957601 5.3851948241112604 -7.5856499690161998 1.00000000000001 -93.6500169617849 5.5655043278005998 -7.6259100543044003 0.99999999999996303 -93.768787642117402 5.73734945147228 -7.6658254892261004 1.0000000000000699 -93.892184061454003 5.9063591547847203 -7.7064401444283002 0.99999999999993705 -94.017901095541404 6.0690809168654498 -7.7469099241345996 1.00000000000002 -94.147246595522802 6.2276820278891103 -7.7875773037528004 1 -94.409461379576598 6.5320720040178299 -7.8679432357631001 1 -94.542191837880097 6.6781542366987496 -7.9076530989925002 1.00000000000002 -94.6784680602603 6.8203870130902704 -7.9473858023663997 0.99999999999996902 -94.818514443079593 6.9589653126697 -7.9871048413947996 0.999999999999998 -94.9625958667135 7.0940379321942704 -8.0267703079827992 1.00000000000003 -95.111026772439004 7.2257151616635902 -8.0663379449713997 0.99999999999998301 -95.264190949261604 7.35407168069022 -8.1057577853705993 1 -95.570759905549096 7.5961548545344204 -8.1816568938884 1 -95.723487138359701 7.7102621577583701 -8.2181526920451997 0.99999999999997102 -95.881130037302995 7.82153833177414 -8.2544236929925994 1.00000000000006 -96.044352949363997 7.9299205437459204 -8.2903936153385001 0.99999999999994904 -96.2133869223278 8.0354623333007407 -8.3260276363126007 1.00000000000001 -96.389237290760704 8.1379327555560899 -8.3611929584119 1 -96.572632332642797 8.23723051990968 -8.3957976764255005 1 -96.926851437095607 8.4138774560998097 -8.4582496065692006 1 -97.094947471594494 8.4921349322040793 -8.4862729860283999 0.99999999999994704 -97.269958342034101 8.5677691421778892 -8.5136875586415997 1.0000000000001901 -97.452833676831901 8.6405754131099197 -8.5403827026230008 0.99999999999971501 -97.644625350979894 8.7102296284937193 -8.5662008401218994 1.00000000000022 -97.846682242416705 8.7762340507957006 -8.5909131803337004 0.99999999999992795 -98.060631687672497 8.8379294131868402 -8.6142215923766994 1 -98.459992550318304 8.9362434025792705 -8.6516472625503997 1 -98.637566262527301 8.9749286218490205 -8.6664726211744991 1.0000000000000899 -98.824759928374107 9.0103431734923891 -8.6801247687475005 0.99999999999970901 -99.0234532376206 9.0418645553393695 -8.6923425339277998 1.0000000000004099 -99.234548726543693 9.0683133838929599 -8.7026446798014003 0.99999999999971201 -99.457818733037897 9.0881305006426807 -8.7103866766964995 1.0000000000000899 -99.691590639267901 9.0996397773335307 -8.7148853975898994 1 -100.174287851564 9.1042728003734794 -8.7166964752736007 1 -100.410440534936 9.0970878237942507 -8.7138881605007992 1.00000000000004 -100.635830762852 9.0812146286345108 -8.7076792640802001 0.99999999999983802 -100.84889718319999 9.0584121864221796 -8.6987797431625999 1.00000000000026 -101.049204396264 9.0302484321826402 -8.6878366801227003 0.99999999999978195 -101.237846585786 8.9979870732805907 -8.6753640913231003 1.0000000000000799 -101.416714419001 8.9622777831798697 -8.6616337872728 1 -101.82140522757 8.8700564764699106 -8.6263969320682001 1 -102.038921400033 8.8112411902736607 -8.6040818801109999 1.0000000000001199 -102.244229589909 8.7478382205966696 -8.5802313152746006 0.99999999999960998 -102.439010945417 8.6805628024322701 -8.5551669357699005 1.00000000000056 -102.624665232981 8.6099583366716708 -8.5291367332012005 0.99999999999959299 -102.80227731193099 8.5363788233039095 -8.5023110614811994 1.0000000000001299 -102.972830987541 8.4600519261275995 -8.4748103155147003 1 -103.33030997519199 8.28828255877605 -8.4136888953004991 1 -103.514587241131 8.1919834707471004 -8.3798925170960992 1.00000000000004 -103.691521776961 8.0922861286320291 -8.3454200371296992 0.999999999999866 -103.861230661774 7.9898380667250901 -8.3105511356194999 1.0000000000001901 -104.025384637895 7.8842022569793704 -8.2751825420833995 0.999999999999865 -104.184073332005 7.7755601801672096 -8.2394479639214993 1.00000000000004 -104.337253662132 7.6645156147089599 -8.2035831023551999 1 -104.69414152035399 7.39102368519554 -8.1169344267135006 1 -104.89310528335299 7.2260822391109096 -8.0660222899442999 1.00000000000001 -105.083893979308 7.0558274866678303 -8.0149162201233004 0.99999999999999001 -105.26737628648 6.8801067302410104 -7.9637180486102999 0.999999999999999 -105.44423778946 6.6986587459111604 -7.9125109462702001 1.00000000000001 -105.615046753502 6.5111050073193102 -7.8613642485966002 0.999999999999995 -105.780275283968 6.3169122110690097 -7.8103358986078 1 -106.083767125375 5.9346390534982802 -7.7138973986134003 1 -106.22298716624 5.74809233490069 -7.6684723520068996 1.00000000000003 -106.358532206647 5.55483953798963 -7.6231670762696 0.99999999999993305 -106.48999092503 5.3548056333878504 -7.5781951128482996 1.0000000000000699 -106.61802293725999 5.1471830429691803 -7.5335010024253997 0.99999999999996403 -106.743368395358 4.9289507951340399 -7.4888728139341998 1.00000000000001 -106.864195373253 4.7023052107494197 -7.4450231568582996 1 -107.074634309411 4.2742147209349399 -7.3673312197404002 1 -107.165449683511 4.0772414740479102 -7.3333158445011 1.00000000000006 -107.25367531591201 3.8724048712878201 -7.2998182950865997 0.99999999999982503 -107.339194108051 3.65871557669881 -7.2669289031283002 1.00000000000024 -107.42179551206701 3.4350567842484399 -7.2347746961533002 0.99999999999982703 -107.501143172749 3.1999906136513001 -7.2035356648917999 1.00000000000005 -107.576781971846 2.9517552785654599 -7.1734441755724001 1 -107.69956154494 2.4957200853355799 -7.1241376378685999 1 -107.748577863866 2.2966107377482001 -7.1043040729640001 0.99999999999998501 -107.795265446237 2.0862702425862198 -7.0852821092851004 1.00000000000006 -107.838230048207 1.8695544398442501 -7.0676464820252001 0.99999999999990397 -107.878876262961 1.6333082485896 -7.0508819104766003 1.0000000000000799 -107.91400363927301 1.3878633521795301 -7.0362738863705996 0.99999999999997002 -107.94373553352401 1.1267745488871199 -7.0238546139907001 1 -107.983543807224 0.63426249518895395 -7.0071267514861999 1 -107.997081237156 0.40356004345519603 -7.0013952339131 1.0000000000000999 -108.004941101919 0.16355984670484999 -6.9980113392429999 0.99999999999969302 -108.006112940457 -0.079597624613907403 -6.9974140845440997 1.0000000000004201 -108.000520110577 -0.32056623167390802 -6.9996408636025 0.99999999999971101 -107.98879787509 -0.55459989107335395 -7.0044156268747004 1.0000000000000899 -107.972146866933 -0.77743658460414999 -7.0112256910860999 1 -107.92966423651799 -1.218060385776 -7.0286039855254003 1 -107.902364727464 -1.43829771441944 -7.0397731045486003 1.0000000000000799 -107.87112390310701 -1.6474081771209701 -7.0525292515281004 0.99999999999978095 -107.836770313095 -1.84648412282334 -7.0665249405484998 1.00000000000027 -107.79917201564 -2.03821271372483 -7.0817474035553998 0.99999999999983702 -107.759684202283 -2.2201052408216402 -7.0976945037224004 1.00000000000004 -107.717929929053 -2.3955711608792498 -7.1144588094846002 1 -107.61373399682 -2.7989889602999698 -7.1560647569124001 1 -107.549619975507 -3.0207681460444 -7.1814862632254997 1.00000000000002 -107.482428582829 -3.2320820724153299 -7.2079123354785004 0.99999999999992095 -107.41251940685299 -3.4341869928338502 -7.2351609309766998 1.0000000000001199 -107.340167617525 -3.6281090640175799 -7.2630878534159002 0.99999999999989997 -107.265564247326 -3.8146762956160201 -7.2915853469074996 1.00000000000004 -107.188832945963 -3.9946268112798 -7.3205733885014999 1 -107.017441606894 -4.3730442138179502 -7.3845685275637001 1 -106.922012360811 -4.5691660196445101 -7.4197313942671999 1.00000000000006 -106.824179232769 -4.7576260166063999 -7.4552938331184997 0.99999999999978095 -106.72288839721099 -4.9404926110695602 -7.4915044771534003 1.00000000000033 -106.621036888544 -5.1148228016959898 -7.5274459503270004 0.99999999999975697 -106.51409548112299 -5.2869968739101498 -7.5644337348833997 1.0000000000000799 -106.406580316633 -5.4513254656401102 -7.6010278002713996 1 -106.178511615291 -5.7821685552495001 -7.6772238815923997 1 -106.057905150107 -5.9474726433193998 -7.7167449418652998 0.99999999999997802 -105.934656889632 -6.1074049899584599 -7.7563098384757998 1.00000000000003 -105.808582870173 -6.2624725636334997 -7.7959036648164002 1 -105.679467122071 -6.4130823666444403 -7.8355117159581997 0.99999999999996503 -105.54705939196501 -6.5595691457376901 -7.8751186863884 1.00000000000002 -105.41106335119299 -6.7022107383878797 -7.9147085400565 1 -105.142343380653 -6.9691674671672299 -7.9906602507663997 1 -105.01023693897 -7.0940247999310202 -8.0270241386962997 1.00000000000001 -104.874513794598 -7.2159945503623897 -8.0633417228215993 0.99999999999998102 -104.73485565948199 -7.3352148928657996 -8.0995950866814006 1 -104.590895216758 -7.4517864482548202 -8.1357607790427 1.00000000000002 -104.442201896179 -7.5657767200945303 -8.1718091303392999 0.99999999999998801 -104.288252488979 -7.6772181054412796 -8.2077018768368006 1 -103.98593146750299 -7.8830971159198198 -8.2751775618697998 1 -103.83879617084401 -7.9780434841032397 -8.3067971783373995 0.999999999999996 -103.68668942329499 -8.07086490060769 -8.3381855835568999 1.00000000000001 -103.528291260741 -8.1618601627985008 -8.3694122507138005 0.99999999999997802 -103.36406699253 -8.2502650686103198 -8.4001854241020997 1.00000000000002 -103.19272326977 -8.3362735646593293 -8.430526964337 0.999999999999995 -103.01378416545199 -8.4193748686842405 -8.4602179871202008 1 -102.68145183758899 -8.5607537523010393 -8.5113266686651006 1 -102.53174258296799 -8.6202979423884099 -8.5330600164886992 0.99999999999992895 -102.376368487704 -8.6777229064790404 -8.5542126734112998 1.00000000000022 -102.214710819619 -8.7328082472653694 -8.5746804971133006 0.99999999999970002 -102.04609347633 -8.7852544826059304 -8.5943270774085008 1.0000000000002101 -101.869712678254 -8.8346593841884502 -8.6129732643136006 0.99999999999993805 -101.68461003796401 -8.8805156967251193 -8.6303953387920007 1 -101.332880864815 -8.9554003811891594 -8.6590044074455008 1 -101.170763391454 -8.9857787812446901 -8.6706724238658008 0.99999999999992295 -101.00121532235499 -9.0131454759599201 -8.6812331031837999 1.00000000000024 -100.823130996717 -9.0370009788071695 -8.6904777499484993 0.99999999999968003 -100.63613476159 -9.0565246999554692 -8.6980708351184006 1.00000000000022 -100.440688169273 -9.0707074279004498 -8.7035978610841997 0.99999999999993705 -100.23825769013 -9.0785419844047492 -8.7066516696805998 1 -99.834646115906594 -9.0803631740751598 -8.7073615591088007 1 -99.622954609623804 -9.07488844153076 -8.7052276313751005 0.99999999999992595 -99.445535360885899 -9.0626090244949804 -8.7004398684245992 1.00000000000024 -99.238557877973705 -9.0451912252854996 -8.6936593801979001 0.99999999999967104 -99.075172431767299 -9.0230610811225294 -8.6850727161288006 1.00000000000023 -98.900551216849806 -8.9976306897132101 -8.6752459729005995 0.99999999999992994 -98.741447949144103 -8.9693079650233791 -8.6643484112317992 1 -98.375804410539104 -8.8955084241608198 -8.6360961174103004 1 -98.177786842827004 -8.8480529208282004 -8.6180305328638003 1.0000000000001099 -97.990320148772298 -8.7966721209276404 -8.5986046075119003 0.99999999999964595 -97.812037051373494 -8.7419937139664903 -8.5780925428515999 1.0000000000004901 -97.641805901029002 -8.6844936912000605 -8.5567046057931009 0.99999999999966405 -97.478701212300706 -8.6244966268844401 -8.5345892436019 1.0000000000000999 -97.321885155353201 -8.5622190882650493 -8.5118519011203997 1 -96.938230064676503 -8.3987804266996893 -8.4527800895748992 1 -96.719285939166397 -8.2948396145204608 -8.4157510465258003 0.99999999999996603 -96.511402072106094 -8.1865295047448008 -8.3777729515133004 1.0000000000001099 -96.312988818857207 -8.0742965455417206 -8.3390834071966999 0.99999999999983902 -96.123116397126395 -7.9582709797028404 -8.2998036378163995 1.0000000000001199 -95.9406409292869 -7.8386830381688597 -8.2600863660984007 0.99999999999996403 -95.764881731797999 -7.7155871873382296 -8.2200211408638992 1 -95.397712804844602 -7.4415732757484996 -8.1327233722960006 1 -95.208538435378202 -7.2894848687714404 -8.0854166870023008 0.999999999999995 -95.026591378561506 -7.13261079444099 -8.0378532299691994 1.00000000000001 -94.851150778169 -6.9708520590229703 -7.9901268657523996 0.999999999999998 -94.681649229838797 -6.8040351326461002 -7.9423181138708001 0.99999999999998801 -94.517620310280606 -6.6319068041729698 -7.8944976796855002 1.00000000000001 -94.358681430832604 -6.4541139241938099 -7.8467285357680998 1 -94.070208563887107 -6.1099208226338897 -7.7575523290003998 1 -93.939475582787793 -5.9449197420324698 -7.7161021785705 1.00000000000003 -93.812538264229104 -5.7755507703223596 -7.6749028975354001 0.99999999999992495 -93.687824170563303 -5.5991300255011804 -7.6335297983538997 1.0000000000000999 -93.568076859372297 -5.4198125210427497 -7.5929706184386996 0.99999999999993405 -93.449519036084297 -5.2311681791190896 -7.5520653078102002 1.00000000000002 -93.3350883120399 -5.0370926120972799 -7.5118411178473998 1 -93.123832863936997 -4.6540273576948596 -7.4363228721487999 1 -93.026508990566697 -4.4666495921531002 -7.4009766245068001 0.99999999999983702 -92.931884225132706 -4.2726823717373099 -7.3660976428204004 1.00000000000053 -92.839984006851495 -4.07136446304962 -7.3317489727213001 0.99999999999926203 -92.750897724546704 -3.8618127607512598 -7.2980160439850996 1.00000000000052 -92.664792023116505 -3.6429095092511301 -7.2650146547816004 0.99999999999983702 -92.581911823816597 -3.41324833178186 -7.2328934305488 1 -92.445908798895402 -2.9968404113846199 -7.1796527067009999 1 -92.391082004867798 -2.81662943539262 -7.1580239793668996 0.99999999999991995 -92.338269041902905 -2.6288836851595101 -7.1370389063262998 1.00000000000028 -92.287707028929603 -2.43319461020931 -7.1168160772920999 0.99999999999959099 -92.239597881051097 -2.2269657861149201 -7.0974571104792998 1.00000000000031 -92.194668668237298 -2.0115545670678401 -7.0792784873501997 0.99999999999989897 -92.153121008946897 -1.7819875214873599 -7.0624030510216 1 -92.090723986489394 -1.3696059469181801 -7.0369670220072003 1 -92.067467847609706 -1.1940437905302099 -7.0274589357380997 0.99999999999987199 -92.046757341098996 -1.0110173235706099 -7.0189745020142 1.0000000000004099 -92.029018993252294 -0.81979997270707095 -7.0117013856651997 0.99999999999943601 -92.014861409913195 -0.62039118361415502 -7.0059037024100999 1.0000000000003999 -92.004977254513506 -0.41361346228328599 -7.0018818564986001 0.99999999999987699 -91.9999639629482 -0.20132978992088199 -6.9998907780027997 1 -92.000000402911695 0.0131341543728976 -7.0000034501205004 1 + 0 9 0.020451729175787799 7 0.049551654993566598 7 0.082736039907863101 7 0.12136931361011299 7 0.15899622479377501 7 0.194196793783219 7 0.223874120262156 7 0.246027867209892 7 0.268403962672838 7 0.29867604159600197 7 0.33423817758737101 7 0.384122190106365 7 0.42882802026695599 7 0.46449856729266198 7 0.49034851210107999 7 0.51026955206567604 7 0.53258899886508504 7 0.56349573686483001 7 0.59980604534557402 7 0.63880670867184197 7 0.67469353488106998 7 0.70666552597802601 7 0.73129729106955099 7 0.75102879689399205 7 0.76986187455783395 7 0.795489602605709 7 0.83484838012461104 7 0.88061571790158299 7 0.92048473951999299 7 0.95636710916293499 7 0.98206683298474395 7 1 9 +6 0 0 1 +7 1 0 8 226 33 -92.000000402911695 0.0131341543728976 -7.0000034501205004 1 -92.000042392082406 0.260257430651823 -7.0001332803488001 1 -92.006788002633002 0.503131284255393 -7.0030526297737996 0.99999999999997102 -92.019833239224894 0.73771268347097996 -7.0085915612148 1.0000000000000999 -92.038202076154505 0.96204956217815896 -7.0163304017878003 0.99999999999984901 -92.060884608352097 1.1755070325369501 -7.0258286271334001 1.0000000000001099 -92.087047407431896 1.37846458054254 -7.0367242099810001 0.99999999999996403 -92.116160872769996 1.57219147947364 -7.0487836312003003 1 -92.193568097797097 2.0242425859737501 -7.0806647621634999 1 -92.244540183592704 2.2737610636321302 -7.1015132517752999 0.99999999999995703 -92.299100221244302 2.50623111325246 -7.1236930672399001 1.0000000000001099 -92.357541585720597 2.7294817800088 -7.1472513827112003 0.99999999999987499 -92.418428849361703 2.9394736187741199 -7.1716050488413003 1.00000000000006 -92.482049489468196 3.1414381602288799 -7.1968234756565996 0.99999999999999001 -92.547915041634099 3.3347138885314198 -7.2226907032926997 1 -92.693713010467803 3.73325259810388 -7.2793846269121003 1 -92.774206855658704 3.9360199618939502 -7.3103531155706998 1.00000000000001 -92.857295063129698 4.1305920333586501 -7.3419555522562998 0.99999999999999001 -92.942839452301499 4.3179270406341397 -7.3740973919066004 1 -93.030752157652799 4.4987785373808098 -7.4067041551072998 1.00000000000001 -93.120986666169401 4.6737753552896502 -7.4397165735908004 0.999999999999994 -93.213538925939702 4.8434450331894698 -7.4730895051433004 1 -93.418937071319604 5.2001282554171704 -7.5460223999459002 1 -93.532470719957601 5.3851948241112604 -7.5856499690161998 1.00000000000001 -93.6500169617849 5.5655043278005998 -7.6259100543044003 0.99999999999996303 -93.768787642117402 5.73734945147228 -7.6658254892261004 1.0000000000000699 -93.892184061454003 5.9063591547847203 -7.7064401444283002 0.99999999999993705 -94.017901095541404 6.0690809168654498 -7.7469099241345996 1.00000000000002 -94.147246595522802 6.2276820278891103 -7.7875773037528004 1 -94.409461379576598 6.5320720040178299 -7.8679432357631001 1 -94.542191837880097 6.6781542366987496 -7.9076530989925002 1.00000000000002 -94.6784680602603 6.8203870130902704 -7.9473858023663997 0.99999999999996902 -94.818514443079593 6.9589653126697 -7.9871048413947996 0.999999999999998 -94.9625958667135 7.0940379321942704 -8.0267703079827992 1.00000000000003 -95.111026772439004 7.2257151616635902 -8.0663379449713997 0.99999999999998301 -95.264190949261604 7.35407168069022 -8.1057577853705993 1 -95.570759905549096 7.5961548545344204 -8.1816568938884 1 -95.723487138359701 7.7102621577583701 -8.2181526920451997 0.99999999999997102 -95.881130037302995 7.82153833177414 -8.2544236929925994 1.00000000000006 -96.044352949363997 7.9299205437459204 -8.2903936153385001 0.99999999999994904 -96.2133869223278 8.0354623333007407 -8.3260276363126007 1.00000000000001 -96.389237290760704 8.1379327555560899 -8.3611929584119 1 -96.572632332642797 8.23723051990968 -8.3957976764255005 1 -96.926851437095607 8.4138774560998097 -8.4582496065692006 1 -97.094947471594494 8.4921349322040793 -8.4862729860283999 0.99999999999994704 -97.269958342034101 8.5677691421778892 -8.5136875586415997 1.0000000000001901 -97.452833676831901 8.6405754131099197 -8.5403827026230008 0.99999999999971501 -97.644625350979894 8.7102296284937193 -8.5662008401218994 1.00000000000022 -97.846682242416705 8.7762340507957006 -8.5909131803337004 0.99999999999992795 -98.060631687672497 8.8379294131868402 -8.6142215923766994 1 -98.459992550318304 8.9362434025792705 -8.6516472625503997 1 -98.637566262527301 8.9749286218490205 -8.6664726211744991 1.0000000000000899 -98.824759928374107 9.0103431734923891 -8.6801247687475005 0.99999999999970901 -99.0234532376206 9.0418645553393695 -8.6923425339277998 1.0000000000004099 -99.234548726543693 9.0683133838929599 -8.7026446798014003 0.99999999999971201 -99.457818733037897 9.0881305006426807 -8.7103866766964995 1.0000000000000899 -99.691590639267901 9.0996397773335307 -8.7148853975898994 1 -100.174287851564 9.1042728003734794 -8.7166964752736007 1 -100.410440534936 9.0970878237942507 -8.7138881605007992 1.00000000000004 -100.635830762852 9.0812146286345108 -8.7076792640802001 0.99999999999983802 -100.84889718319999 9.0584121864221796 -8.6987797431625999 1.00000000000026 -101.049204396264 9.0302484321826402 -8.6878366801227003 0.99999999999978195 -101.237846585786 8.9979870732805907 -8.6753640913231003 1.0000000000000799 -101.416714419001 8.9622777831798697 -8.6616337872728 1 -101.82140522757 8.8700564764699106 -8.6263969320682001 1 -102.038921400033 8.8112411902736607 -8.6040818801109999 1.0000000000001199 -102.244229589909 8.7478382205966696 -8.5802313152746006 0.99999999999960998 -102.439010945417 8.6805628024322701 -8.5551669357699005 1.00000000000056 -102.624665232981 8.6099583366716708 -8.5291367332012005 0.99999999999959299 -102.80227731193099 8.5363788233039095 -8.5023110614811994 1.0000000000001299 -102.972830987541 8.4600519261275995 -8.4748103155147003 1 -103.33030997519199 8.28828255877605 -8.4136888953004991 1 -103.514587241131 8.1919834707471004 -8.3798925170960992 1.00000000000004 -103.691521776961 8.0922861286320291 -8.3454200371296992 0.999999999999866 -103.861230661774 7.9898380667250901 -8.3105511356194999 1.0000000000001901 -104.025384637895 7.8842022569793704 -8.2751825420833995 0.999999999999865 -104.184073332005 7.7755601801672096 -8.2394479639214993 1.00000000000004 -104.337253662132 7.6645156147089599 -8.2035831023551999 1 -104.69414152035399 7.39102368519554 -8.1169344267135006 1 -104.89310528335299 7.2260822391109096 -8.0660222899442999 1.00000000000001 -105.083893979308 7.0558274866678303 -8.0149162201233004 0.99999999999999001 -105.26737628648 6.8801067302410104 -7.9637180486102999 0.999999999999999 -105.44423778946 6.6986587459111604 -7.9125109462702001 1.00000000000001 -105.615046753502 6.5111050073193102 -7.8613642485966002 0.999999999999995 -105.780275283968 6.3169122110690097 -7.8103358986078 1 -106.083767125375 5.9346390534982802 -7.7138973986134003 1 -106.22298716624 5.74809233490069 -7.6684723520068996 1.00000000000003 -106.358532206647 5.55483953798963 -7.6231670762696 0.99999999999993305 -106.48999092503 5.3548056333878504 -7.5781951128482996 1.0000000000000699 -106.61802293725999 5.1471830429691803 -7.5335010024253997 0.99999999999996403 -106.743368395358 4.9289507951340399 -7.4888728139341998 1.00000000000001 -106.864195373253 4.7023052107494197 -7.4450231568582996 1 -107.074634309411 4.2742147209349399 -7.3673312197404002 1 -107.165449683511 4.0772414740479102 -7.3333158445011 1.00000000000006 -107.25367531591201 3.8724048712878201 -7.2998182950865997 0.99999999999982503 -107.339194108051 3.65871557669881 -7.2669289031283002 1.00000000000024 -107.42179551206701 3.4350567842484399 -7.2347746961533002 0.99999999999982703 -107.501143172749 3.1999906136513001 -7.2035356648917999 1.00000000000005 -107.576781971846 2.9517552785654599 -7.1734441755724001 1 -107.69956154494 2.4957200853355799 -7.1241376378685999 1 -107.748577863866 2.2966107377482001 -7.1043040729640001 0.99999999999998501 -107.795265446237 2.0862702425862198 -7.0852821092851004 1.00000000000006 -107.838230048207 1.8695544398442501 -7.0676464820252001 0.99999999999990397 -107.878876262961 1.6333082485896 -7.0508819104766003 1.0000000000000799 -107.91400363927301 1.3878633521795301 -7.0362738863705996 0.99999999999997002 -107.94373553352401 1.1267745488871199 -7.0238546139907001 1 -107.983543807224 0.63426249518895395 -7.0071267514861999 1 -107.997081237156 0.40356004345519603 -7.0013952339131 1.0000000000000999 -108.004941101919 0.16355984670484999 -6.9980113392429999 0.99999999999969302 -108.006112940457 -0.079597624613907403 -6.9974140845440997 1.0000000000004201 -108.000520110577 -0.32056623167390802 -6.9996408636025 0.99999999999971101 -107.98879787509 -0.55459989107335395 -7.0044156268747004 1.0000000000000899 -107.972146866933 -0.77743658460414999 -7.0112256910860999 1 -107.92966423651799 -1.218060385776 -7.0286039855254003 1 -107.902364727464 -1.43829771441944 -7.0397731045486003 1.0000000000000799 -107.87112390310701 -1.6474081771209701 -7.0525292515281004 0.99999999999978095 -107.836770313095 -1.84648412282334 -7.0665249405484998 1.00000000000027 -107.79917201564 -2.03821271372483 -7.0817474035553998 0.99999999999983702 -107.759684202283 -2.2201052408216402 -7.0976945037224004 1.00000000000004 -107.717929929053 -2.3955711608792498 -7.1144588094846002 1 -107.61373399682 -2.7989889602999698 -7.1560647569124001 1 -107.549619975507 -3.0207681460444 -7.1814862632254997 1.00000000000002 -107.482428582829 -3.2320820724153299 -7.2079123354785004 0.99999999999992095 -107.41251940685299 -3.4341869928338502 -7.2351609309766998 1.0000000000001199 -107.340167617525 -3.6281090640175799 -7.2630878534159002 0.99999999999989997 -107.265564247326 -3.8146762956160201 -7.2915853469074996 1.00000000000004 -107.188832945963 -3.9946268112798 -7.3205733885014999 1 -107.017441606894 -4.3730442138179502 -7.3845685275637001 1 -106.922012360811 -4.5691660196445101 -7.4197313942671999 1.00000000000006 -106.824179232769 -4.7576260166063999 -7.4552938331184997 0.99999999999978095 -106.72288839721099 -4.9404926110695602 -7.4915044771534003 1.00000000000033 -106.621036888544 -5.1148228016959898 -7.5274459503270004 0.99999999999975697 -106.51409548112299 -5.2869968739101498 -7.5644337348833997 1.0000000000000799 -106.406580316633 -5.4513254656401102 -7.6010278002713996 1 -106.178511615291 -5.7821685552495001 -7.6772238815923997 1 -106.057905150107 -5.9474726433193998 -7.7167449418652998 0.99999999999997802 -105.934656889632 -6.1074049899584599 -7.7563098384757998 1.00000000000003 -105.808582870173 -6.2624725636334997 -7.7959036648164002 1 -105.679467122071 -6.4130823666444403 -7.8355117159581997 0.99999999999996503 -105.54705939196501 -6.5595691457376901 -7.8751186863884 1.00000000000002 -105.41106335119299 -6.7022107383878797 -7.9147085400565 1 -105.142343380653 -6.9691674671672299 -7.9906602507663997 1 -105.01023693897 -7.0940247999310202 -8.0270241386962997 1.00000000000001 -104.874513794598 -7.2159945503623897 -8.0633417228215993 0.99999999999998102 -104.73485565948199 -7.3352148928657996 -8.0995950866814006 1 -104.590895216758 -7.4517864482548202 -8.1357607790427 1.00000000000002 -104.442201896179 -7.5657767200945303 -8.1718091303392999 0.99999999999998801 -104.288252488979 -7.6772181054412796 -8.2077018768368006 1 -103.98593146750299 -7.8830971159198198 -8.2751775618697998 1 -103.83879617084401 -7.9780434841032397 -8.3067971783373995 0.999999999999996 -103.68668942329499 -8.07086490060769 -8.3381855835568999 1.00000000000001 -103.528291260741 -8.1618601627985008 -8.3694122507138005 0.99999999999997802 -103.36406699253 -8.2502650686103198 -8.4001854241020997 1.00000000000002 -103.19272326977 -8.3362735646593293 -8.430526964337 0.999999999999995 -103.01378416545199 -8.4193748686842405 -8.4602179871202008 1 -102.68145183758899 -8.5607537523010393 -8.5113266686651006 1 -102.53174258296799 -8.6202979423884099 -8.5330600164886992 0.99999999999992895 -102.376368487704 -8.6777229064790404 -8.5542126734112998 1.00000000000022 -102.214710819619 -8.7328082472653694 -8.5746804971133006 0.99999999999970002 -102.04609347633 -8.7852544826059304 -8.5943270774085008 1.0000000000002101 -101.869712678254 -8.8346593841884502 -8.6129732643136006 0.99999999999993805 -101.68461003796401 -8.8805156967251193 -8.6303953387920007 1 -101.332880864815 -8.9554003811891594 -8.6590044074455008 1 -101.170763391454 -8.9857787812446901 -8.6706724238658008 0.99999999999992295 -101.00121532235499 -9.0131454759599201 -8.6812331031837999 1.00000000000024 -100.823130996717 -9.0370009788071695 -8.6904777499484993 0.99999999999968003 -100.63613476159 -9.0565246999554692 -8.6980708351184006 1.00000000000022 -100.440688169273 -9.0707074279004498 -8.7035978610841997 0.99999999999993705 -100.23825769013 -9.0785419844047492 -8.7066516696805998 1 -99.834646115906594 -9.0803631740751598 -8.7073615591088007 1 -99.622954609623804 -9.07488844153076 -8.7052276313751005 0.99999999999992595 -99.445535360885899 -9.0626090244949804 -8.7004398684245992 1.00000000000024 -99.238557877973705 -9.0451912252854996 -8.6936593801979001 0.99999999999967104 -99.075172431767299 -9.0230610811225294 -8.6850727161288006 1.00000000000023 -98.900551216849806 -8.9976306897132101 -8.6752459729005995 0.99999999999992994 -98.741447949144103 -8.9693079650233791 -8.6643484112317992 1 -98.375804410539104 -8.8955084241608198 -8.6360961174103004 1 -98.177786842827004 -8.8480529208282004 -8.6180305328638003 1.0000000000001099 -97.990320148772298 -8.7966721209276404 -8.5986046075119003 0.99999999999964595 -97.812037051373494 -8.7419937139664903 -8.5780925428515999 1.0000000000004901 -97.641805901029002 -8.6844936912000605 -8.5567046057931009 0.99999999999966405 -97.478701212300706 -8.6244966268844401 -8.5345892436019 1.0000000000000999 -97.321885155353201 -8.5622190882650493 -8.5118519011203997 1 -96.938230064676503 -8.3987804266996893 -8.4527800895748992 1 -96.719285939166397 -8.2948396145204608 -8.4157510465258003 0.99999999999996603 -96.511402072106094 -8.1865295047448008 -8.3777729515133004 1.0000000000001099 -96.312988818857207 -8.0742965455417206 -8.3390834071966999 0.99999999999983902 -96.123116397126395 -7.9582709797028404 -8.2998036378163995 1.0000000000001199 -95.9406409292869 -7.8386830381688597 -8.2600863660984007 0.99999999999996403 -95.764881731797999 -7.7155871873382296 -8.2200211408638992 1 -95.397712804844602 -7.4415732757484996 -8.1327233722960006 1 -95.208538435378202 -7.2894848687714404 -8.0854166870023008 0.999999999999995 -95.026591378561506 -7.13261079444099 -8.0378532299691994 1.00000000000001 -94.851150778169 -6.9708520590229703 -7.9901268657523996 0.999999999999998 -94.681649229838797 -6.8040351326461002 -7.9423181138708001 0.99999999999998801 -94.517620310280606 -6.6319068041729698 -7.8944976796855002 1.00000000000001 -94.358681430832604 -6.4541139241938099 -7.8467285357680998 1 -94.070208563887107 -6.1099208226338897 -7.7575523290003998 1 -93.939475582787793 -5.9449197420324698 -7.7161021785705 1.00000000000003 -93.812538264229104 -5.7755507703223596 -7.6749028975354001 0.99999999999992495 -93.687824170563303 -5.5991300255011804 -7.6335297983538997 1.0000000000000999 -93.568076859372297 -5.4198125210427497 -7.5929706184386996 0.99999999999993405 -93.449519036084297 -5.2311681791190896 -7.5520653078102002 1.00000000000002 -93.3350883120399 -5.0370926120972799 -7.5118411178473998 1 -93.123832863936997 -4.6540273576948596 -7.4363228721487999 1 -93.026508990566697 -4.4666495921531002 -7.4009766245068001 0.99999999999983702 -92.931884225132706 -4.2726823717373099 -7.3660976428204004 1.00000000000053 -92.839984006851495 -4.07136446304962 -7.3317489727213001 0.99999999999926203 -92.750897724546704 -3.8618127607512598 -7.2980160439850996 1.00000000000052 -92.664792023116505 -3.6429095092511301 -7.2650146547816004 0.99999999999983702 -92.581911823816597 -3.41324833178186 -7.2328934305488 1 -92.445908798895402 -2.9968404113846199 -7.1796527067009999 1 -92.391082004867798 -2.81662943539262 -7.1580239793668996 0.99999999999991995 -92.338269041902905 -2.6288836851595101 -7.1370389063262998 1.00000000000028 -92.287707028929603 -2.43319461020931 -7.1168160772920999 0.99999999999959099 -92.239597881051097 -2.2269657861149201 -7.0974571104792998 1.00000000000031 -92.194668668237298 -2.0115545670678401 -7.0792784873501997 0.99999999999989897 -92.153121008946897 -1.7819875214873599 -7.0624030510216 1 -92.090723986489394 -1.3696059469181801 -7.0369670220072003 1 -92.067467847609706 -1.1940437905302099 -7.0274589357380997 0.99999999999987199 -92.046757341098996 -1.0110173235706099 -7.0189745020142 1.0000000000004099 -92.029018993252294 -0.81979997270707095 -7.0117013856651997 0.99999999999943601 -92.014861409913195 -0.62039118361415502 -7.0059037024100999 1.0000000000003999 -92.004977254513506 -0.41361346228328599 -7.0018818564986001 0.99999999999987699 -91.9999639629482 -0.20132978992088199 -6.9998907780027997 1 -92.000000402911695 0.0131341543728976 -7.0000034501205004 1 + 0 9 0.020451729175787799 7 0.049551654993566598 7 0.082736039907863101 7 0.12136931361011299 7 0.15899622479377501 7 0.194196793783219 7 0.223874120262156 7 0.246027867209892 7 0.268403962672838 7 0.29867604159600197 7 0.33423817758737101 7 0.384122190106365 7 0.42882802026695599 7 0.46449856729266198 7 0.49034851210107999 7 0.51026955206567604 7 0.53258899886508504 7 0.56349573686483001 7 0.59980604534557402 7 0.63880670867184197 7 0.67469353488106998 7 0.70666552597802601 7 0.73129729106955099 7 0.75102879689399205 7 0.76986187455783395 7 0.795489602605709 7 0.83484838012461104 7 0.88061571790158299 7 0.92048473951999299 7 0.95636710916293499 7 0.98206683298474395 7 1 9 +2 -120 0 -32 1 0 0 0 0 -1 0 1 0 29 +2 -120 0 -32 1 0 0 0 0 -1 0 1 0 29 +2 -120 0 -32 -1 0 0 0 0 -1 0 1 0 29 +2 -120 0 -32 -1 0 0 0 0 -1 0 1 0 29 +2 -70 0 -32 1 0 0 0 0 -1 0 1 0 29 +2 -70 0 -32 1 0 0 0 0 -1 0 1 0 29 +2 -70 0 -32 -1 0 0 0 0 -1 0 1 0 29 +2 -70 0 -32 -1 0 0 0 0 -1 0 1 0 29 +2 -120 0 -32 1 0 0 0 0 -1 0 1 0 27 +2 -120 0 -32 1 0 0 0 0 -1 0 1 0 27 +2 -120 0 -32 -1 0 0 0 0 -1 0 1 0 27 +2 -120 0 -32 -1 0 0 0 0 -1 0 1 0 27 +2 -118 0 -32 1 0 0 0 0 -1 0 1 0 25 +2 -118 0 -32 1 0 0 0 0 -1 0 1 0 25 +2 -118 0 -32 -1 0 0 0 0 -1 0 1 0 25 +2 -118 0 -32 -1 0 0 0 0 -1 0 1 0 25 +2 -81 0 -32 1 0 0 0 0 -1 0 1 0 25 +2 -81 0 -32 1 0 0 0 0 -1 0 1 0 25 +2 -81 0 -32 -1 0 0 0 0 -1 0 1 0 25 +2 -81 0 -32 -1 0 0 0 0 -1 0 1 0 25 +6 1 0 0 +7 1 0 8 114 17 -107.999993676222 6.9388939039072299e-018 -57 1 -107.99974848741 0.22442179520146099 -57 1 -107.993969079073 0.44806606866886101 -56.997697604240201 1 -107.982726416018 0.66964225352149498 -56.993120663058697 1 -107.966245458587 0.88819301630970005 -56.986370116437101 0.999999999999997 -107.94483142717399 1.1030566809864799 -56.977588211769998 0.999999999999996 -107.918812674739 1.3138380587234599 -56.966931766308299 1 -107.888494138322 1.5203877112725299 -56.954550351249999 1 -107.814171198859 1.9579570826775201 -56.9243248986106 1 -107.768822544364 2.1870925409163999 -56.9059502657122 0.999999999999859 -107.718611131918 2.4098300570898901 -56.885698458713001 1.0000000000004801 -107.663713444088 2.62733288044637 -56.863698529699398 0.99999999999929501 -107.60464691225999 2.83879155356649 -56.840191132020202 1.00000000000053 -107.541484264403 3.0453297166823101 -56.8152635040476 0.99999999999982703 -107.474481207873 3.2468423412416301 -56.789061246500097 1 -107.323294995523 3.66762666732108 -56.730539461057397 1 -107.23808565209499 3.8853563564325801 -56.697899955338997 0.99999999999997302 -107.148713772574 4.0964563291320601 -56.664047612738898 1.0000000000000899 -107.054647555608 4.3030205338380298 -56.628881994341 0.999999999999862 -106.95671926147899 4.5035414722462397 -56.592769988602001 1.0000000000001099 -106.854384712876 4.6997814008331504 -56.555609373801502 0.99999999999996303 -106.747905726062 4.8913103110747098 -56.517578945208101 1 -106.51749348982 5.2808436283922999 -56.436762194536598 1 -106.39284825469601 5.4781216366364003 -56.393840546827398 0.99999999999992695 -106.263560855531 5.6700792012785 -56.350193823704501 1.00000000000022 -106.12881024264099 5.8580743006170604 -56.305685741585599 0.99999999999972 -105.98914550809 6.0411748024316401 -56.260631742738397 1.0000000000001901 -105.843758625159 6.2204338118517803 -56.214930568937 0.99999999999994305 -105.692578771404 6.3955755025173504 -56.168742692177801 1 -105.379294852896 6.7362116481200198 -56.076010081236497 1 -105.21732776990901 6.9017889868176798 -56.029474339759098 0.999999999999996 -105.049065657111 7.0633165626916901 -55.982687095200497 1.00000000000002 -104.873447100387 7.2214685339073696 -55.935565732895398 0.99999999999996003 -104.69028035786501 7.3757126098105097 -55.8883445595946 1.00000000000003 -104.498365730418 7.5264152739305601 -55.841019838778102 0.99999999999999201 -104.296761722556 7.6732968854079404 -55.793762935382702 1 -103.913963544118 7.9301604465899196 -55.709216446403801 1 -103.73711274972899 8.0414595459144795 -55.6718899425628 1.00000000000003 -103.55213483971001 8.1501760384884303 -55.634772583967901 0.99999999999989697 -103.35805975397101 8.2561009767437792 -55.597982864045598 1.0000000000001401 -103.153638360888 8.3589906440666901 -55.561658221362897 0.99999999999990197 -102.93725782867701 8.4583771205389304 -55.526022772558498 1.00000000000003 -102.70698991147501 8.5536514334772793 -55.4913659584439 1 -102.31298111632 8.6969938659633392 -55.438547589100402 1 -102.16096688003699 8.7482885398878594 -55.419490097957897 1.00000000000005 -102.00205882586 8.7976371060310505 -55.401011866856301 0.999999999999864 -101.83579053782699 8.8445766475375205 -55.383303869749803 1.0000000000001701 -101.66097559926099 8.8888104395027092 -55.366501369515497 0.99999999999988998 -101.476745737768 8.9296894104194795 -55.350875494969898 1.00000000000003 -101.282089201586 8.9664178145642097 -55.3367626402013 1 -100.904628832455 9.0239907133952197 -55.314552823592699 1 -100.72436693376299 9.0466418500169805 -55.305776403113903 0.99999999999992895 -100.535744124749 9.0649615197129894 -55.298650341232197 1.0000000000002101 -100.33829092787001 9.0779200879775992 -55.293593020645197 0.99999999999972 -100.13741340505899 9.0844741280427606 -55.291032014937002 1.0000000000001901 -99.933766057329393 9.0841366398498593 -55.291167770281497 0.99999999999994704 -99.733471990899204 9.0771000354564997 -55.2939139542597 1 -99.333092367983596 9.0513631984315897 -55.303927440208902 1 -99.132177167986697 9.0313337338618709 -55.311710048774302 0.99999999999990696 -98.940825068388307 9.0058429704372305 -55.321589805126003 1.00000000000032 -98.758922382397301 8.9759182109138003 -55.333142317855298 0.99999999999953104 -98.586037836710005 8.9424140946443291 -55.346012949984598 1.0000000000003499 -98.421473656107594 8.9059909836571993 -55.359927848161398 0.99999999999988498 -98.264309931294804 8.8670848260212001 -55.374703098509301 1 -97.902247840696205 8.7682406992685404 -55.4120001751619 1 -97.703994819421794 8.7062697321373204 -55.435198119353402 1.00000000000005 -97.5183370044047 8.6414368891842006 -55.459243661281803 0.99999999999984102 -97.340816024418302 8.5735438786916998 -55.484179954508797 1.0000000000002101 -97.1728878503842 8.5036351153440393 -55.509583238022302 0.999999999999861 -97.011678524808104 8.4315187413185395 -55.535504696093803 1.00000000000004 -96.857141166906104 8.3575345589927998 -55.561792851047201 1 -96.534963835351306 8.1934014012956595 -55.619418358603497 1 -96.369647923870403 8.1027595086107702 -55.650819432403303 0.99999999999989198 -96.210154182182393 8.0093144811695396 -55.682732028240103 1.0000000000003699 -96.059046139965801 7.9151235085771603 -55.714432570216303 0.999999999999448 -95.909311105390202 7.8166000749981599 -55.747089874110301 1.0000000000004201 -95.766498613596696 7.7170534027899897 -55.779540306446499 0.999999999999863 -95.627520239284607 7.6151188092300401 -55.812219674848002 1 -95.326145307158001 7.3826578808003704 -55.885446676004101 1 -95.165870867685697 7.2509700215652702 -55.926054875564901 1.0000000000000699 -95.0126406876511 7.1172649636991796 -55.966371147264098 0.99999999999978195 -94.863953765681799 6.9800564273061099 -56.006804178562199 1.0000000000003 -94.722005814176796 6.8411320019445396 -56.046684410736397 0.99999999999978295 -94.586952836239007 6.7021846539568299 -56.085644311091897 1.0000000000000699 -94.454593919134396 6.5587059386445299 -56.1248056156007 1 -94.200387703432597 6.2684358030059304 -56.2018375463553 1 -94.078176960502205 6.1215461027667901 -56.239778863864501 0.99999999999998401 -93.958814291214594 5.9702831233962499 -56.277693306053401 1.00000000000004 -93.844815643759105 5.8188983728891301 -56.314624844234302 0.99999999999995204 -93.730557716242004 5.6582793297091003 -56.352408742851402 1.00000000000002 -93.622980674423204 5.4995844880087299 -56.388610041605297 0.999999999999995 -93.515749440489898 5.33231720135863 -56.425328179625701 1 -93.3088179786143 4.9908596960432901 -56.497386584051398 1 -93.209969055281704 4.8179824015781998 -56.532438087769499 1.0000000000000799 -93.115660647393597 4.6432882460464002 -56.566402877366698 0.99999999999977196 -93.025628929670205 4.4665302362003496 -56.5992833942069 1.0000000000003 -92.939708751940302 4.2874325006294596 -56.6310788627028 0.99999999999979305 -92.857771622927004 4.1055863664703098 -56.661790602437797 1.00000000000006 -92.779736913064497 3.9205520820771298 -56.691413020295698 1 -92.6315936494737 3.5435905567492201 -56.748313684887499 1 -92.563067181003504 3.35511754325691 -56.775107061479702 1.00000000000006 -92.486997470110893 3.1379661377278998 -56.8044774292119 0.99999999999982803 -92.414777741193305 2.91312694588167 -56.832142393347198 1.00000000000023 -92.348168006777797 2.6775108611308802 -56.858749785007603 0.99999999999984601 -92.288064003066395 2.4361004680847098 -56.883040985098098 1.00000000000005 -92.235355974710103 2.1959263097125601 -56.904504613073499 1 -92.144030629990695 1.72419756375303 -56.941584829236 1 -92.1052450666011 1.49237025052556 -56.957277619766899 0.99999999999996703 -92.072052207690106 1.25978744112534 -56.970513330326398 1.0000000000001099 -92.044930978065906 1.0243790154901 -56.981717971710601 0.99999999999983202 -92.023755608273802 0.77972765740926098 -56.990364311763301 1.0000000000001299 -92.009467081354998 0.53283487283069997 -56.996607729970897 0.99999999999995803 -92.001100186632698 0.27237206574418799 -57 1 -92.000573227803301 6.9388939039072299e-018 -57 1 + 0 9 0.058332155897488497 7 0.12610729780597399 7 0.203128329129593 7 0.28628459510170901 7 0.36851128230551999 7 0.43406476811713302 7 0.47276130537807498 7 0.50482077164509598 7 0.54019847315269998 7 0.58971540073372097 7 0.64731694618928504 7 0.71873230465626603 7 0.78913885664921002 7 0.85997049029116002 7 0.93027647875214803 7 1 9 +6 1 0 0 +7 1 0 8 114 17 -107.999993676222 6.9388939039072299e-018 -57 1 -107.99974848741 0.22442179520146099 -57 1 -107.993969079073 0.44806606866886101 -56.997697604240201 1 -107.982726416018 0.66964225352149498 -56.993120663058697 1 -107.966245458587 0.88819301630970005 -56.986370116437101 0.999999999999997 -107.94483142717399 1.1030566809864799 -56.977588211769998 0.999999999999996 -107.918812674739 1.3138380587234599 -56.966931766308299 1 -107.888494138322 1.5203877112725299 -56.954550351249999 1 -107.814171198859 1.9579570826775201 -56.9243248986106 1 -107.768822544364 2.1870925409163999 -56.9059502657122 0.999999999999859 -107.718611131918 2.4098300570898901 -56.885698458713001 1.0000000000004801 -107.663713444088 2.62733288044637 -56.863698529699398 0.99999999999929501 -107.60464691225999 2.83879155356649 -56.840191132020202 1.00000000000053 -107.541484264403 3.0453297166823101 -56.8152635040476 0.99999999999982703 -107.474481207873 3.2468423412416301 -56.789061246500097 1 -107.323294995523 3.66762666732108 -56.730539461057397 1 -107.23808565209499 3.8853563564325801 -56.697899955338997 0.99999999999997302 -107.148713772574 4.0964563291320601 -56.664047612738898 1.0000000000000899 -107.054647555608 4.3030205338380298 -56.628881994341 0.999999999999862 -106.95671926147899 4.5035414722462397 -56.592769988602001 1.0000000000001099 -106.854384712876 4.6997814008331504 -56.555609373801502 0.99999999999996303 -106.747905726062 4.8913103110747098 -56.517578945208101 1 -106.51749348982 5.2808436283922999 -56.436762194536598 1 -106.39284825469601 5.4781216366364003 -56.393840546827398 0.99999999999992695 -106.263560855531 5.6700792012785 -56.350193823704501 1.00000000000022 -106.12881024264099 5.8580743006170604 -56.305685741585599 0.99999999999972 -105.98914550809 6.0411748024316401 -56.260631742738397 1.0000000000001901 -105.843758625159 6.2204338118517803 -56.214930568937 0.99999999999994305 -105.692578771404 6.3955755025173504 -56.168742692177801 1 -105.379294852896 6.7362116481200198 -56.076010081236497 1 -105.21732776990901 6.9017889868176798 -56.029474339759098 0.999999999999996 -105.049065657111 7.0633165626916901 -55.982687095200497 1.00000000000002 -104.873447100387 7.2214685339073696 -55.935565732895398 0.99999999999996003 -104.69028035786501 7.3757126098105097 -55.8883445595946 1.00000000000003 -104.498365730418 7.5264152739305601 -55.841019838778102 0.99999999999999201 -104.296761722556 7.6732968854079404 -55.793762935382702 1 -103.913963544118 7.9301604465899196 -55.709216446403801 1 -103.73711274972899 8.0414595459144795 -55.6718899425628 1.00000000000003 -103.55213483971001 8.1501760384884303 -55.634772583967901 0.99999999999989697 -103.35805975397101 8.2561009767437792 -55.597982864045598 1.0000000000001401 -103.153638360888 8.3589906440666901 -55.561658221362897 0.99999999999990197 -102.93725782867701 8.4583771205389304 -55.526022772558498 1.00000000000003 -102.70698991147501 8.5536514334772793 -55.4913659584439 1 -102.31298111632 8.6969938659633392 -55.438547589100402 1 -102.16096688003699 8.7482885398878594 -55.419490097957897 1.00000000000005 -102.00205882586 8.7976371060310505 -55.401011866856301 0.999999999999864 -101.83579053782699 8.8445766475375205 -55.383303869749803 1.0000000000001701 -101.66097559926099 8.8888104395027092 -55.366501369515497 0.99999999999988998 -101.476745737768 8.9296894104194795 -55.350875494969898 1.00000000000003 -101.282089201586 8.9664178145642097 -55.3367626402013 1 -100.904628832455 9.0239907133952197 -55.314552823592699 1 -100.72436693376299 9.0466418500169805 -55.305776403113903 0.99999999999992895 -100.535744124749 9.0649615197129894 -55.298650341232197 1.0000000000002101 -100.33829092787001 9.0779200879775992 -55.293593020645197 0.99999999999972 -100.13741340505899 9.0844741280427606 -55.291032014937002 1.0000000000001901 -99.933766057329393 9.0841366398498593 -55.291167770281497 0.99999999999994704 -99.733471990899204 9.0771000354564997 -55.2939139542597 1 -99.333092367983596 9.0513631984315897 -55.303927440208902 1 -99.132177167986697 9.0313337338618709 -55.311710048774302 0.99999999999990696 -98.940825068388307 9.0058429704372305 -55.321589805126003 1.00000000000032 -98.758922382397301 8.9759182109138003 -55.333142317855298 0.99999999999953104 -98.586037836710005 8.9424140946443291 -55.346012949984598 1.0000000000003499 -98.421473656107594 8.9059909836571993 -55.359927848161398 0.99999999999988498 -98.264309931294804 8.8670848260212001 -55.374703098509301 1 -97.902247840696205 8.7682406992685404 -55.4120001751619 1 -97.703994819421794 8.7062697321373204 -55.435198119353402 1.00000000000005 -97.5183370044047 8.6414368891842006 -55.459243661281803 0.99999999999984102 -97.340816024418302 8.5735438786916998 -55.484179954508797 1.0000000000002101 -97.1728878503842 8.5036351153440393 -55.509583238022302 0.999999999999861 -97.011678524808104 8.4315187413185395 -55.535504696093803 1.00000000000004 -96.857141166906104 8.3575345589927998 -55.561792851047201 1 -96.534963835351306 8.1934014012956595 -55.619418358603497 1 -96.369647923870403 8.1027595086107702 -55.650819432403303 0.99999999999989198 -96.210154182182393 8.0093144811695396 -55.682732028240103 1.0000000000003699 -96.059046139965801 7.9151235085771603 -55.714432570216303 0.999999999999448 -95.909311105390202 7.8166000749981599 -55.747089874110301 1.0000000000004201 -95.766498613596696 7.7170534027899897 -55.779540306446499 0.999999999999863 -95.627520239284607 7.6151188092300401 -55.812219674848002 1 -95.326145307158001 7.3826578808003704 -55.885446676004101 1 -95.165870867685697 7.2509700215652702 -55.926054875564901 1.0000000000000699 -95.0126406876511 7.1172649636991796 -55.966371147264098 0.99999999999978195 -94.863953765681799 6.9800564273061099 -56.006804178562199 1.0000000000003 -94.722005814176796 6.8411320019445396 -56.046684410736397 0.99999999999978295 -94.586952836239007 6.7021846539568299 -56.085644311091897 1.0000000000000699 -94.454593919134396 6.5587059386445299 -56.1248056156007 1 -94.200387703432597 6.2684358030059304 -56.2018375463553 1 -94.078176960502205 6.1215461027667901 -56.239778863864501 0.99999999999998401 -93.958814291214594 5.9702831233962499 -56.277693306053401 1.00000000000004 -93.844815643759105 5.8188983728891301 -56.314624844234302 0.99999999999995204 -93.730557716242004 5.6582793297091003 -56.352408742851402 1.00000000000002 -93.622980674423204 5.4995844880087299 -56.388610041605297 0.999999999999995 -93.515749440489898 5.33231720135863 -56.425328179625701 1 -93.3088179786143 4.9908596960432901 -56.497386584051398 1 -93.209969055281704 4.8179824015781998 -56.532438087769499 1.0000000000000799 -93.115660647393597 4.6432882460464002 -56.566402877366698 0.99999999999977196 -93.025628929670205 4.4665302362003496 -56.5992833942069 1.0000000000003 -92.939708751940302 4.2874325006294596 -56.6310788627028 0.99999999999979305 -92.857771622927004 4.1055863664703098 -56.661790602437797 1.00000000000006 -92.779736913064497 3.9205520820771298 -56.691413020295698 1 -92.6315936494737 3.5435905567492201 -56.748313684887499 1 -92.563067181003504 3.35511754325691 -56.775107061479702 1.00000000000006 -92.486997470110893 3.1379661377278998 -56.8044774292119 0.99999999999982803 -92.414777741193305 2.91312694588167 -56.832142393347198 1.00000000000023 -92.348168006777797 2.6775108611308802 -56.858749785007603 0.99999999999984601 -92.288064003066395 2.4361004680847098 -56.883040985098098 1.00000000000005 -92.235355974710103 2.1959263097125601 -56.904504613073499 1 -92.144030629990695 1.72419756375303 -56.941584829236 1 -92.1052450666011 1.49237025052556 -56.957277619766899 0.99999999999996703 -92.072052207690106 1.25978744112534 -56.970513330326398 1.0000000000001099 -92.044930978065906 1.0243790154901 -56.981717971710601 0.99999999999983202 -92.023755608273802 0.77972765740926098 -56.990364311763301 1.0000000000001299 -92.009467081354998 0.53283487283069997 -56.996607729970897 0.99999999999995803 -92.001100186632698 0.27237206574418799 -57 1 -92.000573227803301 6.9388939039072299e-018 -57 1 + 0 9 0.058332155897488497 7 0.12610729780597399 7 0.203128329129593 7 0.28628459510170901 7 0.36851128230551999 7 0.43406476811713302 7 0.47276130537807498 7 0.50482077164509598 7 0.54019847315269998 7 0.58971540073372097 7 0.64731694618928504 7 0.71873230465626603 7 0.78913885664921002 7 0.85997049029116002 7 0.93027647875214803 7 1 9 +6 -1 0 0 +7 1 0 8 114 17 -107.999993676222 6.9388939039072299e-018 -57 1 -107.99974848741 0.22442179520146099 -57 1 -107.993969079073 0.44806606866886101 -56.997697604240201 1 -107.982726416018 0.66964225352149498 -56.993120663058697 1 -107.966245458587 0.88819301630970005 -56.986370116437101 0.999999999999997 -107.94483142717399 1.1030566809864799 -56.977588211769998 0.999999999999996 -107.918812674739 1.3138380587234599 -56.966931766308299 1 -107.888494138322 1.5203877112725299 -56.954550351249999 1 -107.814171198859 1.9579570826775201 -56.9243248986106 1 -107.768822544364 2.1870925409163999 -56.9059502657122 0.999999999999859 -107.718611131918 2.4098300570898901 -56.885698458713001 1.0000000000004801 -107.663713444088 2.62733288044637 -56.863698529699398 0.99999999999929501 -107.60464691225999 2.83879155356649 -56.840191132020202 1.00000000000053 -107.541484264403 3.0453297166823101 -56.8152635040476 0.99999999999982703 -107.474481207873 3.2468423412416301 -56.789061246500097 1 -107.323294995523 3.66762666732108 -56.730539461057397 1 -107.23808565209499 3.8853563564325801 -56.697899955338997 0.99999999999997302 -107.148713772574 4.0964563291320601 -56.664047612738898 1.0000000000000899 -107.054647555608 4.3030205338380298 -56.628881994341 0.999999999999862 -106.95671926147899 4.5035414722462397 -56.592769988602001 1.0000000000001099 -106.854384712876 4.6997814008331504 -56.555609373801502 0.99999999999996303 -106.747905726062 4.8913103110747098 -56.517578945208101 1 -106.51749348982 5.2808436283922999 -56.436762194536598 1 -106.39284825469601 5.4781216366364003 -56.393840546827398 0.99999999999992695 -106.263560855531 5.6700792012785 -56.350193823704501 1.00000000000022 -106.12881024264099 5.8580743006170604 -56.305685741585599 0.99999999999972 -105.98914550809 6.0411748024316401 -56.260631742738397 1.0000000000001901 -105.843758625159 6.2204338118517803 -56.214930568937 0.99999999999994305 -105.692578771404 6.3955755025173504 -56.168742692177801 1 -105.379294852896 6.7362116481200198 -56.076010081236497 1 -105.21732776990901 6.9017889868176798 -56.029474339759098 0.999999999999996 -105.049065657111 7.0633165626916901 -55.982687095200497 1.00000000000002 -104.873447100387 7.2214685339073696 -55.935565732895398 0.99999999999996003 -104.69028035786501 7.3757126098105097 -55.8883445595946 1.00000000000003 -104.498365730418 7.5264152739305601 -55.841019838778102 0.99999999999999201 -104.296761722556 7.6732968854079404 -55.793762935382702 1 -103.913963544118 7.9301604465899196 -55.709216446403801 1 -103.73711274972899 8.0414595459144795 -55.6718899425628 1.00000000000003 -103.55213483971001 8.1501760384884303 -55.634772583967901 0.99999999999989697 -103.35805975397101 8.2561009767437792 -55.597982864045598 1.0000000000001401 -103.153638360888 8.3589906440666901 -55.561658221362897 0.99999999999990197 -102.93725782867701 8.4583771205389304 -55.526022772558498 1.00000000000003 -102.70698991147501 8.5536514334772793 -55.4913659584439 1 -102.31298111632 8.6969938659633392 -55.438547589100402 1 -102.16096688003699 8.7482885398878594 -55.419490097957897 1.00000000000005 -102.00205882586 8.7976371060310505 -55.401011866856301 0.999999999999864 -101.83579053782699 8.8445766475375205 -55.383303869749803 1.0000000000001701 -101.66097559926099 8.8888104395027092 -55.366501369515497 0.99999999999988998 -101.476745737768 8.9296894104194795 -55.350875494969898 1.00000000000003 -101.282089201586 8.9664178145642097 -55.3367626402013 1 -100.904628832455 9.0239907133952197 -55.314552823592699 1 -100.72436693376299 9.0466418500169805 -55.305776403113903 0.99999999999992895 -100.535744124749 9.0649615197129894 -55.298650341232197 1.0000000000002101 -100.33829092787001 9.0779200879775992 -55.293593020645197 0.99999999999972 -100.13741340505899 9.0844741280427606 -55.291032014937002 1.0000000000001901 -99.933766057329393 9.0841366398498593 -55.291167770281497 0.99999999999994704 -99.733471990899204 9.0771000354564997 -55.2939139542597 1 -99.333092367983596 9.0513631984315897 -55.303927440208902 1 -99.132177167986697 9.0313337338618709 -55.311710048774302 0.99999999999990696 -98.940825068388307 9.0058429704372305 -55.321589805126003 1.00000000000032 -98.758922382397301 8.9759182109138003 -55.333142317855298 0.99999999999953104 -98.586037836710005 8.9424140946443291 -55.346012949984598 1.0000000000003499 -98.421473656107594 8.9059909836571993 -55.359927848161398 0.99999999999988498 -98.264309931294804 8.8670848260212001 -55.374703098509301 1 -97.902247840696205 8.7682406992685404 -55.4120001751619 1 -97.703994819421794 8.7062697321373204 -55.435198119353402 1.00000000000005 -97.5183370044047 8.6414368891842006 -55.459243661281803 0.99999999999984102 -97.340816024418302 8.5735438786916998 -55.484179954508797 1.0000000000002101 -97.1728878503842 8.5036351153440393 -55.509583238022302 0.999999999999861 -97.011678524808104 8.4315187413185395 -55.535504696093803 1.00000000000004 -96.857141166906104 8.3575345589927998 -55.561792851047201 1 -96.534963835351306 8.1934014012956595 -55.619418358603497 1 -96.369647923870403 8.1027595086107702 -55.650819432403303 0.99999999999989198 -96.210154182182393 8.0093144811695396 -55.682732028240103 1.0000000000003699 -96.059046139965801 7.9151235085771603 -55.714432570216303 0.999999999999448 -95.909311105390202 7.8166000749981599 -55.747089874110301 1.0000000000004201 -95.766498613596696 7.7170534027899897 -55.779540306446499 0.999999999999863 -95.627520239284607 7.6151188092300401 -55.812219674848002 1 -95.326145307158001 7.3826578808003704 -55.885446676004101 1 -95.165870867685697 7.2509700215652702 -55.926054875564901 1.0000000000000699 -95.0126406876511 7.1172649636991796 -55.966371147264098 0.99999999999978195 -94.863953765681799 6.9800564273061099 -56.006804178562199 1.0000000000003 -94.722005814176796 6.8411320019445396 -56.046684410736397 0.99999999999978295 -94.586952836239007 6.7021846539568299 -56.085644311091897 1.0000000000000699 -94.454593919134396 6.5587059386445299 -56.1248056156007 1 -94.200387703432597 6.2684358030059304 -56.2018375463553 1 -94.078176960502205 6.1215461027667901 -56.239778863864501 0.99999999999998401 -93.958814291214594 5.9702831233962499 -56.277693306053401 1.00000000000004 -93.844815643759105 5.8188983728891301 -56.314624844234302 0.99999999999995204 -93.730557716242004 5.6582793297091003 -56.352408742851402 1.00000000000002 -93.622980674423204 5.4995844880087299 -56.388610041605297 0.999999999999995 -93.515749440489898 5.33231720135863 -56.425328179625701 1 -93.3088179786143 4.9908596960432901 -56.497386584051398 1 -93.209969055281704 4.8179824015781998 -56.532438087769499 1.0000000000000799 -93.115660647393597 4.6432882460464002 -56.566402877366698 0.99999999999977196 -93.025628929670205 4.4665302362003496 -56.5992833942069 1.0000000000003 -92.939708751940302 4.2874325006294596 -56.6310788627028 0.99999999999979305 -92.857771622927004 4.1055863664703098 -56.661790602437797 1.00000000000006 -92.779736913064497 3.9205520820771298 -56.691413020295698 1 -92.6315936494737 3.5435905567492201 -56.748313684887499 1 -92.563067181003504 3.35511754325691 -56.775107061479702 1.00000000000006 -92.486997470110893 3.1379661377278998 -56.8044774292119 0.99999999999982803 -92.414777741193305 2.91312694588167 -56.832142393347198 1.00000000000023 -92.348168006777797 2.6775108611308802 -56.858749785007603 0.99999999999984601 -92.288064003066395 2.4361004680847098 -56.883040985098098 1.00000000000005 -92.235355974710103 2.1959263097125601 -56.904504613073499 1 -92.144030629990695 1.72419756375303 -56.941584829236 1 -92.1052450666011 1.49237025052556 -56.957277619766899 0.99999999999996703 -92.072052207690106 1.25978744112534 -56.970513330326398 1.0000000000001099 -92.044930978065906 1.0243790154901 -56.981717971710601 0.99999999999983202 -92.023755608273802 0.77972765740926098 -56.990364311763301 1.0000000000001299 -92.009467081354998 0.53283487283069997 -56.996607729970897 0.99999999999995803 -92.001100186632698 0.27237206574418799 -57 1 -92.000573227803301 6.9388939039072299e-018 -57 1 + 0 9 0.058332155897488497 7 0.12610729780597399 7 0.203128329129593 7 0.28628459510170901 7 0.36851128230551999 7 0.43406476811713302 7 0.47276130537807498 7 0.50482077164509598 7 0.54019847315269998 7 0.58971540073372097 7 0.64731694618928504 7 0.71873230465626603 7 0.78913885664921002 7 0.85997049029116002 7 0.93027647875214803 7 1 9 +6 -1 0 0 +7 1 0 8 114 17 -107.999993676222 6.9388939039072299e-018 -57 1 -107.99974848741 0.22442179520146099 -57 1 -107.993969079073 0.44806606866886101 -56.997697604240201 1 -107.982726416018 0.66964225352149498 -56.993120663058697 1 -107.966245458587 0.88819301630970005 -56.986370116437101 0.999999999999997 -107.94483142717399 1.1030566809864799 -56.977588211769998 0.999999999999996 -107.918812674739 1.3138380587234599 -56.966931766308299 1 -107.888494138322 1.5203877112725299 -56.954550351249999 1 -107.814171198859 1.9579570826775201 -56.9243248986106 1 -107.768822544364 2.1870925409163999 -56.9059502657122 0.999999999999859 -107.718611131918 2.4098300570898901 -56.885698458713001 1.0000000000004801 -107.663713444088 2.62733288044637 -56.863698529699398 0.99999999999929501 -107.60464691225999 2.83879155356649 -56.840191132020202 1.00000000000053 -107.541484264403 3.0453297166823101 -56.8152635040476 0.99999999999982703 -107.474481207873 3.2468423412416301 -56.789061246500097 1 -107.323294995523 3.66762666732108 -56.730539461057397 1 -107.23808565209499 3.8853563564325801 -56.697899955338997 0.99999999999997302 -107.148713772574 4.0964563291320601 -56.664047612738898 1.0000000000000899 -107.054647555608 4.3030205338380298 -56.628881994341 0.999999999999862 -106.95671926147899 4.5035414722462397 -56.592769988602001 1.0000000000001099 -106.854384712876 4.6997814008331504 -56.555609373801502 0.99999999999996303 -106.747905726062 4.8913103110747098 -56.517578945208101 1 -106.51749348982 5.2808436283922999 -56.436762194536598 1 -106.39284825469601 5.4781216366364003 -56.393840546827398 0.99999999999992695 -106.263560855531 5.6700792012785 -56.350193823704501 1.00000000000022 -106.12881024264099 5.8580743006170604 -56.305685741585599 0.99999999999972 -105.98914550809 6.0411748024316401 -56.260631742738397 1.0000000000001901 -105.843758625159 6.2204338118517803 -56.214930568937 0.99999999999994305 -105.692578771404 6.3955755025173504 -56.168742692177801 1 -105.379294852896 6.7362116481200198 -56.076010081236497 1 -105.21732776990901 6.9017889868176798 -56.029474339759098 0.999999999999996 -105.049065657111 7.0633165626916901 -55.982687095200497 1.00000000000002 -104.873447100387 7.2214685339073696 -55.935565732895398 0.99999999999996003 -104.69028035786501 7.3757126098105097 -55.8883445595946 1.00000000000003 -104.498365730418 7.5264152739305601 -55.841019838778102 0.99999999999999201 -104.296761722556 7.6732968854079404 -55.793762935382702 1 -103.913963544118 7.9301604465899196 -55.709216446403801 1 -103.73711274972899 8.0414595459144795 -55.6718899425628 1.00000000000003 -103.55213483971001 8.1501760384884303 -55.634772583967901 0.99999999999989697 -103.35805975397101 8.2561009767437792 -55.597982864045598 1.0000000000001401 -103.153638360888 8.3589906440666901 -55.561658221362897 0.99999999999990197 -102.93725782867701 8.4583771205389304 -55.526022772558498 1.00000000000003 -102.70698991147501 8.5536514334772793 -55.4913659584439 1 -102.31298111632 8.6969938659633392 -55.438547589100402 1 -102.16096688003699 8.7482885398878594 -55.419490097957897 1.00000000000005 -102.00205882586 8.7976371060310505 -55.401011866856301 0.999999999999864 -101.83579053782699 8.8445766475375205 -55.383303869749803 1.0000000000001701 -101.66097559926099 8.8888104395027092 -55.366501369515497 0.99999999999988998 -101.476745737768 8.9296894104194795 -55.350875494969898 1.00000000000003 -101.282089201586 8.9664178145642097 -55.3367626402013 1 -100.904628832455 9.0239907133952197 -55.314552823592699 1 -100.72436693376299 9.0466418500169805 -55.305776403113903 0.99999999999992895 -100.535744124749 9.0649615197129894 -55.298650341232197 1.0000000000002101 -100.33829092787001 9.0779200879775992 -55.293593020645197 0.99999999999972 -100.13741340505899 9.0844741280427606 -55.291032014937002 1.0000000000001901 -99.933766057329393 9.0841366398498593 -55.291167770281497 0.99999999999994704 -99.733471990899204 9.0771000354564997 -55.2939139542597 1 -99.333092367983596 9.0513631984315897 -55.303927440208902 1 -99.132177167986697 9.0313337338618709 -55.311710048774302 0.99999999999990696 -98.940825068388307 9.0058429704372305 -55.321589805126003 1.00000000000032 -98.758922382397301 8.9759182109138003 -55.333142317855298 0.99999999999953104 -98.586037836710005 8.9424140946443291 -55.346012949984598 1.0000000000003499 -98.421473656107594 8.9059909836571993 -55.359927848161398 0.99999999999988498 -98.264309931294804 8.8670848260212001 -55.374703098509301 1 -97.902247840696205 8.7682406992685404 -55.4120001751619 1 -97.703994819421794 8.7062697321373204 -55.435198119353402 1.00000000000005 -97.5183370044047 8.6414368891842006 -55.459243661281803 0.99999999999984102 -97.340816024418302 8.5735438786916998 -55.484179954508797 1.0000000000002101 -97.1728878503842 8.5036351153440393 -55.509583238022302 0.999999999999861 -97.011678524808104 8.4315187413185395 -55.535504696093803 1.00000000000004 -96.857141166906104 8.3575345589927998 -55.561792851047201 1 -96.534963835351306 8.1934014012956595 -55.619418358603497 1 -96.369647923870403 8.1027595086107702 -55.650819432403303 0.99999999999989198 -96.210154182182393 8.0093144811695396 -55.682732028240103 1.0000000000003699 -96.059046139965801 7.9151235085771603 -55.714432570216303 0.999999999999448 -95.909311105390202 7.8166000749981599 -55.747089874110301 1.0000000000004201 -95.766498613596696 7.7170534027899897 -55.779540306446499 0.999999999999863 -95.627520239284607 7.6151188092300401 -55.812219674848002 1 -95.326145307158001 7.3826578808003704 -55.885446676004101 1 -95.165870867685697 7.2509700215652702 -55.926054875564901 1.0000000000000699 -95.0126406876511 7.1172649636991796 -55.966371147264098 0.99999999999978195 -94.863953765681799 6.9800564273061099 -56.006804178562199 1.0000000000003 -94.722005814176796 6.8411320019445396 -56.046684410736397 0.99999999999978295 -94.586952836239007 6.7021846539568299 -56.085644311091897 1.0000000000000699 -94.454593919134396 6.5587059386445299 -56.1248056156007 1 -94.200387703432597 6.2684358030059304 -56.2018375463553 1 -94.078176960502205 6.1215461027667901 -56.239778863864501 0.99999999999998401 -93.958814291214594 5.9702831233962499 -56.277693306053401 1.00000000000004 -93.844815643759105 5.8188983728891301 -56.314624844234302 0.99999999999995204 -93.730557716242004 5.6582793297091003 -56.352408742851402 1.00000000000002 -93.622980674423204 5.4995844880087299 -56.388610041605297 0.999999999999995 -93.515749440489898 5.33231720135863 -56.425328179625701 1 -93.3088179786143 4.9908596960432901 -56.497386584051398 1 -93.209969055281704 4.8179824015781998 -56.532438087769499 1.0000000000000799 -93.115660647393597 4.6432882460464002 -56.566402877366698 0.99999999999977196 -93.025628929670205 4.4665302362003496 -56.5992833942069 1.0000000000003 -92.939708751940302 4.2874325006294596 -56.6310788627028 0.99999999999979305 -92.857771622927004 4.1055863664703098 -56.661790602437797 1.00000000000006 -92.779736913064497 3.9205520820771298 -56.691413020295698 1 -92.6315936494737 3.5435905567492201 -56.748313684887499 1 -92.563067181003504 3.35511754325691 -56.775107061479702 1.00000000000006 -92.486997470110893 3.1379661377278998 -56.8044774292119 0.99999999999982803 -92.414777741193305 2.91312694588167 -56.832142393347198 1.00000000000023 -92.348168006777797 2.6775108611308802 -56.858749785007603 0.99999999999984601 -92.288064003066395 2.4361004680847098 -56.883040985098098 1.00000000000005 -92.235355974710103 2.1959263097125601 -56.904504613073499 1 -92.144030629990695 1.72419756375303 -56.941584829236 1 -92.1052450666011 1.49237025052556 -56.957277619766899 0.99999999999996703 -92.072052207690106 1.25978744112534 -56.970513330326398 1.0000000000001099 -92.044930978065906 1.0243790154901 -56.981717971710601 0.99999999999983202 -92.023755608273802 0.77972765740926098 -56.990364311763301 1.0000000000001299 -92.009467081354998 0.53283487283069997 -56.996607729970897 0.99999999999995803 -92.001100186632698 0.27237206574418799 -57 1 -92.000573227803301 6.9388939039072299e-018 -57 1 + 0 9 0.058332155897488497 7 0.12610729780597399 7 0.203128329129593 7 0.28628459510170901 7 0.36851128230551999 7 0.43406476811713302 7 0.47276130537807498 7 0.50482077164509598 7 0.54019847315269998 7 0.58971540073372097 7 0.64731694618928504 7 0.71873230465626603 7 0.78913885664921002 7 0.85997049029116002 7 0.93027647875214803 7 1 9 +6 0 0 1 +7 1 0 8 114 17 -92.000006323777598 -6.9388939039072299e-018 -57 1 -92.000251512590197 -0.22442179520146099 -57 1 -92.006030920926605 -0.44806606866886101 -56.997697604240201 1 -92.017273583982401 -0.66964225352149498 -56.993120663058697 1 -92.033754541413302 -0.88819301630970005 -56.986370116437101 0.999999999999997 -92.055168572826005 -1.1030566809864799 -56.977588211769998 0.999999999999996 -92.081187325260601 -1.3138380587234599 -56.966931766308299 1 -92.111505861678296 -1.5203877112725299 -56.954550351249999 1 -92.185828801141199 -1.9579570826775201 -56.924324898610699 1 -92.231177455636498 -2.1870925409163999 -56.9059502657122 0.999999999999859 -92.281388868081706 -2.4098300570898901 -56.885698458713001 1.0000000000004801 -92.336286555911798 -2.62733288044637 -56.863698529699398 0.99999999999929501 -92.395353087740205 -2.83879155356649 -56.840191132020202 1.00000000000053 -92.458515735597203 -3.0453297166823101 -56.8152635040476 0.99999999999982703 -92.525518792127102 -3.2468423412416301 -56.789061246500097 1 -92.676705004477498 -3.66762666732108 -56.730539461057397 1 -92.761914347904806 -3.8853563564325801 -56.697899955338997 0.99999999999997302 -92.851286227425703 -4.0964563291320601 -56.664047612738898 1.0000000000000899 -92.945352444392 -4.3030205338380298 -56.628881994341 0.999999999999862 -93.043280738520593 -4.5035414722462397 -56.592769988602001 1.0000000000001099 -93.145615287123903 -4.6997814008331504 -56.555609373801502 0.99999999999996303 -93.252094273938297 -4.8913103110747098 -56.517578945208101 1 -93.482506510179903 -5.2808436283922999 -56.436762194536598 1 -93.607151745303696 -5.4781216366364003 -56.393840546827398 0.99999999999992695 -93.736439144469401 -5.6700792012785 -56.350193823704501 1.00000000000022 -93.871189757359403 -5.8580743006170604 -56.305685741585599 0.99999999999972 -94.010854491909797 -6.0411748024316401 -56.260631742738397 1.0000000000001901 -94.156241374840704 -6.2204338118517803 -56.214930568937 0.99999999999994305 -94.3074212285958 -6.3955755025173504 -56.168742692177801 1 -94.620705147104303 -6.7362116481200198 -56.076010081236497 1 -94.782672230091507 -6.9017889868176798 -56.029474339759098 0.999999999999996 -94.950934342889397 -7.0633165626916901 -55.982687095200497 1.00000000000002 -95.126552899613102 -7.2214685339073696 -55.935565732895398 0.99999999999996003 -95.309719642135306 -7.3757126098105097 -55.8883445595946 1.00000000000003 -95.501634269581501 -7.5264152739305601 -55.841019838778102 0.99999999999999201 -95.703238277444299 -7.6732968854079404 -55.793762935382702 1 -96.086036455882194 -7.9301604465899196 -55.709216446403801 1 -96.262887250270595 -8.0414595459144795 -55.6718899425628 1.00000000000003 -96.447865160290107 -8.1501760384884303 -55.634772583967901 0.99999999999989697 -96.641940246028696 -8.2561009767437792 -55.597982864045598 1.0000000000001401 -96.846361639111507 -8.3589906440666901 -55.561658221362897 0.99999999999990197 -97.062742171322697 -8.4583771205389304 -55.526022772558498 1.00000000000003 -97.293010088524497 -8.5536514334772793 -55.4913659584439 1 -97.687018883680395 -8.6969938659633392 -55.438547589100402 1 -97.839033119963403 -8.7482885398878594 -55.419490097957897 1.00000000000005 -97.997941174139896 -8.7976371060310505 -55.401011866856301 0.999999999999864 -98.164209462173304 -8.8445766475375205 -55.383303869749803 1.0000000000001701 -98.339024400738595 -8.8888104395027092 -55.366501369515497 0.99999999999988998 -98.523254262231902 -8.9296894104194795 -55.350875494969898 1.00000000000003 -98.717910798413897 -8.9664178145642097 -55.3367626402013 1 -99.095371167545096 -9.0239907133952197 -55.314552823592699 1 -99.275633066236693 -9.0466418500169805 -55.305776403113903 0.99999999999992895 -99.464255875250899 -9.0649615197129894 -55.298650341232197 1.0000000000002101 -99.661709072129995 -9.0779200879775992 -55.293593020645197 0.99999999999972 -99.862586594940794 -9.0844741280427606 -55.291032014937002 1.0000000000001901 -100.066233942671 -9.0841366398498593 -55.291167770281497 0.99999999999994704 -100.26652800910099 -9.0771000354564997 -55.2939139542597 1 -100.66690763201601 -9.0513631984315897 -55.303927440208902 1 -100.867822832013 -9.0313337338618709 -55.311710048774302 0.99999999999990696 -101.05917493161201 -9.0058429704372305 -55.321589805126003 1.00000000000032 -101.241077617603 -8.9759182109138003 -55.333142317855298 0.99999999999953104 -101.41396216328999 -8.9424140946443291 -55.346012949984598 1.0000000000003499 -101.57852634389199 -8.9059909836571993 -55.359927848161398 0.99999999999988498 -101.735690068705 -8.8670848260212001 -55.374703098509301 1 -102.09775215930399 -8.7682406992685404 -55.4120001751619 1 -102.29600518057801 -8.7062697321373204 -55.435198119353402 1.00000000000005 -102.481662995595 -8.6414368891842006 -55.459243661281803 0.99999999999984102 -102.659183975582 -8.5735438786916998 -55.484179954508797 1.0000000000002101 -102.827112149616 -8.5036351153440393 -55.509583238022302 0.999999999999861 -102.988321475192 -8.4315187413185395 -55.535504696093803 1.00000000000004 -103.142858833094 -8.3575345589927998 -55.561792851047201 1 -103.46503616464901 -8.1934014012956595 -55.619418358603497 1 -103.63035207612999 -8.1027595086107702 -55.650819432403303 0.99999999999989198 -103.78984581781801 -8.0093144811695396 -55.682732028240103 1.0000000000003699 -103.940953860034 -7.9151235085771603 -55.714432570216303 0.999999999999448 -104.09068889461 -7.8166000749981599 -55.747089874110301 1.0000000000004201 -104.23350138640301 -7.7170534027899897 -55.779540306446499 0.999999999999863 -104.372479760715 -7.6151188092300401 -55.812219674848002 1 -104.673854692842 -7.3826578808003704 -55.885446676004101 1 -104.834129132314 -7.2509700215652702 -55.926054875564901 1.0000000000000699 -104.987359312349 -7.1172649636991796 -55.966371147264098 0.99999999999978195 -105.136046234318 -6.9800564273061099 -56.006804178562199 1.0000000000003 -105.277994185823 -6.8411320019445396 -56.046684410736397 0.99999999999978295 -105.41304716376099 -6.7021846539568299 -56.085644311091897 1.0000000000000699 -105.545406080866 -6.5587059386445299 -56.1248056156007 1 -105.79961229656701 -6.2684358030059304 -56.2018375463553 1 -105.92182303949799 -6.1215461027667901 -56.239778863864501 0.99999999999998401 -106.04118570878499 -5.9702831233962499 -56.277693306053401 1.00000000000004 -106.15518435624099 -5.8188983728891301 -56.314624844234302 0.99999999999995204 -106.269442283758 -5.6582793297091003 -56.352408742851402 1.00000000000002 -106.377019325577 -5.4995844880087299 -56.388610041605297 0.999999999999995 -106.48425055951 -5.33231720135863 -56.425328179625701 1 -106.691182021386 -4.9908596960432901 -56.497386584051398 1 -106.790030944718 -4.8179824015781998 -56.532438087769499 1.0000000000000799 -106.88433935260601 -4.6432882460464002 -56.566402877366698 0.99999999999977196 -106.97437107032999 -4.4665302362003496 -56.5992833942069 1.0000000000003 -107.06029124806 -4.2874325006294596 -56.6310788627028 0.99999999999979305 -107.142228377073 -4.1055863664703098 -56.661790602437797 1.00000000000006 -107.220263086936 -3.9205520820771298 -56.691413020295698 1 -107.368406350526 -3.5435905567492201 -56.748313684887499 1 -107.436932818996 -3.35511754325691 -56.775107061479702 1.00000000000006 -107.51300252988899 -3.1379661377278998 -56.8044774292119 0.99999999999982803 -107.58522225880699 -2.91312694588167 -56.832142393347198 1.00000000000023 -107.651831993222 -2.6775108611308802 -56.858749785007603 0.99999999999984601 -107.711935996934 -2.4361004680847098 -56.883040985098098 1.00000000000005 -107.76464402529 -2.1959263097125601 -56.904504613073499 1 -107.85596937000901 -1.72419756375303 -56.941584829236 1 -107.894754933399 -1.49237025052556 -56.957277619766899 0.99999999999996703 -107.92794779230999 -1.25978744112534 -56.970513330326398 1.0000000000001099 -107.95506902193399 -1.0243790154901 -56.981717971710601 0.99999999999983202 -107.976244391726 -0.77972765740926098 -56.990364311763301 1.0000000000001299 -107.990532918645 -0.53283487283069997 -56.996607729970897 0.99999999999995803 -107.998899813367 -0.27237206574418799 -57 1 -107.999426772197 -6.9388939039072299e-018 -57 1 + 0 9 0.058332155897488497 7 0.12610729780597399 7 0.203128329129593 7 0.28628459510170901 7 0.36851128230551999 7 0.43406476811713302 7 0.47276130537807498 7 0.50482077164509598 7 0.54019847315269998 7 0.58971540073372097 7 0.64731694618928504 7 0.71873230465626603 7 0.78913885664921002 7 0.85997049029116002 7 0.93027647875214803 7 1 9 +6 0 0 1 +7 1 0 8 114 17 -92.000006323777598 -6.9388939039072299e-018 -57 1 -92.000251512590197 -0.22442179520146099 -57 1 -92.006030920926605 -0.44806606866886101 -56.997697604240201 1 -92.017273583982401 -0.66964225352149498 -56.993120663058697 1 -92.033754541413302 -0.88819301630970005 -56.986370116437101 0.999999999999997 -92.055168572826005 -1.1030566809864799 -56.977588211769998 0.999999999999996 -92.081187325260601 -1.3138380587234599 -56.966931766308299 1 -92.111505861678296 -1.5203877112725299 -56.954550351249999 1 -92.185828801141199 -1.9579570826775201 -56.924324898610699 1 -92.231177455636498 -2.1870925409163999 -56.9059502657122 0.999999999999859 -92.281388868081706 -2.4098300570898901 -56.885698458713001 1.0000000000004801 -92.336286555911798 -2.62733288044637 -56.863698529699398 0.99999999999929501 -92.395353087740205 -2.83879155356649 -56.840191132020202 1.00000000000053 -92.458515735597203 -3.0453297166823101 -56.8152635040476 0.99999999999982703 -92.525518792127102 -3.2468423412416301 -56.789061246500097 1 -92.676705004477498 -3.66762666732108 -56.730539461057397 1 -92.761914347904806 -3.8853563564325801 -56.697899955338997 0.99999999999997302 -92.851286227425703 -4.0964563291320601 -56.664047612738898 1.0000000000000899 -92.945352444392 -4.3030205338380298 -56.628881994341 0.999999999999862 -93.043280738520593 -4.5035414722462397 -56.592769988602001 1.0000000000001099 -93.145615287123903 -4.6997814008331504 -56.555609373801502 0.99999999999996303 -93.252094273938297 -4.8913103110747098 -56.517578945208101 1 -93.482506510179903 -5.2808436283922999 -56.436762194536598 1 -93.607151745303696 -5.4781216366364003 -56.393840546827398 0.99999999999992695 -93.736439144469401 -5.6700792012785 -56.350193823704501 1.00000000000022 -93.871189757359403 -5.8580743006170604 -56.305685741585599 0.99999999999972 -94.010854491909797 -6.0411748024316401 -56.260631742738397 1.0000000000001901 -94.156241374840704 -6.2204338118517803 -56.214930568937 0.99999999999994305 -94.3074212285958 -6.3955755025173504 -56.168742692177801 1 -94.620705147104303 -6.7362116481200198 -56.076010081236497 1 -94.782672230091507 -6.9017889868176798 -56.029474339759098 0.999999999999996 -94.950934342889397 -7.0633165626916901 -55.982687095200497 1.00000000000002 -95.126552899613102 -7.2214685339073696 -55.935565732895398 0.99999999999996003 -95.309719642135306 -7.3757126098105097 -55.8883445595946 1.00000000000003 -95.501634269581501 -7.5264152739305601 -55.841019838778102 0.99999999999999201 -95.703238277444299 -7.6732968854079404 -55.793762935382702 1 -96.086036455882194 -7.9301604465899196 -55.709216446403801 1 -96.262887250270595 -8.0414595459144795 -55.6718899425628 1.00000000000003 -96.447865160290107 -8.1501760384884303 -55.634772583967901 0.99999999999989697 -96.641940246028696 -8.2561009767437792 -55.597982864045598 1.0000000000001401 -96.846361639111507 -8.3589906440666901 -55.561658221362897 0.99999999999990197 -97.062742171322697 -8.4583771205389304 -55.526022772558498 1.00000000000003 -97.293010088524497 -8.5536514334772793 -55.4913659584439 1 -97.687018883680395 -8.6969938659633392 -55.438547589100402 1 -97.839033119963403 -8.7482885398878594 -55.419490097957897 1.00000000000005 -97.997941174139896 -8.7976371060310505 -55.401011866856301 0.999999999999864 -98.164209462173304 -8.8445766475375205 -55.383303869749803 1.0000000000001701 -98.339024400738595 -8.8888104395027092 -55.366501369515497 0.99999999999988998 -98.523254262231902 -8.9296894104194795 -55.350875494969898 1.00000000000003 -98.717910798413897 -8.9664178145642097 -55.3367626402013 1 -99.095371167545096 -9.0239907133952197 -55.314552823592699 1 -99.275633066236693 -9.0466418500169805 -55.305776403113903 0.99999999999992895 -99.464255875250899 -9.0649615197129894 -55.298650341232197 1.0000000000002101 -99.661709072129995 -9.0779200879775992 -55.293593020645197 0.99999999999972 -99.862586594940794 -9.0844741280427606 -55.291032014937002 1.0000000000001901 -100.066233942671 -9.0841366398498593 -55.291167770281497 0.99999999999994704 -100.26652800910099 -9.0771000354564997 -55.2939139542597 1 -100.66690763201601 -9.0513631984315897 -55.303927440208902 1 -100.867822832013 -9.0313337338618709 -55.311710048774302 0.99999999999990696 -101.05917493161201 -9.0058429704372305 -55.321589805126003 1.00000000000032 -101.241077617603 -8.9759182109138003 -55.333142317855298 0.99999999999953104 -101.41396216328999 -8.9424140946443291 -55.346012949984598 1.0000000000003499 -101.57852634389199 -8.9059909836571993 -55.359927848161398 0.99999999999988498 -101.735690068705 -8.8670848260212001 -55.374703098509301 1 -102.09775215930399 -8.7682406992685404 -55.4120001751619 1 -102.29600518057801 -8.7062697321373204 -55.435198119353402 1.00000000000005 -102.481662995595 -8.6414368891842006 -55.459243661281803 0.99999999999984102 -102.659183975582 -8.5735438786916998 -55.484179954508797 1.0000000000002101 -102.827112149616 -8.5036351153440393 -55.509583238022302 0.999999999999861 -102.988321475192 -8.4315187413185395 -55.535504696093803 1.00000000000004 -103.142858833094 -8.3575345589927998 -55.561792851047201 1 -103.46503616464901 -8.1934014012956595 -55.619418358603497 1 -103.63035207612999 -8.1027595086107702 -55.650819432403303 0.99999999999989198 -103.78984581781801 -8.0093144811695396 -55.682732028240103 1.0000000000003699 -103.940953860034 -7.9151235085771603 -55.714432570216303 0.999999999999448 -104.09068889461 -7.8166000749981599 -55.747089874110301 1.0000000000004201 -104.23350138640301 -7.7170534027899897 -55.779540306446499 0.999999999999863 -104.372479760715 -7.6151188092300401 -55.812219674848002 1 -104.673854692842 -7.3826578808003704 -55.885446676004101 1 -104.834129132314 -7.2509700215652702 -55.926054875564901 1.0000000000000699 -104.987359312349 -7.1172649636991796 -55.966371147264098 0.99999999999978195 -105.136046234318 -6.9800564273061099 -56.006804178562199 1.0000000000003 -105.277994185823 -6.8411320019445396 -56.046684410736397 0.99999999999978295 -105.41304716376099 -6.7021846539568299 -56.085644311091897 1.0000000000000699 -105.545406080866 -6.5587059386445299 -56.1248056156007 1 -105.79961229656701 -6.2684358030059304 -56.2018375463553 1 -105.92182303949799 -6.1215461027667901 -56.239778863864501 0.99999999999998401 -106.04118570878499 -5.9702831233962499 -56.277693306053401 1.00000000000004 -106.15518435624099 -5.8188983728891301 -56.314624844234302 0.99999999999995204 -106.269442283758 -5.6582793297091003 -56.352408742851402 1.00000000000002 -106.377019325577 -5.4995844880087299 -56.388610041605297 0.999999999999995 -106.48425055951 -5.33231720135863 -56.425328179625701 1 -106.691182021386 -4.9908596960432901 -56.497386584051398 1 -106.790030944718 -4.8179824015781998 -56.532438087769499 1.0000000000000799 -106.88433935260601 -4.6432882460464002 -56.566402877366698 0.99999999999977196 -106.97437107032999 -4.4665302362003496 -56.5992833942069 1.0000000000003 -107.06029124806 -4.2874325006294596 -56.6310788627028 0.99999999999979305 -107.142228377073 -4.1055863664703098 -56.661790602437797 1.00000000000006 -107.220263086936 -3.9205520820771298 -56.691413020295698 1 -107.368406350526 -3.5435905567492201 -56.748313684887499 1 -107.436932818996 -3.35511754325691 -56.775107061479702 1.00000000000006 -107.51300252988899 -3.1379661377278998 -56.8044774292119 0.99999999999982803 -107.58522225880699 -2.91312694588167 -56.832142393347198 1.00000000000023 -107.651831993222 -2.6775108611308802 -56.858749785007603 0.99999999999984601 -107.711935996934 -2.4361004680847098 -56.883040985098098 1.00000000000005 -107.76464402529 -2.1959263097125601 -56.904504613073499 1 -107.85596937000901 -1.72419756375303 -56.941584829236 1 -107.894754933399 -1.49237025052556 -56.957277619766899 0.99999999999996703 -107.92794779230999 -1.25978744112534 -56.970513330326398 1.0000000000001099 -107.95506902193399 -1.0243790154901 -56.981717971710601 0.99999999999983202 -107.976244391726 -0.77972765740926098 -56.990364311763301 1.0000000000001299 -107.990532918645 -0.53283487283069997 -56.996607729970897 0.99999999999995803 -107.998899813367 -0.27237206574418799 -57 1 -107.999426772197 -6.9388939039072299e-018 -57 1 + 0 9 0.058332155897488497 7 0.12610729780597399 7 0.203128329129593 7 0.28628459510170901 7 0.36851128230551999 7 0.43406476811713302 7 0.47276130537807498 7 0.50482077164509598 7 0.54019847315269998 7 0.58971540073372097 7 0.64731694618928504 7 0.71873230465626603 7 0.78913885664921002 7 0.85997049029116002 7 0.93027647875214803 7 1 9 +6 1 0 0 +7 1 0 8 114 17 -104.999995257244 -0.0031132343393519401 -54.000000119827 1 -104.999825990533 0.11977939669893201 -53.999992699930502 1 -104.996204739143 0.24265147122327399 -53.997933524814599 1 -104.98913408605399 0.364667346589923 -53.993829695286799 1 -104.97873495610899 0.485154485493897 -53.987763626552699 0.999999999999997 -104.96520513006099 0.60361066331906799 -53.979866217059801 0.999999999999996 -104.948776405887 0.71970215953530903 -53.970289471935601 1 -104.92967590767699 0.83325545397204703 -53.959182619581703 1 -104.88302492509401 1.0732017590921199 -53.932144252083397 1 -104.85458366880199 1.1988372778159899 -53.915720069598599 0.999999999999859 -104.822820062053 1.32217492834354 -53.897513113478603 1.0000000000004801 -104.78833972281301 1.44132468778175 -53.877841032929098 0.99999999999929501 -104.75095752524901 1.5584346652923899 -53.856716080877099 1.00000000000053 -104.711188840576 1.6719116049251601 -53.834406545749502 0.99999999999982703 -104.669024814883 1.78271922827383 -53.8109740377405 1 -104.574191256996 2.0134582310409299 -53.758775025823802 1 -104.520888078716 2.1325756514761398 -53.729729279407103 0.99999999999997302 -104.46428866118499 2.2496487409291999 -53.699370026772698 1.0000000000000899 -104.405475684789 2.36242304309526 -53.668131254373201 0.999999999999862 -104.34348060628901 2.4736330555180102 -53.635797969863297 1.0000000000001099 -104.279195467105 2.5813606202728399 -53.602731797308103 0.99999999999996303 -104.21223953526599 2.68674607293819 -53.568891317798098 1 -104.06773164831201 2.9005861735923602 -53.497157015277402 1 -103.98979092338 3.00859837639242 -53.459163648087603 0.99999999999992695 -103.90835830731299 3.1145683740756498 -53.420380588936901 1.00000000000022 -103.82421748577001 3.2173378092879501 -53.381099590519 0.99999999999972 -103.736388537189 3.3183477858203099 -53.341185933202098 1.0000000000001901 -103.645407875563 3.4166684060497698 -53.3008787716021 0.99999999999994305 -103.550760535403 3.51287245204264 -53.2601703731412 1 -103.354919534351 3.69980237058342 -53.178603848454102 1 -103.253886445608 3.7905167383029901 -53.137766315460901 0.999999999999996 -103.14829796020599 3.8796618124062801 -53.096620972853103 1.00000000000002 -103.03866926124699 3.9664142887699101 -53.055364831838403 0.99999999999996003 -102.923804731982 4.0515642477948903 -53.013962899987199 1.00000000000003 -102.803768662011 4.1344975747573303 -52.9725958834468 0.99999999999999201 -102.677659005165 4.21540441185038 -52.931338591829402 1 -102.438484699379 4.3568046334552504 -52.857667538214898 1 -102.328062906375 4.4180523378705603 -52.825186559182796 1.00000000000003 -102.212730734164 4.4778315816175498 -52.792960859573803 0.99999999999989697 -102.09179751378601 4.5360783179824704 -52.761060382314497 1.0000000000001401 -101.964557579942 4.5926287036925499 -52.729617753025003 0.99999999999990197 -101.82996508043399 4.6472629190310899 -52.698812615119898 1.00000000000003 -101.686826570748 4.6996474493078502 -52.668887631169099 1 -101.441981625369 4.7785076732227303 -52.623317773218602 1 -101.347450085625 4.80676388140005 -52.606878507846197 1.00000000000005 -101.249043156803 4.8338327832882202 -52.590973539938197 0.999999999999864 -101.145502048943 4.8598053859679604 -52.575688969948501 1.0000000000001701 -101.036365169194 4.8843133499610802 -52.5611882081433 0.99999999999988998 -100.921391064037 4.9069691865062097 -52.547706440053197 1.00000000000003 -100.799620041379 4.9273692126032396 -52.535525599369002 1 -100.563319170212 4.9593404839068196 -52.516364235299399 1 -100.450568752405 4.9719189927779999 -52.508795543436399 0.99999999999992895 -100.331496273517 4.98209047573663 -52.502651625514197 1.0000000000002101 -100.209507314256 4.9892195984243699 -52.498314595727898 0.99999999999972 -100.081758790782 4.9928552824512602 -52.496101682240997 1.0000000000001901 -99.954771890280995 4.9924906638783 -52.496278408461301 0.99999999999994704 -99.830209806584307 4.9885148597758002 -52.4986668447009 1 -99.581914634036906 4.9741978019204103 -52.507308506830199 1 -99.457774712745504 4.9631422329591999 -52.513997947291301 0.99999999999990696 -99.339822372347001 4.9491632415803899 -52.522462695970098 1.00000000000032 -99.227828193452297 4.9328256793332503 -52.5323415672216 0.99999999999953104 -99.1214180997124 4.9145816058723604 -52.543338836506699 1.0000000000003499 -99.020088572192293 4.8947729515472496 -52.555228372196297 0.99999999999988498 -98.923223051833702 4.8736181896945601 -52.5678607837798 1 -98.699746060123104 4.8198358681444304 -52.599785073995299 1 -98.577575540846595 4.78621838261782 -52.6196322794667 1.00000000000005 -98.459340106463898 4.7500666429844403 -52.640511930027301 0.99999999999984102 -98.348631189259706 4.7125964928156696 -52.662075702056804 1.0000000000002101 -98.241047755256602 4.6732627241953999 -52.684282027124297 0.999999999999861 -98.138832086569593 4.6328117033314804 -52.706926274776002 1.00000000000004 -98.0403788300803 4.5911599527550102 -52.729956746251503 1 -97.835530448963397 4.4988435215770997 -52.780465670531697 1 -97.730360234753505 4.4477658798692401 -52.808048283855101 0.99999999999989198 -97.630886101443295 4.3961721030628897 -52.835799081382397 1.0000000000003699 -97.532709049193301 4.3419093749718201 -52.864069531398002 0.999999999999448 -97.4433721265017 4.2895635659694902 -52.891939021583802 1.0000000000004201 -97.354969330865899 4.2351642769115596 -52.920119472979501 0.999999999999863 -97.270614896675994 4.1804941536559301 -52.948239739347301 1 -97.087396048683502 4.0559289351980796 -53.011308326106899 1 -96.990310917927303 3.98578670476746 -53.046221236095199 1.0000000000000699 -96.895666140496104 3.9133889394268202 -53.081280844435099 0.99999999999978195 -96.805376694694203 3.84028095569606 -53.116119093758201 1.0000000000003 -96.716210340051603 3.7646195979323802 -53.1510841871794 0.99999999999978295 -96.627047426446893 3.6841264646862202 -53.186425368911699 1.0000000000000699 -96.542792138625799 3.6040167564823 -53.221209323516099 1 -96.380380382575197 3.4412868824158802 -53.289852662575903 1 -96.302369108639297 3.3588273062497498 -53.323695528303503 0.99999999999998401 -96.228310672253002 3.2767254969792798 -53.356949226843803 1.00000000000004 -96.154041269175394 3.1891213130026701 -53.390434361367198 0.99999999999995204 -96.087686535802405 3.1078760276664998 -53.422359572596903 1.00000000000002 -96.018753586032403 3.0180060104707001 -53.454884365841799 0.999999999999995 -95.956535856760993 2.93310117653991 -53.4859743938731 1 -95.833973014523394 2.75691246834714 -53.5477382993014 1 -95.772801583002106 2.6643392441696698 -53.578557286245001 1.0000000000000799 -95.712189214364599 2.56743466163709 -53.609121898670999 0.99999999999977196 -95.652469039748794 2.46616640436473 -53.639324471457599 1.0000000000003 -95.5940105250192 2.3605434927356099 -53.669052574196698 0.99999999999979305 -95.537221330099996 2.2507089019507101 -53.698174051556101 1.00000000000006 -95.482512970237295 2.1368127462696398 -53.726549315650701 1 -95.378644238415305 1.90293519460014 -53.781165918885698 1 -95.326446965663095 1.7759995629621199 -53.8083638357705 1.00000000000006 -95.292590132074096 1.6804153727944999 -53.830054589603797 0.99999999999982803 -95.254474282091607 1.5744215671417301 -53.851825348377098 1.00000000000023 -95.224207559783906 1.47758202919328 -53.8715920072258 0.99999999999984601 -95.192619343703797 1.3730928199419301 -53.891144793793501 1.00000000000005 -95.161690020859695 1.25797682554575 -53.909627834772301 1 -95.102414074848298 1.0050764169814901 -53.943494372133102 1 -95.073649454717099 0.86516074302299495 -53.959063857062901 0.99999999999996703 -95.047335451189596 0.71551836112779998 -53.972730134710297 1.0000000000001099 -95.027212295818401 0.55770513878355099 -53.983947996269002 0.99999999999983202 -95.011338143734903 0.40512708279195397 -53.992622318118997 1.0000000000001299 -95.002400027531493 0.24191225518759801 -53.998425004703698 0.99999999999995803 -94.999022324550893 0.091475772185151794 -54.0007677736915 1 -95.000161655425401 -0.0502060707109281 -54.000169124066097 1 + 0 9 0.058332155897488497 7 0.12610729780597399 7 0.203128329129593 7 0.28628459510170901 7 0.36851128230551999 7 0.43406476811713302 7 0.47276130537807498 7 0.50482077164509598 7 0.54019847315269998 7 0.58971540073372097 7 0.64731694618928504 7 0.71873230465626603 7 0.78913885664921002 7 0.85997049029116002 7 0.93027647875214803 7 1 9 +6 1 0 0 +7 1 0 8 114 17 -104.999995257244 -0.0031132343393519401 -54.000000119827 1 -104.999825990533 0.11977939669893201 -53.999992699930502 1 -104.996204739143 0.24265147122327399 -53.997933524814599 1 -104.98913408605399 0.364667346589923 -53.993829695286799 1 -104.97873495610899 0.485154485493897 -53.987763626552699 0.999999999999997 -104.96520513006099 0.60361066331906799 -53.979866217059801 0.999999999999996 -104.948776405887 0.71970215953530903 -53.970289471935601 1 -104.92967590767699 0.83325545397204703 -53.959182619581703 1 -104.88302492509401 1.0732017590921199 -53.932144252083397 1 -104.85458366880199 1.1988372778159899 -53.915720069598599 0.999999999999859 -104.822820062053 1.32217492834354 -53.897513113478603 1.0000000000004801 -104.78833972281301 1.44132468778175 -53.877841032929098 0.99999999999929501 -104.75095752524901 1.5584346652923899 -53.856716080877099 1.00000000000053 -104.711188840576 1.6719116049251601 -53.834406545749502 0.99999999999982703 -104.669024814883 1.78271922827383 -53.8109740377405 1 -104.574191256996 2.0134582310409299 -53.758775025823802 1 -104.520888078716 2.1325756514761398 -53.729729279407103 0.99999999999997302 -104.46428866118499 2.2496487409291999 -53.699370026772698 1.0000000000000899 -104.405475684789 2.36242304309526 -53.668131254373201 0.999999999999862 -104.34348060628901 2.4736330555180102 -53.635797969863297 1.0000000000001099 -104.279195467105 2.5813606202728399 -53.602731797308103 0.99999999999996303 -104.21223953526599 2.68674607293819 -53.568891317798098 1 -104.06773164831201 2.9005861735923602 -53.497157015277402 1 -103.98979092338 3.00859837639242 -53.459163648087603 0.99999999999992695 -103.90835830731299 3.1145683740756498 -53.420380588936901 1.00000000000022 -103.82421748577001 3.2173378092879501 -53.381099590519 0.99999999999972 -103.736388537189 3.3183477858203099 -53.341185933202098 1.0000000000001901 -103.645407875563 3.4166684060497698 -53.3008787716021 0.99999999999994305 -103.550760535403 3.51287245204264 -53.2601703731412 1 -103.354919534351 3.69980237058342 -53.178603848454102 1 -103.253886445608 3.7905167383029901 -53.137766315460901 0.999999999999996 -103.14829796020599 3.8796618124062801 -53.096620972853103 1.00000000000002 -103.03866926124699 3.9664142887699101 -53.055364831838403 0.99999999999996003 -102.923804731982 4.0515642477948903 -53.013962899987199 1.00000000000003 -102.803768662011 4.1344975747573303 -52.9725958834468 0.99999999999999201 -102.677659005165 4.21540441185038 -52.931338591829402 1 -102.438484699379 4.3568046334552504 -52.857667538214898 1 -102.328062906375 4.4180523378705603 -52.825186559182796 1.00000000000003 -102.212730734164 4.4778315816175498 -52.792960859573803 0.99999999999989697 -102.09179751378601 4.5360783179824704 -52.761060382314497 1.0000000000001401 -101.964557579942 4.5926287036925499 -52.729617753025003 0.99999999999990197 -101.82996508043399 4.6472629190310899 -52.698812615119898 1.00000000000003 -101.686826570748 4.6996474493078502 -52.668887631169099 1 -101.441981625369 4.7785076732227303 -52.623317773218602 1 -101.347450085625 4.80676388140005 -52.606878507846197 1.00000000000005 -101.249043156803 4.8338327832882202 -52.590973539938197 0.999999999999864 -101.145502048943 4.8598053859679604 -52.575688969948501 1.0000000000001701 -101.036365169194 4.8843133499610802 -52.5611882081433 0.99999999999988998 -100.921391064037 4.9069691865062097 -52.547706440053197 1.00000000000003 -100.799620041379 4.9273692126032396 -52.535525599369002 1 -100.563319170212 4.9593404839068196 -52.516364235299399 1 -100.450568752405 4.9719189927779999 -52.508795543436399 0.99999999999992895 -100.331496273517 4.98209047573663 -52.502651625514197 1.0000000000002101 -100.209507314256 4.9892195984243699 -52.498314595727898 0.99999999999972 -100.081758790782 4.9928552824512602 -52.496101682240997 1.0000000000001901 -99.954771890280995 4.9924906638783 -52.496278408461301 0.99999999999994704 -99.830209806584307 4.9885148597758002 -52.4986668447009 1 -99.581914634036906 4.9741978019204103 -52.507308506830199 1 -99.457774712745504 4.9631422329591999 -52.513997947291301 0.99999999999990696 -99.339822372347001 4.9491632415803899 -52.522462695970098 1.00000000000032 -99.227828193452297 4.9328256793332503 -52.5323415672216 0.99999999999953104 -99.1214180997124 4.9145816058723604 -52.543338836506699 1.0000000000003499 -99.020088572192293 4.8947729515472496 -52.555228372196297 0.99999999999988498 -98.923223051833702 4.8736181896945601 -52.5678607837798 1 -98.699746060123104 4.8198358681444304 -52.599785073995299 1 -98.577575540846595 4.78621838261782 -52.6196322794667 1.00000000000005 -98.459340106463898 4.7500666429844403 -52.640511930027301 0.99999999999984102 -98.348631189259706 4.7125964928156696 -52.662075702056804 1.0000000000002101 -98.241047755256602 4.6732627241953999 -52.684282027124297 0.999999999999861 -98.138832086569593 4.6328117033314804 -52.706926274776002 1.00000000000004 -98.0403788300803 4.5911599527550102 -52.729956746251503 1 -97.835530448963397 4.4988435215770997 -52.780465670531697 1 -97.730360234753505 4.4477658798692401 -52.808048283855101 0.99999999999989198 -97.630886101443295 4.3961721030628897 -52.835799081382397 1.0000000000003699 -97.532709049193301 4.3419093749718201 -52.864069531398002 0.999999999999448 -97.4433721265017 4.2895635659694902 -52.891939021583802 1.0000000000004201 -97.354969330865899 4.2351642769115596 -52.920119472979501 0.999999999999863 -97.270614896675994 4.1804941536559301 -52.948239739347301 1 -97.087396048683502 4.0559289351980796 -53.011308326106899 1 -96.990310917927303 3.98578670476746 -53.046221236095199 1.0000000000000699 -96.895666140496104 3.9133889394268202 -53.081280844435099 0.99999999999978195 -96.805376694694203 3.84028095569606 -53.116119093758201 1.0000000000003 -96.716210340051603 3.7646195979323802 -53.1510841871794 0.99999999999978295 -96.627047426446893 3.6841264646862202 -53.186425368911699 1.0000000000000699 -96.542792138625799 3.6040167564823 -53.221209323516099 1 -96.380380382575197 3.4412868824158802 -53.289852662575903 1 -96.302369108639297 3.3588273062497498 -53.323695528303503 0.99999999999998401 -96.228310672253002 3.2767254969792798 -53.356949226843803 1.00000000000004 -96.154041269175394 3.1891213130026701 -53.390434361367198 0.99999999999995204 -96.087686535802405 3.1078760276664998 -53.422359572596903 1.00000000000002 -96.018753586032403 3.0180060104707001 -53.454884365841799 0.999999999999995 -95.956535856760993 2.93310117653991 -53.4859743938731 1 -95.833973014523394 2.75691246834714 -53.5477382993014 1 -95.772801583002106 2.6643392441696698 -53.578557286245001 1.0000000000000799 -95.712189214364599 2.56743466163709 -53.609121898670999 0.99999999999977196 -95.652469039748794 2.46616640436473 -53.639324471457599 1.0000000000003 -95.5940105250192 2.3605434927356099 -53.669052574196698 0.99999999999979305 -95.537221330099996 2.2507089019507101 -53.698174051556101 1.00000000000006 -95.482512970237295 2.1368127462696398 -53.726549315650701 1 -95.378644238415305 1.90293519460014 -53.781165918885698 1 -95.326446965663095 1.7759995629621199 -53.8083638357705 1.00000000000006 -95.292590132074096 1.6804153727944999 -53.830054589603797 0.99999999999982803 -95.254474282091607 1.5744215671417301 -53.851825348377098 1.00000000000023 -95.224207559783906 1.47758202919328 -53.8715920072258 0.99999999999984601 -95.192619343703797 1.3730928199419301 -53.891144793793501 1.00000000000005 -95.161690020859695 1.25797682554575 -53.909627834772301 1 -95.102414074848298 1.0050764169814901 -53.943494372133102 1 -95.073649454717099 0.86516074302299495 -53.959063857062901 0.99999999999996703 -95.047335451189596 0.71551836112779998 -53.972730134710297 1.0000000000001099 -95.027212295818401 0.55770513878355099 -53.983947996269002 0.99999999999983202 -95.011338143734903 0.40512708279195397 -53.992622318118997 1.0000000000001299 -95.002400027531493 0.24191225518759801 -53.998425004703698 0.99999999999995803 -94.999022324550893 0.091475772185151794 -54.0007677736915 1 -95.000161655425401 -0.0502060707109281 -54.000169124066097 1 + 0 9 0.058332155897488497 7 0.12610729780597399 7 0.203128329129593 7 0.28628459510170901 7 0.36851128230551999 7 0.43406476811713302 7 0.47276130537807498 7 0.50482077164509598 7 0.54019847315269998 7 0.58971540073372097 7 0.64731694618928504 7 0.71873230465626603 7 0.78913885664921002 7 0.85997049029116002 7 0.93027647875214803 7 1 9 +6 -1 0 0 +7 1 0 8 114 17 -104.999995257244 -0.0031132343393519401 -54.000000119827 1 -104.999825990533 0.11977939669893201 -53.999992699930502 1 -104.996204739143 0.24265147122327399 -53.997933524814599 1 -104.98913408605399 0.364667346589923 -53.993829695286799 1 -104.97873495610899 0.485154485493897 -53.987763626552699 0.999999999999997 -104.96520513006099 0.60361066331906799 -53.979866217059801 0.999999999999996 -104.948776405887 0.71970215953530903 -53.970289471935601 1 -104.92967590767699 0.83325545397204703 -53.959182619581703 1 -104.88302492509401 1.0732017590921199 -53.932144252083397 1 -104.85458366880199 1.1988372778159899 -53.915720069598599 0.999999999999859 -104.822820062053 1.32217492834354 -53.897513113478603 1.0000000000004801 -104.78833972281301 1.44132468778175 -53.877841032929098 0.99999999999929501 -104.75095752524901 1.5584346652923899 -53.856716080877099 1.00000000000053 -104.711188840576 1.6719116049251601 -53.834406545749502 0.99999999999982703 -104.669024814883 1.78271922827383 -53.8109740377405 1 -104.574191256996 2.0134582310409299 -53.758775025823802 1 -104.520888078716 2.1325756514761398 -53.729729279407103 0.99999999999997302 -104.46428866118499 2.2496487409291999 -53.699370026772698 1.0000000000000899 -104.405475684789 2.36242304309526 -53.668131254373201 0.999999999999862 -104.34348060628901 2.4736330555180102 -53.635797969863297 1.0000000000001099 -104.279195467105 2.5813606202728399 -53.602731797308103 0.99999999999996303 -104.21223953526599 2.68674607293819 -53.568891317798098 1 -104.06773164831201 2.9005861735923602 -53.497157015277402 1 -103.98979092338 3.00859837639242 -53.459163648087603 0.99999999999992695 -103.90835830731299 3.1145683740756498 -53.420380588936901 1.00000000000022 -103.82421748577001 3.2173378092879501 -53.381099590519 0.99999999999972 -103.736388537189 3.3183477858203099 -53.341185933202098 1.0000000000001901 -103.645407875563 3.4166684060497698 -53.3008787716021 0.99999999999994305 -103.550760535403 3.51287245204264 -53.2601703731412 1 -103.354919534351 3.69980237058342 -53.178603848454102 1 -103.253886445608 3.7905167383029901 -53.137766315460901 0.999999999999996 -103.14829796020599 3.8796618124062801 -53.096620972853103 1.00000000000002 -103.03866926124699 3.9664142887699101 -53.055364831838403 0.99999999999996003 -102.923804731982 4.0515642477948903 -53.013962899987199 1.00000000000003 -102.803768662011 4.1344975747573303 -52.9725958834468 0.99999999999999201 -102.677659005165 4.21540441185038 -52.931338591829402 1 -102.438484699379 4.3568046334552504 -52.857667538214898 1 -102.328062906375 4.4180523378705603 -52.825186559182796 1.00000000000003 -102.212730734164 4.4778315816175498 -52.792960859573803 0.99999999999989697 -102.09179751378601 4.5360783179824704 -52.761060382314497 1.0000000000001401 -101.964557579942 4.5926287036925499 -52.729617753025003 0.99999999999990197 -101.82996508043399 4.6472629190310899 -52.698812615119898 1.00000000000003 -101.686826570748 4.6996474493078502 -52.668887631169099 1 -101.441981625369 4.7785076732227303 -52.623317773218602 1 -101.347450085625 4.80676388140005 -52.606878507846197 1.00000000000005 -101.249043156803 4.8338327832882202 -52.590973539938197 0.999999999999864 -101.145502048943 4.8598053859679604 -52.575688969948501 1.0000000000001701 -101.036365169194 4.8843133499610802 -52.5611882081433 0.99999999999988998 -100.921391064037 4.9069691865062097 -52.547706440053197 1.00000000000003 -100.799620041379 4.9273692126032396 -52.535525599369002 1 -100.563319170212 4.9593404839068196 -52.516364235299399 1 -100.450568752405 4.9719189927779999 -52.508795543436399 0.99999999999992895 -100.331496273517 4.98209047573663 -52.502651625514197 1.0000000000002101 -100.209507314256 4.9892195984243699 -52.498314595727898 0.99999999999972 -100.081758790782 4.9928552824512602 -52.496101682240997 1.0000000000001901 -99.954771890280995 4.9924906638783 -52.496278408461301 0.99999999999994704 -99.830209806584307 4.9885148597758002 -52.4986668447009 1 -99.581914634036906 4.9741978019204103 -52.507308506830199 1 -99.457774712745504 4.9631422329591999 -52.513997947291301 0.99999999999990696 -99.339822372347001 4.9491632415803899 -52.522462695970098 1.00000000000032 -99.227828193452297 4.9328256793332503 -52.5323415672216 0.99999999999953104 -99.1214180997124 4.9145816058723604 -52.543338836506699 1.0000000000003499 -99.020088572192293 4.8947729515472496 -52.555228372196297 0.99999999999988498 -98.923223051833702 4.8736181896945601 -52.5678607837798 1 -98.699746060123104 4.8198358681444304 -52.599785073995299 1 -98.577575540846595 4.78621838261782 -52.6196322794667 1.00000000000005 -98.459340106463898 4.7500666429844403 -52.640511930027301 0.99999999999984102 -98.348631189259706 4.7125964928156696 -52.662075702056804 1.0000000000002101 -98.241047755256602 4.6732627241953999 -52.684282027124297 0.999999999999861 -98.138832086569593 4.6328117033314804 -52.706926274776002 1.00000000000004 -98.0403788300803 4.5911599527550102 -52.729956746251503 1 -97.835530448963397 4.4988435215770997 -52.780465670531697 1 -97.730360234753505 4.4477658798692401 -52.808048283855101 0.99999999999989198 -97.630886101443295 4.3961721030628897 -52.835799081382397 1.0000000000003699 -97.532709049193301 4.3419093749718201 -52.864069531398002 0.999999999999448 -97.4433721265017 4.2895635659694902 -52.891939021583802 1.0000000000004201 -97.354969330865899 4.2351642769115596 -52.920119472979501 0.999999999999863 -97.270614896675994 4.1804941536559301 -52.948239739347301 1 -97.087396048683502 4.0559289351980796 -53.011308326106899 1 -96.990310917927303 3.98578670476746 -53.046221236095199 1.0000000000000699 -96.895666140496104 3.9133889394268202 -53.081280844435099 0.99999999999978195 -96.805376694694203 3.84028095569606 -53.116119093758201 1.0000000000003 -96.716210340051603 3.7646195979323802 -53.1510841871794 0.99999999999978295 -96.627047426446893 3.6841264646862202 -53.186425368911699 1.0000000000000699 -96.542792138625799 3.6040167564823 -53.221209323516099 1 -96.380380382575197 3.4412868824158802 -53.289852662575903 1 -96.302369108639297 3.3588273062497498 -53.323695528303503 0.99999999999998401 -96.228310672253002 3.2767254969792798 -53.356949226843803 1.00000000000004 -96.154041269175394 3.1891213130026701 -53.390434361367198 0.99999999999995204 -96.087686535802405 3.1078760276664998 -53.422359572596903 1.00000000000002 -96.018753586032403 3.0180060104707001 -53.454884365841799 0.999999999999995 -95.956535856760993 2.93310117653991 -53.4859743938731 1 -95.833973014523394 2.75691246834714 -53.5477382993014 1 -95.772801583002106 2.6643392441696698 -53.578557286245001 1.0000000000000799 -95.712189214364599 2.56743466163709 -53.609121898670999 0.99999999999977196 -95.652469039748794 2.46616640436473 -53.639324471457599 1.0000000000003 -95.5940105250192 2.3605434927356099 -53.669052574196698 0.99999999999979305 -95.537221330099996 2.2507089019507101 -53.698174051556101 1.00000000000006 -95.482512970237295 2.1368127462696398 -53.726549315650701 1 -95.378644238415305 1.90293519460014 -53.781165918885698 1 -95.326446965663095 1.7759995629621199 -53.8083638357705 1.00000000000006 -95.292590132074096 1.6804153727944999 -53.830054589603797 0.99999999999982803 -95.254474282091607 1.5744215671417301 -53.851825348377098 1.00000000000023 -95.224207559783906 1.47758202919328 -53.8715920072258 0.99999999999984601 -95.192619343703797 1.3730928199419301 -53.891144793793501 1.00000000000005 -95.161690020859695 1.25797682554575 -53.909627834772301 1 -95.102414074848298 1.0050764169814901 -53.943494372133102 1 -95.073649454717099 0.86516074302299495 -53.959063857062901 0.99999999999996703 -95.047335451189596 0.71551836112779998 -53.972730134710297 1.0000000000001099 -95.027212295818401 0.55770513878355099 -53.983947996269002 0.99999999999983202 -95.011338143734903 0.40512708279195397 -53.992622318118997 1.0000000000001299 -95.002400027531493 0.24191225518759801 -53.998425004703698 0.99999999999995803 -94.999022324550893 0.091475772185151794 -54.0007677736915 1 -95.000161655425401 -0.0502060707109281 -54.000169124066097 1 + 0 9 0.058332155897488497 7 0.12610729780597399 7 0.203128329129593 7 0.28628459510170901 7 0.36851128230551999 7 0.43406476811713302 7 0.47276130537807498 7 0.50482077164509598 7 0.54019847315269998 7 0.58971540073372097 7 0.64731694618928504 7 0.71873230465626603 7 0.78913885664921002 7 0.85997049029116002 7 0.93027647875214803 7 1 9 +6 -1 0 0 +7 1 0 8 114 17 -104.999995257244 -0.0031132343393519401 -54.000000119827 1 -104.999825990533 0.11977939669893201 -53.999992699930502 1 -104.996204739143 0.24265147122327399 -53.997933524814599 1 -104.98913408605399 0.364667346589923 -53.993829695286799 1 -104.97873495610899 0.485154485493897 -53.987763626552699 0.999999999999997 -104.96520513006099 0.60361066331906799 -53.979866217059801 0.999999999999996 -104.948776405887 0.71970215953530903 -53.970289471935601 1 -104.92967590767699 0.83325545397204703 -53.959182619581703 1 -104.88302492509401 1.0732017590921199 -53.932144252083397 1 -104.85458366880199 1.1988372778159899 -53.915720069598599 0.999999999999859 -104.822820062053 1.32217492834354 -53.897513113478603 1.0000000000004801 -104.78833972281301 1.44132468778175 -53.877841032929098 0.99999999999929501 -104.75095752524901 1.5584346652923899 -53.856716080877099 1.00000000000053 -104.711188840576 1.6719116049251601 -53.834406545749502 0.99999999999982703 -104.669024814883 1.78271922827383 -53.8109740377405 1 -104.574191256996 2.0134582310409299 -53.758775025823802 1 -104.520888078716 2.1325756514761398 -53.729729279407103 0.99999999999997302 -104.46428866118499 2.2496487409291999 -53.699370026772698 1.0000000000000899 -104.405475684789 2.36242304309526 -53.668131254373201 0.999999999999862 -104.34348060628901 2.4736330555180102 -53.635797969863297 1.0000000000001099 -104.279195467105 2.5813606202728399 -53.602731797308103 0.99999999999996303 -104.21223953526599 2.68674607293819 -53.568891317798098 1 -104.06773164831201 2.9005861735923602 -53.497157015277402 1 -103.98979092338 3.00859837639242 -53.459163648087603 0.99999999999992695 -103.90835830731299 3.1145683740756498 -53.420380588936901 1.00000000000022 -103.82421748577001 3.2173378092879501 -53.381099590519 0.99999999999972 -103.736388537189 3.3183477858203099 -53.341185933202098 1.0000000000001901 -103.645407875563 3.4166684060497698 -53.3008787716021 0.99999999999994305 -103.550760535403 3.51287245204264 -53.2601703731412 1 -103.354919534351 3.69980237058342 -53.178603848454102 1 -103.253886445608 3.7905167383029901 -53.137766315460901 0.999999999999996 -103.14829796020599 3.8796618124062801 -53.096620972853103 1.00000000000002 -103.03866926124699 3.9664142887699101 -53.055364831838403 0.99999999999996003 -102.923804731982 4.0515642477948903 -53.013962899987199 1.00000000000003 -102.803768662011 4.1344975747573303 -52.9725958834468 0.99999999999999201 -102.677659005165 4.21540441185038 -52.931338591829402 1 -102.438484699379 4.3568046334552504 -52.857667538214898 1 -102.328062906375 4.4180523378705603 -52.825186559182796 1.00000000000003 -102.212730734164 4.4778315816175498 -52.792960859573803 0.99999999999989697 -102.09179751378601 4.5360783179824704 -52.761060382314497 1.0000000000001401 -101.964557579942 4.5926287036925499 -52.729617753025003 0.99999999999990197 -101.82996508043399 4.6472629190310899 -52.698812615119898 1.00000000000003 -101.686826570748 4.6996474493078502 -52.668887631169099 1 -101.441981625369 4.7785076732227303 -52.623317773218602 1 -101.347450085625 4.80676388140005 -52.606878507846197 1.00000000000005 -101.249043156803 4.8338327832882202 -52.590973539938197 0.999999999999864 -101.145502048943 4.8598053859679604 -52.575688969948501 1.0000000000001701 -101.036365169194 4.8843133499610802 -52.5611882081433 0.99999999999988998 -100.921391064037 4.9069691865062097 -52.547706440053197 1.00000000000003 -100.799620041379 4.9273692126032396 -52.535525599369002 1 -100.563319170212 4.9593404839068196 -52.516364235299399 1 -100.450568752405 4.9719189927779999 -52.508795543436399 0.99999999999992895 -100.331496273517 4.98209047573663 -52.502651625514197 1.0000000000002101 -100.209507314256 4.9892195984243699 -52.498314595727898 0.99999999999972 -100.081758790782 4.9928552824512602 -52.496101682240997 1.0000000000001901 -99.954771890280995 4.9924906638783 -52.496278408461301 0.99999999999994704 -99.830209806584307 4.9885148597758002 -52.4986668447009 1 -99.581914634036906 4.9741978019204103 -52.507308506830199 1 -99.457774712745504 4.9631422329591999 -52.513997947291301 0.99999999999990696 -99.339822372347001 4.9491632415803899 -52.522462695970098 1.00000000000032 -99.227828193452297 4.9328256793332503 -52.5323415672216 0.99999999999953104 -99.1214180997124 4.9145816058723604 -52.543338836506699 1.0000000000003499 -99.020088572192293 4.8947729515472496 -52.555228372196297 0.99999999999988498 -98.923223051833702 4.8736181896945601 -52.5678607837798 1 -98.699746060123104 4.8198358681444304 -52.599785073995299 1 -98.577575540846595 4.78621838261782 -52.6196322794667 1.00000000000005 -98.459340106463898 4.7500666429844403 -52.640511930027301 0.99999999999984102 -98.348631189259706 4.7125964928156696 -52.662075702056804 1.0000000000002101 -98.241047755256602 4.6732627241953999 -52.684282027124297 0.999999999999861 -98.138832086569593 4.6328117033314804 -52.706926274776002 1.00000000000004 -98.0403788300803 4.5911599527550102 -52.729956746251503 1 -97.835530448963397 4.4988435215770997 -52.780465670531697 1 -97.730360234753505 4.4477658798692401 -52.808048283855101 0.99999999999989198 -97.630886101443295 4.3961721030628897 -52.835799081382397 1.0000000000003699 -97.532709049193301 4.3419093749718201 -52.864069531398002 0.999999999999448 -97.4433721265017 4.2895635659694902 -52.891939021583802 1.0000000000004201 -97.354969330865899 4.2351642769115596 -52.920119472979501 0.999999999999863 -97.270614896675994 4.1804941536559301 -52.948239739347301 1 -97.087396048683502 4.0559289351980796 -53.011308326106899 1 -96.990310917927303 3.98578670476746 -53.046221236095199 1.0000000000000699 -96.895666140496104 3.9133889394268202 -53.081280844435099 0.99999999999978195 -96.805376694694203 3.84028095569606 -53.116119093758201 1.0000000000003 -96.716210340051603 3.7646195979323802 -53.1510841871794 0.99999999999978295 -96.627047426446893 3.6841264646862202 -53.186425368911699 1.0000000000000699 -96.542792138625799 3.6040167564823 -53.221209323516099 1 -96.380380382575197 3.4412868824158802 -53.289852662575903 1 -96.302369108639297 3.3588273062497498 -53.323695528303503 0.99999999999998401 -96.228310672253002 3.2767254969792798 -53.356949226843803 1.00000000000004 -96.154041269175394 3.1891213130026701 -53.390434361367198 0.99999999999995204 -96.087686535802405 3.1078760276664998 -53.422359572596903 1.00000000000002 -96.018753586032403 3.0180060104707001 -53.454884365841799 0.999999999999995 -95.956535856760993 2.93310117653991 -53.4859743938731 1 -95.833973014523394 2.75691246834714 -53.5477382993014 1 -95.772801583002106 2.6643392441696698 -53.578557286245001 1.0000000000000799 -95.712189214364599 2.56743466163709 -53.609121898670999 0.99999999999977196 -95.652469039748794 2.46616640436473 -53.639324471457599 1.0000000000003 -95.5940105250192 2.3605434927356099 -53.669052574196698 0.99999999999979305 -95.537221330099996 2.2507089019507101 -53.698174051556101 1.00000000000006 -95.482512970237295 2.1368127462696398 -53.726549315650701 1 -95.378644238415305 1.90293519460014 -53.781165918885698 1 -95.326446965663095 1.7759995629621199 -53.8083638357705 1.00000000000006 -95.292590132074096 1.6804153727944999 -53.830054589603797 0.99999999999982803 -95.254474282091607 1.5744215671417301 -53.851825348377098 1.00000000000023 -95.224207559783906 1.47758202919328 -53.8715920072258 0.99999999999984601 -95.192619343703797 1.3730928199419301 -53.891144793793501 1.00000000000005 -95.161690020859695 1.25797682554575 -53.909627834772301 1 -95.102414074848298 1.0050764169814901 -53.943494372133102 1 -95.073649454717099 0.86516074302299495 -53.959063857062901 0.99999999999996703 -95.047335451189596 0.71551836112779998 -53.972730134710297 1.0000000000001099 -95.027212295818401 0.55770513878355099 -53.983947996269002 0.99999999999983202 -95.011338143734903 0.40512708279195397 -53.992622318118997 1.0000000000001299 -95.002400027531493 0.24191225518759801 -53.998425004703698 0.99999999999995803 -94.999022324550893 0.091475772185151794 -54.0007677736915 1 -95.000161655425401 -0.0502060707109281 -54.000169124066097 1 + 0 9 0.058332155897488497 7 0.12610729780597399 7 0.203128329129593 7 0.28628459510170901 7 0.36851128230551999 7 0.43406476811713302 7 0.47276130537807498 7 0.50482077164509598 7 0.54019847315269998 7 0.58971540073372097 7 0.64731694618928504 7 0.71873230465626603 7 0.78913885664921002 7 0.85997049029116002 7 0.93027647875214803 7 1 9 +6 0 0 1 +7 1 0 8 114 17 -95.000004742756403 0.0031132343393519401 -54.000000119827 1 -95.000174009467202 -0.11977939669893201 -53.999992699930502 1 -95.003795260857203 -0.24265147122327399 -53.997933524814599 1 -95.010865913946304 -0.364667346589923 -53.993829695286799 1 -95.021265043891106 -0.485154485493897 -53.987763626552699 0.999999999999997 -95.034794869938693 -0.60361066331906799 -53.979866217059801 0.999999999999996 -95.0512235941125 -0.71970215953530903 -53.970289471935601 1 -95.070324092322707 -0.83325545397204703 -53.959182619581703 1 -95.116975074906193 -1.0732017590921199 -53.932144252083397 1 -95.145416331198206 -1.1988372778159899 -53.915720069598599 0.999999999999859 -95.1771799379474 -1.32217492834354 -53.897513113478603 1.0000000000004801 -95.211660277186894 -1.44132468778175 -53.877841032929098 0.99999999999929501 -95.249042474750695 -1.5584346652923899 -53.856716080877099 1.00000000000053 -95.288811159423702 -1.6719116049251601 -53.834406545749502 0.99999999999982703 -95.330975185117495 -1.78271922827383 -53.8109740377405 1 -95.425808743004197 -2.0134582310409299 -53.758775025823802 1 -95.4791119212844 -2.1325756514761398 -53.729729279407103 0.99999999999997302 -95.535711338815204 -2.2496487409291999 -53.699370026772698 1.0000000000000899 -95.594524315210606 -2.36242304309526 -53.668131254373201 0.999999999999862 -95.656519393711093 -2.4736330555180102 -53.635797969863297 1.0000000000001099 -95.7208045328954 -2.5813606202728399 -53.602731797308103 0.99999999999996303 -95.787760464734305 -2.68674607293819 -53.568891317798098 1 -95.932268351687597 -2.9005861735923602 -53.497157015277402 1 -96.010209076620399 -3.00859837639242 -53.459163648087603 0.99999999999992695 -96.091641692686807 -3.1145683740756498 -53.420380588936901 1.00000000000022 -96.175782514229894 -3.2173378092879501 -53.381099590519 0.99999999999972 -96.263611462811497 -3.3183477858203099 -53.341185933202098 1.0000000000001901 -96.354592124437303 -3.4166684060497698 -53.3008787716021 0.99999999999994305 -96.449239464596602 -3.51287245204264 -53.2601703731412 1 -96.645080465648704 -3.69980237058342 -53.178603848454102 1 -96.746113554392096 -3.7905167383029901 -53.137766315460901 0.999999999999996 -96.851702039794105 -3.8796618124062801 -53.096620972853103 1.00000000000002 -96.961330738752594 -3.9664142887699101 -53.055364831838403 0.99999999999996003 -97.076195268018097 -4.0515642477948903 -53.013962899987199 1.00000000000003 -97.196231337989005 -4.1344975747573303 -52.9725958834468 0.99999999999999201 -97.322340994834704 -4.21540441185038 -52.931338591829402 1 -97.561515300620897 -4.3568046334552504 -52.857667538214898 1 -97.671937093624607 -4.4180523378705603 -52.825186559182796 1.00000000000003 -97.787269265836201 -4.4778315816175498 -52.792960859573697 0.99999999999989697 -97.908202486213995 -4.5360783179824704 -52.761060382314497 1.0000000000001401 -98.035442420057507 -4.5926287036925499 -52.729617753025003 0.99999999999990197 -98.170034919565794 -4.6472629190310899 -52.698812615119898 1.00000000000003 -98.313173429252501 -4.6996474493078502 -52.668887631169099 1 -98.558018374630606 -4.7785076732227303 -52.623317773218602 1 -98.6525499143752 -4.80676388140005 -52.606878507846297 1.00000000000005 -98.750956843196704 -4.8338327832882202 -52.590973539938197 0.999999999999864 -98.854497951057297 -4.8598053859679604 -52.575688969948501 1.0000000000001701 -98.963634830805802 -4.8843133499610802 -52.5611882081433 0.99999999999988998 -99.078608935962805 -4.9069691865062097 -52.547706440053197 1.00000000000003 -99.200379958620601 -4.9273692126032396 -52.535525599369002 1 -99.436680829788102 -4.9593404839068196 -52.516364235299399 1 -99.549431247594697 -4.9719189927779999 -52.508795543436399 0.99999999999992895 -99.668503726483095 -4.98209047573663 -52.502651625514197 1.0000000000002101 -99.790492685743601 -4.9892195984243699 -52.498314595727898 0.99999999999972 -99.918241209218195 -4.9928552824512602 -52.496101682240997 1.0000000000001901 -100.04522810971901 -4.9924906638783 -52.496278408461301 0.99999999999994704 -100.16979019341601 -4.9885148597758002 -52.4986668447009 1 -100.41808536596299 -4.9741978019204103 -52.507308506830199 1 -100.542225287254 -4.9631422329591999 -52.513997947291301 0.99999999999990696 -100.660177627653 -4.9491632415803899 -52.522462695970098 1.00000000000032 -100.772171806548 -4.9328256793332503 -52.5323415672216 0.99999999999953104 -100.878581900288 -4.9145816058723604 -52.543338836506699 1.0000000000003499 -100.97991142780801 -4.8947729515472496 -52.555228372196297 0.99999999999988498 -101.076776948166 -4.8736181896945601 -52.5678607837798 1 -101.300253939877 -4.8198358681444304 -52.599785073995299 1 -101.42242445915301 -4.78621838261782 -52.6196322794667 1.00000000000005 -101.540659893536 -4.7500666429844403 -52.640511930027301 0.99999999999984102 -101.65136881074 -4.7125964928156696 -52.662075702056804 1.0000000000002101 -101.758952244743 -4.6732627241953999 -52.684282027124297 0.999999999999861 -101.86116791342999 -4.6328117033314804 -52.706926274776002 1.00000000000004 -101.95962116992 -4.5911599527550102 -52.729956746251503 1 -102.164469551037 -4.4988435215770997 -52.780465670531697 1 -102.269639765246 -4.4477658798692401 -52.808048283855101 0.99999999999989198 -102.369113898557 -4.3961721030628897 -52.835799081382397 1.0000000000003699 -102.467290950807 -4.3419093749718201 -52.864069531398002 0.999999999999448 -102.556627873498 -4.2895635659694902 -52.891939021583802 1.0000000000004201 -102.645030669134 -4.2351642769115596 -52.920119472979501 0.999999999999863 -102.72938510332401 -4.1804941536559301 -52.948239739347301 1 -102.912603951316 -4.0559289351980796 -53.011308326106899 1 -103.009689082073 -3.98578670476746 -53.046221236095199 1.0000000000000699 -103.104333859504 -3.9133889394268202 -53.081280844435099 0.99999999999978195 -103.194623305306 -3.84028095569606 -53.116119093758201 1.0000000000003 -103.283789659948 -3.7646195979323802 -53.1510841871794 0.99999999999978295 -103.37295257355299 -3.6841264646862202 -53.186425368911699 1.0000000000000699 -103.457207861374 -3.6040167564823 -53.221209323516199 1 -103.619619617425 -3.4412868824158802 -53.289852662575903 1 -103.697630891361 -3.3588273062497498 -53.323695528303503 0.99999999999998401 -103.771689327747 -3.2767254969792798 -53.356949226843803 1.00000000000004 -103.845958730825 -3.1891213130026701 -53.390434361367198 0.99999999999995204 -103.91231346419799 -3.1078760276664998 -53.422359572596903 1.00000000000002 -103.98124641396799 -3.0180060104707001 -53.454884365841799 0.999999999999995 -104.04346414323901 -2.93310117653991 -53.4859743938731 1 -104.166026985477 -2.75691246834714 -53.5477382993014 1 -104.22719841699799 -2.6643392441696698 -53.578557286245001 1.0000000000000799 -104.287810785635 -2.56743466163709 -53.609121898670999 0.99999999999977196 -104.34753096025101 -2.46616640436473 -53.639324471457599 1.0000000000003 -104.405989474981 -2.3605434927356099 -53.669052574196698 0.99999999999979305 -104.4627786699 -2.2507089019507101 -53.698174051556101 1.00000000000006 -104.517487029763 -2.1368127462696398 -53.726549315650701 1 -104.62135576158499 -1.90293519460014 -53.781165918885698 1 -104.673553034337 -1.7759995629621199 -53.8083638357705 1.00000000000006 -104.707409867926 -1.6804153727944999 -53.830054589603797 0.99999999999982803 -104.745525717908 -1.5744215671417301 -53.851825348377098 1.00000000000023 -104.77579244021599 -1.47758202919328 -53.8715920072258 0.99999999999984601 -104.807380656296 -1.3730928199419301 -53.891144793793501 1.00000000000005 -104.83830997914001 -1.25797682554575 -53.909627834772202 1 -104.897585925152 -1.0050764169814901 -53.943494372133102 1 -104.926350545283 -0.86516074302299495 -53.959063857062901 0.99999999999996703 -104.95266454881001 -0.71551836112779998 -53.972730134710297 1.0000000000001099 -104.972787704182 -0.55770513878355099 -53.983947996269002 0.99999999999983202 -104.988661856265 -0.40512708279195397 -53.992622318118997 1.0000000000001299 -104.997599972468 -0.24191225518759801 -53.998425004703698 0.99999999999995803 -105.00097767544899 -0.091475772185151794 -54.0007677736915 1 -104.999838344574 0.0502060707109281 -54.000169124066097 1 + 0 9 0.058332155897488497 7 0.12610729780597399 7 0.203128329129593 7 0.28628459510170901 7 0.36851128230551999 7 0.43406476811713302 7 0.47276130537807498 7 0.50482077164509598 7 0.54019847315269998 7 0.58971540073372097 7 0.64731694618928504 7 0.71873230465626603 7 0.78913885664921002 7 0.85997049029116002 7 0.93027647875214803 7 1 9 +6 0 0 1 +7 1 0 8 114 17 -95.000004742756403 0.0031132343393519401 -54.000000119827 1 -95.000174009467202 -0.11977939669893201 -53.999992699930502 1 -95.003795260857203 -0.24265147122327399 -53.997933524814599 1 -95.010865913946304 -0.364667346589923 -53.993829695286799 1 -95.021265043891106 -0.485154485493897 -53.987763626552699 0.999999999999997 -95.034794869938693 -0.60361066331906799 -53.979866217059801 0.999999999999996 -95.0512235941125 -0.71970215953530903 -53.970289471935601 1 -95.070324092322707 -0.83325545397204703 -53.959182619581703 1 -95.116975074906193 -1.0732017590921199 -53.932144252083397 1 -95.145416331198206 -1.1988372778159899 -53.915720069598599 0.999999999999859 -95.1771799379474 -1.32217492834354 -53.897513113478603 1.0000000000004801 -95.211660277186894 -1.44132468778175 -53.877841032929098 0.99999999999929501 -95.249042474750695 -1.5584346652923899 -53.856716080877099 1.00000000000053 -95.288811159423702 -1.6719116049251601 -53.834406545749502 0.99999999999982703 -95.330975185117495 -1.78271922827383 -53.8109740377405 1 -95.425808743004197 -2.0134582310409299 -53.758775025823802 1 -95.4791119212844 -2.1325756514761398 -53.729729279407103 0.99999999999997302 -95.535711338815204 -2.2496487409291999 -53.699370026772698 1.0000000000000899 -95.594524315210606 -2.36242304309526 -53.668131254373201 0.999999999999862 -95.656519393711093 -2.4736330555180102 -53.635797969863297 1.0000000000001099 -95.7208045328954 -2.5813606202728399 -53.602731797308103 0.99999999999996303 -95.787760464734305 -2.68674607293819 -53.568891317798098 1 -95.932268351687597 -2.9005861735923602 -53.497157015277402 1 -96.010209076620399 -3.00859837639242 -53.459163648087603 0.99999999999992695 -96.091641692686807 -3.1145683740756498 -53.420380588936901 1.00000000000022 -96.175782514229894 -3.2173378092879501 -53.381099590519 0.99999999999972 -96.263611462811497 -3.3183477858203099 -53.341185933202098 1.0000000000001901 -96.354592124437303 -3.4166684060497698 -53.3008787716021 0.99999999999994305 -96.449239464596602 -3.51287245204264 -53.2601703731412 1 -96.645080465648704 -3.69980237058342 -53.178603848454102 1 -96.746113554392096 -3.7905167383029901 -53.137766315460901 0.999999999999996 -96.851702039794105 -3.8796618124062801 -53.096620972853103 1.00000000000002 -96.961330738752594 -3.9664142887699101 -53.055364831838403 0.99999999999996003 -97.076195268018097 -4.0515642477948903 -53.013962899987199 1.00000000000003 -97.196231337989005 -4.1344975747573303 -52.9725958834468 0.99999999999999201 -97.322340994834704 -4.21540441185038 -52.931338591829402 1 -97.561515300620897 -4.3568046334552504 -52.857667538214898 1 -97.671937093624607 -4.4180523378705603 -52.825186559182796 1.00000000000003 -97.787269265836201 -4.4778315816175498 -52.792960859573697 0.99999999999989697 -97.908202486213995 -4.5360783179824704 -52.761060382314497 1.0000000000001401 -98.035442420057507 -4.5926287036925499 -52.729617753025003 0.99999999999990197 -98.170034919565794 -4.6472629190310899 -52.698812615119898 1.00000000000003 -98.313173429252501 -4.6996474493078502 -52.668887631169099 1 -98.558018374630606 -4.7785076732227303 -52.623317773218602 1 -98.6525499143752 -4.80676388140005 -52.606878507846297 1.00000000000005 -98.750956843196704 -4.8338327832882202 -52.590973539938197 0.999999999999864 -98.854497951057297 -4.8598053859679604 -52.575688969948501 1.0000000000001701 -98.963634830805802 -4.8843133499610802 -52.5611882081433 0.99999999999988998 -99.078608935962805 -4.9069691865062097 -52.547706440053197 1.00000000000003 -99.200379958620601 -4.9273692126032396 -52.535525599369002 1 -99.436680829788102 -4.9593404839068196 -52.516364235299399 1 -99.549431247594697 -4.9719189927779999 -52.508795543436399 0.99999999999992895 -99.668503726483095 -4.98209047573663 -52.502651625514197 1.0000000000002101 -99.790492685743601 -4.9892195984243699 -52.498314595727898 0.99999999999972 -99.918241209218195 -4.9928552824512602 -52.496101682240997 1.0000000000001901 -100.04522810971901 -4.9924906638783 -52.496278408461301 0.99999999999994704 -100.16979019341601 -4.9885148597758002 -52.4986668447009 1 -100.41808536596299 -4.9741978019204103 -52.507308506830199 1 -100.542225287254 -4.9631422329591999 -52.513997947291301 0.99999999999990696 -100.660177627653 -4.9491632415803899 -52.522462695970098 1.00000000000032 -100.772171806548 -4.9328256793332503 -52.5323415672216 0.99999999999953104 -100.878581900288 -4.9145816058723604 -52.543338836506699 1.0000000000003499 -100.97991142780801 -4.8947729515472496 -52.555228372196297 0.99999999999988498 -101.076776948166 -4.8736181896945601 -52.5678607837798 1 -101.300253939877 -4.8198358681444304 -52.599785073995299 1 -101.42242445915301 -4.78621838261782 -52.6196322794667 1.00000000000005 -101.540659893536 -4.7500666429844403 -52.640511930027301 0.99999999999984102 -101.65136881074 -4.7125964928156696 -52.662075702056804 1.0000000000002101 -101.758952244743 -4.6732627241953999 -52.684282027124297 0.999999999999861 -101.86116791342999 -4.6328117033314804 -52.706926274776002 1.00000000000004 -101.95962116992 -4.5911599527550102 -52.729956746251503 1 -102.164469551037 -4.4988435215770997 -52.780465670531697 1 -102.269639765246 -4.4477658798692401 -52.808048283855101 0.99999999999989198 -102.369113898557 -4.3961721030628897 -52.835799081382397 1.0000000000003699 -102.467290950807 -4.3419093749718201 -52.864069531398002 0.999999999999448 -102.556627873498 -4.2895635659694902 -52.891939021583802 1.0000000000004201 -102.645030669134 -4.2351642769115596 -52.920119472979501 0.999999999999863 -102.72938510332401 -4.1804941536559301 -52.948239739347301 1 -102.912603951316 -4.0559289351980796 -53.011308326106899 1 -103.009689082073 -3.98578670476746 -53.046221236095199 1.0000000000000699 -103.104333859504 -3.9133889394268202 -53.081280844435099 0.99999999999978195 -103.194623305306 -3.84028095569606 -53.116119093758201 1.0000000000003 -103.283789659948 -3.7646195979323802 -53.1510841871794 0.99999999999978295 -103.37295257355299 -3.6841264646862202 -53.186425368911699 1.0000000000000699 -103.457207861374 -3.6040167564823 -53.221209323516199 1 -103.619619617425 -3.4412868824158802 -53.289852662575903 1 -103.697630891361 -3.3588273062497498 -53.323695528303503 0.99999999999998401 -103.771689327747 -3.2767254969792798 -53.356949226843803 1.00000000000004 -103.845958730825 -3.1891213130026701 -53.390434361367198 0.99999999999995204 -103.91231346419799 -3.1078760276664998 -53.422359572596903 1.00000000000002 -103.98124641396799 -3.0180060104707001 -53.454884365841799 0.999999999999995 -104.04346414323901 -2.93310117653991 -53.4859743938731 1 -104.166026985477 -2.75691246834714 -53.5477382993014 1 -104.22719841699799 -2.6643392441696698 -53.578557286245001 1.0000000000000799 -104.287810785635 -2.56743466163709 -53.609121898670999 0.99999999999977196 -104.34753096025101 -2.46616640436473 -53.639324471457599 1.0000000000003 -104.405989474981 -2.3605434927356099 -53.669052574196698 0.99999999999979305 -104.4627786699 -2.2507089019507101 -53.698174051556101 1.00000000000006 -104.517487029763 -2.1368127462696398 -53.726549315650701 1 -104.62135576158499 -1.90293519460014 -53.781165918885698 1 -104.673553034337 -1.7759995629621199 -53.8083638357705 1.00000000000006 -104.707409867926 -1.6804153727944999 -53.830054589603797 0.99999999999982803 -104.745525717908 -1.5744215671417301 -53.851825348377098 1.00000000000023 -104.77579244021599 -1.47758202919328 -53.8715920072258 0.99999999999984601 -104.807380656296 -1.3730928199419301 -53.891144793793501 1.00000000000005 -104.83830997914001 -1.25797682554575 -53.909627834772202 1 -104.897585925152 -1.0050764169814901 -53.943494372133102 1 -104.926350545283 -0.86516074302299495 -53.959063857062901 0.99999999999996703 -104.95266454881001 -0.71551836112779998 -53.972730134710297 1.0000000000001099 -104.972787704182 -0.55770513878355099 -53.983947996269002 0.99999999999983202 -104.988661856265 -0.40512708279195397 -53.992622318118997 1.0000000000001299 -104.997599972468 -0.24191225518759801 -53.998425004703698 0.99999999999995803 -105.00097767544899 -0.091475772185151794 -54.0007677736915 1 -104.999838344574 0.0502060707109281 -54.000169124066097 1 + 0 9 0.058332155897488497 7 0.12610729780597399 7 0.203128329129593 7 0.28628459510170901 7 0.36851128230551999 7 0.43406476811713302 7 0.47276130537807498 7 0.50482077164509598 7 0.54019847315269998 7 0.58971540073372097 7 0.64731694618928504 7 0.71873230465626603 7 0.78913885664921002 7 0.85997049029116002 7 0.93027647875214803 7 1 9 +2 -100 0.01 -42 0 0 1 -1 0 0 0 1 0 5 +2 -100 0.01 -42 0 0 1 -1 0 0 0 1 0 5 +2 -100.01000000000001 0 -42 0 0 1 -1 0 0 0 1 0 4 +2 -100.01000000000001 0 -42 0 0 1 -1 0 0 0 1 0 4 +2 -100.01000000000001 0 -57 0 0 1 1 0 0 0 -1 0 4 +2 -100.01000000000001 0 -57 0 0 1 1 0 0 0 -1 0 4 +2 -80 0 -32 1 0 0 0 0 -1 0 1 0 24 +2 -80 0 -32 1 0 0 0 0 -1 0 1 0 24 +2 -80 0 -32 -1 0 0 0 0 -1 0 1 0 24 +2 -80 0 -32 -1 0 0 0 0 -1 0 1 0 24 +1 0 0 15 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 26 +2 0 0 0 0 0 1 1 0 0 0 1 0 16 +1 0 0 0 0 0 1 1 0 0 0 1 0 +1 0 0 35 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 18 +2 0 0 59 0 0 1 1 0 0 0 1 0 18 +2 0 0 59 0 0 1 1 0 0 0 1 0 18 +2 0 0 59 0 0 -1 1 0 0 0 1 0 18 +2 0 0 59 0 0 -1 1 0 0 0 1 0 18 +1 0 0 0 0 1 0 0 0 1 1 0 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 16 +2 0 0 59 0 0 1 0 -1 0 1 0 0 16 +2 0 0 59 0 0 1 0 -1 0 1 0 0 16 +2 0 0 59 0 0 -1 0 -1 0 1 0 0 16 +2 0 0 59 0 0 -1 0 -1 0 1 0 0 16 +1 0 0 0 0 0 1 1 0 0 0 1 0 +2 0 0 24 0 0 1 1 0 0 0 1 0 18 +2 0 0 24 0 0 1 1 0 0 0 1 0 18 +2 0 0 24 0 0 -1 1 0 0 0 1 0 18 +2 0 0 24 0 0 -1 1 0 0 0 1 0 18 +2 0 0 24 0 0 1 0 -1 0 1 0 0 16 +2 0 0 24 0 0 1 0 -1 0 1 0 0 16 +2 0 0 24 0 0 -1 0 -1 0 1 0 0 16 +2 0 0 24 0 0 -1 0 -1 0 1 0 0 16 +2 0 0 0 0 0 1 1 0 0 0 1 0 7 +1 0 0 0 0 0 1 1 0 0 0 1 0 +1 0 0 0 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 6 +2 21 0 -39 0 0 1 0 -1 0 1 0 0 6 +2 21 0 -39 0 0 1 0 -1 0 1 0 0 6 +2 21 0 -39 0 0 1 0 -1 0 1 0 0 6 +2 21 0 -39 0 0 1 0 -1 0 1 0 0 6 +2 21 0 -39 0 0 1 0 -1 0 1 0 0 6 +2 21 0 -39 0 0 1 0 -1 0 1 0 0 6 +2 21 0 -39 0 0 1 0 -1 0 1 0 0 6 +2 21 0 -39 0 0 1 0 -1 0 1 0 0 6 +6 0 0 1 +1 27 0 -39.5 0 0 1 +6 0 0 1 +1 27 0 -39.5 0 0 1 +6 0 0 1 +1 27 0 -39.5 0 0 1 +6 0 0 1 +1 27 0 -39.5 0 0 1 +1 0 0 1 0 0 1 1 0 0 0 1 0 +2 21 0 -38 0 0 1 0 -1 0 1 0 0 6 +2 21 0 -38 0 0 1 0 -1 0 1 0 0 6 +2 21 0 -38 0 0 1 0 -1 0 1 0 0 6 +2 21 0 -38 0 0 1 0 -1 0 1 0 0 6 +2 21 0 -38 0 0 1 0 -1 0 1 0 0 6 +2 21 0 -38 0 0 1 0 -1 0 1 0 0 6 +2 21 0 -38 0 0 1 0 -1 0 1 0 0 6 +2 21 0 -38 0 0 1 0 -1 0 1 0 0 6 +1 0 0 25 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 6 +1 0 0 14 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 9 +1 0 0 0 0 0 1 1 0 0 0 1 0 +1 0 0 0 0 1 0 0 0 1 1 0 0 +1 0 0 0 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 8 +2 0 0 0 0 0 1 1 0 0 0 1 0 7 +1 0 0 0 0 0 1 1 0 0 0 1 0 +1 0 0 0 0 0 1 1 0 0 0 1 0 +2 -46 -40 -63.399999999999999 0 1 0 -1 0 0 0 0 -1 1 +1 0 0 0 0 1 0 0 0 1 1 0 0 +2 -47 -39 -63.399999999999999 1 0 0 0 -1 0 0 0 -1 1 +2 0 0 0 0 0 1 1 0 0 0 1 0 30 +2 42 -40 -63.399999999999999 0 1 0 1 0 0 0 0 -1 1 +9 0 0 0 0 7 8 8 9 2 2 -46 -39 -64.400000000000006 -46.196349540849603 -39 -64.400000000000304 -46.392698267550998 -39 -64.355938335085597 -46.5775160373842 -39 -64.267820868920694 -46.739254831510998 -38.999999999999801 -64.139254831510797 -46.867820868920397 -39.000000000000199 -63.977516037384198 -46.955938335085598 -38.999999999999801 -63.792698267550797 -47 -39 -63.596349540849403 -47 -39 -63.399999999999999 +-46 -39 -64.400000000000006 -46.186156749299698 -39.038242725956998 -64.400000000000304 -46.3723410847225 -39.076485460743299 -64.360545878239094 -46.552050037779303 -39.113080265268998 -64.281371260025296 -46.719725692609202 -39.146379559882298 -64.162124058458105 -46.861726043186501 -39.174937967159899 -63.996704934055302 -46.955899597502203 -39.197719493733402 -63.800691598457398 -47 -39.2142066837065 -63.596349540849403 -47 -39.224399475256398 -63.399999999999999 +-46 -39 -64.400000000000006 -46.1394068586212 -39.103692572906702 -64.400000000000304 -46.3193718395815 -39.174083650889699 -64.363617573674404 -46.479510902126698 -39.258041680768102 -64.290404854094405 -46.636794048693098 -39.334693596865897 -64.177370209755594 -46.777558956348997 -39.397686455463798 -64.009497531835095 -46.875189326761301 -39.438242474049702 -63.806020485727302 -46.946531557604402 -39.437721139248801 -63.596349540847903 -46.941251113447699 -39.4487978649829 -63.399999999998499 +-46 -39 -64.400000000000006 -46.130562568534003 -39.121886841129601 -64.400000000000304 -46.2838238594884 -39.235957466662001 -64.365153421393202 -46.428373284913398 -39.354009862593301 -64.294921651130807 -46.570353129266103 -39.467053199027497 -64.184993285406705 -46.696350616917996 -39.564719853379003 -64.015893830728004 -46.781297803087597 -39.629279201888501 -63.808684929365803 -46.831223590620802 -39.652796375549499 -63.596349540851897 -46.823762722203497 -39.654746940823898 -63.4000000000025 +-46 -39 -64.400000000000006 -46.121886841129701 -39.130562568533797 -64.400000000000304 -46.235957466661098 -39.283823859488301 -64.365153421391994 -46.354009862593102 -39.4283732849118 -64.294921651129002 -46.467053199025599 -39.570353129266302 -64.184993285404403 -46.5647198533782 -39.696350616916099 -64.015893830725204 -46.629279201886497 -39.781297803086701 -63.8086849293623 -46.652796375547403 -39.831223590618698 -63.596349540847299 -46.654746940821802 -39.823762722201401 -63.399999999997902 +-46 -39 -64.400000000000006 -46.103692572906802 -39.139406858621001 -64.400000000000304 -46.174083650889798 -39.319371839582502 -64.363617573675199 -46.258041680768997 -39.479510902126201 -64.290404854095797 -46.334693596866003 -39.6367940486954 -64.177370209757399 -46.3976864554649 -39.777558956348997 -64.009497531837397 -46.438242474050497 -39.875189326763298 -63.806020485729903 -46.4377211392503 -39.946531557605802 -63.596349540851499 -46.448797864984499 -39.941251113449098 -63.400000000002102 +-46 -39 -64.400000000000006 -46.038242725956898 -39.1861567492994 -64.400000000000304 -46.076485460743299 -39.372341084723402 -64.360545878239094 -46.113080265268898 -39.552050037777803 -64.281371260025296 -46.146379559882398 -39.719725692611497 -64.162124058458105 -46.1749379671597 -39.8617260431852 -63.996704934055401 -46.197719493733501 -39.955899597503397 -63.800691598457398 -46.2142066837065 -40 -63.596349540849403 -46.224399475256398 -40 -63.399999999999999 +-46 -39 -64.400000000000006 -46 -39.196349540849297 -64.400000000000304 -46 -39.392698267551999 -64.355938335085597 -46 -39.577516037382701 -64.267820868920694 -46 -39.7392548315133 -64.139254831510797 -46 -39.867820868919097 -63.977516037384198 -46 -39.955938335086799 -63.792698267550797 -46 -40 -63.596349540849403 -46 -40 -63.399999999999999 + +0 8 +1 8 + +0 9 +1 9 + +6 -1 0 0 +7 0 0 8 9 2 -46 -39 -64.400000000000006 -46.196349540849603 -39 -64.400000000000304 -46.392698267550998 -39 -64.355938335085597 -46.5775160373842 -39 -64.267820868920694 -46.739254831510998 -38.999999999999801 -64.139254831510797 -46.867820868920397 -39.000000000000199 -63.977516037384198 -46.955938335085598 -38.999999999999801 -63.792698267550797 -47 -39 -63.596349540849403 -47 -39 -63.399999999999999 + 0 9 1 9 +6 -1 0 0 +7 0 0 8 9 2 -46 -39 -64.400000000000006 -46.196349540849603 -39 -64.400000000000304 -46.392698267550998 -39 -64.355938335085597 -46.5775160373842 -39 -64.267820868920694 -46.739254831510998 -38.999999999999801 -64.139254831510797 -46.867820868920397 -39.000000000000199 -63.977516037384198 -46.955938335085598 -38.999999999999801 -63.792698267550797 -47 -39 -63.596349540849403 -47 -39 -63.399999999999999 + 0 9 1 9 +2 0 0 0 0 0 1 1 0 0 0 1 0 32 +6 -1 0 0 +7 0 0 8 30 5 -47 -6.1676575780437197 -63.399999999999999 -47 -5.8421254048106404 -63.463941750800601 -46.995326953028403 -5.5053676371864899 -63.526083979204401 -46.986443718227001 -5.1578752600744302 -63.585871378814403 -46.973890161955801 -4.7998433982841604 -63.642852505981502 -46.958278220147299 -4.4308237516560904 -63.696638847265703 -46.940265490345602 -4.0497803578465801 -63.746905894313898 -46.920581208336898 -3.6546247883121401 -63.793350803701799 -46.881954654790903 -2.87023653607966 -63.873187996727999 -46.863145290236901 -2.4845687139159001 -63.907474991386103 -46.844378337373598 -2.0789084702999698 -63.938119958791503 -46.826717729195501 -1.6508205833026499 -63.964294227456001 -46.811573872138901 -1.19975630191407 -63.984766905750398 -46.801316236074001 -0.72671620746514498 -63.998190210132101 -46.7978121721927 -0.23593408914712699 -64.0029263378932 -46.803171041599498 0.656243002187618 -63.995761957847101 -46.809757328785402 1.0476127423144601 -63.986923393616799 -46.820066986484001 1.4248122722513801 -63.972904210002099 -46.832943830138397 1.7862258789763701 -63.954570044225399 -46.847310532559902 2.1318666224379599 -63.932694716694797 -46.862390758787598 2.4626436255338899 -63.907859214821897 -46.877651366174199 2.78058792231124 -63.880466858415502 -46.914245285472099 3.5282273039788801 -63.807964382044801 -46.9352794523395 3.94546848734486 -63.760507897460599 -46.9546711805991 4.34680401037006 -63.708789638830297 -46.971567221762399 4.7347256034278402 -63.653161746748602 -46.985208207225099 5.1104987331022498 -63.593994412026198 -46.994890885136797 5.4747405614037001 -63.531726881706597 -47 5.8272809962667802 -63.4668575224199 -47 6.1676575780437197 -63.399999999999999 + 0 9 0.27405809103505002 7 0.51884783229647502 7 0.71714785071540399 7 1 9 +6 -1 0 0 +7 0 0 8 30 5 -47 -6.1676575780437197 -63.399999999999999 -47 -5.8421254048106404 -63.463941750800601 -46.995326953028403 -5.5053676371864899 -63.526083979204401 -46.986443718227001 -5.1578752600744302 -63.585871378814403 -46.973890161955801 -4.7998433982841604 -63.642852505981502 -46.958278220147299 -4.4308237516560904 -63.696638847265703 -46.940265490345602 -4.0497803578465801 -63.746905894313898 -46.920581208336898 -3.6546247883121401 -63.793350803701799 -46.881954654790903 -2.87023653607966 -63.873187996727999 -46.863145290236901 -2.4845687139159001 -63.907474991386103 -46.844378337373598 -2.0789084702999698 -63.938119958791503 -46.826717729195501 -1.6508205833026499 -63.964294227456001 -46.811573872138901 -1.19975630191407 -63.984766905750398 -46.801316236074001 -0.72671620746514498 -63.998190210132101 -46.7978121721927 -0.23593408914712699 -64.0029263378932 -46.803171041599498 0.656243002187618 -63.995761957847101 -46.809757328785402 1.0476127423144601 -63.986923393616799 -46.820066986484001 1.4248122722513801 -63.972904210002099 -46.832943830138397 1.7862258789763701 -63.954570044225399 -46.847310532559902 2.1318666224379599 -63.932694716694797 -46.862390758787598 2.4626436255338899 -63.907859214821897 -46.877651366174199 2.78058792231124 -63.880466858415502 -46.914245285472099 3.5282273039788801 -63.807964382044801 -46.9352794523395 3.94546848734486 -63.760507897460599 -46.9546711805991 4.34680401037006 -63.708789638830297 -46.971567221762399 4.7347256034278402 -63.653161746748602 -46.985208207225099 5.1104987331022498 -63.593994412026198 -46.994890885136797 5.4747405614037001 -63.531726881706597 -47 5.8272809962667802 -63.4668575224199 -47 6.1676575780437197 -63.399999999999999 + 0 9 0.27405809103505002 7 0.51884783229647502 7 0.71714785071540399 7 1 9 +1 0 0 0 1 0 0 0 0 1 0 -1 0 +1 90 0 0 1 0 0 0 0 1 0 -1 0 +1 0 0 0 0 0 1 1 0 0 0 1 0 +2 42 -40 -0.40000000000000602 0 1 0 1 0 0 0 0 1 1 +1 0 0 65 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 36 +1 0 0 80 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 2 +1 0 0 0 1 0 0 0 0 1 0 -1 0 +1 0 0 18 0 0 1 1 0 0 0 1 0 +1 0 0 0 0 0 1 1 0 0 0 1 0 +1 110 0 0 1 0 0 0 0 1 0 -1 0 +1 0 0 0 0 1 0 0 0 1 1 0 0 +9 0 0 0 0 7 8 8 9 2 2 42 -39 -64.400000000000006 42.196349540849504 -39 -64.400000000000304 42.392698267551403 -39 -64.355938335085597 42.577516037383504 -39 -64.267820868920694 42.739254831512099 -38.999999999999801 -64.139254831510797 42.867820868919701 -39.000000000000199 -63.977516037384198 42.955938335086103 -38.999999999999801 -63.792698267550797 43 -39 -63.596349540849403 43 -39 -63.399999999999999 +42 -39 -64.400000000000006 42.186156749299599 -39.038242725956998 -64.400000000000304 42.372341084722898 -39.076485460743299 -64.360545878239094 42.552050037778599 -39.113080265268998 -64.281371260025296 42.719725692610297 -39.146379559882298 -64.162124058458105 42.861726043185797 -39.174937967159899 -63.996704934055302 42.9558995975028 -39.197719493733402 -63.800691598457398 43 -39.2142066837065 -63.596349540849403 43 -39.224399475256398 -63.399999999999999 +42 -39 -64.400000000000006 42.139406858621101 -39.103692572906702 -64.400000000000304 42.319371839581898 -39.174083650889699 -64.363617573674404 42.479510902126201 -39.258041680768102 -64.290404854094405 42.636794048694199 -39.334693596865897 -64.177370209755594 42.777558956348599 -39.397686455463798 -64.009497531835095 42.875189326761998 -39.438242474049702 -63.806020485727302 42.946531557604601 -39.437721139248801 -63.596349540847903 42.941251113447898 -39.4487978649829 -63.399999999998499 +42 -39 -64.400000000000006 42.130562568533897 -39.121886841129601 -64.400000000000304 42.283823859488699 -39.235957466662001 -64.365153421393202 42.428373284912801 -39.354009862593301 -64.294921651130807 42.570353129266898 -39.467053199027497 -64.184993285406705 42.696350616917499 -39.564719853379003 -64.015893830728004 42.781297803087902 -39.629279201888501 -63.808684929365803 42.831223590620603 -39.652796375549499 -63.596349540851897 42.823762722203298 -39.654746940823898 -63.4000000000025 +42 -39 -64.400000000000006 42.121886841129601 -39.130562568533797 -64.400000000000304 42.235957466661503 -39.283823859488301 -64.365153421391994 42.354009862592598 -39.4283732849118 -64.294921651129002 42.467053199026502 -39.570353129266302 -64.184993285404403 42.564719853377902 -39.696350616916099 -64.015893830725204 42.629279201887101 -39.781297803086701 -63.8086849293623 42.652796375547602 -39.831223590618698 -63.596349540847299 42.654746940822001 -39.823762722201401 -63.399999999997902 +42 -39 -64.400000000000006 42.103692572906702 -39.139406858621001 -64.400000000000304 42.174083650890097 -39.319371839582502 -64.363617573675199 42.2580416807685 -39.479510902126201 -64.290404854095797 42.3346935968667 -39.6367940486954 -64.177370209757399 42.397686455464601 -39.777558956348997 -64.009497531837397 42.438242474050902 -39.875189326763298 -63.806020485729903 42.4377211392503 -39.946531557605802 -63.596349540851499 42.448797864984499 -39.941251113449098 -63.400000000002102 +42 -39 -64.400000000000006 42.038242725956799 -39.1861567492994 -64.400000000000304 42.076485460743598 -39.372341084723402 -64.360545878239094 42.1130802652686 -39.552050037777803 -64.281371260025296 42.146379559882902 -39.719725692611497 -64.162124058458105 42.174937967159501 -39.8617260431852 -63.996704934055401 42.1977194937337 -39.955899597503397 -63.800691598457398 42.2142066837065 -40 -63.596349540849403 42.224399475256398 -40 -63.399999999999999 +42 -39 -64.400000000000006 41.999999999999901 -39.196349540849297 -64.400000000000304 42.000000000000298 -39.392698267551999 -64.355938335085597 41.999999999999602 -39.577516037382701 -64.267820868920694 42.000000000000497 -39.7392548315133 -64.139254831510797 41.999999999999801 -39.867820868919097 -63.977516037384198 42.000000000000199 -39.955938335086799 -63.792698267550797 42 -40 -63.596349540849403 42 -40 -63.399999999999999 + +0 8 +1 8 + +0 9 +1 9 + +2 -46 -39 -64.400000000000006 0 0 1 -1 0 0 0 -1 0 1 +6 -1 0 0 +7 0 0 7 8 2 -47 -39 -63.399999999999999 -47 -39.224399475256398 -63.399999999999999 -46.941251113447699 -39.4487978649829 -63.399999999998499 -46.823762722203497 -39.654746940823898 -63.4000000000025 -46.654746940821802 -39.823762722201401 -63.399999999997902 -46.448797864984499 -39.941251113449098 -63.400000000002102 -46.224399475256398 -40 -63.399999999999999 -46 -40 -63.399999999999999 + 0 8 1 8 +2 -47 0 -32 -1 0 0 0 0 -1 0 -1 0 32 +2 -47 0 -32 -1 0 0 0 0 -1 0 -1 0 32 +2 -60 0 -32 -1 0 0 0 0 -1 0 -1 0 32 +2 -46 -40 -0.40000000000000602 0 1 0 -1 0 0 0 0 1 1 +6 -1 0 0 +7 0 0 7 14 3 -47 -5.0438080851674298 -0.40000000000000602 -47 -4.74241743076667 -0.351893777865183 -46.99730021957 -4.4300684160654296 -0.30547898049886002 -46.992241560087699 -4.1060741452807603 -0.261066473916509 -46.985209224324201 -3.7695165672697399 -0.21902210705768499 -46.976664881696799 -3.4193063756068098 -0.17974820198105701 -46.967185451665003 -3.0538231410906098 -0.143722557786301 -46.948962801102603 -2.3313015619316899 -0.083223117824859499 -46.940256502178599 -1.9780353772094199 -0.057872834180607798 -46.9319162875125 -1.60874718505218 -0.036042246255630503 -46.924601232178397 -1.2232725332572401 -0.018514600148056899 -46.9192191838562 -0.82317384169567598 -0.0061986657517043601 -46.916515120968 -0.41232774799833799 4.1232774750099599e-008 -46.916515138963497 0 0 + 0 8 0.53103945332248503 6 1 8 +6 -1 0 0 +7 0 0 7 14 3 -47 -5.0438080851674298 -0.40000000000000602 -47 -4.74241743076667 -0.351893777865183 -46.99730021957 -4.4300684160654296 -0.30547898049886002 -46.992241560087699 -4.1060741452807603 -0.261066473916509 -46.985209224324201 -3.7695165672697399 -0.21902210705768499 -46.976664881696799 -3.4193063756068098 -0.17974820198105701 -46.967185451665003 -3.0538231410906098 -0.143722557786301 -46.948962801102603 -2.3313015619316899 -0.083223117824859499 -46.940256502178599 -1.9780353772094199 -0.057872834180607798 -46.9319162875125 -1.60874718505218 -0.036042246255630503 -46.924601232178397 -1.2232725332572401 -0.018514600148056899 -46.9192191838562 -0.82317384169567598 -0.0061986657517043601 -46.916515120968 -0.41232774799833799 4.1232774750099599e-008 -46.916515138963497 0 0 + 0 8 0.53103945332248503 6 1 8 +2 42 -39 -64.400000000000006 0 0 1 1 0 0 0 -1 0 1 +9 0 0 0 0 7 8 8 9 2 2 42 -39 0.59999999999999398 42.196349540849397 -39 0.59999999999999598 42.392698267551502 -39 0.55593833508626 42.577516037383603 -39 0.46782086891951902 42.739254831511801 -38.999999999999801 0.33925483151256702 42.867820868919999 -39.000000000000199 0.17751603738313301 42.955938335085897 -38.999999999999801 -0.00730173244830942 43 -39 -0.203650459150647 43 -39 -0.40000000000000602 +42 -39 0.59999999999999398 42.186156749299499 -39.038242725956998 0.59999999999999598 42.372341084722898 -39.076485460743299 0.56054587823977398 42.552050037778699 -39.113080265268998 0.48137126002409703 42.719725692609998 -39.146379559882298 0.362124058459875 42.861726043186103 -39.174937967159998 0.196704934054245 42.955899597502501 -39.197719493733402 0.00069159845822847088 43 -39.2142066837065 -0.203650459150647 43 -39.224399475256398 -0.40000000000000602 +42 -39 0.59999999999999398 42.139406858621101 -39.103692572906802 0.59999999999999598 42.319371839581898 -39.1740836508896 0.56361757367545195 42.4795109021263 -39.258041680768301 0.49040485409381601 42.636794048693901 -39.334693596865399 0.377370209758081 42.777558956348798 -39.397686455463997 0.20949753183498601 42.875189326761799 -39.438242474049503 0.0060204857292555395 42.946531557604601 -39.437721139248801 -0.203650459150642 42.941251113447898 -39.4487978649829 -0.39999999999999802 +42 -39 0.59999999999999398 42.130562568533897 -39.121886841129601 0.59999999999999598 42.283823859488699 -39.235957466661802 0.56515342139328695 42.428373284912801 -39.354009862593699 0.49492165112867298 42.570353129266699 -39.4670531990269 0.38499328540718403 42.696350616917599 -39.564719853379302 0.21589383072535501 42.781297803087703 -39.629279201888203 0.0086849293647635294 42.831223590620603 -39.652796375549499 -0.20365045915065499 42.823762722203298 -39.654746940823898 -0.40000000000001801 +42 -39 0.59999999999999398 42.121886841129502 -39.130562568533897 0.59999999999999598 42.235957466661503 -39.283823859488102 0.56515342139329094 42.354009862592697 -39.428373284912297 0.49492165112867298 42.467053199026303 -39.570353129265499 0.38499328540718603 42.564719853378001 -39.696350616916497 0.21589383072535401 42.629279201886902 -39.781297803086296 0.008684929364768449 42.652796375547602 -39.831223590618698 -0.20365045915064001 42.654746940822001 -39.823762722201401 -0.39999999999999403 +42 -39 0.59999999999999398 42.103692572906702 -39.139406858621101 0.59999999999999598 42.174083650890204 -39.319371839582097 0.56361757367544996 42.258041680768599 -39.479510902126897 0.49040485409381201 42.3346935968666 -39.636794048694398 0.377370209758083 42.397686455464701 -39.777558956349601 0.20949753183498199 42.438242474050803 -39.875189326762701 0.00602048572925143 42.4377211392503 -39.946531557605802 -0.203650459150653 42.448797864984499 -39.941251113449098 -0.40000000000001501 +42 -39 0.59999999999999398 42.038242725956799 -39.186156749299499 0.59999999999999598 42.076485460743598 -39.372341084722898 0.56054587823977498 42.1130802652686 -39.552050037778798 0.48137126002409403 42.146379559882902 -39.719725692610098 0.362124058459877 42.174937967159501 -39.861726043185897 0.196704934054242 42.1977194937337 -39.955899597502601 0.00069159845822809401 42.2142066837065 -40 -0.203650459150648 42.224399475256398 -40 -0.40000000000000602 +42 -39 0.59999999999999398 41.999999999999901 -39.196349540849397 0.59999999999999598 42.000000000000298 -39.392698267551403 0.55593833508626 41.999999999999602 -39.577516037383702 0.46782086891951902 42.000000000000497 -39.7392548315119 0.33925483151256702 41.999999999999801 -39.8678208689198 0.17751603738313301 42.000000000000199 -39.955938335086003 -0.0073017324483093905 42 -40 -0.203650459150647 42 -40 -0.40000000000000602 + +0 8 +1 8 + +0 9 +1 9 + +2 -47 -39 -0.40000000000000602 1 0 0 0 -1 0 0 0 1 1 +1 0 0 0 0 1 0 0 0 1 1 0 0 +9 0 0 0 0 7 8 8 9 2 2 -46 -39 0.59999999999999398 -46.196349540849603 -39 0.59999999999999598 -46.392698267550898 -39 0.55593833508626 -46.577516037384498 -39 0.46782086891951902 -46.7392548315106 -38.999999999999801 0.33925483151256702 -46.867820868920703 -39.000000000000199 0.17751603738313301 -46.955938335085499 -38.999999999999801 -0.00730173244830942 -47 -39 -0.203650459150647 -47 -39 -0.40000000000000602 +-46 -39 0.59999999999999398 -46.186156749299698 -39.038242725956998 0.59999999999999598 -46.372341084722301 -39.076485460743299 0.56054587823977498 -46.552050037779601 -39.113080265268998 0.48137126002409503 -46.719725692608797 -39.146379559882298 0.362124058459877 -46.8617260431867 -39.174937967159998 0.196704934054244 -46.955899597502103 -39.197719493733402 0.00069159845822829903 -47 -39.2142066837065 -0.203650459150647 -47 -39.224399475256398 -0.40000000000000602 +-46 -39 0.59999999999999398 -46.1394068586212 -39.103692572906802 0.59999999999999598 -46.3193718395814 -39.1740836508896 0.56361757367545195 -46.479510902126997 -39.258041680768301 0.49040485409381401 -46.636794048692899 -39.334693596865399 0.377370209758083 -46.777558956349203 -39.397686455463997 0.20949753183498501 -46.875189326761301 -39.438242474049503 0.0060204857292553097 -46.946531557604501 -39.437721139248801 -0.203650459150642 -46.941251113447699 -39.4487978649829 -0.39999999999999802 +-46 -39 0.59999999999999398 -46.130562568534003 -39.121886841129601 0.59999999999999598 -46.283823859488301 -39.235957466661802 0.56515342139328795 -46.428373284913597 -39.354009862593699 0.49492165112867098 -46.570353129265897 -39.4670531990269 0.38499328540718702 -46.696350616918203 -39.564719853379302 0.21589383072535401 -46.781297803087597 -39.629279201888203 0.0086849293647633212 -46.831223590620802 -39.652796375549499 -0.20365045915065499 -46.823762722203497 -39.654746940823898 -0.40000000000001801 +-46 -39 0.59999999999999398 -46.121886841129701 -39.130562568533897 0.59999999999999598 -46.235957466660999 -39.283823859488102 0.56515342139329094 -46.354009862593301 -39.428373284912297 0.49492165112867198 -46.467053199025401 -39.570353129265499 0.38499328540718702 -46.5647198533783 -39.696350616916497 0.21589383072535401 -46.629279201886497 -39.781297803086296 0.0086849293647683207 -46.652796375547403 -39.831223590618698 -0.20365045915064001 -46.654746940821802 -39.823762722201401 -0.39999999999999403 +-46 -39 0.59999999999999398 -46.103692572906802 -39.139406858621101 0.59999999999999598 -46.174083650889798 -39.319371839582097 0.56361757367544996 -46.258041680769097 -39.479510902126897 0.49040485409381102 -46.334693596865897 -39.636794048694398 0.377370209758084 -46.397686455464999 -39.777558956349601 0.20949753183498199 -46.438242474050497 -39.875189326762701 0.0060204857292513797 -46.4377211392503 -39.946531557605802 -0.203650459150653 -46.448797864984499 -39.941251113449098 -0.40000000000001501 +-46 -39 0.59999999999999398 -46.038242725956898 -39.186156749299499 0.59999999999999598 -46.076485460743299 -39.372341084722898 0.56054587823977498 -46.113080265268898 -39.552050037778798 0.48137126002409403 -46.146379559882398 -39.719725692610098 0.362124058459877 -46.1749379671597 -39.861726043185897 0.196704934054242 -46.197719493733501 -39.955899597502601 0.00069159845822809401 -46.2142066837065 -40 -0.203650459150648 -46.224399475256398 -40 -0.40000000000000602 +-46 -39 0.59999999999999398 -46 -39.196349540849397 0.59999999999999598 -46 -39.392698267551403 0.55593833508626 -46 -39.577516037383702 0.46782086891951902 -46 -39.7392548315119 0.33925483151256702 -46 -39.8678208689198 0.17751603738313301 -46 -39.955938335086003 -0.0073017324483093905 -46 -40 -0.203650459150647 -46 -40 -0.40000000000000602 + +0 8 +1 8 + +0 9 +1 9 + +6 -1 0 0 +7 0 0 7 8 2 -47 -39 -0.40000000000000602 -47 -39.224399475256398 -0.40000000000000602 -46.941251113447699 -39.4487978649829 -0.39999999999999802 -46.823762722203497 -39.654746940823898 -0.40000000000001801 -46.654746940821802 -39.823762722201401 -0.39999999999999403 -46.448797864984499 -39.941251113449098 -0.40000000000001501 -46.224399475256398 -40 -0.40000000000000602 -46 -40 -0.40000000000000602 + 0 8 1 8 +6 -1 0 0 +7 0 0 8 9 2 -46 -39 0.59999999999999398 -46.196349540849603 -39 0.59999999999999598 -46.392698267550898 -39 0.55593833508626 -46.577516037384498 -39 0.46782086891951902 -46.7392548315106 -38.999999999999801 0.33925483151256702 -46.867820868920703 -39.000000000000199 0.17751603738313301 -46.955938335085499 -38.999999999999801 -0.00730173244830942 -47 -39 -0.203650459150647 -47 -39 -0.40000000000000602 + 0 9 1 9 +1 0 0 0 1 0 0 0 0 1 0 -1 0 +1 0 0 80 0 0 1 1 0 0 0 1 0 +1 0 0 0 0 1 0 0 0 1 1 0 0 +1 0 0 0 0 1 0 0 0 1 1 0 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 2 +1 0 0 0 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 26 +2 0 0 0 0 0 1 1 0 0 0 1 0 36 +1 0 0 10 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 4 +1 0 0 4 0 0 1 1 0 0 0 1 0 +1 0 0 0 0 0 1 1 0 0 0 1 0 +1 0 0 0 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 46 +1 0 0 1 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 9 +1 0 0 0 0 1 0 0 0 1 1 0 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 6 +1 0 0 0 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 6 +1 0 0 20 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 20 +3 0 0 0 0 0 1 1 0 0 0 1 0 20 +-0.46364760900080598 +1 0 0 0 0 0 1 1 0 0 0 1 0 +1 0 0 22 0 0 1 1 0 0 0 1 0 +1 0 0 0 0 0 1 1 0 0 0 1 0 +1 0 0 4 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 34 +2 0 0 0 0 0 1 1 0 0 0 1 0 16 +1 0 0 17 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 15 +1 0 0 0 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 16 +1 0 0 17 0 0 1 1 0 0 0 1 0 +2 0 0 0 0 0 1 1 0 0 0 1 0 14 +1 0 0 50 0 0 1 1 0 0 0 1 0 +Triangulations 223 +36 34 1 0.110369322528976 +-25.9998076915964 -0.100000000023234 14 25.9998076915963 -0.100000000041546 14 -25.5409402183473 -4.8641929199829 14 -24.2165487102836 -9.46354946954159 14 -22.071513765846 -13.7422079770345 14 -19.1785257121742 -17.5551744937917 14 -15.6356212962116 -20.7732363073608 14 -11.562861443627 -23.2873406647364 14 -7.09826266870315 -25.0122903206823 14 -2.39312001040355 -25.8896306774702 14 2.39312001038516 -25.8896306774719 14 7.09826266868539 -25.0122903206873 14 11.5628614436105 -23.2873406647446 14 15.6356212961968 -20.7732363073719 14 19.1785257121617 -17.5551744938053 14 22.0715137658363 -13.7422079770501 14 24.2165487102769 -9.46354946955878 14 25.5409402183438 -4.86419292000104 14 -25.9998076915964 -0.100000000023234 0 25.9998076915963 -0.100000000041546 0 -25.5409402183473 -4.86419291998283 0 -24.2165487102836 -9.46354946954154 0 -22.071513765846 -13.7422079770344 0 -19.1785257121742 -17.5551744937916 0 -15.6356212962116 -20.7732363073608 0 -11.562861443627 -23.2873406647364 0 -7.09826266870317 -25.0122903206823 0 -2.39312001040357 -25.8896306774702 0 2.39312001038514 -25.8896306774719 0 7.09826266868537 -25.0122903206873 0 11.5628614436105 -23.2873406647446 0 15.6356212961968 -20.773236307372 0 19.1785257121617 -17.5551744938053 0 22.0715137658363 -13.7422079770501 0 24.2165487102769 -9.4635494695588 0 25.5409402183438 -4.86419292000106 0 3.14543881691953 14 6.27933914384914 14 3.32978589497421 14 3.51413297302889 14 3.69848005108358 14 3.88282712913826 14 4.06717420719294 14 4.25152128524763 14 4.43586836330231 14 4.62021544135699 14 4.80456251941167 14 4.98890959746636 14 5.17325667552104 14 5.35760375357572 14 5.5419508316304 14 5.72629790968509 14 5.91064498773977 14 6.09499206579445 14 3.14543881691864 0 6.27933914385074 0 3.32978589497421 0 3.5141329730289 0 3.69848005108358 0 3.88282712913826 0 4.06717420719295 0 4.25152128524763 0 4.43586836330231 0 4.62021544135699 0 4.80456251941168 0 4.98890959746636 0 5.17325667552104 0 5.35760375357572 0 5.54195083163041 0 5.72629790968509 0 5.91064498773977 0 6.09499206579445 0 1 19 21 3 1 21 4 21 22 4 3 21 5 22 23 5 4 22 6 23 24 6 5 23 7 24 25 7 6 24 8 25 26 8 7 25 9 26 27 9 8 26 10 27 28 10 9 27 11 28 29 11 10 28 12 29 30 12 11 29 13 30 31 13 12 30 14 31 32 14 13 31 15 32 33 15 14 32 16 33 34 16 15 33 17 34 35 17 16 34 18 17 35 18 35 36 2 18 36 2 36 20 +36 34 1 6.27364826755183e-012 +-25.9998076915964 -0.100000000023234 0 25.9998076915963 -0.100000000041546 0 -25.5409402183473 -4.8641929199829 0 -24.2165487102836 -9.46354946954159 0 -22.071513765846 -13.7422079770345 0 -19.1785257121742 -17.5551744937917 0 -15.6356212962116 -20.7732363073608 0 -11.562861443627 -23.2873406647364 0 -7.09826266870315 -25.0122903206823 0 -2.39312001040355 -25.8896306774702 0 2.39312001038516 -25.8896306774719 0 7.09826266868539 -25.0122903206873 0 11.5628614436105 -23.2873406647446 0 15.6356212961968 -20.7732363073719 0 19.1785257121617 -17.5551744938053 0 22.0715137658363 -13.7422079770501 0 24.2165487102769 -9.46354946955878 0 25.5409402183438 -4.86419292000104 0 -23.9997916657625 -0.0999999999770012 0 23.9997916657623 -0.100000000040758 0 -23.5749817530217 -4.49669159990943 0 -22.351595507894 -8.74106276441797 0 -20.3710737811492 -12.6893401326852 0 -17.7005045473753 -16.2077801924985 0 -14.4303503743244 -19.1771996932356 0 -10.6713841038684 -21.4970128461539 0 -6.55093654496695 -23.0886385563077 0 -2.2085832838858 -23.8981622698931 0 2.20858328382241 -23.8981622698989 0 6.55093654490571 -23.088638556325 0 10.6713841038114 -21.4970128461822 0 14.4303503742736 -19.1771996932738 0 17.7005045473323 -16.2077801925455 0 20.3710737811156 -12.6893401327392 0 22.3515955078708 -8.74106276447726 0 23.5749817530097 -4.49669159997197 0 -25.9998076915964 -0.100000000023275 25.9998076915963 -0.100000000041554 -25.5409402183473 -4.8641929199829 -24.2165487102836 -9.46354946954159 -22.071513765846 -13.7422079770345 -19.1785257121742 -17.5551744937917 -15.6356212962116 -20.7732363073608 -11.562861443627 -23.2873406647364 -7.09826266870315 -25.0122903206823 -2.39312001040355 -25.8896306774702 2.39312001038516 -25.8896306774719 7.09826266868539 -25.0122903206873 11.5628614436105 -23.2873406647446 15.6356212961968 -20.7732363073719 19.1785257121617 -17.5551744938053 22.0715137658363 -13.7422079770501 24.2165487102769 -9.46354946955878 25.5409402183438 -4.86419292000104 -23.9997916657625 -0.100000000000001 23.9997916657623 -0.100000000000001 -23.5749817530217 -4.49669159990944 -22.351595507894 -8.74106276441797 -20.3710737811492 -12.6893401326852 -17.7005045473753 -16.2077801924985 -14.4303503743244 -19.1771996932356 -10.6713841038684 -21.4970128461539 -6.55093654496695 -23.0886385563077 -2.2085832838858 -23.8981622698931 2.20858328382241 -23.8981622698989 6.55093654490571 -23.088638556325 10.6713841038113 -21.4970128461822 14.4303503742736 -19.1771996932738 17.7005045473323 -16.2077801925455 20.3710737811156 -12.6893401327392 22.3515955078708 -8.74106276447726 23.5749817530097 -4.49669159997197 2 20 18 24 6 7 25 7 8 25 24 7 23 5 6 23 6 24 26 25 8 9 26 8 22 4 5 22 5 23 27 26 9 10 27 9 21 3 4 21 4 22 28 27 10 19 1 3 19 3 21 29 10 11 29 28 10 30 11 12 30 29 11 31 12 13 31 30 12 32 13 14 32 31 13 33 32 14 15 33 14 34 33 15 16 34 15 35 34 16 17 35 16 36 35 17 18 36 17 20 36 18 +8 6 1 2.31486589156541e-011 +24.0001923084036 -2.32339980588137e-011 74 24.0001923084036 -2.32339980588137e-011 88 27.0002173923318 -2.2872995164569e-011 74 26.0002083342375 2.29988111888346e-011 88 27.0002173923318 -2.2872995164569e-011 109 26.0002083342377 -2.30009900015204e-011 92 24.0001923084036 -2.32339980588137e-011 109 24.0001923084036 -2.32109886866283e-011 92 74 24.0001923084035 88 24.0001923084035 74 27.0002173923318 88 26.0002083342375 109 27.0002173923317 92 26.0002083342376 109 24.0001923084036 92 24.0001923084036 4 1 2 4 3 1 7 6 8 5 6 7 5 3 6 6 3 4 +8 6 1 4.12833239815669e-011 +75.9998076915963 -4.15459888714054e-011 74 75.9998076915963 -4.15459888714054e-011 88 72.9997826076681 -4.03379968316742e-011 74 73.9997916657623 -4.07579942018899e-011 88 72.9997826076681 -4.03379968316742e-011 109 73.9997916657623 -4.07579942018899e-011 92 75.9998076915963 -4.15459888714054e-011 109 75.9998076915963 -4.15459888714054e-011 92 74 75.9998076915965 88 75.9998076915965 74 72.9997826076681 88 73.9997916657623 109 72.9997826076683 92 73.9997916657624 109 75.9998076915963 92 75.9998076915963 4 1 3 2 1 4 6 4 3 5 6 3 7 8 6 7 6 5 +36 34 1 9.49151868212539e-012 +-25.9998076915964 -0.100000000023234 0 25.9998076915963 -0.100000000041546 0 -25.5409402183473 -4.86419291998283 0 -24.2165487102836 -9.46354946954154 0 -22.071513765846 -13.7422079770344 0 -19.1785257121742 -17.5551744937916 0 -15.6356212962116 -20.7732363073608 0 -11.562861443627 -23.2873406647364 0 -7.09826266870317 -25.0122903206823 0 -2.39312001040357 -25.8896306774702 0 2.39312001038514 -25.8896306774719 0 7.09826266868537 -25.0122903206873 0 11.5628614436105 -23.2873406647446 0 15.6356212961968 -20.773236307372 0 19.1785257121617 -17.5551744938053 0 22.0715137658363 -13.7422079770501 0 24.2165487102769 -9.4635494695588 0 25.5409402183438 -4.86419292000106 0 -22.9997826076682 -0.100000000022873 0 22.9997826076681 -0.100000000040338 0 -22.5920017203265 -4.31294079124277 0 -21.41911833626 -8.37981919239848 0 -19.5208534158611 -12.162905981568 0 -16.961493747349 -15.5340828457505 0 -13.8277148053733 -18.379181245672 0 -10.2256453926125 -20.6018488564629 0 -6.27727347344425 -22.1268126430264 0 -2.11631492000559 -22.90242806253 0 2.11631491998823 -22.9024280625316 0 6.27727347342747 -22.1268126430312 0 10.2256453925968 -20.6018488564707 0 13.8277148053593 -18.3791812456825 0 16.9614937473372 -15.5340828457634 0 19.5208534158519 -12.1629059815828 0 21.4191183362537 -8.37981919241472 0 22.5920017203232 -4.31294079125989 0 -25.9998076915964 -0.100000000023197 25.9998076915963 -0.100000000041646 -25.5409402183473 -4.86419291998283 -24.2165487102836 -9.46354946954154 -22.071513765846 -13.7422079770344 -19.1785257121742 -17.5551744937916 -15.6356212962116 -20.7732363073608 -11.562861443627 -23.2873406647364 -7.09826266870317 -25.0122903206823 -2.39312001040357 -25.8896306774702 2.39312001038514 -25.8896306774719 7.09826266868536 -25.0122903206873 11.5628614436105 -23.2873406647446 15.6356212961968 -20.773236307372 19.1785257121617 -17.5551744938053 22.0715137658363 -13.7422079770501 24.2165487102769 -9.4635494695588 25.5409402183438 -4.86419292000106 -22.9997826076682 -0.100000000000001 22.9997826076681 -0.100000000000001 -22.5920017203265 -4.31294079124277 -21.41911833626 -8.37981919239848 -19.5208534158611 -12.162905981568 -16.961493747349 -15.5340828457505 -13.8277148053733 -18.379181245672 -10.2256453926125 -20.6018488564629 -6.27727347344425 -22.1268126430264 -2.11631492000559 -22.90242806253 2.11631491998823 -22.9024280625316 6.27727347342747 -22.1268126430312 10.2256453925968 -20.6018488564707 13.8277148053593 -18.3791812456825 16.9614937473372 -15.5340828457634 19.5208534158519 -12.1629059815828 21.4191183362537 -8.37981919241473 22.5920017203232 -4.31294079125989 24 6 7 25 7 8 25 24 7 23 5 6 23 6 24 26 8 9 26 25 8 22 4 5 22 5 23 27 26 9 10 27 9 21 3 4 21 4 22 28 27 10 19 1 3 19 3 21 29 10 11 29 28 10 30 11 12 30 29 11 31 12 13 31 30 12 32 13 14 32 31 13 33 32 14 15 33 14 34 33 15 16 34 15 35 34 16 17 35 16 36 35 17 18 36 17 20 36 18 2 20 18 +36 34 1 0.101837730103864 +-23.9997916657625 -0.0999999999770012 1 23.9997916657623 -0.100000000040758 1 -23.5749817530217 -4.49669159990943 1 -22.351595507894 -8.74106276441797 1 -20.3710737811492 -12.6893401326852 1 -17.7005045473753 -16.2077801924985 1 -14.4303503743244 -19.1771996932356 1 -10.6713841038684 -21.4970128461539 1 -6.55093654496695 -23.0886385563077 1 -2.2085832838858 -23.8981622698931 1 2.20858328382241 -23.8981622698989 1 6.55093654490571 -23.088638556325 1 10.6713841038114 -21.4970128461822 1 14.4303503742736 -19.1771996932738 1 17.7005045473323 -16.2077801925455 1 20.3710737811156 -12.6893401327392 1 22.3515955078708 -8.74106276447726 1 23.5749817530097 -4.49669159997197 1 -23.9997916657623 -0.100000000023001 5 23.9997916657623 -0.100000000040758 5 -23.5749817530135 -4.49669159995202 5 -22.3515955078792 -8.74106276445583 5 -20.3710737811291 -12.6893401327174 5 -17.7005045473515 -16.2077801925245 5 -14.4303503742984 -19.1771996932551 5 -10.6713841038417 -21.4970128461671 5 -6.55093654494087 -23.0886385563151 5 -2.2085832838615 -23.8981622698953 5 2.20858328384402 -23.8981622698969 5 6.55093654492398 -23.0886385563199 5 10.6713841038259 -21.497012846175 5 14.4303503742844 -19.1771996932657 5 17.7005045473396 -16.2077801925375 5 20.3710737811199 -12.6893401327323 5 22.3515955078728 -8.74106276447218 5 23.5749817530102 -4.49669159996927 5 3.14575933231192 1 6.2790186284548 1 3.33006870267327 1 3.51437807303461 1 3.69868744339596 1 3.8829968137573 1 4.06730618411865 1 4.25161555448 1 4.43592492484134 1 4.62023429520269 1 4.80454366556403 1 4.98885303592538 1 5.17316240628672 1 5.35747177664807 1 5.54178114700942 1 5.72609051737076 1 5.91039988773211 1 6.09470925809345 1 3.14575933231288 5 6.2790186284565 5 3.33006870267507 5 3.51437807303631 5 3.69868744339754 5 3.88299681375877 5 4.06730618412 5 4.25161555448124 5 4.43592492484247 5 4.6202342952037 5 4.80454366556494 5 4.98885303592617 5 5.1731624062874 5 5.35747177664864 5 5.54178114700987 5 5.7260905173711 5 5.91039988773234 5 6.09470925809357 5 19 1 3 21 3 4 21 19 3 22 4 5 22 21 4 23 5 6 23 22 5 24 6 7 24 23 6 25 7 8 25 24 7 26 8 9 26 25 8 27 9 10 27 26 9 28 10 11 28 27 10 29 11 12 29 28 11 30 12 13 30 29 12 31 13 14 31 30 13 32 14 15 32 31 14 33 15 16 33 32 15 34 16 17 34 33 16 35 17 18 35 34 17 36 35 18 36 18 2 20 36 2 +36 34 1 0.0975719374691975 +-22.9997826076682 -0.100000000022873 1 22.9997826076681 -0.100000000040338 1 -22.5920017203265 -4.31294079124277 1 -21.41911833626 -8.37981919239848 1 -19.5208534158611 -12.162905981568 1 -16.961493747349 -15.5340828457505 1 -13.8277148053733 -18.379181245672 1 -10.2256453926125 -20.6018488564629 1 -6.27727347344425 -22.1268126430264 1 -2.11631492000559 -22.90242806253 1 2.11631491998823 -22.9024280625316 1 6.27727347342747 -22.1268126430312 1 10.2256453925968 -20.6018488564707 1 13.8277148053593 -18.3791812456825 1 16.9614937473372 -15.5340828457634 1 19.5208534158519 -12.1629059815828 1 21.4191183362537 -8.37981919241472 1 22.5920017203232 -4.31294079125989 1 -22.9997826076682 -0.100000000022873 36 22.9997826076681 -0.100000000040338 36 -22.5920017203264 -4.31294079124297 36 -21.4191183362599 -8.37981919239866 36 -19.520853415861 -12.1629059815682 36 -16.9614937473489 -15.5340828457507 36 -13.8277148053732 -18.3791812456721 36 -10.2256453926124 -20.601848856463 36 -6.27727347344417 -22.1268126430264 36 -2.11631492000553 -22.90242806253 36 2.11631491998827 -22.9024280625316 36 6.27727347342749 -22.1268126430312 36 10.2256453925968 -20.6018488564707 36 13.8277148053593 -18.3791812456825 36 16.9614937473372 -15.5340828457634 36 19.5208534158519 -12.1629059815829 36 21.4191183362536 -8.3798191924148 36 22.5920017203232 -4.31294079125999 36 3.14594049337611 1 6.2788374673925 1 3.33022855067119 1 3.51451660796627 1 3.69880466526136 1 3.88309272255644 1 4.06738077985152 1 4.2516688371466 1 4.43595689444168 1 4.62024495173677 1 4.80453300903185 1 4.98882106632693 1 5.17310912362201 1 5.35739718091709 1 5.54168523821218 1 5.72597329550726 1 5.91026135280234 1 6.09454941009742 1 3.14594049337512 36 6.27883746739426 36 3.3302285506712 36 3.51451660796628 36 3.69880466526136 36 3.88309272255644 36 4.06738077985153 36 4.25166883714661 36 4.43595689444169 36 4.62024495173677 36 4.80453300903185 36 4.98882106632693 36 5.17310912362201 36 5.35739718091709 36 5.54168523821217 36 5.72597329550726 36 5.91026135280234 36 6.09454941009742 36 21 1 3 21 3 4 21 19 1 22 4 5 22 21 4 23 5 6 23 22 5 24 6 7 24 23 6 25 7 8 25 24 7 26 8 9 26 25 8 27 9 10 27 26 9 28 10 11 28 27 10 29 11 12 29 28 11 30 12 13 30 29 12 31 30 13 32 13 14 32 31 13 33 14 15 33 32 14 34 15 16 34 33 15 35 16 17 35 34 16 36 35 17 36 17 18 36 18 2 20 36 2 +36 34 1 5.39568389967826e-014 +-22.9997826076682 -0.100000000022873 35 22.9997826076681 -0.100000000040338 35 -22.5920017203264 -4.31294079124297 35 -21.4191183362599 -8.37981919239866 35 -19.520853415861 -12.1629059815682 35 -16.9614937473489 -15.5340828457507 35 -13.8277148053732 -18.3791812456721 35 -10.2256453926124 -20.601848856463 35 -6.27727347344417 -22.1268126430264 35 -2.11631492000553 -22.90242806253 35 2.11631491998827 -22.9024280625316 35 6.27727347342749 -22.1268126430312 35 10.2256453925968 -20.6018488564707 35 13.8277148053593 -18.3791812456825 35 16.9614937473372 -15.5340828457634 35 19.5208534158519 -12.1629059815829 35 21.4191183362536 -8.3798191924148 35 22.5920017203232 -4.31294079125999 35 -25.9998076915964 -0.100000000023234 35 25.9998076915963 -0.100000000041546 35 -25.5409402183473 -4.86419291998283 35 -24.2165487102836 -9.46354946954154 35 -22.071513765846 -13.7422079770344 35 -19.1785257121742 -17.5551744937916 35 -15.6356212962116 -20.7732363073608 35 -11.562861443627 -23.2873406647364 35 -7.09826266870317 -25.0122903206823 35 -2.39312001040357 -25.8896306774702 35 2.39312001038514 -25.8896306774719 35 7.09826266868537 -25.0122903206873 35 11.5628614436105 -23.2873406647446 35 15.6356212961968 -20.773236307372 35 19.1785257121617 -17.5551744938053 35 22.0715137658363 -13.7422079770501 35 24.2165487102769 -9.4635494695588 35 25.5409402183438 -4.86419292000106 35 -22.9997826076682 -0.100000000023051 22.9997826076681 -0.100000000040367 -22.5920017203264 -4.31294079124297 -21.4191183362599 -8.37981919239866 -19.520853415861 -12.1629059815682 -16.9614937473489 -15.5340828457507 -13.8277148053732 -18.3791812456721 -10.2256453926124 -20.601848856463 -6.27727347344417 -22.1268126430264 -2.11631492000553 -22.90242806253 2.11631491998827 -22.9024280625316 6.27727347342749 -22.1268126430312 10.2256453925968 -20.6018488564707 13.8277148053593 -18.3791812456825 16.9614937473372 -15.5340828457634 19.5208534158519 -12.1629059815829 21.4191183362536 -8.3798191924148 22.5920017203232 -4.31294079125999 -25.9998076915964 -0.100000000000001 25.9998076915963 -0.100000000000001 -25.5409402183473 -4.86419291998283 -24.2165487102836 -9.46354946954154 -22.071513765846 -13.7422079770344 -19.1785257121742 -17.5551744937916 -15.6356212962116 -20.7732363073608 -11.562861443627 -23.2873406647364 -7.09826266870317 -25.0122903206823 -2.39312001040357 -25.8896306774702 2.39312001038514 -25.8896306774719 7.09826266868536 -25.0122903206873 11.5628614436105 -23.2873406647446 15.6356212961968 -20.773236307372 19.1785257121617 -17.5551744938053 22.0715137658363 -13.7422079770501 24.2165487102769 -9.4635494695588 25.5409402183438 -4.86419292000106 6 24 25 7 25 26 7 6 25 5 23 24 5 24 6 8 26 27 8 7 26 4 22 23 4 23 5 9 8 27 28 9 27 3 21 22 3 22 4 10 9 28 1 19 21 1 21 3 11 28 29 11 10 28 12 29 30 12 11 29 13 30 31 13 12 30 14 31 32 14 13 31 15 14 32 33 15 32 16 15 33 34 16 33 17 16 34 35 17 34 18 17 35 36 18 35 2 18 36 20 2 36 +36 34 1 6.66133814775094e-015 +-23.9997916657623 -0.100000000023001 4 23.9997916657623 -0.100000000040758 4 -23.5749817530135 -4.49669159995202 4 -22.3515955078792 -8.74106276445583 4 -20.3710737811291 -12.6893401327174 4 -17.7005045473515 -16.2077801925245 4 -14.4303503742984 -19.1771996932551 4 -10.6713841038417 -21.4970128461671 4 -6.55093654494087 -23.0886385563151 4 -2.2085832838615 -23.8981622698953 4 2.20858328384402 -23.8981622698969 4 6.55093654492398 -23.0886385563199 4 10.6713841038259 -21.497012846175 4 14.4303503742844 -19.1771996932657 4 17.7005045473396 -16.2077801925375 4 20.3710737811199 -12.6893401327323 4 22.3515955078728 -8.74106276447218 4 23.5749817530102 -4.49669159996927 4 -25.9998076915964 -0.100000000023211 4 25.9998076915963 -0.100000000041546 4 -25.5409402183473 -4.8641929199829 4 -24.2165487102836 -9.46354946954159 4 -22.071513765846 -13.7422079770345 4 -19.1785257121742 -17.5551744937917 4 -15.6356212962116 -20.7732363073608 4 -11.562861443627 -23.2873406647364 4 -7.09826266870315 -25.0122903206823 4 -2.39312001040355 -25.8896306774702 4 2.39312001038516 -25.8896306774719 4 7.09826266868539 -25.0122903206873 4 11.5628614436105 -23.2873406647446 4 15.6356212961968 -20.7732363073719 4 19.1785257121617 -17.5551744938053 4 22.0715137658363 -13.7422079770501 4 24.2165487102769 -9.46354946955878 4 25.5409402183438 -4.86419292000104 4 -23.9997916657623 -0.100000000023083 23.9997916657623 -0.10000000004068 -23.5749817530135 -4.49669159995203 -22.3515955078792 -8.74106276445583 -20.3710737811291 -12.6893401327174 -17.7005045473515 -16.2077801925245 -14.4303503742984 -19.1771996932551 -10.6713841038417 -21.4970128461671 -6.55093654494087 -23.0886385563151 -2.2085832838615 -23.8981622698953 2.20858328384402 -23.8981622698969 6.55093654492398 -23.0886385563199 10.6713841038259 -21.497012846175 14.4303503742844 -19.1771996932657 17.7005045473396 -16.2077801925375 20.3710737811199 -12.6893401327323 22.3515955078728 -8.74106276447218 23.5749817530102 -4.49669159996927 -25.9998076915964 -0.100000000000001 25.9998076915963 -0.100000000000001 -25.5409402183473 -4.8641929199829 -24.2165487102836 -9.46354946954159 -22.071513765846 -13.7422079770345 -19.1785257121742 -17.5551744937917 -15.6356212962116 -20.7732363073608 -11.562861443627 -23.2873406647364 -7.09826266870315 -25.0122903206823 -2.39312001040355 -25.8896306774702 2.39312001038516 -25.8896306774719 7.09826266868539 -25.0122903206873 11.5628614436105 -23.2873406647446 15.6356212961968 -20.7732363073719 19.1785257121617 -17.5551744938053 22.0715137658363 -13.7422079770501 24.2165487102769 -9.46354946955878 25.5409402183438 -4.86419292000104 6 24 25 7 25 26 7 6 25 5 23 24 5 24 6 8 7 26 27 8 26 4 22 23 4 23 5 9 8 27 28 9 27 3 21 22 3 22 4 10 9 28 1 19 21 1 21 3 11 28 29 11 10 28 12 29 30 12 11 29 13 30 31 13 12 30 14 31 32 14 13 31 15 14 32 33 15 32 16 15 33 34 16 33 17 16 34 35 17 34 18 17 35 36 18 35 2 18 36 20 2 36 +36 34 1 0.110369322528976 +-25.9998076915964 -0.100000000023211 18 25.9998076915963 -0.100000000041546 18 -25.5409402183473 -4.8641929199829 18 -24.2165487102836 -9.46354946954159 18 -22.071513765846 -13.7422079770345 18 -19.1785257121742 -17.5551744937917 18 -15.6356212962116 -20.7732363073608 18 -11.562861443627 -23.2873406647364 18 -7.09826266870315 -25.0122903206823 18 -2.39312001040355 -25.8896306774702 18 2.39312001038516 -25.8896306774719 18 7.09826266868539 -25.0122903206873 18 11.5628614436105 -23.2873406647446 18 15.6356212961968 -20.7732363073719 18 19.1785257121617 -17.5551744938053 18 22.0715137658363 -13.7422079770501 18 24.2165487102769 -9.46354946955878 18 25.5409402183438 -4.86419292000104 18 -25.9998076915964 -0.100000000023234 35 25.9998076915963 -0.100000000041546 35 -25.5409402183473 -4.86419291998283 35 -24.2165487102836 -9.46354946954154 35 -22.071513765846 -13.7422079770344 35 -19.1785257121742 -17.5551744937916 35 -15.6356212962116 -20.7732363073608 35 -11.562861443627 -23.2873406647364 35 -7.09826266870317 -25.0122903206823 35 -2.39312001040357 -25.8896306774702 35 2.39312001038514 -25.8896306774719 35 7.09826266868537 -25.0122903206873 35 11.5628614436105 -23.2873406647446 35 15.6356212961968 -20.773236307372 35 19.1785257121617 -17.5551744938053 35 22.0715137658363 -13.7422079770501 35 24.2165487102769 -9.4635494695588 35 25.5409402183438 -4.86419292000106 35 3.14543881691953 18 6.27933914384914 18 3.32978589497421 18 3.51413297302889 18 3.69848005108358 18 3.88282712913826 18 4.06717420719294 18 4.25152128524763 18 4.43586836330231 18 4.62021544135699 18 4.80456251941167 18 4.98890959746636 18 5.17325667552104 18 5.35760375357572 18 5.5419508316304 18 5.72629790968509 18 5.91064498773977 18 6.09499206579445 18 3.14543881691864 35 6.27933914385074 35 3.32978589497421 35 3.5141329730289 35 3.69848005108358 35 3.88282712913826 35 4.06717420719295 35 4.25152128524763 35 4.43586836330231 35 4.62021544135699 35 4.80456251941168 35 4.98890959746636 35 5.17325667552104 35 5.35760375357572 35 5.54195083163041 35 5.72629790968509 35 5.91064498773977 35 6.09499206579445 35 21 1 3 21 3 4 21 19 1 22 4 5 22 21 4 23 5 6 23 22 5 24 6 7 24 23 6 25 7 8 25 24 7 26 8 9 26 25 8 27 9 10 27 26 9 28 10 11 28 27 10 29 11 12 29 28 11 30 12 13 30 29 12 31 13 14 31 30 13 32 14 15 32 31 14 33 15 16 33 32 15 34 16 17 34 33 16 35 17 18 35 34 17 36 35 18 36 18 2 20 36 2 +36 34 1 8.17634848715443e-012 +-31.9998437496184 -0.10000000002372 90 31.9998437496184 -0.100000000043359 90 -31.4388064143385 -5.96669516916608 90 -29.8114017582991 -11.6310070589474 90 -27.1728294325296 -16.9008088750406 90 -23.6125867056153 -21.5973551406139 90 -19.2514328216545 -25.5613445325813 90 -14.237292988792 -28.6583231950387 90 -8.74024093021585 -30.7832452558495 90 -2.94673018358676 -31.8640358590236 90 2.94673018356733 -31.8640358590253 90 8.74024093019708 -30.7832452558548 90 14.2372929887745 -28.6583231950474 90 19.251432821639 -25.561344532593 90 23.6125867056021 -21.5973551406283 90 27.1728294325193 -16.9008088750572 90 29.811401758292 -11.6310070589656 90 31.4388064143348 -5.9666951691853 90 -28.9998275856942 -0.100000000042549 90 28.9998275856943 -0.100000000023515 90 28.4898747439106 -5.41544431014534 90 27.0139762520437 -10.5472786563179 90 24.622172264394 -15.3215088350498 90 21.3955565968693 -19.5762651675482 90 17.4435272512704 -23.167290670991 90 12.9000772896833 -25.9728320735379 90 7.91925181641997 -27.8977678438281 90 2.66992509796888 -28.8768332746379 90 -2.66992509794966 -28.8768332746397 90 -7.91925181640139 -27.8977678438334 90 -12.9000772896659 -25.9728320735465 90 -17.443527251255 -23.1672906710026 90 -21.3955565968562 -19.5762651675625 90 -24.6221722643837 -15.3215088350662 90 -27.0139762520366 -10.547278656336 90 -28.489874743907 -5.41544431016447 90 -31.9998437496185 -0.10000000002373 31.9998437496184 -0.100000000043224 -31.4388064143385 -5.96669516916608 -29.8114017582991 -11.6310070589474 -27.1728294325296 -16.9008088750406 -23.6125867056153 -21.5973551406139 -19.2514328216545 -25.5613445325813 -14.237292988792 -28.6583231950387 -8.74024093021584 -30.7832452558495 -2.94673018358676 -31.8640358590236 2.94673018356734 -31.8640358590253 8.74024093019708 -30.7832452558548 14.2372929887745 -28.6583231950474 19.251432821639 -25.561344532593 23.6125867056021 -21.5973551406283 27.1728294325193 -16.9008088750572 29.811401758292 -11.6310070589656 31.4388064143348 -5.9666951691853 -28.9998275856942 -0.100000000000001 28.9998275856943 -0.100000000000001 28.4898747439106 -5.41544431014534 27.0139762520437 -10.5472786563179 24.622172264394 -15.3215088350498 21.3955565968693 -19.5762651675482 17.4435272512704 -23.167290670991 12.9000772896833 -25.9728320735379 7.91925181641997 -27.8977678438281 2.66992509796888 -28.8768332746379 -2.66992509794965 -28.8768332746397 -7.91925181640139 -27.8977678438334 -12.9000772896659 -25.9728320735465 -17.443527251255 -23.1672906710026 -21.3955565968562 -19.5762651675625 -24.6221722643837 -15.3215088350663 -27.0139762520366 -10.547278656336 -28.489874743907 -5.41544431016447 33 6 7 32 7 8 32 33 7 34 5 6 34 6 33 31 8 9 31 32 8 35 4 5 35 5 34 30 31 9 10 30 9 36 3 4 36 4 35 29 30 10 19 1 3 19 3 36 11 29 10 28 29 11 27 11 12 27 28 11 26 12 13 26 27 12 25 13 14 25 26 13 24 25 14 15 24 14 23 24 15 16 23 15 22 23 16 17 22 16 21 22 17 18 21 17 20 21 18 2 20 18 +38 36 1 0.111515166690664 +-31.9998437496184 -0.10000000002372 90 31.9998437496184 -0.100000000043359 90 -31.4388064143385 -5.96669516916608 90 -29.8114017582991 -11.6310070589474 90 -27.1728294325296 -16.9008088750406 90 -23.6125867056153 -21.5973551406139 90 -19.2514328216545 -25.5613445325813 90 -14.237292988792 -28.6583231950387 90 -8.74024093021585 -30.7832452558495 90 -2.94673018358676 -31.8640358590236 90 2.94673018356733 -31.8640358590253 90 8.74024093019708 -30.7832452558548 90 14.2372929887745 -28.6583231950474 90 19.251432821639 -25.561344532593 90 23.6125867056021 -21.5973551406283 90 27.1728294325193 -16.9008088750572 90 29.811401758292 -11.6310070589656 90 31.4388064143348 -5.9666951691853 90 -31.9998437496185 -0.100000000000002 64 31.9998437496185 -0.100000000000016 64 -31.5441749828996 -5.38191696248068 64 -30.2226860550263 -10.5161416631217 64 -28.0717025149516 -15.3616254881774 64 -25.1499948835848 -19.7857959484707 64 -21.5380751759349 -23.6666696083374 64 -17.3343103360809 -26.8983590648722 64 -12.6549929005087 -29.3913444605448 64 -7.6280908713004 -31.0775201256901 64 -2.39142477441882 -31.910516242595 64 2.91037685587745 -31.8673760045967 64 8.13276940935503 -30.9492824765751 64 13.1314007189226 -29.1816089695803 64 17.7697381967332 -26.6127114415833 64 21.9202267961164 -23.3131647224796 64 25.4687103443035 -19.3738165524734 64 28.3181415641972 -14.9024449257815 64 30.3899979486989 -10.0223764329107 64 31.5869774232198 -5.12472856191904 64 3.14471765867682 90 6.28006030209195 90 3.32914957887771 90 3.5135814990786 90 3.69801341927949 90 3.88244533948038 90 4.06687725968127 90 4.25130917988216 90 4.43574110008305 90 4.62017302028394 90 4.80460494048483 90 4.98903686068572 90 5.17346878088661 90 5.3579007010875 90 5.54233262128839 90 5.72676454148928 90 5.91119646169017 90 6.09562838189106 90 3.14471765867608 64 6.2800603020933 64 3.3105806589727 64 3.47644474933972 64 3.64230518424455 64 3.80817842463135 64 3.97404368414102 64 4.13993424343399 64 4.30581099521664 64 4.47169378399456 64 4.6375873215381 64 4.80346388089713 64 4.96935691517716 64 5.13523355396634 64 5.30111791702201 64 5.46700242887156 64 5.63287686711126 64 5.79875844386871 64 5.96462520569274 64 6.12234511231277 64 1 19 21 3 21 22 3 1 21 4 22 23 4 3 22 5 23 24 5 4 23 6 24 25 6 5 24 7 25 26 7 6 25 8 26 27 8 7 26 9 27 28 9 8 27 10 28 29 10 9 28 11 29 30 11 30 31 11 10 29 12 31 32 12 11 31 13 32 33 13 12 32 14 33 34 14 13 33 15 34 35 15 14 34 16 15 35 16 35 36 17 16 36 17 36 37 18 17 37 18 37 38 2 18 38 2 38 20 +115 113 1 4.30796602094811e-011 +7 -4.25489921074274e-011 22.0001724143058 7 -2.37199981878433e-011 19.0001562503816 106.5 -4.25489921074274e-011 22.0001724143058 33 -1.99840144432528e-015 19.0001562503815 106.5 4.15635026396188e-011 25.0001923084033 36 -4.40389946732012e-011 16.0001428574345 33.0404171278481 3.46944695195361e-016 18.5093694497008 33.1643393467276 2.4980018054066e-015 18.0208516429011 33.3765169424664 -1.06303854607859e-014 17.5450423501214 33.6473167870708 -6.10622663543836e-016 17.13872840676 33.9587434841324 -1.63757896132211e-015 16.8016758449123 34.3356268138173 3.95516952522712e-015 16.5041758350454 34.7766507410019 -2.0002055567403e-013 16.2609074290214 35.2222194420635 -4.71528371903673e-012 16.1027207415432 35.6051053449867 8.24780521657686e-012 16.0262468233768 110.5 -4.15459888714054e-011 25.0001923084037 39 -8.99280649946377e-015 19.0001562504382 38.9595828721512 4.3159920082303e-015 18.5093694496986 38.8356606532704 2.76167977375508e-015 18.0208516428964 38.6234830575297 -1.24622534514174e-014 17.5450423501147 38.3526832129257 6.78623823802127e-015 17.1387284067556 38.0412565158631 -2.90045765183322e-015 16.801675844908 37.6643731861788 6.00908212078366e-015 16.5041758350426 37.2233492589946 -2.00520156035111e-013 16.2609074290197 36.7777805579343 -4.71529759682454e-012 16.1027207415425 36.3948946550122 8.24788848330371e-012 16.0262468233766 110.5 -4.33589969484061e-011 19.0001562503816 43 -1.99840144432528e-015 19.0001562503815 106 -4.33309915726099e-011 19.0001562503816 46 -4.40389946732012e-011 16.0001428574345 43.0404171278481 3.46944695195361e-016 18.5093694497005 43.1643393467278 2.4980018054066e-015 18.0208516429005 43.3765169424669 -1.06303854607859e-014 17.5450423501205 43.6473167870715 -6.10622663543836e-016 17.138728406759 43.9587434841335 -1.63757896132211e-015 16.8016758449113 44.3356268138187 3.95516952522712e-015 16.5041758350444 44.7766507410031 -2.0002055567403e-013 16.2609074290208 45.2222194420644 -4.71528371903673e-012 16.1027207415429 45.6051053449872 8.24780521657686e-012 16.0262468233767 106 -9.99200722162641e-016 13 49 -8.99280649946377e-015 19.0001562504382 48.9595828721512 4.3159920082303e-015 18.5093694496986 48.8356606532704 2.76167977375508e-015 18.0208516428965 48.6234830575297 -1.24622534514174e-014 17.5450423501148 48.3526832129257 6.78623823802127e-015 17.1387284067556 48.0412565158631 -2.90045765183322e-015 16.8016758449079 47.6643731861787 6.00908212078366e-015 16.5041758350425 47.2233492589945 -2.00520156035111e-013 16.2609074290196 46.7777805579342 -4.71529759682454e-012 16.1027207415425 46.3948946550122 8.24788848330371e-012 16.0262468233766 96 -9.99200722162641e-016 13 53 1.22124532708767e-014 19.0001562503815 96 -2.37059954999452e-011 19.0001562503816 56 -4.40389946732012e-011 16.0001428574345 53.0404171278481 3.46944695195361e-016 18.5093694497008 53.1643393467276 2.4980018054066e-015 18.020851642901 53.3765169424665 -1.06303854607859e-014 17.5450423501213 53.6473167870709 -6.10622663543836e-016 17.1387284067598 53.9587434841326 -1.63757896132211e-015 16.8016758449121 54.3356268138176 3.95516952522712e-015 16.5041758350451 54.7766507410021 -2.0002055567403e-013 16.2609074290212 55.2222194420634 -4.71528371903673e-012 16.1027207415431 55.6051053449866 8.24780521657686e-012 16.0262468233768 79 -1.99840144432528e-015 19.0001562503815 59 -8.99280649946377e-015 19.0001562504382 58.9595828721512 4.3159920082303e-015 18.5093694496987 58.8356606532704 2.76167977375508e-015 18.0208516428965 58.6234830575298 -1.24622534514174e-014 17.5450423501149 58.3526832129258 6.78623823802127e-015 17.1387284067558 58.0412565158633 -2.90045765183322e-015 16.8016758449082 57.6643731861791 6.00908212078366e-015 16.5041758350427 57.2233492589947 -2.00520156035111e-013 16.2609074290198 56.7777805579341 -4.71529759682454e-012 16.1027207415425 56.3948946550121 8.24788848330371e-012 16.0262468233766 76 -4.40389946732012e-011 16.0001428574345 78.9595828721513 4.3159920082303e-015 18.5093694496988 78.8356606532708 2.76167977375508e-015 18.0208516428969 78.6234830575301 -1.24622534514174e-014 17.5450423501153 78.352683212926 6.78623823802127e-015 17.1387284067562 78.0412565158636 -2.90045765183322e-015 16.8016758449085 77.6643731861794 6.00908212078366e-015 16.504175835043 77.2233492589951 -2.00520156035111e-013 16.2609074290199 76.7777805579346 -4.71529759682454e-012 16.1027207415426 76.3948946550124 8.24788848330371e-012 16.0262468233766 63 1.22124532708767e-014 19.0001562503815 73 1.22124532708767e-014 19.0001562503815 73.0404171278483 3.46944695195361e-016 18.5093694497006 73.1643393467279 2.4980018054066e-015 18.0208516429008 73.3765169424668 -1.06303854607859e-014 17.5450423501208 73.6473167870714 -6.10622663543836e-016 17.1387284067593 73.9587434841332 -1.63757896132211e-015 16.8016758449116 74.335626813818 3.95516952522712e-015 16.5041758350447 74.7766507410026 -2.0002055567403e-013 16.260907429021 75.2222194420639 -4.71528371903673e-012 16.102720741543 75.6051053449868 8.24780521657686e-012 16.0262468233767 66 -4.40389946732012e-011 16.0001428574345 63.0404171278481 3.46944695195361e-016 18.5093694497008 63.1643393467276 2.4980018054066e-015 18.0208516429011 63.3765169424664 -1.06303854607859e-014 17.5450423501214 63.6473167870708 -6.10622663543836e-016 17.1387284067599 63.9587434841325 -1.63757896132211e-015 16.8016758449122 64.3356268138175 3.95516952522712e-015 16.5041758350452 64.776650741002 -2.0002055567403e-013 16.2609074290213 65.2222194420633 -4.71528371903673e-012 16.1027207415431 65.6051053449866 8.24780521657686e-012 16.0262468233768 69 -8.99280649946377e-015 19.0001562504382 68.9595828721513 4.3159920082303e-015 18.5093694496986 68.8356606532707 2.76167977375508e-015 18.0208516428964 68.6234830575298 -1.24622534514174e-014 17.5450423501147 68.3526832129256 6.78623823802127e-015 17.1387284067556 68.041256515863 -2.90045765183322e-015 16.8016758449079 67.6643731861786 6.00908212078366e-015 16.5041758350425 67.2233492589944 -2.00520156035111e-013 16.2609074290196 66.7777805579342 -4.71529759682454e-012 16.1027207415425 66.3948946550121 8.24788848330371e-012 16.0262468233766 22.0001724143058 7 19.0001562503816 7 22.0001724143056 106.5 19.0001562503815 33 25.0001923084033 106.5 16.0001428574345 36 18.5093694497008 33.0404171278483 18.0208516429011 33.1643393467277 17.5450423501214 33.3765169424665 17.13872840676 33.6473167870709 16.8016758449123 33.9587434841324 16.5041758350454 34.335626813817 16.2609074290214 34.7766507410017 16.1027207415431 35.2222194420633 16.0262468233768 35.6051053449865 25.0001923084035 110.5 19.0001562504382 39 18.5093694496986 38.9595828721513 18.0208516428964 38.8356606532707 17.5450423501147 38.6234830575298 17.1387284067556 38.3526832129256 16.801675844908 38.041256515863 16.5041758350426 37.6643731861787 16.2609074290197 37.2233492589945 16.1027207415425 36.7777805579342 16.0262468233766 36.3948946550121 19.0001562503816 110.5 19.0001562503815 43 19.0001562503815 106 16.0001428574345 46 18.5093694497005 43.0404171278483 18.0208516429005 43.164339346728 17.5450423501205 43.376516942467 17.138728406759 43.6473167870716 16.8016758449113 43.9587434841335 16.5041758350444 44.3356268138184 16.2609074290208 44.776650741003 16.1027207415429 45.2222194420641 16.0262468233767 45.605105344987 13 106 19.0001562504382 49 18.5093694496986 48.9595828721513 18.0208516428965 48.8356606532707 17.5450423501148 48.6234830575299 17.1387284067556 48.3526832129256 16.8016758449079 48.0412565158629 16.5041758350425 47.6643731861785 16.2609074290196 47.2233492589943 16.1027207415425 46.7777805579341 16.0262468233766 46.3948946550121 13 96 19.0001562503815 53 19.0001562503814 96 16.0001428574345 56 18.5093694497008 53.0404171278483 18.020851642901 53.1643393467278 17.5450423501213 53.3765169424665 17.1387284067598 53.647316787071 16.8016758449121 53.9587434841327 16.5041758350451 54.3356268138172 16.2609074290212 54.776650741002 16.1027207415431 55.2222194420634 16.0262468233768 55.6051053449866 19.0001562503815 79 19.0001562504382 59 18.5093694496987 58.9595828721513 18.0208516428965 58.8356606532707 17.5450423501149 58.6234830575299 17.1387284067558 58.3526832129258 16.8016758449082 58.0412565158632 16.5041758350427 57.6643731861789 16.2609074290198 57.2233492589947 16.1027207415425 56.7777805579344 16.0262468233766 56.3948946550122 16.0001428574345 76 18.5093694496988 78.9595828721513 18.0208516428969 78.8356606532708 17.5450423501153 78.6234830575301 17.1387284067562 78.352683212926 16.8016758449085 78.0412565158636 16.504175835043 77.6643731861794 16.2609074290199 77.2233492589951 16.1027207415426 76.7777805579346 16.0262468233766 76.3948946550124 19.0001562503815 63 19.0001562504399 73 18.5093694497006 73.0404171278483 18.0208516429008 73.1643393467279 17.5450423501208 73.3765169424668 17.1387284067593 73.6473167870714 16.8016758449116 73.9587434841332 16.5041758350447 74.335626813818 16.260907429021 74.7766507410026 16.102720741543 75.2222194420639 16.0262468233767 75.6051053449868 16.0001428574345 66 18.5093694497008 63.0404171278483 18.0208516429011 63.1643393467278 17.5450423501214 63.3765169424665 17.1387284067599 63.647316787071 16.8016758449122 63.9587434841326 16.5041758350452 64.3356268138171 16.2609074290213 64.7766507410019 16.1027207415431 65.2222194420634 16.0262468233768 65.6051053449866 19.0001562503815 69 18.5093694496986 68.9595828721513 18.0208516428964 68.8356606532707 17.5450423501147 68.6234830575298 17.1387284067556 68.3526832129256 16.8016758449079 68.041256515863 16.5041758350425 67.6643731861786 16.2609074290196 67.2233492589944 16.1027207415425 66.7777805579342 16.0262468233766 66.3948946550121 64 3 53 6 15 14 4 2 1 25 14 13 25 26 6 25 6 14 24 25 13 23 12 11 23 13 12 23 24 13 22 23 11 21 10 9 21 11 10 21 22 11 20 9 8 20 21 9 19 20 8 18 7 4 18 8 7 18 19 8 17 18 4 30 39 38 49 38 37 49 50 30 49 30 38 48 49 37 47 36 35 47 37 36 47 48 37 46 47 35 45 34 33 45 35 34 45 46 35 44 33 32 44 45 33 43 44 32 42 43 32 42 31 28 42 32 31 41 42 28 54 63 62 73 54 62 73 74 54 72 73 62 72 62 61 71 72 61 71 60 59 71 61 60 70 71 59 69 70 59 69 58 57 69 59 58 68 69 57 68 57 56 67 68 56 66 67 56 66 55 52 66 56 55 65 66 52 96 105 104 114 104 103 114 115 96 114 96 104 113 114 103 112 103 102 112 113 103 112 102 101 111 112 101 110 111 101 110 100 99 110 101 100 109 110 99 109 99 98 108 109 98 107 108 98 107 97 85 107 98 97 106 107 85 75 95 94 83 75 94 83 84 75 83 94 93 82 83 93 81 82 93 81 92 91 81 93 92 80 81 91 79 80 91 79 90 89 79 91 90 78 79 89 78 89 88 77 78 88 76 77 88 76 87 86 76 88 87 64 76 86 40 51 53 29 40 53 3 29 53 27 29 3 16 3 5 16 27 3 1 3 86 1 86 106 1 106 85 1 85 65 1 65 52 1 52 41 1 41 28 1 28 17 1 17 4 86 3 64 +115 113 1 3.35185184361503e-011 +7 -4.33589969484061e-011 82.9998437496184 7 -2.35149955063463e-011 79.9998275856943 33 -1.60010893424101e-014 82.9998437496185 106.5 -2.35019920191704e-011 79.9998275856943 36 -2.39109981814423e-011 85.9998571425655 33.0404171276561 -7.35522753814166e-016 83.490630549141 33.1643393459129 2.31759056390501e-015 83.979148354739 33.3765169405416 1.27675647831893e-015 84.4549576464075 33.6473167836762 -2.27595720048157e-015 84.8612715889493 33.9587434789896 3.98292510084275e-015 85.1983241503126 34.3356268065152 -3.3584246494911e-015 85.4958241600855 34.7766507345638 -1.10730868918552e-013 85.7390925681321 35.2222194371941 -2.55752363731432e-012 85.8972792570996 35.6051053425822 4.48013848242113e-012 85.9737531763377 106.5 2.32050073600831e-011 76.9998076915966 39 -1.99840144432528e-015 82.9998437496185 38.9595828723437 -4.44089209850063e-016 83.4906305491414 38.835660654087 1.09634523681734e-015 83.9791483547402 38.6234830594585 2.90045765183322e-015 84.4549576464086 38.3526832163227 -3.44169137633799e-015 84.8612715889508 38.0412565210087 3.05311331771918e-015 85.1983241503141 37.6643731934834 -1.80411241501588e-015 85.4958241600866 37.223349265435 -1.09939835013506e-013 85.7390925681327 36.7777805628049 -2.5574958817387e-012 85.8972792571 36.3948946574175 4.48106829420425e-012 85.9737531763378 110.5 -2.32339980588137e-011 76.9998076915964 43 -1.60010893424101e-014 82.9998437496185 110.5 -2.37199981878433e-011 82.9998437496184 46 -2.39109981814423e-011 85.9998571425655 43.0404171276563 -7.35522753814166e-016 83.490630549141 43.1643393459132 2.31759056390501e-015 83.9791483547391 43.3765169405417 1.27675647831893e-015 84.4549576464076 43.6473167836764 -2.27595720048157e-015 84.8612715889495 43.9587434789898 3.98292510084275e-015 85.1983241503128 44.3356268065154 -3.3584246494911e-015 85.4958241600857 44.7766507345641 -1.10730868918552e-013 85.7390925681322 45.2222194371943 -2.55752363731432e-012 85.8972792570997 45.6051053425823 4.48013848242113e-012 85.9737531763377 106 -2.37059954999452e-011 82.9998437496184 49 -1.99840144432528e-015 82.9998437496185 48.9595828723437 -4.44089209850063e-016 83.4906305491415 48.8356606540869 1.09634523681734e-015 83.9791483547404 48.6234830594583 2.90045765183322e-015 84.4549576464089 48.3526832163228 -3.44169137633799e-015 84.861271588951 48.0412565210087 3.05311331771918e-015 85.1983241503142 47.6643731934833 -1.80411241501588e-015 85.4958241600867 47.2233492654346 -1.09939835013506e-013 85.7390925681328 46.7777805628046 -2.5574958817387e-012 85.8972792571 46.3948946574175 4.48106829420425e-012 85.9737531763378 106 -9.99200722162641e-016 93 53 1.22124532708767e-014 82.9998437496185 96 -9.99200722162641e-016 93 56 -2.39109981814423e-011 85.9998571425655 53.0404171276562 -7.35522753814166e-016 83.4906305491409 53.1643393459131 2.31759056390501e-015 83.9791483547389 53.3765169405415 1.27675647831893e-015 84.4549576464073 53.647316783676 -2.27595720048157e-015 84.8612715889491 53.9587434789893 3.98292510084275e-015 85.1983241503123 54.3356268065149 -3.3584246494911e-015 85.4958241600853 54.7766507345635 -1.10730868918552e-013 85.7390925681319 55.2222194371939 -2.55752363731432e-012 85.8972792570996 55.6051053425822 4.48013848242113e-012 85.9737531763377 96 -4.33309915726099e-011 82.9998437496184 59 -1.99840144432528e-015 82.9998437496185 58.9595828723437 -4.44089209850063e-016 83.4906305491413 58.8356606540871 1.09634523681734e-015 83.9791483547399 58.6234830594586 2.90045765183322e-015 84.4549576464083 58.352683216323 -3.44169137633799e-015 84.8612715889505 58.0412565210092 3.05311331771918e-015 85.1983241503137 57.664373193484 -1.80411241501588e-015 85.4958241600862 57.2233492654352 -1.09939835013506e-013 85.7390925681325 56.7777805628051 -2.5574958817387e-012 85.8972792570999 56.3948946574177 4.48106829420425e-012 85.9737531763378 79 -1.60010893424101e-014 82.9998437496185 63 1.22124532708767e-014 82.9998437496185 76 -2.39109981814423e-011 85.9998571425655 78.9595828723437 -4.44089209850063e-016 83.4906305491413 78.835660654087 1.09634523681734e-015 83.9791483547399 78.6234830594583 2.90045765183322e-015 84.4549576464082 78.352683216323 -3.44169137633799e-015 84.8612715889504 78.0412565210092 3.05311331771918e-015 85.1983241503136 77.664373193484 -1.80411241501588e-015 85.4958241600862 77.2233492654354 -1.09939835013506e-013 85.7390925681325 76.7777805628051 -2.5574958817387e-012 85.8972792570999 76.3948946574177 4.48106829420425e-012 85.9737531763378 66 -2.39109981814423e-011 85.9998571425655 63.0404171276561 -6.93889390390723e-016 83.4906305491409 63.1643393459129 2.37310171513627e-015 83.979148354739 63.3765169405416 1.37390099297363e-015 84.4549576464074 63.6473167836762 -2.23432383705813e-015 84.8612715889492 63.9587434789895 4.01068067645838e-015 85.1983241503125 64.3356268065151 -3.3584246494911e-015 85.4958241600855 64.7766507345637 -1.10730868918552e-013 85.739092568132 65.222219437194 -2.55752363731432e-012 85.8972792570996 65.605105342582 4.48013848242113e-012 85.9737531763377 73 -1.60010893424101e-014 82.9998437496185 73.0404171276562 -6.93889390390723e-016 83.490630549141 73.1643393459128 2.37310171513627e-015 83.9791483547391 73.3765169405413 1.37390099297363e-015 84.4549576464076 73.6473167836762 -2.23432383705813e-015 84.8612715889495 73.9587434789898 4.01068067645838e-015 85.1983241503127 74.3356268065152 -3.3584246494911e-015 85.4958241600857 74.7766507345638 -1.10730868918552e-013 85.7390925681322 75.2222194371942 -2.55752363731432e-012 85.8972792570997 75.6051053425821 4.48013848242113e-012 85.9737531763377 69 -1.99840144432528e-015 82.9998437496185 68.9595828723437 -4.44089209850063e-016 83.4906305491414 68.8356606540869 1.09634523681734e-015 83.9791483547401 68.6234830594582 2.90045765183322e-015 84.4549576464085 68.3526832163228 -3.44169137633799e-015 84.8612715889507 68.041256521009 3.05311331771918e-015 85.1983241503139 67.6643731934837 -1.80411241501588e-015 85.4958241600864 67.2233492654351 -1.09939835013506e-013 85.7390925681326 66.7777805628049 -2.5574958817387e-012 85.8972792570999 66.3948946574176 4.48106829420425e-012 85.9737531763378 82.9998437496184 7 79.9998275856943 7 82.9998437496185 33 79.9998275856944 106.5 85.9998571425655 36 83.490630549141 33.0404171276562 83.979148354739 33.1643393459128 84.4549576464075 33.3765169405412 84.8612715889493 33.647316783676 85.1983241503126 33.9587434789897 85.4958241600855 34.3356268065149 85.7390925681321 34.7766507345636 85.8972792570996 35.222219437194 85.9737531763377 35.605105342582 76.9998076915966 106.5 82.9998437496185 39 83.4906305491414 38.9595828723437 83.9791483547402 38.8356606540868 84.4549576464086 38.6234830594581 84.8612715889508 38.3526832163227 85.1983241503141 38.0412565210088 85.4958241600866 37.6643731934834 85.7390925681327 37.2233492654349 85.8972792571 36.7777805628048 85.9737531763378 36.3948946574175 76.9998076915965 110.5 82.9998437496185 43 82.9998437496184 110.5 85.9998571425655 46 83.490630549141 43.0404171276563 83.9791483547391 43.1643393459128 84.4549576464076 43.3765169405413 84.8612715889495 43.6473167836762 85.1983241503128 43.9587434789898 85.4958241600857 44.3356268065152 85.7390925681322 44.7766507345638 85.8972792570997 45.2222194371942 85.9737531763377 45.6051053425821 82.9998437496185 106 82.9998437496185 49 83.4906305491415 48.9595828723437 83.9791483547404 48.8356606540868 84.4549576464089 48.623483059458 84.861271588951 48.3526832163226 85.1983241503142 48.0412565210086 85.4958241600867 47.6643731934833 85.7390925681328 47.2233492654348 85.8972792571 46.7777805628047 85.9737531763378 46.3948946574175 93 106 82.9998437496185 53 93 96 85.9998571425655 56 83.4906305491409 53.0404171276562 83.9791483547389 53.1643393459127 84.4549576464073 53.3765169405411 84.8612715889491 53.6473167836759 85.1983241503123 53.9587434789894 85.4958241600853 54.3356268065146 85.7390925681319 54.7766507345633 85.8972792570996 55.2222194371938 85.9737531763377 55.6051053425819 82.9998437496184 96 82.9998437496185 59 83.4906305491413 58.9595828723437 83.97914835474 58.8356606540869 84.4549576464083 58.6234830594583 84.8612715889505 58.352683216323 85.1983241503137 58.0412565210092 85.4958241600862 57.664373193484 85.7390925681325 57.2233492654354 85.8972792570999 56.7777805628051 85.9737531763378 56.3948946574177 82.9998437496185 79 82.9998437496185 63 85.9998571425655 76 83.4906305491412 78.9595828723437 83.9791483547399 78.835660654087 84.4549576464082 78.6234830594583 84.8612715889504 78.352683216323 85.1983241503136 78.0412565210092 85.4958241600862 77.664373193484 85.7390925681325 77.2233492654354 85.8972792570999 76.7777805628051 85.9737531763378 76.3948946574177 85.9998571425655 66 83.4906305491409 63.0404171276562 83.979148354739 63.1643393459128 84.4549576464074 63.3765169405412 84.8612715889492 63.647316783676 85.1983241503125 63.9587434789896 85.4958241600855 64.3356268065149 85.7390925681321 64.7766507345636 85.8972792570996 65.222219437194 85.9737531763377 65.605105342582 82.9998437496185 73 83.490630549141 73.0404171276562 83.9791483547391 73.1643393459128 84.4549576464076 73.3765169405413 84.8612715889495 73.6473167836762 85.1983241503127 73.9587434789898 85.4958241600856 74.3356268065152 85.7390925681322 74.7766507345638 85.8972792570997 75.2222194371942 85.9737531763377 75.6051053425821 82.9998437496185 69 83.4906305491414 68.9595828723437 83.9791483547401 68.8356606540869 84.4549576464085 68.6234830594582 84.8612715889507 68.3526832163228 85.1983241503139 68.041256521009 85.4958241600864 67.6643731934837 85.7390925681326 67.2233492654351 85.8972792570999 66.7777805628049 85.9737531763378 66.3948946574176 80 99 100 80 100 101 81 101 82 81 80 101 3 2 1 26 15 4 39 4 63 52 39 63 28 26 4 28 4 39 50 39 52 4 2 63 63 2 74 74 2 96 96 2 106 106 2 75 75 2 64 64 2 51 51 2 40 40 2 27 27 2 16 16 2 3 5 13 14 17 3 6 17 6 7 17 16 3 24 5 25 24 13 5 18 7 8 18 17 7 23 12 13 23 13 24 19 18 8 22 10 11 22 11 12 22 12 23 20 8 9 20 9 10 20 19 8 21 10 22 21 20 10 40 27 30 29 37 38 41 30 31 41 40 30 48 29 49 48 37 29 42 41 31 47 36 37 47 37 48 43 31 32 43 32 33 43 42 31 46 34 35 46 35 36 46 36 47 44 43 33 45 33 34 45 34 46 45 44 33 53 61 62 65 64 51 65 51 54 65 54 55 72 61 53 72 53 73 66 65 55 71 61 72 71 60 61 67 66 55 67 55 56 67 56 57 70 60 71 70 58 59 70 59 60 68 67 57 68 57 58 69 58 70 69 68 58 106 75 87 86 94 95 107 106 87 107 87 88 114 86 115 114 94 86 108 107 88 113 94 114 113 92 93 113 93 94 109 108 88 109 88 89 112 92 113 112 91 92 110 109 89 110 89 90 110 90 91 111 91 112 111 110 91 76 104 105 77 74 96 77 96 97 77 97 98 84 104 76 84 76 85 78 77 98 83 102 103 83 103 104 83 104 84 79 78 98 79 98 99 82 102 83 82 101 102 80 79 99 +36 34 1 0.123166725361204 +-28.9998275856943 -0.100000000023515 0.5 28.9998275856942 -0.100000000042549 0.5 -28.4898747439106 -5.41544431014534 0.5 -27.0139762520437 -10.5472786563179 0.5 -24.622172264394 -15.3215088350498 0.5 -21.3955565968693 -19.5762651675482 0.5 -17.4435272512704 -23.167290670991 0.5 -12.9000772896833 -25.9728320735379 0.5 -7.91925181641997 -27.8977678438281 0.5 -2.66992509796888 -28.8768332746379 0.5 2.66992509794966 -28.8768332746397 0.5 7.91925181640139 -27.8977678438334 0.5 12.9000772896659 -25.9728320735465 0.5 17.443527251255 -23.1672906710026 0.5 21.3955565968562 -19.5762651675625 0.5 24.6221722643837 -15.3215088350662 0.5 27.0139762520366 -10.547278656336 0.5 28.489874743907 -5.41544431016447 0.5 -28.9998275856943 -0.100000000023502 100 28.9998275856942 -0.100000000042549 100 -28.4898747439106 -5.41544431014544 100 -27.0139762520437 -10.547278656318 100 -24.6221722643939 -15.3215088350498 100 -21.3955565968693 -19.5762651675483 100 -17.4435272512704 -23.167290670991 100 -12.9000772896832 -25.9728320735379 100 -7.91925181641989 -27.8977678438281 100 -2.6699250979688 -28.8768332746379 100 2.66992509794974 -28.8768332746397 100 7.91925181640147 -27.8977678438334 100 12.900077289666 -25.9728320735464 100 17.4435272512551 -23.1672906710026 100 21.3955565968563 -19.5762651675624 100 24.6221722643838 -15.3215088350661 100 27.0139762520367 -10.5472786563358 100 28.489874743907 -5.41544431016424 100 3.14504093628639 0.5 6.27973702448233 0.5 3.32943482382733 0.5 3.51382871136827 0.5 3.6982225989092 0.5 3.88261648645014 0.5 4.06701037399108 0.5 4.25140426153202 0.5 4.43579814907295 0.5 4.62019203661389 0.5 4.80458592415483 0.5 4.98897981169577 0.5 5.1733736992367 0.5 5.35776758677764 0.5 5.54216147431858 0.5 5.72655536185951 0.5 5.91094924940045 0.5 6.09534313694139 0.5 3.14504093628558 100 6.2797370244838 100 3.32943482382733 100 3.51382871136827 100 3.6982225989092 100 3.88261648645014 100 4.06701037399108 100 4.25140426153202 100 4.43579814907295 100 4.62019203661389 100 4.80458592415483 100 4.98897981169577 100 5.1733736992367 100 5.35776758677764 100 5.54216147431858 100 5.72655536185952 100 5.91094924940045 100 6.09534313694139 100 21 1 3 21 3 4 21 19 1 22 21 4 23 4 5 23 22 4 24 5 6 24 6 7 24 23 5 25 24 7 26 7 8 26 25 7 27 8 9 27 26 8 28 9 10 28 27 9 29 10 11 29 28 10 30 11 12 30 29 11 31 12 13 31 13 14 31 30 12 32 14 15 32 31 14 33 15 16 33 32 15 34 16 17 34 33 16 35 17 18 35 34 17 36 35 18 36 18 2 20 36 2 +264 470 1 0.174158148889876 +31.9998437496185 -0.100000000000002 -3 -31.9998437496185 -0.100000000000016 -3 31.5441749828996 -5.38191696248068 -3 30.2226860550263 -10.5161416631217 -3 28.0717025149516 -15.3616254881774 -3 25.1499948835848 -19.7857959484707 -3 21.5380751759349 -23.6666696083374 -3 17.3343103360809 -26.8983590648722 -3 12.6549929005087 -29.3913444605448 -3 7.6280908713004 -31.0775201256901 -3 2.39142477441882 -31.910516242595 -3 -2.91037685587745 -31.8673760045967 -3 -8.13276940935503 -30.9492824765751 -3 -13.1314007189226 -29.1816089695803 -3 -17.7697381967332 -26.6127114415833 -3 -21.9202267961164 -23.3131647224796 -3 -25.4687103443035 -19.3738165524734 -3 -28.3181415641972 -14.9024449257815 -3 -30.3899979486989 -10.0223764329107 -3 -31.5869774232198 -5.12472856191904 -3 34.9998571425655 -0.100000000044039 0 32.4906305502992 -0.0999999999999997 -2.95958287215194 32.9791483570989 -0.0999999999999975 -2.83566065327238 33.4549576498786 -0.100000000000011 -2.62348305753358 33.86127159324 -0.100000000000001 -2.35268321292918 34.1983241550877 -0.100000000000002 -2.04125651586759 34.4958241649546 -0.0999999999999961 -1.66437318618267 34.7390925709786 -0.1000000000002 -1.2233492589981 34.8972792584568 -0.100000000004715 -0.777780557936524 34.9737531766232 -0.0999999999917522 -0.394894655013331 -34.9998571425655 -0.100000000023911 0 -32.490630549141 -0.100000000000001 -2.95958287234387 -32.979148354739 -0.0999999999999977 -2.83566065408712 -33.4549576464075 -0.0999999999999987 -2.62348305945838 -33.8612715889493 -0.100000000000002 -2.35268321632375 -34.1983241503126 -0.099999999999996 -2.04125652101038 -34.4958241600855 -0.100000000000003 -1.66437319348481 -34.7390925681321 -0.100000000000111 -1.22334926543616 -34.8972792570996 -0.100000000002558 -0.777780562805901 -34.9737531763377 -0.0999999999955199 -0.394894657417808 -34.387735963849 -6.51794563344987 0 -32.6088257525758 -12.714734878799 0 -29.723485612544 -18.4801083070659 0 -25.8296162381791 -23.6184445929107 0 -21.0593381065312 -27.9553980210406 0 -15.5745085789603 -31.3438141030075 0 -9.56123001896417 -33.6687225852787 0 -3.22353526781181 -34.851238433909 0 3.22353526779162 -34.8512384339108 0 9.56123001894467 -33.6687225852843 0 15.5745085789421 -31.3438141030165 0 21.059338106515 -27.9553980210528 0 25.8296162381655 -23.6184445929257 0 29.7234856125333 -18.4801083070832 0 32.6088257525685 -12.7147348788178 0 34.3877359638452 -6.51794563346978 0 -32.0714283052264 -5.20332158023085 -2.95958285941785 -32.5536387524452 -5.28155620085164 -2.83566066515846 -30.8560878120657 -10.1760952205972 -2.95958285941785 -33.0233045839988 -5.35775556227583 -2.62348305894614 -30.2710378885503 -11.803191693543 -2.95958285941785 -31.3200249888473 -10.3290980547886 -2.83566066515846 -33.4243725068239 -5.42282548551447 -2.35268322780544 -30.7261785383241 -11.9806587614573 -2.83566066515846 -28.7524598617842 -15.1309986749408 -2.95958285941785 -31.7718929257169 -10.4781205485255 -2.62348305894614 -33.7570733145772 -5.47680341491217 -2.04125650316593 -27.5925531935484 -17.1552346899065 -2.95958285941785 -31.1694787882104 -12.1535090563982 -2.62348305894614 -29.1847679085802 -15.3585010352495 -2.83566066515846 -32.1577624581717 -10.6053772872574 -2.35268322780544 -34.0507322802924 -5.52444713127528 -1.66437321392934 -28.0074214460235 -17.4131724815519 -2.83566066515846 -25.8593209579692 -19.6709579989717 -2.95958285941785 -31.5480320029964 -12.3011133829092 -2.35268322780544 -29.6058295414354 -15.5800849637004 -2.62348305894614 -32.4778556339879 -10.7109415005954 -2.04125650316593 -34.2908598285593 -5.56340582192087 -1.22334926944274 -31.8620560202993 -12.4235566795761 -2.04125650316593 -23.9778426161473 -21.9251940123649 -2.95958285941785 -26.2481291708508 -19.9667209866264 -2.83566066515846 -28.4114969775839 -17.6644000692181 -2.62348305894614 -29.9653922413916 -15.7693050430518 -2.35268322780544 -32.7603864507221 -10.8041179431616 -1.66437321392934 -34.4470041868874 -5.58873894090725 -0.777780551332057 -22.256418075736 -23.6707186929891 -2.95958285941785 -32.1392298833676 -12.5316314753687 -1.66437321392934 -24.3383618328543 -22.2548505998247 -2.83566066515846 -28.7565545125792 -17.8789341484982 -2.35268322780544 -26.6268226099315 -20.2547897548183 -2.62348305894614 -30.263662918016 -15.9262701595834 -2.04125650316593 -32.991414412586 -10.8803091490224 -1.22334926944274 -22.5910547876294 -24.0266201432864 -2.83566066515846 -32.3658774165705 -12.6200051971787 -1.22334926944274 -29.042792613611 -18.0568981725575 -2.04125650316593 -19.5495546686541 -25.9512231168759 -2.95958285941785 -26.9502052807492 -20.5007841080958 -2.35268322780544 -24.6895022087676 -22.5759312320868 -2.62348305894614 -30.5269320666308 -16.0648157017038 -1.66437321392934 -33.1416417110423 -10.9298529312133 -0.777780551332057 -18.0422753746021 -27.0208691257628 -2.95958285941785 -22.9169859873086 -24.3732628831298 -2.62348305894614 -32.513256315385 -12.6774707324106 -0.777780551332057 -29.2954411877607 -18.2139784381352 -1.66437321392934 -27.2184632731525 -20.7048456033698 -2.04125650316593 -19.8434922946926 -26.3414131260631 -2.83566066515846 -24.9893561298454 -22.8501158407793 -2.35268322780544 -30.7422095911472 -16.1781056238134 -1.22334926944274 -18.31355027993 -27.4271418137569 -2.83566066515846 -23.1953127048533 -24.669276078664 -2.35268322780544 -29.5020341740704 -18.3424243684763 -1.22334926944274 -27.4552416721169 -20.8849608488035 -1.66437321392934 -25.2380961463688 -23.0775622048338 -2.04125650316593 -14.4579428546892 -29.0967172962022 -2.95958285941785 -20.1297831877134 -26.7214524142739 -2.62348305894614 -30.8821950745732 -16.2517730656397 -0.777780551332057 -18.5777680187312 -27.8228453928576 -2.62348305894614 -23.4261951027627 -24.9148300700332 -2.04125650316593 -29.6363724851688 -18.4259470942847 -0.777780551332057 -25.4576469688556 -23.2783181467115 -1.66437321392934 -27.6488574750175 -21.0322426870616 -1.22334926944274 -14.6753254739936 -29.5342014308802 -2.83566066515846 -20.3742593366548 -27.0459843637462 -2.35268322780544 -18.8033949486784 -28.1607537563412 -2.35268322780544 -23.6299838660957 -25.1315687416933 -1.66437321392934 -27.7747572958597 -21.1280135733849 -0.777780551332057 -25.6371756292368 -23.442478066044 -1.22334926944274 -20.5770614247807 -27.3151957256787 -2.04125650316593 -8.87576751034485 -31.2549487298712 -2.95958285941785 -14.8870529246321 -29.9603044966478 -2.62348305894614 -18.9905609062937 -28.4410613528343 -2.04125650316593 -23.7966237505084 -25.3087978813303 -1.22334926944274 -25.753915202347 -23.5492240243998 -0.777780551332057 -20.7560650522323 -27.5528156179709 -1.66437321392934 -9.00921924750605 -31.7248829860383 -2.83566066515846 -15.0678561322058 -30.3241722937398 -2.35268322780544 -19.1557632750572 -28.6884753564976 -1.66437321392934 -23.9049823208234 -25.4240421774778 -0.777780551332057 -20.9024379105789 -27.7471195174505 -1.22334926944274 -15.217839139524 -30.6260142090822 -2.04125650316593 -2.99243397991114 -32.3526877999409 -2.95958285941785 -9.13919926238874 -32.1825919893815 -2.62348305894614 -19.2908507214169 -28.8907879879607 -1.22334926944274 -20.9976177273393 -27.8734667771624 -0.777780551332057 -15.3502219104025 -30.8924355179678 -1.66437321392934 -3.03742676644976 -32.8391271285628 -2.83566066515846 -9.25019480661504 -32.5734494605798 -2.35268322780544 -19.3786921322931 -29.022342973007 -0.777780551332057 2.42809877043143 -32.3999290950706 -2.95958285941785 -15.4584724796518 -31.1102905919751 -1.22334926944274 -9.3422697523274 -32.8976803177075 -2.04125650316593 -3.08124907396187 -33.3129118279513 -2.62348305894614 2.46460648635971 -32.8870787209026 -2.83566066515846 -15.5288630524789 -31.2519521422007 -0.777780551332057 -9.42353986858823 -33.1838632662854 -1.66437321392934 -3.11867083357583 -33.7174970297778 -2.35268322780544 7.74508298466854 -31.5541559634412 -2.95958285941785 2.50016446080524 -33.3615552392507 -2.62348305894614 -9.48999516552614 -33.4178776088425 -1.22334926944274 -3.14971357956112 -34.0531155517092 -2.04125650316593 7.86153429747692 -32.0285889545114 -2.83566066515846 2.5305289497517 -33.7667312151434 -2.35268322780544 -9.53320811536366 -33.5700468190054 -0.777780551332057 -3.17711351507845 -34.3493498430859 -1.66437321392934 12.8490849805419 -29.8421192975195 -2.95958285941785 7.97495615090443 -32.4906796590007 -2.62348305894614 2.55571742637765 -34.1028398062074 -2.04125650316593 -3.19951868606454 -34.591583258053 -1.22334926944274 14.4579428546723 -29.0967172962106 -2.95958285941785 13.0422775928525 -30.2908109353056 -2.83566066515846 8.07181196646732 -32.8852788539077 -2.35268322780544 2.5779500805268 -34.3995066579844 -1.66437321392934 -3.21408778099805 -34.7490969686564 -0.777780551332057 14.6753254739765 -29.5342014308887 -2.83566066515846 17.6001625736905 -27.3109016032835 -2.95958285941785 13.2304443350585 -30.7278299430592 -2.62348305894614 8.15215747963224 -33.2126136104735 -2.04125650316593 2.59612991957684 -34.6420937814383 -1.22334926944274 19.5495546686391 -25.9512231168872 -2.95958285941785 14.8870529246148 -29.9603044966564 -2.62348305894614 17.8647900852878 -27.7215350789969 -2.83566066515846 13.3911280368976 -31.1010193341101 -2.35268322780544 8.22307459118119 -33.5015362214671 -1.66437321392934 2.60795146743114 -34.7998374930771 -0.777780551332057 21.868411158995 -24.0296413286947 -2.95958285941785 19.8434922946773 -26.3414131260746 -2.83566066515846 15.0678561321883 -30.3241722937486 -2.35268322780544 18.1225333610778 -28.1214860007304 -2.62348305894614 13.5244211634535 -31.4105938594746 -2.04125650316593 8.28106414407957 -33.7377908103499 -1.22334926944274 15.2178391395062 -30.626014209091 -2.04125650316593 23.9778426161346 -21.9251940123788 -2.95958285941785 22.1972139870008 -24.3909393657306 -2.83566066515846 20.1297831876979 -26.7214524142855 -2.62348305894614 18.3426314676428 -28.4630213533896 -2.35268322780544 13.6420725810911 -31.6838403704892 -1.66437321392934 8.31877219379064 -33.8914167539344 -0.777780551332057 25.5357187456917 -20.0892542705174 -2.95958285941785 15.3502219103846 -30.8924355179767 -1.66437321392934 24.3383618328414 -22.2548505998388 -2.83566066515846 20.3742593366392 -27.045984363758 -2.35268322780544 22.5174630702034 -24.742838301106 -2.62348305894614 18.5252110599555 -28.7463376727442 -2.04125650316593 13.7382771917647 -31.9072764729854 -1.22334926944274 25.9196614325974 -20.3913065581138 -2.83566066515846 15.4584724796338 -31.1102905919841 -1.22334926944274 20.5770614247648 -27.3151957256906 -2.04125650316593 27.5925531935385 -17.1552346899225 -2.95958285941785 22.790937583267 -25.0433399888454 -2.35268322780544 24.6895022087545 -22.5759312321011 -2.62348305894614 18.6863652651446 -28.996407331047 -1.66437321392934 13.8008348087905 -32.0525671199909 -0.777780551332057 28.5022395212794 -15.5972244734821 -2.95958285941785 26.2936159214612 -20.6855010112719 -2.62348305894614 15.5288630524608 -31.2519521422097 -0.777780551332057 20.7560650522163 -27.552815617983 -1.66437321392934 23.0177948965002 -25.2926173519859 -2.04125650316593 28.0074214460134 -17.4131724815681 -2.83566066515846 24.9893561298321 -22.8501158407937 -2.35268322780544 18.8181424921424 -29.20089151493 -1.22334926944274 28.9307853763467 -15.8317367788634 -2.83566066515846 26.612951798171 -20.9367263513067 -2.35268322780544 23.2180309116121 -25.5126424644297 -1.66437321392934 20.9024379105628 -27.7471195174626 -1.22334926944274 25.2380961463555 -23.0775622048485 -2.04125650316593 30.2710378885435 -11.8031916935606 -2.95958285941785 28.4114969775736 -17.6644000692346 -2.62348305894614 18.9038314133025 -29.3338585647795 -0.777780551332057 29.3481826901957 -16.0601482899613 -2.62348305894614 26.8778528238564 -21.1451271452892 -2.04125650316593 20.9976177273231 -27.8734667771745 -0.777780551332057 25.4576469688422 -23.2783181467262 -1.66437321392934 23.3817656822038 -25.6925589559274 -1.22334926944274 30.7261785383172 -11.9806587614751 -2.83566066515846 28.7565545125688 -17.8789341485149 -2.35268322780544 29.7046162700124 -16.2551987367915 -2.35268322780544 27.111668190116 -21.3290724805242 -1.66437321392934 23.4882351850765 -25.8095507185147 -0.777780551332057 25.6371756292232 -23.4424780660589 -1.22334926944274 29.0427926136006 -18.0568981725744 -2.04125650316593 31.9224146910839 -6.05066188900375 -2.95958285941785 31.1694787882033 -12.1535090564163 -2.62348305894614 30.0002912247184 -16.4170003607058 -2.04125650316593 27.3028610948186 -21.4794862172802 -1.22334926944274 25.7539152023334 -23.5492240244147 -0.777780551332057 29.2954411877502 -18.2139784381522 -1.66437321392934 32.4023846418448 -6.14163670770213 -2.83566066515846 31.5480320029893 -12.3011133829274 -2.35268322780544 30.2612692547185 -16.559814854757 -1.66437321392934 27.4271854117789 -21.5772936391232 -0.777780551332057 29.5020341740597 -18.3424243684933 -1.22334926944274 31.8620560202921 -12.4235566795945 -2.04125650316593 32.8698682630418 -6.23024483330549 -2.62348305894614 30.4746733111648 -16.6765955368315 -1.22334926944274 29.6363724851581 -18.4259470943018 -0.777780551332057 32.1392298833604 -12.5316314753873 -1.66437321392934 33.2690727022663 -6.30591113579894 -2.35268322780544 30.6134405608989 -16.7525328659686 -0.777780551332057 32.3658774165632 -12.6200051971974 -1.22334926944274 33.6002276808373 -6.36867915719028 -2.04125650316593 32.5132563153776 -12.6774707324294 -0.777780551332057 33.8925222176474 -6.42408146404444 -1.66437321392934 34.1315340602625 -6.4693844231447 -1.22334926944274 34.2869529243924 -6.49884294021251 -0.777780551332057 6.2800603020933 4.71238898036521 3.14471765867608 4.7123889803847 6.11419730179668 4.71238898038674 5.94833321142966 4.71238898038437 5.78247277652483 4.71238898038384 5.61659953613803 4.7123889803867 5.45073427662836 4.71238898038469 5.28484371733539 4.71238898038469 5.11896696555273 4.71238898038469 4.95308417677482 4.71238898038469 4.78719063923128 4.71238898038469 4.62131407987225 4.71238898038469 4.45542104559222 4.71238898038469 4.28954440680304 4.71238898038469 4.12366004374737 4.71238898038469 3.95777553189782 4.71238898038469 3.79190109365812 4.71238898038469 3.62601951690066 4.71238898038469 3.46015275507664 4.71238898038469 3.30243284845661 4.71238898038469 6.2803281604339 6.28318530717959 6.28010750651712 4.87672242341737 6.28015309748005 5.04491673286958 6.28019622247578 5.21879296818771 6.28023208940129 5.38173478954754 6.280261195619 5.53485129120612 6.28028641369702 5.69507348432179 6.28030671374534 5.86316051798719 6.28031976211624 6.02092919273928 6.28032602790913 6.15117063072153 3.1444498003349 6.28318530717959 3.14467045425237 4.87672242302602 3.14462486328954 5.04491673203738 3.14458173829391 5.21879296686461 3.14454587136846 5.38173478772378 3.14451676515079 5.53485128886684 3.14449154707276 5.6950734813963 3.14447124702427 5.86316051564068 3.14445819865319 6.02092919105505 3.14445193286038 6.15117062991459 3.3289132332819 6.28318530717959 3.5133766662289 6.28318530717959 3.6978400991759 6.28318530717959 3.8823035321229 6.28318530717959 4.0667669650699 6.28318530717959 4.2512303980169 6.28318530717959 4.4356938309639 6.28318530717959 4.6201572639109 6.28318530717959 4.8046206968579 6.28318530717959 4.9890841298049 6.28318530717959 5.1735475627519 6.28318530717959 5.3580109956989 6.28318530717959 5.5424744286459 6.28318530717959 5.7269378615929 6.28318530717959 5.9114012945399 6.28318530717959 6.0958647274869 6.28318530717959 3.30243284845661 4.87672242302602 3.30243284845661 5.04491673203738 3.46015275507664 4.87672242302602 3.30243284845661 5.21879296686461 3.5133766662289 4.87672242302602 3.46015275507664 5.04491673203738 3.30243284845661 5.38173478772378 3.5133766662289 5.04491673203738 3.62601951690066 4.87672242302602 3.46015275507664 5.21879296686461 3.30243284845661 5.53485128886684 3.6978400991759 4.87672242302602 3.5133766662289 5.21879296686461 3.62601951690066 5.04491673203738 3.46015275507664 5.38173478772378 3.30243284845661 5.6950734813963 3.6978400991759 5.04491673203738 3.79190109365812 4.87672242302602 3.5133766662289 5.38173478772378 3.62601951690066 5.21879296686461 3.46015275507664 5.53485128886684 3.30243284845661 5.86316051564068 3.5133766662289 5.53485128886684 3.8823035321229 4.87672242302602 3.79190109365812 5.04491673203738 3.6978400991759 5.21879296686461 3.62601951690066 5.38173478772378 3.46015275507664 5.6950734813963 3.30243284845661 6.02092919105505 3.95777553189782 4.87672242302602 3.5133766662289 5.6950734813963 3.8823035321229 5.04491673203738 3.6978400991759 5.38173478772378 3.79190109365812 5.21879296686461 3.62601951690066 5.53485128886684 3.46015275507664 5.86316051564068 3.95777553189782 5.04491673203738 3.5133766662289 5.86316051564068 3.6978400991759 5.53485128886684 4.0667669650699 4.87672242302602 3.79190109365812 5.38173478772378 3.8823035321229 5.21879296686461 3.62601951690066 5.6950734813963 3.46015275507664 6.02092919105505 4.12366004374737 4.87672242302602 3.95777553189782 5.21879296686461 3.5133766662289 6.02092919105505 3.6978400991759 5.6950734813963 3.79190109365812 5.53485128886684 4.0667669650699 5.04491673203738 3.8823035321229 5.38173478772378 3.62601951690066 5.86316051564068 4.12366004374737 5.04491673203738 3.95777553189782 5.38173478772378 3.6978400991759 5.86316051564068 3.79190109365812 5.6950734813963 3.8823035321229 5.53485128886684 4.2512303980169 4.87672242302602 4.0667669650699 5.21879296686461 3.62601951690066 6.02092919105505 4.12366004374737 5.21879296686461 3.95777553189782 5.53485128886684 3.6978400991759 6.02092919105505 3.8823035321229 5.6950734813963 3.79190109365812 5.86316051564068 4.2512303980169 5.04491673203738 4.0667669650699 5.38173478772378 4.12366004374737 5.38173478772378 3.95777553189782 5.6950734813963 3.79190109365812 6.02092919105505 3.8823035321229 5.86316051564068 4.0667669650699 5.53485128886684 4.4356938309639 4.87672242302602 4.2512303980169 5.21879296686461 4.12366004374737 5.53485128886684 3.95777553189782 5.86316051564068 3.8823035321229 6.02092919105505 4.0667669650699 5.6950734813963 4.4356938309639 5.04491673203738 4.2512303980169 5.38173478772378 4.12366004374737 5.6950734813963 3.95777553189782 6.02092919105505 4.0667669650699 5.86316051564068 4.2512303980169 5.53485128886684 4.6201572639109 4.87672242302602 4.4356938309639 5.21879296686461 4.12366004374737 5.86316051564068 4.0667669650699 6.02092919105505 4.2512303980169 5.6950734813963 4.6201572639109 5.04491673203738 4.4356938309639 5.38173478772378 4.12366004374737 6.02092919105505 4.78719063923128 4.87672242302602 4.2512303980169 5.86316051564068 4.4356938309639 5.53485128886684 4.6201572639109 5.21879296686461 4.78719063923128 5.04491673203738 4.2512303980169 6.02092919105505 4.4356938309639 5.6950734813963 4.6201572639109 5.38173478772378 4.95308417677482 4.87672242302602 4.78719063923128 5.21879296686461 4.4356938309639 5.86316051564068 4.6201572639109 5.53485128886684 4.95308417677482 5.04491673203738 4.78719063923128 5.38173478772378 4.4356938309639 6.02092919105505 4.6201572639109 5.6950734813963 5.11896696555273 4.87672242302602 4.95308417677482 5.21879296686461 4.78719063923128 5.53485128886684 4.6201572639109 5.86316051564068 5.1735475627519 4.87672242302602 5.11896696555273 5.04491673203738 4.95308417677482 5.38173478772378 4.78719063923128 5.6950734813963 4.6201572639109 6.02092919105505 5.1735475627519 5.04491673203738 5.28484371733539 4.87672242302602 5.11896696555273 5.21879296686461 4.95308417677482 5.53485128886684 4.78719063923128 5.86316051564068 5.3580109956989 4.87672242302602 5.1735475627519 5.21879296686461 5.28484371733539 5.04491673203738 5.11896696555273 5.38173478772378 4.95308417677482 5.6950734813963 4.78719063923128 6.02092919105505 5.45073427662836 4.87672242302602 5.3580109956989 5.04491673203738 5.1735475627519 5.38173478772378 5.28484371733539 5.21879296686461 5.11896696555273 5.53485128886684 4.95308417677482 5.86316051564068 5.1735475627519 5.53485128886684 5.5424744286459 4.87672242302602 5.45073427662836 5.04491673203738 5.3580109956989 5.21879296686461 5.28484371733539 5.38173478772378 5.11896696555273 5.6950734813963 4.95308417677482 6.02092919105505 5.61659953613803 4.87672242302602 5.1735475627519 5.6950734813963 5.5424744286459 5.04491673203738 5.3580109956989 5.38173478772378 5.45073427662836 5.21879296686461 5.28484371733539 5.53485128886684 5.11896696555273 5.86316051564068 5.61659953613803 5.04491673203738 5.1735475627519 5.86316051564068 5.3580109956989 5.53485128886684 5.7269378615929 4.87672242302602 5.45073427662836 5.38173478772378 5.5424744286459 5.21879296686461 5.28484371733539 5.6950734813963 5.11896696555273 6.02092919105505 5.78247277652483 4.87672242302602 5.61659953613803 5.21879296686461 5.1735475627519 6.02092919105505 5.3580109956989 5.6950734813963 5.45073427662836 5.53485128886684 5.7269378615929 5.04491673203738 5.5424744286459 5.38173478772378 5.28484371733539 5.86316051564068 5.78247277652483 5.04491673203738 5.61659953613803 5.38173478772378 5.45073427662836 5.6950734813963 5.3580109956989 5.86316051564068 5.5424744286459 5.53485128886684 5.9114012945399 4.87672242302602 5.7269378615929 5.21879296686461 5.28484371733539 6.02092919105505 5.78247277652483 5.21879296686461 5.61659953613803 5.53485128886684 5.3580109956989 6.02092919105505 5.5424744286459 5.6950734813963 5.45073427662836 5.86316051564068 5.9114012945399 5.04491673203738 5.7269378615929 5.38173478772378 5.78247277652483 5.38173478772378 5.61659953613803 5.6950734813963 5.45073427662836 6.02092919105505 5.5424744286459 5.86316051564068 5.7269378615929 5.53485128886684 6.0958647274869 4.87672242302602 5.9114012945399 5.21879296686461 5.78247277652483 5.53485128886684 5.61659953613803 5.86316051564068 5.5424744286459 6.02092919105505 5.7269378615929 5.6950734813963 6.0958647274869 5.04491673203738 5.9114012945399 5.38173478772378 5.78247277652483 5.6950734813963 5.61659953613803 6.02092919105505 5.7269378615929 5.86316051564068 5.9114012945399 5.53485128886684 6.0958647274869 5.21879296686461 5.78247277652483 5.86316051564068 5.7269378615929 6.02092919105505 5.9114012945399 5.6950734813963 6.0958647274869 5.38173478772378 5.78247277652483 6.02092919105505 5.9114012945399 5.86316051564068 6.0958647274869 5.53485128886684 5.9114012945399 6.02092919105505 6.0958647274869 5.6950734813963 6.0958647274869 5.86316051564068 6.0958647274869 6.02092919105505 152 142 135 153 141 149 153 146 141 154 46 148 154 143 150 154 148 143 155 145 151 155 150 145 156 147 142 156 142 152 157 10 9 157 149 10 158 152 146 158 146 153 159 150 155 159 154 150 160 151 147 160 147 156 161 149 157 161 153 149 162 156 152 162 152 158 163 154 159 163 47 46 163 48 47 41 31 40 163 46 154 164 151 160 164 155 151 165 157 9 166 158 153 166 162 158 166 153 161 167 156 162 167 160 156 168 155 164 168 159 155 169 9 8 169 165 9 170 161 157 170 157 165 170 165 169 171 162 166 172 164 160 172 160 167 173 163 159 173 48 163 173 159 168 174 170 169 175 169 8 176 166 161 176 161 170 176 171 166 176 170 174 177 167 162 177 162 171 177 172 167 178 164 172 178 168 164 179 8 7 179 175 8 180 176 174 181 174 169 181 169 175 182 176 180 182 171 176 183 172 177 184 173 168 184 49 48 184 168 178 184 48 173 22 3 1 185 179 7 186 175 179 186 181 175 187 182 180 188 174 181 188 180 174 188 187 180 189 183 177 189 177 171 189 171 182 189 182 187 190 178 172 190 172 183 191 189 187 192 7 6 192 185 7 193 179 185 193 186 179 21 56 30 57 2 20 194 188 181 57 32 2 194 181 186 195 187 188 58 32 57 58 33 32 196 189 191 196 183 189 197 49 184 197 50 49 197 184 178 59 20 19 197 178 190 59 57 20 60 34 33 198 192 6 60 33 58 199 196 191 61 19 18 200 185 192 61 59 19 200 193 185 62 57 59 62 58 57 201 195 188 62 59 61 201 188 194 63 35 34 202 186 193 63 34 60 202 194 186 64 62 61 203 191 187 203 187 195 204 190 183 204 183 196 65 61 18 204 196 199 66 58 62 66 62 64 205 200 192 66 60 58 205 192 198 67 35 63 67 36 35 206 204 199 207 195 201 68 18 17 68 65 18 207 203 195 69 66 64 208 6 5 208 198 6 209 201 194 70 64 61 70 61 65 209 194 202 71 66 69 210 193 200 71 60 66 210 202 193 71 63 60 72 37 36 211 199 191 211 191 203 72 36 67 211 206 199 211 203 207 212 197 190 212 190 204 212 50 197 212 51 50 73 65 68 212 204 206 213 208 5 73 70 65 74 68 17 74 73 68 214 200 205 75 71 69 214 210 200 76 75 69 215 51 212 76 69 64 215 212 206 76 64 70 77 63 71 216 211 207 77 71 75 217 201 209 77 67 63 217 207 201 78 37 72 78 38 37 218 205 198 218 198 208 79 77 75 219 202 210 80 17 16 80 74 17 219 209 202 219 210 214 220 206 211 81 73 74 82 76 70 82 73 81 221 208 213 82 70 73 221 218 208 83 75 76 83 76 82 84 72 67 222 219 214 84 77 79 84 67 77 84 78 72 85 39 38 85 40 39 85 38 78 223 207 217 223 216 207 85 41 40 224 211 216 224 220 211 86 80 16 225 217 209 87 84 79 225 209 219 226 5 4 88 74 80 226 213 5 88 81 74 227 205 218 227 214 205 89 83 82 228 51 215 228 52 51 90 82 81 228 215 206 90 89 82 228 206 220 91 79 75 91 75 83 229 227 218 229 218 221 92 78 84 230 225 219 92 84 87 93 88 80 230 219 222 231 220 224 93 80 86 231 228 220 231 52 228 94 92 87 232 223 217 232 225 230 95 91 83 232 217 225 233 216 223 95 83 89 233 231 224 96 86 16 233 224 216 96 16 15 234 213 226 97 95 89 97 89 90 234 221 213 98 81 88 235 222 214 98 90 81 235 214 227 98 88 93 99 91 95 99 79 91 236 227 229 236 235 227 99 87 79 100 78 92 100 92 94 100 42 41 100 41 85 100 85 78 237 232 230 101 96 15 238 52 231 238 53 52 102 98 93 238 231 233 239 232 237 239 233 223 103 100 94 239 223 232 240 230 222 103 42 100 104 99 95 240 222 235 241 4 3 105 95 97 241 234 226 105 104 95 241 3 22 241 226 4 242 229 221 106 93 86 242 221 234 106 86 96 107 97 90 107 90 98 107 98 102 243 240 235 108 94 87 108 99 104 108 87 99 243 235 236 244 239 237 109 96 101 245 233 239 245 238 233 245 53 238 245 239 244 109 106 96 246 237 230 246 230 240 110 107 102 246 240 243 247 22 23 111 108 104 247 234 241 112 104 105 247 241 22 247 242 234 112 111 104 248 236 229 113 97 107 113 105 97 248 229 242 114 15 14 114 101 15 115 93 106 249 246 243 115 102 93 250 54 53 250 53 245 250 245 244 116 43 42 116 42 103 251 244 237 116 94 108 116 103 94 251 250 244 251 237 246 117 106 109 252 236 248 117 115 106 252 243 236 253 23 24 118 107 110 253 247 23 118 113 107 253 242 247 253 248 242 254 246 249 119 43 116 119 108 111 254 251 246 119 116 108 120 112 105 255 54 250 120 105 113 255 250 251 120 113 118 121 111 112 121 119 111 122 101 114 256 249 243 256 243 252 122 109 101 257 24 25 257 252 248 257 253 24 123 110 102 257 248 253 123 102 115 258 55 54 258 54 255 258 251 254 258 255 251 124 123 115 259 249 256 124 115 117 259 254 249 260 256 252 260 25 26 260 257 25 125 120 118 126 119 121 126 44 43 260 252 257 126 43 119 261 254 259 127 121 112 261 55 258 261 258 254 262 26 27 127 112 120 262 256 260 128 118 110 262 259 256 262 260 26 263 261 259 128 110 123 263 259 262 263 27 28 263 262 27 129 14 13 264 55 261 264 261 263 129 114 14 264 263 28 264 28 29 264 29 30 129 122 114 264 56 55 130 109 122 264 30 56 130 117 109 131 128 123 131 123 124 132 120 125 132 127 120 133 44 126 133 121 127 133 126 121 134 132 125 134 118 128 134 125 118 134 128 131 135 122 129 135 130 122 136 117 130 136 124 117 137 134 131 138 133 127 138 45 44 138 44 133 138 127 132 139 132 134 139 138 132 140 124 136 140 131 124 141 13 12 141 129 13 142 130 135 142 136 130 143 139 134 143 134 137 144 138 139 144 139 143 144 45 138 145 137 131 145 131 140 146 129 141 146 135 129 147 136 142 147 140 136 148 46 45 148 45 144 148 144 143 149 141 12 149 11 10 149 12 11 150 143 137 150 137 145 151 145 140 151 140 147 152 135 146 +36 34 1 8.83582096378177e-012 +-28.9998275856943 -0.100000000023502 100 28.9998275856942 -0.100000000042549 100 -28.4898747439106 -5.41544431014544 100 -27.0139762520437 -10.547278656318 100 -24.6221722643939 -15.3215088350498 100 -21.3955565968693 -19.5762651675483 100 -17.4435272512704 -23.167290670991 100 -12.9000772896832 -25.9728320735379 100 -7.91925181641989 -27.8977678438281 100 -2.6699250979688 -28.8768332746379 100 2.66992509794974 -28.8768332746397 100 7.91925181640147 -27.8977678438334 100 12.900077289666 -25.9728320735464 100 17.4435272512551 -23.1672906710026 100 21.3955565968563 -19.5762651675624 100 24.6221722643838 -15.3215088350661 100 27.0139762520367 -10.5472786563358 100 28.489874743907 -5.41544431016424 100 -25.9998076915966 -0.099999999976795 100 25.9998076915967 -0.0999999999584365 100 -25.5409402183545 -4.86419291994476 100 -24.216548710295 -9.46354946951253 100 -22.0715137658585 -13.7422079770144 100 -19.178525712185 -17.5551744937799 100 -15.6356212962183 -20.7732363073558 100 -11.5628614436277 -23.287340664736 100 -7.09826266869651 -25.0122903206841 100 -2.39312001038908 -25.8896306774715 100 2.39312001040721 -25.8896306774699 100 7.09826266871404 -25.0122903206792 100 11.562861443644 -23.2873406647279 100 15.6356212962329 -20.7732363073448 100 19.1785257121973 -17.5551744937664 100 22.0715137658682 -13.7422079769989 100 24.2165487103017 -9.46354946949544 100 25.540940218358 -4.86419291992672 100 -28.9998275856943 -0.100000000023474 28.9998275856942 -0.100000000042609 -28.4898747439106 -5.41544431014544 -27.0139762520437 -10.547278656318 -24.6221722643939 -15.3215088350498 -21.3955565968693 -19.5762651675483 -17.4435272512704 -23.167290670991 -12.9000772896832 -25.9728320735379 -7.91925181641989 -27.8977678438281 -2.6699250979688 -28.8768332746379 2.66992509794974 -28.8768332746397 7.91925181640147 -27.8977678438334 12.900077289666 -25.9728320735464 17.4435272512551 -23.1672906710026 21.3955565968563 -19.5762651675624 24.6221722643838 -15.3215088350661 27.0139762520367 -10.5472786563358 28.489874743907 -5.41544431016424 -25.9998076915966 -0.100000000000001 25.9998076915967 -0.100000000000001 -25.5409402183545 -4.86419291994476 -24.216548710295 -9.46354946951253 -22.0715137658585 -13.7422079770144 -19.178525712185 -17.5551744937799 -15.6356212962183 -20.7732363073558 -11.5628614436277 -23.287340664736 -7.09826266869651 -25.0122903206841 -2.39312001038908 -25.8896306774715 2.39312001040721 -25.8896306774699 7.09826266871404 -25.0122903206792 11.562861443644 -23.2873406647279 15.6356212962329 -20.7732363073448 19.1785257121973 -17.5551744937664 22.0715137658682 -13.7422079769989 24.2165487103017 -9.46354946949544 25.540940218358 -4.86419291992672 24 6 7 25 7 8 25 24 7 23 5 6 23 6 24 26 8 9 26 25 8 22 4 5 22 5 23 27 26 9 10 27 9 21 3 4 21 4 22 28 27 10 11 28 10 19 1 3 19 3 21 29 28 11 30 11 12 30 29 11 31 12 13 31 30 12 32 13 14 32 31 13 33 32 14 15 33 14 34 33 15 16 34 15 35 34 16 17 35 16 36 35 17 18 36 17 20 36 18 2 20 18 +36 34 1 0.110369322528982 +-25.9998076915966 -0.099999999976795 2 25.9998076915967 -0.0999999999584365 2 -25.5409402183545 -4.86419291994476 2 -24.216548710295 -9.46354946951253 2 -22.0715137658585 -13.7422079770144 2 -19.178525712185 -17.5551744937799 2 -15.6356212962183 -20.7732363073558 2 -11.5628614436277 -23.287340664736 2 -7.09826266869651 -25.0122903206841 2 -2.39312001038908 -25.8896306774715 2 2.39312001040721 -25.8896306774699 2 7.09826266871404 -25.0122903206792 2 11.562861443644 -23.2873406647279 2 15.6356212962329 -20.7732363073448 2 19.1785257121973 -17.5551744937664 2 22.0715137658682 -13.7422079769989 2 24.2165487103017 -9.46354946949544 2 25.540940218358 -4.86419291992672 2 -25.9998076915964 -0.100000000023234 6 25.9998076915963 -0.100000000041546 6 -25.5409402183473 -4.8641929199829 6 -24.2165487102836 -9.46354946954159 6 -22.071513765846 -13.7422079770345 6 -19.1785257121742 -17.5551744937917 6 -15.6356212962116 -20.7732363073608 6 -11.562861443627 -23.2873406647364 6 -7.09826266870315 -25.0122903206823 6 -2.39312001040355 -25.8896306774702 6 2.39312001038516 -25.8896306774719 6 7.09826266868539 -25.0122903206873 6 11.5628614436105 -23.2873406647446 6 15.6356212961968 -20.7732363073719 6 19.1785257121617 -17.5551744938053 6 22.0715137658363 -13.7422079770501 6 24.2165487102769 -9.46354946955878 6 25.5409402183438 -4.86419292000104 6 3.14543881691775 2 6.27933914385234 2 3.32978589497273 2 3.5141329730277 2 3.69848005108268 2 3.88282712913765 2 4.06717420719263 2 4.2515212852476 2 4.43586836330258 2 4.62021544135755 2 4.80456251941253 2 4.98890959746751 2 5.17325667552248 2 5.35760375357746 2 5.54195083163244 2 5.72629790968741 2 5.91064498774239 2 6.09499206579737 2 3.14543881691864 6 6.27933914385074 6 3.32978589497421 6 3.51413297302889 6 3.69848005108358 6 3.88282712913826 6 4.06717420719294 6 4.25152128524763 6 4.43586836330231 6 4.62021544135699 6 4.80456251941167 6 4.98890959746636 6 5.17325667552104 6 5.35760375357572 6 5.5419508316304 6 5.72629790968509 6 5.91064498773977 6 6.09499206579445 6 19 1 3 21 3 4 21 19 3 22 4 5 22 21 4 23 5 6 23 22 5 24 6 7 24 23 6 25 7 8 25 24 7 26 25 8 27 8 9 27 26 8 28 9 10 28 27 9 29 10 11 29 28 10 30 11 12 30 29 11 31 12 13 31 30 12 32 13 14 32 31 13 33 14 15 33 32 14 34 15 16 34 33 15 35 16 17 35 34 16 36 35 17 36 17 18 20 36 18 20 18 2 +264 470 1 0.178476500757608 +-34.9998571425655 -0.100000000023911 0 34.9998571425655 -0.100000000044039 0 -34.387735963849 -6.51794563344987 0 -32.6088257525758 -12.714734878799 0 -29.723485612544 -18.4801083070659 0 -25.8296162381791 -23.6184445929107 0 -21.0593381065312 -27.9553980210406 0 -15.5745085789603 -31.3438141030075 0 -9.56123001896417 -33.6687225852787 0 -3.22353526781181 -34.851238433909 0 3.22353526779162 -34.8512384339108 0 9.56123001894467 -33.6687225852843 0 15.5745085789421 -31.3438141030165 0 21.059338106515 -27.9553980210528 0 25.8296162381655 -23.6184445929257 0 29.7234856125333 -18.4801083070832 0 32.6088257525685 -12.7147348788178 0 34.3877359638452 -6.51794563346978 0 -31.9998437496185 -0.100000000000002 3 -32.4906305491414 -0.1 2.9595828723437 -32.9791483547402 -0.0999999999999989 2.83566065408699 -33.4549576464086 -0.0999999999999971 2.62348305945848 -33.8612715889508 -0.100000000000003 2.3526832163227 -34.1983241503141 -0.099999999999997 2.04125652100875 -34.4958241600866 -0.100000000000002 1.66437319348344 -34.7390925681327 -0.10000000000011 1.22334926543502 -34.8972792571 -0.100000000002558 0.77778056280485 -34.9737531763378 -0.0999999999955189 0.394894657417524 31.9998437495618 -0.100000000000009 3 32.4906305503014 -0.0999999999999957 2.95958287215122 32.9791483571036 -0.0999999999999972 2.83566065327038 33.4549576498853 -0.100000000000012 2.62348305752971 33.8612715932444 -0.0999999999999932 2.35268321292565 34.198324155092 -0.100000000000003 2.04125651586311 34.4958241649574 -0.099999999999994 1.66437318617884 34.7390925709803 -0.100000000000201 1.2233492589946 34.8972792584575 -0.100000000004715 0.77778055793425 34.9737531766234 -0.0999999999917521 0.394894655012223 31.5441749829062 -5.38191696244104 3 30.2226860550529 -10.5161416630456 3 28.0717025150097 -15.3616254880711 3 25.1499948836849 -19.7857959483434 3 21.5380751760829 -23.6666696082027 3 17.3343103362801 -26.8983590647438 3 12.6549929007603 -29.3913444604365 3 7.62809087160242 -31.077520125616 3 2.3914247747657 -31.910516242569 3 -2.91037685549509 -31.8673760046315 3 -8.1327694089495 -30.9492824766817 3 -13.1314007185076 -29.1816089697669 3 -17.7697381963254 -26.6127114418556 3 -21.9202267957332 -23.3131647228399 3 -25.4687103439633 -19.3738165529207 3 -28.3181415639188 -14.9024449263106 3 -30.3899979485004 -10.0223764335126 3 -31.586977423169 -5.12472856223193 3 -34.5224907335525 -5.6009860034579 0.394894663753576 -33.214267709645 -10.9538044154158 0.394894663753576 -34.2908598313394 -5.56340582272074 1.22334926301127 -32.5845052817269 -12.7052519142384 0.394894663753576 -34.0507322850467 -5.52444713239301 1.66437320662311 -32.9914144150983 -10.8803091505755 1.22334926301127 -30.949869762282 -16.2873869100274 0.394894663753576 -33.7570733192405 -5.47680341601215 2.0412564980185 -32.3658774192466 -12.6200051982221 1.22334926301127 -29.7013170999195 -18.4663253840384 0.394894663753576 -32.7603864551349 -10.8041179453365 1.66437320662311 -33.4243725110099 -5.42282548653361 2.3526832244072 -32.1392298879067 -12.5316314771385 1.66437320662311 -30.7422095933867 -16.1781056257255 1.22334926301127 -27.8356224001249 -21.1743131236131 0.394894663753576 -32.4778556383145 -10.7109415027356 2.0412564980185 -33.0233045873786 -5.35775556316011 2.6234830570172 -31.8620560247521 -12.4235566813123 2.0412564980185 -29.5020341765097 -18.3424243699928 1.22334926301127 -30.526932070642 -16.0648157045431 1.66437320662311 -25.8103518698904 -23.6008293712656 0.394894663753576 -32.1577624620406 -10.6053772892396 2.3526832244072 -32.5536387547268 -5.28155620155298 2.83566066434187 -31.5480320069981 -12.3011133844695 2.3526832244072 -29.2954411918982 -18.2139784407076 1.66437320662311 -27.6488574769342 -21.0322426892861 1.22334926301127 -23.9573672696161 -25.4797559675888 0.394894663753576 -30.2636629219478 -15.9262701623747 2.0412564980185 -31.7718929288121 -10.4781205502441 2.6234830570172 -32.0714283063203 -5.20332158073458 2.95958285922541 -31.1694787914506 -12.1535090576616 2.6234830570172 -29.0427926176698 -18.056898175081 2.0412564980185 -25.6371756313565 -23.4424780679823 1.22334926301127 -27.4552416756277 -20.8849608522353 1.66437320662311 -29.9653922448979 -15.769305045612 2.3526832244072 -21.043631529962 -27.9345481919851 0.394894663753576 -31.3200249908882 -10.3290980561495 2.83566066434187 -23.7966237520599 -25.308797883814 1.22334926301127 -19.4211582499776 -29.0859420148029 0.394894663753576 -28.7565545162268 -17.878934150766 2.3526832244072 -30.7261785405271 -11.9806587623163 2.83566066434187 -27.2184632765927 -20.7048456067414 2.0412564980185 -25.4576469724511 -23.2783181499991 1.66437320662311 -29.6058295442219 -15.5800849658732 2.6234830570172 -30.8560878129662 -10.1760952215719 2.95958285922541 -23.62998386902 -25.1315687456311 1.66437320662311 -28.4114969805374 -17.6644000710544 2.6234830570172 -26.9502052838076 -20.5007841111695 2.3526832244072 -30.2710378896315 -11.8031916939646 2.95958285922541 -25.2380961498959 -23.077562208059 2.0412564980185 -20.9024379123072 -27.7471195197447 1.22334926301127 -29.1847679103857 -15.358501036896 2.83566066434187 -15.5628927242603 -31.3204371092154 0.394894663753576 -19.2908507225693 -28.890787990645 1.22334926301127 -23.4261951056271 -24.9148300739001 2.0412564980185 -26.6268226123437 -20.2547897573915 2.6234830570172 -24.9893561330151 -22.8501158436777 2.3526832244072 -28.0074214480315 -17.4131724828004 2.83566066434187 -20.7560650551637 -27.5528156218623 1.66437320662311 -28.7524598625284 -15.1309986760185 2.95958285922541 -19.1557632773232 -28.6884753608428 1.66437320662311 -23.19531270739 -24.6692760821744 2.3526832244072 -24.6895022113342 -22.5759312344336 2.6234830570172 -27.5925531945339 -17.1552346905193 2.95958285922541 -26.248129172382 -19.9667209885189 2.83566066434187 -20.5770614276564 -27.3151957294961 2.0412564980185 -15.45847248093 -31.1102905945474 1.22334926301127 -9.55409901652575 -33.6436116170897 0.394894663753576 -18.9905609085119 -28.4410613570999 2.0412564980185 -22.9169859892903 -24.3732628860402 2.6234830570172 -20.3742593392392 -27.0459843671768 2.3526832244072 -24.3383618345993 -22.2548506014203 2.83566066434187 -25.8593209585473 -19.6709580001284 2.95958285922541 -15.3502219125704 -30.8924355223309 1.66437320662311 -18.8033949506321 -28.1607537602013 2.3526832244072 -22.5910547888542 -24.0266201453804 2.83566066434187 -20.129783189806 -26.7214524170517 2.6234830570172 -23.9778426170037 -21.925194013148 2.95958285922541 -15.2178391416507 -30.6260142133623 2.0412564980185 -9.48999516631079 -33.4178776116056 1.22334926301127 -3.22113107527492 -34.8252455160771 0.394894663753576 -18.5777680202362 -27.8228453960346 2.6234830570172 -22.2564180761418 -23.6707186942004 2.95958285922541 -15.0678561341171 -30.3241722975863 2.3526832244072 -19.8434922961153 -26.3414131279517 2.83566066434187 -9.42353986991914 -33.1838632709721 1.66437320662311 -18.3135502808228 -27.4271418160039 2.83566066434187 -14.8870529261797 -29.9603044997623 2.6234830570172 -19.5495546693524 -25.9512231178028 2.95958285922541 -9.34226975363301 -32.8976803223051 2.0412564980185 -3.19951868632908 -34.5915832609131 1.22334926301127 2.61366648584835 -34.8760972323439 0.394894663753576 -18.0422753748325 -27.0208691270043 2.95958285922541 -9.25019480778837 -32.5734494647115 2.3526832244072 -14.6753254750458 -29.5342014329977 2.83566066434187 -3.17711351552716 -34.3493498479372 1.66437320662311 2.59612992016791 -34.6420937842744 1.22334926301127 -9.1391992633388 -32.182591992727 2.6234830570172 8.33700180220097 -33.9656857962451 0.394894663753576 -14.4579428552056 -29.0967172972414 2.95958285922541 -3.1497135800013 -34.0531155564682 2.0412564980185 2.57795008126468 -34.3995066628147 1.66437320662311 -3.11867083397141 -33.7174970340547 2.3526832244072 -9.00921924815199 -31.7248829883128 2.83566066434187 8.28106414509215 -33.7377908130589 1.22334926301127 13.8310777107684 -32.1228065401801 0.394894663753576 2.55571742710539 -34.1028398109456 2.0412564980185 -3.08124907428218 -33.3129118314144 2.6234830570172 -8.87576751066186 -31.2549487309875 2.95958285922541 15.5628927242421 -31.3204371092244 0.394894663753576 8.22307459266814 -33.5015362261187 1.66437320662311 2.53052895043959 -33.766731219399 2.3526832244072 -3.03742676666754 -32.8391271309172 2.83566066434187 13.738277193174 -31.9072764755058 1.22334926301127 18.9452569303936 -29.3981402558142 0.394894663753576 8.15215748109429 -33.2126136150358 2.0412564980185 2.50016446142764 -33.3615552426916 2.6234830570172 -2.99243398001802 -32.3526878010964 2.95958285922541 15.4584724809119 -31.1102905945563 1.22334926301127 21.0436315299458 -27.9345481919973 0.394894663753576 13.6420725832892 -31.6838403748472 1.66437320662311 8.07181196781077 -32.8852788580005 2.3526832244072 2.46460648689376 -32.8870787232338 2.83566066434187 15.3502219125525 -30.8924355223398 1.66437320662311 18.8181424939146 -29.200891517205 1.22334926301127 23.5397068822562 -25.8661093045826 0.394894663753576 13.5244211656126 -31.4105938637485 2.0412564980185 7.97495615204922 -32.4906796623007 2.6234830570172 2.42809877087021 -32.3999290962014 2.95958285922541 15.217839141633 -30.6260142133711 2.0412564980185 20.9024379122911 -27.7471195197568 1.22334926301127 18.6863652679986 -28.9964073350038 1.66437320662311 25.8103518698768 -23.6008293712805 0.394894663753576 13.3911280388626 -31.1010193379403 2.3526832244072 7.86153429835184 -32.0285889567313 2.83566066434187 15.0678561340995 -30.324172297595 2.3526832244072 23.3817656842977 -25.6925589579055 1.22334926301127 20.7560650551478 -27.5528156218743 1.66437320662311 27.487288853737 -21.6245777329958 0.394894663753576 18.5252110627574 -28.7463376766244 2.0412564980185 13.2304443366971 -30.7278299461402 2.6234830570172 7.74508298525182 -31.5541559644929 2.95958285922541 14.8870529261623 -29.9603044997709 2.6234830570172 20.5770614276405 -27.315195729508 2.0412564980185 25.6371756313429 -23.4424780679972 1.22334926301127 23.2180309150508 -25.5126424678878 1.66437320662311 18.3426314701803 -28.4630213568641 2.3526832244072 29.7013170999088 -18.4663253840556 0.394894663753576 13.0422775940471 -30.2908109373657 2.83566066434187 27.3028610971848 -21.4794862189179 1.22334926301127 30.6805263051579 -16.7892440657006 0.394894663753576 20.3742593392235 -27.0459843671886 2.3526832244072 14.6753254750287 -29.5342014330062 2.83566066434187 23.0177948998752 -25.2926173553767 2.0412564980185 25.4576469724376 -23.2783181500139 1.66437320662311 18.12253336317 -28.1214860035195 2.6234830570172 12.8490849812564 -29.8421192984753 2.95958285922541 27.1116681940531 -21.3290724833993 1.66437320662311 20.1297831897905 -26.7214524170633 2.6234830570172 22.7909375863144 -25.0433399918795 2.3526832244072 14.4579428551887 -29.0967172972498 2.95958285922541 25.2380961498825 -23.0775622080736 2.0412564980185 29.502034176499 -18.3424243700099 1.22334926301127 17.8647900867741 -27.7215350808521 2.83566066434187 32.5845052817196 -12.7052519142573 0.394894663753576 30.4746733137476 -16.676595538095 1.22334926301127 26.8778528277197 -21.1451271481082 2.0412564980185 22.5174630726988 -24.7428383035374 2.6234830570172 24.9893561330019 -22.8501158436921 2.3526832244072 19.8434922961 -26.3414131279632 2.83566066434187 29.2954411918876 -18.2139784407246 1.66437320662311 17.6001625745215 -27.3109016041286 2.95958285922541 30.2612692590551 -16.5598148569813 1.66437320662311 26.6129518016527 -20.9367263538276 2.3526832244072 24.6895022113211 -22.5759312344479 2.6234830570172 22.1972139887448 -24.3909393673406 2.83566066434187 19.5495546693373 -25.9512231178141 2.95958285922541 29.0427926176594 -18.0568981750979 2.0412564980185 32.3658774192393 -12.6200051982409 1.22334926301127 34.362088737649 -6.51308438799052 0.394894663753576 30.0002912289732 -16.4170003628866 2.0412564980185 26.2936159242993 -20.6855010132891 2.6234830570172 28.7565545162164 -17.8789341507827 2.3526832244072 24.3383618345864 -22.2548506014344 2.83566066434187 21.8684111599263 -24.0296413294163 2.95958285922541 32.1392298878995 -12.5316314771572 1.66437320662311 29.7046162738418 -16.2551987387409 2.3526832244072 25.919661434559 -20.3913065594445 2.83566066434187 28.4114969805271 -17.6644000710709 2.6234830570172 23.977842616991 -21.9251940131619 2.95958285922541 31.8620560247449 -12.4235566813308 2.0412564980185 34.1315340630846 -6.46938442367961 1.22334926301127 29.3481826933074 -16.0601482915197 2.6234830570172 25.5357187467055 -20.0892542711056 2.95958285922541 31.548032006991 -12.3011133844878 2.3526832244072 28.0074214480215 -17.4131724828166 2.83566066434187 33.8925222224341 -6.42408146495173 1.66437320662311 28.9307853784809 -15.8317367798889 2.83566066434187 31.1694787914435 -12.1535090576797 2.6234830570172 27.592553194524 -17.1552346905352 2.95958285922541 33.600227685533 -6.36867915808032 2.0412564980185 28.5022395223565 -15.5972244739313 2.95958285922541 33.2690727064863 -6.3059111365988 2.3526832244072 30.7261785405202 -11.9806587623341 2.83566066434187 32.8698682664587 -6.23024483395315 2.6234830570172 30.2710378896246 -11.8031916939821 2.95958285922541 32.4023846441679 -6.14163670814247 2.83566066434187 31.922414692224 -6.05066188921986 2.95958285922541 3.1444498003349 0 6.2803281604339 0 3.3289132332819 0 3.5133766662289 0 3.6978400991759 0 3.8823035321229 0 4.0667669650699 0 4.2512303980169 0 4.4356938309639 0 4.6201572639109 0 4.8046206968579 0 4.9890841298049 0 5.1735475627519 0 5.3580109956989 0 5.5424744286459 0 5.7269378615929 0 5.9114012945399 0 6.0958647274869 0 3.14471765867608 1.5707963267949 3.14467045425237 1.40646288415342 3.14462486328954 1.23826857514181 3.14458173829391 1.06439234031455 3.14454587136846 0.901450519455178 3.14451676515079 0.74833401831203 3.14449154707276 0.588111825782658 3.14447124702427 0.42002479153837 3.14445819865319 0.262256116124121 3.14445193286038 0.13201467726483 6.2800603020933 1.57079632681381 6.28010750651712 1.40646288376147 6.28015309748005 1.23826857430836 6.28019622247578 1.06439233898933 6.28023208940129 0.901450517630185 6.280261195619 0.748334015971376 6.28028641369702 0.588111822856079 6.28030671374534 0.420024789191004 6.28031976211624 0.262256114439425 6.28032602790913 0.132014676457608 6.11419730179794 1.57079632679291 5.94833321143218 1.57079632679521 5.78247277652861 1.57079632679572 5.61659953614309 1.57079632679295 5.45073427663461 1.5707963267949 5.2848437173428 1.5707963267949 5.1189669655613 1.5707963267949 4.95308417678454 1.5707963267949 4.78719063924214 1.5707963267949 4.62131407988424 1.5707963267949 4.45542104560532 1.5707963267949 4.28954440681725 1.5707963267949 4.12366004376269 1.5707963267949 3.95777553191426 1.5707963267949 3.79190109367568 1.5707963267949 3.62601951691935 1.5707963267949 3.46015275509645 1.5707963267949 3.30243284846652 1.5707963267949 3.30243284846652 0.132014676457608 3.46015275509645 0.132014676457608 3.30243284846652 0.420024789191004 3.5133766662289 0.132014676457608 3.30243284846652 0.588111822856079 3.46015275509645 0.420024789191004 3.62601951691935 0.132014676457608 3.30243284846652 0.748334015971376 3.5133766662289 0.420024789191004 3.6978400991759 0.132014676457608 3.46015275509645 0.588111822856079 3.30243284846652 0.901450517630185 3.5133766662289 0.588111822856079 3.62601951691935 0.420024789191004 3.79190109367568 0.132014676457608 3.46015275509645 0.748334015971376 3.30243284846652 1.06439233898933 3.5133766662289 0.748334015971376 3.6978400991759 0.420024789191004 3.62601951691935 0.588111822856079 3.8823035321229 0.132014676457608 3.46015275509645 0.901450517630185 3.30243284846652 1.23826857430836 3.5133766662289 0.901450517630185 3.6978400991759 0.588111822856079 3.79190109367568 0.420024789191004 3.95777553191426 0.132014676457608 3.62601951691935 0.748334015971376 3.46015275509645 1.06439233898933 3.30243284846652 1.40646288376147 3.5133766662289 1.06439233898933 3.6978400991759 0.748334015971376 3.8823035321229 0.420024789191004 3.79190109367568 0.588111822856079 3.62601951691935 0.901450517630185 4.0667669650699 0.132014676457608 3.46015275509645 1.23826857430836 3.95777553191426 0.420024789191004 4.12366004376269 0.132014676457608 3.6978400991759 0.901450517630185 3.5133766662289 1.23826857430836 3.79190109367568 0.748334015971376 3.8823035321229 0.588111822856079 3.62601951691935 1.06439233898933 3.46015275509645 1.40646288376147 3.95777553191426 0.588111822856079 3.6978400991759 1.06439233898933 3.79190109367568 0.901450517630185 3.5133766662289 1.40646288376147 3.8823035321229 0.748334015971376 4.0667669650699 0.420024789191004 3.62601951691935 1.23826857430836 4.2512303980169 0.132014676457608 4.12366004376269 0.420024789191004 3.95777553191426 0.748334015971376 3.79190109367568 1.06439233898933 3.8823035321229 0.901450517630185 3.6978400991759 1.23826857430836 4.0667669650699 0.588111822856079 3.62601951691935 1.40646288376147 4.12366004376269 0.588111822856079 3.95777553191426 0.901450517630185 3.8823035321229 1.06439233898933 3.6978400991759 1.40646288376147 3.79190109367568 1.23826857430836 4.0667669650699 0.748334015971376 4.2512303980169 0.420024789191004 4.4356938309639 0.132014676457608 4.12366004376269 0.748334015971376 3.95777553191426 1.06439233898933 4.0667669650699 0.901450517630185 3.8823035321229 1.23826857430836 3.79190109367568 1.40646288376147 4.2512303980169 0.588111822856079 4.12366004376269 0.901450517630185 3.95777553191426 1.23826857430836 4.0667669650699 1.06439233898933 3.8823035321229 1.40646288376147 4.2512303980169 0.748334015971376 4.4356938309639 0.420024789191004 4.6201572639109 0.132014676457608 4.12366004376269 1.06439233898933 3.95777553191426 1.40646288376147 4.2512303980169 0.901450517630185 4.0667669650699 1.23826857430836 4.4356938309639 0.588111822856079 4.12366004376269 1.23826857430836 4.2512303980169 1.06439233898933 4.0667669650699 1.40646288376147 4.4356938309639 0.748334015971376 4.6201572639109 0.420024789191004 4.78719063924214 0.132014676457608 4.12366004376269 1.40646288376147 4.4356938309639 0.901450517630185 4.2512303980169 1.23826857430836 4.6201572639109 0.588111822856079 4.78719063924214 0.420024789191004 4.4356938309639 1.06439233898933 4.95308417678454 0.132014676457608 4.2512303980169 1.40646288376147 4.6201572639109 0.748334015971376 4.78719063924214 0.588111822856079 4.6201572639109 0.901450517630185 4.4356938309639 1.23826857430836 4.95308417678454 0.420024789191004 5.1189669655613 0.132014676457608 4.78719063924214 0.748334015971376 4.6201572639109 1.06439233898933 4.4356938309639 1.40646288376147 5.1735475627519 0.132014676457608 4.95308417678454 0.588111822856079 4.78719063924214 0.901450517630185 4.6201572639109 1.23826857430836 5.1189669655613 0.420024789191004 5.2848437173428 0.132014676457608 4.95308417678454 0.748334015971376 4.78719063924214 1.06439233898933 4.6201572639109 1.40646288376147 5.1735475627519 0.420024789191004 5.3580109956989 0.132014676457608 5.1189669655613 0.588111822856079 4.95308417678454 0.901450517630185 4.78719063924214 1.23826857430836 5.1735475627519 0.588111822856079 5.2848437173428 0.420024789191004 5.45073427663461 0.132014676457608 5.1189669655613 0.748334015971376 4.95308417678454 1.06439233898933 4.78719063924214 1.40646288376147 5.1735475627519 0.748334015971376 5.3580109956989 0.420024789191004 5.2848437173428 0.588111822856079 5.5424744286459 0.132014676457608 5.1189669655613 0.901450517630185 4.95308417678454 1.23826857430836 5.1735475627519 0.901450517630185 5.45073427663461 0.420024789191004 5.3580109956989 0.588111822856079 5.61659953614309 0.132014676457608 5.2848437173428 0.748334015971376 5.1189669655613 1.06439233898933 4.95308417678454 1.40646288376147 5.1735475627519 1.06439233898933 5.3580109956989 0.748334015971376 5.5424744286459 0.420024789191004 5.45073427663461 0.588111822856079 5.2848437173428 0.901450517630185 5.7269378615929 0.132014676457608 5.1189669655613 1.23826857430836 5.61659953614309 0.420024789191004 5.78247277652861 0.132014676457608 5.3580109956989 0.901450517630185 5.1735475627519 1.23826857430836 5.45073427663461 0.748334015971376 5.5424744286459 0.588111822856079 5.2848437173428 1.06439233898933 5.1189669655613 1.40646288376147 5.61659953614309 0.588111822856079 5.3580109956989 1.06439233898933 5.45073427663461 0.901450517630185 5.1735475627519 1.40646288376147 5.5424744286459 0.748334015971376 5.7269378615929 0.420024789191004 5.2848437173428 1.23826857430836 5.9114012945399 0.132014676457608 5.78247277652861 0.420024789191004 5.61659953614309 0.748334015971376 5.45073427663461 1.06439233898933 5.5424744286459 0.901450517630185 5.3580109956989 1.23826857430836 5.7269378615929 0.588111822856079 5.2848437173428 1.40646288376147 5.78247277652861 0.588111822856079 5.61659953614309 0.901450517630185 5.5424744286459 1.06439233898933 5.45073427663461 1.23826857430836 5.3580109956989 1.40646288376147 5.7269378615929 0.748334015971376 5.9114012945399 0.420024789191004 6.0958647274869 0.132014676457608 5.78247277652861 0.748334015971376 5.61659953614309 1.06439233898933 5.7269378615929 0.901450517630185 5.5424744286459 1.23826857430836 5.45073427663461 1.40646288376147 5.9114012945399 0.588111822856079 5.78247277652861 0.901450517630185 5.61659953614309 1.23826857430836 5.7269378615929 1.06439233898933 5.5424744286459 1.40646288376147 5.9114012945399 0.748334015971376 6.0958647274869 0.420024789191004 5.78247277652861 1.06439233898933 5.61659953614309 1.40646288376147 5.9114012945399 0.901450517630185 5.7269378615929 1.23826857430836 6.0958647274869 0.588111822856079 5.78247277652861 1.23826857430836 5.9114012945399 1.06439233898933 5.7269378615929 1.40646288376147 6.0958647274869 0.748334015971376 5.78247277652861 1.40646288376147 6.0958647274869 0.901450517630185 5.9114012945399 1.23826857430836 6.0958647274869 1.06439233898933 5.9114012945399 1.40646288376147 6.0958647274869 1.23826857430836 6.0958647274869 1.40646288376147 157 142 152 158 157 152 158 147 153 158 152 147 159 150 146 159 146 157 160 156 151 160 151 154 161 153 155 162 12 13 162 155 12 163 159 157 163 157 158 164 150 159 164 154 150 165 49 50 165 50 156 165 156 160 166 162 13 167 158 153 167 153 161 168 159 163 169 160 154 169 154 164 170 161 155 170 155 162 171 13 14 171 166 13 172 158 167 172 163 158 173 159 168 173 164 159 174 165 160 174 160 169 174 49 165 174 48 49 175 170 162 175 162 166 176 171 14 177 167 161 177 161 170 178 168 163 178 163 172 179 169 164 179 164 173 180 170 175 180 177 170 181 171 176 181 175 166 181 166 171 182 14 15 182 176 14 183 172 167 183 167 177 184 168 178 184 173 168 184 179 173 185 174 169 185 169 179 185 46 47 185 47 48 185 48 174 186 177 180 186 183 177 187 181 176 188 175 181 188 180 175 188 181 187 189 182 15 38 18 2 190 178 172 190 172 183 191 179 184 192 190 183 192 183 186 193 182 189 193 176 182 193 187 176 194 188 187 195 15 16 195 189 15 196 188 194 196 186 180 196 180 188 197 191 184 197 184 178 197 178 190 198 179 191 198 185 179 198 46 185 199 190 192 199 197 190 29 39 30 57 1 3 57 27 28 57 28 1 200 196 194 58 3 4 201 189 195 58 57 3 201 193 189 202 187 193 59 25 26 202 194 187 59 26 27 59 27 57 203 192 186 203 186 196 60 58 4 203 196 200 61 24 25 204 195 16 205 191 197 61 25 59 62 57 58 205 198 191 62 58 60 62 59 57 63 4 5 206 201 195 63 60 4 207 16 17 207 204 16 64 23 24 208 203 200 64 24 61 209 205 197 65 60 63 65 62 60 209 197 199 210 194 202 210 200 194 66 63 5 67 61 59 67 59 62 211 202 193 68 22 23 211 193 201 212 192 203 68 23 64 212 203 208 212 199 192 213 46 198 213 45 46 69 67 62 213 198 205 69 62 65 214 201 206 70 69 65 70 65 63 71 5 6 214 211 201 71 66 5 72 67 69 215 212 208 72 64 61 216 208 200 72 61 67 216 200 210 73 21 22 73 22 68 217 213 205 217 205 209 217 44 45 217 45 213 218 210 202 74 72 69 218 202 211 218 211 214 75 70 63 75 63 66 219 195 204 219 206 195 76 74 69 76 69 70 220 209 199 220 199 212 220 212 215 77 71 6 221 17 18 221 207 17 78 64 72 222 204 207 78 72 74 78 68 64 79 20 21 79 21 73 222 219 204 80 78 74 223 218 214 81 76 70 81 70 75 224 208 216 224 215 208 82 71 77 82 66 71 82 75 66 225 210 218 82 81 75 225 216 210 83 6 7 83 77 6 226 220 215 84 74 76 84 80 74 227 214 206 84 76 81 85 68 78 85 78 80 227 206 219 85 73 68 228 220 226 228 209 220 86 19 20 228 217 209 228 44 217 86 56 19 229 219 222 86 20 79 87 85 80 229 227 219 230 225 218 88 84 81 230 218 223 89 82 77 231 224 216 89 77 83 90 81 82 231 225 230 231 216 225 90 82 89 232 215 224 232 226 215 91 80 84 233 228 226 91 87 80 233 44 228 233 43 44 92 83 7 234 223 214 234 227 229 93 73 85 93 79 73 234 230 223 234 214 227 94 89 83 235 207 221 235 222 207 95 7 8 236 235 221 236 18 38 95 92 7 236 38 37 236 221 18 96 84 88 237 234 229 96 91 84 97 85 87 238 231 230 97 93 85 98 88 81 239 238 230 98 81 90 239 234 237 239 230 234 99 90 89 240 224 231 99 89 94 99 98 90 240 232 224 100 87 91 241 226 232 100 91 96 241 43 233 241 233 226 100 97 87 241 232 240 101 93 97 101 55 56 101 79 93 242 222 235 101 56 86 101 86 79 242 229 222 102 99 94 243 239 237 244 231 238 244 240 231 103 100 96 245 239 243 104 88 98 104 96 88 245 238 239 246 43 241 105 101 97 246 42 43 246 241 240 105 54 55 246 240 244 105 55 101 106 104 98 106 98 99 106 99 102 247 237 229 247 229 242 248 36 35 248 37 36 107 83 92 248 235 236 107 94 83 248 236 37 108 97 100 248 242 235 249 245 243 108 105 97 109 8 9 250 42 246 109 95 8 250 246 244 110 107 92 110 92 95 251 243 237 251 237 247 110 95 109 252 244 238 252 238 245 111 106 102 252 250 244 253 35 34 112 103 96 253 248 35 112 96 104 253 247 242 253 242 248 254 245 249 113 112 104 113 104 106 254 252 245 113 106 111 114 108 100 255 249 243 114 100 103 255 243 251 115 102 94 256 41 42 115 94 107 256 42 250 256 250 252 256 252 254 257 34 33 257 253 34 116 108 114 257 251 247 116 54 105 257 247 253 116 105 108 258 256 254 258 41 256 117 107 110 259 251 257 259 33 32 117 115 107 259 257 33 259 255 251 260 249 255 118 113 111 260 254 249 261 255 259 261 32 31 119 112 113 261 260 255 261 259 32 262 258 254 119 113 118 262 41 258 120 53 54 120 116 114 262 40 41 120 54 116 121 114 103 262 254 260 263 262 260 121 103 112 263 260 261 263 261 31 121 112 119 263 31 30 122 111 102 264 262 263 264 40 262 264 263 30 122 102 115 264 39 40 264 30 39 122 115 117 123 110 109 123 117 110 124 123 109 124 109 9 125 122 117 126 119 118 127 111 122 127 118 111 127 122 125 128 121 119 128 119 126 129 114 121 129 53 120 129 121 128 129 120 114 130 125 117 130 117 123 131 127 125 132 128 126 133 127 131 133 118 127 133 126 118 134 53 129 134 129 128 134 128 132 134 52 53 135 125 130 135 131 125 136 130 123 136 123 124 137 9 10 137 124 9 138 133 131 139 134 132 139 52 134 140 138 131 140 131 135 141 126 133 141 132 126 142 130 136 142 135 130 143 133 138 143 141 133 144 143 138 144 138 140 145 139 132 145 132 141 145 51 52 145 141 143 145 52 139 146 140 135 146 135 142 147 124 137 147 136 124 148 137 10 148 10 11 149 51 145 149 145 143 150 144 140 150 140 146 151 143 144 151 149 143 152 142 136 152 136 147 153 147 137 153 137 148 154 144 150 154 151 144 155 11 12 155 148 11 155 153 148 156 50 51 156 51 149 156 149 151 157 146 142 +36 34 1 1.46549439250521e-014 +-25.9998076915964 -0.100000000023234 5 25.9998076915963 -0.100000000041546 5 -25.5409402183473 -4.8641929199829 5 -24.2165487102836 -9.46354946954159 5 -22.071513765846 -13.7422079770345 5 -19.1785257121742 -17.5551744937917 5 -15.6356212962116 -20.7732363073608 5 -11.562861443627 -23.2873406647364 5 -7.09826266870315 -25.0122903206823 5 -2.39312001040355 -25.8896306774702 5 2.39312001038516 -25.8896306774719 5 7.09826266868539 -25.0122903206873 5 11.5628614436105 -23.2873406647446 5 15.6356212961968 -20.7732363073719 5 19.1785257121617 -17.5551744938053 5 22.0715137658363 -13.7422079770501 5 24.2165487102769 -9.46354946955878 5 25.5409402183438 -4.86419292000104 5 -31.9998437496185 -0.10000000002372 5 31.9998437496184 -0.100000000043359 5 -31.4388064143385 -5.96669516916608 5 -29.8114017582991 -11.6310070589474 5 -27.1728294325296 -16.9008088750406 5 -23.6125867056153 -21.5973551406139 5 -19.2514328216545 -25.5613445325813 5 -14.237292988792 -28.6583231950387 5 -8.74024093021585 -30.7832452558495 5 -2.94673018358676 -31.8640358590236 5 2.94673018356733 -31.8640358590253 5 8.74024093019707 -30.7832452558548 5 14.2372929887745 -28.6583231950474 5 19.251432821639 -25.561344532593 5 23.6125867056021 -21.5973551406283 5 27.1728294325193 -16.9008088750572 5 29.811401758292 -11.6310070589656 5 31.4388064143348 -5.9666951691853 5 -25.9998076915964 -0.100000000023275 25.9998076915963 -0.100000000041554 -25.5409402183473 -4.8641929199829 -24.2165487102836 -9.46354946954159 -22.071513765846 -13.7422079770345 -19.1785257121742 -17.5551744937917 -15.6356212962116 -20.7732363073608 -11.562861443627 -23.2873406647364 -7.09826266870315 -25.0122903206823 -2.39312001040355 -25.8896306774702 2.39312001038516 -25.8896306774719 7.09826266868539 -25.0122903206873 11.5628614436105 -23.2873406647446 15.6356212961968 -20.7732363073719 19.1785257121617 -17.5551744938053 22.0715137658363 -13.7422079770501 24.2165487102769 -9.46354946955878 25.5409402183438 -4.86419292000104 -31.9998437496184 -0.100000000000001 31.9998437496184 -0.100000000000001 -31.4388064143385 -5.96669516916608 -29.8114017582991 -11.6310070589474 -27.1728294325296 -16.9008088750406 -23.6125867056153 -21.5973551406139 -19.2514328216545 -25.5613445325813 -14.237292988792 -28.6583231950387 -8.74024093021585 -30.7832452558495 -2.94673018358676 -31.8640358590236 2.94673018356733 -31.8640358590253 8.74024093019708 -30.7832452558548 14.2372929887745 -28.6583231950474 19.251432821639 -25.561344532593 23.6125867056021 -21.5973551406283 27.1728294325193 -16.9008088750572 29.811401758292 -11.6310070589656 31.4388064143348 -5.9666951691853 2 18 36 20 2 36 6 24 25 7 25 26 7 6 25 5 23 24 5 24 6 8 26 27 8 7 26 4 22 23 4 23 5 9 27 28 9 8 27 3 21 22 3 22 4 10 9 28 1 19 21 1 21 3 11 28 29 11 10 28 12 29 30 12 11 29 13 30 31 13 12 30 14 31 32 14 13 31 15 14 32 33 15 32 16 15 33 34 16 33 17 16 34 35 17 34 18 17 35 36 18 35 +40 38 1 0.110019522937573 +-31.9998437495618 -0.100000000000009 58 31.9998437496185 -0.100000000000002 58 -31.5441749829062 -5.38191696244104 58 -30.2226860550529 -10.5161416630456 58 -28.0717025150097 -15.3616254880711 58 -25.1499948836849 -19.7857959483434 58 -21.5380751760829 -23.6666696082027 58 -17.3343103362801 -26.8983590647438 58 -12.6549929007603 -29.3913444604365 58 -7.62809087160242 -31.077520125616 58 -2.3914247747657 -31.910516242569 58 2.91037685549509 -31.8673760046315 58 8.1327694089495 -30.9492824766817 58 13.1314007185076 -29.1816089697669 58 17.7697381963254 -26.6127114418556 58 21.9202267957332 -23.3131647228399 58 25.4687103439633 -19.3738165529207 58 28.3181415639188 -14.9024449263106 58 30.3899979485004 -10.0223764335126 58 31.586977423169 -5.12472856223193 58 -31.9998437496185 -0.100000000000002 54 31.9998437496185 -0.100000000000016 54 -31.5441749828996 -5.38191696248068 54 -30.2226860550263 -10.5161416631217 54 -28.0717025149516 -15.3616254881774 54 -25.1499948835848 -19.7857959484707 54 -21.5380751759349 -23.6666696083374 54 -17.3343103360809 -26.8983590648722 54 -12.6549929005087 -29.3913444605448 54 -7.6280908713004 -31.0775201256901 54 -2.39142477441882 -31.910516242595 54 2.91037685587745 -31.8673760045967 54 8.13276940935503 -30.9492824765751 54 13.1314007189226 -29.1816089695803 54 17.7697381967332 -26.6127114415833 54 21.9202267961164 -23.3131647224796 54 25.4687103443035 -19.3738165524734 54 28.3181415641972 -14.9024449257815 54 30.3899979486989 -10.0223764329107 54 31.5869774232198 -5.12472856191904 54 3.14471765867608 58 6.2800603020933 58 3.31058065897144 58 3.4764447493372 58 3.64230518424077 58 3.80817842462629 58 3.97404368413477 58 4.13993424342658 58 4.30581099520808 58 4.47169378398484 58 4.63758732152724 58 4.80346388088514 58 4.96935691516406 58 5.13523355395213 58 5.30111791700669 58 5.46700242885512 58 5.6328768670937 58 5.79875844385003 58 5.96462520567293 58 6.12234511230286 58 3.14471765867608 54 6.2800603020933 54 3.3105806589727 54 3.47644474933972 54 3.64230518424455 54 3.80817842463135 54 3.97404368414102 54 4.13993424343399 54 4.30581099521664 54 4.47169378399456 54 4.6375873215381 54 4.80346388089713 54 4.96935691517716 54 5.13523355396634 54 5.30111791702201 54 5.46700242887156 54 5.63287686711126 54 5.79875844386871 54 5.96462520569274 54 6.12234511231277 54 3 1 21 3 21 23 4 23 24 4 3 23 5 24 25 5 4 24 6 25 26 6 5 25 7 26 27 7 6 26 8 27 28 8 7 27 9 28 29 9 8 28 10 29 30 10 9 29 11 30 31 11 10 30 12 31 32 12 11 31 13 32 33 13 12 32 14 33 34 14 13 33 15 34 35 15 14 34 16 35 36 16 15 35 17 16 36 17 36 37 18 17 37 18 37 38 19 18 38 19 38 39 20 19 39 20 39 40 2 20 40 2 40 22 +36 34 1 0.135964140975548 +-31.9998437496185 -0.10000000002372 5 31.9998437496184 -0.100000000043359 5 -31.4388064143385 -5.96669516916608 5 -29.8114017582991 -11.6310070589474 5 -27.1728294325296 -16.9008088750406 5 -23.6125867056153 -21.5973551406139 5 -19.2514328216545 -25.5613445325813 5 -14.237292988792 -28.6583231950387 5 -8.74024093021585 -30.7832452558495 5 -2.94673018358676 -31.8640358590236 5 2.94673018356733 -31.8640358590253 5 8.74024093019707 -30.7832452558548 5 14.2372929887745 -28.6583231950474 5 19.251432821639 -25.561344532593 5 23.6125867056021 -21.5973551406283 5 27.1728294325193 -16.9008088750572 5 29.811401758292 -11.6310070589656 5 31.4388064143348 -5.9666951691853 5 -31.9998437496185 -0.100000000023706 0.5 31.9998437496184 -0.100000000043331 0.5 -31.4388064143385 -5.96669516916596 0.5 -29.8114017582991 -11.6310070589472 0.5 -27.1728294325297 -16.9008088750405 0.5 -23.6125867056154 -21.5973551406137 0.5 -19.2514328216547 -25.5613445325812 0.5 -14.2372929887921 -28.6583231950387 0.5 -8.74024093021601 -30.7832452558494 0.5 -2.94673018358693 -31.8640358590235 0.5 2.94673018356716 -31.8640358590254 0.5 8.74024093019694 -30.7832452558549 0.5 14.2372929887744 -28.6583231950475 0.5 19.2514328216388 -25.5613445325931 0.5 23.612586705602 -21.5973551406284 0.5 27.1728294325192 -16.9008088750573 0.5 29.8114017582919 -11.6310070589657 0.5 31.4388064143348 -5.96669516918545 0.5 3.14471765867682 5 6.28006030209195 5 3.32914957887771 5 3.5135814990786 5 3.69801341927949 5 3.88244533948038 5 4.06687725968127 5 4.25130917988216 5 4.43574110008305 5 4.62017302028394 5 4.80460494048483 5 4.98903686068572 5 5.17346878088661 5 5.3579007010875 5 5.54233262128839 5 5.72676454148928 5 5.91119646169017 5 6.09562838189106 5 3.14471765867608 0.5 6.2800603020933 0.5 3.32914957887771 0.5 3.5135814990786 0.5 3.69801341927949 0.5 3.88244533948038 0.5 4.06687725968127 0.5 4.25130917988216 0.5 4.43574110008305 0.5 4.62017302028394 0.5 4.80460494048483 0.5 4.98903686068572 0.5 5.17346878088661 0.5 5.3579007010875 0.5 5.54233262128839 0.5 5.72676454148928 0.5 5.91119646169017 0.5 6.09562838189106 0.5 1 19 21 3 21 22 3 1 21 4 22 23 4 3 22 5 23 24 5 4 23 6 24 25 6 5 24 7 25 26 7 6 25 8 26 27 8 7 26 9 27 28 9 8 27 10 28 29 10 9 28 11 29 30 11 10 29 12 30 31 12 11 30 13 31 32 13 12 31 14 32 33 14 13 32 15 33 34 15 14 33 16 34 35 16 15 34 17 35 36 17 16 35 18 17 36 2 18 36 2 36 20 +264 470 1 0.174158148889864 +31.9998437496185 -0.100000000000002 -3 -31.9998437496185 -0.100000000000016 -3 31.5441749828996 -5.38191696248068 -3 30.2226860550263 -10.5161416631217 -3 28.0717025149516 -15.3616254881774 -3 25.1499948835848 -19.7857959484707 -3 21.5380751759349 -23.6666696083374 -3 17.3343103360809 -26.8983590648722 -3 12.6549929005087 -29.3913444605448 -3 7.6280908713004 -31.0775201256901 -3 2.39142477441882 -31.910516242595 -3 -2.91037685587745 -31.8673760045967 -3 -8.13276940935503 -30.9492824765751 -3 -13.1314007189226 -29.1816089695803 -3 -17.7697381967332 -26.6127114415833 -3 -21.9202267961164 -23.3131647224796 -3 -25.4687103443035 -19.3738165524734 -3 -28.3181415641972 -14.9024449257815 -3 -30.3899979486989 -10.0223764329107 -3 -31.5869774232198 -5.12472856191904 -3 34.9998571425655 -0.100000000044039 0 32.4906305502995 -0.0999999999999997 -2.95958287215188 32.9791483570995 -0.0999999999999975 -2.8356606532722 33.4549576498795 -0.100000000000011 -2.62348305753315 33.861271593241 -0.100000000000001 -2.35268321292847 34.1983241550887 -0.100000000000002 -2.04125651586655 34.4958241649556 -0.0999999999999961 -1.66437318618134 34.7390925709792 -0.1000000000002 -1.22334925899689 34.8972792584571 -0.100000000004715 -0.777780557935642 34.9737531766233 -0.0999999999917522 -0.394894655012777 -34.9998571425655 -0.100000000023911 0 -32.490630549141 -0.100000000000001 -2.95958287234375 -32.9791483547391 -0.0999999999999977 -2.83566065408682 -33.4549576464076 -0.0999999999999987 -2.62348305945829 -33.8612715889495 -0.100000000000002 -2.35268321632364 -34.1983241503128 -0.099999999999996 -2.04125652101021 -34.4958241600857 -0.100000000000003 -1.66437319348459 -34.7390925681322 -0.100000000000111 -1.22334926543591 -34.8972792570997 -0.100000000002558 -0.777780562805717 -34.9737531763377 -0.0999999999955199 -0.394894657417709 -34.387735963849 -6.51794563344987 0 -32.6088257525758 -12.714734878799 0 -29.723485612544 -18.4801083070659 0 -25.8296162381791 -23.6184445929107 0 -21.0593381065312 -27.9553980210406 0 -15.5745085789603 -31.3438141030075 0 -9.56123001896417 -33.6687225852787 0 -3.22353526781181 -34.851238433909 0 3.22353526779162 -34.8512384339108 0 9.56123001894467 -33.6687225852843 0 15.5745085789421 -31.3438141030165 0 21.059338106515 -27.9553980210528 0 25.8296162381655 -23.6184445929257 0 29.7234856125333 -18.4801083070832 0 32.6088257525685 -12.7147348788178 0 34.3877359638452 -6.51794563346978 0 -32.0714283052264 -5.20332158023086 -2.95958285941784 -32.5536387524453 -5.28155620085166 -2.83566066515843 -30.8560878120658 -10.1760952205972 -2.95958285941784 -33.0233045839989 -5.35775556227586 -2.62348305894606 -30.2710378885504 -11.803191693543 -2.95958285941784 -31.3200249888473 -10.3290980547886 -2.83566066515843 -33.4243725068241 -5.4228254855145 -2.35268322780531 -30.7261785383242 -11.9806587614574 -2.83566066515843 -28.7524598617842 -15.1309986749408 -2.95958285941784 -31.771892925717 -10.4781205485256 -2.62348305894606 -33.7570733145773 -5.47680341491219 -2.04125650316573 -27.5925531935485 -17.1552346899066 -2.95958285941784 -31.1694787882105 -12.1535090563983 -2.62348305894606 -29.1847679085803 -15.3585010352495 -2.83566066515843 -32.1577624581719 -10.6053772872574 -2.35268322780531 -34.0507322802925 -5.52444713127531 -1.6643732139291 -28.0074214460236 -17.413172481552 -2.83566066515843 -25.8593209579692 -19.6709579989717 -2.95958285941784 -31.5480320029966 -12.3011133829092 -2.35268322780531 -29.6058295414355 -15.5800849637004 -2.62348305894606 -32.477855633988 -10.7109415005954 -2.04125650316573 -34.2908598285594 -5.56340582192088 -1.22334926944252 -31.8620560202995 -12.4235566795761 -2.04125650316573 -23.9778426161473 -21.9251940123649 -2.95958285941784 -26.2481291708509 -19.9667209866264 -2.83566066515843 -28.411496977584 -17.6644000692182 -2.62348305894606 -29.9653922413918 -15.7693050430519 -2.35268322780531 -32.7603864507222 -10.8041179431617 -1.6643732139291 -34.4470041868874 -5.58873894090725 -0.777780551331873 -22.256418075736 -23.6707186929892 -2.95958285941784 -32.1392298833678 -12.5316314753687 -1.6643732139291 -24.3383618328543 -22.2548505998247 -2.83566066515843 -28.7565545125793 -17.8789341484983 -2.35268322780531 -26.6268226099316 -20.2547897548184 -2.62348305894606 -30.2636629180161 -15.9262701595835 -2.04125650316573 -32.9914144125861 -10.8803091490225 -1.22334926944252 -22.5910547876295 -24.0266201432865 -2.83566066515843 -32.3658774165706 -12.6200051971787 -1.22334926944252 -29.0427926136112 -18.0568981725576 -2.04125650316573 -19.5495546686542 -25.9512231168759 -2.95958285941784 -26.9502052807493 -20.5007841080959 -2.35268322780531 -24.6895022087677 -22.5759312320869 -2.62348305894606 -30.526932066631 -16.0648157017039 -1.6643732139291 -33.1416417110423 -10.9298529312133 -0.777780551331873 -18.0422753746021 -27.0208691257628 -2.95958285941784 -22.9169859873087 -24.3732628831299 -2.62348305894606 -32.513256315385 -12.6774707324106 -0.777780551331873 -29.2954411877609 -18.2139784381353 -1.6643732139291 -27.2184632731526 -20.7048456033699 -2.04125650316573 -19.8434922946926 -26.3414131260632 -2.83566066515843 -24.9893561298455 -22.8501158407794 -2.35268322780531 -30.7422095911473 -16.1781056238135 -1.22334926944252 -18.31355027993 -27.4271418137569 -2.83566066515843 -23.1953127048534 -24.6692760786641 -2.35268322780531 -29.5020341740705 -18.3424243684763 -1.22334926944252 -27.4552416721171 -20.8849608488036 -1.6643732139291 -25.2380961463689 -23.077562204834 -2.04125650316573 -14.4579428546892 -29.0967172962023 -2.95958285941784 -20.1297831877135 -26.721452414274 -2.62348305894606 -30.8821950745733 -16.2517730656397 -0.777780551331873 -18.5777680187313 -27.8228453928578 -2.62348305894606 -23.4261951027628 -24.9148300700333 -2.04125650316573 -29.6363724851688 -18.4259470942847 -0.777780551331873 -25.4576469688558 -23.2783181467116 -1.6643732139291 -27.6488574750176 -21.0322426870616 -1.22334926944252 -14.6753254739936 -29.5342014308803 -2.83566066515843 -20.3742593366549 -27.0459843637464 -2.35268322780531 -18.8033949486785 -28.1607537563414 -2.35268322780531 -23.6299838660958 -25.1315687416934 -1.6643732139291 -27.7747572958597 -21.1280135733849 -0.777780551331873 -25.6371756292368 -23.4424780660441 -1.22334926944252 -20.5770614247808 -27.3151957256788 -2.04125650316573 -8.87576751034486 -31.2549487298713 -2.95958285941784 -14.8870529246322 -29.9603044966479 -2.62348305894606 -18.9905609062938 -28.4410613528344 -2.04125650316573 -23.7966237505084 -25.3087978813304 -1.22334926944252 -25.7539152023471 -23.5492240243998 -0.777780551331873 -20.7560650522324 -27.5528156179711 -1.6643732139291 -9.00921924750608 -31.7248829860384 -2.83566066515843 -15.0678561322059 -30.32417229374 -2.35268322780531 -19.1557632750573 -28.6884753564977 -1.6643732139291 -23.9049823208234 -25.4240421774778 -0.777780551331873 -20.902437910579 -27.7471195174506 -1.22334926944252 -15.217839139524 -30.6260142090823 -2.04125650316573 -2.99243397991115 -32.3526877999409 -2.95958285941784 -9.13919926238879 -32.1825919893817 -2.62348305894606 -19.290850721417 -28.8907879879608 -1.22334926944252 -20.9976177273393 -27.8734667771624 -0.777780551331873 -15.3502219104026 -30.892435517968 -1.6643732139291 -3.03742676644977 -32.8391271285629 -2.83566066515843 -9.25019480661508 -32.5734494605799 -2.35268322780531 -19.3786921322931 -29.0223429730071 -0.777780551331873 2.42809877043144 -32.3999290950706 -2.95958285941784 -15.4584724796519 -31.1102905919752 -1.22334926944252 -9.34226975232745 -32.8976803177077 -2.04125650316573 -3.08124907396189 -33.3129118279515 -2.62348305894606 2.46460648635971 -32.8870787209027 -2.83566066515843 -15.528863052479 -31.2519521422007 -0.777780551331873 -9.42353986858827 -33.1838632662856 -1.6643732139291 -3.11867083357584 -33.717497029778 -2.35268322780531 7.74508298466855 -31.5541559634412 -2.95958285941784 2.50016446080525 -33.3615552392509 -2.62348305894606 -9.48999516552617 -33.4178776088426 -1.22334926944252 -3.14971357956114 -34.0531155517094 -2.04125650316573 7.86153429747694 -32.0285889545115 -2.83566066515843 2.53052894975171 -33.7667312151436 -2.35268322780531 -9.53320811536367 -33.5700468190054 -0.777780551331873 -3.17711351507846 -34.3493498430861 -1.6643732139291 12.8490849805419 -29.8421192975195 -2.95958285941784 7.97495615090446 -32.4906796590009 -2.62348305894606 2.55571742637767 -34.1028398062075 -2.04125650316573 -3.19951868606455 -34.5915832580531 -1.22334926944252 14.4579428546724 -29.0967172962106 -2.95958285941784 13.0422775928525 -30.2908109353057 -2.83566066515843 8.07181196646736 -32.8852788539078 -2.35268322780531 2.57795008052682 -34.3995066579846 -1.6643732139291 -3.21408778099806 -34.7490969686565 -0.777780551331873 14.6753254739765 -29.5342014308888 -2.83566066515843 17.6001625736906 -27.3109016032836 -2.95958285941784 13.2304443350586 -30.7278299430594 -2.62348305894606 8.15215747963227 -33.2126136104736 -2.04125650316573 2.59612991957685 -34.6420937814384 -1.22334926944252 19.5495546686391 -25.9512231168873 -2.95958285941784 14.8870529246148 -29.9603044966565 -2.62348305894606 17.8647900852879 -27.721535078997 -2.83566066515843 13.3911280368977 -31.1010193341102 -2.35268322780531 8.22307459118123 -33.5015362214672 -1.6643732139291 2.60795146743114 -34.7998374930771 -0.777780551331873 21.8684111589951 -24.0296413286947 -2.95958285941784 19.8434922946774 -26.3414131260747 -2.83566066515843 15.0678561321883 -30.3241722937487 -2.35268322780531 18.1225333610778 -28.1214860007305 -2.62348305894606 13.5244211634536 -31.4105938594748 -2.04125650316573 8.2810641440796 -33.73779081035 -1.22334926944252 15.2178391395063 -30.6260142090912 -2.04125650316573 23.9778426161346 -21.9251940123788 -2.95958285941784 22.1972139870009 -24.3909393657307 -2.83566066515843 20.129783187698 -26.7214524142857 -2.62348305894606 18.3426314676428 -28.4630213533898 -2.35268322780531 13.6420725810911 -31.6838403704894 -1.6643732139291 8.31877219379065 -33.8914167539344 -0.777780551331873 25.5357187456917 -20.0892542705175 -2.95958285941784 15.3502219103847 -30.8924355179769 -1.6643732139291 24.3383618328415 -22.2548505998388 -2.83566066515843 20.3742593366393 -27.0459843637582 -2.35268322780531 22.5174630702035 -24.7428383011061 -2.62348305894606 18.5252110599556 -28.7463376727444 -2.04125650316573 13.7382771917648 -31.9072764729855 -1.22334926944252 25.9196614325975 -20.3913065581139 -2.83566066515843 15.4584724796338 -31.1102905919842 -1.22334926944252 20.5770614247649 -27.3151957256907 -2.04125650316573 27.5925531935385 -17.1552346899225 -2.95958285941784 22.7909375832671 -25.0433399888455 -2.35268322780531 24.6895022087546 -22.5759312321012 -2.62348305894606 18.6863652651447 -28.9964073310471 -1.6643732139291 13.8008348087905 -32.052567119991 -0.777780551331873 28.5022395212795 -15.5972244734821 -2.95958285941784 26.2936159214614 -20.685501011272 -2.62348305894606 15.5288630524609 -31.2519521422097 -0.777780551331873 20.7560650522164 -27.5528156179831 -1.6643732139291 23.0177948965004 -25.292617351986 -2.04125650316573 28.0074214460135 -17.4131724815682 -2.83566066515843 24.9893561298323 -22.8501158407939 -2.35268322780531 18.8181424921424 -29.2008915149301 -1.22334926944252 28.9307853763468 -15.8317367788634 -2.83566066515843 26.6129517981711 -20.9367263513068 -2.35268322780531 23.2180309116122 -25.5126424644299 -1.6643732139291 20.9024379105629 -27.7471195174627 -1.22334926944252 25.2380961463556 -23.0775622048486 -2.04125650316573 30.2710378885435 -11.8031916935606 -2.95958285941784 28.4114969775738 -17.6644000692347 -2.62348305894606 18.9038314133025 -29.3338585647795 -0.777780551331873 29.3481826901958 -16.0601482899614 -2.62348305894606 26.8778528238565 -21.1451271452893 -2.04125650316573 20.9976177273232 -27.8734667771746 -0.777780551331873 25.4576469688423 -23.2783181467263 -1.6643732139291 23.3817656822039 -25.6925589559274 -1.22334926944252 30.7261785383173 -11.9806587614752 -2.83566066515843 28.756554512569 -17.878934148515 -2.35268322780531 29.7046162700125 -16.2551987367916 -2.35268322780531 27.1116681901161 -21.3290724805243 -1.6643732139291 23.4882351850765 -25.8095507185147 -0.777780551331873 25.6371756292233 -23.442478066059 -1.22334926944252 29.0427926136007 -18.0568981725745 -2.04125650316573 31.9224146910839 -6.05066188900376 -2.95958285941784 31.1694787882035 -12.1535090564163 -2.62348305894606 30.0002912247186 -16.4170003607059 -2.04125650316573 27.3028610948186 -21.4794862172803 -1.22334926944252 25.7539152023334 -23.5492240244147 -0.777780551331873 29.2954411877503 -18.2139784381522 -1.6643732139291 32.4023846418449 -6.14163670770215 -2.83566066515843 31.5480320029894 -12.3011133829275 -2.35268322780531 30.2612692547186 -16.5598148547571 -1.6643732139291 27.427185411779 -21.5772936391233 -0.777780551331873 29.5020341740598 -18.3424243684934 -1.22334926944252 31.8620560202923 -12.4235566795946 -2.04125650316573 32.8698682630419 -6.23024483330552 -2.62348305894606 30.4746733111649 -16.6765955368315 -1.22334926944252 29.6363724851582 -18.4259470943019 -0.777780551331873 32.1392298833605 -12.5316314753873 -1.6643732139291 33.2690727022664 -6.30591113579897 -2.35268322780531 30.613440560899 -16.7525328659686 -0.777780551331873 32.3658774165633 -12.6200051971974 -1.22334926944252 33.6002276808374 -6.36867915719031 -2.04125650316573 32.5132563153777 -12.6774707324294 -0.777780551331873 33.8925222176475 -6.42408146404447 -1.6643732139291 34.1315340602626 -6.46938442314472 -1.22334926944252 34.2869529243924 -6.49884294021251 -0.777780551331873 6.2800603020933 4.71238898036521 3.14471765867608 4.7123889803847 6.11419730179668 4.71238898038674 5.94833321142966 4.71238898038437 5.78247277652483 4.71238898038384 5.61659953613803 4.7123889803867 5.45073427662836 4.71238898038469 5.28484371733539 4.71238898038469 5.11896696555273 4.71238898038469 4.95308417677482 4.71238898038469 4.78719063923128 4.71238898038469 4.62131407987225 4.71238898038469 4.45542104559222 4.71238898038469 4.28954440680304 4.71238898038469 4.12366004374737 4.71238898038469 3.95777553189782 4.71238898038469 3.79190109365812 4.71238898038469 3.62601951690066 4.71238898038469 3.46015275507664 4.71238898038469 3.30243284845661 4.71238898038469 6.2803281604339 6.28318530717959 6.28010750651712 4.87672242341747 6.28015309748005 5.04491673286977 6.28019622247578 5.21879296818801 6.28023208940129 5.38173478954792 6.280261195619 5.5348512912066 6.28028641369702 5.69507348432238 6.28030671374534 5.86316051798767 6.28031976211624 6.02092919273959 6.28032602790913 6.1511706307217 3.1444498003349 6.28318530717959 3.14467045425237 4.87672242302604 3.14462486328954 5.04491673203741 3.14458173829391 5.21879296686467 3.14454587136846 5.38173478772385 3.14451676515079 5.53485128886693 3.14449154707276 5.6950734813964 3.14447124702427 5.86316051564076 3.14445819865319 6.02092919105511 3.14445193286038 6.15117062991462 3.3289132332819 6.28318530717959 3.5133766662289 6.28318530717959 3.6978400991759 6.28318530717959 3.8823035321229 6.28318530717959 4.0667669650699 6.28318530717959 4.2512303980169 6.28318530717959 4.4356938309639 6.28318530717959 4.6201572639109 6.28318530717959 4.8046206968579 6.28318530717959 4.9890841298049 6.28318530717959 5.1735475627519 6.28318530717959 5.3580109956989 6.28318530717959 5.5424744286459 6.28318530717959 5.7269378615929 6.28318530717959 5.9114012945399 6.28318530717959 6.0958647274869 6.28318530717959 3.30243284845661 4.87672242302604 3.30243284845661 5.04491673203741 3.46015275507664 4.87672242302604 3.30243284845661 5.21879296686467 3.5133766662289 4.87672242302604 3.46015275507664 5.04491673203741 3.30243284845661 5.38173478772385 3.5133766662289 5.04491673203741 3.62601951690066 4.87672242302604 3.46015275507664 5.21879296686467 3.30243284845661 5.53485128886693 3.6978400991759 4.87672242302604 3.5133766662289 5.21879296686467 3.62601951690066 5.04491673203741 3.46015275507664 5.38173478772385 3.30243284845661 5.6950734813964 3.6978400991759 5.04491673203741 3.79190109365812 4.87672242302604 3.5133766662289 5.38173478772385 3.62601951690066 5.21879296686467 3.46015275507664 5.53485128886693 3.30243284845661 5.86316051564076 3.5133766662289 5.53485128886693 3.8823035321229 4.87672242302604 3.79190109365812 5.04491673203741 3.6978400991759 5.21879296686467 3.62601951690066 5.38173478772385 3.46015275507664 5.6950734813964 3.30243284845661 6.02092919105511 3.95777553189782 4.87672242302604 3.5133766662289 5.6950734813964 3.8823035321229 5.04491673203741 3.6978400991759 5.38173478772385 3.79190109365812 5.21879296686467 3.62601951690066 5.53485128886693 3.46015275507664 5.86316051564076 3.95777553189782 5.04491673203741 3.5133766662289 5.86316051564076 3.6978400991759 5.53485128886693 4.0667669650699 4.87672242302604 3.79190109365812 5.38173478772385 3.8823035321229 5.21879296686467 3.62601951690066 5.6950734813964 3.46015275507664 6.02092919105511 4.12366004374737 4.87672242302604 3.95777553189782 5.21879296686467 3.5133766662289 6.02092919105511 3.6978400991759 5.6950734813964 3.79190109365812 5.53485128886693 4.0667669650699 5.04491673203741 3.8823035321229 5.38173478772385 3.62601951690066 5.86316051564076 4.12366004374737 5.04491673203741 3.95777553189782 5.38173478772385 3.6978400991759 5.86316051564076 3.79190109365812 5.6950734813964 3.8823035321229 5.53485128886693 4.2512303980169 4.87672242302604 4.0667669650699 5.21879296686467 3.62601951690066 6.02092919105511 4.12366004374737 5.21879296686467 3.95777553189782 5.53485128886693 3.6978400991759 6.02092919105511 3.8823035321229 5.6950734813964 3.79190109365812 5.86316051564076 4.2512303980169 5.04491673203741 4.0667669650699 5.38173478772385 4.12366004374737 5.38173478772385 3.95777553189782 5.6950734813964 3.79190109365812 6.02092919105511 3.8823035321229 5.86316051564076 4.0667669650699 5.53485128886693 4.4356938309639 4.87672242302604 4.2512303980169 5.21879296686467 4.12366004374737 5.53485128886693 3.95777553189782 5.86316051564076 3.8823035321229 6.02092919105511 4.0667669650699 5.6950734813964 4.4356938309639 5.04491673203741 4.2512303980169 5.38173478772385 4.12366004374737 5.6950734813964 3.95777553189782 6.02092919105511 4.0667669650699 5.86316051564076 4.2512303980169 5.53485128886693 4.6201572639109 4.87672242302604 4.4356938309639 5.21879296686467 4.12366004374737 5.86316051564076 4.0667669650699 6.02092919105511 4.2512303980169 5.6950734813964 4.6201572639109 5.04491673203741 4.4356938309639 5.38173478772385 4.12366004374737 6.02092919105511 4.78719063923128 4.87672242302604 4.2512303980169 5.86316051564076 4.4356938309639 5.53485128886693 4.6201572639109 5.21879296686467 4.78719063923128 5.04491673203741 4.2512303980169 6.02092919105511 4.4356938309639 5.6950734813964 4.6201572639109 5.38173478772385 4.95308417677482 4.87672242302604 4.78719063923128 5.21879296686467 4.4356938309639 5.86316051564076 4.6201572639109 5.53485128886693 4.95308417677482 5.04491673203741 4.78719063923128 5.38173478772385 4.4356938309639 6.02092919105511 4.6201572639109 5.6950734813964 5.11896696555273 4.87672242302604 4.95308417677482 5.21879296686467 4.78719063923128 5.53485128886693 4.6201572639109 5.86316051564076 5.1735475627519 4.87672242302604 5.11896696555273 5.04491673203741 4.95308417677482 5.38173478772385 4.78719063923128 5.6950734813964 4.6201572639109 6.02092919105511 5.1735475627519 5.04491673203741 5.28484371733539 4.87672242302604 5.11896696555273 5.21879296686467 4.95308417677482 5.53485128886693 4.78719063923128 5.86316051564076 5.3580109956989 4.87672242302604 5.1735475627519 5.21879296686467 5.28484371733539 5.04491673203741 5.11896696555273 5.38173478772385 4.95308417677482 5.6950734813964 4.78719063923128 6.02092919105511 5.45073427662836 4.87672242302604 5.3580109956989 5.04491673203741 5.1735475627519 5.38173478772385 5.28484371733539 5.21879296686467 5.11896696555273 5.53485128886693 4.95308417677482 5.86316051564076 5.1735475627519 5.53485128886693 5.5424744286459 4.87672242302604 5.45073427662836 5.04491673203741 5.3580109956989 5.21879296686467 5.28484371733539 5.38173478772385 5.11896696555273 5.6950734813964 4.95308417677482 6.02092919105511 5.61659953613803 4.87672242302604 5.1735475627519 5.6950734813964 5.5424744286459 5.04491673203741 5.3580109956989 5.38173478772385 5.45073427662836 5.21879296686467 5.28484371733539 5.53485128886693 5.11896696555273 5.86316051564076 5.61659953613803 5.04491673203741 5.1735475627519 5.86316051564076 5.3580109956989 5.53485128886693 5.7269378615929 4.87672242302604 5.45073427662836 5.38173478772385 5.5424744286459 5.21879296686467 5.28484371733539 5.6950734813964 5.11896696555273 6.02092919105511 5.78247277652483 4.87672242302604 5.61659953613803 5.21879296686467 5.1735475627519 6.02092919105511 5.3580109956989 5.6950734813964 5.45073427662836 5.53485128886693 5.7269378615929 5.04491673203741 5.5424744286459 5.38173478772385 5.28484371733539 5.86316051564076 5.78247277652483 5.04491673203741 5.61659953613803 5.38173478772385 5.45073427662836 5.6950734813964 5.3580109956989 5.86316051564076 5.5424744286459 5.53485128886693 5.9114012945399 4.87672242302604 5.7269378615929 5.21879296686467 5.28484371733539 6.02092919105511 5.78247277652483 5.21879296686467 5.61659953613803 5.53485128886693 5.3580109956989 6.02092919105511 5.5424744286459 5.6950734813964 5.45073427662836 5.86316051564076 5.9114012945399 5.04491673203741 5.7269378615929 5.38173478772385 5.78247277652483 5.38173478772385 5.61659953613803 5.6950734813964 5.45073427662836 6.02092919105511 5.5424744286459 5.86316051564076 5.7269378615929 5.53485128886693 6.0958647274869 4.87672242302604 5.9114012945399 5.21879296686467 5.78247277652483 5.53485128886693 5.61659953613803 5.86316051564076 5.5424744286459 6.02092919105511 5.7269378615929 5.6950734813964 6.0958647274869 5.04491673203741 5.9114012945399 5.38173478772385 5.78247277652483 5.6950734813964 5.61659953613803 6.02092919105511 5.7269378615929 5.86316051564076 5.9114012945399 5.53485128886693 6.0958647274869 5.21879296686467 5.78247277652483 5.86316051564076 5.7269378615929 6.02092919105511 5.9114012945399 5.6950734813964 6.0958647274869 5.38173478772385 5.78247277652483 6.02092919105511 5.9114012945399 5.86316051564076 6.0958647274869 5.53485128886693 5.9114012945399 6.02092919105511 6.0958647274869 5.6950734813964 6.0958647274869 5.86316051564076 6.0958647274869 6.02092919105511 153 146 141 153 141 149 154 46 148 154 143 150 154 148 143 155 150 145 155 145 151 156 147 142 156 142 152 157 10 9 157 11 10 157 149 11 158 156 152 158 152 146 158 146 153 159 150 155 159 154 150 160 147 156 160 151 147 161 149 157 161 153 149 162 156 158 163 154 159 163 47 46 163 48 47 163 46 154 164 155 151 164 151 160 41 31 40 165 157 9 166 162 158 166 153 161 166 158 153 167 156 162 167 160 156 167 164 160 168 155 164 168 159 155 169 9 8 169 165 9 170 161 157 170 157 165 170 165 169 171 162 166 172 164 167 173 163 159 173 48 163 173 159 168 174 170 169 175 169 8 176 166 161 176 170 174 176 161 170 177 167 162 177 162 171 178 168 164 178 164 172 179 8 7 179 175 8 180 176 174 181 174 169 181 169 175 182 166 176 182 176 180 182 171 166 183 172 167 183 167 177 184 173 168 184 49 48 184 168 178 184 48 173 22 3 1 185 179 7 186 175 179 186 181 175 187 182 180 188 174 181 188 180 174 188 181 186 189 177 171 189 171 182 189 182 187 190 172 183 190 178 172 191 189 187 192 7 6 192 185 7 193 186 179 193 179 185 194 186 193 21 56 30 194 188 186 57 2 20 195 188 194 57 32 2 195 187 180 195 180 188 196 177 189 58 32 57 196 183 177 58 33 32 196 190 183 196 189 191 197 50 49 197 49 184 197 178 190 197 184 178 59 20 19 59 57 20 198 192 6 60 34 33 60 33 58 199 196 191 200 185 192 200 193 185 61 19 18 61 59 19 62 57 59 62 58 57 62 59 61 63 35 34 201 195 194 202 194 193 63 34 60 203 187 195 203 195 201 64 62 61 203 191 187 204 197 190 204 196 199 204 190 196 65 61 18 205 200 192 66 58 62 205 192 198 66 62 64 66 60 58 67 35 63 67 36 35 206 204 199 207 203 201 68 18 17 68 65 18 208 6 5 208 198 6 69 66 64 209 194 202 209 201 194 209 207 201 210 193 200 70 64 61 210 200 205 210 202 193 70 61 65 71 66 69 211 191 203 71 60 66 211 199 191 71 63 60 72 37 36 212 50 197 212 51 50 72 36 67 212 204 206 212 197 204 213 208 5 73 65 68 73 70 65 214 210 205 74 68 17 74 73 68 75 71 69 215 51 212 215 212 206 216 203 207 216 211 203 76 69 64 217 207 209 76 64 70 76 70 73 77 63 71 77 71 75 77 67 63 218 205 198 78 37 72 78 38 37 218 198 208 218 208 213 219 209 202 219 202 210 219 210 214 79 77 75 220 199 211 220 206 199 80 17 16 80 74 17 220 215 206 81 73 74 221 218 213 82 76 73 82 73 81 83 75 69 222 219 214 83 76 82 83 69 76 223 207 217 84 72 67 223 216 207 84 77 79 84 67 77 84 78 72 224 211 216 85 39 38 85 40 39 224 220 211 85 38 78 85 41 40 225 217 209 225 209 219 226 5 4 86 80 16 226 213 5 87 84 79 227 205 218 88 74 80 227 214 205 88 81 74 227 218 221 228 52 51 228 51 215 228 215 220 89 83 82 229 227 221 90 81 88 90 82 81 90 89 82 230 219 222 91 79 75 91 75 83 91 87 79 230 225 219 231 220 224 92 78 84 231 228 220 92 85 78 92 84 87 231 52 228 93 88 80 232 223 217 232 217 225 93 80 86 233 216 223 233 231 224 94 92 87 233 224 216 95 91 83 234 213 226 95 83 89 96 86 16 96 16 15 234 221 213 235 214 227 97 95 89 97 89 90 235 227 229 235 222 214 236 235 229 98 90 88 98 88 93 99 94 87 237 232 225 237 225 230 99 87 91 100 85 92 100 92 94 100 42 41 100 41 85 238 52 231 238 53 52 238 231 233 239 233 223 101 96 15 239 223 232 240 222 235 102 98 93 103 42 100 240 230 222 103 100 94 241 4 3 104 91 95 241 234 226 104 99 91 241 3 22 241 226 4 105 95 97 105 104 95 242 221 234 242 229 221 106 93 86 243 235 236 106 96 101 243 240 235 106 86 96 107 97 90 107 90 98 244 239 232 107 98 102 244 232 237 245 238 233 108 94 99 245 233 239 245 53 238 109 106 101 246 230 240 246 237 230 246 244 237 110 107 102 247 22 23 111 99 104 247 234 241 247 241 22 111 108 99 247 242 234 248 236 229 112 111 104 112 104 105 113 105 97 248 229 242 113 97 107 113 112 105 249 240 243 114 15 14 114 101 15 249 246 240 250 239 244 250 54 53 115 93 106 250 245 239 115 102 93 250 53 245 251 244 246 115 106 109 116 43 42 251 246 249 116 42 103 116 103 94 116 94 108 252 243 236 252 236 248 253 242 247 117 115 109 253 23 24 253 248 242 253 247 23 118 107 110 118 113 107 254 251 249 255 54 250 119 43 116 119 108 111 255 250 244 119 116 108 255 244 251 120 112 113 121 119 111 121 111 112 256 249 243 256 243 252 122 101 114 257 252 248 257 24 25 122 109 101 257 248 253 257 253 24 258 55 54 123 110 102 123 102 115 258 54 255 258 251 254 258 255 251 123 115 117 259 249 256 124 123 117 259 254 249 260 25 26 260 252 257 125 113 118 260 256 252 260 257 25 125 120 113 261 254 259 126 44 43 261 55 258 126 43 119 261 258 254 126 119 121 262 259 256 127 120 125 262 26 27 127 112 120 262 260 26 127 121 112 262 256 260 128 118 110 263 259 262 263 261 259 263 27 28 263 262 27 128 110 123 264 261 263 264 55 261 264 263 28 129 14 13 264 28 29 264 29 30 129 114 14 264 56 55 264 30 56 129 122 114 130 109 122 130 117 109 131 128 123 131 123 124 132 127 125 133 121 127 133 126 121 133 44 126 134 118 128 134 125 118 134 132 125 135 130 122 135 122 129 136 117 130 136 124 117 137 134 128 137 128 131 138 133 127 138 44 133 138 45 44 138 127 132 139 132 134 139 134 137 140 124 136 140 131 124 141 13 12 141 129 13 142 130 135 142 136 130 143 139 137 144 138 132 144 132 139 144 45 138 145 137 131 145 131 140 146 129 141 146 135 129 147 136 142 147 140 136 148 46 45 148 139 143 148 45 144 148 144 139 149 12 11 149 141 12 150 143 137 150 137 145 151 145 140 151 140 147 152 142 135 152 135 146 +22 20 1 8.88178419700125e-015 +69.9998437496184 39.8999999999763 0 6.0001562503816 39.8999999999567 0 69.4388064143385 34.033304830834 0 67.8114017582991 28.3689929410528 0 65.1728294325297 23.0991911249595 0 61.6125867056154 18.4026448593863 0 57.2514328216547 14.4386554674188 0 52.2372929887921 11.3416768049613 0 46.740240930216 9.21675474415057 0 40.9467301835869 8.13596414097647 0 35.0532698164328 8.13596414097464 0 29.2597590698031 9.21675474414515 0 23.7627070112256 11.3416768049525 0 18.7485671783612 14.4386554674069 0 14.387413294398 18.4026448593716 0 10.8271705674808 23.0991911249427 0 8.18859824170809 28.3689929410343 0 6.56119358566519 34.0333048308146 0 80 39.9 0 0 39.9 0 80 0 0 0 0 0 69.9998437496184 39.8999999999764 6.00015625038161 39.8999999999567 69.4388064143385 34.033304830834 67.8114017582991 28.3689929410528 65.1728294325297 23.0991911249595 61.6125867056154 18.4026448593863 57.2514328216547 14.4386554674188 52.2372929887921 11.3416768049613 46.740240930216 9.21675474415057 40.9467301835869 8.13596414097647 35.0532698164328 8.13596414097464 29.2597590698031 9.21675474414515 23.7627070112256 11.3416768049525 18.7485671783612 14.4386554674069 14.387413294398 18.4026448593716 10.8271705674808 23.0991911249427 8.18859824170809 28.3689929410343 6.5611935856652 34.0333048308146 80 39.9 0 39.9 80 0 0 0 14 15 22 16 22 15 13 14 22 17 22 16 12 13 22 20 22 17 18 20 17 11 12 22 2 20 18 10 11 22 21 7 8 21 8 9 21 9 10 21 10 22 6 7 21 5 6 21 4 5 21 19 1 3 19 3 4 19 4 21 +264 470 1 0.178476500757603 +-34.9998571425655 -0.100000000023911 0 34.9998571425655 -0.100000000044039 0 -34.387735963849 -6.51794563344987 0 -32.6088257525758 -12.714734878799 0 -29.723485612544 -18.4801083070659 0 -25.8296162381791 -23.6184445929107 0 -21.0593381065312 -27.9553980210406 0 -15.5745085789603 -31.3438141030075 0 -9.56123001896417 -33.6687225852787 0 -3.22353526781181 -34.851238433909 0 3.22353526779162 -34.8512384339108 0 9.56123001894467 -33.6687225852843 0 15.5745085789421 -31.3438141030165 0 21.059338106515 -27.9553980210528 0 25.8296162381655 -23.6184445929257 0 29.7234856125333 -18.4801083070832 0 32.6088257525685 -12.7147348788178 0 34.3877359638452 -6.51794563346978 0 -31.9998437496185 -0.100000000000002 3 -32.4906305491415 -0.1 2.95958287234369 -32.9791483547404 -0.0999999999999989 2.83566065408692 -33.4549576464089 -0.0999999999999971 2.62348305945832 -33.861271588951 -0.100000000000003 2.35268321632283 -34.1983241503142 -0.099999999999997 2.04125652100866 -34.4958241600867 -0.100000000000002 1.66437319348331 -34.7390925681328 -0.10000000000011 1.22334926543459 -34.8972792571 -0.100000000002558 0.777780562804637 -34.9737531763378 -0.0999999999955189 0.394894657417481 31.9998437495618 -0.100000000000009 3 32.4906305503014 -0.0999999999999957 2.95958287215122 32.9791483571035 -0.0999999999999972 2.83566065327041 33.4549576498852 -0.100000000000012 2.62348305752974 33.8612715932444 -0.0999999999999932 2.35268321292567 34.1983241550921 -0.100000000000003 2.04125651586307 34.4958241649575 -0.099999999999994 1.66437318617874 34.7390925709804 -0.100000000000201 1.22334925899447 34.8972792584575 -0.100000000004715 0.777780557934165 34.9737531766234 -0.0999999999917521 0.39489465501218 31.5441749829062 -5.38191696244104 3 30.2226860550529 -10.5161416630456 3 28.0717025150097 -15.3616254880711 3 25.1499948836849 -19.7857959483434 3 21.5380751760828 -23.6666696082027 3 17.3343103362801 -26.8983590647438 3 12.6549929007602 -29.3913444604365 3 7.62809087160236 -31.077520125616 3 2.3914247747656 -31.910516242569 3 -2.91037685549466 -31.8673760046316 3 -8.13276940894826 -30.9492824766819 3 -13.1314007185059 -29.1816089697677 3 -17.7697381963231 -26.6127114418572 3 -21.9202267957307 -23.3131647228423 3 -25.4687103439605 -19.3738165529245 3 -28.318141563916 -14.9024449263158 3 -30.3899979484982 -10.0223764335194 3 -31.5869774231684 -5.12472856223543 3 -34.5224907335519 -5.60098600346165 0.394894663753519 -33.2142677096426 -10.9538044154231 0.394894663753519 -34.2908598313389 -5.56340582272448 1.22334926301116 -32.5845052817269 -12.7052519142384 0.394894663753519 -34.0507322850462 -5.52444713239673 1.66437320662298 -32.9914144150959 -10.8803091505828 1.22334926301116 -30.949869762279 -16.2873869100331 0.394894663753519 -33.75707331924 -5.47680341601583 2.04125649801846 -32.3658774192467 -12.6200051982221 1.22334926301116 -29.7013170999195 -18.4663253840384 0.394894663753519 -32.7603864551326 -10.8041179453437 1.66437320662298 -33.4243725110092 -5.42282548653725 2.35268322440722 -32.1392298879068 -12.5316314771386 1.66437320662298 -30.7422095933838 -16.1781056257311 1.22334926301116 -27.8356224001219 -21.1743131236171 0.394894663753519 -32.4778556383122 -10.7109415027427 2.04125649801846 -33.0233045873779 -5.35775556316369 2.62348305701724 -31.8620560247522 -12.4235566813123 2.04125649801846 -29.5020341765097 -18.3424243699929 1.22334926301116 -30.5269320706392 -16.0648157045487 1.66437320662298 -25.8103518698905 -23.6008293712656 0.394894663753519 -32.1577624620383 -10.6053772892467 2.35268322440722 -32.5536387547262 -5.28155620155651 2.8356606643419 -31.5480320069981 -12.3011133844695 2.35268322440722 -29.2954411918983 -18.2139784407077 1.66437320662298 -27.6488574769312 -21.0322426892902 1.22334926301116 -23.9573672696134 -25.4797559675914 0.394894663753519 -30.2636629219449 -15.9262701623802 2.04125649801846 -31.7718929288098 -10.4781205502511 2.62348305701724 -32.0714283063197 -5.20332158073806 2.95958285922541 -31.1694787914505 -12.1535090576616 2.62348305701724 -29.0427926176699 -18.0568981750811 2.04125649801846 -25.6371756313565 -23.4424780679824 1.22334926301116 -27.4552416756248 -20.8849608522393 1.66437320662298 -29.965392244895 -15.7693050456174 2.35268322440722 -21.043631529962 -27.9345481919852 0.394894663753519 -31.3200249908859 -10.3290980561564 2.8356606643419 -23.7966237520572 -25.3087978838166 1.22334926301116 -19.421158249975 -29.0859420148046 0.394894663753519 -28.7565545162267 -17.878934150766 2.35268322440722 -30.726178540527 -11.9806587623163 2.8356606643419 -27.2184632765897 -20.7048456067453 2.04125649801846 -25.4576469724512 -23.2783181499992 1.66437320662298 -29.605829544219 -15.5800849658785 2.62348305701724 -30.8560878129639 -10.1760952215786 2.95958285922541 -23.6299838690173 -25.1315687456337 1.66437320662298 -28.4114969805373 -17.6644000710544 2.62348305701724 -26.9502052838046 -20.5007841111734 2.35268322440722 -30.2710378896314 -11.8031916939646 2.95958285922541 -25.2380961498959 -23.077562208059 2.04125649801846 -20.9024379123072 -27.7471195197447 1.22334926301116 -29.1847679103828 -15.3585010369013 2.8356606643419 -15.5628927242603 -31.3204371092154 0.394894663753519 -19.2908507225668 -28.8907879906468 1.22334926301116 -23.4261951056244 -24.9148300739027 2.04125649801846 -26.6268226123407 -20.2547897573953 2.62348305701724 -24.9893561330151 -22.8501158436777 2.35268322440722 -28.0074214480315 -17.4131724828003 2.8356606643419 -20.7560650551638 -27.5528156218624 1.66437320662298 -28.7524598625256 -15.1309986760237 2.95958285922541 -19.1557632773207 -28.6884753608446 1.66437320662298 -23.1953127073873 -24.6692760821769 2.35268322440722 -24.6895022113341 -22.5759312344336 2.62348305701724 -27.5925531945339 -17.1552346905192 2.95958285922541 -26.2481291723791 -19.9667209885227 2.8356606643419 -20.5770614276564 -27.3151957294961 2.04125649801846 -15.45847248093 -31.1102905945474 1.22334926301116 -9.55409901652575 -33.6436116170897 0.394894663753519 -18.9905609085094 -28.4410613571016 2.04125649801846 -22.9169859892876 -24.3732628860426 2.62348305701724 -20.3742593392392 -27.0459843671768 2.35268322440722 -24.3383618345992 -22.2548506014202 2.8356606643419 -25.8593209585444 -19.6709580001321 2.95958285922541 -15.3502219125705 -30.8924355223309 1.66437320662298 -18.8033949506296 -28.160753760203 2.35268322440722 -22.5910547888516 -24.0266201453828 2.8356606643419 -20.1297831898059 -26.7214524170516 2.62348305701724 -23.9778426170037 -21.925194013148 2.95958285922541 -15.2178391416507 -30.6260142133623 2.04125649801846 -9.48999516631081 -33.4178776116056 1.22334926301116 -3.22113107527492 -34.8252455160771 0.394894663753519 -18.5777680202336 -27.8228453960362 2.62348305701724 -22.2564180761392 -23.6707186942027 2.95958285922541 -15.0678561341171 -30.3241722975863 2.35268322440722 -19.8434922961153 -26.3414131279517 2.8356606643419 -9.42353986991917 -33.1838632709722 1.66437320662298 -18.3135502808203 -27.4271418160054 2.8356606643419 -14.8870529261797 -29.9603044997622 2.62348305701724 -19.5495546693524 -25.9512231178028 2.95958285922541 -9.34226975363302 -32.8976803223051 2.04125649801846 -3.19951868632909 -34.5915832609131 1.22334926301116 2.61366648584828 -34.8760972323439 0.394894663753519 -18.0422753748301 -27.0208691270058 2.95958285922541 -9.25019480778836 -32.5734494647115 2.35268322440722 -14.6753254750458 -29.5342014329977 2.8356606643419 -3.17711351552717 -34.3493498479373 1.66437320662298 2.59612992016785 -34.6420937842744 1.22334926301116 -9.13919926333878 -32.182591992727 2.62348305701724 8.33700180220091 -33.9656857962451 0.394894663753519 -14.4579428552056 -29.0967172972414 2.95958285922541 -3.1497135800013 -34.0531155564683 2.04125649801846 2.57795008126462 -34.3995066628148 1.66437320662298 -3.11867083397141 -33.7174970340547 2.35268322440722 -9.00921924815197 -31.7248829883128 2.8356606643419 8.2810641450921 -33.737790813059 1.22334926301116 13.8310777107684 -32.1228065401801 0.394894663753519 2.55571742710533 -34.1028398109456 2.04125649801846 -3.08124907428217 -33.3129118314143 2.62348305701724 -8.87576751066185 -31.2549487309875 2.95958285922541 15.5628927242421 -31.3204371092244 0.394894663753519 8.22307459266811 -33.5015362261188 1.66437320662298 2.53052895043953 -33.766731219399 2.35268322440722 -3.03742676666753 -32.8391271309172 2.8356606643419 13.7382771931739 -31.9072764755059 1.22334926301116 18.9452569303936 -29.3981402558142 0.394894663753519 8.15215748109424 -33.2126136150358 2.04125649801846 2.50016446142758 -33.3615552426916 2.62348305701724 -2.99243398001802 -32.3526878010964 2.95958285922541 15.458472480912 -31.1102905945564 1.22334926301116 21.0436315299458 -27.9345481919974 0.394894663753519 13.6420725832892 -31.6838403748473 1.66437320662298 8.07181196781071 -32.8852788580005 2.35268322440722 2.4646064868937 -32.8870787232337 2.8356606643419 15.3502219125526 -30.8924355223398 1.66437320662298 18.8181424939147 -29.2008915172051 1.22334926301116 23.5397068822562 -25.8661093045826 0.394894663753519 13.5244211656126 -31.4105938637485 2.04125649801846 7.97495615204914 -32.4906796623007 2.62348305701724 2.42809877087016 -32.3999290962014 2.95958285922541 15.217839141633 -30.6260142133711 2.04125649801846 20.9024379122911 -27.7471195197568 1.22334926301116 18.6863652679986 -28.9964073350039 1.66437320662298 25.8103518698768 -23.6008293712805 0.394894663753519 13.3911280388626 -31.1010193379403 2.35268322440722 7.86153429835177 -32.0285889567313 2.8356606643419 15.0678561340995 -30.324172297595 2.35268322440722 23.3817656842977 -25.6925589579056 1.22334926301116 20.7560650551478 -27.5528156218744 1.66437320662298 27.487288853737 -21.6245777329958 0.394894663753519 18.5252110627574 -28.7463376766244 2.04125649801846 13.2304443366971 -30.7278299461401 2.62348305701724 7.74508298525176 -31.5541559644929 2.95958285922541 14.8870529261623 -29.9603044997708 2.62348305701724 20.5770614276406 -27.315195729508 2.04125649801846 25.637175631343 -23.4424780679972 1.22334926301116 23.2180309150508 -25.5126424678879 1.66437320662298 18.3426314701802 -28.4630213568641 2.35268322440722 29.7013170999088 -18.4663253840556 0.394894663753519 13.042277594047 -30.2908109373656 2.8356606643419 27.3028610971848 -21.4794862189179 1.22334926301116 30.6805263051579 -16.7892440657006 0.394894663753519 20.3742593392235 -27.0459843671886 2.35268322440722 14.6753254750286 -29.5342014330062 2.8356606643419 23.0177948998752 -25.2926173553768 2.04125649801846 25.4576469724377 -23.2783181500139 1.66437320662298 18.1225333631699 -28.1214860035194 2.62348305701724 12.8490849812564 -29.8421192984752 2.95958285922541 27.1116681940531 -21.3290724833993 1.66437320662298 20.1297831897904 -26.7214524170633 2.62348305701724 22.7909375863144 -25.0433399918795 2.35268322440722 14.4579428551887 -29.0967172972498 2.95958285922541 25.2380961498826 -23.0775622080736 2.04125649801846 29.5020341764991 -18.34242437001 1.22334926301116 17.864790086774 -27.7215350808521 2.8356606643419 32.5845052817196 -12.7052519142573 0.394894663753519 30.4746733137477 -16.676595538095 1.22334926301116 26.8778528277197 -21.1451271481082 2.04125649801846 22.5174630726988 -24.7428383035373 2.62348305701724 24.9893561330019 -22.8501158436921 2.35268322440722 19.8434922961 -26.3414131279632 2.8356606643419 29.2954411918877 -18.2139784407246 1.66437320662298 17.6001625745214 -27.3109016041286 2.95958285922541 30.2612692590551 -16.5598148569813 1.66437320662298 26.6129518016527 -20.9367263538276 2.35268322440722 24.689502211321 -22.5759312344479 2.62348305701724 22.1972139887447 -24.3909393673406 2.8356606643419 19.5495546693373 -25.9512231178141 2.95958285922541 29.0427926176594 -18.0568981750979 2.04125649801846 32.3658774192394 -12.6200051982409 1.22334926301116 34.362088737649 -6.51308438799052 0.394894663753519 30.0002912289732 -16.4170003628866 2.04125649801846 26.2936159242993 -20.685501013289 2.62348305701724 28.7565545162164 -17.8789341507827 2.35268322440722 24.3383618345863 -22.2548506014343 2.8356606643419 21.8684111599263 -24.0296413294162 2.95958285922541 32.1392298878996 -12.5316314771572 1.66437320662298 29.7046162738417 -16.2551987387409 2.35268322440722 25.919661434559 -20.3913065594445 2.8356606643419 28.4114969805271 -17.6644000710708 2.62348305701724 23.977842616991 -21.9251940131619 2.95958285922541 31.862056024745 -12.4235566813308 2.04125649801846 34.1315340630846 -6.46938442367962 1.22334926301116 29.3481826933073 -16.0601482915197 2.62348305701724 25.5357187467054 -20.0892542711056 2.95958285922541 31.5480320069909 -12.3011133844878 2.35268322440722 28.0074214480214 -17.4131724828166 2.8356606643419 33.8925222224342 -6.42408146495174 1.66437320662298 28.9307853784809 -15.8317367798889 2.8356606643419 31.1694787914435 -12.1535090576797 2.62348305701724 27.592553194524 -17.1552346905352 2.95958285922541 33.600227685533 -6.36867915808033 2.04125649801846 28.5022395223564 -15.5972244739312 2.95958285922541 33.2690727064862 -6.3059111365988 2.35268322440722 30.7261785405201 -11.9806587623341 2.8356606643419 32.8698682664587 -6.23024483395314 2.62348305701724 30.2710378896246 -11.8031916939821 2.95958285922541 32.4023846441679 -6.14163670814246 2.8356606643419 31.922414692224 -6.05066188921985 2.95958285922541 3.1444498003349 0 6.2803281604339 0 3.3289132332819 0 3.5133766662289 0 3.6978400991759 0 3.8823035321229 0 4.0667669650699 0 4.2512303980169 0 4.4356938309639 0 4.6201572639109 0 4.8046206968579 0 4.9890841298049 0 5.1735475627519 0 5.3580109956989 0 5.5424744286459 0 5.7269378615929 0 5.9114012945399 0 6.0958647274869 0 3.14471765867608 1.5707963267949 3.14467045425237 1.40646288415338 3.14462486328954 1.23826857514174 3.14458173829391 1.06439234031443 3.14454587136846 0.901450519455078 3.14451676515079 0.748334018311952 3.14449154707276 0.588111825782596 3.14447124702427 0.420024791538331 3.14445819865319 0.262256116124096 3.14445193286038 0.132014677264815 6.2800603020933 1.57079632681381 6.28010750651712 1.40646288376147 6.28015309748005 1.23826857430838 6.28019622247578 1.06439233898936 6.28023208940129 0.901450517630194 6.280261195619 0.748334015971359 6.28028641369702 0.588111822856026 6.28030671374534 0.420024789190958 6.28031976211624 0.262256114439392 6.28032602790913 0.132014676457591 6.11419730179794 1.57079632679291 5.94833321143218 1.57079632679521 5.78247277652861 1.57079632679572 5.61659953614309 1.57079632679295 5.45073427663461 1.5707963267949 5.28484371734279 1.5707963267949 5.1189669655613 1.5707963267949 4.95308417678454 1.5707963267949 4.78719063924214 1.5707963267949 4.62131407988426 1.5707963267949 4.45542104560536 1.5707963267949 4.28954440681732 1.57079632679489 4.12366004376278 1.5707963267949 3.95777553191436 1.5707963267949 3.79190109367583 1.5707963267949 3.62601951691953 1.5707963267949 3.46015275509667 1.5707963267949 3.30243284846663 1.5707963267949 3.30243284846663 0.132014676457591 3.46015275509667 0.132014676457591 3.30243284846663 0.420024789190958 3.5133766662289 0.132014676457591 3.30243284846663 0.588111822856026 3.46015275509667 0.420024789190958 3.62601951691953 0.132014676457591 3.30243284846663 0.748334015971359 3.5133766662289 0.420024789190958 3.6978400991759 0.132014676457591 3.46015275509667 0.588111822856026 3.30243284846663 0.901450517630194 3.5133766662289 0.588111822856026 3.62601951691953 0.420024789190958 3.79190109367583 0.132014676457591 3.46015275509667 0.748334015971359 3.30243284846663 1.06439233898936 3.5133766662289 0.748334015971359 3.6978400991759 0.420024789190958 3.62601951691953 0.588111822856026 3.8823035321229 0.132014676457591 3.46015275509667 0.901450517630194 3.30243284846663 1.23826857430838 3.5133766662289 0.901450517630194 3.6978400991759 0.588111822856026 3.79190109367583 0.420024789190958 3.95777553191436 0.132014676457591 3.62601951691953 0.748334015971359 3.46015275509667 1.06439233898936 3.30243284846663 1.40646288376147 3.5133766662289 1.06439233898936 3.6978400991759 0.748334015971359 3.8823035321229 0.420024789190958 3.79190109367583 0.588111822856026 3.62601951691953 0.901450517630194 4.0667669650699 0.132014676457591 3.46015275509667 1.23826857430838 3.95777553191436 0.420024789190958 4.12366004376278 0.132014676457591 3.6978400991759 0.901450517630194 3.5133766662289 1.23826857430838 3.79190109367583 0.748334015971359 3.8823035321229 0.588111822856026 3.62601951691953 1.06439233898936 3.46015275509667 1.40646288376147 3.95777553191436 0.588111822856026 3.6978400991759 1.06439233898936 3.79190109367583 0.901450517630194 3.5133766662289 1.40646288376147 3.8823035321229 0.748334015971359 4.0667669650699 0.420024789190958 3.62601951691953 1.23826857430838 4.2512303980169 0.132014676457591 4.12366004376278 0.420024789190958 3.95777553191436 0.748334015971359 3.79190109367583 1.06439233898936 3.8823035321229 0.901450517630194 3.6978400991759 1.23826857430838 4.0667669650699 0.588111822856026 3.62601951691953 1.40646288376147 4.12366004376278 0.588111822856026 3.95777553191436 0.901450517630194 3.8823035321229 1.06439233898936 3.6978400991759 1.40646288376147 3.79190109367583 1.23826857430838 4.0667669650699 0.748334015971359 4.2512303980169 0.420024789190958 4.4356938309639 0.132014676457591 4.12366004376278 0.748334015971359 3.95777553191436 1.06439233898936 4.0667669650699 0.901450517630194 3.8823035321229 1.23826857430838 3.79190109367583 1.40646288376147 4.2512303980169 0.588111822856026 4.12366004376278 0.901450517630194 3.95777553191436 1.23826857430838 4.0667669650699 1.06439233898936 3.8823035321229 1.40646288376147 4.2512303980169 0.748334015971359 4.4356938309639 0.420024789190958 4.6201572639109 0.132014676457591 4.12366004376278 1.06439233898936 3.95777553191436 1.40646288376147 4.2512303980169 0.901450517630194 4.0667669650699 1.23826857430838 4.4356938309639 0.588111822856026 4.12366004376278 1.23826857430838 4.2512303980169 1.06439233898936 4.0667669650699 1.40646288376147 4.4356938309639 0.748334015971359 4.6201572639109 0.420024789190958 4.78719063924214 0.132014676457591 4.12366004376278 1.40646288376147 4.4356938309639 0.901450517630194 4.2512303980169 1.23826857430838 4.6201572639109 0.588111822856026 4.78719063924214 0.420024789190958 4.4356938309639 1.06439233898936 4.95308417678454 0.132014676457591 4.2512303980169 1.40646288376147 4.6201572639109 0.748334015971359 4.78719063924214 0.588111822856026 4.6201572639109 0.901450517630194 4.4356938309639 1.23826857430838 4.95308417678454 0.420024789190958 5.1189669655613 0.132014676457591 4.78719063924214 0.748334015971359 4.6201572639109 1.06439233898936 4.4356938309639 1.40646288376147 5.1735475627519 0.132014676457591 4.95308417678454 0.588111822856026 4.78719063924214 0.901450517630194 4.6201572639109 1.23826857430838 5.1189669655613 0.420024789190958 5.28484371734279 0.132014676457591 4.95308417678454 0.748334015971359 4.78719063924214 1.06439233898936 4.6201572639109 1.40646288376147 5.1735475627519 0.420024789190958 5.3580109956989 0.132014676457591 5.1189669655613 0.588111822856026 4.95308417678454 0.901450517630194 4.78719063924214 1.23826857430838 5.1735475627519 0.588111822856026 5.28484371734279 0.420024789190958 5.45073427663461 0.132014676457591 5.1189669655613 0.748334015971359 4.95308417678454 1.06439233898936 4.78719063924214 1.40646288376147 5.1735475627519 0.748334015971359 5.3580109956989 0.420024789190958 5.28484371734279 0.588111822856026 5.5424744286459 0.132014676457591 5.1189669655613 0.901450517630194 4.95308417678454 1.23826857430838 5.1735475627519 0.901450517630194 5.45073427663461 0.420024789190958 5.3580109956989 0.588111822856026 5.61659953614309 0.132014676457591 5.28484371734279 0.748334015971359 5.1189669655613 1.06439233898936 4.95308417678454 1.40646288376147 5.1735475627519 1.06439233898936 5.3580109956989 0.748334015971359 5.5424744286459 0.420024789190958 5.45073427663461 0.588111822856026 5.28484371734279 0.901450517630194 5.7269378615929 0.132014676457591 5.1189669655613 1.23826857430838 5.61659953614309 0.420024789190958 5.78247277652861 0.132014676457591 5.3580109956989 0.901450517630194 5.1735475627519 1.23826857430838 5.45073427663461 0.748334015971359 5.5424744286459 0.588111822856026 5.28484371734279 1.06439233898936 5.1189669655613 1.40646288376147 5.61659953614309 0.588111822856026 5.3580109956989 1.06439233898936 5.45073427663461 0.901450517630194 5.1735475627519 1.40646288376147 5.5424744286459 0.748334015971359 5.7269378615929 0.420024789190958 5.28484371734279 1.23826857430838 5.9114012945399 0.132014676457591 5.78247277652861 0.420024789190958 5.61659953614309 0.748334015971359 5.45073427663461 1.06439233898936 5.5424744286459 0.901450517630194 5.3580109956989 1.23826857430838 5.7269378615929 0.588111822856026 5.28484371734279 1.40646288376147 5.78247277652861 0.588111822856026 5.61659953614309 0.901450517630194 5.5424744286459 1.06439233898936 5.45073427663461 1.23826857430838 5.3580109956989 1.40646288376147 5.7269378615929 0.748334015971359 5.9114012945399 0.420024789190958 6.0958647274869 0.132014676457591 5.78247277652861 0.748334015971359 5.61659953614309 1.06439233898936 5.7269378615929 0.901450517630194 5.5424744286459 1.23826857430838 5.45073427663461 1.40646288376147 5.9114012945399 0.588111822856026 5.78247277652861 0.901450517630194 5.61659953614309 1.23826857430838 5.7269378615929 1.06439233898936 5.5424744286459 1.40646288376147 5.9114012945399 0.748334015971359 6.0958647274869 0.420024789190958 5.78247277652861 1.06439233898936 5.61659953614309 1.40646288376147 5.9114012945399 0.901450517630194 5.7269378615929 1.23826857430838 6.0958647274869 0.588111822856026 5.78247277652861 1.23826857430838 5.9114012945399 1.06439233898936 5.7269378615929 1.40646288376147 6.0958647274869 0.748334015971359 5.78247277652861 1.40646288376147 6.0958647274869 0.901450517630194 5.9114012945399 1.23826857430838 6.0958647274869 1.06439233898936 5.9114012945399 1.40646288376147 6.0958647274869 1.23826857430838 6.0958647274869 1.40646288376147 155 11 12 155 148 11 155 153 148 156 50 51 156 143 151 156 51 149 156 149 143 157 142 152 157 146 142 158 152 147 158 147 153 159 150 146 159 146 157 160 156 151 160 151 154 161 153 155 162 12 13 162 161 155 162 155 12 163 152 158 163 157 152 164 150 159 164 154 150 165 49 50 165 50 156 165 156 160 166 162 13 167 158 153 167 153 161 168 157 163 168 159 157 169 160 154 169 154 164 170 161 162 170 167 161 171 13 14 171 166 13 172 163 158 172 168 163 172 158 167 173 159 168 173 164 159 174 49 165 174 165 160 174 48 49 174 160 169 175 162 166 175 170 162 176 171 14 177 167 170 177 172 167 178 168 172 179 164 173 179 169 164 179 174 169 180 170 175 180 177 170 181 175 166 181 166 171 182 14 15 182 176 14 183 178 172 183 172 177 184 168 178 184 173 168 185 46 47 185 47 48 185 48 174 185 174 179 186 177 180 186 183 177 187 171 176 187 181 171 188 175 181 38 18 2 188 180 175 189 182 15 190 184 178 190 178 183 191 179 173 191 173 184 192 190 183 192 183 186 193 187 176 193 176 182 194 188 181 194 181 187 195 15 16 195 189 15 196 186 180 196 180 188 197 190 192 197 184 190 29 39 30 57 1 3 197 191 184 198 179 191 198 46 185 57 27 28 198 185 179 57 28 1 58 3 4 199 197 192 58 57 3 200 188 194 200 196 188 59 25 26 59 26 27 201 182 189 201 189 195 59 27 57 60 58 4 201 193 182 202 187 193 202 194 187 61 24 25 203 192 186 61 25 59 203 196 200 62 57 58 203 186 196 62 59 57 63 4 5 204 195 16 205 191 197 63 60 4 205 198 191 206 201 195 64 23 24 64 24 61 65 62 58 207 16 17 65 58 60 207 204 16 208 203 200 66 63 5 67 61 59 67 59 62 209 205 197 209 197 199 68 22 23 210 200 194 68 23 64 210 194 202 211 193 201 69 67 62 69 62 65 211 202 193 211 201 206 211 210 202 212 199 192 212 203 208 212 192 203 70 60 63 212 209 199 213 46 198 70 65 60 213 205 209 71 5 6 213 45 46 213 198 205 71 66 5 72 61 67 72 64 61 214 211 206 73 21 22 73 22 68 215 212 208 74 67 69 216 200 210 216 208 200 74 72 67 217 44 45 217 213 209 217 45 213 75 70 63 75 66 71 218 210 211 75 63 66 218 211 214 76 74 69 76 65 70 219 206 195 76 70 75 76 69 65 219 195 204 77 71 6 78 68 64 220 209 212 220 212 215 78 64 72 221 17 18 221 207 17 79 20 21 79 21 73 222 204 207 222 219 204 80 72 74 80 78 72 81 76 75 223 218 214 82 75 71 82 81 75 224 215 208 224 208 216 83 77 6 83 6 7 225 218 223 225 216 210 84 74 76 225 210 218 226 220 215 85 73 68 85 78 80 227 206 219 85 68 78 86 19 20 86 55 56 227 214 206 86 56 19 86 20 79 228 220 226 228 44 217 228 217 209 228 209 220 229 219 222 87 85 80 88 84 76 88 76 81 229 227 219 89 71 77 89 82 71 230 225 223 90 88 81 231 224 216 231 216 225 90 81 82 231 225 230 91 84 88 232 215 224 91 80 74 91 74 84 92 83 7 232 226 215 233 228 226 233 44 228 233 43 44 93 79 73 234 223 214 93 73 85 234 214 227 94 89 77 235 222 207 94 77 83 95 7 8 235 207 221 236 235 221 236 18 38 95 92 7 236 38 37 236 221 18 237 234 227 96 91 88 97 93 85 237 227 229 97 85 87 98 88 90 238 231 230 239 230 223 98 96 88 239 223 234 99 82 89 239 234 237 99 90 82 240 224 231 100 87 80 240 232 224 100 91 96 240 231 238 241 226 232 100 80 91 241 232 240 241 43 233 101 93 97 101 79 93 241 233 226 101 55 86 101 86 79 242 222 235 102 89 94 242 229 222 102 99 89 103 100 96 243 239 237 104 103 96 244 240 238 104 96 98 245 230 239 105 55 101 245 238 230 105 101 97 245 239 243 105 54 55 106 98 90 246 241 240 246 42 43 106 90 99 246 43 241 106 104 98 246 240 244 107 94 83 247 237 229 247 229 242 107 83 92 248 36 35 248 37 36 248 235 236 108 105 97 248 236 37 248 242 235 108 97 87 108 87 100 109 8 9 249 245 243 109 95 8 250 42 246 250 246 244 110 92 95 110 107 92 251 243 237 111 99 102 251 237 247 111 106 99 252 244 238 252 238 245 112 103 104 253 35 34 253 247 242 253 242 248 253 248 35 113 104 106 113 112 104 254 245 249 114 100 103 254 252 245 114 108 100 114 103 112 255 249 243 115 102 94 255 243 251 115 94 107 256 41 42 256 252 254 115 107 110 256 42 250 115 111 102 256 250 244 116 105 108 256 244 252 257 247 253 116 54 105 257 34 33 116 108 114 257 253 34 257 251 247 258 256 254 258 41 256 259 251 257 117 115 110 259 33 32 118 106 111 259 257 33 259 255 251 118 113 106 260 254 249 260 249 255 119 112 113 261 255 259 261 32 31 119 113 118 261 260 255 120 53 54 261 259 32 120 54 116 262 258 254 120 116 114 262 41 258 121 114 112 262 40 41 262 254 260 121 120 114 263 262 260 263 260 261 263 261 31 122 111 115 263 31 30 264 262 263 264 40 262 264 263 30 264 39 40 264 30 39 123 95 109 123 110 95 124 109 9 124 123 109 125 122 115 125 115 117 126 119 118 127 118 111 127 111 122 128 112 119 128 121 112 129 120 121 129 53 120 129 121 128 130 117 110 130 110 123 131 127 122 131 122 125 132 119 126 132 128 119 133 118 127 133 127 131 133 126 118 134 129 128 134 53 129 134 128 132 134 52 53 135 117 130 135 125 117 136 130 123 136 123 124 137 9 10 137 124 9 138 133 131 139 134 132 139 52 134 140 125 135 140 131 125 141 133 138 141 126 133 141 132 126 142 135 130 142 130 136 143 141 138 144 138 131 144 131 140 145 141 143 145 51 52 145 139 132 145 52 139 145 132 141 146 140 135 146 135 142 147 124 137 147 136 124 148 10 11 148 137 10 149 51 145 149 145 143 150 140 146 150 144 140 151 143 138 151 138 144 152 142 136 152 136 147 153 147 137 153 137 148 154 144 150 154 151 144 +4 2 1 0 +0 0 0 0 39.9 0 0 39.9 10 0 0 10 0 0 0 -39.9 10 -39.9 10 0 4 1 2 4 2 3 +40 38 1 0.110019522937557 +-31.9998437495618 -0.100000000000009 48 31.9998437496185 -0.100000000000002 48 -31.5441749829062 -5.38191696244104 48 -30.2226860550529 -10.5161416630456 48 -28.0717025150097 -15.3616254880711 48 -25.1499948836849 -19.7857959483434 48 -21.5380751760828 -23.6666696082027 48 -17.3343103362801 -26.8983590647438 48 -12.6549929007602 -29.3913444604365 48 -7.62809087160236 -31.077520125616 48 -2.3914247747656 -31.910516242569 48 2.91037685549466 -31.8673760046316 48 8.13276940894826 -30.9492824766819 48 13.1314007185059 -29.1816089697677 48 17.7697381963231 -26.6127114418572 48 21.9202267957307 -23.3131647228423 48 25.4687103439605 -19.3738165529245 48 28.318141563916 -14.9024449263158 48 30.3899979484982 -10.0223764335194 48 31.5869774231684 -5.12472856223543 48 -31.9998437496185 -0.0999999999999878 44 31.9998437496185 -0.0999999999999878 44 -31.5441749828996 -5.38191696248068 44 -30.2226860550263 -10.5161416631217 44 -28.0717025149515 -15.3616254881774 44 -25.1499948835847 -19.7857959484707 44 -21.5380751759348 -23.6666696083375 44 -17.3343103360806 -26.8983590648724 44 -12.6549929005082 -29.391344460545 44 -7.6280908712997 -31.0775201256902 44 -2.39142477441792 -31.910516242595 44 2.91037685587855 -31.8673760045966 44 8.13276940935627 -30.9492824765747 44 13.1314007189239 -29.1816089695797 44 17.7697381967346 -26.6127114415824 44 21.9202267961178 -23.3131647224783 44 25.4687103443048 -19.3738165524718 44 28.3181415641983 -14.9024449257796 44 30.3899979486996 -10.0223764329084 44 31.58697742322 -5.12472856191785 44 3.14471765867608 48 6.2800603020933 48 3.31058065897144 48 3.4764447493372 48 3.64230518424077 48 3.80817842462629 48 3.97404368413477 48 4.13993424342659 48 4.30581099520808 48 4.47169378398484 48 4.63758732152724 48 4.80346388088512 48 4.96935691516402 48 5.13523355395207 48 5.3011179170066 48 5.46700242885502 48 5.63287686709355 48 5.79875844384985 48 5.96462520567271 48 6.12234511230275 48 3.14471765867608 44 6.2800603020933 44 3.3105806589727 44 3.47644474933972 44 3.64230518424456 44 3.80817842463135 44 3.97404368414103 44 4.139934243434 44 4.30581099521666 44 4.47169378399458 44 4.63758732153813 44 4.80346388089716 44 4.9693569151772 44 5.13523355396639 44 5.30111791702206 44 5.46700242887162 44 5.63287686711132 44 5.79875844386878 44 5.96462520569281 44 6.12234511231281 44 3 1 21 3 21 23 4 23 24 4 3 23 5 24 25 5 4 24 6 25 26 6 5 25 7 26 27 7 6 26 8 27 28 8 7 27 9 28 29 9 8 28 10 29 30 10 9 29 11 30 31 11 10 30 12 31 32 12 11 31 13 32 33 13 12 32 14 33 34 14 13 33 15 34 35 15 14 34 16 35 36 16 15 35 17 16 36 17 36 37 18 17 37 18 37 38 19 18 38 19 38 39 20 19 39 20 39 40 2 20 40 2 40 22 +22 20 1 6.21724893790088e-015 +0 0 10 0 39.9 10 6.0001562503816 39.8999999999763 10 80 0 10 69.9998437496184 39.8999999999567 10 6.5611935856615 34.033304830834 10 8.18859824170089 28.3689929410528 10 10.8271705674703 23.0991911249595 10 14.3874132943846 18.4026448593863 10 18.7485671783453 14.4386554674188 10 23.7627070112079 11.3416768049613 10 29.259759069784 9.21675474415057 10 35.0532698164131 8.13596414097647 10 40.9467301835672 8.13596414097464 10 46.7402409301969 9.21675474414515 10 52.2372929887744 11.3416768049525 10 57.2514328216388 14.4386554674069 10 61.612586705602 18.4026448593716 10 65.1728294325192 23.0991911249427 10 67.8114017582919 28.3689929410343 10 69.4388064143348 34.0333048308146 10 80 39.9 10 0 0 0 39.9 6.0001562503814 39.9 80 0 69.9998437496184 39.8999999999567 6.5611935856615 34.033304830834 8.18859824170088 28.3689929410528 10.8271705674703 23.0991911249595 14.3874132943846 18.4026448593863 18.7485671783453 14.4386554674188 23.7627070112079 11.3416768049613 29.259759069784 9.21675474415057 35.0532698164131 8.13596414097647 40.9467301835672 8.13596414097464 46.7402409301969 9.21675474414515 52.2372929887744 11.3416768049525 57.2514328216388 14.4386554674069 61.612586705602 18.4026448593716 65.1728294325192 23.0991911249427 67.8114017582919 28.3689929410343 69.4388064143348 34.0333048308146 80 39.9 10 9 1 8 1 9 11 10 1 7 1 8 12 11 1 2 1 7 6 2 7 13 12 1 3 2 6 14 13 1 4 15 14 4 16 15 4 17 16 4 14 1 18 17 4 19 18 4 20 19 4 22 21 20 22 5 21 22 20 4 +264 470 1 0.174158148889882 +31.9998437496185 -0.0999999999999878 -3 -31.9998437496185 -0.0999999999999878 -3 31.5441749828996 -5.38191696248068 -3 30.2226860550263 -10.5161416631217 -3 28.0717025149515 -15.3616254881774 -3 25.1499948835847 -19.7857959484707 -3 21.5380751759348 -23.6666696083375 -3 17.3343103360806 -26.8983590648724 -3 12.6549929005082 -29.391344460545 -3 7.6280908712997 -31.0775201256902 -3 2.39142477441792 -31.910516242595 -3 -2.91037685587855 -31.8673760045966 -3 -8.13276940935627 -30.9492824765747 -3 -13.1314007189239 -29.1816089695797 -3 -17.7697381967346 -26.6127114415824 -3 -21.9202267961178 -23.3131647224783 -3 -25.4687103443048 -19.3738165524718 -3 -28.3181415641983 -14.9024449257796 -3 -30.3899979486996 -10.0223764329084 -3 -31.58697742322 -5.12472856191785 -3 34.9998571425655 -0.100000000044039 0 32.4906305502992 -0.0999999999999997 -2.95958287215193 32.979148357099 -0.0999999999999975 -2.83566065327237 33.4549576498787 -0.100000000000011 -2.62348305753355 33.8612715932402 -0.100000000000001 -2.35268321292909 34.1983241550879 -0.100000000000002 -2.0412565158674 34.4958241649549 -0.0999999999999961 -1.6643731861824 34.7390925709788 -0.1000000000002 -1.22334925899786 34.8972792584569 -0.100000000004715 -0.777780557936623 34.9737531766232 -0.0999999999917522 -0.394894655013388 -34.9998571425655 -0.100000000023911 0 -32.4906305491409 -0.100000000000001 -2.95958287234377 -32.9791483547389 -0.0999999999999977 -2.83566065408691 -33.4549576464072 -0.0999999999999987 -2.62348305945851 -33.8612715889491 -0.100000000000002 -2.35268321632395 -34.1983241503123 -0.099999999999996 -2.04125652101065 -34.4958241600853 -0.100000000000003 -1.66437319348513 -34.7390925681319 -0.100000000000111 -1.22334926543654 -34.8972792570996 -0.100000000002558 -0.777780562806058 -34.9737531763377 -0.0999999999955199 -0.394894657417794 -34.387735963849 -6.51794563344987 0 -32.6088257525758 -12.714734878799 0 -29.723485612544 -18.4801083070659 0 -25.8296162381791 -23.6184445929107 0 -21.0593381065312 -27.9553980210406 0 -15.5745085789603 -31.3438141030075 0 -9.56123001896417 -33.6687225852787 0 -3.22353526781181 -34.851238433909 0 3.22353526779162 -34.8512384339108 0 9.56123001894467 -33.6687225852843 0 15.5745085789421 -31.3438141030165 0 21.059338106515 -27.9553980210528 0 25.8296162381655 -23.6184445929257 0 29.7234856125333 -18.4801083070832 0 32.6088257525685 -12.7147348788178 0 34.3877359638452 -6.51794563346978 0 -32.0714283052265 -5.20332158022964 -2.95958285941785 -32.5536387524452 -5.2815562008504 -2.83566066515851 -30.8560878120664 -10.1760952205949 -2.95958285941785 -33.0233045839987 -5.35775556227456 -2.62348305894628 -30.2710378885502 -11.803191693543 -2.95958285941785 -31.3200249888479 -10.3290980547862 -2.83566066515851 -33.4243725068239 -5.42282548551318 -2.35268322780566 -30.726178538324 -11.9806587614573 -2.83566066515851 -28.7524598617852 -15.1309986749388 -2.95958285941785 -31.7718929257174 -10.4781205485231 -2.62348305894628 -33.7570733145771 -5.47680341491087 -2.04125650316617 -27.5925531935483 -17.1552346899065 -2.95958285941785 -31.1694787882102 -12.1535090563982 -2.62348305894628 -29.1847679085811 -15.3585010352474 -2.83566066515851 -32.1577624581723 -10.6053772872549 -2.35268322780566 -34.0507322802924 -5.52444713127397 -1.66437321392968 -28.0074214460234 -17.4131724815518 -2.83566066515851 -25.8593209579703 -19.67095799897 -2.95958285941785 -31.5480320029962 -12.3011133829091 -2.35268322780566 -29.6058295414363 -15.5800849636982 -2.62348305894628 -32.4778556339884 -10.7109415005929 -2.04125650316617 -34.2908598285594 -5.56340582191957 -1.22334926944303 -31.8620560202991 -12.423556679576 -2.04125650316617 -23.9778426161472 -21.9251940123648 -2.95958285941785 -26.2481291708519 -19.9667209866246 -2.83566066515851 -28.4114969775837 -17.664400069218 -2.62348305894628 -29.9653922413925 -15.7693050430496 -2.35268322780566 -32.7603864507227 -10.8041179431591 -1.66437321392968 -34.4470041868875 -5.58873894090595 -0.777780551332242 -22.2564180757373 -23.6707186929878 -2.95958285941785 -32.1392298833674 -12.5316314753686 -1.66437321392968 -24.3383618328541 -22.2548505998245 -2.83566066515851 -28.756554512579 -17.8789341484981 -2.35268322780566 -26.6268226099326 -20.2547897548165 -2.62348305894628 -30.2636629180168 -15.9262701595812 -2.04125650316617 -32.9914144125867 -10.8803091490199 -1.22334926944303 -22.5910547876307 -24.026620143285 -2.83566066515851 -32.3658774165704 -12.6200051971786 -1.22334926944303 -29.0427926136108 -18.0568981725574 -2.04125650316617 -19.5495546686541 -25.9512231168758 -2.95958285941785 -26.9502052807503 -20.5007841080939 -2.35268322780566 -24.6895022087674 -22.5759312320866 -2.62348305894628 -30.5269320666317 -16.0648157017016 -1.66437321392968 -33.141641711043 -10.9298529312108 -0.777780551332242 -18.0422753746034 -27.0208691257617 -2.95958285941785 -22.9169859873098 -24.3732628831283 -2.62348305894628 -32.5132563153849 -12.6774707324105 -0.777780551332242 -29.2954411877605 -18.2139784381351 -1.66437321392968 -27.2184632731536 -20.7048456033679 -2.04125650316617 -19.8434922946925 -26.341413126063 -2.83566066515851 -24.9893561298452 -22.8501158407791 -2.35268322780566 -30.7422095911482 -16.1781056238112 -1.22334926944303 -18.3135502799313 -27.4271418137558 -2.83566066515851 -23.1953127048545 -24.6692760786625 -2.35268322780566 -29.5020341740703 -18.3424243684762 -1.22334926944303 -27.4552416721181 -20.8849608488016 -1.66437321392968 -25.2380961463686 -23.0775622048337 -2.04125650316617 -14.4579428546892 -29.0967172962021 -2.95958285941785 -20.1297831877132 -26.7214524142737 -2.62348305894628 -30.8821950745743 -16.2517730656375 -0.777780551332242 -18.5777680187325 -27.8228453928565 -2.62348305894628 -23.426195102764 -24.9148300700316 -2.04125650316617 -29.6363724851687 -18.4259470942847 -0.777780551332242 -25.4576469688555 -23.2783181467113 -1.66437321392968 -27.6488574750188 -21.0322426870597 -1.22334926944303 -14.6753254739935 -29.5342014308801 -2.83566066515851 -20.3742593366547 -27.045984363746 -2.35268322780566 -18.8033949486798 -28.1607537563401 -2.35268322780566 -23.629983866097 -25.1315687416918 -1.66437321392968 -27.774757295861 -21.1280135733831 -0.777780551332242 -25.6371756292367 -23.442478066044 -1.22334926944303 -20.5770614247805 -27.3151957256785 -2.04125650316617 -8.87576751034483 -31.2549487298711 -2.95958285941785 -14.887052924632 -29.9603044966476 -2.62348305894628 -18.990560906295 -28.4410613528331 -2.04125650316617 -23.7966237505097 -25.3087978813288 -1.22334926944303 -25.753915202347 -23.5492240243997 -0.777780551332242 -20.7560650522321 -27.5528156179707 -1.66437321392968 -9.009219247506 -31.7248829860381 -2.83566066515851 -15.0678561322057 -30.3241722937396 -2.35268322780566 -19.1557632750586 -28.6884753564964 -1.66437321392968 -23.9049823208248 -25.4240421774763 -0.777780551332242 -20.9024379105788 -27.7471195174504 -1.22334926944303 -15.2178391395239 -30.626014209082 -2.04125650316617 -2.99243397991113 -32.3526877999408 -2.95958285941785 -9.13919926238868 -32.1825919893813 -2.62348305894628 -19.2908507214184 -28.8907879879596 -1.22334926944303 -20.9976177273393 -27.8734667771623 -0.777780551332242 -15.3502219104024 -30.8924355179676 -1.66437321392968 -3.03742676644975 -32.8391271285626 -2.83566066515851 -9.25019480661497 -32.5734494605795 -2.35268322780566 -19.3786921322946 -29.022342973006 -0.777780551332242 2.42809877043048 -32.3999290950706 -2.95958285941785 -15.4584724796518 -31.110290591975 -1.22334926944303 -9.34226975232734 -32.8976803177073 -2.04125650316617 -3.08124907396185 -33.3129118279511 -2.62348305894628 2.46460648635873 -32.8870787209025 -2.83566066515851 -15.5288630524789 -31.2519521422006 -0.777780551332242 -9.42353986858816 -33.1838632662852 -1.66437321392968 -3.11867083357581 -33.7174970297776 -2.35268322780566 7.74508298466779 -31.5541559634412 -2.95958285941785 2.50016446080424 -33.3615552392506 -2.62348305894628 -9.4899951655261 -33.4178776088424 -1.22334926944303 -3.1497135795611 -34.053115551709 -2.04125650316617 7.86153429747614 -32.0285889545114 -2.83566066515851 2.5305289497507 -33.7667312151432 -2.35268322780566 -9.53320811536365 -33.5700468190053 -0.777780551332242 -3.17711351507842 -34.3493498430857 -1.66437321392968 12.8490849805413 -29.8421192975196 -2.95958285941785 7.97495615090362 -32.4906796590007 -2.62348305894628 2.55571742637664 -34.1028398062072 -2.04125650316617 -3.19951868606453 -34.5915832580529 -1.22334926944303 14.4579428546723 -29.0967172962105 -2.95958285941785 13.0422775928519 -30.2908109353057 -2.83566066515851 8.0718119664665 -32.8852788539076 -2.35268322780566 2.57795008052578 -34.3995066579842 -1.66437321392968 -3.21408778099805 -34.7490969686564 -0.777780551332242 14.6753254739764 -29.5342014308886 -2.83566066515851 17.6001625736902 -27.3109016032836 -2.95958285941785 13.2304443350579 -30.7278299430593 -2.62348305894628 8.15215747963141 -33.2126136104734 -2.04125650316617 2.59612991957582 -34.6420937814382 -1.22334926944303 19.549554668639 -25.9512231168872 -2.95958285941785 14.8870529246147 -29.9603044966562 -2.62348305894628 17.8647900852874 -27.721535078997 -2.83566066515851 13.391128036897 -31.1010193341101 -2.35268322780566 8.22307459118036 -33.5015362214671 -1.66437321392968 2.60795146743012 -34.7998374930771 -0.777780551332242 21.8684111589949 -24.0296413286948 -2.95958285941785 19.8434922946772 -26.3414131260745 -2.83566066515851 15.0678561321882 -30.3241722937484 -2.35268322780566 18.1225333610773 -28.1214860007304 -2.62348305894628 13.5244211634529 -31.4105938594746 -2.04125650316617 8.28106414407876 -33.7377908103499 -1.22334926944303 15.2178391395061 -30.6260142090908 -2.04125650316617 23.9778426161345 -21.9251940123787 -2.95958285941785 22.1972139870006 -24.3909393657306 -2.83566066515851 20.1297831876978 -26.7214524142853 -2.62348305894628 18.3426314676423 -28.4630213533896 -2.35268322780566 13.6420725810905 -31.6838403704893 -1.66437321392968 8.31877219378984 -33.8914167539345 -0.777780551332242 25.5357187456916 -20.0892542705174 -2.95958285941785 15.3502219103845 -30.8924355179765 -1.66437321392968 24.3383618328413 -22.2548505998386 -2.83566066515851 20.374259336639 -27.0459843637578 -2.35268322780566 22.5174630702031 -24.7428383011059 -2.62348305894628 18.525211059955 -28.7463376727443 -2.04125650316617 13.7382771917641 -31.9072764729855 -1.22334926944303 25.9196614325972 -20.3913065581138 -2.83566066515851 15.4584724796337 -31.1102905919839 -1.22334926944303 20.5770614247647 -27.3151957256904 -2.04125650316617 27.5925531935384 -17.1552346899225 -2.95958285941785 22.7909375832667 -25.0433399888453 -2.35268322780566 24.6895022087543 -22.5759312321009 -2.62348305894628 18.6863652651442 -28.996407331047 -1.66437321392968 13.80083480879 -32.0525671199911 -0.777780551332242 28.5022395212794 -15.597224473482 -2.95958285941785 26.293615921461 -20.6855010112718 -2.62348305894628 15.5288630524608 -31.2519521422096 -0.777780551332242 20.7560650522162 -27.5528156179828 -1.66437321392968 23.0177948965 -25.2926173519859 -2.04125650316617 28.0074214460133 -17.413172481568 -2.83566066515851 24.989356129832 -22.8501158407936 -2.35268322780566 18.818142492142 -29.2008915149301 -1.22334926944303 28.9307853763466 -15.8317367788632 -2.83566066515851 26.6129517981707 -20.9367263513066 -2.35268322780566 23.2180309116119 -25.5126424644297 -1.66437321392968 20.9024379105628 -27.7471195174625 -1.22334926944303 25.2380961463553 -23.0775622048483 -2.04125650316617 30.2710378885434 -11.8031916935605 -2.95958285941785 28.4114969775734 -17.6644000692345 -2.62348305894628 18.9038314133021 -29.3338585647797 -0.777780551332242 29.3481826901955 -16.0601482899611 -2.62348305894628 26.8778528238562 -21.1451271452891 -2.04125650316617 20.9976177273231 -27.8734667771745 -0.777780551332242 25.457646968842 -23.2783181467261 -1.66437321392968 23.3817656822036 -25.6925589559274 -1.22334926944303 30.726178538317 -11.9806587614751 -2.83566066515851 28.7565545125686 -17.8789341485147 -2.35268322780566 29.7046162700122 -16.2551987367914 -2.35268322780566 27.1116681901157 -21.3290724805241 -1.66437321392968 23.4882351850763 -25.8095507185148 -0.777780551332242 25.6371756292231 -23.4424780660588 -1.22334926944303 29.0427926136004 -18.0568981725742 -2.04125650316617 31.9224146910838 -6.05066188900373 -2.95958285941785 31.1694787882031 -12.1535090564162 -2.62348305894628 30.0002912247182 -16.4170003607056 -2.04125650316617 27.3028610948184 -21.4794862172802 -1.22334926944303 25.7539152023334 -23.5492240244146 -0.777780551332242 29.29544118775 -18.213978438152 -1.66437321392968 32.4023846418446 -6.1416367077021 -2.83566066515851 31.548032002989 -12.3011133829273 -2.35268322780566 30.2612692547183 -16.5598148547569 -1.66437321392968 27.4271854117789 -21.5772936391233 -0.777780551332242 29.5020341740596 -18.3424243684933 -1.22334926944303 31.8620560202919 -12.4235566795944 -2.04125650316617 32.8698682630416 -6.23024483330545 -2.62348305894628 30.4746733111647 -16.6765955368314 -1.22334926944303 29.6363724851581 -18.4259470943018 -0.777780551332242 32.1392298833601 -12.5316314753872 -1.66437321392968 33.269072702266 -6.30591113579889 -2.35268322780566 30.6134405608989 -16.7525328659685 -0.777780551332242 32.3658774165631 -12.6200051971974 -1.22334926944303 33.600227680837 -6.36867915719024 -2.04125650316617 32.5132563153776 -12.6774707324294 -0.777780551332242 33.8925222176472 -6.4240814640444 -1.66437321392968 34.1315340602624 -6.46938442314468 -1.22334926944303 34.2869529243923 -6.4988429402125 -0.777780551332242 6.2800603020933 4.71238898036521 3.14471765867608 4.7123889803847 6.11419730179668 4.71238898038674 5.94833321142966 4.71238898038437 5.78247277652483 4.71238898038384 5.61659953613803 4.7123889803867 5.45073427662835 4.71238898038469 5.28484371733538 4.71238898038469 5.11896696555272 4.71238898038469 4.9530841767748 4.71238898038469 4.78719063923125 4.71238898038469 4.62131407987222 4.71238898038469 4.45542104559218 4.71238898038469 4.28954440680299 4.71238898038469 4.12366004374732 4.71238898038469 3.95777553189776 4.71238898038469 3.79190109365806 4.71238898038469 3.6260195169006 4.71238898038469 3.46015275507656 4.71238898038469 3.30243284845657 4.71238898038469 6.2803281604339 6.28318530717959 6.28010750651712 4.87672242341739 6.28015309748005 5.0449167328696 6.28019622247578 5.21879296818773 6.28023208940129 5.38173478954759 6.280261195619 5.53485129120621 6.28028641369702 5.69507348432192 6.28030671374534 5.8631605179873 6.28031976211624 6.02092919273935 6.28032602790913 6.15117063072157 3.1444498003349 6.28318530717959 3.14467045425237 4.87672242302599 3.14462486328954 5.04491673203732 3.14458173829391 5.21879296686452 3.14454587136846 5.38173478772367 3.14451676515079 5.53485128886673 3.14449154707276 5.69507348139616 3.14447124702427 5.86316051564057 3.14445819865319 6.02092919105498 3.14445193286038 6.15117062991456 3.3289132332819 6.28318530717959 3.5133766662289 6.28318530717959 3.6978400991759 6.28318530717959 3.8823035321229 6.28318530717959 4.0667669650699 6.28318530717959 4.2512303980169 6.28318530717959 4.4356938309639 6.28318530717959 4.6201572639109 6.28318530717959 4.8046206968579 6.28318530717959 4.9890841298049 6.28318530717959 5.1735475627519 6.28318530717959 5.3580109956989 6.28318530717959 5.5424744286459 6.28318530717959 5.7269378615929 6.28318530717959 5.9114012945399 6.28318530717959 6.0958647274869 6.28318530717959 3.30243284845657 4.87672242302599 3.30243284845657 5.04491673203732 3.46015275507656 4.87672242302599 3.30243284845657 5.21879296686452 3.5133766662289 4.87672242302599 3.46015275507656 5.04491673203732 3.30243284845657 5.38173478772367 3.5133766662289 5.04491673203732 3.6260195169006 4.87672242302599 3.46015275507656 5.21879296686452 3.30243284845657 5.53485128886673 3.6978400991759 4.87672242302599 3.5133766662289 5.21879296686452 3.6260195169006 5.04491673203732 3.46015275507656 5.38173478772367 3.30243284845657 5.69507348139616 3.6978400991759 5.04491673203732 3.79190109365806 4.87672242302599 3.5133766662289 5.38173478772367 3.6260195169006 5.21879296686452 3.46015275507656 5.53485128886673 3.30243284845657 5.86316051564057 3.5133766662289 5.53485128886673 3.8823035321229 4.87672242302599 3.79190109365806 5.04491673203732 3.6978400991759 5.21879296686452 3.6260195169006 5.38173478772367 3.46015275507656 5.69507348139616 3.30243284845657 6.02092919105498 3.95777553189776 4.87672242302599 3.5133766662289 5.69507348139616 3.8823035321229 5.04491673203732 3.6978400991759 5.38173478772367 3.79190109365806 5.21879296686452 3.6260195169006 5.53485128886673 3.46015275507656 5.86316051564057 3.95777553189776 5.04491673203732 3.5133766662289 5.86316051564057 3.6978400991759 5.53485128886673 4.0667669650699 4.87672242302599 3.79190109365806 5.38173478772367 3.8823035321229 5.21879296686452 3.6260195169006 5.69507348139616 3.46015275507656 6.02092919105498 4.12366004374732 4.87672242302599 3.95777553189776 5.21879296686452 3.5133766662289 6.02092919105498 3.6978400991759 5.69507348139616 3.79190109365806 5.53485128886673 4.0667669650699 5.04491673203732 3.8823035321229 5.38173478772367 3.6260195169006 5.86316051564057 4.12366004374732 5.04491673203732 3.95777553189776 5.38173478772367 3.6978400991759 5.86316051564057 3.79190109365806 5.69507348139616 3.8823035321229 5.53485128886673 4.2512303980169 4.87672242302599 4.0667669650699 5.21879296686452 3.6260195169006 6.02092919105498 4.12366004374732 5.21879296686452 3.95777553189776 5.53485128886673 3.6978400991759 6.02092919105498 3.8823035321229 5.69507348139616 3.79190109365806 5.86316051564057 4.2512303980169 5.04491673203732 4.0667669650699 5.38173478772367 4.12366004374732 5.38173478772367 3.95777553189776 5.69507348139616 3.79190109365806 6.02092919105498 3.8823035321229 5.86316051564057 4.0667669650699 5.53485128886673 4.4356938309639 4.87672242302599 4.2512303980169 5.21879296686452 4.12366004374732 5.53485128886673 3.95777553189776 5.86316051564057 3.8823035321229 6.02092919105498 4.0667669650699 5.69507348139616 4.4356938309639 5.04491673203732 4.2512303980169 5.38173478772367 4.12366004374732 5.69507348139616 3.95777553189776 6.02092919105498 4.0667669650699 5.86316051564057 4.2512303980169 5.53485128886673 4.6201572639109 4.87672242302599 4.4356938309639 5.21879296686452 4.12366004374732 5.86316051564057 4.0667669650699 6.02092919105498 4.2512303980169 5.69507348139616 4.6201572639109 5.04491673203732 4.4356938309639 5.38173478772367 4.12366004374732 6.02092919105498 4.78719063923125 4.87672242302599 4.2512303980169 5.86316051564057 4.4356938309639 5.53485128886673 4.6201572639109 5.21879296686452 4.78719063923125 5.04491673203732 4.2512303980169 6.02092919105498 4.4356938309639 5.69507348139616 4.6201572639109 5.38173478772367 4.9530841767748 4.87672242302599 4.78719063923125 5.21879296686452 4.4356938309639 5.86316051564057 4.6201572639109 5.53485128886673 4.9530841767748 5.04491673203732 4.78719063923125 5.38173478772367 4.4356938309639 6.02092919105498 4.6201572639109 5.69507348139616 5.11896696555272 4.87672242302599 4.9530841767748 5.21879296686452 4.78719063923125 5.53485128886673 4.6201572639109 5.86316051564057 5.1735475627519 4.87672242302599 5.11896696555272 5.04491673203732 4.9530841767748 5.38173478772367 4.78719063923125 5.69507348139616 4.6201572639109 6.02092919105498 5.1735475627519 5.04491673203732 5.28484371733538 4.87672242302599 5.11896696555272 5.21879296686452 4.9530841767748 5.53485128886673 4.78719063923125 5.86316051564057 5.3580109956989 4.87672242302599 5.1735475627519 5.21879296686452 5.28484371733538 5.04491673203732 5.11896696555272 5.38173478772367 4.9530841767748 5.69507348139616 4.78719063923125 6.02092919105498 5.45073427662835 4.87672242302599 5.3580109956989 5.04491673203732 5.1735475627519 5.38173478772367 5.28484371733538 5.21879296686452 5.11896696555272 5.53485128886673 4.9530841767748 5.86316051564057 5.1735475627519 5.53485128886673 5.5424744286459 4.87672242302599 5.45073427662835 5.04491673203732 5.3580109956989 5.21879296686452 5.28484371733538 5.38173478772367 5.11896696555272 5.69507348139616 4.9530841767748 6.02092919105498 5.61659953613803 4.87672242302599 5.1735475627519 5.69507348139616 5.5424744286459 5.04491673203732 5.3580109956989 5.38173478772367 5.45073427662835 5.21879296686452 5.28484371733538 5.53485128886673 5.11896696555272 5.86316051564057 5.61659953613803 5.04491673203732 5.1735475627519 5.86316051564057 5.3580109956989 5.53485128886673 5.7269378615929 4.87672242302599 5.45073427662835 5.38173478772367 5.5424744286459 5.21879296686452 5.28484371733538 5.69507348139616 5.11896696555272 6.02092919105498 5.78247277652483 4.87672242302599 5.61659953613803 5.21879296686452 5.1735475627519 6.02092919105498 5.3580109956989 5.69507348139616 5.45073427662835 5.53485128886673 5.7269378615929 5.04491673203732 5.5424744286459 5.38173478772367 5.28484371733538 5.86316051564057 5.78247277652483 5.04491673203732 5.61659953613803 5.38173478772367 5.45073427662835 5.69507348139616 5.3580109956989 5.86316051564057 5.5424744286459 5.53485128886673 5.9114012945399 4.87672242302599 5.7269378615929 5.21879296686452 5.28484371733538 6.02092919105498 5.78247277652483 5.21879296686452 5.61659953613803 5.53485128886673 5.3580109956989 6.02092919105498 5.5424744286459 5.69507348139616 5.45073427662835 5.86316051564057 5.9114012945399 5.04491673203732 5.7269378615929 5.38173478772367 5.78247277652483 5.38173478772367 5.61659953613803 5.69507348139616 5.45073427662835 6.02092919105498 5.5424744286459 5.86316051564057 5.7269378615929 5.53485128886673 6.0958647274869 4.87672242302599 5.9114012945399 5.21879296686452 5.78247277652483 5.53485128886673 5.61659953613803 5.86316051564057 5.5424744286459 6.02092919105498 5.7269378615929 5.69507348139616 6.0958647274869 5.04491673203732 5.9114012945399 5.38173478772367 5.78247277652483 5.69507348139616 5.61659953613803 6.02092919105498 5.7269378615929 5.86316051564057 5.9114012945399 5.53485128886673 6.0958647274869 5.21879296686452 5.78247277652483 5.86316051564057 5.7269378615929 6.02092919105498 5.9114012945399 5.69507348139616 6.0958647274869 5.38173478772367 5.78247277652483 6.02092919105498 5.9114012945399 5.86316051564057 6.0958647274869 5.53485128886673 5.9114012945399 6.02092919105498 6.0958647274869 5.69507348139616 6.0958647274869 5.86316051564057 6.0958647274869 6.02092919105498 152 135 146 152 142 135 153 146 141 153 141 149 153 152 146 154 47 46 154 46 148 154 148 143 154 143 150 155 150 145 155 145 151 156 147 142 156 142 152 157 10 9 157 11 10 157 149 11 158 152 153 159 150 155 159 154 150 160 151 147 160 147 156 161 149 157 161 153 149 162 156 152 162 152 158 162 160 156 163 154 159 41 31 40 163 47 154 164 155 151 164 151 160 165 157 9 166 158 153 166 153 161 167 160 162 168 159 155 168 155 164 169 9 8 169 165 9 170 157 165 170 161 157 171 167 162 171 158 166 171 162 158 172 160 167 172 164 160 173 163 159 173 47 163 173 159 168 173 48 47 174 165 169 174 170 165 175 169 8 176 166 161 176 161 170 177 167 171 178 168 164 178 164 172 179 8 7 179 175 8 180 170 174 180 176 170 181 174 169 181 169 175 181 175 179 182 177 171 182 166 176 182 171 166 183 167 177 183 172 167 183 178 172 184 168 178 184 49 48 22 3 1 184 173 168 184 48 173 185 179 7 186 181 179 187 176 180 187 182 176 188 180 174 188 174 181 188 181 186 189 183 177 189 177 182 190 178 183 191 189 182 191 182 187 192 7 6 192 185 7 193 185 192 193 179 185 21 56 30 193 186 179 57 2 20 57 32 2 194 188 186 58 32 57 195 180 188 58 33 32 195 188 194 195 187 180 196 183 189 196 190 183 197 178 190 59 20 19 197 184 178 59 57 20 197 49 184 197 50 49 60 34 33 198 192 6 60 33 58 61 19 18 61 59 19 199 196 189 199 189 191 200 193 192 62 57 59 62 58 57 63 35 34 201 195 194 63 34 60 202 186 193 202 194 186 202 201 194 202 193 200 64 62 59 203 187 195 64 59 61 203 191 187 203 195 201 204 197 190 65 61 18 204 190 196 66 58 62 205 200 192 66 62 64 66 60 58 67 35 63 205 192 198 67 36 35 206 196 199 68 18 17 206 204 196 68 65 18 69 66 64 207 203 201 208 6 5 208 198 6 70 64 61 209 201 202 70 61 65 71 66 69 210 202 200 210 209 202 71 60 66 71 63 60 211 199 191 72 37 36 211 191 203 72 36 67 211 203 207 212 50 197 212 51 50 212 197 204 73 70 65 213 208 5 73 65 68 214 200 205 74 68 17 214 210 200 74 73 68 75 71 69 215 204 206 215 51 212 76 69 64 215 212 204 76 64 70 77 63 71 77 71 75 216 211 207 217 201 209 217 207 201 77 67 63 78 37 72 78 38 37 218 205 198 79 77 75 218 198 208 80 17 16 219 210 214 219 209 210 219 217 209 220 206 199 80 74 17 220 199 211 81 73 74 220 211 216 82 70 73 82 73 81 221 208 213 82 76 70 83 75 69 221 218 208 83 69 76 83 76 82 84 72 67 222 219 214 84 67 77 85 39 38 223 207 217 85 40 39 223 216 207 85 38 78 85 41 40 224 220 216 225 223 217 225 217 219 86 80 16 87 77 79 226 5 4 87 84 77 226 213 5 226 221 213 227 205 218 88 74 80 88 81 74 227 214 205 88 80 86 227 218 221 228 220 224 228 52 51 89 83 82 228 206 220 228 215 206 228 51 215 90 89 82 229 227 221 90 82 81 91 83 89 91 75 83 230 225 219 91 79 75 92 84 87 92 72 84 92 78 72 230 219 222 93 88 86 231 228 224 231 52 228 232 223 225 94 92 87 233 216 223 233 223 232 233 224 216 234 221 226 95 91 89 96 86 16 96 16 15 234 229 221 235 222 214 235 214 227 97 95 89 235 227 229 97 89 90 98 81 88 236 235 229 98 97 90 98 90 81 98 88 93 99 79 91 237 225 230 237 232 225 99 87 79 100 78 92 100 92 94 100 42 41 100 41 85 238 231 224 100 85 78 238 52 231 238 224 233 238 53 52 239 233 232 101 96 15 102 98 93 239 238 233 240 230 222 240 222 235 103 100 94 103 42 100 241 4 3 104 91 95 241 234 226 241 3 22 241 226 4 104 99 91 105 104 95 242 236 229 105 95 97 242 229 234 106 86 96 243 240 235 106 93 86 243 235 236 107 98 102 244 232 237 107 97 98 244 239 232 108 87 99 245 53 238 245 238 239 108 94 87 246 230 240 246 237 230 109 106 96 109 96 101 247 22 23 110 107 102 247 241 22 247 234 241 247 242 234 111 108 99 248 236 242 248 243 236 111 99 104 112 104 105 112 111 104 249 240 243 113 97 107 113 107 110 249 246 240 113 105 97 250 53 245 250 239 244 114 15 14 250 54 53 114 101 15 250 245 239 251 237 246 115 102 93 251 244 237 115 93 106 252 243 248 116 43 42 116 42 103 116 94 108 252 249 243 116 103 94 253 23 24 117 106 109 253 242 247 253 247 23 117 115 106 253 248 242 254 246 249 118 113 110 254 251 246 255 250 244 119 116 108 119 108 111 255 54 250 119 43 116 255 244 251 120 112 105 120 105 113 120 113 118 256 249 252 256 254 249 257 24 25 121 119 111 121 112 120 121 111 112 257 252 248 257 253 24 122 101 114 257 248 253 122 109 101 258 55 54 258 251 254 122 117 109 258 54 255 258 255 251 259 254 256 123 102 115 123 110 102 259 258 254 260 256 252 260 25 26 124 123 115 260 257 25 124 115 117 260 252 257 261 258 259 261 56 55 261 55 258 125 120 118 262 26 27 126 44 43 262 259 256 126 43 119 262 260 26 126 119 121 262 256 260 263 262 27 127 120 125 263 261 259 263 259 262 263 27 28 127 121 120 128 110 123 264 56 261 264 263 28 264 28 29 264 29 30 264 261 263 128 118 110 264 30 56 129 14 13 129 114 14 129 122 114 130 117 122 131 128 123 131 123 124 132 127 125 133 127 132 133 44 126 133 121 127 133 126 121 134 125 118 134 118 128 135 130 122 135 122 129 136 117 130 136 124 117 137 134 128 137 128 131 138 133 132 138 44 133 138 45 44 139 132 125 139 125 134 140 124 136 140 131 124 141 13 12 141 129 13 142 136 130 142 130 135 143 134 137 143 139 134 144 138 132 144 132 139 144 45 138 145 137 131 145 131 140 146 129 141 146 135 129 147 140 136 147 136 142 148 46 45 148 139 143 148 45 144 148 144 139 149 141 12 149 12 11 150 137 145 150 143 137 151 140 147 151 145 140 +38 36 1 0.111515166704583 +-31.9998437496184 -0.100000000023706 1 31.9998437496184 -0.100000000043331 1 -31.4388064143385 -5.96669516916596 1 -29.8114017582991 -11.6310070589472 1 -27.1728294325297 -16.9008088750405 1 -23.6125867056154 -21.5973551406137 1 -19.2514328216547 -25.5613445325812 1 -14.2372929887921 -28.6583231950387 1 -8.74024093021601 -30.7832452558494 1 -2.94673018358694 -31.8640358590235 1 2.94673018356716 -31.8640358590254 1 8.74024093019694 -30.7832452558549 1 14.2372929887744 -28.6583231950475 1 19.2514328216388 -25.5613445325931 1 23.612586705602 -21.5973551406284 1 27.1728294325192 -16.9008088750573 1 29.8114017582919 -11.6310070589657 1 31.4388064143348 -5.96669516918545 1 -31.9998437496185 -0.100000000000002 18 31.9998437496185 -0.100000000000016 18 -31.5441749829062 -5.38191696244084 18 -30.222686055053 -10.5161416630454 18 -28.0717025150098 -15.3616254880709 18 -25.149994883685 -19.7857959483432 18 -21.538075176083 -23.6666696082026 18 -17.3343103362803 -26.8983590647437 18 -12.6549929007604 -29.3913444604364 18 -7.62809087160254 -31.0775201256159 18 -2.39142477476577 -31.9105162425689 18 2.91037685549449 -31.8673760046316 18 8.1327694089481 -30.949282476682 18 13.1314007185057 -29.1816089697678 18 17.7697381963229 -26.6127114418573 18 21.9202267957306 -23.3131647228424 18 25.4687103439604 -19.3738165529246 18 28.318141563916 -14.902444926316 18 30.3899979484981 -10.0223764335195 18 31.5869774231684 -5.12472856223552 18 3.14471765867682 1 6.28006030209195 1 3.32914957887771 1 3.5135814990786 1 3.69801341927949 1 3.88244533948038 1 4.06687725968127 1 4.25130917988216 1 4.43574110008305 1 4.62017302028394 1 4.80460494048483 1 4.98903686068572 1 5.17346878088661 1 5.3579007010875 1 5.54233262128839 1 5.72676454148928 1 5.91119646169017 1 6.09562838189106 1 3.14471765867608 18 6.2800603020933 18 3.31058065897143 18 3.47644474933719 18 3.64230518424076 18 3.80817842462628 18 3.97404368413477 18 4.13993424342658 18 4.30581099520807 18 4.47169378398484 18 4.63758732152723 18 4.80346388088512 18 4.96935691516401 18 5.13523355395206 18 5.3011179170066 18 5.46700242885501 18 5.63287686709354 18 5.79875844384984 18 5.96462520567271 18 6.12234511230274 18 21 1 3 21 19 1 22 3 4 22 21 3 23 4 5 23 22 4 24 5 6 24 23 5 25 6 7 25 24 6 26 7 8 26 25 7 27 8 9 27 26 8 28 9 10 28 27 9 29 10 11 29 28 10 30 29 11 31 11 12 31 30 11 32 12 13 32 31 12 33 13 14 33 32 13 34 14 15 34 33 14 35 15 16 35 34 15 36 35 16 36 16 17 37 36 17 37 17 18 38 37 18 38 18 2 20 38 2 +264 470 1 0.178476500757631 +-34.9998571425655 -0.100000000023911 0 34.9998571425655 -0.100000000044039 0 -34.387735963849 -6.51794563344987 0 -32.6088257525758 -12.714734878799 0 -29.723485612544 -18.4801083070659 0 -25.8296162381791 -23.6184445929107 0 -21.0593381065312 -27.9553980210406 0 -15.5745085789603 -31.3438141030075 0 -9.56123001896417 -33.6687225852787 0 -3.22353526781181 -34.851238433909 0 3.22353526779162 -34.8512384339108 0 9.56123001894467 -33.6687225852843 0 15.5745085789421 -31.3438141030165 0 21.059338106515 -27.9553980210528 0 25.8296162381655 -23.6184445929257 0 29.7234856125333 -18.4801083070832 0 32.6088257525685 -12.7147348788178 0 34.3877359638452 -6.51794563346978 0 -31.9998437496185 -0.100000000000002 3 -32.4906305491413 -0.1 2.95958287234372 -32.97914835474 -0.0999999999999989 2.83566065408705 -33.4549576464083 -0.0999999999999971 2.62348305945864 -33.8612715889505 -0.100000000000003 2.35268321632297 -34.1983241503137 -0.099999999999997 2.04125652100916 -34.4958241600862 -0.100000000000002 1.66437319348398 -34.7390925681325 -0.10000000000011 1.22334926543523 -34.8972792570999 -0.100000000002558 0.777780562805077 -34.9737531763378 -0.0999999999955189 0.394894657417709 31.9998437495618 -0.100000000000009 3 32.4906305503013 -0.0999999999999957 2.95958287215123 32.9791483571035 -0.0999999999999972 2.83566065327044 33.4549576498851 -0.100000000000012 2.62348305752982 33.8612715932442 -0.0999999999999932 2.35268321292583 34.1983241550918 -0.100000000000003 2.04125651586331 34.4958241649573 -0.099999999999994 1.66437318617908 34.7390925709802 -0.100000000000201 1.22334925899474 34.8972792584575 -0.100000000004715 0.777780557934094 34.9737531766234 -0.0999999999917521 0.394894655012138 31.5441749829062 -5.38191696244104 3 30.2226860550529 -10.5161416630456 3 28.0717025150097 -15.3616254880711 3 25.1499948836849 -19.7857959483434 3 21.5380751760828 -23.6666696082027 3 17.3343103362801 -26.8983590647438 3 12.6549929007603 -29.3913444604365 3 7.62809087160235 -31.077520125616 3 2.39142477476561 -31.910516242569 3 -2.91037685549438 -31.8673760046316 3 -8.13276940894757 -30.9492824766821 3 -13.1314007185049 -29.1816089697682 3 -17.7697381963217 -26.6127114418581 3 -21.9202267957293 -23.3131647228436 3 -25.4687103439585 -19.3738165529271 3 -28.3181415639139 -14.9024449263199 3 -30.3899979484963 -10.0223764335251 3 -31.5869774231679 -5.12472856223841 3 -34.5224907335514 -5.6009860034649 0.394894663753647 -33.2142677096405 -10.9538044154294 0.394894663753647 -34.2908598313382 -5.56340582272768 1.2233492630115 -32.5845052817269 -12.7052519142384 0.394894663753647 -34.0507322850454 -5.5244471323999 1.66437320662334 -32.9914144150937 -10.880309150589 1.2233492630115 -30.9498697622767 -16.2873869100375 0.394894663753647 -33.7570733192392 -5.47680341601897 2.0412564980187 -32.3658774192465 -12.6200051982221 1.2233492630115 -29.7013170999195 -18.4663253840384 0.394894663753647 -32.7603864551303 -10.8041179453498 1.66437320662334 -33.4243725110085 -5.42282548654036 2.35268322440737 -32.1392298879066 -12.5316314771385 1.66437320662334 -30.7422095933814 -16.1781056257355 1.2233492630115 -27.8356224001197 -21.17431312362 0.394894663753647 -32.47785563831 -10.7109415027488 2.0412564980187 -33.0233045873773 -5.35775556316677 2.62348305701732 -31.862056024752 -12.4235566813122 2.0412564980187 -29.5020341765096 -18.3424243699928 1.2233492630115 -30.5269320706366 -16.064815704553 1.66437320662334 -25.8103518698904 -23.6008293712656 0.394894663753647 -32.1577624620361 -10.6053772892527 2.35268322440737 -32.5536387547256 -5.28155620155956 2.83566066434193 -31.5480320069979 -12.3011133844694 2.35268322440737 -29.2954411918981 -18.2139784407075 1.66437320662334 -27.6488574769289 -21.0322426892929 1.2233492630115 -23.9573672696118 -25.4797559675928 0.394894663753647 -30.2636629219424 -15.9262701623845 2.0412564980187 -31.7718929288076 -10.478120550257 2.62348305701732 -32.0714283063191 -5.20332158074107 2.95958285922542 -31.1694787914504 -12.1535090576616 2.62348305701732 -29.0427926176697 -18.0568981750809 2.0412564980187 -25.6371756313564 -23.4424780679823 1.2233492630115 -27.4552416756224 -20.884960852242 1.66437320662334 -29.9653922448925 -15.7693050456217 2.35268322440737 -21.043631529962 -27.9345481919851 0.394894663753647 -31.3200249908838 -10.3290980561623 2.83566066434193 -23.7966237520556 -25.3087978838179 1.2233492630115 -19.4211582499734 -29.0859420148057 0.394894663753647 -28.7565545162266 -17.8789341507659 2.35268322440737 -30.7261785405269 -11.9806587623163 2.83566066434193 -27.2184632765874 -20.704845606748 2.0412564980187 -25.457646972451 -23.278318149999 1.66437320662334 -29.6058295442166 -15.5800849658828 2.62348305701732 -30.856087812962 -10.1760952215845 2.95958285922542 -23.6299838690156 -25.131568745635 1.66437320662334 -28.4114969805372 -17.6644000710543 2.62348305701732 -26.9502052838023 -20.500784111176 2.35268322440737 -30.2710378896314 -11.8031916939646 2.95958285922542 -25.2380961498958 -23.0775622080589 2.0412564980187 -20.9024379123071 -27.7471195197446 1.2233492630115 -29.1847679103805 -15.3585010369055 2.83566066434193 -15.5628927242603 -31.3204371092154 0.394894663753647 -19.2908507225651 -28.8907879906477 1.2233492630115 -23.4261951056227 -24.9148300739039 2.0412564980187 -26.6268226123385 -20.254789757398 2.62348305701732 -24.989356133015 -22.8501158436775 2.35268322440737 -28.0074214480314 -17.4131724828003 2.83566066434193 -20.7560650551636 -27.5528156218622 1.66437320662334 -28.7524598625234 -15.1309986760279 2.95958285922542 -19.1557632773189 -28.6884753608455 1.66437320662334 -23.1953127073857 -24.6692760821782 2.35268322440737 -24.689502211334 -22.5759312344335 2.62348305701732 -27.5925531945338 -17.1552346905192 2.95958285922542 -26.248129172377 -19.9667209885253 2.83566066434193 -20.5770614276563 -27.3151957294959 2.0412564980187 -15.4584724809299 -31.1102905945473 1.2233492630115 -9.55409901652574 -33.6436116170897 0.394894663753647 -18.9905609085077 -28.4410613571025 2.0412564980187 -22.916985989286 -24.3732628860439 2.62348305701732 -20.3742593392391 -27.0459843671767 2.35268322440737 -24.3383618345991 -22.2548506014202 2.83566066434193 -25.8593209585423 -19.6709580001348 2.95958285922542 -15.3502219125704 -30.8924355223307 1.66437320662334 -18.8033949506279 -28.1607537602039 2.35268322440737 -22.5910547888501 -24.0266201453841 2.83566066434193 -20.1297831898058 -26.7214524170515 2.62348305701732 -23.9778426170036 -21.9251940131479 2.95958285922542 -15.2178391416506 -30.6260142133621 2.0412564980187 -9.48999516631076 -33.4178776116055 1.2233492630115 -3.22113107527491 -34.8252455160771 0.394894663753647 -18.577768020232 -27.8228453960371 2.62348305701732 -22.2564180761378 -23.6707186942041 2.95958285922542 -15.067856134117 -30.3241722975861 2.35268322440737 -19.8434922961152 -26.3414131279516 2.83566066434193 -9.4235398699191 -33.183863270972 1.66437320662334 -18.3135502808188 -27.4271418160064 2.83566066434193 -14.8870529261796 -29.9603044997621 2.62348305701732 -19.5495546693523 -25.9512231178027 2.95958285922542 -9.34226975363296 -32.8976803223049 2.0412564980187 -3.19951868632907 -34.591583260913 1.2233492630115 2.61366648584841 -34.8760972323438 0.394894663753647 -18.0422753748285 -27.0208691270068 2.95958285922542 -9.25019480778831 -32.5734494647113 2.35268322440737 -14.6753254750457 -29.5342014329976 2.83566066434193 -3.17711351552715 -34.349349847937 1.66437320662334 2.59612992016797 -34.6420937842743 1.2233492630115 -9.13919926333874 -32.1825919927268 2.62348305701732 8.33700180220075 -33.9656857962452 0.394894663753647 -14.4579428552056 -29.0967172972414 2.95958285922542 -3.14971358000129 -34.053115556468 2.0412564980187 2.57795008126473 -34.3995066628146 1.66437320662334 -3.11867083397139 -33.7174970340545 2.35268322440737 -9.00921924815194 -31.7248829883127 2.83566066434193 8.28106414509192 -33.7377908130588 1.2233492630115 13.8310777107685 -32.12280654018 0.394894663753647 2.55571742710544 -34.1028398109454 2.0412564980187 -3.08124907428216 -33.3129118314141 2.62348305701732 -8.87576751066184 -31.2549487309874 2.95958285922542 15.5628927242421 -31.3204371092244 0.394894663753647 8.2230745926679 -33.5015362261186 1.66437320662334 2.53052895043964 -33.7667312193988 2.35268322440737 -3.03742676666752 -32.8391271309171 2.83566066434193 13.7382771931739 -31.9072764755057 1.2233492630115 18.9452569303935 -29.3981402558142 0.394894663753647 8.15215748109404 -33.2126136150357 2.0412564980187 2.50016446142769 -33.3615552426914 2.62348305701732 -2.99243398001801 -32.3526878010963 2.95958285922542 15.4584724809119 -31.1102905945562 1.2233492630115 21.0436315299458 -27.9345481919973 0.394894663753647 13.6420725832892 -31.683840374847 1.66437320662334 8.07181196781052 -32.8852788580004 2.35268322440737 2.46460648689381 -32.8870787232336 2.83566066434193 15.3502219125525 -30.8924355223396 1.66437320662334 18.8181424939145 -29.200891517205 1.2233492630115 23.5397068822561 -25.8661093045826 0.394894663753647 13.5244211656126 -31.4105938637483 2.0412564980187 7.97495615204896 -32.4906796623006 2.62348305701732 2.42809877087026 -32.3999290962013 2.95958285922542 15.2178391416329 -30.6260142133709 2.0412564980187 20.902437912291 -27.7471195197567 1.2233492630115 18.6863652679984 -28.9964073350037 1.66437320662334 25.8103518698768 -23.6008293712805 0.394894663753647 13.3911280388625 -31.1010193379401 2.35268322440737 7.8615342983516 -32.0285889567312 2.83566066434193 15.0678561340994 -30.3241722975948 2.35268322440737 23.3817656842975 -25.6925589579055 1.2233492630115 20.7560650551477 -27.5528156218742 1.66437320662334 27.487288853737 -21.6245777329958 0.394894663753647 18.5252110627572 -28.7463376766243 2.0412564980187 13.2304443366971 -30.72782994614 2.62348305701732 7.74508298525161 -31.5541559644928 2.95958285922542 14.8870529261622 -29.9603044997707 2.62348305701732 20.5770614276404 -27.3151957295078 2.0412564980187 25.6371756313429 -23.4424780679971 1.2233492630115 23.2180309150506 -25.5126424678878 1.66437320662334 18.3426314701801 -28.463021356864 2.35268322440737 29.7013170999088 -18.4663253840556 0.394894663753647 13.042277594047 -30.2908109373655 2.83566066434193 27.3028610971847 -21.4794862189178 1.2233492630115 30.6805263051579 -16.7892440657006 0.394894663753647 20.3742593392234 -27.0459843671885 2.35268322440737 14.6753254750286 -29.5342014330061 2.83566066434193 23.0177948998749 -25.2926173553767 2.0412564980187 25.4576469724375 -23.2783181500138 1.66437320662334 18.1225333631698 -28.1214860035193 2.62348305701732 12.8490849812564 -29.8421192984752 2.95958285922542 27.1116681940529 -21.3290724833992 1.66437320662334 20.1297831897903 -26.7214524170632 2.62348305701732 22.7909375863142 -25.0433399918794 2.35268322440737 14.4579428551887 -29.0967172972497 2.95958285922542 25.2380961498824 -23.0775622080735 2.0412564980187 29.502034176499 -18.3424243700099 1.2233492630115 17.8647900867739 -27.721535080852 2.83566066434193 32.5845052817196 -12.7052519142573 0.394894663753647 30.4746733137475 -16.6765955380949 1.2233492630115 26.8778528277196 -21.1451271481081 2.0412564980187 22.5174630726986 -24.7428383035373 2.62348305701732 24.9893561330017 -22.850115843692 2.35268322440737 19.8434922960999 -26.3414131279631 2.83566066434193 29.2954411918875 -18.2139784407245 1.66437320662334 17.6001625745214 -27.3109016041285 2.95958285922542 30.2612692590549 -16.5598148569812 1.66437320662334 26.6129518016525 -20.9367263538275 2.35268322440737 24.6895022113209 -22.5759312344478 2.62348305701732 22.1972139887446 -24.3909393673406 2.83566066434193 19.5495546693373 -25.951223117814 2.95958285922542 29.0427926176592 -18.0568981750978 2.0412564980187 32.3658774192392 -12.6200051982408 1.2233492630115 34.362088737649 -6.51308438799052 0.394894663753647 30.000291228973 -16.4170003628865 2.0412564980187 26.2936159242991 -20.6855010132889 2.62348305701732 28.7565545162162 -17.8789341507826 2.35268322440737 24.3383618345863 -22.2548506014342 2.83566066434193 21.8684111599262 -24.0296413294163 2.95958285922542 32.1392298878993 -12.5316314771571 1.66437320662334 29.7046162738416 -16.2551987387408 2.35268322440737 25.9196614345589 -20.3913065594445 2.83566066434193 28.4114969805269 -17.6644000710707 2.62348305701732 23.9778426169909 -21.9251940131618 2.95958285922542 31.8620560247448 -12.4235566813307 2.0412564980187 34.1315340630845 -6.46938442367959 1.2233492630115 29.3481826933072 -16.0601482915196 2.62348305701732 25.5357187467054 -20.0892542711056 2.95958285922542 31.5480320069908 -12.3011133844877 2.35268322440737 28.0074214480213 -17.4131724828165 2.83566066434193 33.892522222434 -6.4240814649517 1.66437320662334 28.9307853784808 -15.8317367798889 2.83566066434193 31.1694787914433 -12.1535090576796 2.62348305701732 27.5925531945239 -17.1552346905352 2.95958285922542 33.6002276855328 -6.36867915808029 2.0412564980187 28.5022395223564 -15.5972244739312 2.95958285922542 33.269072706486 -6.30591113659877 2.35268322440737 30.72617854052 -11.980658762334 2.83566066434193 32.8698682664585 -6.23024483395311 2.62348305701732 30.2710378896246 -11.8031916939821 2.95958285922542 32.4023846441678 -6.14163670814244 2.83566066434193 31.922414692224 -6.05066188921984 2.95958285922542 3.1444498003349 0 6.2803281604339 0 3.3289132332819 0 3.5133766662289 0 3.6978400991759 0 3.8823035321229 0 4.0667669650699 0 4.2512303980169 0 4.4356938309639 0 4.6201572639109 0 4.8046206968579 0 4.9890841298049 0 5.1735475627519 0 5.3580109956989 0 5.5424744286459 0 5.7269378615929 0 5.9114012945399 0 6.0958647274869 0 3.14471765867608 1.5707963267949 3.14467045425237 1.40646288415345 3.14462486328954 1.23826857514189 3.14458173829391 1.06439234031466 3.14454587136846 0.901450519455325 3.14451676515079 0.748334018312216 3.14449154707276 0.588111825782883 3.14447124702427 0.420024791538561 3.14445819865319 0.262256116124243 3.14445193286038 0.132014677264892 6.2800603020933 1.57079632681381 6.28010750651712 1.40646288376149 6.28015309748005 1.23826857430841 6.28019622247578 1.06439233898942 6.28023208940129 0.901450517630278 6.280261195619 0.748334015971472 6.28028641369702 0.58811182285617 6.28030671374534 0.420024789191081 6.28031976211624 0.262256114439473 6.28032602790913 0.132014676457635 6.11419730179794 1.57079632679291 5.94833321143218 1.57079632679521 5.78247277652861 1.57079632679572 5.61659953614309 1.57079632679295 5.45073427663461 1.5707963267949 5.28484371734279 1.5707963267949 5.1189669655613 1.5707963267949 4.95308417678453 1.5707963267949 4.78719063924215 1.5707963267949 4.62131407988428 1.5707963267949 4.45542104560538 1.5707963267949 4.28954440681735 1.5707963267949 4.12366004376284 1.5707963267949 3.95777553191442 1.5707963267949 3.79190109367593 1.5707963267949 3.62601951691968 1.5707963267949 3.46015275509686 1.5707963267949 3.30243284846672 1.5707963267949 3.30243284846672 0.132014676457635 3.46015275509686 0.132014676457635 3.30243284846672 0.420024789191081 3.5133766662289 0.132014676457635 3.30243284846672 0.58811182285617 3.46015275509686 0.420024789191081 3.62601951691968 0.132014676457635 3.30243284846672 0.748334015971472 3.5133766662289 0.420024789191081 3.6978400991759 0.132014676457635 3.46015275509686 0.58811182285617 3.30243284846672 0.901450517630278 3.5133766662289 0.58811182285617 3.62601951691968 0.420024789191081 3.79190109367593 0.132014676457635 3.46015275509686 0.748334015971472 3.30243284846672 1.06439233898942 3.5133766662289 0.748334015971472 3.6978400991759 0.420024789191081 3.62601951691968 0.58811182285617 3.8823035321229 0.132014676457635 3.46015275509686 0.901450517630278 3.30243284846672 1.23826857430841 3.5133766662289 0.901450517630278 3.6978400991759 0.58811182285617 3.79190109367593 0.420024789191081 3.95777553191442 0.132014676457635 3.62601951691968 0.748334015971472 3.46015275509686 1.06439233898942 3.30243284846672 1.40646288376149 3.5133766662289 1.06439233898942 3.6978400991759 0.748334015971472 3.8823035321229 0.420024789191081 3.79190109367593 0.58811182285617 3.62601951691968 0.901450517630278 4.0667669650699 0.132014676457635 3.46015275509686 1.23826857430841 3.95777553191442 0.420024789191081 4.12366004376284 0.132014676457635 3.6978400991759 0.901450517630278 3.5133766662289 1.23826857430841 3.79190109367593 0.748334015971472 3.8823035321229 0.58811182285617 3.62601951691968 1.06439233898942 3.46015275509686 1.40646288376149 3.95777553191442 0.58811182285617 3.6978400991759 1.06439233898942 3.79190109367593 0.901450517630278 3.5133766662289 1.40646288376149 3.8823035321229 0.748334015971472 4.0667669650699 0.420024789191081 3.62601951691968 1.23826857430841 4.2512303980169 0.132014676457635 4.12366004376284 0.420024789191081 3.95777553191442 0.748334015971472 3.79190109367593 1.06439233898942 3.8823035321229 0.901450517630278 3.6978400991759 1.23826857430841 4.0667669650699 0.58811182285617 3.62601951691968 1.40646288376149 4.12366004376284 0.58811182285617 3.95777553191442 0.901450517630278 3.8823035321229 1.06439233898942 3.6978400991759 1.40646288376149 3.79190109367593 1.23826857430841 4.0667669650699 0.748334015971472 4.2512303980169 0.420024789191081 4.4356938309639 0.132014676457635 4.12366004376284 0.748334015971472 3.95777553191442 1.06439233898942 4.0667669650699 0.901450517630278 3.8823035321229 1.23826857430841 3.79190109367593 1.40646288376149 4.2512303980169 0.58811182285617 4.12366004376284 0.901450517630278 3.95777553191442 1.23826857430841 4.0667669650699 1.06439233898942 3.8823035321229 1.40646288376149 4.2512303980169 0.748334015971472 4.4356938309639 0.420024789191081 4.6201572639109 0.132014676457635 4.12366004376284 1.06439233898942 3.95777553191442 1.40646288376149 4.2512303980169 0.901450517630278 4.0667669650699 1.23826857430841 4.4356938309639 0.58811182285617 4.12366004376284 1.23826857430841 4.2512303980169 1.06439233898942 4.0667669650699 1.40646288376149 4.4356938309639 0.748334015971472 4.6201572639109 0.420024789191081 4.78719063924215 0.132014676457635 4.12366004376284 1.40646288376149 4.4356938309639 0.901450517630278 4.2512303980169 1.23826857430841 4.6201572639109 0.58811182285617 4.78719063924215 0.420024789191081 4.4356938309639 1.06439233898942 4.95308417678453 0.132014676457635 4.2512303980169 1.40646288376149 4.6201572639109 0.748334015971472 4.78719063924215 0.58811182285617 4.6201572639109 0.901450517630278 4.4356938309639 1.23826857430841 4.95308417678453 0.420024789191081 5.1189669655613 0.132014676457635 4.78719063924215 0.748334015971472 4.6201572639109 1.06439233898942 4.4356938309639 1.40646288376149 5.1735475627519 0.132014676457635 4.95308417678453 0.58811182285617 4.78719063924215 0.901450517630278 4.6201572639109 1.23826857430841 5.1189669655613 0.420024789191081 5.28484371734279 0.132014676457635 4.95308417678453 0.748334015971472 4.78719063924215 1.06439233898942 4.6201572639109 1.40646288376149 5.1735475627519 0.420024789191081 5.3580109956989 0.132014676457635 5.1189669655613 0.58811182285617 4.95308417678453 0.901450517630278 4.78719063924215 1.23826857430841 5.1735475627519 0.58811182285617 5.28484371734279 0.420024789191081 5.45073427663461 0.132014676457635 5.1189669655613 0.748334015971472 4.95308417678453 1.06439233898942 4.78719063924215 1.40646288376149 5.1735475627519 0.748334015971472 5.3580109956989 0.420024789191081 5.28484371734279 0.58811182285617 5.5424744286459 0.132014676457635 5.1189669655613 0.901450517630278 4.95308417678453 1.23826857430841 5.1735475627519 0.901450517630278 5.45073427663461 0.420024789191081 5.3580109956989 0.58811182285617 5.61659953614309 0.132014676457635 5.28484371734279 0.748334015971472 5.1189669655613 1.06439233898942 4.95308417678453 1.40646288376149 5.1735475627519 1.06439233898942 5.3580109956989 0.748334015971472 5.5424744286459 0.420024789191081 5.45073427663461 0.58811182285617 5.28484371734279 0.901450517630278 5.7269378615929 0.132014676457635 5.1189669655613 1.23826857430841 5.61659953614309 0.420024789191081 5.78247277652861 0.132014676457635 5.3580109956989 0.901450517630278 5.1735475627519 1.23826857430841 5.45073427663461 0.748334015971472 5.5424744286459 0.58811182285617 5.28484371734279 1.06439233898942 5.1189669655613 1.40646288376149 5.61659953614309 0.58811182285617 5.3580109956989 1.06439233898942 5.45073427663461 0.901450517630278 5.1735475627519 1.40646288376149 5.5424744286459 0.748334015971472 5.7269378615929 0.420024789191081 5.28484371734279 1.23826857430841 5.9114012945399 0.132014676457635 5.78247277652861 0.420024789191081 5.61659953614309 0.748334015971472 5.45073427663461 1.06439233898942 5.5424744286459 0.901450517630278 5.3580109956989 1.23826857430841 5.7269378615929 0.58811182285617 5.28484371734279 1.40646288376149 5.78247277652861 0.58811182285617 5.61659953614309 0.901450517630278 5.5424744286459 1.06439233898942 5.45073427663461 1.23826857430841 5.3580109956989 1.40646288376149 5.7269378615929 0.748334015971472 5.9114012945399 0.420024789191081 6.0958647274869 0.132014676457635 5.78247277652861 0.748334015971472 5.61659953614309 1.06439233898942 5.7269378615929 0.901450517630278 5.5424744286459 1.23826857430841 5.45073427663461 1.40646288376149 5.9114012945399 0.58811182285617 5.78247277652861 0.901450517630278 5.61659953614309 1.23826857430841 5.7269378615929 1.06439233898942 5.5424744286459 1.40646288376149 5.9114012945399 0.748334015971472 6.0958647274869 0.420024789191081 5.78247277652861 1.06439233898942 5.61659953614309 1.40646288376149 5.9114012945399 0.901450517630278 5.7269378615929 1.23826857430841 6.0958647274869 0.58811182285617 5.78247277652861 1.23826857430841 5.9114012945399 1.06439233898942 5.7269378615929 1.40646288376149 6.0958647274869 0.748334015971472 5.78247277652861 1.40646288376149 6.0958647274869 0.901450517630278 5.9114012945399 1.23826857430841 6.0958647274869 1.06439233898942 5.9114012945399 1.40646288376149 6.0958647274869 1.23826857430841 6.0958647274869 1.40646288376149 156 50 51 156 51 149 156 149 151 157 146 142 157 142 152 158 152 147 158 147 153 159 150 146 159 146 157 160 156 151 160 151 154 161 153 155 162 12 13 162 161 155 162 155 12 163 157 152 163 152 158 164 150 159 164 154 150 165 156 160 165 49 50 165 50 156 166 162 13 167 153 161 167 158 153 168 157 163 168 159 157 169 154 164 169 160 154 170 161 162 170 162 166 170 167 161 171 13 14 171 166 13 172 158 167 172 163 158 173 164 159 173 159 168 173 169 164 174 165 160 174 160 169 174 49 165 174 48 49 175 170 166 175 166 171 176 171 14 177 170 175 177 167 170 178 163 172 178 168 163 179 169 173 180 177 175 181 175 171 181 180 175 182 14 15 182 176 14 183 172 167 183 177 180 183 167 177 184 173 168 184 168 178 185 174 169 185 46 47 185 47 48 185 169 179 185 48 174 186 183 180 187 171 176 187 181 171 188 180 181 188 186 180 189 182 15 190 178 172 38 18 2 190 172 183 190 184 178 190 183 186 191 179 173 191 173 184 191 185 179 192 190 186 193 187 176 193 176 182 194 188 181 194 181 187 195 15 16 195 189 15 196 192 186 196 186 188 197 190 192 197 184 190 198 185 191 198 45 46 198 46 185 199 197 192 29 39 30 200 196 188 57 1 3 200 188 194 57 27 28 57 28 1 201 182 189 58 3 4 201 193 182 58 57 3 201 189 195 59 25 26 202 187 193 59 26 27 59 57 58 59 27 57 202 194 187 203 199 192 60 58 4 203 192 196 61 24 25 204 195 16 205 191 184 205 197 199 61 25 59 62 61 59 205 184 197 62 59 58 63 4 5 206 201 195 63 60 4 207 204 16 207 16 17 64 23 24 64 24 61 208 196 200 65 62 58 65 58 60 208 203 196 209 205 199 66 63 5 210 200 194 210 194 202 67 61 62 67 64 61 211 193 201 211 202 193 68 22 23 211 201 206 68 23 64 211 210 202 212 199 203 69 67 62 212 209 199 69 62 65 213 198 191 213 45 198 213 191 205 213 205 209 70 60 63 70 63 66 70 65 60 71 5 6 214 211 206 71 66 5 215 212 203 215 203 208 72 67 69 72 68 64 216 200 210 72 64 67 216 208 200 73 21 22 217 44 45 73 22 68 217 45 213 217 213 209 74 72 69 218 210 211 218 211 214 75 66 71 75 70 66 219 195 204 219 206 195 219 204 207 76 70 75 76 69 65 76 65 70 220 209 212 77 71 6 220 217 209 221 17 18 221 207 17 78 68 72 78 73 68 79 20 21 222 219 207 79 21 73 80 72 74 223 218 214 80 78 72 81 76 75 224 215 208 224 208 216 225 218 223 82 75 71 225 216 210 82 81 75 225 210 218 83 6 7 226 212 215 83 77 6 226 220 212 84 69 76 84 74 69 84 76 81 227 214 206 227 206 219 85 73 78 85 79 73 228 44 217 86 19 20 228 217 220 86 55 56 229 219 222 86 56 19 86 20 79 87 78 80 87 85 78 229 227 219 230 225 223 88 84 81 231 224 216 231 225 230 89 82 71 89 71 77 231 216 225 90 88 81 232 215 224 232 226 215 90 81 82 233 228 220 233 220 226 233 44 228 91 80 74 91 74 84 91 84 88 233 43 44 234 214 227 234 223 214 234 227 229 92 83 7 93 79 85 235 207 221 93 86 79 94 89 77 235 222 207 236 18 38 94 83 92 236 38 37 94 77 83 236 235 221 95 7 8 236 221 18 95 92 7 237 234 229 96 91 88 97 93 85 238 231 230 97 85 87 239 230 223 98 96 88 239 223 234 240 224 231 98 88 90 240 232 224 99 98 90 99 90 82 240 231 238 99 82 89 241 226 232 241 43 233 100 80 91 100 91 96 241 232 240 241 233 226 100 87 80 101 86 93 242 222 235 101 93 97 242 229 222 101 55 86 243 239 234 243 234 237 102 99 89 102 89 94 103 100 96 244 240 238 245 238 230 104 103 96 245 230 239 104 96 98 246 43 241 105 101 97 246 42 43 105 55 101 105 54 55 246 241 240 246 240 244 106 98 99 106 99 102 247 237 229 247 229 242 107 94 92 248 36 35 248 37 36 248 236 37 248 235 236 108 97 87 248 242 235 108 87 100 249 239 243 249 245 239 109 8 9 109 95 8 250 42 246 250 246 244 110 92 95 110 107 92 251 243 237 251 237 247 111 106 102 252 244 238 252 238 245 112 103 104 253 35 34 253 248 35 253 247 242 253 242 248 113 106 111 113 98 106 254 245 249 254 252 245 113 104 98 255 249 243 114 108 100 255 243 251 114 100 103 115 94 107 256 41 42 115 102 94 256 244 252 256 42 250 256 250 244 256 252 254 116 97 108 257 34 33 116 105 97 257 251 247 116 54 105 257 253 34 116 108 114 257 247 253 258 256 254 258 41 256 259 33 32 259 257 33 117 115 107 117 107 110 259 251 257 259 255 251 118 113 111 260 254 249 260 249 255 261 259 32 261 255 259 261 32 31 261 260 255 119 112 104 262 258 254 119 104 113 262 41 258 120 53 54 120 54 116 120 116 114 262 40 41 121 114 103 262 254 260 121 103 112 263 260 261 263 261 31 263 262 260 263 31 30 121 120 114 122 111 102 264 40 262 264 263 30 264 39 40 122 102 115 264 262 263 264 30 39 123 110 95 123 95 109 124 123 109 124 109 9 125 122 115 125 115 117 126 113 118 126 119 113 127 111 122 127 118 111 128 112 119 128 121 112 129 120 121 129 121 128 129 53 120 130 125 117 130 110 123 130 117 110 131 122 125 131 127 122 132 128 119 132 119 126 133 118 127 133 126 118 134 128 132 134 53 129 134 129 128 134 52 53 135 131 125 135 125 130 136 130 123 136 123 124 137 9 10 137 124 9 138 133 127 138 127 131 139 52 134 139 134 132 140 131 135 140 138 131 141 132 126 141 126 133 142 135 130 142 130 136 143 141 133 143 133 138 144 138 140 145 132 141 145 51 52 145 52 139 145 141 143 145 139 132 146 135 142 146 140 135 147 124 137 147 136 124 148 10 11 148 147 137 148 137 10 149 51 145 149 145 143 150 144 140 150 140 146 151 143 138 151 138 144 151 149 143 152 142 136 152 136 147 153 147 148 154 144 150 154 151 144 155 11 12 155 148 11 155 153 148 +264 470 1 0.178476500757642 +31.9998437496185 -0.100000000000002 3 -31.9998437496185 -0.100000000000016 3 31.5441749829062 -5.38191696244084 3 30.222686055053 -10.5161416630454 3 28.0717025150098 -15.3616254880709 3 25.149994883685 -19.7857959483432 3 21.538075176083 -23.6666696082026 3 17.3343103362803 -26.8983590647437 3 12.6549929007604 -29.3913444604364 3 7.62809087160254 -31.0775201256159 3 2.39142477476577 -31.9105162425689 3 -2.91037685549449 -31.8673760046316 3 -8.1327694089481 -30.949282476682 3 -13.1314007185057 -29.1816089697678 3 -17.7697381963229 -26.6127114418573 3 -21.9202267957306 -23.3131647228424 3 -25.4687103439604 -19.3738165529246 3 -28.318141563916 -14.902444926316 3 -30.3899979484981 -10.0223764335195 3 -31.5869774231684 -5.12472856223552 3 34.9998571425655 -0.100000000044039 0 32.4906305503012 -0.0999999999999957 2.95958287215134 32.9791483571031 -0.0999999999999972 2.83566065327081 33.4549576498847 -0.100000000000012 2.62348305753014 33.8612715932438 -0.0999999999999932 2.35268321292604 34.1983241550915 -0.100000000000003 2.04125651586357 34.495824164957 -0.099999999999994 1.66437318617936 34.7390925709801 -0.100000000000201 1.22334925899509 34.8972792584574 -0.100000000004715 0.777780557934591 34.9737531766234 -0.0999999999917521 0.394894655012351 -34.9998571425655 -0.100000000023911 0 -32.4906305491413 -0.1 2.95958287234375 -32.9791483547399 -0.0999999999999989 2.83566065408696 -33.4549576464082 -0.0999999999999971 2.62348305945832 -33.8612715889504 -0.100000000000003 2.35268321632304 -34.1983241503136 -0.099999999999997 2.04125652100922 -34.4958241600862 -0.100000000000002 1.66437319348402 -34.7390925681325 -0.10000000000011 1.22334926543543 -34.8972792570999 -0.100000000002558 0.777780562805134 -34.9737531763378 -0.0999999999955189 0.39489465741768 -34.387735963849 -6.51794563344987 0 -32.6088257525758 -12.714734878799 0 -29.723485612544 -18.4801083070659 0 -25.8296162381791 -23.6184445929107 0 -21.0593381065312 -27.9553980210406 0 -15.5745085789603 -31.3438141030075 0 -9.56123001896417 -33.6687225852787 0 -3.22353526781181 -34.851238433909 0 3.22353526779162 -34.8512384339108 0 9.56123001894467 -33.6687225852843 0 15.5745085789421 -31.3438141030165 0 21.059338106515 -27.9553980210528 0 25.8296162381655 -23.6184445929257 0 29.7234856125333 -18.4801083070832 0 32.6088257525685 -12.7147348788178 0 34.3877359638452 -6.51794563346978 0 -34.5224907335519 -5.60098600346175 0.394894663753789 -33.2142677096425 -10.9538044154233 0.394894663753789 -34.2908598313385 -5.56340582272453 1.2233492630119 -32.5845052817269 -12.7052519142384 0.394894663753789 -34.0507322850456 -5.52444713239675 1.66437320662379 -32.9914144150956 -10.8803091505829 1.2233492630119 -30.9498697622789 -16.2873869100332 0.394894663753789 -33.7570733192394 -5.47680341601584 2.04125649801907 -32.3658774192464 -12.620005198222 1.2233492630119 -29.7013170999195 -18.4663253840384 0.394894663753789 -32.760386455132 -10.8041179453437 1.66437320662379 -33.4243725110087 -5.42282548653726 2.35268322440767 -32.1392298879063 -12.5316314771384 1.66437320662379 -30.7422095933835 -16.1781056257311 1.2233492630119 -27.8356224001217 -21.1743131236173 0.394894663753789 -32.4778556383116 -10.7109415027427 2.04125649801907 -33.0233045873774 -5.35775556316371 2.62348305701752 -31.8620560247516 -12.4235566813121 2.04125649801907 -29.5020341765094 -18.3424243699927 1.2233492630119 -30.5269320706386 -16.0648157045486 1.66437320662379 -25.8103518698904 -23.6008293712656 0.394894663753789 -32.1577624620377 -10.6053772892467 2.35268322440767 -32.5536387547258 -5.28155620155655 2.83566066434202 -31.5480320069975 -12.3011133844693 2.35268322440767 -29.2954411918978 -18.2139784407074 1.66437320662379 -27.6488574769308 -21.0322426892901 1.2233492630119 -23.9573672696132 -25.4797559675915 0.394894663753789 -30.2636629219443 -15.9262701623801 2.04125649801907 -31.7718929288092 -10.4781205502511 2.62348305701752 -32.0714283063195 -5.20332158073813 2.95958285922544 -31.16947879145 -12.1535090576614 2.62348305701752 -29.0427926176694 -18.0568981750808 2.04125649801907 -25.6371756313563 -23.4424780679821 1.2233492630119 -27.4552416756242 -20.8849608522392 1.66437320662379 -29.9653922448944 -15.7693050456173 2.35268322440767 -21.0436315299619 -27.9345481919851 0.394894663753789 -31.3200249908855 -10.3290980561565 2.83566066434202 -23.7966237520569 -25.3087978838165 1.2233492630119 -19.4211582499749 -29.0859420148047 0.394894663753789 -28.7565545162263 -17.8789341507657 2.35268322440767 -30.7261785405267 -11.9806587623162 2.83566066434202 -27.2184632765892 -20.7048456067451 2.04125649801907 -25.4576469724508 -23.2783181499988 1.66437320662379 -29.6058295442185 -15.5800849658785 2.62348305701752 -30.8560878129637 -10.1760952215787 2.95958285922544 -23.6299838690168 -25.1315687456334 1.66437320662379 -28.4114969805369 -17.6644000710541 2.62348305701752 -26.950205283804 -20.5007841111732 2.35268322440767 -30.2710378896313 -11.8031916939645 2.95958285922544 -25.2380961498955 -23.0775622080586 2.04125649801907 -20.902437912307 -27.7471195197444 1.2233492630119 -29.1847679103824 -15.3585010369013 2.83566066434202 -15.5628927242603 -31.3204371092154 0.394894663753789 -19.2908507225664 -28.8907879906466 1.2233492630119 -23.4261951056239 -24.9148300739024 2.04125649801907 -26.6268226123402 -20.2547897573951 2.62348305701752 -24.9893561330147 -22.8501158436773 2.35268322440767 -28.0074214480312 -17.4131724828002 2.83566066434202 -20.7560650551635 -27.5528156218619 1.66437320662379 -28.7524598625254 -15.1309986760238 2.95958285922544 -19.1557632773202 -28.6884753608442 1.66437320662379 -23.1953127073868 -24.6692760821766 2.35268322440767 -24.6895022113337 -22.5759312344332 2.62348305701752 -27.5925531945337 -17.1552346905191 2.95958285922544 -26.2481291723787 -19.9667209885226 2.83566066434202 -20.577061427656 -27.3151957294956 2.04125649801907 -15.4584724809298 -31.1102905945471 1.2233492630119 -9.55409901652574 -33.6436116170897 0.394894663753789 -18.990560908509 -28.4410613571013 2.04125649801907 -22.9169859892871 -24.3732628860423 2.62348305701752 -20.3742593392388 -27.0459843671764 2.35268322440767 -24.338361834599 -22.25485060142 2.83566066434202 -25.8593209585442 -19.6709580001322 2.95958285922544 -15.3502219125702 -30.8924355223305 1.66437320662379 -18.8033949506291 -28.1607537602026 2.35268322440767 -22.5910547888513 -24.0266201453826 2.83566066434202 -20.1297831898056 -26.7214524170512 2.62348305701752 -23.9778426170035 -21.9251940131478 2.95958285922544 -15.2178391416505 -30.6260142133618 2.04125649801907 -9.48999516631071 -33.4178776116053 1.2233492630119 -3.22113107527491 -34.8252455160771 0.394894663753789 -18.5777680202332 -27.8228453960358 2.62348305701752 -22.256418076139 -23.6707186942027 2.95958285922544 -15.0678561341169 -30.3241722975858 2.35268322440767 -19.843492296115 -26.3414131279514 2.83566066434202 -9.42353986991902 -33.1838632709717 1.66437320662379 -18.31355028082 -27.4271418160053 2.83566066434202 -14.8870529261794 -29.9603044997617 2.62348305701752 -19.5495546693523 -25.9512231178026 2.95958285922544 -9.34226975363286 -32.8976803223045 2.04125649801907 -3.19951868632906 -34.5915832609128 1.2233492630119 2.61366648584847 -34.8760972323438 0.394894663753789 -18.0422753748298 -27.0208691270058 2.95958285922544 -9.25019480778821 -32.573449464711 2.35268322440767 -14.6753254750456 -29.5342014329974 2.83566066434202 -3.17711351552712 -34.3493498479367 1.66437320662379 2.59612992016801 -34.6420937842741 1.2233492630119 -9.13919926333864 -32.1825919927265 2.62348305701752 8.33700180220108 -33.9656857962451 0.394894663753789 -14.4579428552055 -29.0967172972412 2.95958285922544 -3.14971358000125 -34.0531155564677 2.04125649801907 2.57795008126477 -34.3995066628143 1.66437320662379 -3.11867083397136 -33.7174970340541 2.35268322440767 -9.00921924815187 -31.7248829883124 2.83566066434202 8.2810641450922 -33.7377908130586 1.2233492630119 13.8310777107686 -32.12280654018 0.394894663753789 2.55571742710546 -34.102839810945 2.04125649801907 -3.08124907428213 -33.3129118314138 2.62348305701752 -8.8757675106618 -31.2549487309873 2.95958285922544 15.5628927242421 -31.3204371092244 0.394894663753789 8.22307459266816 -33.5015362261182 1.66437320662379 2.53052895043967 -33.7667312193984 2.35268322440767 -3.0374267666675 -32.8391271309168 2.83566066434202 13.738277193174 -31.9072764755055 1.2233492630119 18.9452569303937 -29.3981402558141 0.394894663753789 8.15215748109429 -33.2126136150353 2.04125649801907 2.50016446142772 -33.361555242691 2.62348305701752 -2.992433980018 -32.3526878010962 2.95958285922544 15.4584724809118 -31.1102905945561 1.2233492630119 21.0436315299458 -27.9345481919973 0.394894663753789 13.6420725832892 -31.6838403748467 1.66437320662379 8.07181196781075 -32.8852788579999 2.35268322440767 2.46460648689385 -32.8870787232333 2.83566066434202 15.3502219125523 -30.8924355223394 1.66437320662379 18.8181424939147 -29.2008915172047 1.2233492630119 23.5397068822563 -25.8661093045824 0.394894663753789 13.5244211656126 -31.4105938637479 2.04125649801907 7.97495615204919 -32.4906796623001 2.62348305701752 2.42809877087031 -32.3999290962012 2.95958285922544 15.2178391416327 -30.6260142133706 2.04125649801907 20.9024379122909 -27.7471195197566 1.2233492630119 18.6863652679985 -28.9964073350034 1.66437320662379 25.8103518698768 -23.6008293712805 0.394894663753789 13.3911280388625 -31.1010193379397 2.35268322440767 7.86153429835186 -32.0285889567309 2.83566066434202 15.0678561340993 -30.3241722975945 2.35268322440767 23.3817656842976 -25.6925589579052 1.2233492630119 20.7560650551475 -27.552815621874 1.66437320662379 27.4872888537371 -21.6245777329956 0.394894663753789 18.5252110627573 -28.7463376766238 2.04125649801907 13.230444336697 -30.7278299461396 2.62348305701752 7.74508298525188 -31.5541559644926 2.95958285922544 14.8870529261621 -29.9603044997704 2.62348305701752 20.5770614276402 -27.3151957295076 2.04125649801907 25.6371756313427 -23.442478067997 1.2233492630119 23.2180309150506 -25.5126424678874 1.66437320662379 18.3426314701801 -28.4630213568635 2.35268322440767 29.7013170999088 -18.4663253840556 0.394894663753789 13.042277594047 -30.2908109373652 2.83566066434202 27.3028610971847 -21.4794862189175 1.2233492630119 30.680526305158 -16.7892440657004 0.394894663753789 20.3742593392232 -27.0459843671882 2.35268322440767 14.6753254750285 -29.5342014330059 2.83566066434202 23.017794899875 -25.2926173553762 2.04125649801907 25.4576469724373 -23.2783181500136 1.66437320662379 18.1225333631698 -28.1214860035189 2.62348305701752 12.8490849812565 -29.842119298475 2.95958285922544 27.1116681940528 -21.3290724833988 1.66437320662379 20.1297831897901 -26.7214524170629 2.62348305701752 22.7909375863142 -25.0433399918789 2.35268322440767 14.4579428551886 -29.0967172972496 2.95958285922544 25.2380961498822 -23.0775622080732 2.04125649801907 29.5020341764988 -18.3424243700098 1.2233492630119 17.864790086774 -27.7215350808516 2.83566066434202 32.5845052817195 -12.7052519142573 0.394894663753789 30.4746733137475 -16.6765955380947 1.2233492630119 26.8778528277195 -21.1451271481077 2.04125649801907 22.5174630726986 -24.7428383035368 2.62348305701752 24.9893561330015 -22.8501158436918 2.35268322440767 19.8434922960998 -26.3414131279629 2.83566066434202 29.2954411918873 -18.2139784407243 1.66437320662379 17.6001625745215 -27.3109016041283 2.95958285922544 30.2612692590548 -16.5598148569809 1.66437320662379 26.6129518016524 -20.9367263538271 2.35268322440767 24.6895022113207 -22.5759312344475 2.62348305701752 22.1972139887446 -24.3909393673402 2.83566066434202 19.5495546693372 -25.9512231178139 2.95958285922544 29.0427926176589 -18.0568981750976 2.04125649801907 32.3658774192391 -12.6200051982408 1.2233492630119 34.362088737649 -6.51308438799052 0.394894663753789 30.0002912289728 -16.4170003628861 2.04125649801907 26.293615924299 -20.6855010132885 2.62348305701752 28.7565545162159 -17.8789341507824 2.35268322440767 24.3383618345861 -22.2548506014341 2.83566066434202 21.8684111599263 -24.029641329416 2.95958285922544 32.1392298878991 -12.531631477157 1.66437320662379 29.7046162738413 -16.2551987387405 2.35268322440767 25.9196614345588 -20.3913065594441 2.83566066434202 28.4114969805266 -17.6644000710705 2.62348305701752 23.9778426169908 -21.9251940131617 2.95958285922544 31.8620560247444 -12.4235566813306 2.04125649801907 34.1315340630843 -6.46938442367956 1.2233492630119 29.348182693307 -16.0601482915193 2.62348305701752 25.5357187467054 -20.0892542711053 2.95958285922544 31.5480320069904 -12.3011133844875 2.35268322440767 28.0074214480211 -17.4131724828164 2.83566066434202 33.8925222224337 -6.42408146495165 1.66437320662379 28.9307853784807 -15.8317367798886 2.83566066434202 31.169478791443 -12.1535090576795 2.62348305701752 27.5925531945238 -17.1552346905351 2.95958285922544 33.6002276855324 -6.36867915808022 2.04125649801907 28.5022395223564 -15.597224473931 2.95958285922544 33.2690727064857 -6.3059111365987 2.35268322440767 30.7261785405198 -11.980658762334 2.83566066434202 32.8698682664582 -6.23024483395304 2.62348305701752 30.2710378896244 -11.803191693982 2.95958285922544 32.4023846441675 -6.14163670814239 2.83566066434202 31.9224146922238 -6.05066188921982 2.95958285922544 6.2800603020933 1.57079632681382 3.14471765867608 1.5707963267949 6.11419730179795 1.57079632679291 5.94833321143218 1.57079632679521 5.78247277652862 1.57079632679572 5.6165995361431 1.57079632679295 5.45073427663462 1.5707963267949 5.2848437173428 1.5707963267949 5.1189669655613 1.5707963267949 4.95308417678454 1.5707963267949 4.78719063924215 1.5707963267949 4.62131407988426 1.5707963267949 4.45542104560537 1.5707963267949 4.28954440681732 1.57079632679489 4.12366004376278 1.5707963267949 3.95777553191437 1.5707963267949 3.79190109367583 1.5707963267949 3.62601951691954 1.5707963267949 3.46015275509667 1.5707963267949 3.30243284846663 1.5707963267949 6.2803281604339 -1.54074395550979e-033 6.28010750651712 1.40646288376154 6.28015309748005 1.23826857430851 6.28019622247578 1.06439233898956 6.28023208940129 0.901450517630434 6.280261195619 0.748334015971638 6.28028641369702 0.588111822856349 6.28030671374534 0.420024789191226 6.28031976211624 0.262256114439567 6.28032602790913 0.132014676457681 3.1444498003349 -1.38777878078145e-017 3.14467045425237 1.40646288415347 3.14462486328954 1.23826857514191 3.14458173829391 1.06439234031469 3.14454587136846 0.90145051945535 3.14451676515079 0.748334018312236 3.14449154707276 0.588111825782892 3.14447124702427 0.420024791538566 3.14445819865319 0.262256116124247 3.14445193286038 0.132014677264893 3.3289132332819 -1.54074395550979e-033 3.5133766662289 -1.54074395550979e-033 3.6978400991759 -1.54074395550979e-033 3.8823035321229 -1.54074395550979e-033 4.0667669650699 -1.54074395550979e-033 4.2512303980169 -1.54074395550979e-033 4.4356938309639 -1.54074395550979e-033 4.6201572639109 -1.54074395550979e-033 4.8046206968579 -1.54074395550979e-033 4.9890841298049 -1.54074395550979e-033 5.1735475627519 -1.54074395550979e-033 5.3580109956989 -1.54074395550979e-033 5.5424744286459 -1.54074395550979e-033 5.7269378615929 -1.54074395550979e-033 5.9114012945399 -1.54074395550979e-033 6.0958647274869 -1.54074395550979e-033 3.30243284846663 0.132014676457681 3.46015275509667 0.132014676457681 3.30243284846663 0.420024789191226 3.5133766662289 0.132014676457681 3.30243284846663 0.588111822856349 3.46015275509667 0.420024789191226 3.62601951691954 0.132014676457681 3.30243284846663 0.748334015971638 3.5133766662289 0.420024789191226 3.6978400991759 0.132014676457681 3.46015275509667 0.588111822856349 3.30243284846663 0.901450517630434 3.5133766662289 0.588111822856349 3.62601951691954 0.420024789191226 3.79190109367583 0.132014676457681 3.46015275509667 0.748334015971638 3.30243284846663 1.06439233898956 3.5133766662289 0.748334015971638 3.6978400991759 0.420024789191226 3.62601951691954 0.588111822856349 3.8823035321229 0.132014676457681 3.46015275509667 0.901450517630434 3.30243284846663 1.23826857430851 3.5133766662289 0.901450517630434 3.6978400991759 0.588111822856349 3.79190109367583 0.420024789191226 3.95777553191437 0.132014676457681 3.62601951691954 0.748334015971638 3.46015275509667 1.06439233898956 3.30243284846663 1.40646288376154 3.5133766662289 1.06439233898956 3.6978400991759 0.748334015971638 3.8823035321229 0.420024789191226 3.79190109367583 0.588111822856349 3.62601951691954 0.901450517630434 4.0667669650699 0.132014676457681 3.46015275509667 1.23826857430851 3.95777553191437 0.420024789191226 4.12366004376278 0.132014676457681 3.6978400991759 0.901450517630434 3.5133766662289 1.23826857430851 3.79190109367583 0.748334015971638 3.8823035321229 0.588111822856349 3.62601951691954 1.06439233898956 3.46015275509667 1.40646288376154 3.95777553191437 0.588111822856349 3.6978400991759 1.06439233898956 3.79190109367583 0.901450517630434 3.5133766662289 1.40646288376154 3.8823035321229 0.748334015971638 4.0667669650699 0.420024789191226 3.62601951691954 1.23826857430851 4.2512303980169 0.132014676457681 4.12366004376278 0.420024789191226 3.95777553191437 0.748334015971638 3.79190109367583 1.06439233898956 3.8823035321229 0.901450517630434 3.6978400991759 1.23826857430851 4.0667669650699 0.588111822856349 3.62601951691954 1.40646288376154 4.12366004376278 0.588111822856349 3.95777553191437 0.901450517630434 3.8823035321229 1.06439233898956 3.6978400991759 1.40646288376154 3.79190109367583 1.23826857430851 4.0667669650699 0.748334015971638 4.2512303980169 0.420024789191226 4.4356938309639 0.132014676457681 4.12366004376278 0.748334015971638 3.95777553191437 1.06439233898956 4.0667669650699 0.901450517630434 3.8823035321229 1.23826857430851 3.79190109367583 1.40646288376154 4.2512303980169 0.588111822856349 4.12366004376278 0.901450517630434 3.95777553191437 1.23826857430851 4.0667669650699 1.06439233898956 3.8823035321229 1.40646288376154 4.2512303980169 0.748334015971638 4.4356938309639 0.420024789191226 4.6201572639109 0.132014676457681 4.12366004376278 1.06439233898956 3.95777553191437 1.40646288376154 4.2512303980169 0.901450517630434 4.0667669650699 1.23826857430851 4.4356938309639 0.588111822856349 4.12366004376278 1.23826857430851 4.2512303980169 1.06439233898956 4.0667669650699 1.40646288376154 4.4356938309639 0.748334015971638 4.6201572639109 0.420024789191226 4.78719063924215 0.132014676457681 4.12366004376278 1.40646288376154 4.4356938309639 0.901450517630434 4.2512303980169 1.23826857430851 4.6201572639109 0.588111822856349 4.78719063924215 0.420024789191226 4.4356938309639 1.06439233898956 4.95308417678454 0.132014676457681 4.2512303980169 1.40646288376154 4.6201572639109 0.748334015971638 4.78719063924215 0.588111822856349 4.6201572639109 0.901450517630434 4.4356938309639 1.23826857430851 4.95308417678454 0.420024789191226 5.1189669655613 0.132014676457681 4.78719063924215 0.748334015971638 4.6201572639109 1.06439233898956 4.4356938309639 1.40646288376154 5.1735475627519 0.132014676457681 4.95308417678454 0.588111822856349 4.78719063924215 0.901450517630434 4.6201572639109 1.23826857430851 5.1189669655613 0.420024789191226 5.2848437173428 0.132014676457681 4.95308417678454 0.748334015971638 4.78719063924215 1.06439233898956 4.6201572639109 1.40646288376154 5.1735475627519 0.420024789191226 5.3580109956989 0.132014676457681 5.1189669655613 0.588111822856349 4.95308417678454 0.901450517630434 4.78719063924215 1.23826857430851 5.1735475627519 0.588111822856349 5.2848437173428 0.420024789191226 5.45073427663462 0.132014676457681 5.1189669655613 0.748334015971638 4.95308417678454 1.06439233898956 4.78719063924215 1.40646288376154 5.1735475627519 0.748334015971638 5.3580109956989 0.420024789191226 5.2848437173428 0.588111822856349 5.5424744286459 0.132014676457681 5.1189669655613 0.901450517630434 4.95308417678454 1.23826857430851 5.1735475627519 0.901450517630434 5.45073427663462 0.420024789191226 5.3580109956989 0.588111822856349 5.6165995361431 0.132014676457681 5.2848437173428 0.748334015971638 5.1189669655613 1.06439233898956 4.95308417678454 1.40646288376154 5.1735475627519 1.06439233898956 5.3580109956989 0.748334015971638 5.5424744286459 0.420024789191226 5.45073427663462 0.588111822856349 5.2848437173428 0.901450517630434 5.7269378615929 0.132014676457681 5.1189669655613 1.23826857430851 5.6165995361431 0.420024789191226 5.78247277652862 0.132014676457681 5.3580109956989 0.901450517630434 5.1735475627519 1.23826857430851 5.45073427663462 0.748334015971638 5.5424744286459 0.588111822856349 5.2848437173428 1.06439233898956 5.1189669655613 1.40646288376154 5.6165995361431 0.588111822856349 5.3580109956989 1.06439233898956 5.45073427663462 0.901450517630434 5.1735475627519 1.40646288376154 5.5424744286459 0.748334015971638 5.7269378615929 0.420024789191226 5.2848437173428 1.23826857430851 5.9114012945399 0.132014676457681 5.78247277652862 0.420024789191226 5.6165995361431 0.748334015971638 5.45073427663462 1.06439233898956 5.5424744286459 0.901450517630434 5.3580109956989 1.23826857430851 5.7269378615929 0.588111822856349 5.2848437173428 1.40646288376154 5.78247277652862 0.588111822856349 5.6165995361431 0.901450517630434 5.5424744286459 1.06439233898956 5.45073427663462 1.23826857430851 5.3580109956989 1.40646288376154 5.7269378615929 0.748334015971638 5.9114012945399 0.420024789191226 6.0958647274869 0.132014676457681 5.78247277652862 0.748334015971638 5.6165995361431 1.06439233898956 5.7269378615929 0.901450517630434 5.5424744286459 1.23826857430851 5.45073427663462 1.40646288376154 5.9114012945399 0.588111822856349 5.78247277652862 0.901450517630434 5.6165995361431 1.23826857430851 5.7269378615929 1.06439233898956 5.5424744286459 1.40646288376154 5.9114012945399 0.748334015971638 6.0958647274869 0.420024789191226 5.78247277652862 1.06439233898956 5.6165995361431 1.40646288376154 5.9114012945399 0.901450517630434 5.7269378615929 1.23826857430851 6.0958647274869 0.588111822856349 5.78247277652862 1.23826857430851 5.9114012945399 1.06439233898956 5.7269378615929 1.40646288376154 6.0958647274869 0.748334015971638 5.78247277652862 1.40646288376154 6.0958647274869 0.901450517630434 5.9114012945399 1.23826857430851 6.0958647274869 1.06439233898956 5.9114012945399 1.40646288376154 6.0958647274869 1.23826857430851 6.0958647274869 1.40646288376154 156 149 151 157 146 142 157 142 152 158 152 147 158 147 153 159 146 157 159 150 146 160 156 151 160 151 154 161 148 155 161 153 148 162 155 50 162 50 51 163 157 152 163 152 158 164 150 159 164 154 150 165 156 160 165 14 156 165 13 14 166 162 51 167 158 153 167 153 161 168 164 159 168 159 157 168 157 163 169 154 164 169 160 154 170 155 162 170 162 166 170 161 155 171 166 51 171 51 52 172 158 167 172 163 158 173 164 168 174 12 13 174 165 160 174 13 165 174 160 169 175 170 166 175 166 171 176 171 52 177 170 175 177 172 167 177 167 161 177 161 170 178 168 163 178 163 172 179 169 164 179 164 173 180 177 175 181 175 171 181 171 176 182 52 53 182 176 52 183 177 180 183 172 177 184 168 178 184 173 168 185 10 11 185 11 12 185 12 174 185 174 169 185 169 179 186 183 180 187 181 176 188 181 187 188 180 175 188 175 181 188 186 180 189 182 53 190 178 172 190 172 183 30 56 21 190 184 178 190 183 186 191 179 173 191 173 184 192 190 186 193 182 189 193 176 182 193 187 176 194 188 187 195 189 53 195 53 54 196 186 188 196 188 194 197 190 192 197 184 190 198 9 10 198 179 191 198 185 179 198 10 185 199 197 192 1 3 22 200 196 194 57 39 40 57 40 31 57 31 41 58 57 41 201 193 189 58 41 42 202 187 193 202 194 187 59 37 38 59 38 39 59 39 57 203 199 192 203 192 186 203 196 200 60 58 42 203 186 196 204 195 54 205 191 184 61 36 37 61 37 59 205 184 197 205 197 199 62 57 58 206 195 204 62 59 57 206 201 189 62 61 59 206 189 195 62 58 60 63 42 43 207 204 54 63 60 42 207 54 55 64 35 36 64 36 61 208 203 200 65 62 60 65 60 63 209 205 199 66 63 43 210 200 194 210 194 202 67 61 62 211 202 193 211 193 201 67 62 65 68 34 35 212 199 203 68 35 64 212 203 208 213 9 198 213 191 205 213 198 191 69 67 65 213 205 209 214 201 206 70 69 65 70 65 63 214 211 201 71 66 43 71 43 44 215 212 208 216 200 210 72 64 61 216 208 200 72 61 67 72 67 69 217 8 9 73 33 34 73 34 68 217 9 213 217 213 209 218 202 211 218 210 202 218 216 210 74 72 69 218 211 214 75 63 66 219 204 207 219 206 204 75 70 63 75 66 71 220 209 199 76 69 70 220 199 212 76 74 69 77 71 44 221 55 56 78 64 72 221 207 55 78 68 64 222 219 207 78 72 74 79 33 73 79 32 33 223 218 214 80 78 74 224 215 208 224 208 216 81 70 75 81 76 70 225 218 223 225 216 218 82 75 71 226 212 215 226 220 212 83 44 45 83 77 44 227 214 206 84 74 76 84 80 74 227 206 219 228 220 226 85 73 68 228 8 217 85 68 78 228 209 220 85 78 80 228 217 209 86 19 20 86 20 2 86 2 32 229 227 219 86 32 79 229 219 222 87 85 80 88 76 81 230 225 223 88 84 76 89 82 71 231 216 225 231 225 230 89 71 77 231 224 216 89 77 83 232 215 224 90 88 81 232 226 215 90 81 75 233 7 8 90 75 82 233 8 228 91 84 88 233 228 226 91 80 84 234 223 214 91 87 80 234 214 227 234 227 229 92 83 45 93 79 73 93 73 85 235 207 221 235 222 207 94 89 83 236 30 29 236 235 221 236 56 30 236 221 56 95 92 45 95 45 46 237 234 229 96 91 88 238 231 230 239 230 223 97 93 85 239 234 237 239 223 234 97 85 87 98 88 90 240 224 231 240 232 224 241 7 233 99 90 82 241 226 232 99 89 94 241 233 226 99 82 89 100 87 91 242 222 235 100 91 96 100 97 87 101 93 97 242 229 222 101 19 86 101 79 93 101 86 79 243 239 237 244 231 238 102 99 94 244 240 231 245 238 230 245 230 239 103 100 96 104 96 88 245 239 243 246 6 7 246 232 240 104 88 98 246 241 232 105 18 19 246 7 241 105 101 97 105 19 101 106 98 90 247 237 229 106 90 99 247 229 242 106 99 102 248 28 27 248 29 28 248 236 29 248 235 236 248 242 235 107 83 92 107 94 83 107 92 95 249 245 243 108 97 100 108 105 97 250 6 246 250 240 244 250 246 240 109 95 46 109 46 47 110 107 95 251 243 237 251 237 247 110 95 109 252 238 245 252 244 238 252 250 244 111 106 102 253 27 26 253 247 242 253 242 248 112 96 104 253 248 27 112 103 96 254 245 249 254 252 245 113 98 106 113 104 98 113 106 111 255 249 243 114 100 103 255 243 251 114 108 100 256 6 250 256 5 6 256 250 252 256 252 254 115 102 94 257 26 25 257 253 26 115 94 107 257 247 253 115 107 110 257 251 247 116 105 108 258 5 256 116 18 105 258 256 254 259 251 257 259 257 25 259 25 24 117 115 110 259 255 251 260 254 249 260 249 255 261 255 259 118 113 111 261 260 255 261 24 23 261 259 24 119 104 113 119 112 104 262 4 5 262 258 254 119 113 118 120 17 18 262 5 258 120 18 116 262 254 260 120 108 114 263 260 261 120 116 108 263 261 23 263 262 260 263 23 22 121 103 112 121 114 103 264 3 4 264 262 263 264 263 22 264 4 262 264 22 3 122 115 117 122 102 115 122 111 102 123 117 110 123 110 109 124 123 109 124 109 47 125 122 117 126 119 118 127 111 122 127 122 125 127 118 111 128 119 126 128 112 119 128 121 112 129 114 121 129 17 120 129 120 114 130 125 117 130 117 123 131 127 125 132 128 126 133 118 127 133 126 118 133 127 131 134 16 17 134 121 128 134 17 129 134 128 132 134 129 121 135 125 130 135 131 125 136 123 124 136 130 123 137 124 47 137 47 48 138 133 131 139 134 132 139 16 134 140 131 135 140 138 131 141 132 126 141 126 133 142 135 130 142 130 136 143 133 138 143 141 133 144 138 140 144 143 138 145 15 16 145 141 143 145 16 139 145 139 132 145 132 141 146 135 142 146 140 135 147 124 137 147 136 124 148 48 49 148 137 48 149 145 143 149 15 145 150 144 140 150 140 146 151 143 144 151 149 143 152 136 147 152 142 136 153 147 137 153 137 148 154 144 150 154 151 144 155 49 50 155 148 49 156 14 15 156 15 149 +40 38 1 0.110019522937586 +-31.9998437495618 -0.100000000000009 38 31.9998437496185 -0.100000000000002 38 -31.5441749829062 -5.38191696244104 38 -30.2226860550529 -10.5161416630456 38 -28.0717025150097 -15.3616254880711 38 -25.1499948836849 -19.7857959483434 38 -21.5380751760828 -23.6666696082027 38 -17.3343103362801 -26.8983590647438 38 -12.6549929007603 -29.3913444604365 38 -7.62809087160235 -31.077520125616 38 -2.39142477476561 -31.910516242569 38 2.91037685549438 -31.8673760046316 38 8.13276940894757 -30.9492824766821 38 13.1314007185049 -29.1816089697682 38 17.7697381963217 -26.6127114418581 38 21.9202267957293 -23.3131647228436 38 25.4687103439585 -19.3738165529271 38 28.3181415639139 -14.9024449263199 38 30.3899979484963 -10.0223764335251 38 31.5869774231679 -5.12472856223841 38 -31.9998437496185 -0.0999999999999878 34 31.9998437496185 -0.0999999999999878 34 -31.5441749828996 -5.38191696248067 34 -30.2226860550263 -10.5161416631217 34 -28.0717025149516 -15.3616254881774 34 -25.1499948835848 -19.7857959484707 34 -21.5380751759348 -23.6666696083374 34 -17.3343103360809 -26.8983590648722 34 -12.6549929005087 -29.3913444605448 34 -7.62809087130049 -31.07752012569 34 -2.39142477441892 -31.9105162425949 34 2.9103768558778 -31.8673760045966 34 8.13276940935602 -30.9492824765748 34 13.131400718924 -29.1816089695796 34 17.7697381967352 -26.612711441582 34 21.9202267961186 -23.3131647224776 34 25.4687103443049 -19.3738165524716 34 28.3181415641979 -14.9024449257802 34 30.3899979486992 -10.02237643291 34 31.5869774232198 -5.12472856191874 34 3.14471765867608 38 6.2800603020933 38 3.31058065897144 38 3.4764447493372 38 3.64230518424077 38 3.80817842462629 38 3.97404368413477 38 4.13993424342658 38 4.30581099520808 38 4.47169378398484 38 4.63758732152723 38 4.80346388088511 38 4.969356915164 38 5.13523355395203 38 5.30111791700655 38 5.46700242885496 38 5.63287686709345 38 5.7987584438497 38 5.96462520567252 38 6.12234511230265 38 3.14471765867608 34 6.2800603020933 34 3.3105806589727 34 3.47644474933972 34 3.64230518424455 34 3.80817842463135 34 3.97404368414102 34 4.13993424343399 34 4.30581099521664 34 4.47169378399456 34 4.6375873215381 34 4.80346388089714 34 4.96935691517719 34 5.1352335539664 34 5.30111791702209 34 5.46700242887165 34 5.63287686711133 34 5.79875844386876 34 5.96462520569276 34 6.12234511231278 34 3 1 21 3 21 23 4 23 24 4 3 23 5 24 25 5 4 24 6 25 26 6 5 25 7 26 27 7 6 26 8 27 28 8 7 27 9 28 29 9 8 28 10 29 30 10 9 29 11 30 31 11 10 30 12 31 32 12 11 31 13 32 33 13 12 32 14 33 34 14 13 33 15 34 35 15 14 34 16 35 36 16 15 35 17 16 36 17 36 37 18 17 37 18 37 38 19 18 38 19 38 39 20 19 39 20 39 40 2 20 40 2 40 22 +264 470 1 0.174158148889876 +-34.9998571425655 -0.100000000023911 0 34.9998571425655 -0.100000000044039 0 -34.387735963849 -6.51794563344987 0 -32.6088257525758 -12.714734878799 0 -29.723485612544 -18.4801083070659 0 -25.8296162381791 -23.6184445929107 0 -21.0593381065312 -27.9553980210406 0 -15.5745085789603 -31.3438141030075 0 -9.56123001896417 -33.6687225852787 0 -3.22353526781181 -34.851238433909 0 3.22353526779162 -34.8512384339108 0 9.56123001894467 -33.6687225852843 0 15.5745085789421 -31.3438141030165 0 21.059338106515 -27.9553980210528 0 25.8296162381655 -23.6184445929257 0 29.7234856125333 -18.4801083070832 0 32.6088257525685 -12.7147348788178 0 34.3877359638452 -6.51794563346978 0 -31.9998437496185 -0.100000000000016 -3 -32.490630549141 -0.100000000000001 -2.95958287234377 -32.9791483547391 -0.0999999999999976 -2.83566065408719 -33.4549576464076 -0.0999999999999986 -2.62348305945869 -33.8612715889495 -0.100000000000002 -2.3526832163238 -34.1983241503127 -0.099999999999996 -2.04125652101018 -34.4958241600857 -0.100000000000003 -1.66437319348485 -34.7390925681322 -0.100000000000111 -1.22334926543618 -34.8972792570997 -0.100000000002558 -0.777780562805816 -34.9737531763377 -0.0999999999955199 -0.394894657417893 31.9998437496185 -0.0999999999999878 -3 32.4906305502994 -0.0999999999999997 -2.95958287215171 32.9791483570992 -0.0999999999999975 -2.8356606532721 33.4549576498792 -0.100000000000011 -2.62348305753321 33.8612715932407 -0.100000000000001 -2.3526832129286 34.1983241550884 -0.100000000000002 -2.04125651586682 34.4958241649553 -0.0999999999999961 -1.66437318618205 34.739092570979 -0.1000000000002 -1.22334925899737 34.897279258457 -0.100000000004715 -0.777780557936126 34.9737531766233 -0.0999999999917522 -0.394894655013175 31.5441749828996 -5.38191696248108 -3 30.222686055026 -10.5161416631225 -3 28.071702514951 -15.3616254881784 -3 25.1499948835837 -19.785795948472 -3 21.5380751759335 -23.6666696083387 -3 17.3343103360792 -26.8983590648733 -3 12.6549929005067 -29.3913444605457 -3 7.62809087129826 -31.0775201256906 -3 2.39142477441643 -31.9105162425951 -3 -2.91037685587909 -31.8673760045965 -3 -8.13276940935556 -30.9492824765749 -3 -13.1314007189222 -29.1816089695804 -3 -17.769738196732 -26.6127114415841 -3 -21.9202267961146 -23.3131647224813 -3 -25.4687103443003 -19.3738165524777 -3 -28.3181415641933 -14.902444925789 -3 -30.3899979486954 -10.0223764329215 -3 -31.5869774232188 -5.12472856192478 -3 -32.0714283052254 -5.20332158023672 -2.95958285941784 -32.5536387524443 -5.28155620085761 -2.83566066515844 -30.8560878120621 -10.1760952206083 -2.95958285941784 -33.0233045839979 -5.3577555622819 -2.62348305894608 -30.2710378885503 -11.803191693543 -2.95958285941784 -31.3200249888436 -10.3290980547999 -2.83566066515844 -33.4243725068231 -5.42282548552061 -2.35268322780534 -30.7261785383242 -11.9806587614574 -2.83566066515844 -28.7524598617802 -15.1309986749484 -2.95958285941784 -31.7718929257132 -10.478120548537 -2.62348305894608 -33.7570733145763 -5.47680341491836 -2.04125650316577 -27.5925531935484 -17.1552346899065 -2.95958285941784 -31.1694787882105 -12.1535090563983 -2.62348305894608 -29.1847679085762 -15.3585010352573 -2.83566066515844 -32.157762458168 -10.605377287269 -2.35268322780534 -34.0507322802915 -5.52444713128153 -1.66437321392917 -28.0074214460236 -17.4131724815519 -2.83566066515844 -25.859320957966 -19.6709579989759 -2.95958285941784 -31.5480320029965 -12.3011133829092 -2.35268322780534 -29.6058295414314 -15.5800849637083 -2.62348305894608 -32.4778556339841 -10.7109415006071 -2.04125650316577 -34.2908598285584 -5.56340582192715 -1.22334926944258 -31.8620560202995 -12.4235566795761 -2.04125650316577 -23.9778426161473 -21.9251940123649 -2.95958285941784 -26.2481291708476 -19.9667209866306 -2.83566066515844 -28.411496977584 -17.6644000692182 -2.62348305894608 -29.9653922413876 -15.7693050430598 -2.35268322780534 -32.7603864507183 -10.8041179431734 -1.66437321392917 -34.4470041868864 -5.58873894091355 -0.777780551331929 -22.2564180757343 -23.6707186929907 -2.95958285941784 -32.1392298833677 -12.5316314753687 -1.66437321392917 -24.3383618328543 -22.2548505998247 -2.83566066515844 -28.7565545125793 -17.8789341484983 -2.35268322780534 -26.6268226099283 -20.2547897548227 -2.62348305894608 -30.2636629180119 -15.9262701595915 -2.04125650316577 -32.9914144125821 -10.8803091490343 -1.22334926944258 -22.5910547876278 -24.0266201432881 -2.83566066515844 -32.3658774165706 -12.6200051971787 -1.22334926944258 -29.0427926136112 -18.0568981725576 -2.04125650316577 -19.5495546686542 -25.9512231168759 -2.95958285941784 -26.950205280746 -20.5007841081002 -2.35268322780534 -24.6895022087677 -22.5759312320869 -2.62348305894608 -30.5269320666267 -16.0648157017119 -1.66437321392917 -33.1416417110384 -10.9298529312252 -0.777780551331929 -18.042275374601 -27.0208691257635 -2.95958285941784 -22.9169859873069 -24.3732628831316 -2.62348305894608 -32.513256315385 -12.6774707324106 -0.777780551331929 -29.2954411877608 -18.2139784381353 -1.66437321392917 -27.2184632731492 -20.7048456033743 -2.04125650316577 -19.8434922946926 -26.3414131260632 -2.83566066515844 -24.9893561298455 -22.8501158407794 -2.35268322780534 -30.742209591143 -16.1781056238216 -1.22334926944258 -18.3135502799289 -27.4271418137576 -2.83566066515844 -23.1953127048516 -24.6692760786658 -2.35268322780534 -29.5020341740704 -18.3424243684763 -1.22334926944258 -27.4552416721137 -20.884960848808 -1.66437321392917 -25.2380961463689 -23.0775622048339 -2.04125650316577 -14.4579428546892 -29.0967172962022 -2.95958285941784 -20.1297831877135 -26.721452414274 -2.62348305894608 -30.882195074569 -16.2517730656479 -0.777780551331929 -18.5777680187302 -27.8228453928585 -2.62348305894608 -23.426195102761 -24.9148300700349 -2.04125650316577 -29.6363724851688 -18.4259470942847 -0.777780551331929 -25.4576469688557 -23.2783181467115 -1.66437321392917 -27.6488574750142 -21.0322426870661 -1.22334926944258 -14.6753254739936 -29.5342014308803 -2.83566066515844 -20.3742593366549 -27.0459843637463 -2.35268322780534 -18.8033949486774 -28.1607537563421 -2.35268322780534 -23.629983866094 -25.1315687416951 -1.66437321392917 -27.7747572958563 -21.1280135733894 -0.777780551331929 -25.6371756292368 -23.4424780660441 -1.22334926944258 -20.5770614247808 -27.3151957256788 -2.04125650316577 -8.87576751034486 -31.2549487298712 -2.95958285941784 -14.8870529246322 -29.9603044966479 -2.62348305894608 -18.9905609062926 -28.4410613528351 -2.04125650316577 -23.7966237505066 -25.3087978813321 -1.22334926944258 -25.753915202347 -23.5492240243998 -0.777780551331929 -20.7560650522323 -27.552815617971 -1.66437321392917 -9.00921924750607 -31.7248829860383 -2.83566066515844 -15.0678561322059 -30.32417229374 -2.35268322780534 -19.1557632750562 -28.6884753564984 -1.66437321392917 -23.9049823208216 -25.4240421774795 -0.777780551331929 -20.902437910579 -27.7471195174505 -1.22334926944258 -15.217839139524 -30.6260142090823 -2.04125650316577 -2.99243397991114 -32.3526877999409 -2.95958285941784 -9.13919926238878 -32.1825919893816 -2.62348305894608 -19.2908507214158 -28.8907879879615 -1.22334926944258 -20.9976177273393 -27.8734667771624 -0.777780551331929 -15.3502219104025 -30.8924355179679 -1.66437321392917 -3.03742676644977 -32.8391271285629 -2.83566066515844 -9.25019480661508 -32.5734494605799 -2.35268322780534 -19.378692132292 -29.0223429730078 -0.777780551331929 2.4280987704289 -32.3999290950708 -2.95958285941784 -15.4584724796519 -31.1102905919752 -1.22334926944258 -9.34226975232744 -32.8976803177076 -2.04125650316577 -3.08124907396189 -33.3129118279515 -2.62348305894608 2.46460648635714 -32.8870787209029 -2.83566066515844 -15.528863052479 -31.2519521422007 -0.777780551331929 -9.42353986858826 -33.1838632662856 -1.66437321392917 -3.11867083357584 -33.717497029778 -2.35268322780534 7.74508298466624 -31.5541559634417 -2.95958285941784 2.50016446080264 -33.361555239251 -2.62348305894608 -9.48999516552616 -33.4178776088426 -1.22334926944258 -3.14971357956113 -34.0531155517094 -2.04125650316577 7.86153429747461 -32.028588954512 -2.83566066515844 2.53052894974907 -33.7667312151438 -2.35268322780534 -9.53320811536367 -33.5700468190054 -0.777780551331929 -3.17711351507846 -34.349349843086 -1.66437321392917 12.8490849805402 -29.8421192975202 -2.95958285941784 7.97495615090209 -32.4906796590014 -2.62348305894608 2.555717426375 -34.1028398062077 -2.04125650316577 -3.19951868606455 -34.5915832580531 -1.22334926944258 14.4579428546724 -29.0967172962106 -2.95958285941784 13.0422775928508 -30.2908109353064 -2.83566066515844 8.07181196646496 -32.8852788539084 -2.35268322780534 2.57795008052413 -34.3995066579847 -1.66437321392917 -3.21408778099806 -34.7490969686565 -0.777780551331929 14.6753254739765 -29.5342014308888 -2.83566066515844 17.6001625736889 -27.3109016032846 -2.95958285941784 13.2304443350568 -30.7278299430601 -2.62348305894608 8.15215747962985 -33.2126136104742 -2.04125650316577 2.59612991957414 -34.6420937814386 -1.22334926944258 19.5495546686391 -25.9512231168872 -2.95958285941784 14.8870529246148 -29.9603044966565 -2.62348305894608 17.8647900852862 -27.721535078998 -2.83566066515844 13.3911280368959 -31.1010193341109 -2.35268322780534 8.22307459117878 -33.5015362214678 -1.66437321392917 2.60795146742842 -34.7998374930773 -0.777780551331929 21.8684111589935 -24.0296413286961 -2.95958285941784 19.8434922946773 -26.3414131260747 -2.83566066515844 15.0678561321883 -30.3241722937487 -2.35268322780534 18.1225333610761 -28.1214860007316 -2.62348305894608 13.5244211634517 -31.4105938594755 -2.04125650316577 8.28106414407713 -33.7377908103505 -1.22334926944258 15.2178391395063 -30.6260142090911 -2.04125650316577 23.9778426161346 -21.9251940123788 -2.95958285941784 22.1972139869993 -24.3909393657321 -2.83566066515844 20.129783187698 -26.7214524142856 -2.62348305894608 18.3426314676411 -28.4630213533909 -2.35268322780534 13.6420725810893 -31.6838403704901 -1.66437321392917 8.31877219378818 -33.891416753935 -0.777780551331929 25.5357187456906 -20.0892542705188 -2.95958285941784 15.3502219103846 -30.8924355179768 -1.66437321392917 24.3383618328414 -22.2548505998388 -2.83566066515844 20.3742593366393 -27.0459843637581 -2.35268322780534 22.5174630702019 -24.7428383011075 -2.62348305894608 18.5252110599538 -28.7463376727455 -2.04125650316577 13.7382771917629 -31.9072764729862 -1.22334926944258 25.9196614325964 -20.3913065581153 -2.83566066515844 15.4584724796338 -31.1102905919841 -1.22334926944258 20.5770614247649 -27.3151957256907 -2.04125650316577 27.5925531935385 -17.1552346899225 -2.95958285941784 22.7909375832655 -25.0433399888469 -2.35268322780534 24.6895022087546 -22.5759312321012 -2.62348305894608 18.6863652651429 -28.9964073310482 -1.66437321392917 13.8008348087887 -32.0525671199918 -0.777780551331929 28.5022395212789 -15.5972244734832 -2.95958285941784 26.2936159214602 -20.6855010112734 -2.62348305894608 15.5288630524608 -31.2519521422097 -0.777780551331929 20.7560650522164 -27.552815617983 -1.66437321392917 23.0177948964987 -25.2926173519875 -2.04125650316577 28.0074214460135 -17.4131724815682 -2.83566066515844 24.9893561298322 -22.8501158407938 -2.35268322780534 18.8181424921407 -29.2008915149312 -1.22334926944258 28.9307853763462 -15.8317367788645 -2.83566066515844 26.6129517981699 -20.9367263513082 -2.35268322780534 23.2180309116106 -25.5126424644313 -1.66437321392917 20.9024379105629 -27.7471195174627 -1.22334926944258 25.2380961463556 -23.0775622048486 -2.04125650316577 30.2710378885435 -11.8031916935606 -2.95958285941784 28.4114969775737 -17.6644000692346 -2.62348305894608 18.9038314133007 -29.3338585647806 -0.777780551331929 29.3481826901952 -16.0601482899625 -2.62348305894608 26.8778528238554 -21.1451271452907 -2.04125650316577 20.9976177273232 -27.8734667771746 -0.777780551331929 25.4576469688422 -23.2783181467263 -1.66437321392917 23.3817656822022 -25.6925589559289 -1.22334926944258 30.7261785383172 -11.9806587614752 -2.83566066515844 28.7565545125689 -17.8789341485149 -2.35268322780534 29.7046162700119 -16.2551987367927 -2.35268322780534 27.1116681901149 -21.3290724805257 -1.66437321392917 23.4882351850749 -25.8095507185162 -0.777780551331929 25.6371756292232 -23.4424780660589 -1.22334926944258 29.0427926136007 -18.0568981725744 -2.04125650316577 31.9224146910839 -6.05066188900375 -2.95958285941784 31.1694787882035 -12.1535090564163 -2.62348305894608 30.0002912247179 -16.417000360707 -2.04125650316577 27.3028610948175 -21.4794862172817 -1.22334926944258 25.7539152023334 -23.5492240244147 -0.777780551331929 29.2954411877503 -18.2139784381522 -1.66437321392917 32.4023846418449 -6.14163670770215 -2.83566066515844 31.5480320029894 -12.3011133829275 -2.35268322780534 30.2612692547179 -16.5598148547582 -1.66437321392917 27.4271854117778 -21.5772936391247 -0.777780551331929 29.5020341740598 -18.3424243684934 -1.22334926944258 31.8620560202923 -12.4235566795946 -2.04125650316577 32.8698682630419 -6.23024483330552 -2.62348305894608 30.4746733111642 -16.6765955368327 -1.22334926944258 29.6363724851581 -18.4259470943019 -0.777780551331929 32.1392298833605 -12.5316314753873 -1.66437321392917 33.2690727022664 -6.30591113579896 -2.35268322780534 30.6134405608983 -16.7525328659697 -0.777780551331929 32.3658774165633 -12.6200051971974 -1.22334926944258 33.6002276808374 -6.36867915719031 -2.04125650316577 32.5132563153777 -12.6774707324294 -0.777780551331929 33.8925222176475 -6.42408146404446 -1.66437321392917 34.1315340602626 -6.46938442314472 -1.22334926944258 34.2869529243924 -6.49884294021251 -0.777780551331929 3.1444498003349 6.28318530717959 6.2803281604339 6.28318530717959 3.3289132332819 6.28318530717959 3.5133766662289 6.28318530717959 3.6978400991759 6.28318530717959 3.8823035321229 6.28318530717959 4.0667669650699 6.28318530717959 4.2512303980169 6.28318530717959 4.4356938309639 6.28318530717959 4.6201572639109 6.28318530717959 4.8046206968579 6.28318530717959 4.9890841298049 6.28318530717959 5.1735475627519 6.28318530717959 5.3580109956989 6.28318530717959 5.5424744286459 6.28318530717959 5.7269378615929 6.28318530717959 5.9114012945399 6.28318530717959 6.0958647274869 6.28318530717959 3.14471765867608 4.71238898038469 3.14467045425237 4.87672242302603 3.14462486328954 5.0449167320374 3.14458173829391 5.21879296686466 3.14454587136846 5.38173478772384 3.14451676515079 5.53485128886691 3.14449154707276 5.69507348139637 3.14447124702427 5.86316051564074 3.14445819865319 6.02092919105509 3.14445193286038 6.15117062991462 6.2800603020933 4.71238898036521 6.28010750651712 4.87672242341743 6.28015309748005 5.0449167328697 6.28019622247578 5.21879296818789 6.28023208940129 5.38173478954778 6.280261195619 5.53485129120644 6.28028641369702 5.69507348432219 6.28030671374534 5.86316051798752 6.28031976211624 6.02092919273949 6.28032602790913 6.15117063072164 6.11419730179667 4.71238898038674 5.94833321142963 4.71238898038437 5.78247277652479 4.71238898038384 5.61659953613797 4.7123889803867 5.4507342766283 4.71238898038469 5.28484371733533 4.71238898038469 5.11896696555268 4.71238898038469 4.95308417677475 4.71238898038469 4.7871906392312 4.71238898038469 4.6213140798722 4.71238898038469 4.4554210455922 4.71238898038469 4.28954440680305 4.71238898038469 4.12366004374741 4.71238898038469 3.95777553189789 4.71238898038469 3.79190109365828 4.71238898038469 3.62601951690093 4.71238898038469 3.460152755077 4.71238898038469 3.30243284845679 4.71238898038469 3.30243284845679 4.87672242302603 3.30243284845679 5.0449167320374 3.460152755077 4.87672242302603 3.30243284845679 5.21879296686466 3.5133766662289 4.87672242302603 3.460152755077 5.0449167320374 3.30243284845679 5.38173478772384 3.5133766662289 5.0449167320374 3.62601951690093 4.87672242302603 3.460152755077 5.21879296686466 3.30243284845679 5.53485128886691 3.6978400991759 4.87672242302603 3.5133766662289 5.21879296686466 3.62601951690093 5.0449167320374 3.460152755077 5.38173478772384 3.30243284845679 5.69507348139637 3.6978400991759 5.0449167320374 3.79190109365828 4.87672242302603 3.5133766662289 5.38173478772384 3.62601951690093 5.21879296686466 3.460152755077 5.53485128886691 3.30243284845679 5.86316051564074 3.5133766662289 5.53485128886691 3.8823035321229 4.87672242302603 3.79190109365828 5.0449167320374 3.6978400991759 5.21879296686466 3.62601951690093 5.38173478772384 3.460152755077 5.69507348139637 3.30243284845679 6.02092919105509 3.95777553189789 4.87672242302603 3.5133766662289 5.69507348139637 3.8823035321229 5.0449167320374 3.6978400991759 5.38173478772384 3.79190109365828 5.21879296686466 3.62601951690093 5.53485128886691 3.460152755077 5.86316051564074 3.95777553189789 5.0449167320374 3.5133766662289 5.86316051564074 3.6978400991759 5.53485128886691 4.0667669650699 4.87672242302603 3.79190109365828 5.38173478772384 3.8823035321229 5.21879296686466 3.62601951690093 5.69507348139637 3.460152755077 6.02092919105509 4.12366004374741 4.87672242302603 3.95777553189789 5.21879296686466 3.5133766662289 6.02092919105509 3.6978400991759 5.69507348139637 3.79190109365828 5.53485128886691 4.0667669650699 5.0449167320374 3.8823035321229 5.38173478772384 3.62601951690093 5.86316051564074 4.12366004374741 5.0449167320374 3.95777553189789 5.38173478772384 3.6978400991759 5.86316051564074 3.79190109365828 5.69507348139637 3.8823035321229 5.53485128886691 4.2512303980169 4.87672242302603 4.0667669650699 5.21879296686466 3.62601951690093 6.02092919105509 4.12366004374741 5.21879296686466 3.95777553189789 5.53485128886691 3.6978400991759 6.02092919105509 3.8823035321229 5.69507348139637 3.79190109365828 5.86316051564074 4.2512303980169 5.0449167320374 4.0667669650699 5.38173478772384 4.12366004374741 5.38173478772384 3.95777553189789 5.69507348139637 3.79190109365828 6.02092919105509 3.8823035321229 5.86316051564074 4.0667669650699 5.53485128886691 4.4356938309639 4.87672242302603 4.2512303980169 5.21879296686466 4.12366004374741 5.53485128886691 3.95777553189789 5.86316051564074 3.8823035321229 6.02092919105509 4.0667669650699 5.69507348139637 4.4356938309639 5.0449167320374 4.2512303980169 5.38173478772384 4.12366004374741 5.69507348139637 3.95777553189789 6.02092919105509 4.0667669650699 5.86316051564074 4.2512303980169 5.53485128886691 4.6201572639109 4.87672242302603 4.4356938309639 5.21879296686466 4.12366004374741 5.86316051564074 4.0667669650699 6.02092919105509 4.2512303980169 5.69507348139637 4.6201572639109 5.0449167320374 4.4356938309639 5.38173478772384 4.12366004374741 6.02092919105509 4.7871906392312 4.87672242302603 4.2512303980169 5.86316051564074 4.4356938309639 5.53485128886691 4.6201572639109 5.21879296686466 4.7871906392312 5.0449167320374 4.2512303980169 6.02092919105509 4.4356938309639 5.69507348139637 4.6201572639109 5.38173478772384 4.95308417677475 4.87672242302603 4.7871906392312 5.21879296686466 4.4356938309639 5.86316051564074 4.6201572639109 5.53485128886691 4.95308417677475 5.0449167320374 4.7871906392312 5.38173478772384 4.4356938309639 6.02092919105509 4.6201572639109 5.69507348139637 5.11896696555268 4.87672242302603 4.95308417677475 5.21879296686466 4.7871906392312 5.53485128886691 4.6201572639109 5.86316051564074 5.1735475627519 4.87672242302603 5.11896696555268 5.0449167320374 4.95308417677475 5.38173478772384 4.7871906392312 5.69507348139637 4.6201572639109 6.02092919105509 5.1735475627519 5.0449167320374 5.28484371733533 4.87672242302603 5.11896696555268 5.21879296686466 4.95308417677475 5.53485128886691 4.7871906392312 5.86316051564074 5.3580109956989 4.87672242302603 5.1735475627519 5.21879296686466 5.28484371733533 5.0449167320374 5.11896696555268 5.38173478772384 4.95308417677475 5.69507348139637 4.7871906392312 6.02092919105509 5.4507342766283 4.87672242302603 5.3580109956989 5.0449167320374 5.1735475627519 5.38173478772384 5.28484371733533 5.21879296686466 5.11896696555268 5.53485128886691 4.95308417677475 5.86316051564074 5.1735475627519 5.53485128886691 5.5424744286459 4.87672242302603 5.4507342766283 5.0449167320374 5.3580109956989 5.21879296686466 5.28484371733533 5.38173478772384 5.11896696555268 5.69507348139637 4.95308417677475 6.02092919105509 5.61659953613797 4.87672242302603 5.1735475627519 5.69507348139637 5.5424744286459 5.0449167320374 5.3580109956989 5.38173478772384 5.4507342766283 5.21879296686466 5.28484371733533 5.53485128886691 5.11896696555268 5.86316051564074 5.61659953613797 5.0449167320374 5.1735475627519 5.86316051564074 5.3580109956989 5.53485128886691 5.7269378615929 4.87672242302603 5.4507342766283 5.38173478772384 5.5424744286459 5.21879296686466 5.28484371733533 5.69507348139637 5.11896696555268 6.02092919105509 5.78247277652479 4.87672242302603 5.61659953613797 5.21879296686466 5.1735475627519 6.02092919105509 5.3580109956989 5.69507348139637 5.4507342766283 5.53485128886691 5.7269378615929 5.0449167320374 5.5424744286459 5.38173478772384 5.28484371733533 5.86316051564074 5.78247277652479 5.0449167320374 5.61659953613797 5.38173478772384 5.4507342766283 5.69507348139637 5.3580109956989 5.86316051564074 5.5424744286459 5.53485128886691 5.9114012945399 4.87672242302603 5.7269378615929 5.21879296686466 5.28484371733533 6.02092919105509 5.78247277652479 5.21879296686466 5.61659953613797 5.53485128886691 5.3580109956989 6.02092919105509 5.5424744286459 5.69507348139637 5.4507342766283 5.86316051564074 5.9114012945399 5.0449167320374 5.7269378615929 5.38173478772384 5.78247277652479 5.38173478772384 5.61659953613797 5.69507348139637 5.4507342766283 6.02092919105509 5.5424744286459 5.86316051564074 5.7269378615929 5.53485128886691 6.0958647274869 4.87672242302603 5.9114012945399 5.21879296686466 5.78247277652479 5.53485128886691 5.61659953613797 5.86316051564074 5.5424744286459 6.02092919105509 5.7269378615929 5.69507348139637 6.0958647274869 5.0449167320374 5.9114012945399 5.38173478772384 5.78247277652479 5.69507348139637 5.61659953613797 6.02092919105509 5.7269378615929 5.86316051564074 5.9114012945399 5.53485128886691 6.0958647274869 5.21879296686466 5.78247277652479 5.86316051564074 5.7269378615929 6.02092919105509 5.9114012945399 5.69507348139637 6.0958647274869 5.38173478772384 5.78247277652479 6.02092919105509 5.9114012945399 5.86316051564074 6.0958647274869 5.53485128886691 5.9114012945399 6.02092919105509 6.0958647274869 5.69507348139637 6.0958647274869 5.86316051564074 6.0958647274869 6.02092919105509 152 135 146 153 146 141 153 141 149 154 9 8 154 148 143 154 143 150 154 8 148 155 150 145 155 145 151 156 142 152 156 147 142 157 46 45 157 47 46 157 149 47 158 152 146 158 146 153 159 150 155 159 154 150 160 147 156 160 151 147 161 149 157 161 153 149 162 156 152 162 152 158 3 1 28 163 154 159 163 9 154 164 151 160 164 155 151 165 157 45 166 158 153 166 153 161 167 164 160 167 160 156 167 156 162 168 155 164 168 159 155 169 165 45 169 45 44 170 157 165 170 161 157 171 158 166 171 162 158 172 164 167 172 168 164 173 10 9 173 9 163 173 163 159 173 159 168 174 165 169 174 170 165 175 174 169 175 169 44 176 166 161 176 161 170 177 167 162 177 162 171 178 168 172 179 44 43 179 175 44 180 170 174 180 176 170 181 180 174 181 174 175 182 171 166 182 166 176 182 177 171 182 176 180 183 167 177 183 172 167 184 11 10 184 173 168 184 10 173 30 39 29 184 168 178 185 179 43 186 175 179 186 181 175 187 182 180 188 187 180 188 180 181 189 177 182 190 178 172 190 172 183 191 189 182 191 182 187 192 43 42 192 185 43 193 179 185 193 186 179 2 18 38 57 20 19 194 181 186 194 188 181 195 191 187 57 19 56 195 187 188 58 21 20 196 177 189 196 183 177 58 20 57 197 178 190 197 12 11 59 57 56 59 58 57 197 11 184 197 184 178 59 56 55 60 22 21 60 21 58 198 192 42 199 189 191 61 59 55 61 55 54 199 196 189 200 185 192 62 60 58 62 58 59 200 193 185 63 23 22 63 22 60 201 195 188 201 188 194 64 59 61 202 194 186 202 186 193 64 62 59 203 191 195 65 61 54 203 199 191 204 190 183 204 183 196 66 63 60 66 60 62 67 23 63 205 192 198 67 24 23 205 200 192 206 196 199 68 54 53 206 204 196 68 65 54 69 62 64 69 66 62 207 195 201 207 203 195 208 205 198 208 198 42 70 64 61 208 42 41 70 61 65 209 207 201 71 63 66 209 201 194 209 194 202 71 67 63 210 193 200 210 202 193 72 25 24 72 24 67 211 199 203 211 206 199 212 13 12 212 190 204 212 204 206 73 70 65 212 197 190 73 65 68 212 12 197 74 73 68 213 208 41 74 68 53 214 210 200 75 71 66 75 66 69 214 200 205 76 69 64 215 212 206 76 64 70 215 13 212 77 72 67 216 203 207 77 67 71 216 211 203 78 26 25 217 207 209 78 25 72 79 71 75 79 77 71 218 205 208 218 208 213 80 53 52 219 209 202 80 74 53 219 202 210 220 206 211 81 73 74 220 215 206 82 70 73 82 76 70 82 73 81 221 218 213 83 69 76 222 219 210 83 75 69 222 210 214 84 72 77 84 78 72 85 27 26 85 28 27 223 216 207 85 26 78 223 207 217 85 3 28 86 80 52 224 211 216 224 220 211 225 217 209 87 77 79 225 209 219 87 84 77 226 221 213 226 41 40 88 74 80 88 81 74 226 213 41 227 205 218 89 76 82 89 83 76 227 214 205 227 218 221 228 14 13 90 89 82 228 13 215 228 215 220 90 82 81 91 79 75 91 87 79 91 75 83 229 227 221 92 78 84 230 225 219 92 85 78 93 88 80 230 219 222 231 220 224 93 80 86 231 14 228 231 228 220 94 92 84 232 217 225 94 84 87 232 223 217 95 83 89 233 216 223 95 91 83 96 93 86 233 224 216 96 52 51 96 86 52 97 95 89 97 89 90 234 221 226 235 227 229 235 214 227 98 81 88 235 222 214 98 90 81 99 91 95 99 87 91 100 4 3 236 235 229 100 3 85 237 225 230 100 92 94 100 85 92 237 232 225 101 96 51 238 15 14 238 231 224 238 14 231 238 224 233 102 98 88 239 223 232 102 88 93 239 233 223 240 222 235 103 100 94 103 4 100 240 230 222 240 235 236 241 234 226 241 226 40 104 99 95 241 39 30 241 40 39 105 104 95 242 221 234 105 95 97 242 229 221 106 93 96 106 102 93 107 97 90 107 90 98 243 240 236 108 94 87 108 87 99 244 232 237 244 239 232 109 106 96 245 15 238 245 238 233 109 96 101 245 233 239 246 230 240 246 237 230 110 98 102 246 240 243 246 244 237 110 107 98 247 234 241 247 30 31 111 99 104 247 242 234 111 108 99 247 241 30 248 229 242 112 104 105 112 111 104 248 236 229 113 97 107 113 105 97 114 101 51 249 246 243 114 51 50 250 16 15 250 239 244 250 15 245 115 102 106 250 245 239 115 110 102 116 5 4 116 4 103 116 103 94 251 244 246 116 94 108 251 246 249 117 106 109 252 243 236 252 236 248 117 115 106 253 248 242 253 31 32 118 113 107 253 247 31 118 107 110 253 242 247 119 108 111 254 251 249 119 5 116 119 116 108 255 16 250 120 112 105 255 250 244 120 105 113 255 244 251 255 251 254 121 111 112 256 249 243 121 119 111 256 243 252 257 32 33 122 109 101 257 248 253 122 101 114 257 253 32 257 252 248 258 17 16 123 110 115 258 16 255 123 118 110 258 255 254 259 249 256 124 123 115 124 115 117 259 254 249 260 256 252 260 33 34 125 113 118 260 252 257 125 120 113 260 257 33 261 258 254 126 119 121 126 6 5 261 17 258 261 254 259 126 5 119 262 260 34 127 121 112 262 34 35 127 112 120 262 259 256 262 256 260 263 261 259 128 118 123 263 35 36 128 125 118 263 259 262 263 262 35 264 17 261 264 18 17 129 122 114 264 261 263 264 263 36 264 36 37 129 50 49 264 37 38 264 38 18 129 114 50 130 109 122 130 117 109 131 128 123 131 123 124 132 120 125 132 127 120 133 6 126 133 121 127 133 126 121 134 132 125 134 125 128 135 122 129 135 130 122 136 124 117 136 117 130 137 134 128 137 128 131 138 7 6 138 127 132 138 133 127 138 6 133 139 138 132 139 134 137 139 132 134 140 124 136 140 131 124 141 129 49 141 49 48 142 130 135 142 136 130 143 139 137 144 138 139 144 139 143 144 7 138 145 137 131 145 131 140 146 135 129 146 129 141 147 140 136 147 136 142 148 8 7 148 7 144 148 144 143 149 48 47 149 141 48 150 137 145 150 143 137 151 140 147 151 145 140 152 142 135 +264 470 1 0.174158148889876 +31.9998437496185 -0.0999999999999878 -3 -31.9998437496185 -0.0999999999999878 -3 31.5441749828996 -5.38191696248067 -3 30.2226860550263 -10.5161416631217 -3 28.0717025149516 -15.3616254881774 -3 25.1499948835848 -19.7857959484707 -3 21.5380751759348 -23.6666696083374 -3 17.3343103360809 -26.8983590648722 -3 12.6549929005087 -29.3913444605448 -3 7.62809087130049 -31.07752012569 -3 2.39142477441892 -31.9105162425949 -3 -2.9103768558778 -31.8673760045966 -3 -8.13276940935602 -30.9492824765748 -3 -13.131400718924 -29.1816089695796 -3 -17.7697381967352 -26.612711441582 -3 -21.9202267961186 -23.3131647224776 -3 -25.4687103443049 -19.3738165524716 -3 -28.3181415641979 -14.9024449257802 -3 -30.3899979486992 -10.02237643291 -3 -31.5869774232198 -5.12472856191874 -3 34.9998571425655 -0.100000000044039 0 32.4906305502992 -0.0999999999999997 -2.95958287215193 32.9791483570989 -0.0999999999999975 -2.83566065327238 33.4549576498786 -0.100000000000011 -2.62348305753359 33.8612715932401 -0.100000000000001 -2.35268321292916 34.1983241550878 -0.100000000000002 -2.0412565158675 34.4958241649548 -0.0999999999999961 -1.66437318618252 34.7390925709787 -0.1000000000002 -1.22334925899796 34.8972792584569 -0.100000000004715 -0.777780557936694 34.9737531766232 -0.0999999999917522 -0.394894655013417 -34.9998571425655 -0.100000000023911 0 -32.4906305491409 -0.100000000000001 -2.95958287234387 -32.9791483547389 -0.0999999999999976 -2.83566065408714 -33.4549576464074 -0.0999999999999986 -2.62348305945841 -33.8612715889492 -0.100000000000002 -2.35268321632383 -34.1983241503125 -0.099999999999996 -2.04125652101045 -34.4958241600855 -0.100000000000003 -1.66437319348489 -34.739092568132 -0.100000000000111 -1.2233492654363 -34.8972792570996 -0.100000000002558 -0.777780562805958 -34.9737531763377 -0.0999999999955199 -0.394894657418021 -34.387735963849 -6.51794563344987 0 -32.6088257525758 -12.714734878799 0 -29.723485612544 -18.4801083070659 0 -25.8296162381791 -23.6184445929107 0 -21.0593381065312 -27.9553980210406 0 -15.5745085789603 -31.3438141030075 0 -9.56123001896417 -33.6687225852787 0 -3.22353526781181 -34.851238433909 0 3.22353526779162 -34.8512384339108 0 9.56123001894467 -33.6687225852843 0 15.5745085789421 -31.3438141030165 0 21.059338106515 -27.9553980210528 0 25.8296162381655 -23.6184445929257 0 29.7234856125333 -18.4801083070832 0 32.6088257525685 -12.7147348788178 0 34.3877359638452 -6.51794563346978 0 -32.0714283052264 -5.20332158023059 -2.95958285941785 -32.5536387524451 -5.28155620085137 -2.83566066515849 -30.8560878120659 -10.1760952205965 -2.95958285941785 -33.0233045839987 -5.35775556227555 -2.62348305894619 -30.2710378885503 -11.803191693543 -2.95958285941785 -31.3200249888474 -10.3290980547879 -2.83566066515849 -33.4243725068239 -5.42282548551419 -2.35268322780551 -30.726178538324 -11.9806587614573 -2.83566066515849 -28.7524598617848 -15.1309986749395 -2.95958285941785 -31.771892925717 -10.4781205485248 -2.62348305894619 -33.7570733145771 -5.47680341491188 -2.04125650316598 -27.5925531935484 -17.1552346899065 -2.95958285941785 -31.1694787882103 -12.1535090563982 -2.62348305894619 -29.1847679085808 -15.3585010352482 -2.83566066515849 -32.1577624581718 -10.6053772872567 -2.35268322780551 -34.0507322802924 -5.524447131275 -1.66437321392944 -28.0074214460234 -17.4131724815519 -2.83566066515849 -25.8593209579706 -19.6709579989697 -2.95958285941785 -31.5480320029963 -12.3011133829091 -2.35268322780551 -29.605829541436 -15.580084963699 -2.62348305894619 -32.477855633988 -10.7109415005947 -2.04125650316598 -34.2908598285594 -5.56340582192059 -1.22334926944281 -31.8620560202993 -12.4235566795761 -2.04125650316598 -23.9778426161473 -21.9251940123649 -2.95958285941785 -26.2481291708523 -19.9667209866243 -2.83566066515849 -28.4114969775838 -17.6644000692181 -2.62348305894619 -29.9653922413923 -15.7693050430504 -2.35268322780551 -32.7603864507222 -10.8041179431609 -1.66437321392944 -34.4470041868874 -5.58873894090697 -0.7777805513321 -22.2564180757381 -23.670718692987 -2.95958285941785 -32.1392298833676 -12.5316314753686 -1.66437321392944 -24.3383618328542 -22.2548505998246 -2.83566066515849 -28.7565545125791 -17.8789341484982 -2.35268322780551 -26.626822609933 -20.2547897548162 -2.62348305894619 -30.2636629180166 -15.9262701595821 -2.04125650316598 -32.9914144125862 -10.8803091490217 -1.22334926944281 -22.5910547876316 -24.0266201432843 -2.83566066515849 -32.3658774165705 -12.6200051971787 -1.22334926944281 -29.042792613611 -18.0568981725575 -2.04125650316598 -19.5495546686541 -25.9512231168759 -2.95958285941785 -26.9502052807507 -20.5007841080937 -2.35268322780551 -24.6895022087675 -22.5759312320867 -2.62348305894619 -30.5269320666315 -16.0648157017024 -1.66437321392944 -33.1416417110425 -10.9298529312126 -0.7777805513321 -18.0422753746041 -27.0208691257613 -2.95958285941785 -22.9169859873108 -24.3732628831276 -2.62348305894619 -32.513256315385 -12.6774707324106 -0.7777805513321 -29.2954411877607 -18.2139784381352 -1.66437321392944 -27.218463273154 -20.7048456033677 -2.04125650316598 -19.8434922946925 -26.341413126063 -2.83566066515849 -24.9893561298453 -22.8501158407792 -2.35268322780551 -30.7422095911479 -16.178105623812 -1.22334926944281 -18.3135502799321 -27.4271418137554 -2.83566066515849 -23.1953127048555 -24.6692760786618 -2.35268322780551 -29.5020341740703 -18.3424243684762 -1.22334926944281 -27.4552416721185 -20.8849608488013 -1.66437321392944 -25.2380961463688 -23.0775622048338 -2.04125650316598 -14.4579428546892 -29.0967172962022 -2.95958285941785 -20.1297831877133 -26.7214524142738 -2.62348305894619 -30.882195074574 -16.2517730656383 -0.7777805513321 -18.5777680187333 -27.8228453928561 -2.62348305894619 -23.426195102765 -24.9148300700309 -2.04125650316598 -29.6363724851688 -18.4259470942847 -0.7777805513321 -25.4576469688556 -23.2783181467114 -1.66437321392944 -27.6488574750191 -21.0322426870594 -1.22334926944281 -14.6753254739936 -29.5342014308802 -2.83566066515849 -20.3742593366548 -27.0459843637462 -2.35268322780551 -18.8033949486806 -28.1607537563397 -2.35268322780551 -23.629983866098 -25.1315687416911 -1.66437321392944 -27.7747572958613 -21.1280135733828 -0.7777805513321 -25.6371756292367 -23.442478066044 -1.22334926944281 -20.5770614247806 -27.3151957256786 -2.04125650316598 -8.87576751034484 -31.2549487298712 -2.95958285941785 -14.8870529246321 -29.9603044966477 -2.62348305894619 -18.9905609062959 -28.4410613528327 -2.04125650316598 -23.7966237505107 -25.3087978813281 -1.22334926944281 -25.753915202347 -23.5492240243997 -0.7777805513321 -20.7560650522322 -27.5528156179709 -1.66437321392944 -9.00921924750603 -31.7248829860382 -2.83566066515849 -15.0678561322058 -30.3241722937398 -2.35268322780551 -19.1557632750594 -28.688475356496 -1.66437321392944 -23.9049823208258 -25.4240421774755 -0.7777805513321 -20.9024379105789 -27.7471195174505 -1.22334926944281 -15.2178391395239 -30.6260142090821 -2.04125650316598 -2.99243397991114 -32.3526877999408 -2.95958285941785 -9.13919926238872 -32.1825919893814 -2.62348305894619 -19.2908507214192 -28.8907879879592 -1.22334926944281 -20.9976177273393 -27.8734667771624 -0.7777805513321 -15.3502219104025 -30.8924355179678 -1.66437321392944 -3.03742676644976 -32.8391271285627 -2.83566066515849 -9.25019480661501 -32.5734494605797 -2.35268322780551 -19.3786921322953 -29.0223429730055 -0.7777805513321 2.42809877043146 -32.3999290950705 -2.95958285941785 -15.4584724796518 -31.1102905919751 -1.22334926944281 -9.34226975232739 -32.8976803177074 -2.04125650316598 -3.08124907396186 -33.3129118279512 -2.62348305894619 2.46460648635973 -32.8870787209026 -2.83566066515849 -15.5288630524789 -31.2519521422007 -0.7777805513321 -9.42353986858821 -33.1838632662854 -1.66437321392944 -3.11867083357582 -33.7174970297777 -2.35268322780551 7.74508298466844 -31.5541559634411 -2.95958285941785 2.50016446080526 -33.3615552392506 -2.62348305894619 -9.48999516552613 -33.4178776088425 -1.22334926944281 -3.14971357956112 -34.0531155517091 -2.04125650316598 7.86153429747682 -32.0285889545113 -2.83566066515849 2.53052894975173 -33.7667312151433 -2.35268322780551 -9.53320811536366 -33.5700468190054 -0.7777805513321 -3.17711351507844 -34.3493498430859 -1.66437321392944 12.8490849805421 -29.8421192975193 -2.95958285941785 7.97495615090432 -32.4906796590006 -2.62348305894619 2.55571742637768 -34.1028398062073 -2.04125650316598 -3.19951868606454 -34.591583258053 -1.22334926944281 14.4579428546723 -29.0967172962105 -2.95958285941785 13.0422775928528 -30.2908109353054 -2.83566066515849 8.07181196646721 -32.8852788539076 -2.35268322780551 2.57795008052683 -34.3995066579843 -1.66437321392944 -3.21408778099805 -34.7490969686564 -0.7777805513321 14.6753254739765 -29.5342014308887 -2.83566066515849 17.6001625736906 -27.3109016032834 -2.95958285941785 13.2304443350588 -30.727829943059 -2.62348305894619 8.15215747963212 -33.2126136104734 -2.04125650316598 2.59612991957687 -34.6420937814383 -1.22334926944281 19.5495546686391 -25.9512231168872 -2.95958285941785 14.8870529246147 -29.9603044966563 -2.62348305894619 17.8647900852879 -27.7215350789968 -2.83566066515849 13.3911280368979 -31.1010193341098 -2.35268322780551 8.22307459118109 -33.501536221467 -1.66437321392944 2.60795146743117 -34.799837493077 -0.7777805513321 21.8684111589949 -24.0296413286947 -2.95958285941785 19.8434922946773 -26.3414131260745 -2.83566066515849 15.0678561321882 -30.3241722937485 -2.35268322780551 18.1225333610778 -28.1214860007303 -2.62348305894619 13.5244211634538 -31.4105938594744 -2.04125650316598 8.28106414407948 -33.7377908103499 -1.22334926944281 15.2178391395062 -30.6260142090909 -2.04125650316598 23.9778426161346 -21.9251940123787 -2.95958285941785 22.1972139870007 -24.3909393657307 -2.83566066515849 20.1297831876978 -26.7214524142855 -2.62348305894619 18.3426314676428 -28.4630213533895 -2.35268322780551 13.6420725810914 -31.683840370489 -1.66437321392944 8.31877219379054 -33.8914167539344 -0.7777805513321 25.5357187456916 -20.0892542705174 -2.95958285941785 15.3502219103846 -30.8924355179767 -1.66437321392944 24.3383618328413 -22.2548505998387 -2.83566066515849 20.3742593366391 -27.045984363758 -2.35268322780551 22.5174630702032 -24.742838301106 -2.62348305894619 18.5252110599555 -28.7463376727441 -2.04125650316598 13.738277191765 -31.9072764729852 -1.22334926944281 25.9196614325974 -20.3913065581138 -2.83566066515849 15.4584724796338 -31.110290591984 -1.22334926944281 20.5770614247648 -27.3151957256906 -2.04125650316598 27.5925531935384 -17.1552346899225 -2.95958285941785 22.7909375832668 -25.0433399888454 -2.35268322780551 24.6895022087544 -22.575931232101 -2.62348305894619 18.6863652651447 -28.9964073310469 -1.66437321392944 13.8008348087908 -32.0525671199908 -0.7777805513321 28.5022395212794 -15.597224473482 -2.95958285941785 26.2936159214612 -20.6855010112718 -2.62348305894619 15.5288630524608 -31.2519521422097 -0.7777805513321 20.7560650522163 -27.5528156179829 -1.66437321392944 23.0177948965001 -25.2926173519859 -2.04125650316598 28.0074214460134 -17.4131724815681 -2.83566066515849 24.9893561298321 -22.8501158407937 -2.35268322780551 18.8181424921425 -29.20089151493 -1.22334926944281 28.9307853763467 -15.8317367788633 -2.83566066515849 26.6129517981709 -20.9367263513067 -2.35268322780551 23.218030911612 -25.5126424644298 -1.66437321392944 20.9024379105628 -27.7471195174626 -1.22334926944281 25.2380961463554 -23.0775622048484 -2.04125650316598 30.2710378885434 -11.8031916935605 -2.95958285941785 28.4114969775736 -17.6644000692345 -2.62348305894619 18.9038314133025 -29.3338585647794 -0.7777805513321 29.3481826901956 -16.0601482899613 -2.62348305894619 26.8778528238564 -21.1451271452892 -2.04125650316598 20.9976177273231 -27.8734667771745 -0.7777805513321 25.4576469688421 -23.2783181467262 -1.66437321392944 23.3817656822037 -25.6925589559274 -1.22334926944281 30.7261785383171 -11.9806587614751 -2.83566066515849 28.7565545125687 -17.8789341485148 -2.35268322780551 29.7046162700123 -16.2551987367915 -2.35268322780551 27.1116681901159 -21.3290724805241 -1.66437321392944 23.4882351850764 -25.8095507185148 -0.7777805513321 25.6371756292232 -23.4424780660589 -1.22334926944281 29.0427926136005 -18.0568981725743 -2.04125650316598 31.9224146910838 -6.05066188900374 -2.95958285941785 31.1694787882033 -12.1535090564163 -2.62348305894619 30.0002912247184 -16.4170003607058 -2.04125650316598 27.3028610948186 -21.4794862172802 -1.22334926944281 25.7539152023334 -23.5492240244147 -0.7777805513321 29.2954411877501 -18.2139784381521 -1.66437321392944 32.4023846418447 -6.14163670770212 -2.83566066515849 31.5480320029892 -12.3011133829274 -2.35268322780551 30.2612692547184 -16.559814854757 -1.66437321392944 27.4271854117789 -21.5772936391232 -0.7777805513321 29.5020341740597 -18.3424243684933 -1.22334926944281 31.8620560202921 -12.4235566795945 -2.04125650316598 32.8698682630417 -6.23024483330547 -2.62348305894619 30.4746733111648 -16.6765955368315 -1.22334926944281 29.6363724851581 -18.4259470943018 -0.7777805513321 32.1392298833603 -12.5316314753873 -1.66437321392944 33.2690727022662 -6.30591113579892 -2.35268322780551 30.6134405608989 -16.7525328659685 -0.7777805513321 32.3658774165632 -12.6200051971974 -1.22334926944281 33.6002276808372 -6.36867915719027 -2.04125650316598 32.5132563153776 -12.6774707324294 -0.7777805513321 33.8925222176473 -6.42408146404442 -1.66437321392944 34.1315340602625 -6.4693844231447 -1.22334926944281 34.2869529243924 -6.4988429402125 -0.7777805513321 6.2800603020933 4.71238898036521 3.14471765867608 4.71238898038469 6.11419730179668 4.71238898038674 5.94833321142966 4.71238898038437 5.78247277652483 4.71238898038384 5.61659953613803 4.7123889803867 5.45073427662835 4.71238898038469 5.28484371733539 4.71238898038469 5.11896696555274 4.7123889803847 4.95308417677482 4.71238898038469 4.78719063923128 4.71238898038469 4.62131407987224 4.71238898038469 4.45542104559218 4.71238898038469 4.28954440680298 4.71238898038469 4.12366004374729 4.71238898038469 3.95777553189773 4.71238898038469 3.79190109365804 4.71238898038469 3.62601951690062 4.71238898038469 3.46015275507662 4.71238898038469 3.3024328484566 4.71238898038469 6.2803281604339 6.28318530717959 6.28010750651712 4.87672242341737 6.28015309748005 5.04491673286957 6.28019622247578 5.2187929681877 6.28023208940129 5.38173478954755 6.280261195619 5.53485129120616 6.28028641369702 5.69507348432187 6.28030671374534 5.86316051798726 6.28031976211624 6.02092919273933 6.28032602790913 6.15117063072156 3.1444498003349 6.28318530717959 3.14467045425237 4.87672242302601 3.14462486328954 5.04491673203735 3.14458173829391 5.21879296686458 3.14454587136846 5.38173478772374 3.14451676515079 5.53485128886681 3.14449154707276 5.69507348139626 3.14447124702427 5.86316051564066 3.14445819865319 6.02092919105503 3.14445193286038 6.15117062991458 3.3289132332819 6.28318530717959 3.5133766662289 6.28318530717959 3.6978400991759 6.28318530717959 3.8823035321229 6.28318530717959 4.0667669650699 6.28318530717959 4.2512303980169 6.28318530717959 4.4356938309639 6.28318530717959 4.6201572639109 6.28318530717959 4.8046206968579 6.28318530717959 4.9890841298049 6.28318530717959 5.1735475627519 6.28318530717959 5.3580109956989 6.28318530717959 5.5424744286459 6.28318530717959 5.7269378615929 6.28318530717959 5.9114012945399 6.28318530717959 6.0958647274869 6.28318530717959 3.3024328484566 4.87672242302601 3.3024328484566 5.04491673203735 3.46015275507662 4.87672242302601 3.3024328484566 5.21879296686458 3.5133766662289 4.87672242302601 3.46015275507662 5.04491673203735 3.3024328484566 5.38173478772374 3.5133766662289 5.04491673203735 3.62601951690062 4.87672242302601 3.46015275507662 5.21879296686458 3.3024328484566 5.53485128886681 3.6978400991759 4.87672242302601 3.5133766662289 5.21879296686458 3.62601951690062 5.04491673203735 3.46015275507662 5.38173478772374 3.3024328484566 5.69507348139626 3.6978400991759 5.04491673203735 3.79190109365804 4.87672242302601 3.5133766662289 5.38173478772374 3.62601951690062 5.21879296686458 3.46015275507662 5.53485128886681 3.3024328484566 5.86316051564066 3.5133766662289 5.53485128886681 3.8823035321229 4.87672242302601 3.79190109365804 5.04491673203735 3.6978400991759 5.21879296686458 3.62601951690062 5.38173478772374 3.46015275507662 5.69507348139626 3.3024328484566 6.02092919105503 3.95777553189773 4.87672242302601 3.5133766662289 5.69507348139626 3.8823035321229 5.04491673203735 3.6978400991759 5.38173478772374 3.79190109365804 5.21879296686458 3.62601951690062 5.53485128886681 3.46015275507662 5.86316051564066 3.95777553189773 5.04491673203735 3.5133766662289 5.86316051564066 3.6978400991759 5.53485128886681 4.0667669650699 4.87672242302601 3.79190109365804 5.38173478772374 3.8823035321229 5.21879296686458 3.62601951690062 5.69507348139626 3.46015275507662 6.02092919105503 4.12366004374729 4.87672242302601 3.95777553189773 5.21879296686458 3.5133766662289 6.02092919105503 3.6978400991759 5.69507348139626 3.79190109365804 5.53485128886681 4.0667669650699 5.04491673203735 3.8823035321229 5.38173478772374 3.62601951690062 5.86316051564066 4.12366004374729 5.04491673203735 3.95777553189773 5.38173478772374 3.6978400991759 5.86316051564066 3.79190109365804 5.69507348139626 3.8823035321229 5.53485128886681 4.2512303980169 4.87672242302601 4.0667669650699 5.21879296686458 3.62601951690062 6.02092919105503 4.12366004374729 5.21879296686458 3.95777553189773 5.53485128886681 3.6978400991759 6.02092919105503 3.8823035321229 5.69507348139626 3.79190109365804 5.86316051564066 4.2512303980169 5.04491673203735 4.0667669650699 5.38173478772374 4.12366004374729 5.38173478772374 3.95777553189773 5.69507348139626 3.79190109365804 6.02092919105503 3.8823035321229 5.86316051564066 4.0667669650699 5.53485128886681 4.4356938309639 4.87672242302601 4.2512303980169 5.21879296686458 4.12366004374729 5.53485128886681 3.95777553189773 5.86316051564066 3.8823035321229 6.02092919105503 4.0667669650699 5.69507348139626 4.4356938309639 5.04491673203735 4.2512303980169 5.38173478772374 4.12366004374729 5.69507348139626 3.95777553189773 6.02092919105503 4.0667669650699 5.86316051564066 4.2512303980169 5.53485128886681 4.6201572639109 4.87672242302601 4.4356938309639 5.21879296686458 4.12366004374729 5.86316051564066 4.0667669650699 6.02092919105503 4.2512303980169 5.69507348139626 4.6201572639109 5.04491673203735 4.4356938309639 5.38173478772374 4.12366004374729 6.02092919105503 4.78719063923128 4.87672242302601 4.2512303980169 5.86316051564066 4.4356938309639 5.53485128886681 4.6201572639109 5.21879296686458 4.78719063923128 5.04491673203735 4.2512303980169 6.02092919105503 4.4356938309639 5.69507348139626 4.6201572639109 5.38173478772374 4.95308417677482 4.87672242302601 4.78719063923128 5.21879296686458 4.4356938309639 5.86316051564066 4.6201572639109 5.53485128886681 4.95308417677482 5.04491673203735 4.78719063923128 5.38173478772374 4.4356938309639 6.02092919105503 4.6201572639109 5.69507348139626 5.11896696555274 4.87672242302601 4.95308417677482 5.21879296686458 4.78719063923128 5.53485128886681 4.6201572639109 5.86316051564066 5.1735475627519 4.87672242302601 5.11896696555274 5.04491673203735 4.95308417677482 5.38173478772374 4.78719063923128 5.69507348139626 4.6201572639109 6.02092919105503 5.1735475627519 5.04491673203735 5.28484371733539 4.87672242302601 5.11896696555274 5.21879296686458 4.95308417677482 5.53485128886681 4.78719063923128 5.86316051564066 5.3580109956989 4.87672242302601 5.1735475627519 5.21879296686458 5.28484371733539 5.04491673203735 5.11896696555274 5.38173478772374 4.95308417677482 5.69507348139626 4.78719063923128 6.02092919105503 5.45073427662835 4.87672242302601 5.3580109956989 5.04491673203735 5.1735475627519 5.38173478772374 5.28484371733539 5.21879296686458 5.11896696555274 5.53485128886681 4.95308417677482 5.86316051564066 5.1735475627519 5.53485128886681 5.5424744286459 4.87672242302601 5.45073427662835 5.04491673203735 5.3580109956989 5.21879296686458 5.28484371733539 5.38173478772374 5.11896696555274 5.69507348139626 4.95308417677482 6.02092919105503 5.61659953613803 4.87672242302601 5.1735475627519 5.69507348139626 5.5424744286459 5.04491673203735 5.3580109956989 5.38173478772374 5.45073427662835 5.21879296686458 5.28484371733539 5.53485128886681 5.11896696555274 5.86316051564066 5.61659953613803 5.04491673203735 5.1735475627519 5.86316051564066 5.3580109956989 5.53485128886681 5.7269378615929 4.87672242302601 5.45073427662835 5.38173478772374 5.5424744286459 5.21879296686458 5.28484371733539 5.69507348139626 5.11896696555274 6.02092919105503 5.78247277652483 4.87672242302601 5.61659953613803 5.21879296686458 5.1735475627519 6.02092919105503 5.3580109956989 5.69507348139626 5.45073427662835 5.53485128886681 5.7269378615929 5.04491673203735 5.5424744286459 5.38173478772374 5.28484371733539 5.86316051564066 5.78247277652483 5.04491673203735 5.61659953613803 5.38173478772374 5.45073427662835 5.69507348139626 5.3580109956989 5.86316051564066 5.5424744286459 5.53485128886681 5.9114012945399 4.87672242302601 5.7269378615929 5.21879296686458 5.28484371733539 6.02092919105503 5.78247277652483 5.21879296686458 5.61659953613803 5.53485128886681 5.3580109956989 6.02092919105503 5.5424744286459 5.69507348139626 5.45073427662835 5.86316051564066 5.9114012945399 5.04491673203735 5.7269378615929 5.38173478772374 5.78247277652483 5.38173478772374 5.61659953613803 5.69507348139626 5.45073427662835 6.02092919105503 5.5424744286459 5.86316051564066 5.7269378615929 5.53485128886681 6.0958647274869 4.87672242302601 5.9114012945399 5.21879296686458 5.78247277652483 5.53485128886681 5.61659953613803 5.86316051564066 5.5424744286459 6.02092919105503 5.7269378615929 5.69507348139626 6.0958647274869 5.04491673203735 5.9114012945399 5.38173478772374 5.78247277652483 5.69507348139626 5.61659953613803 6.02092919105503 5.7269378615929 5.86316051564066 5.9114012945399 5.53485128886681 6.0958647274869 5.21879296686458 5.78247277652483 5.86316051564066 5.7269378615929 6.02092919105503 5.9114012945399 5.69507348139626 6.0958647274869 5.38173478772374 5.78247277652483 6.02092919105503 5.9114012945399 5.86316051564066 6.0958647274869 5.53485128886681 5.9114012945399 6.02092919105503 6.0958647274869 5.69507348139626 6.0958647274869 5.86316051564066 6.0958647274869 6.02092919105503 152 135 146 153 146 141 153 141 149 154 47 46 154 46 148 154 148 150 155 145 151 155 150 145 156 147 142 156 142 152 157 10 9 157 149 10 157 153 149 158 152 146 158 146 153 159 150 155 159 154 150 160 147 156 160 151 147 161 153 157 161 158 153 162 152 158 162 156 152 163 154 159 163 47 154 164 155 151 41 31 40 164 151 160 165 157 9 166 162 158 166 158 161 167 160 156 167 156 162 168 155 164 168 159 155 169 9 8 169 165 9 170 166 161 170 161 157 170 157 165 170 165 169 171 162 166 171 167 162 172 160 167 172 164 160 173 159 168 173 163 159 173 47 163 173 48 47 174 170 169 175 169 8 175 174 169 176 166 170 176 170 174 177 167 171 177 172 167 178 168 164 178 164 172 179 8 7 179 175 8 180 176 174 181 180 174 181 174 175 182 171 166 182 166 176 182 177 171 182 176 180 183 172 177 183 178 172 184 173 168 184 49 48 184 168 178 184 48 173 185 179 7 22 3 1 186 175 179 186 181 175 187 182 180 188 180 181 188 187 180 189 183 177 189 177 182 189 182 187 190 178 183 190 184 178 191 189 187 192 7 6 192 185 7 193 179 185 193 186 179 194 188 181 194 181 186 195 187 188 21 56 30 195 191 187 196 190 183 57 2 20 57 32 2 196 189 191 196 183 189 197 184 190 197 50 49 58 32 57 58 33 32 197 49 184 198 192 6 59 20 19 59 57 20 199 196 191 60 34 33 200 185 192 200 193 185 60 33 58 61 19 18 61 59 19 201 195 188 62 57 59 62 58 57 201 188 194 202 186 193 62 59 61 63 35 34 202 194 186 203 199 191 203 191 195 63 34 60 204 190 196 204 196 199 64 62 61 205 200 192 205 192 198 65 61 18 66 58 62 206 204 199 66 60 58 67 35 63 67 36 35 207 195 201 207 203 195 208 6 5 208 198 6 68 18 17 208 205 198 68 65 18 209 201 194 209 194 202 69 66 62 69 62 64 210 202 193 210 193 200 70 64 61 211 206 199 70 61 65 211 199 203 212 190 204 71 60 66 212 50 197 71 63 60 212 51 50 212 204 206 212 197 190 71 66 69 72 37 36 213 208 5 72 36 67 73 65 68 214 210 200 214 200 205 73 70 65 74 68 17 215 51 212 215 212 206 75 71 69 216 203 207 216 211 203 217 207 201 76 69 64 217 201 209 76 64 70 77 63 71 218 214 205 77 67 63 77 71 75 218 205 208 78 37 72 219 209 202 78 38 37 219 202 210 220 206 211 79 77 75 220 215 206 80 17 16 221 208 213 80 74 17 221 218 208 81 68 74 81 73 68 81 74 80 222 210 214 82 76 70 222 219 210 223 216 207 82 70 73 83 75 69 223 207 217 83 69 76 224 211 216 84 72 67 224 220 211 224 216 223 84 77 79 84 67 77 225 217 209 85 39 38 85 40 39 225 209 219 85 38 78 226 5 4 85 41 40 226 213 5 86 80 16 227 222 214 227 214 218 87 84 79 228 52 51 228 51 215 88 81 80 228 215 220 229 227 218 89 76 82 89 83 76 229 218 221 230 225 219 90 81 88 90 73 81 230 219 222 90 82 73 91 87 79 91 83 89 231 220 224 231 228 220 91 75 83 91 79 75 231 52 228 232 223 217 92 72 84 232 217 225 92 78 72 92 84 87 93 88 80 233 224 223 234 213 226 93 80 86 94 92 87 234 221 213 235 230 222 95 91 89 235 222 227 96 86 16 235 227 229 96 16 15 97 82 90 236 235 229 237 225 230 97 89 82 237 232 225 98 97 90 98 90 88 99 87 91 238 52 231 99 91 95 238 53 52 238 224 233 238 231 224 100 78 92 239 233 223 100 92 94 100 42 41 100 41 85 100 85 78 239 223 232 240 230 235 240 237 230 101 96 15 241 4 3 241 234 226 102 98 88 241 3 22 241 226 4 242 229 221 102 88 93 103 100 94 103 42 100 242 221 234 104 99 95 243 235 236 243 240 235 105 95 89 105 89 97 244 232 237 244 239 232 106 93 86 106 96 101 245 238 233 245 233 239 106 86 96 245 53 238 107 97 98 107 105 97 246 237 240 246 240 243 108 87 99 246 244 237 108 99 104 247 234 241 247 22 23 108 94 87 247 242 234 247 241 22 109 106 101 248 236 229 248 229 242 110 98 102 110 107 98 111 108 104 112 95 105 249 246 243 112 104 95 250 245 239 250 54 53 250 239 244 112 111 104 250 53 245 113 105 107 251 244 246 113 112 105 114 15 14 251 250 244 114 101 15 252 236 248 115 93 106 252 243 236 115 102 93 115 106 109 253 23 24 116 103 94 253 247 23 116 43 42 253 248 242 116 42 103 253 242 247 116 94 108 116 108 111 254 246 249 254 251 246 255 54 250 117 115 109 255 250 251 118 113 107 118 107 110 256 243 252 256 249 243 119 43 116 257 24 25 119 116 111 257 253 24 120 113 118 257 252 248 120 112 113 257 248 253 121 111 112 258 55 54 258 54 255 258 251 254 121 112 120 258 255 251 122 101 114 259 249 256 122 109 101 259 254 249 260 252 257 123 110 102 260 25 26 123 102 115 123 115 117 260 256 252 260 257 25 261 254 259 124 123 117 261 258 254 261 55 258 262 256 260 262 259 256 262 260 26 262 26 27 125 120 118 263 261 259 126 44 43 126 43 119 263 262 27 263 27 28 126 119 111 126 111 121 127 121 120 263 259 262 264 55 261 127 126 121 264 261 263 264 263 28 264 28 29 264 29 30 264 56 55 264 30 56 128 123 124 128 110 123 128 118 110 129 14 13 129 122 114 129 114 14 130 109 122 130 117 109 131 128 124 132 120 125 132 127 120 133 126 127 133 44 126 134 118 128 134 125 118 134 128 131 135 122 129 135 130 122 136 117 130 136 124 117 137 134 131 138 127 132 138 133 127 138 44 133 138 45 44 139 125 134 139 134 137 139 132 125 140 124 136 140 131 124 141 13 12 141 129 13 142 136 130 142 130 135 143 139 137 144 139 143 144 138 132 144 45 138 144 132 139 145 137 131 145 131 140 146 129 141 146 135 129 147 136 142 147 140 136 148 46 45 148 144 143 148 45 144 149 11 10 149 12 11 149 141 12 150 143 137 150 137 145 150 148 143 151 140 147 151 145 140 152 142 135 +40 38 1 0.110019522937487 +-31.9998437495618 -0.100000000000009 28 31.9998437496185 -0.100000000000002 28 -31.5441749829062 -5.38191696244104 28 -30.2226860550529 -10.5161416630456 28 -28.0717025150097 -15.3616254880711 28 -25.1499948836849 -19.7857959483434 28 -21.5380751760828 -23.6666696082028 28 -17.33431033628 -26.8983590647439 28 -12.6549929007601 -29.3913444604365 28 -7.62809087160213 -31.077520125616 28 -2.39142477476538 -31.910516242569 28 2.91037685549547 -31.8673760046315 28 8.1327694089498 -30.9492824766816 28 13.1314007185079 -29.1816089697668 28 17.7697381963256 -26.6127114418555 28 21.9202267957334 -23.3131647228397 28 25.4687103439634 -19.3738165529206 28 28.3181415639188 -14.9024449263106 28 30.3899979485004 -10.0223764335128 28 31.586977423169 -5.12472856223203 28 -31.9998437496185 -0.0999999999999878 24 31.9998437496185 -0.100000000000016 24 -31.5441749828996 -5.38191696248108 24 -30.222686055026 -10.5161416631225 24 -28.071702514951 -15.3616254881784 24 -25.1499948835837 -19.785795948472 24 -21.5380751759335 -23.6666696083387 24 -17.3343103360792 -26.8983590648733 24 -12.6549929005067 -29.3913444605457 24 -7.62809087129826 -31.0775201256906 24 -2.39142477441643 -31.9105162425951 24 2.91037685587909 -31.8673760045965 24 8.13276940935556 -30.9492824765749 24 13.1314007189222 -29.1816089695804 24 17.769738196732 -26.6127114415841 24 21.9202267961146 -23.3131647224813 24 25.4687103443003 -19.3738165524777 24 28.3181415641933 -14.902444925789 24 30.3899979486954 -10.0223764329215 24 31.5869774232188 -5.12472856192478 24 3.14471765867608 28 6.2800603020933 28 3.31058065897144 28 3.4764447493372 28 3.64230518424077 28 3.80817842462629 28 3.97404368413478 28 4.13993424342659 28 4.30581099520809 28 4.47169378398485 28 4.63758732152724 28 4.80346388088515 28 4.96935691516407 28 5.13523355395214 28 5.3011179170067 28 5.46700242885513 28 5.6328768670937 28 5.79875844385003 28 5.96462520567293 28 6.12234511230286 28 3.14471765867608 24 6.2800603020933 24 3.31058065897271 24 3.47644474933975 24 3.64230518424459 24 3.80817842463141 24 3.97404368414108 24 4.13993424343405 24 4.30581099521671 24 4.47169378399463 24 4.63758732153818 24 4.80346388089718 24 4.96935691517718 24 5.13523355396633 24 5.30111791702197 24 5.46700242887149 24 5.6328768671111 24 5.79875844386845 24 5.96462520569238 24 6.12234511231258 24 3 1 21 3 21 23 4 23 24 4 3 23 5 24 25 5 4 24 6 25 26 6 5 25 7 26 27 7 6 26 8 27 28 8 7 27 9 28 29 9 8 28 10 29 30 10 9 29 11 30 31 11 10 30 12 31 32 12 11 31 13 32 33 13 12 32 14 33 34 14 13 33 15 34 35 15 14 34 16 35 36 16 15 35 17 16 36 17 36 37 18 17 37 18 37 38 19 18 38 19 38 39 20 19 39 20 39 40 2 20 40 2 40 22 +264 470 1 0.178476500757615 +-34.9998571425655 -0.100000000023911 0 34.9998571425655 -0.100000000044039 0 -34.387735963849 -6.51794563344987 0 -32.6088257525758 -12.714734878799 0 -29.723485612544 -18.4801083070659 0 -25.8296162381791 -23.6184445929107 0 -21.0593381065312 -27.9553980210406 0 -15.5745085789603 -31.3438141030075 0 -9.56123001896417 -33.6687225852787 0 -3.22353526781181 -34.851238433909 0 3.22353526779162 -34.8512384339108 0 9.56123001894467 -33.6687225852843 0 15.5745085789421 -31.3438141030165 0 21.059338106515 -27.9553980210528 0 25.8296162381655 -23.6184445929257 0 29.7234856125333 -18.4801083070832 0 32.6088257525685 -12.7147348788178 0 34.3877359638452 -6.51794563346978 0 -31.9998437496185 -0.100000000000002 3 -32.4906305491414 -0.1 2.9595828723437 -32.9791483547401 -0.0999999999999989 2.83566065408687 -33.4549576464085 -0.0999999999999971 2.62348305945818 -33.8612715889507 -0.100000000000003 2.35268321632283 -34.1983241503139 -0.099999999999997 2.04125652100898 -34.4958241600864 -0.100000000000002 1.66437319348373 -34.7390925681326 -0.10000000000011 1.22334926543515 -34.8972792570999 -0.100000000002558 0.777780562804935 -34.9737531763378 -0.0999999999955189 0.394894657417581 31.9998437495618 -0.100000000000009 3 32.4906305503014 -0.0999999999999957 2.95958287215134 32.9791483571036 -0.0999999999999972 2.83566065327069 33.4549576498853 -0.100000000000012 2.62348305752982 33.8612715932444 -0.0999999999999932 2.35268321292557 34.1983241550921 -0.100000000000003 2.04125651586297 34.4958241649575 -0.099999999999994 1.66437318617864 34.7390925709804 -0.100000000000201 1.22334925899443 34.8972792584575 -0.100000000004715 0.77778055793415 34.9737531766234 -0.0999999999917521 0.394894655012109 31.5441749829062 -5.38191696244104 3 30.2226860550529 -10.5161416630456 3 28.0717025150097 -15.3616254880711 3 25.1499948836849 -19.7857959483434 3 21.5380751760828 -23.6666696082028 3 17.33431033628 -26.8983590647439 3 12.6549929007601 -29.3913444604365 3 7.62809087160213 -31.077520125616 3 2.39142477476538 -31.910516242569 3 -2.91037685549547 -31.8673760046315 3 -8.1327694089498 -30.9492824766816 3 -13.1314007185079 -29.1816089697668 3 -17.7697381963256 -26.6127114418555 3 -21.9202267957334 -23.3131647228397 3 -25.4687103439634 -19.3738165529206 3 -28.3181415639188 -14.9024449263106 3 -30.3899979485004 -10.0223764335128 3 -31.586977423169 -5.12472856223203 3 -34.5224907335525 -5.60098600345794 0.394894663753561 -33.214267709645 -10.9538044154159 0.394894663753561 -34.2908598313394 -5.56340582272079 1.22334926301124 -32.5845052817269 -12.7052519142384 0.394894663753561 -34.0507322850467 -5.52444713239306 1.66437320662307 -32.9914144150982 -10.8803091505757 1.22334926301124 -30.949869762282 -16.2873869100274 0.394894663753561 -33.7570733192405 -5.4768034160122 2.04125649801847 -32.3658774192466 -12.6200051982221 1.22334926301124 -29.7013170999195 -18.4663253840384 0.394894663753561 -32.7603864551349 -10.8041179453366 1.66437320662307 -33.4243725110099 -5.42282548653366 2.3526832244072 -32.1392298879068 -12.5316314771386 1.66437320662307 -30.7422095933868 -16.1781056257255 1.22334926301124 -27.835622400125 -21.174313123613 0.394894663753561 -32.4778556383145 -10.7109415027357 2.04125649801847 -33.0233045873786 -5.35775556316015 2.6234830570172 -31.8620560247522 -12.4235566813123 2.04125649801847 -29.5020341765097 -18.3424243699929 1.22334926301124 -30.5269320706421 -16.0648157045431 1.66437320662307 -25.8103518698904 -23.6008293712656 0.394894663753561 -32.1577624620406 -10.6053772892397 2.3526832244072 -32.5536387547268 -5.28155620155302 2.83566066434187 -31.5480320069981 -12.3011133844695 2.3526832244072 -29.2954411918982 -18.2139784407076 1.66437320662307 -27.6488574769343 -21.032242689286 1.22334926301124 -23.9573672696164 -25.4797559675886 0.394894663753561 -30.2636629219478 -15.9262701623747 2.04125649801847 -31.7718929288121 -10.4781205502442 2.6234830570172 -32.0714283063203 -5.20332158073462 2.95958285922541 -31.1694787914506 -12.1535090576616 2.6234830570172 -29.0427926176699 -18.0568981750811 2.04125649801847 -25.6371756313565 -23.4424780679823 1.22334926301124 -27.4552416756279 -20.8849608522352 1.66437320662307 -29.9653922448979 -15.7693050456119 2.3526832244072 -21.043631529962 -27.9345481919851 0.394894663753561 -31.3200249908882 -10.3290980561497 2.83566066434187 -23.7966237520602 -25.3087978838138 1.22334926301124 -19.421158249978 -29.0859420148026 0.394894663753561 -28.7565545162268 -17.8789341507661 2.3526832244072 -30.7261785405271 -11.9806587623163 2.83566066434187 -27.2184632765928 -20.7048456067412 2.04125649801847 -25.4576469724511 -23.2783181499991 1.66437320662307 -29.6058295442219 -15.5800849658731 2.6234830570172 -30.8560878129662 -10.176095221572 2.95958285922541 -23.6299838690203 -25.1315687456309 1.66437320662307 -28.4114969805374 -17.6644000710544 2.6234830570172 -26.9502052838077 -20.5007841111693 2.3526832244072 -30.2710378896315 -11.8031916939646 2.95958285922541 -25.2380961498959 -23.077562208059 2.04125649801847 -20.9024379123072 -27.7471195197447 1.22334926301124 -29.1847679103857 -15.3585010368959 2.83566066434187 -15.5628927242603 -31.3204371092154 0.394894663753561 -19.2908507225697 -28.8907879906448 1.22334926301124 -23.4261951056273 -24.9148300738999 2.04125649801847 -26.6268226123438 -20.2547897573914 2.6234830570172 -24.9893561330151 -22.8501158436777 2.3526832244072 -28.0074214480315 -17.4131724828004 2.83566066434187 -20.7560650551637 -27.5528156218623 1.66437320662307 -28.7524598625284 -15.1309986760184 2.95958285922541 -19.1557632773236 -28.6884753608426 1.66437320662307 -23.1953127073902 -24.6692760821742 2.3526832244072 -24.6895022113342 -22.5759312344336 2.6234830570172 -27.5925531945339 -17.1552346905192 2.95958285922541 -26.2481291723821 -19.9667209885188 2.83566066434187 -20.5770614276564 -27.3151957294961 2.04125649801847 -15.45847248093 -31.1102905945474 1.22334926301124 -9.55409901652575 -33.6436116170897 0.394894663753561 -18.9905609085123 -28.4410613570997 2.04125649801847 -22.9169859892905 -24.37326288604 2.6234830570172 -20.3742593392392 -27.0459843671768 2.3526832244072 -24.3383618345993 -22.2548506014203 2.83566066434187 -25.8593209585474 -19.6709580001283 2.95958285922541 -15.3502219125705 -30.8924355223309 1.66437320662307 -18.8033949506325 -28.1607537602011 2.3526832244072 -22.5910547888545 -24.0266201453802 2.83566066434187 -20.129783189806 -26.7214524170517 2.6234830570172 -23.9778426170037 -21.925194013148 2.95958285922541 -15.2178391416507 -30.6260142133623 2.04125649801847 -9.48999516631079 -33.4178776116056 1.22334926301124 -3.22113107527492 -34.8252455160771 0.394894663753561 -18.5777680202365 -27.8228453960343 2.6234830570172 -22.2564180761421 -23.6707186942001 2.95958285922541 -15.0678561341171 -30.3241722975863 2.3526832244072 -19.8434922961153 -26.3414131279517 2.83566066434187 -9.42353986991915 -33.1838632709721 1.66437320662307 -18.3135502808232 -27.4271418160036 2.83566066434187 -14.8870529261797 -29.9603044997623 2.6234830570172 -19.5495546693524 -25.9512231178028 2.95958285922541 -9.34226975363302 -32.8976803223051 2.04125649801847 -3.19951868632909 -34.5915832609131 1.22334926301124 2.61366648584813 -34.8760972323439 0.394894663753561 -18.0422753748329 -27.020869127004 2.95958285922541 -9.25019480778837 -32.5734494647115 2.3526832244072 -14.6753254750458 -29.5342014329977 2.83566066434187 -3.17711351552716 -34.3493498479372 1.66437320662307 2.5961299201677 -34.6420937842744 1.22334926301124 -9.1391992633388 -32.182591992727 2.6234830570172 8.33700180220076 -33.9656857962452 0.394894663753561 -14.4579428552056 -29.0967172972414 2.95958285922541 -3.1497135800013 -34.0531155564682 2.04125649801847 2.57795008126447 -34.3995066628148 1.66437320662307 -3.11867083397141 -33.7174970340547 2.3526832244072 -9.00921924815199 -31.7248829883128 2.83566066434187 8.28106414509195 -33.737790813059 1.22334926301124 13.8310777107681 -32.1228065401802 0.394894663753561 2.55571742710517 -34.1028398109456 2.04125649801847 -3.08124907428218 -33.3129118314144 2.6234830570172 -8.87576751066186 -31.2549487309875 2.95958285922541 15.5628927242421 -31.3204371092244 0.394894663753561 8.22307459266794 -33.5015362261188 1.66437320662307 2.53052895043938 -33.766731219399 2.3526832244072 -3.03742676666754 -32.8391271309172 2.83566066434187 13.7382771931736 -31.907276475506 1.22334926301124 18.9452569303936 -29.3981402558142 0.394894663753561 8.15215748109409 -33.2126136150359 2.04125649801847 2.50016446142744 -33.3615552426916 2.6234830570172 -2.99243398001802 -32.3526878010964 2.95958285922541 15.458472480912 -31.1102905945563 1.22334926301124 21.0436315299458 -27.9345481919973 0.394894663753561 13.6420725832889 -31.6838403748473 1.66437320662307 8.07181196781057 -32.8852788580006 2.3526832244072 2.46460648689356 -32.8870787232338 2.83566066434187 15.3502219125526 -30.8924355223398 1.66437320662307 18.8181424939146 -29.2008915172051 1.22334926301124 23.5397068822562 -25.8661093045825 0.394894663753561 13.5244211656123 -31.4105938637486 2.04125649801847 7.97495615204901 -32.4906796623008 2.6234830570172 2.42809877087002 -32.3999290962014 2.95958285922541 15.217839141633 -30.6260142133711 2.04125649801847 20.9024379122911 -27.7471195197568 1.22334926301124 18.6863652679985 -28.9964073350039 1.66437320662307 25.8103518698768 -23.6008293712805 0.394894663753561 13.3911280388623 -31.1010193379405 2.3526832244072 7.86153429835164 -32.0285889567314 2.83566066434187 15.0678561340995 -30.324172297595 2.3526832244072 23.3817656842977 -25.6925589579055 1.22334926301124 20.7560650551478 -27.5528156218743 1.66437320662307 27.487288853737 -21.6245777329958 0.394894663753561 18.5252110627574 -28.7463376766244 2.04125649801847 13.2304443366968 -30.7278299461403 2.6234830570172 7.74508298525162 -31.5541559644929 2.95958285922541 14.8870529261623 -29.9603044997709 2.6234830570172 20.5770614276406 -27.315195729508 2.04125649801847 25.6371756313429 -23.4424780679972 1.22334926301124 23.2180309150509 -25.5126424678878 1.66437320662307 18.3426314701802 -28.4630213568641 2.3526832244072 29.7013170999088 -18.4663253840556 0.394894663753561 13.0422775940468 -30.2908109373658 2.83566066434187 27.3028610971848 -21.4794862189179 1.22334926301124 30.6805263051579 -16.7892440657006 0.394894663753561 20.3742593392235 -27.0459843671887 2.3526832244072 14.6753254750287 -29.5342014330062 2.83566066434187 23.0177948998752 -25.2926173553767 2.04125649801847 25.4576469724376 -23.2783181500139 1.66437320662307 18.12253336317 -28.1214860035195 2.6234830570172 12.8490849812561 -29.8421192984754 2.95958285922541 27.1116681940531 -21.3290724833993 1.66437320662307 20.1297831897905 -26.7214524170633 2.6234830570172 22.7909375863145 -25.0433399918794 2.3526832244072 14.4579428551887 -29.0967172972498 2.95958285922541 25.2380961498826 -23.0775622080736 2.04125649801847 29.5020341764991 -18.3424243700099 1.22334926301124 17.864790086774 -27.7215350808521 2.83566066434187 32.5845052817196 -12.7052519142573 0.394894663753561 30.4746733137476 -16.676595538095 1.22334926301124 26.8778528277197 -21.1451271481082 2.04125649801847 22.5174630726989 -24.7428383035373 2.6234830570172 24.9893561330019 -22.8501158436921 2.3526832244072 19.8434922961 -26.3414131279632 2.83566066434187 29.2954411918877 -18.2139784407246 1.66437320662307 17.6001625745214 -27.3109016041286 2.95958285922541 30.2612692590551 -16.5598148569813 1.66437320662307 26.6129518016527 -20.9367263538277 2.3526832244072 24.6895022113211 -22.5759312344479 2.6234830570172 22.1972139887448 -24.3909393673406 2.83566066434187 19.5495546693373 -25.9512231178141 2.95958285922541 29.0427926176594 -18.0568981750979 2.04125649801847 32.3658774192393 -12.6200051982409 1.22334926301124 34.362088737649 -6.51308438799052 0.394894663753561 30.0002912289732 -16.4170003628866 2.04125649801847 26.2936159242993 -20.6855010132891 2.6234830570172 28.7565545162164 -17.8789341507827 2.3526832244072 24.3383618345864 -22.2548506014343 2.83566066434187 21.8684111599264 -24.0296413294162 2.95958285922541 32.1392298878995 -12.5316314771572 1.66437320662307 29.7046162738418 -16.255198738741 2.3526832244072 25.919661434559 -20.3913065594446 2.83566066434187 28.4114969805271 -17.6644000710709 2.6234830570172 23.977842616991 -21.9251940131619 2.95958285922541 31.862056024745 -12.4235566813308 2.04125649801847 34.1315340630846 -6.46938442367961 1.22334926301124 29.3481826933074 -16.0601482915197 2.6234830570172 25.5357187467054 -20.0892542711056 2.95958285922541 31.548032006991 -12.3011133844878 2.3526832244072 28.0074214480215 -17.4131724828166 2.83566066434187 33.8925222224342 -6.42408146495173 1.66437320662307 28.9307853784809 -15.8317367798889 2.83566066434187 31.1694787914435 -12.1535090576797 2.6234830570172 27.592553194524 -17.1552346905352 2.95958285922541 33.600227685533 -6.36867915808032 2.04125649801847 28.5022395223565 -15.5972244739312 2.95958285922541 33.2690727064863 -6.30591113659881 2.3526832244072 30.7261785405201 -11.9806587623341 2.83566066434187 32.8698682664587 -6.23024483395315 2.6234830570172 30.2710378896246 -11.8031916939821 2.95958285922541 32.4023846441679 -6.14163670814247 2.83566066434187 31.922414692224 -6.05066188921985 2.95958285922541 3.1444498003349 0 6.2803281604339 0 3.3289132332819 0 3.5133766662289 0 3.6978400991759 0 3.8823035321229 0 4.0667669650699 0 4.2512303980169 0 4.4356938309639 0 4.6201572639109 0 4.8046206968579 0 4.9890841298049 0 5.1735475627519 0 5.3580109956989 0 5.5424744286459 0 5.7269378615929 0 5.9114012945399 0 6.0958647274869 0 3.14471765867608 1.5707963267949 3.14467045425237 1.40646288415343 3.14462486328954 1.23826857514184 3.14458173829391 1.06439234031458 3.14454587136846 0.901450519455237 3.14451676515079 0.748334018312112 3.14449154707276 0.588111825782763 3.14447124702427 0.420024791538461 3.14445819865319 0.26225611612418 3.14445193286038 0.13201467726486 6.2800603020933 1.57079632681381 6.28010750651712 1.40646288376147 6.28015309748005 1.23826857430836 6.28019622247578 1.06439233898933 6.28023208940129 0.901450517630183 6.280261195619 0.748334015971366 6.28028641369702 0.588111822856059 6.28030671374534 0.420024789190988 6.28031976211624 0.262256114439414 6.28032602790913 0.132014676457603 6.11419730179794 1.57079632679291 5.94833321143218 1.57079632679521 5.78247277652861 1.57079632679572 5.61659953614309 1.57079632679295 5.45073427663461 1.5707963267949 5.28484371734279 1.5707963267949 5.11896696556129 1.57079632679489 4.95308417678453 1.5707963267949 4.78719063924214 1.5707963267949 4.62131407988423 1.5707963267949 4.45542104560531 1.5707963267949 4.28954440681724 1.5707963267949 4.12366004376268 1.5707963267949 3.95777553191425 1.5707963267949 3.79190109367568 1.5707963267949 3.62601951691935 1.5707963267949 3.46015275509645 1.5707963267949 3.30243284846652 1.5707963267949 3.30243284846652 0.132014676457603 3.46015275509645 0.132014676457603 3.30243284846652 0.420024789190988 3.5133766662289 0.132014676457603 3.30243284846652 0.588111822856059 3.46015275509645 0.420024789190988 3.62601951691935 0.132014676457603 3.30243284846652 0.748334015971366 3.5133766662289 0.420024789190988 3.6978400991759 0.132014676457603 3.46015275509645 0.588111822856059 3.30243284846652 0.901450517630183 3.5133766662289 0.588111822856059 3.62601951691935 0.420024789190988 3.79190109367568 0.132014676457603 3.46015275509645 0.748334015971366 3.30243284846652 1.06439233898933 3.5133766662289 0.748334015971366 3.6978400991759 0.420024789190988 3.62601951691935 0.588111822856059 3.8823035321229 0.132014676457603 3.46015275509645 0.901450517630183 3.30243284846652 1.23826857430836 3.5133766662289 0.901450517630183 3.6978400991759 0.588111822856059 3.79190109367568 0.420024789190988 3.95777553191425 0.132014676457603 3.62601951691935 0.748334015971366 3.46015275509645 1.06439233898933 3.30243284846652 1.40646288376147 3.5133766662289 1.06439233898933 3.6978400991759 0.748334015971366 3.8823035321229 0.420024789190988 3.79190109367568 0.588111822856059 3.62601951691935 0.901450517630183 4.0667669650699 0.132014676457603 3.46015275509645 1.23826857430836 3.95777553191425 0.420024789190988 4.12366004376268 0.132014676457603 3.6978400991759 0.901450517630183 3.5133766662289 1.23826857430836 3.79190109367568 0.748334015971366 3.8823035321229 0.588111822856059 3.62601951691935 1.06439233898933 3.46015275509645 1.40646288376147 3.95777553191425 0.588111822856059 3.6978400991759 1.06439233898933 3.79190109367568 0.901450517630183 3.5133766662289 1.40646288376147 3.8823035321229 0.748334015971366 4.0667669650699 0.420024789190988 3.62601951691935 1.23826857430836 4.2512303980169 0.132014676457603 4.12366004376268 0.420024789190988 3.95777553191425 0.748334015971366 3.79190109367568 1.06439233898933 3.8823035321229 0.901450517630183 3.6978400991759 1.23826857430836 4.0667669650699 0.588111822856059 3.62601951691935 1.40646288376147 4.12366004376268 0.588111822856059 3.95777553191425 0.901450517630183 3.8823035321229 1.06439233898933 3.6978400991759 1.40646288376147 3.79190109367568 1.23826857430836 4.0667669650699 0.748334015971366 4.2512303980169 0.420024789190988 4.4356938309639 0.132014676457603 4.12366004376268 0.748334015971366 3.95777553191425 1.06439233898933 4.0667669650699 0.901450517630183 3.8823035321229 1.23826857430836 3.79190109367568 1.40646288376147 4.2512303980169 0.588111822856059 4.12366004376268 0.901450517630183 3.95777553191425 1.23826857430836 4.0667669650699 1.06439233898933 3.8823035321229 1.40646288376147 4.2512303980169 0.748334015971366 4.4356938309639 0.420024789190988 4.6201572639109 0.132014676457603 4.12366004376268 1.06439233898933 3.95777553191425 1.40646288376147 4.2512303980169 0.901450517630183 4.0667669650699 1.23826857430836 4.4356938309639 0.588111822856059 4.12366004376268 1.23826857430836 4.2512303980169 1.06439233898933 4.0667669650699 1.40646288376147 4.4356938309639 0.748334015971366 4.6201572639109 0.420024789190988 4.78719063924214 0.132014676457603 4.12366004376268 1.40646288376147 4.4356938309639 0.901450517630183 4.2512303980169 1.23826857430836 4.6201572639109 0.588111822856059 4.78719063924214 0.420024789190988 4.4356938309639 1.06439233898933 4.95308417678453 0.132014676457603 4.2512303980169 1.40646288376147 4.6201572639109 0.748334015971366 4.78719063924214 0.588111822856059 4.6201572639109 0.901450517630183 4.4356938309639 1.23826857430836 4.95308417678453 0.420024789190988 5.11896696556129 0.132014676457603 4.78719063924214 0.748334015971366 4.6201572639109 1.06439233898933 4.4356938309639 1.40646288376147 5.1735475627519 0.132014676457603 4.95308417678453 0.588111822856059 4.78719063924214 0.901450517630183 4.6201572639109 1.23826857430836 5.11896696556129 0.420024789190988 5.28484371734279 0.132014676457603 4.95308417678453 0.748334015971366 4.78719063924214 1.06439233898933 4.6201572639109 1.40646288376147 5.1735475627519 0.420024789190988 5.3580109956989 0.132014676457603 5.11896696556129 0.588111822856059 4.95308417678453 0.901450517630183 4.78719063924214 1.23826857430836 5.1735475627519 0.588111822856059 5.28484371734279 0.420024789190988 5.45073427663461 0.132014676457603 5.11896696556129 0.748334015971366 4.95308417678453 1.06439233898933 4.78719063924214 1.40646288376147 5.1735475627519 0.748334015971366 5.3580109956989 0.420024789190988 5.28484371734279 0.588111822856059 5.5424744286459 0.132014676457603 5.11896696556129 0.901450517630183 4.95308417678453 1.23826857430836 5.1735475627519 0.901450517630183 5.45073427663461 0.420024789190988 5.3580109956989 0.588111822856059 5.61659953614309 0.132014676457603 5.28484371734279 0.748334015971366 5.11896696556129 1.06439233898933 4.95308417678453 1.40646288376147 5.1735475627519 1.06439233898933 5.3580109956989 0.748334015971366 5.5424744286459 0.420024789190988 5.45073427663461 0.588111822856059 5.28484371734279 0.901450517630183 5.7269378615929 0.132014676457603 5.11896696556129 1.23826857430836 5.61659953614309 0.420024789190988 5.78247277652861 0.132014676457603 5.3580109956989 0.901450517630183 5.1735475627519 1.23826857430836 5.45073427663461 0.748334015971366 5.5424744286459 0.588111822856059 5.28484371734279 1.06439233898933 5.11896696556129 1.40646288376147 5.61659953614309 0.588111822856059 5.3580109956989 1.06439233898933 5.45073427663461 0.901450517630183 5.1735475627519 1.40646288376147 5.5424744286459 0.748334015971366 5.7269378615929 0.420024789190988 5.28484371734279 1.23826857430836 5.9114012945399 0.132014676457603 5.78247277652861 0.420024789190988 5.61659953614309 0.748334015971366 5.45073427663461 1.06439233898933 5.5424744286459 0.901450517630183 5.3580109956989 1.23826857430836 5.7269378615929 0.588111822856059 5.28484371734279 1.40646288376147 5.78247277652861 0.588111822856059 5.61659953614309 0.901450517630183 5.5424744286459 1.06439233898933 5.45073427663461 1.23826857430836 5.3580109956989 1.40646288376147 5.7269378615929 0.748334015971366 5.9114012945399 0.420024789190988 6.0958647274869 0.132014676457603 5.78247277652861 0.748334015971366 5.61659953614309 1.06439233898933 5.7269378615929 0.901450517630183 5.5424744286459 1.23826857430836 5.45073427663461 1.40646288376147 5.9114012945399 0.588111822856059 5.78247277652861 0.901450517630183 5.61659953614309 1.23826857430836 5.7269378615929 1.06439233898933 5.5424744286459 1.40646288376147 5.9114012945399 0.748334015971366 6.0958647274869 0.420024789190988 5.78247277652861 1.06439233898933 5.61659953614309 1.40646288376147 5.9114012945399 0.901450517630183 5.7269378615929 1.23826857430836 6.0958647274869 0.588111822856059 5.78247277652861 1.23826857430836 5.9114012945399 1.06439233898933 5.7269378615929 1.40646288376147 6.0958647274869 0.748334015971366 5.78247277652861 1.40646288376147 6.0958647274869 0.901450517630183 5.9114012945399 1.23826857430836 6.0958647274869 1.06439233898933 5.9114012945399 1.40646288376147 6.0958647274869 1.23826857430836 6.0958647274869 1.40646288376147 157 142 152 158 157 152 158 152 153 159 146 157 159 150 146 160 156 151 160 151 154 161 153 155 162 161 155 162 12 13 162 155 12 163 157 158 164 150 159 164 154 150 165 156 160 165 49 50 165 50 156 166 162 13 167 153 161 167 158 153 168 157 163 168 159 157 169 160 154 169 154 164 170 161 162 171 13 14 171 166 13 172 158 167 172 163 158 173 159 168 173 164 159 174 160 169 174 49 165 174 48 49 174 165 160 175 162 166 175 170 162 175 166 171 176 171 14 177 167 161 177 161 170 178 163 172 178 168 163 179 169 164 179 164 173 180 170 175 180 177 170 181 175 171 181 180 175 182 14 15 182 176 14 183 172 167 183 167 177 184 173 168 184 168 178 184 179 173 185 174 169 185 46 47 185 47 48 185 169 179 185 48 174 186 177 180 186 183 177 187 171 176 187 181 171 188 180 181 188 186 180 189 182 15 190 178 172 190 172 183 38 18 2 191 179 184 192 190 183 192 183 186 193 187 176 193 176 182 194 181 187 194 188 181 195 15 16 195 189 15 196 186 188 196 192 186 197 191 184 197 184 178 197 178 190 198 179 191 198 46 185 198 45 46 198 185 179 199 197 190 199 190 192 200 196 188 200 188 194 29 39 30 57 1 3 201 182 189 201 193 182 57 27 28 57 28 1 58 3 4 201 189 195 58 57 3 202 187 193 202 193 201 59 25 26 202 194 187 59 26 27 203 199 192 59 27 57 203 192 196 60 58 4 204 195 16 61 24 25 205 191 197 206 201 195 61 25 59 62 61 59 62 57 58 62 59 57 207 16 17 63 4 5 63 60 4 207 204 16 208 203 196 208 196 200 64 23 24 64 24 61 209 197 199 65 62 58 65 60 63 209 205 197 65 58 60 210 194 202 210 200 194 66 63 5 211 202 201 67 61 62 67 64 61 211 201 206 67 62 65 212 209 199 68 22 23 212 199 203 213 45 198 68 23 64 213 191 205 213 198 191 69 67 65 214 211 206 70 69 65 215 203 208 70 65 63 71 5 6 215 212 203 71 66 5 216 208 200 72 64 67 216 200 210 217 45 213 72 68 64 217 44 45 73 21 22 217 205 209 73 22 68 217 213 205 218 211 214 218 202 211 218 210 202 218 216 210 74 72 67 74 67 69 219 195 204 219 206 195 75 66 71 75 70 63 220 209 212 75 63 66 76 69 70 220 217 209 76 74 69 221 17 18 77 71 6 221 207 17 78 73 68 222 204 207 78 68 72 222 219 204 79 20 21 79 21 73 223 218 214 80 72 74 80 78 72 224 215 208 81 76 70 224 208 216 225 218 223 81 70 75 225 216 218 82 75 71 226 220 212 82 81 75 226 212 215 83 6 7 227 219 222 83 77 6 227 214 206 227 206 219 84 80 74 84 74 76 228 44 217 85 79 73 228 217 220 85 78 80 85 73 78 86 19 20 86 55 56 86 56 19 229 227 222 86 20 79 87 85 80 230 225 223 88 76 81 231 224 216 231 216 225 88 84 76 89 82 71 231 225 230 89 71 77 232 215 224 232 226 215 232 224 231 90 88 81 233 220 226 233 228 220 90 81 82 233 44 228 90 82 89 91 87 80 233 43 44 234 223 214 91 80 84 234 214 227 92 83 7 93 79 85 93 86 79 93 85 87 94 89 77 235 207 221 235 222 207 236 18 38 236 38 37 236 235 221 94 77 83 236 221 18 237 234 227 95 7 8 237 227 229 95 92 7 96 84 88 238 231 230 96 91 84 239 223 234 239 230 223 239 234 237 97 93 87 98 88 90 98 96 88 240 231 238 240 232 231 241 233 226 99 89 94 241 226 232 241 43 233 99 90 89 241 232 240 100 87 91 242 229 222 242 222 235 100 97 87 101 86 93 101 93 97 101 55 86 243 239 237 102 99 94 244 240 238 103 91 96 245 238 230 103 100 91 104 96 98 245 230 239 104 103 96 246 240 244 246 42 43 246 43 241 246 241 240 105 101 97 105 55 101 105 54 55 247 237 229 106 98 90 247 229 242 106 90 99 248 36 35 248 37 36 107 83 92 248 235 236 107 94 83 248 236 37 107 92 95 248 242 235 108 97 100 249 239 243 108 105 97 249 245 239 108 100 103 250 246 244 109 8 9 250 42 246 109 95 8 251 243 237 251 237 247 110 107 95 252 244 238 111 99 102 111 106 99 252 245 249 252 238 245 253 35 34 253 248 35 112 103 104 253 247 242 253 242 248 254 252 249 113 104 98 113 98 106 113 106 111 255 249 243 255 243 251 114 103 112 256 41 42 114 108 103 256 244 252 115 94 107 256 42 250 115 102 94 256 250 244 256 252 254 257 34 33 257 253 34 115 107 110 257 251 247 257 247 253 116 105 108 116 54 105 116 108 114 258 41 256 258 256 254 259 251 257 259 33 32 259 257 33 117 115 110 259 255 251 260 254 249 118 113 111 260 249 255 261 255 259 261 32 31 119 104 113 261 260 255 119 112 104 261 259 32 262 41 258 262 258 254 119 113 118 120 53 54 262 40 41 120 54 116 262 254 260 120 116 114 263 261 31 121 114 112 263 262 260 263 31 30 121 112 119 263 260 261 121 120 114 264 40 262 122 102 115 264 263 30 122 111 102 264 39 40 264 262 263 264 30 39 122 115 117 123 95 109 123 110 95 124 109 9 124 123 109 125 122 117 126 119 118 127 126 118 127 111 122 127 118 111 127 122 125 128 121 119 128 119 126 129 120 121 129 121 128 129 53 120 130 110 123 130 117 110 131 127 125 132 128 126 133 126 127 133 127 131 134 129 128 134 53 129 134 128 132 134 52 53 135 125 117 135 117 130 136 123 124 136 130 123 137 9 10 137 124 9 138 133 131 139 134 132 139 52 134 140 125 135 140 131 125 141 126 133 141 132 126 141 133 138 141 139 132 142 135 130 142 130 136 143 141 138 144 138 131 144 131 140 145 51 52 145 52 139 145 139 141 145 141 143 146 140 135 146 135 142 147 124 137 147 136 124 148 10 11 148 137 10 148 147 137 149 51 145 149 145 143 150 144 140 150 140 146 151 143 138 151 138 144 152 142 136 152 136 147 153 147 148 153 152 147 154 144 150 154 151 144 155 11 12 155 153 148 155 148 11 156 143 151 156 50 51 156 51 149 156 149 143 157 146 142 +4 2 1 0 +80 0 0 80 39.9 0 80 39.9 10 80 0 10 0 0 0 -39.9 10 -39.9 10 0 4 1 2 4 2 3 +4 2 1 0 +0 0 0 80 0 0 80 0 10 0 0 10 0 0 0 80 10 80 10 0 2 1 4 3 2 4 +71 71 1 3.98570065840431e-014 +10 0 20 9.84807753012208 1.7364817766693 20 9.39692620785908 3.42020143325669 20 8.66025403784438 5 20 7.66044443118977 6.4278760968654 20 6.42787609686539 7.66044443118978 20 5 8.66025403784439 20 3.42020143325668 9.39692620785909 20 1.73648177666929 9.84807753012208 20 0 10 20 -1.73648177666931 9.84807753012208 20 -3.42020143325669 9.39692620785908 20 -5 8.66025403784438 20 -6.4278760968654 7.66044443118977 20 -7.66044443118979 6.42787609686538 20 -8.6602540378444 4.99999999999999 20 -9.39692620785908 3.42020143325667 20 -9.84807753012208 1.73648177666929 20 -10 -2.09798541386808e-014 20 -9.84807753012208 -1.73648177666933 20 -9.39692620785908 -3.42020143325671 20 -8.66025403784437 -5.00000000000002 20 -7.66044443118976 -6.42787609686542 20 -6.42787609686536 -7.6604444311898 20 -4.99999999999997 -8.6602540378444 20 -3.42020143325666 -9.39692620785909 20 -1.73648177666928 -9.84807753012208 20 2.8421709430404e-014 -10 20 1.73648177666932 -9.84807753012208 20 3.42020143325671 -9.39692620785908 20 5.00000000000001 -8.66025403784438 20 6.4278760968654 -7.66044443118977 20 7.66044443118979 -6.42787609686538 20 8.6602540378444 -4.99999999999999 20 9.39692620785908 -3.42020143325668 20 9.84807753012208 -1.7364817766693 20 -5 0.01 20 -4.91964794299315 0.902784473993199 20 -4.68117435319868 1.76687412040673 20 -4.29224396800932 2.57449638702954 20 -3.76535733001805 3.29969362969857 20 -3.11744900929365 3.91915741234016 20 -2.36934331236498 4.4129776592837 20 -1.54508497187473 4.76528258147577 20 -0.671166329088265 4.96474880883968 20 0.224324151752583 5.00496533270657 20 1.11260466978159 4.88463956090911 20 1.96512515826963 4.60763886275725 20 2.75448490726052 4.1828662686065 20 3.45531324493433 3.62397431913695 20 4.04508497187474 2.94892626146236 20 4.5048443395121 2.17941869558778 20 4.81981430347928 1.34018422783336 20 4.97987146997619 0.458196544517155 20 4.97987146997619 -0.43819654451718 20 4.81981430347926 -1.32018422783339 20 4.50484433951209 -2.1594186955878 20 4.04508497187473 -2.92892626146238 20 3.45531324493432 -3.60397431913697 20 2.7544849072605 -4.16286626860652 20 1.9651251582696 -4.58763886275726 20 1.11260466978156 -4.86463956090912 20 0.224324151752569 -4.98496533270657 20 -0.671166329088294 -4.94474880883967 20 -1.54508497187474 -4.74528258147576 20 -2.369343312365 -4.39297765928368 20 -3.11744900929368 -3.89915741234014 20 -3.76535733001806 -3.27969362969855 20 -4.29224396800933 -2.55449638702952 20 -4.68117435319868 -1.7468741204067 20 -4.91964794299315 -0.882784473993172 20 10 0 9.84807753012208 1.7364817766693 9.39692620785908 3.42020143325669 8.66025403784439 5 7.66044443118978 6.4278760968654 6.42787609686539 7.66044443118978 4.99999999999998 8.6602540378444 3.42020143325669 9.39692620785908 1.73648177666934 9.84807753012208 -3.5527136788005e-014 10 -1.73648177666931 9.84807753012208 -3.42020143325666 9.39692620785909 -5.00000000000004 8.66025403784436 -6.4278760968654 7.66044443118977 -7.66044443118977 6.4278760968654 -8.66025403784442 4.99999999999995 -9.39692620785909 3.42020143325666 -9.84807753012208 1.73648177666931 -10 -6.92779167366098e-014 -9.84807753012207 -1.73648177666934 -9.39692620785908 -3.4202014332567 -8.6602540378444 -4.99999999999998 -7.66044443118975 -6.42787609686543 -6.42787609686537 -7.6604444311898 -5.00000000000001 -8.66025403784438 -3.42020143325663 -9.3969262078591 -1.73648177666928 -9.84807753012209 -1.77635683940025e-015 -10 1.73648177666938 -9.84807753012207 3.42020143325672 -9.39692620785907 5.00000000000001 -8.66025403784438 6.42787609686538 -7.66044443118979 7.66044443118981 -6.42787609686535 8.6602540378444 -4.99999999999998 9.39692620785908 -3.42020143325669 9.84807753012208 -1.73648177666934 -5 0.0100000000000176 -4.91964794299315 0.902784473993195 -4.68117435319868 1.76687412040672 -4.29224396800933 2.57449638702953 -3.76535733001806 3.29969362969856 -3.11744900929368 3.91915741234014 -2.36934331236496 4.41297765928371 -1.54508497187471 4.76528258147578 -0.671166329088251 4.96474880883968 0.224324151752594 5.00496533270657 1.11260466978159 4.88463956090911 1.96512515826963 4.60763886275725 2.75448490726052 4.18286626860651 3.45531324493432 3.62397431913696 4.04508497187473 2.94892626146237 4.50484433951209 2.1794186955878 4.81981430347928 1.34018422783334 4.9798714699762 0.458196544517138 4.97987146997619 -0.438196544517188 4.81981430347926 -1.32018422783339 4.50484433951209 -2.1594186955878 4.04508497187473 -2.92892626146237 3.45531324493432 -3.60397431913696 2.75448490726051 -4.16286626860651 1.96512515826963 -4.58763886275725 1.11260466978153 -4.86463956090913 0.224324151752544 -4.98496533270658 -0.671166329088303 -4.94474880883967 -1.54508497187476 -4.74528258147576 -2.36934331236501 -4.39297765928368 -3.11744900929368 -3.89915741234014 -3.76535733001806 -3.27969362969856 -4.29224396800933 -2.55449638702953 -4.68117435319868 -1.74687412040672 -4.91964794299315 -0.882784473993194 9 10 46 60 61 31 3 52 53 3 53 2 32 60 31 8 47 48 15 16 40 8 9 47 7 8 48 41 15 40 7 48 49 59 60 32 4 51 52 4 52 3 6 7 49 6 49 50 5 51 4 5 6 50 5 50 51 14 41 42 14 15 41 33 59 32 33 58 59 13 42 43 68 23 24 13 14 42 34 58 33 34 57 58 67 24 25 67 68 24 69 22 23 69 23 68 66 25 26 66 67 25 35 56 57 70 22 69 35 57 34 12 43 44 70 21 22 12 13 43 65 66 26 65 26 27 71 21 70 71 20 21 64 65 27 64 27 28 37 20 71 37 18 19 37 19 20 36 55 56 36 56 35 63 64 28 11 44 45 63 28 29 11 12 44 38 17 18 38 18 37 10 45 46 10 11 45 62 29 30 62 63 29 1 54 55 1 55 36 39 16 17 2 53 54 2 54 1 39 17 38 61 62 30 61 30 31 9 46 47 40 16 39 +82 82 1 0.0380530190825536 +10 0 20 10 0 20 9.84807753012208 1.7364817766693 20 9.39692620785908 3.42020143325669 20 8.66025403784438 5 20 7.66044443118977 6.4278760968654 20 6.42787609686539 7.66044443118978 20 5 8.66025403784439 20 3.42020143325668 9.39692620785909 20 1.73648177666929 9.84807753012208 20 0 10 20 -1.73648177666931 9.84807753012208 20 -3.42020143325669 9.39692620785908 20 -5 8.66025403784438 20 -6.4278760968654 7.66044443118977 20 -7.66044443118979 6.42787609686538 20 -8.6602540378444 4.99999999999999 20 -9.39692620785908 3.42020143325667 20 -9.84807753012208 1.73648177666929 20 -10 -2.09798541386808e-014 20 -9.84807753012208 -1.73648177666933 20 -9.39692620785908 -3.42020143325671 20 -8.66025403784437 -5.00000000000002 20 -7.66044443118976 -6.42787609686542 20 -6.42787609686536 -7.6604444311898 20 -4.99999999999997 -8.6602540378444 20 -3.42020143325666 -9.39692620785909 20 -1.73648177666928 -9.84807753012208 20 2.8421709430404e-014 -10 20 1.73648177666932 -9.84807753012208 20 3.42020143325671 -9.39692620785908 20 5.00000000000001 -8.66025403784438 20 6.4278760968654 -7.66044443118977 20 7.66044443118979 -6.42787609686538 20 8.6602540378444 -4.99999999999999 20 9.39692620785908 -3.42020143325668 20 9.84807753012208 -1.7364817766693 20 10 0 0 10 0 0 9.84807753012208 1.7364817766693 0 9.39692620785908 3.42020143325669 0 8.66025403784438 5 0 7.66044443118977 6.4278760968654 0 6.42787609686539 7.66044443118978 0 5 8.66025403784439 0 3.42020143325668 9.39692620785909 0 1.73648177666929 9.84807753012208 0 0 10 0 -1.73648177666931 9.84807753012208 0 -3.42020143325669 9.39692620785908 0 -5 8.66025403784438 0 -6.4278760968654 7.66044443118977 0 -7.66044443118979 6.42787609686538 0 -8.6602540378444 4.99999999999999 0 -9.39692620785908 3.42020143325667 0 -9.84807753012208 1.73648177666929 0 -10 -2.09798541386808e-014 0 -9.84807753012208 -1.73648177666933 0 -9.39692620785908 -3.42020143325671 0 -8.66025403784437 -5.00000000000002 0 -7.66044443118976 -6.42787609686542 0 -6.42787609686536 -7.6604444311898 0 -4.99999999999997 -8.6602540378444 0 -3.42020143325666 -9.39692620785909 0 -1.73648177666928 -9.84807753012208 0 2.8421709430404e-014 -10 0 1.73648177666932 -9.84807753012208 0 3.42020143325671 -9.39692620785908 0 5.00000000000001 -8.66025403784438 0 6.4278760968654 -7.66044443118977 0 7.66044443118979 -6.42787609686538 0 8.6602540378444 -4.99999999999999 0 9.39692620785908 -3.42020143325668 0 9.84807753012208 -1.7364817766693 0 -9.7979589719309 -2 2 -9.7979589719309 -2 12 -9.7979589719309 2 2 -9.97748344818547 0.6706892284696 2 -9.97748344818547 -0.67068922846957 2 -9.7979589719309 2 12 -9.97748344818547 0.6706892284696 12 -9.97748344818547 -0.67068922846957 12 0 20 6.28318530717959 20 0.174532925199433 20 0.349065850398866 20 0.523598775598299 20 0.698131700797732 20 0.872664625997165 20 1.0471975511966 20 1.22173047639603 20 1.39626340159546 20 1.5707963267949 20 1.74532925199433 20 1.91986217719376 20 2.0943951023932 20 2.26892802759263 20 2.44346095279206 20 2.6179938779915 20 2.79252680319093 20 2.96705972839036 20 3.1415926535898 20 3.31612557878923 20 3.49065850398866 20 3.66519142918809 20 3.83972435438753 20 4.01425727958696 20 4.18879020478639 20 4.36332312998583 20 4.53785605518526 20 4.71238898038469 20 4.88692190558413 20 5.06145483078356 20 5.23598775598299 20 5.41052068118242 20 5.58505360638186 20 5.75958653158129 20 5.93411945678072 20 6.10865238198015 20 6.28318530717959 0 0 0 0.174532925199433 0 0.349065850398866 0 0.523598775598299 0 0.698131700797732 0 0.872664625997165 0 1.0471975511966 0 1.22173047639603 0 1.39626340159546 0 1.5707963267949 0 1.74532925199433 0 1.91986217719376 0 2.0943951023932 0 2.26892802759263 0 2.44346095279206 0 2.6179938779915 0 2.79252680319093 0 2.96705972839036 0 3.1415926535898 0 3.31612557878923 0 3.49065850398866 0 3.66519142918809 0 3.83972435438753 0 4.01425727958696 0 4.18879020478639 0 4.36332312998583 0 4.53785605518526 0 4.71238898038469 0 4.88692190558413 0 5.06145483078356 0 5.23598775598299 0 5.41052068118242 0 5.58505360638186 0 5.75958653158129 0 5.93411945678072 0 6.10865238198015 0 3.34295057438012 2 3.34295057438012 12 2.94023473281543 2 3.07447334666501 2 3.20871196051458 2 2.94023473281543 12 3.07447334666501 12 3.20871196051458 12 37 73 74 2 37 74 19 18 80 2 74 38 19 80 81 58 79 57 75 79 58 3 39 40 3 1 39 59 75 58 4 40 41 4 41 42 20 19 81 4 3 40 20 81 82 76 75 59 5 4 42 21 20 82 21 82 76 6 5 42 6 42 43 22 59 60 22 76 59 22 21 76 23 22 60 7 6 43 7 43 44 7 44 45 24 60 61 8 7 45 8 45 46 24 23 60 25 61 62 9 8 46 9 46 47 25 24 61 10 9 47 26 62 63 26 25 62 11 10 47 11 47 48 27 63 64 11 48 49 27 26 63 12 11 49 12 49 50 28 27 64 28 64 65 13 12 50 29 28 65 13 50 51 29 65 66 30 29 66 14 13 51 14 51 52 30 66 67 15 14 52 15 52 53 31 30 67 16 15 53 31 67 68 31 68 69 16 53 54 32 31 69 33 32 69 33 69 70 17 16 54 17 54 55 77 55 56 34 33 70 78 77 56 34 70 71 18 17 55 57 78 56 35 34 71 35 71 72 35 72 73 80 55 77 80 18 55 36 35 73 79 78 57 37 36 73 +72 70 1 0.020128530023813 +5 0 19 5 0 39 5 0 19 4.91964794299315 0.892784473993199 19 4.68117435319868 1.75687412040673 19 4.29224396800932 2.56449638702954 19 3.76535733001805 3.28969362969857 19 3.11744900929365 3.90915741234016 19 2.36934331236498 4.4029776592837 19 1.54508497187473 4.75528258147577 19 0.671166329088265 4.95474880883968 19 -0.224324151752583 4.99496533270657 19 -1.11260466978159 4.87463956090911 19 -1.96512515826963 4.59763886275725 19 -2.75448490726052 4.1728662686065 19 -3.45531324493433 3.61397431913695 19 -4.04508497187474 2.93892626146236 19 -4.5048443395121 2.16941869558778 19 -4.81981430347928 1.33018422783336 19 -4.97987146997619 0.448196544517155 19 -4.97987146997619 -0.44819654451718 19 -4.81981430347926 -1.33018422783339 19 -4.50484433951209 -2.1694186955878 19 -4.04508497187473 -2.93892626146238 19 -3.45531324493432 -3.61397431913697 19 -2.7544849072605 -4.17286626860652 19 -1.9651251582696 -4.59763886275726 19 -1.11260466978156 -4.87463956090912 19 -0.224324151752569 -4.99496533270657 19 0.671166329088294 -4.95474880883967 19 1.54508497187474 -4.75528258147576 19 2.369343312365 -4.40297765928368 19 3.11744900929368 -3.90915741234014 19 3.76535733001806 -3.28969362969855 19 4.29224396800933 -2.56449638702952 19 4.68117435319868 -1.7568741204067 19 4.91964794299315 -0.892784473993172 19 5 0 39 4.91964794299315 0.892784473993199 39 4.68117435319868 1.75687412040673 39 4.29224396800932 2.56449638702954 39 3.76535733001805 3.28969362969857 39 3.11744900929365 3.90915741234016 39 2.36934331236498 4.4029776592837 39 1.54508497187473 4.75528258147577 39 0.671166329088265 4.95474880883968 39 -0.224324151752583 4.99496533270657 39 -1.11260466978159 4.87463956090911 39 -1.96512515826963 4.59763886275725 39 -2.75448490726052 4.1728662686065 39 -3.45531324493433 3.61397431913695 39 -4.04508497187474 2.93892626146236 39 -4.5048443395121 2.16941869558778 39 -4.81981430347928 1.33018422783336 39 -4.97987146997619 0.448196544517155 39 -4.97987146997619 -0.44819654451718 39 -4.81981430347926 -1.33018422783339 39 -4.50484433951209 -2.1694186955878 39 -4.04508497187473 -2.93892626146238 39 -3.45531324493432 -3.61397431913697 39 -2.7544849072605 -4.17286626860652 39 -1.9651251582696 -4.59763886275726 39 -1.11260466978156 -4.87463956090912 39 -0.224324151752569 -4.99496533270657 39 0.671166329088294 -4.95474880883967 39 1.54508497187474 -4.75528258147576 39 2.369343312365 -4.40297765928368 39 3.11744900929368 -3.90915741234014 39 3.76535733001806 -3.28969362969855 39 4.29224396800933 -2.56449638702952 39 4.68117435319868 -1.7568741204067 39 4.91964794299315 -0.892784473993172 39 6.28318530717959 19 6.28318530717959 39 0 19 0.17951958020513 19 0.35903916041026 19 0.53855874061539 19 0.71807832082052 19 0.89759790102565 19 1.07711748123079 19 1.25663706143592 19 1.43615664164105 19 1.61567622184618 19 1.79519580205131 19 1.97471538225644 19 2.15423496246157 19 2.3337545426667 19 2.51327412287183 19 2.69279370307696 19 2.8723132832821 19 3.05183286348723 19 3.23135244369236 19 3.41087202389749 19 3.59039160410262 19 3.76991118430775 19 3.94943076451288 19 4.12895034471801 19 4.30846992492314 19 4.48798950512828 19 4.66750908533341 19 4.84702866553854 19 5.02654824574367 19 5.2060678259488 19 5.38558740615393 19 5.56510698635906 19 5.74462656656419 19 5.92414614676932 19 6.10366572697445 19 0 39 0.17951958020513 39 0.35903916041026 39 0.53855874061539 39 0.71807832082052 39 0.89759790102565 39 1.07711748123079 39 1.25663706143592 39 1.43615664164105 39 1.61567622184618 39 1.79519580205131 39 1.97471538225644 39 2.15423496246157 39 2.3337545426667 39 2.51327412287183 39 2.69279370307696 39 2.8723132832821 39 3.05183286348723 39 3.23135244369236 39 3.41087202389749 39 3.59039160410262 39 3.76991118430775 39 3.94943076451288 39 4.12895034471801 39 4.30846992492314 39 4.48798950512828 39 4.66750908533341 39 4.84702866553854 39 5.02654824574367 39 5.2060678259488 39 5.38558740615393 39 5.56510698635906 39 5.74462656656419 39 5.92414614676932 39 6.10366572697445 39 58 22 23 58 57 22 59 23 24 59 24 25 59 58 23 39 3 4 39 38 3 60 59 25 40 4 5 40 39 4 61 25 26 61 26 27 61 60 25 41 5 6 41 40 5 62 27 28 62 61 27 42 6 7 42 41 6 63 28 29 63 62 28 43 7 8 43 8 9 43 42 7 64 29 30 64 63 29 44 43 9 44 9 10 65 64 30 66 30 31 45 44 10 66 65 30 67 31 32 46 10 11 46 45 10 67 66 31 68 32 33 47 11 12 68 67 32 47 46 11 69 33 34 48 12 13 48 13 14 69 68 33 48 47 12 70 69 34 70 34 35 49 14 15 49 48 14 71 70 35 71 35 36 50 49 15 72 71 36 51 50 15 72 36 37 51 15 16 72 37 1 51 16 17 2 72 1 52 51 17 53 17 18 53 52 17 54 18 19 54 53 18 55 19 20 55 54 19 56 20 21 56 55 20 57 21 22 57 56 21 +71 71 1 3.98570065840431e-014 +10 0 0 9.84807753012208 1.7364817766693 0 9.39692620785908 3.42020143325669 0 8.66025403784438 5 0 7.66044443118977 6.4278760968654 0 6.42787609686539 7.66044443118978 0 5 8.66025403784439 0 3.42020143325668 9.39692620785909 0 1.73648177666929 9.84807753012208 0 0 10 0 -1.73648177666931 9.84807753012208 0 -3.42020143325669 9.39692620785908 0 -5 8.66025403784438 0 -6.4278760968654 7.66044443118977 0 -7.66044443118979 6.42787609686538 0 -8.6602540378444 4.99999999999999 0 -9.39692620785908 3.42020143325667 0 -9.84807753012208 1.73648177666929 0 -10 -2.09798541386808e-014 0 -9.84807753012208 -1.73648177666933 0 -9.39692620785908 -3.42020143325671 0 -8.66025403784437 -5.00000000000002 0 -7.66044443118976 -6.42787609686542 0 -6.42787609686536 -7.6604444311898 0 -4.99999999999997 -8.6602540378444 0 -3.42020143325666 -9.39692620785909 0 -1.73648177666928 -9.84807753012208 0 2.8421709430404e-014 -10 0 1.73648177666932 -9.84807753012208 0 3.42020143325671 -9.39692620785908 0 5.00000000000001 -8.66025403784438 0 6.4278760968654 -7.66044443118977 0 7.66044443118979 -6.42787609686538 0 8.6602540378444 -4.99999999999999 0 9.39692620785908 -3.42020143325668 0 9.84807753012208 -1.7364817766693 0 -5 0.01 0 -4.91964794299315 0.902784473993199 0 -4.68117435319868 1.76687412040673 0 -4.29224396800932 2.57449638702954 0 -3.76535733001805 3.29969362969857 0 -3.11744900929365 3.91915741234016 0 -2.36934331236498 4.4129776592837 0 -1.54508497187473 4.76528258147577 0 -0.671166329088265 4.96474880883968 0 0.224324151752583 5.00496533270657 0 1.11260466978159 4.88463956090911 0 1.96512515826963 4.60763886275725 0 2.75448490726052 4.1828662686065 0 3.45531324493433 3.62397431913695 0 4.04508497187474 2.94892626146236 0 4.5048443395121 2.17941869558778 0 4.81981430347928 1.34018422783336 0 4.97987146997619 0.458196544517155 0 4.97987146997619 -0.43819654451718 0 4.81981430347926 -1.32018422783339 0 4.50484433951209 -2.1594186955878 0 4.04508497187473 -2.92892626146238 0 3.45531324493432 -3.60397431913697 0 2.7544849072605 -4.16286626860652 0 1.9651251582696 -4.58763886275726 0 1.11260466978156 -4.86463956090912 0 0.224324151752569 -4.98496533270657 0 -0.671166329088294 -4.94474880883967 0 -1.54508497187474 -4.74528258147576 0 -2.369343312365 -4.39297765928368 0 -3.11744900929368 -3.89915741234014 0 -3.76535733001806 -3.27969362969855 0 -4.29224396800933 -2.55449638702952 0 -4.68117435319868 -1.7468741204067 0 -4.91964794299315 -0.882784473993172 0 10 3.37507799486048e-014 9.84807753012208 1.7364817766693 9.39692620785908 3.42020143325669 8.66025403784439 5 7.66044443118978 6.4278760968654 6.42787609686539 7.66044443118978 4.99999999999998 8.6602540378444 3.42020143325669 9.39692620785908 1.73648177666934 9.84807753012208 -3.5527136788005e-014 10 -1.73648177666931 9.84807753012208 -3.42020143325666 9.39692620785909 -5.00000000000004 8.66025403784436 -6.4278760968654 7.66044443118977 -7.66044443118977 6.4278760968654 -8.66025403784442 4.99999999999995 -9.39692620785909 3.42020143325666 -9.84807753012208 1.73648177666931 -10 -6.92779167366098e-014 -9.84807753012207 -1.73648177666934 -9.39692620785908 -3.4202014332567 -8.6602540378444 -4.99999999999998 -7.66044443118975 -6.42787609686543 -6.42787609686537 -7.6604444311898 -5.00000000000001 -8.66025403784438 -3.42020143325663 -9.3969262078591 -1.73648177666928 -9.84807753012209 -1.77635683940025e-015 -10 1.73648177666938 -9.84807753012207 3.42020143325672 -9.39692620785907 5.00000000000001 -8.66025403784438 6.42787609686538 -7.66044443118979 7.66044443118981 -6.42787609686535 8.6602540378444 -4.99999999999998 9.39692620785908 -3.42020143325669 9.84807753012208 -1.73648177666934 -5 0.00999999999998558 -4.91964794299315 0.902784473993195 -4.68117435319868 1.76687412040672 -4.29224396800933 2.57449638702953 -3.76535733001806 3.29969362969856 -3.11744900929368 3.91915741234014 -2.36934331236496 4.41297765928371 -1.54508497187471 4.76528258147578 -0.671166329088251 4.96474880883968 0.224324151752594 5.00496533270657 1.11260466978159 4.88463956090911 1.96512515826963 4.60763886275725 2.75448490726052 4.18286626860651 3.45531324493432 3.62397431913696 4.04508497187473 2.94892626146237 4.50484433951209 2.1794186955878 4.81981430347928 1.34018422783334 4.9798714699762 0.458196544517138 4.97987146997619 -0.438196544517188 4.81981430347926 -1.32018422783339 4.50484433951209 -2.1594186955878 4.04508497187473 -2.92892626146237 3.45531324493432 -3.60397431913696 2.75448490726051 -4.16286626860651 1.96512515826963 -4.58763886275725 1.11260466978153 -4.86463956090913 0.224324151752544 -4.98496533270658 -0.671166329088303 -4.94474880883967 -1.54508497187476 -4.74528258147576 -2.36934331236501 -4.39297765928368 -3.11744900929368 -3.89915741234014 -3.76535733001806 -3.27969362969856 -4.29224396800933 -2.55449638702953 -4.68117435319868 -1.74687412040672 -4.91964794299315 -0.882784473993194 9 10 46 60 61 31 3 52 53 3 53 2 32 60 31 8 47 48 15 16 40 8 9 47 7 8 48 41 15 40 7 48 49 59 60 32 4 51 52 4 52 3 6 7 49 6 49 50 5 51 4 5 6 50 5 50 51 14 41 42 14 15 41 33 59 32 33 58 59 13 42 43 68 23 24 13 14 42 34 58 33 34 57 58 67 24 25 67 68 24 69 22 23 69 23 68 66 25 26 66 67 25 35 56 57 70 22 69 35 57 34 12 43 44 70 21 22 12 13 43 65 66 26 65 26 27 71 21 70 71 20 21 64 65 27 64 27 28 37 20 71 37 18 19 37 19 20 36 55 56 36 56 35 63 64 28 11 44 45 63 28 29 11 12 44 38 17 18 38 18 37 10 45 46 10 11 45 62 29 30 62 63 29 1 54 55 1 55 36 39 16 17 2 53 54 2 54 1 39 17 38 61 62 30 61 30 31 9 46 47 40 16 39 +10 8 1 2.54338191826853e-009 +0.297958971930896 0 0 100.683346173608 0 0 0.297958971930896 0 10 100.916994755742 0 0 100.852280790653 0 0 100.79116271219 0 0 100.683346173608 0 10 100.916994755742 0 10 100.856666286167 0 10 100.795269477699 0 10 0 0.297958971930918 0 100.683346173608 10 0.297958971132715 0 100.916994755742 0 100.852280791032 0 100.791162714491 10 100.683346173608 10 100.916994755742 9.99999999999999 100.856666286225 10 100.795269472233 7 2 1 7 1 3 7 6 2 10 5 6 10 6 7 9 4 5 9 5 10 8 4 9 +8 6 1 1.88724903760207e-014 +0.297958971930896 0 10 100.683346173608 0 10 0.297958971930896 4 10 0.477483448185467 2.6706892284696 10 0.477483448185467 1.32931077153043 10 100.683346173608 4 10 100.52042231986 2.66998057119546 10 100.52042231986 1.33001942880454 10 0.297958971930918 0 100.683346173608 0 0.297958971164642 3.99999999984358 0.477483448185463 2.67068922846957 0.477483448185465 1.32931077153047 100.683346173608 4 100.52042231986 2.66998057119546 100.52042231986 1.33001942880454 2 5 1 8 5 2 7 4 5 7 5 8 6 3 4 6 4 7 +8 6 1 1.88724903760207e-014 +0.297958971930896 0 0 100.683346173608 0 0 0.297958971930896 4 0 0.477483448185467 2.6706892284696 0 0.477483448185467 1.32931077153043 0 100.683346173608 4 0 100.52042231986 2.66998057119546 0 100.52042231986 1.33001942880454 0 0.297958971930918 0 100.683346173608 0 0.297958971164642 3.99999999984358 0.477483448185463 2.67068922846957 0.477483448185465 1.32931077153047 100.683346173608 4 100.52042231986 2.66998057119546 100.52042231986 1.33001942880454 2 5 1 8 5 2 7 4 5 7 5 8 6 3 4 6 4 7 +10 8 1 2.54611746269839e-009 +0.297958971930896 4 0 100.683346173608 4 0 0.297958971930896 4 10 100.916994755742 4 0 100.852280787604 4 0 100.791162707658 4 0 100.683346173608 4 10 100.916994755742 4 10 100.856666286167 4 10 100.7952694777 4 10 0 0.297958971930918 0 100.683346173608 10 0.297958971132715 0 100.916994755742 0 100.852280787978 0 100.791162710159 10 100.683346173608 10 100.916994755742 9.99999999999999 100.856666286225 10 100.795269472234 7 2 1 7 1 3 7 6 2 10 5 6 10 6 7 9 4 5 9 5 10 8 4 9 +157 276 1 0.00642088767454731 +11.3790861415833 -2.72727272727273 -35 10.4169947557416 -2 -35 11.3275497810662 -2.58661211210762 -35 11.2523378545434 -2.45027106017209 -35 11.1539760138288 -2.32408682123498 -35 11.0348945556619 -2.21374314803721 -35 10.8993104942774 -2.12400255230926 -35 10.752751469881 -2.05805125993486 -35 10.6013279633514 -2.01713619022151 -35 10.5083393426384 -2.00418065571879 -35 11.1666783396437 -1.81818181818182 -36 11.376083387981 -2.71665769741501 -35.1512315553533 11.368204081561 -2.688588362981 -35.2868853830022 11.3567544610911 -2.64722788522649 -35.4083320904685 11.3425813614539 -2.59504628852193 -35.5173797157321 11.3215217990642 -2.51536472784982 -35.6399769157324 11.2984200093642 -2.42473620972377 -35.7434369758614 11.2747466356375 -2.32797057527537 -35.8269461461199 11.2490679584064 -2.21795498590457 -35.8975017726019 11.2216735889 -2.09387979552319 -35.9526281723295 11.1959501109997 -1.96992532193557 -35.9858939217979 11.1813188265061 -1.89565292531753 -35.9963435585031 10.183346173608 -2 -35 10.352280790653 -2 -35 10.29116271219 -2 -35 11.1595297625562 -1.81950359055288 -35.879639512941 11.1369444292774 -1.8236796201534 -35.7559477710916 11.0976369176464 -1.83094758162501 -35.6319052904381 11.0410679008715 -1.84140719652678 -35.5109583235891 10.9676191749605 -1.85498787075188 -35.3967692467053 10.8786670163707 -1.87143513069336 -35.2928932188134 10.7765223768647 -1.89032168121914 -35.2024332891353 10.6642365845548 -1.91108333156166 -35.1277395808973 10.5453055416678 -1.93307368917057 -35.0702116989376 10.4233305804863 -1.95562686747121 -35.0302379108437 10.3017005120529 -1.97811627508017 -35.0072697480408 11.3431218798907 -2.61967887591765 -35.1350835942452 11.3358238094435 -2.59323433683398 -35.2558754263886 11.2987084737339 -2.52390762132697 -35.1186235335939 11.3255074244095 -2.55506060209066 -35.3636573617099 11.2915978179306 -2.49911875701424 -35.2242533347978 11.3129079427816 -2.50742818464215 -35.4600935492864 11.24270844557 -2.43125889414843 -35.1021362488169 11.2820093787172 -2.46417601598881 -35.3180755023992 11.2943664892409 -2.4353508775832 -35.5680598594057 11.235347630384 -2.40820115901796 -35.1925865438906 11.2705736697057 -2.42115082082143 -35.4016053153708 11.2824032108719 -2.38754429525848 -35.6244413601875 11.2741745478479 -2.35403892797888 -35.6587399651713 11.1754187561137 -2.34372393970826 -35.0859368708165 11.2260226757358 -2.37654896369357 -35.2724344129525 11.2540360367619 -2.35677512959625 -35.4945633836593 11.2535762566425 -2.26779949958013 -35.7315859672715 11.1673563289629 -2.32252211096009 -35.1615047536506 11.2152676928482 -2.33817427637991 -35.3430420655653 11.2434881018607 -2.31443762128054 -35.5428345576146 11.2362746250732 -2.28490679110186 -35.5720952095415 11.0975977168035 -2.26325008410218 -35.0703538215825 11.1578024847038 -2.29423778491507 -35.2276784501631 11.2312821583271 -2.17030486694023 -35.7928035621237 11.200108282112 -2.28153135857461 -35.4209658746322 11.2183292849082 -2.20935061899423 -35.6339361856669 11.0884038556004 -2.2440754547579 -35.1316648903807 11.1472041188657 -2.26054189796621 -35.2856640269805 11.190609071004 -2.24466905452446 -35.4611070132338 11.2074978483994 -2.06090489294684 -35.8402641409454 11.1841724136151 -2.21911217714837 -35.4853147484665 11.0104531998837 -2.19161076130316 -35.0557085734093 11.0781393080182 -2.21925044451241 -35.1847941287551 11.1990249896163 -2.12458249760522 -35.6854835942227 11.185115357326 -1.95209920734252 -35.8684778899156 11.1327270135247 -2.21159141667689 -35.3489292042566 11.1683263060067 -2.15422464812196 -35.5361088791149 10.9997562864826 -2.17466975364929 -35.103709053619 11.0671733314556 -2.19024207522282 -35.2307897826307 11.1238595152002 -2.1801379159911 -35.3811546203959 11.1784876631031 -2.0301206441478 -35.7249739845468 11.1179247210454 -2.15849336959097 -35.4004463654385 10.915586300339 -2.13028232584633 -35.0422945110282 10.9883504564084 -2.15339903277948 -35.1447445132141 11.1514725397611 -2.08215163710009 -35.5779366426248 11.1591478497493 -1.93675233869377 -35.7479069540954 11.0526667332252 -2.14886472653672 -35.2801961615499 11.1035267733423 -2.10406897511579 -35.4405028670558 10.9031051759466 -2.11579725246049 -35.0782205640235 10.9765368711463 -2.12905785379625 -35.1797052068026 11.0439961507021 -2.12267563501834 -35.3049684309352 11.1336644895964 -2.00258070767013 -35.609405255872 11.0382731343449 -2.10481665236682 -35.3196427039102 10.8148950337685 -2.08034468532155 -35.0303576808736 10.8902154834735 -2.09816261202536 -35.1084005602789 11.0884716624713 -2.04439372163519 -35.472896139416 11.1169246026559 -1.92459117463729 -35.6270165439521 10.9613337241127 -2.09504565731925 -35.2164643851547 11.0246255011755 -2.06044725898063 -35.3496457139873 10.8004619624927 -2.0685292068997 -35.0556841277461 10.8771594624653 -2.07842583927677 -35.1335680143685 10.9524447320651 -2.07389444815512 -35.2344868430826 11.0727495114587 -1.97931571257283 -35.4965944257736 10.9466532122573 -2.05962713583902 -35.2449988106646 10.7104499432783 -2.04241943980496 -35.0200820189172 10.785860896805 -2.05457897209781 -35.0764791797506 11.01065470628 -2.01259110283541 -35.373249087582 11.0580456490323 -1.91625119663478 -35.5090717540602 10.8606947177674 -2.05147156725039 -35.1592539039113 10.9330714311988 -2.02469989970313 -35.2659957962536 10.6940209356732 -2.03345258885647 -35.0364556929205 10.7712837184117 -2.03932644449723 -35.0933220350397 10.8512273864343 -2.03504767671002 -35.1714400512147 10.9962982055324 -1.9612373976994 -35.3897560060181 10.8451212422309 -2.02411180899929 -35.1783809905999 10.604358342226 -2.01665273465747 -35.0115808746672 10.677609425248 -2.02318146508269 -35.0494970323097 10.9194698645277 -1.98780494207532 -35.2818020417704 10.9829874519824 -1.91222692219568 -35.3975358165579 10.7531387437949 -2.01901490635139 -35.1097888159828 10.8309940615971 -1.99781845495409 -35.1917332302763 10.5860099011742 -2.01065575396769 -35.0207458356225 10.6613647254503 -2.01222256968139 -35.0596341952752 10.7428170269686 -2.0069253345894 -35.1172115160685 10.9057441650978 -1.94904327119078 -35.2920135300483 10.7362038810423 -1.99899857890884 -35.1212746769039 10.5678157234082 -2.00398869324294 -35.02774615196 10.8171088697319 -1.97076912189218 -35.201033242762 10.4878409739228 -2.00195846367912 -35.0043095739621 10.893160201041 -1.91280982846968 -35.2957724960441 10.6412919594301 -1.99802708324062 -35.0689119176565 10.7210422721511 -1.98035690170229 -35.128574816035 10.5498894708965 -1.99705443856871 -35.0328627991576 10.6299402102742 -1.98980272418612 -35.072739090571 10.4675896425345 -1.99928812133207 -35.0075704972545 10.803329727841 -1.94313979330491 -35.2061138527541 10.6226930747685 -1.98450871766485 -35.07467661013 10.7063357923475 -1.96182062493069 -35.1328740914966 10.4475949294961 -1.99641466397714 -35.0098956608227 10.7908424129523 -1.9180474709875 -35.2067293293502 10.5278147834161 -1.98834131368012 -35.0370444181195 10.6061603549834 -1.97239580228127 -35.0776449965085 10.5153605232654 -1.98344865975136 -35.0384701904471 10.6919257780638 -1.94360004878428 -35.1341762150307 10.4279381093383 -1.99351316000697 -35.0114087070681 10.5074202228497 -1.98036884572944 -35.0390472518693 10.5902440958986 -1.96087966503069 -35.0785591704945 10.6789936100368 -1.92773362105097 -35.1326603286352 10.4037550991834 -1.99000094394134 -35.0123404567305 10.4893398434078 -1.97356382234319 -35.0394225387252 10.5747700727856 -1.95016463342454 -35.0775226635528 10.3901122332001 -1.98810784206295 -35.0124549568113 10.3814125172402 -1.98695253434043 -35.012382546694 10.471985410706 -1.96748154438168 -35.0385684369006 10.5609762364464 -1.94143222662377 -35.0749411150951 10.3615962108975 -1.9845283941368 -35.0118137238481 10.4551725772822 -1.96228432998726 -35.0366173086914 10.3425690977443 -1.98257417232379 -35.0107664029162 10.4402398716643 -1.95852984064952 -35.0340071489462 10.3241402073701 -1.98117261765041 -35.0093283109588 10.3077902217176 -1.98046361070942 -35.0077693424862 0 0 1 0 0.1215 0 0.243 0 0.3645 0 0.486 0 0.6075 0 0.729 0 0.8505 0 0.92525 0 0 1 0 0.0833333333333333 0 0.166666666666667 0 0.25 0 0.333333333333333 0 0.438693732671857 0 0.539943732671857 0 0.633693732671857 0 0.727443732671857 0 0.821193732671857 0 0.905568732671857 0 0.952784366335929 1 1 1 0.25 1 0.5 0.0833333333333333 1 0.166666666666667 1 0.25 1 0.333333333333333 1 0.416666666666667 1 0.5 1 0.583333333333333 1 0.666666666666667 1 0.75 1 0.833333333333334 1 0.916666666666667 1 0.0833333333333333 0.0833333333333333 0.0833333333333333 0.166666666666667 0.166666666666667 0.0833333333333333 0.0833333333333333 0.25 0.166666666666667 0.166666666666667 0.0833333333333333 0.333333333333333 0.25 0.0833333333333333 0.166666666666667 0.25 0.0833333333333333 0.438693732671857 0.25 0.166666666666667 0.166666666666667 0.333333333333333 0.0833333333333333 0.5 0.0833333333333333 0.539943732671857 0.333333333333333 0.0833333333333333 0.25 0.25 0.166666666666667 0.438693732671857 0.0833333333333333 0.633693732671857 0.333333333333333 0.166666666666667 0.25 0.333333333333333 0.166666666666667 0.5 0.166666666666667 0.539943732671857 0.416666666666667 0.0833333333333333 0.333333333333333 0.25 0.0833333333333333 0.727443732671857 0.25 0.438693732671857 0.166666666666667 0.633693732671857 0.416666666666667 0.166666666666667 0.333333333333333 0.333333333333333 0.25 0.5 0.0833333333333333 0.821193732671857 0.25 0.539943732671857 0.5 0.0833333333333333 0.416666666666667 0.25 0.166666666666667 0.727443732671857 0.0833333333333333 0.905568732671857 0.333333333333333 0.438693732671857 0.25 0.633693732671857 0.5 0.166666666666667 0.416666666666667 0.333333333333333 0.333333333333333 0.5 0.166666666666667 0.821193732671857 0.333333333333333 0.539943732671857 0.583333333333333 0.0833333333333333 0.5 0.25 0.25 0.727443732671857 0.166666666666667 0.905568732671857 0.416666666666667 0.438693732671857 0.333333333333333 0.633693732671857 0.583333333333333 0.166666666666667 0.5 0.333333333333333 0.416666666666667 0.5 0.25 0.821193732671857 0.416666666666667 0.539943732671857 0.666666666666667 0.0833333333333333 0.583333333333333 0.25 0.333333333333333 0.727443732671857 0.25 0.905568732671857 0.5 0.438693732671857 0.416666666666667 0.633693732671857 0.666666666666667 0.166666666666667 0.583333333333333 0.333333333333333 0.5 0.5 0.333333333333333 0.821193732671857 0.5 0.539943732671857 0.75 0.0833333333333333 0.666666666666667 0.25 0.416666666666667 0.727443732671857 0.333333333333333 0.905568732671857 0.583333333333333 0.438693732671857 0.5 0.633693732671857 0.75 0.166666666666667 0.666666666666667 0.333333333333333 0.583333333333333 0.5 0.416666666666667 0.821193732671857 0.583333333333333 0.539943732671857 0.833333333333334 0.0833333333333333 0.75 0.25 0.5 0.727443732671857 0.416666666666667 0.905568732671857 0.666666666666667 0.438693732671857 0.583333333333333 0.633693732671857 0.833333333333334 0.166666666666667 0.75 0.333333333333333 0.666666666666667 0.5 0.5 0.821193732671857 0.666666666666667 0.539943732671857 0.833333333333334 0.25 0.583333333333333 0.727443732671857 0.92525 0.0833333333333333 0.5 0.905568732671857 0.75 0.438693732671857 0.666666666666667 0.633693732671857 0.833333333333334 0.333333333333333 0.75 0.5 0.92525 0.166666666666667 0.583333333333333 0.821193732671857 0.75 0.539943732671857 0.666666666666667 0.727443732671857 0.92525 0.25 0.583333333333333 0.905568732671857 0.833333333333334 0.438693732671857 0.75 0.633693732671857 0.833333333333334 0.5 0.666666666666667 0.821193732671857 0.92525 0.333333333333333 0.833333333333334 0.539943732671857 0.75 0.727443732671857 0.666666666666667 0.905568732671857 0.92525 0.438693732671857 0.833333333333334 0.633693732671857 0.75 0.821193732671857 0.92525 0.5 0.92525 0.539943732671857 0.833333333333334 0.727443732671857 0.75 0.905568732671857 0.92525 0.633693732671857 0.833333333333334 0.821193732671857 0.92525 0.727443732671857 0.833333333333334 0.905568732671857 0.92525 0.821193732671857 0.92525 0.905568732671857 145 141 25 145 139 137 146 138 133 146 133 142 147 140 134 147 134 143 148 142 139 148 145 25 148 139 145 149 146 142 149 148 25 149 142 148 150 143 138 150 138 146 151 34 33 151 33 144 151 144 140 151 140 147 152 146 149 152 150 146 152 149 25 153 143 150 153 147 143 154 152 25 154 153 150 154 150 152 154 25 23 155 147 153 155 35 34 155 36 35 155 151 147 155 34 151 156 153 154 156 154 23 156 155 153 157 156 23 157 155 156 157 23 36 157 36 155 26 11 22 37 1 3 37 12 1 37 13 12 38 13 37 39 3 4 39 37 3 39 38 37 40 14 13 40 13 38 41 40 38 41 38 39 42 15 14 42 14 40 43 39 4 44 40 41 44 42 40 45 16 15 45 15 42 46 41 39 46 39 43 47 42 44 47 45 42 48 16 45 48 17 16 49 18 17 49 17 48 50 4 5 50 43 4 51 41 46 51 44 41 52 48 45 52 45 47 53 18 49 53 19 18 54 46 43 54 43 50 55 44 51 55 47 44 56 48 52 56 49 48 57 53 49 57 49 56 58 5 6 58 50 5 59 46 54 59 51 46 60 20 19 60 19 53 61 47 55 61 52 47 62 60 53 62 53 57 63 54 50 63 50 58 64 55 51 64 51 59 65 56 52 65 52 61 66 20 60 67 57 56 67 56 65 68 58 6 69 59 54 69 54 63 70 60 62 70 66 60 71 21 20 71 22 21 71 20 66 71 26 22 72 61 55 72 55 64 73 62 57 73 57 67 74 63 58 74 58 68 75 59 69 75 64 59 75 72 64 76 61 72 76 65 61 76 67 65 77 66 70 77 71 66 78 67 76 79 6 7 79 68 6 80 69 63 80 63 74 81 62 73 81 70 62 82 27 26 82 26 71 82 71 77 83 76 72 83 72 75 84 73 67 84 67 78 85 74 68 85 68 79 85 80 74 86 75 69 86 69 80 87 76 83 88 70 81 88 77 70 89 76 87 89 78 76 90 7 8 90 85 79 90 79 7 91 80 85 92 73 84 92 81 73 93 77 88 93 28 27 93 82 77 93 27 82 94 83 75 94 75 86 95 78 89 95 84 78 96 85 90 96 91 85 97 80 91 97 94 86 97 86 80 98 87 83 98 83 94 99 88 81 99 93 88 99 81 92 100 89 87 100 87 98 101 8 9 101 90 8 102 91 96 102 97 91 103 92 84 103 84 95 104 29 28 104 93 99 104 28 93 105 94 97 106 95 89 106 89 100 107 96 90 107 90 101 108 97 102 108 105 97 109 98 94 109 100 98 109 94 105 110 99 92 110 92 103 110 104 99 111 100 109 112 101 9 113 96 107 113 102 96 114 95 106 114 103 95 115 30 29 115 29 104 115 104 110 116 105 108 116 109 105 117 106 100 117 100 111 118 107 101 118 101 112 119 108 102 119 102 113 120 109 116 120 111 109 121 103 114 121 110 103 122 117 111 122 111 120 123 113 107 123 107 118 124 106 117 124 114 106 125 9 10 125 10 2 125 118 112 125 2 24 125 112 9 126 115 110 126 30 115 126 31 30 126 110 121 127 108 119 127 116 108 128 124 117 128 117 122 129 119 113 129 113 123 130 116 127 130 120 116 131 123 118 131 125 24 131 118 125 132 114 124 132 121 114 133 122 120 133 120 130 134 132 124 134 124 128 135 129 123 135 131 24 135 123 131 136 32 31 136 31 126 136 121 132 136 126 121 137 119 129 137 127 119 138 122 133 138 128 122 139 130 127 139 127 137 140 132 134 140 136 132 141 24 25 141 137 129 141 135 24 141 129 135 142 130 139 142 133 130 143 128 138 143 134 128 144 33 32 144 32 136 144 136 140 145 137 141 +20 18 1 0.00282194806965195 +11.3790861415833 -2.72727272727273 -35 10.4169947557416 -2 -35 11.3275497810662 -2.58661211210762 -35 11.2523378545434 -2.45027106017209 -35 11.1539760138288 -2.32408682123498 -35 11.0348945556619 -2.21374314803721 -35 10.8993104942774 -2.12400255230926 -35 10.752751469881 -2.05805125993486 -35 10.6013279633514 -2.01713619022151 -35 10.5083393426384 -2.00418065571879 -35 11.3790861415833 -2.72727272727273 -25 10.4169947557416 -2 -25 11.3203682998403 -2.57114543278327 -25 11.2324249041812 -2.42114451456702 -25 11.1291813068163 -2.2980097461728 -25 11.0191072607872 -2.2015887455279 -25 10.8961507129639 -2.12227021888373 -25 10.7644043820812 -2.06228653015613 -25 10.6283329484944 -2.02258700219202 -25 10.521700267738 -2.00549672913682 -25 7.7715611723761e-016 0 1.2945696960313 0 0.149945051208271 0 0.305813013963564 0 0.46597649372833 0 0.628500958297018 0 0.791273295321181 0 0.9521612862882 0 1.10917627482657 0 1.20309751057492 0 8.88178419700124e-016 10 1.2945696960313 10 0.166997857526828 9.99999999999999 0.341097732202757 9.99999999999999 0.501961660454302 10 0.648425331919714 10 0.794876796117926 9.99999999999999 0.939762494066026 9.99999999999999 1.08162583655726 10 1.18967182210662 10 11 1 3 13 3 4 13 11 3 14 4 5 14 13 4 15 5 6 15 14 5 16 6 7 16 15 6 17 16 7 18 7 8 18 17 7 19 8 9 19 18 8 20 9 10 20 19 9 12 10 2 12 20 10 +156 275 1 0.00565910459333111 +11.3790861415833 -2.72727272727273 -25 10.4169947557416 -2 -25 11.3203682998403 -2.57114543278327 -25 11.2324249041812 -2.42114451456702 -25 11.1291813068163 -2.2980097461728 -25 11.0191072607872 -2.2015887455279 -25 10.8961507129639 -2.12227021888373 -25 10.7644043820812 -2.06228653015613 -25 10.6283329484944 -2.02258700219202 -25 10.521700267738 -2.00549672913682 -25 11.1666783396437 -1.81818181818182 -24 11.3766109722306 -2.7185260013919 -24.8626732871527 11.3697799393449 -2.69422745575697 -24.7344871021217 11.3593778691828 -2.65676587805441 -24.6158036617798 11.3421609387659 -2.59348118708817 -24.4797961890798 11.3192965439062 -2.50678690653282 -24.3488831518008 11.2952987002283 -2.41221323328645 -24.2443969735865 11.2683568727611 -2.30111321842551 -24.1536887739455 11.2418990478841 -2.18619894068939 -24.0861207531316 11.2166763300739 -2.070405266959 -24.0394873599437 11.1917310146827 -1.94880976794266 -24.0104333298787 10.183346173608 -2 -25 10.356666286167 -2 -25 10.295269477699 -2 -25 11.1595297625562 -1.81950359055288 -24.120360487059 11.1369444292774 -1.8236796201534 -24.2440522289084 11.0976369176464 -1.83094758162501 -24.3680947095619 11.0410679008715 -1.84140719652678 -24.4890416764109 10.9676191749605 -1.85498787075188 -24.6032307532947 10.8786670163707 -1.87143513069336 -24.7071067811865 10.7765223768647 -1.89032168121914 -24.7975667108647 10.6642365845548 -1.91108333156166 -24.8722604191027 10.5453055416678 -1.93307368917057 -24.9297883010624 10.4233305804863 -1.95562686747121 -24.9697620891563 10.3017005120529 -1.97811627508017 -24.9927302519592 11.3436283217324 -2.62148504264505 -24.8773190865416 11.3372618728915 -2.59848989684659 -24.7631292111024 11.2992309278111 -2.52564944634472 -24.8922475147339 11.3278563874017 -2.56382045988033 -24.6577327250458 11.2929640876285 -2.50398473685863 -24.792334425453 11.3125360190888 -2.50600571668668 -24.537413734263 11.243287403418 -2.43292828256295 -24.9072011011207 11.2841686483927 -2.47214746675451 -24.7005078097933 11.2924160059948 -2.42762788381063 -24.4221560155279 11.2367164403927 -2.41266618138607 -24.8215817997545 11.2858993807888 -2.40162448514672 -24.3911784761625 11.2702390383289 -2.41987278755161 -24.5962414443962 11.1760952518351 -2.34530633463101 -24.9218951093206 11.228090480454 -2.38372097212118 -24.7433391158723 11.2714544740714 -2.34284795833749 -24.3306262868386 11.2523107568153 -2.34991820000105 -24.4970455080227 11.1688053065163 -2.32656883444613 -24.8502935489596 11.246562611049 -2.32688107268688 -24.4705178685317 11.2480259693261 -2.24394991501343 -24.251576096504 11.21495695749 -2.3370416306457 -24.655144648202 11.0984100726203 -2.26472469252584 -24.9360328166347 11.1598839489232 -2.30059824363549 -24.7853476843586 11.2338964791907 -2.27506688299523 -24.4188503584297 11.225060261624 -2.14225377582096 -24.1930493606069 11.1985466825785 -2.27554212995091 -24.5720390800268 11.0900078415269 -2.24768109475496 -24.8778670228018 11.1933664860358 -2.25547489954787 -24.5499719892092 11.2135146242982 -2.18855638970244 -24.3518395290834 11.1469025794564 -2.25955469374797 -24.7128544570648 11.2031547877635 -2.04026386393762 -24.1529988488605 11.0105039072723 -2.1922703765003 -24.9494539930416 11.0803382436343 -2.22478700356709 -24.8256155951229 11.1820596740296 -2.2106224006728 -24.5072153220569 11.1936498500823 -2.10030072928593 -24.302684729169 11.1814365982074 -1.93360894974967 -24.1284687155505 11.1312596006087 -2.20646104689217 -24.6454355510001 11.0006349152682 -2.17714712921276 -24.9039658568804 11.126419490092 -2.18932850241262 -24.6277116427287 11.1641075830405 -2.13647925585966 -24.4522925657343 11.0668661333353 -2.18939932747822 -24.7680431638135 11.174737977743 -2.01236603821778 -24.2694856076703 10.9167584405264 -2.13146053067691 -24.9615026385363 11.1159884583955 -2.15133067627773 -24.5936246933229 10.9898009681915 -2.1574735061887 -24.8636138772685 11.1468034234259 -2.06162815550194 -24.412560981422 11.1559636567578 -1.92093847719369 -24.2496903886031 11.0512214786661 -2.14457304214013 -24.7154504894607 10.9052015797259 -2.11844095121864 -24.9272959595976 11.0464840766267 -2.13029818211165 -24.7018166198347 11.0997368724697 -2.08930538953109 -24.5504486762311 10.9752369343358 -2.1277869364535 -24.8199161935245 11.1304192063771 -1.98770237162334 -24.3862596526343 10.8162713670575 -2.08133057033218 -24.9723469007829 10.8929125127077 -2.10202505803163 -24.8974291462276 11.0364189423386 -2.09893444874027 -24.6758739382953 11.0843354044057 -2.02753242887911 -24.5198598545375 11.1141656476216 -1.91144234137818 -24.3712371499746 10.9588581286918 -2.09107031088085 -24.7809758277251 10.8028621635148 -2.07065464697892 -24.9481699970303 10.9539945388748 -2.0795591696023 -24.7710825685252 11.0210827898113 -2.04853438801958 -24.6436862811693 10.8768019802182 -2.07786362479482 -24.8658075055515 11.0698963003819 -1.96723185862433 -24.5002356183503 10.7120313666367 -2.04318562155422 -24.981689816058 10.7888964797856 -2.0576052284532 -24.9274942692613 10.9437992418046 -2.05455392825409 -24.7525529742219 11.006858917382 -1.99920601189062 -24.6216028709269 11.0556225668292 -1.9056847461785 -24.489812185099 10.8590981048894 -2.04874772103532 -24.8385663005662 10.6967362749881 -2.03504307812337 -24.9660068057401 10.8539168641312 -2.03977967153423 -24.8318430613634 10.9286030416915 -2.01514828738573 -24.7302841410705 10.770887070832 -2.03889680909976 -24.9062676182583 10.993709821141 -1.9517905843204 -24.6081459414031 10.6061344804798 -2.01717662906593 -24.9894282714968 10.6810082081912 -2.0253876537508 -24.952957723325 10.8431665583873 -2.02055523024157 -24.8195461203681 10.9148281266603 -1.9774386661483 -24.7157937087284 10.9807974653975 -1.90408497993341 -24.6019175900301 10.7513923202658 -2.01699475031142 -24.8888607387455 10.5890313681307 -2.01170506613083 -24.9806107617713 10.745740872988 -2.01038598679751 -24.8847558472256 10.8274213508031 -1.99096216944082 -24.805499220325 10.6609242872239 -2.01191760186779 -24.9401254740001 10.902300971656 -1.94193293600483 -24.7077645158535 10.5005857325634 -2.00300800088362 -24.9955241604737 10.5715755308711 -2.00540622984095 -24.9735431182807 10.7340943894465 -1.99644224457256 -24.8775412644135 10.8134237360195 -1.96343245499238 -24.7971823404712 10.8901116310934 -1.90691261735639 -24.7051373942808 10.6393678658225 -1.99664066878389 -24.9303700432232 10.4818495996229 -2.00027637365419 -24.9919208049462 10.6331509055691 -1.9921388970739 -24.928244268654 10.7172396063271 -1.97559552387628 -24.8700425363745 10.5494043022416 -1.99686399031374 -24.9670211643997 10.8008853024086 -1.93820747555881 -24.7934551976603 10.4628066300704 -1.99722167608509 -24.9891829194728 10.6203857860487 -1.98281894753584 -24.9247879876538 10.7024649076357 -1.95690998136083 -24.8664804578075 10.7888018673672 -1.91399826191285 -24.7935528501981 10.5257023845635 -1.98750794652813 -24.9626680782875 10.5188809902848 -1.98482566443459 -24.9618676185107 10.6020330553058 -1.96938415559591 -24.9219313943163 10.4386800318584 -1.99319917225752 -24.9869038351805 10.6893862590657 -1.94042764663899 -24.8659154251417 10.5048940516791 -1.97939839299409 -24.9608222987258 10.5860756420802 -1.95792816127595 -24.9215288212637 10.6768882380723 -1.92523988303985 -24.867835704234 10.4129166975306 -1.98896026108294 -24.9857536070119 10.4055029833723 -1.98778367819339 -24.9856452558768 10.4848342757768 -1.97193224132284 -24.9606850974273 10.5720550198335 -1.94836960666038 -24.9228618068067 10.39029970238 -1.98546958623443 -24.9857148617078 10.4674501274142 -1.9659986498226 -24.961850043313 10.5587372462683 -1.94012069868684 -24.9256231217884 10.3684891512469 -1.98247873005349 -24.9864691054474 10.4522292778977 -1.96147046583047 -24.963834805002 10.3495857127979 -1.98034507666505 -24.9877101653258 10.4378207149283 -1.95801825171422 -24.9664855177993 10.3330428894095 -1.97897070149236 -24.9891984660279 10.3174016807974 -1.9782215443312 -24.9908820098694 0 0 1 0 0.135 0 0.27 0 0.3915 0 0.50085 0 0.6102 0 0.71955 0 0.8289 0 0.91445 0 0 1 0 0.0833333333333333 0 0.166666666666667 0 0.25 0 0.354653170111916 0 0.467153170111916 0 0.568403170111917 0 0.669653170111917 0 0.760778170111917 0 0.842790670111917 0 0.921395335055958 1 1 1 0.25 1 0.5 0.0833333333333333 1 0.166666666666667 1 0.25 1 0.333333333333333 1 0.416666666666667 1 0.5 1 0.583333333333333 1 0.666666666666667 1 0.75 1 0.833333333333334 1 0.916666666666667 1 0.0833333333333333 0.0833333333333333 0.0833333333333333 0.166666666666667 0.166666666666667 0.0833333333333333 0.0833333333333333 0.25 0.166666666666667 0.166666666666667 0.0833333333333333 0.354653170111916 0.25 0.0833333333333333 0.166666666666667 0.25 0.0833333333333333 0.467153170111916 0.25 0.166666666666667 0.0833333333333333 0.5 0.166666666666667 0.354653170111916 0.333333333333333 0.0833333333333333 0.25 0.25 0.0833333333333333 0.568403170111917 0.166666666666667 0.467153170111916 0.333333333333333 0.166666666666667 0.166666666666667 0.5 0.0833333333333333 0.669653170111917 0.25 0.354653170111916 0.416666666666667 0.0833333333333333 0.333333333333333 0.25 0.166666666666667 0.568403170111917 0.0833333333333333 0.760778170111917 0.25 0.467153170111916 0.416666666666667 0.166666666666667 0.25 0.5 0.166666666666667 0.669653170111917 0.333333333333333 0.354653170111916 0.0833333333333333 0.842790670111917 0.50085 0.0833333333333333 0.416666666666667 0.25 0.25 0.568403170111917 0.166666666666667 0.760778170111917 0.0833333333333333 0.921395335055958 0.333333333333333 0.467153170111916 0.50085 0.166666666666667 0.333333333333333 0.5 0.25 0.669653170111917 0.416666666666667 0.354653170111916 0.166666666666667 0.842790670111917 0.583333333333333 0.0833333333333333 0.333333333333333 0.568403170111917 0.50085 0.25 0.25 0.760778170111917 0.166666666666667 0.921395335055958 0.416666666666667 0.467153170111916 0.583333333333333 0.166666666666667 0.416666666666667 0.5 0.333333333333333 0.669653170111917 0.50085 0.354653170111916 0.25 0.842790670111917 0.666666666666667 0.0833333333333333 0.583333333333333 0.25 0.416666666666667 0.568403170111917 0.333333333333333 0.760778170111917 0.25 0.921395335055958 0.50085 0.467153170111916 0.666666666666667 0.166666666666667 0.50085 0.5 0.416666666666667 0.669653170111917 0.583333333333333 0.354653170111916 0.333333333333333 0.842790670111917 0.75 0.0833333333333333 0.666666666666667 0.25 0.50085 0.568403170111917 0.416666666666667 0.760778170111917 0.333333333333333 0.921395335055958 0.583333333333333 0.467153170111916 0.75 0.166666666666667 0.583333333333333 0.5 0.50085 0.669653170111917 0.666666666666667 0.354653170111916 0.416666666666667 0.842790670111917 0.833333333333334 0.0833333333333333 0.75 0.25 0.583333333333333 0.568403170111917 0.50085 0.760778170111917 0.416666666666667 0.921395335055958 0.666666666666667 0.467153170111916 0.833333333333334 0.166666666666667 0.666666666666667 0.5 0.583333333333333 0.669653170111917 0.75 0.354653170111916 0.50085 0.842790670111917 0.916666666666667 0.0833333333333333 0.833333333333334 0.25 0.666666666666667 0.568403170111917 0.583333333333333 0.760778170111917 0.50085 0.921395335055958 0.75 0.467153170111916 0.916666666666667 0.166666666666667 0.75 0.5 0.666666666666667 0.669653170111917 0.833333333333334 0.354653170111916 0.583333333333333 0.842790670111917 0.916666666666667 0.25 0.75 0.568403170111917 0.666666666666667 0.760778170111917 0.583333333333333 0.921395335055958 0.833333333333334 0.467153170111916 0.833333333333334 0.5 0.75 0.669653170111917 0.916666666666667 0.354653170111916 0.666666666666667 0.842790670111917 0.833333333333334 0.568403170111917 0.75 0.760778170111917 0.666666666666667 0.921395335055958 0.916666666666667 0.467153170111916 0.916666666666667 0.5 0.833333333333334 0.669653170111917 0.75 0.842790670111917 0.916666666666667 0.568403170111917 0.833333333333334 0.760778170111917 0.75 0.921395335055958 0.916666666666667 0.669653170111917 0.833333333333334 0.842790670111917 0.916666666666667 0.760778170111917 0.833333333333334 0.921395335055958 0.916666666666667 0.842790670111917 0.916666666666667 0.921395335055958 145 137 136 145 136 144 145 144 24 146 138 133 146 133 141 147 140 134 147 134 142 148 141 137 148 145 24 148 137 145 149 142 138 149 138 146 150 143 140 150 33 143 150 140 147 151 141 148 151 148 24 151 146 141 152 142 149 152 147 142 153 146 151 153 24 22 153 149 146 153 151 24 154 150 147 154 34 33 154 35 34 154 147 152 154 33 150 155 152 149 155 149 153 155 153 22 156 152 155 156 35 154 156 155 22 156 22 35 156 154 152 36 1 3 36 12 1 37 13 12 37 12 36 38 3 4 38 36 3 38 37 36 39 14 13 39 15 14 39 13 37 40 39 37 40 37 38 41 16 15 41 15 39 42 40 38 42 38 4 43 39 40 43 41 39 44 16 41 45 40 42 45 43 40 46 16 44 46 17 16 47 44 41 47 41 43 48 4 5 48 42 4 48 45 42 49 47 43 49 43 45 50 17 46 51 44 47 51 46 44 52 45 48 53 50 46 53 46 51 54 18 17 54 17 50 55 51 47 55 47 49 56 5 6 56 48 5 57 49 45 57 45 52 58 54 50 58 50 53 59 18 54 59 19 18 60 53 51 60 51 55 61 52 48 61 48 56 62 58 53 62 53 60 63 59 54 63 54 58 64 49 57 64 55 49 65 20 19 65 19 59 66 56 6 67 57 52 67 52 61 68 58 62 68 63 58 69 59 63 69 65 59 70 21 20 70 11 21 70 25 11 70 20 65 71 55 64 71 60 55 71 62 60 72 61 56 72 56 66 73 62 71 74 63 68 74 69 63 75 64 57 75 57 67 76 65 69 76 70 65 77 6 7 77 66 6 78 68 62 78 62 73 78 74 68 79 67 61 79 61 72 80 69 74 80 76 69 81 26 25 81 27 26 81 25 70 81 70 76 82 71 64 82 64 75 83 66 77 83 72 66 84 71 82 84 73 71 85 74 78 86 67 79 86 75 67 87 81 76 87 76 80 88 7 8 88 77 7 89 72 83 89 79 72 90 73 84 90 78 73 91 74 85 91 87 80 91 80 74 92 27 81 92 81 87 93 82 75 93 75 86 94 77 88 94 83 77 95 82 93 95 84 82 96 78 90 96 85 78 97 79 89 97 86 79 98 87 91 99 8 9 99 88 8 100 89 83 100 83 94 101 84 95 101 90 84 102 85 96 102 91 85 103 28 27 103 92 87 103 87 98 103 27 92 104 93 86 104 86 97 105 94 88 105 88 99 106 95 93 106 93 104 107 96 90 107 90 101 108 97 89 108 89 100 109 91 102 109 98 91 110 9 10 110 99 9 111 100 94 111 94 105 112 95 106 112 101 95 113 102 96 113 96 107 114 98 109 114 29 28 114 30 29 114 28 103 114 103 98 115 104 97 115 97 108 116 99 110 116 105 99 117 104 115 117 106 104 118 107 101 118 101 112 119 108 100 119 100 111 120 109 102 120 102 113 121 10 2 121 110 10 122 105 116 122 111 105 123 106 117 123 112 106 124 107 118 124 113 107 125 30 114 125 31 30 125 109 120 125 114 109 126 108 119 126 115 108 127 2 23 127 110 121 127 121 2 127 116 110 128 115 126 128 117 115 129 112 123 129 118 112 130 119 111 130 111 122 131 120 113 131 113 124 132 122 116 132 116 127 132 127 23 133 117 128 133 123 117 134 118 129 134 124 118 135 120 131 135 125 120 135 31 125 136 119 130 136 126 119 137 128 126 137 126 136 138 129 123 138 123 133 139 23 24 139 122 132 139 132 23 139 130 122 140 131 124 140 124 134 141 133 128 141 128 137 142 129 138 142 134 129 143 131 140 143 32 31 143 33 32 143 31 135 143 135 131 144 136 130 144 130 139 144 139 24 +47 63 1 0.0213018567121215 +11.1666783396437 1.81818181818182 -24 10.183346173608 2 -25 11.154208819768 1.82048743322245 -24.1587481044306 11.1144146064657 1.82784538586492 -24.3216743107057 11.0534260801024 1.83912216837865 -24.4659176747104 10.9782214885605 1.85302750227376 -24.5887039311838 10.885245880802 1.8702186982297 -24.7003524932146 10.7771660242838 1.89020267076924 -24.7970712210569 10.6576125724214 1.9123081118384 -24.8760031482291 10.5307848520398 1.93575856563255 -24.9354995472153 10.4009929080845 1.95975710455937 -24.9751976252731 10.2907148164633 1.98014753091324 -24.9940210530983 11.1666783396437 -1.81818181818182 -24 11.0185657453276 0.609073246541324 -24 11.0185657453276 -0.609073246541326 -24 10.183346173608 -2 -25 10.02042231986 0.66998057119546 -25 10.02042231986 -0.66998057119546 -25 11.1595297625562 -1.81950359055288 -24.120360487059 11.1369444292774 -1.8236796201534 -24.2440522289084 11.0976369176464 -1.83094758162501 -24.3680947095619 11.0410679008715 -1.84140719652678 -24.4890416764109 10.9676191749605 -1.85498787075188 -24.6032307532947 10.8786670163707 -1.87143513069336 -24.7071067811865 10.7765223768647 -1.89032168121914 -24.7975667108647 10.6642365845548 -1.91108333156166 -24.8722604191027 10.5453055416678 -1.93307368917057 -24.9297883010624 10.4233305804863 -1.95562686747121 -24.9697620891563 10.3017005120529 -1.97811627508017 -24.9927302519592 11.0059084084064 0.609845605011506 -24.158748086994 10.9655147919944 0.612310448285518 -24.3216743322666 11.0059084084064 -0.609845605011508 -24.158748086994 10.9036076575098 0.616088059641016 -24.4659176499763 10.8272702821517 0.620746213154375 -24.5887039525386 10.9655147919944 -0.61231044828552 -24.3216743322666 10.7328942607943 0.626505095921839 -24.7003524944137 10.9036076575098 -0.616088059641017 -24.4659176499763 10.6231865011542 0.633199530772571 -24.7970711993383 10.8272702821517 -0.620746213154377 -24.5887039525386 10.5085560289529 0.640194352566195 -24.8722604331433 10.7328942607943 -0.62650509592184 -24.7003524944137 10.3878336439476 0.647560906619387 -24.9297882971799 10.6231865011542 -0.633199530772572 -24.7970711993383 10.2413473212096 0.65649959197136 -24.9751976245757 10.5085560289529 -0.640194352566196 -24.8722604331433 10.3878336439476 -0.647560906619389 -24.9297882971799 10.2413473212096 -0.656499591971362 -24.9751976245757 0.018522783780353 3.14159265358979 0.018522783780353 4.71238898038469 0.018522783780353 3.30101518465478 0.018522783780353 3.46908992866047 0.018522783780353 3.62626407605833 0.018522783780353 3.77104722934449 0.018522783780353 3.91748386058923 0.018522783780353 4.06402230044801 0.018522783780353 4.20910448941572 0.018522783780353 4.35126290092479 0.018522783780353 4.4892048174677 0.018522783780353 4.60298228814405 0.384193057766171 3.14159265358979 0.140412875108959 3.14159265358979 0.262302966437565 3.14159265358979 0.384193057766171 4.71238898038469 0.140412875108959 4.71238898038469 0.262302966437565 4.71238898038469 0.384193057766171 3.2622456337844 0.384193057766171 3.38813491401339 0.384193057766171 3.51855168550452 0.384193057766171 3.65258337215323 0.384193057766171 3.78913838521655 0.384193057766171 3.92699081697158 0.384193057766171 4.06484324884304 0.384193057766171 4.20139826179799 0.384193057766171 4.33542994829595 0.384193057766171 4.4658467198699 0.384193057766171 4.59173600023701 0.140412875108959 3.30101518465478 0.140412875108959 3.46908992866047 0.262302966437565 3.30101518465478 0.140412875108959 3.62626407605833 0.140412875108959 3.77104722934449 0.262302966437565 3.46908992866047 0.140412875108959 3.91748386058923 0.262302966437565 3.62626407605833 0.140412875108959 4.06402230044801 0.262302966437565 3.77104722934449 0.140412875108959 4.20139826179799 0.262302966437565 3.91748386058923 0.140412875108959 4.33542994829595 0.262302966437565 4.06402230044801 0.140412875108959 4.4892048174677 0.262302966437565 4.20139826179799 0.262302966437565 4.33542994829595 0.262302966437565 4.4892048174677 33 4 31 34 6 5 34 7 6 34 5 33 35 20 21 35 33 31 35 32 20 35 31 32 36 7 34 37 21 22 37 33 35 37 35 21 37 34 33 38 8 7 19 15 13 38 7 36 39 22 23 39 34 37 39 37 22 39 36 34 40 9 8 40 8 38 41 23 24 41 39 23 41 38 36 41 36 39 42 10 9 42 9 40 43 24 25 43 41 24 43 38 41 43 40 38 44 11 10 44 12 11 44 18 17 44 10 42 44 17 12 45 25 26 45 26 27 45 43 25 45 42 40 45 40 43 46 42 45 46 27 28 46 45 27 46 44 42 47 46 28 47 44 46 47 28 29 47 29 18 47 18 44 17 2 12 16 18 29 30 3 1 30 4 3 30 1 14 30 14 15 31 4 30 32 19 20 32 15 19 32 30 15 32 31 30 33 5 4 +47 63 1 0.0213018567121206 +11.1666783396437 1.81818181818182 -36 10.183346173608 2 -35 11.154208819768 1.82048743322245 -35.8412518955694 11.1144146064657 1.82784538586492 -35.6783256892943 11.0534260801024 1.83912216837865 -35.5340823252896 10.9782214885605 1.85302750227376 -35.4112960688161 10.885245880802 1.8702186982297 -35.2996475067854 10.7771660242838 1.89020267076924 -35.2029287789431 10.6576125724214 1.9123081118384 -35.1239968517709 10.5307848520398 1.93575856563255 -35.0645004527847 10.4009929080845 1.95975710455937 -35.0248023747269 10.2907148164633 1.98014753091324 -35.0059789469017 11.1666783396437 -1.81818181818182 -36 11.0185657453276 0.609073246541324 -36 11.0185657453276 -0.609073246541326 -36 10.183346173608 -2 -35 10.02042231986 0.66998057119546 -35 10.02042231986 -0.66998057119546 -35 11.1595297625562 -1.81950359055288 -35.879639512941 11.1369444292774 -1.8236796201534 -35.7559477710916 11.0976369176464 -1.83094758162501 -35.6319052904381 11.0410679008715 -1.84140719652678 -35.5109583235891 10.9676191749605 -1.85498787075188 -35.3967692467053 10.8786670163707 -1.87143513069336 -35.2928932188134 10.7765223768647 -1.89032168121914 -35.2024332891353 10.6642365845548 -1.91108333156166 -35.1277395808973 10.5453055416678 -1.93307368917057 -35.0702116989376 10.4233305804863 -1.95562686747121 -35.0302379108437 10.3017005120529 -1.97811627508017 -35.0072697480408 11.0059084084064 0.609845605011506 -35.841251913006 10.9655147919944 0.612310448285518 -35.6783256677334 11.0059084084064 -0.609845605011508 -35.841251913006 10.9036076575098 0.616088059641016 -35.5340823500237 10.8272702821517 0.620746213154375 -35.4112960474614 10.9655147919944 -0.61231044828552 -35.6783256677334 10.7328942607943 0.626505095921838 -35.2996475055863 10.9036076575098 -0.616088059641017 -35.5340823500237 10.6231865011542 0.63319953077257 -35.2029288006617 10.8272702821517 -0.620746213154377 -35.4112960474614 10.5085560289529 0.640194352566195 -35.1277395668567 10.7328942607943 -0.62650509592184 -35.2996475055863 10.3878336439476 0.647560906619387 -35.0702117028201 10.6231865011542 -0.633199530772572 -35.2029288006617 10.2413473212096 0.656499591971361 -35.0248023754243 10.5085560289529 -0.640194352566196 -35.1277395668567 10.3878336439476 -0.647560906619389 -35.0702117028201 10.2413473212096 -0.656499591971362 -35.0248023754243 0.018522783780353 3.14159265358979 0.018522783780353 4.71238898038469 0.018522783780353 3.30101518465477 0.018522783780353 3.46908992866047 0.018522783780353 3.62626407605833 0.018522783780353 3.77104722934449 0.018522783780353 3.91748386058923 0.018522783780353 4.06402230044801 0.018522783780353 4.20910448941572 0.018522783780353 4.35126290092479 0.018522783780353 4.4892048174677 0.018522783780353 4.60298228814406 0.384193057766171 3.14159265358979 0.140412875108959 3.14159265358979 0.262302966437565 3.14159265358979 0.384193057766171 4.71238898038469 0.140412875108959 4.71238898038469 0.262302966437565 4.71238898038469 0.384193057766171 3.2622456337844 0.384193057766171 3.38813491401339 0.384193057766171 3.51855168550452 0.384193057766171 3.65258337215323 0.384193057766171 3.78913838521654 0.384193057766171 3.92699081697159 0.384193057766171 4.06484324884305 0.384193057766171 4.20139826179799 0.384193057766171 4.33542994829596 0.384193057766171 4.46584671986991 0.384193057766171 4.59173600023701 0.140412875108959 3.30101518465477 0.140412875108959 3.46908992866047 0.262302966437565 3.30101518465477 0.140412875108959 3.62626407605833 0.140412875108959 3.77104722934449 0.262302966437565 3.46908992866047 0.140412875108959 3.91748386058923 0.262302966437565 3.62626407605833 0.140412875108959 4.06402230044801 0.262302966437565 3.77104722934449 0.140412875108959 4.20139826179799 0.262302966437565 3.91748386058923 0.140412875108959 4.33542994829596 0.262302966437565 4.06402230044801 0.140412875108959 4.4892048174677 0.262302966437565 4.20139826179799 0.262302966437565 4.33542994829596 0.262302966437565 4.4892048174677 34 6 5 34 7 6 34 5 33 35 20 21 35 33 31 35 32 20 35 31 32 36 7 34 37 21 22 37 33 35 37 34 33 37 35 21 38 8 7 19 15 13 38 7 36 39 22 23 39 34 37 39 37 22 39 36 34 40 9 8 40 8 38 41 23 24 41 38 36 41 36 39 41 39 23 42 10 9 42 9 40 43 24 25 43 38 41 43 41 24 43 40 38 44 11 10 44 12 11 44 18 17 44 10 42 44 17 12 45 25 26 45 26 27 45 43 25 45 42 40 45 40 43 46 42 45 46 27 28 46 45 27 46 44 42 47 46 28 47 44 46 47 28 29 47 29 18 47 18 44 17 2 12 16 18 29 30 3 1 30 4 3 30 1 14 30 14 15 31 5 4 31 4 30 32 19 20 32 15 19 32 30 15 32 31 30 33 5 31 +154 273 1 0.00915997267203659 +11.3790861415833 2.72727272727273 -35 10.4169947557416 2 -35 11.3203682998403 2.57114543278327 -35 11.2324249041812 2.42114451456702 -35 11.1291813068163 2.2980097461728 -35 11.0191072607872 2.2015887455279 -35 10.8961507129639 2.12227021888373 -35 10.7644043820812 2.06228653015613 -35 10.6283329484944 2.02258700219202 -35 10.521700267738 2.00549672913682 -35 11.1666783396437 1.81818181818182 -36 11.3760833876534 2.71665769625074 -35.1512315636368 11.3682040805535 2.68858835936951 -35.2868853961371 11.3528604171956 2.63300168436734 -35.4414510450247 11.3297529245852 2.54682576954701 -35.5960964173187 11.3021403026646 2.439573177997 -35.7284270371514 11.2739031444987 2.32444401043219 -35.8295745376331 11.2460223126946 2.20452245994619 -35.90463061249 11.216194927103 2.06812917726132 -35.9612365708412 11.1915821278038 1.94806027738175 -35.9896867023003 10.183346173608 2 -35 10.352280787604 2 -35 10.291162707658 2 -35 11.154208819768 1.82048743322245 -35.8412518955694 11.1144146064657 1.82784538586492 -35.6783256892943 11.0534260801024 1.83912216837865 -35.5340823252896 10.9782214885605 1.85302750227376 -35.4112960688161 10.885245880802 1.8702186982297 -35.2996475067854 10.7771660242838 1.89020267076924 -35.2029287789431 10.6576125724214 1.9123081118384 -35.1239968517709 10.5307848520398 1.93575856563255 -35.0645004527847 10.4009929080845 1.95975710455937 -35.0248023747269 10.2907148164633 1.98014753091324 -35.0059789469017 11.3304998819643 2.58956217347012 -35.1299656516721 11.3169521196778 2.56003945006112 -35.1248978223355 11.323305167983 2.56362928676803 -35.2460436390794 11.3098199964171 2.53461512586683 -35.2363074306715 11.3132628578388 2.52645889871764 -35.3494866834713 11.309894746319 2.51380481415299 -35.3776064505541 11.2650918137836 2.4655655341924 -35.1083125478691 11.3000070321976 2.4984385266789 -35.3354521398731 11.2967325209677 2.4861570708996 -35.3623772832764 11.2578778846829 2.44184563049691 -35.2044468585351 11.2901710265483 2.4379897571311 -35.5083229996244 11.2776501226305 2.41279754822863 -35.4873674889883 11.2485109848689 2.40894938299634 -35.2895257525892 11.1893702330086 2.36026573255368 -35.089051578779 11.2454511312213 2.39789340303851 -35.3125409684018 11.2717337215543 2.36447512016051 -35.5990835238391 11.2669540040028 2.34498477372103 -35.6192919909333 11.2599057419414 2.3419268390881 -35.57395621976 11.1814792377014 2.33869062591464 -35.167477133179 11.2553159330718 2.3231714779706 -35.5932102282004 11.22798625326 2.33258548482496 -35.4187822708189 11.2434257224386 2.24628453027778 -35.7034306475843 11.1720086057541 2.30974401078159 -35.2362730653393 11.1084132831297 2.27338205127509 -35.0723598132952 11.1690100408748 2.30014676848377 -35.2547658038364 11.2327663069395 2.22837233832222 -35.6732546274075 11.212115931989 2.27036215137153 -35.491701155405 11.0993913382287 2.25392914983348 -35.1355016370768 11.2080523275859 2.25400862925013 -35.507825904306 11.2202899354957 2.14438563665267 -35.7653265509937 11.2106387229533 2.13075900449031 -35.7319726339995 11.1524291265472 2.24432767740329 -35.3393414894721 11.0892465477846 2.22864291309153 -35.190301650163 11.0095215255032 2.19093096222843 -35.0555650737438 11.0861236596715 2.22037285456585 -35.2049174453114 11.1955417202433 2.02935398518201 -35.8114200515995 11.188270740596 2.17195017650779 -35.5744374848497 11.1869864665523 2.02081353718789 -35.7755183910804 11.1379112862794 2.19219796153191 -35.3964821648128 10.998807654617 2.17401387445679 -35.1034357008863 11.1750554990827 1.92872399340818 -35.8339967368429 11.1342576932609 2.17863729835657 -35.4089967014165 11.169063620795 2.08832615333047 -35.6227160406508 11.0693629512619 2.17304041495582 -35.2709857701772 11.1673994034214 1.92481604816066 -35.7966645438455 10.9161723299754 2.13061573589455 -35.042370479281 10.9873882410729 2.15277986649207 -35.1443537364068 10.9839586527949 2.14594449380498 -35.1551432308837 11.1167644069645 2.11134355455102 -35.460116557349 11.1486367004826 1.99497983732795 -35.657881517348 11.0552228911598 2.1297808230767 -35.3147191796852 10.9037024826667 2.11611533376441 -35.078364493988 11.0517290889085 2.11865609093285 -35.3241746574968 11.1317212190281 1.91409711681467 -35.6743155504327 11.1001279716813 2.04386684328845 -35.4963626923342 10.9660434910788 2.10757441820364 -35.2030713374172 10.8908224539101 2.09845878309331 -35.1086051733345 10.8090319938187 2.07786053209739 -35.02972693297 10.887011893461 2.09285679011755 -35.1164741449915 11.0353086691659 2.06414815631967 -35.3622069005582 11.0826509982973 1.96962534949975 -35.5218806042427 10.7944853384089 2.06620280755782 -35.0544984334448 10.9514572230753 2.07344629371384 -35.233803553751 10.9479193435585 2.06480062340491 -35.2403104104609 10.8674367044168 2.0619816005891 -35.1507059385269 11.0200789817098 2.01052859377458 -35.3883404675464 11.068232319407 1.90609832958088 -35.5329059971164 10.7797826675401 2.052462681317 -35.074807323755 10.6977870561162 2.03869383572979 -35.0189686443867 10.7754780980914 2.04817396834901 -35.0799898715668 10.9316163219659 2.02315751145839 -35.2658101972045 10.851856043781 2.03524843513011 -35.171791684436 11.004348407545 1.95256800188255 -35.4058070422997 10.6811218324765 2.03007769601778 -35.0343857240297 10.8481230804509 2.02858009167342 -35.1761327199362 10.753617550695 2.02503816794869 -35.1018255277191 10.9169210267291 1.98327325140866 -35.2823723438745 10.9914670492435 1.90374900952794 -35.4123748058623 10.6644929248245 2.02024375844665 -35.0466123499682 10.5849615398681 2.01324213308032 -35.0102240057855 10.6596537319125 2.01722599519091 -35.0496468180505 10.8311534805181 1.99703927342013 -35.1925304695244 10.7364869210607 2.00565567420391 -35.1144123678256 10.5662793502274 2.00779508692988 -35.0182634275426 10.9020650343922 1.94125708830841 -35.2923363243289 10.7324175519559 2.00091576414742 -35.1168757362688 10.4890620873937 2.00204128023823 -35.0043749724799 10.6352325447877 2.0013188468438 -35.0618274483817 10.8161746911891 1.96771327174153 -35.2022821829429 10.5477716760265 2.00177214497562 -35.0243466670887 10.8900387345463 1.90670338532969 -35.2948621000324 10.5424027701227 1.99995618275293 -35.0257939938621 10.7140979458429 1.97903021818284 -35.1255272131342 10.4688293165413 1.99933584531458 -35.0076872455205 10.6162510937458 1.98848337029335 -35.0680924304785 10.8012924560393 1.9377374294221 -35.2070559885849 10.6117617425178 1.98541827524057 -35.0691991417916 10.4488523200742 1.99642362499416 -35.01005117671 10.5153867299638 1.99062021458642 -35.0311520921106 10.6981808553766 1.95950840282858 -35.1296822503528 10.7893726994333 1.91380013713754 -35.2069262632635 10.4430645113752 1.99555921570229 -35.0105818403464 10.5916530007702 1.97168716722475 -35.0724459430899 10.4944547564663 1.9834042709976 -35.0333171598011 10.682589480128 1.94043557886374 -35.1304031075798 10.4895112477144 1.98173031195835 -35.0335953831374 10.4139632765499 1.99121656760187 -35.0123075593476 10.5743303966043 1.96010438284495 -35.0729644199893 10.6702243274384 1.92590965104056 -35.1284056286023 10.4674038248586 1.97451741731861 -35.0337938338466 10.3914200368557 1.98799882550316 -35.0126670689686 10.3860946473129 1.98727471561633 -35.0126375323087 10.5575053411985 1.94952335938986 -35.0713461292607 10.4484153985251 1.96889640186978 -35.0326240463723 10.5442515444296 1.94207749514393 -35.0685704526278 10.3622694942824 1.98428770651511 -35.0119999381749 10.4300366107256 1.96430026878262 -35.0303456655625 10.3417945378635 1.9821830101497 -35.0108271443168 10.4156097168048 1.96154450568365 -35.0278383948479 10.32197840959 1.98074165242094 -35.0092024690161 10.3064370188074 1.98015432898136 -35.0076641166795 0 0 1 0 0.135 0 0.27 0 0.3915 0 0.50085 0 0.6102 0 0.71955 0 0.8289 0 0.91445 0 0 1 0 0.0833333333333333 0 0.166666666666667 0 0.274389194178656 0 0.399389194178656 0 0.524389194178656 0 0.636889194178656 0 0.738139194178656 0 0.839389194178656 0 0.919694597089328 1 1 1 0.25 1 0.5 0.10935 1 0.2187 1 0.317115 1 0.4056885 1 0.494262 1 0.5828355 1 0.671409 1 0.7599825 1 0.848556 1 0.924278 1 0.10935 0.0833333333333333 0.135 0.0833333333333333 0.10935 0.166666666666667 0.135 0.166666666666667 0.10935 0.25 0.10935 0.274389194178656 0.2187 0.0833333333333333 0.135 0.25 0.135 0.274389194178656 0.2187 0.166666666666667 0.10935 0.399389194178656 0.135 0.399389194178656 0.2187 0.25 0.317115 0.0833333333333333 0.2187 0.274389194178656 0.10935 0.5 0.10935 0.524389194178656 0.135 0.5 0.317115 0.166666666666667 0.135 0.524389194178656 0.2187 0.399389194178656 0.10935 0.636889194178656 0.317115 0.25 0.4056885 0.0833333333333333 0.317115 0.274389194178656 0.135 0.636889194178656 0.2187 0.5 0.4056885 0.166666666666667 0.2187 0.524389194178656 0.10935 0.738139194178656 0.135 0.738139194178656 0.317115 0.399389194178656 0.4056885 0.25 0.50085 0.0833333333333333 0.4056885 0.274389194178656 0.10935 0.839389194178656 0.2187 0.636889194178656 0.135 0.839389194178656 0.317115 0.5 0.50085 0.166666666666667 0.10935 0.919694597089328 0.317115 0.524389194178656 0.2187 0.738139194178656 0.4056885 0.399389194178656 0.135 0.919694597089328 0.5828355 0.0833333333333333 0.50085 0.25 0.50085 0.274389194178656 0.317115 0.636889194178656 0.2187 0.839389194178656 0.4056885 0.5 0.5828355 0.166666666666667 0.4056885 0.524389194178656 0.2187 0.919694597089328 0.317115 0.738139194178656 0.50085 0.399389194178656 0.5828355 0.25 0.671409 0.0833333333333333 0.5828355 0.274389194178656 0.4056885 0.636889194178656 0.317115 0.839389194178656 0.671409 0.166666666666667 0.50085 0.5 0.50085 0.524389194178656 0.5828355 0.399389194178656 0.4056885 0.738139194178656 0.317115 0.919694597089328 0.671409 0.25 0.7599825 0.0833333333333333 0.671409 0.274389194178656 0.50085 0.636889194178656 0.5828355 0.5 0.4056885 0.839389194178656 0.7599825 0.166666666666667 0.5828355 0.524389194178656 0.671409 0.399389194178656 0.50085 0.738139194178656 0.4056885 0.919694597089328 0.7599825 0.25 0.848556 0.0833333333333333 0.7599825 0.274389194178656 0.5828355 0.636889194178656 0.671409 0.5 0.848556 0.166666666666667 0.50085 0.839389194178656 0.671409 0.524389194178656 0.924278 0.0833333333333333 0.7599825 0.399389194178656 0.5828355 0.738139194178656 0.848556 0.25 0.50085 0.919694597089328 0.848556 0.274389194178656 0.671409 0.636889194178656 0.924278 0.166666666666667 0.7599825 0.5 0.5828355 0.839389194178656 0.7599825 0.524389194178656 0.924278 0.25 0.848556 0.399389194178656 0.671409 0.738139194178656 0.5828355 0.919694597089328 0.924278 0.274389194178656 0.7599825 0.636889194178656 0.848556 0.5 0.671409 0.839389194178656 0.848556 0.524389194178656 0.924278 0.399389194178656 0.7599825 0.738139194178656 0.671409 0.919694597089328 0.848556 0.636889194178656 0.924278 0.5 0.924278 0.524389194178656 0.7599825 0.839389194178656 0.848556 0.738139194178656 0.7599825 0.919694597089328 0.924278 0.636889194178656 0.848556 0.839389194178656 0.924278 0.738139194178656 0.848556 0.919694597089328 0.924278 0.839389194178656 0.924278 0.919694597089328 145 144 23 145 143 139 145 139 144 146 133 141 146 138 133 147 141 136 147 136 143 148 31 30 148 30 142 148 142 138 148 138 146 149 145 23 149 143 145 150 141 147 150 146 141 151 147 143 151 23 21 151 143 149 151 149 23 152 148 146 152 32 31 152 33 32 152 146 150 152 31 148 153 150 147 153 151 21 153 147 151 154 33 152 154 152 150 154 153 21 154 21 33 154 150 153 24 11 20 34 1 3 34 12 1 34 13 12 35 34 3 36 34 35 36 13 34 37 36 35 38 14 13 38 13 36 39 14 38 40 3 4 40 37 35 40 35 3 41 36 37 41 38 36 42 39 38 42 38 41 43 41 37 43 37 40 44 15 14 44 14 39 45 39 42 45 44 39 46 41 43 46 42 41 47 4 5 47 40 4 48 45 42 48 42 46 49 16 15 49 44 45 49 15 44 50 16 49 51 49 45 52 40 47 52 43 40 53 50 49 53 49 51 54 45 48 54 51 45 55 17 16 55 16 50 56 43 52 56 46 43 57 5 6 57 47 5 57 52 47 58 46 56 58 48 46 59 50 53 59 55 50 60 53 51 60 51 54 61 56 52 61 52 57 62 53 60 62 59 53 63 18 17 63 17 55 64 55 59 64 63 55 65 54 48 65 48 58 66 58 56 66 56 61 67 57 6 68 58 66 68 65 58 69 19 18 69 20 19 69 18 63 70 64 59 70 59 62 71 63 64 71 69 63 72 60 54 72 54 65 73 61 57 73 57 67 73 66 61 74 20 69 74 24 20 74 69 71 75 60 72 75 62 60 76 64 70 76 71 64 77 65 68 77 72 65 78 25 24 78 24 74 78 74 71 79 6 7 79 67 6 79 73 67 80 66 73 81 66 80 81 68 66 82 70 62 82 62 75 83 71 76 83 78 71 84 75 72 84 72 77 85 80 73 85 73 79 86 82 75 86 75 84 87 78 83 87 25 78 88 70 82 88 76 70 89 68 81 89 84 77 89 77 68 90 80 85 90 81 80 91 7 8 91 79 7 92 81 90 92 89 81 93 82 86 93 88 82 94 83 76 94 76 88 95 79 91 95 85 79 96 84 89 97 86 84 97 84 96 97 93 86 98 89 92 98 96 89 99 88 93 99 94 88 100 87 83 100 25 87 100 26 25 100 83 94 101 92 90 101 85 95 101 90 85 102 8 9 102 91 8 103 92 101 103 98 92 104 99 93 104 93 97 105 97 96 105 96 98 106 94 99 106 100 94 107 95 91 107 91 102 108 104 97 108 97 105 109 98 103 110 99 104 110 106 99 111 27 26 111 28 27 111 26 100 111 100 106 112 95 107 112 101 95 113 9 10 113 102 9 114 101 112 114 103 101 115 104 108 115 110 104 116 105 98 116 98 109 116 108 105 117 107 102 117 102 113 118 106 110 118 111 106 119 108 116 120 10 2 120 113 10 121 103 114 121 109 103 122 118 110 122 110 115 123 112 107 123 107 117 124 111 118 124 29 28 124 28 111 125 114 112 125 112 123 126 115 108 126 108 119 127 117 113 127 2 22 127 120 2 127 113 120 128 116 109 128 109 121 129 118 122 129 124 118 130 116 128 130 119 116 131 123 117 131 125 123 131 127 22 131 117 127 132 121 114 132 114 125 133 115 126 133 122 115 134 29 124 134 124 129 135 131 22 135 125 131 136 119 130 136 126 119 137 128 121 137 121 132 138 129 122 138 122 133 138 134 129 139 130 128 139 128 137 140 22 23 140 132 125 140 135 22 140 125 135 141 133 126 141 126 136 142 30 29 142 29 134 142 134 138 143 130 139 143 136 130 144 132 140 144 140 23 144 137 132 144 139 137 +20 18 1 0.0037864581709226 +11.3790861415833 2.72727272727273 -35 10.4169947557416 2 -35 11.3203682998403 2.57114543278327 -35 11.2324249041812 2.42114451456702 -35 11.1291813068163 2.2980097461728 -35 11.0191072607872 2.2015887455279 -35 10.8961507129639 2.12227021888373 -35 10.7644043820812 2.06228653015613 -35 10.6283329484944 2.02258700219202 -35 10.521700267738 2.00549672913682 -35 11.3790861415833 2.72727272727273 -25 10.4169947557416 2 -25 11.3203682998403 2.57114543278327 -25 11.2324249041812 2.42114451456702 -25 11.1291813068163 2.2980097461728 -25 11.0191072607872 2.2015887455279 -25 10.8961507129639 2.12227021888373 -25 10.7644043820812 2.06228653015613 -25 10.6283329484944 2.02258700219202 -25 10.521700267738 2.00549672913682 -25 7.7715611723761e-016 0 1.2945696960313 0 0.166997857526829 0 0.341097732202756 0 0.501961660454301 0 0.648425331919713 0 0.794876796117926 0 0.939762494066026 0 1.08162583655726 0 1.18967182210662 0 8.88178419700124e-016 10 1.2945696960313 10 0.166997857526829 9.99999999999999 0.341097732202756 9.99999999999999 0.501961660454301 10 0.648425331919713 10 0.794876796117926 9.99999999999999 0.939762494066026 9.99999999999999 1.08162583655726 10 1.18967182210662 10 13 1 3 13 3 4 13 11 1 14 4 5 14 13 4 15 14 5 16 5 6 16 15 5 17 6 7 17 16 6 18 7 8 18 8 9 18 17 7 19 18 9 20 9 10 20 10 2 20 19 9 12 20 2 +154 273 1 0.00892762824289779 +11.3790861415833 2.72727272727273 -25 10.4169947557416 2 -25 11.3203682998403 2.57114543278327 -25 11.2324249041812 2.42114451456702 -25 11.1291813068163 2.2980097461728 -25 11.0191072607872 2.2015887455279 -25 10.8961507129639 2.12227021888373 -25 10.7644043820812 2.06228653015613 -25 10.6283329484944 2.02258700219202 -25 10.521700267738 2.00549672913682 -25 11.1666783396437 1.81818181818182 -24 11.3749058745763 2.71248282514865 -24.8216378566465 11.3636612074024 2.67226021829846 -24.6592748672763 11.3469327399873 2.61118602799997 -24.5130380398502 11.3257484421573 2.53157200105353 -24.3820029146368 11.3006881302539 2.43379318201105 -24.2656465202535 11.2721223487683 2.31698001768382 -24.1649489801284 11.2437760994126 2.19456036635356 -24.0902738638415 11.2165828828344 2.06996364981084 -24.0393463436262 11.1916834196796 1.94857020919913 -24.0103948874071 10.183346173608 2 -25 10.356666286167 2 -25 10.2952694777 2 -25 11.154208819768 1.82048743322245 -24.1587481044306 11.1144146064657 1.82784538586492 -24.3216743107057 11.0534260801024 1.83912216837865 -24.4659176747104 10.9782214885605 1.85302750227376 -24.5887039311838 10.885245880802 1.8702186982297 -24.7003524932146 10.7771660242838 1.89020267076924 -24.7970712210569 10.6576125724214 1.9123081118384 -24.8760031482291 10.5307848520398 1.93575856563255 -24.9354995472153 10.4009929080845 1.95975710455937 -24.9751976252731 10.2907148164633 1.98014753091324 -24.9940210530983 11.3293882622203 2.58561806285664 -24.8467783216052 11.3158375011321 2.55615059825284 -24.8527698086069 11.3192887243737 2.54887043004941 -24.7080373275773 11.3155427600265 2.53497374454009 -24.6710311548161 11.30588396247 2.52022864841899 -24.7196638959911 11.3022274232642 2.50671081984204 -24.6842014584964 11.2639141999729 2.46186614204541 -24.8723774260652 11.3047975691237 2.49448973214238 -24.5838209532361 11.2917876054725 2.46743461110784 -24.6007090389149 11.2540759585441 2.4286913166494 -24.7577101068061 11.286785457378 2.42468481782143 -24.4732506995439 11.2506010225972 2.41642303435028 -24.7272994607466 11.2743863484469 2.39995458582054 -24.4950389494858 11.2750882420294 2.37804574950569 -24.4158327905319 11.1880116566473 2.35681974335921 -24.8951444574191 11.240872176347 2.38111724117474 -24.6559755831187 11.2657399000409 2.34000480193809 -24.3757602235114 11.2631292335536 2.35499356197796 -24.4402619089684 11.2541506300017 2.31838134866535 -24.4020772287034 11.1775700521051 2.32703083616138 -24.8018431638901 11.1740791124872 2.31626340017082 -24.7772796586412 11.225045394097 2.32125458902423 -24.5663519505216 11.2419462194696 2.2399179073761 -24.292034583498 11.1067972310849 2.27020752848398 -24.9148670852754 11.2313502531991 2.22226648253693 -24.3224376802456 11.2149790502357 2.28178176271059 -24.5202283774736 11.1645839122506 2.28567701449746 -24.7200291382138 11.2184272950704 2.13595511837649 -24.2304959380444 11.2070229265345 2.24983878056622 -24.4882329275259 11.095142503744 2.24367049265439 -24.8399828794012 11.2088583205839 2.12269293703523 -24.2640719489675 11.0914243444997 2.23428868305023 -24.8204428436778 11.1497056700958 2.23476706538781 -24.6489423057293 11.1958639961651 2.03089585115985 -24.1890495330918 11.0075439744019 2.18810764771037 -24.9346987770381 11.1870367500898 2.16669567387524 -24.4220003522086 11.0815723685448 2.20798579349296 -24.7752519902342 11.1872944850459 2.02228569570333 -24.2249236625891 11.1404998942655 2.20170001461709 -24.6128066658504 11.1751400076133 1.92915020103388 -24.166066187294 11.1333357829191 2.17518812113039 -24.5879519794618 11.1675236794664 2.08144960621992 -24.3740586419489 10.9939655718053 2.16532872494768 -24.8781757055856 11.1674802434938 1.92522229835443 -24.2033938161354 10.9898009681916 2.15747350618899 -24.863613877269 11.0666767658213 2.16504447206496 -24.7199791764978 10.9138317980543 2.12815079898118 -24.9502651108948 11.148902509691 1.99622452367705 -24.3424699120974 11.1156868526798 2.10707331836283 -24.5371808196133 11.0577132085766 2.13760633139176 -24.6923300237652 10.9790172418819 2.13578623464851 -24.8303159146588 11.0508512761116 2.1158344282981 -24.6735275163341 10.8982006960277 2.10884078565191 -24.9079745304837 11.1317911276307 1.91443826215812 -24.3257277606301 11.0988046224827 2.038361119736 -24.5012531046982 10.8935175917223 2.10232624869637 -24.8972365836368 10.8062705446356 2.07584133843922 -24.9651628201911 10.9632382594811 2.10120308764751 -24.7905033878718 11.0343121197022 2.06072580018373 -24.635814611009 10.8815600965108 2.08459226425995 -24.8730051550196 11.0828776706056 1.97060855434225 -24.4783666215585 10.9539945388749 2.0795591696026 -24.7710825685255 10.7881729748693 2.06049634742211 -24.936258357864 10.9470344099743 2.06261591162051 -24.7581169909637 11.0682919486241 1.9063647970624 -24.4671200902583 11.0188800645834 2.00619473243462 -24.6099798982519 10.7828385207403 2.05544170421562 -24.9290704173282 10.8644163519911 2.05694053201176 -24.8448172585529 10.694602080264 2.03717507422512 -24.977816332844 10.7693493892124 2.04190024195151 -24.9131638793755 10.8545443412387 2.0399884276344 -24.8315002452447 10.9306431296125 2.0205809718509 -24.7329004168087 11.0045513125145 1.95332905647835 -24.5943536979521 10.8471921640237 2.02690161970064 -24.8228260501628 10.6739613007988 2.02596027142005 -24.9599917522189 10.9915202846546 1.90395234188898 -24.5876372441133 10.6679355776001 2.02235349936584 -24.9556840418093 10.9157788608313 1.98009328368637 -24.7166099494771 10.7502785781093 2.02133724351634 -24.8954311565499 10.5813772252437 2.01226610021323 -24.9880749439337 10.8301524789179 1.99511892972771 -24.806675188562 10.6527825902627 2.012851135585 -24.9464151865397 10.7394259688207 2.00904820097446 -24.8874899432196 10.9022551671476 1.94180174185775 -24.7077447885193 10.7314049025571 1.99972878000532 -24.88254184699 10.5582971034981 2.00525253188266 -24.9788969146848 10.8150221066027 1.96541172635592 -24.7971648533959 10.5515952606176 2.00305030721847 -24.9767680377781 10.4851728791343 2.00155003228352 -24.9949122090345 10.8900883287712 1.90684573220755 -24.7051375345312 10.6315224864284 1.99883219584917 -24.9367407888022 10.713026772746 1.97772695352588 -24.8740920581858 10.5347895640842 1.99734877582912 -24.9723805551947 10.6194982575321 1.99069562114538 -24.9327958267329 10.8014816150944 1.93811997577311 -24.7929712568667 10.460207506637 1.99809769094339 -24.9911877664514 10.6106457992465 1.98465551809394 -24.9305474714724 10.4529758582562 1.99703573865793 -24.9903678220732 10.7894217246554 1.91389737738106 -24.7930656173005 10.6969658303067 1.95801152434904 -24.8701377364138 10.5112914627863 1.98919829571953 -24.9682951681177 10.4348608261905 1.99432889669785 -24.9887768294872 10.590482693762 1.97089304828778 -24.9274515369196 10.4980321067331 1.98462503828742 -24.9669386274408 10.6827864437263 1.94067303011872 -24.8695838583884 10.4882828378277 1.9813170207849 -24.9663489095221 10.409553166829 1.99057159766625 -24.9875585256294 10.6702750363958 1.92596726973987 -24.8715814175943 10.5730141684633 1.95924567111189 -24.9270854468435 10.3952733096345 1.9885327662857 -24.9873382092271 10.4661191720242 1.97411670886734 -24.9662465077356 10.5577170434818 1.94964990982924 -24.9286201894155 10.3847712283084 1.98709746510563 -24.9873763613331 10.544305769585 1.94210576532328 -24.9314155802942 10.4469751560718 1.96850126453924 -24.9675145133617 10.3608845200932 1.98412969261755 -24.9880617459013 10.4302674191408 1.96435119003079 -24.9696190586726 10.3402413905255 1.98204627284783 -24.9892838444848 10.4156686514819 1.96155390087425 -24.9721502451481 10.3222271837394 1.98075527752291 -24.9907745407142 10.3065004649997 1.98015560659973 -24.9923292619125 0 0 1 0 0.135 0 0.27 0 0.3915 0 0.50085 0 0.6102 0 0.71955 0 0.8289 0 0.91445 0 0 1 0 0.10935 0 0.2187 0 0.32805 0 0.4374 0 0.54675 0 0.6561 0 0.754515 0 0.8430885 0 0.92154425 1 1 1 0.25 1 0.5 0.10935 1 0.2187 1 0.317115 1 0.4056885 1 0.494262 1 0.5828355 1 0.671409 1 0.7599825 1 0.848556 1 0.924278 1 0.10935 0.10935 0.135 0.10935 0.10935 0.2187 0.10935 0.25 0.135 0.2187 0.135 0.25 0.2187 0.10935 0.10935 0.32805 0.135 0.32805 0.2187 0.2187 0.10935 0.4374 0.2187 0.25 0.135 0.4374 0.10935 0.5 0.317115 0.10935 0.2187 0.32805 0.10935 0.54675 0.135 0.5 0.135 0.54675 0.317115 0.2187 0.317115 0.25 0.2187 0.4374 0.10935 0.6561 0.4056885 0.10935 0.135 0.6561 0.2187 0.5 0.317115 0.32805 0.10935 0.754515 0.2187 0.54675 0.4056885 0.2187 0.135 0.754515 0.4056885 0.25 0.317115 0.4374 0.10935 0.8430885 0.50085 0.10935 0.2187 0.6561 0.4056885 0.32805 0.135 0.8430885 0.317115 0.5 0.10935 0.92154425 0.317115 0.54675 0.2187 0.754515 0.50085 0.2187 0.135 0.92154425 0.50085 0.25 0.4056885 0.4374 0.5828355 0.10935 0.2187 0.8430885 0.317115 0.6561 0.4056885 0.5 0.50085 0.32805 0.4056885 0.54675 0.5828355 0.2187 0.2187 0.92154425 0.317115 0.754515 0.5828355 0.25 0.671409 0.10935 0.50085 0.4374 0.4056885 0.6561 0.5828355 0.32805 0.317115 0.8430885 0.50085 0.5 0.671409 0.2187 0.50085 0.54675 0.317115 0.92154425 0.4056885 0.754515 0.671409 0.25 0.5828355 0.4374 0.7599825 0.10935 0.671409 0.32805 0.5828355 0.5 0.50085 0.6561 0.4056885 0.8430885 0.5828355 0.54675 0.7599825 0.2187 0.4056885 0.92154425 0.7599825 0.25 0.50085 0.754515 0.671409 0.4374 0.848556 0.10935 0.5828355 0.6561 0.7599825 0.32805 0.671409 0.5 0.50085 0.8430885 0.671409 0.54675 0.848556 0.2187 0.5828355 0.754515 0.848556 0.25 0.924278 0.10935 0.50085 0.92154425 0.7599825 0.4374 0.671409 0.6561 0.848556 0.32805 0.7599825 0.5 0.5828355 0.8430885 0.924278 0.2187 0.7599825 0.54675 0.924278 0.25 0.5828355 0.92154425 0.671409 0.754515 0.848556 0.4374 0.924278 0.32805 0.7599825 0.6561 0.848556 0.5 0.671409 0.8430885 0.848556 0.54675 0.924278 0.4374 0.671409 0.92154425 0.7599825 0.754515 0.924278 0.5 0.848556 0.6561 0.7599825 0.8430885 0.924278 0.54675 0.7599825 0.92154425 0.848556 0.754515 0.924278 0.6561 0.848556 0.8430885 0.924278 0.754515 0.848556 0.92154425 0.924278 0.8430885 0.924278 0.92154425 146 143 23 146 139 143 146 144 139 147 31 30 147 32 31 147 141 145 147 30 141 148 136 144 148 142 136 149 146 23 149 144 146 150 142 148 150 145 142 151 148 144 151 23 21 151 144 149 151 149 23 152 147 145 152 145 150 152 32 147 153 148 151 153 151 21 153 150 148 154 153 21 154 152 150 154 32 152 154 150 153 154 33 32 154 21 33 34 1 3 34 12 1 35 34 3 36 13 12 36 12 34 36 34 35 37 14 13 37 13 36 38 36 35 39 36 38 39 37 36 40 3 4 40 38 35 40 35 3 41 15 14 41 14 37 41 37 39 42 41 39 43 39 38 43 38 40 44 15 41 45 42 39 45 39 43 46 41 42 46 44 41 47 16 15 47 15 44 48 4 5 48 43 40 48 40 4 49 46 42 49 42 45 50 17 16 50 16 47 51 47 44 51 44 46 52 50 47 52 47 51 53 43 48 53 45 43 54 45 53 54 49 45 55 51 46 55 46 49 56 17 50 57 5 6 57 53 48 57 48 5 58 56 50 58 50 52 59 52 51 59 51 55 60 55 49 60 49 54 61 18 17 61 56 58 61 17 56 62 52 59 62 58 52 63 53 57 63 54 53 64 61 58 65 54 63 65 60 54 66 59 55 66 55 60 67 19 18 67 18 61 67 61 64 68 57 6 68 63 57 69 58 62 69 64 58 70 66 60 70 60 65 71 67 64 72 59 66 73 20 19 73 11 20 73 24 11 73 19 67 73 67 71 74 62 59 74 59 72 74 69 62 75 64 69 75 71 64 76 63 68 77 25 24 77 24 73 77 73 71 78 65 63 78 63 76 79 66 70 79 72 66 80 6 7 80 68 6 81 71 75 81 77 71 82 69 74 82 75 69 83 72 79 83 74 72 84 70 65 84 65 78 85 82 74 85 74 83 86 76 68 86 68 80 87 77 81 87 26 25 87 25 77 88 81 75 88 75 82 89 76 86 89 78 76 90 7 8 90 86 80 90 80 7 91 70 84 91 83 79 91 79 70 92 82 85 92 88 82 93 84 78 93 78 89 94 87 81 94 81 88 95 85 83 95 83 91 96 86 90 96 89 86 97 85 95 98 26 87 98 87 94 99 88 92 99 94 88 100 93 89 100 89 96 101 91 84 101 84 93 102 90 8 102 8 9 102 96 90 103 93 100 103 101 93 104 95 91 104 91 101 105 92 85 105 85 97 106 94 99 106 98 94 107 97 95 107 95 104 108 100 96 108 96 102 109 27 26 109 28 27 109 26 98 109 98 106 110 103 100 110 100 108 111 106 99 111 92 105 111 99 92 112 101 103 112 104 101 113 9 10 113 102 9 114 97 107 114 105 97 115 112 103 115 103 110 116 104 112 116 107 104 117 106 111 118 114 107 118 107 116 119 108 102 119 102 113 120 105 114 120 111 105 121 108 119 121 110 108 122 10 2 122 2 22 122 113 10 123 106 117 123 29 28 123 28 109 123 109 106 124 112 115 124 116 112 125 120 114 125 114 118 126 110 121 126 115 110 127 118 116 127 116 124 128 111 120 128 117 111 129 119 113 129 122 22 129 113 122 130 125 118 130 118 127 131 121 119 131 129 22 131 119 129 132 123 117 132 117 128 132 29 123 132 30 29 133 128 120 133 120 125 134 124 115 134 115 126 135 131 22 135 22 23 135 134 126 135 121 131 135 126 121 136 125 130 136 133 125 137 124 134 137 127 124 138 128 133 138 132 128 139 130 127 139 127 137 140 135 23 140 134 135 141 30 132 141 132 138 142 133 136 142 138 133 143 137 134 143 140 23 143 139 137 143 134 140 144 136 130 144 130 139 145 141 138 145 138 142 +125 125 1 0.0763937571447893 +-9.6209138584167 -2.72727272727273 2.5 -9.6209138584167 -2.72727272727273 12.5 -9.8333216603563 -1.81818181818182 1.5 -9.62391661201899 -2.71665769741501 2.34876844464671 -9.63179591843902 -2.688588362981 2.21311461699776 -9.64324553890889 -2.64722788522649 2.09166790953149 -9.65741863854612 -2.59504628852193 1.98262028426794 -9.6784782009358 -2.51536472784982 1.86002308426756 -9.70157999063581 -2.42473620972377 1.7565630241386 -9.72525336436251 -2.32797057527537 1.67305385388011 -9.75093204159365 -2.21795498590457 1.60249822739805 -9.77832641110002 -2.09387979552319 1.5473718276705 -9.80404988900026 -1.96992532193557 1.51410607820211 -9.81868117349391 -1.89565292531753 1.50365644149694 -9.8333216603563 -1.81818181818182 13.5 -9.62338902776945 -2.7185260013919 12.6373267128473 -9.63022006065512 -2.69422745575697 12.7655128978783 -9.64062213081718 -2.65676587805441 12.8841963382202 -9.65783906123415 -2.59348118708817 13.0202038109202 -9.68070345609377 -2.50678690653282 13.1511168481992 -9.70470129977167 -2.41221323328645 13.2556030264135 -9.73164312723891 -2.30111321842551 13.3463112260545 -9.75810095211593 -2.18619894068939 13.4138792468684 -9.78332366992611 -2.070405266959 13.4605126400563 -9.80826898531732 -1.94880976794266 13.4895666701213 -9.8333216603563 1.81818181818182 1.5 -9.9814342546724 0.609073246541324 1.5 -9.9814342546724 -0.609073246541326 1.5 -9.8333216603563 1.81818181818182 13.5 -9.9814342546724 0.609073246541324 13.5 -9.9814342546724 -0.609073246541326 13.5 -9.6209138584167 2.72727272727273 2.5 -9.62391661234663 2.71665769625074 2.34876843636319 -9.63179591944652 2.68858835936951 2.21311460386293 -9.64713958280438 2.63300168436734 2.05854895497528 -9.67024707541481 2.54682576954701 1.90390358268125 -9.69785969733545 2.439573177997 1.77157296284859 -9.72609685550131 2.32444401043219 1.67042546236689 -9.75397768730539 2.20452245994619 1.59536938751005 -9.78380507289697 2.06812917726132 1.53876342915876 -9.80841787219617 1.94806027738175 1.51031329769965 -9.6209138584167 2.72727272727273 12.5 -9.62509412542365 2.71248282514865 12.6783621433535 -9.63633879259761 2.67226021829846 12.8407251327237 -9.6530672600127 2.61118602799997 12.9869619601498 -9.67425155784274 2.53157200105353 13.1179970853632 -9.69931186974607 2.43379318201105 13.2343534797465 -9.72787765123169 2.31698001768382 13.3350510198716 -9.75622390058737 2.19456036635356 13.4097261361585 -9.78341711716556 2.06996364981084 13.4606536563738 -9.8083165803204 1.94857020919913 13.4896051125929 10 0 22.5 10 0 22.5 9.84807753012208 1.7364817766693 22.5 9.39692620785908 3.42020143325669 22.5 8.66025403784439 5 22.5 7.66044443118978 6.4278760968654 22.5 6.42787609686539 7.66044443118978 22.5 5 8.66025403784439 22.5 3.42020143325668 9.39692620785909 22.5 1.7364817766693 9.84807753012208 22.5 -7.105427357601e-015 10 22.5 -1.73648177666931 9.84807753012208 22.5 -3.42020143325669 9.39692620785908 22.5 -5.00000000000001 8.66025403784438 22.5 -6.4278760968654 7.66044443118977 22.5 -7.66044443118979 6.42787609686538 22.5 -8.66025403784439 4.99999999999999 22.5 -9.39692620785909 3.42020143325667 22.5 -9.84807753012208 1.73648177666929 22.5 -10 -2.09798541386808e-014 22.5 -9.84807753012208 -1.73648177666933 22.5 -9.39692620785907 -3.42020143325671 22.5 -8.66025403784437 -5.00000000000002 22.5 -7.66044443118976 -6.42787609686542 22.5 -6.42787609686537 -7.6604444311898 22.5 -4.99999999999997 -8.6602540378444 22.5 -3.42020143325666 -9.39692620785909 22.5 -1.73648177666928 -9.84807753012208 22.5 2.48689957516035e-014 -10 22.5 1.73648177666933 -9.84807753012208 22.5 3.42020143325671 -9.39692620785908 22.5 5.00000000000001 -8.66025403784438 22.5 6.4278760968654 -7.66044443118977 22.5 7.66044443118979 -6.42787609686538 22.5 8.66025403784439 -4.99999999999999 22.5 9.39692620785909 -3.42020143325668 22.5 9.84807753012208 -1.7364817766693 22.5 10 0 0 10 0 0 9.84807753012208 1.7364817766693 0 9.39692620785908 3.42020143325669 0 8.66025403784439 5 0 7.66044443118978 6.4278760968654 0 6.42787609686539 7.66044443118978 0 5 8.66025403784439 0 3.42020143325668 9.39692620785909 0 1.7364817766693 9.84807753012208 0 -7.105427357601e-015 10 0 -1.73648177666931 9.84807753012208 0 -3.42020143325669 9.39692620785908 0 -5.00000000000001 8.66025403784438 0 -6.4278760968654 7.66044443118977 0 -7.66044443118979 6.42787609686538 0 -8.66025403784439 4.99999999999999 0 -9.39692620785909 3.42020143325667 0 -9.84807753012208 1.73648177666929 0 -10 -2.09798541386808e-014 0 -9.84807753012208 -1.73648177666933 0 -9.39692620785907 -3.42020143325671 0 -8.66025403784437 -5.00000000000002 0 -7.66044443118976 -6.42787609686542 0 -6.42787609686537 -7.6604444311898 0 -4.99999999999997 -8.6602540378444 0 -3.42020143325666 -9.39692620785909 0 -1.73648177666928 -9.84807753012208 0 2.48689957516035e-014 -10 0 1.73648177666933 -9.84807753012208 0 3.42020143325671 -9.39692620785908 0 5.00000000000001 -8.66025403784438 0 6.4278760968654 -7.66044443118977 0 7.66044443118979 -6.42787609686538 0 8.66025403784439 -4.99999999999999 0 9.39692620785909 -3.42020143325668 0 9.84807753012208 -1.7364817766693 0 3.41781928435338 2.5 3.41781928435338 12.5 3.3244277905827 1.5 3.41671612797092 2.34876844464673 3.41380070071703 2.21311461699778 3.40950909757159 2.09166790953148 3.40410187748002 1.98262028426796 3.3958600968899 1.86002308426758 3.38650740489995 1.75656302413861 3.37654542783379 1.67305385388011 3.36524810066668 1.60249822739804 3.35254167647398 1.54737182767048 3.33988204658985 1.51410607820209 3.332312046094 1.50365644149695 3.3244277905827 13.5 3.41691026464706 12.6373267128473 3.41438621498731 12.7655128978783 3.41049831739137 12.8841963382202 3.40393981891857 13.0202038109202 3.39497392092406 13.1511168481992 3.38521679445245 13.2556030264135 3.37378472652622 13.3463112260545 3.36199258131872 13.4138792468684 3.35014162155048 13.4605126400563 3.33772875243131 13.4895666701213 2.95875751659688 1.5 3.08064760792549 1.5 3.2025376992541 1.5 2.95875751659688 13.5 3.08064760792549 13.5 3.2025376992541 13.5 2.8653660228262 2.5 2.86646917932962 2.3487684363632 2.86938460683749 2.21311460386294 2.87515116183836 2.05854895497524 2.88407321166729 1.90390358268124 2.89514827403997 1.77157296284862 2.90700248294567 1.67042546236687 2.91931455447857 1.59536938751004 2.93327632984545 1.53876342915877 2.94553296832063 1.51031329769963 2.8653660228262 12.5 2.86690295445639 12.6783621433535 2.87107944003301 12.8407251327237 2.8774118264256 12.9869619601498 2.88565027661273 13.1179970853632 2.89574423678575 13.2343534797465 2.90776983178418 13.3350510198716 2.920335773318 13.4097261361586 2.93308882520067 13.4606536563738 2.94548097885029 13.4896051125929 0 22.5 6.28318530717959 22.5 0.174532925199433 22.5 0.349065850398866 22.5 0.523598775598299 22.5 0.698131700797732 22.5 0.872664625997165 22.5 1.0471975511966 22.5 1.22173047639603 22.5 1.39626340159546 22.5 1.5707963267949 22.5 1.74532925199433 22.5 1.91986217719376 22.5 2.0943951023932 22.5 2.26892802759263 22.5 2.44346095279206 22.5 2.6179938779915 22.5 2.79252680319093 22.5 2.96705972839036 22.5 3.1415926535898 22.5 3.31612557878923 22.5 3.49065850398866 22.5 3.66519142918809 22.5 3.83972435438753 22.5 4.01425727958696 22.5 4.18879020478639 22.5 4.36332312998583 22.5 4.53785605518526 22.5 4.71238898038469 22.5 4.88692190558413 22.5 5.06145483078356 22.5 5.23598775598299 22.5 5.41052068118242 22.5 5.58505360638186 22.5 5.75958653158129 22.5 5.93411945678072 22.5 6.10865238198015 22.5 6.28318530717959 0 0 0 0.174532925199433 0 0.349065850398866 0 0.523598775598299 0 0.698131700797732 0 0.872664625997165 0 1.0471975511966 0 1.22173047639603 0 1.39626340159546 0 1.5707963267949 0 1.74532925199433 0 1.91986217719376 0 2.0943951023932 0 2.26892802759263 0 2.44346095279206 0 2.6179938779915 0 2.79252680319093 0 2.96705972839036 0 3.1415926535898 0 3.31612557878923 0 3.49065850398866 0 3.66519142918809 0 3.83972435438753 0 4.01425727958696 0 4.18879020478639 0 4.36332312998583 0 4.53785605518526 0 4.71238898038469 0 4.88692190558413 0 5.06145483078356 0 5.23598775598299 0 5.41052068118242 0 5.58505360638186 0 5.75958653158129 0 5.93411945678072 0 6.10865238198015 0 54 52 90 54 90 91 55 54 91 55 91 92 56 55 92 56 92 93 57 56 93 57 93 94 58 57 94 58 94 95 59 58 95 59 95 96 60 59 96 60 96 97 60 97 98 61 60 98 62 61 98 62 98 99 63 62 99 63 99 100 64 63 100 64 100 101 65 64 101 65 101 102 66 102 103 66 65 102 67 103 104 67 66 103 34 33 106 32 106 33 35 34 106 36 35 106 37 36 106 107 38 37 107 39 38 107 40 39 107 37 106 68 104 105 68 67 104 41 40 107 26 41 107 42 105 106 42 68 105 42 106 32 27 26 107 69 42 43 69 43 44 69 44 45 69 45 46 69 46 47 69 68 42 108 27 107 28 27 108 70 29 30 70 69 47 70 47 48 70 48 49 70 49 50 70 50 51 70 51 29 109 28 108 3 28 109 14 3 109 13 14 109 12 13 109 11 12 109 10 11 109 9 10 109 110 1 4 110 4 5 110 5 6 110 6 7 110 7 8 110 8 9 110 9 109 71 30 31 71 70 30 2 1 110 111 2 110 72 22 21 72 23 22 72 24 23 72 25 24 72 15 25 72 31 15 72 71 31 73 16 2 73 17 16 73 18 17 73 19 18 73 20 19 73 21 20 73 72 21 74 73 2 74 2 111 75 74 111 75 111 112 75 112 113 76 75 113 77 113 114 77 76 113 78 114 115 78 77 114 79 115 116 79 78 115 80 116 117 80 117 118 80 79 116 81 80 118 82 118 119 82 81 118 83 119 120 83 82 119 84 120 121 84 83 120 85 121 122 85 122 123 85 84 121 86 85 123 87 123 124 87 86 123 88 124 125 88 87 124 53 125 89 53 88 125 +71 71 1 3.9190872769268e-014 +10 0 22.5 9.84807753012208 1.7364817766693 22.5 9.39692620785908 3.42020143325669 22.5 8.66025403784439 5 22.5 7.66044443118978 6.4278760968654 22.5 6.42787609686539 7.66044443118978 22.5 5 8.66025403784439 22.5 3.42020143325668 9.39692620785909 22.5 1.7364817766693 9.84807753012208 22.5 -7.105427357601e-015 10 22.5 -1.73648177666931 9.84807753012208 22.5 -3.42020143325669 9.39692620785908 22.5 -5.00000000000001 8.66025403784438 22.5 -6.4278760968654 7.66044443118977 22.5 -7.66044443118979 6.42787609686538 22.5 -8.66025403784439 4.99999999999999 22.5 -9.39692620785909 3.42020143325667 22.5 -9.84807753012208 1.73648177666929 22.5 -10 -2.09798541386808e-014 22.5 -9.84807753012208 -1.73648177666933 22.5 -9.39692620785907 -3.42020143325671 22.5 -8.66025403784437 -5.00000000000002 22.5 -7.66044443118976 -6.42787609686542 22.5 -6.42787609686537 -7.6604444311898 22.5 -4.99999999999997 -8.6602540378444 22.5 -3.42020143325666 -9.39692620785909 22.5 -1.73648177666928 -9.84807753012208 22.5 2.48689957516035e-014 -10 22.5 1.73648177666933 -9.84807753012208 22.5 3.42020143325671 -9.39692620785908 22.5 5.00000000000001 -8.66025403784438 22.5 6.4278760968654 -7.66044443118977 22.5 7.66044443118979 -6.42787609686538 22.5 8.66025403784439 -4.99999999999999 22.5 9.39692620785909 -3.42020143325668 22.5 9.84807753012208 -1.7364817766693 22.5 8 0 22.5 7.87143670878903 1.42845515838912 22.5 7.48987896511789 2.81099859265076 22.5 6.86759034881491 4.10319421924727 22.5 6.02457172802887 5.26350980751772 22.5 4.98791841486985 6.25465185974425 22.5 3.79094929978397 7.04476425485392 22.5 2.47213595499956 7.60845213036124 22.5 1.07386612654122 7.92759809414348 22.5 -0.358918642804142 7.99194453233052 22.5 -1.78016747165054 7.79942329745458 22.5 -3.14420025323141 7.3562221804116 22.5 -4.40717585161684 6.67658602977041 22.5 -5.52850119189494 5.78235891061912 22.5 -6.47213595499959 4.70228201833977 22.5 -7.20775094321936 3.47106991294045 22.5 -7.71170288556683 2.12829476453338 22.5 -7.96779435196191 0.717114471227448 22.5 -7.96779435196191 -0.717114471227488 22.5 -7.71170288556682 -2.12829476453342 22.5 -7.20775094321935 -3.47106991294048 22.5 -6.47213595499957 -4.7022820183398 22.5 -5.5285011918949 -5.78235891061915 22.5 -4.40717585161681 -6.67658602977043 22.5 -3.14420025323137 -7.35622218041161 22.5 -1.7801674716505 -7.79942329745459 22.5 -0.358918642804099 -7.99194453233052 22.5 1.07386612654126 -7.92759809414348 22.5 2.4721359549996 -7.60845213036122 22.5 3.79094929978401 -7.0447642548539 22.5 4.98791841486988 -6.25465185974423 22.5 6.0245717280289 -5.26350980751769 22.5 6.86759034881494 -4.10319421924723 22.5 7.4898789651179 -2.81099859265072 22.5 7.87143670878904 -1.42845515838907 22.5 10 0 9.84807753012208 1.7364817766693 9.39692620785908 3.42020143325669 8.66025403784439 5 7.66044443118978 6.4278760968654 6.42787609686539 7.66044443118978 4.99999999999998 8.6602540378444 3.42020143325669 9.39692620785908 1.73648177666934 9.84807753012208 -3.5527136788005e-014 10 -1.73648177666931 9.84807753012208 -3.42020143325666 9.39692620785909 -5.00000000000004 8.66025403784436 -6.4278760968654 7.66044443118977 -7.66044443118977 6.4278760968654 -8.66025403784442 4.99999999999995 -9.39692620785909 3.42020143325666 -9.84807753012208 1.73648177666931 -10 -6.92779167366098e-014 -9.84807753012207 -1.73648177666934 -9.39692620785908 -3.4202014332567 -8.6602540378444 -4.99999999999998 -7.66044443118975 -6.42787609686543 -6.42787609686537 -7.6604444311898 -5.00000000000001 -8.66025403784438 -3.42020143325663 -9.3969262078591 -1.73648177666928 -9.84807753012209 -1.77635683940025e-015 -10 1.73648177666938 -9.84807753012207 3.42020143325672 -9.39692620785907 5.00000000000001 -8.66025403784438 6.42787609686538 -7.66044443118979 7.66044443118981 -6.42787609686535 8.6602540378444 -4.99999999999998 9.39692620785908 -3.42020143325669 9.84807753012208 -1.73648177666934 8 -2.30926389122033e-014 7.87143670878903 1.42845515838911 7.4898789651179 2.81099859265075 6.86759034881493 4.10319421924725 6.02457172802889 5.2635098075177 4.98791841486988 6.25465185974423 3.79094929978394 7.04476425485393 2.47213595499953 7.60845213036124 1.0738661265412 7.92759809414348 -0.35891864280415 7.99194453233051 -1.78016747165054 7.79942329745458 -3.1442002532314 7.3562221804116 -4.40717585161683 6.67658602977042 -5.52850119189492 5.78235891061913 -6.47213595499957 4.70228201833979 -7.20775094321935 3.47106991294048 -7.71170288556684 2.12829476453335 -7.96779435196192 0.71711447122742 -7.96779435196191 -0.717114471227502 -7.71170288556682 -2.12829476453343 -7.20775094321934 -3.47106991294048 -6.47213595499957 -4.70228201833979 -5.52850119189491 -5.78235891061914 -4.40717585161682 -6.67658602977042 -3.1442002532314 -7.3562221804116 -1.78016747165045 -7.7994232974546 -0.358918642804072 -7.99194453233052 1.07386612654128 -7.92759809414347 2.47213595499961 -7.60845213036122 3.79094929978401 -7.04476425485389 4.98791841486988 -6.25465185974423 6.0245717280289 -5.26350980751769 6.86759034881493 -4.10319421924725 7.4898789651179 -2.81099859265075 7.87143670878903 -1.42845515838911 14 15 50 33 68 32 49 14 50 69 68 33 13 14 49 34 69 33 48 13 49 70 69 34 35 70 34 12 13 48 59 23 24 47 12 48 58 22 23 58 23 59 71 70 35 60 24 25 60 59 24 57 21 22 57 22 58 61 25 26 36 37 71 36 71 35 61 60 25 11 47 46 11 12 47 56 20 21 56 21 57 10 46 45 62 26 27 10 11 46 1 37 36 62 61 26 55 20 56 55 19 20 63 62 27 63 27 28 54 18 19 54 19 55 64 28 29 64 63 28 2 38 37 2 37 1 53 17 18 9 45 44 53 18 54 9 10 45 3 39 38 65 64 29 65 29 30 3 38 2 52 17 53 8 44 43 16 17 52 8 9 44 7 8 43 7 43 42 4 40 39 66 65 30 66 30 31 4 39 3 6 7 42 51 16 52 6 42 41 5 6 41 67 66 31 5 41 40 5 40 4 32 67 31 15 16 51 50 15 51 68 67 32 +71 71 1 3.9190872769268e-014 +10 0 0 9.84807753012208 1.7364817766693 0 9.39692620785908 3.42020143325669 0 8.66025403784439 5 0 7.66044443118978 6.4278760968654 0 6.42787609686539 7.66044443118978 0 5 8.66025403784439 0 3.42020143325668 9.39692620785909 0 1.7364817766693 9.84807753012208 0 -7.105427357601e-015 10 0 -1.73648177666931 9.84807753012208 0 -3.42020143325669 9.39692620785908 0 -5.00000000000001 8.66025403784438 0 -6.4278760968654 7.66044443118977 0 -7.66044443118979 6.42787609686538 0 -8.66025403784439 4.99999999999999 0 -9.39692620785909 3.42020143325667 0 -9.84807753012208 1.73648177666929 0 -10 -2.09798541386808e-014 0 -9.84807753012208 -1.73648177666933 0 -9.39692620785907 -3.42020143325671 0 -8.66025403784437 -5.00000000000002 0 -7.66044443118976 -6.42787609686542 0 -6.42787609686537 -7.6604444311898 0 -4.99999999999997 -8.6602540378444 0 -3.42020143325666 -9.39692620785909 0 -1.73648177666928 -9.84807753012208 0 2.48689957516035e-014 -10 0 1.73648177666933 -9.84807753012208 0 3.42020143325671 -9.39692620785908 0 5.00000000000001 -8.66025403784438 0 6.4278760968654 -7.66044443118977 0 7.66044443118979 -6.42787609686538 0 8.66025403784439 -4.99999999999999 0 9.39692620785909 -3.42020143325668 0 9.84807753012208 -1.7364817766693 0 8 0 0 7.87143670878903 1.42845515838912 0 7.48987896511789 2.81099859265076 0 6.86759034881491 4.10319421924727 0 6.02457172802887 5.26350980751772 0 4.98791841486985 6.25465185974425 0 3.79094929978397 7.04476425485392 0 2.47213595499956 7.60845213036124 0 1.07386612654122 7.92759809414348 0 -0.358918642804142 7.99194453233052 0 -1.78016747165054 7.79942329745458 0 -3.14420025323141 7.3562221804116 0 -4.40717585161684 6.67658602977041 0 -5.52850119189494 5.78235891061912 0 -6.47213595499959 4.70228201833977 0 -7.20775094321936 3.47106991294045 0 -7.71170288556683 2.12829476453338 0 -7.96779435196191 0.717114471227448 0 -7.96779435196191 -0.717114471227488 0 -7.71170288556682 -2.12829476453342 0 -7.20775094321935 -3.47106991294048 0 -6.47213595499957 -4.7022820183398 0 -5.5285011918949 -5.78235891061915 0 -4.40717585161681 -6.67658602977043 0 -3.14420025323137 -7.35622218041161 0 -1.7801674716505 -7.79942329745459 0 -0.358918642804099 -7.99194453233052 0 1.07386612654126 -7.92759809414348 0 2.4721359549996 -7.60845213036122 0 3.79094929978401 -7.0447642548539 0 4.98791841486988 -6.25465185974423 0 6.0245717280289 -5.26350980751769 0 6.86759034881494 -4.10319421924723 0 7.4898789651179 -2.81099859265072 0 7.87143670878904 -1.42845515838907 0 10 3.37507799486048e-014 9.84807753012208 1.7364817766693 9.39692620785908 3.42020143325669 8.66025403784439 5 7.66044443118978 6.4278760968654 6.42787609686539 7.66044443118978 4.99999999999998 8.6602540378444 3.42020143325669 9.39692620785908 1.73648177666934 9.84807753012208 -3.5527136788005e-014 10 -1.73648177666931 9.84807753012208 -3.42020143325666 9.39692620785909 -5.00000000000004 8.66025403784436 -6.4278760968654 7.66044443118977 -7.66044443118977 6.4278760968654 -8.66025403784442 4.99999999999995 -9.39692620785909 3.42020143325666 -9.84807753012208 1.73648177666931 -10 -6.92779167366098e-014 -9.84807753012207 -1.73648177666934 -9.39692620785908 -3.4202014332567 -8.6602540378444 -4.99999999999998 -7.66044443118975 -6.42787609686543 -6.42787609686537 -7.6604444311898 -5.00000000000001 -8.66025403784438 -3.42020143325663 -9.3969262078591 -1.73648177666928 -9.84807753012209 -1.77635683940025e-015 -10 1.73648177666938 -9.84807753012207 3.42020143325672 -9.39692620785907 5.00000000000001 -8.66025403784438 6.42787609686538 -7.66044443118979 7.66044443118981 -6.42787609686535 8.6602540378444 -4.99999999999998 9.39692620785908 -3.42020143325669 9.84807753012208 -1.73648177666934 8 2.8421709430404e-014 7.87143670878903 1.42845515838911 7.4898789651179 2.81099859265075 6.86759034881493 4.10319421924725 6.02457172802889 5.2635098075177 4.98791841486988 6.25465185974423 3.79094929978394 7.04476425485393 2.47213595499953 7.60845213036124 1.0738661265412 7.92759809414348 -0.35891864280415 7.99194453233051 -1.78016747165054 7.79942329745458 -3.1442002532314 7.3562221804116 -4.40717585161683 6.67658602977042 -5.52850119189492 5.78235891061913 -6.47213595499957 4.70228201833979 -7.20775094321935 3.47106991294048 -7.71170288556684 2.12829476453335 -7.96779435196192 0.71711447122742 -7.96779435196191 -0.717114471227502 -7.71170288556682 -2.12829476453343 -7.20775094321934 -3.47106991294048 -6.47213595499957 -4.70228201833979 -5.52850119189491 -5.78235891061914 -4.40717585161682 -6.67658602977042 -3.1442002532314 -7.3562221804116 -1.78016747165045 -7.7994232974546 -0.358918642804072 -7.99194453233052 1.07386612654128 -7.92759809414347 2.47213595499961 -7.60845213036122 3.79094929978401 -7.04476425485389 4.98791841486988 -6.25465185974423 6.0245717280289 -5.26350980751769 6.86759034881493 -4.10319421924725 7.4898789651179 -2.81099859265075 7.87143670878903 -1.42845515838911 14 15 50 33 68 32 49 14 50 69 68 33 13 14 49 34 69 33 48 13 49 70 69 34 35 70 34 12 13 48 59 23 24 47 12 48 58 22 23 58 23 59 71 70 35 60 24 25 60 59 24 57 21 22 57 22 58 61 25 26 36 37 71 36 71 35 61 60 25 11 47 46 11 12 47 56 20 21 56 21 57 10 46 45 62 26 27 10 11 46 1 37 36 62 61 26 55 20 56 55 19 20 63 62 27 63 27 28 54 18 19 54 19 55 64 28 29 64 63 28 2 38 37 2 37 1 53 17 18 9 45 44 53 18 54 9 10 45 3 39 38 65 64 29 65 29 30 3 38 2 52 17 53 8 44 43 16 17 52 8 9 44 7 8 43 7 43 42 4 40 39 66 65 30 66 30 31 4 39 3 6 7 42 51 16 52 6 42 41 5 6 41 67 66 31 5 41 40 5 40 4 32 67 31 15 16 51 50 15 51 68 67 32 +72 70 1 0.0322056480380918 +8 0 0.500999999999998 8 0 23.001 8 0 0.500999999999998 7.87143670878903 1.42845515838912 0.500999999999998 7.48987896511789 2.81099859265076 0.500999999999998 6.86759034881491 4.10319421924727 0.500999999999998 6.02457172802887 5.26350980751772 0.500999999999998 4.98791841486985 6.25465185974425 0.500999999999998 3.79094929978397 7.04476425485392 0.500999999999998 2.47213595499956 7.60845213036124 0.500999999999998 1.07386612654122 7.92759809414348 0.500999999999998 -0.358918642804142 7.99194453233052 0.500999999999998 -1.78016747165054 7.79942329745458 0.500999999999998 -3.14420025323141 7.3562221804116 0.500999999999998 -4.40717585161684 6.67658602977041 0.500999999999998 -5.52850119189494 5.78235891061912 0.500999999999998 -6.47213595499959 4.70228201833977 0.500999999999998 -7.20775094321936 3.47106991294045 0.500999999999998 -7.71170288556683 2.12829476453338 0.500999999999998 -7.96779435196191 0.717114471227448 0.500999999999998 -7.96779435196191 -0.717114471227488 0.500999999999998 -7.71170288556682 -2.12829476453342 0.500999999999998 -7.20775094321935 -3.47106991294048 0.500999999999998 -6.47213595499957 -4.7022820183398 0.500999999999998 -5.5285011918949 -5.78235891061915 0.500999999999998 -4.40717585161681 -6.67658602977043 0.500999999999998 -3.14420025323137 -7.35622218041161 0.500999999999998 -1.7801674716505 -7.79942329745459 0.500999999999998 -0.358918642804099 -7.99194453233052 0.500999999999998 1.07386612654126 -7.92759809414348 0.500999999999998 2.4721359549996 -7.60845213036122 0.500999999999998 3.79094929978401 -7.0447642548539 0.500999999999998 4.98791841486988 -6.25465185974423 0.500999999999998 6.0245717280289 -5.26350980751769 0.500999999999998 6.86759034881494 -4.10319421924723 0.500999999999998 7.4898789651179 -2.81099859265072 0.500999999999998 7.87143670878904 -1.42845515838907 0.500999999999998 8 0 23.001 7.87143670878903 1.42845515838912 23.001 7.48987896511789 2.81099859265076 23.001 6.86759034881491 4.10319421924727 23.001 6.02457172802887 5.26350980751772 23.001 4.98791841486985 6.25465185974425 23.001 3.79094929978397 7.04476425485392 23.001 2.47213595499956 7.60845213036124 23.001 1.07386612654122 7.92759809414348 23.001 -0.358918642804142 7.99194453233052 23.001 -1.78016747165054 7.79942329745458 23.001 -3.14420025323141 7.3562221804116 23.001 -4.40717585161684 6.67658602977041 23.001 -5.52850119189494 5.78235891061912 23.001 -6.47213595499959 4.70228201833977 23.001 -7.20775094321936 3.47106991294045 23.001 -7.71170288556683 2.12829476453338 23.001 -7.96779435196191 0.717114471227448 23.001 -7.96779435196191 -0.717114471227488 23.001 -7.71170288556682 -2.12829476453342 23.001 -7.20775094321935 -3.47106991294048 23.001 -6.47213595499957 -4.7022820183398 23.001 -5.5285011918949 -5.78235891061915 23.001 -4.40717585161681 -6.67658602977043 23.001 -3.14420025323137 -7.35622218041161 23.001 -1.7801674716505 -7.79942329745459 23.001 -0.358918642804099 -7.99194453233052 23.001 1.07386612654126 -7.92759809414348 23.001 2.4721359549996 -7.60845213036122 23.001 3.79094929978401 -7.0447642548539 23.001 4.98791841486988 -6.25465185974423 23.001 6.0245717280289 -5.26350980751769 23.001 6.86759034881494 -4.10319421924723 23.001 7.4898789651179 -2.81099859265072 23.001 7.87143670878904 -1.42845515838907 23.001 6.28318530717959 0.500999999999998 6.28318530717959 23.001 0 0.500999999999998 0.17951958020513 0.500999999999998 0.35903916041026 0.500999999999998 0.53855874061539 0.500999999999998 0.71807832082052 0.500999999999998 0.89759790102565 0.500999999999998 1.07711748123079 0.500999999999998 1.25663706143592 0.500999999999998 1.43615664164105 0.500999999999998 1.61567622184618 0.500999999999998 1.79519580205131 0.500999999999998 1.97471538225644 0.500999999999998 2.15423496246157 0.500999999999998 2.3337545426667 0.500999999999998 2.51327412287183 0.500999999999998 2.69279370307696 0.500999999999998 2.8723132832821 0.500999999999998 3.05183286348723 0.500999999999998 3.23135244369236 0.500999999999998 3.41087202389749 0.500999999999998 3.59039160410262 0.500999999999998 3.76991118430775 0.500999999999998 3.94943076451288 0.500999999999998 4.12895034471801 0.500999999999998 4.30846992492314 0.500999999999998 4.48798950512828 0.500999999999998 4.66750908533341 0.500999999999998 4.84702866553854 0.500999999999998 5.02654824574367 0.500999999999998 5.2060678259488 0.500999999999998 5.38558740615393 0.500999999999998 5.56510698635906 0.500999999999998 5.74462656656419 0.500999999999998 5.92414614676932 0.500999999999998 6.10366572697445 0.500999999999998 0 23.001 0.17951958020513 23.001 0.35903916041026 23.001 0.53855874061539 23.001 0.71807832082052 23.001 0.89759790102565 23.001 1.07711748123079 23.001 1.25663706143592 23.001 1.43615664164105 23.001 1.61567622184618 23.001 1.79519580205131 23.001 1.97471538225644 23.001 2.15423496246157 23.001 2.3337545426667 23.001 2.51327412287183 23.001 2.69279370307696 23.001 2.8723132832821 23.001 3.05183286348723 23.001 3.23135244369236 23.001 3.41087202389749 23.001 3.59039160410262 23.001 3.76991118430775 23.001 3.94943076451288 23.001 4.12895034471801 23.001 4.30846992492314 23.001 4.48798950512828 23.001 4.66750908533341 23.001 4.84702866553854 23.001 5.02654824574367 23.001 5.2060678259488 23.001 5.38558740615393 23.001 5.56510698635906 23.001 5.74462656656419 23.001 5.92414614676932 23.001 6.10366572697445 23.001 58 22 23 58 57 22 59 23 24 59 24 25 59 58 23 39 3 4 39 38 3 60 25 26 60 59 25 40 4 5 40 39 4 61 60 26 41 5 6 41 6 7 41 40 5 62 26 27 62 61 26 42 41 7 63 27 28 63 62 27 43 7 8 43 42 7 64 28 29 64 63 28 44 8 9 44 9 10 44 43 8 65 29 30 65 64 29 45 44 10 66 30 31 66 31 32 66 65 30 46 45 10 46 10 11 67 66 32 47 11 12 68 32 33 47 46 11 68 67 32 48 47 12 48 12 13 69 33 34 69 68 33 49 13 14 70 69 34 49 14 15 49 48 13 70 34 35 70 35 36 71 70 36 50 15 16 50 49 15 72 71 36 51 50 16 72 36 37 2 72 37 2 37 1 52 16 17 52 51 16 53 17 18 53 52 17 54 18 19 54 53 18 55 19 20 55 54 19 56 20 21 56 21 22 56 55 20 57 56 22 +36 34 1 1.42894585053455e-011 +-19.9997499984374 -0.100000000022452 20 19.9997499984373 -0.100000000038794 20 -19.6430574620626 -3.7616875923056 20 -18.6216838549775 -7.29608733536471 20 -16.9701903805011 -10.5836023380298 20 -14.7444602153233 -13.5129897860817 20 -12.019807536586 -15.9851251725919 20 -8.88842904346968 -17.9163564694166 20 -5.45628420860864 -19.2413347415113 20 -1.83950982527317 -19.9152254218405 20 1.83950982525689 -19.915225421842 20 5.45628420859291 -19.2413347415157 20 8.88842904345503 -17.9163564694238 20 12.0198075365729 -15.9851251726017 20 14.7444602153122 -13.5129897860938 20 16.9701903804924 -10.5836023380437 20 18.6216838549716 -7.29608733537993 20 19.6430574620595 -3.76168759232166 20 -13.9996428525872 -0.100000000021063 20 13.9996428525871 -0.10000000003407 20 -13.7451368505203 -2.65917524064682 20 -13.0267920033917 -5.1286148325226 20 -11.8688493389824 -7.42498588338973 20 -10.310384407718 -9.47079581477112 20 -8.40398865205892 -11.1970074009114 20 -6.21399467306641 -12.5453684761789 20 -3.81430528371022 -13.470377693393 20 -1.28589960896893 -13.9408199972474 20 1.28589960895611 -13.9408199972486 20 3.81430528369784 -13.4703776933965 20 6.21399467305487 -12.5453684761846 20 8.40398865204862 -11.1970074009191 20 10.3103844077093 -9.4707958147806 20 11.8688493389756 -7.42498588340064 20 13.026792003387 -5.12861483253458 20 13.7451368505178 -2.65917524065947 20 -19.9997499984374 -0.100000000022376 19.9997499984373 -0.100000000038783 -19.6430574620626 -3.7616875923056 -18.6216838549775 -7.29608733536471 -16.9701903805011 -10.5836023380298 -14.7444602153233 -13.5129897860817 -12.019807536586 -15.9851251725919 -8.88842904346968 -17.9163564694166 -5.45628420860864 -19.2413347415113 -1.83950982527317 -19.9152254218405 1.83950982525689 -19.915225421842 5.45628420859291 -19.2413347415157 8.88842904345503 -17.9163564694238 12.0198075365729 -15.9851251726017 14.7444602153122 -13.5129897860938 16.9701903804924 -10.5836023380437 18.6216838549716 -7.29608733537993 19.6430574620595 -3.76168759232166 -13.9996428525872 -0.100000000000001 13.9996428525871 -0.100000000000001 -13.7451368505203 -2.65917524064682 -13.0267920033917 -5.1286148325226 -11.8688493389824 -7.42498588338973 -10.310384407718 -9.47079581477112 -8.40398865205892 -11.1970074009114 -6.21399467306641 -12.5453684761789 -3.81430528371023 -13.470377693393 -1.28589960896893 -13.9408199972474 1.28589960895611 -13.9408199972486 3.81430528369783 -13.4703776933965 6.21399467305487 -12.5453684761846 8.40398865204862 -11.1970074009191 10.3103844077093 -9.4707958147806 11.8688493389756 -7.42498588340064 13.026792003387 -5.12861483253458 13.7451368505178 -2.65917524065947 18 36 17 18 20 36 2 20 18 24 6 7 25 7 8 25 24 7 23 5 6 23 6 24 26 8 9 26 25 8 22 4 5 22 5 23 27 9 10 27 26 9 21 3 4 21 4 22 28 27 10 19 1 3 19 3 21 29 10 11 29 28 10 30 11 12 30 29 11 31 12 13 31 30 12 32 13 14 32 31 13 33 32 14 15 33 14 34 33 15 16 34 15 35 34 16 17 35 16 17 36 35 +36 34 1 0.0847745781587173 +-19.9997499984374 -0.100000000022452 20 19.9997499984373 -0.100000000038794 20 -19.6430574620626 -3.7616875923056 20 -18.6216838549775 -7.29608733536471 20 -16.9701903805011 -10.5836023380298 20 -14.7444602153233 -13.5129897860817 20 -12.019807536586 -15.9851251725919 20 -8.88842904346968 -17.9163564694166 20 -5.45628420860864 -19.2413347415113 20 -1.83950982527317 -19.9152254218405 20 1.83950982525689 -19.915225421842 20 5.45628420859291 -19.2413347415157 20 8.88842904345503 -17.9163564694238 20 12.0198075365729 -15.9851251726017 20 14.7444602153122 -13.5129897860938 20 16.9701903804924 -10.5836023380437 20 18.6216838549716 -7.29608733537993 20 19.6430574620595 -3.76168759232166 20 -19.9997499984374 -0.100000000022452 0 19.9997499984373 -0.100000000038794 0 -19.6430574620626 -3.7616875923056 0 -18.6216838549775 -7.29608733536471 0 -16.9701903805011 -10.5836023380298 0 -14.7444602153233 -13.5129897860817 0 -12.019807536586 -15.9851251725919 0 -8.88842904346968 -17.9163564694166 0 -5.45628420860864 -19.2413347415113 0 -1.83950982527317 -19.9152254218405 0 1.83950982525689 -19.915225421842 0 5.45628420859291 -19.2413347415157 0 8.88842904345503 -17.9163564694238 0 12.0198075365729 -15.9851251726017 0 14.7444602153122 -13.5129897860938 0 16.9701903804924 -10.5836023380437 0 18.6216838549716 -7.29608733537993 0 19.6430574620595 -3.76168759232166 0 3.14659267442448 20 6.27818528634408 20 3.3308040045374 20 3.51501533465032 20 3.69922666476323 20 3.88343799487615 20 4.06764932498907 20 4.25186065510199 20 4.4360719852149 20 4.62028331532782 20 4.80449464544074 20 4.98870597555366 20 5.17291730566658 20 5.35712863577949 20 5.54133996589241 20 5.72555129600533 20 5.90976262611825 20 6.09397395623116 20 3.14659267442336 0 6.27818528634602 0 3.3308040045374 0 3.51501533465032 0 3.69922666476323 0 3.88343799487615 0 4.06764932498907 0 4.25186065510199 0 4.4360719852149 0 4.62028331532782 0 4.80449464544074 0 4.98870597555366 0 5.17291730566658 0 5.35712863577949 0 5.54133996589241 0 5.72555129600533 0 5.90976262611825 0 6.09397395623116 0 1 19 21 3 1 21 4 21 22 4 22 23 4 3 21 5 4 23 6 23 24 6 5 23 7 24 25 7 6 24 8 25 26 8 26 27 8 7 25 9 8 27 10 27 28 10 9 27 11 28 29 11 10 28 12 29 30 12 11 29 13 30 31 13 31 32 13 12 30 14 13 32 15 32 33 15 33 34 15 14 32 16 15 34 17 34 35 17 35 36 17 16 34 18 17 36 2 18 36 2 36 20 +4 2 1 2.19889985849283e-011 +36.0003571474128 -2.10629985675226e-011 144 30.0002500015626 -2.24519985936311e-011 144 36.0003571474128 -2.10629985675226e-011 124 30.0002500015626 -2.24519985936311e-011 124 144 36.0003571474128 144 30.0002500015626 124 36.0003571474127 124 30.0002500015625 2 3 4 1 3 2 +4 2 1 3.72193294702802e-011 +69.9997499984373 -3.87939957935401e-011 144 63.9996428525871 -3.40699968237601e-011 144 69.9997499984373 -3.87939957935401e-011 124 63.9996428525871 -3.40699968237601e-011 124 144 69.9997499984373 144 63.9996428525871 124 69.9997499984375 124 63.9996428525873 1 4 2 1 3 4 +36 34 1 0.05918000275199 +-13.9996428525872 -0.100000000021063 29.1 13.9996428525871 -0.10000000003407 29.1 -13.7451368505203 -2.65917524064682 29.1 -13.0267920033917 -5.1286148325226 29.1 -11.8688493389824 -7.42498588338973 29.1 -10.310384407718 -9.47079581477112 29.1 -8.40398865205892 -11.1970074009114 29.1 -6.21399467306641 -12.5453684761789 29.1 -3.81430528371022 -13.470377693393 29.1 -1.28589960896893 -13.9408199972474 29.1 1.28589960895611 -13.9408199972486 29.1 3.81430528369784 -13.4703776933965 29.1 6.21399467305487 -12.5453684761846 29.1 8.40398865204862 -11.1970074009191 29.1 10.3103844077093 -9.4707958147806 29.1 11.8688493389756 -7.42498588340064 29.1 13.026792003387 -5.12861483253458 29.1 13.7451368505178 -2.65917524065947 29.1 -13.9996428525872 -0.100000000021063 9.09999999999999 13.9996428525871 -0.10000000003407 9.09999999999999 -13.7451368505203 -2.65917524064682 9.09999999999999 -13.0267920033917 -5.1286148325226 9.09999999999999 -11.8688493389824 -7.42498588338973 9.09999999999999 -10.310384407718 -9.47079581477112 9.09999999999999 -8.40398865205892 -11.1970074009114 9.09999999999999 -6.21399467306641 -12.5453684761789 9.09999999999999 -3.81430528371022 -13.470377693393 9.09999999999999 -1.28589960896893 -13.9408199972474 9.09999999999999 1.28589960895611 -13.9408199972486 9.09999999999999 3.81430528369784 -13.4703776933965 9.09999999999999 6.21399467305487 -12.5453684761846 9.09999999999999 8.40398865204862 -11.1970074009191 9.09999999999999 10.3103844077093 -9.4707958147806 9.09999999999999 11.8688493389756 -7.42498588340064 9.09999999999999 13.026792003387 -5.12861483253458 9.09999999999999 13.7451368505178 -2.65917524065947 9.09999999999999 3.14873557147413 29.1 6.27604238929432 29.1 3.33269479605179 29.1 3.51665402062945 29.1 3.70061324520711 29.1 3.88457246978476 29.1 4.06853169436242 29.1 4.25249091894008 29.1 4.43645014351774 29.1 4.6204093680954 29.1 4.80436859267306 29.1 4.98832781725071 29.1 5.17228704182837 29.1 5.35624626640603 29.1 5.54020549098369 29.1 5.72416471556135 29.1 5.90812394013901 29.1 6.09208316471666 29.1 3.14873557147263 9.09999999999999 6.27604238929675 9.09999999999999 3.33269479605179 9.09999999999999 3.51665402062945 9.09999999999999 3.70061324520711 9.09999999999999 3.88457246978476 9.09999999999999 4.06853169436242 9.09999999999999 4.25249091894008 9.09999999999999 4.43645014351774 9.09999999999999 4.6204093680954 9.09999999999999 4.80436859267306 9.09999999999999 4.98832781725071 9.09999999999999 5.17228704182837 9.09999999999999 5.35624626640603 9.09999999999999 5.54020549098369 9.09999999999999 5.72416471556135 9.09999999999999 5.90812394013901 9.09999999999999 6.09208316471666 9.09999999999999 1 19 21 3 21 22 3 1 21 4 3 22 5 22 23 5 4 22 6 23 24 6 24 25 6 5 23 7 6 25 8 25 26 8 7 25 9 26 27 9 27 28 9 8 26 10 9 28 11 28 29 11 10 28 12 29 30 12 30 31 12 11 29 13 12 31 14 31 32 14 32 33 14 13 31 15 14 33 16 33 34 16 34 35 16 15 33 17 35 36 17 16 35 18 17 36 2 18 36 2 36 20 +36 34 1 1.42894585053455e-011 +-19.9997499984374 -0.100000000022452 0 19.9997499984373 -0.100000000038794 0 -19.6430574620626 -3.7616875923056 0 -18.6216838549775 -7.29608733536471 0 -16.9701903805011 -10.5836023380298 0 -14.7444602153233 -13.5129897860817 0 -12.019807536586 -15.9851251725919 0 -8.88842904346968 -17.9163564694166 0 -5.45628420860864 -19.2413347415113 0 -1.83950982527317 -19.9152254218405 0 1.83950982525689 -19.915225421842 0 5.45628420859291 -19.2413347415157 0 8.88842904345503 -17.9163564694238 0 12.0198075365729 -15.9851251726017 0 14.7444602153122 -13.5129897860938 0 16.9701903804924 -10.5836023380437 0 18.6216838549716 -7.29608733537993 0 19.6430574620595 -3.76168759232166 0 -13.9996428525872 -0.100000000021063 0 13.9996428525871 -0.10000000003407 0 -13.7451368505203 -2.65917524064682 0 -13.0267920033917 -5.1286148325226 0 -11.8688493389824 -7.42498588338973 0 -10.310384407718 -9.47079581477112 0 -8.40398865205892 -11.1970074009114 0 -6.21399467306641 -12.5453684761789 0 -3.81430528371022 -13.470377693393 0 -1.28589960896893 -13.9408199972474 0 1.28589960895611 -13.9408199972486 0 3.81430528369784 -13.4703776933965 0 6.21399467305487 -12.5453684761846 0 8.40398865204862 -11.1970074009191 0 10.3103844077093 -9.4707958147806 0 11.8688493389756 -7.42498588340064 0 13.026792003387 -5.12861483253458 0 13.7451368505178 -2.65917524065947 0 -19.9997499984374 -0.100000000022376 19.9997499984373 -0.100000000038783 -19.6430574620626 -3.7616875923056 -18.6216838549775 -7.29608733536471 -16.9701903805011 -10.5836023380298 -14.7444602153233 -13.5129897860817 -12.019807536586 -15.9851251725919 -8.88842904346968 -17.9163564694166 -5.45628420860864 -19.2413347415113 -1.83950982527317 -19.9152254218405 1.83950982525689 -19.915225421842 5.45628420859291 -19.2413347415157 8.88842904345503 -17.9163564694238 12.0198075365729 -15.9851251726017 14.7444602153122 -13.5129897860938 16.9701903804924 -10.5836023380437 18.6216838549716 -7.29608733537993 19.6430574620595 -3.76168759232166 -13.9996428525872 -0.100000000000001 13.9996428525871 -0.100000000000001 -13.7451368505203 -2.65917524064682 -13.0267920033917 -5.1286148325226 -11.8688493389824 -7.42498588338973 -10.310384407718 -9.47079581477112 -8.40398865205892 -11.1970074009114 -6.21399467306641 -12.5453684761789 -3.81430528371023 -13.470377693393 -1.28589960896893 -13.9408199972474 1.28589960895611 -13.9408199972486 3.81430528369783 -13.4703776933965 6.21399467305487 -12.5453684761846 8.40398865204862 -11.1970074009191 10.3103844077093 -9.4707958147806 11.8688493389756 -7.42498588340064 13.026792003387 -5.12861483253458 13.7451368505178 -2.65917524065947 18 36 17 18 20 36 2 20 18 24 6 7 25 7 8 25 24 7 23 5 6 23 6 24 26 8 9 26 25 8 22 4 5 22 5 23 27 9 10 27 26 9 21 3 4 21 4 22 28 27 10 19 1 3 19 3 21 29 10 11 29 28 10 30 11 12 30 29 11 31 12 13 31 30 12 32 13 14 32 31 13 33 32 14 15 33 14 34 33 15 16 34 15 35 34 16 17 35 16 17 36 35 +8 8 1 4.44089209850063e-016 +0 0 4 0 90 4 100 90 4 100 0 4 12 7 4 12 83 4 92 7 4 92 83 4 0 0 0 90 100 90 100 0 12 7 12 83 92 7 92 83 6 2 1 6 1 5 4 7 5 4 5 1 3 8 7 3 7 4 3 2 6 3 6 8 +4 2 1 0 +0 0 0 0 0 4 0 90 4 0 90 0 0 0 4 0 4 -90 0 -90 2 4 3 2 1 4 +4 2 1 0 +0 90 0 100 90 0 100 90 4 0 90 4 0 0 0 100 4 100 4 0 3 2 1 3 1 4 +4 2 1 0 +100 0 0 100 0 4 100 90 4 100 90 0 0 0 4 0 4 -90 0 -90 2 4 3 2 1 4 +4 2 1 0 +0 0 0 100 0 0 100 0 4 0 0 4 0 0 0 100 4 100 4 0 3 2 1 3 1 4 +4 2 1 0 +0 0 3 0 0 6 0 76 3 0 76 6 3 0 6 0 3 -76 6 -76 2 1 3 2 3 4 +4 2 1 0 +80 0 3 80 0 6 0 0 3 0 0 6 3 80 6 80 3 0 6 0 2 1 3 2 3 4 +4 2 1 0 +80 76 3 80 76 6 0 76 3 0 76 6 3 80 6 80 3 0 6 0 2 1 3 2 3 4 +4 2 1 0 +80 0 3 80 0 6 80 76 3 80 76 6 3 0 6 0 3 -76 6 -76 2 1 3 2 3 4 +4 2 1 0 +0 0 0 0 90 0 100 90 0 100 0 0 0 0 0 90 100 90 100 0 3 2 1 3 1 4 +4 2 1 3.5527136788005e-015 +0 0 6 0 76 6 80 76 6 80 0 6 0 0 0 76 80 76 80 0 4 2 1 3 2 4 +80 78 1 0.0250032586614873 +4 0 0 0.500000000000703 3.9686269665968 0 3.93488434055539 0.718808198653847 0 3.74165738677401 1.41421356237293 0 3.42661018891483 2.06357520173729 0 3.00000000000024 2.64575131106432 0 2.47571632191872 3.14178749971815 0 1.87082869338745 3.53553390593248 0 1.20503094281726 3.81417100126003 0 0.5 3.96862696659689 1.9 4 0 4 -0.5 3.96862696659689 1.9 0.167055173393123 3.99651004866028 1.9 -0.167055173393138 3.99651004866028 1.9 4 0 4 3.93923101204883 0.694592710667722 4 3.75877048314364 1.36808057330268 4 3.46410161513776 2 4 3.06417777247591 2.57115043874616 4 2.57115043874616 3.06417777247591 4 2 3.46410161513776 4 1.36808057330267 3.75877048314363 4 0.69459271066772 3.93923101204883 4 0 4 4 -0.69459271066772 3.93923101204883 4 -1.36808057330268 3.75877048314363 4 -2 3.46410161513775 4 -2.57115043874616 3.06417777247591 4 -3.06417777247592 2.57115043874615 4 -3.46410161513776 2 4 -3.75877048314364 1.36808057330267 4 -3.93923101204884 0.694592710667714 4 -4 -8.3919416554723e-015 4 -3.93923101204883 -0.694592710667731 4 -3.75877048314363 -1.36808057330268 4 -3.46410161513775 -2.00000000000001 4 -3.0641777724759 -2.57115043874617 4 -2.57115043874614 -3.06417777247592 4 -1.99999999999999 -3.46410161513776 4 -1.36808057330266 -3.75877048314364 4 -0.694592710667713 -3.93923101204883 4 7.105427357601e-015 -4 4 0.694592710667727 -3.93923101204883 4 1.36808057330268 -3.75877048314363 4 2.00000000000001 -3.46410161513775 4 2.57115043874616 -3.06417777247591 4 3.06417777247592 -2.57115043874615 4 3.46410161513776 -2 4 3.75877048314364 -1.36808057330267 4 3.93923101204884 -0.694592710667718 4 -0.500000000000703 3.9686269665968 0 4 0 0 -0.499999999991502 -3.96862696659796 0 -1.20503094281781 3.81417100125986 0 -1.87082869338847 3.53553390593194 0 -2.47571632192009 3.14178749971707 0 -3.00000000000177 2.64575131106258 0 -3.42661018891632 2.06357520173481 0 -3.74165738677524 1.41421356236967 0 -3.93488434055612 0.718808198649851 0 -4 -4.64468329249013e-012 0 -3.93488434055445 -0.718808198658989 0 -3.74165738677195 -1.41421356237836 0 -3.42661018891153 -2.06357520174277 0 -2.99999999999563 -2.64575131106955 0 -2.47571632191279 -3.14178749972282 0 -1.87082869338025 -3.53553390593629 0 -1.20503094280895 -3.81417100126266 0 0.499999999991502 -3.96862696659796 0 1.20503094280947 -3.81417100126249 0 1.87082869338126 -3.53553390593576 0 2.47571632191414 -3.14178749972176 0 2.99999999999715 -2.64575131106782 0 3.42661018891302 -2.06357520174029 0 3.74165738677318 -1.41421356237511 0 3.93488434055518 -0.718808198654994 0 -0.5 -3.96862696659689 1.9 0.5 -3.96862696659689 1.9 -0.167055173393138 -3.99651004866028 1.9 0.167055173393123 -3.99651004866028 1.9 0 0 1.44546849562665 0 0.180683561953331 0 0.361367123906662 0 0.542050685859994 0 0.722734247813325 0 0.903417809766656 0 1.08410137171999 0 1.26478493367332 0 1.44546849562683 1.9 0 4 1.69612415796296 1.9 1.52902038307221 1.9 1.61257227051758 1.9 6.28318530717959 4 0.174532925199433 4 0.349065850398866 4 0.523598775598299 4 0.698131700797732 4 0.872664625997165 4 1.0471975511966 4 1.22173047639603 4 1.39626340159546 4 1.5707963267949 4 1.74532925199433 4 1.91986217719376 4 2.0943951023932 4 2.26892802759263 4 2.44346095279206 4 2.6179938779915 4 2.79252680319093 4 2.96705972839036 4 3.1415926535898 4 3.31612557878923 4 3.49065850398866 4 3.66519142918809 4 3.83972435438753 4 4.01425727958696 4 4.18879020478639 4 4.36332312998583 4 4.53785605518526 4 4.71238898038469 4 4.88692190558413 4 5.06145483078356 4 5.23598775598299 4 5.41052068118242 4 5.58505360638186 4 5.75958653158129 4 5.93411945678072 4 6.10865238198015 4 1.69612415796296 0 6.28318530717959 0 4.58706114921877 0 1.87680771991662 0 2.05749128187009 0 2.23817484382357 0 2.41885840577705 0 2.59954196773052 0 2.780225529684 0 2.96090909163748 0 3.14159265359095 0 3.32227621554443 0 3.50295977749791 0 3.68364333945139 0 3.86432690140486 0 4.04501046335834 0 4.22569402531182 0 4.40637758726529 0 4.8377168115506 0 5.01840037350422 0 5.19908393545785 0 5.37976749741147 0 5.56045105936509 0 5.74113462131872 0 5.92181818327234 0 6.10250174522596 0 4.58706114921662 1.9 4.83771681155276 1.9 4.670613036662 1.9 4.75416492410737 1.9 33 32 61 34 61 62 34 33 61 16 1 3 16 11 1 35 62 63 35 34 62 17 3 4 17 16 3 36 63 64 36 35 63 18 4 5 18 17 4 37 64 65 37 36 64 19 5 6 19 18 5 38 65 66 38 37 65 20 19 6 20 6 7 39 66 67 39 38 66 21 20 7 21 7 8 40 67 68 40 39 67 22 8 9 22 21 8 77 68 53 77 40 68 10 9 2 10 22 9 41 40 77 23 22 10 70 78 69 54 12 51 42 41 77 42 77 79 24 10 13 42 79 80 24 13 14 42 80 78 24 14 12 24 23 10 43 42 78 25 24 12 44 78 70 44 43 78 44 70 71 26 25 12 26 12 54 26 54 55 45 44 71 45 71 72 27 26 55 27 55 56 46 45 72 46 72 73 28 27 56 28 56 57 47 46 73 47 73 74 29 28 57 29 57 58 48 47 74 48 74 75 30 29 58 30 58 59 49 48 75 49 75 76 31 30 59 31 59 60 50 49 76 50 76 52 32 31 60 15 50 52 32 60 61 +17 15 1 6.82787160144471e-015 +4 0 0 0.500000000000703 3.9686269665968 0 3.93488434055539 0.718808198653847 0 3.74165738677401 1.41421356237293 0 3.42661018891483 2.06357520173729 0 3.00000000000024 2.64575131106432 0 2.47571632191872 3.14178749971815 0 1.87082869338745 3.53553390593248 0 1.20503094281726 3.81417100126003 0 0.499999999991502 -3.96862696659796 0 1.20503094280947 -3.81417100126249 0 1.87082869338126 -3.53553390593576 0 2.47571632191414 -3.14178749972176 0 2.99999999999715 -2.64575131106782 0 3.42661018891302 -2.06357520174029 0 3.74165738677318 -1.41421356237511 0 3.93488434055518 -0.718808198654994 0 4 0 0.50000000000072 3.9686269665968 3.93488434055539 0.718808198653847 3.74165738677401 1.41421356237293 3.42661018891483 2.06357520173729 3.00000000000024 2.64575131106432 2.47571632191873 3.14178749971815 1.87082869338745 3.53553390593248 1.20503094281726 3.81417100126003 0.5 -3.96862696659796 1.20503094280947 -3.81417100126249 1.87082869338126 -3.53553390593576 2.47571632191414 -3.14178749972176 2.99999999999715 -2.64575131106782 3.42661018891302 -2.06357520174029 3.74165738677318 -1.41421356237511 3.93488434055518 -0.718808198654994 14 12 13 16 11 12 16 14 15 16 12 14 1 16 17 2 10 11 2 11 16 2 16 1 9 2 1 4 1 3 6 4 5 6 7 8 6 8 9 6 9 1 6 1 4 +4 2 1 2.59821793709565e-012 +1 1.03137303340311 0 1 8.96862696659689 0 1.0000000000007 1.0313730334032 1.9 0.999999999991502 8.96862696659796 1.9 0 -1.03137303340311 0 -8.96862696659689 1.9 -1.03137303340311 1.9 -8.96862696659689 3 1 2 3 2 4 +8 6 1 7.02216063075412e-015 +0 1.03137303340311 0 0 8.96862696659689 0 1 1.03137303340311 0 0.667055173393123 1.00348995133972 0 0.332944826606862 1.00348995133972 0 1 8.96862696659689 0 0.332944826606862 8.99651004866028 0 0.667055173393123 8.99651004866028 0 0 1.03137303340311 0 8.96862696659689 0.999999999999992 1.03137303340311 0.667055173393122 1.00348995133972 0.332944826606865 1.00348995133972 0.999999999999992 8.96862696659689 0.332944826606865 8.99651004866028 0.667055173393122 8.99651004866028 7 2 1 7 4 3 7 5 4 7 1 5 8 7 3 6 8 3 +71 71 1 3.77475828372553e-015 +4 0 4 3.93923101204883 0.694592710667722 4 3.75877048314364 1.36808057330268 4 3.46410161513776 2 4 3.06417777247591 2.57115043874616 4 2.57115043874616 3.06417777247591 4 2 3.46410161513776 4 1.36808057330267 3.75877048314363 4 0.69459271066772 3.93923101204883 4 0 4 4 -0.69459271066772 3.93923101204883 4 -1.36808057330268 3.75877048314363 4 -2 3.46410161513775 4 -2.57115043874616 3.06417777247591 4 -3.06417777247592 2.57115043874615 4 -3.46410161513776 2 4 -3.75877048314364 1.36808057330267 4 -3.93923101204884 0.694592710667714 4 -4 -8.3919416554723e-015 4 -3.93923101204883 -0.694592710667731 4 -3.75877048314363 -1.36808057330268 4 -3.46410161513775 -2.00000000000001 4 -3.0641777724759 -2.57115043874617 4 -2.57115043874614 -3.06417777247592 4 -1.99999999999999 -3.46410161513776 4 -1.36808057330266 -3.75877048314364 4 -0.694592710667713 -3.93923101204883 4 7.105427357601e-015 -4 4 0.694592710667727 -3.93923101204883 4 1.36808057330268 -3.75877048314363 4 2.00000000000001 -3.46410161513775 4 2.57115043874616 -3.06417777247591 4 3.06417777247592 -2.57115043874615 4 3.46410161513776 -2 4 3.75877048314364 -1.36808057330267 4 3.93923101204884 -0.694592710667718 4 2 0 4 1.96785917719725 0.35711378959728 4 1.87246974127947 0.702749648162691 4 1.71689758720373 1.02579855481182 4 1.50614293200722 1.31587745187943 4 1.24697960371746 1.56366296493606 4 0.94773732494599 1.76119106371348 4 0.618033988749886 1.90211303259031 4 0.268466531635305 1.98189952353587 4 -0.0897296607010389 1.99798613308263 4 -0.445041867912636 1.94985582436365 4 -0.786050063307854 1.8390555451029 4 -1.10179396290421 1.6691465074426 4 -1.38212529797374 1.44558972765478 4 -1.6180339887499 1.17557050458494 4 -1.80193773580484 0.867767478235112 4 -1.92792572139171 0.532073691133345 4 -1.99194858799048 0.179278617806862 4 -1.99194858799048 -0.179278617806872 4 -1.9279257213917 -0.532073691133355 4 -1.80193773580483 -0.867767478235121 4 -1.61803398874989 -1.17557050458495 4 -1.38212529797372 -1.44558972765479 4 -1.1017939629042 -1.66914650744261 4 -0.78605006330784 -1.8390555451029 4 -0.445041867912622 -1.94985582436365 4 -0.0897296607010247 -1.99798613308263 4 0.268466531635319 -1.98189952353587 4 0.6180339887499 -1.90211303259031 4 0.947737324946004 -1.76119106371347 4 1.24697960371747 -1.56366296493606 4 1.50614293200722 -1.31587745187942 4 1.71689758720373 -1.02579855481181 4 1.87246974127947 -0.702749648162681 4 1.96785917719726 -0.357113789597269 4 4 0 3.93923101204883 0.694592710667722 3.75877048314363 1.36808057330268 3.46410161513775 2 3.06417777247591 2.57115043874616 2.57115043874616 3.06417777247591 2 3.46410161513776 1.36808057330267 3.75877048314363 0.694592710667719 3.93923101204883 -2.22044604925031e-015 4 -0.694592710667724 3.93923101204883 -1.36808057330268 3.75877048314363 -2 3.46410161513775 -2.57115043874616 3.06417777247591 -3.06417777247592 2.57115043874615 -3.46410161513776 1.99999999999999 -3.75877048314364 1.36808057330267 -3.93923101204883 0.694592710667714 -4 -8.43769498715119e-015 -3.93923101204883 -0.694592710667731 -3.75877048314363 -1.36808057330268 -3.46410161513775 -2.00000000000001 -3.0641777724759 -2.57115043874617 -2.57115043874615 -3.06417777247592 -1.99999999999999 -3.46410161513776 -1.36808057330266 -3.75877048314364 -0.694592710667711 -3.93923101204883 9.76996261670138e-015 -4 0.69459271066773 -3.93923101204883 1.36808057330268 -3.75877048314363 2.00000000000001 -3.46410161513775 2.57115043874616 -3.06417777247591 3.06417777247592 -2.57115043874615 3.46410161513776 -2 3.75877048314364 -1.36808057330267 3.93923101204883 -0.694592710667718 2 -5.77315972805081e-015 1.96785917719726 0.35711378959728 1.87246974127947 0.702749648162691 1.71689758720373 1.02579855481182 1.50614293200722 1.31587745187943 1.24697960371746 1.56366296493606 0.947737324945992 1.76119106371348 0.61803398874989 1.90211303259031 0.268466531635305 1.98189952353587 -0.0897296607010358 1.99798613308263 -0.445041867912634 1.94985582436365 -0.786050063307853 1.8390555451029 -1.10179396290421 1.6691465074426 -1.38212529797373 1.44558972765478 -1.6180339887499 1.17557050458494 -1.80193773580484 0.867767478235112 -1.92792572139171 0.532073691133346 -1.99194858799048 0.179278617806862 -1.99194858799048 -0.179278617806872 -1.92792572139171 -0.532073691133355 -1.80193773580484 -0.867767478235121 -1.61803398874989 -1.17557050458495 -1.38212529797373 -1.44558972765479 -1.1017939629042 -1.66914650744261 -0.786050063307843 -1.8390555451029 -0.445041867912624 -1.94985582436365 -0.0897296607010252 -1.99798613308263 0.268466531635315 -1.98189952353587 0.618033988749899 -1.90211303259031 0.947737324946002 -1.76119106371347 1.24697960371747 -1.56366296493606 1.50614293200722 -1.31587745187942 1.71689758720373 -1.02579855481181 1.87246974127948 -0.702749648162681 1.96785917719726 -0.357113789597268 8 44 43 8 9 44 3 39 38 51 15 16 51 16 52 3 38 2 7 8 43 67 66 31 67 31 32 7 43 42 4 40 39 50 15 51 4 39 3 6 7 42 68 67 32 6 42 41 5 6 41 14 15 50 5 41 40 5 40 4 33 68 32 49 14 50 69 68 33 13 49 48 13 14 49 34 69 33 34 70 69 59 23 24 58 22 23 58 23 59 60 24 25 60 59 24 12 48 47 57 22 58 12 13 48 57 21 22 35 70 34 35 71 70 61 60 25 61 25 26 56 21 57 56 20 21 62 26 27 62 61 26 55 20 56 55 19 20 63 62 27 11 47 46 11 12 47 63 27 28 36 37 71 54 18 19 54 19 55 36 71 35 64 28 29 64 63 28 10 46 45 10 11 46 53 17 18 1 37 36 53 18 54 65 64 29 9 45 44 65 29 30 9 10 45 2 38 37 52 16 17 52 17 53 66 65 30 2 37 1 66 30 31 +4 2 1 2.59821793709565e-012 +0 1.03137303340311 0 0 8.96862696659689 0 -7.03437308402499e-013 1.0313730334032 1.9 8.4980911196908e-012 8.96862696659796 1.9 0 -1.03137303340311 0 -8.96862696659689 1.9 -1.03137303340311 1.9 -8.96862696659689 3 1 2 3 2 4 +17 15 1 9.99200722162641e-015 +-0.500000000000703 3.9686269665968 0 -0.499999999991502 -3.96862696659796 0 -1.20503094281781 3.81417100125986 0 -1.87082869338847 3.53553390593194 0 -2.47571632192009 3.14178749971707 0 -3.00000000000177 2.64575131106258 0 -3.42661018891632 2.06357520173481 0 -3.74165738677524 1.41421356236967 0 -3.93488434055612 0.718808198649851 0 -4 -4.64468329249013e-012 0 -3.93488434055445 -0.718808198658989 0 -3.74165738677195 -1.41421356237836 0 -3.42661018891153 -2.06357520174277 0 -2.99999999999563 -2.64575131106955 0 -2.47571632191279 -3.14178749972282 0 -1.87082869338025 -3.53553390593629 0 -1.20503094280895 -3.81417100126266 0 -0.500000000000707 3.9686269665968 -0.499999999991485 -3.96862696659796 -1.20503094281781 3.81417100125986 -1.87082869338847 3.53553390593194 -2.47571632192009 3.14178749971707 -3.00000000000177 2.64575131106258 -3.42661018891632 2.06357520173481 -3.74165738677524 1.41421356236967 -3.93488434055612 0.718808198649851 -4 -4.6447290458218e-012 -3.93488434055445 -0.718808198658989 -3.74165738677195 -1.41421356237836 -3.42661018891153 -2.06357520174277 -2.99999999999563 -2.64575131106955 -2.47571632191279 -3.14178749972282 -1.87082869338026 -3.53553390593629 -1.20503094280895 -3.81417100126266 12 13 14 12 14 15 2 15 16 2 16 17 2 12 15 10 11 12 6 7 8 6 8 9 6 9 10 6 10 12 6 12 2 4 5 6 1 3 4 1 4 6 1 6 2 +73 71 1 0.00761060381650756 +2 0 2 2 0 18 2 0 2 1.96785917719725 0.35711378959728 2 1.87246974127947 0.702749648162691 2 1.71689758720373 1.02579855481182 2 1.50614293200722 1.31587745187943 2 1.24697960371746 1.56366296493606 2 0.94773732494599 1.76119106371348 2 0.618033988749886 1.90211303259031 2 0.268466531635305 1.98189952353587 2 -0.0897296607010389 1.99798613308263 2 -0.445041867912636 1.94985582436365 2 -0.786050063307854 1.8390555451029 2 -1.10179396290421 1.6691465074426 2 -1.38212529797374 1.44558972765478 2 -1.6180339887499 1.17557050458494 2 -1.80193773580484 0.867767478235112 2 -1.92792572139171 0.532073691133345 2 -1.99194858799048 0.179278617806862 2 -1.99194858799048 -0.179278617806872 2 -1.9279257213917 -0.532073691133355 2 -1.80193773580483 -0.867767478235121 2 -1.61803398874989 -1.17557050458495 2 -1.38212529797372 -1.44558972765479 2 -1.1017939629042 -1.66914650744261 2 -0.78605006330784 -1.8390555451029 2 -0.445041867912622 -1.94985582436365 2 -0.0897296607010247 -1.99798613308263 2 0.268466531635319 -1.98189952353587 2 0.6180339887499 -1.90211303259031 2 0.947737324946004 -1.76119106371347 2 1.24697960371747 -1.56366296493606 2 1.50614293200722 -1.31587745187942 2 1.71689758720373 -1.02579855481181 2 1.87246974127947 -0.702749648162681 2 1.96785917719726 -0.357113789597269 2 2 0 18 1.96961550602442 0.347296355333861 18 1.87938524157182 0.684040286651338 18 1.73205080756888 1 18 1.53208888623796 1.28557521937308 18 1.28557521937308 1.53208888623796 18 1 1.73205080756888 18 0.684040286651339 1.87938524157182 18 0.34729635533386 1.96961550602442 18 0 2 18 -0.34729635533386 1.96961550602442 18 -0.684040286651339 1.87938524157182 18 -1 1.73205080756888 18 -1.28557521937308 1.53208888623795 18 -1.53208888623796 1.28557521937308 18 -1.73205080756888 0.999999999999998 18 -1.87938524157182 0.684040286651334 18 -1.96961550602442 0.347296355333857 18 -2 -4.19597082773615e-015 18 -1.96961550602442 -0.347296355333865 18 -1.87938524157182 -0.684040286651342 18 -1.73205080756888 -1 18 -1.53208888623795 -1.28557521937308 18 -1.28557521937307 -1.53208888623796 18 -0.999999999999993 -1.73205080756888 18 -0.684040286651332 -1.87938524157182 18 -0.347296355333853 -1.96961550602442 18 7.105427357601e-015 -2 18 0.347296355333867 -1.96961550602442 18 0.684040286651339 -1.87938524157182 18 1 -1.73205080756888 18 1.28557521937308 -1.53208888623795 18 1.53208888623796 -1.28557521937308 18 1.73205080756888 -0.999999999999998 18 1.87938524157182 -0.684040286651336 18 1.96961550602442 -0.347296355333859 18 6.28318530717959 2 6.28318530717959 18 0 2 0.179519580205131 2 0.359039160410262 2 0.538558740615393 2 0.718078320820524 2 0.897597901025655 2 1.07711748123079 2 1.25663706143592 2 1.43615664164105 2 1.61567622184618 2 1.79519580205131 2 1.97471538225644 2 2.15423496246157 2 2.3337545426667 2 2.51327412287183 2 2.69279370307696 2 2.8723132832821 2 3.05183286348723 2 3.23135244369236 2 3.41087202389749 2 3.59039160410262 2 3.76991118430775 2 3.94943076451288 2 4.12895034471801 2 4.30846992492314 2 4.48798950512828 2 4.66750908533341 2 4.84702866553854 2 5.02654824574367 2 5.2060678259488 2 5.38558740615393 2 5.56510698635906 2 5.74462656656419 2 5.92414614676932 2 6.10366572697446 2 0 18 0.174532925199433 18 0.349065850398866 18 0.523598775598299 18 0.698131700797732 18 0.872664625997165 18 1.0471975511966 18 1.22173047639603 18 1.39626340159546 18 1.5707963267949 18 1.74532925199433 18 1.91986217719376 18 2.0943951023932 18 2.26892802759263 18 2.44346095279206 18 2.6179938779915 18 2.79252680319093 18 2.96705972839036 18 3.1415926535898 18 3.31612557878923 18 3.49065850398866 18 3.6651914291881 18 3.83972435438753 18 4.01425727958696 18 4.18879020478639 18 4.36332312998583 18 4.53785605518526 18 4.71238898038469 18 4.88692190558413 18 5.06145483078356 18 5.23598775598299 18 5.41052068118242 18 5.58505360638186 18 5.75958653158129 18 5.93411945678072 18 6.10865238198015 18 58 22 23 58 57 22 59 23 24 59 58 23 39 3 4 39 38 3 60 24 25 60 59 24 40 4 5 40 39 4 61 25 26 61 60 25 41 5 6 41 40 5 62 26 27 62 61 26 42 6 7 42 41 6 63 27 28 63 62 27 43 7 8 43 42 7 64 28 29 64 63 28 44 8 9 65 29 30 44 43 8 65 64 29 45 44 9 45 9 10 66 30 31 66 65 30 46 45 10 46 10 11 67 31 32 67 66 31 47 11 12 47 46 11 68 32 33 68 67 32 48 47 12 48 12 13 69 33 34 69 68 33 49 13 14 49 48 13 70 69 34 70 34 35 50 14 15 50 49 14 71 70 35 71 35 36 51 15 16 72 71 36 51 50 15 72 36 37 73 72 37 52 16 17 73 37 1 52 51 16 2 73 1 53 17 18 53 52 17 54 18 19 54 53 18 55 19 20 55 54 19 56 20 21 56 55 20 57 21 22 57 56 21 +36 34 1 3.51801920928096e-015 +2 0 18 1.96961550602442 0.347296355333861 18 1.87938524157182 0.684040286651338 18 1.73205080756888 1 18 1.53208888623796 1.28557521937308 18 1.28557521937308 1.53208888623796 18 1 1.73205080756888 18 0.684040286651339 1.87938524157182 18 0.34729635533386 1.96961550602442 18 0 2 18 -0.34729635533386 1.96961550602442 18 -0.684040286651339 1.87938524157182 18 -1 1.73205080756888 18 -1.28557521937308 1.53208888623795 18 -1.53208888623796 1.28557521937308 18 -1.73205080756888 0.999999999999998 18 -1.87938524157182 0.684040286651334 18 -1.96961550602442 0.347296355333857 18 -2 -4.19597082773615e-015 18 -1.96961550602442 -0.347296355333865 18 -1.87938524157182 -0.684040286651342 18 -1.73205080756888 -1 18 -1.53208888623795 -1.28557521937308 18 -1.28557521937307 -1.53208888623796 18 -0.999999999999993 -1.73205080756888 18 -0.684040286651332 -1.87938524157182 18 -0.347296355333853 -1.96961550602442 18 7.105427357601e-015 -2 18 0.347296355333867 -1.96961550602442 18 0.684040286651339 -1.87938524157182 18 1 -1.73205080756888 18 1.28557521937308 -1.53208888623795 18 1.53208888623796 -1.28557521937308 18 1.73205080756888 -0.999999999999998 18 1.87938524157182 -0.684040286651336 18 1.96961550602442 -0.347296355333859 18 2 0 1.96961550602442 0.347296355333861 1.87938524157182 0.684040286651338 1.73205080756888 1 1.53208888623796 1.28557521937308 1.28557521937308 1.53208888623796 0.999999999999999 1.73205080756888 0.684040286651336 1.87938524157182 0.34729635533386 1.96961550602442 -1.11022302462516e-015 2 -0.347296355333862 1.96961550602442 -0.684040286651339 1.87938524157182 -1 1.73205080756888 -1.28557521937308 1.53208888623795 -1.53208888623796 1.28557521937308 -1.73205080756888 0.999999999999997 -1.87938524157182 0.684040286651334 -1.96961550602442 0.347296355333857 -2 -4.21884749357559e-015 -1.96961550602442 -0.347296355333865 -1.87938524157182 -0.684040286651342 -1.73205080756887 -1 -1.53208888623795 -1.28557521937308 -1.28557521937307 -1.53208888623796 -0.999999999999995 -1.73205080756888 -0.684040286651332 -1.87938524157182 -0.347296355333855 -1.96961550602442 4.88498130835069e-015 -2 0.347296355333865 -1.96961550602442 0.684040286651341 -1.87938524157182 1 -1.73205080756888 1.28557521937308 -1.53208888623795 1.53208888623796 -1.28557521937308 1.73205080756888 -0.999999999999998 1.87938524157182 -0.684040286651336 1.96961550602442 -0.347296355333859 25 23 24 21 22 23 19 20 21 19 21 23 28 26 27 18 25 26 18 23 25 18 26 28 18 19 23 17 18 28 16 17 28 15 16 28 13 14 15 13 15 28 11 12 13 11 28 29 11 29 30 11 30 31 11 31 32 11 32 33 11 33 34 11 13 28 36 34 35 9 10 11 9 36 1 9 11 34 9 34 36 8 9 1 4 1 2 4 2 3 6 1 4 6 7 8 6 8 1 5 6 4 +71 71 1 2.30926389122033e-014 +26 0 15 25.6050015783174 4.51485261934019 15 24.4320081404336 8.89252372646739 15 22.5166604983954 13 15 19.9171555210934 16.71247785185 15 16.71247785185 19.9171555210934 15 13 22.5166604983954 15 8.89252372646737 24.4320081404336 15 4.51485261934017 25.6050015783174 15 -1.57274909241834e-014 26 15 -4.51485261934021 25.6050015783174 15 -8.8925237264674 24.4320081404336 15 -13 22.5166604983954 15 -16.71247785185 19.9171555210934 15 -19.9171555210934 16.71247785185 15 -22.5166604983954 13 15 -24.4320081404336 8.89252372646735 15 -25.6050015783174 4.51485261934014 15 -26 -5.454762076057e-014 15 -25.6050015783174 -4.51485261934025 15 -24.4320081404336 -8.89252372646745 15 -22.5166604983954 -13.0000000000001 15 -19.9171555210934 -16.7124778518501 15 -16.71247785185 -19.9171555210935 15 -12.9999999999999 -22.5166604983954 15 -8.89252372646732 -24.4320081404336 15 -4.51485261934012 -25.6050015783174 15 6.45019519567025e-014 -26 15 4.51485261934025 -25.6050015783174 15 8.89252372646744 -24.4320081404336 15 13 -22.5166604983954 15 16.7124778518501 -19.9171555210934 15 19.9171555210935 -16.71247785185 15 22.5166604983954 -13 15 24.4320081404336 -8.89252372646736 15 25.6050015783174 -4.51485261934017 15 16 0 15 15.7428734175781 2.85691031677824 15 14.9797579302358 5.62199718530153 15 13.7351806976298 8.20638843849454 15 12.0491434560577 10.5270196150354 15 9.9758368297397 12.5093037194885 15 7.58189859956794 14.0895285097078 15 4.94427190999911 15.2169042607225 15 2.14773225308244 15.855196188287 15 -0.717837285608287 15.983889064661 15 -3.56033494330108 15.5988465949092 15 -6.28840050646282 14.7124443608232 15 -8.81435170323368 13.3531720595408 15 -11.0570023837899 11.5647178212382 15 -12.9442719099992 9.40456403667954 15 -14.4155018864387 6.94213982588089 15 -15.4234057711337 4.25658952906676 15 -15.9355887039238 1.4342289424549 15 -15.9355887039238 -1.43422894245498 15 -15.4234057711336 -4.25658952906684 15 -14.4155018864387 -6.94213982588097 15 -12.9442719099991 -9.4045640366796 15 -11.0570023837898 -11.5647178212383 15 -8.81435170323361 -13.3531720595409 15 -6.28840050646274 -14.7124443608232 15 -3.56033494330099 -15.5988465949092 15 -0.7178372856082 -15.983889064661 15 2.14773225308253 -15.855196188287 15 4.9442719099992 -15.2169042607224 15 7.58189859956801 -14.0895285097078 15 9.97583682973977 -12.5093037194885 15 12.0491434560578 -10.5270196150354 15 13.7351806976299 -8.20638843849447 15 14.9797579302358 -5.62199718530145 15 15.7428734175781 -2.85691031677815 15 26 0 25.6050015783174 4.51485261934019 24.4320081404336 8.89252372646739 22.5166604983954 13 19.9171555210934 16.71247785185 16.71247785185 19.9171555210934 13 22.5166604983954 8.89252372646737 24.4320081404336 4.51485261934018 25.6050015783174 -1.4210854715202e-014 26 -4.5148526193402 25.6050015783174 -8.8925237264674 24.4320081404336 -13 22.5166604983954 -16.71247785185 19.9171555210934 -19.9171555210934 16.71247785185 -22.5166604983954 13 -24.4320081404336 8.89252372646735 -25.6050015783174 4.51485261934014 -26 -5.32907051820075e-014 -25.6050015783174 -4.51485261934025 -24.4320081404336 -8.89252372646745 -22.5166604983954 -13.0000000000001 -19.9171555210934 -16.7124778518501 -16.71247785185 -19.9171555210935 -12.9999999999999 -22.5166604983954 -8.89252372646732 -24.4320081404336 -4.51485261934012 -25.6050015783174 6.3948846218409e-014 -26 4.51485261934025 -25.6050015783174 8.89252372646744 -24.4320081404336 13 -22.5166604983954 16.7124778518501 -19.9171555210934 19.9171555210935 -16.71247785185 22.5166604983954 -13 24.4320081404336 -8.89252372646736 25.6050015783174 -4.51485261934017 16 -4.61852778244065e-014 15.7428734175781 2.85691031677824 14.9797579302358 5.62199718530153 13.7351806976298 8.20638843849454 12.0491434560577 10.5270196150354 9.9758368297397 12.5093037194885 7.58189859956794 14.0895285097078 4.94427190999911 15.2169042607225 2.14773225308244 15.855196188287 -0.717837285608287 15.983889064661 -3.56033494330108 15.5988465949092 -6.28840050646282 14.7124443608232 -8.81435170323368 13.3531720595408 -11.0570023837899 11.5647178212382 -12.9442719099992 9.40456403667954 -14.4155018864387 6.94213982588089 -15.4234057711337 4.25658952906677 -15.9355887039238 1.4342289424549 -15.9355887039238 -1.43422894245498 -15.4234057711336 -4.25658952906684 -14.4155018864387 -6.94213982588096 -12.9442719099991 -9.4045640366796 -11.0570023837898 -11.5647178212383 -8.81435170323361 -13.3531720595409 -6.28840050646274 -14.7124443608232 -3.56033494330099 -15.5988465949092 -0.717837285608201 -15.983889064661 2.14773225308253 -15.855196188287 4.94427190999919 -15.2169042607224 7.58189859956801 -14.0895285097078 9.97583682973976 -12.5093037194885 12.0491434560578 -10.5270196150354 13.7351806976299 -8.20638843849446 14.9797579302358 -5.62199718530145 15.7428734175781 -2.85691031677815 6 7 42 6 41 5 6 42 41 67 31 32 67 66 31 50 15 51 68 67 32 14 15 50 33 68 32 49 14 50 69 68 33 13 49 48 13 14 49 34 69 33 34 70 69 59 23 24 12 48 47 12 13 48 35 70 34 35 71 70 58 22 23 58 23 59 60 24 25 60 59 24 57 21 22 57 22 58 61 25 26 11 47 46 11 12 47 61 60 25 56 21 57 36 37 71 36 71 35 56 20 21 62 61 26 62 26 27 55 20 56 55 19 20 63 27 28 63 62 27 10 46 45 10 11 46 54 19 55 54 18 19 1 37 36 64 63 28 9 45 44 9 10 45 64 28 29 53 17 18 2 38 37 53 18 54 2 37 1 65 64 29 65 29 30 8 44 43 8 9 44 3 39 38 52 17 53 3 38 2 52 16 17 7 8 43 66 65 30 66 30 31 7 43 42 4 40 39 51 16 52 4 39 3 15 16 51 5 41 40 5 40 4 +74 72 1 0.0989378496146194 +26 0 15 26 0 15 25.6050015783174 4.51485261934019 15 24.4320081404336 8.89252372646739 15 22.5166604983954 13 15 19.9171555210934 16.71247785185 15 16.71247785185 19.9171555210934 15 13 22.5166604983954 15 8.89252372646737 24.4320081404336 15 4.51485261934017 25.6050015783174 15 -1.57274909241834e-014 26 15 -4.51485261934021 25.6050015783174 15 -8.8925237264674 24.4320081404336 15 -13 22.5166604983954 15 -16.71247785185 19.9171555210934 15 -19.9171555210934 16.71247785185 15 -22.5166604983954 13 15 -24.4320081404336 8.89252372646735 15 -25.6050015783174 4.51485261934014 15 -26 -5.454762076057e-014 15 -25.6050015783174 -4.51485261934025 15 -24.4320081404336 -8.89252372646745 15 -22.5166604983954 -13.0000000000001 15 -19.9171555210934 -16.7124778518501 15 -16.71247785185 -19.9171555210935 15 -12.9999999999999 -22.5166604983954 15 -8.89252372646732 -24.4320081404336 15 -4.51485261934012 -25.6050015783174 15 6.45019519567025e-014 -26 15 4.51485261934025 -25.6050015783174 15 8.89252372646744 -24.4320081404336 15 13 -22.5166604983954 15 16.7124778518501 -19.9171555210934 15 19.9171555210935 -16.71247785185 15 22.5166604983954 -13 15 24.4320081404336 -8.89252372646736 15 25.6050015783174 -4.51485261934017 15 26 0 0 26 0 0 25.6050015783174 4.51485261934019 0 24.4320081404336 8.89252372646739 0 22.5166604983954 13 0 19.9171555210934 16.71247785185 0 16.71247785185 19.9171555210934 0 13 22.5166604983954 0 8.89252372646737 24.4320081404336 0 4.51485261934017 25.6050015783174 0 -1.57274909241834e-014 26 0 -4.51485261934021 25.6050015783174 0 -8.8925237264674 24.4320081404336 0 -13 22.5166604983954 0 -16.71247785185 19.9171555210934 0 -19.9171555210934 16.71247785185 0 -22.5166604983954 13 0 -24.4320081404336 8.89252372646735 0 -25.6050015783174 4.51485261934014 0 -26 -5.454762076057e-014 0 -25.6050015783174 -4.51485261934025 0 -24.4320081404336 -8.89252372646745 0 -22.5166604983954 -13.0000000000001 0 -19.9171555210934 -16.7124778518501 0 -16.71247785185 -19.9171555210935 0 -12.9999999999999 -22.5166604983954 0 -8.89252372646732 -24.4320081404336 0 -4.51485261934012 -25.6050015783174 0 6.45019519567025e-014 -26 0 4.51485261934025 -25.6050015783174 0 8.89252372646744 -24.4320081404336 0 13 -22.5166604983954 0 16.7124778518501 -19.9171555210934 0 19.9171555210935 -16.71247785185 0 22.5166604983954 -13 0 24.4320081404336 -8.89252372646736 0 25.6050015783174 -4.51485261934017 0 0 15 6.28318530717959 15 0.174532925199433 15 0.349065850398866 15 0.523598775598299 15 0.698131700797732 15 0.872664625997165 15 1.0471975511966 15 1.22173047639603 15 1.39626340159546 15 1.5707963267949 15 1.74532925199433 15 1.91986217719376 15 2.0943951023932 15 2.26892802759263 15 2.44346095279206 15 2.6179938779915 15 2.79252680319093 15 2.96705972839036 15 3.1415926535898 15 3.31612557878923 15 3.49065850398866 15 3.66519142918809 15 3.83972435438753 15 4.01425727958696 15 4.18879020478639 15 4.36332312998583 15 4.53785605518526 15 4.71238898038469 15 4.88692190558413 15 5.06145483078356 15 5.23598775598299 15 5.41052068118242 15 5.58505360638186 15 5.75958653158129 15 5.93411945678072 15 6.10865238198015 15 6.28318530717959 0 0 0 0.174532925199433 0 0.349065850398866 0 0.523598775598299 0 0.698131700797732 0 0.872664625997165 0 1.0471975511966 0 1.22173047639603 0 1.39626340159546 0 1.5707963267949 0 1.74532925199433 0 1.91986217719376 0 2.0943951023932 0 2.26892802759263 0 2.44346095279206 0 2.6179938779915 0 2.79252680319093 0 2.96705972839036 0 3.1415926535898 0 3.31612557878923 0 3.49065850398866 0 3.66519142918809 0 3.83972435438753 0 4.01425727958696 0 4.18879020478639 0 4.36332312998583 0 4.53785605518526 0 4.71238898038469 0 4.88692190558413 0 5.06145483078356 0 5.23598775598299 0 5.41052068118242 0 5.58505360638186 0 5.75958653158129 0 5.93411945678072 0 6.10865238198015 0 22 21 58 22 58 59 23 59 60 1 39 40 23 22 59 3 40 41 24 60 61 3 1 40 24 23 60 4 3 41 25 61 62 25 62 63 25 24 61 5 41 42 5 4 41 26 25 63 6 42 43 6 43 44 27 63 64 6 5 42 27 64 65 27 26 63 7 44 45 7 6 44 28 27 65 8 7 45 29 65 66 29 66 67 29 28 65 9 8 45 9 45 46 9 46 47 30 29 67 10 9 47 31 67 68 31 30 67 11 10 47 32 68 69 11 47 48 11 48 49 32 31 68 12 11 49 33 69 70 33 70 71 33 32 69 13 12 49 13 49 50 34 33 71 14 13 50 35 34 71 14 50 51 35 71 72 14 51 52 36 35 72 15 14 52 36 72 73 37 36 73 16 15 52 16 52 53 37 73 74 37 74 38 2 37 38 17 16 53 17 53 54 18 17 54 18 54 55 19 18 55 19 55 56 20 19 56 20 56 57 21 20 57 21 57 58 +72 70 1 0.064411296076178 +16 0 2 16 0 17 16 0 2 15.7428734175781 2.85691031677824 2 14.9797579302358 5.62199718530153 2 13.7351806976298 8.20638843849454 2 12.0491434560577 10.5270196150354 2 9.9758368297397 12.5093037194885 2 7.58189859956794 14.0895285097078 2 4.94427190999911 15.2169042607225 2 2.14773225308244 15.855196188287 2 -0.717837285608287 15.983889064661 2 -3.56033494330108 15.5988465949092 2 -6.28840050646282 14.7124443608232 2 -8.81435170323368 13.3531720595408 2 -11.0570023837899 11.5647178212382 2 -12.9442719099992 9.40456403667954 2 -14.4155018864387 6.94213982588089 2 -15.4234057711337 4.25658952906676 2 -15.9355887039238 1.4342289424549 2 -15.9355887039238 -1.43422894245498 2 -15.4234057711336 -4.25658952906684 2 -14.4155018864387 -6.94213982588097 2 -12.9442719099991 -9.4045640366796 2 -11.0570023837898 -11.5647178212383 2 -8.81435170323361 -13.3531720595409 2 -6.28840050646274 -14.7124443608232 2 -3.56033494330099 -15.5988465949092 2 -0.7178372856082 -15.983889064661 2 2.14773225308253 -15.855196188287 2 4.9442719099992 -15.2169042607224 2 7.58189859956801 -14.0895285097078 2 9.97583682973977 -12.5093037194885 2 12.0491434560578 -10.5270196150354 2 13.7351806976299 -8.20638843849447 2 14.9797579302358 -5.62199718530145 2 15.7428734175781 -2.85691031677815 2 16 0 17 15.7428734175781 2.85691031677824 17 14.9797579302358 5.62199718530153 17 13.7351806976298 8.20638843849454 17 12.0491434560577 10.5270196150354 17 9.9758368297397 12.5093037194885 17 7.58189859956794 14.0895285097078 17 4.94427190999911 15.2169042607225 17 2.14773225308244 15.855196188287 17 -0.717837285608287 15.983889064661 17 -3.56033494330108 15.5988465949092 17 -6.28840050646282 14.7124443608232 17 -8.81435170323368 13.3531720595408 17 -11.0570023837899 11.5647178212382 17 -12.9442719099992 9.40456403667954 17 -14.4155018864387 6.94213982588089 17 -15.4234057711337 4.25658952906676 17 -15.9355887039238 1.4342289424549 17 -15.9355887039238 -1.43422894245498 17 -15.4234057711336 -4.25658952906684 17 -14.4155018864387 -6.94213982588097 17 -12.9442719099991 -9.4045640366796 17 -11.0570023837898 -11.5647178212383 17 -8.81435170323361 -13.3531720595409 17 -6.28840050646274 -14.7124443608232 17 -3.56033494330099 -15.5988465949092 17 -0.7178372856082 -15.983889064661 17 2.14773225308253 -15.855196188287 17 4.9442719099992 -15.2169042607224 17 7.58189859956801 -14.0895285097078 17 9.97583682973977 -12.5093037194885 17 12.0491434560578 -10.5270196150354 17 13.7351806976299 -8.20638843849447 17 14.9797579302358 -5.62199718530145 17 15.7428734175781 -2.85691031677815 17 6.28318530717959 2 6.28318530717959 17 0 2 0.179519580205131 2 0.359039160410262 2 0.538558740615393 2 0.718078320820524 2 0.897597901025655 2 1.07711748123079 2 1.25663706143592 2 1.43615664164105 2 1.61567622184618 2 1.79519580205131 2 1.97471538225644 2 2.15423496246157 2 2.3337545426667 2 2.51327412287183 2 2.69279370307696 2 2.8723132832821 2 3.05183286348723 2 3.23135244369236 2 3.41087202389749 2 3.59039160410262 2 3.76991118430775 2 3.94943076451288 2 4.12895034471801 2 4.30846992492314 2 4.48798950512828 2 4.66750908533341 2 4.84702866553854 2 5.02654824574367 2 5.2060678259488 2 5.38558740615393 2 5.56510698635906 2 5.74462656656419 2 5.92414614676932 2 6.10366572697445 2 0 17 0.179519580205131 17 0.359039160410262 17 0.538558740615393 17 0.718078320820524 17 0.897597901025655 17 1.07711748123079 17 1.25663706143592 17 1.43615664164105 17 1.61567622184618 17 1.79519580205131 17 1.97471538225644 17 2.15423496246157 17 2.3337545426667 17 2.51327412287183 17 2.69279370307696 17 2.8723132832821 17 3.05183286348723 17 3.23135244369236 17 3.41087202389749 17 3.59039160410262 17 3.76991118430775 17 3.94943076451288 17 4.12895034471801 17 4.30846992492314 17 4.48798950512828 17 4.66750908533341 17 4.84702866553854 17 5.02654824574367 17 5.2060678259488 17 5.38558740615393 17 5.56510698635906 17 5.74462656656419 17 5.92414614676932 17 6.10366572697445 17 59 23 24 59 58 23 38 3 4 60 24 25 60 25 26 60 59 24 39 4 5 39 38 4 61 60 26 40 39 5 62 26 27 62 27 28 62 61 26 41 5 6 41 6 7 41 40 5 63 62 28 42 41 7 64 28 29 64 29 30 64 63 28 43 7 8 43 8 9 43 42 7 65 64 30 44 43 9 44 9 10 66 30 31 66 65 30 45 44 10 67 31 32 67 32 33 67 66 31 46 10 11 46 45 10 46 11 12 68 67 33 47 46 12 47 12 13 69 33 34 69 68 33 48 13 14 70 69 34 48 47 13 70 34 35 49 14 15 49 48 14 71 70 35 71 35 36 71 36 37 50 15 16 50 49 15 72 71 37 2 72 37 51 16 17 51 50 16 2 37 1 52 17 18 52 51 17 53 18 19 53 52 18 54 53 19 55 19 20 55 20 21 55 54 19 56 55 21 57 21 22 57 22 23 57 56 21 58 57 23 +71 71 1 7.105427357601e-014 +26 0 0 25.6050015783174 4.51485261934019 0 24.4320081404336 8.89252372646739 0 22.5166604983954 13 0 19.9171555210934 16.71247785185 0 16.71247785185 19.9171555210934 0 13 22.5166604983954 0 8.89252372646737 24.4320081404336 0 4.51485261934017 25.6050015783174 0 -1.57274909241834e-014 26 0 -4.51485261934021 25.6050015783174 0 -8.8925237264674 24.4320081404336 0 -13 22.5166604983954 0 -16.71247785185 19.9171555210934 0 -19.9171555210934 16.71247785185 0 -22.5166604983954 13 0 -24.4320081404336 8.89252372646735 0 -25.6050015783174 4.51485261934014 0 -26 -5.454762076057e-014 0 -25.6050015783174 -4.51485261934025 0 -24.4320081404336 -8.89252372646745 0 -22.5166604983954 -13.0000000000001 0 -19.9171555210934 -16.7124778518501 0 -16.71247785185 -19.9171555210935 0 -12.9999999999999 -22.5166604983954 0 -8.89252372646732 -24.4320081404336 0 -4.51485261934012 -25.6050015783174 0 6.45019519567025e-014 -26 0 4.51485261934025 -25.6050015783174 0 8.89252372646744 -24.4320081404336 0 13 -22.5166604983954 0 16.7124778518501 -19.9171555210934 0 19.9171555210935 -16.71247785185 0 22.5166604983954 -13 0 24.4320081404336 -8.89252372646736 0 25.6050015783174 -4.51485261934017 0 16 0 0 15.7428734175781 2.85691031677824 0 14.9797579302358 5.62199718530153 0 13.7351806976298 8.20638843849454 0 12.0491434560577 10.5270196150354 0 9.9758368297397 12.5093037194885 0 7.58189859956794 14.0895285097078 0 4.94427190999911 15.2169042607225 0 2.14773225308244 15.855196188287 0 -0.717837285608287 15.983889064661 0 -3.56033494330108 15.5988465949092 0 -6.28840050646282 14.7124443608232 0 -8.81435170323368 13.3531720595408 0 -11.0570023837899 11.5647178212382 0 -12.9442719099992 9.40456403667954 0 -14.4155018864387 6.94213982588089 0 -15.4234057711337 4.25658952906676 0 -15.9355887039238 1.4342289424549 0 -15.9355887039238 -1.43422894245498 0 -15.4234057711336 -4.25658952906684 0 -14.4155018864387 -6.94213982588097 0 -12.9442719099991 -9.4045640366796 0 -11.0570023837898 -11.5647178212383 0 -8.81435170323361 -13.3531720595409 0 -6.28840050646274 -14.7124443608232 0 -3.56033494330099 -15.5988465949092 0 -0.7178372856082 -15.983889064661 0 2.14773225308253 -15.855196188287 0 4.9442719099992 -15.2169042607224 0 7.58189859956801 -14.0895285097078 0 9.97583682973977 -12.5093037194885 0 12.0491434560578 -10.5270196150354 0 13.7351806976299 -8.20638843849447 0 14.9797579302358 -5.62199718530145 0 15.7428734175781 -2.85691031677815 0 26 8.5265128291212e-014 25.6050015783174 4.51485261934019 24.4320081404336 8.89252372646739 22.5166604983954 13 19.9171555210934 16.71247785185 16.71247785185 19.9171555210934 13 22.5166604983954 8.89252372646737 24.4320081404336 4.51485261934018 25.6050015783174 -1.4210854715202e-014 26 -4.5148526193402 25.6050015783174 -8.8925237264674 24.4320081404336 -13 22.5166604983954 -16.71247785185 19.9171555210934 -19.9171555210934 16.71247785185 -22.5166604983954 13 -24.4320081404336 8.89252372646735 -25.6050015783174 4.51485261934014 -26 -5.32907051820075e-014 -25.6050015783174 -4.51485261934025 -24.4320081404336 -8.89252372646745 -22.5166604983954 -13.0000000000001 -19.9171555210934 -16.7124778518501 -16.71247785185 -19.9171555210935 -12.9999999999999 -22.5166604983954 -8.89252372646732 -24.4320081404336 -4.51485261934012 -25.6050015783174 6.3948846218409e-014 -26 4.51485261934025 -25.6050015783174 8.89252372646744 -24.4320081404336 13 -22.5166604983954 16.7124778518501 -19.9171555210934 19.9171555210935 -16.71247785185 22.5166604983954 -13 24.4320081404336 -8.89252372646736 25.6050015783174 -4.51485261934017 16 5.6843418860808e-014 15.7428734175781 2.85691031677824 14.9797579302358 5.62199718530153 13.7351806976298 8.20638843849454 12.0491434560577 10.5270196150354 9.9758368297397 12.5093037194885 7.58189859956794 14.0895285097078 4.94427190999911 15.2169042607225 2.14773225308244 15.855196188287 -0.717837285608287 15.983889064661 -3.56033494330108 15.5988465949092 -6.28840050646282 14.7124443608232 -8.81435170323368 13.3531720595408 -11.0570023837899 11.5647178212382 -12.9442719099992 9.40456403667954 -14.4155018864387 6.94213982588089 -15.4234057711337 4.25658952906677 -15.9355887039238 1.4342289424549 -15.9355887039238 -1.43422894245498 -15.4234057711336 -4.25658952906684 -14.4155018864387 -6.94213982588096 -12.9442719099991 -9.4045640366796 -11.0570023837898 -11.5647178212383 -8.81435170323361 -13.3531720595409 -6.28840050646274 -14.7124443608232 -3.56033494330099 -15.5988465949092 -0.717837285608201 -15.983889064661 2.14773225308253 -15.855196188287 4.94427190999919 -15.2169042607224 7.58189859956801 -14.0895285097078 9.97583682973976 -12.5093037194885 12.0491434560578 -10.5270196150354 13.7351806976299 -8.20638843849446 14.9797579302358 -5.62199718530145 15.7428734175781 -2.85691031677815 6 7 42 6 41 5 6 42 41 67 31 32 67 66 31 50 15 51 68 67 32 14 15 50 33 68 32 49 14 50 69 68 33 13 49 48 13 14 49 34 69 33 34 70 69 59 23 24 12 48 47 12 13 48 35 70 34 35 71 70 58 22 23 58 23 59 60 24 25 60 59 24 57 21 22 57 22 58 61 25 26 11 47 46 11 12 47 61 60 25 56 21 57 36 37 71 36 71 35 56 20 21 62 61 26 62 26 27 55 20 56 55 19 20 63 27 28 63 62 27 10 46 45 10 11 46 54 19 55 54 18 19 1 37 36 64 63 28 9 45 44 9 10 45 64 28 29 53 17 18 2 38 37 53 18 54 2 37 1 65 64 29 65 29 30 8 44 43 8 9 44 3 39 38 52 17 53 3 38 2 52 16 17 7 8 43 66 65 30 66 30 31 7 43 42 4 40 39 51 16 52 4 39 3 15 16 51 5 41 40 5 40 4 +72 70 1 0.00805141200952831 +2 0 2 2 0 13.5 2 0 13.5 1.96785917719726 0.357113789597278 13.5 1.87246974127947 0.702749648162694 13.5 1.71689758720373 1.02579855481181 13.5 1.50614293200722 1.31587745187943 13.5 1.24697960371746 1.56366296493606 13.5 0.947737324945992 1.76119106371348 13.5 0.618033988749889 1.90211303259031 13.5 0.268466531635305 1.98189952353587 13.5 -0.0897296607010358 1.99798613308263 13.5 -0.445041867912635 1.94985582436365 13.5 -0.786050063307853 1.8390555451029 13.5 -1.10179396290421 1.6691465074426 13.5 -1.38212529797373 1.44558972765478 13.5 -1.6180339887499 1.17557050458494 13.5 -1.80193773580484 0.867767478235109 13.5 -1.92792572139171 0.532073691133348 13.5 -1.99194858799048 0.179278617806865 13.5 -1.99194858799048 -0.179278617806872 13.5 -1.92792572139171 -0.532073691133355 13.5 -1.80193773580484 -0.867767478235123 13.5 -1.61803398874989 -1.17557050458495 13.5 -1.38212529797373 -1.44558972765478 13.5 -1.1017939629042 -1.6691465074426 13.5 -0.786050063307843 -1.8390555451029 13.5 -0.445041867912624 -1.94985582436365 13.5 -0.089729660701025 -1.99798613308263 13.5 0.268466531635316 -1.98189952353587 13.5 0.618033988749899 -1.90211303259031 13.5 0.947737324946002 -1.76119106371348 13.5 1.24697960371747 -1.56366296493606 13.5 1.50614293200723 -1.31587745187942 13.5 1.71689758720373 -1.02579855481181 13.5 1.87246974127948 -0.70274964816268 13.5 1.96785917719726 -0.357113789597271 13.5 2 0 2 1.96785917719726 0.357113789597278 2 1.87246974127947 0.702749648162694 2 1.71689758720373 1.02579855481181 2 1.50614293200722 1.31587745187943 2 1.24697960371746 1.56366296493606 2 0.947737324945992 1.76119106371348 2 0.618033988749889 1.90211303259031 2 0.268466531635305 1.98189952353587 2 -0.0897296607010358 1.99798613308263 2 -0.445041867912635 1.94985582436365 2 -0.786050063307853 1.8390555451029 2 -1.10179396290421 1.6691465074426 2 -1.38212529797373 1.44558972765478 2 -1.6180339887499 1.17557050458494 2 -1.80193773580484 0.867767478235109 2 -1.92792572139171 0.532073691133348 2 -1.99194858799048 0.179278617806865 2 -1.99194858799048 -0.179278617806872 2 -1.92792572139171 -0.532073691133355 2 -1.80193773580484 -0.867767478235123 2 -1.61803398874989 -1.17557050458495 2 -1.38212529797373 -1.44558972765478 2 -1.1017939629042 -1.6691465074426 2 -0.786050063307843 -1.8390555451029 2 -0.445041867912624 -1.94985582436365 2 -0.089729660701025 -1.99798613308263 2 0.268466531635316 -1.98189952353587 2 0.618033988749899 -1.90211303259031 2 0.947737324946002 -1.76119106371348 2 1.24697960371747 -1.56366296493606 2 1.50614293200723 -1.31587745187942 2 1.71689758720373 -1.02579855481181 2 1.87246974127948 -0.70274964816268 2 1.96785917719726 -0.357113789597271 2 6.28318530717959 2 6.28318530717959 13.5 0 13.5 0.179519580205131 13.5 0.359039160410262 13.5 0.538558740615393 13.5 0.718078320820524 13.5 0.897597901025655 13.5 1.07711748123079 13.5 1.25663706143592 13.5 1.43615664164105 13.5 1.61567622184618 13.5 1.79519580205131 13.5 1.97471538225644 13.5 2.15423496246157 13.5 2.3337545426667 13.5 2.51327412287183 13.5 2.69279370307696 13.5 2.8723132832821 13.5 3.05183286348723 13.5 3.23135244369236 13.5 3.41087202389749 13.5 3.59039160410262 13.5 3.76991118430775 13.5 3.94943076451288 13.5 4.12895034471801 13.5 4.30846992492314 13.5 4.48798950512828 13.5 4.66750908533341 13.5 4.84702866553854 13.5 5.02654824574367 13.5 5.2060678259488 13.5 5.38558740615393 13.5 5.56510698635906 13.5 5.74462656656419 13.5 5.92414614676932 13.5 6.10366572697445 13.5 0 2 0.179519580205131 2 0.359039160410262 2 0.538558740615393 2 0.718078320820524 2 0.897597901025655 2 1.07711748123079 2 1.25663706143592 2 1.43615664164105 2 1.61567622184618 2 1.79519580205131 2 1.97471538225644 2 2.15423496246157 2 2.3337545426667 2 2.51327412287183 2 2.69279370307696 2 2.8723132832821 2 3.05183286348723 2 3.23135244369236 2 3.41087202389749 2 3.59039160410262 2 3.76991118430775 2 3.94943076451288 2 4.12895034471801 2 4.30846992492314 2 4.48798950512828 2 4.66750908533341 2 4.84702866553854 2 5.02654824574367 2 5.2060678259488 2 5.38558740615393 2 5.56510698635906 2 5.74462656656419 2 5.92414614676932 2 6.10366572697445 2 22 56 57 23 22 57 23 57 58 24 23 58 4 38 39 24 58 59 4 39 40 4 3 38 25 59 60 5 4 40 25 24 59 6 40 41 26 60 61 6 5 40 26 25 60 7 41 42 27 61 62 7 6 41 27 26 61 8 42 43 28 62 63 8 7 42 28 27 62 29 63 64 9 43 44 29 28 63 9 8 43 30 64 65 10 9 44 10 44 45 30 29 64 31 65 66 31 30 65 11 10 45 11 45 46 32 66 67 32 31 66 12 11 46 12 46 47 33 67 68 33 32 67 13 12 47 13 47 48 34 68 69 34 33 68 14 13 48 14 48 49 35 34 69 35 69 70 15 14 49 15 49 50 36 35 70 36 70 71 16 15 50 16 50 51 37 36 71 16 51 52 37 71 72 17 16 52 2 37 72 2 72 1 18 17 52 18 52 53 19 18 53 19 53 54 20 19 54 20 54 55 21 20 55 21 55 56 22 21 56 +35 33 1 3.58046925441613e-015 +24 3 40 24 3.03214082280274 40.3571137895973 24 3.12753025872053 40.7027496481627 24 3.28310241279627 41.0257985548118 24 3.49385706799278 41.3158774518794 24 3.75302039628254 41.5636629649361 24 4.05226267505401 41.7611910637135 24 4.38196601125011 41.9021130325903 24 4.7315334683647 41.9818995235359 24 5.08972966070104 41.9979861330826 24 5.44504186791263 41.9498558243636 24 5.78605006330785 41.8390555451029 24 6.10179396290421 41.6691465074426 24 6.38212529797373 41.4455897276548 24 6.6180339887499 41.1755705045849 24 6.80193773580484 40.8677674782351 24 6.92792572139171 40.5320736911333 24 6.99194858799048 40.1792786178069 24 6.99194858799048 39.8207213821931 24 6.92792572139171 39.4679263088666 24 6.80193773580484 39.1322325217649 24 6.61803398874989 38.824429495415 24 6.38212529797373 38.5544102723452 24 6.1017939629042 38.3308534925574 24 5.78605006330784 38.1609444548971 24 5.44504186791262 38.0501441756364 24 5.08972966070102 38.0020138669174 24 4.73153346836468 38.0181004764641 24 4.3819660112501 38.0978869674097 24 4.052262675054 38.2388089362865 24 3.75302039628253 38.4363370350639 24 3.49385706799278 38.6841225481206 24 3.28310241279627 38.9742014451882 24 3.12753025872052 39.2972503518373 24 3.03214082280274 39.6428862104027 40 -3 40.3571137895973 -3.03214082280274 40.7027496481627 -3.12753025872053 41.0257985548118 -3.28310241279627 41.3158774518794 -3.49385706799278 41.5636629649361 -3.75302039628254 41.7611910637135 -4.05226267505401 41.9021130325903 -4.38196601125011 41.9818995235359 -4.7315334683647 41.9979861330826 -5.08972966070104 41.9498558243636 -5.44504186791263 41.8390555451029 -5.78605006330785 41.6691465074426 -6.10179396290421 41.4455897276548 -6.38212529797373 41.1755705045849 -6.6180339887499 40.8677674782351 -6.80193773580484 40.5320736911333 -6.92792572139171 40.1792786178069 -6.99194858799048 39.8207213821931 -6.99194858799048 39.4679263088666 -6.92792572139171 39.1322325217649 -6.80193773580484 38.824429495415 -6.61803398874989 38.5544102723452 -6.38212529797373 38.3308534925574 -6.1017939629042 38.1609444548971 -5.78605006330784 38.0501441756364 -5.44504186791262 38.0020138669174 -5.08972966070102 38.0181004764641 -4.73153346836468 38.0978869674097 -4.3819660112501 38.2388089362865 -4.052262675054 38.4363370350639 -3.75302039628253 38.6841225481206 -3.49385706799278 38.9742014451882 -3.28310241279627 39.2972503518373 -3.12753025872052 39.6428862104027 -3.03214082280274 4 34 33 4 33 31 4 1 34 5 7 6 5 4 7 21 23 22 20 23 21 26 25 24 19 23 20 16 18 17 16 19 18 30 29 28 15 24 23 15 23 19 15 19 16 31 30 28 14 24 15 33 32 31 12 14 13 11 26 24 11 24 14 11 14 12 10 27 26 10 28 27 10 26 11 1 35 34 8 10 9 7 28 10 7 31 28 7 10 8 4 2 1 4 31 7 4 3 2 +71 71 1 3.5527136788005e-015 +4 0 4 3.93923101204883 0.69459271066772 4 3.75877048314363 1.36808057330268 4 3.46410161513775 2 4 3.06417777247591 2.57115043874616 4 2.57115043874616 3.06417777247592 4 2 3.46410161513776 4 1.36808057330267 3.75877048314364 4 0.694592710667719 3.93923101204884 4 -2.4196139883359e-015 4 4 -0.694592710667724 3.93923101204883 4 -1.36808057330268 3.75877048314364 4 -2 3.46410161513775 4 -2.57115043874616 3.06417777247591 4 -3.06417777247592 2.57115043874615 4 -3.46410161513776 1.99999999999999 4 -3.75877048314364 1.36808057330267 4 -3.93923101204883 0.694592710667713 4 -4 -7.105427357601e-015 4 -3.93923101204883 -0.694592710667727 4 -3.75877048314363 -1.36808057330268 4 -3.46410161513775 -2.00000000000001 4 -3.0641777724759 -2.57115043874617 4 -2.57115043874615 -3.06417777247592 4 -1.99999999999999 -3.46410161513776 4 -1.36808057330266 -3.75877048314364 4 -0.694592710667711 -3.93923101204884 4 9.92337722410808e-015 -4 4 0.69459271066773 -3.93923101204883 4 1.36808057330268 -3.75877048314363 4 2.00000000000001 -3.46410161513775 4 2.57115043874616 -3.06417777247591 4 3.06417777247592 -2.57115043874615 4 3.46410161513776 -1.99999999999999 4 3.75877048314364 -1.36808057330267 4 3.93923101204883 -0.69459271066772 4 2 0 4 1.96785917719726 0.357113789597278 4 1.87246974127947 0.702749648162694 4 1.71689758720373 1.02579855481181 4 1.50614293200722 1.31587745187943 4 1.24697960371746 1.56366296493606 4 0.947737324945992 1.76119106371348 4 0.618033988749889 1.90211303259031 4 0.268466531635305 1.98189952353587 4 -0.0897296607010358 1.99798613308263 4 -0.445041867912635 1.94985582436365 4 -0.786050063307853 1.8390555451029 4 -1.10179396290421 1.6691465074426 4 -1.38212529797373 1.44558972765478 4 -1.6180339887499 1.17557050458494 4 -1.80193773580484 0.867767478235109 4 -1.92792572139171 0.532073691133348 4 -1.99194858799048 0.179278617806865 4 -1.99194858799048 -0.179278617806872 4 -1.92792572139171 -0.532073691133355 4 -1.80193773580484 -0.867767478235123 4 -1.61803398874989 -1.17557050458495 4 -1.38212529797373 -1.44558972765478 4 -1.1017939629042 -1.6691465074426 4 -0.786050063307843 -1.8390555451029 4 -0.445041867912624 -1.94985582436365 4 -0.089729660701025 -1.99798613308263 4 0.268466531635316 -1.98189952353587 4 0.618033988749899 -1.90211303259031 4 0.947737324946002 -1.76119106371348 4 1.24697960371747 -1.56366296493606 4 1.50614293200723 -1.31587745187942 4 1.71689758720373 -1.02579855481181 4 1.87246974127948 -0.70274964816268 4 1.96785917719726 -0.357113789597271 4 4 0 3.93923101204883 0.694592710667722 3.75877048314363 1.36808057330268 3.46410161513775 2 3.06417777247591 2.57115043874616 2.57115043874616 3.06417777247591 2 3.46410161513776 1.36808057330267 3.75877048314363 0.694592710667719 3.93923101204883 -2.22044604925031e-015 4 -0.694592710667724 3.93923101204883 -1.36808057330268 3.75877048314363 -2 3.46410161513775 -2.57115043874616 3.06417777247591 -3.06417777247592 2.57115043874615 -3.46410161513776 1.99999999999999 -3.75877048314364 1.36808057330267 -3.93923101204883 0.694592710667714 -4 -8.43769498715119e-015 -3.93923101204883 -0.694592710667731 -3.75877048314363 -1.36808057330268 -3.46410161513775 -2.00000000000001 -3.0641777724759 -2.57115043874617 -2.57115043874615 -3.06417777247592 -1.99999999999999 -3.46410161513776 -1.36808057330266 -3.75877048314364 -0.694592710667711 -3.93923101204883 9.76996261670138e-015 -4 0.69459271066773 -3.93923101204883 1.36808057330268 -3.75877048314363 2.00000000000001 -3.46410161513775 2.57115043874616 -3.06417777247591 3.06417777247592 -2.57115043874615 3.46410161513776 -2 3.75877048314364 -1.36808057330267 3.93923101204883 -0.694592710667718 2 -5.77315972805081e-015 1.96785917719726 0.35711378959728 1.87246974127947 0.702749648162691 1.71689758720373 1.02579855481182 1.50614293200722 1.31587745187943 1.24697960371746 1.56366296493606 0.947737324945992 1.76119106371348 0.61803398874989 1.90211303259031 0.268466531635305 1.98189952353587 -0.0897296607010358 1.99798613308263 -0.445041867912634 1.94985582436365 -0.786050063307853 1.8390555451029 -1.10179396290421 1.6691465074426 -1.38212529797373 1.44558972765478 -1.6180339887499 1.17557050458494 -1.80193773580484 0.867767478235112 -1.92792572139171 0.532073691133346 -1.99194858799048 0.179278617806862 -1.99194858799048 -0.179278617806872 -1.92792572139171 -0.532073691133355 -1.80193773580484 -0.867767478235121 -1.61803398874989 -1.17557050458495 -1.38212529797373 -1.44558972765479 -1.1017939629042 -1.66914650744261 -0.786050063307843 -1.8390555451029 -0.445041867912624 -1.94985582436365 -0.0897296607010252 -1.99798613308263 0.268466531635315 -1.98189952353587 0.618033988749899 -1.90211303259031 0.947737324946002 -1.76119106371347 1.24697960371747 -1.56366296493606 1.50614293200722 -1.31587745187942 1.71689758720373 -1.02579855481181 1.87246974127948 -0.702749648162681 1.96785917719726 -0.357113789597268 3 38 2 4 40 39 51 15 16 51 16 52 4 39 3 7 8 43 67 31 32 7 43 42 5 40 4 67 66 31 5 41 40 50 15 51 6 7 42 6 41 5 68 67 32 6 42 41 14 15 50 33 68 32 49 14 50 69 68 33 13 49 48 13 14 49 34 69 33 34 70 69 59 23 24 58 22 23 58 23 59 60 24 25 60 59 24 12 48 47 12 13 48 57 22 58 35 70 34 35 71 70 57 21 22 61 60 25 61 25 26 56 21 57 56 20 21 62 26 27 62 61 26 55 20 56 11 47 46 11 12 47 55 19 20 36 37 71 63 27 28 36 71 35 63 62 27 10 46 45 54 18 19 54 19 55 10 11 46 64 28 29 64 63 28 1 37 36 9 45 44 9 10 45 53 18 54 53 17 18 2 38 37 65 64 29 65 29 30 2 37 1 52 16 17 52 17 53 8 44 43 8 9 44 66 65 30 3 39 38 66 30 31 +74 72 1 0.0152212076330199 +4 0 4 4 0 4 3.93923101204883 0.69459271066772 4 3.75877048314363 1.36808057330268 4 3.46410161513775 2 4 3.06417777247591 2.57115043874616 4 2.57115043874616 3.06417777247592 4 2 3.46410161513776 4 1.36808057330267 3.75877048314364 4 0.694592710667719 3.93923101204884 4 -2.4196139883359e-015 4 4 -0.694592710667724 3.93923101204883 4 -1.36808057330268 3.75877048314364 4 -2 3.46410161513775 4 -2.57115043874616 3.06417777247591 4 -3.06417777247592 2.57115043874615 4 -3.46410161513776 1.99999999999999 4 -3.75877048314364 1.36808057330267 4 -3.93923101204883 0.694592710667713 4 -4 -7.105427357601e-015 4 -3.93923101204883 -0.694592710667727 4 -3.75877048314363 -1.36808057330268 4 -3.46410161513775 -2.00000000000001 4 -3.0641777724759 -2.57115043874617 4 -2.57115043874615 -3.06417777247592 4 -1.99999999999999 -3.46410161513776 4 -1.36808057330266 -3.75877048314364 4 -0.694592710667711 -3.93923101204884 4 9.92337722410808e-015 -4 4 0.69459271066773 -3.93923101204883 4 1.36808057330268 -3.75877048314363 4 2.00000000000001 -3.46410161513775 4 2.57115043874616 -3.06417777247591 4 3.06417777247592 -2.57115043874615 4 3.46410161513776 -1.99999999999999 4 3.75877048314364 -1.36808057330267 4 3.93923101204883 -0.69459271066772 4 4 0 0 4 0 0 3.93923101204883 0.69459271066772 0 3.75877048314363 1.36808057330268 0 3.46410161513775 2 0 3.06417777247591 2.57115043874616 0 2.57115043874616 3.06417777247592 0 2 3.46410161513776 0 1.36808057330267 3.75877048314364 0 0.694592710667719 3.93923101204884 0 -2.4196139883359e-015 4 0 -0.694592710667724 3.93923101204883 0 -1.36808057330268 3.75877048314364 0 -2 3.46410161513775 0 -2.57115043874616 3.06417777247591 0 -3.06417777247592 2.57115043874615 0 -3.46410161513776 1.99999999999999 0 -3.75877048314364 1.36808057330267 0 -3.93923101204883 0.694592710667713 0 -4 -7.105427357601e-015 0 -3.93923101204883 -0.694592710667727 0 -3.75877048314363 -1.36808057330268 0 -3.46410161513775 -2.00000000000001 0 -3.0641777724759 -2.57115043874617 0 -2.57115043874615 -3.06417777247592 0 -1.99999999999999 -3.46410161513776 0 -1.36808057330266 -3.75877048314364 0 -0.694592710667711 -3.93923101204884 0 9.92337722410808e-015 -4 0 0.69459271066773 -3.93923101204883 0 1.36808057330268 -3.75877048314363 0 2.00000000000001 -3.46410161513775 0 2.57115043874616 -3.06417777247591 0 3.06417777247592 -2.57115043874615 0 3.46410161513776 -1.99999999999999 0 3.75877048314364 -1.36808057330267 0 3.93923101204883 -0.69459271066772 0 0 4 6.28318530717959 4 0.174532925199433 4 0.349065850398866 4 0.523598775598299 4 0.698131700797732 4 0.872664625997165 4 1.0471975511966 4 1.22173047639603 4 1.39626340159546 4 1.5707963267949 4 1.74532925199433 4 1.91986217719376 4 2.0943951023932 4 2.26892802759263 4 2.44346095279206 4 2.6179938779915 4 2.79252680319093 4 2.96705972839036 4 3.1415926535898 4 3.31612557878923 4 3.49065850398866 4 3.66519142918809 4 3.83972435438753 4 4.01425727958696 4 4.18879020478639 4 4.36332312998583 4 4.53785605518526 4 4.71238898038469 4 4.88692190558413 4 5.06145483078356 4 5.23598775598299 4 5.41052068118242 4 5.58505360638186 4 5.75958653158129 4 5.93411945678072 4 6.10865238198015 4 6.28318530717959 0 0 0 0.174532925199433 0 0.349065850398866 0 0.523598775598299 0 0.698131700797732 0 0.872664625997165 0 1.0471975511966 0 1.22173047639603 0 1.39626340159546 0 1.5707963267949 0 1.74532925199433 0 1.91986217719376 0 2.0943951023932 0 2.26892802759263 0 2.44346095279206 0 2.6179938779915 0 2.79252680319093 0 2.96705972839036 0 3.1415926535898 0 3.31612557878923 0 3.49065850398866 0 3.66519142918809 0 3.83972435438753 0 4.01425727958696 0 4.18879020478639 0 4.36332312998583 0 4.53785605518526 0 4.71238898038469 0 4.88692190558413 0 5.06145483078356 0 5.23598775598299 0 5.41052068118242 0 5.58505360638186 0 5.75958653158129 0 5.93411945678072 0 6.10865238198015 0 21 20 57 21 57 58 22 21 58 22 58 59 22 59 60 3 39 40 3 40 41 3 1 39 23 22 60 24 60 61 4 3 41 24 23 60 5 41 42 5 4 41 25 61 62 25 24 61 6 42 43 6 5 42 26 62 63 26 25 62 7 43 44 7 6 43 27 63 64 27 26 63 8 7 44 8 44 45 28 64 65 28 65 66 28 27 64 9 8 45 9 45 46 29 28 66 10 9 46 10 46 47 30 66 67 30 29 66 31 67 68 11 10 47 11 47 48 31 30 67 12 11 48 12 48 49 32 68 69 13 12 49 32 31 68 13 49 50 13 50 51 33 32 69 33 69 70 33 70 71 14 13 51 34 33 71 15 14 51 15 51 52 35 34 71 35 71 72 16 15 52 16 52 53 36 35 72 16 53 54 36 72 73 17 16 54 37 36 73 37 73 74 2 37 74 2 74 38 18 17 54 18 54 55 19 18 55 19 55 56 20 19 56 20 56 57 +36 34 1 1.06026298851702e-014 +4 0 0 3.93923101204883 0.69459271066772 0 3.75877048314363 1.36808057330268 0 3.46410161513775 2 0 3.06417777247591 2.57115043874616 0 2.57115043874616 3.06417777247592 0 2 3.46410161513776 0 1.36808057330267 3.75877048314364 0 0.694592710667719 3.93923101204884 0 -2.4196139883359e-015 4 0 -0.694592710667724 3.93923101204883 0 -1.36808057330268 3.75877048314364 0 -2 3.46410161513775 0 -2.57115043874616 3.06417777247591 0 -3.06417777247592 2.57115043874615 0 -3.46410161513776 1.99999999999999 0 -3.75877048314364 1.36808057330267 0 -3.93923101204883 0.694592710667713 0 -4 -7.105427357601e-015 0 -3.93923101204883 -0.694592710667727 0 -3.75877048314363 -1.36808057330268 0 -3.46410161513775 -2.00000000000001 0 -3.0641777724759 -2.57115043874617 0 -2.57115043874615 -3.06417777247592 0 -1.99999999999999 -3.46410161513776 0 -1.36808057330266 -3.75877048314364 0 -0.694592710667711 -3.93923101204884 0 9.92337722410808e-015 -4 0 0.69459271066773 -3.93923101204883 0 1.36808057330268 -3.75877048314363 0 2.00000000000001 -3.46410161513775 0 2.57115043874616 -3.06417777247591 0 3.06417777247592 -2.57115043874615 0 3.46410161513776 -1.99999999999999 0 3.75877048314364 -1.36808057330267 0 3.93923101204883 -0.69459271066772 0 4 1.33226762955019e-014 3.93923101204883 0.694592710667722 3.75877048314363 1.36808057330268 3.46410161513775 2 3.06417777247591 2.57115043874616 2.57115043874616 3.06417777247591 2 3.46410161513776 1.36808057330267 3.75877048314363 0.694592710667719 3.93923101204883 -2.22044604925031e-015 4 -0.694592710667724 3.93923101204883 -1.36808057330268 3.75877048314363 -2 3.46410161513775 -2.57115043874616 3.06417777247591 -3.06417777247592 2.57115043874615 -3.46410161513776 1.99999999999999 -3.75877048314364 1.36808057330267 -3.93923101204883 0.694592710667714 -4 -8.43769498715119e-015 -3.93923101204883 -0.694592710667731 -3.75877048314363 -1.36808057330268 -3.46410161513775 -2.00000000000001 -3.0641777724759 -2.57115043874617 -2.57115043874615 -3.06417777247592 -1.99999999999999 -3.46410161513776 -1.36808057330266 -3.75877048314364 -0.694592710667711 -3.93923101204883 9.76996261670138e-015 -4 0.69459271066773 -3.93923101204883 1.36808057330268 -3.75877048314363 2.00000000000001 -3.46410161513775 2.57115043874616 -3.06417777247591 3.06417777247592 -2.57115043874615 3.46410161513776 -2 3.75877048314364 -1.36808057330267 3.93923101204883 -0.694592710667718 6 4 5 6 7 8 6 8 4 22 23 24 27 25 26 28 25 27 30 28 29 30 25 28 16 17 18 33 24 25 33 30 31 33 31 32 33 25 30 13 14 15 34 19 20 34 20 21 34 21 22 34 22 24 34 24 33 11 12 13 11 15 16 11 13 15 36 34 35 36 19 34 1 18 19 1 16 18 1 19 36 8 1 2 8 9 10 8 10 11 8 11 16 8 16 1 4 2 3 4 8 2 +36 34 1 4.28196367252554e-012 +4.9987898535542 0.100000000014637 0 -4.998789853554 0.100000000014326 0 4.89610454591407 1.00398238420575 0 4.63131344242338 1.87439268679023 0 4.21318354798638 2.68241237387162 0 3.65555878253386 3.40128861098553 0 2.97690162078263 4.00722002635924 0 2.19968181563189 4.48014475378895 0 1.34963244403765 4.80440466371502 0 0.454897907044113 4.96926379037774 0 -0.454897907044426 4.96926379037771 0 -1.34963244403795 4.80440466371494 0 -2.19968181563216 4.48014475378881 0 -2.97690162078288 4.00722002635906 0 -3.65555878253406 3.40128861098531 0 -4.21318354798653 2.68241237387136 0 -4.6313134424235 1.87439268678994 0 -4.89610454591414 1.00398238420544 0 3.9887498046261 0.100000000012089 0 -4.00874980462601 0.10000000001055 0 3.90472205823227 0.821554141118968 0 3.69158163032407 1.51601234627145 0 3.35635817250308 2.16047047062016 0 2.91010779524206 2.73367343773293 0 2.36754842282215 3.21671625996697 0 1.74657437683553 3.59366754982217 0 1.06766619792732 3.85209495805138 0 0.353215170632453 3.98347520888764 0 -0.373215170634012 3.9834752088875 0 -1.08766619792883 3.85209495805096 0 -1.76657437683691 3.59366754982149 0 -2.3875484228234 3.21671625996605 0 -2.93010779524312 2.7336734377318 0 -3.37635817250393 2.16047047061885 0 -3.71158163032464 1.51601234627002 0 -3.92472205823259 0.821554141117454 0 4.99878985355424 0.100000000014627 -4.99878985355424 0.100000000014327 4.89610454591407 1.00398238420575 4.63131344242338 1.87439268679023 4.21318354798637 2.68241237387162 3.65555878253386 3.40128861098553 2.97690162078263 4.00722002635924 2.19968181563189 4.48014475378895 1.34963244403765 4.80440466371502 0.454897907044117 4.96926379037774 -0.45489790704442 4.96926379037771 -1.34963244403794 4.80440466371494 -2.19968181563216 4.48014475378881 -2.97690162078288 4.00722002635906 -3.65555878253407 3.40128861098531 -4.21318354798653 2.68241237387136 -4.6313134424235 1.87439268678994 -4.89610454591413 1.00398238420544 3.9887498046261 0.1 -4.0087498046262 0.1 3.90472205823226 0.821554141118968 3.69158163032406 1.51601234627145 3.35635817250308 2.16047047062016 2.91010779524205 2.73367343773293 2.36754842282215 3.21671625996697 1.74657437683552 3.59366754982217 1.06766619792733 3.85209495805138 0.353215170632453 3.98347520888764 -0.373215170634004 3.9834752088875 -1.08766619792883 3.85209495805096 -1.76657437683692 3.59366754982149 -2.3875484228234 3.21671625996605 -2.93010779524311 2.7336734377318 -3.37635817250392 2.16047047061885 -3.71158163032465 1.51601234627002 -3.92472205823259 0.821554141117454 18 2 20 36 18 20 17 18 36 35 17 36 16 17 35 34 16 35 15 16 34 33 15 34 14 33 32 14 15 33 13 32 31 13 14 32 30 13 31 12 13 30 29 12 30 11 29 28 11 12 29 10 28 27 10 11 28 3 19 1 3 21 19 9 27 26 9 10 27 4 22 21 4 21 3 8 26 25 8 9 26 5 23 22 5 22 4 7 8 25 7 25 24 6 7 24 6 24 23 6 23 5 +45 43 1 0.0158440854468531 +4.9987898535542 0.110000000014637 17 -4.998789853554 0.110000000014326 17 4.89610454591407 1.01398238420575 17 4.63131344242338 1.88439268679023 17 4.21318354798638 2.69241237387162 17 3.65555878253386 3.41128861098553 17 2.97690162078263 4.01722002635924 17 2.19968181563189 4.49014475378895 17 1.34963244403765 4.81440466371502 17 0.454897907044113 4.97926379037774 17 -0.454897907044426 4.97926379037771 17 -1.34963244403795 4.81440466371494 17 -2.19968181563216 4.49014475378881 17 -2.97690162078288 4.01722002635906 17 -3.65555878253406 3.41128861098531 17 -4.21318354798653 2.69241237387136 17 -4.6313134424235 1.88439268678994 17 -4.89610454591414 1.01398238420544 17 4.9987898535546 0.10999999999999 5.0006304078976 -4.998789853555 0.110000000000001 5.0006404808083 -4.92500331139361 0.862751865953149 5.04284443085089 -4.78932918282001 1.43608007398346 5.1204336826676 -4.62346638961682 1.90356469255293 5.2136730481525 -4.37179280973587 2.42640204832813 5.35026185513182 -4.05304337480433 2.92794175500145 5.51300812839056 -3.68881514455643 3.37529892454356 5.68188504063341 -3.27285778990527 3.78000024976018 5.85333649861493 -2.80279068234267 4.14057536891813 6.02285533808936 -2.27229002117387 4.45384089214149 6.18545666048546 -1.65775719715316 4.71718571408562 6.33465737956368 -0.961585387302307 4.90666419741351 6.44706385170871 -0.277187692125167 4.99231078657525 6.49775352399935 0.466127144023389 4.97821956221543 6.48899480189444 1.07335552609089 4.88343197948643 6.43230217437619 1.56496832365673 4.74877607066932 6.35371652382232 2.10904211482537 4.53342508133827 6.23259001223051 2.62364333671582 4.25634759367771 6.08489060942328 3.07054103313121 3.94610918978576 5.93097557359015 3.46799946652955 3.60180228676963 5.77430211631675 3.82555465035904 3.21949220120022 5.61743882988279 4.14810457015523 2.79163543476881 5.46290513938832 4.43942163470778 2.30033378828912 5.31332655932865 4.6963967837128 1.71576671550279 5.17380475980545 4.90192708571149 0.985451063208356 5.05685932798324 4.96598466700571 0.582233874310663 5.01958113896772 0.0220017750562298 17 3.11959087853363 17 0.204212898790194 17 0.386424022524159 17 0.568635146258123 17 0.750846269992088 17 0.933057393726053 17 1.11526851746002 17 1.29747964119398 17 1.47969076492795 17 1.66190188866191 17 1.84411301239588 17 2.02632413612984 17 2.20853525986381 17 2.39074638359777 17 2.57295750733174 17 2.7551686310657 17 2.93737975479967 17 0.0220017750533005 5.00063040789759 3.11959087853649 5.00064048080828 2.9681743537217 5.04284443085098 2.85027353339506 5.12043368266761 2.75102547936632 5.21367304815247 2.63490880341432 5.35026185513176 2.51598702447611 5.51300812839056 2.40054691902445 5.68188504063338 2.28441208590932 5.85333649861491 2.165855957405 6.02285533808938 2.04255998095107 6.18545666048546 1.90874388227135 6.33465737956378 1.76431908297941 6.4470638517087 1.62626230090935 6.49775352399929 1.47743528487533 6.48899480189451 1.35444125497065 6.43230217437617 1.25245288633998 6.35371652382244 1.13535740258738 6.23259001223053 1.01839997360605 6.08489060942329 0.909540822858351 5.93097557359011 0.804321869035197 5.77430211631673 0.699582695220294 5.61743882988282 0.592367951298399 5.46290513938831 0.478070384434002 5.31332655932873 0.350272049170452 5.17380475980547 0.198389015953742 5.05685932798334 0.116711560583771 5.01958113896763 13 29 28 13 30 29 1 19 45 14 28 27 14 13 28 3 44 43 3 45 44 3 1 45 15 14 27 15 26 25 15 27 26 4 43 42 4 3 43 16 15 25 16 25 24 5 41 40 5 42 41 5 4 42 17 23 22 17 24 23 17 16 24 6 40 39 18 22 21 6 5 40 18 17 22 2 21 20 2 18 21 7 38 37 7 39 38 7 6 39 8 36 35 8 37 36 8 7 37 9 35 34 9 8 35 10 33 32 10 34 33 10 9 34 11 32 31 11 10 32 12 11 31 12 31 30 13 12 30 +28 26 1 4.18863277396042e-011 +86 -4.25489921074274e-011 79.9998275856942 69.9887498027698 1.20736753927986e-015 79.9998275856944 86 -4.1919995252826e-011 77.9998148141796 69.9887498046261 -1.20889964705384e-011 61 84 -4.11899958585593e-011 75.9997999991998 85.9702130475106 7.59835250274676e-012 77.6559220024234 85.8815318142515 -2.31564767361192e-012 77.3216965340851 85.7516386437002 6.4291627577262e-013 77.0345297037837 85.5938088187444 -2.4980018054066e-016 76.7915952991261 85.3963922281105 1.41553435639707e-015 76.5679913691013 85.1584499051527 1.80411241501588e-016 76.3694673643982 84.8793757457873 -4.16572332184728e-012 76.2035003418456 84.5607689757611 -2.71654920780406e-012 76.0800250998888 84.2862317075903 6.99150459748665e-012 76.020388269587 70.9987898535542 -1.46369999454166e-011 61 73.9994040498432 4.65710803254638e-013 75.9997999992 70.9987898535546 9.6034291630076e-015 72.9993695921024 73.5966908953157 1.89001592154625e-013 75.9726511457319 73.2039901204039 -1.30354060878801e-013 75.8924476705032 72.8298557920887 1.2763401446847e-013 75.7624764692525 72.4810746479287 2.88657986402541e-015 75.5872879901349 72.1625731317074 5.55111512312578e-017 75.3718728070981 71.8774163893407 -1.37390099297363e-015 75.1206887193436 71.627776900341 -5.82867087928207e-016 74.8373984555542 71.4154271263022 5.55111512312578e-017 74.5245562618805 71.2424302478383 8.18789480661053e-016 74.1836023206573 71.1116707462507 4.71844785465692e-016 73.8145280023347 71.0281799784018 2.38697950294409e-015 73.4182431253716 79.9998275856944 86 79.9998275856944 69.9887498027698 77.9998148141796 86 61 69.9887498046264 75.9997999991998 84 77.6559220024234 85.9702130475106 77.3216965340851 85.8815318142515 77.0345297037837 85.7516386437002 76.7915952991261 85.5938088187444 76.5679913691014 85.3963922281105 76.3694673643983 85.1584499051527 76.2035003418456 84.8793757457873 76.0800250998888 84.5607689757611 76.0203882695869 84.2862317075903 61 70.9987898535542 75.9997999992 73.9994040498432 72.9993695921024 70.9987898535546 75.9726511457319 73.5966908953157 75.8924476705032 73.2039901204039 75.7624764692526 72.8298557920887 75.5872879901349 72.4810746479287 75.3718728070981 72.1625731317074 75.1206887193436 71.8774163893407 74.8373984555542 71.627776900341 74.5245562618805 71.4154271263022 74.1836023206573 71.2424302478383 73.8145280023347 71.1116707462507 73.4182431253717 71.0281799784018 17 15 4 2 18 19 2 19 20 2 20 21 2 21 22 2 22 23 2 23 24 2 24 25 2 25 26 2 26 27 2 27 28 2 28 17 2 17 4 16 18 2 13 14 5 12 13 5 11 12 5 10 11 5 9 10 5 8 9 5 7 8 5 6 7 5 3 6 5 1 5 16 1 16 2 1 3 5 +88 86 1 7.80191630152044e-007 +86 -2.35049896213368e-011 22.0001724143057 36 -2.35049896213368e-011 22.0001724143057 86 -2.3327992315636e-011 24.0001851858203 36 -4.25489921074274e-011 79.9998275856942 84 -2.31239888348611e-011 26.0002000008001 85.9702130475838 4.22907542318995e-012 24.3440779968855 85.8815318138853 -1.28944077637527e-012 24.6783034670208 85.7516386425394 3.55979135058249e-013 24.9654702982963 85.5938088165172 0 25.2084047038119 85.3963922244756 0 25.4320086344437 85.1584498997581 1.38777878078145e-017 25.630532639435 84.87937574028 -2.33811581207277e-012 25.7964996608838 84.5607689715214 -1.52529378016908e-012 25.9199749013958 84.2862317053893 3.9247632921402e-012 25.9796117306909 61.991250284966 -7.19993509257222e-013 79.9998275856944 73.9994036231259 -1.09912079437891e-014 26.0002000008 61.991250195374 -1.05499914360152e-011 61 70.9987898547482 2.35506059098611e-013 29.0006377004967 73.5954118269787 2.5951463200613e-015 26.0275223373449 73.201446581283 -1.70696790036118e-015 26.1082528002557 72.8262425446315 1.81799020282369e-015 26.2390556885302 72.476737025381 0 26.4152618218311 72.1579404928892 2.77555756156289e-017 26.6317212608708 71.8729375959085 2.77555756156289e-017 26.8838013331238 71.6238593769187 0 27.1676682420117 71.4123810897437 0 27.4806174617554 71.2404327360356 -3.48332473976143e-015 27.8210610743101 71.1106884839674 1.79994907867354e-014 28.1889632767811 71.0279288039181 -4.13835632429027e-014 28.5835477083376 61.001210146446 -1.43259987206434e-011 61 70.9987898535542 -1.46369999454166e-011 41 61.001210146445 -9.99200722162641e-016 72.9993595191917 69.9887498046261 -1.20889964705384e-011 41 58.000596971832 3.27099458630187e-014 75.9997999992 58.4022313098428 -6.07847105982273e-015 75.9727969720306 58.7939147142579 5.88418203051333e-015 75.8930227825673 59.1672587901886 -3.49720252756924e-015 75.7636955287598 59.5156007438146 1.85962356624714e-015 75.5892345773804 59.8340643856374 -5.41233724504764e-016 75.3744703776667 60.119554410998 1.346145417358e-015 75.1237116182981 60.3698081084032 7.07767178198537e-016 74.8405062219523 60.5829160201745 3.09474668114262e-015 74.5273544824775 60.7566659587167 -2.05391259555654e-015 74.1856975874418 60.8879928600858 1.99840144432528e-015 73.8157109768036 60.9717670866818 -2.77555756156289e-016 73.418609447567 69.9887498046261 -1.20869980690941e-011 26 47 -4.11899958585593e-011 75.9997999991998 61.991250195374 -1.05479930345709e-011 26 46 -4.07789912948431e-011 74.9997916657623 46.846374873882 8.36328228892569e-012 75.9879291334763 46.6992377317913 -5.65866797863634e-012 75.9534987247817 46.5633323477841 5.50838541446552e-012 75.8994221599662 46.4415582566525 2.3037127760972e-015 75.8293423789657 46.3349849549709 -6.66133814775094e-016 75.7466279044077 46.2437782237253 -1.58206781009085e-015 75.6541125750957 46.167733966545 1.08246744900953e-015 75.5541728828568 46.1064260743644 5.26137466927423e-012 75.4487116199174 46.0594019661473 -3.32832372773595e-012 75.3393167407661 46.0262224660401 9.31449362084891e-013 75.2272960211484 46.006518833425 2.6319085799642e-012 75.1137889236836 61.991250195374 -1.05499914360152e-011 41 46 -2.30099966858077e-011 27.0002083342377 61.001210146446 -1.43279971220878e-011 41 47 -2.31239888348611e-011 26.0002000008001 46.8463748769532 4.69529970459348e-012 26.0120708660245 46.6992377382169 -3.17654236248188e-012 26.0465012732392 46.5633323566767 3.09145764543217e-012 26.1005778356446 46.44155826405 0 26.1706576160522 46.3349849606703 0 26.2533720905179 46.2437782279249 0 26.3458874200508 46.167733969442 0 26.44582711279 46.1064260763098 2.96815350075974e-012 26.5512883759754 46.0594019673915 -1.87830306863646e-012 26.6606832559336 46.026222466725 5.26120813582054e-013 26.7727039758718 46.0065188336916 1.48635270758035e-012 26.8862110739077 61.001211712306 -9.99200722162641e-016 29.0006247660701 58.001227350682 1.49880108324396e-015 26.0002000008 58.4055326840029 -5.55111512312578e-017 26.0275703861499 58.7995247997268 1.2490009027033e-016 26.1083707836557 59.1744440527883 2.77555756156289e-017 26.2391392804321 59.5234271560913 3.19189119579733e-016 26.415105445367 59.8416180896469 -1.38777878078145e-017 26.6310948594842 60.1261276086008 4.57966997657877e-016 26.8825651751385 60.3749669979551 4.57966997657877e-016 27.1658538106246 60.5865160757122 -9.57567358739198e-016 27.4784688647739 60.7588098263464 1.66533453693773e-016 27.8190573477309 60.8889708937549 -1.11022302462516e-016 28.1875747688937 60.9720067279335 -1.52655665885959e-016 28.5829801888673 22.0001724143056 86 22.0001724143056 36 24.0001851858203 86 79.9998275856942 36 26.0002000008001 84 24.3440779968855 85.9702130475838 24.6783034670208 85.8815318138853 24.9654702982963 85.7516386425394 25.2084047038119 85.5938088165172 25.4320086344437 85.3963922244756 25.630532639435 85.1584498997581 25.7964996608838 84.87937574028 25.9199749013958 84.5607689715214 25.9796117306909 84.2862317053893 79.9998275856944 61.9912502849655 26.0002000008 73.9994036231259 61 61.9912501953736 29.0006377004967 70.9987898547482 26.0275223373449 73.5954118269787 26.1082528002557 73.201446581283 26.2390556885302 72.8262425446315 26.4152618218311 72.476737025381 26.6317212608708 72.1579404928892 26.8838013331238 71.8729375959085 27.1676682420117 71.6238593769187 27.4806174617554 71.4123810897437 27.8210610743101 71.2404327360356 28.1889632767811 71.1106884839674 28.5835477083376 71.0279288039181 61 61.0012101464458 41 70.9987898535546 72.9993595191917 61.0012101464454 41 69.9887498046261 75.9997999990989 58.0005969718316 75.9727969720306 58.4022313098426 75.8930227825673 58.793914714258 75.7636955287598 59.1672587901885 75.5892345773804 59.5156007438145 75.3744703776667 59.8340643856375 75.1237116182981 60.1195544109978 74.8405062219523 60.369808108403 74.5273544824775 60.5829160201744 74.1856975874418 60.7566659587166 73.8157109768036 60.8879928600859 73.4186094475669 60.9717670866818 26 69.9887498046264 75.9997999992 47 26 61.9912501953738 74.9997916657623 46 75.9879291334763 46.8463748738819 75.9534987247817 46.6992377317911 75.8994221599662 46.5633323477843 75.8293423789656 46.4415582566527 75.7466279044077 46.3349849549708 75.6541125750957 46.2437782237251 75.5541728828568 46.1677339665447 75.4487116199174 46.1064260743641 75.3393167407661 46.0594019661471 75.2272960211484 46.02622246604 75.1137889236836 46.0065188334249 41 61.9912501953736 27.0002083342377 46 41 61.0012101464458 26.0002000008001 47 26.0120708660245 46.8463748769531 26.0465012732392 46.6992377382169 26.1005778356446 46.5633323566767 26.1706576160522 46.4415582640501 26.2533720905179 46.3349849606704 26.3458874200509 46.243778227925 26.44582711279 46.1677339694424 26.5512883759754 46.1064260763102 26.6606832559336 46.0594019673918 26.7727039758718 46.0262224667252 26.8862110739077 46.0065188336916 29.0006247639418 61.0012101464454 26.0002000008 58.0012273506824 26.0275703861499 58.405532684003 26.1083707836557 58.7995247997269 26.2391392804321 59.1744440527884 26.415105445367 59.5234271560916 26.6310948594842 59.8416180896469 26.8825651751385 60.1261276086008 27.1658538106246 60.3749669979552 27.4784688647739 60.5865160757123 27.8190573477309 60.758809826346 28.1875747688937 60.8889708937546 28.5829801888673 60.9720067279334 57 58 4 26 25 46 56 57 4 70 69 2 27 26 46 68 2 69 55 56 4 21 46 22 71 70 2 72 71 2 67 2 68 28 27 46 54 55 4 20 46 21 73 72 2 53 54 4 29 28 46 66 2 67 74 73 2 52 53 4 19 46 20 65 2 66 18 29 46 75 74 2 51 52 4 64 2 65 50 51 4 62 75 2 61 76 63 77 2 64 1 19 16 1 2 48 1 48 46 1 46 19 47 50 4 5 3 1 5 1 16 6 3 5 13 5 14 7 6 5 32 17 30 12 5 13 8 7 5 11 5 12 48 2 77 48 77 78 48 78 79 9 8 5 48 79 80 48 80 81 48 81 82 48 82 83 48 83 84 10 9 5 10 5 11 85 48 84 31 18 33 86 48 85 87 48 86 4 62 2 88 48 87 49 62 4 76 48 88 15 35 34 15 47 4 15 36 35 15 37 36 15 38 37 15 39 38 60 49 4 15 40 39 15 41 40 23 46 24 15 42 41 15 43 42 15 44 43 59 60 4 15 45 44 15 17 32 15 32 45 25 24 46 15 34 47 46 33 18 61 48 76 58 59 4 22 46 23 +43 41 1 0.0131257183231064 +3.9987498046261 0.100000000012089 45 -3.998749804626 0.10000000001055 45 3.91472205823227 0.821554141118968 45 3.70158163032407 1.51601234627145 45 3.36635817250308 2.16047047062016 45 2.92010779524206 2.73367343773293 45 2.37754842282216 3.21671625996697 45 1.75657437683553 3.59366754982217 45 1.07766619792733 3.85209495805138 45 0.363215170632458 3.98347520888764 45 -0.363215170634007 3.9834752088875 45 -1.07766619792882 3.85209495805096 45 -1.75657437683691 3.59366754982149 45 -2.3775484228234 3.21671625996605 45 -2.92010779524311 2.7336734377318 45 -3.36635817250392 2.16047047061885 45 -3.70158163032464 1.51601234627002 45 -3.91472205823258 0.821554141117454 45 3.99874980276981 0.0999999999999988 26.0001724143056 -3.99874971503399 0.10000000000072 26.0001724143056 0 4 26.2771867673099 0.645256061517941 3.94761249005124 26.2699398608555 1.13714487298634 3.83495754420221 26.2546855870636 1.53584235905242 3.69339779203401 26.2361544157516 1.97881555882783 3.47624624266801 26.2091036596102 2.39942747207843 3.2004278556831 26.177139980318 2.76399360922184 2.89142518254218 26.1445037905034 3.08708918991701 2.54359612146044 26.1117650239892 3.37578061190405 2.14571719190762 26.0794900746616 3.63190931859248 1.67607666577974 26.0484755967825 3.84936868610581 1.08736414395357 26.0203927006748 3.94645834498273 0.652277970577913 26.0073365585593 -3.93186247795443 0.735158149726775 26.0093197277129 -3.81021811505035 1.21746826008004 26.0255671568051 -3.66135768049141 1.61073240893077 26.0447666235331 -3.43529251960994 2.04908872718466 26.0724830880065 -3.1490526293253 2.46646811824585 26.1050777342688 -2.82824930390329 2.82860480997397 26.1382780295953 -2.46629936052535 3.1491853503087 26.1714961964934 -2.05020490249218 3.43462799993549 26.2041091560499 -1.55348646884325 3.68601141984733 26.2352069396843 -0.917721015065126 3.89330042866718 26.2625294821098 -0.506744158160458 3.9677714551253 26.2727169807963 0.0250026049023901 45 3.1165900486878 45 0.206860689830944 45 0.388718774759497 45 0.570576859688051 45 0.752434944616605 45 0.934293029545158 45 1.11615111447371 45 1.29800919940226 45 1.47986728433082 45 1.66172536925937 45 1.84358345418792 45 2.02544153911648 45 2.20729962404503 45 2.38915770897358 45 2.57101579390214 45 2.75287387883069 45 2.93473196375924 45 0.0250026048993611 26.000172414396 3.11659004869043 26.0001724153762 1.5707963267949 26.2771867673099 1.40877436736067 26.2699398608555 1.28253446894602 26.2546855870636 1.17671445942043 26.2361544157516 1.05330224400995 26.2091036596102 0.927473958864627 26.177139980318 0.807927027050973 26.1445037905034 0.689172848986746 26.1117650239891 0.566200445690956 26.0794900746616 0.432364819440222 26.0484755967825 0.27530559986266 26.0203927006747 0.163800999023919 26.0073365585593 2.95675237560443 26.0093197277129 2.83231864860317 26.0255671568051 2.72714641801419 26.0447666235331 2.60376424592755 26.0724830880065 2.47715430715221 26.1050777342688 2.35613162909675 26.1382780295953 2.23518103552018 26.1714961964934 2.10894961677045 26.2041091560499 1.96966016401443 26.2352069396843 1.80228861688095 26.2625294821099 1.69782370865233 26.2727169807963 17 35 34 17 36 35 18 17 34 18 34 33 1 19 32 2 18 33 2 33 20 3 32 31 3 1 32 4 31 30 4 3 31 5 29 28 5 30 29 5 4 30 6 28 27 6 5 28 7 26 25 7 27 26 7 6 27 8 25 24 8 7 25 9 23 22 9 24 23 9 8 24 10 22 21 10 9 22 11 43 42 11 21 43 11 10 21 12 42 41 12 11 42 13 12 41 13 41 40 14 13 40 14 39 38 14 40 39 15 14 38 15 38 37 16 15 37 16 37 36 17 16 36 +1220 2362 1 0.0403206721143309 +-21.9993595191917 0.100000000000001 24.998789853555 -21.9993695921024 0.0999999999999904 15.0012101464454 -21.9571555691491 0.852751865953149 24.9250033113936 -21.8795663173324 1.42608007398346 24.78932918282 -21.7863269518475 1.89356469255293 24.6234663896168 -21.6497381448682 2.41640204832813 24.3717928097359 -21.4869918716094 2.91794175500146 24.0530433748043 -21.3181149593666 3.36529892454356 23.6888151445564 -21.1466635013851 3.77000024976018 23.2728577899053 -20.9771446619106 4.13057536891813 22.8027906823427 -20.8145433395145 4.44384089214149 22.2722900211739 -20.6653426204363 4.70718571408562 21.6577571971532 -20.5529361482913 4.89666419741351 20.9615853873023 -20.5022464760007 4.98231078657525 20.2771876921252 -20.5110051981056 4.96821956221543 19.5338728559766 -20.5676978256238 4.87343197948643 18.9266444739091 -20.6462834761777 4.73877607066932 18.4350316763433 -20.7674099877695 4.52342508133827 17.8909578851746 -20.9151093905767 4.24634759367771 17.3763566632842 -21.0690244264099 3.93610918978576 16.9294589668688 -21.2256978836832 3.59180228676963 16.5320005334705 -21.3825611701172 3.20949220120022 16.174445349641 -21.5370948606117 2.78163543476881 15.8518954298448 -21.6866734406713 2.29033378828912 15.5605783652922 -21.8261952401946 1.70576671550279 15.3036032162872 -21.9431406720168 0.975451063208356 15.0980729142885 -21.9804188610323 0.572233874310663 15.0340153329943 -24.9997999992 0.0999999999999673 27.999403028168 -24.9727969720306 0.100000000000006 27.5977686901572 -24.8930227825673 0.0999999999999941 27.2060852857421 -24.7636955287598 0.100000000000004 26.8327412098114 -24.5892345773804 0.0999999999999981 26.4843992561854 -24.3744703776667 0.100000000000001 26.1659356143626 -24.1237116182981 0.0999999999999987 25.880445589002 -23.8405062219523 0.0999999999999993 25.6301918915968 -23.5273544824775 0.0999999999999969 25.4170839798255 -23.1856975874418 0.100000000000002 25.2433340412833 -22.8157109768036 0.099999999999998 25.1120071399142 -22.418609447567 0.1 25.0282329133182 -24.9997999992 0.0999999999995343 12.0005959501568 -24.9726511457319 0.099999999999811 12.4033091046843 -24.8924476705032 0.10000000000013 12.7960098795961 -24.7624764692526 0.0999999999998724 13.1701442079113 -24.5872879901349 0.0999999999999971 13.5189253520713 -24.3718728070981 0.1 13.8374268682926 -24.1206887193436 0.100000000000001 14.1225836106593 -23.8373984555542 0.100000000000001 14.372223099659 -23.5245562618805 0.1 14.5845728736978 -23.1836023206573 0.0999999999999992 14.7575697521617 -22.8145280023347 0.0999999999999995 14.8883292537493 -22.4182431253716 0.0999999999999976 14.9718200215982 -24.9549219626997 1.50062364492276 27.8893198142312 -24.8653921696809 2.59080532968928 27.6674672254028 -24.7554619837214 3.48813731588996 27.3876000245961 -24.5928988493809 4.4932539180142 26.9555701697809 -24.3989355140574 5.44903225950493 26.4056109851553 -24.2014872770388 6.26801512434619 25.7971468646873 -24.0037525767065 6.98712116928207 25.1205083173627 -23.8073088272144 7.62968193343561 24.3497537108998 -23.6154042003565 8.20443080071928 23.4396489943297 -23.4387556270019 8.69624830938069 22.3100573619743 -23.3365416553078 8.96692943912435 21.2606747159565 -23.2935774103136 9.07795414263801 20.1497372421834 -23.318151783286 9.01464350160934 19.040693017684 -23.3874070282466 8.83341341133561 18.1414072087155 -23.4772979523326 8.59165181185922 17.4016947680091 -23.61308275999 8.21110970079328 16.5727774165622 -23.7769204054447 7.72386277244134 15.7815744113219 -23.9463040024281 7.18154054565369 15.0929481309348 -24.1177165528532 6.58298931108785 14.4798753244347 -24.2888235506524 5.92056231435485 13.926446682504 -24.4575563630209 5.17956863446788 13.4234089920176 -24.620713373638 4.33825690486847 12.9686773294375 -24.7735054254601 3.35759273852763 12.5657964815232 -24.9070991684933 2.15323260307206 12.2285248478292 -24.9700082507653 1.22420912163077 12.0736880711042 -24.9723571584278 0.178509536604559 27.5965636534186 -24.9722115891708 0.178481861716913 27.5954864015484 -24.892646298511 0.168329861467804 27.2050008076489 -24.8920717725342 0.168274777995504 27.2029076449478 -24.9320766459634 1.42578205125213 27.4922049287605 -24.9319412412779 1.42557844970707 27.4911389000062 -24.9307752820664 1.44825794213813 27.4888331879035 -24.9306402076152 1.4480511184744 27.4877675299386 -24.763372753603 0.158387667385499 26.8317769385766 -24.7621545914269 0.158309901979931 26.8288947274117 -24.8557428482745 1.35075911216825 27.1045552045904 -24.8551845606347 1.35035245357059 27.1024821695794 -24.8545513898847 1.37204572931241 27.1013130298723 -24.8539936318107 1.37163261415964 27.0992406627656 -24.5889570090957 0.148869958654725 26.4835560628903 -24.5870115212202 0.148777932636311 26.4802355137632 -24.8526451882394 2.44331518883065 27.2844365719341 -24.8525303460813 2.44296242027286 27.2833946832373 -24.850953095919 2.46039132259286 27.2799623781818 -24.8508386996683 2.46003599515728 27.2789210341716 -24.7290235387649 1.27724339530572 26.7348253495398 -24.7278222800582 1.27666746555944 26.7319695411598 -24.727915581213 1.29736126305059 26.7316993259731 -24.7267148769024 1.29677616597504 26.7288443967718 -24.3742313128933 0.139920742773369 26.1652143520758 -24.3716348265163 0.139824853800623 26.1618563237728 -24.7831755366714 2.31315988860992 26.9052512399793 -24.7826504427086 2.31245354752946 26.9032219809666 -24.7816326313277 2.32928914247828 26.9009684198783 -24.7811082606826 2.32857764923891 26.8989401523633 -24.5563004992263 1.20665316451503 26.3897701600498 -24.554367562784 1.20596963271022 26.3864797834627 -24.5552483012936 1.22564633468044 26.3867496686667 -24.5533157812454 1.22495190275312 26.3834602988228 -24.7574949648383 3.26647911881988 27.0292260448136 -24.7574055549664 3.26600140388908 27.0282164147502 -24.7516115639826 3.31057822369709 27.0131890612347 -24.7515237462307 3.31009374012952 27.0121815255352 -24.1235070020631 0.131637018631049 25.8798471367445 -24.1204848536249 0.131547576541968 25.8768223153048 -24.6617121011228 2.18534644854546 26.5431518090188 -24.6605459334452 2.18434428768499 26.5403538677115 -24.6602840515399 2.20054161686274 26.5390419723687 -24.6591186535123 2.19953212014617 26.5362453435764 -24.3424314318842 1.14009208523013 26.0743635352897 -24.3398400085635 1.13937790299904 26.0710372022348 -24.3414080070996 1.15802316135544 26.0714410033783 -24.3388167595094 1.15729757706803 26.0681157281315 -24.6965508648186 3.0900236915995 26.6613952311687 -24.6960671961579 3.08906510946548 26.6594248913339 -24.6912022062606 3.13161001023423 26.646096776555 -24.6907211413192 3.13063771625566 26.64413027509 -23.8403345608724 0.124091448522389 25.6297157140267 -23.8372267939236 0.124017015230965 25.6273045696613 -24.4925444648416 2.06243973137435 26.2050475936657 -24.4906383917844 2.06124900860359 26.2018235336742 -24.4911947527912 2.0767344217123 26.2010953375387 -24.4892892758063 2.0755349703088 26.1978727793667 -24.09179918564 1.07831389109572 25.79179443302 -24.0887740690718 1.0776459296989 25.7888007389401 -24.0907798141353 1.09525838275667 25.7889652284033 -24.0877546136447 1.0945797521855 25.7859725715704 -24.6170672458572 4.19216062248964 26.6372425995147 -24.6170162125249 4.19154008821789 26.6362856271959 -24.581679752114 2.91643986802063 26.3095830805553 -24.5805578783951 2.91507800447752 26.3068632224133 -23.5272165181015 0.117343110840554 25.4167274118976 -23.524417056056 0.117289056504431 25.4150735257476 -24.5767462786189 2.95553520192446 26.2949553668224 -24.5756272012742 2.95415374328288 26.2922406021762 -24.6049563513457 4.26237509597279 26.6024719997491 -24.6049086528928 4.26174370999007 26.6015198074519 -24.2805690064015 1.94645930857644 25.8960862268274 -24.2779897366216 1.94521468674404 25.8928293614284 -24.2792617923306 1.95990396947554 25.8922796307405 -24.2766828026781 1.95865023120738 25.8890243310641 -23.8080522103174 1.02188713946835 25.5444015384026 -23.804935347368 1.02132970617962 25.5420188026242 -23.8070153143187 1.03793038780998 25.5416634609015 -23.8038981680419 1.03736405283671 25.5392816688752 -24.4170343826448 2.74936759661902 25.9808482899981 -24.4151628759417 2.74774873202927 25.977713428124 -23.1855952638701 0.111453878682449 25.243090731603 -23.1834970068467 0.111421835568831 25.2421888504369 -24.5690410651103 3.96254715715007 26.2880251895281 -24.5686204416126 3.96129782206309 26.2861517987916 -24.4123871624162 2.7860558281552 25.9668315182531 -24.4105178519956 2.78441362326884 25.9637024674823 -24.5580553336592 4.02870884584671 26.2549486597012 -24.5576402146473 4.02743727579507 26.2530841135739 -24.0303030593925 1.83880781268115 25.6196275859477 -24.0272740512806 1.83764413369318 25.6167015533365 -24.0290053044454 1.85146504019552 25.6159582245028 -24.02597622921 1.85029286532699 25.6130337052062 -23.4938053452208 0.971273160570346 25.3341499018248 -23.4909941920096 0.970867060635052 25.3325195076834 -23.4927329689376 0.986508489156503 25.3315025568165 -23.4899214462646 0.986095910698372 25.3298729398373 -24.2075403359385 2.59170760798722 25.6805207958697 -24.2049776751054 2.59001624588712 25.6773564959388 -24.2030516452727 2.62612422952466 25.6670655165131 -24.200490058205 2.62440853214639 25.6639072224717 -22.8156456345346 0.106501289841541 25.1118655582927 -22.8144574556748 0.106487539732776 25.1115300620109 -24.4642438458084 3.73605026646702 25.9531765616516 -24.4631899816651 3.73427153885732 25.9505856378665 -24.4541394581209 3.79815604361512 25.9216499319725 -23.745585829948 1.74055293915141 25.3781520225374 -24.4530915572519 3.79634529770211 25.9190708016456 -23.7424526076755 1.73958293933677 25.37583025628 -23.7442685594421 1.75249476074877 25.3746143739717 -23.741134998171 1.7515177222918 25.3722939576355 -24.4493466724181 5.07634897152265 26.139947177406 -24.4493419162764 5.07559253591428 26.1390593116606 -23.1506210544687 0.926946788494446 25.1632824000092 -23.1485125375388 0.92670508461975 25.1623969776893 -24.4300215564807 5.16816937174003 26.08027522687 -24.4300221091281 5.1673990654498 26.0793956249636 -23.1494991253456 0.941475580596525 25.1607264442722 -23.1473902824027 0.941230028326202 25.1598415637512 -23.9578686322439 2.44550889607252 25.4121478071753 -23.954836384375 2.44392988406957 25.4093105805987 -23.9534199928897 2.47782793222568 25.3992155129025 -23.9503875717029 2.47622635138709 25.396384009144 -24.30657616372 3.51772326536231 25.6399054401777 -24.304758356561 3.51560709785528 25.6369175714205 -22.4185803438934 0.10261930194844 25.0281752796153 -22.4182063670399 0.10261630093978 25.0281225784421 -23.4292543011033 1.65256198683988 25.1737286379207 -23.426421215373 1.65185683655326 25.172147860247 -23.4278933203313 1.66386811721916 25.1703192880234 -23.4250597715969 1.66315790006742 25.1687395958096 -24.2970848050664 3.57588727860774 25.609793422185 -24.2952717274487 3.5737328296027 25.6068189948563 -24.4169676448149 4.795800130433 25.8152891216135 -24.4166237348328 4.79427044830681 25.8135442791231 -22.778799783948 0.889490781016687 25.0348672703422 -22.7776054776335 0.88938644474804 25.0345405064541 -22.7776182964605 0.903424066619699 25.0324035646415 -22.7764237949493 0.903318074614039 25.0320770866108 -24.3994414071631 4.88239649233135 25.7585627093462 -24.3991063345698 4.88083793086941 25.7568333264578 -23.6720874575984 2.3123450915083 25.1783657464421 -23.6689353795684 2.3110324232816 25.1761224233441 -23.6675745770315 2.3427709746658 25.1659270774066 -23.6644213406188 2.34143976957423 25.1636887626127 -24.1009733928256 3.31166220029974 25.3537575556447 -24.0984373011266 3.30945248763628 25.3507445775148 -23.0831102901086 1.5757127111403 25.0086576116708 -23.0809822145686 1.57529447074695 25.0078063177327 -23.0816865798521 1.58647037377815 25.0053742350914 -24.0918257253054 3.36609969244009 25.3249402919843 -23.0795580886058 1.58604917345883 25.0045236776683 -24.0892919931306 3.36385007865726 25.3219411024951 -24.324473858556 4.51803668512165 25.5030060641947 -24.3235033827534 4.51585235680098 25.5005870868211 -24.2777056693445 5.83930046591957 25.5896589348111 -24.2777473030657 5.83843240727883 25.5888446222653 -22.3797005059849 0.859901530744293 24.953985596345 -22.3793246497122 0.859878511381201 24.9539354304891 -24.3083667860639 4.59933379055211 25.4489986111127 -24.3074059388155 4.59710740987924 25.4466003840892 -22.3784541821647 0.873366417346383 24.9516135499274 -22.3780782659556 0.873343034812877 24.951563466544 -23.3533061700589 2.19349613555715 24.9813554549133 -23.3504470245339 2.19254590602669 24.9798370092606 -23.3486418378579 2.22225809890112 24.9693874967335 -23.3457810756533 2.22129470699059 24.967872985207 -23.8523186853263 3.12082643476303 25.0985187561463 -23.8492827196335 3.11876781098172 25.0958246870936 -24.2514478525952 5.94695233020541 25.5009974075123 -24.2514964765639 5.94606902460395 25.5001945630443 -23.8432628076658 3.17183127456565 25.0708946311849 -23.8402265438924 3.16973582284827 25.068213517767 -22.7077053596497 1.51105885255838 24.8860109319479 -22.7064992810308 1.51087931936109 24.8857019055881 -22.7062053400323 1.52136384988105 24.8828511042648 -22.7049990103785 1.52118307704045 24.8825424547453 -24.1753887898055 4.24970300191287 25.2103696024518 -24.1736372795618 4.24710061806797 25.2075778042825 -24.160272727496 4.32580483710984 25.1588538425219 -24.1585288664726 4.32315185657702 25.1560857238729 -23.0036232136328 2.09023635556494 24.8234703924311 -23.0014716485109 2.08967637955631 24.8226608121739 -24.2610588802908 5.51653660054859 25.2912623361564 -24.2607922950579 5.51477267430647 25.2896555378463 -22.9987389397117 2.11758705070116 24.8119529987085 -22.9965859130545 2.11701954917279 24.8111460151655 -23.5650193876297 2.94751424916098 24.8770260517724 -23.5618395999812 2.94580951262526 24.8749067353462 -23.5558326845227 2.99544343816281 24.8505089034425 -23.5526504893352 2.9937087583365 24.8484006962896 -24.2371755121892 5.61838945955906 25.20670589565 -24.2369206125628 5.61659319281839 25.2051207263565 -22.3046894905881 1.46035710074499 24.8107691008573 -22.3043100088473 1.46031788396886 24.8107239637289 -22.3031058706232 1.47031857818963 24.8077280124215 -22.3027263114327 1.47027910276863 24.8076829801089 -23.9746071176499 3.99629132580083 24.9430902981954 -23.9721041472921 3.99357458434306 24.940277955238 -23.9600456802863 4.06746248384906 24.8938513707603 -23.9575464916706 4.06469293429013 24.8910632033452 -22.6239026418821 2.00406215906306 24.7077664692657 -22.622682357835 2.00382424619368 24.7074784394748 -24.1809756763124 5.19566424984113 25.0032826757972 -24.1800892888668 5.19313694931324 25.0010493253889 -22.6187497107111 2.03027970925095 24.6966778239553 -23.2426001182617 2.79359582487989 24.6915983633244 -22.6175285421303 2.0300387564816 24.6963910793829 -23.2397020558443 2.79236940650534 24.6901760529466 -24.1052854432882 6.51182876438037 24.9804853851604 -24.1053728307401 6.51086630325602 24.9797492872313 -23.2330965146973 2.83885768274952 24.6661123294021 -23.2301950582451 2.83761036786007 24.6646985162572 -24.158968161677 5.29154186323446 24.9225401963568 -24.1580944770744 5.28896686001698 24.9203360137523 -23.7272407456362 3.76186688247625 24.7051694980695 -23.7242005822796 3.75934115365333 24.7026628833755 -24.0722788390207 6.63229353035871 24.8556397159765 -24.0723749949293 6.63131421599598 24.8549196895541 -23.7128221959131 3.82850179689528 24.6580122625691 -23.70978145802 3.82592752476477 24.6555281105234 -24.0405184477129 4.88488447156114 24.7329417601644 -24.0388331608489 4.88186812262665 24.730361838515 -22.887618339106 2.66089104977963 24.5446385317168 -22.8854315506951 2.66017519885902 24.5438913784201 -22.2161550326996 1.93739481382425 24.6390764212786 -22.2157711670139 1.93734380824474 24.6390370044069 -22.2107075051791 1.96279412343711 24.6283847163068 -22.2103233666238 1.96274252818515 24.6283456419129 -22.8776525407757 2.70394024462959 24.5201103690375 -22.8754626805909 2.70321278374068 24.5193686392653 -24.1042089839411 6.15302535979399 24.7101547504921 -24.1040191633067 6.15105977473938 24.7086961592885 -24.0198111825221 4.97484463521461 24.6557041250139 -24.0181358288441 4.97177046740469 24.6531575106197 -23.4381025650027 3.54962234008815 24.4996288326698 -23.4348889491 3.54753957982505 24.4976688391315 -23.4234619174911 3.61222128404208 24.4543753575326 -23.4202442769604 3.61009946689988 24.452434285285 -24.074195416685 6.26702213235515 24.5910970837173 -24.0740203975451 6.26502018660724 24.5896691594967 -23.8444866222331 4.59110798116071 24.4860223970274 -23.8420152194787 4.58795884297397 24.4834260300546 -22.5014248506793 2.55147102788556 24.4391426172655 -22.5001832658034 2.55117156489373 24.4388848551395 -22.4908949954735 2.59280931739562 24.4154920334354 -22.4896515562393 2.59250539889593 24.4152368421872 -23.8244847297499 4.6754261106103 24.4119825837695 -23.8220178999315 4.67221652022837 24.4094200912983 -24.0364638302517 5.79479746927328 24.4483503849558 -24.0356610875266 5.79197126920501 24.446317471843 -23.1112332066474 3.36215292039429 24.3289050524622 -23.1082875135152 3.36066489511427 24.3276031242211 -23.9336885307294 7.11424381238721 24.2939028747942 -23.9338218639335 7.11319627163674 24.293256845448 -23.0960663385362 3.42130167297011 24.2853875967645 -23.093115034479 3.41978690997696 24.2840997842674 -24.0088351716199 5.90203421335306 24.3347217648199 -24.008048639565 5.89915375223066 24.3327305061297 -23.5982007316048 4.31956434905792 24.2666702419649 -23.5951532607665 4.31664185838839 24.2643636020149 -23.8944075257258 7.24454418935154 24.1214164500282 -23.8945515594908 7.24347781131626 24.1207939648931 -22.0865896669916 2.4685500584829 24.3796810117115 -22.0861992438908 2.4684876908471 24.3796494369018 -23.578339005347 4.39869769237003 24.1955361275767 -23.5752901095116 4.39571987162485 24.193260688159 -22.0754436975827 2.50874086215757 24.3568029217871 -22.075052705405 2.50867772550279 24.3567719919006 -23.9045719980717 5.4468829657966 24.2021064392813 -23.9029521479269 5.44350333720512 24.1997555420576 -22.7497717100861 3.20191950953544 24.1954136288446 -22.7475419041468 3.20106039467131 24.1947420779758 -22.7338438721187 3.25827761541908 24.1534627992394 -23.948335838332 6.72268522064515 24.0561052564595 -22.7316090278601 3.25740413573638 24.1527999602266 -23.9482239905161 6.72053498497789 24.0548195069491 -23.8786068038408 5.54736410016647 24.0934896784916 -23.876999693039 5.54391827236234 24.091186427228 -23.3068905510228 4.07440073481526 24.0780350227164 -23.303639090824 4.07200030963487 24.0762425393917 -23.2866677693992 4.14895654898737 24.0095283782479 -23.2834102073554 4.14651212428952 24.007761808176 -23.9127324854901 6.84569963683599 23.8921605087349 -23.9126389588093 6.84350816012457 23.8909203238233 -23.7131806789893 5.117640651492 23.9771595782221 -23.7107392353809 5.11411146972752 23.9747956773575 -22.3556909922987 3.07162241024715 24.1020278585121 -22.3544235203043 3.07126944197627 24.1018051555219 -22.3388420182358 3.12591887737666 24.0614569821465 -22.3375715316018 3.12556074266904 24.0612382209257 -23.893186793461 6.33005295425608 23.8249598388823 -23.8924699282978 6.32695007663401 23.8231625464111 -23.6881209891503 5.21165486287231 23.8731094070005 -23.6856854166533 5.20805637395763 23.8707937359851 -22.9751486388748 3.85898108624215 23.9226238114593 -22.9721514638489 3.85727758940679 23.92144585224 -23.765436577455 7.65540624015352 23.4983814537086 -23.7656164985956 7.65427867148405 23.4978485729978 -22.9541502179592 3.92968694893477 23.856472578682 -22.9511449122566 3.9279539901799 23.8553135606092 -23.8605565197266 6.44535864856387 23.6691213601573 -23.4677924142556 4.81352346821176 23.7777060290506 -23.8598600334945 6.44219360606353 23.6673865217628 -23.4647351382809 4.81025376123871 23.7756124685338 -21.9322727942431 2.97526041617778 24.0529481861005 -21.9318744617637 2.97518943471039 24.0529251223157 -23.7211580157003 7.79099176197227 23.2580899532408 -23.7213505290896 7.7898433897516 23.2575935444135 -23.7701356062216 5.94764763467704 23.607087276819 -23.4429113534312 4.90160298902925 23.6777717258521 -23.7685837676041 5.94392968618506 23.6050061823671 -23.4398522142221 4.8982701243239 23.6757220633166 -22.6067484203396 3.67641694155738 23.8028203084908 -22.6044729024478 3.67544397749523 23.8022244116281 -21.91442762411 3.02830565520226 24.013524921857 -21.9140283769057 3.02823392733753 24.0135027784568 -23.7961440248532 7.23281549469098 23.3017608777161 -23.796112450447 7.23048921296244 23.3006954137365 -22.5846604091089 3.74409994657579 23.7387437048562 -22.5823777471659 3.74311178347119 23.7381591648503 -23.1740571015743 4.5396916285633 23.6069496901094 -23.1707648724472 4.53701639535999 23.6053327554674 -23.7396158074277 6.05518930912311 23.4587779517531 -23.7380803447653 6.05139509125786 23.4567684972843 -23.1487080497831 4.6225712996524 23.5106790907293 -23.1454079294303 4.6198464160424 23.5090978923572 -23.5836102224274 5.58534286633872 23.4079821605479 -23.7562283225154 7.36029792304602 23.0748077458335 -23.7562186758888 7.35792549053518 23.0738139660896 -23.5812007978774 5.58145932468574 23.4058908430926 -22.2043473749852 3.53000112350514 23.7213293415549 -22.2030527858694 3.52960859014717 23.7211403072143 -23.7540662445024 6.80721849557906 23.1098896790281 -23.7534393515464 6.80384937298869 23.1083955254296 -22.8371465301682 4.30031904819431 23.4674090363336 -22.180964874212 3.59557523831655 23.6590173865743 -22.1796660845337 3.59517769150123 23.6588332742019 -22.8340952758539 4.29843319527996 23.4663578759214 -23.5542771208848 5.68542696529758 23.2665284903416 -23.5518757299202 5.6814634859855 23.2645093621804 -23.6067890004532 8.12964887978337 22.5363805466441 -23.607014353518 8.12844809635661 22.5359973663812 -22.8107964889564 4.37889498184815 23.3743429812335 -22.8077347624367 4.37697660824871 23.3733171716676 -23.3392592114246 5.25090022550856 23.2317370209697 -23.3361931718268 5.24730811720199 23.2298902296629 -23.7177416894236 6.92603170262131 22.8957620855359 -23.7171396875886 6.92259236669014 22.8943672330762 -21.7720069076922 3.42439188027961 23.6819361444434 -21.7716004193623 3.42431579455755 23.6819207264955 -23.5619664068271 8.25815615546512 22.1903782326918 -23.5622046250793 8.25693565483496 22.1900501710882 -23.6403785174321 6.39152564368721 22.9285967502039 -23.6388998546287 6.38748042239412 22.9268638957676 -22.4615122139939 4.09917689098618 23.3613863829205 -22.4591893458364 4.0981114426433 23.3608652189252 -23.3102165177964 5.34414933042366 23.096409616706 -23.3071489489426 5.34048466441017 23.0946276760767 -21.747248828415 3.4888612952469 23.621012860874 -21.7468410889642 3.48878468516277 23.6209985098397 -23.6532750333509 7.67845385299135 22.3946756840443 -23.6533229642606 7.67596422079392 22.3939062025006 -23.0431478599669 4.95057144155568 23.081489765694 -23.0398149521547 4.94764381665931 23.0800718342544 -22.4337626608156 4.17447386884267 23.2710426246039 -22.4314306433688 4.17339233824206 23.2705360062924 -23.6066655648855 6.50154288860147 22.7264738315921 -23.6052075526496 6.49741104569812 22.7248554078094 -23.4592138902593 5.99720958026623 22.7628017373107 -23.4568416221803 5.99298287915148 22.7610608118246 -23.0135934536253 5.03787275439638 22.9515192169569 -23.0102514680771 5.0348886776531 22.9501528627204 -23.6129365998591 7.79921047646264 22.0689862707575 -23.6130072086175 7.79667634563482 22.0683267425388 -22.0505484051309 3.94011735693038 23.2913734627704 -22.0492260879092 3.93969549302541 23.291215974285 -23.624250321963 7.2221055168759 22.2558827874335 -23.4870706187738 8.46799729083372 21.4382528137568 -23.4873300411314 8.46674553362306 21.438043383384 -23.623714164697 7.2184868568628 22.2548004463751 -22.7010479677504 4.68939652999907 22.9596778527325 -22.6979422575341 4.68734669938428 22.9587658177786 -22.0211474316982 4.01326501512958 23.2032223441695 -22.0198197782744 4.01283835792329 23.203070735907 -23.4270405307828 6.098747081738 22.5716230622606 -23.4246793296857 6.09442943598773 22.5699971570181 -23.4696540688633 8.51595622126177 21.197850477372 -23.4699183143218 8.51469762635625 21.1976780661851 -23.2163201954546 5.63343845367613 22.6162301762856 -23.2132496198059 5.62953524889713 22.6146965946213 -22.6703202502471 4.77184624916861 22.8342573336596 -22.6672021387763 4.76976018414705 22.8333805683838 -23.587647253697 7.3344491192751 21.9499788238954 -23.5871371546134 7.3307619337608 21.949050463149 -21.6091503468511 3.82835213799687 23.260704581004 -21.6087356430781 3.82827354389273 23.2606956758377 -23.5201125178777 6.77510749639521 22.1244442284516 -23.5187096946112 6.77075361131363 22.1231871260639 -22.3181267598915 4.47182866172719 22.8684478721763 -22.315756223435 4.47068341378643 22.8680047681539 -23.5454400962786 7.99670867011376 21.3606946508487 -23.5455481614034 7.99410339625441 21.3602729692259 -23.1846319283868 5.72720619601297 22.4347687294145 -23.1815611362063 5.72322064678683 22.4333373560457 -21.5780111867625 3.90057679143345 23.1741244613294 -21.5775949114638 3.9004979385671 23.1741166682317 -23.529706875439 8.04195540265037 21.1339934720956 -22.9181620340658 5.30764365120746 22.4917497974548 -23.5298234602506 8.03933443685711 21.1336462468904 -22.9147914123641 5.30447479146644 22.4905786625364 -23.4345570146501 8.61167480402696 20.4011167827647 -23.4348307102652 8.61040327347918 20.401061719541 -22.2857337976026 4.55068447082187 22.7467200103661 -22.2833523446639 4.54952201723575 22.7462960072201 -23.4862612412445 6.87883082741583 21.8372194594627 -23.4848803634046 6.87439175159995 21.8361408982073 -23.4306659604916 8.62221116950736 20.1427287245297 -23.4309406596889 8.6209383288694 20.142709492781 -23.3446360703989 6.35055329462171 22.0041669793358 -23.3423051757186 6.34600212582686 22.0029044209232 -21.8985605033163 4.3022615777457 22.8100141993223 -21.8972104029064 4.30181690646439 22.809887093623 -22.8860072030508 5.39468296335469 22.3186530340171 -23.5263221004769 7.51845522188639 21.2845672895272 -23.5258550481854 7.51465784828925 21.283973200585 -22.8826272585366 5.39145053211728 22.3175614701048 -22.571120930614 5.02579416502215 22.391563862036 -22.5679626036794 5.02359051759077 22.3908180301247 -23.5119911180509 7.56071732153015 21.0713047347998 -23.511533829001 7.55689551235816 21.0708155083752 -21.8641963456392 4.37890451060028 22.6910453997627 -21.8628398789092 4.37845524838563 22.6909252643735 -23.497905069033 8.13252348268673 20.380723432707 -23.4980383088235 8.12987262288675 20.3806125527856 -23.312439058313 6.44591999165742 21.7340324289782 -23.3101203072008 6.44127907390732 21.7329494623808 -23.1036151641571 5.95906120445152 21.897975494719 -23.1005450937247 5.95486428485501 21.8968660582554 -23.4943632185025 8.14253559927801 20.1356071661018 -23.4944982181673 8.1398816841011 20.1355684523959 -23.4439687741972 8.5861192449302 19.2906080653019 -23.4442397443454 8.58485165348849 19.2907152760211 -22.5377113867643 5.10740617890066 22.2253768927593 -22.5345395061018 5.10516237018585 22.224683543223 -23.429476598703 7.04894965205202 21.2124003983841 -23.4281318475875 7.04437312336837 21.2117101287708 -21.4481220614431 4.18638339126438 22.7872052417341 -21.4476991948961 4.18630407271641 22.7872016090213 -23.4528822283196 8.5618399856226 19.0906705449311 -23.4531507162592 8.56057588628841 19.0908077465749 -22.1811063386563 4.7930528965709 22.3175452670869 -22.1786891789012 4.79183560066412 22.3171899046008 -23.416171956774 7.08812686203776 21.0118785671052 -23.4148353260195 7.08351975880332 21.011310208351 -23.0719804552196 6.04676115592627 21.642980636004 -23.0689108102291 6.04248305973326 21.6420298824272 -23.4829240872799 7.64558588450832 20.3607090162183 -23.4824857742356 7.64171731937676 20.3605528659756 -21.4116883033724 4.26229522780541 22.669934533452 -21.4112635706392 4.26221593920403 22.669931917173 -22.8038783303137 5.60928560582815 21.8081278619494 -22.8004750662095 5.60589044302975 21.8072851595014 -23.479669957984 7.65501369281066 20.1286204526886 -23.4792336291301 7.65114032228118 20.1285659543559 -22.1458557477706 4.8707337521635 22.1567099580065 -22.1434264262606 4.86949800970556 22.1563813073602 -23.5063624931043 8.10852749404545 19.3303300274867 -23.5064908842605 8.10588564359262 19.33054608533 -23.2583645039503 6.60254529643374 21.146383750989 -23.2560654382354 6.59775940031378 21.1456912673683 -23.5144086846878 8.0856347504579 19.1415020579112 -23.5145326814831 8.08300092867991 19.1417785347765 -23.5035237775272 8.42239293427142 18.3664958407739 -23.5037782019528 8.42114883664377 18.3667411815835 -21.7531098583914 4.6143430586 22.2715341538237 -21.7517325075714 4.61387992696746 22.2714375003631 -23.2456628812047 6.63871929834714 20.9575300112002 -23.243368101518 6.63390112761608 20.9569600444216 -22.7718149809949 5.6903696268869 21.5660441140866 -22.7684025997129 5.68691219787749 21.5653232616843 -23.5155246188802 8.38896320530876 18.23782047357 -23.5157757153105 8.38772390209643 18.2380849501976 -23.3890890151011 7.16708498077515 20.3417495072917 -23.3877679471195 7.16241924047476 20.3415682729639 -22.4523984298399 5.30815232227651 21.7363412996 -22.4491919014833 5.3058063602657 21.7358099535862 -23.3860404217852 7.17590437431458 20.1220048695323 -23.3847209419177 7.17123259091167 20.121941647371 -23.0187896855128 6.19100637679037 21.0882145260287 -23.0157201062181 6.18659730866955 21.0876078631429 -21.7156543736666 4.68972883603965 22.114368258507 -21.7142698830926 4.68926125995071 22.1142801764304 -23.490579768531 7.62330147116352 19.3693469057074 -23.4901358397373 7.61944690455246 19.3696514586544 -23.4979019286116 7.60193677796704 19.1914295652697 -23.4974529525589 7.59809472836131 19.1918192879934 -23.0062682321909 6.2244259097686 20.9096671644453 -23.0031983927376 6.21998773215447 20.9091681900863 -23.5601409765199 7.9541190222459 18.4573474614863 -23.5602401206456 7.95153107705847 18.4578414022091 -22.4190856763433 5.38395248285982 21.5047239707832 -22.415865531855 5.38156775671239 21.5042709679228 -21.2938109151091 4.49576555047045 22.2557692611258 -21.2933800592988 4.4956867879964 22.2557693821117 -23.2197183272392 6.71191583105852 20.3244315305865 -23.2174313743609 6.70703574173643 20.3242500724474 -23.5709812343064 7.92258736294633 18.3357445146737 -23.5710745088739 7.92001038147118 18.3362768396571 -22.0558201249989 5.06153532804591 21.6840286866236 -22.0533595407034 5.06025331706199 21.6837805180817 -23.5859307022396 8.18973937789561 17.6182884688286 -23.5861622809294 8.18852872247216 17.6186448399903 -23.2167828502346 6.72014125743134 20.1159653877192 -22.7178502259604 5.82395911939629 21.0392042022524 -23.2144966279687 6.71525478567243 20.1159021272916 -22.7144220102117 5.82040165608394 21.0387460114262 -23.5968232248889 8.15842903518014 17.5362034455197 -23.5970517833321 8.15722289844289 17.5365719692582 -23.3961496577498 7.14656639093598 19.4063452282353 -23.3948238258054 7.14191813874048 19.4066991117044 -21.254032622578 4.57059293397546 22.100411622012 -21.2535996720925 4.57051447067928 22.1004124804127 -22.7051255297728 5.85501502161151 20.8693778833295 -22.7016934034624 5.85143543167502 20.8690014823943 -23.4029405718629 7.12678241628464 19.2387768978493 -23.4016105296696 7.12214983394195 19.2392297997747 -22.0206512799953 5.13358891922869 21.4602438775059 -22.0181784136256 5.13228967414584 21.4600337202503 -23.5395424014138 7.47914526633874 18.5465216257376 -23.5390649225294 7.4753746324641 18.5472175651905 -22.9806179419774 6.29234162304843 20.3092105443152 -22.9775468504688 6.28784770091537 20.3090520837414 -23.549417074242 7.44969630256416 18.4318397824773 -23.548932875064 7.44594270194222 18.4325896812401 -21.6199470487705 4.87485644499335 21.6525137790732 -21.618544189828 4.87437822872515 21.6524501033172 -22.977703560938 6.30002327549557 20.1106610649781 -22.3629775576265 5.50908534877019 21.0003412321664 -22.9746322101347 6.29552362275527 20.1106058692395 -22.3597342130864 5.50663891915665 21.0000552735665 -23.6345899090183 7.73467774691383 17.750118369703 -23.6346488523247 7.73216598431912 17.7508344250581 -23.2264185100038 6.69311394769204 19.4401840940808 -23.2241288949687 6.68825229587256 19.4405389421548 -23.6444319740532 7.70514767600509 17.6725088409952 -23.6444856189821 7.70264615391909 17.6732491062967 -22.3497341635649 5.53827860602447 20.8374807351525 -22.3464852672769 5.53581866818754 20.8372463181098 -23.2328960672921 6.67486910477285 19.2820888739412 -23.230604215123 6.67002399078158 19.2825431267673 -22.6790058853979 5.91841337421019 20.2964378318701 -22.6755653086114 5.91479161454482 20.2963187668653 -21.5825525382863 4.94483841703035 21.433734708354 -21.5811424815703 4.9443564948812 21.4336818929249 -23.4415827404653 7.01300605605425 18.6310705708259 -23.4402289511134 7.0084628181227 18.6318794033506 -23.4507509821426 6.98570597931134 18.5229414093248 -23.7125004584756 7.81725334503648 16.7901614782833 -23.7126968974833 7.81609682915804 16.7906403195575 -23.4493916022588 6.98118402798295 18.5238129200846 -22.676029695595 5.92563193077441 20.1062144736962 -22.6725880900537 5.9220058650974 20.1061730522515 -23.7195641961805 7.79588073728471 16.7500699656073 -23.7197586706265 7.79472735466196 16.7505547299001 -21.9613950069743 5.25280635649297 20.9724186067226 -21.1523534846258 4.75455693381246 21.6433287535602 -21.1519151543746 4.75447949870399 21.6433310241955 -21.9589013846699 5.25148025490582 20.9722877937622 -23.6073844247956 7.27415564279856 17.8793020554707 -23.6068610101584 7.27050305945985 17.8803096481761 -22.987193296322 6.27511239833041 19.4699766429752 -22.9841220782881 6.27063508621315 19.4702871459923 -23.6163568515776 7.24656446876863 17.8060466195147 -23.6158273989996 7.24292769749751 17.807088081164 -21.9474035644252 5.28071644753938 20.8146298381642 -22.9935756060663 6.25827834694966 19.3202347861228 -21.944905036996 5.27938460810238 20.8145230657936 -22.9905044971582 6.25381593456532 19.3206324486194 -22.3225199088242 5.59814175813033 20.2863764943588 -22.3192594528934 5.59565633647705 20.2863028365202 -23.2697716872631 6.56986863764566 18.7084449395126 -23.2674672323682 6.56511783812704 18.7092568086514 -21.1126236708847 4.82422623717224 21.4264858358817 -21.1121832418677 4.82414932727391 21.4264883940523 -23.2785243671711 6.54465913266553 18.6063150071225 -23.2762169513687 6.53993080069666 18.6071898862562 -22.3194145113032 5.60500143052813 20.102717302789 -22.316152715426 5.60251344391762 20.1026917308273 -23.7489612373662 7.38344364878001 16.9669819248479 -23.7489587718952 7.38105374473215 16.9679407901336 -21.5195474882964 5.06090396065434 20.9561522884786 -21.5181253466358 5.06041673480062 20.9561208673247 -23.755344503185 7.36329585325801 16.9290593303442 -22.6856711349202 5.90253204855334 19.4950374898555 -23.7553386197817 7.36091294681857 16.9300298660553 -22.6822325028124 5.89892289831382 19.4952714877201 -23.5046002475188 6.82289694414581 18.0016769578735 -23.5032083176399 6.81850100990438 18.0028474664278 -23.5129392805184 6.79729657115271 17.9325286525292 -23.5115423504731 6.79292032497983 17.9337384061283 -22.6921561832642 5.8869066166487 19.3523406170471 -22.6887195477426 5.88330876518576 19.3526405196689 -21.5046741000939 5.0881599167891 20.8014125171291 -21.50324912708 5.08767167685718 20.8013872406997 -23.0299153316633 6.16132782133969 18.7766702208549 -21.918644624782 5.33818111045855 20.2792348810497 -21.9161360323795 5.33683871259732 20.2792017894185 -23.0268448508905 6.15695049252915 18.7773821244253 -23.038542471991 6.13803663571196 18.6798446052177 -23.0354721465414 6.13367959413865 18.6806119900552 -21.9153621924522 5.34480258843091 20.1002420439461 -21.9128524565016 5.34345916635157 20.1002306043413 -23.7116931397278 6.94593536643045 17.139754166358 -23.7110999825005 6.94247005147611 17.1411002619043 -22.3294527137823 5.58332112433039 19.5148517881974 -22.3261951779261 5.58084338774311 19.5149972516658 -23.8660331737757 7.33717671703074 16.0068249238412 -23.8661868322039 7.33609127248409 16.0074193038442 -23.3299571165121 6.39422158080533 18.113668833313 -23.867540271718 7.33229264100436 15.9998765886261 -23.8676935106466 7.33120792299274 16.0004719844684 -23.3276325207081 6.38962618118168 18.1148443643315 -23.7175174074464 6.92710527243024 17.1039216293771 -23.7169203838329 6.92365065259072 17.1052839213056 -21.0457109536793 4.94002696631045 20.9523371611966 -21.0452670255299 4.93995113835336 20.9523395924056 -23.3379254292803 6.37055318882796 18.0482765277113 -23.3355982041318 6.3659785431176 18.0494915249175 -22.3362034301265 5.56864500026954 19.3777492038686 -22.3329487424007 5.56617412927032 19.3779358736722 -22.7290762136101 5.79686612391715 18.8342199166757 -22.7256508455954 5.79333297767408 18.8347583899927 -21.0299258054962 4.96728273959093 20.7984765617309 -21.0294810644253 4.9672072098293 20.7984787611032 -21.4741144522368 5.1444581919568 20.2751979505058 -21.4726837241956 5.14396831700106 20.2751904867368 -22.7378406402149 5.77522417969034 18.7418944638787 -22.7344179320216 5.77170649815462 18.7424752311372 -21.4706288047119 5.15097207636971 20.0988529649685 -21.4691974311202 5.15048207722636 20.0988504251128 -23.0892508125935 5.99895186800555 18.2125270370677 -23.6016040030078 6.51821675650502 17.3031335891398 -21.9259752993796 5.32408963852393 19.5290102675514 -21.9234693370144 5.32275049531315 19.5290762708246 -23.0861814750587 5.99471494931804 18.2135596483093 -23.6001545133419 6.51405330984536 17.3046955827046 -23.6070240284542 6.50072856238454 17.2692602306436 -23.6055713605706 6.49657834781747 17.2708409085129 -23.8877119236325 6.93102058139987 16.2258184429496 -23.8876353927909 6.92878802712363 16.2270035509182 -23.8890744447211 6.9264179658275 16.2192396444678 -23.8889971913811 6.92418700694326 16.2204267286072 -23.0971089340043 5.97705620670964 18.1504619845817 -23.0940397623748 5.97283805285295 18.1515294753414 -21.9331100526322 5.31006301467207 19.3959370399283 -21.930606609497 5.30872675596431 19.3960219614246 -22.3746225420206 5.48405371328865 18.8799413919827 -22.3713839260988 5.48162238436038 18.8802783068895 -22.3837406601456 5.46371675102185 18.7912283631804 -20.9975207417324 5.02369054622229 20.2744667611296 -22.380505835611 5.46129491883374 18.7915921121021 -20.9970743624932 5.02361569626937 20.2744676594768 -22.789356324478 5.64591461637587 18.2961269017317 -22.7859491933327 5.64248872914655 18.2969106739147 -23.4227019487813 6.11233808693967 17.4525852712888 -23.4203472579837 6.1079874545961 17.4541544571488 -21.4819207149719 5.13073659207331 19.537148435079 -20.9938292498619 5.03023146473189 20.0986197753033 -20.9933826889523 5.03015670034587 20.0986201097071 -21.480491521136 5.13024728528651 19.5371638599923 -23.4278873864842 6.09614620300313 17.4204992136534 -23.4255310454492 6.09180948058436 17.4220871839369 -22.7973398409861 5.62554733121064 18.2369007592569 -22.7939351184131 5.6221358148625 18.2377113370018 -24.0205163761283 6.81665120290866 15.3464283355171 -24.020627200252 6.81564317600894 15.3471179499182 -23.8383561391006 6.52304597019859 16.4390123936406 -23.8376795656887 6.51981967981889 16.4406710596558 -23.8396010145921 6.51874188678828 16.4327858147095 -23.8389236313201 6.51551800606398 16.4344471985756 -24.0250245412036 6.80081076663929 15.3285018112796 -24.0251341202754 6.79980509548577 15.3291939735006 -21.4895084496527 5.11703444261835 19.4064365472241 -21.4880807099272 5.11654561867618 19.4064565718838 -21.9736968170887 5.22923129284624 18.9129062600989 -21.9712075979792 5.22791187115164 18.9130611750271 -21.9833263861847 5.20980112472254 18.8268480882979 -21.9808405241599 5.20848579279534 18.8270156903429 -22.4373254657605 5.34217007830285 18.362854858568 -22.4341128121047 5.33980491571674 18.3633483710304 -23.1807467519697 5.73797765348263 17.5846575846942 -23.1776795823957 5.73396216088452 17.5860388190085 -23.1858645391825 5.72297410381012 17.5541580067945 -23.1827975066484 5.71897120100195 17.5555559194986 -22.4456285317149 5.32302050195469 18.3059328262193 -22.4424193004623 5.32066425378168 18.3064436020086 -21.0058230950873 5.00996583092123 19.5388679883564 -21.0053771599763 5.00989080809067 19.5388665146554 -23.7195631240932 6.12525462134162 16.640148922763 -23.718045373159 6.12138575468171 16.6420706087744 -23.720723684314 6.12125166558092 16.6342502407201 -23.7192052739686 6.11738575829264 16.6361750478048 -24.0274698299397 6.44036755800125 15.5999654930972 -24.0273199015858 6.43830373797528 15.6013348384444 -24.0315510936139 6.42543248413723 15.5829601861756 -24.0313990430725 6.42337376002075 15.584334430425 -21.0138789558943 4.99625103870029 19.408734968331 -21.0134334380126 4.99617585084503 19.4087331762126 -21.5326540494206 5.03812798676904 18.9322719185051 -21.5312345281734 5.0376421744742 18.9323097652314 -21.5428878471311 5.01917180733882 18.8478442681619 -21.5414702676833 5.01868676565179 18.8478854904486 -22.8823211744 5.4029950157658 17.6966905009497 -22.8789420627904 5.39973916791222 17.6977434883114 -22.0399024553123 5.09369081176076 18.4113889960123 -22.0374362339105 5.09240018575033 18.4116188558039 -22.8875217833261 5.38901922192304 17.6675546733531 -22.8841442386759 5.38577307071896 17.6686206181096 -22.0486673224468 5.07539998924991 18.3561951931442 -22.0462041341618 5.0741132923663 18.3564334562155 -23.5356367160369 5.74820533121276 16.8239988284671 -23.5332468656843 5.74416382878847 16.8259295928177 -23.5367488967694 5.74449176017346 16.8183986621029 -23.5343587099432 5.74045335927482 16.8203325664472 -24.1753527455896 6.24780892766711 14.76409447119 -24.1754209611994 6.24688551036366 14.7648658328004 -23.9661893521339 6.0638801258463 15.845932749201 -23.9654308906551 6.06090738509981 15.8478438898726 -23.9699266275004 6.04989335415428 15.8297970283358 -23.9691658097839 6.04692823118501 15.8317148559406 -24.1859540298419 6.20681533946918 14.7264482303397 -24.186019339184 6.20589802236647 14.7272248052841 -21.0596721394283 4.9173623397967 18.9370968662193 -21.0592289830553 4.91728629759756 18.9370943586194 -21.0705319716202 4.89842891501166 18.8531964673813 -21.0700893741301 4.89835268715035 18.8531939131823 -22.5340006500898 5.113695033308 17.7866473311013 -22.5308277039524 5.1114359976023 17.7873157754523 -21.603001291693 4.90596570533671 18.4404987431166 -21.6015950891928 4.90548557063123 18.4405572251391 -22.5394082831353 5.10054522735776 17.7586348302768 -22.5362375504788 5.09829228432559 17.7593117878507 -23.2922611609788 5.40025493382288 16.9866405491801 -21.6123127954163 4.88814249072642 18.3864148464576 -21.6109083523939 4.88766317170465 18.3864757495586 -23.2891973703642 5.39651936478358 16.9883436770406 -23.2933599884042 5.39680641855972 16.9813063133666 -23.2902962353691 5.39307366103468 16.9830122484779 -23.8388898268604 5.69772242387987 16.0775048458683 -23.8373057353963 5.69416403484888 16.079716117656 -24.1677316723433 5.90391886924882 15.0471064732227 -24.1675094694728 5.90203676666133 15.0486321588119 -23.8423828973409 5.6846845024704 16.0621745326472 -23.8407969068967 5.68113541392642 16.0643934645428 -24.1773414355266 5.86525140868192 15.0113339920105 -24.1771143288241 5.86338230834076 15.0128695873326 -22.1419362454149 4.87549443161177 17.8528159441868 -22.1395052340099 4.87425124001333 17.8531324108522 -22.1476426292053 4.86293816468352 17.8256689718157 -22.1452135817281 4.8616977374335 17.8259897407343 -21.134317280485 4.78547871093043 18.4487696646364 -21.133877965071 4.78540150139962 18.4487672784233 -22.9956577812705 5.08815219187259 17.125062583534 -22.9923128284974 5.08511261951667 17.1263671814011 -22.9967747040632 5.08493385625281 17.1199593405874 -22.9934300869894 5.08189646486759 17.1212661515564 -21.1441972644234 4.76771277297073 18.3951232897504 -21.1437584577807 4.76763542687492 18.3951209783279 -23.6501122778546 5.35101671614371 16.2890672012055 -23.6476889044906 5.34730036404084 16.2912897836688 -23.6534669587922 5.33888725279741 16.2744703993511 -24.3299302641538 5.61859584534033 14.2379700646895 -24.329956225439 5.61776616957745 14.2388135384593 -23.6510426354538 5.33518063368025 16.2767007155009 -24.0947606581765 5.5611584789708 15.3207738269616 -24.0939223012574 5.55845605136643 15.3228976470121 -24.1035790080708 5.52489751597146 15.2867534694172 -24.1027352556753 5.52221432894282 15.2888907188233 -24.3464671508116 5.54680432186127 14.1843091874533 -24.3464886054042 5.54598536389023 14.1851599306875 -21.7113866536358 4.69350189872776 17.8935408610138 -21.7100009183073 4.69303214905204 17.8936253860739 -21.717447694313 4.68128511258654 17.8669813136959 -21.7160631033196 4.6808160013719 17.8670671971077 -22.6518384377059 4.81732967097242 17.2369364430472 -22.6487135648326 4.81520750448305 17.2377720337155 -22.6529994593393 4.81429832818287 17.232027205872 -22.649875056801 4.81217755372603 17.2328642883391 -23.4054315236838 5.03087024225231 16.4764754998333 -23.4023720292613 5.02742991843557 16.4784408249096 -23.4087499597487 5.01957358163635 16.4625366068965 -23.40569060332 5.01614211125426 16.4645089194103 -23.9591973131531 5.22861824324149 15.5779443375136 -23.9575491230854 5.22538896381927 15.5803990044841 -24.3079247397297 5.31032446319128 14.5468340599555 -24.3076315515699 5.30864082896489 14.548496147718 -23.9674587822347 5.19474621500726 15.5455391496445 -23.9658062841342 5.19154029262062 15.5480091699995 -24.3229312928076 5.24258897333164 14.4957712409192 -24.3226305718839 5.24092785840129 14.4974469980362 -21.2493260000167 4.57395860725784 17.9068408664371 -21.2488926232376 4.57388004610394 17.9068398729848 -22.2662629923955 4.59254551497329 17.3202412315553 -22.2638746583884 4.5913654141873 17.3206438716759 -22.2674874951776 4.58965161014258 17.3154865894034 -22.2650995788282 4.58847216281703 17.315890018388 -21.2557580400785 4.56181241705585 17.8805619830443 -21.2553249966576 4.56173379550437 17.8805610957021 -23.1107001311939 4.74298754375451 16.6365589970668 -23.1073895489834 4.74017809882787 16.6380721978339 -23.1140736500331 4.73241865455551 16.623199931762 -23.110764069032 4.72961614433056 16.6247187477451 -23.7657620145389 4.91404410509817 15.8128288116507 -23.7633068468479 4.91067196208919 15.8152975860559 -24.4823589805057 4.9152360167447 13.7594462616477 -24.4823434807716 4.91451163790383 13.760354057024 -24.2235185305893 5.00420717642446 14.8445788292063 -24.2226023652149 5.00179709634432 14.8468869456685 -23.773711362747 4.88245135458735 15.7818959895128 -23.7712540766002 4.87910362598266 15.7843803292412 -24.2373141214135 4.94061782460375 14.7959241782821 -24.2363897342045 4.93824074328251 14.7982506984977 -24.5044123367912 4.80455976736791 13.6929665211514 -24.5043908548916 4.80385201057588 13.6938831546235 -21.8434292539464 4.41842974791532 17.3729327811823 -21.8420684498951 4.41797536349525 17.373045758948 -21.8447293476442 4.41561894420058 17.3682899777286 -21.8433687881664 4.41516472830412 17.3684032302176 -22.7713814534681 4.49197550271519 16.7668402917718 -22.7683045119501 4.49000163647555 16.7678186186576 -22.7748856670351 4.48200603932242 16.7539802576085 -22.7718101154096 4.48003668565051 16.7549624888409 -23.5198889094456 4.62336935923265 16.0212268616073 -23.5168344861187 4.62024270690976 16.0234157684601 -23.5277602011425 4.59386856573562 15.9916245511232 -23.5247061459956 4.59076420676852 15.993827679339 -24.0799372832128 4.70791379834766 15.1239034622683 -24.0782271861183 4.70503851863299 15.1265686981435 -24.4463011757364 4.64668337618054 14.0912466607993 -24.4459389487332 4.64521962132427 14.0930291780638 -24.0928870996083 4.64840926444293 15.0774598659463 -24.0911704852224 4.64557382887418 15.0801461162696 -24.4663319282456 4.54225238182183 14.0279091397911 -24.4659597883655 4.54082307804691 14.0297081108419 -22.3922740195423 4.28195021642291 16.8650965560655 -22.3899282499078 4.28084113285984 16.8655765870167 -21.3894677589009 4.3008707679209 17.3924504560733 -21.38904167665 4.30079126843245 17.3924523036229 -21.3908474579733 4.29808495283013 17.3878714314825 -21.3904214475803 4.29800544888728 17.3878733133173 -22.3959657609119 4.27243341814328 16.8526501207483 -22.3936212256924 4.27132653838739 16.8531323239923 -23.2270576762813 4.36132364548601 16.1999379684849 -23.2237813609453 4.3587610848499 16.2016324727891 -23.2350593598671 4.33366323143344 16.171526003926 -23.2317853784005 4.33111831010059 16.1732321607048 -23.8820255347631 4.42787117977646 15.378997018913 -23.879540093681 4.42486890912765 15.3816797196026 -24.6298118908885 4.11687832367086 13.3263771256858 -24.62975666993 4.11627314548269 13.3273413767941 -24.3508126869384 4.38095834592064 14.4101785259191 -24.3498213914881 4.37886911907726 14.412648382295 -23.8945049472828 4.37225172955329 15.3345723728119 -23.8920163349628 4.36929107287646 15.3372764820698 -24.3692552279439 4.28283882599132 14.3497304544979 -24.3682531865044 4.28079961518392 14.352222337124 -24.6563618952711 3.9554745418613 13.2510559252401 -24.6562995910449 3.95489327053578 13.2520297258793 -21.9771509278429 4.11704436021538 16.9289780076592 -21.9758151005767 4.11660939766323 16.9291192973244 -21.9810665043664 4.10781873928502 16.9168518487471 -21.9797314030539 4.10738441278211 16.9169939717322 -22.8922013248083 4.13173748726584 16.346433759811 -22.8891717884393 4.12992579780742 16.3475399409922 -22.900506247243 4.10561451075429 16.319071358234 -22.8974799292654 4.1038145261678 16.3201858877532 -23.6350488551685 4.16891198871904 15.6057224214697 -23.6319999494131 4.16612372530446 15.6081077982382 -24.1995110822966 4.12433217257186 14.7089287009292 -24.1977415605764 4.12184343952806 14.7117785772597 -24.5803540987673 3.89298044573123 13.6781975211816 -24.5799263540235 3.89176237105998 13.6800846189425 -23.6474136547453 4.11686395335573 15.5631370783961 -23.6443653479494 4.11411384968018 15.5655422448718 -24.2168509010118 4.03238665233675 14.6511250274902 -24.215072903943 4.02995801263278 14.6540000424812 -24.6045218439712 3.74049876124952 13.606250565183 -24.6040824892852 3.73932960623803 13.6081552307001 -22.5194899960374 3.93810455819369 16.4583658468054 -22.517186344798 3.93707616729336 16.4589185953069 -21.5313330012858 4.00272826859081 16.955411161392 -21.5309142847502 4.00264891454156 16.9554171713583 -21.5354856981571 3.99361919265153 16.9434978485958 -21.5350671965411 3.99353986214849 16.9435039981632 -23.3441127814651 3.93485847391577 15.800942361384 -22.5282292188052 3.91317419456905 16.4319059577555 -22.5259284288639 3.91215174197329 16.4324635689909 -23.3408702442296 3.93256495456188 15.8027992459575 -23.9973130463993 3.88197000892686 14.9817775323505 -23.9947987307517 3.87937136750654 14.9846487721893 -23.3566786840548 3.88597468957606 15.7600278791144 -23.3534397197777 3.88371168160618 15.7619012940824 -24.7680237884685 3.18605005738834 12.9420411732269 -24.7679318874177 3.18558214579378 12.9430534271757 -24.4743917080796 3.67217164222976 14.0154637185674 -24.4733297271085 3.67043771706685 14.0180731418886 -24.0140420991691 3.79588045333164 14.9263942228696 -24.0115236735996 3.79334454646346 14.9292912130774 -24.4967089996006 3.52860996302696 13.9465895539494 -24.4956345738354 3.52694643437738 13.9492223248613 -24.7972113187726 2.95136310477581 12.8631812758333 -24.7971117221013 2.95092965228566 12.8642031887777 -22.1120117276475 3.78404483770117 16.533142247589 -22.1107007246087 3.78363431201932 16.5333125196997 -23.0136402388631 3.72881355475173 15.9621498131309 -23.0106572127573 3.7271820261367 15.963373840239 -22.1212708966869 3.7599266287778 16.5074232812878 -22.1199615843622 3.75951798838171 16.5075955689497 -23.7492931463366 3.65767829728552 15.2247374141757 -23.7462496939719 3.65526090688574 15.2272979617405 -23.0266695416579 3.6826116081503 15.9227435667516 -23.0236914318134 3.68100072648248 15.9239797770365 -24.3158558672749 3.45935129141597 14.3309603518597 -24.3140309510206 3.45728852874871 14.3339694017614 -24.7062511923556 3.01325319831817 13.31079008065 -24.7057635407383 3.01231468283504 13.3127651604716 -23.7658738470432 3.57698223009758 15.1715780289481 -23.7628311724861 3.57462262800125 15.1741626637393 -24.3369040607797 3.32445571140915 14.2648858390235 -24.3350694751749 3.32247711857843 14.2679214986447 -24.732861174474 2.79135195633132 13.2353274938496 -24.7323610145815 2.79048317877966 13.2373201888466 -22.6472075692411 3.55366861316448 16.0869305844875 -22.6449453092852 3.55273320591282 16.0875532841385 -21.6743163186027 3.67454584431854 16.5672297880202 -21.6739049788827 3.67446801230856 16.5672411166394 -23.4601875657688 3.45444074610767 15.4348015141827 -23.4569775535809 3.45244518146086 15.436805905271 -21.6841297737585 3.65082385922242 16.542060482112 -21.6837189385667 3.65074618939409 16.5420722125786 -22.6609009992498 3.50960263099857 16.0488659526197 -22.6586431214306 3.50867808707123 16.0494960440202 -24.1096866465098 3.25848483630388 14.61914571709 -24.1071459081123 3.25633071454292 14.6221803269488 -24.8889145346989 2.04305632829331 12.6199981362027 -24.8887908058196 2.04275638216009 12.6210496228029 -24.5907556196731 2.84333237632117 13.6634281384278 -24.589629639042 2.84199946617988 13.6661542630413 -23.4770289112976 3.37855838917289 15.3836931887808 -23.4738235299992 3.3766095230349 15.3857180787047 -24.1300464799307 3.13178552508776 14.5556383171531 -24.127501231246 3.12971920688543 14.5587003281704 -24.6153790571881 2.63409688339828 13.5910389578206 -24.6142397683985 2.63286359050136 13.5937883937327 -24.9157081442907 1.68684778808086 12.5501317134943 -24.9155773612096 1.68660048600466 12.551191681699 -22.2472592521501 3.4125166114815 16.172504313568 -22.2459727663144 3.41213679574826 16.1727044529389 -23.1339352824065 3.27468354470135 15.6095385977554 -23.1309970524226 3.27325539954778 15.6108725932236 -22.2617510462554 3.3699832996984 16.1355974073488 -22.2604671641497 3.36960722573424 16.1358008082536 -23.8607512576574 3.07243182473561 14.8762449291183 -23.8577136523305 3.07042453377201 14.8789590359772 -23.1513778008921 3.20294013475992 15.5603233153739 -23.1484459559904 3.20154420257959 15.5616728195675 -24.4257040041378 2.67983307115369 13.992917447591 -24.4238295526779 2.67824901436549 13.9960595339357 -24.8164916139775 1.9324648464971 13.002533355408 -24.8159523236912 1.93186505583985 13.0045798637073 -23.8809637932457 2.95329198643747 14.8151168007543 -24.9458397999224 1.16174126966355 12.4721019635823 -23.877927384371 2.95136587921698 14.8178568542713 -24.945701113936 1.16157141349238 12.4731712866668 -24.9534630661102 0.985360329995611 12.4524271493474 -24.4489748664104 2.48283523693338 13.9233238485841 -24.9533223954932 0.985216268205681 12.4534987783378 -24.4470901533623 2.48136985950773 13.9264925351641 -24.8409274312865 1.59570633434803 12.935644341226 -24.8403767198874 1.59521223080418 12.9377062647249 -22.7735592246307 3.12071849130801 15.7465175830894 -22.771336965854 3.11989177722079 15.7472080698763 -21.8176158750976 3.30979504672745 16.2149268990613 -21.8172118793638 3.3097204459153 16.2149445333304 -23.5734280064608 2.90341100864487 15.0994310933042 -23.5702491935682 2.90174811237785 15.1015671819002 -21.8329646680399 3.26812786853573 16.178952581366 -21.8325614558713 3.26805373507696 16.1789709456409 -22.7918659581189 3.05235620878371 15.6990384588635 -22.7896494138494 3.05154703070858 15.6997386970837 -24.2160181650024 2.52557620428659 14.29395100974 -24.2134545217047 2.52392147459385 14.2971229722772 -24.6927988338266 1.82398840951635 13.3676304872183 -24.6916179569642 1.82313827603459 13.3704511093114 -23.593969764685 2.79106007284835 15.0405318539846 -23.5907966118201 2.78946337890948 15.0426904507834 -24.8684206637465 1.09918082898033 12.8608942937852 -24.8678571880949 1.09884186969085 12.8629731770327 -24.9723818972168 0.17501875486882 12.4033701870055 -24.9722363163811 0.174992227432195 12.4044474622653 -24.2385620142011 2.34013317025751 14.2269312994403 -24.2359936539125 2.33860228787947 14.2301308501485 -24.8753824550343 0.932309796424526 12.8420262161674 -24.8748157856742 0.93202241162581 12.844109262547 -24.7154219715922 1.50637308712096 13.303430348597 -24.7142289516925 1.50567318426632 13.3062713732495 -22.3809080637769 2.99509968175625 15.842818867969 -22.3796454103298 2.99475854308129 15.8430496140395 -23.2512044911378 2.75322788017962 15.2863910880892 -23.2483089306108 2.75203080970454 15.2878257966484 -23.9663518914603 2.38255021141938 14.5630037399895 -23.9633207388947 2.38100551484496 14.5658485655523 -22.4002589819946 2.92928071339582 15.7969025389016 -22.3989997450115 2.92894604802221 15.797137811533 -24.522166564058 1.71976490893421 13.7084578928902 -24.5202497420133 1.71875552099247 13.7117079485748 -23.2724723580103 2.64678643992131 15.2295959586666 -23.2695844611541 2.64563578603442 15.2310481470817 -24.7408918912511 1.03792759426817 13.2316361541237 -24.7396853380481 1.0374479123599 13.2344995922549 -23.9887472140097 2.20779020161702 14.4983937444682 -23.9857174329251 2.20636055635108 14.50126503735 -24.8926670023562 0.165263559433212 12.7949414950596 -24.8920924558048 0.165210786070758 12.7970347028594 -24.7473486202945 0.880384139904243 13.2134924442683 -24.7461386994296 0.879977559829588 13.2163613666085 -24.5435533706079 1.42058522287647 13.646708591292 -24.5416271329407 1.41975452712356 13.6499820239512 -22.8965967387238 2.62364285470909 15.4347195115116 -22.8944125988256 2.62294345806442 15.4354742295593 -21.9591232559487 2.90164480624776 15.8941377068682 -21.9587264599874 2.9015756101504 15.8941624599983 -23.680747819514 2.25228056553281 14.7974573380559 -23.6775983827981 2.25099640912538 14.7997076576476 -24.3094724955529 1.62146828877131 14.019952345961 -24.3068892248272 1.62041361895206 14.023236616606 -21.9796033446873 2.83743422713921 15.8495623352271 -21.979207585902 2.83736604075252 15.8495881880843 -22.9188991344739 2.52213252826571 15.3799126153126 -22.9167218264146 2.52145911593891 15.3806787042484 -23.7035024426087 2.08718318378668 14.7351407353874 -23.7003591257608 2.08599378028347 14.7374144449565 -24.5676477963517 0.979153979322321 13.5776062375077 -24.5657111099172 0.978585058074506 13.5809053465017 -24.7633899763071 0.155740681024659 13.1681734102534 -24.7621717887984 0.155666214474718 13.1710556837153 -24.5737636552443 0.830573119816252 13.5601205079841 -24.3301864096495 1.33969747850897 13.9604732838858 -24.5718243962774 0.830091007601204 13.5634258882118 -24.3275986765173 1.33882964366579 13.963781996786 -22.510911682455 2.51666482222585 15.5414061230248 -22.509671830477 2.51637178215373 15.5416672624087 -23.3622848614269 2.13600803619184 14.9951440506654 -23.3594289497471 2.13507834697628 14.9966683218599 -24.0591717358968 1.53025207850464 14.2988350094641 -24.0561459190964 1.52926607061799 14.3017880619569 -22.5344629117492 2.41900561587293 15.4884600103574 -22.5332271500554 2.41872268550772 15.4887266711016 -23.3858222468435 1.97943168414662 14.935038678945 -23.3829745863019 1.97856955377733 14.9365815506202 -24.3535369783613 0.923769652064684 13.8938656910289 -24.3509443548295 0.923175567122159 13.8972012837293 -24.0797309929807 1.26463805465118 14.2415025644873 -24.0767061560165 1.26382663392815 14.2444793423491 -24.588971362895 0.146629051589907 13.5164018617925 -24.3594716838996 0.783643619376756 13.8769891662311 -24.587025849628 0.146540975778264 13.5197224838176 -24.3568778998631 0.783140265719388 13.8803313234326 -23.0130281191896 2.03497066803058 15.1537174428868 -23.0108793185149 2.03442267583785 15.1545311221549 -22.0966698330325 2.43542321692028 15.6018437875139 -22.0962799734024 2.4353620041078 15.6018761383956 -23.7750154146134 1.4469907049704 14.5426922669212 -23.7718908083656 1.44616859135834 14.5450387867957 -22.1215759597482 2.34039975205594 15.5505819347328 -22.1211873480781 2.34034034319201 15.5506157173886 -23.0376796014311 1.88565853827509 15.0957573290401 -23.0355381635461 1.88514942102774 15.0965834664516 -24.1029176756334 0.872393389275177 14.1772584330961 -24.0998940367437 0.871838042161118 14.1802613704791 -23.7958741654631 1.19610838114836 14.4874301502633 -23.7927548068761 1.19543157831568 14.4897979497506 -24.1088176331046 0.740116268222712 14.1609594862354 -24.1057943707225 0.739645787289621 14.163968822591 -24.3742434212766 0.138066330337145 13.8347506539908 -24.371646913371 0.137974609794641 13.8381087582254 -22.6338062553439 1.95062659877288 15.2701218404193 -22.632587586594 1.95039368838685 15.2704120478687 -23.4597378605919 1.37239426091342 14.7495041548707 -23.4569155894578 1.37179623469254 14.7511054673425 -23.8194047451004 0.825490983675323 14.4254728010377 -23.8162913473644 0.825027754924695 14.4278641520376 -22.6598059214629 1.80719534222871 15.2142359303311 -22.6585916774389 1.80697830737398 15.2145324124151 -23.481275689854 1.13467785705992 14.6962708327943 -23.4784606280586 1.13418518501617 14.6978893679944 -23.8253979756747 0.700382567878934 14.4097340302586 -23.8222861487397 0.6999901499009 14.4121311602744 -24.123517462974 0.130145142381717 14.1201244573483 -24.1204952991846 0.130059643697245 14.1231493503826 -23.1150299751262 1.3071872030429 14.9169986326394 -23.112911274124 1.30683210009835 14.9178643449827 -22.2265887014439 1.88534229985172 15.339511833387 -22.2262053196234 1.8852923325433 15.3395518813354 -23.5055745173209 0.783440485071747 14.6365639663664 -23.5027675932604 0.783103179827055 14.6382016533192 -22.2540583022405 1.74622272359584 15.2855840343638 -22.2536762787978 1.74617590691558 15.2856257918328 -23.5117679059174 0.664760272913139 14.6213785371129 -23.5089630881947 0.664474530374893 14.6230209436075 -23.8403439262553 0.122934843859625 14.3702619801681 -23.137546224396 1.08093078373493 14.8657714917756 -23.8372361506116 0.122863746775609 14.3726731854652 -23.1354340167759 1.08063790246176 14.8666489802206 -22.7413265157717 1.25224846528501 15.0421084011155 -22.7401259807418 1.25209574927401 15.0424250843574 -23.1629481966831 0.746632822920453 14.8083015174555 -23.1608433048556 0.746432177925497 14.8091921741065 -23.5272252828657 0.116491860423474 14.5832558956823 -23.5244258176458 0.116440278777811 14.5849098276703 -23.1694260259079 0.633578670971017 14.7936686938471 -23.1673230152817 0.633408689523423 14.7945626122221 -22.7650364574562 1.03558142828744 14.9928654667859 -22.7638398548905 1.03545523685081 14.993188231537 -22.3401414828517 1.20905980308897 15.1198125857585 -22.3397636838585 1.20902633324117 15.1198599447661 -22.7917829189988 0.715550553812635 14.9376212723848 -22.7905907451878 0.715464010339469 14.9379508822105 -23.1856038619678 0.110875395765597 14.7568976876279 -23.1835056051267 0.110844858793943 14.7577995973883 -22.7986058582003 0.607245321102294 14.9235413458281 -22.7974148196258 0.607171995741329 14.9238726611508 -22.3651630950942 0.999844290213328 15.072496753155 -22.3647865132869 0.999816541836092 15.0725458242161 -22.3933870067148 0.691021987410825 15.0194299246234 -22.3930117963146 0.69100292127005 15.0194809382576 -22.8156544388349 0.106159793267746 14.8881274302566 -22.8144662611287 0.106146715925617 14.888462939748 -22.400588323051 0.58646145713736 15.005894282619 -22.4002134636196 0.586445300108436 15.0059457835552 -22.418589664506 0.102473408983112 14.9718216309999 -22.4182156882446 0.102470565350397 14.971874335409 1 0.501472155827491 1 0.997919788367708 1 0.517097062813329 1 0.532721969799167 1 0.548346876785005 1 0.569180086099455 1 0.592617446578212 1 0.616054807056969 1 0.639492167535725 1 0.662929528014482 1 0.686366888493239 1 0.709804248971996 1 0.730897873402877 1 0.746275125612989 1 0.760513322103834 1 0.774751518594679 1 0.788989715085524 1 0.807973977073317 1 0.829331271809584 1 0.850688566545851 1 0.872045861282118 1 0.893403156018385 1 0.914760450754652 1 0.936117745490919 1 0.957475040227187 1 0.978832334963454 1 0.988376061665581 0 0.500542828541163 0.0925095128188971 0.500607098384147 0.180303462112638 0.500678175499268 0.264079084425271 0.500755406116082 0.344588240642152 0.500837883459204 0.422650218106274 0.500924459867765 0.499238573522378 0.501013822645218 0.575405213737291 0.501104326417985 0.652348901308498 0.501193892756986 0.731473555975374 0.501279799987982 0.814566929203039 0.501358474780824 0.903515672998543 0.501424806987661 0 0.998814152728045 0.0927531710243069 0.998753111927052 0.180770834560695 0.998685409973034 0.264732710640485 0.998611637858105 0.345375399155805 0.998532642440318 0.423507781496746 0.998449513800279 0.500098890492726 0.998363509682106 0.576199722875855 0.998276217363481 0.653013532414508 0.998189650171493 0.731949958120086 0.998106461686196 0.814832188979832 0.998030135025442 0.903600141402704 0.997965702971285 0 0.516781432698461 0 0.5330200368556 0 0.549258641012738 0 0.570910113222257 0 0.595268019457965 0 0.619625925693673 0 0.643983831929381 0 0.668341738165089 0 0.692699644400797 0 0.717057550636505 0 0.734814464282336 0 0.749611892320529 0 0.763313214578115 0 0.777014536835701 0 0.790715859093287 0 0.808984288770068 0 0.829536272156446 0 0.850088255542825 0 0.870640238929204 0 0.891192222315582 0 0.911744205701961 0 0.93229618908834 0 0.952848172474718 0 0.973400155861097 0 0.986107154294842 0.0925095128188971 0.501472155827491 0.0927531710243069 0.501472155827491 0.180303462112638 0.501472155827491 0.180770834560695 0.501472155827491 0.0925095128188971 0.516781432698461 0.0927531710243069 0.516781432698461 0.0925095128188971 0.517097062813329 0.0927531710243069 0.517097062813329 0.264079084425271 0.501472155827491 0.264732710640485 0.501472155827491 0.180303462112638 0.516781432698461 0.180770834560695 0.516781432698461 0.180303462112638 0.517097062813329 0.180770834560695 0.517097062813329 0.344588240642152 0.501472155827491 0.345375399155805 0.501472155827491 0.0925095128188971 0.532721969799167 0.0927531710243069 0.532721969799167 0.0925095128188971 0.5330200368556 0.0927531710243069 0.5330200368556 0.264079084425271 0.516781432698461 0.264732710640485 0.516781432698461 0.264079084425271 0.517097062813329 0.264732710640485 0.517097062813329 0.422650218106274 0.501472155827491 0.423507781496746 0.501472155827491 0.180303462112638 0.532721969799167 0.180770834560695 0.532721969799167 0.180303462112638 0.5330200368556 0.180770834560695 0.5330200368556 0.344588240642152 0.516781432698461 0.345375399155805 0.516781432698461 0.344588240642152 0.517097062813329 0.345375399155805 0.517097062813329 0.0925095128188971 0.548346876785005 0.0927531710243069 0.548346876785005 0.0925095128188971 0.549258641012738 0.0927531710243069 0.549258641012738 0.499238573522378 0.501472155827491 0.500098890492726 0.501472155827491 0.264079084425271 0.532721969799167 0.264732710640485 0.532721969799167 0.264079084425271 0.5330200368556 0.264732710640485 0.5330200368556 0.422650218106274 0.516781432698461 0.423507781496746 0.516781432698461 0.422650218106274 0.517097062813329 0.423507781496746 0.517097062813329 0.180303462112638 0.548346876785005 0.180770834560695 0.548346876785005 0.180303462112638 0.549258641012738 0.180770834560695 0.549258641012738 0.575405213737291 0.501472155827491 0.576199722875855 0.501472155827491 0.344588240642152 0.532721969799167 0.345375399155805 0.532721969799167 0.344588240642152 0.5330200368556 0.345375399155805 0.5330200368556 0.499238573522378 0.516781432698461 0.500098890492726 0.516781432698461 0.499238573522378 0.517097062813329 0.500098890492726 0.517097062813329 0.0925095128188971 0.569180086099455 0.0927531710243069 0.569180086099455 0.264079084425271 0.548346876785005 0.264732710640485 0.548346876785005 0.652348901308498 0.501472155827491 0.653013532414508 0.501472155827491 0.264079084425271 0.549258641012738 0.264732710640485 0.549258641012738 0.0925095128188971 0.570910113222257 0.0927531710243069 0.570910113222257 0.422650218106274 0.532721969799167 0.423507781496746 0.532721969799167 0.422650218106274 0.5330200368556 0.423507781496746 0.5330200368556 0.575405213737291 0.516781432698461 0.576199722875855 0.516781432698461 0.575405213737291 0.517097062813329 0.576199722875855 0.517097062813329 0.344588240642152 0.548346876785005 0.345375399155805 0.548346876785005 0.731473555975374 0.501472155827491 0.731949958120086 0.501472155827491 0.180303462112638 0.569180086099455 0.180770834560695 0.569180086099455 0.344588240642152 0.549258641012738 0.345375399155805 0.549258641012738 0.180303462112638 0.570910113222257 0.180770834560695 0.570910113222257 0.499238573522378 0.532721969799167 0.500098890492726 0.532721969799167 0.499238573522378 0.5330200368556 0.500098890492726 0.5330200368556 0.652348901308498 0.516781432698461 0.653013532414508 0.516781432698461 0.652348901308498 0.517097062813329 0.653013532414508 0.517097062813329 0.422650218106274 0.548346876785005 0.423507781496746 0.548346876785005 0.422650218106274 0.549258641012738 0.423507781496746 0.549258641012738 0.814566929203039 0.501472155827491 0.814832188979832 0.501472155827491 0.264079084425271 0.569180086099455 0.264732710640485 0.569180086099455 0.264079084425271 0.570910113222257 0.575405213737291 0.532721969799167 0.264732710640485 0.570910113222257 0.576199722875855 0.532721969799167 0.575405213737291 0.5330200368556 0.576199722875855 0.5330200368556 0.0925095128188971 0.592617446578212 0.0927531710243069 0.592617446578212 0.731473555975374 0.516781432698461 0.731949958120086 0.516781432698461 0.0925095128188971 0.595268019457965 0.0927531710243069 0.595268019457965 0.731473555975374 0.517097062813329 0.731949958120086 0.517097062813329 0.499238573522378 0.548346876785005 0.500098890492726 0.548346876785005 0.499238573522378 0.549258641012738 0.500098890492726 0.549258641012738 0.344588240642152 0.569180086099455 0.345375399155805 0.569180086099455 0.903515672998543 0.501472155827491 0.903600141402704 0.501472155827491 0.652348901308498 0.532721969799167 0.653013532414508 0.532721969799167 0.652348901308498 0.5330200368556 0.653013532414508 0.5330200368556 0.344588240642152 0.570910113222257 0.345375399155805 0.570910113222257 0.180303462112638 0.592617446578212 0.180770834560695 0.592617446578212 0.814566929203039 0.516781432698461 0.814832188979832 0.516781432698461 0.814566929203039 0.517097062813329 0.814832188979832 0.517097062813329 0.180303462112638 0.595268019457965 0.180770834560695 0.595268019457965 0.575405213737291 0.548346876785005 0.576199722875855 0.548346876785005 0.575405213737291 0.549258641012738 0.576199722875855 0.549258641012738 0.422650218106274 0.569180086099455 0.423507781496746 0.569180086099455 0.731473555975374 0.532721969799167 0.731949958120086 0.532721969799167 0.731473555975374 0.5330200368556 0.422650218106274 0.570910113222257 0.731949958120086 0.5330200368556 0.423507781496746 0.570910113222257 0.264079084425271 0.592617446578212 0.264732710640485 0.592617446578212 0.0925095128188971 0.616054807056969 0.0927531710243069 0.616054807056969 0.903515672998543 0.516781432698461 0.903600141402704 0.516781432698461 0.264079084425271 0.595268019457965 0.264732710640485 0.595268019457965 0.903515672998543 0.517097062813329 0.903600141402704 0.517097062813329 0.652348901308498 0.548346876785005 0.653013532414508 0.548346876785005 0.652348901308498 0.549258641012738 0.653013532414508 0.549258641012738 0.499238573522378 0.569180086099455 0.500098890492726 0.569180086099455 0.0925095128188971 0.619625925693673 0.0927531710243069 0.619625925693673 0.499238573522378 0.570910113222257 0.500098890492726 0.570910113222257 0.814566929203039 0.532721969799167 0.814832188979832 0.532721969799167 0.814566929203039 0.5330200368556 0.814832188979832 0.5330200368556 0.344588240642152 0.592617446578212 0.345375399155805 0.592617446578212 0.344588240642152 0.595268019457965 0.345375399155805 0.595268019457965 0.731473555975374 0.548346876785005 0.731949958120086 0.548346876785005 0.180303462112638 0.616054807056969 0.180770834560695 0.616054807056969 0.731473555975374 0.549258641012738 0.731949958120086 0.549258641012738 0.575405213737291 0.569180086099455 0.576199722875855 0.569180086099455 0.575405213737291 0.570910113222257 0.576199722875855 0.570910113222257 0.180303462112638 0.619625925693673 0.180770834560695 0.619625925693673 0.903515672998543 0.532721969799167 0.903600141402704 0.532721969799167 0.903515672998543 0.5330200368556 0.903600141402704 0.5330200368556 0.422650218106274 0.592617446578212 0.423507781496746 0.592617446578212 0.422650218106274 0.595268019457965 0.423507781496746 0.595268019457965 0.814566929203039 0.548346876785005 0.814832188979832 0.548346876785005 0.264079084425271 0.616054807056969 0.264732710640485 0.616054807056969 0.814566929203039 0.549258641012738 0.652348901308498 0.569180086099455 0.814832188979832 0.549258641012738 0.653013532414508 0.569180086099455 0.0925095128188971 0.639492167535725 0.0927531710243069 0.639492167535725 0.652348901308498 0.570910113222257 0.653013532414508 0.570910113222257 0.264079084425271 0.619625925693673 0.264732710640485 0.619625925693673 0.499238573522378 0.592617446578212 0.500098890492726 0.592617446578212 0.0925095128188971 0.643983831929381 0.0927531710243069 0.643983831929381 0.499238573522378 0.595268019457965 0.500098890492726 0.595268019457965 0.344588240642152 0.616054807056969 0.345375399155805 0.616054807056969 0.731473555975374 0.569180086099455 0.731949958120086 0.569180086099455 0.903515672998543 0.548346876785005 0.903600141402704 0.548346876785005 0.903515672998543 0.549258641012738 0.903600141402704 0.549258641012738 0.731473555975374 0.570910113222257 0.731949958120086 0.570910113222257 0.180303462112638 0.639492167535725 0.180770834560695 0.639492167535725 0.344588240642152 0.619625925693673 0.345375399155805 0.619625925693673 0.575405213737291 0.592617446578212 0.576199722875855 0.592617446578212 0.575405213737291 0.595268019457965 0.576199722875855 0.595268019457965 0.180303462112638 0.643983831929381 0.180770834560695 0.643983831929381 0.422650218106274 0.616054807056969 0.423507781496746 0.616054807056969 0.814566929203039 0.569180086099455 0.814832188979832 0.569180086099455 0.814566929203039 0.570910113222257 0.814832188979832 0.570910113222257 0.422650218106274 0.619625925693673 0.423507781496746 0.619625925693673 0.264079084425271 0.639492167535725 0.264732710640485 0.639492167535725 0.652348901308498 0.592617446578212 0.653013532414508 0.592617446578212 0.0925095128188971 0.662929528014482 0.0927531710243069 0.662929528014482 0.652348901308498 0.595268019457965 0.653013532414508 0.595268019457965 0.264079084425271 0.643983831929381 0.264732710640485 0.643983831929381 0.499238573522378 0.616054807056969 0.500098890492726 0.616054807056969 0.0925095128188971 0.668341738165089 0.0927531710243069 0.668341738165089 0.903515672998543 0.569180086099455 0.903600141402704 0.569180086099455 0.499238573522378 0.619625925693673 0.500098890492726 0.619625925693673 0.903515672998543 0.570910113222257 0.903600141402704 0.570910113222257 0.344588240642152 0.639492167535725 0.345375399155805 0.639492167535725 0.731473555975374 0.592617446578212 0.731949958120086 0.592617446578212 0.731473555975374 0.595268019457965 0.180303462112638 0.662929528014482 0.731949958120086 0.595268019457965 0.180770834560695 0.662929528014482 0.344588240642152 0.643983831929381 0.345375399155805 0.643983831929381 0.575405213737291 0.616054807056969 0.576199722875855 0.616054807056969 0.575405213737291 0.619625925693673 0.576199722875855 0.619625925693673 0.180303462112638 0.668341738165089 0.180770834560695 0.668341738165089 0.422650218106274 0.639492167535725 0.423507781496746 0.639492167535725 0.814566929203039 0.592617446578212 0.814832188979832 0.592617446578212 0.814566929203039 0.595268019457965 0.814832188979832 0.595268019457965 0.264079084425271 0.662929528014482 0.264732710640485 0.662929528014482 0.422650218106274 0.643983831929381 0.423507781496746 0.643983831929381 0.652348901308498 0.616054807056969 0.653013532414508 0.616054807056969 0.0925095128188971 0.686366888493239 0.0927531710243069 0.686366888493239 0.652348901308498 0.619625925693673 0.653013532414508 0.619625925693673 0.264079084425271 0.668341738165089 0.499238573522378 0.639492167535725 0.264732710640485 0.668341738165089 0.500098890492726 0.639492167535725 0.903515672998543 0.592617446578212 0.903600141402704 0.592617446578212 0.0925095128188971 0.692699644400797 0.0927531710243069 0.692699644400797 0.344588240642152 0.662929528014482 0.499238573522378 0.643983831929381 0.345375399155805 0.662929528014482 0.500098890492726 0.643983831929381 0.731473555975374 0.616054807056969 0.731949958120086 0.616054807056969 0.903515672998543 0.595268019457965 0.903600141402704 0.595268019457965 0.180303462112638 0.686366888493239 0.180770834560695 0.686366888493239 0.731473555975374 0.619625925693673 0.731949958120086 0.619625925693673 0.575405213737291 0.639492167535725 0.576199722875855 0.639492167535725 0.344588240642152 0.668341738165089 0.345375399155805 0.668341738165089 0.575405213737291 0.643983831929381 0.576199722875855 0.643983831929381 0.422650218106274 0.662929528014482 0.180303462112638 0.692699644400797 0.180770834560695 0.692699644400797 0.423507781496746 0.662929528014482 0.814566929203039 0.616054807056969 0.814832188979832 0.616054807056969 0.264079084425271 0.686366888493239 0.264732710640485 0.686366888493239 0.652348901308498 0.639492167535725 0.814566929203039 0.619625925693673 0.814832188979832 0.619625925693673 0.653013532414508 0.639492167535725 0.422650218106274 0.668341738165089 0.423507781496746 0.668341738165089 0.0925095128188971 0.709804248971996 0.0927531710243069 0.709804248971996 0.652348901308498 0.643983831929381 0.653013532414508 0.643983831929381 0.499238573522378 0.662929528014482 0.500098890492726 0.662929528014482 0.264079084425271 0.692699644400797 0.264732710640485 0.692699644400797 0.903515672998543 0.616054807056969 0.903600141402704 0.616054807056969 0.0925095128188971 0.717057550636505 0.0927531710243069 0.717057550636505 0.344588240642152 0.686366888493239 0.345375399155805 0.686366888493239 0.731473555975374 0.639492167535725 0.731949958120086 0.639492167535725 0.499238573522378 0.668341738165089 0.500098890492726 0.668341738165089 0.903515672998543 0.619625925693673 0.903600141402704 0.619625925693673 0.180303462112638 0.709804248971996 0.180770834560695 0.709804248971996 0.575405213737291 0.662929528014482 0.576199722875855 0.662929528014482 0.731473555975374 0.643983831929381 0.731949958120086 0.643983831929381 0.344588240642152 0.692699644400797 0.345375399155805 0.692699644400797 0.422650218106274 0.686366888493239 0.423507781496746 0.686366888493239 0.575405213737291 0.668341738165089 0.576199722875855 0.668341738165089 0.180303462112638 0.717057550636505 0.180770834560695 0.717057550636505 0.814566929203039 0.639492167535725 0.814832188979832 0.639492167535725 0.264079084425271 0.709804248971996 0.0925095128188971 0.730897873402877 0.0927531710243069 0.730897873402877 0.264732710640485 0.709804248971996 0.652348901308498 0.662929528014482 0.653013532414508 0.662929528014482 0.814566929203039 0.643983831929381 0.814832188979832 0.643983831929381 0.422650218106274 0.692699644400797 0.423507781496746 0.692699644400797 0.0925095128188971 0.734814464282336 0.0927531710243069 0.734814464282336 0.499238573522378 0.686366888493239 0.500098890492726 0.686366888493239 0.652348901308498 0.668341738165089 0.653013532414508 0.668341738165089 0.264079084425271 0.717057550636505 0.264732710640485 0.717057550636505 0.903515672998543 0.639492167535725 0.903600141402704 0.639492167535725 0.344588240642152 0.709804248971996 0.345375399155805 0.709804248971996 0.731473555975374 0.662929528014482 0.731949958120086 0.662929528014482 0.180303462112638 0.730897873402877 0.180770834560695 0.730897873402877 0.499238573522378 0.692699644400797 0.500098890492726 0.692699644400797 0.903515672998543 0.643983831929381 0.903600141402704 0.643983831929381 0.180303462112638 0.734814464282336 0.575405213737291 0.686366888493239 0.180770834560695 0.734814464282336 0.576199722875855 0.686366888493239 0.0925095128188971 0.746275125612989 0.0927531710243069 0.746275125612989 0.731473555975374 0.668341738165089 0.731949958120086 0.668341738165089 0.344588240642152 0.717057550636505 0.345375399155805 0.717057550636505 0.0925095128188971 0.749611892320529 0.0927531710243069 0.749611892320529 0.422650218106274 0.709804248971996 0.423507781496746 0.709804248971996 0.814566929203039 0.662929528014482 0.814832188979832 0.662929528014482 0.575405213737291 0.692699644400797 0.264079084425271 0.730897873402877 0.264732710640485 0.730897873402877 0.576199722875855 0.692699644400797 0.652348901308498 0.686366888493239 0.653013532414508 0.686366888493239 0.264079084425271 0.734814464282336 0.264732710640485 0.734814464282336 0.814566929203039 0.668341738165089 0.814832188979832 0.668341738165089 0.180303462112638 0.746275125612989 0.180770834560695 0.746275125612989 0.422650218106274 0.717057550636505 0.423507781496746 0.717057550636505 0.499238573522378 0.709804248971996 0.500098890492726 0.709804248971996 0.180303462112638 0.749611892320529 0.180770834560695 0.749611892320529 0.0925095128188971 0.760513322103834 0.0927531710243069 0.760513322103834 0.652348901308498 0.692699644400797 0.653013532414508 0.692699644400797 0.344588240642152 0.730897873402877 0.345375399155805 0.730897873402877 0.903515672998543 0.662929528014482 0.903600141402704 0.662929528014482 0.0925095128188971 0.763313214578115 0.0927531710243069 0.763313214578115 0.731473555975374 0.686366888493239 0.731949958120086 0.686366888493239 0.344588240642152 0.734814464282336 0.345375399155805 0.734814464282336 0.499238573522378 0.717057550636505 0.500098890492726 0.717057550636505 0.264079084425271 0.746275125612989 0.264732710640485 0.746275125612989 0.903515672998543 0.668341738165089 0.903600141402704 0.668341738165089 0.575405213737291 0.709804248971996 0.576199722875855 0.709804248971996 0.264079084425271 0.749611892320529 0.264732710640485 0.749611892320529 0.731473555975374 0.692699644400797 0.731949958120086 0.692699644400797 0.180303462112638 0.760513322103834 0.180770834560695 0.760513322103834 0.422650218106274 0.730897873402877 0.423507781496746 0.730897873402877 0.180303462112638 0.763313214578115 0.180770834560695 0.763313214578115 0.0925095128188971 0.774751518594679 0.0927531710243069 0.774751518594679 0.814566929203039 0.686366888493239 0.814832188979832 0.686366888493239 0.422650218106274 0.734814464282336 0.423507781496746 0.734814464282336 0.575405213737291 0.717057550636505 0.576199722875855 0.717057550636505 0.0925095128188971 0.777014536835701 0.0927531710243069 0.777014536835701 0.344588240642152 0.746275125612989 0.345375399155805 0.746275125612989 0.652348901308498 0.709804248971996 0.653013532414508 0.709804248971996 0.344588240642152 0.749611892320529 0.345375399155805 0.749611892320529 0.499238573522378 0.730897873402877 0.500098890492726 0.730897873402877 0.814566929203039 0.692699644400797 0.814832188979832 0.692699644400797 0.264079084425271 0.760513322103834 0.264732710640485 0.760513322103834 0.264079084425271 0.763313214578115 0.264732710640485 0.763313214578115 0.499238573522378 0.734814464282336 0.500098890492726 0.734814464282336 0.180303462112638 0.774751518594679 0.180770834560695 0.774751518594679 0.652348901308498 0.717057550636505 0.653013532414508 0.717057550636505 0.903515672998543 0.686366888493239 0.903600141402704 0.686366888493239 0.422650218106274 0.746275125612989 0.423507781496746 0.746275125612989 0.180303462112638 0.777014536835701 0.180770834560695 0.777014536835701 0.731473555975374 0.709804248971996 0.731949958120086 0.709804248971996 0.0925095128188971 0.788989715085524 0.0927531710243069 0.788989715085524 0.422650218106274 0.749611892320529 0.575405213737291 0.730897873402877 0.423507781496746 0.749611892320529 0.576199722875855 0.730897873402877 0.0925095128188971 0.790715859093287 0.0927531710243069 0.790715859093287 0.344588240642152 0.760513322103834 0.345375399155805 0.760513322103834 0.903515672998543 0.692699644400797 0.903600141402704 0.692699644400797 0.575405213737291 0.734814464282336 0.576199722875855 0.734814464282336 0.344588240642152 0.763313214578115 0.345375399155805 0.763313214578115 0.731473555975374 0.717057550636505 0.731949958120086 0.717057550636505 0.264079084425271 0.774751518594679 0.264732710640485 0.774751518594679 0.499238573522378 0.746275125612989 0.500098890492726 0.746275125612989 0.264079084425271 0.777014536835701 0.264732710640485 0.777014536835701 0.814566929203039 0.709804248971996 0.814832188979832 0.709804248971996 0.499238573522378 0.749611892320529 0.652348901308498 0.730897873402877 0.500098890492726 0.749611892320529 0.653013532414508 0.730897873402877 0.180303462112638 0.788989715085524 0.180770834560695 0.788989715085524 0.422650218106274 0.760513322103834 0.423507781496746 0.760513322103834 0.180303462112638 0.790715859093287 0.180770834560695 0.790715859093287 0.652348901308498 0.734814464282336 0.653013532414508 0.734814464282336 0.422650218106274 0.763313214578115 0.423507781496746 0.763313214578115 0.575405213737291 0.746275125612989 0.576199722875855 0.746275125612989 0.814566929203039 0.717057550636505 0.814832188979832 0.717057550636505 0.344588240642152 0.774751518594679 0.345375399155805 0.774751518594679 0.344588240642152 0.777014536835701 0.0925095128188971 0.807973977073317 0.0927531710243069 0.807973977073317 0.345375399155805 0.777014536835701 0.575405213737291 0.749611892320529 0.576199722875855 0.749611892320529 0.0925095128188971 0.808984288770068 0.0927531710243069 0.808984288770068 0.731473555975374 0.730897873402877 0.903515672998543 0.709804248971996 0.903600141402704 0.709804248971996 0.731949958120086 0.730897873402877 0.264079084425271 0.788989715085524 0.264732710640485 0.788989715085524 0.499238573522378 0.760513322103834 0.500098890492726 0.760513322103834 0.264079084425271 0.790715859093287 0.264732710640485 0.790715859093287 0.731473555975374 0.734814464282336 0.499238573522378 0.763313214578115 0.731949958120086 0.734814464282336 0.500098890492726 0.763313214578115 0.652348901308498 0.746275125612989 0.653013532414508 0.746275125612989 0.422650218106274 0.774751518594679 0.423507781496746 0.774751518594679 0.903515672998543 0.717057550636505 0.903600141402704 0.717057550636505 0.422650218106274 0.777014536835701 0.423507781496746 0.777014536835701 0.652348901308498 0.749611892320529 0.653013532414508 0.749611892320529 0.180303462112638 0.807973977073317 0.180770834560695 0.807973977073317 0.814566929203039 0.730897873402877 0.814832188979832 0.730897873402877 0.180303462112638 0.808984288770068 0.575405213737291 0.760513322103834 0.180770834560695 0.808984288770068 0.576199722875855 0.760513322103834 0.344588240642152 0.788989715085524 0.345375399155805 0.788989715085524 0.344588240642152 0.790715859093287 0.345375399155805 0.790715859093287 0.575405213737291 0.763313214578115 0.576199722875855 0.763313214578115 0.814566929203039 0.734814464282336 0.814832188979832 0.734814464282336 0.499238573522378 0.774751518594679 0.731473555975374 0.746275125612989 0.731949958120086 0.746275125612989 0.500098890492726 0.774751518594679 0.499238573522378 0.777014536835701 0.500098890492726 0.777014536835701 0.731473555975374 0.749611892320529 0.731949958120086 0.749611892320529 0.264079084425271 0.807973977073317 0.264732710640485 0.807973977073317 0.652348901308498 0.760513322103834 0.653013532414508 0.760513322103834 0.0925095128188971 0.829331271809584 0.0927531710243069 0.829331271809584 0.422650218106274 0.788989715085524 0.0925095128188971 0.829536272156446 0.0927531710243069 0.829536272156446 0.423507781496746 0.788989715085524 0.264079084425271 0.808984288770068 0.264732710640485 0.808984288770068 0.903515672998543 0.730897873402877 0.903600141402704 0.730897873402877 0.422650218106274 0.790715859093287 0.423507781496746 0.790715859093287 0.652348901308498 0.763313214578115 0.653013532414508 0.763313214578115 0.575405213737291 0.774751518594679 0.576199722875855 0.774751518594679 0.903515672998543 0.734814464282336 0.903600141402704 0.734814464282336 0.814566929203039 0.746275125612989 0.814832188979832 0.746275125612989 0.575405213737291 0.777014536835701 0.576199722875855 0.777014536835701 0.814566929203039 0.749611892320529 0.814832188979832 0.749611892320529 0.499238573522378 0.788989715085524 0.344588240642152 0.807973977073317 0.731473555975374 0.760513322103834 0.731949958120086 0.760513322103834 0.500098890492726 0.788989715085524 0.345375399155805 0.807973977073317 0.344588240642152 0.808984288770068 0.345375399155805 0.808984288770068 0.180303462112638 0.829331271809584 0.180770834560695 0.829331271809584 0.180303462112638 0.829536272156446 0.180770834560695 0.829536272156446 0.499238573522378 0.790715859093287 0.500098890492726 0.790715859093287 0.731473555975374 0.763313214578115 0.731949958120086 0.763313214578115 0.652348901308498 0.774751518594679 0.653013532414508 0.774751518594679 0.652348901308498 0.777014536835701 0.903515672998543 0.746275125612989 0.653013532414508 0.777014536835701 0.903600141402704 0.746275125612989 0.575405213737291 0.788989715085524 0.576199722875855 0.788989715085524 0.422650218106274 0.807973977073317 0.423507781496746 0.807973977073317 0.814566929203039 0.760513322103834 0.903515672998543 0.749611892320529 0.903600141402704 0.749611892320529 0.814832188979832 0.760513322103834 0.422650218106274 0.808984288770068 0.423507781496746 0.808984288770068 0.575405213737291 0.790715859093287 0.576199722875855 0.790715859093287 0.0925095128188971 0.850088255542825 0.0927531710243069 0.850088255542825 0.264079084425271 0.829331271809584 0.264732710640485 0.829331271809584 0.264079084425271 0.829536272156446 0.264732710640485 0.829536272156446 0.0925095128188971 0.850688566545851 0.0927531710243069 0.850688566545851 0.814566929203039 0.763313214578115 0.814832188979832 0.763313214578115 0.731473555975374 0.774751518594679 0.731949958120086 0.774751518594679 0.731473555975374 0.777014536835701 0.731949958120086 0.777014536835701 0.652348901308498 0.788989715085524 0.653013532414508 0.788989715085524 0.499238573522378 0.807973977073317 0.500098890492726 0.807973977073317 0.499238573522378 0.808984288770068 0.500098890492726 0.808984288770068 0.652348901308498 0.790715859093287 0.653013532414508 0.790715859093287 0.903515672998543 0.760513322103834 0.903600141402704 0.760513322103834 0.344588240642152 0.829331271809584 0.345375399155805 0.829331271809584 0.344588240642152 0.829536272156446 0.345375399155805 0.829536272156446 0.180303462112638 0.850088255542825 0.180770834560695 0.850088255542825 0.180303462112638 0.850688566545851 0.180770834560695 0.850688566545851 0.903515672998543 0.763313214578115 0.903600141402704 0.763313214578115 0.814566929203039 0.774751518594679 0.814832188979832 0.774751518594679 0.814566929203039 0.777014536835701 0.814832188979832 0.777014536835701 0.575405213737291 0.807973977073317 0.576199722875855 0.807973977073317 0.731473555975374 0.788989715085524 0.731949958120086 0.788989715085524 0.575405213737291 0.808984288770068 0.576199722875855 0.808984288770068 0.731473555975374 0.790715859093287 0.731949958120086 0.790715859093287 0.422650218106274 0.829331271809584 0.423507781496746 0.829331271809584 0.422650218106274 0.829536272156446 0.423507781496746 0.829536272156446 0.0925095128188971 0.870640238929204 0.0927531710243069 0.870640238929204 0.264079084425271 0.850088255542825 0.264732710640485 0.850088255542825 0.264079084425271 0.850688566545851 0.264732710640485 0.850688566545851 0.0925095128188971 0.872045861282118 0.0927531710243069 0.872045861282118 0.903515672998543 0.774751518594679 0.903600141402704 0.774751518594679 0.903515672998543 0.777014536835701 0.903600141402704 0.777014536835701 0.652348901308498 0.807973977073317 0.653013532414508 0.807973977073317 0.814566929203039 0.788989715085524 0.814832188979832 0.788989715085524 0.652348901308498 0.808984288770068 0.653013532414508 0.808984288770068 0.499238573522378 0.829331271809584 0.814566929203039 0.790715859093287 0.814832188979832 0.790715859093287 0.500098890492726 0.829331271809584 0.499238573522378 0.829536272156446 0.500098890492726 0.829536272156446 0.344588240642152 0.850088255542825 0.345375399155805 0.850088255542825 0.180303462112638 0.870640238929204 0.180770834560695 0.870640238929204 0.344588240642152 0.850688566545851 0.345375399155805 0.850688566545851 0.180303462112638 0.872045861282118 0.180770834560695 0.872045861282118 0.731473555975374 0.807973977073317 0.731949958120086 0.807973977073317 0.731473555975374 0.808984288770068 0.731949958120086 0.808984288770068 0.903515672998543 0.788989715085524 0.903600141402704 0.788989715085524 0.575405213737291 0.829331271809584 0.576199722875855 0.829331271809584 0.575405213737291 0.829536272156446 0.576199722875855 0.829536272156446 0.903515672998543 0.790715859093287 0.903600141402704 0.790715859093287 0.422650218106274 0.850088255542825 0.423507781496746 0.850088255542825 0.422650218106274 0.850688566545851 0.0925095128188971 0.891192222315582 0.0927531710243069 0.891192222315582 0.423507781496746 0.850688566545851 0.264079084425271 0.870640238929204 0.264732710640485 0.870640238929204 0.264079084425271 0.872045861282118 0.264732710640485 0.872045861282118 0.0925095128188971 0.893403156018385 0.0927531710243069 0.893403156018385 0.814566929203039 0.807973977073317 0.814832188979832 0.807973977073317 0.814566929203039 0.808984288770068 0.814832188979832 0.808984288770068 0.652348901308498 0.829331271809584 0.653013532414508 0.829331271809584 0.652348901308498 0.829536272156446 0.653013532414508 0.829536272156446 0.499238573522378 0.850088255542825 0.500098890492726 0.850088255542825 0.499238573522378 0.850688566545851 0.500098890492726 0.850688566545851 0.344588240642152 0.870640238929204 0.345375399155805 0.870640238929204 0.180303462112638 0.891192222315582 0.180770834560695 0.891192222315582 0.344588240642152 0.872045861282118 0.345375399155805 0.872045861282118 0.180303462112638 0.893403156018385 0.180770834560695 0.893403156018385 0.903515672998543 0.807973977073317 0.903600141402704 0.807973977073317 0.731473555975374 0.829331271809584 0.731949958120086 0.829331271809584 0.731473555975374 0.829536272156446 0.731949958120086 0.829536272156446 0.903515672998543 0.808984288770068 0.903600141402704 0.808984288770068 0.575405213737291 0.850088255542825 0.576199722875855 0.850088255542825 0.575405213737291 0.850688566545851 0.576199722875855 0.850688566545851 0.422650218106274 0.870640238929204 0.423507781496746 0.870640238929204 0.0925095128188971 0.911744205701961 0.0927531710243069 0.911744205701961 0.264079084425271 0.891192222315582 0.264732710640485 0.891192222315582 0.422650218106274 0.872045861282118 0.423507781496746 0.872045861282118 0.264079084425271 0.893403156018385 0.264732710640485 0.893403156018385 0.0925095128188971 0.914760450754652 0.0927531710243069 0.914760450754652 0.814566929203039 0.829331271809584 0.814832188979832 0.829331271809584 0.814566929203039 0.829536272156446 0.814832188979832 0.829536272156446 0.652348901308498 0.850088255542825 0.653013532414508 0.850088255542825 0.652348901308498 0.850688566545851 0.653013532414508 0.850688566545851 0.499238573522378 0.870640238929204 0.500098890492726 0.870640238929204 0.499238573522378 0.872045861282118 0.500098890492726 0.872045861282118 0.344588240642152 0.891192222315582 0.345375399155805 0.891192222315582 0.180303462112638 0.911744205701961 0.180770834560695 0.911744205701961 0.344588240642152 0.893403156018385 0.345375399155805 0.893403156018385 0.180303462112638 0.914760450754652 0.180770834560695 0.914760450754652 0.731473555975374 0.850088255542825 0.731949958120086 0.850088255542825 0.903515672998543 0.829331271809584 0.903600141402704 0.829331271809584 0.903515672998543 0.829536272156446 0.903600141402704 0.829536272156446 0.731473555975374 0.850688566545851 0.731949958120086 0.850688566545851 0.575405213737291 0.870640238929204 0.576199722875855 0.870640238929204 0.575405213737291 0.872045861282118 0.576199722875855 0.872045861282118 0.422650218106274 0.891192222315582 0.423507781496746 0.891192222315582 0.0925095128188971 0.93229618908834 0.0927531710243069 0.93229618908834 0.264079084425271 0.911744205701961 0.264732710640485 0.911744205701961 0.422650218106274 0.893403156018385 0.423507781496746 0.893403156018385 0.264079084425271 0.914760450754652 0.264732710640485 0.914760450754652 0.0925095128188971 0.936117745490919 0.0927531710243069 0.936117745490919 0.814566929203039 0.850088255542825 0.814832188979832 0.850088255542825 0.814566929203039 0.850688566545851 0.814832188979832 0.850688566545851 0.652348901308498 0.870640238929204 0.653013532414508 0.870640238929204 0.652348901308498 0.872045861282118 0.653013532414508 0.872045861282118 0.499238573522378 0.891192222315582 0.500098890492726 0.891192222315582 0.344588240642152 0.911744205701961 0.345375399155805 0.911744205701961 0.180303462112638 0.93229618908834 0.180770834560695 0.93229618908834 0.499238573522378 0.893403156018385 0.500098890492726 0.893403156018385 0.344588240642152 0.914760450754652 0.345375399155805 0.914760450754652 0.180303462112638 0.936117745490919 0.180770834560695 0.936117745490919 0.731473555975374 0.870640238929204 0.731949958120086 0.870640238929204 0.903515672998543 0.850088255542825 0.903600141402704 0.850088255542825 0.903515672998543 0.850688566545851 0.903600141402704 0.850688566545851 0.575405213737291 0.891192222315582 0.731473555975374 0.872045861282118 0.731949958120086 0.872045861282118 0.576199722875855 0.891192222315582 0.422650218106274 0.911744205701961 0.423507781496746 0.911744205701961 0.575405213737291 0.893403156018385 0.576199722875855 0.893403156018385 0.0925095128188971 0.952848172474718 0.0927531710243069 0.952848172474718 0.264079084425271 0.93229618908834 0.264732710640485 0.93229618908834 0.422650218106274 0.914760450754652 0.423507781496746 0.914760450754652 0.264079084425271 0.936117745490919 0.264732710640485 0.936117745490919 0.0925095128188971 0.957475040227187 0.0927531710243069 0.957475040227187 0.814566929203039 0.870640238929204 0.814832188979832 0.870640238929204 0.652348901308498 0.891192222315582 0.653013532414508 0.891192222315582 0.814566929203039 0.872045861282118 0.814832188979832 0.872045861282118 0.499238573522378 0.911744205701961 0.500098890492726 0.911744205701961 0.652348901308498 0.893403156018385 0.653013532414508 0.893403156018385 0.344588240642152 0.93229618908834 0.345375399155805 0.93229618908834 0.180303462112638 0.952848172474718 0.180770834560695 0.952848172474718 0.499238573522378 0.914760450754652 0.500098890492726 0.914760450754652 0.344588240642152 0.936117745490919 0.345375399155805 0.936117745490919 0.180303462112638 0.957475040227187 0.180770834560695 0.957475040227187 0.731473555975374 0.891192222315582 0.731949958120086 0.891192222315582 0.903515672998543 0.870640238929204 0.903600141402704 0.870640238929204 0.575405213737291 0.911744205701961 0.576199722875855 0.911744205701961 0.903515672998543 0.872045861282118 0.903600141402704 0.872045861282118 0.731473555975374 0.893403156018385 0.731949958120086 0.893403156018385 0.422650218106274 0.93229618908834 0.423507781496746 0.93229618908834 0.0925095128188971 0.973400155861097 0.0927531710243069 0.973400155861097 0.264079084425271 0.952848172474718 0.264732710640485 0.952848172474718 0.575405213737291 0.914760450754652 0.576199722875855 0.914760450754652 0.422650218106274 0.936117745490919 0.423507781496746 0.936117745490919 0.264079084425271 0.957475040227187 0.264732710640485 0.957475040227187 0.0925095128188971 0.978832334963454 0.0927531710243069 0.978832334963454 0.814566929203039 0.891192222315582 0.814832188979832 0.891192222315582 0.652348901308498 0.911744205701961 0.653013532414508 0.911744205701961 0.814566929203039 0.893403156018385 0.814832188979832 0.893403156018385 0.499238573522378 0.93229618908834 0.500098890492726 0.93229618908834 0.652348901308498 0.914760450754652 0.653013532414508 0.914760450754652 0.344588240642152 0.952848172474718 0.345375399155805 0.952848172474718 0.180303462112638 0.973400155861097 0.180770834560695 0.973400155861097 0.499238573522378 0.936117745490919 0.0925095128188971 0.986107154294842 0.500098890492726 0.936117745490919 0.0927531710243069 0.986107154294842 0.0925095128188971 0.988376061665581 0.344588240642152 0.957475040227187 0.0927531710243069 0.988376061665581 0.345375399155805 0.957475040227187 0.180303462112638 0.978832334963454 0.180770834560695 0.978832334963454 0.731473555975374 0.911744205701961 0.731949958120086 0.911744205701961 0.903515672998543 0.891192222315582 0.903600141402704 0.891192222315582 0.575405213737291 0.93229618908834 0.576199722875855 0.93229618908834 0.903515672998543 0.893403156018385 0.903600141402704 0.893403156018385 0.731473555975374 0.914760450754652 0.731949958120086 0.914760450754652 0.422650218106274 0.952848172474718 0.423507781496746 0.952848172474718 0.264079084425271 0.973400155861097 0.264732710640485 0.973400155861097 0.575405213737291 0.936117745490919 0.576199722875855 0.936117745490919 0.180303462112638 0.986107154294842 0.180770834560695 0.986107154294842 0.0925095128188971 0.997919788367708 0.0927531710243069 0.997919788367708 0.422650218106274 0.957475040227187 0.423507781496746 0.957475040227187 0.180303462112638 0.988376061665581 0.180770834560695 0.988376061665581 0.264079084425271 0.978832334963454 0.264732710640485 0.978832334963454 0.814566929203039 0.911744205701961 0.814832188979832 0.911744205701961 0.652348901308498 0.93229618908834 0.653013532414508 0.93229618908834 0.499238573522378 0.952848172474718 0.500098890492726 0.952848172474718 0.814566929203039 0.914760450754652 0.814832188979832 0.914760450754652 0.344588240642152 0.973400155861097 0.345375399155805 0.973400155861097 0.652348901308498 0.936117745490919 0.653013532414508 0.936117745490919 0.264079084425271 0.986107154294842 0.264732710640485 0.986107154294842 0.499238573522378 0.957475040227187 0.500098890492726 0.957475040227187 0.180303462112638 0.997919788367708 0.180770834560695 0.997919788367708 0.264079084425271 0.988376061665581 0.264732710640485 0.988376061665581 0.344588240642152 0.978832334963454 0.345375399155805 0.978832334963454 0.731473555975374 0.93229618908834 0.731949958120086 0.93229618908834 0.903515672998543 0.911744205701961 0.903600141402704 0.911744205701961 0.575405213737291 0.952848172474718 0.576199722875855 0.952848172474718 0.422650218106274 0.973400155861097 0.423507781496746 0.973400155861097 0.903515672998543 0.914760450754652 0.903600141402704 0.914760450754652 0.731473555975374 0.936117745490919 0.731949958120086 0.936117745490919 0.575405213737291 0.957475040227187 0.576199722875855 0.957475040227187 0.344588240642152 0.986107154294842 0.345375399155805 0.986107154294842 0.264079084425271 0.997919788367708 0.264732710640485 0.997919788367708 0.344588240642152 0.988376061665581 0.422650218106274 0.978832334963454 0.345375399155805 0.988376061665581 0.423507781496746 0.978832334963454 0.814566929203039 0.93229618908834 0.814832188979832 0.93229618908834 0.652348901308498 0.952848172474718 0.653013532414508 0.952848172474718 0.499238573522378 0.973400155861097 0.500098890492726 0.973400155861097 0.814566929203039 0.936117745490919 0.814832188979832 0.936117745490919 0.652348901308498 0.957475040227187 0.653013532414508 0.957475040227187 0.422650218106274 0.986107154294842 0.423507781496746 0.986107154294842 0.499238573522378 0.978832334963454 0.500098890492726 0.978832334963454 0.344588240642152 0.997919788367708 0.422650218106274 0.988376061665581 0.345375399155805 0.997919788367708 0.423507781496746 0.988376061665581 0.731473555975374 0.952848172474718 0.731949958120086 0.952848172474718 0.903515672998543 0.93229618908834 0.903600141402704 0.93229618908834 0.575405213737291 0.973400155861097 0.576199722875855 0.973400155861097 0.903515672998543 0.936117745490919 0.903600141402704 0.936117745490919 0.731473555975374 0.957475040227187 0.731949958120086 0.957475040227187 0.499238573522378 0.986107154294842 0.500098890492726 0.986107154294842 0.575405213737291 0.978832334963454 0.576199722875855 0.978832334963454 0.499238573522378 0.988376061665581 0.500098890492726 0.988376061665581 0.422650218106274 0.997919788367708 0.423507781496746 0.997919788367708 0.814566929203039 0.952848172474718 0.814832188979832 0.952848172474718 0.652348901308498 0.973400155861097 0.653013532414508 0.973400155861097 0.575405213737291 0.986107154294842 0.576199722875855 0.986107154294842 0.814566929203039 0.957475040227187 0.814832188979832 0.957475040227187 0.652348901308498 0.978832334963454 0.653013532414508 0.978832334963454 0.575405213737291 0.988376061665581 0.576199722875855 0.988376061665581 0.499238573522378 0.997919788367708 0.500098890492726 0.997919788367708 0.731473555975374 0.973400155861097 0.731949958120086 0.973400155861097 0.903515672998543 0.952848172474718 0.903600141402704 0.952848172474718 0.652348901308498 0.986107154294842 0.653013532414508 0.986107154294842 0.903515672998543 0.957475040227187 0.903600141402704 0.957475040227187 0.652348901308498 0.988376061665581 0.653013532414508 0.988376061665581 0.575405213737291 0.997919788367708 0.731473555975374 0.978832334963454 0.576199722875855 0.997919788367708 0.731949958120086 0.978832334963454 0.814566929203039 0.973400155861097 0.814832188979832 0.973400155861097 0.731473555975374 0.986107154294842 0.731949958120086 0.986107154294842 0.652348901308498 0.997919788367708 0.653013532414508 0.997919788367708 0.731473555975374 0.988376061665581 0.731949958120086 0.988376061665581 0.814566929203039 0.978832334963454 0.814832188979832 0.978832334963454 0.903515672998543 0.973400155861097 0.903600141402704 0.973400155861097 0.814566929203039 0.986107154294842 0.814832188979832 0.986107154294842 0.731473555975374 0.997919788367708 0.731949958120086 0.997919788367708 0.814566929203039 0.988376061665581 0.814832188979832 0.988376061665581 0.903515672998543 0.978832334963454 0.903600141402704 0.978832334963454 0.903515672998543 0.986107154294842 0.903600141402704 0.986107154294842 0.814566929203039 0.997919788367708 0.814832188979832 0.997919788367708 0.903515672998543 0.988376061665581 0.903600141402704 0.988376061665581 0.903515672998543 0.997919788367708 0.903600141402704 0.997919788367708 1170 1169 1160 595 66 589 1171 1148 1165 1171 1156 1148 596 589 590 596 595 589 597 574 572 1172 1165 1166 1172 1171 1165 597 572 565 598 565 566 1173 1160 1167 1173 1170 1160 598 597 565 598 566 591 1174 1173 1167 1174 1167 1168 599 570 554 599 554 581 600 599 581 600 11 12 1175 1162 1169 600 582 11 600 581 582 1176 1175 1169 601 576 592 1176 1169 1170 1177 46 45 602 601 592 1177 1161 1162 1177 45 1164 1177 1164 1161 1178 1162 1175 1178 46 1177 602 592 594 1178 1177 1162 603 574 597 1179 1155 1156 1179 1168 1155 604 597 598 1180 1179 1156 604 603 597 1180 1156 1171 605 580 564 605 564 587 1181 1153 1154 1181 1166 1153 1182 24 25 606 605 587 606 587 588 1182 1181 1154 1182 1154 24 1183 1170 1173 607 573 574 607 578 573 1184 1183 1173 608 574 603 1184 1173 1174 608 607 574 1185 1172 1166 609 556 575 1185 1166 1181 1186 1181 1182 1186 1182 25 609 584 556 1186 1185 1181 609 593 584 1187 1176 1170 1187 1170 1183 610 575 576 1188 1183 1184 1188 1187 1183 610 576 601 610 609 575 1189 1175 1176 1189 46 1178 1189 47 46 611 586 578 1189 1178 1175 1190 1168 1179 611 578 607 612 611 607 612 607 608 1190 1174 1168 1191 1176 1187 1191 47 1189 1191 1189 1176 613 544 569 1192 1190 1179 613 606 588 1192 1179 1180 613 588 544 1193 1180 1171 1193 1171 1172 614 569 570 614 613 569 615 609 610 1194 1172 1185 615 593 609 1194 1193 1172 1195 1184 1174 1195 1174 1190 616 594 558 616 558 579 617 615 610 1196 1190 1192 1196 1195 1190 1197 48 47 1197 1187 1188 1197 47 1191 1197 1191 1187 618 616 579 618 579 580 1198 48 1197 1198 1197 1188 1199 1188 1184 619 560 585 1199 1184 1195 619 590 560 1200 1195 1196 1200 1199 1195 1201 1192 1180 1201 1180 1193 620 585 586 620 619 585 1202 1193 1194 1202 1201 1193 621 598 591 1203 1185 1186 622 593 615 1203 1194 1185 1203 1202 1194 622 621 591 1204 25 26 622 591 593 1204 1186 25 1204 1203 1186 623 619 620 623 590 619 623 596 590 1205 1192 1201 1205 1196 1192 624 623 620 625 594 616 1206 1205 1201 625 602 594 1206 1201 1202 1207 49 48 1207 1188 1199 1207 48 1198 1207 1198 1188 1207 1199 1200 1208 1207 1200 626 625 616 626 616 618 1208 49 1207 627 604 598 1209 1200 1196 1209 1196 1205 1210 1205 1206 627 598 621 1210 1209 1205 1211 1202 1203 628 621 622 628 627 621 629 617 610 629 610 601 1212 1211 1203 629 601 602 1212 1204 26 1212 1203 1204 630 602 625 630 629 602 1213 1206 1202 1213 1202 1211 1214 1211 1212 1214 1213 1211 1214 1212 26 631 606 613 1214 26 27 1215 1200 1209 1215 1208 1200 1215 49 1208 1215 1209 1210 1215 50 49 632 613 614 632 631 613 1216 1215 1210 1216 50 1215 633 603 604 1217 1206 1213 633 612 608 633 608 603 1217 1216 1210 1217 1210 1206 1218 1217 1213 1218 1213 1214 1218 27 2 1218 1214 27 634 604 627 634 633 604 1219 50 1216 1219 1216 1217 1219 51 50 1219 1217 1218 1220 1218 2 635 612 633 1220 1219 1218 1220 51 1219 1220 2 51 636 67 66 636 66 595 637 636 595 637 595 596 638 633 634 638 635 633 639 617 629 640 639 629 640 629 630 641 67 636 642 641 636 642 636 637 643 580 605 643 618 580 644 614 570 644 570 599 644 632 614 645 600 12 645 599 600 645 644 599 646 605 606 646 643 605 77 28 29 77 52 28 78 77 29 647 586 611 78 29 30 647 620 586 79 78 30 648 612 635 80 30 31 648 611 612 80 79 30 81 52 77 648 647 611 82 77 78 649 622 615 650 615 617 82 81 77 650 649 615 650 617 639 83 53 52 83 52 81 651 620 647 84 83 81 651 624 620 84 81 82 85 80 31 652 651 647 652 647 648 86 31 32 86 85 31 87 82 78 653 618 643 653 643 646 653 626 618 87 78 79 654 622 649 654 649 650 654 628 622 87 79 80 655 653 646 88 87 80 656 654 650 89 84 82 657 630 625 89 82 87 658 657 625 658 625 626 90 87 88 90 89 87 659 634 627 91 86 32 659 627 628 92 32 33 92 91 32 93 53 83 93 83 84 660 659 628 660 628 654 94 93 84 661 632 644 662 645 12 662 12 13 94 84 89 662 644 645 662 661 644 95 53 93 663 638 634 663 634 659 96 93 94 96 95 93 664 659 660 664 663 659 665 630 657 665 640 630 97 80 85 97 85 86 97 88 80 98 86 91 666 665 657 666 657 658 667 637 596 98 97 86 99 90 88 99 88 97 667 596 623 668 667 623 668 623 624 100 97 98 100 99 97 669 606 631 669 646 606 670 669 631 101 92 33 102 101 33 102 33 34 670 631 632 671 667 668 103 89 90 671 637 667 103 94 89 671 642 637 672 656 650 672 650 639 104 103 90 673 671 668 105 94 103 105 103 104 105 96 94 674 672 639 674 639 640 106 105 104 675 652 648 675 648 635 107 100 98 676 675 635 107 98 91 676 635 638 677 652 675 108 107 91 108 91 92 678 675 676 108 92 101 109 100 107 678 677 675 679 656 672 110 109 107 680 679 672 680 672 674 110 107 108 111 54 53 681 646 669 681 655 646 111 53 95 112 95 96 682 669 670 112 111 95 682 681 669 683 654 656 113 54 111 683 660 654 114 111 112 114 113 111 684 626 653 684 653 655 684 658 626 115 102 34 116 34 35 116 115 34 117 90 99 685 684 655 686 656 679 686 683 656 117 99 100 117 104 90 687 660 683 687 683 686 118 100 109 687 664 660 118 117 100 688 687 686 689 666 658 119 106 104 119 104 117 689 658 684 689 684 685 120 117 118 690 689 685 120 119 117 691 668 624 121 108 101 691 624 651 691 651 652 692 652 677 122 121 101 122 101 102 692 691 652 693 674 640 123 110 108 693 665 666 123 108 121 693 640 665 694 693 666 124 121 122 124 123 121 125 112 96 695 67 641 695 68 67 125 96 105 696 641 642 126 105 106 696 695 641 126 125 105 127 112 125 697 638 663 127 114 112 697 676 638 698 695 696 128 127 125 128 125 126 698 68 695 129 116 35 130 35 36 699 698 696 130 129 35 700 697 663 131 118 109 131 109 110 700 664 687 131 120 118 700 663 664 701 673 668 701 668 691 701 691 692 132 131 110 132 110 123 702 701 692 133 120 131 703 670 632 133 131 132 703 632 661 134 133 132 704 703 661 704 662 13 704 661 662 705 678 676 705 676 697 705 697 700 135 102 115 135 122 102 706 705 700 136 116 129 707 680 674 707 674 693 136 135 115 136 115 116 137 122 135 137 135 136 708 693 694 708 707 693 137 124 122 709 679 680 138 137 136 709 686 679 709 688 686 139 55 54 139 54 113 710 680 707 710 709 680 711 703 704 140 139 113 711 682 670 711 670 703 140 113 114 712 711 704 712 704 13 712 13 14 141 126 106 141 106 119 713 655 681 713 681 682 713 685 655 142 141 119 142 119 120 143 130 36 714 682 711 714 713 682 144 143 36 144 36 37 715 688 709 145 128 126 145 126 141 716 709 710 716 715 709 146 141 142 717 685 713 146 145 141 147 55 139 717 690 685 718 713 714 718 717 713 719 700 687 148 139 140 148 147 139 149 132 123 720 702 692 720 692 677 149 123 124 150 124 137 150 149 124 151 134 132 721 694 666 151 132 149 721 666 689 152 149 150 152 151 149 722 721 689 722 689 690 153 138 136 723 719 687 723 688 715 723 687 688 153 136 129 154 129 130 724 677 678 724 720 677 154 153 129 724 678 705 725 702 720 155 138 153 726 725 720 156 155 153 156 153 154 726 720 724 727 642 671 157 142 120 157 120 133 157 146 142 727 696 642 158 133 134 728 671 673 158 157 133 728 727 671 159 144 37 160 37 38 160 159 37 729 696 727 729 727 728 729 699 696 161 140 114 730 729 728 161 114 127 162 127 128 731 706 700 731 719 723 162 161 127 731 700 719 732 731 723 163 146 157 733 694 721 733 708 694 164 163 157 164 157 158 734 721 722 165 148 140 734 733 721 165 140 161 735 707 708 735 710 707 166 165 161 735 716 710 166 161 162 736 735 708 167 137 138 167 150 137 736 708 733 737 716 735 168 167 138 168 138 155 738 718 714 738 714 711 739 735 736 739 737 735 169 152 150 169 167 168 169 150 167 740 711 712 740 738 711 170 169 168 740 712 14 741 715 716 741 723 715 171 154 130 741 732 723 171 130 143 171 143 144 742 741 716 172 171 144 743 724 705 173 156 154 173 154 171 744 743 705 744 706 731 744 705 706 174 173 171 174 171 172 175 134 151 745 722 690 175 158 134 745 690 717 746 718 738 746 738 740 747 14 15 176 175 151 747 740 14 747 746 740 176 151 152 177 158 175 177 164 158 748 745 717 748 717 718 178 175 176 178 177 175 749 724 743 749 726 724 179 160 38 180 38 39 750 749 743 180 179 38 750 743 744 181 128 145 751 732 741 181 162 128 752 751 741 752 741 742 753 69 68 182 145 146 182 181 145 753 68 698 754 753 698 183 166 162 183 162 181 754 698 699 755 728 673 184 168 155 184 170 168 184 155 156 755 673 701 185 181 182 185 183 181 756 755 701 756 701 702 186 184 156 186 156 173 757 755 756 187 170 184 757 728 755 757 730 728 187 184 186 758 757 756 188 187 186 759 70 69 189 55 147 759 69 753 189 56 55 760 753 754 760 759 753 189 147 148 190 148 165 761 734 722 190 189 148 761 722 745 191 172 144 762 745 748 762 761 745 763 733 734 191 144 159 763 736 733 764 734 761 192 191 159 192 159 160 764 763 734 765 739 736 193 56 189 765 736 763 765 763 764 194 189 190 194 193 189 195 174 172 766 765 764 195 172 191 767 742 716 767 716 737 196 195 191 768 737 739 196 191 192 197 176 152 197 152 169 768 767 737 769 744 731 198 169 170 198 197 169 769 731 732 198 170 187 770 732 751 770 769 732 199 178 176 199 176 197 771 744 769 771 769 770 200 199 197 200 197 198 771 750 744 772 771 770 201 182 146 201 185 182 201 146 163 773 742 767 773 752 742 202 163 164 774 767 768 202 201 163 774 773 767 775 718 746 203 180 39 775 748 718 204 203 39 776 775 746 204 39 1 776 746 747 776 747 15 205 173 174 205 186 173 777 756 702 777 758 756 777 702 725 206 205 174 778 725 726 778 777 725 207 186 205 207 188 186 779 758 777 779 777 778 208 205 206 208 207 205 780 779 778 209 185 201 210 201 202 781 754 699 210 209 201 211 165 166 781 699 729 781 729 730 211 190 165 782 781 730 212 211 166 783 781 782 783 754 781 212 166 183 783 760 754 784 783 782 213 160 179 213 192 160 785 748 775 785 775 776 785 762 748 214 213 179 786 15 16 214 179 180 786 776 15 786 785 776 787 764 761 215 196 192 215 192 213 787 761 762 216 213 214 788 762 785 216 215 213 788 787 762 217 190 211 789 764 787 217 194 190 789 766 764 218 211 212 790 787 788 218 217 211 790 789 787 791 772 770 219 198 187 219 200 198 791 770 751 792 751 752 220 219 187 792 791 751 220 187 188 221 200 219 793 739 765 222 219 220 793 768 739 794 766 789 222 221 219 794 793 765 794 765 766 223 202 164 795 772 791 223 164 177 796 791 792 224 223 177 796 795 791 224 177 178 797 774 768 797 768 793 225 195 196 797 793 794 225 174 195 225 206 174 798 797 794 799 778 726 226 196 215 799 780 778 799 726 749 226 225 196 227 208 206 227 225 226 227 206 225 800 749 750 228 202 223 228 210 202 800 799 749 801 780 799 801 799 800 229 227 226 230 228 223 230 223 224 802 801 800 231 212 183 803 70 759 231 183 185 804 803 759 232 185 209 804 759 760 232 231 185 805 782 730 805 730 757 233 57 56 806 805 757 233 56 193 806 758 779 234 193 194 806 757 758 234 233 193 807 784 782 807 782 805 235 180 203 808 807 805 235 214 180 808 805 806 236 1 3 809 70 803 236 204 1 236 235 203 236 203 204 809 803 804 809 71 70 237 218 212 237 212 231 810 809 804 238 231 232 238 237 231 811 785 786 811 788 785 239 214 235 812 811 786 812 786 16 239 216 214 240 3 4 813 788 811 813 811 812 240 235 236 240 239 235 813 790 788 240 236 3 814 16 17 814 813 812 814 812 16 241 188 207 815 752 773 241 220 188 815 792 752 816 815 773 242 241 207 242 207 208 816 773 774 243 220 241 243 222 220 244 241 242 817 794 789 244 243 241 818 817 789 818 789 790 245 178 199 819 792 815 819 796 792 245 224 178 820 819 815 820 815 816 246 245 199 246 199 200 821 750 771 247 57 233 248 233 234 821 800 750 248 247 233 822 794 817 822 798 794 249 230 224 823 822 817 823 817 818 249 224 245 824 821 771 824 771 772 250 245 246 250 249 245 825 802 800 825 800 821 251 215 216 825 821 824 251 226 215 252 216 239 252 251 216 826 825 824 253 229 226 827 806 779 827 808 806 253 226 251 827 779 780 254 251 252 254 253 251 255 209 210 255 238 232 828 827 780 255 232 209 829 804 760 256 255 210 829 760 783 256 210 228 257 238 255 830 783 784 258 255 256 830 829 783 831 808 827 258 257 255 259 208 227 832 827 828 259 242 208 832 831 827 833 810 804 260 227 229 260 259 227 833 804 829 833 829 830 261 234 194 834 833 830 835 774 797 261 194 217 835 816 774 836 835 797 262 217 218 262 261 217 836 797 798 263 244 242 837 820 816 263 242 259 837 816 835 264 263 259 838 835 836 264 259 260 838 837 835 839 790 813 265 246 200 265 250 246 839 818 790 265 200 221 840 814 17 840 813 814 840 839 813 266 265 221 266 221 222 841 826 824 841 772 795 841 824 772 267 250 265 842 841 795 842 795 796 268 267 265 268 265 266 843 841 842 843 826 841 269 248 234 269 261 262 844 843 842 269 234 261 270 269 262 845 818 839 845 823 818 846 840 17 846 17 18 846 839 840 271 239 240 271 252 239 846 845 839 847 780 801 272 240 4 272 271 240 273 254 252 847 828 780 273 252 271 273 271 272 848 801 802 274 272 4 274 4 5 274 273 272 848 847 801 275 228 230 849 828 847 849 847 848 275 256 228 849 832 828 850 71 809 276 230 249 276 275 230 851 809 810 851 850 809 277 256 275 277 258 256 852 849 848 278 277 275 278 275 276 853 784 807 853 830 784 279 229 253 279 264 260 279 260 229 854 807 808 280 279 253 854 853 807 280 253 254 281 262 218 281 218 237 855 830 853 855 853 854 855 834 830 282 237 238 282 281 237 856 855 854 857 71 850 283 264 279 857 850 851 857 72 71 284 266 222 858 857 851 284 222 243 859 836 798 285 283 279 859 798 822 285 279 280 860 822 823 286 243 244 860 859 822 861 838 836 286 284 243 861 836 859 861 859 860 287 57 247 862 861 860 287 58 57 863 842 796 863 844 842 288 287 247 863 796 819 288 247 248 289 268 266 864 819 820 289 266 284 864 863 819 290 284 286 865 844 863 290 289 284 865 863 864 866 865 864 291 270 262 291 262 281 867 852 848 292 281 282 292 291 281 867 825 826 867 848 802 293 276 249 867 802 825 868 826 843 293 249 250 868 867 826 294 250 267 869 852 867 869 867 868 294 293 250 870 869 868 295 287 288 295 58 287 871 808 831 296 295 288 871 854 808 871 856 854 297 276 293 297 278 276 872 871 831 298 293 294 298 297 293 872 831 832 299 282 238 299 292 282 873 851 810 299 238 257 873 810 833 300 299 257 874 833 834 874 873 833 300 257 258 301 244 263 875 856 871 875 871 872 301 286 244 876 875 872 302 301 263 302 263 264 877 873 874 877 858 851 303 254 273 303 280 254 877 851 873 303 285 280 878 877 874 304 303 273 304 274 5 304 273 274 879 860 823 879 823 845 305 285 303 306 5 6 306 303 304 306 305 303 306 304 5 880 846 18 880 845 846 880 879 845 307 286 301 881 820 837 307 290 286 308 301 302 308 307 301 881 864 820 882 837 838 309 248 269 882 881 837 309 288 248 883 866 864 883 864 881 310 269 270 883 881 882 310 309 269 884 883 882 311 292 299 311 299 300 885 879 880 885 860 879 312 311 300 885 862 860 886 18 19 886 880 18 886 885 880 313 298 294 313 267 268 313 294 267 887 868 843 887 870 868 888 887 843 888 843 844 314 268 289 314 313 268 315 298 313 889 870 887 890 887 888 316 315 313 890 889 887 316 313 314 317 296 288 891 832 849 317 309 310 891 872 832 317 288 309 318 317 310 892 891 849 892 849 852 319 300 258 319 258 277 893 72 857 320 319 277 320 277 278 894 857 858 321 264 283 894 893 857 321 302 264 895 874 834 322 321 283 895 834 855 322 283 285 323 302 321 323 308 302 896 855 856 324 321 322 896 895 855 324 323 321 896 856 875 897 876 872 897 891 892 325 312 300 897 872 891 325 300 319 326 319 320 898 897 892 326 325 319 899 874 895 899 878 874 327 310 270 899 895 896 327 270 291 900 899 896 901 73 72 901 72 893 328 291 292 328 327 291 329 314 289 902 893 894 329 316 314 902 901 893 329 289 290 903 838 861 903 882 838 330 329 290 330 290 307 904 903 861 904 861 862 905 903 904 331 59 58 905 882 903 905 884 882 331 58 295 332 295 296 906 905 904 332 331 295 907 888 844 907 844 865 333 316 329 908 907 865 334 329 330 334 333 329 335 310 327 908 865 866 335 318 310 909 890 888 909 888 907 910 907 908 336 335 327 910 909 907 336 327 328 337 278 297 337 320 278 911 892 852 338 297 298 911 852 869 911 898 892 912 869 870 912 911 869 338 337 297 339 59 331 913 898 911 913 911 912 340 339 331 914 913 912 340 331 332 341 285 305 341 322 285 341 324 322 342 306 6 915 896 875 342 305 306 342 341 305 915 900 896 343 320 337 916 875 876 343 337 338 343 326 320 916 915 875 344 343 338 345 324 341 917 877 878 346 6 7 917 858 877 346 342 6 346 341 342 346 345 341 917 894 858 347 336 328 347 292 311 347 328 292 348 311 312 918 917 878 919 915 916 919 900 915 348 347 311 920 919 916 349 307 308 349 330 307 921 902 894 921 894 917 350 349 308 350 308 323 921 917 918 351 330 349 351 334 330 352 296 317 922 921 918 352 332 296 923 908 866 353 351 349 923 866 883 353 349 350 354 352 317 924 883 884 354 317 318 924 923 883 925 904 862 355 336 347 925 862 885 926 886 19 926 885 886 926 925 885 356 347 348 927 906 904 927 904 925 356 355 347 927 925 926 357 338 298 928 926 19 357 344 338 928 927 926 929 910 908 357 298 315 929 908 923 358 357 315 358 315 316 930 923 924 930 929 923 931 914 912 931 870 889 359 344 357 931 912 870 360 357 358 360 359 357 932 889 890 361 340 332 932 931 889 361 332 352 933 914 931 362 361 352 933 931 932 362 352 354 934 933 932 363 348 312 363 312 325 935 876 897 935 916 876 364 363 325 364 325 326 936 897 898 936 935 897 365 350 323 365 323 324 937 73 901 937 901 902 366 324 345 938 902 921 366 365 324 367 350 365 938 937 902 367 353 350 368 367 365 939 878 899 368 365 366 939 918 878 369 318 335 369 354 318 940 939 899 940 900 919 370 335 336 370 369 335 940 899 900 941 935 936 371 348 363 371 356 348 941 916 935 941 920 916 942 941 936 372 371 363 372 363 364 373 316 333 943 922 918 373 358 316 943 918 939 943 939 940 374 333 334 944 943 940 945 73 937 374 373 333 375 59 339 375 339 340 945 74 73 946 945 937 375 60 59 946 937 938 947 884 905 376 375 340 377 358 373 377 360 358 947 924 884 948 947 905 948 905 906 378 373 374 378 377 373 949 924 947 949 930 924 950 947 948 379 354 369 379 362 354 950 949 947 951 890 909 380 326 343 380 364 326 380 372 364 951 932 890 381 369 370 381 379 369 382 380 343 952 909 910 952 951 909 382 343 344 953 951 952 953 932 951 953 934 932 383 366 345 383 345 346 954 953 952 384 346 7 955 942 936 384 383 346 955 898 913 385 60 375 955 913 914 955 936 898 386 375 376 386 385 375 956 914 933 387 370 336 956 955 914 957 940 919 387 381 370 957 944 940 387 336 355 388 380 382 388 372 380 958 957 919 389 387 355 389 355 356 958 919 920 390 388 382 391 374 334 959 938 921 959 921 922 391 334 351 960 922 943 960 959 922 392 351 353 392 391 351 393 366 383 393 368 366 961 955 956 394 7 8 394 384 7 961 942 955 394 393 383 394 383 384 962 961 956 395 376 340 395 340 361 963 944 957 964 957 958 396 361 362 396 395 361 964 963 957 397 378 374 397 374 391 965 946 938 965 959 960 397 391 392 398 397 392 965 938 959 966 965 960 399 382 344 399 390 382 399 344 359 400 399 359 967 952 910 967 910 929 400 359 360 401 381 387 968 929 930 968 967 929 402 401 387 969 906 927 402 387 389 969 950 948 969 927 928 969 948 906 970 969 928 970 19 20 403 390 399 970 928 19 971 950 969 404 403 399 972 970 20 404 399 400 972 971 969 972 969 970 405 356 371 973 962 956 405 389 356 973 956 933 406 386 376 974 952 967 406 376 395 974 954 952 974 967 968 975 974 968 407 406 395 407 395 396 976 973 933 408 405 371 408 371 372 976 933 934 409 353 367 409 392 353 977 920 941 977 958 920 410 367 368 410 409 367 411 362 379 978 977 941 978 942 961 978 941 942 411 396 362 979 973 976 412 411 379 412 379 381 412 381 401 979 962 973 413 400 360 980 979 976 981 74 945 413 360 377 414 392 409 414 409 410 981 945 946 982 981 946 414 398 392 415 414 410 982 946 965 416 377 378 416 413 377 983 943 944 983 960 943 417 389 405 417 402 389 984 944 963 418 417 405 418 405 408 984 983 944 985 964 958 419 60 385 419 61 60 985 958 977 986 977 978 986 985 977 420 419 385 987 960 983 420 385 386 421 400 413 987 966 960 421 404 400 988 987 983 988 983 984 422 413 416 422 421 413 423 408 372 989 75 74 423 372 388 989 74 981 990 981 982 990 989 981 424 388 390 424 423 388 425 396 411 991 930 949 425 407 396 991 968 930 992 949 950 992 991 949 426 425 411 993 976 934 426 411 412 993 934 953 427 368 393 427 410 368 994 993 953 428 394 8 428 427 393 428 393 394 994 953 954 429 61 419 995 968 991 430 419 420 995 991 992 995 975 968 430 429 419 996 995 992 431 412 401 997 978 961 431 426 412 997 986 978 432 402 417 432 431 401 432 401 402 997 961 962 433 378 397 998 962 979 998 997 962 433 416 378 434 397 398 999 980 976 434 433 397 999 993 994 999 976 993 435 408 423 435 418 408 1000 999 994 1001 988 984 1001 984 963 436 435 423 436 423 424 437 415 410 1001 963 964 437 410 427 438 8 9 438 437 427 438 427 428 438 428 8 1002 964 985 1002 1001 964 1003 982 965 439 386 406 439 420 386 1003 965 966 1004 1003 966 440 406 407 1004 966 987 440 439 406 1005 997 998 441 424 390 1005 986 997 441 390 403 1006 1005 998 441 436 424 442 403 404 442 441 403 443 416 433 1007 988 1001 443 422 416 1008 1007 1001 444 443 433 444 433 434 1008 1001 1002 1009 1003 1004 445 426 431 1009 982 1003 446 431 432 1009 990 982 446 445 431 1010 1009 1004 1011 954 974 1011 994 954 447 432 417 448 447 417 1012 974 975 448 417 418 1012 1011 974 1013 992 950 1013 950 971 449 436 441 1014 971 972 450 441 442 1014 972 20 1014 1013 971 1014 20 21 450 449 441 451 420 439 451 430 420 1015 979 980 1015 998 979 1015 1006 998 452 451 439 452 439 440 1016 1015 980 453 434 398 1017 1013 1014 453 398 414 1017 992 1013 1017 996 992 1018 1014 21 1018 1017 1014 454 414 415 1019 1011 1012 454 453 414 1019 994 1011 1019 1000 994 1020 1019 1012 455 440 407 1021 1008 1002 455 407 425 456 62 61 1021 1002 985 1021 985 986 456 61 429 1022 986 1005 1022 1021 986 457 456 429 457 429 430 458 455 425 458 425 426 1023 989 990 1023 75 989 1024 990 1009 459 442 404 1024 1023 990 459 404 421 1025 1004 987 1025 987 988 460 421 422 460 459 421 461 444 434 1026 1025 988 461 434 453 1026 988 1007 462 453 454 462 461 453 1027 1015 1016 1027 1006 1015 463 432 447 463 446 432 464 463 447 464 447 448 1028 1027 1016 1029 1008 1021 465 62 456 1030 1029 1021 1030 1021 1022 1031 1004 1025 466 465 456 466 456 457 1031 1025 1026 467 448 418 1031 1010 1004 467 418 435 467 435 436 1032 1031 1026 467 464 448 468 467 436 468 436 449 1033 75 1023 1033 76 75 469 442 459 469 450 442 1034 1033 1023 1034 1023 1024 470 469 459 1035 1012 975 470 459 460 1035 975 995 471 440 455 1036 995 996 1036 1035 995 471 452 440 1037 980 999 472 471 455 1037 1016 980 472 455 458 1037 999 1000 473 415 437 473 454 415 1038 1037 1000 474 473 437 474 437 438 474 438 9 475 472 458 1039 1020 1012 1039 1012 1035 475 426 445 1039 1035 1036 1040 1039 1036 475 458 426 476 445 446 1041 1005 1006 476 475 445 1041 1022 1005 477 422 443 477 460 422 1042 1041 1006 478 443 444 1042 1006 1027 478 477 443 1043 1016 1037 479 457 430 1043 1028 1016 479 430 451 1044 1037 1038 1044 1043 1037 480 451 452 1045 1026 1007 1045 1032 1026 480 479 451 1045 1007 1008 1046 1045 1008 481 464 467 1046 1008 1029 1047 1009 1010 482 481 467 1047 1024 1009 482 467 468 483 454 473 483 462 454 1048 1010 1031 484 474 9 1048 1047 1010 484 9 10 484 473 474 484 483 473 1049 1022 1041 485 479 480 485 457 479 1049 1030 1022 1049 1041 1042 485 466 457 486 468 449 1050 76 1033 486 482 468 1051 1049 1042 487 485 480 1052 1050 1033 1052 1033 1034 488 449 450 1053 76 1050 488 486 449 1053 40 76 489 465 466 1054 1032 1045 489 63 62 489 62 465 1055 1050 1052 490 489 466 1055 1053 1050 1056 1054 1045 491 460 477 491 470 460 1056 1045 1046 492 477 478 492 491 477 1057 1024 1047 1057 1034 1024 493 472 475 1058 1057 1047 1058 1047 1048 494 493 475 494 475 476 1059 1038 1000 1059 1000 1019 495 63 489 1060 1019 1020 1060 1059 1019 496 489 490 496 495 489 1061 1017 1018 1061 996 1017 497 476 446 1061 1036 996 1062 21 22 1062 1018 21 1062 1061 1018 497 446 463 1063 1051 1042 1063 1042 1027 498 463 464 1063 1027 1028 498 497 463 499 478 444 1064 1063 1028 499 444 461 1064 1028 1043 1065 1040 1036 1065 1036 1061 500 499 461 500 461 462 1065 1061 1062 1066 1062 22 1066 1065 1062 501 482 486 1067 1038 1059 1067 1044 1038 1068 1067 1059 502 452 471 1068 1059 1060 502 480 452 1069 1046 1029 503 471 472 1069 1029 1030 1070 1030 1049 503 502 471 504 501 486 1070 1069 1030 504 486 488 505 488 450 505 450 469 505 504 488 1071 1031 1032 1071 1048 1031 1072 1032 1054 506 469 470 1072 1071 1032 506 505 469 1073 1051 1063 507 480 502 507 487 480 1074 1073 1063 1074 1063 1064 1075 1052 1034 1075 1034 1057 508 502 503 508 507 502 1076 1057 1058 1076 1075 1057 509 478 499 509 492 478 1077 41 40 510 499 500 510 509 499 1077 40 1053 1077 1053 1055 1078 1077 1055 1078 41 1077 511 490 466 511 466 485 1079 1046 1069 1079 1056 1046 1080 1069 1070 512 511 485 512 485 487 513 476 497 1080 1079 1069 1081 1052 1075 1081 1055 1052 1082 1075 1076 513 494 476 514 497 498 1082 1081 1075 1083 1048 1071 514 513 497 515 464 481 1083 1058 1048 1084 1071 1072 515 514 498 515 498 464 1084 1083 1071 1085 1060 1020 516 481 482 516 515 481 1085 1020 1039 517 511 512 1086 1039 1040 517 490 511 1086 1085 1039 517 496 490 1087 1043 1044 518 517 512 519 63 495 1087 1064 1043 519 64 63 1088 1044 1067 520 519 495 1088 1087 1044 520 495 496 1089 1070 1049 521 504 505 1089 1049 1051 522 521 505 522 505 506 1090 1089 1051 523 508 503 1090 1051 1073 523 503 472 1091 1060 1085 523 472 493 1091 1068 1060 524 523 493 1092 1085 1086 524 493 494 1092 1091 1085 1093 1084 1072 1093 1072 1054 525 500 462 525 510 500 1093 1054 1056 525 462 483 526 484 10 526 483 484 1094 1093 1056 526 525 483 1094 1056 1079 1095 1074 1064 1095 1064 1087 527 64 519 527 519 520 1096 1087 1088 528 527 520 1096 1095 1087 529 506 470 1097 1076 1058 529 470 491 1097 1058 1083 1098 1083 1084 530 491 492 530 529 491 1098 1097 1083 1099 1070 1089 1099 1080 1070 531 508 523 1099 1089 1090 532 531 523 532 523 524 1100 1099 1090 1101 1078 1055 1101 41 1078 533 514 515 1101 1055 1081 1101 1081 1082 1101 42 41 534 533 515 1102 1101 1082 1102 42 1101 1103 1082 1076 534 515 516 1103 1076 1097 535 512 487 1104 1097 1098 1104 1103 1097 535 487 507 1105 1098 1084 1105 1084 1093 1105 1093 1094 536 507 508 536 535 507 536 508 531 1106 1105 1094 1107 1088 1067 537 510 525 538 525 526 538 10 11 1107 1067 1068 1108 1107 1068 538 537 525 538 526 10 539 534 516 1108 1068 1091 539 482 501 539 516 482 1109 1086 1040 540 501 504 540 539 501 1109 1040 1065 1110 1066 22 1110 1109 1065 1110 22 23 1110 1065 1066 1111 1073 1074 541 518 512 541 512 535 1111 1090 1073 1111 1100 1090 542 535 536 542 541 535 1112 1074 1095 1112 1111 1074 543 506 529 543 522 506 1113 1094 1079 1113 1079 1080 544 543 529 544 529 530 1114 1080 1099 1114 1113 1080 545 496 517 545 517 518 545 520 496 1115 1092 1086 1115 1086 1109 1116 1110 23 546 545 518 1116 1115 1109 1116 1109 1110 1117 1096 1088 1117 1088 1107 1118 1107 1108 547 494 513 1118 1117 1107 547 524 494 1119 1100 1111 548 547 513 548 513 514 1120 1111 1112 549 545 546 1120 1119 1111 549 520 545 549 528 520 550 549 546 1121 1104 1098 1121 1105 1106 1121 1098 1105 551 64 527 551 65 64 1122 1121 1106 551 527 528 552 528 549 1123 1103 1104 1123 1082 1103 1123 43 42 552 551 528 1123 1102 1082 1123 42 1102 553 530 492 1124 1123 1104 553 492 509 1124 43 1123 1125 1104 1121 553 544 530 1125 1124 1104 1126 1106 1094 554 509 510 1126 1094 1113 554 553 509 555 532 524 555 524 547 1127 1121 1122 1127 1125 1121 556 555 547 1128 1113 1114 556 547 548 1128 1126 1113 1129 1108 1091 557 534 539 1129 1091 1092 1130 1092 1115 1130 1129 1092 558 557 539 558 539 540 559 65 551 1131 1112 1095 560 551 552 1131 1095 1096 560 559 551 1132 1096 1117 1132 1131 1096 561 536 531 561 542 536 1133 1114 1099 1133 1128 1114 562 561 531 1133 1099 1100 562 531 532 563 504 521 563 540 504 1134 1100 1119 1134 1133 1100 1135 1118 1108 1135 1108 1129 564 563 521 564 521 522 1136 1129 1130 1136 1135 1129 565 542 561 1137 1112 1131 1137 1120 1112 566 561 562 566 565 561 1138 1131 1132 1138 1137 1131 567 514 533 567 548 514 1139 1122 1106 568 533 534 1139 1106 1126 1140 1139 1126 568 567 533 1140 1126 1128 1141 1128 1133 569 544 553 570 569 553 1141 1133 1134 1142 1141 1134 570 553 554 571 518 541 571 546 518 1143 44 43 1143 43 1124 1143 1124 1125 1143 1125 1127 572 541 542 572 571 541 1144 1122 1139 1144 1127 1122 572 542 565 1145 1127 1144 1145 1143 1127 573 546 571 1145 44 1143 573 550 546 1146 1144 1139 1146 1139 1140 574 573 571 574 571 572 1147 1132 1117 1147 1117 1118 575 548 567 575 567 568 1148 1147 1118 575 556 548 576 575 568 1148 1118 1135 1149 1130 1115 1149 1115 1116 577 549 550 1150 1116 23 1150 23 24 1150 1149 1116 1151 1142 1134 577 552 549 1151 1119 1120 1151 1134 1119 578 550 573 578 577 550 1152 1151 1120 579 540 563 1152 1120 1137 579 558 540 1153 1130 1149 1153 1136 1130 580 579 563 1154 1150 24 1154 1149 1150 580 563 564 1154 1153 1149 1155 1138 1132 1155 1132 1147 581 554 510 581 510 537 582 538 11 582 537 538 582 581 537 1156 1155 1147 583 566 562 1156 1147 1148 1157 1128 1141 583 532 555 583 562 532 1157 1140 1128 1158 1157 1141 584 583 555 1158 1141 1142 584 555 556 1159 1142 1151 1159 1158 1142 585 560 552 585 552 577 1160 1151 1152 586 585 577 586 577 578 1160 1159 1151 1161 1146 1140 1161 1140 1157 1161 1157 1158 587 522 543 587 564 522 1162 1161 1158 588 543 544 1163 44 1145 588 587 543 1163 45 44 1163 1145 1144 1163 1144 1146 589 65 559 589 66 65 1164 45 1163 1164 1146 1161 1164 1163 1146 589 559 560 1165 1148 1135 590 589 560 1165 1135 1136 591 566 583 1166 1136 1153 1166 1165 1136 592 568 534 1167 1152 1137 592 576 568 1167 1137 1138 1167 1160 1152 592 534 557 1168 1167 1138 593 583 584 1168 1138 1155 593 591 583 1169 1162 1158 1169 1158 1159 1169 1159 1160 594 557 558 594 592 557 +61 59 1 0.198033841550693 +-28.7228132326901 4 20.01 -28.9998275856944 0.0999999999999988 16.0112501972302 -28.7300601391445 3.94761249005124 19.3647439384821 -28.7453144129364 3.83495754420221 18.8728551270137 -28.7638455842484 3.69339779203401 18.4741576409476 -28.7908963403898 3.47624624266801 18.0311844411722 -28.822860019682 3.2004278556831 17.6105725279216 -28.8554962094966 2.89142518254218 17.2460063907782 -28.8882349760108 2.54359612146044 16.922910810083 -28.9205099253384 2.14571719190762 16.634219388096 -28.9515244032175 1.67607666577974 16.3780906814075 -28.9796072993252 1.08736414395357 16.1606313138942 -28.9926634414407 0.652277970577913 16.0635416550173 -28.9998275856942 0.100000000042549 0 -28.9998275856944 0.10000000000072 24.008749715034 -28.9906802722871 0.735158149726775 23.9418624779544 -28.9744328431949 1.21746826008004 23.8202181150504 -28.9552333764669 1.61073240893077 23.6713576804914 -28.9275169119935 2.04908872718466 23.44529251961 -28.8949222657312 2.46646811824585 23.1590526293253 -28.8617219704047 2.82860480997397 22.8382493039033 -28.8285038035066 3.1491853503087 22.4762993605254 -28.7958908439501 3.43462799993549 22.0602049024922 -28.7647930603157 3.68601141984733 21.5634864688433 -28.7374705178902 3.89330042866718 20.9277210150651 -28.7272830192037 3.9677714551253 20.5167441581605 28.9998275856943 0.100000000023505 0 28.4898747439106 5.41544431014547 0 27.0139762520436 10.547278656318 0 24.6221722643939 15.3215088350499 0 21.3955565968692 19.5762651675483 0 17.4435272512703 23.1672906709911 0 12.9000772896831 25.972832073538 0 7.91925181641982 27.8977678438281 0 2.66992509796874 28.8768332746379 0 -2.6699250979498 28.8768332746397 0 -7.91925181640153 27.8977678438333 0 -12.9000772896661 25.9728320735464 0 -17.4435272512551 23.1672906710025 0 -21.3955565968564 19.5762651675624 0 -24.6221722643839 15.321508835066 0 -27.0139762520367 10.5472786563357 0 -28.489874743907 5.41544431016417 0 -28.9998275856942 0.100000000042549 50 28.9998275856943 0.100000000023505 50 28.4898747439106 5.41544431014547 50 27.0139762520436 10.547278656318 50 24.6221722643939 15.3215088350499 50 21.3955565968692 19.5762651675483 50 17.4435272512703 23.1672906709911 50 12.9000772896831 25.972832073538 50 7.91925181641982 27.8977678438281 50 2.66992509796874 28.8768332746379 50 -2.6699250979498 28.8768332746397 50 -7.91925181640153 27.8977678438333 50 -12.9000772896661 25.9728320735464 50 -17.4435272512551 23.1672906710025 50 -21.3955565968564 19.5762651675624 50 -24.6221722643839 15.321508835066 50 -27.0139762520367 10.5472786563357 50 -28.489874743907 5.41544431016417 50 3.00322047620469 20.01 3.13814437089401 16.0112501972302 3.00504414462287 19.3647439384821 3.00896425137165 18.8728551270137 3.01388727463282 18.4741576409476 3.02143315223286 18.0311844411722 3.0310078196738 17.6105725279216 3.04172240098573 17.2460063907782 3.05376959112372 16.922910810083 3.0675347280435 16.634219388096 3.08376468169025 16.3780906814075 3.10408854693357 16.1606313138942 3.11909841283338 16.0635416550173 3.13814437089401 0 3.13814437089398 24.0087497150345 3.11623965661463 23.9418624779544 3.09959864762677 23.8202181150504 3.08602155918243 23.6713576804914 3.07087549457302 23.44529251961 3.05643915640793 23.1590526293253 3.043899233104 22.8382493039033 3.03278548768904 22.4762993605254 3.02287856135789 22.0602049024922 3.01414406402308 21.5634864688433 3.00693432659712 20.9277210150651 3.00434244269598 20.5167441581605 0.00344828269659791 0 0.187842170237536 0 0.372236057778473 0 0.556629945319411 0 0.741023832860349 0 0.925417720401287 0 1.10981160794222 0 1.29420549548316 0 1.4785993830241 0 1.66299327056504 0 1.84738715810598 0 2.03178104564691 0 2.21617493318785 0 2.40056882072879 0 2.58496270826973 0 2.76935659581066 0 2.9537504833516 0 3.13814437089401 50 0.00344828269578738 50 0.187842170237536 50 0.372236057778473 50 0.556629945319411 50 0.741023832860349 50 0.925417720401287 50 1.10981160794222 50 1.29420549548316 50 1.4785993830241 50 1.66299327056504 50 1.84738715810598 50 2.03178104564691 50 2.21617493318785 50 2.40056882072879 50 2.58496270826973 50 2.76935659581066 50 2.9537504833516 50 8 7 43 46 27 28 46 45 27 9 43 14 9 8 43 47 28 29 47 46 28 10 9 14 48 29 30 48 47 29 49 30 31 11 10 14 49 31 32 49 48 30 50 32 33 50 49 32 12 11 14 51 33 34 51 50 33 13 12 14 52 34 35 52 51 34 61 60 1 61 21 20 61 22 21 61 23 22 53 52 35 61 24 23 61 25 24 61 26 25 61 1 26 54 53 35 2 13 14 54 35 36 55 54 36 55 36 37 56 55 37 56 37 38 56 38 39 44 16 15 44 17 16 44 18 17 44 19 18 44 20 19 57 56 39 44 61 20 58 57 39 58 39 40 59 58 40 59 40 41 60 59 41 60 41 42 4 3 43 1 60 42 1 43 3 1 42 43 5 4 43 6 5 43 7 6 43 +36 34 1 5.66269253710061e-012 +28.9998275856943 0.100000000023505 0 -28.9998275856942 0.100000000042549 0 28.4898747439106 5.41544431014547 0 27.0139762520436 10.547278656318 0 24.6221722643939 15.3215088350499 0 21.3955565968692 19.5762651675483 0 17.4435272512703 23.1672906709911 0 12.9000772896831 25.972832073538 0 7.91925181641982 27.8977678438281 0 2.66992509796874 28.8768332746379 0 -2.6699250979498 28.8768332746397 0 -7.91925181640153 27.8977678438333 0 -12.9000772896661 25.9728320735464 0 -17.4435272512551 23.1672906710025 0 -21.3955565968564 19.5762651675624 0 -24.6221722643839 15.321508835066 0 -27.0139762520367 10.5472786563357 0 -28.489874743907 5.41544431016417 0 26.9998148141797 0.100000000023328 0 -26.9998148141796 0.10000000004192 0 26.5239187695242 5.04794345329698 0 25.1490248255984 9.82479263503474 0 22.9217334405795 14.2686417040663 0 19.9175361092797 18.2288714772895 0 16.2382566652472 21.5712544946638 0 12.008600078353 24.1825045054928 0 7.37192572242454 25.9741161763602 0 2.48538837318721 26.8853648782089 0 -2.48538837316867 26.8853648782106 0 -7.37192572240663 25.9741161763653 0 -12.0086000783363 24.1825045055011 0 -16.2382566652323 21.571254494675 0 -19.9175361092671 18.2288714773033 0 -22.9217334405696 14.2686417040821 0 -25.1490248255917 9.82479263505209 0 -26.5239187695207 5.04794345331528 0 28.9998275856943 0.100000000023505 -28.9998275856942 0.100000000042514 28.4898747439106 5.41544431014547 27.0139762520436 10.547278656318 24.6221722643939 15.3215088350499 21.3955565968692 19.5762651675483 17.4435272512703 23.1672906709911 12.9000772896831 25.972832073538 7.91925181641982 27.8977678438281 2.66992509796874 28.8768332746379 -2.6699250979498 28.8768332746397 -7.91925181640153 27.8977678438333 -12.9000772896661 25.9728320735464 -17.4435272512551 23.1672906710025 -21.3955565968564 19.5762651675624 -24.6221722643839 15.321508835066 -27.0139762520367 10.5472786563357 -28.489874743907 5.41544431016417 26.9998148141797 0.1 -26.9998148141796 0.1 26.5239187695242 5.04794345329698 25.1490248255984 9.82479263503474 22.9217334405795 14.2686417040663 19.9175361092797 18.2288714772895 16.2382566652472 21.5712544946638 12.008600078353 24.1825045054928 7.37192572242454 25.9741161763602 2.48538837318721 26.8853648782089 -2.48538837316867 26.8853648782106 -7.37192572240663 25.9741161763653 -12.0086000783363 24.1825045055011 -16.2382566652323 21.571254494675 -19.9175361092671 18.2288714773033 -22.9217334405696 14.2686417040821 -25.1490248255917 9.82479263505209 -26.5239187695207 5.04794345331528 18 2 20 36 18 20 17 18 36 35 17 36 16 17 35 34 16 35 15 16 34 33 15 34 14 33 32 14 15 33 13 32 31 13 14 32 12 31 30 12 13 31 11 30 29 11 12 30 10 29 28 10 11 29 27 10 28 3 19 1 3 21 19 9 10 27 26 9 27 4 22 21 4 21 3 8 26 25 8 9 26 5 23 22 5 22 4 7 25 24 7 8 25 6 7 24 6 24 23 6 23 5 +198 340 1 0.114329749391069 +26.9998148141797 0.100000000023328 0 -26.9998148141796 0.10000000004192 0 26.5239187695242 5.04794345329698 0 25.1490248255984 9.82479263503474 0 22.9217334405795 14.2686417040663 0 19.9175361092797 18.2288714772895 0 16.2382566652472 21.5712544946638 0 12.008600078353 24.1825045054928 0 7.37192572242454 25.9741161763602 0 2.48538837318721 26.8853648782089 0 -2.48538837316867 26.8853648782106 0 -7.37192572240663 25.9741161763653 0 -12.0086000783363 24.1825045055011 0 -16.2382566652323 21.571254494675 0 -19.9175361092671 18.2288714773033 0 -22.9217334405696 14.2686417040821 0 -25.1490248255917 9.82479263505209 0 -26.5239187695207 5.04794345331528 0 24.9997999991999 0.100000000023124 2 26.6559220031145 0.0999999999957709 0.0297869524161882 26.3216965329792 0.100000000001289 0.118468186114654 26.0345297017037 0.099999999999644 0.248361357460595 25.7915952961881 0.1 0.406191183482832 25.5679913655563 0.1 0.603607775524438 25.369467360565 0.1 0.841550100241889 25.2035003391162 0.100000000002338 1.12062425972005 25.0800250986042 0.100000000001525 1.43923102847863 25.0203882693091 0.0999999999960752 1.71376829461067 -24.9997999991998 0.10000000004119 2 -26.6559220024234 0.0999999999924017 0.0297869524893883 -26.3216965340851 0.100000000002316 0.118468185748497 -26.0345297037837 0.0999999999993571 0.248361356299782 -25.7915952991261 0.1 0.406191181255636 -25.5679913691013 0.0999999999999986 0.603607771889543 -25.3694673643982 0.0999999999999998 0.841550094847335 -25.2035003418456 0.100000000004166 1.12062425421273 -25.0800250998888 0.100000000002717 1.43923102423892 -25.020388269587 0.0999999999930085 1.71376829240971 24.5579612310182 4.68044230557387 2 23.2840722840047 9.10230618432727 2 21.221293887839 13.2157741251115 2 18.4395151964812 16.8814774033181 2 15.0329858683553 19.9752180434115 2 11.117122786402 22.3921767801181 2 6.82459960976474 24.0504644480392 2 2.30085164730983 24.8938964747802 2 -2.30085164729178 24.8938964747818 2 -6.82459960974731 24.0504644480442 2 -11.1171227863858 22.3921767801262 2 -15.0329858683408 19.9752180434224 2 -18.439515196469 16.8814774033315 2 -21.2212938878295 13.2157741251269 2 -23.2840722839981 9.10230618434415 2 -24.5579612310148 4.68044230559167 2 26.1860920967001 4.98364941152097 0.0297869619453053 25.8577621360351 4.92116275222066 0.118468178984728 25.5756609400982 4.86747419671079 0.248361356797716 24.8287097373407 9.69965739254208 0.0297869619453053 25.3370118704406 4.82205530445429 0.406191179243763 24.517399089638 9.57803985150551 0.118468178984728 25.1173522958086 4.78025042933938 0.603607791505667 24.2499208922572 9.47354602552683 0.248361356797716 24.9223304246316 4.74313451949168 0.841550049688422 22.6297866505566 14.0869065768218 0.0297869619453053 24.0236424365895 9.38514741285188 0.406191179243763 24.7592910113138 4.71210540398885 1.12062426711313 22.3460468342679 13.910280241545 0.118468178984728 23.8153691364183 9.30378274762979 0.603607791505667 24.6379939248222 4.68902054842963 1.43923103821851 22.1022575031091 13.7585228438509 0.248361356797716 23.6304564196218 9.23154419720069 0.841550049688422 19.6638528201278 17.9966961696353 0.0297869619453053 24.5794091402928 4.67787088830219 1.71376827837422 21.8960191109595 13.6301406806592 0.406191179243763 23.4758683178895 9.17115235084101 1.12062426711313 19.4173008718984 17.7710475877981 0.118468178984728 21.7061912706189 13.5119739876254 0.603607791505667 23.3608587875876 9.12622238659369 1.43923103821851 19.2054633675927 17.5771702618642 0.248361356797716 21.5376551133096 13.4070612396842 0.841550049688422 16.0314351819909 21.2965083231838 0.0297869619453053 23.3053108041492 9.10452184661803 1.71376827837422 19.0262552534504 17.4131559147852 0.406191179243763 21.3967579101152 13.3193535750481 1.12062426711313 15.8304276981987 21.0294855954613 0.118468178984728 18.8613068705398 17.2621923188883 0.603607791505667 21.2919340525308 13.2541013518779 1.43923103821851 15.6577220107397 20.800059591571 0.248361356797716 18.7148596130656 17.1281612710693 0.841550049688422 11.8556503786877 23.8744996775249 0.0297869619453053 21.2413056055684 13.2225854470441 1.71376827837422 15.5116182287272 20.6059721393649 0.406191179243763 18.5924288580097 17.0161105391647 1.12062426711313 11.7070002781642 23.5751532339596 0.118468178984728 15.3771400400836 20.4273283790763 0.603607791505667 18.50134355794 16.9327477065668 1.43923103821851 11.5792800693569 23.3179546841892 0.248361356797716 15.257745344789 20.2687218604944 0.841550049688422 7.27803186153795 25.6432921633758 0.0297869619453053 18.4573506407751 16.892484632434 1.71376827837422 11.4712326401104 23.1003724991293 0.406191179243763 15.1579306883269 20.1361258927605 1.12062426711313 7.1867774694739 25.3217680094 0.118468178984728 11.3717826301757 22.9001035004428 0.603607791505667 15.083671177871 20.0374779386288 1.43923103821851 7.10837166976064 25.0455143645135 0.248361356797716 11.2834872437418 22.7222972976948 0.841550049688422 2.45373277613591 26.5429345818643 0.0297869619453053 15.0478048801293 19.9898323660579 1.71376827837422 7.04204273735333 24.8118121459791 0.406191179243763 11.2096717895265 22.5736502828479 1.12062426711313 2.42296705581016 26.2101304110466 0.118468178984728 6.98099165050308 24.5967057976178 0.603607791505667 11.154755009883 22.4630607667936 1.43923103821851 2.39653314012311 25.9241849724692 0.248361356797716 6.92678824409631 24.4057264486424 0.841550049688422 -2.45327015035721 26.5429773447362 0.0297869619453053 11.1282309787169 22.409647587989 1.71376827837422 2.37417084787842 25.6822837899426 0.406191179243763 6.88147388254775 24.2460666072878 1.12062426711313 -2.42251023058785 26.2101726377433 0.118468178984728 2.35358794089571 25.4596308756319 0.603607791505667 6.84776117517098 24.1272838345097 1.43923103821851 -2.3960812987405 25.9242267384841 0.248361356797716 2.33531367700009 25.261951407097 0.841550049688422 -7.27669101588508 25.6436726818362 0.0297869619453053 6.83147841228939 24.0699134280944 1.71376827837422 -2.37372322267328 25.6823251662346 0.406191179243763 2.32003628659061 25.0966902270026 1.12062426711313 -7.18545343579125 25.3221437567929 0.118468178984728 -2.35314419638348 25.4596718932115 0.603607791505667 2.30867030514996 24.9737402037678 1.43923103821851 -7.10706208092761 25.0458860126039 0.248361356797716 -2.33487337791014 25.2619921061986 0.841550049688422 -11.8535697517909 23.875532766689 0.0297869619453053 2.30318069618304 24.9143570740701 1.71376827837422 -7.04074536842567 24.8121803261837 0.406191179243763 -2.31959886789362 25.0967306598547 1.12062426711313 -11.7049457388617 23.5761733699071 0.118468178984728 -6.97970552913327 24.5970707858791 0.603607791505667 -2.30823502939048 24.9737804385373 1.43923103821851 -11.5772479445229 23.3189636907293 0.248361356797716 -6.92551210872317 24.4060886029786 0.841550049688422 -16.02883677657 21.2984640841515 0.0297869619453053 -2.30274645543221 24.9143972131684 1.71376827837422 -11.4692194772381 23.1013720905276 0.406191179243763 -6.88020609552562 24.2464263924463 1.12062426711313 -15.8278618724521 21.0314168344453 0.118468178984728 -11.3697869204467 22.9010944258697 0.603607791505667 -6.84649959910505 24.1276418570615 1.43923103821851 -15.6551841774585 20.8019697612597 0.248361356797716 -11.2815070295571 22.7232805291526 0.841550049688422 -19.6610295460821 17.9997804970477 0.0297869619453053 -6.83021983602783 24.070270599332 1.71376827837422 -15.509104076224 20.6078644850677 0.406191179243763 -11.2077045297065 22.5746270821031 1.12062426711313 -19.4145129970048 17.7740932428843 0.118468178984728 -15.3746476840604 20.4292043190619 0.603607791505667 -11.1527973877738 22.4640327806571 1.43923103821851 -19.2027059076606 17.5801826896766 0.248361356797716 -15.2552723404844 20.2705832348792 0.841550049688422 -22.6270854569215 14.0912449584479 0.0297869619453053 -11.1262780114863 22.4106172905758 1.71376827837422 -19.0235235236548 17.41614023333 0.406191179243763 -15.1554738621712 20.1379750902187 1.12062426711313 -22.3433795091 13.9145642270946 0.118468178984728 -18.8585988235135 17.2651507648423 0.603607791505667 -15.0812263878376 20.0393180767701 1.43923103821851 -22.0996192777378 13.7627600922761 0.248361356797716 -18.7121725924752 17.131096746383 0.841550049688422 -24.8265113399761 9.70528286243372 0.0297869619453053 -15.0453659033734 19.9916681286767 1.71376827837422 -21.8934055031351 13.6343383908923 0.406191179243763 -18.5897594156415 17.01902681089 1.12062426711313 -24.5152282565132 9.5835947873785 0.118468178984728 -21.7036003215037 13.5161353057516 0.603607791505667 -18.4986871933122 16.9356496913215 1.43923103821851 -24.247773742335 9.47904035855086 0.248361356797716 -21.5350842814319 13.4111902475558 0.841550049688422 -26.1847882772418 4.99049532910671 0.0297869619453053 -18.4547005925117 16.895379716783 1.71376827837422 -24.0215153219397 9.39059047770076 0.406191179243763 -21.3942038963647 13.3234555713598 1.12062426711313 -25.8564746643001 4.92792283340731 0.118468178984728 -23.8132604628183 9.30917862375273 0.603607791505667 -21.2893925510297 13.2581832522911 1.43923103821851 -25.5743875143319 4.87416052723884 0.248361356797716 -23.6283641186659 9.23689817743246 0.841550049688422 -21.2387701473077 13.2266576414213 1.71376827837422 -25.3357503271385 4.82867924415836 0.406191179243763 -23.4737897045589 9.17647130586523 1.12062426711313 -25.1161016894735 4.78681694270663 0.603607791505667 -23.3587903574945 9.13151528377371 1.43923103821851 -24.9210895285393 4.74965004763928 0.841550049688422 -23.3032472924164 9.10980215822628 1.71376827837422 -24.7580582330406 4.71857830819765 1.12062426711313 -24.6367671859955 4.69546174153566 1.43923103821851 -24.5781853184338 4.68429676539218 1.71376827837422 0.00370371217216389 1.5707963267949 3.13788894141694 1.5707963267949 0.188067549186563 1.5707963267949 0.372431386200961 1.5707963267949 0.55679522321536 1.5707963267949 0.741159060229758 1.5707963267949 0.925522897244157 1.5707963267949 1.10988673425856 1.5707963267949 1.29425057127295 1.5707963267949 1.47861440828735 1.5707963267949 1.66297824530175 1.5707963267949 1.84734208231615 1.5707963267949 2.03170591933055 1.5707963267949 2.21606975634495 1.5707963267949 2.40043359335935 1.5707963267949 2.58479743037374 1.5707963267949 2.76916126738814 1.5707963267949 2.95352510440254 1.5707963267949 0.00400001066766845 3.14159265358979 0.00375149397807234 1.74360024921719 0.00379912893380518 1.91671043737173 0.00384103378707922 2.07446185775363 0.00387721262522254 2.21943915134762 0.00391112030231608 2.36871800214787 0.00394172572238384 2.52381504279689 0.00396768202533888 2.68634154201778 0.00398721571043916 2.85739802226288 0.0039967192531413 2.99798368181589 3.1375926429214 3.14159265358979 3.13784115961175 1.74360024956545 3.13779352465611 1.91671043678712 3.13775161980303 2.07446185656416 3.13771544096501 2.21943914950423 3.13768153328802 2.3687179996092 3.137650927868 2.52381503948801 3.13762497156481 2.68634153894849 3.13760543787951 2.85739802004835 3.13759593433682 2.99798368070757 0.188328989035535 3.14159265358979 0.372657967403402 3.14159265358979 0.556986945771268 3.14159265358979 0.741315924139135 3.14159265358979 0.925644902507001 3.14159265358979 1.10997388087487 3.14159265358979 1.29430285924273 3.14159265358979 1.4786318376106 3.14159265358979 1.66296081597847 3.14159265358979 1.84728979434633 3.14159265358979 2.0316187727142 3.14159265358979 2.21594775108207 3.14159265358979 2.40027672944993 3.14159265358979 2.5846057078178 3.14159265358979 2.76893468618567 3.14159265358979 2.95326366455353 3.14159265358979 0.188067549186563 1.74360024921719 0.188067549186563 1.91671043678712 0.188067549186563 2.07446185656416 0.372431386200961 1.74360024921719 0.188067549186563 2.21943914950423 0.372431386200961 1.91671043678712 0.188067549186563 2.3687179996092 0.372431386200961 2.07446185656416 0.188067549186563 2.52381503948801 0.55679522321536 1.74360024921719 0.372431386200961 2.21943914950423 0.188067549186563 2.68634153894849 0.55679522321536 1.91671043678712 0.372431386200961 2.3687179996092 0.188067549186563 2.85739802004835 0.55679522321536 2.07446185656416 0.372431386200961 2.52381503948801 0.741159060229758 1.74360024921719 0.188067549186563 2.99798368070757 0.55679522321536 2.21943914950423 0.372431386200961 2.68634153894849 0.741159060229758 1.91671043678712 0.55679522321536 2.3687179996092 0.372431386200961 2.85739802004835 0.741159060229758 2.07446185656416 0.55679522321536 2.52381503948801 0.925522897244157 1.74360024921719 0.372431386200961 2.99798368070757 0.741159060229758 2.21943914950423 0.55679522321536 2.68634153894849 0.925522897244157 1.91671043678712 0.741159060229758 2.3687179996092 0.55679522321536 2.85739802004835 0.925522897244157 2.07446185656416 0.741159060229758 2.52381503948801 1.10988673425856 1.74360024921719 0.55679522321536 2.99798368070757 0.925522897244157 2.21943914950423 0.741159060229758 2.68634153894849 1.10988673425856 1.91671043678712 0.925522897244157 2.3687179996092 0.741159060229758 2.85739802004835 1.10988673425856 2.07446185656416 0.925522897244157 2.52381503948801 1.29425057127295 1.74360024921719 0.741159060229758 2.99798368070757 1.10988673425856 2.21943914950423 0.925522897244157 2.68634153894849 1.29425057127295 1.91671043678712 1.10988673425856 2.3687179996092 0.925522897244157 2.85739802004835 1.29425057127295 2.07446185656416 1.10988673425856 2.52381503948801 1.47861440828735 1.74360024921719 0.925522897244157 2.99798368070757 1.29425057127295 2.21943914950423 1.10988673425856 2.68634153894849 1.47861440828735 1.91671043678712 1.29425057127295 2.3687179996092 1.10988673425856 2.85739802004835 1.47861440828735 2.07446185656416 1.29425057127295 2.52381503948801 1.66296081597847 1.74360024921719 1.10988673425856 2.99798368070757 1.47861440828735 2.21943914950423 1.29425057127295 2.68634153894849 1.66296081597847 1.91671043678712 1.47861440828735 2.3687179996092 1.29425057127295 2.85739802004835 1.66296081597847 2.07446185656416 1.47861440828735 2.52381503948801 1.84728979434633 1.74360024921719 1.29425057127295 2.99798368070757 1.66296081597847 2.21943914950423 1.47861440828735 2.68634153894849 1.84728979434633 1.91671043678712 1.66296081597847 2.3687179996092 1.47861440828735 2.85739802004835 1.84728979434633 2.07446185656416 1.66296081597847 2.52381503948801 2.0316187727142 1.74360024921719 1.47861440828735 2.99798368070757 1.84728979434633 2.21943914950423 1.66296081597847 2.68634153894849 2.0316187727142 1.91671043678712 1.84728979434633 2.3687179996092 1.66296081597847 2.85739802004835 2.0316187727142 2.07446185656416 1.84728979434633 2.52381503948801 2.21594775108207 1.74360024921719 1.66296081597847 2.99798368070757 2.0316187727142 2.21943914950423 1.84728979434633 2.68634153894849 2.21594775108207 1.91671043678712 2.0316187727142 2.3687179996092 1.84728979434633 2.85739802004835 2.21594775108207 2.07446185656416 2.0316187727142 2.52381503948801 2.40027672944993 1.74360024921719 1.84728979434633 2.99798368070757 2.21594775108207 2.21943914950423 2.0316187727142 2.68634153894849 2.40027672944993 1.91671043678712 2.21594775108207 2.3687179996092 2.0316187727142 2.85739802004835 2.40027672944993 2.07446185656416 2.21594775108207 2.52381503948801 2.5846057078178 1.74360024921719 2.0316187727142 2.99798368070757 2.40027672944993 2.21943914950423 2.21594775108207 2.68634153894849 2.5846057078178 1.91671043678712 2.40027672944993 2.3687179996092 2.21594775108207 2.85739802004835 2.5846057078178 2.07446185656416 2.40027672944993 2.52381503948801 2.76893468618567 1.74360024921719 2.21594775108207 2.99798368070757 2.5846057078178 2.21943914950423 2.40027672944993 2.68634153894849 2.76893468618567 1.91671043678712 2.5846057078178 2.3687179996092 2.40027672944993 2.85739802004835 2.76893468618567 2.07446185656416 2.5846057078178 2.52381503948801 2.95326366455353 1.74360024921719 2.40027672944993 2.99798368070757 2.76893468618567 2.21943914950423 2.5846057078178 2.68634153894849 2.95326366455353 1.91671043678712 2.76893468618567 2.3687179996092 2.5846057078178 2.85739802004835 2.95326366455353 2.07446185656416 2.76893468618567 2.52381503948801 2.5846057078178 2.99798368070757 2.95326366455353 2.21943914950423 2.76893468618567 2.68634153894849 2.95326366455353 2.3687179996092 2.76893468618567 2.85739802004835 2.95326366455353 2.52381503948801 2.76893468618567 2.99798368070757 2.95326366455353 2.68634153894849 2.95326366455353 2.85739802004835 2.95326366455353 2.99798368070757 151 139 148 152 147 143 152 143 149 3 20 1 153 14 15 153 144 14 153 148 144 154 145 141 154 48 47 154 141 150 154 47 145 155 146 142 155 142 151 156 150 147 156 147 152 157 148 153 158 146 155 158 149 146 159 154 150 159 150 156 160 148 157 160 151 148 161 149 158 161 152 149 162 157 153 162 15 16 162 153 15 163 49 48 163 154 159 163 48 154 164 155 151 164 151 160 165 152 161 165 156 152 166 157 162 167 158 155 167 161 158 167 155 164 168 159 156 168 156 165 169 160 157 169 157 166 170 161 167 171 16 17 171 166 162 171 162 16 172 163 159 172 159 168 172 49 163 172 50 49 173 164 160 173 160 169 174 165 161 174 161 170 175 166 171 176 167 164 176 170 167 176 164 173 177 172 168 177 168 165 177 165 174 178 169 166 30 18 2 178 166 175 179 170 176 180 17 18 180 171 17 180 30 31 180 18 30 180 175 171 181 51 50 181 50 172 181 172 177 182 173 169 182 169 178 183 174 170 183 170 179 184 31 32 184 180 31 184 178 175 184 175 180 185 176 173 185 179 176 185 173 182 186 174 183 186 177 174 55 3 4 55 21 20 186 181 177 187 32 33 55 20 3 187 184 32 187 182 178 56 22 21 187 178 184 188 179 185 56 21 55 57 22 56 189 52 51 57 23 22 189 51 181 189 181 186 190 33 34 190 187 33 58 56 55 190 185 182 58 55 4 190 182 187 59 24 23 191 179 188 191 183 179 59 23 57 192 185 190 192 34 35 192 190 34 192 188 185 60 56 58 60 57 56 193 189 186 193 183 191 61 25 24 193 186 183 194 188 192 194 191 188 194 192 35 61 24 59 194 35 36 62 59 57 62 57 60 195 189 193 195 53 52 195 52 189 196 193 191 63 26 25 196 194 36 196 191 194 196 36 37 63 25 61 197 195 193 197 193 196 197 196 37 64 4 5 197 37 38 64 5 6 64 60 58 198 195 197 64 58 4 198 53 195 198 197 38 198 38 29 198 54 53 198 29 54 65 59 62 65 61 59 66 27 26 66 26 63 67 60 64 68 63 61 68 61 65 69 28 27 69 27 66 70 62 60 70 65 62 70 60 67 71 63 68 71 66 63 72 6 7 72 64 6 72 67 64 73 19 28 73 39 19 73 28 69 74 68 65 74 65 70 75 66 71 75 69 66 76 67 72 76 70 67 77 68 74 77 71 68 78 69 75 78 73 69 79 74 70 79 70 76 80 71 77 81 72 7 82 40 39 82 39 73 82 73 78 83 74 79 83 77 74 84 71 80 84 75 71 85 72 81 85 76 72 86 80 77 86 77 83 87 75 84 87 78 75 88 79 76 88 76 85 89 80 86 89 84 80 90 81 7 90 7 8 90 8 9 91 78 87 91 41 40 91 40 82 91 82 78 92 83 79 92 79 88 93 84 89 93 87 84 94 85 81 94 81 90 95 83 92 95 86 83 96 87 93 96 91 87 97 88 85 97 85 94 98 86 95 98 89 86 99 9 10 99 90 9 99 94 90 100 42 41 100 41 91 100 91 96 101 88 97 101 92 88 102 89 98 102 93 89 102 96 93 103 94 99 103 97 94 104 92 101 104 95 92 105 100 96 105 96 102 106 97 103 106 101 97 107 95 104 107 98 95 108 99 10 108 103 99 109 100 105 109 42 100 109 43 42 110 104 101 110 101 106 111 98 107 111 102 98 112 106 103 112 103 108 113 107 104 113 104 110 114 105 102 114 102 111 115 110 106 115 106 112 116 107 113 117 10 11 117 108 10 117 112 108 118 105 114 118 109 105 118 44 43 118 43 109 119 110 115 119 113 110 120 111 107 120 114 111 120 107 116 121 115 112 121 112 117 122 116 113 122 113 119 123 114 120 124 115 121 124 119 115 125 116 122 126 11 12 126 117 11 127 114 123 127 45 44 127 118 114 127 44 118 128 122 119 128 119 124 129 123 120 129 116 125 129 120 116 130 117 126 130 121 117 131 125 122 131 122 128 132 123 129 133 121 130 133 124 121 134 125 131 134 129 125 135 12 13 135 126 12 135 130 126 136 123 132 136 46 45 136 127 123 136 45 127 137 128 124 137 124 133 138 129 134 138 132 129 139 130 135 139 133 130 140 128 137 140 131 128 141 136 132 141 132 138 142 137 133 142 133 139 143 134 131 143 131 140 144 135 13 144 13 14 145 136 141 145 46 136 145 47 46 146 140 137 146 137 142 147 138 134 147 134 143 148 139 135 148 135 144 149 140 146 149 143 140 150 141 138 150 138 147 151 142 139 +89 87 1 0.11288965293126 +-24.9997999992 0.0999999999999673 37.999403028168 -24.9997999992 0.0999999999995343 22.0005959501568 -24.9549219626997 1.50062364492276 37.8893198142312 -24.8653921696809 2.59080532968928 37.6674672254028 -24.7554619837214 3.48813731588996 37.3876000245961 -24.5928988493809 4.4932539180142 36.9555701697809 -24.3989355140574 5.44903225950493 36.4056109851553 -24.2014872770388 6.26801512434619 35.7971468646873 -24.0037525767065 6.98712116928207 35.1205083173627 -23.8073088272144 7.62968193343561 34.3497537108998 -23.6154042003565 8.20443080071928 33.4396489943297 -23.4387556270019 8.69624830938069 32.3100573619743 -23.3365416553078 8.96692943912435 31.2606747159565 -23.2935774103136 9.07795414263801 30.1497372421834 -23.318151783286 9.01464350160934 29.040693017684 -23.3874070282466 8.83341341133561 28.1414072087155 -23.4772979523326 8.59165181185922 27.4016947680091 -23.61308275999 8.21110970079328 26.5727774165622 -23.7769204054447 7.72386277244134 25.7815744113219 -23.9463040024281 7.18154054565369 25.0929481309348 -24.1177165528532 6.58298931108785 24.4798753244347 -24.2888235506524 5.92056231435485 23.926446682504 -24.4575563630209 5.17956863446788 23.4234089920176 -24.620713373638 4.33825690486847 22.9686773294375 -24.7735054254601 3.35759273852763 22.5657964815232 -24.9070991684933 2.15323260307206 22.2285248478292 -24.9700082507653 1.22420912163077 22.0736880711042 -24.9997999991998 0.10000000004119 49 -24.9997999991998 0.10000000004119 12 24.9997999991999 0.100000000023124 49 24.5579612310182 4.68044230557387 49 23.2840722840047 9.10230618432727 49 21.221293887839 13.2157741251115 49 18.4395151964812 16.8814774033181 49 15.0329858683553 19.9752180434115 49 11.117122786402 22.3921767801181 49 6.82459960976474 24.0504644480392 49 2.30085164730983 24.8938964747802 49 -2.30085164729178 24.8938964747818 49 -6.82459960974731 24.0504644480442 49 -11.1171227863858 22.3921767801262 49 -15.0329858683408 19.9752180434224 49 -18.439515196469 16.8814774033315 49 -21.2212938878295 13.2157741251269 49 -23.2840722839981 9.10230618434415 49 -24.5579612310148 4.68044230559167 49 24.9997999991999 0.100000000023124 12 24.5579612310182 4.68044230557387 12 23.2840722840047 9.10230618432727 12 21.221293887839 13.2157741251115 12 18.4395151964812 16.8814774033181 12 15.0329858683553 19.9752180434115 12 11.117122786402 22.3921767801181 12 6.82459960976474 24.0504644480392 12 2.30085164730983 24.8938964747802 12 -2.30085164729178 24.8938964747818 12 -6.82459960974731 24.0504644480442 12 -11.1171227863858 22.3921767801262 12 -15.0329858683408 19.9752180434224 12 -18.439515196469 16.8814774033315 12 -21.2212938878295 13.2157741251269 12 -23.2840722839981 9.10230618434415 12 -24.5579612310148 4.68044230559167 12 24.9997999992 0.0999999999999985 37.998772649318 24.9997999992 0.100000000000011 22.0005963768741 24.949005194688 1.59597613510201 22.125160865997 24.8284633417082 2.92359491542519 22.4254638571482 24.6633599018826 4.08884777112373 22.8542342445562 24.4695222404921 5.1227415390554 23.3891540580416 24.2564119314267 6.05198156006879 24.0275549460299 24.0309178453942 6.89311163170191 24.7816699388047 23.7994354175801 7.65420631117799 25.6839758447655 23.5707816020243 8.33176179706589 26.8083502945084 23.4174589436605 8.75343455650841 27.8656139102508 23.3189543154948 9.01256731456607 29.0253006631615 23.2934201860074 9.07835756166293 30.1297236160974 23.3264824837206 8.99306482431717 31.1069378925736 23.3922327560435 8.82062620584481 31.90576223727 23.4731783081346 8.60290066967334 32.5690132029207 23.5918538764746 8.2719061275574 33.3108720543438 23.7326987303789 7.85869003304802 34.0196007154257 23.8774050728489 7.40739629752802 34.6388878419477 24.0689603712468 6.75907929248689 35.3525658718079 24.2770357091917 5.96871373446503 36.0368972241732 24.4771403005788 5.08621692781432 36.6328891396284 24.6567171421116 4.12871647620388 37.1279546126506 24.8119624683231 3.06047876603923 37.5320686437055 24.9365997696453 1.77933410144633 37.8437335591692 24.9811840137354 0.969771586188059 37.9535877664653 3.13759264292305 37.9994030281684 3.13759264292307 22.0005959501568 3.08153160436451 37.8893198142311 3.03777404279277 37.6674672254027 3.00161044969236 37.3876000245961 2.96088052014607 36.9555701697808 2.92186760628317 36.4056109851554 2.88816808924298 35.7971468646873 2.8583351203654 35.1205083173627 2.83145757100745 34.3497537108997 2.80721936572185 33.4396489943297 2.78631581102105 32.3100573619743 2.7747422615586 31.2606747159564 2.76998033960716 30.1497372421834 2.77269684910602 29.040693017684 2.7804573463565 28.1414072087154 2.79077468239806 27.4016947680091 2.80693653208542 26.5727774165622 2.82749908657031 25.7815744113219 2.85022591988331 25.0929481309348 2.87513104804169 24.4798753244347 2.90249865928696 23.926446682504 2.93289831399253 23.4234089920176 2.96717944741945 22.9686773294376 3.00688188101703 22.565796481523 3.05535650419321 22.2285248478293 3.09260469736268 22.0736880711042 3.13759264292305 49 3.13759264292305 12 0.00400001066766845 49 0.188328989035535 49 0.372657967403402 49 0.556986945771268 49 0.741315924139135 49 0.925644902507001 49 1.10997388087487 49 1.29430285924273 49 1.4786318376106 49 1.66296081597847 49 1.84728979434633 49 2.0316187727142 49 2.21594775108207 49 2.40027672944993 49 2.5846057078178 49 2.76893468618567 49 2.95326366455353 49 0.00400001066766845 12 0.188328989035535 12 0.372657967403402 12 0.556986945771268 12 0.741315924139135 12 0.925644902507001 12 1.10997388087487 12 1.29430285924273 12 1.4786318376106 12 1.66296081597847 12 1.84728979434633 12 2.0316187727142 12 2.21594775108207 12 2.40027672944993 12 2.5846057078178 12 2.76893468618567 12 2.95326366455353 12 0.00400001066674347 37.9987726493176 0.00400001066674347 22.0005963768741 0.063882486980823 22.125160865997 0.117212001551973 22.4254638571482 0.164292005503004 22.8542342445562 0.206371409547212 23.3891540580416 0.24450828282355 24.0275549460299 0.279343301307388 24.7816699388047 0.311165372447331 25.6839758447655 0.33977023561002 26.8083502945084 0.357717766141768 27.8656139102508 0.368806768666064 29.0253006631615 0.371629632938632 30.1297236160974 0.367970567284795 31.1069378925736 0.360588607640936 31.90576223727 0.351297150947072 32.5690132029207 0.337231970351229 33.3108720543438 0.319769340218179 34.0196007154256 0.300812011715189 34.6388878419479 0.273770230075317 35.3525658718078 0.241076926746265 36.0368972241732 0.204878984765956 36.6328891396285 0.165908738163242 37.1279546126505 0.12272700117826 37.5320686437055 0.0712335903316717 37.8437335591691 0.038800597950766 37.9535877664653 24 23 63 34 33 50 34 50 51 45 10 9 45 11 10 45 12 11 45 13 12 45 44 13 66 65 47 35 34 51 35 51 52 35 52 53 8 45 9 67 47 48 67 66 47 25 24 63 36 35 53 37 53 54 26 25 63 37 36 53 68 67 48 29 26 63 38 54 55 38 37 54 30 89 88 30 64 89 69 68 48 27 26 29 39 55 56 39 38 55 70 69 48 40 56 57 2 27 29 40 57 58 40 39 56 46 5 4 41 40 58 46 6 5 46 7 6 46 8 7 46 45 8 71 70 48 42 58 59 71 48 49 42 41 58 43 59 60 72 71 49 28 3 1 43 42 59 28 4 3 28 46 4 44 60 61 44 43 60 15 61 62 73 72 49 31 30 88 16 15 62 31 84 83 31 85 84 17 16 62 31 86 85 31 87 86 31 88 87 14 44 61 14 61 15 74 73 49 18 17 62 13 44 14 75 74 49 19 18 62 20 19 62 21 20 62 21 62 63 50 75 49 50 76 75 32 31 83 22 21 63 32 78 77 32 79 78 32 80 79 32 81 80 32 82 81 32 83 82 23 22 63 33 32 77 33 76 50 33 77 76 +18 16 1 1.4210854715202e-014 +28.9998275856943 0.100000000023505 50 -28.9998275856942 0.100000000042549 50 28.4898747439106 5.41544431014547 50 27.0139762520436 10.547278656318 50 24.6221722643939 15.3215088350499 50 21.3955565968692 19.5762651675483 50 17.4435272512703 23.1672906709911 50 12.9000772896831 25.972832073538 50 7.91925181641982 27.8977678438281 50 2.66992509796874 28.8768332746379 50 -2.6699250979498 28.8768332746397 50 -7.91925181640153 27.8977678438333 50 -12.9000772896661 25.9728320735464 50 -17.4435272512551 23.1672906710025 50 -21.3955565968564 19.5762651675624 50 -24.6221722643839 15.321508835066 50 -27.0139762520367 10.5472786563357 50 -28.489874743907 5.41544431016417 50 28.9998275856943 0.100000000023505 -28.9998275856942 0.100000000042514 28.4898747439106 5.41544431014547 27.0139762520436 10.547278656318 24.6221722643939 15.3215088350499 21.3955565968692 19.5762651675483 17.4435272512703 23.1672906709911 12.9000772896831 25.972832073538 7.91925181641982 27.8977678438281 2.66992509796874 28.8768332746379 -2.6699250979498 28.8768332746397 -7.91925181640153 27.8977678438333 -12.9000772896661 25.9728320735464 -17.4435272512551 23.1672906710025 -21.3955565968564 19.5762651675624 -24.6221722643839 15.321508835066 -27.0139762520367 10.5472786563357 -28.489874743907 5.41544431016417 14 15 16 14 16 17 14 17 18 14 18 2 11 12 13 11 13 14 10 2 1 10 14 2 10 11 14 9 10 1 4 1 3 8 9 1 7 1 4 7 8 1 6 4 5 6 7 4 +1177 2278 1 0.0366702031163251 +24.9997999992 0.100000000000011 12.0005963768741 24.9997999992 0.0999999999999985 27.998772649318 24.949005194688 1.59597613510201 12.125160865997 24.8284633417082 2.92359491542519 12.4254638571482 24.6633599018826 4.08884777112373 12.8542342445562 24.4695222404921 5.1227415390554 13.3891540580416 24.2564119314267 6.05198156006879 14.0275549460299 24.0309178453942 6.89311163170191 14.7816699388047 23.7994354175801 7.65420631117799 15.6839758447655 23.5707816020243 8.33176179706589 16.8083502945084 23.4174589436605 8.75343455650841 17.8656139102508 23.3189543154948 9.01256731456607 19.0253006631615 23.2934201860074 9.07835756166293 20.1297236160974 23.3264824837206 8.99306482431717 21.1069378925736 23.3922327560435 8.82062620584481 21.90576223727 23.4731783081346 8.60290066967334 22.5690132029207 23.5918538764746 8.2719061275574 23.3108720543438 23.7326987303789 7.85869003304802 24.0196007154257 23.8774050728489 7.40739629752802 24.6388878419477 24.0689603712468 6.75907929248689 25.3525658718079 24.2770357091917 5.96871373446503 26.0368972241732 24.4771403005788 5.08621692781432 26.6328891396284 24.6567171421116 4.12871647620388 27.1279546126506 24.8119624683231 3.06047876603923 27.5320686437055 24.9365997696453 1.77933410144633 27.8437335591692 24.9811840137354 0.969771586188059 27.9535877664653 21.9993622995033 0.0999999999997645 15.0012101452518 24.9724776626551 0.0999999999999974 12.4045881730213 24.8917471997443 0.100000000000002 12.798553418717 24.7609443114698 0.0999999999999982 13.1737574553685 24.5847381781689 0.1 13.523262974619 24.3682787391292 0.1 13.8420595071108 24.1161986668762 0.1 14.1270624040915 23.8323317579883 0.1 14.3761406230813 23.5193825382446 0.1 14.5876189102563 23.1789389256899 0.100000000000003 14.7595672639644 22.8110367232189 0.099999999999982 14.8893115160326 22.4164522916624 0.100000000000041 14.9720711960819 21.9993752339299 0.100000000000001 24.998788287694 24.9724296138501 0.1 27.5944673159971 24.8916292163443 0.0999999999999999 27.2004752002732 24.7608607195679 0.1 26.8255559472117 24.584894554633 0.0999999999999997 26.4765728439087 24.3689051405158 0.1 26.1583819103531 24.1174348248615 0.0999999999999995 25.8738723913992 23.8341461893754 0.0999999999999995 25.6250330020449 23.5215311352261 0.100000000000001 25.4134839242878 23.1809426522691 0.0999999999999998 25.2411901736536 22.8124252311063 0.1 25.1110291062451 22.4170198111327 0.1 25.0279932720665 21.9584089873977 0.83361472307645 15.0716824159307 21.8668945836473 1.49312127138911 15.2312869018262 21.7417670021259 2.07918149610125 15.4573885232659 21.5941822416187 2.60507158189968 15.7383802289107 21.431538141768 3.08069244977248 16.0696538327392 21.2587871166534 3.51482823331491 16.4537930124981 21.0800474707818 3.91255983342575 16.8994314961517 20.8994298712656 4.27661125868945 17.4260995750116 20.7235349839353 4.60277914702753 18.0706818346937 20.5815726272853 4.84970877393339 18.8238919584685 20.509109995433 4.97136465553233 19.5687212457023 20.5014567681128 4.98389374805217 20.2470304008083 20.5368903938433 4.92522695206584 20.8022062928994 20.5942493041363 4.82910639764576 21.2581941961257 20.6871296838333 4.66779533662889 21.765850881418 20.8023108751352 4.45808022142889 22.2441622750049 20.9618472028052 4.15352243575552 22.7685895651686 21.1425382047816 3.78063971832137 23.2605293892717 21.3216874730806 3.36239009081111 23.6914768659469 21.4917800322087 2.91565443675564 24.0546949797126 21.6510449557035 2.41918430216162 24.3702475451534 21.7968085864346 1.82910716753233 24.6494847009322 21.9069291012408 1.26641888166112 24.8343304381509 21.969573620405 0.721629819170943 24.9461821391934 24.9720417933828 0.177959109320852 12.4057841319846 24.9719899393851 0.177949413694604 12.4061659158667 24.8913741282614 0.167832227381043 12.7996296036036 24.8912405578496 0.167819621089479 12.800113722673 24.7606244810592 0.157939812470943 13.1747141682416 24.7605061820086 0.157932371348848 13.1749926060658 24.930771605593 1.44288871281717 12.5126356288876 24.9307235732977 1.44281359797619 12.5130129463699 24.9265486694148 1.51378074195227 12.5235761274101 24.926501028243 1.51370194929453 12.5239529840211 24.5845604317494 0.1484797515362 13.5239341098686 24.5844631097713 0.14847521086846 13.5240993510644 24.8537168259612 1.36432999129822 12.9020450714645 24.8535872660406 1.36423207564772 12.9025239237576 24.8498639703332 1.43137027823703 12.9125274348487 24.8497348216189 1.4312675557374 12.913005742775 24.3685828935884 0.139605955893155 13.8420785412643 24.3680417086077 0.139586219854228 13.8427748290756 24.7257196873711 1.28740657905253 13.2731461277051 24.7256031526897 1.28734865368794 13.2734216644459 24.7221493209362 1.35066683532644 13.2832165393717 24.7220329675375 1.35060606103237 13.2834917759727 24.8383537061885 2.58089625395696 12.7548391481755 24.8383142562582 2.58076200629829 12.7552061603504 24.8175083999897 2.77336062256227 12.810371399512 24.8174708931535 2.77321634956536 12.8107360196003 24.1171228314462 0.131403548990744 14.1265334831642 24.115995590932 0.131370561329739 14.1276559573134 24.5515051452278 1.21369315208135 13.6187507561268 24.5514085161937 1.2136577375262 13.6189142864044 24.5481250537398 1.27332584425508 13.6284470920542 24.5480284961283 1.27328868608175 13.6286104453105 24.7694292490514 2.44031349169569 13.1339915721462 24.7693087338528 2.4401380661717 13.1344582235004 23.8338500374068 0.123938687760596 14.3753093475519 23.8321611117061 0.123898626697747 14.376613119197 24.7504274271106 2.6222376172241 13.1871392396191 24.7503089657773 2.62204899220815 13.1876030506573 24.3365026832019 1.14442493457581 13.9335549864762 24.3359627936942 1.14427075057706 13.9342438036729 24.3332233855601 1.20064661924553 13.942905848023 24.332683630863 1.20048484235334 13.943593892942 24.6476515507512 2.30237576962932 13.4958541983364 24.6475390112289 2.30227182009627 13.4961230019654 24.7117323951286 3.59269980788624 13.0980261328062 24.7117048144834 3.59251261925506 13.0983781170517 23.5212630124192 0.117262972418061 14.5867867949675 23.5192450480086 0.117224307532389 14.5879731316055 24.6300636434156 2.4738933761372 13.5468497270365 24.6299520131884 2.47378156660751 13.5471169615801 24.0852233325567 1.08029876789304 14.2148477754924 24.0840953155404 1.08004068535227 14.2159572066195 24.0819634362137 1.13336327934073 14.2238720110016 24.0808353432724 1.13309249556262 14.2249800961794 24.6682533111765 3.87880022717132 13.2193286560451 24.6682298312962 3.87859802203379 13.21967522921 24.4776334368755 2.17003148336189 13.8330692309733 24.4775383843137 2.16996787899801 13.8332287933492 23.1807192244741 0.111431236549922 14.7590041722845 23.178836577565 0.111402631225885 14.759809524541 24.65408833207 3.39634082566957 13.4621677715799 24.6539804075918 3.3960954207796 13.4626165109097 24.4610013787654 2.33152882821661 13.8821103628211 24.4609066855656 2.33146040389865 13.8822690015608 23.8014411461286 1.02185865107617 14.4605617246216 23.7997475912244 1.02154481680052 14.4618483265533 23.798129895378 1.07204912648669 14.4692703681699 23.7964358707697 1.0717198722468 14.4705552027646 24.6145159758388 3.66656259835018 13.5780507890691 24.614412422597 3.6662972062018 13.5784930458994 24.2648571412757 2.04562069788176 14.1401385452481 24.2643202321441 2.04534380181281 14.1408100970232 22.8122637073556 0.106514823371808 14.8890897424937 22.8109709837901 0.106499879104393 14.8894530976051 24.5409925337756 3.20315198940856 13.8104425250795 24.5408855880305 3.20300625768815 13.810701413586 24.2487327141175 2.19769086486251 14.1873818528244 24.2481964846821 2.19739299914423 14.1880493992628 24.5621766158136 4.49939611789732 13.5236617865068 24.5621631906529 4.49916127535861 13.5239945751076 23.4877714710736 0.969529068823775 14.6690196472352 23.4857452925243 0.969225780108918 14.6701873858651 23.4843500910373 1.01715160577451 14.6774179495197 23.4823230757616 1.01683345709685 14.6785837797874 24.014007814634 1.93050499014815 14.4141434823491 24.0128781271095 1.93004196930796 14.4152229499193 24.5044403729705 3.45755403329452 13.9214008970397 24.5043353772422 3.45739631318006 13.9216561884785 24.3768655091476 3.0175010155177 14.1353065382969 24.3767726769775 3.01741175535624 14.1354602654755 23.9979812569978 2.0738709650651 14.4597004318467 23.9968511865472 2.07337301037112 14.4607729865017 22.4169329803242 0.102642004047986 14.9720576379982 22.4164227426079 0.102637884474622 14.9721292396971 24.493121531674 4.85978009369022 13.7288633343344 24.493114699479 4.85952621259408 13.729186628942 23.1456943012903 0.923753472809707 14.8382262891114 23.1438025302887 0.923528763155588 14.8390156490928 24.5180386574242 4.25253905560811 13.8685443910436 24.5179458681035 4.25222996422649 13.8689700579818 23.1421166165758 0.969137649166039 14.8463162085556 23.140223915129 0.968901978578094 14.8471039336052 23.7290927957025 1.82575472536817 14.6528504340689 23.7273888746317 1.82519284697556 14.6540979109234 24.3423705075681 3.25658844035571 14.2417846461051 24.3422784523029 3.25649180293637 14.2419362580777 24.1672365829747 2.84290692447942 14.4310303950613 24.1667039200831 2.84251841963695 14.4316767096048 23.7128071565173 1.96124326239037 14.6967964128399 23.7111008659931 1.96063930209759 14.6980349289205 24.4552952619652 4.59264972233915 14.0641840911575 24.4552095701152 4.59231495160384 14.0645982633122 22.7753809827555 0.885097457129683 14.9653036004832 22.7740815833397 0.884979822148129 14.9656568218592 24.4154131177081 4.00886918949878 14.1992746514768 24.4153129409863 4.00868515497651 14.1995207164839 22.771613825982 0.92860198748421 14.97308662374 22.7703137457292 0.928478655427798 14.9734388136246 24.3966429772766 5.32109578247491 14.0262160318359 24.3966454117231 5.32081746358165 14.0265253147731 23.412992662002 1.73220869428828 14.8544603141639 23.4109480203946 1.7316675399338 14.8555860886892 24.133844985147 3.06756370455348 14.5334034040378 24.1333138162744 3.06714311852673 14.5340406096771 23.9170190554349 2.68149431622787 14.6944339775908 23.9158871416466 2.68084566188834 14.6954701048422 23.3961517564426 1.86072861005782 14.8968445739376 23.3941028987106 1.86014740795232 14.8979608223482 24.3575941783244 4.32855706191584 14.3861539201322 24.3574971955302 4.32835748717519 14.3863935712287 24.2584344439462 3.77425049468404 14.5081668777472 24.2583443146452 3.77413763329067 14.5083130672961 22.3780136688788 0.854565087618621 15.0453128146784 22.3775008417733 0.854532538479808 15.0453807875162 22.374038858565 0.896598858327684 15.0527954504064 22.3735257675262 0.896564752908823 15.0528630558556 23.0674678599294 1.65072455377636 15.0169113333672 23.0655555754347 1.65032571435533 15.0176650216256 24.367710941084 5.02784569589062 14.3473824361455 24.3676352773396 5.02747773051293 14.3477795460131 23.8838525641285 2.89286051503642 14.7929941466776 23.8827198892058 2.89215866838535 14.7940147516162 24.3006981214369 5.74164033647599 14.3360381993603 24.3007098211279 5.74133972461275 14.3363326248676 23.6305415319998 2.53494662134115 14.9230746688578 23.6288232152964 2.53416187997403 14.9242663630504 23.049840200879 1.77326439213596 15.0577697175903 23.0479232385178 1.7728365839762 15.0585153921687 24.0526485768503 3.55348765607088 14.7892782372339 24.0521211278802 3.55299653297434 14.7898921771485 24.203998254917 4.07403508091049 14.6870553404203 24.2039094093969 4.07391261391895 14.6871977605707 22.6929801070354 1.58236642541495 15.1373222977218 22.6916657187857 1.58215937946673 15.137653220288 23.5968326169452 2.73436970161599 15.0180480231075 23.5951092884312 2.73352150777798 15.0192199550462 24.2769835537469 4.73728542898577 14.6563247540355 24.2768911052103 4.73706566995811 14.6565548534756 24.2201106007732 6.07124992007992 14.6089565686152 24.2201301223009 6.07093182013754 14.6092376876738 24.2806848340401 5.42445677556421 14.6421446577768 24.2806192557316 5.42405827356596 14.6425235574967 23.3110586505958 2.40458835439214 15.115003865768 23.3089882875301 2.40383630781177 15.1160708644088 22.6744014298313 1.70000688643741 15.1766920189407 22.6730836303712 1.69978525510369 15.1770179942999 23.8032218322761 3.34959299577271 15.0391602823355 23.8020873028527 3.34877449434994 15.0401415081806 24.0000458781086 3.83447699581112 14.9608735704043 23.9995209394072 3.83394410928926 14.9614713974134 23.2761711912549 2.59358037629125 15.2065700949841 23.2740918656738 2.59276892687728 15.2076165565581 24.1282007666591 4.45687517576889 14.9453217023164 24.1281137529656 4.45674020139753 14.9454585078742 22.291045735684 1.52896453169983 15.2108731875626 22.2905271100381 1.52890809740528 15.2109333096626 22.9607317269993 2.29173918549491 15.2680885227277 22.9587908859698 2.29118917297295 15.2687932932908 24.2076474783344 5.73521227890314 14.9015311530737 24.2075904619725 5.73478963127254 14.9018936416092 24.1969882914067 5.10947349212215 14.9371539248849 24.1969004262444 5.10923505902505 14.9373737920833 22.2714290378349 1.64293108672308 15.2488207918103 22.2709090961723 1.64287089978635 15.2488791997888 23.5148647115471 3.16497153322851 15.2551559960694 23.5131290015325 3.16398492785852 15.2562782782696 23.7510134617696 3.61331761207266 15.20405458983 23.7498777829537 3.61243023063344 15.2050087487276 24.097168034816 6.54029040546933 15.052295581691 24.0971995509625 6.53994742216091 15.0525546939119 22.924171879219 2.47196398174317 15.3564083010755 22.9222211003951 2.47137212319687 15.3570962656806 23.9268736046001 4.19283724679675 15.2082907608577 23.9263522852253 4.19224997271997 15.2088646651417 22.5804403041987 2.19798113089283 15.3794683766191 22.5791051093845 2.19769912416377 15.3797694895678 24.0530815885882 4.80507078991427 15.2133923539656 24.0529964356363 4.8049242091739 15.2135231430547 24.1299341013359 5.4008611707407 15.1839577489996 24.1298501466901 5.40060789176174 15.1841683603172 24.0364919088992 6.75897660725703 15.2855709017837 24.0365293570833 6.75862207343211 15.2858183163978 23.1912903980631 3.00152034343599 15.4351691255896 23.1891889205717 3.00058049485855 15.4361646378408 23.4617883555723 3.41330760878318 15.4138569292158 23.4600445398753 3.41223976987134 15.4149454700443 24.096320592299 6.17729153040645 15.3224027067239 24.0962767919475 6.17683420192038 15.3227378492134 23.678424639079 3.94921619497759 15.4415533792896 23.6772874235636 3.94823933248582 15.4424676279994 22.5418632483704 2.37126482578704 15.4647162353245 22.5405208318945 2.37096268715399 15.4650073205886 23.8544287265661 4.5183085832118 15.4647522225236 23.8539111142617 4.51767082848894 15.4653005834702 23.9901972618131 5.07735268291113 15.4486482045373 23.9901137046612 5.07719684798587 15.4487735477434 22.1721801263044 2.12592630647 15.4445170384745 22.1716534890718 2.12585116404595 15.4445670034658 23.1363015237275 3.23661794032111 15.5881285523926 22.8351598526488 2.86107844485617 15.5770134175182 23.1341854819242 3.2356035273605 15.5890899617549 22.8331845424855 2.86039749498903 15.577660342646 24.0414054898121 6.3834023376981 15.5436933803164 24.0413682630706 6.38292876445296 15.5440138884363 24.0278690459323 5.81502529515743 15.5838088054739 24.0277911633292 5.814750554555 15.5840039214308 23.3879885967414 3.72926353196819 15.6422682069252 23.3862333886578 3.72809075238201 15.6433075219052 22.1314116216802 2.29432457354063 15.5269419089332 22.1308822148635 2.29424472011494 15.5269885523262 23.6065884589107 4.25386275981714 15.6874610497473 23.6054497582583 4.25280308091392 15.688333014484 23.888200962457 7.26368018483873 15.9085994028514 23.8882529447926 7.2632991129394 15.9088151914501 23.7938455638745 4.77246410703224 15.6895115728725 23.7933311622919 4.77178608651193 15.690036879954 22.7774543192592 3.08532838490833 15.7246710734317 22.7754628814539 3.08459661939288 15.7252910610936 22.4478774995242 2.74576921445048 15.6778906202133 22.446517300143 2.74542536615917 15.6781577084745 23.9775718609084 6.0080165413418 15.7938235210517 23.977497013499 6.00773168499063 15.7940103083918 23.8500174822029 7.38757966224658 16.0843954614297 23.8500732175843 7.38719209458287 16.0846022177585 23.0598071568647 3.53554621906101 15.8082201947065 23.0576705721803 3.53443643528785 15.8091325711445 23.8946249082329 5.46384083508948 15.8291493581263 23.894543844413 5.46367157375218 15.8292655735758 23.3149418267715 4.01550541827601 15.87860161159 23.3131751660746 4.01423615470985 15.8795894061691 23.5465445731157 4.49142288311967 15.9027236773416 23.5454046836083 4.49029730529711 15.9035577379021 23.9072766952652 6.85905365780367 16.1341834649857 23.9072556826553 6.85854237338184 16.1344640868767 22.386905138121 2.96180086855148 15.8207290308307 22.3855332724521 2.96143401830376 15.8209807697443 23.8475801798156 5.64376113203285 16.0287537425055 23.8475003682034 5.64358551958568 16.0288650450168 22.0320388854864 2.65894383943278 15.733446688231 22.0315026836619 2.65885482190858 15.7334856029921 22.6971280045601 3.37048480984997 15.9372081940741 23.7018833051243 5.1326381221459 16.0524381937648 23.7013739809172 5.13190164183468 16.0529249713487 22.6951138258625 3.36968916495294 15.9377901932232 23.8727612993796 6.97580612222906 16.3006526175636 23.872744499236 6.97528551983962 16.3009217679067 22.9840471810803 3.80621390440413 16.0359150571984 22.9818899001495 3.80501747773983 16.0367769889219 23.2538821789494 4.23845734321885 16.0853248265755 23.2521058370036 4.2371117546068 16.0862669463022 23.8548659692918 6.45309466227658 16.3534925763075 23.8547986525485 6.45278615469183 16.3536565436919 23.6566565533681 5.30010266362114 16.2425898381141 23.6561497987734 5.29933850530603 16.2430559199089 21.9675386707938 2.86968935699613 15.8720901178412 21.9669980280572 2.86959570147807 15.8721242707029 23.4554585448688 4.82752562753009 16.2498297141896 23.4543169646227 4.82630461521412 16.2506008935767 23.6817468599802 7.90833088188662 16.9747350753897 23.6818191784335 7.90791612184899 16.9748954627908 22.3019769131714 3.23676703178946 16.026551829563 22.3005886333411 3.23637222985421 16.0267824877735 23.8233261157401 6.56226652631009 16.5110751921215 23.823260766194 6.56195213686656 16.511232565998 23.6671168592307 7.95182873259256 17.0645829088165 23.6671906214223 7.95141171337007 17.064738572617 22.6175091229245 3.6287538044268 16.1572146758968 22.6154720604036 3.62790134994129 16.1577584998491 22.9206885864486 4.01690334993202 16.2350360749025 22.91851375166 4.01563912348766 16.2358539980474 23.7329653502792 6.05820815751915 16.5598640175519 23.7328886637068 6.05801763439796 16.559961833746 23.4106821454851 4.98360190498327 16.4315052473494 23.4095397647878 4.98233580103117 16.4322428514047 23.1612535163739 4.55346288101729 16.4183442572771 23.1594623274943 4.5520074730067 16.4192115484316 23.7035444184645 6.15974641858986 16.7091859284591 23.7034685528232 6.15955217341701 16.7092798413913 23.7207547558865 7.46646745115243 17.1428947902535 23.7207566996833 7.46590742335851 17.1431045375705 21.877655554549 3.13843935435863 16.0722533446741 21.877108687077 3.13834058381743 16.0722812168494 22.2177337032895 3.48612969830861 16.2399124663391 22.5508779073307 3.82982189662884 16.3496974070421 22.2163289564053 3.48571110516306 16.2401226389449 22.5488214471958 3.82892586359888 16.3502086752267 23.7075451136024 7.50745192721854 17.227824266734 23.7075486994715 7.50688859091982 17.2280279182603 23.5465947558202 5.68528344617926 16.7477695989371 23.5460944793559 5.68445423559096 16.7481789903343 23.1157149041743 4.69959484725685 16.5925335550106 23.113916336205 4.69808784453407 16.5933613094718 22.8245234058698 4.31435805549614 16.5557066327528 22.8223215311074 4.31299746764357 16.5564537970478 23.5432551371023 8.30995233671918 17.9767026409932 23.5433411304751 8.30951680134488 17.976809976359 23.5183741466596 5.77951078884394 16.889590696839 23.5178755895904 5.77866532310752 16.8899837092073 23.6846007227492 7.02072572626021 17.3071538455609 23.6845441830319 7.02038626521734 17.3072768739071 23.5185605629834 8.37930490118935 18.2127292745457 23.5186489922504 8.3788658090868 18.2128240477336 22.1471872070519 3.68047920131618 16.4268126945011 22.145768537663 3.68004313173367 16.4270059814776 23.6725577873222 7.05899778359445 17.3873332189399 23.672502023811 7.05865620397206 17.3874527048523 21.7884526525706 3.38274726805336 16.2802422241993 21.7878995701877 3.38264473599296 16.2802643185565 23.3017794217568 5.34203736481598 16.9135337536014 23.300635213743 5.34066551366208 16.9141800051232 22.7772242726357 4.45228323900805 16.7234188729125 22.7750089299237 4.45087787772087 16.7241292545697 22.44967178374 4.11373331074181 16.6598262533271 22.4475854599349 4.11277676038796 16.6602865998069 23.2738729891099 5.42958621858177 17.0486822861247 23.5957441536473 7.84489317301638 18.0894674467721 23.5957617151645 7.84430251694831 18.0896083604044 23.2727283488885 5.42818799511348 17.0493022953739 23.5743376411707 6.5855876420861 17.4621668738718 23.5742654775282 6.58537746146157 17.4622404021801 23.5631356500698 6.62109707424329 17.537894711991 23.563063814598 6.62088554140866 17.5379661326942 23.5734572662662 7.91025470080062 18.3123344431002 23.5734776243559 7.90965875219731 18.3124589558601 21.7137212262298 3.57356135039938 16.4628243416905 21.7131629117688 3.57345649992443 16.4628419517215 23.4542044428396 8.5570678105267 19.0761246790715 23.4542991895704 8.55661971398044 19.0761738596891 23.0049546130204 5.03477111333659 17.0543038199937 23.0031379078589 5.03314387435372 17.0550253113057 22.3998631010055 4.2454212297736 16.8221188670109 22.3977619220663 4.24443716035444 16.8225533937663 23.4426115747785 8.58864729971068 19.3424060678933 23.4427074583254 8.58819761137257 19.3424412340936 22.0399613007441 3.95524669642842 16.7283737389636 22.0385212602286 3.95478762455291 16.7285417387626 22.9765729005481 5.11653318484908 17.1836602561797 22.9747515105101 5.11487613053383 17.1843515461785 23.5707064458392 7.37397938721525 18.1999812875949 23.5706573157386 7.37362022354059 18.2000641660064 23.3946053827797 6.1740208240413 17.6034107157226 23.3941146848222 6.17310566209015 17.6037183029825 23.3838874140721 6.20686902044745 17.6750898419389 23.3833974210244 6.20594793529941 17.6753886029054 23.5504144654763 7.43497629270793 18.4100130483894 23.5503666681096 7.43461370276475 18.410086319346 22.662126034246 4.76843584280057 17.1679314291481 22.659877474673 4.76692744187284 17.1685448584792 23.5153539186376 8.07788059953594 19.1278604352656 23.5153815490088 8.0772711706217 19.1279251627401 21.9871626260208 4.08285662602692 16.8863986888467 21.985711988941 4.0823876380737 16.8865543910992 23.4311216999821 8.61981778432138 20.1234150927097 23.4312187215104 8.61936649757594 20.1234089886945 23.5048876129713 8.10766369501717 19.3794046382931 23.5049165551938 8.10705187226063 19.3794509338292 22.6326205958293 4.84550335187929 17.2924207311324 22.6303634211056 4.84396969185634 17.293007082618 23.434496329864 8.61067675450209 20.3711353127905 23.4345930237928 8.6102259195203 20.3711159821985 21.6000863778304 3.8439771328948 16.7581347676436 21.5995200722401 3.84386998431826 16.7581462086724 23.4684844020604 6.91311022135362 18.3044893251137 23.4684153826794 6.91288743089909 18.3045389254132 23.1515803392695 5.79547719923754 17.7277874926074 23.1504340480691 5.79396609566774 17.7282714462719 23.140997852268 5.82589410365399 17.7958862067712 23.1398514379791 5.82437341932738 17.7963561640275 22.2785776241544 4.54736524275341 17.2525388055262 22.2764398489175 4.5463194125164 17.2529073513336 23.4496414652126 6.96962313288049 18.5024215515159 23.4495730136773 6.96939814127481 18.5024654148529 23.4975040968295 7.59146029239378 19.1786716749129 23.497459772239 7.59108893902985 19.178709811271 21.544117396841 3.96984672724933 16.9132242600308 21.5435471488825 3.96973892628725 16.9132329643857 23.4610103534847 8.53846628689437 21.0492235685491 23.4611044303562 8.53801913493648 21.049167725795 23.4945264209757 8.13703076010011 20.1169948659634 23.4945566788147 8.13641653460265 20.1169868349418 22.2474676269227 4.6209826041441 17.3731410135513 22.2453203661775 4.61992198872204 17.3734916571497 23.4879755210321 7.61926150593404 19.4157502378624 23.4879318242109 7.61888859154984 19.4157775191894 23.4718403705047 8.50877049792645 21.2224988847423 23.4719333724387 8.50832487820138 21.222433672556 23.497576464865 8.12840042889867 20.3507981050062 23.4976063448697 8.1277868849105 20.3507726585744 23.2934000855597 6.47671125730305 18.3997730653995 23.2929161843872 6.47574080810553 18.3999805152227 22.852217143201 5.45771387038127 17.8328890881363 22.8503751336083 5.45592992596532 17.8334256197791 22.8414580291826 5.48603763592284 17.8979263454894 22.8396142313387 5.48424297358593 17.8984470999649 23.27539835578 6.52888576991739 18.5866873028487 23.2749156891912 6.52790565707613 18.5868707619438 21.8585229635806 4.37586088311753 17.306160947474 21.8570463127898 4.37537108106502 17.3062869176494 23.4005095566541 7.11462183659091 19.2267856463053 23.4004425867776 7.11439120019122 19.2268084900237 23.478555857771 7.64663960232744 20.1106921283138 23.4785127922019 7.646265121529 20.1106873992741 23.5203873060764 8.3741894128553 21.8056959165589 23.5204754773388 8.37375078654678 21.8055991905265 23.5214960546596 8.06034418705182 20.9904843049953 23.5215229120844 8.05973617649164 20.9904108206274 21.8255093169596 4.4473870593083 17.4239358667257 21.8240259432437 4.44689260583386 17.4240542087264 23.3916646145232 7.14037507797743 19.4501704884246 23.3915979129943 7.14014343419763 19.4501868308707 23.0516965170055 6.07548121603781 18.4835881154167 23.050549160993 6.07388077676016 18.48391383722 23.5323878129428 8.34054373767515 21.9228818557304 23.5324747894302 8.34010686609149 21.9227788201407 22.5032976823571 5.16680387584327 17.9169254015637 22.5010023524963 5.16516398878201 17.9173757342985 23.5312607409496 8.03237392024766 21.1539138517576 23.5312863574967 8.03176820500386 21.1538280609681 23.4813360298226 7.63857410117084 20.330822089595 23.4812927837988 7.63820006564799 20.3308070967498 22.4921060847034 5.19345566516447 17.9794594080671 22.4898074268415 5.19180689816391 17.9798960930655 23.0339370586007 6.12369199204611 18.6608007714416 23.0327895269232 6.12207595848902 18.6610887373497 21.40771534749 4.25957449504464 17.3262373866122 21.4071354758646 4.25946626224926 17.3262403512433 23.2284619531111 6.66275071190276 19.2706704525218 23.2279825089049 6.66174578644147 19.2707659827389 23.3829337359493 7.16569833038279 20.1047283281176 23.3828673055781 7.16546567593916 20.1047254980103 23.5030936322175 7.57509751128788 20.9328018947529 23.5030489375773 7.57472708191227 20.9327586030638 23.5935153408057 8.16674432492756 22.4344096024725 23.5935962888928 8.16631639189433 22.4342796572945 23.2200150444681 6.68651610532369 19.4815648366367 23.2195361854512 6.68550674857781 19.481633173165 23.5750245772231 7.90565184417685 21.7040394974732 23.5750446274997 7.90505656427487 21.7039124216227 22.750671219814 5.718228487509 18.5541879267501 22.74881226532 5.71634495224267 18.5545473855937 22.1110369399624 4.92791835433807 17.9784035289228 22.1088476770458 4.92679711684419 17.9786672928935 21.3727001446393 4.33046065958338 17.4423754347816 21.3721177980042 4.3303525596335 17.442377165111 23.3855177861557 7.15821733528762 20.3119083073921 23.3854512790462 7.1579849684752 20.3118993286396 23.5858433524815 7.8739741219356 21.814614417454 23.5858620290383 7.87338145061251 21.8144791006844 23.5119707102981 7.54902492801285 21.0865777954471 23.5119254208001 7.5486559916016 21.0865272625529 22.0992252669042 4.95337999463216 18.039029967429 22.0970323410277 4.95225380397253 18.0392852624047 22.73261577206 5.76304377642172 18.7231977641723 22.730753782783 5.76114293815995 18.7235153246351 23.6293415407175 8.06293127657111 22.6898133200093 23.6294189928632 8.06250860245347 22.6896702777842 22.9876322525349 6.24737932022065 19.3092462083149 22.9864842552277 6.24572325505727 19.3093960000722 23.2116882697691 6.70984522165495 20.0992948846717 23.2112100106897 6.70883142006878 20.0992830658423 22.97930053675 6.26932734155783 19.509156485441 22.9781524588085 6.26766413075597 19.5092636087666 23.4056958768009 7.09947090626057 20.8781847866874 23.4056287484955 7.09924086582035 20.8781588555267 22.397645545034 5.41183042836253 18.6102850635342 22.3953185918518 5.41010864213365 18.6105841889779 23.5517558075911 7.43091791084223 21.6043504197217 23.5517078535087 7.4305557437308 21.6042756405791 23.6410186829119 7.71018493314167 22.2979917902005 23.641030453312 7.70960551400753 22.2978214340998 21.6806604133467 4.74596644968566 18.0158581657481 21.6791473599802 4.74545439573465 18.0159420751626 23.2141591513381 6.70293186164619 20.2946632380532 23.2136807279411 6.70191932534965 20.2946257093232 23.4139239364587 7.07535541279214 21.0228278057656 23.4138565526167 7.07512633440453 21.0227975391776 23.5615936159378 7.40139072489307 21.7084750206155 23.5615450055899 7.40103024552362 21.7083954125821 21.668115480599 4.77076166530814 18.0752161085429 21.6665998459659 4.77024828341002 18.075296877929 22.3788536804139 5.45396607958687 18.7727268803176 22.3765210537321 5.45223020832218 18.7729907684319 23.7008497962704 7.85113884424344 23.1388264129985 23.700920307389 7.85072684037538 23.138660620596 22.6855358995433 5.87802139998559 19.3416720334173 23.6734007188862 7.61224926202169 22.5397248012903 23.6734085025757 7.61167760996408 22.5395374634649 22.6836659719162 5.87607623073756 19.3418368461459 22.971095530039 6.29083374344377 20.0945268297582 22.9699473996559 6.28916336699574 20.0945083361584 22.6770647408073 5.89841603318865 19.5323405788238 22.6751933811221 5.89646296705267 19.5324583833178 23.2334128487722 6.64877567241712 20.8283676050649 23.2329330570722 6.64777336818607 20.8282591567219 21.9994933611903 5.16203894475841 18.6508380119423 21.9972693100015 5.16087278273683 18.6510101876871 23.7483125811614 7.70698775065216 23.404828460709 23.7483784842084 7.70658304436261 23.4046491942609 23.4508033271498 6.96611394911485 21.5100389697401 23.4507347998335 6.96588922547801 21.5099942025256 22.9735354004719 6.28443910278289 20.2795150896643 22.9723873037545 6.28277076460556 20.2794562989378 23.6118470533799 7.24851556730124 22.1644578082759 23.6117951580591 7.24816364570765 22.1643577122388 23.2412597862827 6.6265579827937 20.9646804977905 23.2407794276586 6.62555990846109 20.9645539095572 21.219036692692 4.62705331362813 18.0274933658342 21.218443477731 4.62694679621121 18.0274909909878 23.4599262008942 6.93879513510117 21.6080815046674 23.4598573925847 6.93857149538326 21.6080338534229 21.9796451218637 5.20231571669565 18.8084615862442 21.9774148382358 5.20114200782704 18.8086130407387 21.2057268582856 4.65173373470156 18.086283011417 21.2051327026614 4.6516274237196 18.0862803930464 23.7380849584731 7.41234880490606 22.9650464435676 22.3298489590836 5.56209146021935 19.3673314033381 23.7380848603418 7.41179283067991 22.9648297391798 22.3275015126351 5.5603196712306 19.3674677794243 23.641394752428 7.15696740313209 22.3929349934577 23.6413409708644 7.15662048385713 22.3928249970781 22.6687270109444 5.91836495845695 20.0905291114394 22.6668542570756 5.91640397629075 20.0905088280158 22.3210303405697 5.58126775733879 19.5506740047477 22.3186802185137 5.57948959941259 19.5507713913101 22.9925138488902 6.23447945184927 20.784572252702 22.9913658920516 6.23282761507309 20.7844021763259 21.5621593531795 4.97415282745998 18.6748691049754 21.5606218354437 4.97362947100279 18.6749210526595 22.6712097784996 5.91241295685607 20.266797095207 23.2764342410067 6.52590313287453 21.4240348040237 23.2759513470119 6.52492419097648 21.4238475545704 22.6693374538068 5.91045422168161 20.2667325085276 23.8281380997117 7.45758305265715 23.8114105485332 23.8281961877834 7.45719122495703 23.8112103485501 23.0002449155678 6.2139968668368 20.9135546850573 22.9990970015394 6.21235185491373 20.9133561147673 23.5066110060916 6.7971104264255 22.0382751319978 23.5065408007263 6.79689227636421 22.0382152571531 23.781026211738 7.27630220263035 23.2170527928315 23.781020901469 7.27575688050259 23.2168187809962 23.2851387964733 6.50072055288524 21.5165382921927 23.2846552821944 6.49974636924476 21.5163389818052 21.5410664982028 5.01345913367641 18.8295391978001 21.5395246115635 5.01293405627825 18.8295844796431 21.9278834298953 5.30572084711959 19.3857350682463 21.9256368952565 5.30452810753477 19.3858126570059 23.7004870883067 6.96993530001816 22.7953713146469 23.7004295941447 6.96959844183875 22.7952442505255 23.5341164702435 6.7120976553194 22.2543005519516 23.5340454691601 6.71188270900574 22.2542347784958 22.3123517255987 5.59999570808972 20.0873783920669 22.3099989675645 5.59821116964148 20.0873616975841 21.9185671978622 5.32406358362031 19.5638060322799 21.9163177312461 5.32286750624943 19.5638613309314 22.6904977813543 5.86604112243812 20.7477502257713 22.6886286859027 5.8641006308067 20.7475630339253 22.3149376511063 5.59438964158791 20.25675308365 23.0349011936167 6.1211903154335 21.3483869845476 23.0337534706837 6.11957618011515 21.3480930416775 22.3125856832561 5.59260690604836 20.2566997826951 22.69835195783 5.84704337606866 20.8705551996125 22.6964841631512 5.84511044151948 20.8703365466473 21.0932976295758 4.85451825636581 18.6812325104225 21.092695529765 4.85441412953142 18.6812289408299 23.3297562572077 6.36985216884181 21.9232553415266 23.3292697147044 6.36890207399744 21.9230049001955 23.9140880485745 7.1783603069622 24.2066001140562 23.914137575192 7.17798344634249 24.2063788917571 23.8531957354 7.04113832832751 23.6019454121266 23.8531816128074 7.04061165364147 23.6016846405097 23.0434799897899 6.09795951951111 21.4360133631604 23.0423323218494 6.09635306366875 21.4357004412933 23.7397367623004 6.84261066081132 23.0339145971915 23.7396768216198 6.84228060763658 23.033777508266 21.0709151524731 4.89377988125111 18.8349570381967 21.0703114737769 4.89367627986822 18.8349536046087 21.4860633089981 5.11444908812407 19.3964371140023 21.4845100585574 5.1139198857311 19.3964596642084 23.5891993164336 6.5381944745038 22.6352892004889 23.5891267584658 6.53798595799889 22.6352132729167 23.3560926526434 6.29114952241306 22.1279513169644 23.3556044228938 6.29021347818854 22.127676190906 21.9093971541024 5.34195685033461 20.0851351033185 23.9585836987788 7.02903927672854 24.3976834690768 21.9071447869012 5.34075743319689 20.0851257078644 23.958628766592 7.02867055242675 24.3974520150602 22.335013413164 5.55083347701441 20.718599497888 22.332667529495 5.54906546860497 20.7184445135655 21.4761626674077 5.1323737901454 19.5714182336505 21.4746073698763 5.13184390160711 19.5714342019762 22.7335586183505 5.76095821034998 21.2846905703147 22.7316966399197 5.75905951315952 21.2843663685601 21.9121295535254 5.3365856506497 20.2495756108986 21.9098780471749 5.33538716659487 20.2495454506005 22.3431863302933 5.53300368981241 20.8364930925946 22.3408429146197 5.53124180251826 20.8363119086657 23.0875063293228 5.97697331662966 21.8220395070134 23.0863591173638 5.97540575415212 21.8216459822185 22.7422748476066 5.73939983869478 21.3681941280792 22.7404143123372 5.73750966617984 21.3678488716042 23.6258110481309 6.41973646661624 22.8612470922939 23.6257374678389 6.41953228719153 22.8611652101923 23.8056706841984 6.62266989422116 23.3980284785027 23.8056066140612 6.62235168795035 23.3978759412441 23.930771237032 6.77837006822059 23.9754169419449 23.930747487115 6.77786483147366 23.9751294467649 23.4088992328406 6.12990431458499 22.4894359311926 23.1135289414106 5.90403598748029 22.016735602845 23.4084077505497 6.12899644817602 22.4891182920639 23.112382111333 5.90249112550599 22.0163030617427 21.0125629909052 4.99474875895518 19.3989307813447 21.0119552195865 4.99464662962139 19.3989285606196 21.4664137703849 5.14984935333939 20.0838539108242 21.4648564431635 5.14931878208016 20.0838512804835 21.9333388778524 5.29495860870518 20.69767479973 21.9310940593636 5.29376786057108 20.6975865184746 23.9709126837619 6.63795818972061 24.1559565339212 23.9708839359717 6.63746451983711 24.1556560949026 22.3798186387529 5.45221705176934 21.2341199187593 22.377486265328 5.45048298729799 21.2338504404389 21.0020597239175 5.01268575960586 19.5731502507862 21.0014512170919 5.01258391423817 19.5731485936246 21.4693174085566 5.14459317670344 20.245439032413 21.4677606800486 5.14406278482599 20.245430426345 21.9419723935731 5.27793307429172 20.8120145107225 21.9397302962271 5.27674556766105 20.8119111281416 22.7870355948614 5.62688881468699 21.7366820984467 22.7851825643142 5.62504187872696 21.7362470808021 22.3888879449952 5.43197938659898 21.3143237824733 22.3865583039423 5.43025226822529 21.3140366076432 23.4440195653188 6.01997903327624 22.7039556181582 23.443525960867 6.01909015479925 22.7036130356909 23.6872923325038 6.21520332983339 23.2059844418052 23.6872170255769 6.2150066757332 23.2058933976638 23.8764359234263 6.37733313801407 23.7507909086232 23.8763673419906 6.37702845090457 23.7506230008813 24.1018496507512 6.52306177871537 24.9650754014055 24.1018805115587 6.52272038404612 24.9648145322398 22.8135106577003 5.5589024873505 21.9228684590445 22.8116621217176 5.55708084101951 21.9223897505079 23.1657506749127 5.75435553532762 22.3609784666058 23.1646047450103 5.75285623259737 22.3604785436955 21.4918610921076 5.10393784381605 20.6854828727328 21.4903090416846 5.10340906145757 20.6854571131248 20.9917128218465 5.03017523680432 20.0835963516009 20.9911035845502 5.03007367812437 20.0835966944028 23.9130455471751 6.2463002856037 23.9213173990404 23.9129746281501 6.24600285503282 23.9211420706048 21.9806665355265 5.20081288099332 21.1976204938941 24.1313376664987 6.41358260652295 25.0743807029837 21.9784366257453 5.19964022390554 21.197465748497 24.1313656709595 6.41324693998424 25.0741145064441 22.4354680814336 5.32617550975165 21.6687021723747 22.43315245217 5.32448373132854 21.6683390201976 21.5010381812376 5.08732351856807 20.7977118359542 21.4994880386953 5.08679543787279 20.7976814994487 21.9902459393364 5.18149276592145 21.2754057955389 21.9880190448684 5.18032383966775 21.2752406566055 20.9947923982319 5.0249102174408 20.2445400112628 20.9941833752737 5.02480857054549 20.2445409909722 23.2004944220625 5.65222532324823 22.5653693770565 23.1993491199021 5.65075674805714 22.5648297990657 23.5029762906642 5.83023956396318 23.0310916512306 23.5024790734427 5.82938359139184 23.0307106667314 23.7531843505459 5.98740653409274 23.5394854485225 23.7531071471906 5.98721843012781 23.5393853014695 22.8666600608348 5.41916946011135 22.2523783107947 22.4630221710696 5.26211968667592 21.8479912180158 22.864820591181 5.41739870492458 22.2518237118585 22.4607148084735 5.26044867348673 21.8475907113233 24.100355021215 6.16176398724707 24.6931617419113 24.1003104665798 6.16130882353882 24.6928243869344 23.787269177074 5.86577240134266 23.700720460011 23.7871909908231 5.86558887265795 23.7006159240338 21.5421686852763 5.01210460029945 21.176073163135 21.540627100986 5.01157985130864 21.1760268177048 21.0187142947544 4.98423479244248 20.6826010229685 21.0181069552421 4.98413250120169 20.6826034764281 22.0394352218877 5.0803697846208 21.6193422250554 22.0372237245453 5.07921997462393 21.6191318402124 24.1270757278485 6.05850469065544 24.797024768046 24.1270280239304 6.05805754277422 24.7966807857383 22.9020226868541 5.323757173095 22.4480750366683 21.5523510906062 4.99326567947263 21.2523787912398 22.9001892317717 5.32202085205834 22.4474754938601 21.550811625546 4.99274179104096 21.2523291141491 21.028454139075 4.96762380624152 20.7942625592211 21.0278474878348 4.96752126409081 20.7942653100196 23.2587951774414 5.47599867907521 22.8768915785144 23.257650819886 5.47458340908582 22.8762907601586 23.5660742880611 5.61923508749852 23.3470984743877 23.5655730023935 5.61841644895334 23.3466792882752 22.5183359723875 5.1303149044304 22.1654674273455 22.5160451434075 5.12868591774041 22.165001365356 22.0685245019896 5.01907526523492 21.7934569606152 22.0663220482147 5.01793680385388 21.7932238971342 24.0313581485139 5.80122430629637 24.4300487087975 24.0312798935605 5.80095088191342 24.4298523316212 23.5987083499961 5.50658072151799 23.4998966946527 23.5982049420804 5.50578204095753 23.4994590731141 24.2838716626356 5.81210935174529 25.6079494854126 24.2838850615439 5.81180474067528 25.6076580530664 21.604616713094 4.89462815152478 21.5897878779756 21.6030880532429 4.89410880556371 21.5897231161933 21.0721115954276 4.89247031255972 21.1705024695095 21.0715080383455 4.89236670154409 21.1705059194623 24.0558725977513 5.70442626636577 24.5288164097241 24.0557928975432 5.7041578154143 24.5286162763688 22.555132089819 5.04028246458352 22.3540033922513 22.5528522039584 5.03868211148293 22.353498074795 22.9613347736356 5.15920292271496 22.7461341026557 22.9595112532441 5.15752656618885 22.745464717328 21.082920211666 4.8736578024657 21.2463389392949 21.0823174220505 4.8735539388369 21.24634246581 23.3211068030531 5.28033419553541 23.1773372574485 23.319963114219 5.27897951016519 23.1766752501256 24.3194068724815 5.66223207299975 25.7255983448359 24.3194168572809 5.66193529526317 25.7253013180265 22.1269048634266 4.89288688419546 22.1017801025656 22.124720462344 4.89177168923691 22.1015064633854 21.6355113897842 4.83482630641665 21.7605717780575 21.6339890680682 4.83430977220965 21.7604990551276 23.89769319049 5.45172508407618 24.1831344773071 23.89761195153 5.45155663483879 24.1830175214453 23.3533235994758 5.17588361283479 23.3226148043975 23.3521802003296 5.17456135515863 23.3219231640201 24.2655037773283 5.49062207581987 25.3048955552115 24.2654400728258 5.49021807063103 25.304520368366 22.165731006593 4.8067039910474 22.2847887546338 22.1635585615281 4.80560489451689 22.2844903213761 23.9206651033231 5.36134519720303 24.2772130812329 23.9205832739132 5.36117986313406 24.2770939145501 22.6168226958257 4.88512892757865 22.6408821833843 22.6145610193184 4.88357885001884 22.6403151990017 21.1383779954994 4.77521231408839 21.5814521061451 21.1377791178243 4.77510724709789 21.5814555498602 23.0246509686883 4.97683641804505 23.0330785505847 23.0228376649246 4.97522860685472 23.0323387957408 24.2977484077723 5.34917981796808 25.4168619805967 24.297680977684 5.34878660399061 25.4164799091076 21.6974958494298 4.71174214046169 22.0628312771254 21.6959861845465 4.7112316666735 22.0627436041724 21.1711451364606 4.71557371679714 21.7509102834633 21.1705485538835 4.71546801472671 21.7509133981542 23.7046643082175 5.12210507114101 23.9584289032329 23.7041544743215 5.12137208818624 23.9579390462178 23.0573715746655 4.87951549149245 23.1717981879651 23.0555634542812 4.87794451736389 23.1710241231752 24.1831247166096 5.17122883735211 25.012741061352 24.1830377199176 5.17098702625087 25.0125233001853 23.7267867704068 5.03783057706463 24.0482545568803 23.7262757595456 5.03711115450606 24.0477553864551 22.2308075868912 4.6583576036774 22.5629139431041 22.2286551259175 4.65728728970101 22.5625758016634 21.7387112041962 4.62774329360946 22.2420689726863 21.737209939334 4.6272372569139 22.2419717187339 22.6826174745379 4.71356229749781 22.9164925114712 22.6803749214963 4.71207038195467 22.9158625163577 24.4592187247646 5.02689718917969 26.1682740807887 24.459215040837 5.02663490191387 26.1679552256563 24.2127698347132 5.03843624043712 25.1194314466464 24.2126811420048 5.03820105580652 25.1192098051748 21.2368717146209 4.59295143670509 22.0504886564392 21.236279723401 4.59284463830757 22.0504906735771 23.4580823059016 4.81842619388476 23.7597888282322 23.4569403251706 4.81721084043966 23.7590127642504 22.716601321818 4.62206566232861 23.0496586209056 22.7143685426728 4.620605264482 23.0489975572338 24.4997608609185 4.82628131139445 26.291200493101 24.4997531333807 4.82603039695204 26.2908753291702 23.48001363224 4.73973092636353 23.8457961569626 23.4788721424487 4.73853766762662 23.8450049445903 24.0401558945708 4.862479294867 24.739137250224 24.0400711077208 4.86233060824583 24.7390077069328 21.8077902667736 4.48337708868343 22.5140559764913 21.8063031063096 4.48287949347429 22.5139427066164 22.3001779305815 4.49474605792712 22.8294873759795 22.2980466681032 4.49370990474501 22.8291076663056 21.2805745663913 4.50937732872516 22.2278925895661 21.279985632809 4.50926994227815 22.2278936139289 24.4243979323942 4.75080388184488 25.8374066559429 24.4243156067974 4.75045774689524 25.8369978143111 24.0679959219598 4.73821274755631 24.8409844059787 24.0679104461022 4.738068190504 24.8408525769182 23.1638388042429 4.54560975118886 23.5902022265216 23.1620477059293 4.5441608058278 23.5893293814753 22.3359934399958 4.40759011888561 22.9581614950613 22.3338730590075 4.40657279928371 22.9577608999895 24.4610496653522 4.56231533242024 25.9539499284501 24.4609629389078 4.56198457813449 25.9535333800023 23.1861613925793 4.471790221883 23.6728238143043 23.1843739798159 4.47036659770393 23.6719330332836 23.8420492215308 4.57158882387821 24.4901843839309 23.8415324291242 4.57094188758826 24.4896413223172 21.8814242661317 4.32461398611723 22.7740756429365 21.8799521919713 4.3241272524086 22.7739447355608 21.3538415247606 4.36599064988048 22.4966474337962 21.3532577541241 4.36588257024383 22.4966463803509 24.3290182298097 4.47766991837418 25.51948124607 24.3289227393585 4.4774634635853 25.5192445421152 23.8688994200263 4.45541367433612 24.5876195382718 23.8683812576201 4.45478472216099 24.5870667682169 22.8271724584701 4.30753416108168 23.4519512792476 22.8249712556028 4.30617920215314 23.4511992148583 24.6211140323157 4.16630071757899 26.6469461174605 24.6210948501623 4.1660842719384 26.6466050177327 21.9194331253484 4.24017646376964 22.899407772053 21.917968829172 4.2396960253508 22.8992676682971 22.8503654157099 4.23774834741109 23.5316226648596 22.8481708338168 4.23641544075592 23.5308537627659 24.3625944270263 4.30142620893854 25.6301317424774 24.3624969228825 4.30122908007214 25.6298907120249 23.5943850837198 4.30335156477316 24.26966318387 23.5932463960765 4.30227679337262 24.2687999690703 24.6623136381485 3.91624647723606 26.7639201421309 24.6622907881123 3.91604191554937 26.76357454974 21.4319747592874 4.20875671894889 22.7528987968978 21.4313965617044 4.20864841570322 22.7528949303617 24.1769812815095 4.21434195633609 25.2222343394625 24.1768930144046 4.21421524384608 25.222093634824 23.6210121042129 4.1945957362094 24.3630887721583 23.6198739804136 4.19355046397272 24.3622095043646 22.4524673415727 4.10769725298551 23.3471357319487 22.4503819797642 4.10674420379367 23.3466722255549 24.5714610582565 3.93897229675923 26.29369135959 24.5713620591534 3.93868787278572 26.2932556245955 21.4723092126698 4.12529598702993 22.8761896245813 21.4717339037904 4.12518777918565 22.8761840990336 22.4768903537492 4.04099256808009 23.4243106899705 22.474812258994 4.04005317103005 23.4238351966293 23.3025866297358 4.06163735283221 24.0804975977792 23.3008182770274 4.06035047626614 24.0795203870676 24.2083973471631 4.05005045298478 25.3274866873323 24.2083082441553 4.0499295119752 25.3273434342212 24.6091840869679 3.70151305753587 26.4061925531633 24.6090812246955 3.70124451876402 26.4057515004081 23.9738210529804 3.96649171351686 24.9517198427781 23.9732970904553 3.96594044411354 24.9511292799714 23.3296661475893 3.95943251768639 24.1702927804328 23.327902063842 3.95817994676058 24.1692960646589 22.0429651650038 3.94973553772997 23.278099045677 22.0415259084002 3.94927776853756 23.2779297667249 24.464515239649 3.71487933464823 25.9552833780868 24.4644122490598 3.71471017043988 25.9550316876242 22.9712675988188 3.84950048540989 23.9249489619484 22.9691069785268 3.84828821472848 23.9240972668405 22.0688495046963 3.88506715801231 23.3532726281536 22.0674154243216 3.88461439749001 23.3530975030084 24.004003989583 3.81349659972073 25.0520446628076 24.0034782150692 3.81297043555874 25.0514432296637 24.7614012073112 3.2346301168013 27.0376653088273 24.7613696964159 3.23445660629033 27.0373097085955 23.7248688098457 3.73775732390445 24.7115463444757 23.7237320811451 3.73683983953268 24.7106042783097 22.9993569911081 3.75282381791592 24.011480515567 22.9972040659425 3.7516422315726 24.0106098106791 24.499595768909 3.49000978732383 26.0637663407649 24.4994910965216 3.48985017338946 26.0635117303921 21.6033372892149 3.83870492203548 23.2480793395267 21.602771306445 3.83859788433407 23.2480677317537 24.8030103307123 2.89980418197109 27.1505195853015 24.8029746286305 2.89964983865624 27.1501580844444 24.3045353677953 3.49928587974241 25.6393758456865 24.3044440863334 3.49918219365018 25.6392263432082 22.6040955826999 3.66977065673557 23.8051967827601 22.6020547122129 3.66890778769356 23.8046605674432 23.7546846334699 3.59513966978208 24.8073639493726 23.7535480561894 3.59426357826767 24.8064037487859 21.6307703489256 3.77493855221918 23.321829494803 21.630206292598 3.7748319008901 23.3218165158731 24.7000899769651 3.05272867718718 26.6700069436168 24.6999780577358 3.05250146213691 26.6695541188748 23.4351011895883 3.53105604529335 24.5044992058603 23.4333527336347 3.5299531033711 24.5034256092401 22.6336181644471 3.57747095304342 23.8888400466025 22.6315857837436 3.57662805061311 23.8882895436562 24.3378801440068 3.28662042358092 25.744236333057 24.3377882303793 3.28652261628931 25.7440851262283 24.0970691802823 3.29647672825861 25.3518463124514 24.0965393188123 3.29602551495976 25.3512181724961 24.7376871048906 2.73809268480813 26.7769251866489 24.737570666496 2.73789079758005 26.7764652295098 23.4653133480423 3.39768132790825 24.5961894801417 23.4635690728598 3.39662714367079 24.5950935405151 22.2035439051724 3.52551033226573 23.7238080555331 22.202136374566 3.52508735323052 23.7236018601359 24.5843317162722 2.87392812099829 26.3187005284671 24.5842231375027 2.87379328534654 26.3184394719712 23.108559724247 3.34869061608903 24.332759594344 23.1064358289316 3.34764455043967 24.3318131554718 24.882492643634 2.11544207842427 27.3609926285765 24.8824485945835 2.11533734963538 27.3606191660157 22.234779823253 3.43632102964076 23.8049754236276 22.2333783852281 3.43590627709847 23.8047616396548 24.1295753242921 3.09530239031076 25.4534053989707 24.1290445163337 3.09487669408751 25.4527699421085 23.847187475419 3.10910016098742 25.0960495109582 23.8460534241123 3.10834767207625 25.095044353022 23.1398032180746 3.22325372095935 24.4206770556781 23.1376873729496 3.22225230484113 24.4197084046697 24.6187747254374 2.57928883771479 26.4201785271531 24.6186640806992 2.57916912456234 26.4199134814973 21.7734199551513 3.42118966562015 23.6845022738707 21.7728658115137 3.42108642348662 23.6844812539134 24.4186111063741 2.7021845872135 25.9911695275434 24.4185177495446 2.70210202007662 25.9910145512702 24.9148765810743 1.69403167573573 27.4452869371528 24.9148295497549 1.69394989089395 27.4449099870946 22.7482683222894 3.19285498664839 24.1985331059409 22.7462684028764 3.19210228588747 24.1979248209964 23.8796792283345 2.91847669159412 25.1945445923047 23.8785467146577 2.91776632565574 25.1935269454814 24.809163377189 2.00583850822122 26.9753561035088 24.8090378943464 2.00570181580244 26.974881666234 21.8064877110324 3.33371748643375 23.7636943977399 21.805935858425 3.33361546846449 23.7636712744626 23.5594515549676 2.93926455058749 24.8745674799632 23.5577220895365 2.93835625455189 24.8734152467363 22.7810354114219 3.07390218775791 24.2830324377721 22.7790446318808 3.07317979039776 24.2824069873442 24.4508270275199 2.42684194534475 26.0876637356414 24.4507328004861 2.42676866750705 26.0875064001128 24.2084287198639 2.54066791058006 25.6930153518985 24.2078959163024 2.54030844134816 25.6923636009396 24.9431243895309 1.21172829266092 27.5191578450009 24.9430750706401 1.21166784945259 27.5187787651564 22.3560152068635 3.06602163215194 24.1045550737993 24.8387261841379 1.60847988639833 27.0561856066129 24.838597568289 1.60837323530627 27.0557070549805 22.354637299456 3.06564585407823 24.1043099067908 23.5926454688859 2.75806685400805 24.9701691900254 23.5909217806308 2.75720842649961 24.9690009621709 24.6839093087419 1.89840228116161 26.6075567271757 24.6837944828259 1.89832134688681 26.6072835711642 23.2373929769625 2.78863171624323 24.6894461595455 23.2353032313978 2.78776447081314 24.6884202283016 24.9556801948531 0.919206469585554 27.5517343344874 24.9556298763801 0.919158024864053 27.5513543745091 22.3906471308902 2.95195408170845 24.1860245752544 22.3892759223466 2.95159191407246 24.1857699093654 24.2393342808479 2.28350183476974 25.7849234794674 24.2387994648186 2.28318280854316 25.7842615412119 23.9586010978519 2.39126608434413 25.4272943515509 23.9574726378083 2.39066541722836 25.4262485656751 24.8648392321616 1.14852715653937 27.1279793516097 24.8647082865711 1.14844839785995 27.1274983776326 23.2718773710119 2.61558789449402 24.7822783827553 23.2697971367707 2.6147667730873 24.7812356762131 24.7113221856874 1.52468259147328 26.6852746718433 24.7112059824851 1.52461948279165 26.6849992503088 21.9348331193758 2.97197836759416 24.0549707995322 21.9342902048168 2.97188321482532 24.0549386348718 24.5114098599813 1.79538335225346 26.264903635857 24.5113138275766 1.7953338495827 26.2647414985898 22.8834736220929 2.65882970746125 24.542858856707 22.8815115430006 2.65819907965342 24.5421877512309 24.8764651943538 0.868561593582135 27.1597019772631 24.8763332381015 0.868498493787272 27.1592200127314 23.9890415457616 2.15088628382179 25.5149383663614 23.9879127780032 2.15035297123935 25.5138752310202 24.9713746915614 0.255184948869045 27.5918873760384 24.9713229679157 0.255165727692397 27.591505910291 21.971500062194 2.86101628039378 24.1338935182057 21.9709597199897 2.86092381616 24.1338585311974 23.6733232434395 2.25547088192388 25.1963507198396 23.671613735878 2.25474313052814 25.19514587985 24.9724281438523 0.112527057350416 27.5946969916382 24.972376286719 0.112515077897299 27.5943153089256 22.9196973443479 2.49253503707104 24.6330248131924 22.9177454428116 2.49193626818484 24.6323398243068 24.7358731653709 1.0866633380997 26.7552614601511 24.7357559937814 1.0866167595729 26.7549847384075 24.537381367773 1.44436796869158 26.3397996249382 24.5372847969917 1.44432938112785 26.339636152999 24.2971316215098 1.6985575944486 25.9528266449603 24.296592324795 1.69834208205162 25.9521439623503 22.4988884491412 2.55176594332741 24.4376378167747 22.4975379362381 2.55144560761097 24.4373568249707 23.7040414619465 2.03027015992563 25.2799918574112 23.7023354183614 2.02962342869494 25.2787650073073 24.7468250690156 0.819005004373591 26.7862480929929 24.7467074827295 0.818967697169322 26.7859708434479 23.3556953251725 2.13445433749111 25.0020617712498 23.3536381124515 2.13375530411828 25.0009799226322 24.8908386633507 0.235102117337952 27.1983692756178 24.8907052510257 0.235077109162392 27.1978855582613 22.5371536194002 2.3906778482171 24.5252506731495 24.8917627956171 0.100015575764721 27.2009592376788 22.5358103397654 2.3903723038446 24.5249612942461 24.5609672457845 1.02739554128432 26.4081757044194 24.5608703434996 1.02736706939616 26.4080114723404 24.3223503572537 1.36889432560722 26.0251189888838 24.3218100763558 1.36872633506699 26.0244304881539 24.0456814553512 1.60894358504221 25.6741585973398 24.0445509982107 1.60858303477518 25.6730601373063 23.387314227783 1.92265375947091 25.0819183506687 23.3852642481817 1.9220316138373 25.0808137588195 22.0859946307428 2.47050370567358 24.3782574097556 22.0854621555282 2.47041983112721 24.3782141179882 24.5715106661687 0.771538776356266 26.4385094173897 24.5714136265775 0.771515975637057 26.4383448772933 23.0077125640584 2.02939522461315 24.8465196540348 23.0057851720276 2.02888218700033 24.8458015399409 24.7602084114457 0.215471164226321 26.8235959404781 24.760090198597 0.215456392719218 26.8233177338944 24.0707741314418 1.29903210580558 25.7439907533211 24.3455449383423 0.971709382530826 26.0920047703686 24.0696443568421 1.29875097190156 25.7428821569281 24.3450043781113 0.97158543470503 26.0913129101141 23.7609582352761 1.52733949465803 25.4310640797125 23.7592574227807 1.52690152818389 25.4297924419252 22.1264346925629 2.31289406764652 24.4634942239936 22.1259049416376 2.31281337390968 24.4634481179375 23.04072650543 1.8290519059513 24.9227928758524 23.0388076063686 1.82859422316429 24.922056276343 24.3559343648553 0.726946184347283 26.1217334703666 24.3553937254179 0.726846930917846 26.1210402421435 22.6300799209128 1.94172461980681 24.7325763999637 22.6287540313799 1.94146008643254 24.732266473509 24.5842493191645 0.196685405168366 26.4746668248299 24.5841520452702 0.19667638512636 26.4745017217796 23.7864693694335 1.23538351525117 25.4985195900345 23.7847723018446 1.23504178569598 25.4972346427824 24.0940946758628 0.920158301634031 25.8094341925047 24.0929664248983 0.919950823297269 25.8083195430308 23.4457174166603 1.45436963426485 25.2252924591502 23.443679882285 1.4539471300831 25.2241416241096 22.6648497227359 1.7507109025391 24.8054821320526 22.663530218448 1.75047401667884 24.8051612503164 24.1045589846997 0.68566496302489 25.8385727009997 24.1034314877921 0.685498811250311 25.8374555604268 24.3683612752612 0.179051189600315 26.1567899504771 24.3678202789937 0.179011954583695 26.1560942525596 22.2245897185776 1.87384344196235 24.6649060836199 22.2240665186544 1.8737722189285 24.6648528451524 23.4720984674983 1.17841886173935 25.2904107382749 23.8103602649197 0.873173885479649 25.5625108217755 23.4700675055297 1.1780888239968 25.2892455303435 23.8086675387505 0.872921547398566 25.5612175357096 23.1015868013348 1.39067876186224 25.0588833994673 23.0996831074 1.39036657750563 25.058109236037 23.8210956569184 0.648036094283295 25.5910475607907 23.8194049558517 0.647833979956355 25.589750794105 22.2613242328084 1.68974978315569 24.7347365277516 22.2608035491425 1.68968556248615 24.7346796804267 24.1169753858089 0.162738336790293 25.8725783340059 24.1158484256281 0.162672702683691 25.871456831221 23.4969227412647 0.831092705034375 25.3528967581084 23.4948984948509 0.830848772139143 25.3517220254816 23.1291910205033 1.12862765548436 25.1216790800177 23.1272945865713 1.12838336364517 25.1208926036031 22.7288913604079 1.33707726121477 24.9347297644044 22.7275835406165 1.33691454119136 24.9343866175324 23.5080891223047 0.61432532028066 25.3808003695541 23.5060679557237 0.614129870926025 25.3796215995853 23.8337619987636 0.14787888953841 25.6240208622563 23.8320733688323 0.14779910306928 25.6227182549711 23.155226088272 0.794267565357474 25.1825797318995 23.1533366689326 0.794086743143455 25.1817845946433 22.7579703790928 1.08663130091134 24.9952146016551 22.7566678471281 1.08650361024642 24.9948636902904 22.328992294071 1.29497989865405 24.8577300308465 22.3284762926776 1.29493522165439 24.8576658367085 23.1669452532254 0.584812157218641 25.2098061143214 23.1650590252186 0.584667194543941 25.2090072491571 23.5212204154538 0.13457574905929 25.4127362657371 23.5192026899955 0.134498648102117 25.4115510388169 22.7854047412831 0.763150348899483 25.0544393849433 22.7841071493363 0.763055612780842 25.05408266554 22.3596806514263 1.05352683321876 24.9159550303988 22.3591666911929 1.05349159776396 24.9158880745284 22.7977589088373 0.559856141269846 25.0809389640533 22.7964635539098 0.559780125048851 25.0805797070616 23.1807089113114 0.122937929196161 25.2406851340561 23.1788264020377 0.122880792421004 25.2398805908207 22.3885989661582 0.738546695044588 24.9734344625529 22.3880868650171 0.738520444679602 24.9733653017864 22.4016239961834 0.540101100608226 24.9991657466261 22.4011127342178 0.540080004209725 24.9990956079263 22.8122731889587 0.113106818160916 25.1107372618551 22.8109805116136 0.1130768925812 25.110374320011 22.4169501268581 0.105336821223807 25.0278744820407 22.4164398912284 0.105328534212666 25.0278029890699 0 0.00325162200704329 0 0.996777201474697 0 0.0537891404946056 0 0.104326658982168 0 0.15486417746973 0 0.205401695957292 0 0.255939214444855 0 0.306476732932417 0 0.357014251419979 0 0.407551769907541 0 0.444393620884974 0 0.475095163366168 0 0.498121320227064 0 0.519441835839004 0 0.540762351450945 0 0.562082867062885 0 0.590510221212139 0 0.62249099463005 0 0.65447176804796 0 0.697112799271841 0 0.745083959398707 0 0.793055119525573 0 0.841026279652439 0 0.888997439779305 0 0.936968599906171 0 0.966872900690434 1 0.00612146209310982 0.0930423368131518 0.00344411426765535 0.18133864405206 0.00365830344112719 0.265552201761689 0.00389240268126656 0.346404206319428 0.00414377639197152 0.424692096154442 0.00440899087116106 0.501374802655922 0.00468405977384094 0.57749338611089 0.00496394293827155 0.654240785363859 0.00524225798055921 0.733008069976284 0.00551059351870731 0.815610901995516 0.00575799711171274 0.90400352494736 0.00596863261670825 1 0.991014864868108 0.0931286782902436 0.996392500808042 0.18144674167685 0.995962758573131 0.265615372618393 0.995491690285682 0.346364993769307 0.9949849214488 0.424513962169251 0.994449832834125 0.501054730166825 0.993894966731143 0.577062354226008 0.993331025628185 0.653762169194512 0.992771361769016 0.732580795868886 0.992233179457659 0.815322309518734 0.991738664152555 0.903888266870532 0.991319098972267 1 0.0511356828195542 1 0.0961499035459985 1 0.141164124272443 1 0.186178344998887 1 0.231192565725332 1 0.276206786451776 1 0.32122100717822 1 0.366235227904665 1 0.411249448631109 1 0.451762247284909 1 0.481296077503529 1 0.503446450167494 1 0.52395605448598 1 0.544465658804467 1 0.571811797895782 1 0.602576204373511 1 0.643595413010483 1 0.689742022727077 1 0.735888632443671 1 0.782035242160264 1 0.828181851876858 1 0.874328461593452 1 0.920475071310046 1 0.955744968089076 0.0930423368131518 0.00612146209310982 0.0931286782902436 0.00612146209310982 0.18133864405206 0.00612146209310982 0.18144674167685 0.00612146209310982 0.265552201761689 0.00612146209310982 0.265615372618393 0.00612146209310982 0.0930423368131518 0.0511356828195542 0.0931286782902436 0.0511356828195542 0.0930423368131518 0.0537891404946056 0.0931286782902436 0.0537891404946056 0.346364993769307 0.00612146209310982 0.346404206319428 0.00612146209310982 0.18133864405206 0.0511356828195542 0.18144674167685 0.0511356828195542 0.18133864405206 0.0537891404946056 0.18144674167685 0.0537891404946056 0.424513962169251 0.00612146209310982 0.424692096154442 0.00612146209310982 0.265552201761689 0.0511356828195542 0.265615372618393 0.0511356828195542 0.265552201761689 0.0537891404946056 0.265615372618393 0.0537891404946056 0.0930423368131518 0.0961499035459985 0.0931286782902436 0.0961499035459985 0.0930423368131518 0.104326658982168 0.0931286782902436 0.104326658982168 0.501054730166825 0.00612146209310982 0.501374802655922 0.00612146209310982 0.346364993769307 0.0511356828195542 0.346404206319428 0.0511356828195542 0.346364993769307 0.0537891404946056 0.346404206319428 0.0537891404946056 0.18133864405206 0.0961499035459985 0.18144674167685 0.0961499035459985 0.577062354226008 0.00612146209310982 0.57749338611089 0.00612146209310982 0.18133864405206 0.104326658982168 0.18144674167685 0.104326658982168 0.424513962169251 0.0511356828195542 0.424692096154442 0.0511356828195542 0.424513962169251 0.0537891404946056 0.424692096154442 0.0537891404946056 0.265552201761689 0.0961499035459985 0.265615372618393 0.0961499035459985 0.0930423368131518 0.141164124272443 0.0931286782902436 0.141164124272443 0.653762169194512 0.00612146209310982 0.654240785363859 0.00612146209310982 0.265552201761689 0.104326658982168 0.265615372618393 0.104326658982168 0.501054730166825 0.0511356828195542 0.501374802655922 0.0511356828195542 0.501054730166825 0.0537891404946056 0.501374802655922 0.0537891404946056 0.0930423368131518 0.15486417746973 0.0931286782902436 0.15486417746973 0.346364993769307 0.0961499035459985 0.346404206319428 0.0961499035459985 0.732580795868886 0.00612146209310982 0.733008069976284 0.00612146209310982 0.18133864405206 0.141164124272443 0.18144674167685 0.141164124272443 0.346364993769307 0.104326658982168 0.346404206319428 0.104326658982168 0.577062354226008 0.0511356828195542 0.57749338611089 0.0511356828195542 0.577062354226008 0.0537891404946056 0.57749338611089 0.0537891404946056 0.18133864405206 0.15486417746973 0.18144674167685 0.15486417746973 0.424513962169251 0.0961499035459985 0.424692096154442 0.0961499035459985 0.815322309518734 0.00612146209310982 0.815610901995516 0.00612146209310982 0.265552201761689 0.141164124272443 0.265615372618393 0.141164124272443 0.424513962169251 0.104326658982168 0.424692096154442 0.104326658982168 0.0930423368131518 0.186178344998887 0.0931286782902436 0.186178344998887 0.653762169194512 0.0511356828195542 0.654240785363859 0.0511356828195542 0.653762169194512 0.0537891404946056 0.654240785363859 0.0537891404946056 0.501054730166825 0.0961499035459985 0.501374802655922 0.0961499035459985 0.265552201761689 0.15486417746973 0.265615372618393 0.15486417746973 0.346364993769307 0.141164124272443 0.346404206319428 0.141164124272443 0.501054730166825 0.104326658982168 0.501374802655922 0.104326658982168 0.903888266870532 0.00612146209310982 0.90400352494736 0.00612146209310982 0.0930423368131518 0.205401695957292 0.0931286782902436 0.205401695957292 0.732580795868886 0.0511356828195542 0.733008069976284 0.0511356828195542 0.18133864405206 0.186178344998887 0.18144674167685 0.186178344998887 0.732580795868886 0.0537891404946056 0.733008069976284 0.0537891404946056 0.577062354226008 0.0961499035459985 0.57749338611089 0.0961499035459985 0.346364993769307 0.15486417746973 0.346404206319428 0.15486417746973 0.424513962169251 0.141164124272443 0.424692096154442 0.141164124272443 0.577062354226008 0.104326658982168 0.57749338611089 0.104326658982168 0.18133864405206 0.205401695957292 0.18144674167685 0.205401695957292 0.815322309518734 0.0511356828195542 0.815610901995516 0.0511356828195542 0.265552201761689 0.186178344998887 0.265615372618393 0.186178344998887 0.815322309518734 0.0537891404946056 0.815610901995516 0.0537891404946056 0.0930423368131518 0.231192565725332 0.0931286782902436 0.231192565725332 0.653762169194512 0.0961499035459985 0.654240785363859 0.0961499035459985 0.424513962169251 0.15486417746973 0.424692096154442 0.15486417746973 0.501054730166825 0.141164124272443 0.501374802655922 0.141164124272443 0.653762169194512 0.104326658982168 0.654240785363859 0.104326658982168 0.265552201761689 0.205401695957292 0.265615372618393 0.205401695957292 0.346364993769307 0.186178344998887 0.346404206319428 0.186178344998887 0.903888266870532 0.0511356828195542 0.90400352494736 0.0511356828195542 0.903888266870532 0.0537891404946056 0.90400352494736 0.0537891404946056 0.732580795868886 0.0961499035459985 0.733008069976284 0.0961499035459985 0.18133864405206 0.231192565725332 0.18144674167685 0.231192565725332 0.501054730166825 0.15486417746973 0.501374802655922 0.15486417746973 0.0930423368131518 0.255939214444855 0.0931286782902436 0.255939214444855 0.577062354226008 0.141164124272443 0.57749338611089 0.141164124272443 0.732580795868886 0.104326658982168 0.733008069976284 0.104326658982168 0.424513962169251 0.186178344998887 0.424692096154442 0.186178344998887 0.346364993769307 0.205401695957292 0.346404206319428 0.205401695957292 0.815322309518734 0.0961499035459985 0.815610901995516 0.0961499035459985 0.577062354226008 0.15486417746973 0.57749338611089 0.15486417746973 0.265552201761689 0.231192565725332 0.265615372618393 0.231192565725332 0.0930423368131518 0.276206786451776 0.0931286782902436 0.276206786451776 0.18133864405206 0.255939214444855 0.18144674167685 0.255939214444855 0.653762169194512 0.141164124272443 0.654240785363859 0.141164124272443 0.815322309518734 0.104326658982168 0.815610901995516 0.104326658982168 0.501054730166825 0.186178344998887 0.501374802655922 0.186178344998887 0.424513962169251 0.205401695957292 0.424692096154442 0.205401695957292 0.653762169194512 0.15486417746973 0.654240785363859 0.15486417746973 0.346364993769307 0.231192565725332 0.346404206319428 0.231192565725332 0.903888266870532 0.0961499035459985 0.90400352494736 0.0961499035459985 0.732580795868886 0.141164124272443 0.733008069976284 0.141164124272443 0.18133864405206 0.276206786451776 0.18144674167685 0.276206786451776 0.265552201761689 0.255939214444855 0.265615372618393 0.255939214444855 0.903888266870532 0.104326658982168 0.90400352494736 0.104326658982168 0.577062354226008 0.186178344998887 0.57749338611089 0.186178344998887 0.501054730166825 0.205401695957292 0.501374802655922 0.205401695957292 0.0930423368131518 0.306476732932417 0.0931286782902436 0.306476732932417 0.732580795868886 0.15486417746973 0.733008069976284 0.15486417746973 0.424513962169251 0.231192565725332 0.424692096154442 0.231192565725332 0.815322309518734 0.141164124272443 0.815610901995516 0.141164124272443 0.346364993769307 0.255939214444855 0.346404206319428 0.255939214444855 0.265552201761689 0.276206786451776 0.265615372618393 0.276206786451776 0.0930423368131518 0.32122100717822 0.0931286782902436 0.32122100717822 0.653762169194512 0.186178344998887 0.654240785363859 0.186178344998887 0.577062354226008 0.205401695957292 0.57749338611089 0.205401695957292 0.18133864405206 0.306476732932417 0.18144674167685 0.306476732932417 0.501054730166825 0.231192565725332 0.501374802655922 0.231192565725332 0.815322309518734 0.15486417746973 0.815610901995516 0.15486417746973 0.424513962169251 0.255939214444855 0.424692096154442 0.255939214444855 0.346364993769307 0.276206786451776 0.346404206319428 0.276206786451776 0.903888266870532 0.141164124272443 0.90400352494736 0.141164124272443 0.653762169194512 0.205401695957292 0.732580795868886 0.186178344998887 0.654240785363859 0.205401695957292 0.733008069976284 0.186178344998887 0.18133864405206 0.32122100717822 0.18144674167685 0.32122100717822 0.265552201761689 0.306476732932417 0.265615372618393 0.306476732932417 0.577062354226008 0.231192565725332 0.57749338611089 0.231192565725332 0.903888266870532 0.15486417746973 0.90400352494736 0.15486417746973 0.501054730166825 0.255939214444855 0.501374802655922 0.255939214444855 0.0930423368131518 0.357014251419979 0.0931286782902436 0.357014251419979 0.424513962169251 0.276206786451776 0.424692096154442 0.276206786451776 0.732580795868886 0.205401695957292 0.733008069976284 0.205401695957292 0.815322309518734 0.186178344998887 0.815610901995516 0.186178344998887 0.265552201761689 0.32122100717822 0.265615372618393 0.32122100717822 0.0930423368131518 0.366235227904665 0.0931286782902436 0.366235227904665 0.653762169194512 0.231192565725332 0.654240785363859 0.231192565725332 0.346364993769307 0.306476732932417 0.346404206319428 0.306476732932417 0.577062354226008 0.255939214444855 0.57749338611089 0.255939214444855 0.501054730166825 0.276206786451776 0.501374802655922 0.276206786451776 0.18133864405206 0.357014251419979 0.18144674167685 0.357014251419979 0.815322309518734 0.205401695957292 0.815610901995516 0.205401695957292 0.346364993769307 0.32122100717822 0.346404206319428 0.32122100717822 0.903888266870532 0.186178344998887 0.90400352494736 0.186178344998887 0.732580795868886 0.231192565725332 0.424513962169251 0.306476732932417 0.424692096154442 0.306476732932417 0.733008069976284 0.231192565725332 0.18133864405206 0.366235227904665 0.18144674167685 0.366235227904665 0.653762169194512 0.255939214444855 0.654240785363859 0.255939214444855 0.577062354226008 0.276206786451776 0.57749338611089 0.276206786451776 0.265552201761689 0.357014251419979 0.265615372618393 0.357014251419979 0.424513962169251 0.32122100717822 0.424692096154442 0.32122100717822 0.903888266870532 0.205401695957292 0.90400352494736 0.205401695957292 0.501054730166825 0.306476732932417 0.501374802655922 0.306476732932417 0.0930423368131518 0.407551769907541 0.0931286782902436 0.407551769907541 0.815322309518734 0.231192565725332 0.815610901995516 0.231192565725332 0.265552201761689 0.366235227904665 0.265615372618393 0.366235227904665 0.0930423368131518 0.411249448631109 0.0931286782902436 0.411249448631109 0.732580795868886 0.255939214444855 0.733008069976284 0.255939214444855 0.653762169194512 0.276206786451776 0.654240785363859 0.276206786451776 0.346364993769307 0.357014251419979 0.346404206319428 0.357014251419979 0.501054730166825 0.32122100717822 0.501374802655922 0.32122100717822 0.577062354226008 0.306476732932417 0.57749338611089 0.306476732932417 0.346364993769307 0.366235227904665 0.346404206319428 0.366235227904665 0.18133864405206 0.407551769907541 0.18144674167685 0.407551769907541 0.903888266870532 0.231192565725332 0.90400352494736 0.231192565725332 0.815322309518734 0.255939214444855 0.732580795868886 0.276206786451776 0.815610901995516 0.255939214444855 0.733008069976284 0.276206786451776 0.18133864405206 0.411249448631109 0.18144674167685 0.411249448631109 0.424513962169251 0.357014251419979 0.424692096154442 0.357014251419979 0.577062354226008 0.32122100717822 0.57749338611089 0.32122100717822 0.653762169194512 0.306476732932417 0.654240785363859 0.306476732932417 0.0930423368131518 0.444393620884974 0.0931286782902436 0.444393620884974 0.424513962169251 0.366235227904665 0.424692096154442 0.366235227904665 0.265552201761689 0.407551769907541 0.265615372618393 0.407551769907541 0.0930423368131518 0.451762247284909 0.0931286782902436 0.451762247284909 0.815322309518734 0.276206786451776 0.815610901995516 0.276206786451776 0.265552201761689 0.411249448631109 0.265615372618393 0.411249448631109 0.903888266870532 0.255939214444855 0.90400352494736 0.255939214444855 0.501054730166825 0.357014251419979 0.501374802655922 0.357014251419979 0.653762169194512 0.32122100717822 0.654240785363859 0.32122100717822 0.732580795868886 0.306476732932417 0.733008069976284 0.306476732932417 0.501054730166825 0.366235227904665 0.18133864405206 0.444393620884974 0.18144674167685 0.444393620884974 0.501374802655922 0.366235227904665 0.346364993769307 0.407551769907541 0.346404206319428 0.407551769907541 0.346364993769307 0.411249448631109 0.346404206319428 0.411249448631109 0.18133864405206 0.451762247284909 0.18144674167685 0.451762247284909 0.903888266870532 0.276206786451776 0.90400352494736 0.276206786451776 0.0930423368131518 0.475095163366168 0.0931286782902436 0.475095163366168 0.577062354226008 0.357014251419979 0.57749338611089 0.357014251419979 0.732580795868886 0.32122100717822 0.733008069976284 0.32122100717822 0.0930423368131518 0.481296077503529 0.0931286782902436 0.481296077503529 0.815322309518734 0.306476732932417 0.815610901995516 0.306476732932417 0.577062354226008 0.366235227904665 0.57749338611089 0.366235227904665 0.265552201761689 0.444393620884974 0.265615372618393 0.444393620884974 0.424513962169251 0.407551769907541 0.424692096154442 0.407551769907541 0.424513962169251 0.411249448631109 0.424692096154442 0.411249448631109 0.265552201761689 0.451762247284909 0.265615372618393 0.451762247284909 0.653762169194512 0.357014251419979 0.654240785363859 0.357014251419979 0.18133864405206 0.475095163366168 0.18144674167685 0.475095163366168 0.815322309518734 0.32122100717822 0.815610901995516 0.32122100717822 0.0930423368131518 0.498121320227064 0.0931286782902436 0.498121320227064 0.18133864405206 0.481296077503529 0.18144674167685 0.481296077503529 0.653762169194512 0.366235227904665 0.654240785363859 0.366235227904665 0.0930423368131518 0.503446450167494 0.0931286782902436 0.503446450167494 0.903888266870532 0.306476732932417 0.90400352494736 0.306476732932417 0.346364993769307 0.444393620884974 0.346404206319428 0.444393620884974 0.501054730166825 0.407551769907541 0.501374802655922 0.407551769907541 0.501054730166825 0.411249448631109 0.501374802655922 0.411249448631109 0.732580795868886 0.357014251419979 0.733008069976284 0.357014251419979 0.346364993769307 0.451762247284909 0.346404206319428 0.451762247284909 0.265552201761689 0.475095163366168 0.265615372618393 0.475095163366168 0.903888266870532 0.32122100717822 0.90400352494736 0.32122100717822 0.0930423368131518 0.519441835839004 0.0931286782902436 0.519441835839004 0.18133864405206 0.498121320227064 0.18144674167685 0.498121320227064 0.732580795868886 0.366235227904665 0.733008069976284 0.366235227904665 0.265552201761689 0.481296077503529 0.265615372618393 0.481296077503529 0.0930423368131518 0.52395605448598 0.0931286782902436 0.52395605448598 0.18133864405206 0.503446450167494 0.18144674167685 0.503446450167494 0.424513962169251 0.444393620884974 0.424692096154442 0.444393620884974 0.577062354226008 0.407551769907541 0.57749338611089 0.407551769907541 0.577062354226008 0.411249448631109 0.57749338611089 0.411249448631109 0.424513962169251 0.451762247284909 0.424692096154442 0.451762247284909 0.815322309518734 0.357014251419979 0.815610901995516 0.357014251419979 0.346364993769307 0.475095163366168 0.346404206319428 0.475095163366168 0.265552201761689 0.498121320227064 0.265615372618393 0.498121320227064 0.0930423368131518 0.540762351450945 0.0931286782902436 0.540762351450945 0.18133864405206 0.519441835839004 0.18144674167685 0.519441835839004 0.815322309518734 0.366235227904665 0.815610901995516 0.366235227904665 0.346364993769307 0.481296077503529 0.346404206319428 0.481296077503529 0.501054730166825 0.444393620884974 0.501374802655922 0.444393620884974 0.0930423368131518 0.544465658804467 0.0931286782902436 0.544465658804467 0.653762169194512 0.407551769907541 0.654240785363859 0.407551769907541 0.18133864405206 0.52395605448598 0.18144674167685 0.52395605448598 0.265552201761689 0.503446450167494 0.265615372618393 0.503446450167494 0.653762169194512 0.411249448631109 0.654240785363859 0.411249448631109 0.501054730166825 0.451762247284909 0.501374802655922 0.451762247284909 0.903888266870532 0.357014251419979 0.90400352494736 0.357014251419979 0.424513962169251 0.475095163366168 0.424692096154442 0.475095163366168 0.346364993769307 0.498121320227064 0.346404206319428 0.498121320227064 0.265552201761689 0.519441835839004 0.265615372618393 0.519441835839004 0.0930423368131518 0.562082867062885 0.0931286782902436 0.562082867062885 0.424513962169251 0.481296077503529 0.424692096154442 0.481296077503529 0.18133864405206 0.540762351450945 0.18144674167685 0.540762351450945 0.577062354226008 0.444393620884974 0.57749338611089 0.444393620884974 0.732580795868886 0.407551769907541 0.733008069976284 0.407551769907541 0.903888266870532 0.366235227904665 0.90400352494736 0.366235227904665 0.346364993769307 0.503446450167494 0.346404206319428 0.503446450167494 0.18133864405206 0.544465658804467 0.18144674167685 0.544465658804467 0.265552201761689 0.52395605448598 0.265615372618393 0.52395605448598 0.732580795868886 0.411249448631109 0.733008069976284 0.411249448631109 0.577062354226008 0.451762247284909 0.57749338611089 0.451762247284909 0.0930423368131518 0.571811797895782 0.0931286782902436 0.571811797895782 0.501054730166825 0.475095163366168 0.501374802655922 0.475095163366168 0.424513962169251 0.498121320227064 0.424692096154442 0.498121320227064 0.501054730166825 0.481296077503529 0.501374802655922 0.481296077503529 0.346364993769307 0.519441835839004 0.346404206319428 0.519441835839004 0.653762169194512 0.444393620884974 0.654240785363859 0.444393620884974 0.265552201761689 0.540762351450945 0.265615372618393 0.540762351450945 0.18133864405206 0.562082867062885 0.18144674167685 0.562082867062885 0.815322309518734 0.407551769907541 0.815610901995516 0.407551769907541 0.424513962169251 0.503446450167494 0.424692096154442 0.503446450167494 0.346364993769307 0.52395605448598 0.346404206319428 0.52395605448598 0.265552201761689 0.544465658804467 0.265615372618393 0.544465658804467 0.815322309518734 0.411249448631109 0.815610901995516 0.411249448631109 0.653762169194512 0.451762247284909 0.654240785363859 0.451762247284909 0.0930423368131518 0.590510221212139 0.0931286782902436 0.590510221212139 0.577062354226008 0.475095163366168 0.18133864405206 0.571811797895782 0.18144674167685 0.571811797895782 0.57749338611089 0.475095163366168 0.501054730166825 0.498121320227064 0.501374802655922 0.498121320227064 0.577062354226008 0.481296077503529 0.57749338611089 0.481296077503529 0.424513962169251 0.519441835839004 0.424692096154442 0.519441835839004 0.732580795868886 0.444393620884974 0.733008069976284 0.444393620884974 0.0930423368131518 0.602576204373511 0.0931286782902436 0.602576204373511 0.346364993769307 0.540762351450945 0.346404206319428 0.540762351450945 0.501054730166825 0.503446450167494 0.501374802655922 0.503446450167494 0.265552201761689 0.562082867062885 0.265615372618393 0.562082867062885 0.424513962169251 0.52395605448598 0.424692096154442 0.52395605448598 0.903888266870532 0.407551769907541 0.90400352494736 0.407551769907541 0.346364993769307 0.544465658804467 0.346404206319428 0.544465658804467 0.732580795868886 0.451762247284909 0.733008069976284 0.451762247284909 0.903888266870532 0.411249448631109 0.90400352494736 0.411249448631109 0.18133864405206 0.590510221212139 0.653762169194512 0.475095163366168 0.18144674167685 0.590510221212139 0.654240785363859 0.475095163366168 0.265552201761689 0.571811797895782 0.265615372618393 0.571811797895782 0.577062354226008 0.498121320227064 0.57749338611089 0.498121320227064 0.653762169194512 0.481296077503529 0.654240785363859 0.481296077503529 0.501054730166825 0.519441835839004 0.501374802655922 0.519441835839004 0.815322309518734 0.444393620884974 0.815610901995516 0.444393620884974 0.577062354226008 0.503446450167494 0.424513962169251 0.540762351450945 0.424692096154442 0.540762351450945 0.57749338611089 0.503446450167494 0.0930423368131518 0.62249099463005 0.0931286782902436 0.62249099463005 0.501054730166825 0.52395605448598 0.501374802655922 0.52395605448598 0.346364993769307 0.562082867062885 0.346404206319428 0.562082867062885 0.18133864405206 0.602576204373511 0.18144674167685 0.602576204373511 0.424513962169251 0.544465658804467 0.424692096154442 0.544465658804467 0.815322309518734 0.451762247284909 0.815610901995516 0.451762247284909 0.732580795868886 0.475095163366168 0.733008069976284 0.475095163366168 0.265552201761689 0.590510221212139 0.265615372618393 0.590510221212139 0.346364993769307 0.571811797895782 0.346404206319428 0.571811797895782 0.653762169194512 0.498121320227064 0.654240785363859 0.498121320227064 0.732580795868886 0.481296077503529 0.733008069976284 0.481296077503529 0.577062354226008 0.519441835839004 0.57749338611089 0.519441835839004 0.653762169194512 0.503446450167494 0.501054730166825 0.540762351450945 0.501374802655922 0.540762351450945 0.654240785363859 0.503446450167494 0.577062354226008 0.52395605448598 0.57749338611089 0.52395605448598 0.903888266870532 0.444393620884974 0.90400352494736 0.444393620884974 0.424513962169251 0.562082867062885 0.424692096154442 0.562082867062885 0.0930423368131518 0.643595413010483 0.0931286782902436 0.643595413010483 0.18133864405206 0.62249099463005 0.18144674167685 0.62249099463005 0.501054730166825 0.544465658804467 0.501374802655922 0.544465658804467 0.265552201761689 0.602576204373511 0.265615372618393 0.602576204373511 0.903888266870532 0.451762247284909 0.90400352494736 0.451762247284909 0.815322309518734 0.475095163366168 0.815610901995516 0.475095163366168 0.346364993769307 0.590510221212139 0.346404206319428 0.590510221212139 0.424513962169251 0.571811797895782 0.424692096154442 0.571811797895782 0.732580795868886 0.498121320227064 0.0930423368131518 0.65447176804796 0.733008069976284 0.498121320227064 0.0931286782902436 0.65447176804796 0.653762169194512 0.519441835839004 0.654240785363859 0.519441835839004 0.815322309518734 0.481296077503529 0.815610901995516 0.481296077503529 0.577062354226008 0.540762351450945 0.57749338611089 0.540762351450945 0.732580795868886 0.503446450167494 0.733008069976284 0.503446450167494 0.653762169194512 0.52395605448598 0.654240785363859 0.52395605448598 0.501054730166825 0.562082867062885 0.501374802655922 0.562082867062885 0.577062354226008 0.544465658804467 0.57749338611089 0.544465658804467 0.346364993769307 0.602576204373511 0.346404206319428 0.602576204373511 0.265552201761689 0.62249099463005 0.265615372618393 0.62249099463005 0.18133864405206 0.643595413010483 0.18144674167685 0.643595413010483 0.424513962169251 0.590510221212139 0.501054730166825 0.571811797895782 0.424692096154442 0.590510221212139 0.501374802655922 0.571811797895782 0.903888266870532 0.475095163366168 0.90400352494736 0.475095163366168 0.815322309518734 0.498121320227064 0.815610901995516 0.498121320227064 0.732580795868886 0.519441835839004 0.733008069976284 0.519441835839004 0.18133864405206 0.65447176804796 0.18144674167685 0.65447176804796 0.653762169194512 0.540762351450945 0.654240785363859 0.540762351450945 0.903888266870532 0.481296077503529 0.90400352494736 0.481296077503529 0.815322309518734 0.503446450167494 0.815610901995516 0.503446450167494 0.732580795868886 0.52395605448598 0.733008069976284 0.52395605448598 0.577062354226008 0.562082867062885 0.57749338611089 0.562082867062885 0.653762169194512 0.544465658804467 0.654240785363859 0.544465658804467 0.424513962169251 0.602576204373511 0.424692096154442 0.602576204373511 0.346364993769307 0.62249099463005 0.346404206319428 0.62249099463005 0.265552201761689 0.643595413010483 0.265615372618393 0.643595413010483 0.0930423368131518 0.689742022727077 0.0931286782902436 0.689742022727077 0.577062354226008 0.571811797895782 0.57749338611089 0.571811797895782 0.501054730166825 0.590510221212139 0.501374802655922 0.590510221212139 0.815322309518734 0.519441835839004 0.815610901995516 0.519441835839004 0.903888266870532 0.498121320227064 0.90400352494736 0.498121320227064 0.265552201761689 0.65447176804796 0.265615372618393 0.65447176804796 0.732580795868886 0.540762351450945 0.0930423368131518 0.697112799271841 0.733008069976284 0.540762351450945 0.0931286782902436 0.697112799271841 0.653762169194512 0.562082867062885 0.654240785363859 0.562082867062885 0.815322309518734 0.52395605448598 0.815610901995516 0.52395605448598 0.732580795868886 0.544465658804467 0.733008069976284 0.544465658804467 0.903888266870532 0.503446450167494 0.90400352494736 0.503446450167494 0.501054730166825 0.602576204373511 0.501374802655922 0.602576204373511 0.424513962169251 0.62249099463005 0.424692096154442 0.62249099463005 0.346364993769307 0.643595413010483 0.346404206319428 0.643595413010483 0.577062354226008 0.590510221212139 0.653762169194512 0.571811797895782 0.57749338611089 0.590510221212139 0.654240785363859 0.571811797895782 0.18133864405206 0.689742022727077 0.18144674167685 0.689742022727077 0.346364993769307 0.65447176804796 0.346404206319428 0.65447176804796 0.815322309518734 0.540762351450945 0.815610901995516 0.540762351450945 0.903888266870532 0.519441835839004 0.90400352494736 0.519441835839004 0.732580795868886 0.562082867062885 0.733008069976284 0.562082867062885 0.18133864405206 0.697112799271841 0.18144674167685 0.697112799271841 0.577062354226008 0.602576204373511 0.815322309518734 0.544465658804467 0.57749338611089 0.602576204373511 0.815610901995516 0.544465658804467 0.903888266870532 0.52395605448598 0.90400352494736 0.52395605448598 0.501054730166825 0.62249099463005 0.501374802655922 0.62249099463005 0.424513962169251 0.643595413010483 0.424692096154442 0.643595413010483 0.653762169194512 0.590510221212139 0.654240785363859 0.590510221212139 0.732580795868886 0.571811797895782 0.733008069976284 0.571811797895782 0.265552201761689 0.689742022727077 0.265615372618393 0.689742022727077 0.424513962169251 0.65447176804796 0.424692096154442 0.65447176804796 0.0930423368131518 0.735888632443671 0.0931286782902436 0.735888632443671 0.815322309518734 0.562082867062885 0.815610901995516 0.562082867062885 0.903888266870532 0.540762351450945 0.90400352494736 0.540762351450945 0.265552201761689 0.697112799271841 0.265615372618393 0.697112799271841 0.653762169194512 0.602576204373511 0.654240785363859 0.602576204373511 0.577062354226008 0.62249099463005 0.57749338611089 0.62249099463005 0.903888266870532 0.544465658804467 0.90400352494736 0.544465658804467 0.501054730166825 0.643595413010483 0.501374802655922 0.643595413010483 0.0930423368131518 0.745083959398707 0.0931286782902436 0.745083959398707 0.732580795868886 0.590510221212139 0.733008069976284 0.590510221212139 0.815322309518734 0.571811797895782 0.815610901995516 0.571811797895782 0.346364993769307 0.689742022727077 0.346404206319428 0.689742022727077 0.501054730166825 0.65447176804796 0.501374802655922 0.65447176804796 0.18133864405206 0.735888632443671 0.18144674167685 0.735888632443671 0.732580795868886 0.602576204373511 0.733008069976284 0.602576204373511 0.346364993769307 0.697112799271841 0.346404206319428 0.697112799271841 0.653762169194512 0.62249099463005 0.654240785363859 0.62249099463005 0.903888266870532 0.562082867062885 0.90400352494736 0.562082867062885 0.577062354226008 0.643595413010483 0.57749338611089 0.643595413010483 0.18133864405206 0.745083959398707 0.18144674167685 0.745083959398707 0.815322309518734 0.590510221212139 0.815610901995516 0.590510221212139 0.903888266870532 0.571811797895782 0.90400352494736 0.571811797895782 0.424513962169251 0.689742022727077 0.424692096154442 0.689742022727077 0.577062354226008 0.65447176804796 0.57749338611089 0.65447176804796 0.265552201761689 0.735888632443671 0.265615372618393 0.735888632443671 0.424513962169251 0.697112799271841 0.424692096154442 0.697112799271841 0.732580795868886 0.62249099463005 0.733008069976284 0.62249099463005 0.815322309518734 0.602576204373511 0.815610901995516 0.602576204373511 0.653762169194512 0.643595413010483 0.654240785363859 0.643595413010483 0.0930423368131518 0.782035242160264 0.0931286782902436 0.782035242160264 0.265552201761689 0.745083959398707 0.265615372618393 0.745083959398707 0.903888266870532 0.590510221212139 0.90400352494736 0.590510221212139 0.501054730166825 0.689742022727077 0.501374802655922 0.689742022727077 0.653762169194512 0.65447176804796 0.654240785363859 0.65447176804796 0.0930423368131518 0.793055119525573 0.0931286782902436 0.793055119525573 0.501054730166825 0.697112799271841 0.501374802655922 0.697112799271841 0.346364993769307 0.735888632443671 0.346404206319428 0.735888632443671 0.815322309518734 0.62249099463005 0.815610901995516 0.62249099463005 0.732580795868886 0.643595413010483 0.733008069976284 0.643595413010483 0.903888266870532 0.602576204373511 0.90400352494736 0.602576204373511 0.18133864405206 0.782035242160264 0.18144674167685 0.782035242160264 0.346364993769307 0.745083959398707 0.346404206319428 0.745083959398707 0.577062354226008 0.689742022727077 0.57749338611089 0.689742022727077 0.732580795868886 0.65447176804796 0.733008069976284 0.65447176804796 0.18133864405206 0.793055119525573 0.18144674167685 0.793055119525573 0.577062354226008 0.697112799271841 0.57749338611089 0.697112799271841 0.424513962169251 0.735888632443671 0.424692096154442 0.735888632443671 0.815322309518734 0.643595413010483 0.815610901995516 0.643595413010483 0.903888266870532 0.62249099463005 0.90400352494736 0.62249099463005 0.265552201761689 0.782035242160264 0.265615372618393 0.782035242160264 0.424513962169251 0.745083959398707 0.424692096154442 0.745083959398707 0.653762169194512 0.689742022727077 0.654240785363859 0.689742022727077 0.0930423368131518 0.828181851876858 0.0931286782902436 0.828181851876858 0.815322309518734 0.65447176804796 0.815610901995516 0.65447176804796 0.653762169194512 0.697112799271841 0.654240785363859 0.697112799271841 0.265552201761689 0.793055119525573 0.265615372618393 0.793055119525573 0.501054730166825 0.735888632443671 0.501374802655922 0.735888632443671 0.0930423368131518 0.841026279652439 0.0931286782902436 0.841026279652439 0.903888266870532 0.643595413010483 0.90400352494736 0.643595413010483 0.346364993769307 0.782035242160264 0.346404206319428 0.782035242160264 0.501054730166825 0.745083959398707 0.501374802655922 0.745083959398707 0.732580795868886 0.689742022727077 0.733008069976284 0.689742022727077 0.18133864405206 0.828181851876858 0.18144674167685 0.828181851876858 0.903888266870532 0.65447176804796 0.90400352494736 0.65447176804796 0.732580795868886 0.697112799271841 0.733008069976284 0.697112799271841 0.577062354226008 0.735888632443671 0.57749338611089 0.735888632443671 0.346364993769307 0.793055119525573 0.346404206319428 0.793055119525573 0.18133864405206 0.841026279652439 0.18144674167685 0.841026279652439 0.424513962169251 0.782035242160264 0.424692096154442 0.782035242160264 0.577062354226008 0.745083959398707 0.57749338611089 0.745083959398707 0.815322309518734 0.689742022727077 0.815610901995516 0.689742022727077 0.265552201761689 0.828181851876858 0.265615372618393 0.828181851876858 0.653762169194512 0.735888632443671 0.654240785363859 0.735888632443671 0.815322309518734 0.697112799271841 0.815610901995516 0.697112799271841 0.424513962169251 0.793055119525573 0.424692096154442 0.793055119525573 0.0930423368131518 0.874328461593452 0.0931286782902436 0.874328461593452 0.501054730166825 0.782035242160264 0.501374802655922 0.782035242160264 0.653762169194512 0.745083959398707 0.654240785363859 0.745083959398707 0.265552201761689 0.841026279652439 0.265615372618393 0.841026279652439 0.903888266870532 0.689742022727077 0.90400352494736 0.689742022727077 0.0930423368131518 0.888997439779305 0.0931286782902436 0.888997439779305 0.346364993769307 0.828181851876858 0.346404206319428 0.828181851876858 0.732580795868886 0.735888632443671 0.733008069976284 0.735888632443671 0.501054730166825 0.793055119525573 0.501374802655922 0.793055119525573 0.903888266870532 0.697112799271841 0.90400352494736 0.697112799271841 0.18133864405206 0.874328461593452 0.18144674167685 0.874328461593452 0.577062354226008 0.782035242160264 0.57749338611089 0.782035242160264 0.732580795868886 0.745083959398707 0.733008069976284 0.745083959398707 0.346364993769307 0.841026279652439 0.346404206319428 0.841026279652439 0.424513962169251 0.828181851876858 0.424692096154442 0.828181851876858 0.18133864405206 0.888997439779305 0.18144674167685 0.888997439779305 0.577062354226008 0.793055119525573 0.57749338611089 0.793055119525573 0.815322309518734 0.735888632443671 0.815610901995516 0.735888632443671 0.265552201761689 0.874328461593452 0.265615372618393 0.874328461593452 0.653762169194512 0.782035242160264 0.654240785363859 0.782035242160264 0.0930423368131518 0.920475071310046 0.0931286782902436 0.920475071310046 0.815322309518734 0.745083959398707 0.815610901995516 0.745083959398707 0.424513962169251 0.841026279652439 0.424692096154442 0.841026279652439 0.501054730166825 0.828181851876858 0.501374802655922 0.828181851876858 0.653762169194512 0.793055119525573 0.654240785363859 0.793055119525573 0.265552201761689 0.888997439779305 0.265615372618393 0.888997439779305 0.903888266870532 0.735888632443671 0.90400352494736 0.735888632443671 0.346364993769307 0.874328461593452 0.346404206319428 0.874328461593452 0.0930423368131518 0.936968599906171 0.0931286782902436 0.936968599906171 0.732580795868886 0.782035242160264 0.733008069976284 0.782035242160264 0.501054730166825 0.841026279652439 0.501374802655922 0.841026279652439 0.18133864405206 0.920475071310046 0.18144674167685 0.920475071310046 0.903888266870532 0.745083959398707 0.90400352494736 0.745083959398707 0.577062354226008 0.828181851876858 0.57749338611089 0.828181851876858 0.732580795868886 0.793055119525573 0.733008069976284 0.793055119525573 0.346364993769307 0.888997439779305 0.346404206319428 0.888997439779305 0.424513962169251 0.874328461593452 0.424692096154442 0.874328461593452 0.0930423368131518 0.955744968089076 0.0931286782902436 0.955744968089076 0.815322309518734 0.782035242160264 0.18133864405206 0.936968599906171 0.18144674167685 0.936968599906171 0.815610901995516 0.782035242160264 0.577062354226008 0.841026279652439 0.57749338611089 0.841026279652439 0.265552201761689 0.920475071310046 0.265615372618393 0.920475071310046 0.653762169194512 0.828181851876858 0.654240785363859 0.828181851876858 0.0930423368131518 0.966872900690434 0.0931286782902436 0.966872900690434 0.815322309518734 0.793055119525573 0.815610901995516 0.793055119525573 0.424513962169251 0.888997439779305 0.424692096154442 0.888997439779305 0.501054730166825 0.874328461593452 0.501374802655922 0.874328461593452 0.18133864405206 0.955744968089076 0.18144674167685 0.955744968089076 0.653762169194512 0.841026279652439 0.654240785363859 0.841026279652439 0.265552201761689 0.936968599906171 0.265615372618393 0.936968599906171 0.903888266870532 0.782035242160264 0.90400352494736 0.782035242160264 0.346364993769307 0.920475071310046 0.346404206319428 0.920475071310046 0.732580795868886 0.828181851876858 0.733008069976284 0.828181851876858 0.18133864405206 0.966872900690434 0.18144674167685 0.966872900690434 0.501054730166825 0.888997439779305 0.501374802655922 0.888997439779305 0.0930423368131518 0.991014864868108 0.0931286782902436 0.991014864868108 0.903888266870532 0.793055119525573 0.90400352494736 0.793055119525573 0.577062354226008 0.874328461593452 0.57749338611089 0.874328461593452 0.0930423368131518 0.995962758573131 0.0931286782902436 0.995962758573131 0.732580795868886 0.841026279652439 0.733008069976284 0.841026279652439 0.265552201761689 0.955744968089076 0.265615372618393 0.955744968089076 0.346364993769307 0.936968599906171 0.346404206319428 0.936968599906171 0.424513962169251 0.920475071310046 0.424692096154442 0.920475071310046 0.815322309518734 0.828181851876858 0.815610901995516 0.828181851876858 0.577062354226008 0.888997439779305 0.57749338611089 0.888997439779305 0.265552201761689 0.966872900690434 0.265615372618393 0.966872900690434 0.653762169194512 0.874328461593452 0.654240785363859 0.874328461593452 0.18133864405206 0.991014864868108 0.18144674167685 0.991014864868108 0.815322309518734 0.841026279652439 0.18133864405206 0.995962758573131 0.815610901995516 0.841026279652439 0.346364993769307 0.955744968089076 0.346404206319428 0.955744968089076 0.424513962169251 0.936968599906171 0.424692096154442 0.936968599906171 0.501054730166825 0.920475071310046 0.501374802655922 0.920475071310046 0.653762169194512 0.888997439779305 0.654240785363859 0.888997439779305 0.903888266870532 0.828181851876858 0.90400352494736 0.828181851876858 0.346364993769307 0.966872900690434 0.346404206319428 0.966872900690434 0.732580795868886 0.874328461593452 0.733008069976284 0.874328461593452 0.265552201761689 0.991014864868108 0.265615372618393 0.991014864868108 0.501054730166825 0.936968599906171 0.424513962169251 0.955744968089076 0.501374802655922 0.936968599906171 0.424692096154442 0.955744968089076 0.577062354226008 0.920475071310046 0.57749338611089 0.920475071310046 0.903888266870532 0.841026279652439 0.90400352494736 0.841026279652439 0.732580795868886 0.888997439779305 0.733008069976284 0.888997439779305 0.424513962169251 0.966872900690434 0.424692096154442 0.966872900690434 0.815322309518734 0.874328461593452 0.815610901995516 0.874328461593452 0.346364993769307 0.991014864868108 0.346404206319428 0.991014864868108 0.577062354226008 0.936968599906171 0.57749338611089 0.936968599906171 0.501054730166825 0.955744968089076 0.501374802655922 0.955744968089076 0.653762169194512 0.920475071310046 0.654240785363859 0.920475071310046 0.815322309518734 0.888997439779305 0.815610901995516 0.888997439779305 0.501054730166825 0.966872900690434 0.501374802655922 0.966872900690434 0.424513962169251 0.991014864868108 0.424692096154442 0.991014864868108 0.903888266870532 0.874328461593452 0.90400352494736 0.874328461593452 0.653762169194512 0.936968599906171 0.577062354226008 0.955744968089076 0.654240785363859 0.936968599906171 0.57749338611089 0.955744968089076 0.732580795868886 0.920475071310046 0.733008069976284 0.920475071310046 0.577062354226008 0.966872900690434 0.57749338611089 0.966872900690434 0.903888266870532 0.888997439779305 0.90400352494736 0.888997439779305 0.501054730166825 0.991014864868108 0.501374802655922 0.991014864868108 0.653762169194512 0.955744968089076 0.654240785363859 0.955744968089076 0.732580795868886 0.936968599906171 0.733008069976284 0.936968599906171 0.815322309518734 0.920475071310046 0.815610901995516 0.920475071310046 0.653762169194512 0.966872900690434 0.654240785363859 0.966872900690434 0.577062354226008 0.991014864868108 0.57749338611089 0.991014864868108 0.732580795868886 0.955744968089076 0.733008069976284 0.955744968089076 0.815322309518734 0.936968599906171 0.815610901995516 0.936968599906171 0.903888266870532 0.920475071310046 0.90400352494736 0.920475071310046 0.732580795868886 0.966872900690434 0.733008069976284 0.966872900690434 0.653762169194512 0.991014864868108 0.654240785363859 0.991014864868108 0.815322309518734 0.955744968089076 0.815610901995516 0.955744968089076 0.903888266870532 0.936968599906171 0.90400352494736 0.936968599906171 0.815322309518734 0.966872900690434 0.815610901995516 0.966872900690434 0.732580795868886 0.991014864868108 0.733008069976284 0.991014864868108 0.903888266870532 0.955744968089076 0.90400352494736 0.955744968089076 0.903888266870532 0.966872900690434 0.90400352494736 0.966872900690434 0.815322309518734 0.991014864868108 0.815610901995516 0.991014864868108 0.903888266870532 0.991014864868108 0.90400352494736 0.991014864868108 601 502 537 602 601 537 602 537 538 602 538 58 602 58 59 603 572 562 603 562 593 603 593 594 604 603 594 605 560 589 605 576 560 605 589 590 606 605 590 607 566 601 607 601 602 607 574 566 608 607 602 608 602 59 609 592 578 609 578 580 610 582 575 610 575 576 611 609 580 611 580 581 612 576 605 612 610 576 613 581 597 613 597 598 614 613 598 615 584 585 616 615 585 616 585 586 617 582 610 617 610 612 617 586 582 618 617 612 619 600 588 619 595 596 619 588 595 620 619 596 621 546 573 621 606 590 621 590 546 621 573 574 622 621 574 623 596 584 623 584 615 623 620 596 624 594 599 624 599 600 624 604 594 625 624 600 626 615 616 626 623 615 627 18 591 628 591 592 628 627 591 629 619 620 629 625 600 629 600 619 630 629 620 631 603 604 631 614 598 631 598 572 631 572 603 632 631 604 633 592 609 633 628 592 634 609 611 634 633 609 635 604 624 635 632 604 636 624 625 636 635 624 637 606 621 638 637 621 638 621 622 639 612 605 639 605 606 640 606 637 640 639 606 641 581 613 641 611 581 642 641 613 642 613 614 643 614 631 643 642 614 644 643 631 644 631 632 645 616 586 645 586 617 646 617 618 646 645 617 647 639 640 647 618 612 647 646 618 647 612 639 648 647 640 649 620 623 649 623 626 650 649 626 651 616 645 651 626 616 652 636 625 652 629 630 652 625 629 653 652 630 75 3 1 75 1 28 654 645 646 76 28 29 654 651 645 76 75 28 77 76 29 655 620 649 78 29 30 78 77 29 655 630 620 79 78 30 656 655 649 656 649 650 80 30 31 80 79 30 657 607 608 657 574 607 657 622 574 658 657 608 658 608 59 658 59 60 81 3 75 82 75 76 659 644 632 659 632 635 659 635 636 82 81 75 660 659 636 661 19 18 83 3 81 84 81 82 661 18 627 84 83 81 85 80 31 662 661 627 662 627 628 663 628 633 86 85 31 87 82 76 87 76 77 664 663 633 87 84 82 664 633 634 665 636 652 665 652 653 88 87 77 88 77 78 665 660 636 666 665 653 667 634 611 667 641 642 89 84 87 667 611 641 668 667 642 669 638 622 90 89 87 669 622 657 90 87 88 669 657 658 91 86 31 91 31 32 670 669 658 670 658 60 92 91 32 671 637 638 93 88 78 671 640 637 93 78 79 672 671 638 672 638 669 673 642 643 673 668 642 94 93 79 94 79 80 674 673 643 674 643 644 675 674 644 675 644 659 95 90 88 95 88 93 675 659 660 676 675 660 96 93 94 96 95 93 97 4 3 677 646 647 97 83 84 97 3 83 678 19 661 678 661 662 98 84 89 679 677 647 98 97 84 679 647 648 99 4 97 99 97 98 680 678 662 100 99 98 101 32 33 681 626 651 681 650 626 101 92 32 681 651 654 102 101 33 681 656 650 682 681 654 683 640 671 683 671 672 103 94 80 683 648 640 103 96 94 103 80 85 683 679 648 104 85 86 684 683 672 104 86 91 104 103 85 685 653 630 685 655 656 685 630 655 105 96 103 686 685 656 687 654 646 687 646 677 106 103 104 106 105 103 687 677 679 688 687 679 107 89 90 107 98 89 689 656 681 107 100 98 108 107 90 690 681 682 690 689 681 108 90 95 109 102 33 109 33 34 691 665 666 691 676 660 110 109 34 691 660 665 111 100 107 111 107 108 692 691 666 693 653 685 112 111 108 693 692 666 693 666 653 694 685 686 113 106 104 694 693 685 113 104 91 695 668 673 114 92 101 114 113 91 696 673 674 114 91 92 115 106 113 696 695 673 697 634 667 697 664 634 116 115 113 116 113 114 117 95 96 698 667 668 117 108 95 698 697 667 699 680 662 118 96 105 699 662 628 699 628 663 700 699 663 118 117 96 119 5 4 119 4 99 700 663 664 701 674 675 119 99 100 120 119 100 120 100 111 701 696 674 702 676 691 121 34 35 121 110 34 703 701 675 703 675 676 122 121 35 123 108 117 704 702 691 123 112 108 704 691 692 123 117 118 705 669 670 705 672 669 706 670 60 706 705 670 124 123 118 706 60 61 125 114 101 707 679 683 125 116 114 708 683 684 126 101 102 708 707 683 126 125 101 709 654 687 709 682 654 709 687 688 127 116 125 710 709 688 128 127 125 128 125 126 129 5 119 711 680 699 129 119 120 130 129 120 712 711 699 712 699 700 131 105 106 713 686 656 131 118 105 713 656 689 713 689 690 714 713 690 132 106 115 715 672 705 132 131 106 715 705 706 715 684 672 133 35 36 716 706 61 133 122 35 716 715 706 134 133 36 717 688 679 135 130 120 717 679 707 717 710 688 135 111 112 718 707 708 718 717 707 135 120 111 136 135 112 719 682 709 136 112 123 719 709 710 137 131 132 719 690 682 137 118 131 720 719 710 137 124 118 138 137 132 721 692 693 721 693 694 139 102 109 139 126 102 722 721 694 723 686 713 723 694 686 140 109 110 724 713 714 140 139 109 141 128 126 724 723 713 725 696 701 141 126 139 142 139 140 142 141 139 726 701 703 726 725 701 727 668 695 143 130 135 727 695 696 727 698 668 144 143 135 728 696 725 144 135 136 145 132 115 728 727 696 145 138 132 729 664 697 145 115 116 146 145 116 729 700 664 146 116 127 730 697 698 730 729 697 147 134 36 731 20 19 147 36 37 148 147 37 731 19 678 149 136 123 732 678 680 149 123 124 732 731 678 733 704 692 733 692 721 150 149 124 150 124 137 734 721 722 151 138 145 151 145 146 734 733 721 735 676 702 735 703 676 152 151 146 735 726 703 153 6 5 736 702 704 736 735 702 153 5 129 154 129 130 737 710 717 154 130 143 154 153 129 737 717 718 738 737 718 155 140 110 739 684 715 155 110 121 739 708 684 740 739 715 740 715 716 740 716 61 740 61 62 156 155 121 741 712 700 156 121 122 741 700 729 157 142 140 157 140 155 158 155 156 742 729 730 742 741 729 158 157 155 743 714 690 743 690 719 159 152 146 743 719 720 159 127 128 159 146 127 743 724 714 160 128 141 744 20 731 160 159 128 161 149 150 161 136 149 745 743 720 161 144 136 162 161 150 746 744 731 746 731 732 163 137 138 747 722 694 163 150 137 747 694 723 747 723 724 748 747 724 164 163 138 164 138 151 749 720 710 749 710 737 165 152 159 750 737 738 165 159 160 166 165 160 750 749 737 751 748 724 751 724 743 167 37 38 751 743 745 167 148 37 168 167 38 168 38 27 752 751 745 168 27 51 169 6 153 753 708 739 753 718 708 170 153 154 170 169 153 754 753 739 754 739 740 754 740 62 171 122 133 755 726 735 171 156 122 172 134 147 756 735 736 756 755 735 172 133 134 172 171 133 757 728 725 173 154 143 758 726 755 758 757 725 758 725 726 174 173 143 174 144 161 174 143 144 759 698 727 759 730 698 175 156 171 759 727 728 175 158 156 176 175 171 760 728 757 176 171 172 760 759 728 761 736 704 177 166 160 177 141 142 177 160 141 761 704 733 762 722 747 178 177 142 762 734 722 763 733 734 178 142 157 763 761 733 179 162 150 179 150 163 764 762 747 764 747 748 180 179 163 180 163 164 765 746 732 765 680 711 181 180 164 181 164 151 765 732 680 766 765 711 181 151 152 766 711 712 182 152 165 767 742 730 182 181 152 767 730 759 183 177 178 183 166 177 768 767 759 768 759 760 769 745 720 769 749 750 184 183 178 185 170 154 769 720 749 185 154 173 770 769 750 186 185 173 186 173 174 771 738 718 771 718 753 771 753 754 772 771 754 187 172 147 772 62 63 772 754 62 773 751 752 773 748 751 188 187 147 188 147 148 774 773 752 189 174 161 190 161 162 775 746 765 190 189 161 776 775 765 191 172 187 191 176 172 776 765 766 777 736 761 192 187 188 777 756 736 192 191 187 193 7 6 778 774 752 778 752 745 193 6 169 778 745 769 194 169 170 194 193 169 194 170 185 779 777 761 779 761 763 780 769 770 195 178 157 780 778 769 195 157 158 781 750 738 196 158 175 781 738 771 781 771 772 196 195 158 782 772 63 782 781 772 197 180 181 783 755 756 198 197 181 783 758 755 784 783 756 198 181 182 199 198 182 785 768 760 199 182 165 199 165 166 785 760 757 200 166 183 786 758 783 786 785 757 200 199 166 786 757 758 201 195 196 787 763 734 201 184 178 201 178 195 787 734 762 202 201 196 788 787 762 788 762 764 789 748 773 789 773 774 203 186 174 789 764 748 203 174 189 204 203 189 790 789 774 204 189 190 791 766 712 205 162 179 791 712 741 205 190 162 792 791 741 205 204 190 792 741 742 206 180 197 206 179 180 206 205 179 207 148 167 793 768 785 207 188 148 208 167 168 208 168 51 794 785 786 208 207 167 794 793 785 209 188 207 795 21 20 209 192 188 210 208 51 210 209 207 210 207 208 795 20 744 210 51 52 796 744 746 211 175 176 211 196 175 796 795 744 797 790 774 797 778 780 212 211 176 797 774 778 212 176 191 798 797 780 799 770 750 799 781 782 213 194 185 214 186 203 799 750 781 214 213 185 214 185 186 800 799 782 800 782 63 215 199 200 800 63 64 801 776 766 215 198 199 801 766 791 802 801 791 216 215 200 802 791 792 217 7 193 803 779 763 803 787 788 218 194 213 218 217 193 218 193 194 803 763 787 219 200 183 219 216 200 804 803 788 219 183 184 805 756 777 220 184 201 805 784 756 220 219 184 221 211 212 806 805 777 221 202 196 221 196 211 806 777 779 222 221 212 807 780 770 807 770 799 807 799 800 808 807 800 808 800 64 223 206 197 224 197 198 809 794 786 809 786 783 224 198 215 224 223 197 810 783 784 225 204 205 810 809 783 226 205 206 226 206 223 811 21 795 812 811 795 226 225 205 812 795 796 813 764 789 227 212 191 227 191 192 228 192 209 813 788 764 228 227 192 814 789 790 229 216 219 814 813 789 230 229 219 815 814 790 815 790 797 230 219 220 816 815 797 816 797 798 231 203 204 231 214 203 817 792 742 817 742 767 232 204 225 232 231 204 818 817 767 233 8 7 818 767 768 233 217 218 819 794 809 233 7 217 819 809 810 820 819 810 234 233 218 821 812 796 235 234 218 821 746 775 235 218 213 821 796 746 236 235 213 236 213 214 822 775 776 237 201 202 822 821 775 823 788 813 237 220 201 823 804 788 238 237 202 238 202 221 239 227 228 239 222 212 824 823 813 824 813 814 239 212 227 825 792 817 240 239 228 825 802 792 825 817 818 241 224 215 826 825 818 827 806 779 242 241 215 827 779 803 242 215 216 828 803 804 243 226 223 828 827 803 829 780 807 829 807 808 244 224 241 829 798 780 244 243 223 830 808 64 830 829 808 244 223 224 830 64 65 245 230 220 245 237 238 831 810 784 831 784 805 245 220 237 246 245 238 832 805 806 832 806 827 832 831 805 247 232 225 833 821 822 833 812 821 248 226 243 248 247 225 248 225 226 834 833 822 835 814 815 249 209 210 249 228 209 250 210 52 250 249 210 251 238 221 836 815 816 836 835 815 251 221 222 837 836 816 837 798 829 252 251 222 252 222 239 837 816 798 838 837 829 253 234 235 838 829 830 253 235 236 838 830 65 839 818 768 839 768 793 839 826 818 254 253 236 255 214 231 255 236 214 840 839 793 255 231 232 840 793 794 256 255 232 841 820 810 841 810 831 257 240 228 257 228 249 257 249 250 842 831 832 258 52 53 258 250 52 258 257 250 259 216 229 842 841 831 259 242 216 843 776 801 843 822 776 260 259 229 844 801 802 260 229 230 844 843 801 261 244 241 845 826 839 262 261 241 262 241 242 846 845 839 846 839 840 263 8 233 263 233 234 847 804 823 264 263 234 847 828 804 264 234 253 848 847 823 265 246 238 848 823 824 265 238 251 265 251 252 849 824 814 849 814 835 266 265 252 850 835 836 267 248 243 850 849 835 268 243 244 851 832 827 268 267 243 852 827 828 268 244 261 269 239 240 852 851 827 269 252 239 853 22 21 270 269 240 270 240 257 853 21 811 271 232 247 854 853 811 854 811 812 271 256 232 855 822 843 855 834 822 272 271 247 272 247 248 272 248 267 856 855 843 273 236 255 856 843 844 857 836 837 273 254 236 858 857 837 858 837 838 858 838 65 858 65 66 859 840 794 859 794 819 274 255 256 274 273 255 275 263 264 275 9 8 859 846 840 275 8 263 276 275 264 860 859 819 860 819 820 277 230 245 861 842 832 277 260 230 861 832 851 278 245 246 862 851 852 278 277 245 862 861 851 279 262 242 863 853 854 863 22 853 279 242 259 864 863 854 280 259 260 280 260 277 280 279 259 865 846 859 281 276 264 281 264 253 866 859 860 282 253 254 866 865 859 867 856 844 282 281 253 867 802 825 867 844 802 283 268 261 868 867 825 868 826 845 868 825 826 284 283 261 284 262 279 284 261 262 285 252 269 869 848 824 869 824 849 869 849 850 285 266 252 286 285 269 286 269 270 870 869 850 287 272 267 871 828 847 288 267 268 288 268 283 871 852 828 288 287 267 872 847 848 289 271 272 872 848 869 289 274 256 872 871 847 289 256 271 873 850 836 873 836 857 290 272 287 290 289 272 874 873 857 874 857 858 874 858 66 291 270 257 291 257 258 875 812 833 875 854 812 292 258 53 292 291 258 293 280 277 294 278 246 294 246 265 876 875 833 876 833 834 295 277 278 877 856 867 295 293 277 295 278 294 878 877 867 296 265 266 878 867 868 879 820 841 296 294 265 297 276 281 879 860 820 297 281 282 298 297 282 880 841 842 299 298 282 880 879 841 299 254 273 881 852 871 299 273 274 881 862 852 299 282 254 881 871 872 300 299 274 882 881 872 883 854 875 883 875 876 301 284 279 883 864 854 884 883 876 302 279 280 302 301 279 885 860 879 303 286 270 303 270 291 303 291 292 885 866 860 886 879 880 304 303 292 304 53 54 304 292 53 305 288 283 886 885 879 887 878 868 887 845 846 887 868 845 305 283 284 306 305 284 888 887 846 888 846 865 307 9 275 889 872 869 890 869 870 308 307 275 890 889 869 308 275 276 308 276 297 891 870 850 891 850 873 309 287 288 309 290 287 892 891 873 892 874 66 310 288 305 892 66 67 892 873 874 310 309 288 311 295 294 893 876 834 893 834 855 893 884 876 312 311 294 312 294 296 894 893 855 894 855 856 313 312 296 313 266 285 313 296 266 895 878 887 314 313 285 314 285 286 896 895 887 315 299 300 896 887 888 897 842 861 315 298 299 897 880 842 316 315 300 897 886 880 317 10 9 317 307 308 898 897 861 317 9 307 898 861 862 899 23 22 318 317 308 899 22 863 900 864 883 319 280 293 900 863 864 319 302 280 900 899 863 320 319 293 320 293 295 901 882 872 901 872 889 902 901 889 321 300 274 902 889 890 321 274 289 903 886 897 322 290 309 904 903 897 322 321 289 322 289 290 323 284 301 904 897 898 323 306 284 905 884 893 905 893 894 324 323 301 324 301 302 906 905 894 325 310 305 907 896 888 326 305 306 907 888 865 326 306 323 326 325 305 908 907 865 327 308 297 327 318 308 908 865 866 909 23 899 328 327 297 328 298 315 910 909 899 328 297 298 329 312 313 910 899 900 911 870 891 911 890 870 330 329 313 330 313 314 331 300 321 912 891 892 331 316 300 912 911 891 912 892 67 331 321 322 332 331 322 913 856 877 913 894 856 333 314 286 914 877 878 333 286 303 334 333 303 334 304 54 914 913 877 334 303 304 335 320 295 915 896 907 335 295 311 336 322 309 336 332 322 916 915 907 916 907 908 337 336 309 917 862 881 337 310 325 337 309 310 917 898 862 918 881 882 338 311 312 338 335 311 918 917 881 919 900 883 919 910 900 339 318 327 340 339 327 920 919 883 340 327 328 920 883 884 341 302 319 921 890 911 341 324 302 921 902 890 922 921 911 342 319 320 922 911 912 922 912 67 342 341 319 922 67 68 923 898 917 923 917 918 343 326 323 923 904 898 924 923 918 344 343 323 344 323 324 925 908 866 925 866 885 345 328 315 926 925 885 346 315 316 926 885 886 346 345 315 927 906 894 927 913 914 347 336 337 927 894 913 347 332 336 928 927 914 348 347 337 349 314 333 929 910 919 349 330 314 350 333 334 350 334 54 350 349 333 350 54 55 351 337 325 351 348 337 930 929 919 930 919 920 931 914 878 352 351 325 931 878 895 352 325 326 931 928 914 352 326 343 932 931 895 353 10 317 932 895 896 933 908 925 933 916 908 933 925 926 354 317 318 354 353 317 355 338 312 355 312 329 934 933 926 935 918 882 356 355 329 935 882 901 356 329 330 357 328 345 936 901 902 936 935 901 357 340 328 937 884 905 358 345 346 937 920 884 358 357 345 937 930 920 359 11 10 359 10 353 359 353 354 938 937 905 360 359 354 938 905 906 939 886 903 361 342 320 361 320 335 939 926 886 362 335 338 940 939 903 940 903 904 362 361 335 363 324 341 363 344 324 941 918 935 941 924 918 364 341 342 942 941 935 942 935 936 364 363 341 943 931 932 365 346 316 943 928 931 944 943 932 945 909 910 365 316 331 945 24 23 366 365 331 366 332 347 945 23 909 366 331 332 946 910 929 946 945 910 367 351 352 947 896 915 367 348 351 368 367 352 947 932 896 947 944 932 948 947 915 948 915 916 369 352 343 370 343 344 949 926 939 370 369 343 949 939 940 949 934 926 371 358 346 950 949 940 371 346 365 951 937 938 951 930 937 372 365 366 372 371 365 373 318 339 373 339 340 952 951 938 373 354 318 953 936 902 953 902 921 373 360 354 953 942 936 954 953 921 954 921 922 954 922 68 955 24 945 374 373 340 374 340 357 375 330 349 956 955 945 375 356 330 376 350 55 376 349 350 376 375 349 956 945 946 377 338 355 957 938 906 377 362 338 957 906 927 378 342 361 378 364 342 379 356 375 958 957 927 379 355 356 958 927 928 958 928 943 379 377 355 380 378 361 959 904 923 959 923 924 380 362 377 959 950 940 380 361 362 959 940 904 381 360 373 381 373 374 960 959 924 961 944 947 382 381 374 961 947 948 383 372 366 962 961 948 383 366 347 963 942 953 963 953 954 384 348 367 964 954 68 964 68 69 384 347 348 964 963 954 965 929 930 384 383 347 965 946 929 385 368 352 385 352 369 385 369 370 965 956 946 966 965 930 386 385 370 966 930 951 967 948 916 387 370 344 387 363 364 387 344 363 967 962 948 387 386 370 967 916 933 388 387 364 968 933 934 968 967 933 389 11 359 969 950 959 969 959 960 970 969 960 971 938 957 390 389 359 971 952 938 390 359 360 391 372 383 972 971 957 972 957 958 973 972 958 392 383 384 392 391 383 393 374 357 973 958 943 974 943 944 974 944 961 974 973 943 394 393 357 975 956 965 394 357 358 395 12 11 395 389 390 395 11 389 976 975 965 976 965 966 396 395 390 977 962 967 977 967 968 397 380 377 398 377 379 978 977 968 979 924 941 398 397 377 979 941 942 399 393 394 979 960 924 399 382 374 399 374 393 980 979 942 400 399 394 981 951 952 981 976 966 401 379 375 981 966 951 402 401 375 402 376 55 402 375 376 402 55 56 982 981 952 982 952 971 403 384 367 403 392 384 404 367 368 983 934 949 983 978 968 404 403 367 983 968 934 984 949 950 984 983 949 405 386 387 985 24 955 405 387 388 985 25 24 406 405 388 407 364 378 407 406 388 986 955 956 407 378 380 986 985 955 407 388 364 987 970 960 408 407 380 987 960 979 988 979 980 409 392 403 409 403 404 988 987 979 989 972 973 410 396 390 410 390 360 410 360 381 990 973 974 990 989 973 991 990 974 991 974 961 411 381 382 411 410 381 991 961 962 992 991 962 412 409 404 993 978 983 413 358 371 993 983 984 413 371 372 994 993 984 413 394 358 414 413 372 995 976 981 414 372 391 415 400 394 415 394 413 996 981 982 415 413 414 996 995 981 416 415 414 997 980 942 997 942 963 417 396 410 998 997 963 998 964 69 998 963 964 999 971 972 418 417 410 418 410 411 999 982 971 1000 972 989 419 398 379 419 379 401 1000 999 972 420 402 56 420 419 401 420 401 402 421 12 395 1001 25 985 1001 985 986 421 395 396 1002 1001 986 422 396 417 1003 950 969 422 421 396 1003 984 950 423 368 385 1004 969 970 423 404 368 1004 1003 969 424 423 385 1005 990 991 424 385 386 1005 991 992 425 406 407 425 407 408 1006 1005 992 426 425 408 1007 1002 986 427 13 12 1007 986 956 427 12 421 1007 956 975 427 421 422 1008 1007 975 1008 975 976 428 427 422 429 380 397 1009 988 980 1009 980 997 429 408 380 429 426 408 1010 1009 997 1010 69 70 1010 997 998 430 397 398 1010 998 69 430 429 397 1011 962 977 1011 992 962 431 412 404 431 404 423 1012 977 978 1012 1011 977 1012 978 993 432 431 423 1013 984 1003 432 423 424 1013 1003 1004 1013 994 984 433 411 382 433 382 399 1014 1013 1004 434 399 400 434 400 415 1015 996 982 1015 982 999 1016 1015 999 434 433 399 1016 999 1000 435 414 391 435 416 414 1017 1016 1000 1017 989 990 1017 1000 989 436 435 391 1018 1017 990 436 391 392 436 392 409 1018 990 1005 437 435 436 437 416 435 1019 26 25 1019 25 1001 1020 1001 1002 438 437 436 1020 1019 1001 1021 1004 970 1021 970 987 439 418 411 439 411 433 440 433 434 440 439 433 1022 1002 1007 1022 1020 1002 1023 1007 1008 441 424 386 1023 1022 1007 441 386 405 442 405 406 442 406 425 1024 987 988 1024 1021 987 442 441 405 1025 1006 992 1025 992 1011 443 422 417 1026 1011 1012 443 417 418 1026 1025 1011 443 428 422 1027 976 995 444 418 439 444 443 418 445 429 430 1027 1008 976 445 426 429 446 445 430 1028 995 996 1028 1027 995 1029 1012 993 447 13 427 1030 1029 993 448 447 427 448 427 428 449 428 443 1030 993 994 449 448 428 1031 1019 1020 1031 26 1019 449 443 444 1032 1031 1020 450 449 444 1033 1004 1021 1033 1014 1004 1033 1021 1024 451 432 424 1034 1033 1024 451 424 441 452 441 442 452 451 441 1035 1016 1017 453 13 447 1036 1035 1017 453 14 13 1036 1017 1018 453 447 448 1037 1005 1006 1037 1018 1005 454 453 448 455 398 419 1037 1036 1018 455 446 430 1038 1006 1025 455 430 398 456 420 56 456 56 57 456 455 419 456 419 420 1038 1037 1006 457 434 415 457 440 434 1039 1020 1022 1039 1032 1020 1040 1039 1022 1040 1022 1023 458 457 415 458 415 416 1041 1026 1012 1041 1012 1029 458 416 437 459 438 436 1042 1029 1030 459 409 412 1042 1041 1029 459 436 409 460 459 412 1043 1023 1008 1043 1008 1027 1043 1027 1028 461 438 459 461 459 460 1044 1043 1028 1045 988 1009 1045 1024 988 462 461 460 1045 1034 1024 1046 1009 1010 1046 1010 70 1046 1045 1009 1047 996 1015 463 442 425 1047 1044 1028 464 426 445 1047 1028 996 464 425 426 464 463 425 465 440 457 1048 1047 1015 1048 1015 1016 1049 994 1013 466 457 458 1049 1030 994 466 465 457 1050 1013 1014 1050 1049 1013 467 444 439 467 439 440 1051 1032 1039 467 450 444 1051 1039 1040 1052 1051 1040 1053 1036 1037 468 467 440 468 440 465 1053 1037 1038 469 446 455 469 455 456 470 469 456 470 456 57 1054 1053 1038 1055 2 26 1055 26 1031 1055 1031 1032 471 453 454 471 14 453 1056 1055 1032 1056 1032 1051 1057 1034 1045 472 471 454 1057 1045 1046 1058 1046 70 1058 70 71 1058 1057 1046 473 448 449 1059 1025 1026 1059 1038 1025 473 454 448 1059 1054 1038 474 473 449 474 449 450 1060 1059 1026 1060 1026 1041 475 452 442 1061 40 2 1061 2 1055 475 442 463 476 475 463 476 463 464 1062 1055 1056 1062 1061 1055 1062 40 1061 1063 1030 1049 477 450 467 1063 1042 1030 477 467 468 1064 1049 1050 478 477 468 1064 1063 1049 1065 1040 1023 479 15 14 1065 1023 1043 1066 1065 1043 479 14 471 1066 1043 1044 480 471 472 480 479 471 481 454 473 1067 1044 1047 1068 1067 1047 1068 1047 1048 482 481 473 1069 1048 1016 482 473 474 483 466 458 1069 1068 1048 483 458 437 483 437 438 1069 1016 1035 1070 1035 1036 1070 1069 1035 1071 1050 1014 484 438 461 1071 1014 1033 484 483 438 1071 1033 1034 485 412 431 1072 1034 1057 1072 1071 1034 485 460 412 1073 1054 1059 486 431 432 1073 1059 1060 486 485 431 1074 1073 1060 1075 1065 1066 1075 1052 1040 1075 1040 1065 487 485 486 487 460 485 487 462 460 1076 1075 1066 488 487 486 1077 1060 1041 489 466 483 1077 1041 1042 1078 1042 1063 1078 1077 1042 490 483 484 1079 1051 1052 1079 1056 1051 490 489 483 1079 1062 1056 1080 1052 1075 1080 42 41 1080 41 1079 1080 1079 1052 491 464 445 1081 1064 1050 1081 1050 1071 492 445 446 1082 1062 1079 1082 41 40 1082 1079 41 492 491 445 1082 40 1062 493 465 466 493 468 465 1083 1081 1071 1083 1071 1072 1084 1067 1068 1084 1066 1044 1084 1044 1067 494 493 466 1085 1084 1068 494 466 489 495 450 477 495 474 450 1086 1085 1068 1086 1068 1069 1087 1069 1070 1087 1086 1069 496 495 477 1088 1036 1053 496 477 478 1088 1087 1070 1088 1070 1036 497 15 479 497 479 480 1089 1088 1053 1089 1053 1054 498 497 480 1090 1074 1060 1090 1060 1077 499 472 454 499 481 482 499 454 481 499 480 472 1091 1090 1077 1091 1077 1078 500 499 482 1092 1072 1057 1093 1092 1057 501 476 464 1093 1058 71 1093 1057 1058 501 464 491 1094 1076 1066 502 501 491 502 491 492 1094 1084 1085 503 478 468 1094 1066 1084 503 468 493 503 496 478 1095 1094 1085 503 493 494 1096 1078 1063 504 503 494 1096 1091 1078 1096 1063 1064 1097 1096 1064 1097 1064 1081 505 484 461 1098 1075 1076 1098 42 1080 505 490 484 1098 1080 1075 1099 42 1098 1099 43 42 1099 1076 1094 506 505 461 1099 1098 1076 506 461 462 1100 1088 1089 1100 1087 1088 507 16 15 1101 1085 1086 507 15 497 1101 1095 1085 508 507 497 508 497 498 1102 1100 1089 1103 1086 1087 509 432 451 1103 1101 1086 1103 1087 1100 509 486 432 509 451 452 1104 1089 1054 1104 1054 1073 510 509 452 1105 1073 1074 511 480 499 1105 1104 1073 511 498 480 1106 1072 1092 512 511 499 512 499 500 1106 1083 1072 1107 1106 1092 1107 1092 1093 1107 1093 71 1107 71 72 513 482 474 513 474 495 1108 1091 1096 1109 1096 1097 514 513 495 514 495 496 1109 1108 1096 515 486 509 1110 1095 1101 1110 1101 1103 515 488 486 1111 1110 1103 515 509 510 1112 1081 1083 516 515 510 1112 1097 1081 1113 1112 1083 517 505 506 1113 1083 1106 517 490 505 1114 1094 1095 518 517 506 1114 43 1099 1114 1099 1094 1115 1095 1110 1115 43 1114 1115 44 43 519 446 469 1115 1114 1095 519 492 446 520 469 470 520 470 57 520 57 58 1116 1104 1105 520 519 469 1116 1089 1104 521 504 494 1116 1102 1089 1117 1116 1105 1118 1103 1100 521 489 490 521 494 489 1118 1111 1103 522 521 490 1119 1118 1100 522 490 517 523 496 503 1119 1100 1102 1120 1105 1074 1120 1074 1090 524 523 503 524 503 504 1121 1090 1091 525 500 482 1121 1120 1090 525 513 514 525 482 513 1122 1097 1112 1122 1109 1097 1123 1112 1113 1123 1122 1112 1124 1118 1119 1124 1111 1118 526 525 514 527 507 508 1125 1124 1119 527 16 507 1126 44 1115 528 527 508 1126 1115 1110 1126 1110 1111 1127 1111 1124 1127 45 44 1127 1126 1111 1127 44 1126 529 521 522 1128 1113 1106 529 504 521 1128 1106 1107 1129 1107 72 529 524 504 1129 1128 1107 1130 1105 1120 530 529 522 1130 1117 1105 531 508 498 531 498 511 531 511 512 1131 1125 1119 1131 1119 1102 1131 1102 1116 532 531 512 533 506 462 1132 1130 1120 1132 1120 1121 533 487 488 533 462 487 1133 1116 1117 534 533 488 1133 1117 1130 1133 1131 1116 1134 1091 1108 1134 1121 1091 535 510 452 1135 1108 1109 535 452 475 536 475 476 1135 1134 1108 536 476 501 536 535 475 1136 1125 1131 537 502 492 537 492 519 1136 1131 1133 538 537 519 538 519 520 1137 1136 1133 538 520 58 1138 1113 1128 1138 1123 1113 539 496 523 539 514 496 539 526 514 1139 72 73 1139 1138 1128 1139 1128 1129 540 523 524 1139 1129 72 1140 1127 1124 540 539 523 1140 1124 1125 1140 45 1127 1141 45 1140 1141 1140 1125 1141 46 45 1141 1125 1136 541 528 508 541 508 531 1142 1133 1130 542 541 531 1143 1130 1132 542 531 532 1143 1142 1130 543 512 500 1144 1121 1134 543 532 512 1144 1132 1121 543 500 525 1144 1134 1135 1145 1144 1135 544 543 525 544 525 526 545 510 535 1146 1135 1109 545 535 536 1146 1109 1122 545 516 510 546 545 536 1147 1146 1122 547 518 506 1147 1122 1123 1148 1137 1133 1148 1142 1143 547 506 533 1148 1133 1142 548 533 534 548 547 533 1149 1148 1143 1150 1136 1137 1150 46 1141 549 17 16 1150 1141 1136 1151 1137 1148 549 16 527 1151 47 46 1151 1150 1137 1151 46 1150 1152 1132 1144 550 549 527 550 527 528 551 530 522 1152 1143 1132 551 522 517 1153 1144 1145 551 517 518 1153 1152 1144 552 518 547 1154 1135 1146 1154 1145 1135 552 551 518 1155 1146 1147 1155 1154 1146 553 540 524 553 524 529 1156 1147 1123 1156 1123 1138 1157 1138 1139 1157 1156 1138 1157 1139 73 554 553 529 1158 1149 1143 554 529 530 1158 1143 1152 555 530 551 1158 1152 1153 555 554 530 555 551 552 1159 1158 1153 1160 1148 1149 556 555 552 1160 1151 1148 1160 47 1151 557 526 539 1161 48 47 557 544 526 1161 1149 1158 557 539 540 1161 47 1160 1161 1160 1149 558 557 540 1162 1145 1154 1162 1153 1145 1163 1162 1154 559 534 488 1163 1154 1155 559 488 515 1164 1155 1147 1164 1147 1156 1164 1163 1155 560 516 545 1165 1156 1157 1165 1157 73 1165 73 74 560 559 515 1165 1164 1156 560 515 516 1166 1159 1153 1166 1153 1162 1166 1162 1163 561 543 544 1167 1166 1163 1168 1158 1159 561 532 543 1168 1161 1158 1168 48 1161 562 561 544 1169 49 48 1169 48 1168 1169 1159 1166 1169 1168 1159 563 528 541 563 541 542 1170 1163 1164 563 550 528 1171 1164 1165 1171 1170 1164 1171 1165 74 564 563 542 1172 1170 1171 1172 1167 1163 1172 1163 1170 1173 1171 74 565 536 501 1173 74 39 1173 1172 1171 1174 1166 1167 1174 49 1169 566 501 502 1174 1169 1166 566 565 501 1175 1167 1172 1175 49 1174 1175 50 49 1175 1174 1167 1176 1172 1173 567 540 553 567 553 554 567 558 540 1176 50 1175 1176 1175 1172 1177 1176 1173 568 567 554 1177 1173 39 1177 50 1176 1177 39 50 569 544 557 569 562 544 570 569 557 570 557 558 571 542 532 571 532 561 572 571 561 572 561 562 573 565 566 573 546 536 573 536 565 574 573 566 575 534 559 575 548 534 576 559 560 576 575 559 577 17 549 578 577 549 578 549 550 579 552 547 579 547 548 579 556 552 580 550 563 580 578 550 581 580 563 581 563 564 582 548 575 582 579 548 583 568 554 583 554 555 584 583 555 584 555 556 585 584 556 585 556 579 585 579 582 586 585 582 587 558 567 587 570 558 587 567 568 588 587 568 589 560 545 589 545 546 590 589 546 591 18 17 591 17 577 592 577 578 592 591 577 593 562 569 593 569 570 594 593 570 595 583 584 595 588 568 595 568 583 596 595 584 597 571 572 597 564 542 597 581 564 597 542 571 598 597 572 599 570 587 599 587 588 599 594 570 600 599 588 601 566 502 +44 42 1 0.0158203699725339 +4.9987898547482 0.109999999999764 48.9993622995033 -4.998788287694 0.110000000000001 48.9993752339299 4.92831758406932 0.84361472307645 48.9584089873977 4.76871309817379 1.50312127138911 48.8668945836473 4.54261147673411 2.08918149610125 48.7417670021259 4.2616197710893 2.61507158189968 48.5941822416187 3.93034616726075 3.09069244977248 48.431538141768 3.54620698750193 3.52482823331491 48.2587871166534 3.10056850384834 3.92255983342575 48.0800474707818 2.57390042498842 4.28661125868945 47.8994298712656 1.92931816530634 4.61277914702753 47.7235349839353 1.17610804153148 4.85970877393339 47.5815726272853 0.43127875429775 4.98136465553233 47.509109995433 -0.247030400808256 4.99389374805217 47.5014567681128 -0.802206292899442 4.93522695206584 47.5368903938433 -1.25819419612567 4.83910639764576 47.5942493041363 -1.76585088141803 4.67779533662889 47.6871296838333 -2.24416227500491 4.46808022142889 47.8023108751352 -2.76858956516858 4.16352243575552 47.9618472028052 -3.26052938927174 3.79063971832137 48.1425382047816 -3.69147686594692 3.37239009081111 48.3216874730806 -4.05469497971256 2.92565443675564 48.4917800322087 -4.37024754515336 2.42918430216162 48.6510449557035 -4.64948470093225 1.83910716753233 48.7968085864346 -4.83433043815089 1.27641888166112 48.9069291012408 -4.94618213919343 0.731629819170943 48.969573620405 4.9987898535542 0.110000000014637 37 -4.998789853554 0.110000000014328 37 4.89610454591407 1.01398238420575 37 4.63131344242338 1.88439268679023 37 4.21318354798638 2.69241237387162 37 3.65555878253386 3.41128861098553 37 2.97690162078263 4.01722002635924 37 2.19968181563189 4.49014475378895 37 1.34963244403765 4.81440466371502 37 0.454897907044113 4.97926379037774 37 -0.454897907044426 4.97926379037771 37 -1.34963244403795 4.81440466371494 37 -2.19968181563216 4.49014475378881 37 -2.97690162078288 4.01722002635906 37 -3.65555878253406 3.41128861098531 37 -4.21318354798653 2.69241237387136 37 -4.6313134424235 1.88439268678994 37 -4.89610454591414 1.01398238420544 37 0.0220017751601142 48.9993622995033 3.11959084913696 48.9993752339298 0.169533894985032 48.9584089873977 0.30534712712896 48.8668945836472 0.431062466156462 48.7417670021259 0.550383688376551 48.5941822416187 0.666372354925423 48.431538141768 0.782374742380483 48.2587871166534 0.901908711875852 48.0800474707818 1.03004520353424 47.8994298712656 1.17465255643824 47.7235349839352 1.3333497563849 47.5815726272853 1.48443325325238 47.5091099954331 1.62022252798121 47.5014567681128 1.73193401347379 47.5368903938433 1.8251695223682 47.5942493041364 1.93175381794526 47.6871296838333 2.03625464191166 47.8023108751352 2.15761874755381 47.961847202805 2.28115516162508 48.1425382047816 2.40133546696291 48.3216874730806 2.51655127813564 48.4917800322087 2.63427228826577 48.6510449557036 2.76492774070531 48.7968085864346 2.88345146071135 48.9069291012409 2.9947394440838 48.969573620405 0.0220017750533005 37 3.11959087853649 37 0.204212898790194 37 0.386424022524159 37 0.568635146258123 37 0.750846269992088 37 0.933057393726053 37 1.11526851746002 37 1.29747964119398 37 1.47969076492795 37 1.66190188866191 37 1.84411301239588 37 2.02632413612984 37 2.20853525986381 37 2.39074638359777 37 2.57295750733174 37 2.7551686310657 37 2.93737975479967 37 25 43 44 26 25 44 26 44 28 2 26 28 3 1 27 3 27 29 4 29 30 4 3 29 5 30 31 5 4 30 6 5 31 7 31 32 7 6 31 8 7 32 9 32 33 9 8 32 10 33 34 10 9 33 11 34 35 11 10 34 12 35 36 12 11 35 13 12 36 14 36 37 14 13 36 15 37 38 15 14 37 16 15 38 17 38 39 17 16 38 18 17 39 19 18 39 19 39 40 20 19 40 20 40 41 21 20 41 22 21 41 22 41 42 23 22 42 23 42 43 24 23 43 25 24 43 +36 34 1 4.28196367252554e-012 +4.9987898535542 0.100000000014637 20 -4.998789853554 0.100000000014328 20 4.89610454591407 1.00398238420575 20 4.63131344242338 1.87439268679023 20 4.21318354798638 2.68241237387162 20 3.65555878253386 3.40128861098553 20 2.97690162078263 4.00722002635924 20 2.19968181563189 4.48014475378895 20 1.34963244403765 4.80440466371502 20 0.454897907044113 4.96926379037774 20 -0.454897907044426 4.96926379037771 20 -1.34963244403795 4.80440466371494 20 -2.19968181563216 4.48014475378881 20 -2.97690162078288 4.00722002635906 20 -3.65555878253406 3.40128861098531 20 -4.21318354798653 2.68241237387136 20 -4.6313134424235 1.87439268678994 20 -4.89610454591414 1.00398238420544 20 3.9887498046261 0.100000000012089 20 -4.00874980462601 0.10000000001055 20 3.90472205823227 0.821554141118968 20 3.69158163032407 1.51601234627145 20 3.35635817250308 2.16047047062016 20 2.91010779524206 2.73367343773293 20 2.36754842282215 3.21671625996697 20 1.74657437683553 3.59366754982217 20 1.06766619792732 3.85209495805138 20 0.353215170632453 3.98347520888764 20 -0.373215170634012 3.9834752088875 20 -1.08766619792883 3.85209495805096 20 -1.76657437683691 3.59366754982149 20 -2.3875484228234 3.21671625996605 20 -2.93010779524312 2.7336734377318 20 -3.37635817250393 2.16047047061885 20 -3.71158163032464 1.51601234627002 20 -3.92472205823259 0.821554141117454 20 4.99878985355424 0.100000000014627 -4.99878985355424 0.100000000014327 4.89610454591407 1.00398238420575 4.63131344242338 1.87439268679023 4.21318354798637 2.68241237387162 3.65555878253386 3.40128861098553 2.97690162078263 4.00722002635924 2.19968181563189 4.48014475378895 1.34963244403765 4.80440466371502 0.454897907044117 4.96926379037774 -0.45489790704442 4.96926379037771 -1.34963244403794 4.80440466371494 -2.19968181563216 4.48014475378881 -2.97690162078288 4.00722002635906 -3.65555878253407 3.40128861098531 -4.21318354798653 2.68241237387136 -4.6313134424235 1.87439268678994 -4.89610454591413 1.00398238420544 3.9887498046261 0.1 -4.0087498046262 0.1 3.90472205823226 0.821554141118968 3.69158163032406 1.51601234627145 3.35635817250308 2.16047047062016 2.91010779524205 2.73367343773293 2.36754842282215 3.21671625996697 1.74657437683552 3.59366754982217 1.06766619792733 3.85209495805138 0.353215170632453 3.98347520888764 -0.373215170634004 3.9834752088875 -1.08766619792883 3.85209495805096 -1.76657437683692 3.59366754982149 -2.3875484228234 3.21671625996605 -2.93010779524311 2.7336734377318 -3.37635817250392 2.16047047061885 -3.71158163032465 1.51601234627002 -3.92472205823259 0.821554141117454 18 2 20 36 18 20 17 18 36 35 17 36 16 17 35 34 16 35 15 16 34 33 15 34 14 33 32 14 15 33 13 32 31 13 14 32 30 13 31 12 13 30 29 12 30 11 29 28 11 12 29 10 28 27 10 11 28 3 19 1 3 21 19 9 27 26 9 10 27 4 22 21 4 21 3 8 26 25 8 9 26 5 23 22 5 22 4 7 8 25 7 25 24 6 7 24 6 24 23 6 23 5 +36 34 1 0.0165247911125193 +3.9987498046261 0.100000000012089 65 -3.998749804626 0.10000000001055 65 3.91472205823227 0.821554141118968 65 3.70158163032407 1.51601234627145 65 3.36635817250308 2.16047047062016 65 2.92010779524206 2.73367343773293 65 2.37754842282216 3.21671625996697 65 1.75657437683553 3.59366754982217 65 1.07766619792733 3.85209495805138 65 0.363215170632458 3.98347520888764 65 -0.363215170634007 3.9834752088875 65 -1.07766619792882 3.85209495805096 65 -1.75657437683691 3.59366754982149 65 -2.3775484228234 3.21671625996605 65 -2.92010779524311 2.7336734377318 65 -3.36635817250392 2.16047047061885 65 -3.70158163032464 1.51601234627002 65 -3.91472205823258 0.821554141117454 65 3.9987498046261 0.100000000012087 80 -3.998749804626 0.100000000010548 80 3.91472205823227 0.821554141118955 80 3.70158163032407 1.51601234627144 80 3.3663581725031 2.16047047062015 80 2.92010779524206 2.73367343773292 80 2.37754842282216 3.21671625996696 80 1.75657437683553 3.59366754982217 80 1.07766619792734 3.85209495805137 80 0.363215170632472 3.98347520888764 80 -0.363215170633993 3.9834752088875 80 -1.07766619792882 3.85209495805096 80 -1.75657437683691 3.5936675498215 80 -2.3775484228234 3.21671625996606 80 -2.92010779524311 2.73367343773181 80 -3.36635817250392 2.16047047061886 80 -3.70158163032464 1.51601234627003 80 -3.91472205823258 0.821554141117465 80 0.0250026049023901 65 3.1165900486878 65 0.206860689830944 65 0.388718774759497 65 0.570576859688051 65 0.752434944616605 65 0.934293029545158 65 1.11615111447371 65 1.29800919940226 65 1.47986728433082 65 1.66172536925937 65 1.84358345418792 65 2.02544153911648 65 2.20729962404503 65 2.38915770897358 65 2.57101579390214 65 2.75287387883069 65 2.93473196375924 65 0.0250026048993611 80 3.11659004869043 80 0.206860689830937 80 0.388718774759491 80 0.570576859688044 80 0.752434944616597 80 0.934293029545151 80 1.1161511144737 80 1.29800919940226 80 1.47986728433081 80 1.66172536925936 80 1.84358345418792 80 2.02544153911647 80 2.20729962404502 80 2.38915770897358 80 2.57101579390213 80 2.75287387883068 80 2.93473196375924 80 21 1 3 21 19 1 22 3 4 22 21 3 23 4 5 23 22 4 24 5 6 24 23 5 25 6 7 25 24 6 26 7 8 26 25 7 27 8 9 27 26 8 28 9 10 28 27 9 29 10 11 29 28 10 30 11 12 30 29 11 31 12 13 31 30 12 32 13 14 32 31 13 33 14 15 33 32 14 34 15 16 34 33 15 35 16 17 35 34 16 36 35 17 36 17 18 36 18 2 20 36 2 +18 16 1 4.10782519111308e-015 +3.9987498046261 0.100000000012087 80 -3.998749804626 0.100000000010548 80 3.91472205823227 0.821554141118955 80 3.70158163032407 1.51601234627144 80 3.3663581725031 2.16047047062015 80 2.92010779524206 2.73367343773292 80 2.37754842282216 3.21671625996696 80 1.75657437683553 3.59366754982217 80 1.07766619792734 3.85209495805137 80 0.363215170632472 3.98347520888764 80 -0.363215170633993 3.9834752088875 80 -1.07766619792882 3.85209495805096 80 -1.75657437683691 3.5936675498215 80 -2.3775484228234 3.21671625996606 80 -2.92010779524311 2.73367343773181 80 -3.36635817250392 2.16047047061886 80 -3.70158163032464 1.51601234627003 80 -3.91472205823258 0.821554141117465 80 3.99874980462614 0.100000000012087 -3.99874980462618 0.100000000010564 3.91472205823227 0.821554141118955 3.70158163032407 1.51601234627144 3.36635817250309 2.16047047062015 2.92010779524206 2.73367343773292 2.37754842282216 3.21671625996696 1.75657437683554 3.59366754982217 1.07766619792734 3.85209495805137 0.363215170632469 3.98347520888764 -0.363215170633989 3.9834752088875 -1.07766619792881 3.85209495805096 -1.75657437683691 3.5936675498215 -2.37754842282339 3.21671625996606 -2.9201077952431 2.73367343773181 -3.36635817250392 2.16047047061886 -3.70158163032464 1.51601234627003 -3.91472205823258 0.821554141117465 13 14 15 11 12 13 1 17 18 1 18 2 10 11 13 3 16 17 3 17 1 9 10 13 8 9 13 5 3 4 5 15 16 5 13 15 5 16 3 5 8 13 6 7 8 6 8 5 +186 312 1 0.110411919124123 +24.9997999991999 0.100000000023124 39 -24.9997999991998 0.10000000004119 39 24.5579612310182 4.68044230557387 39 23.2840722840047 9.10230618432727 39 21.221293887839 13.2157741251115 39 18.4395151964812 16.8814774033181 39 15.0329858683553 19.9752180434115 39 11.117122786402 22.3921767801181 39 6.82459960976474 24.0504644480392 39 2.30085164730983 24.8938964747802 39 -2.30085164729178 24.8938964747818 39 -6.82459960974731 24.0504644480442 39 -11.1171227863858 22.3921767801262 39 -15.0329858683408 19.9752180434224 39 -18.439515196469 16.8814774033315 39 -21.2212938878295 13.2157741251269 39 -23.2840722839981 9.10230618434415 39 -24.5579612310148 4.68044230559167 39 23.9997916657623 0.10000000002301 40 24.9879291339755 0.0999999999953047 39.1536251230468 24.9534987267608 0.100000000003177 39.3007622617831 24.8994221643554 0.0999999999969085 39.4366676433233 24.8293423839478 0.1 39.55844173595 24.7466279094821 0.1 39.6650150393297 24.6541125799492 0.1 39.7562217720751 24.55417288721 0.1 39.832266030558 24.4487116240246 0.0999999999970319 39.8935739236902 24.3393167440664 0.100000000001878 39.9405980326085 24.2272960241282 0.0999999999994739 39.973777533275 24.1137889260923 0.0999999999985137 39.9934811663084 -23.9997916657623 0.100000000040779 40 -24.9879291334763 0.0999999999916367 39.153625126118 -24.9534987247817 0.100000000005659 39.3007622682087 -24.8994221599662 0.0999999999944916 39.4366676522159 -24.8293423789657 0.0999999999999977 39.5584417433475 -24.7466279044077 0.100000000000001 39.6650150450291 -24.6541125750957 0.100000000000002 39.7562217762747 -24.5541728828568 0.0999999999999989 39.832266033455 -24.4487116199174 0.0999999999947386 39.8935739256356 -24.3393167407661 0.100000000003328 39.9405980338527 -24.2272960211484 0.0999999999990686 39.9737775339599 -24.1137889236836 0.0999999999973681 39.993481166575 23.5749817530135 4.49669159995196 40 22.3515955078792 8.74106276445577 40 20.3710737811292 12.6893401327173 40 17.7005045473515 16.2077801925245 40 14.4303503742985 19.1771996932551 40 10.6713841038417 21.4970128461671 40 6.55093654494093 23.088638556315 40 2.20858328386156 23.8981622698953 40 -2.20858328384396 23.8981622698969 40 -6.55093654492391 23.0886385563199 40 -10.6713841038259 21.497012846175 40 -14.4303503742844 19.1771996932657 40 -17.7005045473396 16.2077801925375 40 -20.3710737811198 12.6893401327324 40 -22.3515955078727 8.74106276447223 40 -23.5749817530102 4.49669159996933 40 24.5463003238489 4.67821988154105 39.1536251501778 24.5124790624052 4.67177396930104 39.3007622163593 24.4593589295757 4.66164993194167 39.4366677022385 24.3905189769421 4.6485298922287 39.5584416324978 24.3092675980289 4.63304438886489 39.665015082051 23.2730162601405 9.09798411758714 39.1536251501778 24.1202171212179 4.59701371672435 39.8322659495882 23.2409494004862 9.0854484077086 39.3007622163593 23.1905847549481 9.06575965142229 39.4366677022385 23.9091617156761 4.5567891785542 39.9405980367732 23.1253157198653 9.04024440931029 39.5584416324978 23.0482790732971 9.01012892367167 39.665015082051 23.687623454666 4.5145667383695 39.9934811737517 21.2112173372772 13.2094988519406 39.1536251501778 22.8690351643267 8.9400581507749 39.8322659495882 21.1819913391579 13.1912980677769 39.3007622163593 21.1360885893517 13.1627116688342 39.4366677022385 22.6689277827595 8.86183134257094 39.9405980367732 21.0766018570322 13.1256657082094 39.5584416324978 21.0063900273738 13.0819405853879 39.665015082051 22.4588813202496 8.77971910758989 39.9934811737517 18.4307595236087 16.8734615367309 39.1536251501778 20.8430256629503 12.9802037849966 39.8322659495882 18.405364595321 16.8502123404543 39.3007622163593 18.3654789758539 16.8136968368428 39.4366677022385 20.6606461589888 12.8666251152819 39.9405980367732 18.313790020864 16.7663753147548 39.5584416324978 18.2527818605322 16.7105220090097 39.665015082051 20.469208095378 12.7474051364719 39.9934811737517 15.0258477248001 19.9657331696021 39.1536251501778 18.1108320012884 16.5805661335057 39.8322659495882 15.0051442738683 19.938223269025 39.3007622163593 14.9726271524901 19.8950158453394 39.4366677022385 17.9523595889746 16.4354837699501 39.9405980367732 14.9304872523011 19.8390220659283 39.5584416324978 14.8807497834821 19.77293294742 39.665015082051 17.7860160520633 16.2831953486096 39.9934811737517 11.1118440201566 22.3815442568278 39.1536251501778 14.7650238435488 19.6191610418459 39.8322659495882 11.0965335017987 22.3507057170138 39.3007622163593 11.0724865936071 22.3022702873089 39.4366677022385 14.6358277389086 19.4474905312005 39.9405980367732 11.0413234934279 22.2395013801342 39.5584416324978 11.0045418751394 22.1654156193849 39.665015082051 14.5002146269025 19.2672933630803 39.9934811737517 6.82135907111544 24.0390445166097 39.1536251501778 10.9189607740145 21.9930376415351 39.8322659495882 6.81196022218499 24.005922180505 39.3007622163593 6.79719826233137 23.9538997893109 39.4366677022385 10.8234182802353 21.8005953656135 39.9405980367732 6.77806780156305 23.8864824325586 39.5584416324978 6.75548823465164 23.806910134943 39.665015082051 10.7231303114432 21.5985947248668 39.9934811737517 2.29975912919657 24.8820760547891 39.1536251501778 6.70295155222377 23.6217664363821 39.8322659495882 2.2965903928192 24.8477921428183 39.3007622163593 2.2916135324041 24.7939453647839 39.4366677022385 6.64429975190736 23.4150725467794 39.9405980367732 2.28516387166362 24.7241637311186 39.5584416324978 2.27755137617753 24.6418008917904 39.665015082051 6.58273479073593 23.1981124326974 39.9934811737517 -2.29951518511169 24.8820986004411 39.1536251501778 2.25983911183673 24.450164340451 39.8322659495882 -2.29634678485408 24.8478146574057 39.3007622163593 -2.29137045235326 24.7939678305807 39.4366677022385 2.24006519115387 24.2362218487849 39.9405980367732 -2.28492147575251 24.7241861336862 39.5584416324978 -2.2773097877524 24.641823219729 39.665015082051 2.21930912480162 24.0116531037288 39.9934811737517 -6.82065203153099 24.0392451360978 39.1536251501778 -2.25959940221797 24.4501864947477 39.8322659495882 -6.81125415679911 24.0061225235685 39.3007622163593 -6.79649372703501 23.9540996982179 39.4366677022385 -2.23982757902912 24.2362438092284 39.9405980367732 -6.77736524915497 23.8866817788294 39.5584416324978 -6.75478802263459 23.8071088171378 39.665015082051 -2.21907371435075 24.0116748606905 39.9934811737517 -11.1107468631194 22.3820889327228 39.1536251501778 -6.70225678567789 23.6219635734475 39.8322659495882 -11.0954378564856 22.351249642424 39.3007622163593 -11.0713933226285 22.3028130339974 39.4366677022385 -6.64361106466974 23.4152679588669 39.9405980367732 -11.0402332994197 22.2400425992825 39.5584416324978 -11.0034553128607 22.1659550355866 39.665015082051 -6.58205248475813 23.1983060341294 39.9934811737517 -15.0244774806027 19.9667643168214 39.1536251501778 -10.91788266181 21.9935728627569 39.8322659495882 -15.0037759176697 19.9392529954722 39.3007622163593 -14.9712617616082 19.8960433403026 39.4366677022385 -10.8223496016693 21.8011259035718 39.9405980367732 -14.9291257042608 19.8400466690452 39.5584416324978 -14.8793927711246 19.7739541373084 39.665015082051 -10.7220715350726 21.5991203469498 39.9934811737517 -18.4292706045953 16.8750877281048 39.1536251501778 -14.7636773845258 19.6201742900538 39.8322659495882 -18.4038777278232 16.851836291171 39.3007622163593 -18.3639953304944 16.8153172683529 39.4366677022385 -14.6344930615978 19.4484949133393 39.9405980367732 -18.312310551169 16.7679911856209 39.5584416324978 -18.2513073193486 16.7121324969754 39.665015082051 -14.4988923164866 19.2682884387836 39.9934811737517 -21.2097926482474 13.2117862784326 39.1536251501778 -18.109368927448 16.5821640968851 39.8322659495882 -21.180568613144 13.1935823425252 39.3007622163593 -21.1346689464775 13.1649909934108 39.4366677022385 -17.950909317243 16.4370677509177 39.9405980367732 -21.0751862096898 13.127938617712 39.5584416324978 -21.0049790959335 13.0842059232177 39.665015082051 -17.7845792183051 16.2847646526767 39.9934811737517 -23.2718565144492 9.10095023717404 39.1536251501778 -20.8416257041673 12.9824515055454 39.8322659495882 -23.2397912527572 9.08841044041053 39.3007622163593 -23.1894291170004 9.06871526520713 39.4366677022385 -20.6592584500486 12.8688531679492 39.9405980367732 -23.1241633344175 9.04319170463048 39.5584416324978 -23.0471305267551 9.01306640075843 39.665015082051 -20.4678332447148 12.7496125443789 39.9934811737517 -24.5456120791722 4.68182961110568 39.1536251501778 -22.8678955499037 8.94297278342829 39.8322659495882 -24.5117917660304 4.67537872517897 39.3007622163593 -24.4586731226168 4.66524687607968 39.4366677022385 -22.6677981401284 8.86472047176498 39.9405980367732 -24.3898351001612 4.65211671290172 39.5584416324978 -24.3085859994255 4.63661926087351 39.665015082051 -22.4577621446967 8.78258146659997 39.9934811737517 -24.1195408233313 4.60056078735002 39.8322659495882 -23.9084913354942 4.56030521179635 39.9405980367732 -23.6869592861139 4.51805019264049 39.9934811737517 0.00400001066766845 0 3.1375926429214 0 0.188328989035535 0 0.372657967403402 0 0.556986945771268 0 0.741315924139135 0 0.925644902507001 0 1.10997388087487 0 1.29430285924273 0 1.4786318376106 0 1.66296081597847 0 1.84728979434633 0 2.0316187727142 0 2.21594775108207 0 2.40027672944993 0 2.5846057078178 0 2.76893468618567 0 2.95326366455353 0 0.00416667872404679 1.5707963267949 0.00400191090641988 0.154235935917537 0.00400743261767055 0.305491774366397 0.00401613586215116 0.451891223831295 0.00402747110124461 0.592506025803866 0.0040409326171681 0.727514012579694 0.00405609616918842 0.857519374087966 0.00407260498332727 0.983182614716062 0.0040901722709243 1.10524437640648 0.00410855565007739 1.22438743658666 0.00412755232813467 1.34128430468869 0.00414698109268693 1.45655166738375 3.13742597486501 1.5707963267949 3.13759074268344 0.154235939027252 3.13758522097171 0.305491781095041 3.13757651772703 0.45189123373432 3.13756518248774 0.592506034719877 3.1375517209718 0.727514020213574 3.13753655741981 0.857519380503979 3.13752004860574 0.983182619946073 3.13750248131827 1.10524438097326 3.1374840979391 1.22438744010574 3.13746510126117 1.34128430774686 3.13744567249674 1.45655166980802 0.18847604908528 1.5707963267949 0.372785419446513 1.5707963267949 0.557094789807746 1.5707963267949 0.741404160168979 1.5707963267949 0.925713530530212 1.5707963267949 1.11002290089145 1.5707963267949 1.29433227125268 1.5707963267949 1.47864164161391 1.5707963267949 1.66295101197514 1.5707963267949 1.84726038233638 1.5707963267949 2.03156975269761 1.5707963267949 2.21587912305884 1.5707963267949 2.40018849342008 1.5707963267949 2.58449786378131 1.5707963267949 2.76880723414254 1.5707963267949 2.95311660450378 1.5707963267949 0.188328989035535 0.154235935917537 0.188328989035535 0.305491774366397 0.188328989035535 0.451891223831295 0.188328989035535 0.592506025803866 0.188328989035535 0.727514012579694 0.372657967403402 0.154235935917537 0.188328989035535 0.983182614716062 0.372657967403402 0.305491774366397 0.372657967403402 0.451891223831295 0.188328989035535 1.22438743658666 0.372657967403402 0.592506025803866 0.372657967403402 0.727514012579694 0.188328989035535 1.45655166738375 0.556986945771268 0.154235935917537 0.372657967403402 0.983182614716062 0.556986945771268 0.305491774366397 0.556986945771268 0.451891223831295 0.372657967403402 1.22438743658666 0.556986945771268 0.592506025803866 0.556986945771268 0.727514012579694 0.372657967403402 1.45655166738375 0.741315924139135 0.154235935917537 0.556986945771268 0.983182614716062 0.741315924139135 0.305491774366397 0.741315924139135 0.451891223831295 0.556986945771268 1.22438743658666 0.741315924139135 0.592506025803866 0.741315924139135 0.727514012579694 0.556986945771268 1.45655166738375 0.925644902507001 0.154235935917537 0.741315924139135 0.983182614716062 0.925644902507001 0.305491774366397 0.925644902507001 0.451891223831295 0.741315924139135 1.22438743658666 0.925644902507001 0.592506025803866 0.925644902507001 0.727514012579694 0.741315924139135 1.45655166738375 1.10997388087487 0.154235935917537 0.925644902507001 0.983182614716062 1.10997388087487 0.305491774366397 1.10997388087487 0.451891223831295 0.925644902507001 1.22438743658666 1.10997388087487 0.592506025803866 1.10997388087487 0.727514012579694 0.925644902507001 1.45655166738375 1.29430285924273 0.154235935917537 1.10997388087487 0.983182614716062 1.29430285924273 0.305491774366397 1.29430285924273 0.451891223831295 1.10997388087487 1.22438743658666 1.29430285924273 0.592506025803866 1.29430285924273 0.727514012579694 1.10997388087487 1.45655166738375 1.4786318376106 0.154235935917537 1.29430285924273 0.983182614716062 1.4786318376106 0.305491774366397 1.4786318376106 0.451891223831295 1.29430285924273 1.22438743658666 1.4786318376106 0.592506025803866 1.4786318376106 0.727514012579694 1.29430285924273 1.45655166738375 1.66295101197514 0.154235935917537 1.4786318376106 0.983182614716062 1.66295101197514 0.305491774366397 1.66295101197514 0.451891223831295 1.4786318376106 1.22438743658666 1.66295101197514 0.592506025803866 1.66295101197514 0.727514012579694 1.4786318376106 1.45655166738375 1.84726038233638 0.154235935917537 1.66295101197514 0.983182614716062 1.84726038233638 0.305491774366397 1.84726038233638 0.451891223831295 1.66295101197514 1.22438743658666 1.84726038233638 0.592506025803866 1.84726038233638 0.727514012579694 1.66295101197514 1.45655166738375 2.03156975269761 0.154235935917537 1.84726038233638 0.983182614716062 2.03156975269761 0.305491774366397 2.03156975269761 0.451891223831295 1.84726038233638 1.22438743658666 2.03156975269761 0.592506025803866 2.03156975269761 0.727514012579694 1.84726038233638 1.45655166738375 2.21587912305884 0.154235935917537 2.03156975269761 0.983182614716062 2.21587912305884 0.305491774366397 2.21587912305884 0.451891223831295 2.03156975269761 1.22438743658666 2.21587912305884 0.592506025803866 2.21587912305884 0.727514012579694 2.03156975269761 1.45655166738375 2.40018849342008 0.154235935917537 2.21587912305884 0.983182614716062 2.40018849342008 0.305491774366397 2.40018849342008 0.451891223831295 2.21587912305884 1.22438743658666 2.40018849342008 0.592506025803866 2.40018849342008 0.727514012579694 2.21587912305884 1.45655166738375 2.58449786378131 0.154235935917537 2.40018849342008 0.983182614716062 2.58449786378131 0.305491774366397 2.58449786378131 0.451891223831295 2.40018849342008 1.22438743658666 2.58449786378131 0.592506025803866 2.58449786378131 0.727514012579694 2.40018849342008 1.45655166738375 2.76880723414254 0.154235935917537 2.58449786378131 0.983182614716062 2.76880723414254 0.305491774366397 2.76880723414254 0.451891223831295 2.58449786378131 1.22438743658666 2.76880723414254 0.592506025803866 2.76880723414254 0.727514012579694 2.58449786378131 1.45655166738375 2.95311660450378 0.154235935917537 2.76880723414254 0.983182614716062 2.95311660450378 0.305491774366397 2.95311660450378 0.451891223831295 2.76880723414254 1.22438743658666 2.95311660450378 0.592506025803866 2.95311660450378 0.727514012579694 2.76880723414254 1.45655166738375 2.95311660450378 0.983182614716062 2.95311660450378 1.22438743658666 2.95311660450378 1.45655166738375 151 52 143 151 140 148 152 14 15 152 144 14 153 145 150 154 144 152 3 20 1 154 146 144 155 147 146 155 146 154 156 148 145 156 145 153 157 149 147 157 147 155 158 153 150 158 150 149 158 149 157 159 54 53 159 148 156 159 53 151 159 151 148 160 15 16 160 152 15 161 153 158 162 152 160 162 154 152 163 155 154 163 154 162 164 156 153 164 153 161 165 157 155 165 155 163 166 158 157 166 157 165 167 54 159 167 159 156 167 156 164 167 55 54 168 16 17 168 160 16 169 161 158 169 158 166 170 160 168 170 162 160 171 163 162 171 162 170 172 164 161 172 161 169 173 165 163 173 163 171 174 166 165 174 165 173 175 164 172 175 167 164 175 55 167 175 56 55 176 17 18 176 168 17 176 32 33 176 18 32 176 170 168 177 169 166 177 166 174 178 33 34 178 176 33 178 171 170 32 18 2 178 170 176 179 34 35 179 173 171 179 178 34 179 171 178 180 172 169 180 169 177 181 35 36 181 174 173 181 173 179 181 179 35 182 174 181 182 36 37 182 177 174 182 181 36 183 175 172 183 57 56 183 172 180 183 56 175 184 37 38 184 38 39 184 182 37 184 180 177 184 177 182 185 39 40 185 40 41 59 21 20 185 184 39 185 183 180 185 180 184 186 41 42 59 20 3 186 42 31 186 58 57 186 31 58 60 22 21 186 57 183 186 185 41 186 183 185 60 21 59 61 23 22 61 22 60 62 24 23 62 23 61 63 25 24 63 24 62 64 3 4 64 59 3 65 26 25 65 27 26 65 25 63 66 59 64 66 60 59 67 60 66 67 61 60 68 28 27 68 29 28 68 27 65 69 61 67 69 62 61 70 63 62 70 62 69 71 30 29 71 19 30 71 43 19 71 29 68 72 4 5 72 64 4 73 63 70 73 65 63 74 66 64 74 64 72 75 66 74 75 67 66 76 68 65 76 65 73 77 69 67 77 67 75 78 70 69 78 69 77 78 73 70 79 43 71 79 44 43 79 71 68 79 68 76 80 5 6 80 72 5 81 73 78 82 72 80 82 74 72 83 75 74 83 74 82 84 73 81 84 76 73 85 77 75 85 75 83 86 78 77 86 77 85 87 45 44 87 79 76 87 44 79 87 76 84 88 6 7 88 7 8 88 80 6 88 82 80 89 81 78 89 78 86 90 82 88 91 82 90 91 83 82 92 81 89 92 84 81 93 83 91 93 85 83 94 85 93 94 89 86 94 86 85 95 84 92 95 46 45 95 45 87 95 87 84 96 88 8 96 90 88 97 89 94 98 90 96 98 91 90 99 93 91 99 91 98 100 92 89 100 89 97 101 93 99 101 94 93 102 94 101 102 97 94 103 92 100 103 46 95 103 47 46 103 95 92 104 96 8 104 8 9 104 98 96 105 100 97 105 97 102 106 98 104 107 99 98 107 98 106 108 103 100 108 100 105 109 101 99 109 99 107 110 102 101 110 105 102 110 101 109 111 47 103 111 48 47 111 103 108 112 9 10 112 104 9 113 105 110 114 104 112 114 106 104 115 106 114 115 107 106 116 108 105 116 105 113 117 109 107 117 107 115 118 110 109 118 109 117 119 49 48 119 48 111 119 111 108 119 108 116 120 10 11 120 112 10 120 114 112 121 110 118 121 116 113 121 113 110 122 115 114 122 114 120 123 115 122 123 117 115 124 116 121 125 117 123 125 118 117 126 118 125 126 121 118 127 116 124 127 50 49 127 49 119 127 119 116 128 11 12 128 120 11 129 124 121 129 121 126 130 120 128 130 122 120 131 122 130 131 123 122 132 124 129 132 127 124 133 125 123 133 123 131 134 129 126 134 126 125 134 125 133 135 127 132 135 51 50 135 50 127 136 12 13 136 128 12 137 129 134 138 130 128 138 128 136 139 131 130 139 130 138 140 129 137 140 132 129 141 133 131 141 131 139 142 134 133 142 133 141 143 135 132 143 51 135 143 132 140 143 52 51 144 13 14 144 136 13 145 137 134 145 134 142 146 136 144 146 138 136 147 139 138 147 138 146 148 140 137 148 137 145 149 139 147 149 141 139 150 142 141 150 145 142 150 141 149 151 53 52 151 143 140 +18 16 1 4.52970994047064e-014 +23.9997916657623 0.10000000002301 50 -23.9997916657623 0.100000000040779 50 23.5749817530135 4.49669159995196 50 22.3515955078792 8.74106276445577 50 20.3710737811292 12.6893401327173 50 17.7005045473515 16.2077801925245 50 14.4303503742985 19.1771996932551 50 10.6713841038417 21.4970128461671 50 6.55093654494093 23.088638556315 50 2.20858328386156 23.8981622698953 50 -2.20858328384396 23.8981622698969 50 -6.55093654492391 23.0886385563199 50 -10.6713841038259 21.497012846175 50 -14.4303503742844 19.1771996932657 50 -17.7005045473396 16.2077801925375 50 -20.3710737811198 12.6893401327324 50 -22.3515955078727 8.74106276447223 50 -23.5749817530102 4.49669159996933 50 23.9997916657623 0.10000000002301 -23.9997916657623 0.100000000040686 23.5749817530135 4.49669159995196 22.3515955078792 8.74106276445577 20.3710737811292 12.6893401327173 17.7005045473515 16.2077801925245 14.4303503742985 19.1771996932551 10.6713841038417 21.4970128461671 6.55093654494093 23.088638556315 2.20858328386156 23.8981622698953 -2.20858328384395 23.8981622698969 -6.55093654492392 23.0886385563199 -10.6713841038259 21.497012846175 -14.4303503742844 19.1771996932657 -17.7005045473396 16.2077801925375 -20.3710737811198 12.6893401327324 -22.3515955078727 8.74106276447223 -23.5749817530102 4.49669159996933 16 17 18 16 18 2 12 13 14 12 14 15 12 15 16 9 10 11 9 11 12 4 1 3 4 2 1 4 16 2 4 12 16 7 8 9 7 9 12 7 12 4 6 4 5 6 7 4 +71 71 1 2.30926389122033e-014 +26 0 15 25.6050015783174 4.51485261934019 15 24.4320081404336 8.89252372646739 15 22.5166604983954 13 15 19.9171555210934 16.71247785185 15 16.71247785185 19.9171555210934 15 13 22.5166604983954 15 8.89252372646737 24.4320081404336 15 4.51485261934017 25.6050015783174 15 -1.57274909241834e-014 26 15 -4.51485261934021 25.6050015783174 15 -8.8925237264674 24.4320081404336 15 -13 22.5166604983954 15 -16.71247785185 19.9171555210934 15 -19.9171555210934 16.71247785185 15 -22.5166604983954 13 15 -24.4320081404336 8.89252372646735 15 -25.6050015783174 4.51485261934014 15 -26 -5.454762076057e-014 15 -25.6050015783174 -4.51485261934025 15 -24.4320081404336 -8.89252372646745 15 -22.5166604983954 -13.0000000000001 15 -19.9171555210934 -16.7124778518501 15 -16.71247785185 -19.9171555210935 15 -12.9999999999999 -22.5166604983954 15 -8.89252372646732 -24.4320081404336 15 -4.51485261934012 -25.6050015783174 15 6.45019519567025e-014 -26 15 4.51485261934025 -25.6050015783174 15 8.89252372646744 -24.4320081404336 15 13 -22.5166604983954 15 16.7124778518501 -19.9171555210934 15 19.9171555210935 -16.71247785185 15 22.5166604983954 -13 15 24.4320081404336 -8.89252372646736 15 25.6050015783174 -4.51485261934017 15 16 0 15 15.7428734175781 2.85691031677824 15 14.9797579302358 5.62199718530153 15 13.7351806976298 8.20638843849454 15 12.0491434560577 10.5270196150354 15 9.9758368297397 12.5093037194885 15 7.58189859956794 14.0895285097078 15 4.94427190999911 15.2169042607225 15 2.14773225308244 15.855196188287 15 -0.717837285608287 15.983889064661 15 -3.56033494330108 15.5988465949092 15 -6.28840050646282 14.7124443608232 15 -8.81435170323368 13.3531720595408 15 -11.0570023837899 11.5647178212382 15 -12.9442719099992 9.40456403667954 15 -14.4155018864387 6.94213982588089 15 -15.4234057711337 4.25658952906676 15 -15.9355887039238 1.4342289424549 15 -15.9355887039238 -1.43422894245498 15 -15.4234057711336 -4.25658952906684 15 -14.4155018864387 -6.94213982588097 15 -12.9442719099991 -9.4045640366796 15 -11.0570023837898 -11.5647178212383 15 -8.81435170323361 -13.3531720595409 15 -6.28840050646274 -14.7124443608232 15 -3.56033494330099 -15.5988465949092 15 -0.7178372856082 -15.983889064661 15 2.14773225308253 -15.855196188287 15 4.9442719099992 -15.2169042607224 15 7.58189859956801 -14.0895285097078 15 9.97583682973977 -12.5093037194885 15 12.0491434560578 -10.5270196150354 15 13.7351806976299 -8.20638843849447 15 14.9797579302358 -5.62199718530145 15 15.7428734175781 -2.85691031677815 15 26 0 25.6050015783174 4.51485261934019 24.4320081404336 8.89252372646739 22.5166604983954 13 19.9171555210934 16.71247785185 16.71247785185 19.9171555210934 13 22.5166604983954 8.89252372646737 24.4320081404336 4.51485261934018 25.6050015783174 -1.4210854715202e-014 26 -4.5148526193402 25.6050015783174 -8.8925237264674 24.4320081404336 -13 22.5166604983954 -16.71247785185 19.9171555210934 -19.9171555210934 16.71247785185 -22.5166604983954 13 -24.4320081404336 8.89252372646735 -25.6050015783174 4.51485261934014 -26 -5.32907051820075e-014 -25.6050015783174 -4.51485261934025 -24.4320081404336 -8.89252372646745 -22.5166604983954 -13.0000000000001 -19.9171555210934 -16.7124778518501 -16.71247785185 -19.9171555210935 -12.9999999999999 -22.5166604983954 -8.89252372646732 -24.4320081404336 -4.51485261934012 -25.6050015783174 6.3948846218409e-014 -26 4.51485261934025 -25.6050015783174 8.89252372646744 -24.4320081404336 13 -22.5166604983954 16.7124778518501 -19.9171555210934 19.9171555210935 -16.71247785185 22.5166604983954 -13 24.4320081404336 -8.89252372646736 25.6050015783174 -4.51485261934017 16 -4.61852778244065e-014 15.7428734175781 2.85691031677824 14.9797579302358 5.62199718530153 13.7351806976298 8.20638843849454 12.0491434560577 10.5270196150354 9.9758368297397 12.5093037194885 7.58189859956794 14.0895285097078 4.94427190999911 15.2169042607225 2.14773225308244 15.855196188287 -0.717837285608287 15.983889064661 -3.56033494330108 15.5988465949092 -6.28840050646282 14.7124443608232 -8.81435170323368 13.3531720595408 -11.0570023837899 11.5647178212382 -12.9442719099992 9.40456403667954 -14.4155018864387 6.94213982588089 -15.4234057711337 4.25658952906677 -15.9355887039238 1.4342289424549 -15.9355887039238 -1.43422894245498 -15.4234057711336 -4.25658952906684 -14.4155018864387 -6.94213982588096 -12.9442719099991 -9.4045640366796 -11.0570023837898 -11.5647178212383 -8.81435170323361 -13.3531720595409 -6.28840050646274 -14.7124443608232 -3.56033494330099 -15.5988465949092 -0.717837285608201 -15.983889064661 2.14773225308253 -15.855196188287 4.94427190999919 -15.2169042607224 7.58189859956801 -14.0895285097078 9.97583682973976 -12.5093037194885 12.0491434560578 -10.5270196150354 13.7351806976299 -8.20638843849446 14.9797579302358 -5.62199718530145 15.7428734175781 -2.85691031677815 6 7 42 6 41 5 6 42 41 67 31 32 67 66 31 50 15 51 68 67 32 14 15 50 33 68 32 49 14 50 69 68 33 13 49 48 13 14 49 34 69 33 34 70 69 59 23 24 12 48 47 12 13 48 35 70 34 35 71 70 58 22 23 58 23 59 60 24 25 60 59 24 57 21 22 57 22 58 61 25 26 11 47 46 11 12 47 61 60 25 56 21 57 36 37 71 36 71 35 56 20 21 62 61 26 62 26 27 55 20 56 55 19 20 63 27 28 63 62 27 10 46 45 10 11 46 54 19 55 54 18 19 1 37 36 64 63 28 9 45 44 9 10 45 64 28 29 53 17 18 2 38 37 53 18 54 2 37 1 65 64 29 65 29 30 8 44 43 8 9 44 3 39 38 52 17 53 3 38 2 52 16 17 7 8 43 66 65 30 66 30 31 7 43 42 4 40 39 51 16 52 4 39 3 15 16 51 5 41 40 5 40 4 +74 72 1 0.0989378496146194 +26 0 15 26 0 15 25.6050015783174 4.51485261934019 15 24.4320081404336 8.89252372646739 15 22.5166604983954 13 15 19.9171555210934 16.71247785185 15 16.71247785185 19.9171555210934 15 13 22.5166604983954 15 8.89252372646737 24.4320081404336 15 4.51485261934017 25.6050015783174 15 -1.57274909241834e-014 26 15 -4.51485261934021 25.6050015783174 15 -8.8925237264674 24.4320081404336 15 -13 22.5166604983954 15 -16.71247785185 19.9171555210934 15 -19.9171555210934 16.71247785185 15 -22.5166604983954 13 15 -24.4320081404336 8.89252372646735 15 -25.6050015783174 4.51485261934014 15 -26 -5.454762076057e-014 15 -25.6050015783174 -4.51485261934025 15 -24.4320081404336 -8.89252372646745 15 -22.5166604983954 -13.0000000000001 15 -19.9171555210934 -16.7124778518501 15 -16.71247785185 -19.9171555210935 15 -12.9999999999999 -22.5166604983954 15 -8.89252372646732 -24.4320081404336 15 -4.51485261934012 -25.6050015783174 15 6.45019519567025e-014 -26 15 4.51485261934025 -25.6050015783174 15 8.89252372646744 -24.4320081404336 15 13 -22.5166604983954 15 16.7124778518501 -19.9171555210934 15 19.9171555210935 -16.71247785185 15 22.5166604983954 -13 15 24.4320081404336 -8.89252372646736 15 25.6050015783174 -4.51485261934017 15 26 0 0 26 0 0 25.6050015783174 4.51485261934019 0 24.4320081404336 8.89252372646739 0 22.5166604983954 13 0 19.9171555210934 16.71247785185 0 16.71247785185 19.9171555210934 0 13 22.5166604983954 0 8.89252372646737 24.4320081404336 0 4.51485261934017 25.6050015783174 0 -1.57274909241834e-014 26 0 -4.51485261934021 25.6050015783174 0 -8.8925237264674 24.4320081404336 0 -13 22.5166604983954 0 -16.71247785185 19.9171555210934 0 -19.9171555210934 16.71247785185 0 -22.5166604983954 13 0 -24.4320081404336 8.89252372646735 0 -25.6050015783174 4.51485261934014 0 -26 -5.454762076057e-014 0 -25.6050015783174 -4.51485261934025 0 -24.4320081404336 -8.89252372646745 0 -22.5166604983954 -13.0000000000001 0 -19.9171555210934 -16.7124778518501 0 -16.71247785185 -19.9171555210935 0 -12.9999999999999 -22.5166604983954 0 -8.89252372646732 -24.4320081404336 0 -4.51485261934012 -25.6050015783174 0 6.45019519567025e-014 -26 0 4.51485261934025 -25.6050015783174 0 8.89252372646744 -24.4320081404336 0 13 -22.5166604983954 0 16.7124778518501 -19.9171555210934 0 19.9171555210935 -16.71247785185 0 22.5166604983954 -13 0 24.4320081404336 -8.89252372646736 0 25.6050015783174 -4.51485261934017 0 0 15 6.28318530717959 15 0.174532925199433 15 0.349065850398866 15 0.523598775598299 15 0.698131700797732 15 0.872664625997165 15 1.0471975511966 15 1.22173047639603 15 1.39626340159546 15 1.5707963267949 15 1.74532925199433 15 1.91986217719376 15 2.0943951023932 15 2.26892802759263 15 2.44346095279206 15 2.6179938779915 15 2.79252680319093 15 2.96705972839036 15 3.1415926535898 15 3.31612557878923 15 3.49065850398866 15 3.66519142918809 15 3.83972435438753 15 4.01425727958696 15 4.18879020478639 15 4.36332312998583 15 4.53785605518526 15 4.71238898038469 15 4.88692190558413 15 5.06145483078356 15 5.23598775598299 15 5.41052068118242 15 5.58505360638186 15 5.75958653158129 15 5.93411945678072 15 6.10865238198015 15 6.28318530717959 0 0 0 0.174532925199433 0 0.349065850398866 0 0.523598775598299 0 0.698131700797732 0 0.872664625997165 0 1.0471975511966 0 1.22173047639603 0 1.39626340159546 0 1.5707963267949 0 1.74532925199433 0 1.91986217719376 0 2.0943951023932 0 2.26892802759263 0 2.44346095279206 0 2.6179938779915 0 2.79252680319093 0 2.96705972839036 0 3.1415926535898 0 3.31612557878923 0 3.49065850398866 0 3.66519142918809 0 3.83972435438753 0 4.01425727958696 0 4.18879020478639 0 4.36332312998583 0 4.53785605518526 0 4.71238898038469 0 4.88692190558413 0 5.06145483078356 0 5.23598775598299 0 5.41052068118242 0 5.58505360638186 0 5.75958653158129 0 5.93411945678072 0 6.10865238198015 0 22 21 58 22 58 59 23 59 60 1 39 40 23 22 59 3 40 41 24 60 61 3 1 40 24 23 60 4 3 41 25 61 62 25 62 63 25 24 61 5 41 42 5 4 41 26 25 63 6 42 43 6 43 44 27 63 64 6 5 42 27 64 65 27 26 63 7 44 45 7 6 44 28 27 65 8 7 45 29 65 66 29 66 67 29 28 65 9 8 45 9 45 46 9 46 47 30 29 67 10 9 47 31 67 68 31 30 67 11 10 47 32 68 69 11 47 48 11 48 49 32 31 68 12 11 49 33 69 70 33 70 71 33 32 69 13 12 49 13 49 50 34 33 71 14 13 50 35 34 71 14 50 51 35 71 72 14 51 52 36 35 72 15 14 52 36 72 73 37 36 73 16 15 52 16 52 53 37 73 74 37 74 38 2 37 38 17 16 53 17 53 54 18 17 54 18 54 55 19 18 55 19 55 56 20 19 56 20 56 57 21 20 57 21 57 58 +72 70 1 0.064411296076178 +16 0 2 16 0 17 16 0 2 15.7428734175781 2.85691031677824 2 14.9797579302358 5.62199718530153 2 13.7351806976298 8.20638843849454 2 12.0491434560577 10.5270196150354 2 9.9758368297397 12.5093037194885 2 7.58189859956794 14.0895285097078 2 4.94427190999911 15.2169042607225 2 2.14773225308244 15.855196188287 2 -0.717837285608287 15.983889064661 2 -3.56033494330108 15.5988465949092 2 -6.28840050646282 14.7124443608232 2 -8.81435170323368 13.3531720595408 2 -11.0570023837899 11.5647178212382 2 -12.9442719099992 9.40456403667954 2 -14.4155018864387 6.94213982588089 2 -15.4234057711337 4.25658952906676 2 -15.9355887039238 1.4342289424549 2 -15.9355887039238 -1.43422894245498 2 -15.4234057711336 -4.25658952906684 2 -14.4155018864387 -6.94213982588097 2 -12.9442719099991 -9.4045640366796 2 -11.0570023837898 -11.5647178212383 2 -8.81435170323361 -13.3531720595409 2 -6.28840050646274 -14.7124443608232 2 -3.56033494330099 -15.5988465949092 2 -0.7178372856082 -15.983889064661 2 2.14773225308253 -15.855196188287 2 4.9442719099992 -15.2169042607224 2 7.58189859956801 -14.0895285097078 2 9.97583682973977 -12.5093037194885 2 12.0491434560578 -10.5270196150354 2 13.7351806976299 -8.20638843849447 2 14.9797579302358 -5.62199718530145 2 15.7428734175781 -2.85691031677815 2 16 0 17 15.7428734175781 2.85691031677824 17 14.9797579302358 5.62199718530153 17 13.7351806976298 8.20638843849454 17 12.0491434560577 10.5270196150354 17 9.9758368297397 12.5093037194885 17 7.58189859956794 14.0895285097078 17 4.94427190999911 15.2169042607225 17 2.14773225308244 15.855196188287 17 -0.717837285608287 15.983889064661 17 -3.56033494330108 15.5988465949092 17 -6.28840050646282 14.7124443608232 17 -8.81435170323368 13.3531720595408 17 -11.0570023837899 11.5647178212382 17 -12.9442719099992 9.40456403667954 17 -14.4155018864387 6.94213982588089 17 -15.4234057711337 4.25658952906676 17 -15.9355887039238 1.4342289424549 17 -15.9355887039238 -1.43422894245498 17 -15.4234057711336 -4.25658952906684 17 -14.4155018864387 -6.94213982588097 17 -12.9442719099991 -9.4045640366796 17 -11.0570023837898 -11.5647178212383 17 -8.81435170323361 -13.3531720595409 17 -6.28840050646274 -14.7124443608232 17 -3.56033494330099 -15.5988465949092 17 -0.7178372856082 -15.983889064661 17 2.14773225308253 -15.855196188287 17 4.9442719099992 -15.2169042607224 17 7.58189859956801 -14.0895285097078 17 9.97583682973977 -12.5093037194885 17 12.0491434560578 -10.5270196150354 17 13.7351806976299 -8.20638843849447 17 14.9797579302358 -5.62199718530145 17 15.7428734175781 -2.85691031677815 17 6.28318530717959 2 6.28318530717959 17 0 2 0.179519580205131 2 0.359039160410262 2 0.538558740615393 2 0.718078320820524 2 0.897597901025655 2 1.07711748123079 2 1.25663706143592 2 1.43615664164105 2 1.61567622184618 2 1.79519580205131 2 1.97471538225644 2 2.15423496246157 2 2.3337545426667 2 2.51327412287183 2 2.69279370307696 2 2.8723132832821 2 3.05183286348723 2 3.23135244369236 2 3.41087202389749 2 3.59039160410262 2 3.76991118430775 2 3.94943076451288 2 4.12895034471801 2 4.30846992492314 2 4.48798950512828 2 4.66750908533341 2 4.84702866553854 2 5.02654824574367 2 5.2060678259488 2 5.38558740615393 2 5.56510698635906 2 5.74462656656419 2 5.92414614676932 2 6.10366572697445 2 0 17 0.179519580205131 17 0.359039160410262 17 0.538558740615393 17 0.718078320820524 17 0.897597901025655 17 1.07711748123079 17 1.25663706143592 17 1.43615664164105 17 1.61567622184618 17 1.79519580205131 17 1.97471538225644 17 2.15423496246157 17 2.3337545426667 17 2.51327412287183 17 2.69279370307696 17 2.8723132832821 17 3.05183286348723 17 3.23135244369236 17 3.41087202389749 17 3.59039160410262 17 3.76991118430775 17 3.94943076451288 17 4.12895034471801 17 4.30846992492314 17 4.48798950512828 17 4.66750908533341 17 4.84702866553854 17 5.02654824574367 17 5.2060678259488 17 5.38558740615393 17 5.56510698635906 17 5.74462656656419 17 5.92414614676932 17 6.10366572697445 17 59 23 24 59 58 23 38 3 4 60 24 25 60 25 26 60 59 24 39 4 5 39 38 4 61 60 26 40 39 5 62 26 27 62 27 28 62 61 26 41 5 6 41 6 7 41 40 5 63 62 28 42 41 7 64 28 29 64 29 30 64 63 28 43 7 8 43 8 9 43 42 7 65 64 30 44 43 9 44 9 10 66 30 31 66 65 30 45 44 10 67 31 32 67 32 33 67 66 31 46 10 11 46 45 10 46 11 12 68 67 33 47 46 12 47 12 13 69 33 34 69 68 33 48 13 14 70 69 34 48 47 13 70 34 35 49 14 15 49 48 14 71 70 35 71 35 36 71 36 37 50 15 16 50 49 15 72 71 37 2 72 37 51 16 17 51 50 16 2 37 1 52 17 18 52 51 17 53 18 19 53 52 18 54 53 19 55 19 20 55 20 21 55 54 19 56 55 21 57 21 22 57 22 23 57 56 21 58 57 23 +71 71 1 7.105427357601e-014 +26 0 0 25.6050015783174 4.51485261934019 0 24.4320081404336 8.89252372646739 0 22.5166604983954 13 0 19.9171555210934 16.71247785185 0 16.71247785185 19.9171555210934 0 13 22.5166604983954 0 8.89252372646737 24.4320081404336 0 4.51485261934017 25.6050015783174 0 -1.57274909241834e-014 26 0 -4.51485261934021 25.6050015783174 0 -8.8925237264674 24.4320081404336 0 -13 22.5166604983954 0 -16.71247785185 19.9171555210934 0 -19.9171555210934 16.71247785185 0 -22.5166604983954 13 0 -24.4320081404336 8.89252372646735 0 -25.6050015783174 4.51485261934014 0 -26 -5.454762076057e-014 0 -25.6050015783174 -4.51485261934025 0 -24.4320081404336 -8.89252372646745 0 -22.5166604983954 -13.0000000000001 0 -19.9171555210934 -16.7124778518501 0 -16.71247785185 -19.9171555210935 0 -12.9999999999999 -22.5166604983954 0 -8.89252372646732 -24.4320081404336 0 -4.51485261934012 -25.6050015783174 0 6.45019519567025e-014 -26 0 4.51485261934025 -25.6050015783174 0 8.89252372646744 -24.4320081404336 0 13 -22.5166604983954 0 16.7124778518501 -19.9171555210934 0 19.9171555210935 -16.71247785185 0 22.5166604983954 -13 0 24.4320081404336 -8.89252372646736 0 25.6050015783174 -4.51485261934017 0 16 0 0 15.7428734175781 2.85691031677824 0 14.9797579302358 5.62199718530153 0 13.7351806976298 8.20638843849454 0 12.0491434560577 10.5270196150354 0 9.9758368297397 12.5093037194885 0 7.58189859956794 14.0895285097078 0 4.94427190999911 15.2169042607225 0 2.14773225308244 15.855196188287 0 -0.717837285608287 15.983889064661 0 -3.56033494330108 15.5988465949092 0 -6.28840050646282 14.7124443608232 0 -8.81435170323368 13.3531720595408 0 -11.0570023837899 11.5647178212382 0 -12.9442719099992 9.40456403667954 0 -14.4155018864387 6.94213982588089 0 -15.4234057711337 4.25658952906676 0 -15.9355887039238 1.4342289424549 0 -15.9355887039238 -1.43422894245498 0 -15.4234057711336 -4.25658952906684 0 -14.4155018864387 -6.94213982588097 0 -12.9442719099991 -9.4045640366796 0 -11.0570023837898 -11.5647178212383 0 -8.81435170323361 -13.3531720595409 0 -6.28840050646274 -14.7124443608232 0 -3.56033494330099 -15.5988465949092 0 -0.7178372856082 -15.983889064661 0 2.14773225308253 -15.855196188287 0 4.9442719099992 -15.2169042607224 0 7.58189859956801 -14.0895285097078 0 9.97583682973977 -12.5093037194885 0 12.0491434560578 -10.5270196150354 0 13.7351806976299 -8.20638843849447 0 14.9797579302358 -5.62199718530145 0 15.7428734175781 -2.85691031677815 0 26 8.5265128291212e-014 25.6050015783174 4.51485261934019 24.4320081404336 8.89252372646739 22.5166604983954 13 19.9171555210934 16.71247785185 16.71247785185 19.9171555210934 13 22.5166604983954 8.89252372646737 24.4320081404336 4.51485261934018 25.6050015783174 -1.4210854715202e-014 26 -4.5148526193402 25.6050015783174 -8.8925237264674 24.4320081404336 -13 22.5166604983954 -16.71247785185 19.9171555210934 -19.9171555210934 16.71247785185 -22.5166604983954 13 -24.4320081404336 8.89252372646735 -25.6050015783174 4.51485261934014 -26 -5.32907051820075e-014 -25.6050015783174 -4.51485261934025 -24.4320081404336 -8.89252372646745 -22.5166604983954 -13.0000000000001 -19.9171555210934 -16.7124778518501 -16.71247785185 -19.9171555210935 -12.9999999999999 -22.5166604983954 -8.89252372646732 -24.4320081404336 -4.51485261934012 -25.6050015783174 6.3948846218409e-014 -26 4.51485261934025 -25.6050015783174 8.89252372646744 -24.4320081404336 13 -22.5166604983954 16.7124778518501 -19.9171555210934 19.9171555210935 -16.71247785185 22.5166604983954 -13 24.4320081404336 -8.89252372646736 25.6050015783174 -4.51485261934017 16 5.6843418860808e-014 15.7428734175781 2.85691031677824 14.9797579302358 5.62199718530153 13.7351806976298 8.20638843849454 12.0491434560577 10.5270196150354 9.9758368297397 12.5093037194885 7.58189859956794 14.0895285097078 4.94427190999911 15.2169042607225 2.14773225308244 15.855196188287 -0.717837285608287 15.983889064661 -3.56033494330108 15.5988465949092 -6.28840050646282 14.7124443608232 -8.81435170323368 13.3531720595408 -11.0570023837899 11.5647178212382 -12.9442719099992 9.40456403667954 -14.4155018864387 6.94213982588089 -15.4234057711337 4.25658952906677 -15.9355887039238 1.4342289424549 -15.9355887039238 -1.43422894245498 -15.4234057711336 -4.25658952906684 -14.4155018864387 -6.94213982588096 -12.9442719099991 -9.4045640366796 -11.0570023837898 -11.5647178212383 -8.81435170323361 -13.3531720595409 -6.28840050646274 -14.7124443608232 -3.56033494330099 -15.5988465949092 -0.717837285608201 -15.983889064661 2.14773225308253 -15.855196188287 4.94427190999919 -15.2169042607224 7.58189859956801 -14.0895285097078 9.97583682973976 -12.5093037194885 12.0491434560578 -10.5270196150354 13.7351806976299 -8.20638843849446 14.9797579302358 -5.62199718530145 15.7428734175781 -2.85691031677815 6 7 42 6 41 5 6 42 41 67 31 32 67 66 31 50 15 51 68 67 32 14 15 50 33 68 32 49 14 50 69 68 33 13 49 48 13 14 49 34 69 33 34 70 69 59 23 24 12 48 47 12 13 48 35 70 34 35 71 70 58 22 23 58 23 59 60 24 25 60 59 24 57 21 22 57 22 58 61 25 26 11 47 46 11 12 47 61 60 25 56 21 57 36 37 71 36 71 35 56 20 21 62 61 26 62 26 27 55 20 56 55 19 20 63 27 28 63 62 27 10 46 45 10 11 46 54 19 55 54 18 19 1 37 36 64 63 28 9 45 44 9 10 45 64 28 29 53 17 18 2 38 37 53 18 54 2 37 1 65 64 29 65 29 30 8 44 43 8 9 44 3 39 38 52 17 53 3 38 2 52 16 17 7 8 43 66 65 30 66 30 31 7 43 42 4 40 39 51 16 52 4 39 3 15 16 51 5 41 40 5 40 4 +36 34 1 8.16302581085893e-012 +-17.9997222200787 -0.100000000022075 35 17.9997222200786 -0.100000000037518 35 -17.6770900006395 -3.3941846015342 35 -16.7567242377493 -6.57359816386922 35 -15.269746201295 -9.53073192089862 35 -13.2664366021137 -12.1655932811391 35 -10.8145353988358 -14.389086979629 35 -7.99695123730573 -16.1260277473454 35 -4.90895797565197 -17.3176826276867 35 -1.65497309177239 -17.9237569740696 35 1.65497309175691 -17.923756974071 35 4.90895797563702 -17.317682627691 35 7.9969512372918 -16.1260277473523 35 10.8145353988233 -14.3890869796383 35 13.2664366021032 -12.1655932811506 35 15.2697462012868 -9.53073192091181 35 16.7567242377436 -6.57359816388369 35 17.6770900006365 -3.39418460154947 35 -15.999687496948 -0.100000000021625 35 15.999687496948 -0.100000000035978 35 -15.7111172230331 -3.02668062472931 35 -14.8917608291434 -5.85110753683357 35 -13.5692995422098 -8.47785998550258 35 -11.7884115404511 -10.8181954758157 35 -9.60926254086549 -12.7930478550156 35 -7.10547315399994 -14.3356984921484 35 -4.36163167711067 -15.3940303076623 35 -1.47043635378335 -15.9322885025809 35 1.47043635376908 -15.9322885025822 35 4.36163167709688 -15.3940303076662 35 7.1054731539871 -14.3356984921548 35 9.60926254085403 -12.7930478550242 35 11.7884115404414 -10.8181954758262 35 13.5692995422022 -8.47785998551474 35 14.8917608291381 -5.85110753684691 35 15.7111172230304 -3.02668062474338 35 -17.9997222200787 -0.100000000022025 17.9997222200786 -0.100000000037507 -17.6770900006395 -3.3941846015342 -16.7567242377493 -6.57359816386922 -15.269746201295 -9.53073192089862 -13.2664366021137 -12.1655932811391 -10.8145353988358 -14.389086979629 -7.99695123730573 -16.1260277473454 -4.90895797565197 -17.3176826276867 -1.65497309177239 -17.9237569740696 1.65497309175692 -17.923756974071 4.90895797563702 -17.317682627691 7.9969512372918 -16.1260277473523 10.8145353988233 -14.3890869796383 13.2664366021032 -12.1655932811506 15.2697462012868 -9.53073192091181 16.7567242377436 -6.57359816388369 17.6770900006365 -3.39418460154947 -15.9996874969481 -0.100000000000001 15.999687496948 -0.100000000000001 -15.7111172230331 -3.02668062472931 -14.8917608291434 -5.85110753683357 -13.5692995422098 -8.47785998550258 -11.7884115404511 -10.8181954758157 -9.60926254086549 -12.7930478550156 -7.10547315399994 -14.3356984921484 -4.36163167711067 -15.3940303076623 -1.47043635378336 -15.9322885025809 1.47043635376908 -15.9322885025822 4.36163167709688 -15.3940303076662 7.1054731539871 -14.3356984921548 9.60926254085403 -12.7930478550242 11.7884115404414 -10.8181954758262 13.5692995422022 -8.47785998551474 14.8917608291381 -5.85110753684691 15.7111172230304 -3.02668062474338 24 6 7 25 7 8 25 24 7 23 5 6 23 6 24 26 8 9 26 25 8 22 4 5 22 5 23 27 26 9 10 27 9 21 3 4 21 4 22 28 27 10 19 1 3 19 3 21 29 10 11 29 28 10 30 11 12 30 29 11 31 12 13 31 30 12 32 13 14 32 31 13 33 32 14 15 33 14 34 33 15 16 34 15 35 34 16 17 35 16 36 35 17 18 36 17 20 36 18 2 20 18 +36 34 1 0.0762430259296862 +-17.9997222200787 -0.100000000022075 35 17.9997222200786 -0.100000000037518 35 -17.6770900006395 -3.3941846015342 35 -16.7567242377493 -6.57359816386922 35 -15.269746201295 -9.53073192089862 35 -13.2664366021137 -12.1655932811391 35 -10.8145353988358 -14.389086979629 35 -7.99695123730573 -16.1260277473454 35 -4.90895797565197 -17.3176826276867 35 -1.65497309177239 -17.9237569740696 35 1.65497309175691 -17.923756974071 35 4.90895797563702 -17.317682627691 35 7.9969512372918 -16.1260277473523 35 10.8145353988233 -14.3890869796383 35 13.2664366021032 -12.1655932811506 35 15.2697462012868 -9.53073192091181 35 16.7567242377436 -6.57359816388369 35 17.6770900006365 -3.39418460154947 35 -17.9997222200787 -0.100000000022075 0 17.9997222200786 -0.100000000037518 0 -17.6770900006395 -3.3941846015342 0 -16.7567242377493 -6.57359816386922 0 -15.269746201295 -9.53073192089862 0 -13.2664366021137 -12.1655932811391 0 -10.8145353988358 -14.389086979629 0 -7.99695123730573 -16.1260277473454 0 -4.90895797565197 -17.3176826276867 0 -1.65497309177239 -17.9237569740696 0 1.65497309175691 -17.923756974071 0 4.90895797563702 -17.317682627691 0 7.9969512372918 -16.1260277473523 0 10.8145353988233 -14.3890869796383 0 13.2664366021032 -12.1655932811506 0 15.2697462012868 -9.53073192091181 0 16.7567242377436 -6.57359816388369 0 17.6770900006365 -3.39418460154947 0 3.14714823772493 35 6.27762972304359 35 3.33129420744956 35 3.51544017717418 35 3.69958614689881 35 3.88373211662344 35 4.06787808634806 35 4.25202405607269 35 4.43617002579732 35 4.62031599552194 35 4.80446196524657 35 4.9886079349712 35 5.17275390469583 35 5.35689987442045 35 5.54104584414508 35 5.72519181386971 35 5.90933778359433 35 6.09348375331896 35 3.14714823772371 0 6.27762972304567 0 3.33129420744956 0 3.51544017717418 0 3.69958614689881 0 3.88373211662344 0 4.06787808634806 0 4.25202405607269 0 4.43617002579732 0 4.62031599552194 0 4.80446196524657 0 4.9886079349712 0 5.17275390469583 0 5.35689987442045 0 5.54104584414508 0 5.72519181386971 0 5.90933778359433 0 6.09348375331896 0 1 19 21 3 1 21 4 21 22 4 3 21 5 22 23 5 4 22 6 23 24 6 24 25 6 5 23 7 6 25 8 25 26 8 7 25 9 26 27 9 8 26 10 27 28 10 9 27 11 28 29 11 10 28 12 29 30 12 30 31 12 11 29 13 12 31 14 31 32 14 13 31 15 32 33 15 14 32 16 33 34 16 15 33 17 34 35 17 16 34 18 17 35 18 35 36 2 18 36 2 36 20 +4 2 1 2.19249942275587e-011 +34.000312503052 -2.16249934625878e-011 109 32.0002777799213 -2.2074994610044e-011 109 34.000312503052 -2.16249934625878e-011 74 32.0002777799213 -2.2074994610044e-011 74 109 34.000312503052 109 32.0002777799213 74 34.0003125030518 74 32.0002777799212 2 3 4 1 3 2 +4 2 1 3.70046585966104e-011 +67.9997222200786 -3.75179887157628e-011 109 65.999687496948 -3.59779983583053e-011 109 67.9997222200786 -3.75179887157628e-011 74 65.999687496948 -3.59779983583053e-011 74 109 67.9997222200786 109 65.999687496948 74 67.9997222200788 74 65.9996874969482 1 4 2 1 3 4 +36 34 1 0.0677114974184397 +-15.999687496948 -0.100000000021625 35.1 15.999687496948 -0.100000000035978 35.1 -15.7111172230331 -3.02668062472931 35.1 -14.8917608291434 -5.85110753683357 35.1 -13.5692995422098 -8.47785998550258 35.1 -11.7884115404511 -10.8181954758157 35.1 -9.60926254086549 -12.7930478550156 35.1 -7.10547315399994 -14.3356984921484 35.1 -4.36163167711067 -15.3940303076623 35.1 -1.47043635378335 -15.9322885025809 35.1 1.47043635376908 -15.9322885025822 35.1 4.36163167709688 -15.3940303076662 35.1 7.1054731539871 -14.3356984921548 35.1 9.60926254085403 -12.7930478550242 35.1 11.7884115404414 -10.8181954758262 35.1 13.5692995422022 -8.47785998551474 35.1 14.8917608291381 -5.85110753684691 35.1 15.7111172230304 -3.02668062474338 35.1 -15.999687496948 -0.100000000021625 0.100000000000001 15.999687496948 -0.100000000035978 0.100000000000001 -15.7111172230331 -3.02668062472931 0.100000000000001 -14.8917608291434 -5.85110753683357 0.100000000000001 -13.5692995422098 -8.47785998550258 0.100000000000001 -11.7884115404511 -10.8181954758157 0.100000000000001 -9.60926254086549 -12.7930478550156 0.100000000000001 -7.10547315399994 -14.3356984921484 0.100000000000001 -4.36163167711067 -15.3940303076623 0.100000000000001 -1.47043635378335 -15.9322885025809 0.100000000000001 1.47043635376908 -15.9322885025822 0.100000000000001 4.36163167709688 -15.3940303076662 0.100000000000001 7.1054731539871 -14.3356984921548 0.100000000000001 9.60926254085403 -12.7930478550242 0.100000000000001 11.7884115404414 -10.8181954758262 0.100000000000001 13.5692995422022 -8.47785998551474 0.100000000000001 14.8917608291381 -5.85110753684691 0.100000000000001 15.7111172230304 -3.02668062474338 0.100000000000001 3.14784269428196 35.1 6.27693526648651 35.1 3.33190696323517 35.1 3.51597123218838 35.1 3.70003550114159 35.1 3.8840997700948 35.1 4.06816403904801 35.1 4.25222830800122 35.1 4.43629257695442 35.1 4.62035684590763 35.1 4.80442111486084 35.1 4.98848538381405 35.1 5.17254965276726 35.1 5.35661392172047 35.1 5.54067819067368 35.1 5.72474245962689 35.1 5.9088067285801 35.1 6.09287099753331 35.1 3.14784269428061 0.100000000000001 6.27693526648877 0.100000000000001 3.33190696323517 0.1 3.51597123218838 0.1 3.70003550114159 0.1 3.8840997700948 0.1 4.06816403904801 0.1 4.25222830800122 0.1 4.43629257695442 0.1 4.62035684590763 0.1 4.80442111486084 0.1 4.98848538381405 0.1 5.17254965276726 0.1 5.35661392172047 0.1 5.54067819067368 0.1 5.72474245962689 0.1 5.9088067285801 0.1 6.09287099753331 0.1 1 19 21 3 1 21 4 21 22 4 22 23 4 3 21 5 4 23 6 23 24 6 24 25 6 5 23 7 6 25 8 25 26 8 26 27 8 7 25 9 8 27 10 27 28 10 9 27 11 28 29 11 10 28 12 29 30 12 30 31 12 11 29 13 12 31 14 31 32 14 13 31 15 32 33 15 14 32 16 33 34 16 34 35 16 15 33 17 16 35 18 17 35 18 35 36 2 18 36 2 36 20 +36 34 1 8.16302581085893e-012 +-17.9997222200787 -0.100000000022075 0 17.9997222200786 -0.100000000037518 0 -17.6770900006395 -3.3941846015342 0 -16.7567242377493 -6.57359816386922 0 -15.269746201295 -9.53073192089862 0 -13.2664366021137 -12.1655932811391 0 -10.8145353988358 -14.389086979629 0 -7.99695123730573 -16.1260277473454 0 -4.90895797565197 -17.3176826276867 0 -1.65497309177239 -17.9237569740696 0 1.65497309175691 -17.923756974071 0 4.90895797563702 -17.317682627691 0 7.9969512372918 -16.1260277473523 0 10.8145353988233 -14.3890869796383 0 13.2664366021032 -12.1655932811506 0 15.2697462012868 -9.53073192091181 0 16.7567242377436 -6.57359816388369 0 17.6770900006365 -3.39418460154947 0 -15.999687496948 -0.100000000021625 0 15.999687496948 -0.100000000035978 0 -15.7111172230331 -3.02668062472931 0 -14.8917608291434 -5.85110753683357 0 -13.5692995422098 -8.47785998550258 0 -11.7884115404511 -10.8181954758157 0 -9.60926254086549 -12.7930478550156 0 -7.10547315399994 -14.3356984921484 0 -4.36163167711067 -15.3940303076623 0 -1.47043635378335 -15.9322885025809 0 1.47043635376908 -15.9322885025822 0 4.36163167709688 -15.3940303076662 0 7.1054731539871 -14.3356984921548 0 9.60926254085403 -12.7930478550242 0 11.7884115404414 -10.8181954758262 0 13.5692995422022 -8.47785998551474 0 14.8917608291381 -5.85110753684691 0 15.7111172230304 -3.02668062474338 0 -17.9997222200787 -0.100000000022025 17.9997222200786 -0.100000000037507 -17.6770900006395 -3.3941846015342 -16.7567242377493 -6.57359816386922 -15.269746201295 -9.53073192089862 -13.2664366021137 -12.1655932811391 -10.8145353988358 -14.389086979629 -7.99695123730573 -16.1260277473454 -4.90895797565197 -17.3176826276867 -1.65497309177239 -17.9237569740696 1.65497309175692 -17.923756974071 4.90895797563702 -17.317682627691 7.9969512372918 -16.1260277473523 10.8145353988233 -14.3890869796383 13.2664366021032 -12.1655932811506 15.2697462012868 -9.53073192091181 16.7567242377436 -6.57359816388369 17.6770900006365 -3.39418460154947 -15.9996874969481 -0.100000000000001 15.999687496948 -0.100000000000001 -15.7111172230331 -3.02668062472931 -14.8917608291434 -5.85110753683357 -13.5692995422098 -8.47785998550258 -11.7884115404511 -10.8181954758157 -9.60926254086549 -12.7930478550156 -7.10547315399994 -14.3356984921484 -4.36163167711067 -15.3940303076623 -1.47043635378336 -15.9322885025809 1.47043635376908 -15.9322885025822 4.36163167709688 -15.3940303076662 7.1054731539871 -14.3356984921548 9.60926254085403 -12.7930478550242 11.7884115404414 -10.8181954758262 13.5692995422022 -8.47785998551474 14.8917608291381 -5.85110753684691 15.7111172230304 -3.02668062474338 24 6 7 25 7 8 25 24 7 23 5 6 23 6 24 26 8 9 26 25 8 22 4 5 22 5 23 27 26 9 10 27 9 21 3 4 21 4 22 28 27 10 19 1 3 19 3 21 29 10 11 29 28 10 30 11 12 30 29 11 31 12 13 31 30 12 32 13 14 32 31 13 33 32 14 15 33 14 34 33 15 16 34 15 35 34 16 17 35 16 36 35 17 18 36 17 20 36 18 2 20 18 +73 71 1 0.0266371133577835 +7 0 0 7 0 0.950000000000003 7 0 0.950000000000003 6.8875071201904 1.24989826359048 0.950000000000003 6.55364409447815 2.45962376856942 0.950000000000003 6.00914155521305 3.59029494184136 0.950000000000003 5.27150026202526 4.605571081578 0.950000000000003 4.36442861301112 5.47282037727622 0.950000000000003 3.31708063731097 6.16416872299718 0.950000000000003 2.16311896062461 6.65739561406608 0.950000000000003 0.939632860723567 6.93664833237555 0.950000000000003 -0.314053812453626 6.9929514657892 0.950000000000003 -1.55764653769422 6.82449538527276 0.950000000000003 -2.75117522157748 6.43669440786015 0.950000000000003 -3.85627887016474 5.84201277604911 0.950000000000003 -4.83743854290807 5.05956404679173 0.950000000000003 -5.66311896062464 4.1144967660473 0.950000000000003 -6.30678207531694 3.03718617382289 0.950000000000003 -6.74774002487098 1.86225791896671 0.950000000000003 -6.97182005796667 0.627475162324017 0.950000000000003 -6.97182005796667 -0.627475162324052 0.950000000000003 -6.74774002487097 -1.86225791896674 0.950000000000003 -6.30678207531693 -3.03718617382292 0.950000000000003 -5.66311896062462 -4.11449676604733 0.950000000000003 -4.83743854290804 -5.05956404679175 0.950000000000003 -3.8562788701647 -5.84201277604913 0.950000000000003 -2.75117522157745 -6.43669440786016 0.950000000000003 -1.55764653769418 -6.82449538527277 0.950000000000003 -0.314053812453587 -6.9929514657892 0.950000000000003 0.939632860723606 -6.93664833237554 0.950000000000003 2.16311896062465 -6.65739561406607 0.950000000000003 3.317080637311 -6.16416872299716 0.950000000000003 4.36442861301115 -5.4728203772762 0.950000000000003 5.27150026202529 -4.60557108157798 0.950000000000003 6.00914155521307 -3.59029494184133 0.950000000000003 6.55364409447817 -2.45962376856938 0.950000000000003 6.88750712019041 -1.24989826359044 0.950000000000003 7 0 0 6.89365427108546 1.21553724366851 0 6.57784834550136 2.39414100327968 0 6.06217782649107 3.5 0 5.36231110183284 4.49951326780578 0 4.49951326780577 5.36231110183285 0 3.5 6.06217782649107 0 2.39414100327968 6.57784834550136 0 1.21553724366851 6.89365427108546 0 -3.5527136788005e-015 7 0 -1.21553724366852 6.89365427108546 0 -2.39414100327969 6.57784834550136 0 -3.5 6.06217782649107 0 -4.49951326780578 5.36231110183284 0 -5.36231110183285 4.49951326780577 0 -6.06217782649108 3.49999999999999 0 -6.57784834550136 2.39414100327967 0 -6.89365427108546 1.2155372436685 0 -7 -1.46858978970765e-014 0 -6.89365427108545 -1.21553724366853 0 -6.57784834550135 -2.3941410032797 0 -6.06217782649106 -3.50000000000002 0 -5.36231110183283 -4.49951326780579 0 -4.49951326780576 -5.36231110183286 0 -3.49999999999998 -6.06217782649108 0 -2.39414100327966 -6.57784834550137 0 -1.21553724366849 -6.89365427108546 0 1.77635683940025e-014 -7 0 1.21553724366853 -6.89365427108545 0 2.3941410032797 -6.57784834550135 0 3.50000000000001 -6.06217782649106 0 4.49951326780579 -5.36231110183284 0 5.36231110183285 -4.49951326780577 0 6.06217782649107 -3.49999999999999 0 6.57784834550136 -2.39414100327967 0 6.89365427108546 -1.21553724366851 0 6.28318530717959 0 6.28318530717959 0.950000000000004 0 0.950000000000003 0.179519580205131 0.950000000000003 0.359039160410262 0.950000000000003 0.538558740615393 0.950000000000003 0.718078320820524 0.950000000000003 0.897597901025655 0.950000000000003 1.07711748123079 0.950000000000003 1.25663706143592 0.950000000000003 1.43615664164105 0.950000000000003 1.61567622184618 0.950000000000003 1.79519580205131 0.950000000000003 1.97471538225644 0.950000000000003 2.15423496246157 0.950000000000003 2.3337545426667 0.950000000000003 2.51327412287183 0.950000000000003 2.69279370307696 0.950000000000003 2.8723132832821 0.950000000000003 3.05183286348723 0.950000000000003 3.23135244369236 0.950000000000003 3.41087202389749 0.950000000000003 3.59039160410262 0.950000000000003 3.76991118430775 0.950000000000003 3.94943076451288 0.950000000000003 4.12895034471801 0.950000000000003 4.30846992492314 0.950000000000003 4.48798950512828 0.950000000000003 4.66750908533341 0.950000000000003 4.84702866553854 0.950000000000003 5.02654824574367 0.950000000000003 5.2060678259488 0.950000000000003 5.38558740615393 0.950000000000003 5.56510698635906 0.950000000000003 5.74462656656419 0.950000000000003 5.92414614676932 0.950000000000003 6.10366572697445 0.950000000000003 0 0 0.174532925199433 0 0.349065850398866 0 0.523598775598299 0 0.698131700797732 0 0.872664625997165 0 1.0471975511966 0 1.22173047639603 0 1.39626340159546 0 1.5707963267949 0 1.74532925199433 0 1.91986217719376 0 2.0943951023932 0 2.26892802759263 0 2.44346095279206 0 2.6179938779915 0 2.79252680319093 0 2.96705972839036 0 3.1415926535898 0 3.31612557878923 0 3.49065850398866 0 3.66519142918809 0 3.83972435438753 0 4.01425727958696 0 4.18879020478639 0 4.36332312998583 0 4.53785605518526 0 4.71238898038469 0 4.88692190558413 0 5.06145483078356 0 5.23598775598299 0 5.41052068118242 0 5.58505360638186 0 5.75958653158129 0 5.93411945678072 0 6.10865238198015 0 22 57 58 22 21 57 3 38 39 23 58 59 23 22 58 24 59 60 24 23 59 4 39 40 4 3 39 25 60 61 25 24 60 5 40 41 5 4 40 26 61 62 26 25 61 6 41 42 6 5 41 27 62 63 27 26 62 7 42 43 7 6 42 28 63 64 28 27 63 8 43 44 8 7 43 29 64 65 29 28 64 9 8 44 9 44 45 30 65 66 30 29 65 10 9 45 10 45 46 31 66 67 31 30 66 11 10 46 11 46 47 32 67 68 32 31 67 12 11 47 12 47 48 33 68 69 33 32 68 34 33 69 13 12 48 13 48 49 34 69 70 35 34 70 14 13 49 14 49 50 35 70 71 36 35 71 15 14 50 36 71 72 15 50 51 37 36 72 37 72 73 16 15 51 16 51 52 2 37 73 2 73 1 17 16 52 17 52 53 18 17 53 18 53 54 19 18 54 19 54 55 20 19 55 20 55 56 21 20 56 21 56 57 +70 70 1 7.60502771868232e-015 +6 0 0 5.90357753159178 1.07134136879184 0 5.61740922383841 2.10824894448807 0 5.15069276161119 3.07739566443545 0 4.51842879602165 3.94763235563829 0 3.74093881115239 4.69098889480819 0 2.84321197483798 5.28357319114044 0 1.85410196624967 5.70633909777093 0 0.805399594905914 5.94569857060761 0 -0.269188982103106 5.99395839924789 0 -1.3351256037379 5.84956747309094 0 -2.35815018992356 5.5171666353087 0 -3.30538188871263 5.00743952232781 0 -4.1463758939212 4.33676918296434 0 -4.85410196624969 3.52671151375483 0 -5.40581320741452 2.60330243470534 0 -5.78377716417512 1.59622107340004 0 -5.97584576397144 0.537835853420586 0 -5.97584576397143 -0.537835853420616 0 -5.78377716417512 -1.59622107340007 0 -5.40581320741451 -2.60330243470536 0 -4.85410196624968 -3.52671151375485 0 -4.14637589392118 -4.33676918296436 0 -3.3053818887126 -5.00743952232782 0 -2.35815018992353 -5.51716663530871 0 -1.33512560373787 -5.84956747309094 0 -0.269188982103074 -5.99395839924789 0 0.805399594905946 -5.94569857060761 0 1.8541019662497 -5.70633909777092 0 2.84321197483801 -5.28357319114042 0 3.74093881115241 -4.69098889480817 0 4.51842879602167 -3.94763235563827 0 5.1506927616112 -3.07739566443543 0 5.61740922383843 -2.10824894448804 0 5.90357753159178 -1.07134136879181 0 7 0 0 6.8875071201904 1.24989826359048 0 6.55364409447815 2.45962376856942 0 6.00914155521305 3.59029494184136 0 5.27150026202526 4.605571081578 0 4.36442861301112 5.47282037727622 0 3.31708063731097 6.16416872299718 0 2.16311896062461 6.65739561406608 0 0.939632860723567 6.93664833237555 0 -0.314053812453626 6.9929514657892 0 -1.55764653769422 6.82449538527276 0 -2.75117522157748 6.43669440786015 0 -3.85627887016474 5.84201277604911 0 -4.83743854290807 5.05956404679173 0 -5.66311896062464 4.1144967660473 0 -6.30678207531694 3.03718617382289 0 -6.74774002487098 1.86225791896671 0 -6.97182005796667 0.627475162324017 0 -6.97182005796667 -0.627475162324052 0 -6.74774002487097 -1.86225791896674 0 -6.30678207531693 -3.03718617382292 0 -5.66311896062462 -4.11449676604733 0 -4.83743854290804 -5.05956404679175 0 -3.8562788701647 -5.84201277604913 0 -2.75117522157745 -6.43669440786016 0 -1.55764653769418 -6.82449538527277 0 -0.314053812453587 -6.9929514657892 0 0.939632860723606 -6.93664833237554 0 2.16311896062465 -6.65739561406607 0 3.317080637311 -6.16416872299716 0 4.36442861301115 -5.4728203772762 0 5.27150026202529 -4.60557108157798 0 6.00914155521307 -3.59029494184133 0 6.55364409447817 -2.45962376856938 0 6.88750712019041 -1.24989826359044 0 6 -1.77635683940025e-014 5.90357753159177 1.07134136879184 5.61740922383842 2.10824894448807 5.15069276161119 3.07739566443545 4.51842879602165 3.94763235563829 3.74093881115239 4.69098889480819 2.84321197483798 5.28357319114044 1.85410196624967 5.70633909777093 0.805399594905915 5.94569857060761 -0.269188982103107 5.99395839924789 -1.3351256037379 5.84956747309094 -2.35815018992356 5.5171666353087 -3.30538188871263 5.0074395223278 -4.1463758939212 4.33676918296434 -4.85410196624969 3.52671151375483 -5.40581320741452 2.60330243470534 -5.78377716417512 1.59622107340004 -5.97584576397144 0.537835853420586 -5.97584576397143 -0.537835853420616 -5.78377716417512 -1.59622107340007 -5.40581320741451 -2.60330243470536 -4.85410196624968 -3.52671151375485 -4.14637589392118 -4.33676918296436 -3.3053818887126 -5.00743952232782 -2.35815018992353 -5.51716663530871 -1.33512560373787 -5.84956747309094 -0.269188982103075 -5.99395839924789 0.805399594905947 -5.94569857060761 1.8541019662497 -5.70633909777092 2.84321197483801 -5.28357319114042 3.74093881115241 -4.69098889480817 4.51842879602168 -3.94763235563827 5.1506927616112 -3.07739566443543 5.61740922383843 -2.10824894448804 5.90357753159178 -1.07134136879181 7 2.48689957516035e-014 6.8875071201904 1.24989826359048 6.55364409447815 2.45962376856942 6.00914155521305 3.59029494184136 5.27150026202526 4.605571081578 4.36442861301112 5.47282037727622 3.31708063731097 6.16416872299718 2.16311896062461 6.65739561406608 0.939632860723568 6.93664833237554 -0.314053812453626 6.9929514657892 -1.55764653769422 6.82449538527276 -2.75117522157748 6.43669440786015 -3.85627887016473 5.84201277604911 -4.83743854290807 5.05956404679173 -5.66311896062464 4.1144967660473 -6.30678207531694 3.03718617382289 -6.74774002487098 1.86225791896671 -6.97182005796668 0.627475162324017 -6.97182005796667 -0.627475162324052 -6.74774002487097 -1.86225791896674 -6.30678207531693 -3.03718617382292 -5.66311896062462 -4.11449676604733 -4.83743854290804 -5.05956404679175 -3.8562788701647 -5.84201277604913 -2.75117522157745 -6.43669440786016 -1.55764653769418 -6.82449538527277 -0.314053812453587 -6.9929514657892 0.939632860723605 -6.93664833237554 2.16311896062465 -6.65739561406607 3.31708063731101 -6.16416872299716 4.36442861301115 -5.4728203772762 5.27150026202529 -4.60557108157798 6.00914155521307 -3.59029494184133 6.55364409447817 -2.45962376856938 6.88750712019041 -1.24989826359044 40 5 39 40 41 6 49 15 14 49 50 15 67 32 31 67 31 66 13 49 14 48 49 13 68 33 32 68 32 67 22 56 57 22 57 58 22 58 23 12 48 13 24 58 59 24 23 58 21 56 22 25 59 60 47 48 12 69 34 33 25 24 59 69 33 68 20 55 56 11 47 12 20 56 21 46 47 11 26 60 61 70 35 34 70 34 69 26 25 60 19 54 55 10 46 11 19 55 20 53 54 19 27 26 61 1 35 70 27 61 62 45 46 10 63 27 62 18 53 19 28 27 63 36 2 1 36 1 70 52 53 18 64 28 63 17 52 18 44 10 9 44 45 10 29 28 64 37 3 2 37 2 36 65 29 64 16 52 17 16 51 52 30 29 65 43 9 8 43 44 9 38 4 3 50 51 16 38 3 37 42 43 8 15 50 16 42 8 7 66 30 65 39 5 4 39 4 38 41 7 6 31 30 66 41 42 7 40 6 5 +36 34 1 2.94209101525666e-015 +7 0 0 6.89365427108546 1.21553724366851 0 6.57784834550136 2.39414100327968 0 6.06217782649107 3.5 0 5.36231110183284 4.49951326780578 0 4.49951326780577 5.36231110183285 0 3.5 6.06217782649107 0 2.39414100327968 6.57784834550136 0 1.21553724366851 6.89365427108546 0 -3.5527136788005e-015 7 0 -1.21553724366852 6.89365427108546 0 -2.39414100327969 6.57784834550136 0 -3.5 6.06217782649107 0 -4.49951326780578 5.36231110183284 0 -5.36231110183285 4.49951326780577 0 -6.06217782649108 3.49999999999999 0 -6.57784834550136 2.39414100327967 0 -6.89365427108546 1.2155372436685 0 -7 -1.46858978970765e-014 0 -6.89365427108545 -1.21553724366853 0 -6.57784834550135 -2.3941410032797 0 -6.06217782649106 -3.50000000000002 0 -5.36231110183283 -4.49951326780579 0 -4.49951326780576 -5.36231110183286 0 -3.49999999999998 -6.06217782649108 0 -2.39414100327966 -6.57784834550137 0 -1.21553724366849 -6.89365427108546 0 1.77635683940025e-014 -7 0 1.21553724366853 -6.89365427108545 0 2.3941410032797 -6.57784834550135 0 3.50000000000001 -6.06217782649106 0 4.49951326780579 -5.36231110183284 0 5.36231110183285 -4.49951326780577 0 6.06217782649107 -3.49999999999999 0 6.57784834550136 -2.39414100327967 0 6.89365427108546 -1.21553724366851 0 7 2.30926389122033e-014 6.89365427108546 1.21553724366851 6.57784834550136 2.39414100327968 6.06217782649107 3.5 5.36231110183284 4.49951326780578 4.49951326780577 5.36231110183285 3.5 6.06217782649107 2.39414100327968 6.57784834550136 1.21553724366851 6.89365427108546 -4.44089209850063e-015 7 -1.21553724366852 6.89365427108546 -2.39414100327969 6.57784834550136 -3.5 6.06217782649107 -4.49951326780578 5.36231110183284 -5.36231110183285 4.49951326780577 -6.06217782649108 3.49999999999999 -6.57784834550136 2.39414100327967 -6.89365427108546 1.2155372436685 -7 -1.50990331349021e-014 -6.89365427108545 -1.21553724366853 -6.57784834550135 -2.3941410032797 -6.06217782649106 -3.50000000000002 -5.36231110183283 -4.49951326780579 -4.49951326780576 -5.36231110183286 -3.49999999999998 -6.06217782649108 -2.39414100327966 -6.57784834550137 -1.21553724366849 -6.89365427108546 1.77635683940025e-014 -7 1.21553724366853 -6.89365427108545 2.39414100327969 -6.57784834550135 3.50000000000001 -6.06217782649106 4.49951326780579 -5.36231110183284 5.36231110183285 -4.49951326780577 6.06217782649107 -3.49999999999999 6.57784834550136 -2.39414100327967 6.89365427108546 -1.21553724366851 5 6 8 22 23 24 20 21 22 27 25 26 19 20 22 30 24 25 30 27 28 30 28 29 30 25 27 16 17 18 33 31 32 13 14 15 13 15 16 34 18 19 34 30 31 34 22 24 34 19 22 34 24 30 34 31 33 11 12 13 36 34 35 1 34 36 9 10 11 9 11 13 2 16 18 2 18 34 2 34 1 8 13 16 8 16 2 8 9 13 4 8 2 4 2 3 6 7 8 5 8 4 +72 70 1 0.0241542360285685 +6 0 0.5 6 0 1.5 6 0 0.5 5.90357753159178 1.07134136879184 0.5 5.61740922383841 2.10824894448807 0.5 5.15069276161119 3.07739566443545 0.5 4.51842879602165 3.94763235563829 0.5 3.74093881115239 4.69098889480819 0.5 2.84321197483798 5.28357319114044 0.5 1.85410196624967 5.70633909777093 0.5 0.805399594905914 5.94569857060761 0.5 -0.269188982103106 5.99395839924789 0.5 -1.3351256037379 5.84956747309094 0.5 -2.35815018992356 5.5171666353087 0.5 -3.30538188871263 5.00743952232781 0.5 -4.1463758939212 4.33676918296434 0.5 -4.85410196624969 3.52671151375483 0.5 -5.40581320741452 2.60330243470534 0.5 -5.78377716417512 1.59622107340004 0.5 -5.97584576397144 0.537835853420586 0.5 -5.97584576397143 -0.537835853420616 0.5 -5.78377716417512 -1.59622107340007 0.5 -5.40581320741451 -2.60330243470536 0.5 -4.85410196624968 -3.52671151375485 0.5 -4.14637589392118 -4.33676918296436 0.5 -3.3053818887126 -5.00743952232782 0.5 -2.35815018992353 -5.51716663530871 0.5 -1.33512560373787 -5.84956747309094 0.5 -0.269188982103074 -5.99395839924789 0.5 0.805399594905946 -5.94569857060761 0.5 1.8541019662497 -5.70633909777092 0.5 2.84321197483801 -5.28357319114042 0.5 3.74093881115241 -4.69098889480817 0.5 4.51842879602167 -3.94763235563827 0.5 5.1506927616112 -3.07739566443543 0.5 5.61740922383843 -2.10824894448804 0.5 5.90357753159178 -1.07134136879181 0.5 6 0 1.5 5.90357753159178 1.07134136879184 1.5 5.61740922383841 2.10824894448807 1.5 5.15069276161119 3.07739566443545 1.5 4.51842879602165 3.94763235563829 1.5 3.74093881115239 4.69098889480819 1.5 2.84321197483798 5.28357319114044 1.5 1.85410196624967 5.70633909777093 1.5 0.805399594905914 5.94569857060761 1.5 -0.269188982103106 5.99395839924789 1.5 -1.3351256037379 5.84956747309094 1.5 -2.35815018992356 5.5171666353087 1.5 -3.30538188871263 5.00743952232781 1.5 -4.1463758939212 4.33676918296434 1.5 -4.85410196624969 3.52671151375483 1.5 -5.40581320741452 2.60330243470534 1.5 -5.78377716417512 1.59622107340004 1.5 -5.97584576397144 0.537835853420586 1.5 -5.97584576397143 -0.537835853420616 1.5 -5.78377716417512 -1.59622107340007 1.5 -5.40581320741451 -2.60330243470536 1.5 -4.85410196624968 -3.52671151375485 1.5 -4.14637589392118 -4.33676918296436 1.5 -3.3053818887126 -5.00743952232782 1.5 -2.35815018992353 -5.51716663530871 1.5 -1.33512560373787 -5.84956747309094 1.5 -0.269188982103074 -5.99395839924789 1.5 0.805399594905946 -5.94569857060761 1.5 1.8541019662497 -5.70633909777092 1.5 2.84321197483801 -5.28357319114042 1.5 3.74093881115241 -4.69098889480817 1.5 4.51842879602167 -3.94763235563827 1.5 5.1506927616112 -3.07739566443543 1.5 5.61740922383843 -2.10824894448804 1.5 5.90357753159178 -1.07134136879181 1.5 6.28318530717959 0.5 6.28318530717959 1.5 0 0.5 0.179519580205131 0.5 0.359039160410262 0.5 0.538558740615393 0.5 0.718078320820524 0.5 0.897597901025655 0.5 1.07711748123079 0.5 1.25663706143592 0.5 1.43615664164105 0.5 1.61567622184618 0.5 1.79519580205131 0.5 1.97471538225644 0.5 2.15423496246157 0.5 2.3337545426667 0.5 2.51327412287183 0.5 2.69279370307696 0.5 2.8723132832821 0.5 3.05183286348723 0.5 3.23135244369236 0.5 3.41087202389749 0.5 3.59039160410262 0.5 3.76991118430775 0.5 3.94943076451288 0.5 4.12895034471801 0.5 4.30846992492314 0.5 4.48798950512828 0.5 4.66750908533341 0.5 4.84702866553854 0.5 5.02654824574367 0.5 5.2060678259488 0.5 5.38558740615393 0.5 5.56510698635906 0.5 5.74462656656419 0.5 5.92414614676932 0.5 6.10366572697445 0.5 0 1.5 0.179519580205131 1.5 0.359039160410262 1.5 0.538558740615393 1.5 0.718078320820524 1.5 0.897597901025655 1.5 1.07711748123079 1.5 1.25663706143592 1.5 1.43615664164105 1.5 1.61567622184618 1.5 1.79519580205131 1.5 1.97471538225644 1.5 2.15423496246157 1.5 2.3337545426667 1.5 2.51327412287183 1.5 2.69279370307696 1.5 2.8723132832821 1.5 3.05183286348723 1.5 3.23135244369236 1.5 3.41087202389749 1.5 3.59039160410262 1.5 3.76991118430775 1.5 3.94943076451288 1.5 4.12895034471801 1.5 4.30846992492314 1.5 4.48798950512828 1.5 4.66750908533341 1.5 4.84702866553854 1.5 5.02654824574367 1.5 5.2060678259488 1.5 5.38558740615393 1.5 5.56510698635906 1.5 5.74462656656419 1.5 5.92414614676932 1.5 6.10366572697445 1.5 57 22 23 57 56 21 58 57 23 59 23 24 39 3 4 59 24 25 39 4 5 59 58 23 39 38 3 60 59 25 40 39 5 61 25 26 41 5 6 61 26 27 61 60 25 41 40 5 42 6 7 62 61 27 42 41 6 63 27 28 63 28 29 43 7 8 63 62 27 43 42 7 64 63 29 44 8 9 44 43 8 65 29 30 65 64 29 45 44 9 45 9 10 66 30 31 66 31 32 66 65 30 46 10 11 46 45 10 67 66 32 47 11 12 68 32 33 68 33 34 47 46 11 68 67 32 48 12 13 48 47 12 69 68 34 70 69 34 49 48 13 49 13 14 70 34 35 71 70 35 50 14 15 71 35 36 50 49 14 72 71 36 51 15 16 72 36 37 72 37 1 51 50 15 2 72 1 52 16 17 52 51 16 53 17 18 53 52 17 54 18 19 54 53 18 55 19 20 55 20 21 55 54 19 56 55 21 57 21 22 +70 70 1 7.105427357601e-015 +6 0 1 5.90357753159178 1.07134136879184 1 5.61740922383841 2.10824894448807 1 5.15069276161119 3.07739566443545 1 4.51842879602165 3.94763235563829 1 3.74093881115239 4.69098889480819 1 2.84321197483798 5.28357319114044 1 1.85410196624967 5.70633909777093 1 0.805399594905914 5.94569857060761 1 -0.269188982103106 5.99395839924789 1 -1.3351256037379 5.84956747309094 1 -2.35815018992356 5.5171666353087 1 -3.30538188871263 5.00743952232781 1 -4.1463758939212 4.33676918296434 1 -4.85410196624969 3.52671151375483 1 -5.40581320741452 2.60330243470534 1 -5.78377716417512 1.59622107340004 1 -5.97584576397144 0.537835853420586 1 -5.97584576397143 -0.537835853420616 1 -5.78377716417512 -1.59622107340007 1 -5.40581320741451 -2.60330243470536 1 -4.85410196624968 -3.52671151375485 1 -4.14637589392118 -4.33676918296436 1 -3.3053818887126 -5.00743952232782 1 -2.35815018992353 -5.51716663530871 1 -1.33512560373787 -5.84956747309094 1 -0.269188982103074 -5.99395839924789 1 0.805399594905946 -5.94569857060761 1 1.8541019662497 -5.70633909777092 1 2.84321197483801 -5.28357319114042 1 3.74093881115241 -4.69098889480817 1 4.51842879602167 -3.94763235563827 1 5.1506927616112 -3.07739566443543 1 5.61740922383843 -2.10824894448804 1 5.90357753159178 -1.07134136879181 1 7 0 1 6.8875071201904 1.24989826359048 1 6.55364409447815 2.45962376856942 1 6.00914155521305 3.59029494184136 1 5.27150026202526 4.605571081578 1 4.36442861301112 5.47282037727622 1 3.31708063731097 6.16416872299718 1 2.16311896062461 6.65739561406608 1 0.939632860723567 6.93664833237555 1 -0.314053812453626 6.9929514657892 1 -1.55764653769422 6.82449538527276 1 -2.75117522157748 6.43669440786015 1 -3.85627887016474 5.84201277604911 1 -4.83743854290807 5.05956404679173 1 -5.66311896062464 4.1144967660473 1 -6.30678207531694 3.03718617382289 1 -6.74774002487098 1.86225791896671 1 -6.97182005796667 0.627475162324017 1 -6.97182005796667 -0.627475162324052 1 -6.74774002487097 -1.86225791896674 1 -6.30678207531693 -3.03718617382292 1 -5.66311896062462 -4.11449676604733 1 -4.83743854290804 -5.05956404679175 1 -3.8562788701647 -5.84201277604913 1 -2.75117522157745 -6.43669440786016 1 -1.55764653769418 -6.82449538527277 1 -0.314053812453587 -6.9929514657892 1 0.939632860723606 -6.93664833237554 1 2.16311896062465 -6.65739561406607 1 3.317080637311 -6.16416872299716 1 4.36442861301115 -5.4728203772762 1 5.27150026202529 -4.60557108157798 1 6.00914155521307 -3.59029494184133 1 6.55364409447817 -2.45962376856938 1 6.88750712019041 -1.24989826359044 1 6 2.1316282072803e-014 5.90357753159177 1.07134136879184 5.61740922383842 2.10824894448807 5.15069276161119 3.07739566443545 4.51842879602165 3.94763235563829 3.74093881115239 4.69098889480819 2.84321197483798 5.28357319114044 1.85410196624967 5.70633909777093 0.805399594905915 5.94569857060761 -0.269188982103107 5.99395839924789 -1.3351256037379 5.84956747309094 -2.35815018992356 5.5171666353087 -3.30538188871263 5.0074395223278 -4.1463758939212 4.33676918296434 -4.85410196624969 3.52671151375483 -5.40581320741452 2.60330243470534 -5.78377716417512 1.59622107340004 -5.97584576397144 0.537835853420586 -5.97584576397143 -0.537835853420616 -5.78377716417512 -1.59622107340007 -5.40581320741451 -2.60330243470536 -4.85410196624968 -3.52671151375485 -4.14637589392118 -4.33676918296436 -3.3053818887126 -5.00743952232782 -2.35815018992353 -5.51716663530871 -1.33512560373787 -5.84956747309094 -0.269188982103075 -5.99395839924789 0.805399594905947 -5.94569857060761 1.8541019662497 -5.70633909777092 2.84321197483801 -5.28357319114042 3.74093881115241 -4.69098889480817 4.51842879602168 -3.94763235563827 5.1506927616112 -3.07739566443543 5.61740922383843 -2.10824894448804 5.90357753159178 -1.07134136879181 7 -2.04281036531029e-014 6.8875071201904 1.24989826359048 6.55364409447815 2.45962376856942 6.00914155521305 3.59029494184136 5.27150026202526 4.605571081578 4.36442861301112 5.47282037727622 3.31708063731097 6.16416872299718 2.16311896062461 6.65739561406608 0.939632860723568 6.93664833237554 -0.314053812453626 6.9929514657892 -1.55764653769422 6.82449538527276 -2.75117522157748 6.43669440786015 -3.85627887016473 5.84201277604911 -4.83743854290807 5.05956404679173 -5.66311896062464 4.1144967660473 -6.30678207531694 3.03718617382289 -6.74774002487098 1.86225791896671 -6.97182005796668 0.627475162324017 -6.97182005796667 -0.627475162324052 -6.74774002487097 -1.86225791896674 -6.30678207531693 -3.03718617382292 -5.66311896062462 -4.11449676604733 -4.83743854290804 -5.05956404679175 -3.8562788701647 -5.84201277604913 -2.75117522157745 -6.43669440786016 -1.55764653769418 -6.82449538527277 -0.314053812453587 -6.9929514657892 0.939632860723605 -6.93664833237554 2.16311896062465 -6.65739561406607 3.31708063731101 -6.16416872299716 4.36442861301115 -5.4728203772762 5.27150026202529 -4.60557108157798 6.00914155521307 -3.59029494184133 6.55364409447817 -2.45962376856938 6.88750712019041 -1.24989826359044 40 5 39 40 41 6 49 15 14 49 50 15 67 32 31 67 31 66 13 49 14 48 49 13 68 33 32 68 32 67 22 56 57 22 57 58 22 58 23 12 48 13 24 58 59 24 23 58 21 56 22 25 59 60 47 48 12 69 34 33 25 24 59 69 33 68 20 55 56 11 47 12 20 56 21 46 47 11 26 60 61 70 35 34 70 34 69 26 25 60 19 54 55 10 46 11 19 55 20 53 54 19 27 26 61 27 61 62 45 46 10 63 27 62 18 53 19 28 27 63 36 1 35 36 35 70 52 53 18 64 28 63 17 52 18 44 10 9 44 45 10 29 28 64 37 2 1 37 3 2 37 1 36 65 29 64 16 52 17 16 51 52 30 29 65 43 9 8 43 44 9 38 4 3 38 3 37 50 51 16 42 43 8 15 50 16 42 8 7 66 30 65 39 5 4 39 4 38 41 7 6 31 30 66 41 42 7 40 6 5 +73 71 1 0.0266371133577836 +7 0 1.95 7 0 25 7 0 1.95 6.8875071201904 1.24989826359048 1.95 6.55364409447815 2.45962376856942 1.95 6.00914155521305 3.59029494184136 1.95 5.27150026202526 4.605571081578 1.95 4.36442861301112 5.47282037727622 1.95 3.31708063731097 6.16416872299718 1.95 2.16311896062461 6.65739561406608 1.95 0.939632860723567 6.93664833237555 1.95 -0.314053812453626 6.9929514657892 1.95 -1.55764653769422 6.82449538527276 1.95 -2.75117522157748 6.43669440786015 1.95 -3.85627887016474 5.84201277604911 1.95 -4.83743854290807 5.05956404679173 1.95 -5.66311896062464 4.1144967660473 1.95 -6.30678207531694 3.03718617382289 1.95 -6.74774002487098 1.86225791896671 1.95 -6.97182005796667 0.627475162324017 1.95 -6.97182005796667 -0.627475162324052 1.95 -6.74774002487097 -1.86225791896674 1.95 -6.30678207531693 -3.03718617382292 1.95 -5.66311896062462 -4.11449676604733 1.95 -4.83743854290804 -5.05956404679175 1.95 -3.8562788701647 -5.84201277604913 1.95 -2.75117522157745 -6.43669440786016 1.95 -1.55764653769418 -6.82449538527277 1.95 -0.314053812453587 -6.9929514657892 1.95 0.939632860723606 -6.93664833237554 1.95 2.16311896062465 -6.65739561406607 1.95 3.317080637311 -6.16416872299716 1.95 4.36442861301115 -5.4728203772762 1.95 5.27150026202529 -4.60557108157798 1.95 6.00914155521307 -3.59029494184133 1.95 6.55364409447817 -2.45962376856938 1.95 6.88750712019041 -1.24989826359044 1.95 7 0 25 6.89365427108546 1.21553724366851 25 6.57784834550136 2.39414100327968 25 6.06217782649107 3.5 25 5.36231110183284 4.49951326780578 25 4.49951326780577 5.36231110183285 25 3.5 6.06217782649107 25 2.39414100327968 6.57784834550136 25 1.21553724366851 6.89365427108546 25 -3.5527136788005e-015 7 25 -1.21553724366852 6.89365427108546 25 -2.39414100327969 6.57784834550136 25 -3.5 6.06217782649107 25 -4.49951326780578 5.36231110183284 25 -5.36231110183285 4.49951326780577 25 -6.06217782649108 3.49999999999999 25 -6.57784834550136 2.39414100327967 25 -6.89365427108546 1.2155372436685 25 -7 -1.46858978970765e-014 25 -6.89365427108545 -1.21553724366853 25 -6.57784834550135 -2.3941410032797 25 -6.06217782649106 -3.50000000000002 25 -5.36231110183283 -4.49951326780579 25 -4.49951326780576 -5.36231110183286 25 -3.49999999999998 -6.06217782649108 25 -2.39414100327966 -6.57784834550137 25 -1.21553724366849 -6.89365427108546 25 1.77635683940025e-014 -7 25 1.21553724366853 -6.89365427108545 25 2.3941410032797 -6.57784834550135 25 3.50000000000001 -6.06217782649106 25 4.49951326780579 -5.36231110183284 25 5.36231110183285 -4.49951326780577 25 6.06217782649107 -3.49999999999999 25 6.57784834550136 -2.39414100327967 25 6.89365427108546 -1.21553724366851 25 6.28318530717959 1.95 6.28318530717959 25 0 1.95 0.179519580205131 1.95 0.359039160410262 1.95 0.538558740615393 1.95 0.718078320820524 1.95 0.897597901025655 1.95 1.07711748123079 1.95 1.25663706143592 1.95 1.43615664164105 1.95 1.61567622184618 1.95 1.79519580205131 1.95 1.97471538225644 1.95 2.15423496246157 1.95 2.3337545426667 1.95 2.51327412287183 1.95 2.69279370307696 1.95 2.8723132832821 1.95 3.05183286348723 1.95 3.23135244369236 1.95 3.41087202389749 1.95 3.59039160410262 1.95 3.76991118430775 1.95 3.94943076451288 1.95 4.12895034471801 1.95 4.30846992492314 1.95 4.48798950512828 1.95 4.66750908533341 1.95 4.84702866553854 1.95 5.02654824574367 1.95 5.2060678259488 1.95 5.38558740615393 1.95 5.56510698635906 1.95 5.74462656656419 1.95 5.92414614676932 1.95 6.10366572697445 1.95 0 25 0.174532925199433 25 0.349065850398866 25 0.523598775598299 25 0.698131700797732 25 0.872664625997165 25 1.0471975511966 25 1.22173047639603 25 1.39626340159546 25 1.5707963267949 25 1.74532925199433 25 1.91986217719376 25 2.0943951023932 25 2.26892802759263 25 2.44346095279206 25 2.6179938779915 25 2.79252680319093 25 2.96705972839036 25 3.1415926535898 25 3.31612557878923 25 3.49065850398866 25 3.66519142918809 25 3.83972435438753 25 4.01425727958696 25 4.18879020478639 25 4.36332312998583 25 4.53785605518526 25 4.71238898038469 25 4.88692190558413 25 5.06145483078356 25 5.23598775598299 25 5.41052068118242 25 5.58505360638186 25 5.75958653158129 25 5.93411945678072 25 6.10865238198015 25 58 22 23 58 57 22 59 23 24 59 58 23 39 3 4 39 38 3 60 24 25 60 59 24 40 4 5 40 39 4 61 25 26 61 60 25 41 5 6 41 40 5 62 26 27 62 61 26 42 6 7 42 41 6 63 27 28 63 62 27 43 7 8 43 42 7 64 28 29 64 63 28 44 8 9 65 29 30 44 43 8 65 64 29 45 44 9 45 9 10 66 30 31 66 65 30 46 45 10 46 10 11 67 31 32 67 66 31 47 11 12 68 32 33 47 46 11 68 67 32 48 47 12 48 12 13 69 33 34 69 68 33 49 13 14 49 48 13 70 69 34 70 34 35 50 14 15 50 49 14 71 70 35 71 35 36 72 71 36 51 15 16 72 36 37 51 50 15 73 72 37 73 37 1 52 16 17 52 51 16 2 73 1 53 17 18 53 52 17 54 18 19 54 53 18 55 19 20 55 54 19 56 20 21 56 55 20 57 21 22 57 56 21 +71 71 1 9.05767818720588e-015 +7 0 25 6.89365427108546 1.21553724366851 25 6.57784834550136 2.39414100327968 25 6.06217782649107 3.5 25 5.36231110183284 4.49951326780578 25 4.49951326780577 5.36231110183285 25 3.5 6.06217782649107 25 2.39414100327968 6.57784834550136 25 1.21553724366851 6.89365427108546 25 -3.5527136788005e-015 7 25 -1.21553724366852 6.89365427108546 25 -2.39414100327969 6.57784834550136 25 -3.5 6.06217782649107 25 -4.49951326780578 5.36231110183284 25 -5.36231110183285 4.49951326780577 25 -6.06217782649108 3.49999999999999 25 -6.57784834550136 2.39414100327967 25 -6.89365427108546 1.2155372436685 25 -7 -1.46858978970765e-014 25 -6.89365427108545 -1.21553724366853 25 -6.57784834550135 -2.3941410032797 25 -6.06217782649106 -3.50000000000002 25 -5.36231110183283 -4.49951326780579 25 -4.49951326780576 -5.36231110183286 25 -3.49999999999998 -6.06217782649108 25 -2.39414100327966 -6.57784834550137 25 -1.21553724366849 -6.89365427108546 25 1.77635683940025e-014 -7 25 1.21553724366853 -6.89365427108545 25 2.3941410032797 -6.57784834550135 25 3.50000000000001 -6.06217782649106 25 4.49951326780579 -5.36231110183284 25 5.36231110183285 -4.49951326780577 25 6.06217782649107 -3.49999999999999 25 6.57784834550136 -2.39414100327967 25 6.89365427108546 -1.21553724366851 25 6 0 25 5.90357753159178 1.07134136879184 25 5.61740922383841 2.10824894448807 25 5.15069276161119 3.07739566443545 25 4.51842879602165 3.94763235563829 25 3.74093881115239 4.69098889480819 25 2.84321197483798 5.28357319114044 25 1.85410196624967 5.70633909777093 25 0.805399594905914 5.94569857060761 25 -0.269188982103106 5.99395839924789 25 -1.3351256037379 5.84956747309094 25 -2.35815018992356 5.5171666353087 25 -3.30538188871263 5.00743952232781 25 -4.1463758939212 4.33676918296434 25 -4.85410196624969 3.52671151375483 25 -5.40581320741452 2.60330243470534 25 -5.78377716417512 1.59622107340004 25 -5.97584576397144 0.537835853420586 25 -5.97584576397143 -0.537835853420616 25 -5.78377716417512 -1.59622107340007 25 -5.40581320741451 -2.60330243470536 25 -4.85410196624968 -3.52671151375485 25 -4.14637589392118 -4.33676918296436 25 -3.3053818887126 -5.00743952232782 25 -2.35815018992353 -5.51716663530871 25 -1.33512560373787 -5.84956747309094 25 -0.269188982103074 -5.99395839924789 25 0.805399594905946 -5.94569857060761 25 1.8541019662497 -5.70633909777092 25 2.84321197483801 -5.28357319114042 25 3.74093881115241 -4.69098889480817 25 4.51842879602167 -3.94763235563827 25 5.1506927616112 -3.07739566443543 25 5.61740922383843 -2.10824894448804 25 5.90357753159178 -1.07134136879181 25 7 0 6.89365427108546 1.21553724366851 6.57784834550136 2.39414100327968 6.06217782649107 3.5 5.36231110183284 4.49951326780578 4.49951326780577 5.36231110183285 3.5 6.06217782649107 2.39414100327968 6.57784834550136 1.21553724366851 6.89365427108546 -4.44089209850063e-015 7 -1.21553724366852 6.89365427108546 -2.39414100327969 6.57784834550136 -3.5 6.06217782649107 -4.49951326780578 5.36231110183284 -5.36231110183285 4.49951326780577 -6.06217782649108 3.49999999999999 -6.57784834550136 2.39414100327967 -6.89365427108546 1.2155372436685 -7 -1.50990331349021e-014 -6.89365427108545 -1.21553724366853 -6.57784834550135 -2.3941410032797 -6.06217782649106 -3.50000000000002 -5.36231110183283 -4.49951326780579 -4.49951326780576 -5.36231110183286 -3.49999999999998 -6.06217782649108 -2.39414100327966 -6.57784834550137 -1.21553724366849 -6.89365427108546 1.77635683940025e-014 -7 1.21553724366853 -6.89365427108545 2.39414100327969 -6.57784834550135 3.50000000000001 -6.06217782649106 4.49951326780579 -5.36231110183284 5.36231110183285 -4.49951326780577 6.06217782649107 -3.49999999999999 6.57784834550136 -2.39414100327967 6.89365427108546 -1.21553724366851 6 -1.77635683940025e-014 5.90357753159178 1.07134136879184 5.61740922383842 2.10824894448807 5.15069276161119 3.07739566443545 4.51842879602165 3.94763235563829 3.74093881115239 4.69098889480819 2.84321197483798 5.28357319114044 1.85410196624967 5.70633909777093 0.805399594905915 5.94569857060761 -0.269188982103107 5.99395839924789 -1.3351256037379 5.84956747309094 -2.35815018992356 5.5171666353087 -3.30538188871263 5.00743952232781 -4.1463758939212 4.33676918296434 -4.85410196624969 3.52671151375483 -5.40581320741452 2.60330243470533 -5.78377716417512 1.59622107340004 -5.97584576397144 0.537835853420586 -5.97584576397143 -0.537835853420615 -5.78377716417512 -1.59622107340006 -5.40581320741451 -2.60330243470536 -4.85410196624968 -3.52671151375485 -4.14637589392118 -4.33676918296436 -3.3053818887126 -5.00743952232782 -2.35815018992353 -5.51716663530871 -1.33512560373787 -5.84956747309094 -0.269188982103075 -5.99395839924789 0.805399594905947 -5.94569857060761 1.8541019662497 -5.70633909777092 2.843211974838 -5.28357319114042 3.74093881115241 -4.69098889480817 4.51842879602168 -3.94763235563827 5.1506927616112 -3.07739566443543 5.61740922383843 -2.10824894448804 5.90357753159178 -1.07134136879181 68 67 32 14 15 50 33 68 32 49 14 50 69 68 33 13 14 49 34 69 33 48 13 49 59 23 24 58 22 23 58 23 59 70 69 34 60 24 25 12 13 48 60 59 24 35 70 34 47 12 48 57 21 22 71 70 35 57 22 58 61 25 26 11 12 47 61 60 25 36 71 35 56 20 21 46 11 47 56 21 57 62 26 27 37 71 36 62 61 26 55 20 56 55 19 20 1 37 36 63 27 28 10 46 45 10 11 46 63 62 27 9 45 44 9 10 45 54 19 55 2 38 37 54 18 19 64 63 28 2 37 1 64 28 29 53 18 54 17 18 53 65 29 30 8 44 43 8 9 44 65 64 29 3 39 38 52 17 53 3 38 2 16 17 52 4 39 3 4 40 39 66 65 30 66 30 31 7 8 43 7 43 42 51 16 52 6 7 42 6 42 41 67 66 31 5 41 40 5 6 41 15 16 51 5 40 4 32 67 31 50 15 51 +73 71 1 0.0228318114495262 +6 0 0.0500000000000007 6 0 14 6 0 0.0500000000000007 5.90357753159178 1.07134136879184 0.0500000000000007 5.61740922383841 2.10824894448807 0.0500000000000007 5.15069276161119 3.07739566443545 0.0500000000000007 4.51842879602165 3.94763235563829 0.0500000000000007 3.74093881115239 4.69098889480819 0.0500000000000007 2.84321197483798 5.28357319114044 0.0500000000000007 1.85410196624967 5.70633909777093 0.0500000000000007 0.805399594905914 5.94569857060761 0.0500000000000007 -0.269188982103106 5.99395839924789 0.0500000000000007 -1.3351256037379 5.84956747309094 0.0500000000000007 -2.35815018992356 5.5171666353087 0.0500000000000007 -3.30538188871263 5.00743952232781 0.0500000000000007 -4.1463758939212 4.33676918296434 0.0500000000000007 -4.85410196624969 3.52671151375483 0.0500000000000007 -5.40581320741452 2.60330243470534 0.0500000000000007 -5.78377716417512 1.59622107340004 0.0500000000000007 -5.97584576397144 0.537835853420586 0.0500000000000007 -5.97584576397143 -0.537835853420616 0.0500000000000007 -5.78377716417512 -1.59622107340007 0.0500000000000007 -5.40581320741451 -2.60330243470536 0.0500000000000007 -4.85410196624968 -3.52671151375485 0.0500000000000007 -4.14637589392118 -4.33676918296436 0.0500000000000007 -3.3053818887126 -5.00743952232782 0.0500000000000007 -2.35815018992353 -5.51716663530871 0.0500000000000007 -1.33512560373787 -5.84956747309094 0.0500000000000007 -0.269188982103074 -5.99395839924789 0.0500000000000007 0.805399594905946 -5.94569857060761 0.0500000000000007 1.8541019662497 -5.70633909777092 0.0500000000000007 2.84321197483801 -5.28357319114042 0.0500000000000007 3.74093881115241 -4.69098889480817 0.0500000000000007 4.51842879602167 -3.94763235563827 0.0500000000000007 5.1506927616112 -3.07739566443543 0.0500000000000007 5.61740922383843 -2.10824894448804 0.0500000000000007 5.90357753159178 -1.07134136879181 0.0500000000000007 6 0 14 5.90884651807325 1.04188906600158 14 5.63815572471545 2.05212085995401 14 5.19615242270663 3 14 4.59626665871387 3.85672565811924 14 3.85672565811923 4.59626665871387 14 3 5.19615242270663 14 2.05212085995401 5.63815572471545 14 1.04188906600158 5.90884651807325 14 -3.5527136788005e-015 6 14 -1.04188906600159 5.90884651807325 14 -2.05212085995402 5.63815572471545 14 -3 5.19615242270663 14 -3.85672565811924 4.59626665871386 14 -4.59626665871387 3.85672565811923 14 -5.19615242270664 2.99999999999999 14 -5.63815572471545 2.052120859954 14 -5.90884651807325 1.04188906600157 14 -6 -1.25879124832085e-014 14 -5.90884651807325 -1.0418890660016 14 -5.63815572471545 -2.05212085995403 14 -5.19615242270662 -3.00000000000001 14 -4.59626665871386 -3.85672565811925 14 -3.85672565811922 -4.59626665871388 14 -2.99999999999999 -5.19615242270664 14 -2.05212085995399 -5.63815572471546 14 -1.04188906600157 -5.90884651807325 14 1.4210854715202e-014 -6 14 1.04188906600159 -5.90884651807325 14 2.05212085995402 -5.63815572471545 14 3.00000000000001 -5.19615242270663 14 3.85672565811925 -4.59626665871386 14 4.59626665871387 -3.85672565811923 14 5.19615242270664 -2.99999999999999 14 5.63815572471545 -2.05212085995401 14 5.90884651807325 -1.04188906600158 14 6.28318530717959 0.0499999999999974 6.28318530717959 14 0 0.0499999999999972 0.179519580205131 0.0499999999999972 0.359039160410262 0.0499999999999972 0.538558740615393 0.0499999999999972 0.718078320820524 0.0499999999999972 0.897597901025655 0.0499999999999972 1.07711748123079 0.0499999999999972 1.25663706143592 0.0499999999999972 1.43615664164105 0.0499999999999972 1.61567622184618 0.0499999999999972 1.79519580205131 0.0499999999999972 1.97471538225644 0.0499999999999972 2.15423496246157 0.0499999999999972 2.3337545426667 0.0499999999999972 2.51327412287183 0.0499999999999972 2.69279370307696 0.0499999999999972 2.8723132832821 0.0499999999999972 3.05183286348723 0.0499999999999972 3.23135244369236 0.0499999999999972 3.41087202389749 0.0499999999999972 3.59039160410262 0.0499999999999972 3.76991118430775 0.0499999999999972 3.94943076451288 0.0499999999999972 4.12895034471801 0.0499999999999972 4.30846992492314 0.0499999999999972 4.48798950512828 0.0499999999999972 4.66750908533341 0.0499999999999972 4.84702866553854 0.0499999999999972 5.02654824574367 0.0499999999999972 5.2060678259488 0.0499999999999972 5.38558740615393 0.0499999999999972 5.56510698635906 0.0499999999999972 5.74462656656419 0.0499999999999972 5.92414614676932 0.0499999999999972 6.10366572697445 0.0499999999999972 0 14 0.174532925199433 14 0.349065850398866 14 0.523598775598299 14 0.698131700797732 14 0.872664625997165 14 1.0471975511966 14 1.22173047639603 14 1.39626340159546 14 1.5707963267949 14 1.74532925199433 14 1.91986217719376 14 2.0943951023932 14 2.26892802759263 14 2.44346095279206 14 2.6179938779915 14 2.79252680319093 14 2.96705972839036 14 3.1415926535898 14 3.31612557878923 14 3.49065850398866 14 3.66519142918809 14 3.83972435438753 14 4.01425727958696 14 4.18879020478639 14 4.36332312998583 14 4.53785605518526 14 4.71238898038469 14 4.88692190558413 14 5.06145483078356 14 5.23598775598299 14 5.41052068118242 14 5.58505360638186 14 5.75958653158129 14 5.93411945678072 14 6.10865238198015 14 58 22 23 58 57 22 59 23 24 59 58 23 39 3 4 39 38 3 60 24 25 60 59 24 40 4 5 40 39 4 61 25 26 61 60 25 41 5 6 41 40 5 62 26 27 62 61 26 42 6 7 42 41 6 63 27 28 63 62 27 43 7 8 43 42 7 64 28 29 64 63 28 44 8 9 65 29 30 44 43 8 65 64 29 45 44 9 45 9 10 66 30 31 66 65 30 46 45 10 46 10 11 67 31 32 67 66 31 47 11 12 68 32 33 47 46 11 68 67 32 48 47 12 48 12 13 69 33 34 69 68 33 49 13 14 49 48 13 70 69 34 70 34 35 50 14 15 50 49 14 71 70 35 71 35 36 72 71 36 51 15 16 72 36 37 51 50 15 73 72 37 73 37 1 52 16 17 52 51 16 2 73 1 53 17 18 53 52 17 54 18 19 54 53 18 55 19 20 55 54 19 56 20 21 56 55 20 57 21 22 57 56 21 +36 34 1 1.88737914186277e-015 +6 0 14 5.90884651807325 1.04188906600158 14 5.63815572471545 2.05212085995401 14 5.19615242270663 3 14 4.59626665871387 3.85672565811924 14 3.85672565811923 4.59626665871387 14 3 5.19615242270663 14 2.05212085995401 5.63815572471545 14 1.04188906600158 5.90884651807325 14 -3.5527136788005e-015 6 14 -1.04188906600159 5.90884651807325 14 -2.05212085995402 5.63815572471545 14 -3 5.19615242270663 14 -3.85672565811924 4.59626665871386 14 -4.59626665871387 3.85672565811923 14 -5.19615242270664 2.99999999999999 14 -5.63815572471545 2.052120859954 14 -5.90884651807325 1.04188906600157 14 -6 -1.25879124832085e-014 14 -5.90884651807325 -1.0418890660016 14 -5.63815572471545 -2.05212085995403 14 -5.19615242270662 -3.00000000000001 14 -4.59626665871386 -3.85672565811925 14 -3.85672565811922 -4.59626665871388 14 -2.99999999999999 -5.19615242270664 14 -2.05212085995399 -5.63815572471546 14 -1.04188906600157 -5.90884651807325 14 1.4210854715202e-014 -6 14 1.04188906600159 -5.90884651807325 14 2.05212085995402 -5.63815572471545 14 3.00000000000001 -5.19615242270663 14 3.85672565811925 -4.59626665871386 14 4.59626665871387 -3.85672565811923 14 5.19615242270664 -2.99999999999999 14 5.63815572471545 -2.05212085995401 14 5.90884651807325 -1.04188906600158 14 6 0 5.90884651807325 1.04188906600158 5.63815572471545 2.05212085995401 5.19615242270663 3 4.59626665871387 3.85672565811924 3.85672565811923 4.59626665871387 3 5.19615242270663 2.05212085995401 5.63815572471545 1.04188906600158 5.90884651807325 -3.5527136788005e-015 6 -1.04188906600159 5.90884651807325 -2.05212085995402 5.63815572471545 -3 5.19615242270663 -3.85672565811924 4.59626665871387 -4.59626665871387 3.85672565811923 -5.19615242270664 2.99999999999999 -5.63815572471545 2.052120859954 -5.90884651807325 1.04188906600157 -6 -1.24344978758018e-014 -5.90884651807325 -1.0418890660016 -5.63815572471545 -2.05212085995403 -5.19615242270662 -3.00000000000001 -4.59626665871386 -3.85672565811925 -3.85672565811922 -4.59626665871388 -2.99999999999998 -5.19615242270664 -2.052120859954 -5.63815572471546 -1.04188906600157 -5.90884651807325 1.50990331349021e-014 -6 1.0418890660016 -5.90884651807325 2.05212085995402 -5.63815572471545 3.00000000000001 -5.19615242270663 3.85672565811924 -4.59626665871386 4.59626665871387 -3.85672565811923 5.19615242270664 -2.99999999999999 5.63815572471545 -2.05212085995401 5.90884651807325 -1.04188906600158 25 23 24 27 25 26 19 20 21 19 21 22 28 25 27 18 22 23 18 23 25 18 19 22 17 28 29 17 25 28 17 18 25 32 30 31 13 14 15 13 15 16 13 16 17 13 29 30 13 17 29 34 32 33 34 30 32 11 12 13 1 34 35 1 35 36 9 10 11 2 13 30 2 30 34 2 34 1 2 11 13 7 8 9 7 9 11 5 2 3 5 3 4 5 11 2 6 7 11 6 11 5 +36 34 1 0.0378515613750491 +-8.9994444272964 -0.100000000018675 0.5 8.9994444272963 -0.100000000026636 0.5 -8.83011945505476 -1.74039949708778 0.5 -8.36432251829365 -3.32236494232133 0.5 -7.61769278629176 -4.79278171980308 0.5 -6.61529841181213 -6.10228046902761 0.5 -5.39079486587506 -7.20689466511445 0.5 -3.98529495263601 -8.06953679838527 0.5 -2.44598844370914 -8.66124359045751 0.5 -0.8245576778241 -8.9621484386246 0.5 0.824557677816319 -8.96214843862531 0.5 2.44598844370163 -8.66124359045963 0.5 3.985294952629 -8.06953679838873 0.5 5.3907948658688 -7.20689466511913 0.5 6.61529841180683 -6.10228046903336 0.5 7.61769278628759 -4.79278171980969 0.5 8.36432251829076 -3.32236494232859 0.5 8.83011945505325 -1.74039949709545 0.5 -8.9994444272964 -0.100000000018675 0 8.9994444272963 -0.100000000026636 0 -8.83011945505477 -1.74039949708775 0 -8.36432251829366 -3.3223649423213 0 -7.61769278629178 -4.79278171980304 0 -6.61529841181216 -6.10228046902758 0 -5.3907948658751 -7.20689466511442 0 -3.98529495263605 -8.06953679838525 0 -2.44598844370919 -8.6612435904575 0 -0.824557677824146 -8.96214843862459 0 0.824557677816273 -8.96214843862532 0 2.44598844370158 -8.66124359045965 0 3.98529495262896 -8.06953679838875 0 5.39079486586877 -7.20689466511916 0 6.6152984118068 -6.10228046903339 0 7.61769278628757 -4.79278171980973 0 8.36432251829075 -3.32236494232864 0 8.83011945505324 -1.74039949709549 0 3.15270399333937 0.5 6.27207396742913 0.5 3.33619634475641 0.5 3.51968869617346 0.5 3.7031810475905 0.5 3.88667339900755 0.5 4.07016575042459 0.5 4.25365810184164 0.5 4.43715045325868 0.5 4.62064280467573 0.5 4.80413515609277 0.5 4.98762750750982 0.5 5.17111985892686 0.5 5.35461221034391 0.5 5.53810456176095 0.5 5.721596913178 0.5 5.90508926459504 0.5 6.08858161601209 0.5 3.15270399333729 0 6.27207396743209 0 3.33619634475641 0 3.51968869617346 0 3.7031810475905 0 3.88667339900755 0 4.07016575042459 0 4.25365810184164 0 4.43715045325868 0 4.62064280467573 0 4.80413515609277 0 4.98762750750982 0 5.17111985892686 0 5.35461221034391 0 5.53810456176095 0 5.721596913178 0 5.90508926459504 0 6.08858161601209 0 1 19 21 3 21 22 3 1 21 4 22 23 4 3 22 5 23 24 5 4 23 6 24 25 6 5 24 7 25 26 7 6 25 8 26 27 8 7 26 9 27 28 9 8 27 10 28 29 10 9 28 11 29 30 11 10 29 12 30 31 12 11 30 13 31 32 13 12 31 14 32 33 14 13 32 15 33 34 15 14 33 16 34 35 16 15 34 17 35 36 17 16 35 18 17 36 2 18 36 2 36 20 +36 34 1 5.51148016114666e-012 +-8.9994444272964 -0.100000000018675 0 8.9994444272963 -0.100000000026636 0 -8.83011945505476 -1.74039949708778 0 -8.36432251829365 -3.32236494232133 0 -7.61769278629176 -4.79278171980308 0 -6.61529841181213 -6.10228046902761 0 -5.39079486587506 -7.20689466511445 0 -3.98529495263601 -8.06953679838527 0 -2.44598844370914 -8.66124359045751 0 -0.8245576778241 -8.9621484386246 0 0.824557677816319 -8.96214843862531 0 2.44598844370163 -8.66124359045963 0 3.985294952629 -8.06953679838873 0 5.3907948658688 -7.20689466511913 0 6.61529841180683 -6.10228046903336 0 7.61769278628759 -4.79278171980969 0 8.36432251829076 -3.32236494232859 0 8.83011945505325 -1.74039949709545 0 -7.9993749755838 -0.100000000017898 0 7.9993749755837 -0.100000000024384 0 -7.84709318460015 -1.55664014858985 0 -7.43181235455881 -2.96110876642974 0 -6.76745081886944 -4.26633442362216 0 -5.87627496858447 -5.42857186501087 0 -4.78815298377297 -6.408868153113 0 -3.53955378734064 -7.17436819424 0 -2.17232477183205 -7.69941589250021 0 -0.732289264279473 -7.96641402598566 0 0.732289264273 -7.96641402598625 0 2.1723247718258 -7.69941589250198 0 3.53955378733481 -7.17436819424288 0 4.78815298376777 -6.40886815311689 0 5.87627496858006 -5.42857186501564 0 6.76745081886597 -4.26633442362765 0 7.43181235455641 -2.96110876643577 0 7.84709318459889 -1.55664014859622 0 -8.9994444272964 -0.10000000001873 8.99944442729631 -0.100000000026592 -8.83011945505476 -1.74039949708778 -8.36432251829365 -3.32236494232133 -7.61769278629176 -4.79278171980308 -6.61529841181213 -6.10228046902761 -5.39079486587506 -7.20689466511445 -3.98529495263601 -8.06953679838527 -2.44598844370915 -8.66124359045751 -0.8245576778241 -8.9621484386246 0.824557677816319 -8.96214843862531 2.44598844370162 -8.66124359045963 3.985294952629 -8.06953679838873 5.3907948658688 -7.20689466511913 6.61529841180684 -6.10228046903336 7.61769278628759 -4.79278171980969 8.36432251829076 -3.32236494232859 8.83011945505325 -1.74039949709545 -7.9993749755838 -0.0999999999999996 7.9993749755837 -0.0999999999999996 -7.84709318460015 -1.55664014858985 -7.43181235455881 -2.96110876642974 -6.76745081886944 -4.26633442362216 -5.87627496858447 -5.42857186501087 -4.78815298377297 -6.408868153113 -3.53955378734064 -7.17436819424 -2.17232477183205 -7.69941589250021 -0.732289264279471 -7.96641402598566 0.732289264273 -7.96641402598625 2.17232477182579 -7.69941589250198 3.53955378733481 -7.17436819424288 4.78815298376776 -6.40886815311689 5.87627496858006 -5.42857186501564 6.76745081886597 -4.26633442362765 7.4318123545564 -2.96110876643577 7.84709318459889 -1.55664014859622 24 6 7 25 7 8 25 24 7 23 5 6 23 6 24 26 8 9 26 25 8 22 4 5 22 5 23 27 26 9 10 27 9 21 3 4 21 4 22 28 27 10 11 28 10 19 1 3 19 3 21 29 28 11 30 11 12 30 29 11 31 12 13 31 30 12 32 13 14 32 31 13 33 32 14 15 33 14 34 33 15 16 34 15 35 34 16 17 35 16 36 35 17 18 36 17 20 36 18 2 20 18 +6 4 1 1.84159909544236e-011 +62.0005555727036 -1.86749921082807e-011 12 62.0005555727036 -1.86749921082807e-011 12.5 64.0007143221609 1.69430997010167e-011 12 63.0006250244162 -1.7897988646709e-011 12.5 64.0007143221609 1.69430997010167e-011 35.1 63.0006250244162 -1.7897988646709e-011 35.1 12 62.0005555727034 12.5 62.0005555727034 12 64.0007143221609 12.5 63.0006250244162 35.1 64.0007143221612 35.1 63.000625024416 4 1 2 3 1 4 5 4 6 5 3 4 +6 4 1 2.588533091578e-011 +79.9994444272963 -2.66359989620213e-011 12 79.9994444272963 -2.66359989620213e-011 12.5 77.9992856778385 -2.17370010879847e-011 12 78.9993749755837 -2.4383994823296e-011 12.5 77.9992856778385 -2.17370010879847e-011 35.1 78.9993749755837 -2.4383994823296e-011 35.1 12 79.9994444272966 12.5 79.9994444272966 12 77.9992856778385 12.5 78.9993749755837 35.1 77.9992856778389 35.1 78.999374975584 1 3 4 2 1 4 5 4 3 6 4 5 +36 34 1 8.09485811714694e-012 +-8.9994444272964 -0.100000000018675 0 8.9994444272963 -0.100000000026636 0 -8.83011945505477 -1.74039949708775 0 -8.36432251829366 -3.3223649423213 0 -7.61769278629178 -4.79278171980304 0 -6.61529841181216 -6.10228046902758 0 -5.3907948658751 -7.20689466511442 0 -3.98529495263605 -8.06953679838525 0 -2.44598844370919 -8.6612435904575 0 -0.824557677824146 -8.96214843862459 0 0.824557677816273 -8.96214843862532 0 2.44598844370158 -8.66124359045965 0 3.98529495262896 -8.06953679838875 0 5.39079486586877 -7.20689466511916 0 6.6152984118068 -6.10228046903339 0 7.61769278628757 -4.79278171980973 0 8.36432251829075 -3.32236494232864 0 8.83011945505324 -1.74039949709549 0 -6.9992856778391 -0.0999999999830569 0 6.9992856778385 -0.100000000021737 0 -6.86405171690188 -1.37287800903664 0 -6.49929133994565 -2.59984847222055 0 -5.91720173683456 -3.73988283313823 0 -5.13724735013322 -4.75485958399922 0 -4.18550900533963 -5.61083900733401 0 -3.09381179647667 -6.27919808319357 0 -1.89866088959829 -6.73758761177247 0 -0.640020829782454 -6.97067954631717 0 0.640020829743911 -6.97067954632071 0 1.89866088956104 -6.73758761178297 0 3.09381179644195 -6.27919808321068 0 4.1855090053086 -5.61083900735715 0 5.13724735010693 -4.75485958402763 0 5.91720173681388 -3.73988283317095 0 6.49929133993127 -2.59984847225649 0 6.86405171689429 -1.37287800907459 0 -8.9994444272964 -0.100000000018701 8.99944442729631 -0.100000000026615 -8.83011945505477 -1.74039949708775 -8.36432251829366 -3.3223649423213 -7.61769278629178 -4.79278171980304 -6.61529841181216 -6.10228046902758 -5.3907948658751 -7.20689466511442 -3.98529495263605 -8.06953679838525 -2.44598844370919 -8.6612435904575 -0.824557677824147 -8.96214843862459 0.824557677816271 -8.96214843862532 2.44598844370158 -8.66124359045965 3.98529495262896 -8.06953679838875 5.39079486586876 -7.20689466511916 6.6152984118068 -6.10228046903339 7.61769278628757 -4.79278171980973 8.36432251829074 -3.32236494232864 8.83011945505324 -1.74039949709549 -6.9992856778391 -0.0999999999999996 6.9992856778385 -0.0999999999999996 -6.86405171690188 -1.37287800903664 -6.49929133994565 -2.59984847222055 -5.91720173683456 -3.73988283313823 -5.13724735013322 -4.75485958399922 -4.18550900533962 -5.61083900733401 -3.09381179647667 -6.27919808319357 -1.89866088959829 -6.73758761177247 -0.640020829782452 -6.97067954631717 0.640020829743909 -6.97067954632071 1.89866088956103 -6.73758761178297 3.09381179644195 -6.27919808321068 4.1855090053086 -5.61083900735715 5.13724735010692 -4.75485958402763 5.91720173681388 -3.73988283317095 6.49929133993127 -2.59984847225649 6.86405171689429 -1.37287800907459 18 36 17 18 20 36 2 20 18 24 6 7 25 7 8 25 24 7 23 5 6 23 6 24 26 8 9 26 25 8 22 4 5 22 5 23 27 9 10 27 26 9 21 3 4 21 4 22 28 27 10 19 1 3 19 3 21 29 10 11 29 28 10 30 11 12 30 29 11 31 12 13 31 30 12 32 13 14 32 31 13 33 32 14 15 33 14 34 33 15 16 34 15 35 34 16 17 35 16 36 35 17 +36 34 1 0.0335859740140565 +-7.9993749755838 -0.100000000017898 0.5 7.9993749755837 -0.100000000024384 0.5 -7.84709318460015 -1.55664014858985 0.5 -7.43181235455881 -2.96110876642974 0.5 -6.76745081886944 -4.26633442362216 0.5 -5.87627496858447 -5.42857186501087 0.5 -4.78815298377297 -6.408868153113 0.5 -3.53955378734064 -7.17436819424 0.5 -2.17232477183205 -7.69941589250021 0.5 -0.732289264279473 -7.96641402598566 0.5 0.732289264273 -7.96641402598625 0.5 2.1723247718258 -7.69941589250198 0.5 3.53955378733481 -7.17436819424288 0.5 4.78815298376777 -6.40886815311689 0.5 5.87627496858006 -5.42857186501564 0.5 6.76745081886597 -4.26633442362765 0.5 7.43181235455641 -2.96110876643577 0.5 7.84709318459889 -1.55664014859622 0.5 -7.9993749755838 -0.100000000017898 23.1 7.9993749755837 -0.100000000024384 23.1 -7.84709318460015 -1.55664014858985 23.1 -7.43181235455881 -2.96110876642974 23.1 -6.76745081886944 -4.26633442362216 23.1 -5.87627496858447 -5.42857186501087 23.1 -4.78815298377297 -6.408868153113 23.1 -3.53955378734064 -7.17436819424 23.1 -2.17232477183205 -7.69941589250021 23.1 -0.732289264279473 -7.96641402598566 23.1 0.732289264273 -7.96641402598625 23.1 2.1723247718258 -7.69941589250198 23.1 3.53955378733481 -7.17436819424288 23.1 4.78815298376777 -6.40886815311689 23.1 5.87627496858006 -5.42857186501564 23.1 6.76745081886597 -4.26633442362765 23.1 7.43181235455641 -2.96110876643577 23.1 7.84709318459889 -1.55664014859622 23.1 3.15409297913575 0.5 6.27068498163281 0.5 3.33742192045911 0.5 3.52075086178246 0.5 3.70407980310582 0.5 3.88740874442918 0.5 4.07073768575253 0.5 4.25406662707589 0.5 4.43739556839925 0.5 4.6207245097226 0.5 4.80405345104596 0.5 4.98738239236932 0.5 5.17071133369267 0.5 5.35404027501603 0.5 5.53736921633938 0.5 5.72069815766274 0.5 5.9040270989861 0.5 6.08735604030945 0.5 3.15409297913352 23.1 6.27068498163586 23.1 3.33742192045911 23.1 3.52075086178246 23.1 3.70407980310582 23.1 3.88740874442918 23.1 4.07073768575253 23.1 4.25406662707589 23.1 4.43739556839925 23.1 4.6207245097226 23.1 4.80405345104596 23.1 4.98738239236932 23.1 5.17071133369267 23.1 5.35404027501603 23.1 5.53736921633938 23.1 5.72069815766274 23.1 5.9040270989861 23.1 6.08735604030945 23.1 21 1 3 21 3 4 21 19 1 22 4 5 22 21 4 23 22 5 24 5 6 24 23 5 25 6 7 25 24 6 26 7 8 26 25 7 27 8 9 27 26 8 28 9 10 28 10 11 28 27 9 29 11 12 29 28 11 30 29 12 31 12 13 31 13 14 31 30 12 32 14 15 32 31 14 33 32 15 34 15 16 34 16 17 34 33 15 35 34 17 36 35 17 36 17 18 36 18 2 20 36 2 +36 34 1 0.0293204536810726 +-6.9992856778391 -0.0999999999830569 1 6.9992856778385 -0.100000000021737 1 -6.86405171690188 -1.37287800903664 1 -6.49929133994565 -2.59984847222055 1 -5.91720173683456 -3.73988283313823 1 -5.13724735013322 -4.75485958399922 1 -4.18550900533963 -5.61083900733401 1 -3.09381179647667 -6.27919808319357 1 -1.89866088959829 -6.73758761177247 1 -0.640020829782454 -6.97067954631717 1 0.640020829743911 -6.97067954632071 1 1.89866088956104 -6.73758761178297 1 3.09381179644195 -6.27919808321068 1 4.1855090053086 -5.61083900735715 1 5.13724735010693 -4.75485958402763 1 5.91720173681388 -3.73988283317095 1 6.49929133993127 -2.59984847225649 1 6.86405171689429 -1.37287800907459 1 -6.9992856778391 -0.0999999999830569 24.1 6.9992856778385 -0.100000000021737 24.1 -6.86405171690186 -1.3728780090367 24.1 -6.49929133994562 -2.59984847222061 24.1 -5.91720173683452 -3.73988283313829 24.1 -5.13724735013317 -4.75485958399927 24.1 -4.18550900533957 -5.61083900733405 24.1 -3.09381179647661 -6.2791980831936 24.1 -1.89866088959822 -6.73758761177249 24.1 -0.640020829782387 -6.97067954631718 24.1 0.640020829743978 -6.9706795463207 24.1 1.8986608895611 -6.73758761178295 24.1 3.09381179644201 -6.27919808321065 24.1 4.18550900530865 -5.61083900735711 24.1 5.13724735010697 -4.75485958402758 24.1 5.91720173681392 -3.73988283317089 24.1 6.4992913399313 -2.59984847225642 24.1 6.8640517168943 -1.37287800907452 24.1 3.15587885382636 1 6.26889910693748 1 3.33899769224466 1 3.52211653066296 1 3.70523536908126 1 3.88835420749957 1 4.07147304591787 1 4.25459188433617 1 4.43771072275447 1 4.62082956117277 1 4.80394839959107 1 4.98706723800937 1 5.17018607642768 1 5.35330491484598 1 5.53642375326428 1 5.71954259168258 1 5.90266143010088 1 6.08578026851918 1 3.15587885382879 24.1 6.26889910694059 24.1 3.33899769224467 24.1 3.52211653066297 24.1 3.70523536908127 24.1 3.88835420749958 24.1 4.07147304591788 24.1 4.25459188433618 24.1 4.43771072275448 24.1 4.62082956117278 24.1 4.80394839959108 24.1 4.98706723800938 24.1 5.17018607642768 24.1 5.35330491484599 24.1 5.53642375326429 24.1 5.71954259168259 24.1 5.90266143010089 24.1 6.08578026851919 24.1 19 1 3 21 3 4 21 19 3 22 4 5 22 21 4 23 5 6 23 22 5 24 6 7 24 23 6 25 7 8 25 24 7 26 8 9 26 25 8 27 9 10 27 26 9 28 10 11 28 27 10 29 11 12 29 28 11 30 12 13 30 29 12 31 13 14 31 30 13 32 14 15 32 31 14 33 15 16 33 32 15 34 16 17 34 33 16 35 17 18 35 34 17 36 35 18 36 18 2 20 36 2 +36 34 1 2.58126853225349e-014 +14.0007143221609 -0.0999999999830569 0 27.9992856778385 -0.100000000021737 0 14.1359482830981 -1.3728780090367 0 14.5007086600544 -2.59984847222061 0 15.0827982631655 -3.73988283313829 0 15.8627526498668 -4.75485958399927 0 16.8144909946604 -5.61083900733405 0 17.9061882035234 -6.2791980831936 0 19.1013391104018 -6.73758761177249 0 20.3599791702176 -6.97067954631718 0 21.640020829744 -6.9706795463207 0 22.8986608895611 -6.73758761178295 0 24.093811796442 -6.27919808321065 0 25.1855090053087 -5.61083900735711 0 26.137247350107 -4.75485958402758 0 26.9172017368139 -3.73988283317089 0 27.4992913399313 -2.59984847225642 0 27.8640517168943 -1.37287800907452 0 13.0006250244162 -0.100000000017898 0 28.9993749755837 -0.100000000024384 0 13.1529068153998 -1.55664014858985 0 13.5681876454412 -2.96110876642974 0 14.2325491811306 -4.26633442362216 0 15.1237250314155 -5.42857186501087 0 16.211847016227 -6.408868153113 0 17.4604462126594 -7.17436819424 0 18.827675228168 -7.69941589250021 0 20.2677107357205 -7.96641402598566 0 21.732289264273 -7.96641402598625 0 23.1723247718258 -7.69941589250198 0 24.5395537873348 -7.17436819424288 0 25.7881529837678 -6.40886815311689 0 26.8762749685801 -5.42857186501564 0 27.767450818866 -4.26633442362765 0 28.4318123545564 -2.96110876643577 0 28.8470931845989 -1.55664014859622 0 14.0007143221609 -0.0999999999831118 27.9992856778385 -0.100000000021695 14.1359482830981 -1.3728780090367 14.5007086600544 -2.59984847222061 15.0827982631655 -3.73988283313829 15.8627526498668 -4.75485958399927 16.8144909946604 -5.61083900733405 17.9061882035234 -6.2791980831936 19.1013391104018 -6.73758761177249 20.3599791702176 -6.97067954631718 21.640020829744 -6.9706795463207 22.8986608895611 -6.73758761178295 24.093811796442 -6.27919808321065 25.1855090053087 -5.61083900735711 26.137247350107 -4.75485958402758 26.9172017368139 -3.73988283317089 27.4992913399313 -2.59984847225642 27.8640517168943 -1.37287800907452 13.0006250244162 -0.0999999999999996 28.9993749755837 -0.0999999999999996 13.1529068153998 -1.55664014858985 13.5681876454412 -2.96110876642974 14.2325491811306 -4.26633442362216 15.1237250314155 -5.42857186501087 16.211847016227 -6.408868153113 17.4604462126594 -7.17436819424 18.827675228168 -7.69941589250021 20.2677107357205 -7.96641402598566 21.732289264273 -7.96641402598625 23.1723247718258 -7.69941589250198 24.5395537873348 -7.17436819424288 25.7881529837678 -6.40886815311689 26.8762749685801 -5.42857186501564 27.767450818866 -4.26633442362765 28.4318123545564 -2.96110876643577 28.8470931845989 -1.55664014859622 6 24 25 7 25 26 7 6 25 5 23 24 5 24 6 8 26 27 8 7 26 4 22 23 4 23 5 9 27 28 9 8 27 3 21 22 3 22 4 10 9 28 1 19 21 1 21 3 11 28 29 11 10 28 12 29 30 12 11 29 13 30 31 13 12 30 14 31 32 14 13 31 15 14 32 33 15 32 16 15 33 34 16 33 17 16 34 35 17 34 18 17 35 36 18 35 2 18 36 20 2 36 +22 20 1 7.99360577730113e-015 +1 1 0 1 39.9 0 17.0001666671297 39.8999999999764 0 89 1 0 76.9998333328702 39.8999999999571 0 17.5271477576772 34.4008053523556 0 19.0535483832004 29.0914784672771 0 21.5276085514595 24.1520577394944 0 24.8654332921769 19.7500381072721 0 28.9538375215757 16.0346913267884 0 33.6541841298115 13.1320041916219 0 38.8070851423917 11.140406341461 0 44.2378065399745 10.1274325293357 0 49.7621934600061 10.1274325293339 0 55.1929148575896 11.1404063414557 0 60.3458158701711 13.1320041916132 0 65.0461624784088 16.0346913267767 0 69.1345667078099 19.7500381072578 0 72.4723914485302 24.1520577394778 0 74.9464516167925 29.0914784672589 0 76.4728522423191 34.4008053523365 0 89 39.9 0 1 1 1 39.9 17.0001666671297 39.9 89 1 76.9998333328702 39.8999999999571 17.5271477576772 34.4008053523556 19.0535483832004 29.0914784672771 21.5276085514595 24.1520577394944 24.8654332921769 19.7500381072721 28.9538375215757 16.0346913267884 33.6541841298115 13.1320041916219 38.8070851423917 11.140406341461 44.2378065399745 10.1274325293357 49.7621934600061 10.1274325293339 55.1929148575896 11.1404063414557 60.3458158701711 13.1320041916132 65.0461624784088 16.0346913267767 69.1345667078099 19.7500381072578 72.4723914485302 24.1520577394778 74.9464516167925 29.0914784672589 76.4728522423191 34.4008053523365 89 39.9 10 9 1 8 1 9 11 10 1 7 2 1 7 1 8 12 11 1 6 2 7 13 12 1 3 2 6 4 14 13 4 15 14 4 16 15 4 17 16 4 18 17 4 13 1 19 18 4 20 19 4 22 21 20 22 5 21 22 20 4 +18 16 1 0.0344304862658448 +-46 -39 -64.4 -46 -0.0999999999999943 -64.4 -46.8001170884551 -0.100000000000001 -63.9998438503162 -46.1844360897745 -0.100000000000001 -64.3828445089579 -46.3625439961771 -0.100000000000001 -64.3319666575774 -46.5282126620221 -0.100000000000001 -64.2491121149056 -46.6757578326839 -0.100000000000001 -64.1371237016719 -47 -39 -63.4 -46.1709231443984 -39 -64.38528429908 -46.3368159148933 -39 -64.3415705358966 -46.4927957190754 -39 -64.2701450878699 -46.6342718308492 -39 -64.1731100701609 -46.757080551329 -39 -64.0533214797322 -46.8576074816485 -39 -63.9143048567415 -46.9328938568917 -39 -63.7601515140603 -46.9807238903531 -39 -63.59539838571 -46.9951692754691 -39 -63.4981734240171 -47 -6.16765757804369 -63.4 1.5707963267949 1 1.5707963267949 39.9 0.643305935971919 39.9 1.3852982486303 39.9 1.19980017046571 39.9 1.01430209230111 39.9 0.828804014136515 39.9 0 1 1.39902974845988 1 1.22726317012486 1 1.05549659178983 1 0.883730013454811 1 0.711963435119788 1 0.540196856784766 1 0.368430278449743 1 0.196663700114721 1 0.0983318500573604 1 0 33.8323424219563 18 17 16 18 8 17 15 18 16 3 14 13 3 15 14 3 18 15 7 13 12 7 3 13 6 12 11 6 7 12 5 11 10 5 6 11 4 10 9 4 5 10 2 9 1 2 4 9 +38 36 1 2.90658238218592e-011 +182 5.70377078901174e-015 35.6 169.99983333287 -4.28539981278675e-011 35.6 183 5.70377078901174e-015 36.6 182.980785280403 -9.99200722162641e-016 36.4049096779839 182.923879532511 -9.99200722162641e-016 36.2173165676349 182.831469612303 -9.99200722162641e-016 36.0444297669804 182.707106781187 -9.99200722162641e-016 35.8928932188135 182.55557023302 -9.99200722162641e-016 35.7685303876975 182.382683432365 -9.99200722162641e-016 35.6761204674887 182.195090322016 -9.99200722162641e-016 35.6192147195968 169.99983333287 -4.282998955496e-011 35 183 5.70377078901174e-015 99.6 110.00016666713 -2.3591989473104e-011 35 182 5.70377078901174e-015 100.6 182.195090322016 -9.99200722162641e-016 100.580785280403 182.382683432365 -9.99200722162641e-016 100.523879532511 182.55557023302 -9.99200722162641e-016 100.431469612303 182.707106781187 -9.99200722162641e-016 100.307106781187 182.831469612303 -9.99200722162641e-016 100.15557023302 182.923879532511 -9.99200722162641e-016 99.9826834323651 182.980785280403 -9.99200722162641e-016 99.7950903220161 110.00016666713 -2.35909902723819e-011 35.6 175.999861110843 -4.42539893619198e-011 100.6 94 5.70377078901174e-015 35.6 175.999861110843 -4.42539893619198e-011 110 93.1998829115449 -9.99200722162641e-016 36.0001561496838 93.8155639102255 -9.99200722162641e-016 35.6171554910421 93.6374560038229 -9.99200722162641e-016 35.6680333424226 93.4717873379779 -9.99200722162641e-016 35.7508878850944 93.3242421673161 -9.99200722162641e-016 35.8628762983281 179.002501564456 1.3131024045876e-012 110 80 -2.37059954999452e-011 36.0001562503816 179.002501564456 1.31050725826753e-012 101 80 5.70377078901174e-015 30 182.997498435544 -5.14799314288439e-012 101 190 5.70377078901174e-015 30 182.997498435544 -5.13900033638492e-012 110 190 5.70377078901174e-015 110 35.6 182 35.6 169.99983333287 36.6 183 36.4049096779839 182.980785280403 36.2173165676349 182.923879532511 36.0444297669804 182.831469612303 35.8928932188135 182.707106781187 35.7685303876975 182.55557023302 35.6761204674887 182.382683432365 35.6192147195968 182.195090322016 35 169.99983333287 99.6 183 35 110.00016666713 100.6 182 100.580785280403 182.195090322016 100.523879532511 182.382683432365 100.431469612303 182.55557023302 100.307106781187 182.707106781187 100.15557023302 182.831469612303 99.9826834323651 182.923879532511 99.7950903220161 182.980785280403 35.6 110.00016666713 100.6 175.999861110843 35.6 94 110 175.999861110843 36.0001561496838 93.1998829115449 35.6171554910421 93.8155639102255 35.6680333424226 93.6374560038229 35.7508878850944 93.4717873379779 35.8628762983282 93.3242421673161 110 179.002501564456 36.0001562503815 80 101 179.002501564456 30 80 101 182.997498435544 30 190 110 182.997498435544 110 190 31 33 25 38 35 37 38 12 35 14 23 33 36 34 13 36 13 11 38 36 12 26 34 32 26 30 34 29 34 30 28 34 29 27 34 28 24 34 27 13 34 24 22 13 24 1 11 2 36 4 3 36 5 4 36 6 5 36 7 6 36 8 7 36 9 8 36 10 9 36 1 10 36 11 1 12 36 3 35 15 14 35 16 15 35 17 16 35 18 17 35 19 18 35 20 19 35 21 20 35 12 21 35 14 33 25 33 23 +22 20 1 0.00368574009947923 +-46 -39 -64.4 -46 -40 -63.4 -46 -39.1709231443984 -64.38528429908 -46 -39.3368159148933 -64.3415705358966 -46 -39.4927957190755 -64.2701450878699 -46 -39.6342718308494 -64.1731100701609 -46 -39.7570805513292 -64.0533214797322 -46 -39.8576074816488 -63.9143048567415 -46 -39.932893856892 -63.7601515140603 -46 -39.9807238903533 -63.59539838571 -46 -39.9951692754692 -63.4981734240171 42 -39 -64.4 42 -40 -63.4 42 -39.1709231443984 -64.38528429908 42 -39.3368159148933 -64.3415705358966 42 -39.4927957190755 -64.2701450878699 42.0000000000001 -39.6342718308494 -64.1731100701609 42.0000000000001 -39.7570805513292 -64.0533214797322 42.0000000000001 -39.8576074816488 -63.9143048567415 42.0000000000001 -39.932893856892 -63.7601515140603 42 -39.9807238903533 -63.59539838571 42 -39.9951692754692 -63.4981734240171 1.5707963267949 1 0 1 1.39902974845988 1 1.22726317012486 1 1.05549659178983 1 0.883730013454811 1 0.711963435119788 1 0.540196856784766 1 0.368430278449743 1 0.196663700114721 1 0.0983318500573604 1 1.5707963267949 89 0 89 1.39902974845988 89 1.22726317012486 89 1.05549659178983 89 0.883730013454811 89 0.711963435119788 89 0.540196856784766 89 0.368430278449743 89 0.196663700114721 89 0.0983318500573604 89 22 2 11 22 13 2 21 10 9 21 11 10 21 22 11 20 21 9 19 8 7 19 9 8 19 20 9 18 19 7 17 7 6 17 18 7 16 6 5 16 17 6 15 5 4 15 16 5 14 4 3 14 15 4 12 3 1 12 14 3 +36 34 1 0.127432529334802 +-29.9998333328703 -0.100000000023591 0.599999999999994 29.9998333328702 -0.100000000042854 0.599999999999994 -29.4728522423228 -5.59919464764436 0.599999999999994 -27.9464516167996 -10.9085215327229 0.599999999999994 -25.4723914485405 -15.8479422605056 0.599999999999994 -22.1345667078231 -20.2499618927279 0.599999999999994 -18.0461624784244 -23.9653086732116 0.599999999999994 -13.3458158701885 -26.8679958083781 0.599999999999994 -8.19291485760828 -28.859593658539 0.599999999999994 -2.76219346002546 -29.8725674706643 0.599999999999994 2.76219346000608 -29.8725674706661 0.599999999999994 8.19291485758955 -28.8595936585443 0.599999999999994 13.3458158701711 -26.8679958083868 0.599999999999994 18.0461624784088 -23.9653086732233 0.599999999999994 22.1345667078099 -20.2499618927422 0.599999999999994 25.4723914485302 -15.8479422605222 0.599999999999994 27.9464516167925 -10.9085215327411 0.599999999999994 29.4728522423191 -5.59919464766349 0.599999999999994 -29.9998333328703 -0.100000000023592 0 29.9998333328702 -0.10000000004283 0 -29.4728522423228 -5.59919464764428 0 -27.9464516167996 -10.9085215327229 0 -25.4723914485405 -15.8479422605056 0 -22.1345667078231 -20.2499618927279 0 -18.0461624784244 -23.9653086732115 0 -13.3458158701885 -26.8679958083781 0 -8.1929148576083 -28.8595936585389 0 -2.76219346002549 -29.8725674706643 0 2.76219346000606 -29.8725674706661 0 8.19291485758953 -28.8595936585443 0 13.3458158701711 -26.8679958083868 0 18.0461624784088 -23.9653086732233 0 22.1345667078099 -20.2499618927423 0 25.4723914485302 -15.8479422605222 0 27.9464516167925 -10.9085215327411 0 29.4728522423191 -5.59919464766351 0 3.14492599309678 0.599999999999994 6.27985196767195 0.599999999999994 3.32933340336591 0.599999999999994 3.51374081363503 0.599999999999994 3.69814822390416 0.599999999999994 3.88255563417329 0.599999999999994 4.06696304444242 0.599999999999994 4.25137045471154 0.599999999999994 4.43577786498067 0.599999999999994 4.6201852752498 0.599999999999994 4.80459268551893 0.599999999999994 4.98900009578805 0.599999999999994 5.17340750605718 0.599999999999994 5.35781491632631 0.599999999999994 5.54222232659543 0.599999999999994 5.72662973686456 0.599999999999994 5.91103714713369 0.599999999999994 6.09544455740282 0.599999999999994 3.144925993096 0 6.27985196767338 0 3.32933340336591 0 3.51374081363504 0 3.69814822390416 0 3.88255563417329 0 4.06696304444242 0 4.25137045471155 0 4.43577786498067 0 4.6201852752498 0 4.80459268551893 0 4.98900009578806 0 5.17340750605718 0 5.35781491632631 0 5.54222232659544 0 5.72662973686456 0 5.91103714713369 0 6.09544455740282 0 1 19 21 3 1 21 4 21 22 4 3 21 5 22 23 5 4 22 6 23 24 6 5 23 7 24 25 7 6 24 8 25 26 8 7 25 9 26 27 9 8 26 10 27 28 10 9 27 11 28 29 11 10 28 12 29 30 12 11 29 13 30 31 13 12 30 14 31 32 14 13 31 15 32 33 15 14 32 16 33 34 16 15 33 17 34 35 17 16 34 18 17 35 18 35 36 2 18 36 2 36 20 +20 18 1 0.00381667245891033 +42 -39 -64.4 42 -0.0999999999999943 -64.4 43 -0.0999999999999943 -63.4 42.9807852804032 -0.100000000000001 -63.5950903220161 42.9238795325113 -0.100000000000001 -63.7826834323651 42.8314696123025 -0.100000000000001 -63.9555702330196 42.7071067811865 -0.100000000000001 -64.1071067811865 42.5555702330196 -0.100000000000001 -64.2314696123025 42.3826834323651 -0.100000000000001 -64.3238795325113 42.1950903220161 -0.100000000000001 -64.3807852804032 43 -39 -63.4 42.1709231443984 -39 -64.38528429908 42.3368159148933 -39 -64.3415705358966 42.4927957190754 -39 -64.2701450878699 42.6342718308492 -39 -64.1731100701609 42.7570805513291 -39 -64.0533214797322 42.8576074816486 -39 -63.9143048567415 42.9328938568918 -39 -63.7601515140603 42.9807238903532 -39 -63.59539838571 42.9951692754691 -39 -63.4981734240171 1.5707963267949 1 1.5707963267949 39.9 0 39.9 0.196349540849361 39.9 0.392699081698722 39.9 0.589048622548084 39.9 0.785398163397445 39.9 0.981747704246807 39.9 1.17809724509617 39.9 1.37444678594553 39.9 0 1 1.39902974845988 1 1.22726317012486 1 1.05549659178983 1 0.883730013454811 1 0.711963435119788 1 0.540196856784766 1 0.368430278449743 1 0.196663700114721 1 0.0983318500573604 1 3 11 20 4 19 18 4 20 19 4 3 20 5 18 17 5 4 18 6 17 16 6 5 17 7 16 15 7 6 16 8 15 14 8 7 15 9 14 13 9 8 14 10 13 12 10 9 13 2 12 1 2 10 12 +112 191 1 0.0289117192469185 +-46 -39 -64.4 -47 -39 -63.4 -46.1709231443984 -39 -64.38528429908 -46.3368159148933 -39 -64.3415705358966 -46.4927957190754 -39 -64.2701450878699 -46.6342718308492 -39 -64.1731100701609 -46.757080551329 -39 -64.0533214797322 -46.8576074816485 -39 -63.9143048567415 -46.9328938568917 -39 -63.7601515140603 -46.9807238903531 -39 -63.59539838571 -46.9951692754691 -39 -63.4981734240171 -46 -39 -64.4 -46 -40 -63.4 -46 -39.1709231443984 -64.38528429908 -46 -39.3368159148933 -64.3415705358966 -46 -39.4927957190755 -64.2701450878699 -46 -39.6342718308494 -64.1731100701609 -46 -39.7570805513292 -64.0533214797322 -46 -39.8576074816488 -63.9143048567415 -46 -39.932893856892 -63.7601515140603 -46 -39.9807238903533 -63.59539838571 -46 -39.9951692754692 -63.4981734240171 -46.9852842990799 -39.1709231443983 -63.3999999999998 -46.9415705358966 -39.3368159148932 -63.3999999999998 -46.87014508787 -39.4927957190755 -63.4 -46.7731100701611 -39.6342718308493 -63.4000000000001 -46.6533214797325 -39.7570805513292 -63.4000000000003 -46.5143048567418 -39.8576074816488 -63.4000000000004 -46.3601515140607 -39.932893856892 -63.4000000000004 -46.1953983857103 -39.9807238903533 -63.4000000000003 -46.0981734240172 -39.9951692754692 -63.4000000000001 -46.1604247819023 -39.0278046136548 -64.386294858273 -46.1463564617627 -39.0555016708369 -64.3870572736435 -46.3189071920486 -39.0539725665661 -64.3452181775005 -46.1319257090433 -39.0794286606578 -64.3875715451916 -46.2940055783683 -39.1079458144798 -64.3479701370534 -46.11739387078 -39.0989760028094 -64.3878376729171 -46.4704011063584 -39.0788676730338 -64.2770253703376 -46.2664043860602 -39.1561495497133 -64.3498264145552 -46.1014969972044 -39.1152143673898 -64.3878556568201 -46.4371810086806 -39.1581263533222 -64.2822161925508 -46.2364338215462 -39.1971144268008 -64.350787010006 -46.0825210566484 -39.1298444033103 -64.3876254969006 -46.6102719176477 -39.1020993911318 -64.1825126103538 -46.3979337421517 -39.2302636599401 -64.2857175545095 -46.2024899971158 -39.2318096314861 -64.3508519234057 -46.0592439121332 -39.1442564472817 -64.3871471931586 -46.5711400378257 -39.2051449315076 -64.1896063473803 -46.353072355007 -39.2927617424553 -64.2875294562137 -46.1625323753354 -39.2622316980868 -64.3500211547543 -46.0319564876456 -39.158487785374 -64.3864207455941 -46.733923252534 -39.1229368996666 -64.0634531358722 -46.522008767977 -39.3000619822788 -64.1943912812404 -46.3010207041937 -39.3460208412049 -64.2876518976634 -46.01556745328 -39.1656844130063 -64.3858931839464 -46.11536211629 -39.2901319914958 -64.3482947040519 -46.691189137653 -39.2472688790815 -64.0710969536944 -46.463469766806 -39.3831935878396 -64.1968674119341 -46.2399343644946 -39.3918037853977 -64.2860848788585 -46.0619937977329 -39.3155703837461 -64.3456725712983 -46.8368724633184 -39.1405738451719 -63.922960906392 -46.6340616384113 -39.3628204673435 -64.0762529331988 -46.3942136259781 -39.4541344026377 -64.1970347394613 -46.0303522916408 -39.3278724295068 -64.3437683228111 -46.1691266961971 -39.43182110304 -64.2828283997991 -46.7925503568343 -39.2825219104568 -63.9294914543768 -46.5633978329891 -39.4648553872603 -64.0789210743853 -46.3128789022354 -39.5141268318105 -64.194893263822 -46.0905803973111 -39.4660764166761 -64.2778824604851 -46.9150783735973 -39.1543493324295 -63.7656311422997 -46.7293160987929 -39.4154580040859 -63.933896500696 -46.4784117925331 -39.5519902085797 -64.0791013772538 -46.0444229817646 -39.4818099139508 -64.2742906143271 -46.2195405550032 -39.5645891614247 -64.1904429850163 -46.8706773745553 -39.3092169909975 -63.769765242334 -46.6483198393635 -39.5338157539389 -63.9361760453495 -46.3785092872543 -39.6246685802034 -64.0767938418045 -46.1172680137089 -39.6053454540947 -64.183683903044 -46.9652801291308 -39.1640252977882 -63.5973748639805 -46.8031361714519 -39.4552225036937 -63.7725538141632 -46.5495856629596 -39.6351074010967 -63.9363300883372 -46.0575450688552 -39.6229276630467 -64.178775314185 -46.2647219420822 -39.683747951412 -64.0719984680372 -46.9215613794418 -39.3266216475798 -63.5988660160312 -46.9804572453103 -39.1679032659405 -63.4987225620156 -46.7138681604226 -39.5864145675275 -63.7739968577871 -46.4336030906876 -39.7186725510284 -63.9343586296592 -46.1411889318487 -39.7287506921306 -64.0647152559519 -46.8513728451096 -39.48053304647 -63.5998718418621 -46.9370162817523 -39.332745897803 -63.4991368586285 -46.6039639062655 -39.6991852558045 -63.7740943732059 -46.0693559080257 -39.7467604049237 -64.0594260326748 -46.3025238280229 -39.784504418967 -63.9302616693155 -46.7563694160601 -39.6200323067682 -63.600392341473 -46.8659909458069 -39.4886471572704 -63.4994163138556 -46.4752634886707 -39.7915202157911 -63.7728463604193 -46.1613762211626 -39.8317411060222 -63.9240392073059 -46.6387770206895 -39.7406610188722 -63.600427514864 -46.7692130801264 -39.6303253196901 -63.4995609276968 -46.0794748833115 -39.8490987132917 -63.919520323259 -46.3311014092338 -39.8622755579934 -63.7702528194276 -46.5017648071801 -39.8390960935919 -63.5999773620351 -46.6493992333677 -39.7531978520264 -63.4995707001522 -46.1770333580285 -39.9101721382801 -63.7663137502304 -46.0875934942848 -39.926277832047 -63.7634531145323 -46.3496194283133 -39.9129916093757 -63.5990418829861 -46.5101810669927 -39.853505010744 -63.4994456312217 -46.1878727043286 -39.9606446898882 -63.5976210777171 -46.3560292979802 -39.9283963061496 -63.4991857209053 -46.0935878290111 -39.975479103843 -63.5965892587595 -46.1921317309247 -39.9759192797138 -63.4987909692029 -46.096132308019 -39.9903136613553 -63.4985042921339 0 0 0 1 0 0.10935 0 0.2187 0 0.32805 0 0.4374 0 0.54675 0 0.6561 0 0.76545 0 0.8748 0 0.9374 1 0 1 1 1 0.10935 1 0.2187 1 0.32805 1 0.4374 1 0.54675 1 0.6561 1 0.76545 1 0.8748 1 0.9374 0.10935 1 0.2187 1 0.32805 1 0.4374 1 0.54675 1 0.6561 1 0.76545 1 0.8748 1 0.9374 1 0.10935 0.10935 0.2187 0.10935 0.10935 0.2187 0.32805 0.10935 0.2187 0.2187 0.4374 0.10935 0.10935 0.32805 0.32805 0.2187 0.54675 0.10935 0.2187 0.32805 0.4374 0.2187 0.6561 0.10935 0.10935 0.4374 0.32805 0.32805 0.54675 0.2187 0.76545 0.10935 0.2187 0.4374 0.4374 0.32805 0.6561 0.2187 0.8748 0.10935 0.10935 0.54675 0.32805 0.4374 0.54675 0.32805 0.9374 0.10935 0.76545 0.2187 0.2187 0.54675 0.4374 0.4374 0.6561 0.32805 0.8748 0.2187 0.10935 0.6561 0.32805 0.54675 0.54675 0.4374 0.9374 0.2187 0.76545 0.32805 0.2187 0.6561 0.4374 0.54675 0.6561 0.4374 0.8748 0.32805 0.10935 0.76545 0.32805 0.6561 0.54675 0.54675 0.9374 0.32805 0.76545 0.4374 0.2187 0.76545 0.4374 0.6561 0.6561 0.54675 0.8748 0.4374 0.10935 0.8748 0.32805 0.76545 0.54675 0.6561 0.9374 0.4374 0.76545 0.54675 0.2187 0.8748 0.10935 0.9374 0.4374 0.76545 0.6561 0.6561 0.8748 0.54675 0.32805 0.8748 0.2187 0.9374 0.54675 0.76545 0.9374 0.54675 0.76545 0.6561 0.4374 0.8748 0.32805 0.9374 0.6561 0.76545 0.8748 0.6561 0.54675 0.8748 0.4374 0.9374 0.9374 0.6561 0.76545 0.76545 0.6561 0.8748 0.54675 0.9374 0.8748 0.76545 0.9374 0.76545 0.76545 0.8748 0.6561 0.9374 0.8748 0.8748 0.76545 0.9374 0.9374 0.8748 0.8748 0.9374 0.9374 0.9374 62 57 53 90 24 85 90 84 89 36 32 33 90 85 84 36 34 32 63 58 49 63 49 54 91 86 81 64 14 15 92 82 18 64 55 14 37 35 1 64 51 55 38 5 4 92 88 82 64 60 51 38 4 34 65 50 56 38 34 36 93 83 88 93 87 83 94 80 86 65 59 50 94 89 80 39 33 35 66 61 57 39 36 33 66 57 62 40 1 12 95 26 25 95 89 94 95 90 89 95 25 90 40 37 1 67 58 63 67 62 58 96 91 81 96 87 93 41 38 36 68 54 59 96 81 87 68 63 54 42 35 37 97 88 92 97 93 88 69 56 60 42 39 35 98 94 86 69 60 64 69 65 56 70 9 8 98 86 91 43 40 12 44 6 5 99 26 95 70 8 61 99 27 26 70 61 66 99 94 98 99 95 94 44 5 38 100 18 19 100 92 18 71 66 62 100 97 92 71 62 67 45 41 36 101 96 93 45 36 39 101 93 97 72 67 63 72 63 68 46 37 40 73 15 16 46 42 37 102 98 91 73 64 15 102 91 96 73 69 64 47 43 12 103 28 27 74 59 65 103 27 99 103 99 98 74 68 59 48 38 41 104 97 100 48 44 38 104 101 97 105 19 20 75 70 66 75 66 71 23 2 11 105 104 100 105 100 19 49 39 42 49 45 39 106 96 101 76 67 72 76 71 67 106 102 96 50 40 43 50 46 40 77 72 68 107 29 28 107 28 103 77 68 74 107 98 102 107 103 98 107 102 106 51 47 12 78 65 69 52 7 6 78 74 65 108 106 101 79 10 9 108 101 104 79 11 10 52 44 48 109 30 29 79 9 70 52 6 44 109 29 107 53 48 41 109 107 106 109 106 108 110 104 105 110 20 21 110 108 104 80 75 71 53 41 45 110 105 20 54 42 46 80 71 76 111 109 108 111 30 109 111 108 110 54 49 42 112 21 22 112 22 13 81 76 72 55 12 14 112 31 30 112 13 31 82 78 69 55 51 12 112 30 111 82 16 17 112 110 21 82 17 18 56 43 47 112 111 110 82 69 73 82 73 16 56 50 43 83 77 74 57 48 53 83 74 78 84 79 70 57 52 48 84 70 75 85 24 23 85 79 84 58 53 45 85 23 11 32 3 1 85 11 79 58 45 49 86 80 76 59 46 50 86 76 81 59 54 46 87 81 72 33 32 1 87 77 83 60 56 47 34 4 3 87 72 77 60 47 51 61 7 52 61 8 7 88 83 78 34 3 32 88 78 82 61 52 57 89 84 75 62 53 58 35 33 1 89 75 80 90 25 24 +36 34 1 0.145550864157407 +-31.4 -6.16765757804369 8 -31.9998438503162 -0.100000000000001 7.8001170884551 -31.9998437496184 -0.100000000023706 21 31.6 -5.04380808516743 8 -29.7183317279813 -11.8667922921764 8 -27.0119572490174 -17.1567527690194 8 -23.3741940061027 -21.8551379443158 8 -18.930474294984 -25.799944631083 8 -13.8340202820868 -28.8551534883253 8 -8.26056081074687 -30.9154190508871 8 -2.40227216349287 -31.9097021053552 8 3.5388482934076 -31.8037191654726 8 9.3579471023608 -30.6011245876588 8 14.8543781866306 -28.3433845665713 8 19.8386212494638 -25.108347355418 8 24.1388165495344 -21.0075590106972 8 27.6066907296637 -16.1824172161238 8 30.1226693726264 -10.799295804238 8 31.9998437496184 -0.100000000043331 21 -31.4388064143385 -5.96669516916596 21 -29.8114017582991 -11.6310070589472 21 -27.1728294325297 -16.9008088750405 21 -23.6125867056154 -21.5973551406137 21 -19.2514328216547 -25.5613445325812 21 -14.2372929887921 -28.6583231950387 21 -8.74024093021601 -30.7832452558494 21 -2.94673018358694 -31.8640358590235 21 2.94673018356716 -31.8640358590254 21 8.74024093019694 -30.7832452558549 21 14.2372929887744 -28.6583231950475 21 19.2514328216388 -25.5613445325931 21 23.612586705602 -21.5973551406284 21 27.1728294325192 -16.9008088750573 21 29.8114017582919 -11.6310070589657 21 31.4388064143348 -5.96669516918545 21 31.9998437496185 -0.100000000000158 7.9165832942695 3.33554568138913 8 3.14471765848974 7.80011699239055 3.14471765867608 21 6.12490625725476 8 3.5215030531135 8 3.70746042483788 8 3.89341779656225 8 4.07937516828663 8 4.265332540011 8 4.45128991173538 8 4.63724728345976 8 4.82320465518413 8 5.00916202690851 8 5.19511939863288 8 5.38107677035726 8 5.56703414208163 8 5.75299151380601 8 5.93894888553038 8 6.28006030209195 21 3.32914957887771 21 3.5135814990786 21 3.69801341927949 21 3.88244533948038 21 4.06687725968127 21 4.25130917988216 21 4.43574110008305 21 4.62017302028394 21 4.80460494048483 21 4.98903686068572 21 5.17346878088661 21 5.3579007010875 21 5.54233262128839 21 5.72676454148928 21 5.91119646169017 21 6.09562838189106 21 6.2800603020933 7.91658329426948 3 2 1 20 3 1 21 1 5 21 20 1 22 5 6 22 21 5 23 6 7 23 22 6 24 7 8 24 23 7 25 8 9 25 24 8 26 9 10 26 25 9 27 10 11 27 26 10 28 11 12 28 27 11 29 12 13 29 28 12 30 13 14 30 29 13 31 14 15 31 30 14 32 15 16 32 31 15 33 16 17 33 32 16 34 17 18 34 33 17 35 34 18 35 18 4 19 35 4 19 4 36 +18 16 1 1.06581410364015e-014 +0 1 1.00000000000001 0 33.8323424219563 1.00000000000001 0 34.9561919148326 64 0 28.1332077078236 2.68166827201868 0 22.8432472309806 5.38804275098256 0 18.1448620556842 9.02580599389734 0 14.200055368917 13.469525705016 0 11.1448465116747 18.5659797179132 0 9.0845809491129 24.1394391892531 0 8.09029789464484 29.9977278365071 0 8.19628083452745 35.9388482934076 0 9.39887541234118 41.7579471023608 0 11.6566154334287 47.2543781866306 0 14.891652644582 52.2386212494638 0 18.9924409893028 56.5388165495344 0 23.8175827838762 60.0066907296637 0 29.200704195762 62.5226693726265 0 1 64 1 -1 1 -33.8323424219563 64 -34.9561919148325 2.68166827201867 -28.1332077078236 5.38804275098256 -22.8432472309806 9.02580599389733 -18.1448620556842 13.469525705016 -14.200055368917 18.5659797179132 -11.1448465116747 24.1394391892531 -9.0845809491129 29.9977278365071 -8.09029789464484 35.9388482934076 -8.19628083452745 41.7579471023608 -9.39887541234118 47.2543781866306 -11.6566154334287 52.2386212494637 -14.891652644582 56.5388165495344 -18.9924409893028 60.0066907296637 -23.8175827838762 62.5226693726264 -29.200704195762 64 -1 1 2 4 1 4 5 1 5 6 1 6 7 8 1 7 9 1 8 10 1 9 18 11 12 18 12 13 18 13 14 18 14 15 18 15 16 18 16 17 18 17 3 18 1 10 18 10 11 +4 2 1 0 +90 1 1.00000000000001 90 39.9 1.00000000000001 90 39.9 64 90 1 64 1 -1 1 -39.9 64 -39.9 64 -1 3 1 2 4 1 3 +18 16 1 6.75015598972095e-014 +-29.9998333328703 -0.100000000023592 0 29.9998333328702 -0.10000000004283 0 -29.4728522423228 -5.59919464764428 0 -27.9464516167996 -10.9085215327229 0 -25.4723914485405 -15.8479422605056 0 -22.1345667078231 -20.2499618927279 0 -18.0461624784244 -23.9653086732115 0 -13.3458158701885 -26.8679958083781 0 -8.1929148576083 -28.8595936585389 0 -2.76219346002549 -29.8725674706643 0 2.76219346000606 -29.8725674706661 0 8.19291485758953 -28.8595936585443 0 13.3458158701711 -26.8679958083868 0 18.0461624784088 -23.9653086732233 0 22.1345667078099 -20.2499618927423 0 25.4723914485302 -15.8479422605222 0 27.9464516167925 -10.9085215327411 0 29.4728522423191 -5.59919464766351 0 -29.9998333328703 -0.100000000023496 29.9998333328702 -0.100000000042971 -29.4728522423228 -5.59919464764429 -27.9464516167996 -10.9085215327229 -25.4723914485405 -15.8479422605056 -22.1345667078231 -20.2499618927279 -18.0461624784244 -23.9653086732115 -13.3458158701885 -26.8679958083781 -8.1929148576083 -28.8595936585389 -2.76219346002549 -29.8725674706643 2.76219346000606 -29.8725674706661 8.19291485758953 -28.8595936585443 13.3458158701711 -26.8679958083868 18.0461624784088 -23.9653086732233 22.1345667078099 -20.2499618927423 25.4723914485302 -15.8479422605222 27.9464516167925 -10.9085215327411 29.4728522423191 -5.59919464766351 5 6 7 4 5 7 1 3 4 1 4 7 11 8 9 11 9 10 15 7 8 15 11 12 15 12 13 15 13 14 15 8 11 17 15 16 2 17 18 2 1 7 2 7 15 2 15 17 +20 18 1 0.00381667245890393 +43 -39 -0.400000000000006 43 -0.0999999999999943 -0.400000000000006 42 -0.0999999999999943 0.599999999999994 42.1950903220161 -0.100000000000001 0.580785280403223 42.3826834323651 -0.100000000000001 0.523879532511278 42.5555702330196 -0.100000000000001 0.431469612302536 42.7071067811866 -0.100000000000001 0.307106781186538 42.8314696123025 -0.100000000000001 0.155570233019592 42.9238795325113 -0.100000000000001 -0.0173165676349203 42.9807852804032 -0.100000000000001 -0.204909677983882 42 -39 0.599999999999994 42.1709231443984 -39 0.585284299079908 42.3368159148933 -39 0.54157053589661 42.4927957190754 -39 0.470145087869938 42.6342718308492 -39 0.373110070161005 42.7570805513291 -39 0.253321479732373 42.8576074816486 -39 0.114304856741682 42.9328938568918 -39 -0.0398484859395009 42.9807238903531 -39 -0.204601614289848 42.9951692754691 -39 -0.301826575982866 0 1 0 39.9 1.57079632679489 39.9 1.37444678594553 39.9 1.17809724509617 39.9 0.981747704246808 39.9 0.785398163397447 39.9 0.589048622548085 39.9 0.392699081698723 39.9 0.196349540849362 39.9 1.5707963267949 1 1.39902974845988 1 1.22726317012486 1 1.05549659178983 1 0.883730013454811 1 0.711963435119788 1 0.540196856784766 1 0.368430278449743 1 0.196663700114721 1 0.0983318500573604 1 2 1 20 10 19 18 10 20 19 10 2 20 9 18 17 9 10 18 8 17 16 8 9 17 7 16 15 7 8 16 6 15 14 6 7 15 5 14 13 5 6 14 4 13 12 4 5 13 3 12 11 3 4 12 +22 20 1 6.22616398118667e-015 +1 1 65 1 39.9 65 11.0001388891567 39.900000000024 65 89 1 65 82.9998611108431 39.8999999999557 65 11.6292878993047 33.2983042825169 65 13.4586998532994 26.9240226189801 65 16.4262958376273 20.9934586578275 65 20.4313740207233 15.7078590162723 65 25.3380268495619 11.2465842163109 65 30.9797529104309 7.76102229925471 65 37.1651069558916 5.36945165304267 65 43.6841963709976 4.15302737616614 65 50.3158036289344 4.15302737615985 65 56.8348930440426 5.369451653024 65 63.0202470895079 7.76102229922429 65 68.6619731503835 11.2465842162698 65 73.5686259792306 15.7078590162219 65 77.5737041623367 20.9934586577695 65 80.5413001466758 26.9240226189164 65 82.3707121006825 33.2983042824498 65 89 39.9 65 1 1 1 39.9 11.0001388891567 39.9 89 1 82.9998611108431 39.8999999999558 11.6292878993047 33.2983042825169 13.4586998532994 26.9240226189801 16.4262958376273 20.9934586578275 20.4313740207233 15.7078590162723 25.3380268495619 11.2465842163109 30.9797529104309 7.76102229925471 37.1651069558916 5.36945165304267 43.6841963709976 4.15302737616614 50.3158036289344 4.15302737615985 56.8348930440426 5.369451653024 63.0202470895079 7.76102229922429 68.6619731503835 11.2465842162698 73.5686259792306 15.7078590162219 77.5737041623367 20.9934586577695 80.5413001466758 26.9240226189164 82.3707121006825 33.2983042824498 89 39.9 10 9 1 8 1 9 11 10 1 7 1 8 2 1 7 12 11 1 6 2 7 13 12 1 3 2 6 4 14 13 4 15 14 4 16 15 4 17 16 4 18 17 4 13 1 19 18 4 20 19 4 22 21 20 22 5 21 22 20 4 +36 34 1 0.153027376162997 +-35.9998611108433 -0.0999999999760206 0.499999999999994 35.9998611108431 -0.100000000044254 0.499999999999994 -35.3707121006953 -6.70169571748306 0.499999999999994 -33.5413001467006 -13.0759773810199 0.499999999999994 -30.5737041623727 -19.0065413421725 0.499999999999994 -26.5686259792767 -24.2921409837277 0.499999999999994 -21.6619731504381 -28.7534157836891 0.499999999999994 -16.0202470895691 -32.2389777007453 0.499999999999994 -9.83489304410836 -34.6305483469573 0.499999999999994 -3.31580362900245 -35.8469726238339 0.499999999999994 3.31580362893439 -35.8469726238402 0.499999999999994 9.83489304404262 -34.630548346976 0.499999999999994 16.0202470895079 -32.2389777007757 0.499999999999994 21.6619731503835 -28.7534157837302 0.499999999999994 26.5686259792306 -24.2921409837782 0.499999999999994 30.5737041623367 -19.0065413422305 0.499999999999994 33.5413001466758 -13.0759773810836 0.499999999999994 35.3707121006825 -6.70169571755021 0.499999999999994 -35.9998611108433 -0.0999999999760206 9.9 35.9998611108431 -0.100000000044254 9.9 -35.3707121006953 -6.70169571748306 9.90000000000001 -33.5413001467006 -13.0759773810199 9.90000000000001 -30.5737041623727 -19.0065413421725 9.90000000000001 -26.5686259792767 -24.2921409837277 9.90000000000001 -21.6619731504381 -28.7534157836891 9.90000000000001 -16.0202470895691 -32.2389777007453 9.90000000000001 -9.83489304410836 -34.6305483469573 9.90000000000001 -3.31580362900245 -35.8469726238339 9.90000000000001 3.31580362893439 -35.8469726238402 9.90000000000001 9.83489304404262 -34.630548346976 9.90000000000001 16.0202470895079 -32.2389777007757 9.90000000000001 21.6619731503835 -28.7534157837302 9.90000000000001 26.5686259792306 -24.2921409837782 9.90000000000001 30.5737041623367 -19.0065413422305 9.90000000000001 33.5413001466758 -13.0759773810836 9.90000000000001 35.3707121006825 -6.70169571755021 9.90000000000001 3.14437043493916 0.499999999999994 6.28040752582832 0.499999999999994 3.32884320499146 0.499999999999994 3.51331597504377 0.499999999999994 3.69778874509607 0.499999999999994 3.88226151514837 0.499999999999994 4.06673428520068 0.499999999999994 4.25120705525298 0.499999999999994 4.43567982530528 0.499999999999994 4.62015259535759 0.499999999999994 4.80462536540989 0.499999999999994 4.98909813546219 0.499999999999994 5.1735709055145 0.499999999999994 5.3580436755668 0.499999999999994 5.5425164456191 0.499999999999994 5.7269892156714 0.499999999999994 5.91146198572371 0.499999999999994 6.09593475577601 0.499999999999994 3.14437043493983 9.90000000000001 6.28040752582955 9.90000000000001 3.32884320499146 9.90000000000001 3.51331597504377 9.90000000000001 3.69778874509607 9.90000000000001 3.88226151514837 9.90000000000001 4.06673428520068 9.90000000000001 4.25120705525298 9.90000000000001 4.43567982530528 9.90000000000001 4.62015259535759 9.90000000000001 4.80462536540989 9.90000000000001 4.98909813546219 9.90000000000001 5.1735709055145 9.90000000000001 5.3580436755668 9.90000000000001 5.5425164456191 9.90000000000001 5.7269892156714 9.90000000000001 5.91146198572371 9.90000000000001 6.09593475577601 9.90000000000001 19 1 3 21 19 3 22 3 4 22 21 3 23 4 5 23 22 4 24 5 6 24 23 5 25 6 7 25 24 6 26 7 8 26 8 9 26 25 7 27 26 9 28 9 10 28 10 11 28 27 9 29 28 11 30 11 12 30 12 13 30 29 11 31 30 13 32 13 14 32 31 13 33 14 15 33 32 14 34 15 16 34 33 15 35 16 17 35 17 18 35 34 16 36 35 18 36 18 2 20 36 2 +94 94 1 1.1908141139827e-011 +60 7 80 59.6527036446661 7.03038449397558 80 59.3159597133487 7.12061475842818 80 59 7.26794919243112 80 58.7144247806269 7.46791111376204 80 58.4679111137621 7.71442478062692 80 58.2679491924311 7.99999999999999 80 58.1206147584282 8.31595971334866 80 58.0303844939756 8.65270364466613 80 58 8.99999999999999 80 58.0303844939756 9.34729635533385 80 58.1206147584282 9.68404028665133 80 58.2679491924311 9.99999999999999 80 58.467911113762 10.2855752193731 80 58.7144247806269 10.532088886238 80 59 10.7320508075689 80 59.3159597133487 10.8793852415718 80 59.6527036446661 10.9696155060244 80 60 11 80 60.3472963553339 10.9696155060244 80 60.6840402866513 10.8793852415718 80 61 10.7320508075689 80 61.2855752193731 10.532088886238 80 61.532088886238 10.2855752193731 80 61.7320508075689 10 80 61.8793852415718 9.68404028665135 80 61.9696155060244 9.34729635533387 80 62 9.00000000000001 80 61.9696155060244 8.65270364466615 80 61.8793852415718 8.31595971334868 80 61.7320508075689 8.00000000000001 80 61.532088886238 7.71442478062693 80 61.2855752193731 7.46791111376205 80 61 7.26794919243113 80 60.6840402866514 7.12061475842819 80 60.3472963553339 7.03038449397559 80 0 0 80 0 49.9 80 17.0025015644562 49.8999999999987 80 110 0 80 20.9974984355441 49.9000000000052 80 20.9478169971984 49.5461179168276 80 20.835951124261 49.206726106994 80 20.6654721563744 48.892659719715 80 20.4418226675808 48.6139453851849 80 20.1721427110923 48.3794811124726 80 19.8650418717103 48.1967522188596 80 19.5303244031645 48.0715923596376 80 19.1786762254154 48.0079972875341 80 18.821323774591 48.0079972875336 80 18.4696755968416 48.0715923596359 80 18.1349581282954 48.1967522188568 80 17.8278572889128 48.3794811124688 80 17.5581773324236 48.6139453851803 80 17.3345278436291 48.8926597197097 80 17.1640488757416 49.2067261069882 80 17.052183002803 49.5461179168214 80 110 49.9 80 24.0001388891567 49.900000000024 80 102.997498435544 49.8999999999949 80 95.9998611108431 49.8999999999557 80 24.6292878993047 43.2983042825169 80 26.4586998532994 36.9240226189801 80 29.4262958376273 30.9934586578275 80 33.4313740207233 25.7078590162723 80 38.3380268495619 21.2465842163109 80 43.9797529104309 17.7610222992547 80 50.1651069558916 15.3694516530427 80 56.6841963709976 14.1530273761661 80 63.3158036289344 14.1530273761598 80 69.8348930440426 15.369451653024 80 76.0202470895079 17.7610222992243 80 81.6619731503835 21.2465842162698 80 86.5686259792306 25.7078590162219 80 90.5737041623367 30.9934586577695 80 93.5413001466758 36.9240226189164 80 95.3707121006825 43.2983042824498 80 99.0025015644561 49.9000000000013 80 102.947816997196 49.546117916818 80 102.835951124257 49.2067261069854 80 102.665472156369 48.8926597197076 80 102.441822667575 48.6139453851788 80 102.172142711086 48.3794811124679 80 101.865041871704 48.1967522188563 80 101.530324403158 48.0715923596357 80 101.178676225409 48.0079972875335 80 100.821323774585 48.0079972875341 80 100.469675596836 48.0715923596374 80 100.134958128291 48.1967522188591 80 99.8278572889089 48.3794811124717 80 99.5581773324206 48.6139453851835 80 99.334527843627 48.892659719713 80 99.1640488757402 49.2067261069913 80 99.0521830028023 49.5461179168243 80 60 7 59.6527036446661 7.03038449397558 59.3159597133487 7.12061475842818 59 7.26794919243112 58.7144247806269 7.46791111376204 58.4679111137621 7.71442478062692 58.2679491924311 8 58.1206147584282 8.31595971334866 58.0303844939756 8.65270364466613 58 8.99999999999999 58.0303844939756 9.34729635533385 58.1206147584282 9.68404028665133 58.2679491924311 9.99999999999999 58.467911113762 10.2855752193731 58.7144247806269 10.532088886238 59 10.7320508075689 59.3159597133487 10.8793852415718 59.6527036446661 10.9696155060244 60 11 60.3472963553339 10.9696155060244 60.6840402866513 10.8793852415718 61 10.7320508075689 61.2855752193731 10.532088886238 61.532088886238 10.2855752193731 61.7320508075689 10 61.8793852415718 9.68404028665135 61.9696155060244 9.34729635533387 62 9.00000000000001 61.9696155060244 8.65270364466615 61.8793852415718 8.31595971334867 61.7320508075689 8.00000000000001 61.532088886238 7.71442478062693 61.2855752193731 7.46791111376205 61 7.26794919243113 60.6840402866514 7.12061475842819 60.3472963553339 7.03038449397559 0 0 0 49.9 17.0025015644562 49.9 110 0 20.9974984355441 49.9000000000051 20.9478169971984 49.5461179168276 20.835951124261 49.206726106994 20.6654721563744 48.892659719715 20.4418226675808 48.6139453851849 20.1721427110923 48.3794811124726 19.8650418717103 48.1967522188596 19.5303244031645 48.0715923596376 19.1786762254153 48.0079972875341 18.821323774591 48.0079972875336 18.4696755968416 48.0715923596359 18.1349581282954 48.1967522188568 17.8278572889128 48.3794811124688 17.5581773324236 48.6139453851803 17.3345278436291 48.8926597197097 17.1640488757416 49.2067261069882 17.052183002803 49.5461179168214 110 49.9 24.0001388891567 49.9 102.997498435544 49.9 95.9998611108431 49.8999999999558 24.6292878993047 43.2983042825169 26.4586998532994 36.9240226189801 29.4262958376273 30.9934586578275 33.4313740207233 25.7078590162723 38.3380268495619 21.2465842163109 43.9797529104309 17.7610222992547 50.1651069558916 15.3694516530427 56.6841963709976 14.1530273761661 63.3158036289344 14.1530273761598 69.8348930440426 15.369451653024 76.0202470895079 17.7610222992243 81.6619731503835 21.2465842162698 86.5686259792306 25.7078590162219 90.5737041623367 30.9934586577695 93.5413001466758 36.9240226189164 95.3707121006825 43.2983042824498 99.0025015644561 49.9000000000013 102.947816997196 49.546117916818 102.835951124257 49.2067261069854 102.665472156369 48.8926597197076 102.441822667575 48.6139453851788 102.172142711086 48.3794811124679 101.865041871704 48.1967522188563 101.530324403158 48.0715923596357 101.178676225409 48.0079972875335 100.821323774585 48.0079972875341 100.469675596836 48.0715923596374 100.134958128291 48.1967522188591 99.8278572889089 48.3794811124717 99.5581773324206 48.6139453851835 99.334527843627 48.892659719713 99.1640488757402 49.2067261069913 99.0521830028023 49.5461179168243 74 73 40 75 74 40 45 46 62 76 75 40 66 65 37 64 37 65 67 66 37 63 37 64 63 38 37 91 61 77 90 91 77 92 61 91 6 67 37 89 90 77 5 6 37 93 61 92 53 38 63 53 54 38 55 38 54 88 89 77 7 67 6 94 61 93 7 68 67 69 11 12 69 12 13 4 5 37 69 13 14 87 88 77 69 14 15 69 15 16 69 16 17 52 53 63 69 17 18 69 68 11 56 38 55 78 61 94 86 87 77 3 4 37 19 69 18 8 68 7 85 86 77 51 52 63 85 77 76 57 38 56 84 85 76 9 68 8 2 3 37 39 38 57 10 68 9 1 2 37 59 41 42 59 42 43 59 43 44 59 44 45 58 76 40 59 45 62 58 84 76 58 60 79 70 69 19 58 79 80 58 80 81 70 19 20 58 81 82 70 20 21 11 68 10 58 82 83 70 21 22 70 22 23 58 83 84 70 23 24 70 24 25 70 25 26 70 26 27 71 70 27 71 27 28 71 28 29 71 29 30 71 30 31 62 51 63 62 48 49 72 71 31 62 49 50 62 50 51 72 31 32 47 48 62 40 32 33 40 33 34 40 34 35 40 35 36 46 47 62 40 36 1 40 1 37 40 73 72 40 72 32 +42 40 1 0.00630255627678917 +1.9974984355436 0.100000000005139 9 -1.9974984355439 0.0999999999986869 9 1.94781699719619 0.45388208318198 9 1.83595112425726 0.793273893014588 9 1.66547215636945 1.10734028029242 9 1.44182266757495 1.38605461482117 9 1.17214271108584 1.62051888753212 9 0.865041871703511 1.8032477811437 9 0.530324403157692 1.92840764036431 9 0.178676225408729 1.99200271246645 9 -0.178676225415167 1.99200271246587 9 -0.530324403163924 1.92840764036259 9 -0.865041871709337 1.80324778114091 9 -1.17214271109108 1.62051888752833 9 -1.44182266757943 1.38605461481651 9 -1.66547215637303 1.10734028028704 9 -1.83595112425982 0.793273893008653 9 -1.94781699719766 0.453882083175682 9 1.9974984355436 0.100000000005148 18 -1.9974984355439 0.0999999999986895 18 1.96687234926512 0.362509533248824 18 1.90190014196092 0.618688815163983 18 1.8037163780048 0.864064365494399 18 1.67403557203766 1.09435136201886 18 1.51512224959321 1.30552846341533 18 1.32975140326685 1.49390803114176 18 1.12116003495397 1.65620052409786 18 0.892990630341899 1.78957194158871 18 0.649227552720966 1.89169331150373 18 0.394127466825282 1.96078135953346 18 0.132145007663112 1.995629649246 18 -0.132145007669564 1.99562964924557 18 -0.39412746683162 1.96078135953219 18 -0.649227552727083 1.89169331150163 18 -0.892990630347683 1.78957194158582 18 -1.12116003495932 1.65620052409423 18 -1.32975140327168 1.49390803113746 18 -1.51512224959743 1.30552846341043 18 -1.6740355720412 1.09435136201345 18 -1.80371637800759 0.864064365488567 18 -1.90190014196293 0.618688815157833 18 -1.9668723492663 0.362509533242464 18 0.0500208568083398 9 3.09157179678468 9 0.228935617983419 9 0.407850379158497 9 0.586765140333576 9 0.765679901508655 9 0.944594662683734 9 1.12350942385881 9 1.30242418503389 9 1.48133894620897 9 1.66025370738405 9 1.83916846855913 9 2.01808322973421 9 2.19699799090928 9 2.37591275208436 9 2.55482751325944 9 2.73374227443452 9 2.9126570356096 9 0.05002085680577 18 3.09157179678402 18 0.18226220202471 18 0.314503547241072 18 0.446744892457434 18 0.578986237673797 18 0.711227582890159 18 0.843468928106521 18 0.975710273322884 18 1.10795161853925 18 1.24019296375561 18 1.37243430897197 18 1.50467565418833 18 1.63691699940469 18 1.76915834462106 18 1.90139968983742 18 2.03364103505378 18 2.16588238027014 18 2.29812372548651 18 2.43036507070287 18 2.56260641591923 18 2.69484776113559 18 2.82708910635195 18 2.95933045156832 18 21 1 3 21 19 1 22 3 4 22 21 3 23 4 5 23 22 4 24 23 5 25 5 6 25 24 5 26 6 7 26 25 6 27 7 8 27 26 7 28 27 8 29 8 9 29 28 8 30 9 10 30 29 9 31 10 11 31 30 10 32 31 11 33 11 12 33 32 11 34 12 13 34 33 12 35 34 13 36 35 13 36 13 14 37 36 14 37 14 15 38 37 15 38 15 16 39 38 16 40 16 17 40 39 16 41 40 17 41 17 18 42 18 2 42 41 18 20 42 2 +22 20 1 7.105427357601e-015 +0 49.8999999999763 6.0001562503816 0 49.8999999999567 69.9998437496184 0 44.033304830834 6.5611935856615 0 38.3689929410528 8.18859824170089 0 33.0991911249595 10.8271705674703 0 28.4026448593863 14.3874132943846 0 24.4386554674188 18.7485671783453 0 21.3416768049613 23.7627070112079 0 19.2167547441506 29.259759069784 0 18.1359641409765 35.0532698164131 0 18.1359641409746 40.9467301835672 0 19.2167547441451 46.7402409301969 0 21.3416768049525 52.2372929887744 0 24.4386554674069 57.2514328216388 0 28.4026448593716 61.612586705602 0 33.0991911249427 65.1728294325192 0 38.3689929410343 67.8114017582919 0 44.0333048308146 69.4388064143348 0 49.9 0 0 49.9 80 0 0 0 0 0 80 6.00015625038155 -49.8999999999764 69.9998437496184 -49.8999999999567 6.5611935856615 -44.033304830834 8.18859824170088 -38.3689929410528 10.8271705674703 -33.0991911249595 14.3874132943846 -28.4026448593863 18.7485671783453 -24.4386554674188 23.7627070112079 -21.3416768049613 29.259759069784 -19.2167547441506 35.0532698164131 -18.1359641409765 40.9467301835672 -18.1359641409746 46.7402409301969 -19.2167547441451 52.2372929887744 -21.3416768049525 57.2514328216388 -24.4386554674069 61.612586705602 -28.4026448593716 65.1728294325192 -33.0991911249427 67.8114017582919 -38.3689929410343 69.4388064143348 -44.0333048308146 0 -49.9 80 -49.9 0 0 80 0 3 19 1 4 19 3 21 4 5 21 5 6 21 6 7 21 19 4 8 21 7 9 21 8 10 21 9 11 21 10 20 17 18 20 18 2 22 11 12 22 12 13 22 13 14 22 14 15 22 15 16 22 16 17 22 17 20 22 21 11 +25 24 1 0.432415365345757 +1.9974984355436 0.100000000005148 18 -1.9974984355439 0.0999999999986895 18 1.96687234926512 0.362509533248824 18 1.90190014196092 0.618688815163983 18 1.8037163780048 0.864064365494399 18 1.67403557203766 1.09435136201886 18 1.51512224959321 1.30552846341533 18 1.32975140326685 1.49390803114176 18 1.12116003495397 1.65620052409786 18 0.892990630341899 1.78957194158871 18 0.649227552720966 1.89169331150373 18 0.394127466825282 1.96078135953346 18 0.132145007663112 1.995629649246 18 -0.132145007669564 1.99562964924557 18 -0.39412746683162 1.96078135953219 18 -0.649227552727083 1.89169331150163 18 -0.892990630347683 1.78957194158582 18 -1.12116003495932 1.65620052409423 18 -1.32975140327168 1.49390803113746 18 -1.51512224959743 1.30552846341043 18 -1.6740355720412 1.09435136201345 18 -1.80371637800759 0.864064365488567 18 -1.90190014196293 0.618688815157833 18 -1.9668723492663 0.362509533242464 18 -1.63424829224823e-013 1.04781482462234 18 1.99749843554356 0.100000000005148 -1.99749843554388 0.0999999999986879 1.96687234926513 0.362509533248824 1.90190014196093 0.618688815163983 1.8037163780048 0.864064365494399 1.67403557203766 1.09435136201886 1.51512224959321 1.30552846341533 1.32975140326685 1.49390803114176 1.12116003495397 1.65620052409786 0.892990630341896 1.78957194158871 0.649227552720969 1.89169331150373 0.39412746682528 1.96078135953346 0.132145007663111 1.995629649246 -0.132145007669565 1.99562964924557 -0.394127466831621 1.96078135953219 -0.649227552727087 1.89169331150163 -0.892990630347684 1.78957194158582 -1.12116003495932 1.65620052409423 -1.32975140327168 1.49390803113746 -1.51512224959744 1.30552846341043 -1.6740355720412 1.09435136201345 -1.8037163780076 0.864064365488567 -1.90190014196293 0.618688815157833 -1.9668723492663 0.362509533242464 -1.61870516990348e-013 1.04781482462234 24 25 23 21 25 20 22 25 21 19 20 25 22 23 25 17 25 16 25 18 19 16 25 15 18 25 17 25 14 15 24 2 25 25 5 6 5 25 4 25 6 7 25 3 4 3 25 1 25 2 1 25 11 12 12 13 25 8 9 25 11 25 10 25 9 10 25 7 8 25 13 14 +4 2 1 7.105427357601e-015 +0 0 0 0 49.9 0 110 49.9 0 110 0 0 0 0 0 49.9 110 49.9 110 0 3 2 1 3 1 4 +4 2 1 7.105427357601e-015 +110 0 80 110 49.9 80 110 49.9 0 110 0 0 80 0 80 -49.9 0 -49.9 0 0 1 3 2 1 4 3 +4 2 1 3.5527136788005e-015 +1 0 1.00000000000001 1 0 64 89 0 1.00000000000001 89 0 64 1 1 64 1 1 89 64 89 4 1 2 4 3 1 +112 191 1 0.0289117192469131 +42 -39 -64.4 43 -39 -63.4 42.1709231443984 -39 -64.38528429908 42.3368159148933 -39 -64.3415705358966 42.4927957190754 -39 -64.2701450878699 42.6342718308492 -39 -64.1731100701609 42.7570805513291 -39 -64.0533214797322 42.8576074816486 -39 -63.9143048567415 42.9328938568918 -39 -63.7601515140603 42.9807238903532 -39 -63.59539838571 42.9951692754691 -39 -63.4981734240171 42 -39 -64.4 42 -40 -63.4 42 -39.1709231443984 -64.38528429908 42 -39.3368159148933 -64.3415705358966 42 -39.4927957190755 -64.2701450878699 42.0000000000001 -39.6342718308494 -64.1731100701609 42.0000000000001 -39.7570805513292 -64.0533214797322 42.0000000000001 -39.8576074816488 -63.9143048567415 42.0000000000001 -39.932893856892 -63.7601515140603 42 -39.9807238903533 -63.59539838571 42 -39.9951692754692 -63.4981734240171 42.9852842990799 -39.1709231443983 -63.3999999999998 42.9415705358966 -39.3368159148932 -63.3999999999998 42.87014508787 -39.4927957190755 -63.4 42.7731100701611 -39.6342718308493 -63.4000000000001 42.6533214797325 -39.7570805513292 -63.4000000000003 42.5143048567419 -39.8576074816488 -63.4000000000004 42.3601515140607 -39.932893856892 -63.4000000000004 42.1953983857103 -39.9807238903533 -63.4000000000003 42.0981734240172 -39.9951692754692 -63.4000000000001 42.1604247819023 -39.0278046136548 -64.386294858273 42.1463564617627 -39.0555016708369 -64.3870572736435 42.3189071920486 -39.0539725665661 -64.3452181775005 42.1319257090433 -39.0794286606578 -64.3875715451916 42.2940055783683 -39.1079458144798 -64.3479701370534 42.11739387078 -39.0989760028094 -64.3878376729171 42.4704011063585 -39.0788676730338 -64.2770253703376 42.2664043860602 -39.1561495497133 -64.3498264145552 42.1014969972044 -39.1152143673898 -64.3878556568201 42.4371810086807 -39.1581263533222 -64.2822161925508 42.2364338215463 -39.1971144268008 -64.350787010006 42.0825210566484 -39.1298444033103 -64.3876254969006 42.6102719176478 -39.1020993911318 -64.1825126103538 42.3979337421517 -39.2302636599401 -64.2857175545095 42.2024899971158 -39.2318096314861 -64.3508519234057 42.0592439121332 -39.1442564472817 -64.3871471931586 42.5711400378259 -39.2051449315076 -64.1896063473803 42.3530723550071 -39.2927617424553 -64.2875294562137 42.1625323753355 -39.2622316980868 -64.3500211547543 42.0319564876456 -39.158487785374 -64.3864207455941 42.7339232525342 -39.1229368996666 -64.0634531358722 42.5220087679771 -39.3000619822788 -64.1943912812404 42.3010207041937 -39.3460208412049 -64.2876518976634 42.01556745328 -39.1656844130063 -64.3858931839464 42.11536211629 -39.2901319914958 -64.3482947040519 42.6911891376532 -39.2472688790815 -64.0710969536944 42.4634697668061 -39.3831935878396 -64.1968674119341 42.2399343644947 -39.3918037853977 -64.2860848788585 42.0619937977329 -39.3155703837461 -64.3456725712983 42.8368724633185 -39.1405738451719 -63.922960906392 42.6340616384114 -39.3628204673435 -64.0762529331988 42.3942136259782 -39.4541344026377 -64.1970347394613 42.0303522916409 -39.3278724295068 -64.3437683228111 42.1691266961972 -39.43182110304 -64.2828283997991 42.7925503568345 -39.2825219104568 -63.9294914543768 42.5633978329892 -39.4648553872603 -64.0789210743853 42.3128789022355 -39.5141268318105 -64.194893263822 42.0905803973112 -39.4660764166761 -64.2778824604851 42.9150783735975 -39.1543493324295 -63.7656311422997 42.729316098793 -39.4154580040859 -63.933896500696 42.4784117925333 -39.5519902085797 -64.0791013772538 42.0444229817646 -39.4818099139508 -64.2742906143271 42.2195405550033 -39.5645891614247 -64.1904429850163 42.8706773745554 -39.3092169909975 -63.769765242334 42.6483198393637 -39.5338157539389 -63.9361760453495 42.3785092872544 -39.6246685802034 -64.0767938418045 42.117268013709 -39.6053454540947 -64.183683903044 42.9652801291309 -39.1640252977882 -63.5973748639805 42.8031361714521 -39.4552225036937 -63.7725538141632 42.5495856629598 -39.6351074010967 -63.9363300883372 42.0575450688553 -39.6229276630467 -64.178775314185 42.2647219420823 -39.683747951412 -64.0719984680372 42.9215613794419 -39.3266216475798 -63.5988660160312 42.9804572453103 -39.1679032659405 -63.4987225620156 42.7138681604227 -39.5864145675275 -63.7739968577871 42.4336030906877 -39.7186725510284 -63.9343586296592 42.1411889318488 -39.7287506921306 -64.0647152559519 42.8513728451098 -39.48053304647 -63.5998718418621 42.9370162817524 -39.332745897803 -63.4991368586285 42.6039639062657 -39.6991852558045 -63.7740943732059 42.0693559080258 -39.7467604049237 -64.0594260326748 42.302523828023 -39.784504418967 -63.9302616693155 42.7563694160602 -39.6200323067682 -63.600392341473 42.865990945807 -39.4886471572704 -63.4994163138556 42.4752634886708 -39.7915202157911 -63.7728463604193 42.1613762211626 -39.8317411060222 -63.9240392073059 42.6387770206896 -39.7406610188722 -63.600427514864 42.7692130801265 -39.6303253196901 -63.4995609276968 42.0794748833116 -39.8490987132917 -63.919520323259 42.3311014092339 -39.8622755579934 -63.7702528194276 42.5017648071802 -39.8390960935919 -63.5999773620351 42.6493992333677 -39.7531978520264 -63.4995707001522 42.1770333580286 -39.9101721382801 -63.7663137502304 42.0875934942849 -39.926277832047 -63.7634531145323 42.3496194283134 -39.9129916093757 -63.5990418829861 42.5101810669927 -39.853505010744 -63.4994456312217 42.1878727043286 -39.9606446898882 -63.5976210777171 42.3560292979803 -39.9283963061496 -63.4991857209053 42.0935878290111 -39.975479103843 -63.5965892587595 42.1921317309248 -39.9759192797138 -63.4987909692029 42.096132308019 -39.9903136613553 -63.4985042921339 0 0 0 1 0 0.10935 0 0.2187 0 0.32805 0 0.4374 0 0.54675 0 0.6561 0 0.76545 0 0.8748 0 0.9374 1 0 1 1 1 0.10935 1 0.2187 1 0.32805 1 0.4374 1 0.54675 1 0.6561 1 0.76545 1 0.8748 1 0.9374 0.10935 1 0.2187 1 0.32805 1 0.4374 1 0.54675 1 0.6561 1 0.76545 1 0.8748 1 0.9374 1 0.10935 0.10935 0.2187 0.10935 0.10935 0.2187 0.32805 0.10935 0.2187 0.2187 0.4374 0.10935 0.10935 0.32805 0.32805 0.2187 0.54675 0.10935 0.2187 0.32805 0.4374 0.2187 0.6561 0.10935 0.10935 0.4374 0.32805 0.32805 0.54675 0.2187 0.76545 0.10935 0.2187 0.4374 0.4374 0.32805 0.6561 0.2187 0.8748 0.10935 0.10935 0.54675 0.32805 0.4374 0.54675 0.32805 0.9374 0.10935 0.76545 0.2187 0.2187 0.54675 0.4374 0.4374 0.6561 0.32805 0.8748 0.2187 0.10935 0.6561 0.32805 0.54675 0.54675 0.4374 0.9374 0.2187 0.76545 0.32805 0.2187 0.6561 0.4374 0.54675 0.6561 0.4374 0.8748 0.32805 0.10935 0.76545 0.32805 0.6561 0.54675 0.54675 0.9374 0.32805 0.76545 0.4374 0.2187 0.76545 0.4374 0.6561 0.6561 0.54675 0.8748 0.4374 0.10935 0.8748 0.32805 0.76545 0.54675 0.6561 0.9374 0.4374 0.76545 0.54675 0.2187 0.8748 0.10935 0.9374 0.4374 0.76545 0.6561 0.6561 0.8748 0.54675 0.32805 0.8748 0.2187 0.9374 0.54675 0.76545 0.9374 0.54675 0.76545 0.6561 0.4374 0.8748 0.32805 0.9374 0.6561 0.76545 0.8748 0.6561 0.54675 0.8748 0.4374 0.9374 0.9374 0.6561 0.76545 0.76545 0.6561 0.8748 0.54675 0.9374 0.8748 0.76545 0.9374 0.76545 0.76545 0.8748 0.6561 0.9374 0.8748 0.8748 0.76545 0.9374 0.9374 0.8748 0.8748 0.9374 0.9374 0.9374 91 81 87 64 15 16 64 60 55 36 34 33 92 88 82 64 55 14 92 82 18 93 87 77 65 56 60 65 59 56 93 77 83 37 35 1 38 5 4 66 61 52 94 80 86 94 89 80 38 34 36 66 52 57 38 4 34 95 24 90 95 25 24 39 35 37 95 89 94 39 36 35 95 90 89 67 62 58 67 58 63 40 1 12 68 54 59 96 87 93 68 63 54 40 37 1 96 91 87 97 83 88 97 93 83 69 60 64 41 38 36 69 65 60 41 36 39 70 9 8 98 94 86 70 8 61 42 39 37 70 61 66 98 86 91 42 37 40 99 26 25 99 25 95 43 40 12 99 94 98 99 95 94 71 66 57 44 6 5 100 18 19 100 19 20 71 57 62 100 88 92 44 5 38 100 92 18 100 97 88 72 67 63 101 96 93 72 63 68 45 41 39 101 93 97 45 39 42 73 64 16 73 69 64 102 91 96 46 42 40 102 98 91 74 68 59 74 59 65 103 27 26 103 26 99 103 99 98 47 43 12 103 98 102 75 70 66 104 97 100 75 66 71 104 101 97 48 38 41 48 44 38 105 104 100 76 62 67 105 100 20 49 42 46 76 71 62 49 45 42 106 96 101 77 68 74 106 102 96 77 72 68 50 46 40 107 27 103 50 43 47 107 28 27 50 40 43 78 65 69 107 102 106 107 103 102 78 74 65 108 101 104 79 10 9 51 47 12 52 7 6 108 106 101 52 44 48 109 28 107 79 9 70 109 29 28 109 107 106 109 106 108 52 6 44 110 20 21 53 48 41 110 21 22 110 108 104 80 75 71 110 105 20 80 71 76 110 104 105 111 30 29 111 31 30 53 41 45 54 46 50 111 29 109 111 109 108 81 67 72 111 108 110 81 76 67 112 22 13 112 13 31 82 16 17 54 49 46 112 31 111 82 17 18 55 51 12 112 110 22 55 12 14 112 111 110 82 73 16 82 69 73 82 78 69 56 50 47 56 47 51 83 77 74 83 74 78 84 79 70 57 48 53 84 70 75 85 11 10 57 52 48 85 2 11 85 23 2 58 45 49 85 79 84 85 10 79 86 80 76 58 53 45 59 54 50 59 50 56 32 3 1 86 76 81 87 81 72 60 56 51 60 51 55 87 72 77 61 7 52 88 78 82 61 8 7 88 83 78 33 32 1 34 4 3 89 84 75 62 57 53 34 3 32 89 75 80 34 32 33 90 85 84 62 53 58 90 24 23 90 23 85 90 84 89 35 33 1 63 58 49 91 86 81 63 49 54 64 14 15 36 33 35 +22 20 1 0.00368574009932594 +-47 -39 -63.4 -47 -39 -0.400000000000006 -46 -40 -63.4 -46.9852842990799 -39.1709231443983 -63.3999999999998 -46.9415705358966 -39.3368159148932 -63.3999999999998 -46.87014508787 -39.4927957190755 -63.4 -46.7731100701611 -39.6342718308493 -63.4000000000001 -46.6533214797325 -39.7570805513292 -63.4000000000003 -46.5143048567418 -39.8576074816488 -63.4000000000004 -46.3601515140607 -39.932893856892 -63.4000000000004 -46.1953983857103 -39.9807238903533 -63.4000000000003 -46.0981734240172 -39.9951692754692 -63.4000000000001 -46 -40 -0.400000000000006 -46.9852842990799 -39.1709231443983 -0.400000000000005 -46.9415705358966 -39.3368159148932 -0.400000000000005 -46.87014508787 -39.4927957190755 -0.400000000000005 -46.7731100701611 -39.6342718308493 -0.400000000000006 -46.6533214797325 -39.7570805513292 -0.400000000000006 -46.5143048567418 -39.8576074816488 -0.400000000000007 -46.3601515140607 -39.932893856892 -0.400000000000007 -46.1953983857103 -39.9807238903533 -0.400000000000007 -46.0981734240172 -39.9951692754692 -0.400000000000006 0 1 0 64 1.5707963267949 1 0.171766578335022 1 0.343533156670044 1 0.515299735005067 1 0.687066313340089 1 0.858832891675112 1 1.03059947001013 1 1.20236604834516 1 1.37413262668018 1 1.47246447673754 1 1.5707963267949 64 0.171766578335022 64 0.343533156670044 64 0.515299735005067 64 0.687066313340089 64 0.858832891675112 64 1.03059947001013 64 1.20236604834516 64 1.37413262668018 64 1.47246447673754 64 2 1 4 14 4 5 14 2 4 15 5 6 15 14 5 16 6 7 16 15 6 17 7 8 17 16 7 18 17 8 19 8 9 19 9 10 19 18 8 20 19 10 21 10 11 21 20 10 22 11 12 22 21 11 13 12 3 13 22 12 +19 17 1 0.0140595492394525 +-47 -5.04380808516743 -0.400000000000006 -46.9165832942695 -0.100000000000158 -0.000156250381472489 -46 -0.0999999999999943 0.599999999999994 -46.8227363338148 -0.100000000000001 0.16842319183947 -46.6982619458742 -0.100000000000001 0.3158423394463 -46.5477938643863 -0.100000000000001 0.436613340881418 -46.3769334560328 -0.100000000000001 0.526240341230689 -46.1920412179316 -0.100000000000001 0.58138686083284 -47 -39 -0.400000000000006 -46 -39 0.599999999999994 -46.1709231443984 -39 0.585284299079908 -46.3368159148933 -39 0.54157053589661 -46.4927957190754 -39 0.470145087869938 -46.6342718308492 -39 0.373110070161005 -46.757080551329 -39 0.253321479732373 -46.8576074816485 -39 0.114304856741682 -46.9328938568917 -39 -0.0398484859395009 -46.9807238903531 -39 -0.204601614289848 -46.9951692754691 -39 -0.301826575982866 0 34.9561919148326 0.411346385259588 39.8999999989694 1.5707963267949 39.9 0.604588042185068 39.9 0.797829699107034 39.9 0.991071356029 39.9 1.18431301295097 39.9 1.37755466987293 39.9 0 1 1.5707963267949 1 1.39902974845988 1 1.22726317012486 1 1.05549659178983 1 0.883730013454811 1 0.711963435119788 1 0.540196856784766 1 0.368430278449743 1 0.196663700114721 1 0.0983318500573604 1 1 19 18 1 9 19 2 17 16 2 18 17 2 1 18 4 16 15 4 2 16 5 15 14 5 4 15 6 14 13 6 5 14 7 13 12 7 6 13 8 12 11 8 7 12 3 11 10 3 8 11 +15 13 1 2.16660644877254e-011 +93.0834167057305 -1.57998614191968e-013 99.9998437496185 80 -4.33309915726099e-011 99.9998437496184 94 5.70377078901174e-015 100.6 93.1772636661852 -9.99200722162641e-016 100.168423191839 93.3017380541258 -9.99200722162641e-016 100.315842339446 93.4522061356138 -9.99200722162641e-016 100.436613340881 93.6230665439672 -9.99200722162641e-016 100.526240341231 93.8079587820684 -9.99200722162641e-016 100.581386860833 80 5.70377078901174e-015 110 104.000138889157 2.3979401797547e-011 100.6 97.0025015644562 -1.27999000287815e-012 110 104.000138889157 2.3979401797547e-011 110 97.0025015644562 -1.2869982857211e-012 101 100.997498435544 5.15000542211652e-012 110 100.997498435544 -5.14799314288439e-012 101 99.9998437496185 93.0834167057305 99.9998437496185 80 100.6 94 100.168423191839 93.1772636661852 100.315842339446 93.3017380541258 100.436613340881 93.4522061356138 100.526240341231 93.6230665439672 100.581386860833 93.8079587820684 110 80 100.6 104.000138889157 110 97.0025015644562 110 104.000138889157 101 97.0025015644562 110 100.997498435544 101 100.997498435544 4 1 2 4 2 9 5 4 9 6 5 9 11 7 6 11 8 7 11 3 8 11 6 9 11 13 3 12 15 14 12 10 15 10 3 13 10 13 15 +22 20 1 0.0036857400993056 +43 -39 -63.4 43 -39 -0.400000000000006 42 -40 -63.4 42.9852842990799 -39.1709231443983 -63.3999999999998 42.9415705358966 -39.3368159148932 -63.3999999999998 42.87014508787 -39.4927957190755 -63.4 42.7731100701611 -39.6342718308493 -63.4000000000001 42.6533214797325 -39.7570805513292 -63.4000000000003 42.5143048567419 -39.8576074816488 -63.4000000000004 42.3601515140607 -39.932893856892 -63.4000000000004 42.1953983857103 -39.9807238903533 -63.4000000000003 42.0981734240172 -39.9951692754692 -63.4000000000001 42 -40 -0.400000000000006 42.9852842990799 -39.1709231443983 -0.400000000000005 42.9415705358966 -39.3368159148932 -0.400000000000005 42.87014508787 -39.4927957190755 -0.400000000000005 42.7731100701611 -39.6342718308493 -0.400000000000006 42.6533214797325 -39.7570805513292 -0.400000000000006 42.5143048567419 -39.8576074816488 -0.400000000000007 42.3601515140607 -39.932893856892 -0.400000000000007 42.1953983857103 -39.9807238903533 -0.400000000000007 42.0981734240172 -39.9951692754692 -0.400000000000006 0 1 0 64 1.5707963267949 1 0.171766578335022 1 0.343533156670044 1 0.515299735005067 1 0.687066313340089 1 0.858832891675112 1 1.03059947001013 1 1.20236604834516 1 1.37413262668018 1 1.47246447673754 1 1.5707963267949 64 0.171766578335022 64 0.343533156670044 64 0.515299735005067 64 0.687066313340089 64 0.858832891675112 64 1.03059947001013 64 1.20236604834516 64 1.37413262668018 64 1.47246447673754 64 2 1 4 14 4 5 14 2 4 15 5 6 15 14 5 16 6 7 16 15 6 17 7 8 17 16 7 18 17 8 19 8 9 19 9 10 19 18 8 20 19 10 21 10 11 21 20 10 22 11 12 22 21 11 13 12 3 13 22 12 +112 191 1 0.0289117192469003 +42 -39 0.599999999999994 43 -39 -0.400000000000006 42.1709231443984 -39 0.585284299079908 42.3368159148933 -39 0.54157053589661 42.4927957190754 -39 0.470145087869938 42.6342718308492 -39 0.373110070161005 42.7570805513291 -39 0.253321479732373 42.8576074816486 -39 0.114304856741682 42.9328938568918 -39 -0.0398484859395009 42.9807238903531 -39 -0.204601614289848 42.9951692754691 -39 -0.301826575982866 42 -39 0.599999999999994 42 -40 -0.400000000000006 42 -39.1709231443984 0.585284299079908 42 -39.3368159148933 0.54157053589661 42 -39.4927957190754 0.470145087869938 42.0000000000001 -39.6342718308493 0.373110070161005 42.0000000000001 -39.7570805513291 0.253321479732373 42.0000000000001 -39.8576074816486 0.114304856741682 42.0000000000001 -39.9328938568918 -0.0398484859395009 42 -39.9807238903532 -0.204601614289848 42 -39.9951692754691 -0.301826575982866 42.9852842990799 -39.1709231443983 -0.400000000000005 42.9415705358966 -39.3368159148932 -0.400000000000005 42.87014508787 -39.4927957190755 -0.400000000000005 42.7731100701611 -39.6342718308493 -0.400000000000006 42.6533214797325 -39.7570805513292 -0.400000000000006 42.5143048567419 -39.8576074816488 -0.400000000000007 42.3601515140607 -39.932893856892 -0.400000000000007 42.1953983857103 -39.9807238903533 -0.400000000000007 42.0981734240172 -39.9951692754692 -0.400000000000006 42.1604247819023 -39.0278046136548 0.586294858272964 42.1463564617627 -39.0555016708369 0.587057273643507 42.3189071920486 -39.0539725665661 0.545218177500548 42.1319257090433 -39.0794286606578 0.587571545191537 42.2940055783683 -39.1079458144798 0.54797013705342 42.11739387078 -39.0989760028094 0.587837672917054 42.4704011063584 -39.0788676730338 0.477025370337671 42.2664043860602 -39.1561495497133 0.549826414555227 42.1014969972044 -39.1152143673898 0.587855656820057 42.4371810086807 -39.1581263533222 0.482216192550878 42.2364338215462 -39.1971144268008 0.550787010005969 42.0825210566484 -39.1298444033103 0.587625496900547 42.6102719176478 -39.1020993911318 0.382512610353964 42.3979337421517 -39.2302636599401 0.48571755450956 42.2024899971158 -39.2318096314861 0.550851923405646 42.0592439121332 -39.1442564472817 0.587147193158524 42.5711400378258 -39.2051449315075 0.389606347380471 42.353072355007 -39.2927617424553 0.487529456213716 42.1625323753355 -39.2622316980868 0.550021154754258 42.0319564876456 -39.158487785374 0.586420745593988 42.7339232525341 -39.1229368996666 0.263453135872474 42.522008767977 -39.3000619822787 0.394391281240526 42.3010207041937 -39.3460208412048 0.487651897663346 42.01556745328 -39.1656844130063 0.585893183946334 42.11536211629 -39.2901319914958 0.548294704051805 42.6911891376532 -39.2472688790815 0.271096953694672 42.4634697668061 -39.3831935878396 0.39686741193413 42.2399343644947 -39.3918037853977 0.486084878858451 42.0619937977329 -39.315570383746 0.545672571298287 42.8368724633184 -39.1405738451719 0.122960906392233 42.6340616384114 -39.3628204673434 0.276252933198967 42.3942136259781 -39.4541344026376 0.397034739461283 42.0303522916409 -39.3278724295067 0.543768322811066 42.1691266961972 -39.4318211030399 0.482828399799031 42.7925503568344 -39.2825219104568 0.129491454377062 42.5633978329892 -39.4648553872602 0.27892107438536 42.3128789022355 -39.5141268318105 0.394893263821984 42.0905803973112 -39.466076416676 0.477882460485085 42.9150783735974 -39.1543493324295 -0.0343688577000039 42.729316098793 -39.4154580040859 0.133896500696168 42.4784117925332 -39.5519902085796 0.27910137725385 42.0444229817646 -39.4818099139508 0.474290614327093 42.2195405550033 -39.5645891614246 0.390442985016233 42.8706773745554 -39.3092169909974 -0.0302347576657258 42.6483198393636 -39.5338157539389 0.136176045349552 42.3785092872544 -39.6246685802033 0.276793841804437 42.117268013709 -39.6053454540945 0.383683903044031 42.9652801291308 -39.1640252977882 -0.202625136019235 42.803136171452 -39.4552225036937 -0.0274461858366666 42.5495856629597 -39.6351074010965 0.136330088337214 42.0575450688553 -39.6229276630466 0.378775314185095 42.2647219420823 -39.6837479514118 0.271998468037121 42.9215613794419 -39.3266216475798 -0.201133983968554 42.9804572453103 -39.1679032659405 -0.301277437984183 42.7138681604227 -39.5864145675274 -0.026003142212826 42.4336030906877 -39.7186725510283 0.134358629659154 42.1411889318488 -39.7287506921305 0.264715255951903 42.8513728451097 -39.48053304647 -0.200128158137807 42.9370162817524 -39.332745897803 -0.300863141371356 42.6039639062656 -39.6991852558044 -0.025905626794204 42.0693559080258 -39.7467604049235 0.259426032674867 42.302523828023 -39.7845044189669 0.130261669315371 42.7563694160602 -39.6200323067682 -0.199607658526993 42.865990945807 -39.4886471572704 -0.300583686144384 42.4752634886708 -39.791520215791 -0.0271536395808005 42.1613762211626 -39.8317411060221 0.124039207305867 42.6387770206896 -39.7406610188721 -0.199572485136111 42.7692130801264 -39.6303253196901 -0.300439072303267 42.0794748833116 -39.8490987132915 0.119520323259096 42.3311014092339 -39.8622755579933 -0.0297471805726154 42.5017648071802 -39.8390960935918 -0.200022637965162 42.6493992333677 -39.7531978520263 -0.300429299848006 42.1770333580286 -39.9101721382799 -0.0336862497696484 42.0875934942849 -39.9262778320468 -0.0365468854676103 42.3496194283133 -39.9129916093756 -0.200958117014145 42.5101810669927 -39.8535050107439 -0.300554368778599 42.1878727043286 -39.960644689888 -0.202378922283061 42.3560292979803 -39.9283963061495 -0.300814279095048 42.0935878290111 -39.9754791038429 -0.203410741240487 42.1921317309248 -39.9759192797138 -0.301209030797351 42.096132308019 -39.9903136613553 -0.301495707866209 0 0 0 1 0 0.10935 0 0.2187 0 0.32805 0 0.4374 0 0.54675 0 0.6561 0 0.76545 0 0.8748 0 0.9374 1 0 1 1 1 0.10935 1 0.2187 1 0.32805 1 0.4374 1 0.54675 1 0.6561 1 0.76545 1 0.8748 1 0.9374 0.10935 1 0.2187 1 0.32805 1 0.4374 1 0.54675 1 0.6561 1 0.76545 1 0.8748 1 0.9374 1 0.10935 0.10935 0.2187 0.10935 0.10935 0.2187 0.32805 0.10935 0.2187 0.2187 0.4374 0.10935 0.10935 0.32805 0.32805 0.2187 0.54675 0.10935 0.2187 0.32805 0.4374 0.2187 0.6561 0.10935 0.10935 0.4374 0.32805 0.32805 0.54675 0.2187 0.76545 0.10935 0.2187 0.4374 0.4374 0.32805 0.6561 0.2187 0.8748 0.10935 0.10935 0.54675 0.32805 0.4374 0.54675 0.32805 0.9374 0.10935 0.76545 0.2187 0.2187 0.54675 0.4374 0.4374 0.6561 0.32805 0.8748 0.2187 0.10935 0.6561 0.32805 0.54675 0.54675 0.4374 0.9374 0.2187 0.76545 0.32805 0.2187 0.6561 0.4374 0.54675 0.6561 0.4374 0.8748 0.32805 0.10935 0.76545 0.32805 0.6561 0.54675 0.54675 0.9374 0.32805 0.76545 0.4374 0.2187 0.76545 0.4374 0.6561 0.6561 0.54675 0.8748 0.4374 0.10935 0.8748 0.32805 0.76545 0.54675 0.6561 0.9374 0.4374 0.76545 0.54675 0.2187 0.8748 0.10935 0.9374 0.4374 0.76545 0.6561 0.6561 0.8748 0.54675 0.32805 0.8748 0.2187 0.9374 0.54675 0.76545 0.9374 0.54675 0.76545 0.6561 0.4374 0.8748 0.32805 0.9374 0.6561 0.76545 0.8748 0.6561 0.54675 0.8748 0.4374 0.9374 0.9374 0.6561 0.76545 0.76545 0.6561 0.8748 0.54675 0.9374 0.8748 0.76545 0.9374 0.76545 0.76545 0.8748 0.6561 0.9374 0.8748 0.8748 0.76545 0.9374 0.9374 0.8748 0.8748 0.9374 0.9374 0.9374 63 54 59 36 34 33 91 81 87 64 55 15 64 60 55 91 86 81 92 78 82 65 50 56 92 88 78 65 59 50 37 35 1 92 17 18 38 5 4 92 82 17 38 4 34 93 87 77 66 61 52 93 77 83 66 52 57 39 35 37 94 80 86 39 36 35 94 89 80 40 1 12 67 53 58 95 89 94 95 26 25 95 25 90 67 62 53 40 37 1 95 90 89 67 58 63 68 63 59 96 87 93 41 34 36 96 91 87 41 38 34 69 56 60 69 65 56 97 93 83 70 9 8 42 39 37 97 83 88 42 37 40 98 86 91 70 8 61 70 61 66 43 40 12 44 6 5 98 94 86 99 27 26 99 95 94 71 57 62 44 5 38 71 66 57 99 26 95 99 94 98 100 18 19 100 19 20 100 92 18 45 41 36 100 97 88 100 88 92 45 36 39 72 63 68 101 96 93 72 67 63 101 93 97 73 64 15 73 15 16 46 40 43 73 60 64 46 42 40 73 69 60 102 98 91 74 59 65 47 43 12 102 91 96 74 68 59 103 28 27 103 27 99 103 99 98 103 98 102 48 38 41 48 44 38 104 101 97 75 70 66 75 66 71 49 42 46 104 97 100 76 62 67 49 39 42 23 2 11 105 100 20 76 71 62 49 45 39 105 104 100 50 46 43 50 43 47 77 72 68 106 96 101 51 47 12 106 102 96 107 29 28 78 65 69 107 28 103 78 74 65 107 103 102 52 7 6 107 102 106 108 101 104 79 10 9 108 106 101 79 9 70 52 6 44 53 48 41 109 29 107 109 30 29 109 107 106 109 106 108 110 20 21 110 21 22 53 41 45 110 105 20 80 75 71 80 71 76 110 104 105 110 108 104 111 31 30 54 46 50 111 109 108 54 49 46 111 30 109 81 67 72 55 51 12 111 108 110 55 12 14 81 76 67 55 14 15 112 31 111 112 110 22 82 16 17 112 111 110 112 22 31 82 78 69 82 73 16 56 50 47 82 69 73 57 44 48 83 68 74 83 77 68 84 79 70 57 52 44 58 45 49 84 70 75 85 11 10 85 24 23 58 49 54 85 23 11 58 53 45 85 10 79 85 79 84 13 31 22 59 54 50 32 3 1 60 47 51 86 76 81 86 80 76 60 51 55 60 56 47 87 81 72 61 7 52 61 8 7 33 32 1 87 72 77 34 4 3 88 83 74 34 3 32 62 48 53 34 32 33 88 74 78 62 57 48 89 84 75 35 33 1 89 75 80 90 85 84 90 25 24 90 24 85 90 84 89 63 58 54 36 33 35 +22 20 1 0.0036857400994761 +-46 -39 0.599999999999994 -46 -40 -0.400000000000006 -46 -39.1709231443984 0.585284299079908 -46 -39.3368159148933 0.54157053589661 -46 -39.4927957190754 0.470145087869938 -46 -39.6342718308493 0.373110070161005 -46 -39.7570805513291 0.253321479732373 -46 -39.8576074816486 0.114304856741682 -46 -39.9328938568918 -0.0398484859395009 -46 -39.9807238903532 -0.204601614289848 -46 -39.9951692754691 -0.301826575982866 42 -39 0.599999999999994 42 -40 -0.400000000000006 42 -39.1709231443984 0.585284299079908 42 -39.3368159148933 0.54157053589661 42 -39.4927957190754 0.470145087869938 42.0000000000001 -39.6342718308493 0.373110070161005 42.0000000000001 -39.7570805513291 0.253321479732373 42.0000000000001 -39.8576074816486 0.114304856741682 42.0000000000001 -39.9328938568918 -0.0398484859395009 42 -39.9807238903532 -0.204601614289848 42 -39.9951692754691 -0.301826575982866 1.5707963267949 1 0 1 1.39902974845988 1 1.22726317012486 1 1.05549659178983 1 0.883730013454811 1 0.711963435119788 1 0.540196856784766 1 0.368430278449743 1 0.196663700114721 1 0.0983318500573604 1 1.5707963267949 89 0 89 1.39902974845988 89 1.22726317012486 89 1.05549659178983 89 0.883730013454811 89 0.711963435119788 89 0.540196856784766 89 0.368430278449743 89 0.196663700114721 89 0.0983318500573604 89 22 2 11 22 13 2 21 10 9 21 11 10 21 22 11 20 21 9 19 8 7 19 9 8 19 20 9 18 19 7 17 7 6 17 18 7 16 6 5 16 17 6 15 5 4 15 16 5 14 4 3 14 15 4 12 3 1 12 14 3 +86 84 1 0.00549671757219435 +2 0 9 2 0 18 2 0 9 1.96961550602442 0.347296355333855 9 1.87938524157182 0.684040286651332 9 1.73205080756888 0.999999999999996 9 1.53208888623796 1.28557521937308 9 1.28557521937308 1.53208888623795 9 1.00000000000001 1.73205080756888 9 0.684040286651339 1.87938524157182 9 0.347296355333867 1.96961550602442 9 7.105427357601e-015 2 9 -0.347296355333853 1.96961550602442 9 -0.684040286651332 1.87938524157182 9 -0.999999999999993 1.73205080756888 9 -1.28557521937307 1.53208888623796 9 -1.53208888623795 1.28557521937308 9 -1.73205080756888 1.00000000000001 9 -1.87938524157181 0.684040286651346 9 -1.96961550602441 0.34729635533387 9 -2 9.3716267385302e-015 9 -1.96961550602442 -0.347296355333851 9 -1.87938524157182 -0.684040286651328 9 -1.73205080756888 -0.999999999999991 9 -1.53208888623796 -1.28557521937307 9 -1.28557521937309 -1.53208888623795 9 -1.00000000000001 -1.73205080756887 9 -0.684040286651346 -1.87938524157181 9 -0.347296355333874 -1.96961550602441 9 -1.4210854715202e-014 -2 9 0.347296355333846 -1.96961550602442 9 0.684040286651324 -1.87938524157182 9 0.999999999999986 -1.73205080756888 9 1.28557521937307 -1.53208888623796 9 1.53208888623795 -1.28557521937309 9 1.73205080756887 -1.00000000000001 9 1.87938524157181 -0.684040286651351 9 1.96961550602441 -0.347296355333875 9 2 0 18 1.98288972274762 0.261052384440103 18 1.93185165257814 0.517638090205042 18 1.84775906502257 0.76536686473018 18 1.73205080756888 1 18 1.58670668058247 1.21752285801744 18 1.41421356237309 1.4142135623731 18 1.21752285801744 1.58670668058247 18 1 1.73205080756888 18 0.765366864730176 1.84775906502257 18 0.51763809020504 1.93185165257814 18 0.261052384440099 1.98288972274762 18 0 2 18 -0.261052384440106 1.98288972274762 18 -0.517638090205047 1.93185165257814 18 -0.765366864730183 1.84775906502257 18 -1 1.73205080756888 18 -1.21752285801745 1.58670668058247 18 -1.4142135623731 1.41421356237309 18 -1.58670668058247 1.21752285801744 18 -1.73205080756888 0.999999999999999 18 -1.84775906502257 0.765366864730179 18 -1.93185165257814 0.517638090205041 18 -1.98288972274762 0.261052384440103 18 -2 2.44921270764475e-016 18 -1.98288972274762 -0.261052384440103 18 -1.93185165257814 -0.517638090205041 18 -1.84775906502257 -0.765366864730178 18 -1.73205080756888 -0.999999999999999 18 -1.58670668058247 -1.21752285801744 18 -1.4142135623731 -1.41421356237309 18 -1.21752285801745 -1.58670668058247 18 -1 -1.73205080756888 18 -0.765366864730183 -1.84775906502257 18 -0.517638090205047 -1.93185165257814 18 -0.261052384440106 -1.98288972274762 18 -7.105427357601e-015 -2 18 0.261052384440099 -1.98288972274762 18 0.51763809020504 -1.93185165257814 18 0.765366864730176 -1.84775906502258 18 0.999999999999993 -1.73205080756888 18 1.21752285801744 -1.58670668058247 18 1.41421356237309 -1.4142135623731 18 1.58670668058247 -1.21752285801745 18 1.73205080756888 -1.00000000000001 18 1.84775906502257 -0.765366864730186 18 1.93185165257813 -0.517638090205048 18 1.98288972274762 -0.26105238444011 18 6.28318530717959 9 6.28318530717959 18 0 9 0.174532925199433 9 0.349065850398866 9 0.5235987755983 9 0.698131700797733 9 0.872664625997166 9 1.0471975511966 9 1.22173047639603 9 1.39626340159546 9 1.5707963267949 9 1.74532925199433 9 1.91986217719376 9 2.0943951023932 9 2.26892802759263 9 2.44346095279206 9 2.61799387799149 9 2.79252680319093 9 2.96705972839036 9 3.14159265358979 9 3.31612557878922 9 3.49065850398866 9 3.66519142918809 9 3.83972435438752 9 4.01425727958696 9 4.18879020478639 9 4.36332312998582 9 4.53785605518525 9 4.71238898038469 9 4.88692190558412 9 5.06145483078355 9 5.23598775598299 9 5.41052068118242 9 5.58505360638185 9 5.75958653158128 9 5.93411945678072 9 6.10865238198015 9 0 18 0.130899693899575 18 0.26179938779915 18 0.392699081698724 18 0.523598775598299 18 0.654498469497874 18 0.785398163397449 18 0.916297857297024 18 1.0471975511966 18 1.17809724509617 18 1.30899693899575 18 1.43989663289532 18 1.5707963267949 18 1.70169602069447 18 1.83259571459405 18 1.96349540849362 18 2.0943951023932 18 2.22529479629277 18 2.35619449019235 18 2.48709418409192 18 2.61799387799149 18 2.74889357189107 18 2.87979326579064 18 3.01069295969022 18 3.14159265358979 18 3.27249234748937 18 3.40339204138894 18 3.53429173528852 18 3.66519142918809 18 3.79609112308767 18 3.92699081698724 18 4.05789051088682 18 4.18879020478639 18 4.31968989868596 18 4.45058959258554 18 4.58148928648511 18 4.71238898038469 18 4.84328867428426 18 4.97418836818384 18 5.10508806208341 18 5.23598775598299 18 5.36688744988256 18 5.49778714378214 18 5.62868683768171 18 5.75958653158128 18 5.89048622548086 18 6.02138591938043 18 6.15228561328001 18 84 83 36 61 19 20 61 60 19 85 37 38 85 84 37 62 20 21 86 38 1 86 85 38 62 61 20 2 86 1 63 62 21 40 3 4 40 39 3 64 21 22 64 63 21 41 4 5 41 40 4 65 22 23 65 64 22 42 41 5 42 5 6 43 42 6 66 23 24 66 65 23 44 6 7 44 43 6 67 66 24 68 24 25 68 67 24 45 7 8 45 44 7 69 25 26 69 68 25 46 45 8 46 8 9 70 26 27 70 69 26 47 46 9 48 9 10 71 70 27 48 47 9 72 27 28 49 10 11 72 71 27 49 48 10 73 72 28 73 28 29 50 11 12 50 49 11 74 73 29 74 29 30 51 50 12 52 12 13 75 74 30 52 51 12 76 75 30 76 30 31 53 13 14 53 52 13 77 76 31 77 31 32 54 14 15 54 53 14 78 77 32 78 32 33 55 54 15 56 15 16 56 55 15 79 78 33 80 79 33 80 33 34 57 16 17 57 56 16 81 34 35 81 80 34 58 17 18 58 57 17 82 35 36 59 58 18 82 81 35 83 82 36 60 18 19 60 59 18 84 36 37 +4 2 1 0 +0 0 0 110 0 0 110 0 80 0 0 80 0 0 0 110 80 110 80 0 3 2 1 3 1 4 +42 40 1 0.00630255627672612 +-1.9974984355441 -0.09999999999485 9 1.9974984355438 -0.10000000000128 9 -1.94781699719842 -0.453882083172399 9 -1.83595112426098 -0.793273893005976 9 -1.66547215637439 -1.10734028028499 9 -1.44182266758082 -1.38605461481506 9 -1.17214271109233 -1.62051888752742 9 -0.865041871710325 -1.80324778114043 9 -0.530324403164542 -1.92840764036242 9 -0.178676225415352 -1.99200271246586 9 0.178676225408999 -1.99200271246642 9 0.530324403158396 -1.92840764036412 9 0.865041871704577 -1.80324778114319 9 1.17214271108717 -1.62051888753116 9 1.4418226675764 -1.38605461481966 9 1.66547215637086 -1.1073402802903 9 1.83595112425845 -0.793273893011828 9 1.94781699719697 -0.453882083178608 9 -1.9974984355436 -0.100000000005148 18 1.9974984355438 -0.100000000001287 18 -1.96687234926515 -0.362509533248712 18 -1.90190014196099 -0.618688815163767 18 -1.80371637800495 -0.864064365494093 18 -1.67403557203791 -1.09435136201849 18 -1.51512224959358 -1.3055284634149 18 -1.32975140326736 -1.49390803114131 18 -1.12116003495463 -1.65620052409741 18 -0.892990630342709 -1.78957194158831 18 -0.649227552721932 -1.8916933115034 18 -0.39412746682639 -1.96078135953324 18 -0.132145007664349 -1.99562964924592 18 0.132145007668214 -1.99562964924566 18 0.394127466830184 -1.96078135953248 18 0.649227552725591 -1.89169331150214 18 0.892990630346169 -1.78957194158658 18 1.12116003495782 -1.65620052409524 18 1.32975140327025 -1.49390803113873 18 1.51512224959611 -1.30552846341197 18 1.67403557204003 -1.09435136201525 18 1.80371637800662 -0.864064365490604 18 1.90190014196219 -0.618688815160088 18 1.96687234926585 -0.362509533244908 18 3.19161351039299 9 6.23316445037321 9 3.3705282715683 9 3.5494430327436 9 3.72835779391891 9 3.90727255509422 9 4.08618731626952 9 4.26510207744483 9 4.44401683862014 9 4.62293159979544 9 4.80184636097075 9 4.98076112214606 9 5.15967588332136 9 5.33859064449667 9 5.51750540567198 9 5.69642016684728 9 5.87533492802259 9 6.0542496891979 9 3.19161351039556 18 6.23316445037382 18 3.32385485561445 18 3.45609620083075 18 3.58833754604706 18 3.72057889126336 18 3.85282023647967 18 3.98506158169597 18 4.11730292691228 18 4.24954427212859 18 4.38178561734489 18 4.5140269625612 18 4.6462683077775 18 4.77850965299381 18 4.91075099821012 18 5.04299234342642 18 5.17523368864273 18 5.30747503385903 18 5.43971637907534 18 5.57195772429164 18 5.70419906950795 18 5.83644041472426 18 5.96868175994056 18 6.10092310515687 18 21 1 3 21 19 1 22 3 4 22 21 3 23 4 5 23 22 4 24 23 5 25 5 6 25 24 5 26 6 7 26 25 6 27 7 8 27 26 7 28 27 8 29 8 9 29 28 8 30 9 10 30 29 9 31 10 11 31 30 10 32 31 11 33 11 12 33 32 11 34 12 13 34 33 12 35 34 13 36 35 13 36 13 14 37 36 14 37 14 15 38 37 15 38 15 16 39 38 16 40 16 17 40 39 16 41 40 17 41 17 18 42 18 2 42 41 18 20 42 2 +112 191 1 0.0289117192469085 +-46 -39 0.599999999999994 -47 -39 -0.400000000000006 -46.1709231443984 -39 0.585284299079908 -46.3368159148933 -39 0.54157053589661 -46.4927957190754 -39 0.470145087869938 -46.6342718308492 -39 0.373110070161005 -46.757080551329 -39 0.253321479732373 -46.8576074816485 -39 0.114304856741682 -46.9328938568917 -39 -0.0398484859395009 -46.9807238903531 -39 -0.204601614289848 -46.9951692754691 -39 -0.301826575982866 -46 -39 0.599999999999994 -46 -40 -0.400000000000006 -46 -39.1709231443984 0.585284299079908 -46 -39.3368159148933 0.54157053589661 -46 -39.4927957190754 0.470145087869938 -46 -39.6342718308493 0.373110070161005 -46 -39.7570805513291 0.253321479732373 -46 -39.8576074816486 0.114304856741682 -46 -39.9328938568918 -0.0398484859395009 -46 -39.9807238903532 -0.204601614289848 -46 -39.9951692754691 -0.301826575982866 -46.9852842990799 -39.1709231443983 -0.400000000000005 -46.9415705358966 -39.3368159148932 -0.400000000000005 -46.87014508787 -39.4927957190755 -0.400000000000005 -46.7731100701611 -39.6342718308493 -0.400000000000006 -46.6533214797325 -39.7570805513292 -0.400000000000006 -46.5143048567418 -39.8576074816488 -0.400000000000007 -46.3601515140607 -39.932893856892 -0.400000000000007 -46.1953983857103 -39.9807238903533 -0.400000000000007 -46.0981734240172 -39.9951692754692 -0.400000000000006 -46.1604247819023 -39.0278046136548 0.586294858272964 -46.1463564617627 -39.0555016708369 0.587057273643507 -46.3189071920486 -39.0539725665661 0.545218177500547 -46.1319257090433 -39.0794286606578 0.587571545191537 -46.2940055783683 -39.1079458144798 0.54797013705342 -46.11739387078 -39.0989760028094 0.587837672917054 -46.4704011063584 -39.0788676730338 0.477025370337671 -46.2664043860602 -39.1561495497133 0.549826414555227 -46.1014969972044 -39.1152143673898 0.587855656820057 -46.4371810086806 -39.1581263533222 0.482216192550878 -46.2364338215462 -39.1971144268008 0.550787010005969 -46.0825210566484 -39.1298444033103 0.587625496900547 -46.6102719176477 -39.1020993911318 0.382512610353964 -46.3979337421517 -39.2302636599401 0.485717554509559 -46.2024899971158 -39.2318096314861 0.550851923405646 -46.0592439121332 -39.1442564472817 0.587147193158524 -46.5711400378257 -39.2051449315075 0.389606347380471 -46.353072355007 -39.2927617424553 0.487529456213716 -46.1625323753354 -39.2622316980868 0.550021154754258 -46.0319564876456 -39.158487785374 0.586420745593988 -46.733923252534 -39.1229368996666 0.263453135872474 -46.522008767977 -39.3000619822787 0.394391281240526 -46.3010207041937 -39.3460208412048 0.487651897663346 -46.01556745328 -39.1656844130063 0.585893183946334 -46.11536211629 -39.2901319914958 0.548294704051805 -46.6911891376531 -39.2472688790815 0.271096953694672 -46.463469766806 -39.3831935878396 0.39686741193413 -46.2399343644946 -39.3918037853977 0.486084878858451 -46.0619937977329 -39.315570383746 0.545672571298287 -46.8368724633184 -39.1405738451719 0.122960906392233 -46.6340616384113 -39.3628204673434 0.276252933198967 -46.3942136259781 -39.4541344026376 0.397034739461283 -46.0303522916408 -39.3278724295067 0.543768322811066 -46.1691266961971 -39.4318211030399 0.482828399799031 -46.7925503568343 -39.2825219104568 0.129491454377062 -46.5633978329891 -39.4648553872602 0.27892107438536 -46.3128789022354 -39.5141268318105 0.394893263821984 -46.0905803973111 -39.466076416676 0.477882460485085 -46.9150783735973 -39.1543493324295 -0.0343688577000039 -46.7293160987929 -39.4154580040859 0.133896500696168 -46.4784117925332 -39.5519902085796 0.27910137725385 -46.0444229817646 -39.4818099139508 0.474290614327093 -46.2195405550032 -39.5645891614246 0.390442985016233 -46.8706773745553 -39.3092169909974 -0.0302347576657259 -46.6483198393636 -39.5338157539389 0.136176045349552 -46.3785092872543 -39.6246685802033 0.276793841804437 -46.1172680137089 -39.6053454540945 0.383683903044031 -46.9652801291308 -39.1640252977882 -0.202625136019235 -46.8031361714519 -39.4552225036937 -0.0274461858366667 -46.5495856629597 -39.6351074010965 0.136330088337214 -46.0575450688552 -39.6229276630466 0.378775314185095 -46.2647219420822 -39.6837479514118 0.271998468037121 -46.9215613794418 -39.3266216475798 -0.201133983968554 -46.9804572453103 -39.1679032659405 -0.301277437984183 -46.7138681604226 -39.5864145675274 -0.0260031422128261 -46.4336030906876 -39.7186725510283 0.134358629659154 -46.1411889318487 -39.7287506921305 0.264715255951903 -46.8513728451097 -39.48053304647 -0.200128158137807 -46.9370162817523 -39.332745897803 -0.300863141371356 -46.6039639062656 -39.6991852558044 -0.025905626794204 -46.0693559080257 -39.7467604049235 0.259426032674867 -46.3025238280229 -39.7845044189669 0.130261669315371 -46.7563694160601 -39.6200323067682 -0.199607658526993 -46.8659909458069 -39.4886471572704 -0.300583686144384 -46.4752634886707 -39.791520215791 -0.0271536395808004 -46.1613762211626 -39.8317411060221 0.124039207305867 -46.6387770206895 -39.7406610188721 -0.199572485136111 -46.7692130801264 -39.6303253196901 -0.300439072303267 -46.0794748833115 -39.8490987132915 0.119520323259096 -46.3311014092338 -39.8622755579933 -0.0297471805726154 -46.5017648071801 -39.8390960935918 -0.200022637965162 -46.6493992333677 -39.7531978520263 -0.300429299848006 -46.1770333580285 -39.9101721382799 -0.0336862497696484 -46.0875934942848 -39.9262778320468 -0.0365468854676103 -46.3496194283133 -39.9129916093756 -0.200958117014145 -46.5101810669927 -39.8535050107439 -0.300554368778599 -46.1878727043286 -39.960644689888 -0.202378922283061 -46.3560292979802 -39.9283963061495 -0.300814279095048 -46.0935878290111 -39.9754791038429 -0.203410741240487 -46.1921317309247 -39.9759192797138 -0.301209030797351 -46.096132308019 -39.9903136613553 -0.301495707866209 0 0 0 1 0 0.10935 0 0.2187 0 0.32805 0 0.4374 0 0.54675 0 0.6561 0 0.76545 0 0.8748 0 0.9374 1 0 1 1 1 0.10935 1 0.2187 1 0.32805 1 0.4374 1 0.54675 1 0.6561 1 0.76545 1 0.8748 1 0.9374 0.10935 1 0.2187 1 0.32805 1 0.4374 1 0.54675 1 0.6561 1 0.76545 1 0.8748 1 0.9374 1 0.10935 0.10935 0.2187 0.10935 0.10935 0.2187 0.32805 0.10935 0.2187 0.2187 0.4374 0.10935 0.10935 0.32805 0.32805 0.2187 0.54675 0.10935 0.2187 0.32805 0.4374 0.2187 0.6561 0.10935 0.10935 0.4374 0.32805 0.32805 0.54675 0.2187 0.76545 0.10935 0.2187 0.4374 0.4374 0.32805 0.6561 0.2187 0.8748 0.10935 0.10935 0.54675 0.32805 0.4374 0.54675 0.32805 0.9374 0.10935 0.76545 0.2187 0.2187 0.54675 0.4374 0.4374 0.6561 0.32805 0.8748 0.2187 0.10935 0.6561 0.32805 0.54675 0.54675 0.4374 0.9374 0.2187 0.76545 0.32805 0.2187 0.6561 0.4374 0.54675 0.6561 0.4374 0.8748 0.32805 0.10935 0.76545 0.32805 0.6561 0.54675 0.54675 0.9374 0.32805 0.76545 0.4374 0.2187 0.76545 0.4374 0.6561 0.6561 0.54675 0.8748 0.4374 0.10935 0.8748 0.32805 0.76545 0.54675 0.6561 0.9374 0.4374 0.76545 0.54675 0.2187 0.8748 0.10935 0.9374 0.4374 0.76545 0.6561 0.6561 0.8748 0.54675 0.32805 0.8748 0.2187 0.9374 0.54675 0.76545 0.9374 0.54675 0.76545 0.6561 0.4374 0.8748 0.32805 0.9374 0.6561 0.76545 0.8748 0.6561 0.54675 0.8748 0.4374 0.9374 0.9374 0.6561 0.76545 0.76545 0.6561 0.8748 0.54675 0.9374 0.8748 0.76545 0.9374 0.76545 0.76545 0.8748 0.6561 0.9374 0.8748 0.8748 0.76545 0.9374 0.9374 0.8748 0.8748 0.9374 0.9374 0.9374 64 60 55 92 88 82 65 59 56 93 87 77 93 77 83 37 35 1 94 80 86 38 5 4 94 89 80 66 61 52 66 52 57 38 4 34 38 34 36 95 25 24 95 89 94 95 90 89 39 36 35 95 24 90 67 62 58 67 58 63 40 1 12 96 91 87 96 87 93 68 63 59 40 37 1 97 83 88 69 56 60 69 60 64 41 38 36 97 93 83 69 65 56 98 94 86 70 9 8 41 36 39 70 8 61 42 39 35 42 35 37 70 61 66 98 86 91 99 25 95 42 37 40 99 26 25 99 27 26 43 40 12 99 95 94 71 66 57 99 94 98 100 19 20 71 57 62 44 6 5 100 92 19 100 88 92 100 97 88 44 5 38 101 96 93 101 93 97 72 67 63 72 63 68 45 39 42 73 16 17 45 41 39 73 64 16 73 69 64 102 91 96 46 42 40 102 98 91 74 59 65 74 68 59 46 40 43 103 28 27 103 27 99 103 99 98 103 98 102 47 43 12 104 97 100 75 70 66 104 101 97 75 66 71 76 62 67 48 38 41 105 104 100 48 44 38 105 100 20 76 71 62 49 42 46 76 67 72 106 96 101 77 72 68 106 102 96 49 45 42 77 68 74 107 29 28 78 65 69 50 43 47 107 28 103 107 103 102 78 74 65 50 46 43 107 102 106 108 106 101 79 10 9 51 47 12 108 101 104 52 7 6 52 44 48 109 106 108 79 9 70 109 29 107 109 107 106 110 105 20 52 6 44 110 20 21 53 48 41 110 21 22 80 75 71 110 104 105 80 71 76 110 108 104 111 30 29 111 31 30 111 29 109 53 41 45 111 109 108 111 108 110 81 76 72 54 46 50 81 72 77 112 31 111 82 17 18 112 110 22 82 78 69 112 22 31 54 49 46 112 111 110 82 73 17 55 51 12 82 69 73 55 12 14 55 14 15 83 77 74 83 74 78 84 79 70 56 50 47 57 48 53 84 70 75 85 11 10 57 52 48 85 2 11 85 23 2 58 45 49 85 79 84 85 10 79 86 80 76 58 49 54 58 53 45 86 76 81 59 50 56 13 31 22 87 81 77 32 3 1 59 54 50 60 47 51 60 56 47 60 51 55 88 78 82 88 83 78 61 7 52 61 8 7 33 32 1 89 84 75 34 4 3 89 75 80 90 23 85 62 57 53 34 3 32 90 24 23 34 32 33 62 53 58 90 84 89 90 85 84 35 33 1 63 58 54 63 54 59 91 86 81 91 81 87 64 15 16 36 33 35 92 82 18 64 55 15 92 18 19 36 34 33 +25 24 1 0.432415365345743 +-1.9974984355436 -0.100000000005148 18 1.9974984355438 -0.100000000001287 18 -1.96687234926515 -0.362509533248712 18 -1.90190014196099 -0.618688815163767 18 -1.80371637800495 -0.864064365494093 18 -1.67403557203791 -1.09435136201849 18 -1.51512224959358 -1.3055284634149 18 -1.32975140326736 -1.49390803114131 18 -1.12116003495463 -1.65620052409741 18 -0.892990630342709 -1.78957194158831 18 -0.649227552721932 -1.8916933115034 18 -0.39412746682639 -1.96078135953324 18 -0.132145007664349 -1.99562964924592 18 0.132145007668214 -1.99562964924566 18 0.394127466830184 -1.96078135953248 18 0.649227552725591 -1.89169331150214 18 0.892990630346169 -1.78957194158658 18 1.12116003495782 -1.65620052409524 18 1.32975140327025 -1.49390803113873 18 1.51512224959611 -1.30552846341197 18 1.67403557204003 -1.09435136201525 18 1.80371637800662 -0.864064365490604 18 1.90190014196219 -0.618688815160088 18 1.96687234926585 -0.362509533244908 18 9.9475983006414e-014 -1.0478148246236 18 -1.99749843554356 -0.100000000005147 1.99749843554375 -0.100000000001291 -1.96687234926515 -0.362509533248712 -1.901900141961 -0.618688815163767 -1.80371637800495 -0.864064365494092 -1.67403557203791 -1.09435136201849 -1.51512224959358 -1.3055284634149 -1.32975140326736 -1.49390803114131 -1.12116003495462 -1.65620052409741 -0.892990630342706 -1.78957194158831 -0.649227552721932 -1.8916933115034 -0.394127466826389 -1.96078135953324 -0.132145007664352 -1.99562964924592 0.132145007668212 -1.99562964924566 0.394127466830181 -1.96078135953248 0.64922755272559 -1.89169331150214 0.892990630346167 -1.78957194158658 1.12116003495783 -1.65620052409524 1.32975140327025 -1.49390803113873 1.51512224959611 -1.30552846341197 1.67403557204002 -1.09435136201525 1.80371637800662 -0.864064365490604 1.90190014196219 -0.618688815160088 1.96687234926585 -0.362509533244908 9.65894031423886e-014 -1.0478148246236 25 8 9 10 25 9 8 25 7 10 11 25 12 25 11 25 3 4 4 5 25 25 5 6 25 6 7 3 25 1 12 13 25 25 14 15 16 25 15 25 17 18 16 17 25 18 19 25 25 20 21 20 25 19 25 21 22 24 25 23 2 25 24 23 25 22 25 2 1 14 25 13 +49 48 1 0.432956900116958 +2 0 18 1.98288972274762 0.261052384440103 18 1.93185165257814 0.517638090205042 18 1.84775906502257 0.76536686473018 18 1.73205080756888 1 18 1.58670668058247 1.21752285801744 18 1.41421356237309 1.4142135623731 18 1.21752285801744 1.58670668058247 18 1 1.73205080756888 18 0.765366864730176 1.84775906502257 18 0.51763809020504 1.93185165257814 18 0.261052384440099 1.98288972274762 18 0 2 18 -0.261052384440106 1.98288972274762 18 -0.517638090205047 1.93185165257814 18 -0.765366864730183 1.84775906502257 18 -1 1.73205080756888 18 -1.21752285801745 1.58670668058247 18 -1.4142135623731 1.41421356237309 18 -1.58670668058247 1.21752285801744 18 -1.73205080756888 0.999999999999999 18 -1.84775906502257 0.765366864730179 18 -1.93185165257814 0.517638090205041 18 -1.98288972274762 0.261052384440103 18 -2 2.44921270764475e-016 18 -1.98288972274762 -0.261052384440103 18 -1.93185165257814 -0.517638090205041 18 -1.84775906502257 -0.765366864730178 18 -1.73205080756888 -0.999999999999999 18 -1.58670668058247 -1.21752285801744 18 -1.4142135623731 -1.41421356237309 18 -1.21752285801745 -1.58670668058247 18 -1 -1.73205080756888 18 -0.765366864730183 -1.84775906502257 18 -0.517638090205047 -1.93185165257814 18 -0.261052384440106 -1.98288972274762 18 -7.105427357601e-015 -2 18 0.261052384440099 -1.98288972274762 18 0.51763809020504 -1.93185165257814 18 0.765366864730176 -1.84775906502258 18 0.999999999999993 -1.73205080756888 18 1.21752285801744 -1.58670668058247 18 1.41421356237309 -1.4142135623731 18 1.58670668058247 -1.21752285801745 18 1.73205080756888 -1.00000000000001 18 1.84775906502257 -0.765366864730186 18 1.93185165257813 -0.517638090205048 18 1.98288972274762 -0.26105238444011 18 0 0 18 2 0 1.98288972274762 0.261052384440103 1.93185165257814 0.517638090205042 1.84775906502257 0.76536686473018 1.73205080756888 1 1.58670668058247 1.21752285801744 1.41421356237309 1.4142135623731 1.21752285801744 1.58670668058247 0.999999999999999 1.73205080756888 0.765366864730178 1.84775906502257 0.51763809020504 1.93185165257814 0.261052384440102 1.98288972274762 -1.55431223447522e-015 2 -0.261052384440105 1.98288972274762 -0.517638090205043 1.93185165257814 -0.765366864730181 1.84775906502257 -1 1.73205080756888 -1.21752285801744 1.58670668058247 -1.4142135623731 1.41421356237309 -1.58670668058247 1.21752285801744 -1.73205080756888 0.999999999999999 -1.84775906502257 0.765366864730179 -1.93185165257814 0.517638090205041 -1.98288972274762 0.261052384440103 -2 4.44089209850063e-016 -1.98288972274762 -0.261052384440103 -1.93185165257814 -0.517638090205041 -1.84775906502257 -0.765366864730178 -1.73205080756888 -0.999999999999999 -1.58670668058247 -1.21752285801744 -1.4142135623731 -1.41421356237309 -1.21752285801744 -1.58670668058247 -1 -1.73205080756888 -0.765366864730182 -1.84775906502257 -0.517638090205045 -1.93185165257814 -0.261052384440107 -1.98288972274762 -3.99680288865056e-015 -2 0.261052384440099 -1.98288972274762 0.517638090205037 -1.93185165257814 0.765366864730175 -1.84775906502258 0.999999999999996 -1.73205080756888 1.21752285801744 -1.58670668058247 1.41421356237309 -1.4142135623731 1.58670668058247 -1.21752285801745 1.73205080756887 -1.00000000000001 1.84775906502257 -0.765366864730186 1.93185165257813 -0.517638090205048 1.98288972274762 -0.26105238444011 0 0 49 29 30 28 29 49 49 25 26 49 26 27 30 31 49 35 49 34 31 32 49 49 32 33 34 49 33 27 28 49 36 49 35 23 49 22 23 24 49 21 49 20 19 20 49 24 25 49 19 49 18 18 49 17 16 49 15 14 15 49 22 49 21 49 16 17 49 36 37 49 38 39 49 39 40 49 41 42 41 49 40 49 42 43 38 49 37 44 45 49 45 46 49 48 49 47 49 46 47 49 43 44 49 48 1 9 49 8 49 10 11 49 12 13 10 49 9 12 49 11 49 2 3 3 4 49 8 49 7 6 7 49 6 49 5 4 5 49 2 49 1 49 13 14 +21 19 1 2.55484522426741e-012 +0 0 49 0 4.9 49 0 4.89999999999485 10.9974984355436 0 0 0 0 3 9 0 3.03602815259365 9.37790816688091 0 3.14281458259529 9.74220100065904 0 3.31651197220988 10.0797537035303 0 3.55086232537928 10.3784048752072 0 3.83742243181913 10.6273946657043 0 4.16586806028734 10.8177524328553 0 4.52436592156276 10.9426199379779 0 4.9 0 0 4.89999999999869 7.0025015644562 0 4.52436592156602 7.05738006202132 0 4.16586806028996 7.18224756714354 0 3.83742243182108 7.37260533429436 0 3.55086232538061 7.62159512479145 0 3.31651197221066 7.92024629646851 0 3.14281458259564 8.25779899934007 0 3.03602815259374 8.62209183311862 49 0 49 -4.9 10.9974984355436 -4.9 0 0 9.00000000000001 -3 9.37790816688091 -3.03602815259365 9.74220100065905 -3.14281458259529 10.0797537035303 -3.31651197220989 10.3784048752072 -3.55086232537928 10.6273946657042 -3.83742243181912 10.8177524328553 -4.16586806028734 10.9426199379779 -4.52436592156276 0 -4.9 7.00250156445625 -4.89999999999869 7.05738006202133 -4.52436592156602 7.18224756714355 -4.16586806028995 7.37260533429436 -3.83742243182107 7.62159512479146 -3.5508623253806 7.92024629646852 -3.31651197221065 8.25779899934006 -3.14281458259565 8.62209183311862 -3.03602815259374 15 13 14 16 4 13 16 13 15 17 4 16 18 4 17 19 4 18 20 4 19 21 4 20 5 4 21 6 4 5 1 3 2 1 8 9 1 9 10 1 10 11 1 11 12 1 12 3 1 4 6 1 6 7 1 7 8 +38 36 1 1.83151271926363e-011 +35 -5 80 35 -0.0999999999999996 80 25.999807691596 -0.100000000041546 80 35.6510869399611 -4.99999999993359 80 -25.999807691596 -0.100000000023211 80 -25.5409402183473 -4.8641929199829 80 -24.2165487102836 -9.46354946954159 80 -22.071513765846 -13.7422079770345 80 -19.1785257121742 -17.5551744937917 80 -15.6356212962116 -20.7732363073608 80 -11.562861443627 -23.2873406647364 80 -7.09826266870315 -25.0122903206823 80 -2.39312001040355 -25.8896306774702 80 2.39312001038516 -25.8896306774719 80 7.09826266868539 -25.0122903206873 80 11.5628614436105 -23.2873406647446 80 15.6356212961968 -20.7732363073719 80 19.1785257121617 -17.5551744938053 80 22.0715137658363 -13.7422079770501 80 24.2165487102769 -9.46354946955878 80 25.5409402183438 -4.86419292000104 80 -35.9998611108431 -0.100000000016742 80 -35.4234052407971 -6.41734845136737 80 -33.7470419009635 -12.5354362881638 80 -31.0228226811606 -18.2642950286418 80 -27.3353354138915 -23.4260418724557 80 -22.799077696506 -27.8604030155466 80 -17.5549017060977 -31.4296902003384 80 -11.7656406967119 -34.0230759778695 80 -5.6110529774522 -35.5600349336755 80 0.717759637503441 -35.9928440263168 80 7.02428559815706 -35.3080644022796 80 13.112705361882 -33.5269586764513 80 18.7939716495755 -30.7048307214834 80 23.8916794209767 -26.9293084657828 80 28.2475433046356 -22.3176230197738 80 31.7263124066744 -17.0129686143865 80 34.2199698920376 -11.1800563767828 80 35 -5 35 -0.100000000000001 25.9998076915963 -0.100000000000001 35.6510869399611 -5 -25.9998076915964 -0.100000000023279 -25.5409402183473 -4.86419291998283 -24.2165487102837 -9.46354946954146 -22.071513765846 -13.7422079770345 -19.1785257121742 -17.5551744937917 -15.6356212962117 -20.7732363073608 -11.5628614436269 -23.2873406647364 -7.09826266870308 -25.0122903206823 -2.39312001040354 -25.8896306774702 2.39312001038509 -25.8896306774719 7.0982626686855 -25.0122903206873 11.5628614436105 -23.2873406647445 15.6356212961968 -20.7732363073719 19.1785257121617 -17.5551744938053 22.0715137658363 -13.74220797705 24.2165487102769 -9.46354946955874 25.5409402183438 -4.86419292000104 -35.9998611108431 -0.100000000016607 -35.4234052407971 -6.41734845136731 -33.7470419009635 -12.5354362881637 -31.0228226811605 -18.2642950286419 -27.3353354138915 -23.4260418724558 -22.799077696506 -27.8604030155467 -17.5549017060977 -31.4296902003384 -11.765640696712 -34.0230759778694 -5.61105297745204 -35.5600349336756 0.717759637503534 -35.9928440263168 7.02428559815709 -35.3080644022796 13.1127053618819 -33.5269586764513 18.7939716495754 -30.7048307214835 23.8916794209768 -26.9293084657827 28.2475433046356 -22.3176230197738 31.7263124066744 -17.0129686143865 34.2199698920375 -11.1800563767829 38 21 20 38 20 37 1 21 38 1 3 21 4 1 38 2 3 1 9 26 27 10 27 28 10 9 27 8 25 26 8 26 9 11 28 29 11 10 28 7 24 25 7 25 8 12 29 30 12 11 29 6 23 24 6 24 7 13 30 31 13 12 30 5 22 23 5 23 6 14 31 32 14 13 31 15 32 33 15 14 32 16 33 34 16 15 33 17 16 34 35 17 34 18 17 35 36 18 35 19 18 36 37 19 36 20 19 37 +4 2 1 2.33484984684976e-011 +181 4.02455846426619e-016 163 171.999807691596 -4.15459888714054e-011 163 181 -5.15018583335802e-012 124.997498435544 171.999807691597 -2.99760216648792e-015 124.997498415981 163 181 163 171.999807691596 124.997498435544 181 124.997498415981 171.999807691596 2 3 4 1 3 2 +4 2 1 2.21366628731324e-011 +0 0 0 0 0 49 0.651086939961097 6.64099886193981e-011 49 0.651086939951803 0 0 0 0 49 0 49 0.6510869399611 0 0.651086939951783 2 4 1 3 4 2 +20 18 1 0.00851393649632897 +2 0 2.5 0.10000000000515 1.9974984355436 2.5 1.96397184740635 0.377908166880914 2.5 1.85718541740471 0.742201000659037 2.5 1.68348802779012 1.0797537035303 2.5 1.44913767462072 1.3784048752072 2.5 1.16257756818087 1.6273946657043 2.5 0.83413193971266 1.8177524328553 2.5 0.47563407843724 1.9426199379779 2.5 0.100000000000003 1.997498415981 11.500192308403 2.00000000000001 0 11.5770372063686 0.429549660258915 1.9533272043716 11.5035485659744 0.733567793595612 1.8606122210538 11.5103505636694 1.01441289669009 1.7236491301258 11.5197966458993 1.24434088708489 1.5657633941248 11.5297937014854 1.44134526462006 1.3865510068013 11.5399822062475 1.61397341397726 1.1811392932851 11.5501427782275 1.76575571643699 0.939206632924197 11.5600287843314 1.8956126373809 0.637693882321599 11.5691949080695 1.96601671596105 0.367121741708303 11.5744377442291 0 2.5 1.52077546998655 2.5 0.19009693374832 2.5 0.38019386749664 2.5 0.57029080124496 2.5 0.76038773499327 2.5 0.95048466874159 2.5 1.14058160248991 2.5 1.33067853623823 2.5 1.52077546998913 11.5001923097777 0 11.5770372063684 1.35433505032899 11.5035485659744 1.19524670146995 11.5103505636694 1.03885607362595 11.5197966458993 0.899284232049399 11.5297937014854 0.766024246319968 11.5399822062475 0.631764542160725 11.5501427782275 0.488841355192528 11.5600287843314 0.324512698006962 11.5691949080695 0.184607660048944 11.5744377442291 20 1 3 20 11 1 19 3 4 19 20 3 18 4 5 18 19 4 17 5 6 17 18 5 16 17 6 15 6 7 15 16 6 14 7 8 14 15 7 13 8 9 13 14 8 12 9 2 12 13 9 10 12 2 +6 4 1 3.05866443284231e-014 +0 0 0 0 4.9 0 0.999861110843199 4.89999999999974 0 0.651086939951803 0 0 0.841680696975843 1.6274750088355 0 0.958019095684357 3.26193707985039 0 0 0 0 4.9 0.999861110843199 4.9 0.651086939951783 0 0.841680696975835 1.62747500883538 0.958019095684364 3.2619370798505 5 1 4 2 5 6 2 1 5 3 2 6 +20 18 1 0.00704801499928241 +0.10000000000131 -1.9974984355438 2.5 2 0 2.5 0.47563407843398 -1.94261993797868 2.5 0.83413193971004 -1.81775243285646 2.5 1.16257756817892 -1.62739466570564 2.5 1.44913767461939 -1.37840487520855 2.5 1.68348802778934 -1.07975370353149 2.5 1.85718541740436 -0.742201000659932 2.5 1.96397184740626 -0.377908166881383 2.5 0.100000000000026 -1.99749843022801 11.500192308403 2.00000000000001 0 11.5770372063686 1.97344443351199 -0.324833821476403 11.5750020817537 1.89815907034527 -0.630071620898804 11.5693811840114 1.78295255053717 -0.906134872884003 11.5612051128646 1.61350022919096 -1.1817844621996 11.5501133555133 1.40103254827332 -1.427272742894 11.5377753751311 1.17748926053471 -1.6166381946671 11.526676781053 0.909694314196755 -1.7811384801457 11.5159192152899 0.604787288985817 -1.9063662274409 11.5070349481577 0.383613539443279 -1.9628653808323 11.5028301446998 4.76240983719111 2.5 6.28318530717958 2.5 4.95250677093967 2.5 5.14260370468823 2.5 5.33270063843679 2.5 5.52279757218535 2.5 5.71289450593391 2.5 5.90299143968246 2.5 6.09308837343102 2.5 4.76240983719046 11.500192308739 6.28318530717959 11.5770372063684 6.12004571371554 11.5750020817537 5.96269089323406 11.5693811840114 5.81298211968398 11.5612051128646 5.65102082404484 11.5501133555133 5.48850968341596 11.5377753751312 5.34189387590886 11.526676781053 5.18458960676189 11.5159192152899 5.01959185193863 11.5070349481577 4.90539175559796 11.5028301446998 20 1 3 20 10 1 19 3 4 19 20 3 18 4 5 18 19 4 17 18 5 16 5 6 16 17 5 15 6 7 15 16 6 14 7 8 14 15 7 13 8 9 13 14 8 12 9 2 12 13 9 11 12 2 +12 10 1 2.20098650420121e-009 +181.999861110843 -4.42559877633641e-011 103 181.999861110843 -2.59875454489134e-013 114 183.001250195374 -1.05499914360152e-011 103 181 3.60822483003176e-016 114 183.001250195374 -1.05479930345709e-011 100 181 -1.30970234657468e-012 121.002501564456 185.002501564456 -1.30999378011865e-012 100 171.999807691597 -2.59930965640365e-014 121.002501569772 185.002501564456 -1.30999378011865e-012 93 171.999807691596 -4.15459888714054e-011 83 181.999861110843 -4.42559877633641e-011 93 181.999861110843 -4.42559877633641e-011 83 103 181.999861110843 114 181.999861110843 103 183.001250195374 114 181 100 183.001250195374 121.002501564456 181 100 185.002501564456 121.002501564456 171.999807691261 93 185.002501564456 83 171.999807691596 93 181.999861110843 83 181.999861110843 11 12 10 5 9 11 1 11 10 1 5 11 7 9 5 3 5 1 8 1 10 4 1 8 2 1 4 6 4 8 +57 55 1 0.110369322528982 +25.9229627936314 -2.00000000000001 45 25.999807691597 -0.100000000000026 43.002501569772 25.9249979182463 -1.97344443351199 44.6751661785236 25.9306188159886 -1.89815907034527 44.3699283791012 25.9387948871354 -1.78295255053717 44.093865127116 25.9498866444867 -1.61350022919096 43.8182155378004 25.9622246248689 -1.40103254827332 43.572727257106 25.973323218947 -1.17748926053471 43.3833618053329 25.9840807847101 -0.909694314196755 43.2188615198543 25.9929650518423 -0.604787288985817 43.0936337725591 25.9971698553002 -0.383613539443279 43.0371346191677 25.999807691596 -0.100000000041546 5 25.999807691597 -0.100000000000003 46.997498415981 25.9964514340256 -0.429549660258915 46.9533272043716 25.9896494363306 -0.733567793595612 46.8606122210538 25.9802033541007 -1.01441289669009 46.7236491301258 25.9702062985146 -1.24434088708489 46.5657633941248 25.9600177937525 -1.44134526462006 46.3865510068013 25.9498572217725 -1.61397341397726 46.1811392932851 25.9399712156686 -1.76575571643699 45.9392066329242 25.9308050919305 -1.8956126373809 45.6376938823216 25.9255622557709 -1.96601671596105 45.3671217417083 -25.9998076915964 -0.100000000023234 5 -25.5409402183473 -4.8641929199829 5 -24.2165487102836 -9.46354946954159 5 -22.071513765846 -13.7422079770345 5 -19.1785257121742 -17.5551744937917 5 -15.6356212962116 -20.7732363073608 5 -11.562861443627 -23.2873406647364 5 -7.09826266870315 -25.0122903206823 5 -2.39312001040355 -25.8896306774702 5 2.39312001038516 -25.8896306774719 5 7.09826266868539 -25.0122903206873 5 11.5628614436105 -23.2873406647446 5 15.6356212961968 -20.7732363073719 5 19.1785257121617 -17.5551744938053 5 22.0715137658363 -13.7422079770501 5 24.2165487102769 -9.46354946955878 5 25.5409402183438 -4.86419292000104 5 25.999807691596 -0.100000000041546 85 -25.999807691596 -0.100000000023211 85 -25.5409402183473 -4.8641929199829 85 -24.2165487102836 -9.46354946954159 85 -22.071513765846 -13.7422079770345 85 -19.1785257121742 -17.5551744937917 85 -15.6356212962116 -20.7732363073608 85 -11.562861443627 -23.2873406647364 85 -7.09826266870315 -25.0122903206823 85 -2.39312001040355 -25.8896306774702 85 2.39312001038516 -25.8896306774719 85 7.09826266868539 -25.0122903206873 85 11.5628614436105 -23.2873406647446 85 15.6356212961968 -20.7732363073719 85 19.1785257121617 -17.5551744938053 85 22.0715137658363 -13.7422079770501 85 24.2165487102769 -9.46354946955878 85 25.5409402183438 -4.86419292000104 85 6.20618616652276 45 6.27933914385074 43.0025015697718 6.20721052944042 44.6751661785236 6.21011418058106 44.3699283791012 6.21455634879056 44.093865127116 6.22108770453001 43.8182155378004 6.2292733278528 43.572727257106 6.23788176337236 43.3833618053329 6.24818992174034 43.2188615198543 6.25992215942341 43.0936337725591 6.26843040490557 43.0371346191677 6.27933914385074 5 6.27933914385074 46.9974984159807 6.26666341473735 46.9533272043716 6.25496741667175 46.8606122210538 6.24415952116695 46.7236491301258 6.23530775307874 46.5657633941248 6.22772051710355 46.3865510068013 6.22106946995824 46.1811392932851 6.21521931110303 45.9392066329242 6.210212382007 45.6376938823216 6.20749703425328 45.3671217417083 3.14543881691953 5 3.32978589497421 5 3.51413297302889 5 3.69848005108358 5 3.88282712913826 5 4.06717420719294 5 4.25152128524763 5 4.43586836330231 5 4.62021544135699 5 4.80456251941167 5 4.98890959746636 5 5.17325667552104 5 5.35760375357572 5 5.5419508316304 5 5.72629790968509 5 5.91064498773977 5 6.09499206579445 5 6.27933914385074 85 3.14543881691864 85 3.32978589497421 85 3.51413297302889 85 3.69848005108358 85 3.88282712913826 85 4.06717420719294 85 4.25152128524763 85 4.43586836330231 85 4.62021544135699 85 4.80456251941167 85 4.98890959746636 85 5.17325667552104 85 5.35760375357572 85 5.5419508316304 85 5.72629790968509 85 5.91064498773977 85 6.09499206579445 85 7 6 12 8 7 12 42 23 24 42 41 23 9 8 12 43 24 25 43 25 26 43 42 24 44 26 27 10 9 12 44 43 26 45 27 28 45 44 27 11 10 12 46 28 29 46 45 28 57 21 20 47 29 30 57 22 21 47 46 29 57 1 22 57 56 39 57 39 1 2 11 12 48 47 30 49 30 31 49 48 30 40 14 13 40 15 14 40 16 15 40 17 16 40 18 17 40 19 18 50 31 32 40 20 19 40 57 20 50 49 31 51 32 33 51 33 34 51 50 32 52 51 34 53 52 34 53 34 35 53 35 36 54 53 36 54 36 37 55 54 37 55 37 38 56 55 38 56 38 39 1 39 3 4 3 39 5 4 39 5 39 12 6 5 12 +40 38 1 0.242737139753143 +35.6510869399518 -5 31 35.9998611108432 -0.10000000000026 31 35.8416806969758 -3.3725249911645 31 35.9580190956844 -1.73806292014961 31 35.999861110843 -0.100000000044256 20 35.6510869399611 -4.99999999993359 80 -35.9998611108433 -0.099999999976023 20 -35.3707121006953 -6.70169571748306 20 -33.5413001467006 -13.0759773810199 20 -30.5737041623727 -19.0065413421725 20 -26.5686259792767 -24.2921409837277 20 -21.6619731504381 -28.7534157836891 20 -16.0202470895691 -32.2389777007453 20 -9.83489304410836 -34.6305483469573 20 -3.31580362900245 -35.8469726238339 20 3.31580362893439 -35.8469726238402 20 9.83489304404262 -34.630548346976 20 16.0202470895079 -32.2389777007757 20 21.6619731503835 -28.7534157837302 20 26.5686259792306 -24.2921409837781 20 30.5737041623367 -19.0065413422305 20 33.5413001466758 -13.0759773810836 20 35.3707121006825 -6.70169571755021 20 -35.9998611108431 -0.100000000016742 80 -35.4234052407971 -6.41734845136737 80 -33.7470419009635 -12.5354362881638 80 -31.0228226811606 -18.2642950286418 80 -27.3353354138915 -23.4260418724557 80 -22.799077696506 -27.8604030155466 80 -17.5549017060977 -31.4296902003384 80 -11.7656406967119 -34.0230759778695 80 -5.6110529774522 -35.5600349336755 80 0.717759637503441 -35.9928440263168 80 7.02428559815706 -35.3080644022796 80 13.112705361882 -33.5269586764513 80 18.7939716495755 -30.7048307214834 80 23.8916794209767 -26.9293084657828 80 28.2475433046356 -22.3176230197738 80 31.7263124066744 -17.0129686143865 80 34.2199698920376 -11.1800563767828 80 6.14384596642182 31 6.28040752582954 31 6.18936648622439 31 6.23488700602697 31 6.28040752582955 20 6.14384596642182 80 3.14437043493916 20 3.32884320499146 20 3.51331597504377 20 3.69778874509607 20 3.88226151514837 20 4.06673428520068 20 4.25120705525298 20 4.43567982530528 20 4.62015259535759 20 4.80462536540989 20 4.98909813546219 20 5.1735709055145 20 5.3580436755668 20 5.5425164456191 20 5.72698921567141 20 5.91146198572371 20 6.09593475577601 20 3.14437043494029 80 3.32081017208637 80 3.49724990923245 80 3.67368964637854 80 3.85012938352462 80 4.0265691206707 80 4.20300885781678 80 4.37944859496286 80 4.55588833210895 80 4.73232806925503 80 4.90876780640111 80 5.08520754354719 80 5.26164728069327 80 5.43808701783936 80 5.61452675498544 80 5.79096649213152 80 5.9674062292776 80 25 7 8 25 24 7 26 8 9 26 25 8 27 9 10 27 26 9 28 10 11 28 27 10 29 11 12 29 28 11 30 12 13 30 29 12 31 13 14 31 30 13 32 14 15 32 31 14 33 15 16 33 32 15 34 16 17 34 33 16 35 17 18 35 34 17 36 18 19 36 35 18 37 19 20 37 36 19 38 20 21 38 37 20 39 38 21 39 21 22 1 22 23 3 1 23 40 39 22 40 22 1 5 3 23 4 3 5 2 4 5 6 40 1 +10 8 1 2.39774652309046e-011 +120.000192308404 -2.32109886866283e-011 163 110.000138889157 -1.67419966778937e-011 163 120.000192308404 -2.32339980588137e-011 83 110.000138889157 2.39770009402562e-011 103 110.000138889157 -2.3967994255969e-011 83 108.998749804626 -1.20869980690941e-011 103 110.000138889157 2.39770009402562e-011 93 108.998749804626 -1.20889964705384e-011 100 106.997498435544 -5.14899234360655e-012 93 106.997498435544 -5.14699394216223e-012 100 163 120.000192308404 163 110.000138889157 83 120.000192308404 103 110.000138889157 83 110.000138889157 103 108.998749804626 93 110.000138889157 100 108.998749804626 93 106.997498435544 100 106.997498435544 3 5 7 8 7 9 8 9 10 4 8 6 4 3 7 4 7 8 1 4 2 1 3 4 +108 108 1 1.91777149716188e-011 +0 -45 10 -0.69459271066771 -44.9392310120488 10 -1.36808057330266 -44.7587704831436 10 -1.99999999999999 -44.4641016151378 10 -2.57115043874615 -44.0641777724759 10 -3.06417777247591 -43.5711504387462 10 -3.46410161513775 -43 10 -3.75877048314363 -42.3680805733027 10 -3.93923101204883 -41.6945927106677 10 -4 -41 10 -3.93923101204883 -40.3054072893323 10 -3.75877048314364 -39.6319194266973 10 -3.46410161513776 -39 10 -3.06417777247592 -38.4288495612539 10 -2.57115043874617 -37.9358222275241 10 -2.00000000000001 -37.5358983848623 10 -1.36808057330269 -37.2412295168564 10 -0.694592710667739 -37.0607689879512 10 -1.87432534770604e-014 -37 10 0.694592710667702 -37.0607689879512 10 1.36808057330266 -37.2412295168564 10 1.99999999999998 -37.5358983848622 10 2.57115043874614 -37.9358222275241 10 3.0641777724759 -38.4288495612538 10 3.46410161513774 -39 10 3.75877048314363 -39.6319194266973 10 3.93923101204883 -40.3054072893323 10 4 -41 10 3.93923101204884 -41.6945927106677 10 3.75877048314364 -42.3680805733026 10 3.46410161513777 -43 10 3.06417777247593 -43.5711504387461 10 2.57115043874618 -44.0641777724759 10 2.00000000000002 -44.4641016151377 10 1.3680805733027 -44.7587704831436 10 0.69459271066775 -44.9392310120488 10 -35.9998611108433 -0.099999999976023 10 35.999861110843 -0.100000000044256 10 -35.3707121006953 -6.70169571748306 10 -33.5413001467006 -13.0759773810199 10 -30.5737041623727 -19.0065413421725 10 -26.5686259792767 -24.2921409837277 10 -21.6619731504381 -28.7534157836891 10 -16.0202470895691 -32.2389777007453 10 -9.83489304410836 -34.6305483469573 10 -3.31580362900245 -35.8469726238339 10 3.31580362893439 -35.8469726238402 10 9.83489304404262 -34.630548346976 10 16.0202470895079 -32.2389777007757 10 21.6619731503835 -28.7534157837302 10 26.5686259792306 -24.2921409837781 10 30.5737041623367 -19.0065413422305 10 33.5413001466758 -13.0759773810836 10 35.3707121006825 -6.70169571755021 10 -37.0012501953739 -0.100000000012087 10 37.0012501953738 -0.10000000001055 10 -44.9987498046262 -0.10000000001045 10 -37.0852779417677 -0.821554141118971 10 -37.2984183696759 -1.51601234627146 10 -37.6336418274969 -2.16047047062017 10 -38.079892204758 -2.73367343773295 10 -38.6224515771779 -3.21671625996699 10 -39.2434256231645 -3.59366754982219 10 -39.9223338020727 -3.85209495805139 10 -40.6367848293676 -3.98347520888765 10 -41.3632151706341 -3.9834752088875 10 -42.0776661979289 -3.85209495805094 10 -42.756574376837 -3.59366754982146 10 -43.3775484228235 -3.21671625996601 10 -43.9201077952432 -2.73367343773174 10 -44.366358172504 -2.16047047061878 10 -44.7015816303247 -1.51601234626993 10 -44.9147220582326 -0.821554141117353 10 44.9987498046261 -0.100000000012087 10 44.9147220582323 -0.821554141118955 10 44.7015816303241 -1.51601234627144 10 44.3663581725031 -2.16047047062015 10 43.9201077952421 -2.73367343773293 10 43.3775484228222 -3.21671625996697 10 42.7565743768355 -3.59366754982217 10 42.0776661979273 -3.85209495805138 10 41.3632151706325 -3.98347520888764 10 40.636784829366 -3.9834752088875 10 39.9223338020712 -3.85209495805096 10 39.2434256231631 -3.59366754982149 10 38.6224515771766 -3.21671625996605 10 38.0798922047569 -2.7336734377318 10 37.6336418274961 -2.16047047061885 10 37.2984183696754 -1.51601234627002 10 37.0852779417674 -0.821554141117453 10 -45.9998913042195 -0.0999999999755795 10 45.9998913042193 -0.100000000045832 10 -45.2004662060348 -8.53919520546915 10 -42.8660389105125 -16.6884004063431 10 -39.0758862775817 -24.2708696099151 10 -33.9587214181489 -31.0291031073178 10 -27.6883226128972 -36.7335921315099 10 -20.4776318235395 -41.1906129463931 10 -12.5715232103451 -44.2488056807385 10 -4.23848723618501 -45.8043144905444 10 4.23848723611522 -45.8043144905509 10 12.5715232102777 -44.2488056807576 10 20.4776318234767 -41.1906129464243 10 27.6883226128412 -36.7335921315521 10 33.9587214181016 -31.0291031073695 10 39.0758862775447 -24.2708696099747 10 42.866038910487 -16.6884004064084 10 45.2004662060218 -8.53919520553807 10 1.4210854715202e-014 -45 -0.694592710667699 -44.9392310120488 -1.36808057330268 -44.7587704831436 -1.99999999999999 -44.4641016151378 -2.57115043874614 -44.0641777724759 -3.06417777247592 -43.5711504387462 -3.46410161513775 -43 -3.75877048314363 -42.3680805733027 -3.93923101204883 -41.6945927106677 -4 -41 -3.93923101204884 -40.3054072893323 -3.75877048314364 -39.6319194266973 -3.46410161513775 -39 -3.06417777247592 -38.4288495612538 -2.57115043874617 -37.9358222275241 -2.00000000000003 -37.5358983848623 -1.36808057330268 -37.2412295168564 -0.694592710667735 -37.0607689879512 -2.8421709430404e-014 -37 0.694592710667685 -37.0607689879512 1.36808057330266 -37.2412295168564 1.99999999999998 -37.5358983848622 2.57115043874613 -37.9358222275241 3.06417777247591 -38.4288495612538 3.46410161513775 -39 3.75877048314362 -39.6319194266973 3.93923101204882 -40.3054072893322 4 -41 3.93923101204884 -41.6945927106677 3.75877048314365 -42.3680805733026 3.46410161513776 -43 3.06417777247592 -43.5711504387461 2.57115043874618 -44.0641777724759 2.00000000000004 -44.4641016151377 1.36808057330269 -44.7587704831436 0.694592710667749 -44.9392310120488 -35.9998611108433 -0.099999999976049 35.9998611108431 -0.100000000044204 -35.3707121006953 -6.70169571748296 -33.5413001467005 -13.07597738102 -30.5737041623727 -19.0065413421725 -26.5686259792768 -24.2921409837276 -21.6619731504379 -28.7534157836892 -16.0202470895691 -32.2389777007453 -9.83489304410845 -34.6305483469573 -3.31580362900229 -35.8469726238339 3.31580362893443 -35.8469726238402 9.83489304404256 -34.630548346976 16.020247089508 -32.2389777007756 21.6619731503835 -28.7534157837302 26.5686259792305 -24.2921409837782 30.5737041623368 -19.0065413422304 33.5413001466758 -13.0759773810835 35.3707121006825 -6.70169571755027 -37.0012501953739 -0.100000000000001 37.001250195374 -0.100000000000001 -44.9987498046262 -0.100000000010461 -37.0852779417677 -0.821554141118959 -37.2984183696759 -1.51601234627146 -37.6336418274969 -2.16047047062016 -38.079892204758 -2.73367343773295 -38.6224515771779 -3.21671625996698 -39.2434256231645 -3.59366754982219 -39.9223338020727 -3.85209495805139 -40.6367848293676 -3.98347520888765 -41.363215170634 -3.9834752088875 -42.0776661979289 -3.85209495805094 -42.756574376837 -3.59366754982147 -43.3775484228234 -3.21671625996607 -43.9201077952432 -2.7336734377317 -44.3663581725039 -2.16047047061891 -44.7015816303247 -1.5160123462699 -44.9147220582326 -0.821554141117538 44.9987498046261 -0.100000000012088 44.9147220582323 -0.821554141118938 44.7015816303241 -1.51601234627145 44.3663581725031 -2.16047047062015 43.9201077952421 -2.73367343773291 43.3775484228222 -3.21671625996697 42.7565743768355 -3.59366754982216 42.0776661979273 -3.85209495805138 41.3632151706325 -3.98347520888764 40.636784829366 -3.9834752088875 39.9223338020712 -3.85209495805096 39.2434256231631 -3.59366754982149 38.6224515771766 -3.21671625996606 38.0798922047569 -2.7336734377318 37.6336418274961 -2.16047047061885 37.2984183696754 -1.51601234627003 37.0852779417674 -0.821554141117439 -45.9998913042195 -0.100000000000001 45.999891304219 -0.100000000000001 -45.2004662060348 -8.53919520546929 -42.8660389105125 -16.6884004063429 -39.0758862775818 -24.270869609915 -33.9587214181488 -31.0291031073178 -27.6883226128974 -36.7335921315098 -20.4776318235396 -41.190612946393 -12.571523210345 -44.2488056807385 -4.23848723618521 -45.8043144905444 4.23848723611514 -45.8043144905509 12.5715232102777 -44.2488056807576 20.4776318234765 -41.1906129464243 27.6883226128412 -36.7335921315521 33.9587214181016 -31.0291031073695 39.0758862775446 -24.2708696099748 42.866038910487 -16.6884004064085 45.2004662060218 -8.53919520553796 42 96 97 43 42 97 43 97 98 41 96 42 41 95 96 44 43 98 44 98 99 6 100 5 40 95 41 40 94 95 69 70 93 71 93 70 7 100 6 4 5 100 68 69 93 8 100 7 8 99 100 3 4 100 91 93 71 91 71 72 67 68 93 73 91 72 9 99 8 2 3 100 66 67 93 57 91 73 10 99 9 1 2 100 65 66 93 45 44 99 11 45 99 11 99 10 12 45 11 13 45 12 39 94 40 39 63 64 39 64 65 39 65 93 39 93 94 62 63 39 101 34 35 101 35 36 101 36 1 101 1 100 33 34 101 61 62 39 32 33 101 60 61 39 31 32 101 46 13 14 46 14 15 46 15 16 46 45 13 59 60 39 17 46 16 30 31 101 18 46 17 19 46 18 37 59 39 37 55 58 37 58 59 47 19 20 47 20 21 47 21 22 47 22 23 47 23 24 47 24 25 47 46 19 102 27 28 102 30 101 102 28 29 102 29 30 48 47 25 48 25 26 48 26 27 48 27 102 49 102 103 49 48 102 50 103 104 50 49 103 51 50 104 105 51 104 52 51 105 106 52 105 53 52 106 107 53 106 54 53 107 86 87 54 88 54 87 85 86 54 89 54 88 38 54 89 84 85 54 90 38 89 83 84 54 108 54 107 108 83 54 56 38 90 82 83 108 81 82 108 80 81 108 79 80 108 78 79 108 77 78 108 92 77 108 92 74 75 92 75 76 92 76 77 +36 34 1 0.01652479111245 +3.9987498046261 0.100000000012087 1 -3.9987498046262 0.10000000001055 1 3.9147220582323 0.821554141118955 1 3.7015816303241 1.51601234627144 1 3.3663581725031 2.16047047062015 1 2.9201077952421 2.73367343773293 1 2.3775484228222 3.21671625996697 1 1.7565743768355 3.59366754982217 1 1.0776661979273 3.85209495805138 1 0.3632151706325 3.98347520888764 1 -0.363215170634 3.9834752088875 1 -1.0776661979288 3.85209495805096 1 -1.7565743768369 3.59366754982149 1 -2.3775484228234 3.21671625996605 1 -2.9201077952431 2.7336734377318 1 -3.3663581725039 2.16047047061885 1 -3.7015816303246 1.51601234627002 1 -3.9147220582326 0.821554141117453 1 3.99874980462599 0.100000000012087 4 -3.99874980462599 0.100000000010548 4 3.91472205823227 0.821554141118955 4 3.70158163032406 1.51601234627144 4 3.36635817250309 2.16047047062015 4 2.92010779524206 2.73367343773292 4 2.37754842282217 3.21671625996696 4 1.75657437683554 3.59366754982217 4 1.07766619792734 3.85209495805137 4 0.363215170632472 3.98347520888764 4 -0.363215170633993 3.9834752088875 4 -1.07766619792881 3.85209495805096 4 -1.75657437683691 3.5936675498215 4 -2.37754842282339 3.21671625996606 4 -2.9201077952431 2.73367343773181 4 -3.36635817250392 2.16047047061886 4 -3.70158163032464 1.51601234627003 4 -3.91472205823258 0.821554141117465 4 0.0250026049023799 1 3.11659004868779 1 0.20686068983093 1 0.38871877475949 1 0.57057685968804 1 0.75243494461659 1 0.93429302954515 1 1.1161511144737 1 1.29800919940226 1 1.47986728433081 1 1.66172536925936 1 1.84358345418792 1 2.02544153911647 1 2.20729962404502 1 2.38915770897358 1 2.57101579390213 1 2.75287387883068 1 2.93473196375924 1 0.0250026048993611 4 3.11659004869043 4 0.206860689830937 4 0.388718774759491 4 0.570576859688044 4 0.752434944616597 4 0.934293029545151 4 1.1161511144737 4 1.29800919940226 4 1.47986728433081 4 1.66172536925936 4 1.84358345418792 4 2.02544153911647 4 2.20729962404502 4 2.38915770897358 4 2.57101579390213 4 2.75287387883068 4 2.93473196375924 4 21 1 3 21 3 4 21 19 1 22 4 5 22 21 4 23 5 6 23 22 5 24 6 7 24 23 6 25 7 8 25 24 7 26 8 9 26 25 8 27 26 9 28 9 10 28 10 11 28 27 9 29 28 11 30 11 12 30 12 13 30 29 11 31 13 14 31 30 13 32 31 14 33 14 15 33 15 16 33 32 14 34 16 17 34 33 16 35 17 18 35 34 17 36 35 18 36 18 2 20 36 2 +36 34 1 2.33968400209505e-012 +3.99874980462599 0.100000000012087 4 -3.99874980462599 0.100000000010548 4 3.91472205823227 0.821554141118955 4 3.70158163032406 1.51601234627144 4 3.36635817250309 2.16047047062015 4 2.92010779524206 2.73367343773292 4 2.37754842282217 3.21671625996696 4 1.75657437683554 3.59366754982217 4 1.07766619792734 3.85209495805137 4 0.363215170632472 3.98347520888764 4 -0.363215170633993 3.9834752088875 4 -1.07766619792881 3.85209495805096 4 -1.75657437683691 3.5936675498215 4 -2.37754842282339 3.21671625996606 4 -2.9201077952431 2.73367343773181 4 -3.36635817250392 2.16047047061886 4 -3.70158163032464 1.51601234627003 4 -3.91472205823258 0.821554141117465 4 1.997498435544 0.100000000005149 4 -1.997498435544 0.10000000000131 4 1.94781699719623 0.453882083181829 4 1.83595112425738 0.793273893014303 4 1.6654721563697 1.10734028029204 4 1.44182266757538 1.38605461482072 4 1.17214271108647 1.62051888753167 4 0.865041871704349 1.8032477811433 4 0.530324403158737 1.92840764036402 4 0.178676225409966 1.99200271246634 4 -0.178676225413774 1.992002712466 4 -0.530324403162425 1.92840764036301 4 -0.865041871707795 1.80324778114165 4 -1.17214271108956 1.62051888752942 4 -1.44182266757803 1.38605461481797 4 -1.66547215637182 1.10734028028885 4 -1.8359511242589 0.793273893010792 4 -1.94781699719709 0.453882083178104 4 3.99874980462614 0.100000000012087 -3.99874980462618 0.100000000010564 3.91472205823227 0.821554141118954 3.70158163032406 1.51601234627144 3.36635817250309 2.16047047062015 2.92010779524206 2.73367343773292 2.37754842282216 3.21671625996696 1.75657437683555 3.59366754982216 1.07766619792733 3.85209495805138 0.363215170632472 3.98347520888764 -0.363215170633973 3.9834752088875 -1.07766619792882 3.85209495805096 -1.7565743768369 3.5936675498215 -2.37754842282338 3.21671625996607 -2.92010779524311 2.7336734377318 -3.36635817250392 2.16047047061887 -3.70158163032464 1.51601234627004 -3.91472205823259 0.821554141117451 1.99749843554361 0.1 -1.9974984355437 0.1 1.94781699719623 0.453882083181827 1.83595112425738 0.793273893014299 1.66547215636971 1.10734028029203 1.44182266757538 1.38605461482072 1.17214271108646 1.62051888753167 0.865041871704344 1.8032477811433 0.530324403158736 1.92840764036402 0.178676225409963 1.99200271246634 -0.178676225413775 1.992002712466 -0.530324403162425 1.92840764036301 -0.865041871707795 1.80324778114165 -1.17214271108956 1.62051888752943 -1.44182266757802 1.38605461481797 -1.66547215637183 1.10734028028884 -1.8359511242589 0.793273893010786 -1.9478169971971 0.453882083178099 20 18 2 36 17 18 36 18 20 35 16 17 35 17 36 34 16 35 15 16 34 33 15 34 14 33 32 14 15 33 13 32 31 13 14 32 12 31 30 12 13 31 11 29 28 11 30 29 11 12 30 10 28 27 10 11 28 3 19 1 3 21 19 9 27 26 9 10 27 4 22 21 4 21 3 8 26 25 8 9 26 5 23 22 5 22 4 7 8 25 7 25 24 6 7 24 6 24 23 6 23 5 +36 34 1 0.00799728753384341 +1.9974984355436 0.100000000005149 9 -1.9974984355438 0.10000000000131 9 1.9478169971962 0.453882083181829 9 1.8359511242574 0.793273893014303 9 1.6654721563697 1.10734028029204 9 1.4418226675754 1.38605461482072 9 1.1721427110865 1.62051888753167 9 0.8650418717043 1.8032477811433 9 0.530324403158701 1.92840764036402 9 0.178676225410001 1.99200271246634 9 -0.178676225413803 1.992002712466 9 -0.530324403162403 1.92840764036301 9 -0.865041871707803 1.80324778114165 9 -1.1721427110896 1.62051888752942 9 -1.441822667578 1.38605461481797 9 -1.6654721563718 1.10734028028885 9 -1.8359511242589 0.793273893010792 9 -1.9478169971971 0.453882083178104 9 1.997498435544 0.100000000005149 2 -1.997498435544 0.10000000000131 2 1.94781699719623 0.453882083181829 2 1.83595112425738 0.793273893014303 2 1.6654721563697 1.10734028029204 2 1.44182266757538 1.38605461482072 2 1.17214271108647 1.62051888753167 2 0.865041871704349 1.8032477811433 2 0.530324403158737 1.92840764036402 2 0.178676225409966 1.99200271246634 2 -0.178676225413774 1.992002712466 2 -0.530324403162425 1.92840764036301 2 -0.865041871707795 1.80324778114165 2 -1.17214271108956 1.62051888752942 2 -1.44182266757803 1.38605461481797 2 -1.66547215637182 1.10734028028885 2 -1.8359511242589 0.793273893010792 2 -1.94781699719709 0.453882083178104 2 0.0500208568083398 9 3.09157179678336 9 0.22893561798334 9 0.40785037915834 9 0.58676514033334 9 0.76567990150834 9 0.94459466268335 9 1.12350942385835 9 1.30242418503335 9 1.48133894620835 9 1.66025370738335 9 1.83916846855835 9 2.01808322973335 9 2.19699799090835 9 2.37591275208335 9 2.55482751325836 9 2.73374227443336 9 2.91265703560836 9 0.05002085680577 2 3.09157179678402 2 0.22893561798334 2 0.40785037915834 2 0.58676514033334 2 0.76567990150834 2 0.94459466268335 2 1.12350942385835 2 1.30242418503335 2 1.48133894620835 2 1.66025370738335 2 1.83916846855835 2 2.01808322973335 2 2.19699799090835 2 2.37591275208335 2 2.55482751325836 2 2.73374227443336 2 2.91265703560836 2 1 19 21 3 1 21 4 21 22 4 3 21 5 22 23 5 4 22 6 23 24 6 5 23 7 24 25 7 6 24 8 25 26 8 26 27 8 7 25 9 8 27 10 27 28 10 9 27 11 28 29 11 29 30 11 10 28 12 11 30 13 30 31 13 12 30 14 31 32 14 13 31 15 32 33 15 14 32 16 33 34 16 15 33 17 34 35 17 16 34 18 17 35 18 35 36 2 18 36 2 36 20 +108 108 1 2.19819717983682e-011 +0 -43 0 -0.347296355333855 -42.9696155060244 0 -0.684040286651332 -42.8793852415718 0 -0.999999999999996 -42.7320508075689 0 -1.28557521937308 -42.532088886238 0 -1.53208888623795 -42.2855752193731 0 -1.73205080756888 -42 0 -1.87938524157182 -41.6840402866513 0 -1.96961550602442 -41.3472963553339 0 -2 -41 0 -1.96961550602442 -40.6527036446661 0 -1.87938524157182 -40.3159597133487 0 -1.73205080756888 -40 0 -1.53208888623796 -39.7144247806269 0 -1.28557521937308 -39.4679111137621 0 -1.00000000000001 -39.2679491924311 0 -0.684040286651346 -39.1206147584282 0 -0.34729635533387 -39.0303844939756 0 -9.3716267385302e-015 -39 0 0.347296355333851 -39.0303844939756 0 0.684040286651328 -39.1206147584282 0 0.999999999999991 -39.2679491924311 0 1.28557521937307 -39.467911113762 0 1.53208888623795 -39.7144247806269 0 1.73205080756887 -40 0 1.87938524157181 -40.3159597133487 0 1.96961550602441 -40.6527036446661 0 2 -41 0 1.96961550602442 -41.3472963553338 0 1.87938524157182 -41.6840402866513 0 1.73205080756888 -42 0 1.53208888623796 -42.2855752193731 0 1.28557521937309 -42.532088886238 0 1.00000000000001 -42.7320508075689 0 0.684040286651351 -42.8793852415718 0 0.347296355333875 -42.9696155060244 0 -45.999891304219 -0.0999999999755795 0 45.999891304219 -0.100000000045832 0 -45.2004662060348 -8.53919520546915 0 -42.8660389105125 -16.6884004063431 0 -39.0758862775817 -24.2708696099151 0 -33.9587214181489 -31.0291031073178 0 -27.6883226128972 -36.7335921315099 0 -20.4776318235395 -41.1906129463931 0 -12.5715232103451 -44.2488056807385 0 -4.23848723618501 -45.8043144905444 0 4.23848723611522 -45.8043144905509 0 12.5715232102777 -44.2488056807576 0 20.4776318234767 -41.1906129464243 0 27.6883226128412 -36.7335921315521 0 33.9587214181016 -31.0291031073695 0 39.0758862775447 -24.2708696099747 0 42.866038910487 -16.6884004064084 0 45.2004662060218 -8.53919520553807 0 -42.9974984355439 -0.0999999999987107 0 42.9974984355436 -0.100000000005149 0 -39.0025015644564 -0.100000000005149 0 -39.0521830028038 -0.453882083181991 0 -39.1640488757428 -0.793273893014602 0 -39.3345278436306 -1.10734028029244 0 -39.5581773324251 -1.38605461482119 0 -39.8278572889142 -1.62051888753214 0 -40.1349581282965 -1.80324778114372 0 -40.4696755968423 -1.92840764036432 0 -40.8213237745913 -1.99200271246645 0 -41.1786762254152 -1.99200271246587 0 -41.530324403164 -1.92840764036258 0 -41.8650418717094 -1.80324778114088 0 -42.1721427110911 -1.6205188875283 0 -42.4418226675795 -1.38605461481646 0 -42.6654721563731 -1.10734028028698 0 -42.8359511242599 -0.793273893008586 0 -42.9478169971977 -0.453882083175608 0 39.0025015644562 -0.10000000000131 0 42.9478169971962 -0.453882083181829 0 42.8359511242574 -0.793273893014303 0 42.6654721563697 -1.10734028029204 0 42.4418226675754 -1.38605461482072 0 42.1721427110865 -1.62051888753167 0 41.8650418717043 -1.8032477811433 0 41.5303244031587 -1.92840764036402 0 41.17867622541 -1.99200271246634 0 40.8213237745862 -1.992002712466 0 40.4696755968376 -1.92840764036301 0 40.1349581282922 -1.80324778114165 0 39.8278572889104 -1.62051888752942 0 39.558177332422 -1.38605461481797 0 39.3345278436282 -1.10734028028885 0 39.1640488757411 -0.793273893010792 0 39.0521830028029 -0.453882083178104 0 -35.999861110843 -0.099999999976023 0 35.999861110843 -0.100000000044256 0 -35.3707121006953 -6.70169571748306 0 -33.5413001467006 -13.0759773810199 0 -30.5737041623727 -19.0065413421725 0 -26.5686259792767 -24.2921409837277 0 -21.6619731504381 -28.7534157836891 0 -16.0202470895691 -32.2389777007453 0 -9.83489304410836 -34.6305483469573 0 -3.31580362900245 -35.8469726238339 0 3.31580362893439 -35.8469726238402 0 9.83489304404262 -34.630548346976 0 16.0202470895079 -32.2389777007757 0 21.6619731503835 -28.7534157837302 0 26.5686259792306 -24.2921409837781 0 30.5737041623367 -19.0065413422305 0 33.5413001466758 -13.0759773810836 0 35.3707121006825 -6.70169571755021 0 0 -43 -0.347296355333846 -42.9696155060244 -0.684040286651339 -42.8793852415718 -1 -42.7320508075689 -1.28557521937307 -42.532088886238 -1.53208888623796 -42.2855752193731 -1.73205080756888 -42 -1.87938524157181 -41.6840402866513 -1.96961550602441 -41.3472963553339 -2 -41 -1.96961550602442 -40.6527036446661 -1.87938524157182 -40.3159597133487 -1.73205080756888 -40 -1.53208888623796 -39.7144247806269 -1.28557521937309 -39.4679111137621 -1.00000000000001 -39.2679491924311 -0.684040286651339 -39.1206147584282 -0.347296355333867 -39.0303844939756 -1.4210854715202e-014 -39 0.347296355333839 -39.0303844939756 0.684040286651332 -39.1206147584282 0.999999999999993 -39.2679491924311 1.28557521937307 -39.467911113762 1.53208888623796 -39.7144247806269 1.73205080756888 -40 1.87938524157181 -40.3159597133486 1.96961550602441 -40.6527036446661 2 -41 1.96961550602442 -41.3472963553338 1.87938524157182 -41.6840402866513 1.73205080756888 -42 1.53208888623796 -42.2855752193731 1.28557521937309 -42.5320888862379 1.00000000000002 -42.7320508075689 0.684040286651346 -42.8793852415718 0.347296355333874 -42.9696155060244 -45.9998913042195 -0.0999999999757577 45.9998913042193 -0.100000000045682 -45.2004662060348 -8.53919520546929 -42.8660389105125 -16.6884004063429 -39.0758862775818 -24.270869609915 -33.9587214181488 -31.0291031073178 -27.6883226128974 -36.7335921315098 -20.4776318235396 -41.190612946393 -12.571523210345 -44.2488056807385 -4.23848723618521 -45.8043144905444 4.23848723611514 -45.8043144905509 12.5715232102777 -44.2488056807576 20.4776318234765 -41.1906129464243 27.6883226128412 -36.7335921315521 33.9587214181016 -31.0291031073695 39.0758862775446 -24.2708696099748 42.866038910487 -16.6884004064085 45.2004662060218 -8.53919520553796 -42.9974984355439 -0.100000000000001 42.997498435544 -0.100000000000001 -39.0025015644564 -0.100000000005146 -39.0521830028038 -0.453882083181988 -39.1640488757428 -0.7932738930146 -39.3345278436306 -1.10734028029243 -39.5581773324251 -1.38605461482118 -39.8278572889142 -1.62051888753213 -40.1349581282965 -1.80324778114372 -40.4696755968424 -1.92840764036432 -40.8213237745913 -1.99200271246645 -41.1786762254152 -1.99200271246587 -41.530324403164 -1.92840764036258 -41.8650418717094 -1.80324778114088 -42.1721427110911 -1.6205188875283 -42.4418226675795 -1.38605461481644 -42.6654721563731 -1.10734028028692 -42.8359511242598 -0.793273893008667 -42.9478169971977 -0.453882083175657 39.0025015644563 -0.100000000001316 42.9478169971962 -0.453882083181824 42.8359511242574 -0.793273893014302 42.6654721563697 -1.10734028029203 42.4418226675754 -1.38605461482071 42.1721427110865 -1.62051888753167 41.8650418717043 -1.80324778114331 41.5303244031587 -1.92840764036402 41.17867622541 -1.99200271246634 40.8213237745862 -1.992002712466 40.4696755968376 -1.92840764036301 40.1349581282922 -1.80324778114165 39.8278572889104 -1.62051888752943 39.558177332422 -1.38605461481797 39.3345278436282 -1.10734028028885 39.1640488757411 -0.793273893010785 39.0521830028029 -0.453882083178101 -35.9998611108433 -0.100000000000001 35.999861110843 -0.100000000000001 -35.3707121006953 -6.70169571748296 -33.5413001467005 -13.07597738102 -30.5737041623727 -19.0065413421725 -26.5686259792768 -24.2921409837276 -21.6619731504379 -28.7534157836892 -16.0202470895691 -32.2389777007453 -9.83489304410845 -34.6305483469573 -3.31580362900229 -35.8469726238339 3.31580362893443 -35.8469726238402 9.83489304404256 -34.630548346976 16.020247089508 -32.2389777007756 21.6619731503835 -28.7534157837302 26.5686259792305 -24.2921409837782 30.5737041623368 -19.0065413422304 33.5413001466758 -13.0759773810835 35.3707121006825 -6.70169571755027 96 42 43 97 96 43 97 43 44 95 42 96 95 41 42 98 97 44 98 44 45 94 41 95 94 40 41 99 98 45 70 37 39 6 46 5 69 70 39 71 37 70 4 5 46 7 46 6 68 69 39 72 37 71 8 46 7 3 4 46 67 68 39 73 37 72 9 46 8 2 3 46 66 67 39 55 37 73 1 2 46 10 99 45 10 45 46 10 46 9 65 66 39 11 99 10 93 40 94 93 39 40 93 64 65 93 65 39 63 64 93 47 1 46 47 34 35 47 35 36 47 36 1 62 63 93 33 34 47 61 62 93 32 33 47 31 32 47 30 31 47 29 30 47 100 11 12 100 12 13 100 13 14 100 14 15 100 15 16 100 16 17 100 17 18 100 99 11 19 100 18 28 29 47 91 61 93 91 57 58 91 58 59 91 59 60 91 60 61 101 19 20 101 20 21 101 21 22 101 22 23 101 23 24 101 24 25 101 25 26 101 26 27 101 100 19 48 28 47 102 27 28 102 101 27 102 28 48 103 48 49 103 102 48 104 49 50 104 103 49 105 104 50 51 105 50 106 105 51 52 106 51 107 106 52 53 107 52 108 107 53 54 108 53 87 92 108 86 87 108 88 92 87 85 86 108 89 92 88 84 85 108 90 92 89 83 108 54 83 84 108 74 92 90 82 83 54 81 82 54 80 81 54 79 80 54 78 79 54 38 78 54 38 56 75 38 75 76 38 76 77 38 77 78 +36 34 1 1.2756462552943e-013 +-25.9998076915964 -0.100000000023234 0 25.999807691596 -0.100000000041546 0 -25.5409402183473 -4.8641929199829 0 -24.2165487102836 -9.46354946954159 0 -22.071513765846 -13.7422079770345 0 -19.1785257121742 -17.5551744937917 0 -15.6356212962116 -20.7732363073608 0 -11.562861443627 -23.2873406647364 0 -7.09826266870315 -25.0122903206823 0 -2.39312001040355 -25.8896306774702 0 2.39312001038516 -25.8896306774719 0 7.09826266868539 -25.0122903206873 0 11.5628614436105 -23.2873406647446 0 15.6356212961968 -20.7732363073719 0 19.1785257121617 -17.5551744938053 0 22.0715137658363 -13.7422079770501 0 24.2165487102769 -9.46354946955878 0 25.5409402183438 -4.86419292000104 0 -35.9998611108431 -0.100000000023968 0 35.9998611108431 -0.100000000044256 0 -35.3707121006869 -6.70169571752723 0 -33.5413001466853 -13.0759773810592 0 -30.573704162352 -19.0065413422059 0 -26.5686259792521 -24.2921409837547 0 -21.6619731504111 -28.7534157837094 0 -16.0202470895414 -32.238977700759 0 -9.83489304408136 -34.630548346965 0 -3.31580362897729 -35.8469726238362 0 3.31580362895674 -35.8469726238381 0 9.83489304406151 -34.6305483469706 0 16.020247089523 -32.2389777007682 0 21.6619731503947 -28.7534157837218 0 26.5686259792381 -24.2921409837699 0 30.5737041623411 -19.0065413422234 0 33.5413001466778 -13.0759773810784 0 35.370712100683 -6.7016957175475 0 -25.9998076915964 -0.100000000023279 25.9998076915963 -0.100000000041554 -25.5409402183473 -4.86419291998283 -24.2165487102837 -9.46354946954146 -22.071513765846 -13.7422079770345 -19.1785257121742 -17.5551744937917 -15.6356212962117 -20.7732363073608 -11.5628614436269 -23.2873406647364 -7.09826266870308 -25.0122903206823 -2.39312001040354 -25.8896306774702 2.39312001038509 -25.8896306774719 7.0982626686855 -25.0122903206873 11.5628614436105 -23.2873406647445 15.6356212961968 -20.7732363073719 19.1785257121617 -17.5551744938053 22.0715137658363 -13.74220797705 24.2165487102769 -9.46354946955874 25.5409402183438 -4.86419292000104 -35.9998611108431 -0.100000000000001 35.999861110843 -0.100000000000001 -35.3707121006868 -6.7016957175274 -33.5413001466853 -13.0759773810591 -30.5737041623519 -19.006541342206 -26.5686259792521 -24.2921409837546 -21.661973150411 -28.7534157837095 -16.0202470895415 -32.238977700759 -9.83489304408121 -34.630548346965 -3.31580362897733 -35.8469726238362 3.31580362895691 -35.8469726238381 9.83489304406147 -34.6305483469706 16.0202470895231 -32.2389777007682 21.6619731503946 -28.7534157837218 26.5686259792382 -24.2921409837698 30.5737041623411 -19.0065413422234 33.5413001466778 -13.0759773810783 35.370712100683 -6.70169571754754 36 18 35 20 2 36 6 24 25 7 25 26 7 6 25 5 23 24 5 24 6 8 26 27 8 7 26 4 22 23 4 23 5 9 27 28 9 8 27 3 21 22 3 22 4 10 9 28 1 19 21 1 21 3 11 28 29 11 10 28 12 29 30 12 11 29 13 30 31 13 12 30 14 31 32 14 13 31 15 14 32 33 15 32 16 15 33 34 16 33 17 16 34 35 17 34 18 17 35 36 2 18 +36 34 1 0.153027376162996 +-35.9998611108431 -0.100000000023968 0 35.9998611108431 -0.100000000044256 0 -35.3707121006869 -6.70169571752723 0 -33.5413001466853 -13.0759773810592 0 -30.573704162352 -19.0065413422059 0 -26.5686259792521 -24.2921409837547 0 -21.6619731504111 -28.7534157837094 0 -16.0202470895414 -32.238977700759 0 -9.83489304408136 -34.630548346965 0 -3.31580362897729 -35.8469726238362 0 3.31580362895674 -35.8469726238381 0 9.83489304406151 -34.6305483469706 0 16.020247089523 -32.2389777007682 0 21.6619731503947 -28.7534157837218 0 26.5686259792381 -24.2921409837699 0 30.5737041623411 -19.0065413422234 0 33.5413001466778 -13.0759773810784 0 35.370712100683 -6.7016957175475 0 -35.999861110843 -0.099999999976023 10 35.999861110843 -0.100000000044256 10 -35.3707121006953 -6.70169571748306 10 -33.5413001467006 -13.0759773810199 10 -30.5737041623727 -19.0065413421725 10 -26.5686259792767 -24.2921409837277 10 -21.6619731504381 -28.7534157836891 10 -16.0202470895691 -32.2389777007453 10 -9.83489304410836 -34.6305483469573 10 -3.31580362900245 -35.8469726238339 10 3.31580362893439 -35.8469726238402 10 9.83489304404262 -34.630548346976 10 16.0202470895079 -32.2389777007757 10 21.6619731503835 -28.7534157837302 10 26.5686259792306 -24.2921409837781 10 30.5737041623367 -19.0065413422305 10 33.5413001466758 -13.0759773810836 10 35.3707121006825 -6.70169571755021 10 3.14437043494049 0 6.28040752582832 0 3.32884320499272 0 3.51331597504494 0 3.69778874509717 0 3.88226151514939 0 4.06673428520162 0 4.25120705525384 0 4.43567982530607 0 4.62015259535829 0 4.80462536541052 0 4.98909813546274 0 5.17357090551497 0 5.35804367556719 0 5.54251644561942 0 5.72698921567164 0 5.91146198572387 0 6.09593475577609 0 3.14437043493983 10 6.28040752582955 10 3.32884320499146 10 3.51331597504377 10 3.69778874509607 10 3.88226151514837 10 4.06673428520068 10 4.25120705525298 10 4.43567982530528 10 4.62015259535759 10 4.80462536540989 10 4.98909813546219 10 5.1735709055145 10 5.3580436755668 10 5.5425164456191 10 5.72698921567141 10 5.91146198572371 10 6.09593475577601 10 21 1 3 21 19 1 22 3 4 22 21 3 23 4 5 23 22 4 24 5 6 24 23 5 25 6 7 25 24 6 26 7 8 26 25 7 27 8 9 27 26 8 28 9 10 28 27 9 29 10 11 29 28 10 30 11 12 30 29 11 31 12 13 31 30 12 32 13 14 32 31 13 33 14 15 33 32 14 34 15 16 34 33 15 35 16 17 35 34 16 36 35 17 36 17 18 36 18 2 20 36 2 +36 34 1 0.0165247911124507 +-3.9987498046261 -0.100000000012087 1 3.9987498046262 -0.10000000001045 1 -3.9147220582323 -0.821554141118971 1 -3.7015816303241 -1.51601234627146 1 -3.3663581725031 -2.16047047062017 1 -2.920107795242 -2.73367343773295 1 -2.3775484228221 -3.21671625996699 1 -1.7565743768355 -3.59366754982219 1 -1.0776661979273 -3.85209495805139 1 -0.363215170632401 -3.98347520888765 1 0.363215170634099 -3.9834752088875 1 1.0776661979289 -3.85209495805094 1 1.756574376837 -3.59366754982146 1 2.3775484228235 -3.21671625996601 1 2.9201077952432 -2.73367343773174 1 3.366358172504 -2.16047047061878 1 3.7015816303247 -1.51601234626993 1 3.9147220582326 -0.821554141117353 1 -3.998749804626 -0.100000000012089 4 3.998749804626 -0.100000000010454 4 -3.91472205823226 -0.821554141118972 4 -3.70158163032406 -1.51601234627146 4 -3.36635817250308 -2.16047047062017 4 -2.92010779524204 -2.73367343773295 4 -2.37754842282213 -3.21671625996699 4 -1.75657437683549 -3.59366754982219 4 -1.07766619792729 -3.85209495805139 4 -0.363215170632408 -3.98347520888765 4 0.363215170634057 -3.9834752088875 4 1.07766619792888 -3.85209495805094 4 1.75657437683698 -3.59366754982146 4 2.37754842282346 -3.21671625996601 4 2.92010779524317 -2.73367343773174 4 3.36635817250397 -2.16047047061878 4 3.70158163032468 -1.51601234626993 4 3.91472205823261 -0.821554141117353 4 3.16659525849218 1 6.25818270227761 1 3.34845334342073 1 3.53031142834929 1 3.71216951327784 1 3.8940275982064 1 4.07588568313495 1 4.25774376806351 1 4.43960185299206 1 4.62145993792062 1 4.80331802284917 1 4.98517610777773 1 5.16703419270628 1 5.34889227763481 1 5.53075036256341 1 5.71260844749191 1 5.89446653242051 1 6.07632461734901 1 3.16659525848915 4 6.25818270228022 4 3.34845334342073 4 3.53031142834929 4 3.71216951327784 4 3.8940275982064 4 4.07588568313495 4 4.25774376806351 4 4.43960185299206 4 4.62145993792062 4 4.80331802284917 4 4.98517610777773 4 5.16703419270628 4 5.34889227763484 4 5.53075036256339 4 5.71260844749195 4 5.8944665324205 4 6.07632461734906 4 21 1 3 21 19 1 22 3 4 22 21 3 23 4 5 23 22 4 24 5 6 24 23 5 25 6 7 25 24 6 26 7 8 26 25 7 27 8 9 27 26 8 28 9 10 28 27 9 29 10 11 29 28 10 30 11 12 30 29 11 31 12 13 31 13 14 31 30 12 32 14 15 32 31 14 33 15 16 33 32 15 34 16 17 34 33 16 35 17 18 35 34 17 36 35 18 36 18 2 20 36 2 +36 34 1 2.34673391830142e-012 +-3.998749804626 -0.100000000012089 4 3.998749804626 -0.100000000010454 4 -3.91472205823226 -0.821554141118972 4 -3.70158163032406 -1.51601234627146 4 -3.36635817250308 -2.16047047062017 4 -2.92010779524204 -2.73367343773295 4 -2.37754842282213 -3.21671625996699 4 -1.75657437683549 -3.59366754982219 4 -1.07766619792729 -3.85209495805139 4 -0.363215170632408 -3.98347520888765 4 0.363215170634057 -3.9834752088875 4 1.07766619792888 -3.85209495805094 4 1.75657437683698 -3.59366754982146 4 2.37754842282346 -3.21671625996601 4 2.92010779524317 -2.73367343773174 4 3.36635817250397 -2.16047047061878 4 3.70158163032468 -1.51601234626993 4 3.91472205823261 -0.821554141117353 4 -1.997498435544 -0.100000000005147 4 1.997498435544 -0.100000000001287 4 -1.94781699719622 -0.453882083181844 4 -1.83595112425737 -0.793273893014319 4 -1.6654721563697 -1.10734028029205 4 -1.44182266757537 -1.38605461482074 4 -1.17214271108645 -1.62051888753168 4 -0.865041871704328 -1.80324778114331 4 -0.530324403158716 -1.92840764036403 4 -0.178676225409937 -1.99200271246634 4 0.178676225413803 -1.99200271246599 4 0.530324403162453 -1.928407640363 4 0.865041871707831 -1.80324778114163 4 1.17214271108959 -1.6205188875294 4 1.44182266757805 -1.38605461481794 4 1.66547215637184 -1.10734028028882 4 1.83595112425891 -0.793273893010757 4 1.9478169971971 -0.453882083178065 4 -3.99874980462614 -0.100000000012099 3.99874980462618 -0.100000000010458 -3.91472205823227 -0.821554141118954 -3.70158163032406 -1.51601234627146 -3.36635817250309 -2.16047047062016 -2.92010779524204 -2.73367343773295 -2.37754842282214 -3.21671625996698 -1.75657437683549 -3.59366754982219 -1.07766619792731 -3.85209495805138 -0.363215170632405 -3.98347520888765 0.363215170634038 -3.9834752088875 1.07766619792889 -3.85209495805094 1.75657437683697 -3.59366754982147 2.37754842282346 -3.216716259966 2.92010779524316 -2.73367343773175 3.36635817250397 -2.16047047061878 3.70158163032468 -1.51601234626994 3.91472205823261 -0.821554141117346 -1.9974984355436 -0.1 1.9974984355438 -0.1 -1.94781699719622 -0.45388208318184 -1.83595112425737 -0.793273893014312 -1.66547215636969 -1.10734028029206 -1.44182266757536 -1.38605461482074 -1.17214271108645 -1.62051888753168 -0.865041871704332 -1.80324778114331 -0.530324403158722 -1.92840764036402 -0.178676225409929 -1.99200271246634 0.178676225413808 -1.99200271246599 0.530324403162458 -1.928407640363 0.865041871707825 -1.80324778114163 1.17214271108959 -1.62051888752941 1.44182266757806 -1.38605461481793 1.66547215637185 -1.10734028028882 1.83595112425891 -0.793273893010755 1.9478169971971 -0.453882083178066 18 36 17 18 20 36 2 20 18 24 6 7 25 7 8 25 24 7 23 5 6 23 6 24 26 8 9 26 25 8 22 4 5 22 5 23 27 9 10 27 26 9 21 3 4 21 4 22 28 10 11 28 27 10 19 1 3 19 3 21 29 28 11 30 11 12 30 29 11 31 12 13 31 30 12 32 13 14 32 31 13 33 32 14 15 33 14 34 33 15 16 35 34 16 34 15 17 36 35 17 35 16 +36 34 1 0.00799728753383572 +-1.9974984355436 -0.100000000005149 9 1.9974984355439 -0.0999999999987107 9 -1.9478169971962 -0.453882083181991 9 -1.8359511242572 -0.793273893014602 9 -1.6654721563694 -1.10734028029244 9 -1.4418226675749 -1.38605461482119 9 -1.1721427110858 -1.62051888753214 9 -0.865041871703497 -1.80324778114372 9 -0.530324403157699 -1.92840764036432 9 -0.178676225408701 -1.99200271246645 9 0.178676225415202 -1.99200271246587 9 0.530324403164002 -1.92840764036258 9 0.865041871709401 -1.80324778114088 9 1.1721427110911 -1.6205188875283 9 1.4418226675795 -1.38605461481646 9 1.6654721563731 -1.10734028028698 9 1.8359511242599 -0.793273893008586 9 1.9478169971977 -0.453882083175608 9 -1.997498435544 -0.100000000005147 2 1.997498435544 -0.100000000001287 2 -1.94781699719622 -0.453882083181844 2 -1.83595112425737 -0.793273893014319 2 -1.6654721563697 -1.10734028029205 2 -1.44182266757537 -1.38605461482074 2 -1.17214271108645 -1.62051888753168 2 -0.865041871704328 -1.80324778114331 2 -0.530324403158716 -1.92840764036403 2 -0.178676225409937 -1.99200271246634 2 0.178676225413803 -1.99200271246599 2 0.530324403162453 -1.928407640363 2 0.865041871707831 -1.80324778114163 2 1.17214271108959 -1.6205188875294 2 1.44182266757805 -1.38605461481794 2 1.66547215637184 -1.10734028028882 2 1.83595112425891 -0.793273893010757 2 1.9478169971971 -0.453882083178065 2 3.19161351039814 9 6.23316445037451 9 3.37052827157322 9 3.5494430327483 9 3.72835779392338 9 3.90727255509846 9 4.08618731627354 9 4.26510207744863 9 4.44401683862371 9 4.62293159979879 9 4.80184636097387 9 4.98076112214895 9 5.15967588332403 9 5.33859064449911 9 5.51750540567421 9 5.69642016684931 9 5.87533492802431 9 6.05424968919941 9 3.19161351039556 2 6.23316445037382 2 3.37052827157314 2 3.54944303274814 2 3.72835779392315 2 3.90727255509815 2 4.08618731627315 2 4.26510207744815 2 4.44401683862315 2 4.62293159979816 2 4.80184636097316 2 4.98076112214816 2 5.15967588332316 2 5.33859064449816 2 5.51750540567317 2 5.69642016684817 2 5.87533492802317 2 6.05424968919817 2 1 19 21 3 21 22 3 1 21 4 22 23 4 3 22 5 23 24 5 4 23 6 24 25 6 5 24 7 25 26 7 6 25 8 26 27 8 7 26 9 27 28 9 8 27 10 28 29 10 9 28 11 29 30 11 10 29 12 30 31 12 11 30 13 31 32 13 12 31 14 32 33 14 13 32 15 33 34 15 14 33 16 34 35 16 15 34 17 35 36 17 16 35 18 17 36 18 36 20 2 18 20 +74 72 1 0.0152212076330382 +4 0 1 4 0 4 4 0 1 3.9392310120488 0.69459271066771 1 3.7587704831436 1.36808057330266 1 3.4641016151378 1.99999999999999 1 3.0641777724759 2.57115043874615 1 2.5711504387462 3.06417777247591 1 2 3.46410161513775 1 1.3680805733027 3.75877048314363 1 0.694592710667699 3.93923101204883 1 0 4 1 -0.694592710667699 3.93923101204883 1 -1.3680805733027 3.75877048314364 1 -2 3.46410161513776 1 -2.5711504387461 3.06417777247592 1 -3.0641777724759 2.57115043874617 1 -3.4641016151377 2.00000000000001 1 -3.7587704831436 1.36808057330269 1 -3.9392310120488 0.694592710667739 1 -4 1.87432534770604e-014 1 -3.9392310120488 -0.694592710667702 1 -3.7587704831436 -1.36808057330266 1 -3.4641016151378 -1.99999999999998 1 -3.0641777724759 -2.57115043874614 1 -2.5711504387462 -3.0641777724759 1 -2 -3.46410161513774 1 -1.3680805733027 -3.75877048314363 1 -0.694592710667699 -3.93923101204883 1 0 -4 1 0.694592710667699 -3.93923101204884 1 1.3680805733026 -3.75877048314364 1 2 -3.46410161513777 1 2.5711504387461 -3.06417777247593 1 3.0641777724759 -2.57115043874618 1 3.4641016151377 -2.00000000000002 1 3.7587704831436 -1.3680805733027 1 3.9392310120488 -0.69459271066775 1 4 0 4 3.93923101204883 0.694592710667722 4 3.75877048314364 1.36808057330268 4 3.46410161513776 2 4 3.06417777247591 2.57115043874616 4 2.57115043874616 3.06417777247591 4 2 3.46410161513776 4 1.36808057330267 3.75877048314363 4 0.69459271066772 3.93923101204883 4 0 4 4 -0.69459271066772 3.93923101204883 4 -1.36808057330268 3.75877048314363 4 -2 3.46410161513775 4 -2.57115043874616 3.06417777247591 4 -3.06417777247592 2.57115043874615 4 -3.46410161513776 2 4 -3.75877048314364 1.36808057330267 4 -3.93923101204884 0.694592710667714 4 -4 -8.3919416554723e-015 4 -3.93923101204883 -0.694592710667731 4 -3.75877048314363 -1.36808057330268 4 -3.46410161513775 -2.00000000000001 4 -3.0641777724759 -2.57115043874617 4 -2.57115043874614 -3.06417777247592 4 -1.99999999999999 -3.46410161513776 4 -1.36808057330266 -3.75877048314364 4 -0.694592710667713 -3.93923101204883 4 7.105427357601e-015 -4 4 0.694592710667727 -3.93923101204883 4 1.36808057330268 -3.75877048314363 4 2.00000000000001 -3.46410161513775 4 2.57115043874616 -3.06417777247591 4 3.06417777247592 -2.57115043874615 4 3.46410161513776 -2 4 3.75877048314364 -1.36808057330267 4 3.93923101204884 -0.694592710667718 4 6.28318530717959 1 6.28318530717959 4 0 1 0.17453292519943 1 0.34906585039887 1 0.5235987755983 1 0.69813170079773 1 0.87266462599717 1 1.0471975511966 1 1.22173047639603 1 1.39626340159546 1 1.5707963267949 1 1.74532925199433 1 1.91986217719376 1 2.0943951023932 1 2.26892802759263 1 2.44346095279206 1 2.61799387799149 1 2.79252680319093 1 2.96705972839036 1 3.14159265358979 1 3.31612557878922 1 3.49065850398866 1 3.66519142918809 1 3.83972435438752 1 4.01425727958696 1 4.18879020478639 1 4.36332312998582 1 4.53785605518525 1 4.71238898038469 1 4.88692190558412 1 5.06145483078355 1 5.23598775598299 1 5.41052068118242 1 5.58505360638185 1 5.75958653158128 1 5.93411945678072 1 6.10865238198015 1 0 4 0.174532925199433 4 0.349065850398866 4 0.523598775598299 4 0.698131700797732 4 0.872664625997165 4 1.0471975511966 4 1.22173047639603 4 1.39626340159546 4 1.5707963267949 4 1.74532925199433 4 1.91986217719376 4 2.0943951023932 4 2.26892802759263 4 2.44346095279206 4 2.6179938779915 4 2.79252680319093 4 2.96705972839036 4 3.1415926535898 4 3.31612557878923 4 3.49065850398866 4 3.66519142918809 4 3.83972435438753 4 4.01425727958696 4 4.18879020478639 4 4.36332312998583 4 4.53785605518526 4 4.71238898038469 4 4.88692190558413 4 5.06145483078356 4 5.23598775598299 4 5.41052068118242 4 5.58505360638186 4 5.75958653158129 4 5.93411945678072 4 6.10865238198015 4 58 57 22 59 23 24 59 58 23 39 3 4 60 24 25 60 59 24 40 39 4 61 25 26 61 60 25 41 4 5 62 26 27 41 40 4 62 61 26 42 5 6 42 6 7 42 41 5 63 27 28 63 62 27 43 42 7 64 28 29 64 63 28 65 29 30 44 7 8 65 64 29 44 43 7 66 30 31 66 65 30 45 44 8 45 8 9 45 9 10 67 31 32 46 10 11 46 45 10 67 66 31 47 46 11 47 11 12 68 32 33 68 67 32 48 12 13 48 47 12 69 68 33 49 13 14 49 48 13 70 69 33 70 33 34 70 34 35 50 14 15 50 49 14 71 70 35 71 35 36 51 15 16 51 50 15 72 71 36 72 36 37 73 72 37 52 51 16 53 16 17 53 17 18 74 73 37 53 52 16 74 37 38 2 74 38 2 38 1 54 18 19 54 53 18 55 19 20 55 54 19 56 20 21 56 55 20 57 21 22 57 56 21 58 22 23 +6 4 1 1.27956719294292e-011 +101.001250195374 -1.04499880970721e-011 103 100.000108695781 2.44205072830184e-011 103 101.001250195374 -1.04539987777486e-011 100 100.000108695781 2.44205072830184e-011 93 103.002501564456 -1.2869982857211e-012 100 103.002501564456 1.28930199849719e-012 93 103 101.001250195374 103 100.000108695781 100 101.001250195374 93 100.000108695781 100 103.002501564456 93 103.002501564456 3 6 4 2 3 4 5 6 3 1 3 2 +6 4 1 3.45836600098171e-011 +191.999891304219 -4.5831990980183e-011 103 190.998749804626 -1.20869980690941e-011 103 191.999891304219 -4.5831990980183e-011 93 190.998749804626 -1.20869980690941e-011 100 188.997498435544 -5.14899234360655e-012 93 188.997498435544 -5.14899234360655e-012 100 103 191.999891304219 103 190.998749804626 93 191.999891304219 100 190.998749804626 93 188.997498435544 100 188.997498435544 4 3 5 4 5 6 1 4 2 1 3 4 +36 34 1 0.195685509452592 +-45.9998913042195 -0.0999999999755795 10 45.9998913042193 -0.100000000045832 10 -45.2004662060348 -8.53919520546915 10 -42.8660389105125 -16.6884004063431 10 -39.0758862775817 -24.2708696099151 10 -33.9587214181489 -31.0291031073178 10 -27.6883226128972 -36.7335921315099 10 -20.4776318235395 -41.1906129463931 10 -12.5715232103451 -44.2488056807385 10 -4.23848723618501 -45.8043144905444 10 4.23848723611522 -45.8043144905509 10 12.5715232102777 -44.2488056807576 10 20.4776318234767 -41.1906129464243 10 27.6883226128412 -36.7335921315521 10 33.9587214181016 -31.0291031073695 10 39.0758862775447 -24.2708696099747 10 42.866038910487 -16.6884004064084 10 45.2004662060218 -8.53919520553807 10 -45.999891304219 -0.0999999999755795 0 45.999891304219 -0.100000000045832 0 -45.2004662060348 -8.53919520546915 0 -42.8660389105125 -16.6884004063431 0 -39.0758862775817 -24.2708696099151 0 -33.9587214181489 -31.0291031073178 0 -27.6883226128972 -36.7335921315099 0 -20.4776318235395 -41.1906129463931 0 -12.5715232103451 -44.2488056807385 0 -4.23848723618501 -45.8043144905444 0 4.23848723611522 -45.8043144905509 0 12.5715232102777 -44.2488056807576 0 20.4776318234767 -41.1906129464243 0 27.6883226128412 -36.7335921315521 0 33.9587214181016 -31.0291031073695 0 39.0758862775447 -24.2708696099747 0 42.866038910487 -16.6884004064084 0 45.2004662060218 -8.53919520553807 0 3.14376656834503 10 6.28101139242283 10 3.32831038152608 10 3.51285419470712 10 3.69739800788817 10 3.88194182106922 10 4.06648563425026 10 4.25102944743131 10 4.43557326061236 10 4.6201170737934 10 4.80466088697445 10 4.9892047001555 10 5.17374851333654 10 5.35829232651759 10 5.54283613969864 10 5.72737995287968 10 5.91192376606073 10 6.09646757924178 10 3.14376656834556 0 6.28101139242382 0 3.32831038152608 0 3.51285419470712 0 3.69739800788817 0 3.88194182106922 0 4.06648563425026 0 4.25102944743131 0 4.43557326061236 0 4.6201170737934 0 4.80466088697445 0 4.9892047001555 0 5.17374851333654 0 5.35829232651759 0 5.54283613969864 0 5.72737995287968 0 5.91192376606073 0 6.09646757924178 0 3 1 19 3 19 21 3 21 22 4 3 22 5 22 23 5 4 22 6 23 24 6 24 25 6 5 23 7 25 26 7 6 25 8 7 26 9 26 27 9 8 26 10 27 28 10 9 27 11 28 29 11 10 28 12 29 30 12 11 29 13 30 31 13 12 30 14 31 32 14 13 31 15 32 33 15 14 32 16 33 34 16 15 33 17 34 35 17 35 36 17 16 34 18 17 36 2 18 36 2 36 20 +73 71 1 0.00761060381651818 +2 0 2 2 0 9 2 0 9 1.9696155060244 0.347296355333855 9 1.8793852415718 0.684040286651332 9 1.7320508075689 0.999999999999996 9 1.532088886238 1.28557521937308 9 1.2855752193731 1.53208888623795 9 1 1.73205080756888 9 0.684040286651303 1.87938524157182 9 0.347296355333903 1.96961550602442 9 0 2 9 -0.347296355333903 1.96961550602442 9 -0.684040286651303 1.87938524157182 9 -1 1.73205080756888 9 -1.2855752193731 1.53208888623796 9 -1.5320888862379 1.28557521937308 9 -1.7320508075689 1.00000000000001 9 -1.8793852415718 0.684040286651346 9 -1.9696155060244 0.34729635533387 9 -2 9.3716267385302e-015 9 -1.9696155060244 -0.347296355333851 9 -1.8793852415718 -0.684040286651328 9 -1.7320508075689 -0.999999999999991 9 -1.532088886238 -1.28557521937307 9 -1.2855752193731 -1.53208888623795 9 -1 -1.73205080756887 9 -0.684040286651303 -1.87938524157181 9 -0.347296355333903 -1.96961550602441 9 0 -2 9 0.347296355333803 -1.96961550602442 9 0.684040286651303 -1.87938524157182 9 1 -1.73205080756888 9 1.2855752193731 -1.53208888623796 9 1.532088886238 -1.28557521937309 9 1.7320508075689 -1.00000000000001 9 1.8793852415718 -0.684040286651351 9 1.9696155060244 -0.347296355333875 9 2 0 2 1.96785917719725 0.35711378959728 2 1.87246974127947 0.702749648162691 2 1.71689758720373 1.02579855481182 2 1.50614293200722 1.31587745187943 2 1.24697960371746 1.56366296493606 2 0.94773732494599 1.76119106371348 2 0.618033988749886 1.90211303259031 2 0.268466531635305 1.98189952353587 2 -0.0897296607010389 1.99798613308263 2 -0.445041867912636 1.94985582436365 2 -0.786050063307854 1.8390555451029 2 -1.10179396290421 1.6691465074426 2 -1.38212529797374 1.44558972765478 2 -1.6180339887499 1.17557050458494 2 -1.80193773580484 0.867767478235112 2 -1.92792572139171 0.532073691133345 2 -1.99194858799048 0.179278617806862 2 -1.99194858799048 -0.179278617806872 2 -1.9279257213917 -0.532073691133355 2 -1.80193773580483 -0.867767478235121 2 -1.61803398874989 -1.17557050458495 2 -1.38212529797372 -1.44558972765479 2 -1.1017939629042 -1.66914650744261 2 -0.78605006330784 -1.8390555451029 2 -0.445041867912622 -1.94985582436365 2 -0.0897296607010247 -1.99798613308263 2 0.268466531635319 -1.98189952353587 2 0.6180339887499 -1.90211303259031 2 0.947737324946004 -1.76119106371347 2 1.24697960371747 -1.56366296493606 2 1.50614293200722 -1.31587745187942 2 1.71689758720373 -1.02579855481181 2 1.87246974127947 -0.702749648162681 2 1.96785917719726 -0.357113789597269 2 6.28318530717959 2 6.28318530717959 9 0 9 0.17453292519943 9 0.34906585039887 9 0.5235987755983 9 0.69813170079773 9 0.87266462599717 9 1.0471975511966 9 1.22173047639603 9 1.39626340159546 9 1.5707963267949 9 1.74532925199433 9 1.91986217719376 9 2.0943951023932 9 2.26892802759263 9 2.44346095279206 9 2.61799387799149 9 2.79252680319093 9 2.96705972839036 9 3.14159265358979 9 3.31612557878922 9 3.49065850398866 9 3.66519142918809 9 3.83972435438752 9 4.01425727958696 9 4.18879020478639 9 4.36332312998582 9 4.53785605518525 9 4.71238898038469 9 4.88692190558412 9 5.06145483078355 9 5.23598775598299 9 5.41052068118242 9 5.58505360638185 9 5.75958653158128 9 5.93411945678072 9 6.10865238198015 9 0 2 0.17951958020513 2 0.35903916041026 2 0.53855874061539 2 0.71807832082052 2 0.89759790102565 2 1.07711748123079 2 1.25663706143592 2 1.43615664164105 2 1.61567622184618 2 1.79519580205131 2 1.97471538225644 2 2.15423496246157 2 2.3337545426667 2 2.51327412287183 2 2.69279370307696 2 2.8723132832821 2 3.05183286348723 2 3.23135244369236 2 3.41087202389749 2 3.59039160410262 2 3.76991118430775 2 3.94943076451288 2 4.12895034471801 2 4.30846992492314 2 4.48798950512828 2 4.66750908533341 2 4.84702866553854 2 5.02654824574367 2 5.2060678259488 2 5.38558740615393 2 5.56510698635906 2 5.74462656656419 2 5.92414614676932 2 6.10366572697445 2 22 57 58 23 58 59 23 22 58 24 59 60 24 23 59 4 39 40 4 3 39 25 60 61 25 24 60 5 40 41 5 4 40 26 61 62 26 25 61 6 41 42 6 5 41 27 62 63 27 26 62 7 42 43 7 6 42 28 63 64 28 27 63 8 43 44 8 7 43 29 64 65 29 28 64 9 44 45 30 65 66 9 8 44 30 29 65 10 9 45 10 45 46 31 66 67 31 30 66 11 10 46 11 46 47 32 67 68 32 31 67 12 11 47 12 47 48 33 68 69 33 32 68 13 12 48 13 48 49 34 69 70 34 33 69 14 13 49 14 49 50 35 34 70 35 70 71 15 14 50 15 50 51 36 35 71 36 71 72 37 36 72 16 15 51 37 72 73 16 51 52 38 37 73 38 73 1 17 16 52 17 52 53 2 38 1 18 17 53 18 53 54 19 18 54 19 54 55 20 19 55 20 55 56 21 20 56 21 56 57 22 21 57 +71 71 1 1.48769885299771e-014 +4 0 4 3.93923101204883 0.694592710667722 4 3.75877048314364 1.36808057330268 4 3.46410161513776 2 4 3.06417777247591 2.57115043874616 4 2.57115043874616 3.06417777247591 4 2 3.46410161513776 4 1.36808057330267 3.75877048314363 4 0.69459271066772 3.93923101204883 4 0 4 4 -0.69459271066772 3.93923101204883 4 -1.36808057330268 3.75877048314363 4 -2 3.46410161513775 4 -2.57115043874616 3.06417777247591 4 -3.06417777247592 2.57115043874615 4 -3.46410161513776 2 4 -3.75877048314364 1.36808057330267 4 -3.93923101204884 0.694592710667714 4 -4 -8.3919416554723e-015 4 -3.93923101204883 -0.694592710667731 4 -3.75877048314363 -1.36808057330268 4 -3.46410161513775 -2.00000000000001 4 -3.0641777724759 -2.57115043874617 4 -2.57115043874614 -3.06417777247592 4 -1.99999999999999 -3.46410161513776 4 -1.36808057330266 -3.75877048314364 4 -0.694592710667713 -3.93923101204883 4 7.105427357601e-015 -4 4 0.694592710667727 -3.93923101204883 4 1.36808057330268 -3.75877048314363 4 2.00000000000001 -3.46410161513775 4 2.57115043874616 -3.06417777247591 4 3.06417777247592 -2.57115043874615 4 3.46410161513776 -2 4 3.75877048314364 -1.36808057330267 4 3.93923101204884 -0.694592710667718 4 2 0 4 1.96785917719725 0.35711378959728 4 1.87246974127947 0.702749648162691 4 1.71689758720373 1.02579855481182 4 1.50614293200722 1.31587745187943 4 1.24697960371746 1.56366296493606 4 0.94773732494599 1.76119106371348 4 0.618033988749886 1.90211303259031 4 0.268466531635305 1.98189952353587 4 -0.0897296607010389 1.99798613308263 4 -0.445041867912636 1.94985582436365 4 -0.786050063307854 1.8390555451029 4 -1.10179396290421 1.6691465074426 4 -1.38212529797374 1.44558972765478 4 -1.6180339887499 1.17557050458494 4 -1.80193773580484 0.867767478235112 4 -1.92792572139171 0.532073691133345 4 -1.99194858799048 0.179278617806862 4 -1.99194858799048 -0.179278617806872 4 -1.9279257213917 -0.532073691133355 4 -1.80193773580483 -0.867767478235121 4 -1.61803398874989 -1.17557050458495 4 -1.38212529797372 -1.44558972765479 4 -1.1017939629042 -1.66914650744261 4 -0.78605006330784 -1.8390555451029 4 -0.445041867912622 -1.94985582436365 4 -0.0897296607010247 -1.99798613308263 4 0.268466531635319 -1.98189952353587 4 0.6180339887499 -1.90211303259031 4 0.947737324946004 -1.76119106371347 4 1.24697960371747 -1.56366296493606 4 1.50614293200722 -1.31587745187942 4 1.71689758720373 -1.02579855481181 4 1.87246974127947 -0.702749648162681 4 1.96785917719726 -0.357113789597269 4 4 1.33226762955019e-014 3.93923101204883 0.694592710667721 3.75877048314363 1.36808057330268 3.46410161513775 2 3.06417777247591 2.57115043874616 2.57115043874616 3.06417777247591 1.99999999999999 3.46410161513776 1.36808057330268 3.75877048314363 0.694592710667735 3.93923101204883 -1.37667655053519e-014 4 -0.694592710667723 3.93923101204883 -1.36808057330267 3.75877048314364 -2.00000000000002 3.46410161513774 -2.57115043874616 3.06417777247591 -3.06417777247591 2.57115043874616 -3.46410161513777 1.99999999999998 -3.75877048314364 1.36808057330267 -3.93923101204883 0.694592710667723 -4 -2.79776202205539e-014 -3.93923101204883 -0.694592710667736 -3.75877048314363 -1.36808057330268 -3.46410161513776 -1.99999999999999 -3.0641777724759 -2.57115043874617 -2.57115043874615 -3.06417777247592 -2 -3.46410161513775 -1.36808057330265 -3.75877048314364 -0.694592710667711 -3.93923101204883 -8.88178419700125e-016 -4 0.694592710667751 -3.93923101204883 1.36808057330269 -3.75877048314363 2 -3.46410161513775 2.57115043874615 -3.06417777247592 3.06417777247592 -2.57115043874614 3.46410161513776 -1.99999999999999 3.75877048314363 -1.36808057330268 3.93923101204883 -0.694592710667735 2 7.105427357601e-015 1.96785917719726 0.357113789597278 1.87246974127947 0.702749648162688 1.71689758720373 1.02579855481181 1.50614293200722 1.31587745187942 1.24697960371747 1.56366296493606 0.947737324945985 1.76119106371348 0.618033988749883 1.90211303259031 0.2684665316353 1.98189952353587 -0.0897296607010376 1.99798613308263 -0.445041867912634 1.94985582436365 -0.786050063307851 1.8390555451029 -1.10179396290421 1.6691465074426 -1.38212529797373 1.44558972765478 -1.61803398874989 1.17557050458495 -1.80193773580484 0.86776747823512 -1.92792572139171 0.532073691133337 -1.99194858799048 0.179278617806855 -1.99194858799048 -0.179278617806875 -1.9279257213917 -0.532073691133357 -1.80193773580484 -0.867767478235121 -1.61803398874989 -1.17557050458495 -1.38212529797373 -1.44558972765478 -1.10179396290421 -1.6691465074426 -0.786050063307851 -1.8390555451029 -0.445041867912614 -1.94985582436365 -0.0897296607010181 -1.99798613308263 0.268466531635321 -1.98189952353587 0.618033988749903 -1.9021130325903 0.947737324946003 -1.76119106371347 1.24697960371747 -1.56366296493606 1.50614293200722 -1.31587745187942 1.71689758720373 -1.02579855481181 1.87246974127947 -0.702749648162688 1.96785917719726 -0.357113789597277 66 30 31 3 38 2 7 8 43 7 43 42 51 16 52 51 15 16 4 40 39 4 39 3 67 31 32 67 66 31 5 40 4 5 41 40 50 15 51 6 7 42 6 41 5 6 42 41 68 67 32 14 15 50 33 68 32 49 14 50 69 68 33 13 49 48 13 14 49 34 69 33 34 70 69 59 23 24 58 22 23 58 23 59 60 24 25 60 59 24 57 22 58 35 70 34 35 71 70 57 21 22 61 60 25 12 48 47 61 25 26 12 13 48 56 21 57 56 20 21 62 26 27 62 61 26 55 20 56 36 37 71 55 19 20 36 71 35 63 27 28 11 47 46 63 62 27 11 12 47 54 18 19 10 46 45 54 19 55 10 11 46 64 28 29 64 63 28 1 37 36 2 38 37 2 37 1 53 17 18 53 18 54 9 45 44 9 10 45 65 64 29 65 29 30 8 9 44 8 44 43 52 17 53 52 16 17 3 39 38 66 65 30 +36 34 1 8.04400990261911e-012 +-8.9994444272964 -0.100000000018675 1 8.9994444272963 -0.100000000026636 1 -8.83011945505477 -1.74039949708775 1 -8.36432251829366 -3.3223649423213 1 -7.61769278629178 -4.79278171980304 1 -6.61529841181216 -6.10228046902758 1 -5.3907948658751 -7.20689466511442 1 -3.98529495263605 -8.06953679838525 1 -2.44598844370919 -8.6612435904575 1 -0.824557677824146 -8.96214843862459 1 0.824557677816273 -8.96214843862532 1 2.44598844370158 -8.66124359045965 1 3.98529495262896 -8.06953679838875 1 5.39079486586877 -7.20689466511916 1 6.6152984118068 -6.10228046903339 1 7.61769278628757 -4.79278171980973 1 8.36432251829075 -3.32236494232864 1 8.83011945505324 -1.74039949709549 1 -5.999166608788 -0.10000000001574 1 5.9991666087879 -0.100000000018591 1 -5.88098744948146 -1.18911169325741 1 -5.5667540412486 -2.23858201642075 1 -5.06694197094753 -3.21342481832862 1 -4.39821345404616 -4.08114180256547 1 -3.58286186699578 -4.81280592191577 1 -2.64806855381103 -5.38402571820725 1 -1.62499668266598 -5.77575845939947 1 -0.547752360573767 -5.97494496639809 1 0.547752360570879 -5.97494496639835 1 1.62499668266318 -5.77575845940026 1 2.64806855380843 -5.38402571820854 1 3.58286186699345 -4.8128059219175 1 4.39821345404419 -4.0811418025676 1 5.06694197094598 -3.21342481833107 1 5.56675404124751 -2.23858201642345 1 5.88098744948089 -1.18911169326026 1 -8.9994444272964 -0.100000000018701 8.99944442729631 -0.100000000026615 -8.83011945505477 -1.74039949708775 -8.36432251829366 -3.3223649423213 -7.61769278629178 -4.79278171980304 -6.61529841181216 -6.10228046902758 -5.3907948658751 -7.20689466511442 -3.98529495263605 -8.06953679838525 -2.44598844370919 -8.6612435904575 -0.824557677824147 -8.96214843862459 0.824557677816271 -8.96214843862532 2.44598844370158 -8.66124359045965 3.98529495262896 -8.06953679838875 5.39079486586876 -7.20689466511916 6.6152984118068 -6.10228046903339 7.61769278628757 -4.79278171980973 8.36432251829074 -3.32236494232864 8.83011945505324 -1.74039949709549 -5.999166608788 -0.0999999999999996 5.9991666087879 -0.0999999999999996 -5.88098744948146 -1.18911169325741 -5.5667540412486 -2.23858201642075 -5.06694197094753 -3.21342481832862 -4.39821345404616 -4.08114180256547 -3.58286186699578 -4.81280592191577 -2.64806855381103 -5.38402571820725 -1.62499668266598 -5.77575845939947 -0.547752360573769 -5.97494496639809 0.547752360570879 -5.97494496639835 1.62499668266318 -5.77575845940026 2.64806855380843 -5.38402571820854 3.58286186699346 -4.8128059219175 4.39821345404419 -4.0811418025676 5.06694197094598 -3.21342481833107 5.56675404124752 -2.23858201642345 5.88098744948089 -1.18911169326026 18 36 17 18 20 36 2 20 18 24 6 7 25 7 8 25 24 7 23 5 6 23 6 24 26 8 9 26 25 8 22 4 5 22 5 23 27 9 10 27 26 9 21 3 4 21 4 22 28 10 11 28 27 10 19 1 3 19 3 21 29 28 11 30 11 12 30 29 11 31 12 13 31 30 12 32 13 14 32 31 13 33 32 14 15 33 14 34 33 15 16 34 15 35 34 16 17 35 16 17 36 35 +36 34 1 0.0378515613750491 +-8.9994444272964 -0.100000000018675 1 8.9994444272963 -0.100000000026636 1 -8.83011945505477 -1.74039949708775 1 -8.36432251829366 -3.3223649423213 1 -7.61769278629178 -4.79278171980304 1 -6.61529841181216 -6.10228046902758 1 -5.3907948658751 -7.20689466511442 1 -3.98529495263605 -8.06953679838525 1 -2.44598844370919 -8.6612435904575 1 -0.824557677824146 -8.96214843862459 1 0.824557677816273 -8.96214843862532 1 2.44598844370158 -8.66124359045965 1 3.98529495262896 -8.06953679838875 1 5.39079486586877 -7.20689466511916 1 6.6152984118068 -6.10228046903339 1 7.61769278628757 -4.79278171980973 1 8.36432251829075 -3.32236494232864 1 8.83011945505324 -1.74039949709549 1 -8.9994444272964 -0.100000000018675 0 8.9994444272963 -0.100000000026636 0 -8.83011945505477 -1.74039949708775 0 -8.36432251829366 -3.3223649423213 0 -7.61769278629178 -4.79278171980304 0 -6.61529841181216 -6.10228046902758 0 -5.3907948658751 -7.20689466511442 0 -3.98529495263605 -8.06953679838525 0 -2.44598844370919 -8.6612435904575 0 -0.824557677824146 -8.96214843862459 0 0.824557677816273 -8.96214843862532 0 2.44598844370158 -8.66124359045965 0 3.98529495262896 -8.06953679838875 0 5.39079486586877 -7.20689466511916 0 6.6152984118068 -6.10228046903339 0 7.61769278628757 -4.79278171980973 0 8.36432251829075 -3.32236494232864 0 8.83011945505324 -1.74039949709549 0 3.15270399333937 1 6.27207396742913 1 3.33619634475641 1 3.51968869617346 1 3.7031810475905 1 3.88667339900755 1 4.07016575042459 1 4.25365810184164 1 4.43715045325868 1 4.62064280467573 1 4.80413515609277 1 4.98762750750982 1 5.17111985892686 1 5.35461221034391 1 5.53810456176095 1 5.721596913178 1 5.90508926459504 1 6.08858161601209 1 3.15270399333729 0 6.27207396743209 0 3.33619634475641 0 3.51968869617346 0 3.7031810475905 0 3.88667339900755 0 4.07016575042459 0 4.25365810184164 0 4.43715045325868 0 4.62064280467573 0 4.80413515609277 0 4.98762750750982 0 5.17111985892686 0 5.35461221034391 0 5.53810456176095 0 5.721596913178 0 5.90508926459504 0 6.08858161601209 0 1 19 21 3 1 21 4 21 22 4 3 21 5 22 23 5 4 22 6 23 24 6 5 23 7 24 25 7 6 24 8 25 26 8 7 25 9 26 27 9 8 26 10 27 28 10 9 27 11 28 29 11 29 30 11 10 28 12 11 30 13 30 31 13 12 30 14 31 32 14 32 33 14 13 31 15 14 33 16 33 34 16 34 35 16 15 33 17 16 35 18 17 35 18 35 36 2 18 36 2 36 20 +4 2 1 1.76966589530519e-011 +65.000833391212 -1.57399926425938e-011 12 62.0005555727036 -1.86749921082807e-011 12 65.000833391212 -1.57399926425938e-011 11 62.0005555727036 -1.86749921082807e-011 11 12 65.000833391212 12 62.0005555727036 11 65.0008333912117 11 62.0005555727034 3 4 2 1 3 2 +4 2 1 2.39543292609082e-011 +79.9994444272963 -2.66359989620213e-011 12 76.9991666087879 -1.859098985868e-011 12 79.9994444272963 -2.66359989620213e-011 11 76.9991666087879 -1.859098985868e-011 11 12 79.9994444272963 12 76.9991666087879 11 79.9994444272966 11 76.9991666087883 1 4 2 1 3 4 +36 34 1 0.0250550336018004 +-5.999166608788 -0.10000000001574 1.5 5.9991666087879 -0.100000000018591 1.5 -5.88098744948146 -1.18911169325741 1.5 -5.5667540412486 -2.23858201642075 1.5 -5.06694197094753 -3.21342481832862 1.5 -4.39821345404616 -4.08114180256547 1.5 -3.58286186699578 -4.81280592191577 1.5 -2.64806855381103 -5.38402571820725 1.5 -1.62499668266598 -5.77575845939947 1.5 -0.547752360573767 -5.97494496639809 1.5 0.547752360570879 -5.97494496639835 1.5 1.62499668266318 -5.77575845940026 1.5 2.64806855380843 -5.38402571820854 1.5 3.58286186699345 -4.8128059219175 1.5 4.39821345404419 -4.0811418025676 1.5 5.06694197094598 -3.21342481833107 1.5 5.56675404124751 -2.23858201642345 1.5 5.88098744948089 -1.18911169326026 1.5 -5.999166608788 -0.10000000001574 0.5 5.9991666087879 -0.100000000018591 0.5 -5.88098744948145 -1.18911169325748 0.5 -5.56675404124857 -2.23858201642081 0.5 -5.0669419709475 -3.21342481832867 0.5 -4.39821345404611 -4.08114180256552 0.5 -3.58286186699573 -4.81280592191581 0.5 -2.64806855381097 -5.38402571820728 0.5 -1.62499668266592 -5.77575845939949 0.5 -0.547752360573703 -5.97494496639809 0.5 0.547752360570943 -5.97494496639835 0.5 1.62499668266324 -5.77575845940024 0.5 2.64806855380849 -5.38402571820851 0.5 3.58286186699351 -4.81280592191746 0.5 4.39821345404423 -4.08114180256755 0.5 5.06694197094602 -3.21342481833102 0.5 5.56675404124754 -2.23858201642339 0.5 5.8809874494809 -1.18911169326019 0.5 3.15826009196048 1.5 6.26651786880841 1.5 3.34109878471624 1.5 3.523937477472 1.5 3.70677617022776 1.5 3.88961486298352 1.5 4.07245355573928 1.5 4.25529224849504 1.5 4.4381309412508 1.5 4.62096963400656 1.5 4.80380832676232 1.5 4.98664701951809 1.5 5.16948571227385 1.5 5.35232440502961 1.5 5.53516309778537 1.5 5.71800179054113 1.5 5.90084048329689 1.5 6.08367917605265 1.5 3.15826009195786 0.5 6.26651786881151 0.5 3.34109878471625 0.5 3.52393747747201 0.5 3.70677617022777 0.5 3.88961486298353 0.5 4.07245355573929 0.5 4.25529224849505 0.5 4.43813094125081 0.5 4.62096963400657 0.5 4.80380832676234 0.5 4.9866470195181 0.5 5.16948571227386 0.5 5.35232440502962 0.5 5.53516309778538 0.5 5.71800179054114 0.5 5.9008404832969 0.5 6.08367917605266 0.5 1 19 21 3 1 21 4 21 22 4 3 21 5 22 23 5 4 22 6 23 24 6 5 23 7 24 25 7 6 24 8 25 26 8 7 25 9 26 27 9 8 26 10 27 28 10 9 27 11 28 29 11 10 28 12 29 30 12 11 29 13 30 31 13 12 30 14 31 32 14 13 31 15 32 33 15 14 32 16 33 34 16 15 33 17 34 35 17 16 34 18 17 35 18 35 36 2 18 36 2 36 20 +36 34 1 8.04400990261911e-012 +-8.9994444272964 -0.100000000018675 0 8.9994444272963 -0.100000000026636 0 -8.83011945505477 -1.74039949708775 0 -8.36432251829366 -3.3223649423213 0 -7.61769278629178 -4.79278171980304 0 -6.61529841181216 -6.10228046902758 0 -5.3907948658751 -7.20689466511442 0 -3.98529495263605 -8.06953679838525 0 -2.44598844370919 -8.6612435904575 0 -0.824557677824146 -8.96214843862459 0 0.824557677816273 -8.96214843862532 0 2.44598844370158 -8.66124359045965 0 3.98529495262896 -8.06953679838875 0 5.39079486586877 -7.20689466511916 0 6.6152984118068 -6.10228046903339 0 7.61769278628757 -4.79278171980973 0 8.36432251829075 -3.32236494232864 0 8.83011945505324 -1.74039949709549 0 -5.999166608788 -0.10000000001574 0 5.9991666087879 -0.100000000018591 0 -5.88098744948145 -1.18911169325748 0 -5.56675404124857 -2.23858201642081 0 -5.0669419709475 -3.21342481832867 0 -4.39821345404611 -4.08114180256552 0 -3.58286186699573 -4.81280592191581 0 -2.64806855381097 -5.38402571820728 0 -1.62499668266592 -5.77575845939949 0 -0.547752360573703 -5.97494496639809 0 0.547752360570943 -5.97494496639835 0 1.62499668266324 -5.77575845940024 0 2.64806855380849 -5.38402571820851 0 3.58286186699351 -4.81280592191746 0 4.39821345404423 -4.08114180256755 0 5.06694197094602 -3.21342481833102 0 5.56675404124754 -2.23858201642339 0 5.8809874494809 -1.18911169326019 0 -8.9994444272964 -0.100000000018701 8.99944442729631 -0.100000000026615 -8.83011945505477 -1.74039949708775 -8.36432251829366 -3.3223649423213 -7.61769278629178 -4.79278171980304 -6.61529841181216 -6.10228046902758 -5.3907948658751 -7.20689466511442 -3.98529495263605 -8.06953679838525 -2.44598844370919 -8.6612435904575 -0.824557677824147 -8.96214843862459 0.824557677816271 -8.96214843862532 2.44598844370158 -8.66124359045965 3.98529495262896 -8.06953679838875 5.39079486586876 -7.20689466511916 6.6152984118068 -6.10228046903339 7.61769278628757 -4.79278171980973 8.36432251829074 -3.32236494232864 8.83011945505324 -1.74039949709549 -5.999166608788 -0.0999999999999996 5.9991666087879 -0.0999999999999996 -5.88098744948145 -1.18911169325748 -5.56675404124857 -2.23858201642081 -5.0669419709475 -3.21342481832867 -4.39821345404612 -4.08114180256552 -3.58286186699573 -4.81280592191581 -2.64806855381097 -5.38402571820728 -1.62499668266592 -5.77575845939949 -0.547752360573705 -5.97494496639809 0.547752360570943 -5.97494496639835 1.62499668266325 -5.77575845940024 2.64806855380849 -5.38402571820851 3.58286186699351 -4.81280592191746 4.39821345404423 -4.08114180256755 5.06694197094601 -3.21342481833102 5.56675404124754 -2.23858201642339 5.8809874494809 -1.18911169326019 18 36 17 18 20 36 2 20 18 24 6 7 25 7 8 25 24 7 23 5 6 23 6 24 26 8 9 26 25 8 22 4 5 22 5 23 27 9 10 27 26 9 21 3 4 21 4 22 28 10 11 28 27 10 19 1 3 19 3 21 29 28 11 30 11 12 30 29 11 31 12 13 31 30 12 32 13 14 32 31 13 33 32 14 15 33 14 34 33 15 16 34 15 35 34 16 17 35 16 17 36 35 +80 78 1 0.0557760545552219 +-1.8333333333233 5.71304550033743 20.6 -1.8808928571424 5.69756457268652 20.6 -1.8492008262747 5.70792924834436 20.6 -1.86505404168173 5.70276892584704 20.6 -1.8333333333337 5.71304550033527 14 -2.5342261904785 5.43853818737102 22 6 0 14 5.89413206639373 1.12214401210771 14 5.58026427203028 2.20468833495858 14 5.06947279518124 3.20943072505347 14 4.37978311523253 4.10091451551041 14 3.53553390593273 4.84767985741633 14 2.56651814036093 5.42337391622579 14 1.50693171742812 5.80768084514026 14 0.39416671215869 5.98703871734817 14 -0.732508164881608 5.95511811708062 14 -2.5342261904902 -5.43853818736556 22 -3.44032413502163 4.91570644424458 22 -4.24183942567444 4.24344179726716 22 -4.9144067430832 3.44218046643961 22 -5.43758066634744 2.53628005097318 22 -5.79545719479927 1.55327908092829 22 -5.97715721483146 0.523059871513977 22 -5.97715721483259 -0.523059871501105 22 -5.79545719480261 -1.5532790809158 22 -5.4375806663529 -2.53628005096147 22 -4.91440674309061 -3.44218046642903 22 -4.24183942568358 -4.24344179725802 22 -3.44032413503222 -4.91570644423717 22 6 0 0.6 -1.880892857143 -5.69756457268857 20.6 6 0 0.6 5.90357753159178 1.07134136879184 0.6 5.61740922383841 2.10824894448807 0.6 5.15069276161119 3.07739566443545 0.6 4.51842879602165 3.94763235563829 0.6 3.74093881115239 4.69098889480819 0.6 2.84321197483798 5.28357319114044 0.6 1.85410196624967 5.70633909777093 0.6 0.805399594905914 5.94569857060761 0.6 -0.269188982103106 5.99395839924789 0.6 -1.3351256037379 5.84956747309094 0.6 -2.35815018992356 5.5171666353087 0.6 -3.30538188871263 5.00743952232781 0.6 -4.1463758939212 4.33676918296434 0.6 -4.85410196624969 3.52671151375483 0.6 -5.40581320741452 2.60330243470534 0.6 -5.78377716417512 1.59622107340004 0.6 -5.97584576397144 0.537835853420586 0.6 -5.97584576397143 -0.537835853420616 0.6 -5.78377716417512 -1.59622107340007 0.6 -5.40581320741451 -2.60330243470536 0.6 -4.85410196624968 -3.52671151375485 0.6 -4.14637589392118 -4.33676918296436 0.6 -3.3053818887126 -5.00743952232782 0.6 -2.35815018992353 -5.51716663530871 0.6 -1.33512560373787 -5.84956747309094 0.6 -0.269188982103074 -5.99395839924789 0.6 0.805399594905946 -5.94569857060761 0.6 1.8541019662497 -5.70633909777092 0.6 2.84321197483801 -5.28357319114042 0.6 3.74093881115241 -4.69098889480817 0.6 4.51842879602167 -3.94763235563827 0.6 5.1506927616112 -3.07739566443543 0.6 5.61740922383843 -2.10824894448804 0.6 5.90357753159178 -1.07134136879181 0.6 -1.8333333333233 -5.71304550033743 20.6 -1.86505404168167 -5.70276892584706 20.6 -1.84920082627463 -5.70792924834438 20.6 6 0 14 -1.8333333333332 -5.71304550033375 14 -0.732508164881608 -5.95511811708062 14 0.39416671215869 -5.98703871734817 14 1.50693171742812 -5.80768084514027 14 2.56651814036092 -5.42337391622579 14 3.53553390593272 -4.84767985741634 14 4.37978311523253 -4.10091451551042 14 5.06947279518124 -3.20943072505349 14 5.58026427203027 -2.20468833495859 14 5.89413206639372 -1.12214401210773 14 1.88131816145891 20.6 1.88965413089648 20.6 1.8840968179381 20.6 1.88687547441729 20.6 1.88131816146066 14 2.00685586902105 22 0 14 0.188131816146066 14 0.376263632292132 14 0.564395448438198 14 0.752527264584264 14 0.94065908073033 14 1.1287908968764 14 1.31692271302246 14 1.50505452916853 14 1.69318634531459 14 4.27632943815638 22 2.18143075895454 22 2.35600564888802 22 2.53058053882151 22 2.705155428755 22 2.87973031868849 22 3.05430520862197 22 3.22888009855546 22 3.40345498848895 22 3.57802987842243 22 3.75260476835592 22 3.92717965828941 22 4.1017545482229 22 0 0.6 4.39353117628312 20.6 6.28318530717958 0.6 0.179519580205131 0.6 0.359039160410262 0.6 0.538558740615393 0.6 0.718078320820524 0.6 0.897597901025655 0.6 1.07711748123079 0.6 1.25663706143592 0.6 1.43615664164105 0.6 1.61567622184618 0.6 1.79519580205131 0.6 1.97471538225644 0.6 2.15423496246157 0.6 2.3337545426667 0.6 2.51327412287183 0.6 2.69279370307696 0.6 2.8723132832821 0.6 3.05183286348723 0.6 3.23135244369236 0.6 3.41087202389749 0.6 3.59039160410262 0.6 3.76991118430775 0.6 3.94943076451288 0.6 4.12895034471801 0.6 4.30846992492314 0.6 4.48798950512828 0.6 4.66750908533341 0.6 4.84702866553854 0.6 5.02654824574367 0.6 5.2060678259488 0.6 5.38558740615393 0.6 5.56510698635906 0.6 5.74462656656419 0.6 5.92414614676932 0.6 6.10366572697445 0.6 4.40186714572068 20.6 4.3963098327623 20.6 4.39908848924149 20.6 6.28318530717959 14 4.40186714571892 14 4.58999896186499 14 4.77813077801105 14 4.96626259415712 14 5.15439441030318 14 5.34252622644925 14 5.53065804259531 14 5.71878985874138 14 5.90692167488744 14 6.09505349103351 14 24 49 50 24 23 49 25 50 51 7 30 33 25 24 50 8 33 34 26 51 52 8 7 33 26 25 51 9 34 35 9 8 34 27 52 53 27 26 52 10 35 36 10 9 35 28 53 54 28 27 53 11 10 36 11 36 37 29 54 55 29 28 54 12 11 37 12 37 38 71 55 56 71 56 57 13 12 38 17 29 55 13 38 39 17 55 71 14 13 39 14 39 40 31 17 71 15 14 40 68 31 71 15 40 41 69 68 71 16 15 41 16 41 42 67 69 71 72 57 58 72 71 57 5 16 42 5 42 43 44 5 43 73 72 58 73 58 59 3 1 5 74 73 59 74 59 60 4 3 5 2 4 5 75 74 60 75 60 61 6 5 44 76 75 61 6 2 5 76 61 62 18 6 44 77 76 62 18 44 45 77 62 63 19 45 46 78 77 63 19 18 45 78 63 64 20 19 46 20 46 47 79 78 64 79 64 65 21 47 48 21 20 47 80 79 65 80 65 66 22 48 49 22 21 48 70 80 66 70 66 32 23 22 49 +70 68 1 5.23980858702089e-012 +19.1666666666767 5.71304550033743 20 19.1191071428576 5.69756457268652 20 19.1507991737253 5.70792924834436 20 19.1349459583183 5.70276892584704 20 19.1666666666767 -5.71304550033743 20 17.850067137602 9.02081499550352 20 15.9678537202704 12.0427425268519 20 13.579667985839 14.6830724780061 20 10.7611842165802 16.8581408896955 20 7.60171151993114 18.499026514056 20 4.20136389675501 19.5537347176196 20 0.667887935665665 19.9888450318019 20 -2.88675134594826 19.7905701450632 20 -6.34991832997053 18.965192780531 20 -9.61187587488506 17.5388666157709 20 -12.5692625492688 15.5567875529478 20 -15.1283678385833 13.0817615992846 20 -17.2081015440068 10.1922147372958 20 -18.7425632821616 6.97970784590349 20 -19.6831306661724 3.54603541696691 20 -20 3.67381906146713e-015 20 -19.6831306661724 -3.54603541696691 20 -18.7425632821616 -6.97970784590348 20 -17.2081015440068 -10.1922147372958 20 -15.1283678385833 -13.0817615992846 20 -12.5692625492688 -15.5567875529477 20 -9.61187587488507 -17.5388666157709 20 -6.34991832997054 -18.965192780531 20 -2.88675134594827 -19.7905701450632 20 0.667887935665658 -19.9888450318019 20 4.201363896755 -19.5537347176196 20 7.60171151993113 -18.499026514056 20 10.7611842165802 -16.8581408896955 20 13.579667985839 -14.6830724780061 20 15.9678537202704 -12.0427425268519 20 17.850067137602 -9.02081499550353 20 19.119107142857 -5.69756457268857 20 17.8059706727316 8.99721670305996 20 15.9285928617332 12.0117621290609 20 13.5464646633673 14.6456749630784 20 10.7350717241891 16.8154909258254 20 7.58350237029327 18.4524521893367 20 4.19162454770623 19.5046861971954 20 0.666921174706846 19.9388494188287 20 -2.8789158115501 19.7411839500575 20 -6.33352478515757 18.9179534780006 20 -9.58743498289324 17.4952447953378 20 -12.5375354490674 15.5181411536105 20 -15.0903424487386 13.049293650608 20 -17.1649618104542 10.1669359221768 20 -18.6956523268422 6.96240504953847 20 -19.6339089831915 3.53724724040492 20 -19.95 9.95937565002793e-013 20 -19.6339089831918 -3.53724724040296 20 -18.6956523268429 -6.9624050495366 20 -17.1649618104552 -10.1669359221751 20 -15.0903424487399 -13.0492936506065 20 -12.5375354490689 -15.5181411536092 20 -9.58743498289501 -17.4952447953368 20 -6.33352478515949 -18.9179534779999 20 -2.87891581155211 -19.7411839500572 20 0.666921174704802 -19.9388494188288 20 4.19162454770423 -19.5046861971959 20 7.58350237029136 -18.4524521893375 20 10.7350717241874 -16.8154909258265 20 13.5464646633658 -14.6456749630798 20 15.928592861732 -12.0117621290626 20 17.8059706727307 -8.99721670306183 20 19.1349459583183 -5.70276892584706 20 19.1507991737254 -5.70792924834438 20 19.1666666666767 5.71304550033741 19.1191071428571 5.69756457268794 19.1507991737253 5.70792924834436 19.1349459583183 5.70276892584704 19.1666666666666 -5.71304550033447 17.850067137602 9.02081499550352 15.9678537202704 12.0427425268519 13.579667985839 14.6830724780061 10.7611842165802 16.8581408896955 7.60171151993114 18.499026514056 4.20136389675501 19.5537347176196 0.667887935665664 19.9888450318019 -2.88675134594826 19.7905701450632 -6.34991832997054 18.965192780531 -9.61187587488506 17.5388666157709 -12.5692625492688 15.5567875529478 -15.1283678385833 13.0817615992846 -17.2081015440068 10.1922147372958 -18.7425632821616 6.97970784590349 -19.6831306661724 3.54603541696691 -20 3.5527136788005e-015 -19.6831306661724 -3.54603541696691 -18.7425632821616 -6.97970784590348 -17.2081015440068 -10.1922147372958 -15.1283678385833 -13.0817615992846 -12.5692625492688 -15.5567875529477 -9.61187587488507 -17.5388666157709 -6.34991832997054 -18.965192780531 -2.88675134594827 -19.7905701450632 0.667887935665657 -19.9888450318019 4.201363896755 -19.5537347176196 7.60171151993113 -18.499026514056 10.7611842165802 -16.8581408896955 13.579667985839 -14.6830724780061 15.9678537202704 -12.0427425268519 17.850067137602 -9.02081499550353 19.119107142857 -5.6975645726885 17.8059706727316 8.99721670305996 15.9285928617332 12.0117621290609 13.5464646633673 14.6456749630784 10.7350717241891 16.8154909258254 7.58350237029327 18.4524521893367 4.19162454770623 19.5046861971954 0.666921174706847 19.9388494188287 -2.87891581155009 19.7411839500575 -6.33352478515757 18.9179534780006 -9.58743498289324 17.4952447953378 -12.5375354490674 15.5181411536105 -15.0903424487386 13.049293650608 -17.1649618104542 10.1669359221768 -18.6956523268422 6.96240504953846 -19.6339089831915 3.53724724040492 -19.95 9.9475983006414e-013 -19.6339089831918 -3.53724724040296 -18.6956523268429 -6.9624050495366 -17.1649618104552 -10.1669359221751 -15.0903424487399 -13.0492936506065 -12.5375354490689 -15.5181411536092 -9.58743498289501 -17.4952447953368 -6.33352478515949 -18.9179534779999 -2.87891581155211 -19.7411839500572 0.666921174704804 -19.9388494188288 4.19162454770423 -19.5046861971959 7.58350237029136 -18.4524521893375 10.7350717241874 -16.8154909258265 13.5464646633658 -14.6456749630798 15.928592861732 -12.0117621290626 17.8059706727307 -8.99721670306183 19.1349459583183 -5.70276892584706 19.1507991737254 -5.70792924834438 16 17 49 16 49 48 39 38 6 7 39 6 26 57 25 35 66 34 35 67 66 40 39 7 58 57 26 8 9 41 8 40 7 8 41 40 15 48 47 56 24 25 15 16 48 56 25 57 27 58 26 59 58 27 36 67 35 36 68 67 55 23 24 55 24 56 14 47 46 14 15 47 28 59 27 69 37 68 60 59 28 70 69 68 54 22 23 5 70 68 5 68 36 54 23 55 29 60 28 61 60 29 13 46 45 13 14 46 53 22 54 53 21 22 30 61 29 12 45 44 12 13 45 62 61 30 20 21 53 11 44 43 11 12 44 52 20 53 31 62 30 63 62 31 19 20 52 51 19 52 32 63 31 64 63 32 18 19 51 50 18 51 33 64 32 65 64 33 10 43 42 10 11 43 38 3 1 38 4 3 38 2 4 17 18 50 49 17 50 6 38 1 34 65 33 66 65 34 9 42 41 9 10 42 +66 64 1 0.0793748425978221 +19.1666666666663 5.71304550033527 0.5 19.1666666666668 -5.71304550033375 0.5 17.8500671376016 9.02081499550423 0.5 15.9678537202699 12.0427425268525 0.5 13.5796679858384 14.6830724780066 0.5 10.7611842165796 16.858140889696 0.5 7.6017115199304 18.4990265140563 0.5 4.20136389675422 19.5537347176198 0.5 0.667887935664866 19.9888450318019 0.5 -2.88675134594905 19.7905701450631 0.5 -6.34991832997129 18.9651927805307 0.5 -9.61187587488576 17.5388666157705 0.5 -12.5692625492694 15.5567875529472 0.5 -15.1283678385839 13.081761599284 0.5 -17.2081015440072 10.1922147372951 0.5 -18.7425632821619 6.97970784590274 0.5 -19.6831306661725 3.54603541696613 0.5 -20 -7.95686758668646e-013 0.5 -19.6831306661723 -3.54603541696769 0.5 -18.7425632821614 -6.97970784590423 0.5 -17.2081015440064 -10.1922147372965 0.5 -15.1283678385828 -13.0817615992852 0.5 -12.5692625492681 -15.5567875529483 0.5 -9.61187587488437 -17.5388666157713 0.5 -6.34991832996978 -18.9651927805312 0.5 -2.88675134594748 -19.7905701450633 0.5 0.667887935666457 -19.9888450318019 0.5 4.20136389675578 -19.5537347176195 0.5 7.60171151993187 -18.4990265140557 0.5 10.7611842165809 -16.8581408896951 0.5 13.5796679858396 -14.6830724780056 0.5 15.9678537202709 -12.0427425268512 0.5 17.8500671376024 -9.02081499550281 0.5 19.1666666666767 5.71304550033743 7.1 19.1666666666767 -5.71304550033743 7.1 17.850067137602 9.02081499550352 7.1 15.9678537202704 12.0427425268519 7.1 13.579667985839 14.6830724780061 7.1 10.7611842165802 16.8581408896955 7.1 7.60171151993114 18.499026514056 7.1 4.20136389675501 19.5537347176196 7.1 0.667887935665665 19.9888450318019 7.1 -2.88675134594826 19.7905701450632 7.1 -6.34991832997053 18.965192780531 7.1 -9.61187587488506 17.5388666157709 7.1 -12.5692625492688 15.5567875529478 7.1 -15.1283678385833 13.0817615992846 7.1 -17.2081015440068 10.1922147372958 7.1 -18.7425632821616 6.97970784590349 7.1 -19.6831306661724 3.54603541696691 7.1 -20 3.67381906146713e-015 7.1 -19.6831306661724 -3.54603541696691 7.1 -18.7425632821616 -6.97970784590348 7.1 -17.2081015440068 -10.1922147372958 7.1 -15.1283678385833 -13.0817615992846 7.1 -12.5692625492688 -15.5567875529477 7.1 -9.61187587488507 -17.5388666157709 7.1 -6.34991832997054 -18.965192780531 7.1 -2.88675134594827 -19.7905701450632 7.1 0.667887935665658 -19.9888450318019 7.1 4.201363896755 -19.5537347176196 7.1 7.60171151993113 -18.499026514056 7.1 10.7611842165802 -16.8581408896955 7.1 13.579667985839 -14.6830724780061 7.1 15.9678537202704 -12.0427425268519 7.1 17.850067137602 -9.02081499550353 7.1 0.28968699399717 0.5 5.99349831318249 0.5 0.467931097721711 0.5 0.646175201446252 0.5 0.824419305170793 0.5 1.00266340889533 0.5 1.18090751261988 0.5 1.35915161634442 0.5 1.53739572006896 0.5 1.7156398237935 0.5 1.89388392751804 0.5 2.07212803124258 0.5 2.25037213496712 0.5 2.42861623869166 0.5 2.60686034241621 0.5 2.78510444614075 0.5 2.96334854986529 0.5 3.14159265358983 0.5 3.31983675731437 0.5 3.49808086103891 0.5 3.67632496476345 0.5 3.854569068488 0.5 4.03281317221254 0.5 4.21105727593708 0.5 4.38930137966162 0.5 4.56754548338616 0.5 4.7457895871107 0.5 4.92403369083524 0.5 5.10227779455978 0.5 5.28052189828432 0.5 5.45876600200887 0.5 5.63701010573341 0.5 5.81525420945795 0.5 0.289686993997119 7.1 5.99349831318247 7.1 0.467931097721671 7.1 0.646175201446212 7.1 0.824419305170753 7.1 1.00266340889529 7.1 1.18090751261984 7.1 1.35915161634438 7.1 1.53739572006892 7.1 1.71563982379346 7.1 1.893883927518 7.1 2.07212803124254 7.1 2.25037213496708 7.1 2.42861623869162 7.1 2.60686034241617 7.1 2.78510444614071 7.1 2.96334854986525 7.1 3.14159265358979 7.1 3.31983675731433 7.1 3.49808086103887 7.1 3.67632496476341 7.1 3.85456906848795 7.1 4.0328131722125 7.1 4.21105727593704 7.1 4.38930137966158 7.1 4.56754548338612 7.1 4.74578958711066 7.1 4.9240336908352 7.1 5.10227779455974 7.1 5.28052189828428 7.1 5.45876600200883 7.1 5.63701010573337 7.1 5.81525420945791 7.1 54 53 20 55 21 22 55 54 21 36 1 3 56 22 23 36 34 1 56 55 22 37 3 4 57 23 24 37 36 3 57 56 23 38 4 5 58 24 25 38 37 4 58 57 24 39 5 6 59 25 26 39 38 5 59 58 25 40 6 7 60 26 27 40 39 6 60 59 26 61 27 28 41 7 8 41 40 7 61 60 27 62 28 29 42 8 9 62 61 28 42 41 8 63 29 30 43 42 9 63 62 29 43 9 10 64 30 31 64 63 30 44 43 10 44 10 11 65 31 32 65 64 31 45 11 12 45 44 11 66 32 33 66 65 32 35 33 2 46 12 13 35 66 33 46 45 12 47 13 14 47 46 13 48 14 15 48 47 14 49 15 16 49 48 15 50 16 17 50 49 16 51 17 18 51 50 17 52 18 19 52 51 18 53 19 20 53 52 19 54 20 21 +78 76 1 0.108499752217042 +19.25 0 1.5 18 0 4 18.4657738095098 -5.43853818736556 1.5 18.9001274124295 -3.65344820600081 1.5 19.1623322261314 -1.83508137567952 1.5 18 0 4 17.7265395542197 3.12566719800475 4 16.9144671741463 6.15636257986204 4 15.5884572681199 9 4 13.7887999761416 11.5701769743577 4 11.5701769743577 13.7887999761416 4 8.99999999999999 15.5884572681199 4 6.15636257986203 16.9144671741464 4 3.12566719800474 17.7265395542197 4 -1.08882629475116e-014 18 4 -3.12566719800476 17.7265395542197 4 -6.15636257986205 16.9144671741463 4 -9.00000000000001 15.5884572681199 4 -11.5701769743577 13.7887999761416 4 -13.7887999761416 11.5701769743577 4 -15.5884572681199 8.99999999999998 4 -16.9144671741464 6.15636257986201 4 -17.7265395542198 3.12566719800471 4 -18 -3.77637374496254e-014 4 -17.7265395542197 -3.12566719800479 4 -16.9144671741463 -6.15636257986208 4 -15.5884572681199 -9.00000000000004 4 -13.7887999761416 -11.5701769743578 4 -11.5701769743577 -13.7887999761416 4 -8.99999999999995 -15.5884572681199 4 -6.15636257986199 -16.9144671741464 4 -3.1256671980047 -17.7265395542198 4 4.46551975084863e-014 -18 4 3.12566719800479 -17.7265395542197 4 6.15636257986207 -16.9144671741463 4 9.00000000000003 -15.5884572681199 4 11.5701769743577 -13.7887999761416 4 13.7887999761416 -11.5701769743577 4 15.5884572681199 -8.99999999999998 4 16.9144671741464 -6.15636257986202 4 17.7265395542197 -3.12566719800473 4 19.119107142857 -5.69756457268857 0.0999999999999996 19.25 0 1.5 19.1191071428576 5.69756457268652 0.0999999999999996 17.8059706727316 8.99721670305996 0.0999999999999996 15.9285928617332 12.0117621290609 0.0999999999999996 13.5464646633673 14.6456749630784 0.0999999999999996 10.7350717241891 16.8154909258254 0.0999999999999996 7.58350237029327 18.4524521893367 0.0999999999999996 4.19162454770623 19.5046861971954 0.0999999999999996 0.666921174706846 19.9388494188287 0.0999999999999996 -2.8789158115501 19.7411839500575 0.0999999999999996 -6.33352478515757 18.9179534780006 0.0999999999999996 -9.58743498289324 17.4952447953378 0.0999999999999996 -12.5375354490674 15.5181411536105 0.0999999999999996 -15.0903424487386 13.049293650608 0.0999999999999996 -17.1649618104542 10.1669359221768 0.0999999999999996 -18.6956523268422 6.96240504953847 0.0999999999999996 -19.6339089831915 3.53724724040492 0.0999999999999996 -19.95 9.95937565002793e-013 0.0999999999999996 -19.6339089831918 -3.53724724040296 0.0999999999999996 -18.6956523268429 -6.9624050495366 0.0999999999999996 -17.1649618104552 -10.1669359221751 0.0999999999999996 -15.0903424487399 -13.0492936506065 0.0999999999999996 -12.5375354490689 -15.5181411536092 0.0999999999999996 -9.58743498289501 -17.4952447953368 0.0999999999999996 -6.33352478515949 -18.9179534779999 0.0999999999999996 -2.87891581155211 -19.7411839500572 0.0999999999999996 0.666921174704802 -19.9388494188288 0.0999999999999996 4.19162454770423 -19.5046861971959 0.0999999999999996 7.58350237029136 -18.4524521893375 0.0999999999999996 10.7350717241874 -16.8154909258265 0.0999999999999996 13.5464646633658 -14.6456749630798 0.0999999999999996 15.928592861732 -12.0117621290626 0.0999999999999996 17.8059706727307 -8.99721670306183 0.0999999999999996 18.4657738095215 5.43853818737102 1.5 19.1623322261313 1.83508137568023 1.5 18.9001274124293 3.65344820600208 1.5 6.28318530717959 1.67705098312484 6.28318530717959 4.47213595499958 5.99676366283315 1.67705098312484 6.09223754428196 1.67705098312484 6.18771142573078 1.67705098312484 0 4.47213595499958 0.174532925199433 4.47213595499958 0.349065850398866 4.47213595499958 0.523598775598299 4.47213595499958 0.698131700797732 4.47213595499958 0.872664625997165 4.47213595499958 1.0471975511966 4.47213595499958 1.22173047639603 4.47213595499958 1.39626340159546 4.47213595499958 1.5707963267949 4.47213595499958 1.74532925199433 4.47213595499958 1.91986217719376 4.47213595499958 2.0943951023932 4.47213595499958 2.26892802759263 4.47213595499958 2.44346095279206 4.47213595499958 2.6179938779915 4.47213595499958 2.79252680319093 4.47213595499958 2.96705972839036 4.47213595499958 3.1415926535898 4.47213595499958 3.31612557878923 4.47213595499958 3.49065850398866 4.47213595499958 3.6651914291881 4.47213595499958 3.83972435438753 4.47213595499958 4.01425727958696 4.47213595499958 4.18879020478639 4.47213595499958 4.36332312998583 4.47213595499958 4.53785605518526 4.47213595499958 4.71238898038469 4.47213595499958 4.88692190558413 4.47213595499958 5.06145483078356 4.47213595499958 5.23598775598299 4.47213595499958 5.41052068118242 4.47213595499958 5.58505360638186 4.47213595499958 5.75958653158129 4.47213595499958 5.93411945678072 4.47213595499958 6.10865238198015 4.47213595499958 5.99356099001553 0.11180339887499 0 1.67705098312484 0.28962431716395 0.111803398874989 0.467872338190562 0.111803398874989 0.646120359217174 0.111803398874989 0.824368380243786 0.111803398874989 1.0026164012704 0.111803398874989 1.18086442229701 0.111803398874989 1.35911244332362 0.111803398874989 1.53736046435023 0.111803398874989 1.71560848537685 0.111803398874989 1.89385650640346 0.111803398874989 2.07210452743007 0.111803398874989 2.25035254845668 0.111803398874989 2.42860056948329 0.111803398874989 2.60684859050991 0.111803398874989 2.78509661153652 0.111803398874989 2.96334463256313 0.111803398874989 3.14159265358974 0.111803398874989 3.31984067461635 0.111803398874989 3.49808869564296 0.111803398874989 3.67633671666957 0.111803398874989 3.85458473769619 0.111803398874989 4.0328327587228 0.111803398874989 4.21108077974941 0.111803398874989 4.38932880077602 0.111803398874989 4.56757682180263 0.111803398874989 4.74582484282924 0.111803398874989 4.92407286385586 0.111803398874989 5.10232088488247 0.111803398874989 5.28056890590908 0.111803398874989 5.45881692693569 0.111803398874989 5.6370649479623 0.111803398874989 5.81531296898891 0.111803398874989 0.28642164434653 1.67705098312484 0.0954738814488434 1.67705098312484 0.190947762897687 1.67705098312484 26 61 62 26 25 61 27 62 63 6 43 77 27 26 62 28 63 64 28 27 63 29 64 65 29 28 64 7 77 78 7 78 76 7 6 77 45 76 44 30 65 66 30 29 65 8 76 45 8 7 76 31 66 67 31 30 66 9 45 46 9 8 45 32 67 68 10 9 46 32 31 67 10 46 47 33 68 69 11 10 47 33 32 68 11 47 48 12 11 48 34 69 70 12 48 49 34 33 69 13 12 49 13 49 50 35 70 71 35 34 70 14 13 50 14 50 51 36 35 71 36 71 72 15 14 51 15 51 52 37 36 72 37 72 73 16 15 52 16 52 53 38 37 73 38 73 74 17 16 53 17 53 54 39 38 74 39 74 75 18 17 54 18 54 55 3 75 42 40 39 75 40 75 3 19 18 55 19 55 56 41 3 4 20 19 56 41 4 5 20 56 57 41 40 3 21 20 57 2 5 1 21 57 58 2 41 5 22 21 58 22 58 59 23 22 59 23 59 60 24 23 60 25 60 61 25 24 60 +87 87 1 7.105427357601e-014 +19.1666666666663 5.71304550033527 0 19.1666666666668 -5.71304550033375 0 17.8500671376016 9.02081499550423 0 15.9678537202699 12.0427425268525 0 13.5796679858384 14.6830724780066 0 10.7611842165796 16.858140889696 0 7.6017115199304 18.4990265140563 0 4.20136389675422 19.5537347176198 0 0.667887935664866 19.9888450318019 0 -2.88675134594905 19.7905701450631 0 -6.34991832997129 18.9651927805307 0 -9.61187587488576 17.5388666157705 0 -12.5692625492694 15.5567875529472 0 -15.1283678385839 13.081761599284 0 -17.2081015440072 10.1922147372951 0 -18.7425632821619 6.97970784590274 0 -19.6831306661725 3.54603541696613 0 -20 -7.95686758668646e-013 0 -19.6831306661723 -3.54603541696769 0 -18.7425632821614 -6.97970784590423 0 -17.2081015440064 -10.1922147372965 0 -15.1283678385828 -13.0817615992852 0 -12.5692625492681 -15.5567875529483 0 -9.61187587488437 -17.5388666157713 0 -6.34991832996978 -18.9651927805312 0 -2.88675134594748 -19.7905701450633 0 0.667887935666457 -19.9888450318019 0 4.20136389675578 -19.5537347176195 0 7.60171151993187 -18.4990265140557 0 10.7611842165809 -16.8581408896951 0 13.5796679858396 -14.6830724780056 0 15.9678537202709 -12.0427425268512 0 17.8500671376024 -9.02081499550281 0 27 0 0 26.8941320663937 1.12214401210771 0 26.5802642720303 2.20468833495858 0 26.0694727951812 3.20943072505347 0 25.3797831152325 4.10091451551041 0 24.5355339059327 4.84767985741633 0 23.5665181403609 5.42337391622579 0 22.5069317174281 5.80768084514026 0 21.3941667121587 5.98703871734817 0 20.2674918351184 5.95511811708062 0 20.2674918351184 -5.95511811708062 0 21.3941667121587 -5.98703871734817 0 22.5069317174281 -5.80768084514027 0 23.5665181403609 -5.42337391622579 0 24.5355339059327 -4.84767985741634 0 25.3797831152325 -4.10091451551042 0 26.0694727951812 -3.20943072505349 0 26.5802642720303 -2.20468833495859 0 26.8941320663937 -1.12214401210773 0 34 0 0 33.4536060123534 6.07093442315376 0 31.831985601751 11.9467440187657 0 29.1872589824634 17.4385754318009 0 25.6044298441227 22.3699166819503 0 21.1986532631969 26.5822704039131 0 16.1115345240819 29.9402480831291 0 10.5065778087481 32.3359215540353 0 4.56393103780019 33.6922919001098 0 -1.52540423191761 33.9657642624047 0 -7.56571175451479 33.147549014182 0 -13.3628510762335 31.2639442667493 0 -18.7304973693716 28.3754906265242 0 -23.4961300655535 24.5750253701312 0 -27.5065778087483 19.984698577944 0 -30.6329415086823 14.7520471299969 0 -32.774737263659 9.04525274926687 0 -33.8631259958381 3.04773650271666 0 -33.8631259958381 -3.04773650271682 0 -32.774737263659 -9.04525274926704 0 -30.6329415086822 -14.7520471299971 0 -27.5065778087482 -19.9846985779442 0 -23.4961300655533 -24.5750253701314 0 -18.7304973693714 -28.3754906265243 0 -13.3628510762333 -31.2639442667494 0 -7.56571175451461 -33.147549014182 0 -1.52540423191743 -33.9657642624047 0 4.56393103780037 -33.6922919001098 0 10.5065778087483 -32.3359215540352 0 16.111534524082 -29.9402480831291 0 21.198653263197 -26.582270403913 0 25.6044298441228 -22.3699166819502 0 29.1872589824635 -17.4385754318007 0 31.8319856017511 -11.9467440187656 0 33.4536060123534 -6.07093442315357 0 19.1666666666664 5.71304550033523 19.1666666666668 -5.71304550033371 17.8500671376016 9.02081499550423 15.9678537202699 12.0427425268525 13.5796679858384 14.6830724780066 10.7611842165796 16.858140889696 7.6017115199304 18.4990265140563 4.20136389675422 19.5537347176198 0.667887935664865 19.9888450318019 -2.88675134594905 19.7905701450631 -6.34991832997129 18.9651927805307 -9.61187587488576 17.5388666157705 -12.5692625492694 15.5567875529472 -15.1283678385839 13.081761599284 -17.2081015440072 10.1922147372951 -18.7425632821619 6.97970784590274 -19.6831306661725 3.54603541696613 -20 -7.95807864051312e-013 -19.6831306661723 -3.54603541696769 -18.7425632821614 -6.97970784590423 -17.2081015440064 -10.1922147372965 -15.1283678385828 -13.0817615992852 -12.5692625492681 -15.5567875529483 -9.61187587488437 -17.5388666157713 -6.34991832996978 -18.9651927805312 -2.88675134594748 -19.7905701450633 0.667887935666457 -19.9888450318019 4.20136389675578 -19.5537347176195 7.60171151993187 -18.4990265140557 10.7611842165809 -16.8581408896951 13.5796679858396 -14.6830724780056 15.9678537202709 -12.0427425268512 17.8500671376024 -9.02081499550281 27 2.1316282072803e-014 26.8941320663937 1.12214401210772 26.5802642720303 2.20468833495858 26.0694727951812 3.20943072505347 25.3797831152325 4.10091451551041 24.5355339059327 4.84767985741633 23.5665181403609 5.42337391622579 22.5069317174281 5.80768084514027 21.3941667121587 5.98703871734817 20.2674918351184 5.95511811708062 20.2674918351184 -5.95511811708062 21.3941667121587 -5.98703871734817 22.5069317174281 -5.80768084514026 23.5665181403609 -5.4233739162258 24.5355339059327 -4.84767985741634 25.3797831152325 -4.10091451551042 26.0694727951812 -3.20943072505349 26.5802642720303 -2.20468833495859 26.8941320663937 -1.12214401210773 34 1.20792265079217e-013 33.4536060123534 6.07093442315376 31.831985601751 11.9467440187657 29.1872589824634 17.4385754318009 25.6044298441227 22.3699166819503 21.1986532631969 26.5822704039131 16.1115345240819 29.9402480831291 10.5065778087481 32.3359215540353 4.56393103780019 33.6922919001098 -1.52540423191761 33.9657642624047 -7.56571175451479 33.147549014182 -13.3628510762335 31.2639442667493 -18.7304973693716 28.3754906265242 -23.4961300655535 24.5750253701312 -27.5065778087483 19.984698577944 -30.6329415086823 14.7520471299969 -32.774737263659 9.04525274926687 -33.8631259958381 3.04773650271665 -33.8631259958381 -3.04773650271682 -32.774737263659 -9.04525274926704 -30.6329415086822 -14.7520471299971 -27.5065778087482 -19.9846985779442 -23.4961300655533 -24.5750253701314 -18.7304973693714 -28.3754906265243 -13.3628510762333 -31.2639442667494 -7.56571175451461 -33.147549014182 -1.52540423191743 -33.9657642624047 4.56393103780037 -33.6922919001098 10.5065778087483 -32.3359215540352 16.111534524082 -29.9402480831291 21.198653263197 -26.582270403913 25.6044298441228 -22.3699166819502 29.1872589824635 -17.4385754318007 31.8319856017511 -11.9467440187656 33.4536060123534 -6.07093442315357 14 67 15 31 30 83 66 67 14 13 66 14 41 3 42 84 31 83 32 31 84 65 13 12 65 66 13 85 33 32 85 32 84 62 10 9 62 63 10 44 2 33 53 52 87 53 35 34 22 74 75 53 34 52 45 44 33 46 33 85 61 62 9 23 75 76 46 45 33 61 9 8 23 22 75 54 36 35 54 35 53 64 12 11 21 73 74 54 37 36 64 65 12 21 74 22 54 38 37 24 23 76 24 76 77 60 8 7 20 73 21 60 61 8 55 38 54 86 47 46 86 48 47 20 72 73 86 46 85 55 39 38 55 40 39 25 77 78 55 41 40 25 24 77 59 7 6 59 60 7 49 48 86 19 72 20 56 4 3 56 41 55 56 3 41 19 71 72 26 25 78 58 6 5 26 78 79 58 59 6 57 5 4 57 4 56 57 58 5 18 71 19 18 70 71 27 26 79 63 11 10 63 64 11 27 79 80 17 70 18 17 69 70 28 27 80 28 80 81 3 1 43 16 69 17 16 68 69 29 28 81 29 81 82 42 3 43 87 50 49 87 51 50 87 52 51 15 68 16 15 67 68 87 49 86 30 29 82 83 30 82 +19 17 1 3.37507799486048e-014 +-2.5342261904785 5.43853818737102 22 -2.5342261904902 -5.43853818736556 22 -3.44032413502163 4.91570644424458 22 -4.24183942567444 4.24344179726716 22 -4.9144067430832 3.44218046643961 22 -5.43758066634744 2.53628005097318 22 -5.79545719479927 1.55327908092829 22 -5.97715721483146 0.523059871513977 22 -5.97715721483259 -0.523059871501105 22 -5.79545719480261 -1.5532790809158 22 -5.4375806663529 -2.53628005096147 22 -4.91440674309061 -3.44218046642903 22 -4.24183942568358 -4.24344179725802 22 -3.44032413503222 -4.91570644423717 22 -1.75 0 22 -1.83766777386866 1.83508137568023 22 -2.09987258757073 3.65344820600208 22 -2.09987258757049 -3.65344820600081 22 -1.8376677738686 -1.83508137567952 22 -2.53422619047849 5.43853818737102 -2.53422619049021 -5.43853818736556 -3.44032413502163 4.91570644424458 -4.24183942567444 4.24344179726716 -4.9144067430832 3.44218046643961 -5.43758066634744 2.53628005097318 -5.79545719479927 1.55327908092829 -5.97715721483146 0.523059871513977 -5.97715721483259 -0.523059871501105 -5.79545719480261 -1.5532790809158 -5.4375806663529 -2.53628005096147 -4.91440674309061 -3.44218046642903 -4.24183942568358 -4.24344179725802 -3.44032413503222 -4.91570644423717 -1.75 6.75015598972095e-014 -1.83766777386866 1.83508137568023 -2.09987258757073 3.65344820600208 -2.09987258757049 -3.65344820600081 -1.8376677738686 -1.83508137567952 18 12 13 18 13 14 18 14 2 19 10 11 19 11 12 19 12 18 15 7 8 15 8 9 15 9 10 15 10 19 16 5 6 16 6 7 16 7 15 17 3 4 17 4 5 17 5 16 1 3 17 +71 71 1 6.75015598972095e-014 +34 0 0 33.4834636024151 5.90403804067564 0 31.9495491067209 11.6286848730727 0 29.4448637286709 17 0 26.0455110660452 21.8547787293423 0 21.8547787293423 26.0455110660453 0 17 29.4448637286709 0 11.6286848730727 31.9495491067209 0 5.90403804067561 33.4834636024151 0 -2.05667189008552e-014 34 0 -5.90403804067565 33.4834636024151 0 -11.6286848730728 31.9495491067209 0 -17 29.4448637286709 0 -21.8547787293424 26.0455110660452 0 -26.0455110660453 21.8547787293423 0 -29.4448637286709 17 0 -31.9495491067209 11.6286848730727 0 -33.4834636024151 5.90403804067557 0 -34 -7.13315040715146e-014 0 -33.4834636024151 -5.90403804067571 0 -31.9495491067209 -11.6286848730728 0 -29.4448637286709 -17.0000000000001 0 -26.0455110660452 -21.8547787293424 0 -21.8547787293423 -26.0455110660453 0 -16.9999999999999 -29.444863728671 0 -11.6286848730726 -31.9495491067209 0 -5.90403804067554 -33.4834636024151 0 8.43487064049187e-014 -34 0 5.90403804067571 -33.4834636024151 0 11.6286848730728 -31.9495491067209 0 17.0000000000001 -29.4448637286709 0 21.8547787293424 -26.0455110660452 0 26.0455110660453 -21.8547787293423 0 29.4448637286709 -17 0 31.9495491067209 -11.6286848730727 0 33.4834636024151 -5.9040380406756 0 27 0 0 26.9035775315918 1.07134136879184 0 26.6174092238384 2.10824894448807 0 26.1506927616112 3.07739566443545 0 25.5184287960217 3.94763235563829 0 24.7409388111524 4.69098889480819 0 23.843211974838 5.28357319114044 0 22.8541019662497 5.70633909777093 0 21.8053995949059 5.94569857060761 0 20.7308110178969 5.99395839924789 0 19.6648743962621 5.84956747309094 0 18.6418498100764 5.5171666353087 0 17.6946181112874 5.00743952232781 0 16.8536241060788 4.33676918296434 0 16.1458980337503 3.52671151375483 0 15.5941867925855 2.60330243470534 0 15.2162228358249 1.59622107340004 0 15.0241542360286 0.537835853420586 0 15.0241542360286 -0.537835853420616 0 15.2162228358249 -1.59622107340007 0 15.5941867925855 -2.60330243470536 0 16.1458980337503 -3.52671151375485 0 16.8536241060788 -4.33676918296436 0 17.6946181112874 -5.00743952232782 0 18.6418498100765 -5.51716663530871 0 19.6648743962621 -5.84956747309094 0 20.7308110178969 -5.99395839924789 0 21.8053995949059 -5.94569857060761 0 22.8541019662497 -5.70633909777092 0 23.843211974838 -5.28357319114042 0 24.7409388111524 -4.69098889480817 0 25.5184287960217 -3.94763235563827 0 26.1506927616112 -3.07739566443543 0 26.6174092238384 -2.10824894448804 0 26.9035775315918 -1.07134136879181 0 34 1.13686837721616e-013 33.4834636024151 5.90403804067564 31.9495491067209 11.6286848730727 29.4448637286709 17 26.0455110660452 21.8547787293423 21.8547787293423 26.0455110660453 17 29.4448637286709 11.6286848730727 31.9495491067209 5.90403804067562 33.4834636024151 -2.1316282072803e-014 34 -5.90403804067565 33.4834636024151 -11.6286848730728 31.9495491067209 -17 29.4448637286709 -21.8547787293424 26.0455110660452 -26.0455110660453 21.8547787293423 -29.4448637286709 17 -31.9495491067209 11.6286848730727 -33.4834636024151 5.90403804067557 -34 -7.105427357601e-014 -33.4834636024151 -5.90403804067571 -31.9495491067209 -11.6286848730728 -29.4448637286709 -17.0000000000001 -26.0455110660452 -21.8547787293424 -21.8547787293423 -26.0455110660453 -16.9999999999999 -29.444863728671 -11.6286848730726 -31.9495491067209 -5.90403804067554 -33.4834636024151 8.5265128291212e-014 -34 5.90403804067571 -33.4834636024151 11.6286848730728 -31.9495491067209 17.0000000000001 -29.4448637286709 21.8547787293424 -26.0455110660452 26.0455110660453 -21.8547787293423 29.4448637286709 -17 31.9495491067209 -11.6286848730727 33.4834636024151 -5.90403804067561 27 2.1316282072803e-014 26.9035775315918 1.07134136879184 26.6174092238384 2.10824894448808 26.1506927616112 3.07739566443545 25.5184287960217 3.94763235563829 24.7409388111524 4.69098889480819 23.843211974838 5.28357319114043 22.8541019662497 5.70633909777093 21.8053995949059 5.94569857060761 20.7308110178969 5.99395839924789 19.6648743962621 5.84956747309094 18.6418498100764 5.5171666353087 17.6946181112874 5.00743952232781 16.8536241060788 4.33676918296434 16.1458980337503 3.52671151375483 15.5941867925855 2.60330243470533 15.2162228358249 1.59622107340004 15.0241542360286 0.537835853420589 15.0241542360286 -0.537835853420617 15.2162228358249 -1.59622107340007 15.5941867925855 -2.60330243470536 16.1458980337503 -3.52671151375485 16.8536241060788 -4.33676918296436 17.6946181112874 -5.00743952232782 18.6418498100765 -5.51716663530871 19.6648743962621 -5.84956747309094 20.7308110178969 -5.99395839924789 21.805399594906 -5.94569857060761 22.8541019662497 -5.70633909777092 23.843211974838 -5.28357319114042 24.7409388111524 -4.69098889480817 25.5184287960217 -3.94763235563827 26.1506927616112 -3.07739566443543 26.6174092238384 -2.10824894448804 26.9035775315918 -1.07134136879181 57 25 26 57 26 27 57 27 58 61 60 31 61 31 32 56 22 23 56 23 24 56 24 25 56 25 57 62 61 32 62 32 33 55 19 20 55 20 21 55 21 22 10 11 51 1 38 37 55 22 56 63 33 34 1 71 36 63 62 33 1 37 71 54 16 17 54 17 18 54 18 19 54 19 55 9 51 50 9 10 51 64 63 34 53 13 14 2 39 38 53 14 15 2 40 39 53 15 16 2 41 40 53 16 54 2 38 1 65 64 34 52 13 53 8 50 49 8 9 50 3 42 41 3 43 42 3 44 43 3 41 2 7 8 49 7 49 48 4 45 44 12 13 52 4 46 45 35 65 34 4 44 3 35 66 65 5 46 4 35 67 66 5 47 46 6 7 48 6 47 5 6 48 47 68 67 35 59 29 30 58 27 28 58 28 29 58 29 59 11 52 51 11 12 52 60 30 31 36 68 35 36 69 68 36 70 69 60 59 30 36 71 70 +71 71 1 2.30926389122033e-014 +18 0 4 17.7265395542197 3.12566719800475 4 16.9144671741463 6.15636257986204 4 15.5884572681199 9 4 13.7887999761416 11.5701769743577 4 11.5701769743577 13.7887999761416 4 8.99999999999999 15.5884572681199 4 6.15636257986203 16.9144671741464 4 3.12566719800474 17.7265395542197 4 -1.08882629475116e-014 18 4 -3.12566719800476 17.7265395542197 4 -6.15636257986205 16.9144671741463 4 -9.00000000000001 15.5884572681199 4 -11.5701769743577 13.7887999761416 4 -13.7887999761416 11.5701769743577 4 -15.5884572681199 8.99999999999998 4 -16.9144671741464 6.15636257986201 4 -17.7265395542198 3.12566719800471 4 -18 -3.77637374496254e-014 4 -17.7265395542197 -3.12566719800479 4 -16.9144671741463 -6.15636257986208 4 -15.5884572681199 -9.00000000000004 4 -13.7887999761416 -11.5701769743578 4 -11.5701769743577 -13.7887999761416 4 -8.99999999999995 -15.5884572681199 4 -6.15636257986199 -16.9144671741464 4 -3.1256671980047 -17.7265395542198 4 4.46551975084863e-014 -18 4 3.12566719800479 -17.7265395542197 4 6.15636257986207 -16.9144671741463 4 9.00000000000003 -15.5884572681199 4 11.5701769743577 -13.7887999761416 4 13.7887999761416 -11.5701769743577 4 15.5884572681199 -8.99999999999998 4 16.9144671741464 -6.15636257986202 4 17.7265395542197 -3.12566719800473 4 16 0 4 15.7428734175781 2.85691031677824 4 14.9797579302358 5.62199718530153 4 13.7351806976298 8.20638843849454 4 12.0491434560577 10.5270196150354 4 9.9758368297397 12.5093037194885 4 7.58189859956794 14.0895285097078 4 4.94427190999911 15.2169042607225 4 2.14773225308244 15.855196188287 4 -0.717837285608287 15.983889064661 4 -3.56033494330108 15.5988465949092 4 -6.28840050646282 14.7124443608232 4 -8.81435170323368 13.3531720595408 4 -11.0570023837899 11.5647178212382 4 -12.9442719099992 9.40456403667954 4 -14.4155018864387 6.94213982588089 4 -15.4234057711337 4.25658952906676 4 -15.9355887039238 1.4342289424549 4 -15.9355887039238 -1.43422894245498 4 -15.4234057711336 -4.25658952906684 4 -14.4155018864387 -6.94213982588097 4 -12.9442719099991 -9.4045640366796 4 -11.0570023837898 -11.5647178212383 4 -8.81435170323361 -13.3531720595409 4 -6.28840050646274 -14.7124443608232 4 -3.56033494330099 -15.5988465949092 4 -0.7178372856082 -15.983889064661 4 2.14773225308253 -15.855196188287 4 4.9442719099992 -15.2169042607224 4 7.58189859956801 -14.0895285097078 4 9.97583682973977 -12.5093037194885 4 12.0491434560578 -10.5270196150354 4 13.7351806976299 -8.20638843849447 4 14.9797579302358 -5.62199718530145 4 15.7428734175781 -2.85691031677815 4 18 0 17.7265395542197 3.12566719800475 16.9144671741464 6.15636257986204 15.5884572681199 9 13.7887999761416 11.5701769743577 11.5701769743577 13.7887999761416 8.99999999999999 15.5884572681199 6.15636257986203 16.9144671741464 3.12566719800473 17.7265395542197 -1.06581410364015e-014 18 -3.12566719800476 17.7265395542197 -6.15636257986205 16.9144671741464 -9.00000000000001 15.5884572681199 -11.5701769743577 13.7887999761416 -13.7887999761416 11.5701769743577 -15.5884572681199 8.99999999999998 -16.9144671741464 6.15636257986201 -17.7265395542198 3.12566719800471 -18 -3.90798504668055e-014 -17.7265395542197 -3.12566719800479 -16.9144671741463 -6.15636257986208 -15.5884572681199 -9.00000000000004 -13.7887999761416 -11.5701769743578 -11.5701769743577 -13.7887999761416 -8.99999999999995 -15.5884572681199 -6.15636257986199 -16.9144671741464 -3.1256671980047 -17.7265395542198 4.61852778244065e-014 -18 3.12566719800479 -17.7265395542197 6.15636257986207 -16.9144671741463 9.00000000000003 -15.5884572681199 11.5701769743577 -13.7887999761416 13.7887999761416 -11.5701769743577 15.5884572681199 -8.99999999999998 16.9144671741464 -6.15636257986202 17.7265395542197 -3.12566719800473 16 -4.61852778244065e-014 15.7428734175781 2.85691031677824 14.9797579302358 5.62199718530153 13.7351806976298 8.20638843849454 12.0491434560577 10.5270196150354 9.9758368297397 12.5093037194885 7.58189859956794 14.0895285097078 4.94427190999911 15.2169042607225 2.14773225308244 15.855196188287 -0.717837285608287 15.983889064661 -3.56033494330108 15.5988465949092 -6.28840050646282 14.7124443608232 -8.81435170323368 13.3531720595408 -11.0570023837899 11.5647178212382 -12.9442719099992 9.40456403667954 -14.4155018864387 6.94213982588089 -15.4234057711337 4.25658952906677 -15.9355887039238 1.4342289424549 -15.9355887039238 -1.43422894245498 -15.4234057711336 -4.25658952906684 -14.4155018864387 -6.94213982588096 -12.9442719099991 -9.4045640366796 -11.0570023837898 -11.5647178212383 -8.81435170323361 -13.3531720595409 -6.28840050646274 -14.7124443608232 -3.56033494330099 -15.5988465949092 -0.717837285608201 -15.983889064661 2.14773225308253 -15.855196188287 4.94427190999919 -15.2169042607224 7.58189859956801 -14.0895285097078 9.97583682973977 -12.5093037194885 12.0491434560578 -10.5270196150354 13.7351806976299 -8.20638843849447 14.9797579302358 -5.62199718530145 15.7428734175781 -2.85691031677815 49 14 50 69 68 33 13 14 49 34 69 33 48 13 49 70 69 34 59 23 24 12 13 48 35 70 34 58 22 23 58 23 59 47 12 48 60 24 25 60 59 24 71 70 35 57 21 22 57 22 58 11 12 47 61 25 26 36 71 35 61 60 25 46 11 47 37 71 36 56 20 21 56 21 57 10 11 46 62 26 27 1 37 36 62 61 26 45 10 46 55 19 20 55 20 56 63 62 27 63 27 28 9 45 44 9 10 45 2 38 37 54 19 55 2 37 1 54 18 19 64 63 28 64 28 29 53 18 54 17 18 53 65 64 29 8 44 43 65 29 30 8 9 44 52 17 53 3 39 38 16 17 52 3 38 2 7 43 42 66 65 30 7 8 43 66 30 31 4 40 39 51 16 52 4 39 3 6 7 42 67 66 31 6 42 41 5 40 4 5 6 41 5 41 40 15 16 51 32 67 31 50 15 51 68 67 32 14 15 50 33 68 32 +73 71 1 0.129380264880653 +34 0 0 34 0 13.4 34 0 13.4 33.4536060123534 6.07093442315376 13.4 31.831985601751 11.9467440187657 13.4 29.1872589824634 17.4385754318009 13.4 25.6044298441227 22.3699166819503 13.4 21.1986532631969 26.5822704039131 13.4 16.1115345240819 29.9402480831291 13.4 10.5065778087481 32.3359215540353 13.4 4.56393103780019 33.6922919001098 13.4 -1.52540423191761 33.9657642624047 13.4 -7.56571175451479 33.147549014182 13.4 -13.3628510762335 31.2639442667493 13.4 -18.7304973693716 28.3754906265242 13.4 -23.4961300655535 24.5750253701312 13.4 -27.5065778087483 19.984698577944 13.4 -30.6329415086823 14.7520471299969 13.4 -32.774737263659 9.04525274926687 13.4 -33.8631259958381 3.04773650271666 13.4 -33.8631259958381 -3.04773650271682 13.4 -32.774737263659 -9.04525274926704 13.4 -30.6329415086822 -14.7520471299971 13.4 -27.5065778087482 -19.9846985779442 13.4 -23.4961300655533 -24.5750253701314 13.4 -18.7304973693714 -28.3754906265243 13.4 -13.3628510762333 -31.2639442667494 13.4 -7.56571175451461 -33.147549014182 13.4 -1.52540423191743 -33.9657642624047 13.4 4.56393103780037 -33.6922919001098 13.4 10.5065778087483 -32.3359215540352 13.4 16.111534524082 -29.9402480831291 13.4 21.198653263197 -26.582270403913 13.4 25.6044298441228 -22.3699166819502 13.4 29.1872589824635 -17.4385754318007 13.4 31.8319856017511 -11.9467440187656 13.4 33.4536060123534 -6.07093442315357 13.4 34 0 0 33.4834636024151 5.90403804067564 0 31.9495491067209 11.6286848730727 0 29.4448637286709 17 0 26.0455110660452 21.8547787293423 0 21.8547787293423 26.0455110660453 0 17 29.4448637286709 0 11.6286848730727 31.9495491067209 0 5.90403804067561 33.4834636024151 0 -2.05667189008552e-014 34 0 -5.90403804067565 33.4834636024151 0 -11.6286848730728 31.9495491067209 0 -17 29.4448637286709 0 -21.8547787293424 26.0455110660452 0 -26.0455110660453 21.8547787293423 0 -29.4448637286709 17 0 -31.9495491067209 11.6286848730727 0 -33.4834636024151 5.90403804067557 0 -34 -7.13315040715146e-014 0 -33.4834636024151 -5.90403804067571 0 -31.9495491067209 -11.6286848730728 0 -29.4448637286709 -17.0000000000001 0 -26.0455110660452 -21.8547787293424 0 -21.8547787293423 -26.0455110660453 0 -16.9999999999999 -29.444863728671 0 -11.6286848730726 -31.9495491067209 0 -5.90403804067554 -33.4834636024151 0 8.43487064049187e-014 -34 0 5.90403804067571 -33.4834636024151 0 11.6286848730728 -31.9495491067209 0 17.0000000000001 -29.4448637286709 0 21.8547787293424 -26.0455110660452 0 26.0455110660453 -21.8547787293423 0 29.4448637286709 -17 0 31.9495491067209 -11.6286848730727 0 33.4834636024151 -5.9040380406756 0 6.28318530717959 0 6.28318530717959 13.4 0 13.4 0.179519580205131 13.4 0.359039160410262 13.4 0.538558740615393 13.4 0.718078320820524 13.4 0.897597901025655 13.4 1.07711748123079 13.4 1.25663706143592 13.4 1.43615664164105 13.4 1.61567622184618 13.4 1.79519580205131 13.4 1.97471538225644 13.4 2.15423496246157 13.4 2.3337545426667 13.4 2.51327412287183 13.4 2.69279370307696 13.4 2.8723132832821 13.4 3.05183286348723 13.4 3.23135244369236 13.4 3.41087202389749 13.4 3.59039160410262 13.4 3.76991118430775 13.4 3.94943076451288 13.4 4.12895034471801 13.4 4.30846992492314 13.4 4.48798950512828 13.4 4.66750908533341 13.4 4.84702866553854 13.4 5.02654824574367 13.4 5.2060678259488 13.4 5.38558740615393 13.4 5.56510698635906 13.4 5.74462656656419 13.4 5.92414614676932 13.4 6.10366572697445 13.4 0 0 0.174532925199433 0 0.349065850398866 0 0.523598775598299 0 0.698131700797732 0 0.872664625997165 0 1.0471975511966 0 1.22173047639603 0 1.39626340159546 0 1.5707963267949 0 1.74532925199433 0 1.91986217719376 0 2.0943951023932 0 2.26892802759263 0 2.44346095279206 0 2.6179938779915 0 2.79252680319093 0 2.96705972839036 0 3.1415926535898 0 3.31612557878923 0 3.49065850398866 0 3.6651914291881 0 3.83972435438753 0 4.01425727958696 0 4.18879020478639 0 4.36332312998583 0 4.53785605518526 0 4.71238898038469 0 4.88692190558413 0 5.06145483078356 0 5.23598775598299 0 5.41052068118242 0 5.58505360638186 0 5.75958653158129 0 5.93411945678072 0 6.10865238198015 0 22 57 58 22 21 57 3 38 39 23 58 59 23 22 58 24 59 60 24 23 59 4 39 40 4 3 39 25 60 61 25 24 60 5 40 41 5 4 40 26 61 62 26 25 61 6 41 42 6 5 41 27 62 63 27 26 62 7 42 43 7 6 42 28 63 64 28 27 63 8 43 44 8 7 43 29 64 65 29 28 64 9 8 44 9 44 45 30 65 66 30 29 65 10 9 45 10 45 46 31 66 67 31 30 66 11 10 46 11 46 47 32 67 68 32 31 67 12 11 47 12 47 48 33 68 69 33 32 68 34 33 69 13 12 48 13 48 49 34 69 70 35 34 70 14 13 49 14 49 50 35 70 71 36 35 71 15 14 50 36 71 72 15 50 51 37 36 72 37 72 73 16 15 51 16 51 52 2 37 73 2 73 1 17 16 52 17 52 53 18 17 53 18 53 54 19 18 54 19 54 55 20 19 55 20 55 56 21 20 56 21 56 57 +73 71 1 0.060884830532072 +16 0 0.100000000000001 16 0 17 16 0 0.100000000000001 15.7428734175781 2.85691031677824 0.100000000000001 14.9797579302358 5.62199718530153 0.100000000000001 13.7351806976298 8.20638843849454 0.100000000000001 12.0491434560577 10.5270196150354 0.100000000000001 9.9758368297397 12.5093037194885 0.100000000000001 7.58189859956794 14.0895285097078 0.100000000000001 4.94427190999911 15.2169042607225 0.100000000000001 2.14773225308244 15.855196188287 0.100000000000001 -0.717837285608287 15.983889064661 0.100000000000001 -3.56033494330108 15.5988465949092 0.100000000000001 -6.28840050646282 14.7124443608232 0.100000000000001 -8.81435170323368 13.3531720595408 0.100000000000001 -11.0570023837899 11.5647178212382 0.100000000000001 -12.9442719099992 9.40456403667954 0.100000000000001 -14.4155018864387 6.94213982588089 0.100000000000001 -15.4234057711337 4.25658952906676 0.100000000000001 -15.9355887039238 1.4342289424549 0.100000000000001 -15.9355887039238 -1.43422894245498 0.100000000000001 -15.4234057711336 -4.25658952906684 0.100000000000001 -14.4155018864387 -6.94213982588097 0.100000000000001 -12.9442719099991 -9.4045640366796 0.100000000000001 -11.0570023837898 -11.5647178212383 0.100000000000001 -8.81435170323361 -13.3531720595409 0.100000000000001 -6.28840050646274 -14.7124443608232 0.100000000000001 -3.56033494330099 -15.5988465949092 0.100000000000001 -0.7178372856082 -15.983889064661 0.100000000000001 2.14773225308253 -15.855196188287 0.100000000000001 4.9442719099992 -15.2169042607224 0.100000000000001 7.58189859956801 -14.0895285097078 0.100000000000001 9.97583682973977 -12.5093037194885 0.100000000000001 12.0491434560578 -10.5270196150354 0.100000000000001 13.7351806976299 -8.20638843849447 0.100000000000001 14.9797579302358 -5.62199718530145 0.100000000000001 15.7428734175781 -2.85691031677815 0.100000000000001 16 0 17 15.7569240481953 2.77837084267089 17 15.0350819325745 5.4723222932107 17 13.856406460551 8 17 12.2567110899036 10.2846017549846 17 10.2846017549846 12.2567110899037 17 7.99999999999999 13.856406460551 17 5.47232229321069 15.0350819325745 17 2.77837084267088 15.7569240481953 17 -9.6784559533436e-015 16 17 -2.7783708426709 15.7569240481953 17 -5.47232229321071 15.0350819325745 17 -8.00000000000001 13.856406460551 17 -10.2846017549846 12.2567110899036 17 -12.2567110899037 10.2846017549846 17 -13.856406460551 7.99999999999998 17 -15.0350819325745 5.47232229321068 17 -15.7569240481953 2.77837084267086 17 -16 -3.35677666218892e-014 17 -15.7569240481953 -2.77837084267092 17 -15.0350819325745 -5.47232229321074 17 -13.856406460551 -8.00000000000004 17 -12.2567110899036 -10.2846017549847 17 -10.2846017549846 -12.2567110899037 17 -7.99999999999996 -13.856406460551 17 -5.47232229321066 -15.0350819325746 17 -2.77837084267084 -15.7569240481953 17 3.96935088964323e-014 -16 17 2.77837084267092 -15.7569240481953 17 5.47232229321073 -15.0350819325745 17 8.00000000000003 -13.856406460551 17 10.2846017549846 -12.2567110899036 17 12.2567110899037 -10.2846017549846 17 13.856406460551 -7.99999999999998 17 15.0350819325745 -5.47232229321068 17 15.7569240481953 -2.77837084267087 17 6.28318530717959 0.100000000000002 6.28318530717959 17 0 0.100000000000001 0.179519580205131 0.100000000000001 0.359039160410262 0.100000000000001 0.538558740615393 0.100000000000001 0.718078320820524 0.100000000000001 0.897597901025655 0.100000000000001 1.07711748123079 0.100000000000001 1.25663706143592 0.100000000000001 1.43615664164105 0.100000000000001 1.61567622184618 0.100000000000001 1.79519580205131 0.100000000000001 1.97471538225644 0.100000000000001 2.15423496246157 0.100000000000001 2.3337545426667 0.100000000000001 2.51327412287183 0.100000000000001 2.69279370307696 0.100000000000001 2.8723132832821 0.100000000000001 3.05183286348723 0.100000000000001 3.23135244369236 0.100000000000001 3.41087202389749 0.100000000000001 3.59039160410262 0.100000000000001 3.76991118430775 0.100000000000001 3.94943076451288 0.100000000000001 4.12895034471801 0.100000000000001 4.30846992492314 0.100000000000001 4.48798950512828 0.100000000000001 4.66750908533341 0.100000000000001 4.84702866553854 0.100000000000001 5.02654824574367 0.100000000000001 5.2060678259488 0.100000000000001 5.38558740615393 0.100000000000001 5.56510698635906 0.100000000000001 5.74462656656419 0.100000000000001 5.92414614676932 0.100000000000001 6.10366572697445 0.100000000000001 0 17 0.174532925199433 17 0.349065850398866 17 0.523598775598299 17 0.698131700797732 17 0.872664625997165 17 1.0471975511966 17 1.22173047639603 17 1.39626340159546 17 1.5707963267949 17 1.74532925199433 17 1.91986217719376 17 2.0943951023932 17 2.26892802759263 17 2.44346095279206 17 2.6179938779915 17 2.79252680319093 17 2.96705972839036 17 3.14159265358979 17 3.31612557878923 17 3.49065850398866 17 3.66519142918809 17 3.83972435438753 17 4.01425727958696 17 4.18879020478639 17 4.36332312998583 17 4.53785605518526 17 4.71238898038469 17 4.88692190558413 17 5.06145483078356 17 5.23598775598299 17 5.41052068118242 17 5.58505360638186 17 5.75958653158129 17 5.93411945678072 17 6.10865238198015 17 58 22 23 58 57 22 59 23 24 59 58 23 39 3 4 39 38 3 60 24 25 60 59 24 40 4 5 40 39 4 61 25 26 61 60 25 41 5 6 41 40 5 62 26 27 62 61 26 42 6 7 42 41 6 63 27 28 63 62 27 43 7 8 43 42 7 64 28 29 64 63 28 44 8 9 65 29 30 44 43 8 65 64 29 45 44 9 45 9 10 66 30 31 66 65 30 46 45 10 46 10 11 67 31 32 67 66 31 47 11 12 47 46 11 68 32 33 68 67 32 48 47 12 48 12 13 69 33 34 69 68 33 49 13 14 49 48 13 70 69 34 70 34 35 50 14 15 50 49 14 71 70 35 71 35 36 51 15 16 72 71 36 51 50 15 72 36 37 73 72 37 52 16 17 73 37 1 52 51 16 2 73 1 53 17 18 53 52 17 54 18 19 54 53 18 55 19 20 55 54 19 56 20 21 56 55 20 57 21 22 57 56 21 +71 71 1 2.22044604925031e-014 +16 0 17 15.7569240481953 2.77837084267089 17 15.0350819325745 5.4723222932107 17 13.856406460551 8 17 12.2567110899036 10.2846017549846 17 10.2846017549846 12.2567110899037 17 7.99999999999999 13.856406460551 17 5.47232229321069 15.0350819325745 17 2.77837084267088 15.7569240481953 17 -9.6784559533436e-015 16 17 -2.7783708426709 15.7569240481953 17 -5.47232229321071 15.0350819325745 17 -8.00000000000001 13.856406460551 17 -10.2846017549846 12.2567110899036 17 -12.2567110899037 10.2846017549846 17 -13.856406460551 7.99999999999998 17 -15.0350819325745 5.47232229321068 17 -15.7569240481953 2.77837084267086 17 -16 -3.35677666218892e-014 17 -15.7569240481953 -2.77837084267092 17 -15.0350819325745 -5.47232229321074 17 -13.856406460551 -8.00000000000004 17 -12.2567110899036 -10.2846017549847 17 -10.2846017549846 -12.2567110899037 17 -7.99999999999996 -13.856406460551 17 -5.47232229321066 -15.0350819325746 17 -2.77837084267084 -15.7569240481953 17 3.96935088964323e-014 -16 17 2.77837084267092 -15.7569240481953 17 5.47232229321073 -15.0350819325745 17 8.00000000000003 -13.856406460551 17 10.2846017549846 -12.2567110899036 17 12.2567110899037 -10.2846017549846 17 13.856406460551 -7.99999999999998 17 15.0350819325745 -5.47232229321068 17 15.7569240481953 -2.77837084267087 17 15 0 17 14.7589438289794 2.6783534219796 17 14.043523059596 5.27062236122018 17 12.876731904028 7.69348916108863 17 11.2960719900541 9.86908088909572 17 9.35234702788097 11.7274722370205 17 7.10802993709494 13.2089329778511 17 4.63525491562417 14.2658477444273 17 2.01349898726479 14.864246426519 17 -0.672972455257769 14.9848959981197 17 -3.33781400934476 14.6239186827273 17 -5.89537547480889 13.7929165882717 17 -8.26345472178157 12.5185988058195 17 -10.365939734803 10.8419229574108 17 -12.1352549156242 8.81677878438707 17 -13.5145330185363 6.50825608676334 17 -14.4594429104378 3.99055268350009 17 -14.9396144099286 1.34458963355147 17 -14.9396144099286 -1.34458963355154 17 -14.4594429104378 -3.99055268350016 17 -13.5145330185363 -6.5082560867634 17 -12.1352549156242 -8.81677878438713 17 -10.3659397348029 -10.8419229574109 17 -8.26345472178151 -12.5185988058196 17 -5.89537547480882 -13.7929165882718 17 -3.33781400934468 -14.6239186827274 17 -0.672972455257688 -14.9848959981197 17 2.01349898726487 -14.864246426519 17 4.63525491562425 -14.2658477444273 17 7.10802993709501 -13.2089329778511 17 9.35234702788103 -11.7274722370204 17 11.2960719900542 -9.86908088909566 17 12.876731904028 -7.69348916108856 17 14.0435230595961 -5.27062236122011 17 14.7589438289795 -2.67835342197951 17 16 0 15.7569240481953 2.77837084267089 15.0350819325745 5.4723222932107 13.856406460551 8 12.2567110899036 10.2846017549846 10.2846017549846 12.2567110899037 7.99999999999999 13.856406460551 5.47232229321069 15.0350819325745 2.77837084267088 15.7569240481953 -8.88178419700125e-015 16 -2.7783708426709 15.7569240481953 -5.47232229321071 15.0350819325745 -8.00000000000001 13.856406460551 -10.2846017549846 12.2567110899036 -12.2567110899037 10.2846017549846 -13.856406460551 7.99999999999998 -15.0350819325745 5.47232229321067 -15.7569240481953 2.77837084267086 -16 -3.37507799486048e-014 -15.7569240481953 -2.77837084267092 -15.0350819325745 -5.47232229321074 -13.856406460551 -8.00000000000004 -12.2567110899036 -10.2846017549847 -10.2846017549846 -12.2567110899037 -7.99999999999996 -13.856406460551 -5.47232229321066 -15.0350819325746 -2.77837084267084 -15.7569240481953 3.90798504668055e-014 -16 2.77837084267092 -15.7569240481953 5.47232229321073 -15.0350819325745 8.00000000000003 -13.856406460551 10.2846017549846 -12.2567110899036 12.2567110899037 -10.2846017549846 13.856406460551 -7.99999999999998 15.0350819325745 -5.47232229321068 15.7569240481953 -2.77837084267087 15 -4.44089209850063e-014 14.7589438289794 2.6783534219796 14.043523059596 5.27062236122018 12.876731904028 7.69348916108863 11.2960719900541 9.86908088909572 9.35234702788097 11.7274722370205 7.10802993709494 13.2089329778511 4.63525491562417 14.2658477444273 2.01349898726479 14.864246426519 -0.672972455257769 14.9848959981197 -3.33781400934476 14.6239186827273 -5.89537547480889 13.7929165882717 -8.26345472178157 12.5185988058195 -10.365939734803 10.8419229574108 -12.1352549156242 8.81677878438707 -13.5145330185363 6.50825608676334 -14.4594429104378 3.99055268350009 -14.9396144099286 1.34458963355146 -14.9396144099286 -1.34458963355154 -14.4594429104378 -3.99055268350016 -13.5145330185363 -6.5082560867634 -12.1352549156242 -8.81677878438713 -10.3659397348029 -10.8419229574109 -8.26345472178151 -12.5185988058196 -5.89537547480882 -13.7929165882718 -3.33781400934468 -14.6239186827274 -0.672972455257687 -14.9848959981197 2.01349898726487 -14.864246426519 4.63525491562424 -14.2658477444273 7.10802993709501 -13.2089329778511 9.35234702788103 -11.7274722370204 11.2960719900542 -9.86908088909566 12.876731904028 -7.69348916108856 14.0435230595961 -5.27062236122011 14.7589438289795 -2.67835342197952 68 67 32 14 15 50 33 68 32 49 14 50 59 23 24 58 22 23 58 23 59 69 68 33 60 24 25 13 14 49 60 59 24 34 69 33 48 13 49 57 21 22 57 22 58 70 69 34 61 25 26 12 13 48 61 60 25 35 70 34 47 12 48 56 20 21 71 70 35 11 12 47 56 21 57 62 26 27 36 71 35 62 61 26 46 11 47 55 20 56 37 71 36 19 20 55 10 11 46 1 37 36 63 27 28 63 62 27 45 10 46 54 19 55 18 19 54 9 10 45 2 38 37 64 63 28 2 37 1 64 28 29 44 9 45 53 18 54 8 44 43 65 64 29 8 9 44 3 39 38 3 38 2 17 18 53 30 65 29 52 17 53 66 65 30 16 17 52 7 43 42 7 8 43 4 40 39 31 66 30 51 16 52 4 39 3 5 40 4 67 66 31 5 41 40 6 7 42 15 16 51 6 41 5 6 42 41 32 67 31 50 15 51 +72 70 1 0.0603855900714168 +15 0 1 15 0 27.9 15 0 27.9 14.7589438289794 2.6783534219796 27.9 14.043523059596 5.27062236122018 27.9 12.876731904028 7.69348916108863 27.9 11.2960719900541 9.86908088909572 27.9 9.35234702788097 11.7274722370205 27.9 7.10802993709494 13.2089329778511 27.9 4.63525491562417 14.2658477444273 27.9 2.01349898726479 14.864246426519 27.9 -0.672972455257769 14.9848959981197 27.9 -3.33781400934476 14.6239186827273 27.9 -5.89537547480889 13.7929165882717 27.9 -8.26345472178157 12.5185988058195 27.9 -10.365939734803 10.8419229574108 27.9 -12.1352549156242 8.81677878438707 27.9 -13.5145330185363 6.50825608676334 27.9 -14.4594429104378 3.99055268350009 27.9 -14.9396144099286 1.34458963355147 27.9 -14.9396144099286 -1.34458963355154 27.9 -14.4594429104378 -3.99055268350016 27.9 -13.5145330185363 -6.5082560867634 27.9 -12.1352549156242 -8.81677878438713 27.9 -10.3659397348029 -10.8419229574109 27.9 -8.26345472178151 -12.5185988058196 27.9 -5.89537547480882 -13.7929165882718 27.9 -3.33781400934468 -14.6239186827274 27.9 -0.672972455257688 -14.9848959981197 27.9 2.01349898726487 -14.864246426519 27.9 4.63525491562425 -14.2658477444273 27.9 7.10802993709501 -13.2089329778511 27.9 9.35234702788103 -11.7274722370204 27.9 11.2960719900542 -9.86908088909566 27.9 12.876731904028 -7.69348916108856 27.9 14.0435230595961 -5.27062236122011 27.9 14.7589438289795 -2.67835342197951 27.9 15 0 1 14.7589438289794 2.6783534219796 1 14.043523059596 5.27062236122018 1 12.876731904028 7.69348916108863 1 11.2960719900541 9.86908088909572 1 9.35234702788097 11.7274722370205 1 7.10802993709494 13.2089329778511 1 4.63525491562417 14.2658477444273 1 2.01349898726479 14.864246426519 1 -0.672972455257769 14.9848959981197 1 -3.33781400934476 14.6239186827273 1 -5.89537547480889 13.7929165882717 1 -8.26345472178157 12.5185988058195 1 -10.365939734803 10.8419229574108 1 -12.1352549156242 8.81677878438707 1 -13.5145330185363 6.50825608676334 1 -14.4594429104378 3.99055268350009 1 -14.9396144099286 1.34458963355147 1 -14.9396144099286 -1.34458963355154 1 -14.4594429104378 -3.99055268350016 1 -13.5145330185363 -6.5082560867634 1 -12.1352549156242 -8.81677878438713 1 -10.3659397348029 -10.8419229574109 1 -8.26345472178151 -12.5185988058196 1 -5.89537547480882 -13.7929165882718 1 -3.33781400934468 -14.6239186827274 1 -0.672972455257688 -14.9848959981197 1 2.01349898726487 -14.864246426519 1 4.63525491562425 -14.2658477444273 1 7.10802993709501 -13.2089329778511 1 9.35234702788103 -11.7274722370204 1 11.2960719900542 -9.86908088909566 1 12.876731904028 -7.69348916108856 1 14.0435230595961 -5.27062236122011 1 14.7589438289795 -2.67835342197951 1 6.28318530717959 1 6.28318530717959 27.9 0 27.9 0.179519580205131 27.9 0.359039160410262 27.9 0.538558740615393 27.9 0.718078320820524 27.9 0.897597901025655 27.9 1.07711748123079 27.9 1.25663706143592 27.9 1.43615664164105 27.9 1.61567622184618 27.9 1.79519580205131 27.9 1.97471538225644 27.9 2.15423496246157 27.9 2.3337545426667 27.9 2.51327412287183 27.9 2.69279370307696 27.9 2.8723132832821 27.9 3.05183286348723 27.9 3.23135244369236 27.9 3.41087202389749 27.9 3.59039160410262 27.9 3.76991118430775 27.9 3.94943076451288 27.9 4.12895034471801 27.9 4.30846992492314 27.9 4.48798950512828 27.9 4.66750908533341 27.9 4.84702866553854 27.9 5.02654824574367 27.9 5.2060678259488 27.9 5.38558740615393 27.9 5.56510698635906 27.9 5.74462656656419 27.9 5.92414614676932 27.9 6.10366572697445 27.9 0 1 0.179519580205131 1 0.359039160410262 1 0.538558740615393 1 0.718078320820524 1 0.897597901025655 1 1.07711748123079 1 1.25663706143592 1 1.43615664164105 1 1.61567622184618 1 1.79519580205131 1 1.97471538225644 1 2.15423496246157 1 2.3337545426667 1 2.51327412287183 1 2.69279370307696 1 2.8723132832821 1 3.05183286348723 1 3.23135244369236 1 3.41087202389749 1 3.59039160410262 1 3.76991118430775 1 3.94943076451288 1 4.12895034471801 1 4.30846992492314 1 4.48798950512828 1 4.66750908533341 1 4.84702866553854 1 5.02654824574367 1 5.2060678259488 1 5.38558740615393 1 5.56510698635906 1 5.74462656656419 1 5.92414614676932 1 6.10366572697445 1 22 57 58 23 22 58 23 58 59 24 23 59 4 38 39 4 3 38 25 59 60 25 60 61 25 24 59 5 39 40 5 4 39 26 61 62 26 25 61 6 40 41 6 41 42 6 5 40 27 26 62 7 6 42 28 62 63 28 63 64 28 27 62 8 42 43 8 43 44 8 7 42 29 64 65 29 28 64 9 8 44 30 29 65 31 65 66 31 66 67 10 44 45 10 45 46 31 30 65 10 9 44 32 67 68 32 31 67 11 10 46 33 32 68 12 11 46 12 46 47 34 68 69 34 69 70 34 33 68 13 12 47 13 47 48 35 34 70 14 13 48 14 48 49 14 49 50 36 70 71 36 71 72 36 35 70 15 14 50 37 36 72 2 37 72 16 15 50 2 72 1 16 50 51 16 51 52 17 16 52 18 17 52 18 52 53 19 18 53 19 53 54 19 54 55 20 19 55 21 20 55 21 55 56 22 21 56 22 56 57 +71 71 1 5.32907051820075e-014 +16 0 0 15.7569240481953 2.77837084267089 0 15.0350819325745 5.4723222932107 0 13.856406460551 8 0 12.2567110899036 10.2846017549846 0 10.2846017549846 12.2567110899037 0 7.99999999999999 13.856406460551 0 5.47232229321069 15.0350819325745 0 2.77837084267088 15.7569240481953 0 -9.6784559533436e-015 16 0 -2.7783708426709 15.7569240481953 0 -5.47232229321071 15.0350819325745 0 -8.00000000000001 13.856406460551 0 -10.2846017549846 12.2567110899036 0 -12.2567110899037 10.2846017549846 0 -13.856406460551 7.99999999999998 0 -15.0350819325745 5.47232229321068 0 -15.7569240481953 2.77837084267086 0 -16 -3.35677666218892e-014 0 -15.7569240481953 -2.77837084267092 0 -15.0350819325745 -5.47232229321074 0 -13.856406460551 -8.00000000000004 0 -12.2567110899036 -10.2846017549847 0 -10.2846017549846 -12.2567110899037 0 -7.99999999999996 -13.856406460551 0 -5.47232229321066 -15.0350819325746 0 -2.77837084267084 -15.7569240481953 0 3.96935088964323e-014 -16 0 2.77837084267092 -15.7569240481953 0 5.47232229321073 -15.0350819325745 0 8.00000000000003 -13.856406460551 0 10.2846017549846 -12.2567110899036 0 12.2567110899037 -10.2846017549846 0 13.856406460551 -7.99999999999998 0 15.0350819325745 -5.47232229321068 0 15.7569240481953 -2.77837084267087 0 15 0 0 14.7589438289794 2.6783534219796 0 14.043523059596 5.27062236122018 0 12.876731904028 7.69348916108863 0 11.2960719900541 9.86908088909572 0 9.35234702788097 11.7274722370205 0 7.10802993709494 13.2089329778511 0 4.63525491562417 14.2658477444273 0 2.01349898726479 14.864246426519 0 -0.672972455257769 14.9848959981197 0 -3.33781400934476 14.6239186827273 0 -5.89537547480889 13.7929165882717 0 -8.26345472178157 12.5185988058195 0 -10.365939734803 10.8419229574108 0 -12.1352549156242 8.81677878438707 0 -13.5145330185363 6.50825608676334 0 -14.4594429104378 3.99055268350009 0 -14.9396144099286 1.34458963355147 0 -14.9396144099286 -1.34458963355154 0 -14.4594429104378 -3.99055268350016 0 -13.5145330185363 -6.5082560867634 0 -12.1352549156242 -8.81677878438713 0 -10.3659397348029 -10.8419229574109 0 -8.26345472178151 -12.5185988058196 0 -5.89537547480882 -13.7929165882718 0 -3.33781400934468 -14.6239186827274 0 -0.672972455257688 -14.9848959981197 0 2.01349898726487 -14.864246426519 0 4.63525491562425 -14.2658477444273 0 7.10802993709501 -13.2089329778511 0 9.35234702788103 -11.7274722370204 0 11.2960719900542 -9.86908088909566 0 12.876731904028 -7.69348916108856 0 14.0435230595961 -5.27062236122011 0 14.7589438289795 -2.67835342197951 0 16 5.32907051820075e-014 15.7569240481953 2.77837084267089 15.0350819325745 5.4723222932107 13.856406460551 8 12.2567110899036 10.2846017549846 10.2846017549846 12.2567110899037 7.99999999999999 13.856406460551 5.47232229321069 15.0350819325745 2.77837084267088 15.7569240481953 -8.88178419700125e-015 16 -2.7783708426709 15.7569240481953 -5.47232229321071 15.0350819325745 -8.00000000000001 13.856406460551 -10.2846017549846 12.2567110899036 -12.2567110899037 10.2846017549846 -13.856406460551 7.99999999999998 -15.0350819325745 5.47232229321067 -15.7569240481953 2.77837084267086 -16 -3.37507799486048e-014 -15.7569240481953 -2.77837084267092 -15.0350819325745 -5.47232229321074 -13.856406460551 -8.00000000000004 -12.2567110899036 -10.2846017549847 -10.2846017549846 -12.2567110899037 -7.99999999999996 -13.856406460551 -5.47232229321066 -15.0350819325746 -2.77837084267084 -15.7569240481953 3.90798504668055e-014 -16 2.77837084267092 -15.7569240481953 5.47232229321073 -15.0350819325745 8.00000000000003 -13.856406460551 10.2846017549846 -12.2567110899036 12.2567110899037 -10.2846017549846 13.856406460551 -7.99999999999998 15.0350819325745 -5.47232229321068 15.7569240481953 -2.77837084267087 15 5.32907051820075e-014 14.7589438289794 2.6783534219796 14.043523059596 5.27062236122018 12.876731904028 7.69348916108863 11.2960719900541 9.86908088909572 9.35234702788097 11.7274722370205 7.10802993709494 13.2089329778511 4.63525491562417 14.2658477444273 2.01349898726479 14.864246426519 -0.672972455257769 14.9848959981197 -3.33781400934476 14.6239186827273 -5.89537547480889 13.7929165882717 -8.26345472178157 12.5185988058195 -10.365939734803 10.8419229574108 -12.1352549156242 8.81677878438707 -13.5145330185363 6.50825608676334 -14.4594429104378 3.99055268350009 -14.9396144099286 1.34458963355146 -14.9396144099286 -1.34458963355154 -14.4594429104378 -3.99055268350016 -13.5145330185363 -6.5082560867634 -12.1352549156242 -8.81677878438713 -10.3659397348029 -10.8419229574109 -8.26345472178151 -12.5185988058196 -5.89537547480882 -13.7929165882718 -3.33781400934468 -14.6239186827274 -0.672972455257687 -14.9848959981197 2.01349898726487 -14.864246426519 4.63525491562424 -14.2658477444273 7.10802993709501 -13.2089329778511 9.35234702788103 -11.7274722370204 11.2960719900542 -9.86908088909566 12.876731904028 -7.69348916108856 14.0435230595961 -5.27062236122011 14.7589438289795 -2.67835342197952 68 67 32 14 15 50 33 68 32 49 14 50 59 23 24 58 22 23 58 23 59 69 68 33 60 24 25 13 14 49 60 59 24 34 69 33 48 13 49 57 21 22 57 22 58 70 69 34 61 25 26 12 13 48 61 60 25 35 70 34 47 12 48 56 20 21 71 70 35 11 12 47 56 21 57 62 26 27 36 71 35 62 61 26 46 11 47 55 20 56 37 71 36 19 20 55 10 11 46 1 37 36 63 27 28 45 10 46 63 62 27 54 19 55 18 19 54 9 10 45 2 38 37 2 37 1 64 63 28 64 28 29 44 9 45 53 18 54 8 44 43 65 64 29 8 9 44 3 39 38 3 38 2 17 18 53 30 65 29 52 17 53 66 65 30 16 17 52 7 43 42 7 8 43 4 40 39 31 66 30 51 16 52 4 39 3 5 40 4 67 66 31 5 41 40 6 7 42 15 16 51 6 41 5 6 42 41 32 67 31 50 15 51 +74 72 1 0.0608848305320725 +16 0 17 16 0 17 15.7569240481953 2.77837084267089 17 15.0350819325745 5.4723222932107 17 13.856406460551 8 17 12.2567110899036 10.2846017549846 17 10.2846017549846 12.2567110899037 17 7.99999999999999 13.856406460551 17 5.47232229321069 15.0350819325745 17 2.77837084267088 15.7569240481953 17 -9.6784559533436e-015 16 17 -2.7783708426709 15.7569240481953 17 -5.47232229321071 15.0350819325745 17 -8.00000000000001 13.856406460551 17 -10.2846017549846 12.2567110899036 17 -12.2567110899037 10.2846017549846 17 -13.856406460551 7.99999999999998 17 -15.0350819325745 5.47232229321068 17 -15.7569240481953 2.77837084267086 17 -16 -3.35677666218892e-014 17 -15.7569240481953 -2.77837084267092 17 -15.0350819325745 -5.47232229321074 17 -13.856406460551 -8.00000000000004 17 -12.2567110899036 -10.2846017549847 17 -10.2846017549846 -12.2567110899037 17 -7.99999999999996 -13.856406460551 17 -5.47232229321066 -15.0350819325746 17 -2.77837084267084 -15.7569240481953 17 3.96935088964323e-014 -16 17 2.77837084267092 -15.7569240481953 17 5.47232229321073 -15.0350819325745 17 8.00000000000003 -13.856406460551 17 10.2846017549846 -12.2567110899036 17 12.2567110899037 -10.2846017549846 17 13.856406460551 -7.99999999999998 17 15.0350819325745 -5.47232229321068 17 15.7569240481953 -2.77837084267087 17 16 0 0 16 0 0 15.7569240481953 2.77837084267089 0 15.0350819325745 5.4723222932107 0 13.856406460551 8 0 12.2567110899036 10.2846017549846 0 10.2846017549846 12.2567110899037 0 7.99999999999999 13.856406460551 0 5.47232229321069 15.0350819325745 0 2.77837084267088 15.7569240481953 0 -9.6784559533436e-015 16 0 -2.7783708426709 15.7569240481953 0 -5.47232229321071 15.0350819325745 0 -8.00000000000001 13.856406460551 0 -10.2846017549846 12.2567110899036 0 -12.2567110899037 10.2846017549846 0 -13.856406460551 7.99999999999998 0 -15.0350819325745 5.47232229321068 0 -15.7569240481953 2.77837084267086 0 -16 -3.35677666218892e-014 0 -15.7569240481953 -2.77837084267092 0 -15.0350819325745 -5.47232229321074 0 -13.856406460551 -8.00000000000004 0 -12.2567110899036 -10.2846017549847 0 -10.2846017549846 -12.2567110899037 0 -7.99999999999996 -13.856406460551 0 -5.47232229321066 -15.0350819325746 0 -2.77837084267084 -15.7569240481953 0 3.96935088964323e-014 -16 0 2.77837084267092 -15.7569240481953 0 5.47232229321073 -15.0350819325745 0 8.00000000000003 -13.856406460551 0 10.2846017549846 -12.2567110899036 0 12.2567110899037 -10.2846017549846 0 13.856406460551 -7.99999999999998 0 15.0350819325745 -5.47232229321068 0 15.7569240481953 -2.77837084267087 0 0 17 6.28318530717959 17 0.174532925199433 17 0.349065850398866 17 0.523598775598299 17 0.698131700797732 17 0.872664625997165 17 1.0471975511966 17 1.22173047639603 17 1.39626340159546 17 1.5707963267949 17 1.74532925199433 17 1.91986217719376 17 2.0943951023932 17 2.26892802759263 17 2.44346095279206 17 2.6179938779915 17 2.79252680319093 17 2.96705972839036 17 3.1415926535898 17 3.31612557878923 17 3.49065850398866 17 3.66519142918809 17 3.83972435438753 17 4.01425727958696 17 4.18879020478639 17 4.36332312998583 17 4.53785605518526 17 4.71238898038469 17 4.88692190558413 17 5.06145483078356 17 5.23598775598299 17 5.41052068118242 17 5.58505360638186 17 5.75958653158129 17 5.93411945678072 17 6.10865238198015 17 6.28318530717959 0 0 0 0.174532925199433 0 0.349065850398866 0 0.523598775598299 0 0.698131700797732 0 0.872664625997165 0 1.0471975511966 0 1.22173047639603 0 1.39626340159546 0 1.5707963267949 0 1.74532925199433 0 1.91986217719376 0 2.0943951023932 0 2.26892802759263 0 2.44346095279206 0 2.6179938779915 0 2.79252680319093 0 2.96705972839036 0 3.1415926535898 0 3.31612557878923 0 3.49065850398866 0 3.66519142918809 0 3.83972435438753 0 4.01425727958696 0 4.18879020478639 0 4.36332312998583 0 4.53785605518526 0 4.71238898038469 0 4.88692190558413 0 5.06145483078356 0 5.23598775598299 0 5.41052068118242 0 5.58505360638186 0 5.75958653158129 0 5.93411945678072 0 6.10865238198015 0 21 20 58 21 58 59 22 59 60 22 21 59 23 22 60 3 39 40 3 1 39 24 60 61 24 61 62 24 23 60 4 40 41 4 3 40 25 62 63 25 24 62 5 41 42 5 4 41 26 63 64 26 25 63 6 42 43 6 5 42 27 26 64 7 43 44 7 44 45 7 6 43 28 64 65 28 65 66 28 27 64 8 7 45 8 45 46 29 66 67 29 28 66 9 8 46 30 67 68 30 29 67 10 9 46 10 46 47 10 47 48 31 68 69 31 30 68 32 69 70 11 10 48 32 31 69 11 48 49 33 32 70 33 70 71 12 11 49 12 49 50 13 12 50 34 33 71 13 50 51 34 71 72 14 13 51 35 34 72 15 14 51 36 35 72 15 51 52 36 72 73 15 52 53 36 73 74 16 15 53 37 36 74 2 37 74 2 74 38 17 16 53 17 53 54 17 54 55 18 17 55 19 18 55 19 55 56 19 56 57 20 19 57 20 57 58 +71 71 1 2.1628557899131e-014 +16 0 17 15.7569240481953 2.77837084267089 17 15.0350819325745 5.4723222932107 17 13.856406460551 8 17 12.2567110899036 10.2846017549846 17 10.2846017549846 12.2567110899037 17 7.99999999999999 13.856406460551 17 5.47232229321069 15.0350819325745 17 2.77837084267088 15.7569240481953 17 -9.6784559533436e-015 16 17 -2.7783708426709 15.7569240481953 17 -5.47232229321071 15.0350819325745 17 -8.00000000000001 13.856406460551 17 -10.2846017549846 12.2567110899036 17 -12.2567110899037 10.2846017549846 17 -13.856406460551 7.99999999999998 17 -15.0350819325745 5.47232229321068 17 -15.7569240481953 2.77837084267086 17 -16 -3.35677666218892e-014 17 -15.7569240481953 -2.77837084267092 17 -15.0350819325745 -5.47232229321074 17 -13.856406460551 -8.00000000000004 17 -12.2567110899036 -10.2846017549847 17 -10.2846017549846 -12.2567110899037 17 -7.99999999999996 -13.856406460551 17 -5.47232229321066 -15.0350819325746 17 -2.77837084267084 -15.7569240481953 17 3.96935088964323e-014 -16 17 2.77837084267092 -15.7569240481953 17 5.47232229321073 -15.0350819325745 17 8.00000000000003 -13.856406460551 17 10.2846017549846 -12.2567110899036 17 12.2567110899037 -10.2846017549846 17 13.856406460551 -7.99999999999998 17 15.0350819325745 -5.47232229321068 17 15.7569240481953 -2.77837084267087 17 14 0 17 13.7750142403808 2.49979652718096 17 13.1072881889563 4.91924753713884 17 12.0182831104261 7.18058988368272 17 10.5430005240505 9.21114216315601 17 8.72885722602224 10.9456407545524 17 6.63416127462194 12.3283374459944 17 4.32623792124922 13.3147912281322 17 1.87926572144714 13.8732966647511 17 -0.628107624907251 13.9859029315784 17 -3.11529307538844 13.6489907705455 17 -5.50235044315497 12.8733888157203 17 -7.71255774032947 11.6840255520982 17 -9.67487708581614 10.1191280935835 17 -11.3262379212493 8.2289935320946 17 -12.6135641506339 6.07437234764578 17 -13.495480049742 3.72451583793342 17 -13.9436401159334 1.25495032464803 17 -13.9436401159333 -1.2549503246481 17 -13.4954800497419 -3.72451583793349 17 -12.6135641506339 -6.07437234764584 17 -11.3262379212492 -8.22899353209465 17 -9.67487708581608 -10.1191280935835 17 -7.71255774032941 -11.6840255520983 17 -5.5023504431549 -12.8733888157203 17 -3.11529307538837 -13.6489907705455 17 -0.628107624907175 -13.9859029315784 17 1.87926572144721 -13.8732966647511 17 4.3262379212493 -13.3147912281321 17 6.63416127462201 -12.3283374459943 17 8.7288572260223 -10.9456407545524 17 10.5430005240506 -9.21114216315595 17 12.0182831104261 -7.18058988368266 17 13.1072881889563 -4.91924753713877 17 13.7750142403808 -2.49979652718088 17 16 0 15.7569240481953 2.77837084267089 15.0350819325745 5.4723222932107 13.856406460551 8 12.2567110899036 10.2846017549846 10.2846017549846 12.2567110899037 7.99999999999999 13.856406460551 5.47232229321069 15.0350819325745 2.77837084267088 15.7569240481953 -8.88178419700125e-015 16 -2.7783708426709 15.7569240481953 -5.47232229321071 15.0350819325745 -8.00000000000001 13.856406460551 -10.2846017549846 12.2567110899036 -12.2567110899037 10.2846017549846 -13.856406460551 7.99999999999998 -15.0350819325745 5.47232229321067 -15.7569240481953 2.77837084267086 -16 -3.37507799486048e-014 -15.7569240481953 -2.77837084267092 -15.0350819325745 -5.47232229321074 -13.856406460551 -8.00000000000004 -12.2567110899036 -10.2846017549847 -10.2846017549846 -12.2567110899037 -7.99999999999996 -13.856406460551 -5.47232229321066 -15.0350819325746 -2.77837084267084 -15.7569240481953 3.90798504668055e-014 -16 2.77837084267092 -15.7569240481953 5.47232229321073 -15.0350819325745 8.00000000000003 -13.856406460551 10.2846017549846 -12.2567110899036 12.2567110899037 -10.2846017549846 13.856406460551 -7.99999999999998 15.0350819325745 -5.47232229321068 15.7569240481953 -2.77837084267087 14 -4.08562073062058e-014 13.7750142403808 2.49979652718096 13.1072881889563 4.91924753713884 12.0182831104261 7.18058988368272 10.5430005240505 9.21114216315601 8.72885722602224 10.9456407545524 6.63416127462195 12.3283374459944 4.32623792124922 13.3147912281322 1.87926572144714 13.8732966647511 -0.628107624907251 13.9859029315784 -3.11529307538844 13.6489907705455 -5.50235044315497 12.8733888157203 -7.71255774032947 11.6840255520982 -9.67487708581614 10.1191280935835 -11.3262379212493 8.2289935320946 -12.6135641506339 6.07437234764578 -13.495480049742 3.72451583793342 -13.9436401159334 1.25495032464804 -13.9436401159333 -1.2549503246481 -13.4954800497419 -3.72451583793348 -12.6135641506339 -6.07437234764584 -11.3262379212492 -8.22899353209465 -9.67487708581608 -10.1191280935835 -7.71255774032941 -11.6840255520983 -5.5023504431549 -12.8733888157203 -3.11529307538837 -13.6489907705455 -0.628107624907175 -13.9859029315784 1.87926572144721 -13.8732966647511 4.32623792124929 -13.3147912281321 6.63416127462201 -12.3283374459943 8.7288572260223 -10.9456407545524 10.5430005240506 -9.21114216315595 12.0182831104261 -7.18058988368266 13.1072881889563 -4.91924753713877 13.7750142403808 -2.49979652718088 14 15 50 33 68 32 49 14 50 69 68 33 13 14 49 34 69 33 48 13 49 59 23 24 70 69 34 58 22 23 12 13 48 58 23 59 60 24 25 35 70 34 60 59 24 47 12 48 57 21 22 57 22 58 71 70 35 11 12 47 61 25 26 36 71 35 61 60 25 56 20 21 56 21 57 46 11 47 62 26 27 37 71 36 62 61 26 10 46 45 10 11 46 1 37 36 55 19 20 55 20 56 63 27 28 63 62 27 9 45 44 9 10 45 54 19 55 2 38 37 54 18 19 2 37 1 64 63 28 64 28 29 53 18 54 17 18 53 8 44 43 8 9 44 3 39 38 65 64 29 65 29 30 3 38 2 52 17 53 7 8 43 7 43 42 4 40 39 16 17 52 4 39 3 5 40 4 5 41 40 66 65 30 66 30 31 6 7 42 6 41 5 6 42 41 51 16 52 67 66 31 15 16 51 32 67 31 50 15 51 68 67 32 +73 71 1 0.0532742267155635 +14 0 4.90000000000001 14 0 50 14 0 4.90000000000001 13.7750142403808 2.49979652718096 4.90000000000001 13.1072881889563 4.91924753713884 4.90000000000001 12.0182831104261 7.18058988368272 4.90000000000001 10.5430005240505 9.21114216315601 4.90000000000001 8.72885722602224 10.9456407545524 4.90000000000001 6.63416127462194 12.3283374459944 4.90000000000001 4.32623792124922 13.3147912281322 4.90000000000001 1.87926572144714 13.8732966647511 4.90000000000001 -0.628107624907251 13.9859029315784 4.90000000000001 -3.11529307538844 13.6489907705455 4.90000000000001 -5.50235044315497 12.8733888157203 4.90000000000001 -7.71255774032947 11.6840255520982 4.90000000000001 -9.67487708581614 10.1191280935835 4.90000000000001 -11.3262379212493 8.2289935320946 4.90000000000001 -12.6135641506339 6.07437234764578 4.90000000000001 -13.495480049742 3.72451583793342 4.90000000000001 -13.9436401159334 1.25495032464803 4.90000000000001 -13.9436401159333 -1.2549503246481 4.90000000000001 -13.4954800497419 -3.72451583793349 4.90000000000001 -12.6135641506339 -6.07437234764584 4.90000000000001 -11.3262379212492 -8.22899353209465 4.90000000000001 -9.67487708581608 -10.1191280935835 4.90000000000001 -7.71255774032941 -11.6840255520983 4.90000000000001 -5.5023504431549 -12.8733888157203 4.90000000000001 -3.11529307538837 -13.6489907705455 4.90000000000001 -0.628107624907175 -13.9859029315784 4.90000000000001 1.87926572144721 -13.8732966647511 4.90000000000001 4.3262379212493 -13.3147912281321 4.90000000000001 6.63416127462201 -12.3283374459943 4.90000000000001 8.7288572260223 -10.9456407545524 4.90000000000001 10.5430005240506 -9.21114216315595 4.90000000000001 12.0182831104261 -7.18058988368266 4.90000000000001 13.1072881889563 -4.91924753713877 4.90000000000001 13.7750142403808 -2.49979652718088 4.90000000000001 14 0 50 13.7873085421709 2.43107448733703 50 13.1556966910027 4.78828200655937 50 12.1243556529821 7 50 10.7246222036657 8.99902653561155 50 8.99902653561155 10.7246222036657 50 6.99999999999999 12.1243556529821 50 4.78828200655935 13.1556966910027 50 2.43107448733702 13.7873085421709 50 -8.46864895917565e-015 14 50 -2.43107448733703 13.7873085421709 50 -4.78828200655937 13.1556966910027 50 -7.00000000000001 12.1243556529821 50 -8.99902653561156 10.7246222036657 50 -10.7246222036657 8.99902653561154 50 -12.1243556529822 6.99999999999998 50 -13.1556966910027 4.78828200655934 50 -13.7873085421709 2.431074487337 50 -14 -2.93717957941531e-014 50 -13.7873085421709 -2.43107448733706 50 -13.1556966910027 -4.7882820065594 50 -12.1243556529821 -7.00000000000003 50 -10.7246222036657 -8.99902653561158 50 -8.99902653561151 -10.7246222036657 50 -6.99999999999996 -12.1243556529822 50 -4.78828200655932 -13.1556966910027 50 -2.43107448733699 -13.7873085421709 50 3.47318202843783e-014 -14 50 2.43107448733706 -13.7873085421709 50 4.78828200655939 -13.1556966910027 50 7.00000000000002 -12.1243556529821 50 8.99902653561157 -10.7246222036657 50 10.7246222036657 -8.99902653561154 50 12.1243556529822 -6.99999999999998 50 13.1556966910027 -4.78828200655935 50 13.7873085421709 -2.43107448733701 50 6.28318530717959 4.90000000000001 6.28318530717959 50 0 4.90000000000001 0.179519580205131 4.90000000000001 0.359039160410262 4.90000000000001 0.538558740615393 4.90000000000001 0.718078320820524 4.90000000000001 0.897597901025655 4.90000000000001 1.07711748123079 4.90000000000001 1.25663706143592 4.90000000000001 1.43615664164105 4.90000000000001 1.61567622184618 4.90000000000001 1.79519580205131 4.90000000000001 1.97471538225644 4.90000000000001 2.15423496246157 4.90000000000001 2.3337545426667 4.90000000000001 2.51327412287183 4.90000000000001 2.69279370307696 4.90000000000001 2.8723132832821 4.90000000000001 3.05183286348723 4.90000000000001 3.23135244369236 4.90000000000001 3.41087202389749 4.90000000000001 3.59039160410262 4.90000000000001 3.76991118430775 4.90000000000001 3.94943076451288 4.90000000000001 4.12895034471801 4.90000000000001 4.30846992492314 4.90000000000001 4.48798950512828 4.90000000000001 4.66750908533341 4.90000000000001 4.84702866553854 4.90000000000001 5.02654824574367 4.90000000000001 5.2060678259488 4.90000000000001 5.38558740615393 4.90000000000001 5.56510698635906 4.90000000000001 5.74462656656419 4.90000000000001 5.92414614676932 4.90000000000001 6.10366572697445 4.90000000000001 0 50 0.174532925199433 50 0.349065850398866 50 0.523598775598299 50 0.698131700797732 50 0.872664625997165 50 1.0471975511966 50 1.22173047639603 50 1.39626340159546 50 1.5707963267949 50 1.74532925199433 50 1.91986217719376 50 2.0943951023932 50 2.26892802759263 50 2.44346095279206 50 2.6179938779915 50 2.79252680319093 50 2.96705972839036 50 3.1415926535898 50 3.31612557878923 50 3.49065850398866 50 3.66519142918809 50 3.83972435438753 50 4.01425727958696 50 4.18879020478639 50 4.36332312998583 50 4.53785605518526 50 4.71238898038469 50 4.88692190558413 50 5.06145483078356 50 5.23598775598299 50 5.41052068118242 50 5.58505360638186 50 5.75958653158129 50 5.93411945678072 50 6.10865238198015 50 58 22 23 58 57 22 59 23 24 59 58 23 39 3 4 39 38 3 60 24 25 60 59 24 40 4 5 40 39 4 61 25 26 61 60 25 41 5 6 41 40 5 62 26 27 62 61 26 42 6 7 42 41 6 63 27 28 63 62 27 43 7 8 43 42 7 64 28 29 64 63 28 44 8 9 65 29 30 44 43 8 65 64 29 45 44 9 45 9 10 66 30 31 66 65 30 46 45 10 46 10 11 67 31 32 67 66 31 47 11 12 68 32 33 47 46 11 68 67 32 48 47 12 48 12 13 69 33 34 69 68 33 49 13 14 49 48 13 70 69 34 70 34 35 50 14 15 50 49 14 71 70 35 71 35 36 72 71 36 51 15 16 72 36 37 51 50 15 73 72 37 73 37 1 52 16 17 52 51 16 2 73 1 53 17 18 53 52 17 54 18 19 54 53 18 55 19 20 55 54 19 56 20 21 56 55 20 57 21 22 57 56 21 +36 34 1 2.22044604925031e-015 +14 0 50 13.7873085421709 2.43107448733703 50 13.1556966910027 4.78828200655937 50 12.1243556529821 7 50 10.7246222036657 8.99902653561155 50 8.99902653561155 10.7246222036657 50 6.99999999999999 12.1243556529821 50 4.78828200655935 13.1556966910027 50 2.43107448733702 13.7873085421709 50 -8.46864895917565e-015 14 50 -2.43107448733703 13.7873085421709 50 -4.78828200655937 13.1556966910027 50 -7.00000000000001 12.1243556529821 50 -8.99902653561156 10.7246222036657 50 -10.7246222036657 8.99902653561154 50 -12.1243556529822 6.99999999999998 50 -13.1556966910027 4.78828200655934 50 -13.7873085421709 2.431074487337 50 -14 -2.93717957941531e-014 50 -13.7873085421709 -2.43107448733706 50 -13.1556966910027 -4.7882820065594 50 -12.1243556529821 -7.00000000000003 50 -10.7246222036657 -8.99902653561158 50 -8.99902653561151 -10.7246222036657 50 -6.99999999999996 -12.1243556529822 50 -4.78828200655932 -13.1556966910027 50 -2.43107448733699 -13.7873085421709 50 3.47318202843783e-014 -14 50 2.43107448733706 -13.7873085421709 50 4.78828200655939 -13.1556966910027 50 7.00000000000002 -12.1243556529821 50 8.99902653561157 -10.7246222036657 50 10.7246222036657 -8.99902653561154 50 12.1243556529822 -6.99999999999998 50 13.1556966910027 -4.78828200655935 50 13.7873085421709 -2.43107448733701 50 14 0 13.7873085421709 2.43107448733702 13.1556966910027 4.78828200655936 12.1243556529821 7 10.7246222036657 8.99902653561156 8.99902653561155 10.7246222036657 6.99999999999999 12.1243556529821 4.78828200655936 13.1556966910027 2.43107448733702 13.7873085421709 -8.88178419700125e-015 14 -2.43107448733703 13.7873085421709 -4.78828200655937 13.1556966910027 -7.00000000000001 12.1243556529821 -8.99902653561156 10.7246222036657 -10.7246222036657 8.99902653561154 -12.1243556529822 6.99999999999998 -13.1556966910027 4.78828200655934 -13.7873085421709 2.431074487337 -14 -3.01980662698043e-014 -13.7873085421709 -2.43107448733706 -13.1556966910027 -4.7882820065594 -12.1243556529821 -7.00000000000003 -10.7246222036657 -8.99902653561158 -8.99902653561151 -10.7246222036657 -6.99999999999996 -12.1243556529822 -4.78828200655932 -13.1556966910027 -2.43107448733699 -13.7873085421709 3.5527136788005e-014 -14 2.43107448733706 -13.7873085421709 4.78828200655939 -13.1556966910027 7.00000000000002 -12.1243556529821 8.99902653561157 -10.7246222036657 10.7246222036657 -8.99902653561154 12.1243556529822 -6.99999999999998 13.1556966910027 -4.78828200655935 13.7873085421709 -2.43107448733701 22 23 24 27 25 26 19 20 21 19 21 22 18 22 24 18 19 22 17 24 25 17 18 24 30 27 28 30 28 29 16 17 25 33 31 32 13 14 15 13 15 16 34 31 33 11 12 13 36 34 35 9 10 11 9 11 13 2 36 1 2 34 36 8 30 31 8 25 27 8 27 30 8 16 25 8 13 16 8 31 34 8 9 13 8 34 2 4 8 2 4 2 3 6 8 4 6 7 8 5 6 4 + +TShapes 1373 +Ve +1e-007 +-25.9998076915964 -0.100000000023234 38 +0 0 + +0101100 +* +Ve +1e-007 +25.9998076915963 -0.100000000041546 38 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 1 0 4.71623514371443 7.85013547064404 +2 1 1 3 4.71623514371443 7.85013547064404 +2 2 2 7 4.71623514371443 7.85013547064404 +6 1 1 3 +6 2 2 7 +0 + +0101100 ++1373 0 -1372 0 * +Ve +1e-007 +-25.9998076915964 -0.100000000023234 24 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 2 0 0 14 +2 3 1 3 0 14 +2 4 3 8 0 14 +6 3 1 3 +6 4 3 8 +0 + +0101000 ++1370 0 -1373 0 * +Ve +1e-007 +25.9998076915963 -0.100000000041546 24 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 3 0 0 14 +2 5 1 3 0 14 +2 6 3 8 0 14 +6 5 1 3 +6 6 4 8 +0 + +0101000 ++1368 0 -1372 0 * +Ed + 1e-007 1 1 0 +1 4 0 3.14543881691953 6.27933914384914 +2 7 1 0 3.14543881691953 6.27933914384914 +2 8 4 0 3.14543881691953 6.27933914384914 +6 7 1 0 +6 8 5 0 +0 + +0101100 ++1370 4 -1368 4 * +Wi + +0101000 +-1371 0 -1369 0 +1367 0 +1366 3 * +Fa +0 1e-007 1 0 +2 1 +0101000 ++1365 4 * +Ve +1e-007 +-23.9997916657625 -0.0999999999770012 38 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 5 0 -1.00020833423747 0.999807691596402 +2 9 2 7 -1.00020833423747 0.999807691596402 +2 10 3 8 -1.00020833423747 0.999807691596402 +6 9 2 7 +6 10 3 8 +0 + +0101000 ++1363 0 -1373 0 * +Ve +1e-007 +23.9997916657623 -0.100000000040758 38 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 5 0 -50.9998076915963 -48.9997916657623 +2 9 2 7 -50.9998076915963 -48.9997916657623 +2 10 3 8 -50.9998076915963 -48.9997916657623 +6 11 2 7 +6 12 4 8 +0 + +0101000 ++1372 0 -1361 0 * +Ed + 1e-007 1 1 0 +1 6 0 4.71655565910682 7.8498149552497 +2 11 2 0 4.71655565910682 7.8498149552497 +2 12 5 10 4.71655565910682 7.8498149552497 +6 13 6 10 +6 14 2 0 +0 + +0101100 ++1363 9 -1361 9 * +Wi + +0101000 ++1371 0 +1362 0 +1360 0 -1359 7 * +Fa +0 1e-007 2 0 +2 2 +0101000 ++1358 9 * +Ve +1e-007 +-22.9997826076682 -0.100000000022873 24 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 7 0 -2.00021739233183 0.999807691596402 +2 13 4 3 -2.00021739233183 0.999807691596402 +2 14 3 8 -2.00021739233183 0.999807691596402 +6 15 3 8 +6 16 5 3 +0 + +0101000 ++1356 0 -1370 0 * +Ve +1e-007 +-22.9997826076682 -0.100000000022873 59 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 8 0 1 36 +2 15 6 13 1 36 +2 16 3 8 1 36 +6 17 7 13 +6 18 3 8 +0 + +0101000 ++1356 0 -1354 0 * +Ve +1e-007 +-23.9997916657623 -0.100000000023001 42 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 9 0 1 5 +2 17 5 14 1 5 +2 18 3 8 1 5 +6 19 6 14 +6 20 3 8 +0 + +0101000 ++1363 0 -1352 0 * +Ve +1e-007 +-25.9998076915964 -0.100000000023234 59 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 10 0 -2.00021739233183 0.999807691596402 +2 19 7 3 -2.00021739233183 0.999807691596402 +2 20 3 8 -2.00021739233183 0.999807691596402 +6 21 3 8 +6 22 8 3 +0 + +0101000 ++1354 0 -1350 0 * +Ve +1e-007 +-25.9998076915964 -0.100000000023211 42 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 11 0 -1.00020833423747 0.999807691596402 +2 21 8 7 -1.00020833423747 0.999807691596402 +2 22 3 8 -1.00020833423747 0.999807691596402 +6 23 3 8 +6 24 9 7 +0 + +0101000 ++1352 0 -1348 0 * +Ed + 1e-007 1 1 0 +1 12 0 18 35 +2 23 1 3 18 35 +2 24 3 8 18 35 +6 25 10 3 +6 26 3 8 +0 + +0101000 ++1348 0 -1350 0 * +Wi + +0101000 ++1369 0 +1355 0 -1362 0 -1353 0 +1351 0 -1349 0 +1347 0 +1346 0 * +Fa +0 1e-007 3 0 +2 3 +0101000 ++1345 11 * +Ve +1e-007 +22.9997826076681 -0.100000000040338 24 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 7 0 -50.9998076915963 -47.9997826076681 +2 13 4 3 -50.9998076915963 -47.9997826076681 +2 14 3 8 -50.9998076915963 -47.9997826076681 +6 27 4 8 +6 28 5 3 +0 + +0101000 ++1368 0 -1343 0 * +Ve +1e-007 +22.9997826076681 -0.100000000040338 59 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 13 0 1 36 +2 25 6 13 1 36 +2 26 3 8 1 36 +6 29 7 13 +6 30 4 8 +0 + +0101000 ++1343 0 -1341 0 * +Ve +1e-007 +23.9997916657623 -0.100000000040758 42 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 14 0 1 5 +2 27 5 14 1 5 +2 28 3 8 1 5 +6 31 6 14 +6 32 4 8 +0 + +0101000 ++1361 0 -1339 0 * +Ve +1e-007 +25.9998076915963 -0.100000000041546 59 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 10 0 -50.9998076915963 -47.9997826076681 +2 19 7 3 -50.9998076915963 -47.9997826076681 +2 20 3 8 -50.9998076915963 -47.9997826076681 +6 33 4 8 +6 34 8 3 +0 + +0101000 ++1337 0 -1341 0 * +Ve +1e-007 +25.9998076915963 -0.100000000041546 42 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 11 0 -50.9998076915963 -48.9997916657623 +2 21 8 7 -50.9998076915963 -48.9997916657623 +2 22 3 8 -50.9998076915963 -48.9997916657623 +6 35 4 8 +6 36 9 7 +0 + +0101000 ++1335 0 -1339 0 * +Ed + 1e-007 1 1 0 +1 15 0 18 35 +2 29 1 3 18 35 +2 30 3 8 18 35 +6 37 10 3 +6 38 4 8 +0 + +0101000 ++1335 0 -1337 0 * +Wi + +0101000 +-1367 0 +1342 0 -1360 0 +1340 0 -1338 0 -1336 0 +1334 0 -1333 0 * +Fa +0 1e-007 3 0 +2 4 +0101000 ++1332 11 * +Ed + 1e-007 1 1 0 +1 16 0 4.71673682017101 7.8496337941874 +2 31 4 0 4.71673682017101 7.8496337941874 +2 32 6 12 4.71673682017101 7.8496337941874 +6 39 7 12 +6 40 5 0 +0 + +0101100 ++1356 4 -1343 4 * +Wi + +0101000 ++1366 3 +1355 0 +1342 0 -1330 3 * +Fa +0 1e-007 4 0 +2 5 +0101000 ++1329 4 * +Ed + 1e-007 1 1 0 +1 17 0 4.71655565910874 7.8498149552497 +2 33 8 0 4.71655565910874 7.8498149552497 +2 34 5 10 4.71655565910874 7.8498149552497 +6 41 6 10 +6 42 9 0 +0 + +0101100 ++1352 9 -1339 9 * +Wi + +0101000 ++1359 7 -1351 0 +1338 0 -1327 7 * +Fa +0 1e-007 5 0 +2 6 +0101000 ++1326 15 * +Ed + 1e-007 1 1 0 +1 18 0 4.71673682017102 7.8496337941874 +2 35 7 0 4.71673682017102 7.8496337941874 +2 36 6 12 4.71673682017102 7.8496337941874 +6 43 7 12 +6 44 8 0 +0 + +0101100 ++1354 4 -1341 4 * +Wi + +0101000 ++1330 3 -1353 0 +1340 0 -1324 3 * +Fa +0 1e-007 6 0 +2 7 +0101000 ++1323 16 * +Ed + 1e-007 1 1 0 +1 19 0 3.14543881691953 6.27933914384914 +2 37 1 0 3.14543881691953 6.27933914384914 +2 38 7 0 3.14543881691953 6.27933914384914 +6 45 10 0 +6 46 8 0 +0 + +0101100 ++1350 4 -1337 4 * +Wi + +0101000 +-1324 3 +1349 0 +1336 0 +1321 3 * +Fa +0 1e-007 7 0 +2 8 +0101000 ++1320 4 * +Ed + 1e-007 1 1 0 +1 20 0 4.71623514371443 7.85013547064404 +2 39 1 3 4.71623514371443 7.85013547064404 +2 40 8 7 4.71623514371443 7.85013547064404 +6 47 10 3 +6 48 9 7 +0 + +0101100 ++1348 0 -1335 0 * +Wi + +0101000 +-1327 7 +1347 0 +1334 0 +1318 0 * +Fa +0 1e-007 8 0 +2 9 +0101000 ++1317 9 * +Wi + +0101000 ++1318 0 -1346 0 +1333 0 -1321 3 * +Fa +0 1e-007 1 0 +2 10 +0101000 ++1315 4 * +Sh + +0101100 ++1364 3 +1357 7 +1344 8 +1331 8 -1328 3 +1325 14 -1322 13 +1319 3 -1316 7 +1314 3 +* +So + +0100000 ++1313 0 * +Co + +0100000 ++1312 0 * +Ve +1e-007 +-159 -0.10000000002372 -63.9998437496184 +0 0 + +0101100 +* +Ve +1e-007 +-159 -0.100000000043359 -0.000156250381607492 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 21 0 3.14471765867682 6.28006030209195 +2 41 10 0 3.14471765867682 6.28006030209195 +2 42 9 0 3.14471765867682 6.28006030209195 +2 43 11 28 3.14471765867682 6.28006030209195 +2 44 11 30 3.14471765867682 6.28006030209195 +2 45 12 28 3.14471765867682 6.28006030209195 +2 46 12 32 3.14471765867682 6.28006030209195 +6 49 12 0 +6 50 11 0 +0 + +0101100 ++1310 27 -1309 27 * +Ve +1e-007 +-159 -0.100000000042549 -60.9998275856942 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 22 0 3.49982758569422 6.49984374961845 +2 47 9 26 3.49982758569422 6.49984374961845 +2 48 13 39 3.49982758569422 6.49984374961845 +6 51 11 26 +6 52 13 39 +0 + +0101000 ++1307 0 -1310 0 * +Ve +1e-007 +-159 -0.100000000023515 -3.00017241430572 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 22 0 -57.4998437496184 -54.4998275856943 +2 47 9 26 -57.4998437496184 -54.4998275856943 +2 48 13 39 -57.4998437496184 -54.4998275856943 +6 53 11 26 +6 54 14 39 +0 + +0101000 ++1309 0 -1305 0 * +Ed + 1e-007 1 1 0 +1 23 0 6.28663358987618 9.42132967807212 +2 49 9 26 6.28663358987618 9.42132967807212 +2 50 14 46 6.28663358987618 9.42132967807212 +6 55 15 46 +6 56 11 26 +0 + +0101100 ++1305 0 -1307 0 * +Wi + +0101000 ++1308 26 +1306 0 +1304 0 +1303 0 * +Fa +0 1e-007 9 0 +2 11 +0101000 ++1302 27 * +Ve +2.19911485751285e-005 +-133 -0.100000000000002 -63.9998437496185 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 24 0 64 90 +2 51 10 26 64 90 +2 52 13 39 64 90 +6 57 12 26 +6 58 13 39 +0 + +0101000 ++1300 0 -1310 0 * +Ve +2.19911485751285e-005 +-133 -0.100000000000016 -0.000156250381472489 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 25 0 64 90 +2 53 10 26 64 90 +2 54 13 39 64 90 +6 59 12 26 +6 60 14 39 +0 + +0101000 ++1298 0 -1309 0 * +Ed + 2.19911485751285e-005 1 1 0 +1 26 0 0.000994971172122092 0.999005044942252 +2 55 10 48 0.000994971172122092 0.999005044942252 +2 56 15 58 0.000994971172122092 0.999005044942252 +2 57 16 0 0.000994971172122092 0.999005044942252 +2 58 16 59 0.000994971172122092 0.999005044942252 +2 59 17 0 0.000994971172122092 0.999005044942252 +2 60 17 61 0.000994971172122092 0.999005044942252 +6 61 16 58 +6 62 12 48 +0 + +0101000 ++1300 62 -1298 62 * +Wi + +0101000 +-1308 26 -1299 0 +1297 0 +1296 47 * +Fa +0 1e-007 10 0 +2 12 +0101000 ++1295 27 * +Ve +1e-007 +-59.5 -0.100000000042549 -60.9998275856942 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 27 0 0.5 100 +2 61 14 46 0.5 100 +2 62 13 39 0.5 100 +6 63 15 46 +6 64 13 39 +0 + +0101000 ++1307 0 -1293 0 * +Ve +1e-007 +-59.5 -0.0999999999584365 -57.9998076915967 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 28 0 -3.49982758569422 -0.499807691596651 +2 63 18 46 -3.49982758569422 -0.499807691596651 +2 64 13 39 -3.49982758569422 -0.499807691596651 +6 65 13 39 +6 66 17 46 +0 + +0101000 ++1293 0 -1291 0 * +Ve +2.19911485751285e-005 +-130 -0.100000000044039 -66.9998571425655 +0 0 + +0101100 +* +Ed + 5.49778714385033e-006 1 1 0 +1 29 0 0 1 +2 65 15 64 0 1 +2 66 13 39 0 1 +6 67 16 64 +6 68 13 39 +0 + +0101000 ++1300 0 -1289 0 * +Ve +1e-007 +-55.5 -0.100000000041546 -57.9998076915963 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 30 0 2 6 +2 67 19 69 2 6 +2 68 13 39 2 6 +6 69 18 69 +6 70 13 39 +0 + +0101000 ++1291 0 -1287 0 * +Ve +2.19911485751285e-005 +-127 -0.100000000000009 -63.9998437495618 +0 0 + +0101100 +* +Ed + 5.49778714384833e-006 1 1 0 +1 31 0 0 1 +2 69 15 64 0 1 +2 70 13 39 0 1 +6 71 19 64 +6 72 13 39 +0 + +0101000 ++1285 0 -1289 0 * +Ve +1e-007 +-55.5 -0.100000000043359 -63.9998437496184 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 32 0 -6.49984374961839 -0.499807691596331 +2 71 20 70 -6.49984374961839 -0.499807691596331 +2 72 13 39 -6.49984374961839 -0.499807691596331 +6 73 13 39 +6 74 20 70 +0 + +0101000 ++1283 0 -1287 0 * +Ve +2.19911485751285e-005 +-123 -0.100000000000002 -63.9998437496185 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 33 0 54 58 +2 73 10 26 54 58 +2 74 13 39 54 58 +6 75 21 26 +6 76 13 39 +0 + +0101000 ++1281 0 -1285 0 * +Ve +1e-007 +-60 -0.100000000043331 -63.9998437496184 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 34 0 0.5 5 +2 75 21 70 0.5 5 +2 76 13 39 0.5 5 +6 77 22 70 +6 78 13 39 +0 + +0101000 ++1279 0 -1283 0 * +Ve +2.19911485751285e-005 +-120 -0.100000000044039 -66.9998571425655 +0 0 + +0101100 +* +Ed + 5.49778714385033e-006 1 1 0 +1 35 0 0 1 +2 77 15 71 0 1 +2 78 13 39 0 1 +6 79 23 71 +6 80 13 39 +0 + +0101000 ++1281 0 -1277 0 * +Ve +1e-007 +-60 -0.100000000000001 -70 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 36 0 -12.5001562503816 -6.5 +2 79 22 76 -12.5001562503816 -6.5 +2 80 13 39 -12.5001562503816 -6.5 +6 81 13 39 +6 82 24 76 +0 + +0101000 ++1279 0 -1275 0 * +Ve +2.19911485751285e-005 +-117 -0.100000000000009 -63.9998437495618 +0 0 + +0101100 +* +Ed + 5.49778714384833e-006 1 1 0 +1 37 0 0 1 +2 81 15 71 0 1 +2 82 13 39 0 1 +6 83 25 71 +6 84 13 39 +0 + +0101000 ++1273 0 -1277 0 * +Ve +1e-007 +-70 -0.100000000000001 -70 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 38 0 -53 -43 +2 83 23 76 -53 -43 +2 84 13 39 -53 -43 +6 85 13 39 +6 86 26 76 +0 + +0101000 ++1275 0 -1271 0 * +Ve +2.19911485751285e-005 +-113 -0.0999999999999878 -63.9998437496185 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 39 0 44 48 +2 85 10 26 44 48 +2 86 13 39 44 48 +6 87 27 26 +6 88 13 39 +0 + +0101000 ++1269 0 -1273 0 * +Ve +2.19911485751285e-005 +-70 -0.100000000023706 -63.9998437496184 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 40 0 -12.5001562503814 -6.5 +2 87 24 76 -12.5001562503814 -6.5 +2 88 13 39 -12.5001562503814 -6.5 +6 89 13 39 +6 90 28 76 +0 + +0101000 ++1267 0 -1271 0 * +Ve +2.19911485751285e-005 +-110 -0.100000000044039 -66.9998571425655 +0 0 + +0101100 +* +Ed + 5.49778714385033e-006 1 1 0 +1 41 0 0 1 +2 89 15 77 0 1 +2 90 13 39 0 1 +6 91 29 77 +6 92 13 39 +0 + +0101000 ++1269 0 -1265 0 * +Ve +2.19911485751285e-005 +-87 -0.100000000000002 -63.9998437496185 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 42 0 1 18 +2 91 10 26 1 18 +2 92 13 39 1 18 +6 93 30 26 +6 94 13 39 +0 + +0101000 ++1267 0 -1263 0 * +Ve +2.19911485751285e-005 +-107 -0.100000000000009 -63.9998437495618 +0 0 + +0101100 +* +Ed + 5.49778714384833e-006 1 1 0 +1 43 0 0 1 +2 93 15 77 0 1 +2 94 13 39 0 1 +6 95 31 77 +6 96 13 39 +0 + +0101000 ++1261 0 -1265 0 * +Ve +2.19911485751285e-005 +-90 -0.100000000044039 -66.9998571425655 +0 0 + +0101100 +* +Ed + 5.49778714384833e-006 1 1 0 +1 44 0 0 1 +2 95 15 78 0 1 +2 96 13 39 0 1 +6 97 32 78 +6 98 13 39 +0 + +0101000 ++1263 0 -1259 0 * +Ve +2.19911485751285e-005 +-103 -0.0999999999999878 -63.9998437496185 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 45 0 34 38 +2 97 10 26 34 38 +2 98 13 39 34 38 +6 99 33 26 +6 100 13 39 +0 + +0101000 ++1257 0 -1261 0 * +Ve +2.19911485751285e-005 +-93 -0.0999999999999878 -63.9998437496185 +0 0 + +0101100 +* +Ed + 5.49778714385033e-006 1 1 0 +1 46 0 0 1 +2 99 15 78 0 1 +2 100 13 39 0 1 +6 101 34 78 +6 102 13 39 +0 + +0101000 ++1255 0 -1259 0 * +Ve +2.19911485751285e-005 +-100 -0.100000000044039 -66.9998571425655 +0 0 + +0101100 +* +Ed + 5.49778714385033e-006 1 1 0 +1 47 0 0 1 +2 101 15 79 0 1 +2 102 13 39 0 1 +6 103 35 79 +6 104 13 39 +0 + +0101000 ++1257 0 -1253 0 * +Ve +2.19911485751285e-005 +-97 -0.100000000000009 -63.9998437495618 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 48 0 24 28 +2 103 10 26 24 28 +2 104 13 39 24 28 +6 105 36 26 +6 106 13 39 +0 + +0101000 ++1255 0 -1251 0 * +Ed + 5.49778714384833e-006 1 1 0 +1 49 0 0 1 +2 105 15 79 0 1 +2 106 13 39 0 1 +6 107 37 79 +6 108 13 39 +0 + +0101000 ++1251 0 -1253 0 * +Wi + +0101000 +-1306 0 +1292 0 +1299 0 +1290 0 -1288 0 +1286 0 +1284 0 -1282 0 +1280 0 -1278 0 +-1276 0 +1274 0 +1272 0 +1270 0 +1268 0 -1266 0 -1264 0 +1262 0 +1260 0 +1258 0 ++1256 0 -1254 0 -1252 0 +1250 0 +1249 0 * +Fa +0 1e-007 13 0 +2 13 +0101000 ++1248 63 * +Ve +1e-007 +-59.5 -0.100000000023502 -3.00017241430572 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 50 0 0.5 100 +2 107 14 46 0.5 100 +2 108 13 39 0.5 100 +6 109 15 46 +6 110 14 39 +0 + +0101000 ++1305 0 -1246 0 * +Ve +2.19911485751285e-005 +-130 -0.100000000023911 2.99985714256553 +0 0 + +0101100 +* +Ed + 5.49778714378209e-006 1 1 0 +1 51 0 0 1 +2 109 15 64 0 1 +2 110 13 39 0 1 +6 111 16 64 +6 112 14 39 +0 + +0101000 ++1298 0 -1244 0 * +Ve +1e-007 +-59.5 -0.099999999976795 -6.00019230840342 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 28 0 51.4998076915966 54.4998275856943 +2 63 18 46 51.4998076915966 54.4998275856943 +2 64 13 39 51.4998076915966 54.4998275856943 +6 113 14 39 +6 114 17 46 +0 + +0101000 ++1242 0 -1246 0 * +Ve +2.19911485751285e-005 +-127 -0.100000000000002 -0.000156250381483147 +0 0 + +0101100 +* +Ed + 5.49778714378213e-006 1 1 0 +1 52 0 0 1 +2 111 15 64 0 1 +2 112 13 39 0 1 +6 115 19 64 +6 116 14 39 +0 + +0101000 ++1240 0 -1244 0 * +Ve +1e-007 +-55.5 -0.100000000023234 -6.0001923084036 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 53 0 2 6 +2 113 19 69 2 6 +2 114 13 39 2 6 +6 117 18 69 +6 118 14 39 +0 + +0101000 ++1242 0 -1238 0 * +Ve +2.19911485751285e-005 +-123 -0.100000000000016 -0.000156250381472489 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 54 0 54 58 +2 115 10 26 54 58 +2 116 13 39 54 58 +6 119 21 26 +6 120 14 39 +0 + +0101000 ++1236 0 -1240 0 * +Ve +1e-007 +-55.5 -0.10000000002372 -0.000156250381547096 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 32 0 51.4998076915964 57.4998437496184 +2 71 20 70 51.4998076915964 57.4998437496184 +2 72 13 39 51.4998076915964 57.4998437496184 +6 121 14 39 +6 122 20 70 +0 + +0101000 ++1238 0 -1234 0 * +Ve +2.19911485751285e-005 +-120 -0.100000000023911 2.99985714256553 +0 0 + +0101100 +* +Ed + 5.49778714378209e-006 1 1 0 +1 55 0 0 1 +2 117 15 71 0 1 +2 118 13 39 0 1 +6 123 23 71 +6 124 14 39 +0 + +0101000 ++1236 0 -1232 0 * +Ve +1e-007 +-60 -0.100000000023706 -0.000156250381547096 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 56 0 0.5 5 +2 119 21 70 0.5 5 +2 120 13 39 0.5 5 +6 125 22 70 +6 126 14 39 +0 + +0101000 ++1230 0 -1234 0 * +Ve +2.19911485751285e-005 +-117 -0.100000000000002 -0.000156250381483147 +0 0 + +0101100 +* +Ed + 5.49778714378213e-006 1 1 0 +1 57 0 0 1 +2 121 15 71 0 1 +2 122 13 39 0 1 +6 127 25 71 +6 128 14 39 +0 + +0101000 ++1228 0 -1232 0 * +Ve +1e-007 +-60 -0.100000000000001 10 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 36 0 -86.5 -76.4998437496186 +2 79 22 76 -86.5 -76.4998437496186 +2 80 13 39 -86.5 -76.4998437496186 +6 129 14 39 +6 130 24 76 +0 + +0101000 ++1226 0 -1230 0 * +Ve +2.19911485751285e-005 +-113 -0.0999999999999878 -0.000156250381472489 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 58 0 44 48 +2 123 10 26 44 48 +2 124 13 39 44 48 +6 131 27 26 +6 132 14 39 +0 + +0101000 ++1224 0 -1228 0 * +Ve +1e-007 +-70 -0.100000000000001 10 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 59 0 -53 -43 +2 125 25 76 -53 -43 +2 126 13 39 -53 -43 +6 133 14 39 +6 134 38 76 +0 + +0101000 ++1226 0 -1222 0 * +Ve +2.19911485751285e-005 +-110 -0.100000000023911 2.99985714256553 +0 0 + +0101100 +* +Ed + 5.49778714378209e-006 1 1 0 +1 60 0 0 1 +2 127 15 77 0 1 +2 128 13 39 0 1 +6 135 29 77 +6 136 14 39 +0 + +0101000 ++1224 0 -1220 0 * +Ve +2.19911485751285e-005 +-70 -0.100000000043331 -0.000156250381607492 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 40 0 -86.5 -76.4998437496184 +2 87 24 76 -86.5 -76.4998437496184 +2 88 13 39 -86.5 -76.4998437496184 +6 137 14 39 +6 138 28 76 +0 + +0101000 ++1222 0 -1218 0 * +Ve +2.19911485751285e-005 +-107 -0.100000000000002 -0.000156250381483147 +0 0 + +0101100 +* +Ed + 5.49778714378213e-006 1 1 0 +1 61 0 0 1 +2 129 15 77 0 1 +2 130 13 39 0 1 +6 139 31 77 +6 140 14 39 +0 + +0101000 ++1216 0 -1220 0 * +Ve +2.19911485751285e-005 +-87 -0.100000000000016 -0.000156250381472489 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 62 0 1 18 +2 131 10 26 1 18 +2 132 13 39 1 18 +6 141 30 26 +6 142 14 39 +0 + +0101000 ++1218 0 -1214 0 * +Ve +2.19911485751285e-005 +-103 -0.0999999999999878 -0.000156250381472489 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 63 0 34 38 +2 133 10 26 34 38 +2 134 13 39 34 38 +6 143 33 26 +6 144 14 39 +0 + +0101000 ++1212 0 -1216 0 * +Ve +2.19911485751285e-005 +-90 -0.100000000023911 2.99985714256553 +0 0 + +0101100 +* +Ed + 5.49778714378213e-006 1 1 0 +1 64 0 0 1 +2 135 15 78 0 1 +2 136 13 39 0 1 +6 145 32 78 +6 146 14 39 +0 + +0101000 ++1214 0 -1210 0 * +Ve +2.19911485751285e-005 +-100 -0.100000000023911 2.99985714256553 +0 0 + +0101100 +* +Ed + 5.49778714378213e-006 1 1 0 +1 65 0 0 1 +2 137 15 79 0 1 +2 138 13 39 0 1 +6 147 35 79 +6 148 14 39 +0 + +0101000 ++1212 0 -1208 0 * +Ve +2.19911485751285e-005 +-93 -0.100000000000016 -0.000156250381472489 +0 0 + +0101100 +* +Ed + 5.49778714378213e-006 1 1 0 +1 66 0 0 1 +2 139 15 78 0 1 +2 140 13 39 0 1 +6 149 34 78 +6 150 14 39 +0 + +0101000 ++1206 0 -1210 0 * +Ve +2.19911485751285e-005 +-97 -0.100000000000002 -0.000156250381483147 +0 0 + +0101100 +* +Ed + 5.49778714378213e-006 1 1 0 +1 67 0 0 1 +2 141 15 79 0 1 +2 142 13 39 0 1 +6 151 37 79 +6 152 14 39 +0 + +0101000 ++1204 0 -1208 0 * +Ed + 1e-007 1 1 0 +1 68 0 24 28 +2 143 10 26 24 28 +2 144 13 39 24 28 +6 153 36 26 +6 154 14 39 +0 + +0101000 ++1206 0 -1204 0 * +Wi + +0101000 +-1304 0 -1297 0 -1245 0 +1243 0 +1241 0 -1239 0 -1237 0 -1235 0 -1233 0 +1231 0 ++1229 0 -1227 0 +1225 0 -1223 0 -1221 0 +1219 0 -1217 0 -1215 0 -1213 0 -1211 0 +-1209 0 +1207 0 +1205 0 -1203 0 -1202 0 * +Fa +0 1e-007 13 0 +2 14 +0101000 ++1201 63 * +Ed + 1e-007 1 1 0 +1 69 0 3.14504093628639 6.27973702448233 +2 145 14 0 3.14504093628639 6.27973702448233 +2 146 18 0 3.14504093628639 6.27973702448233 +6 155 15 0 +6 156 17 0 +0 + +0101100 ++1246 80 -1293 80 * +Wi + +0101000 ++1303 0 -1245 0 +1292 0 -1199 46 * +Fa +0 1e-007 14 0 +2 15 +0101000 ++1198 80 * +Ed + 1e-007 1 1 0 +1 70 0 3.1444498003349 6.2803281604339 +3 147 148CN 15 0 3.1444498003349 6.2803281604339 +2 149 26 82 3.1444498003349 6.2803281604339 +2 150 26 83 3.1444498003349 6.2803281604339 +2 151 27 82 3.1444498003349 6.2803281604339 +2 152 27 85 3.1444498003349 6.2803281604339 +2 153 28 86 3.1444498003349 6.2803281604339 +2 154 28 88 3.1444498003349 6.2803281604339 +2 155 29 86 3.1444498003349 6.2803281604339 +2 156 29 90 3.1444498003349 6.2803281604339 +2 157 30 91 3.1444498003349 6.2803281604339 +2 158 30 93 3.1444498003349 6.2803281604339 +2 159 31 94 3.1444498003349 6.2803281604339 +2 160 31 96 3.1444498003349 6.2803281604339 +2 161 32 91 3.1444498003349 6.2803281604339 +2 162 32 98 3.1444498003349 6.2803281604339 +2 163 33 94 3.1444498003349 6.2803281604339 +2 164 33 100 3.1444498003349 6.2803281604339 +2 165 34 101 3.1444498003349 6.2803281604339 +2 166 34 103 3.1444498003349 6.2803281604339 +2 167 35 101 3.1444498003349 6.2803281604339 +2 168 35 105 3.1444498003349 6.2803281604339 +6 157 16 0 +6 158 19 0 +0 + +0101100 ++1244 81 -1289 81 * +Wi + +0101000 +-1296 47 +1288 0 -1243 0 -1196 64 * +Fa +0 1e-007 15 0 +2 16 +0101000 ++1195 81 * +Ed + 1e-007 1 1 0 +1 71 0 6.28703147050754 9.42093179744213 +2 169 19 69 6.28703147050754 9.42093179744213 +2 170 18 46 6.28703147050754 9.42093179744213 +6 159 18 69 +6 160 17 46 +0 + +0101100 ++1242 0 -1291 0 * +Wi + +0101000 ++1199 46 +1241 0 +1290 0 -1193 0 * +Fa +0 1e-007 18 0 +2 17 +0101000 ++1192 80 * +Ed + 1e-007 1 1 0 +1 72 0 4.71623514371443 7.85013547064404 +2 171 20 0 4.71623514371443 7.85013547064404 +2 172 19 65 4.71623514371443 7.85013547064404 +2 173 36 107 4.71623514371443 7.85013547064404 +2 174 36 109 4.71623514371443 7.85013547064404 +2 175 37 107 4.71623514371443 7.85013547064404 +2 176 37 111 4.71623514371443 7.85013547064404 +6 161 18 65 +6 162 20 0 +0 + +0101100 ++1238 112 -1287 112 * +Wi + +0101000 ++1193 0 -1237 0 +1286 0 -1190 70 * +Fa +0 1e-007 19 0 +2 18 +0101000 ++1189 106 * +Ed + 2.19911485751285e-005 1 1 0 +1 73 0 0.000994971172125308 0.999005044942252 +2 177 10 48 0.000994971172125308 0.999005044942252 +2 178 15 58 0.000994971172125308 0.999005044942252 +2 179 38 0 0.000994971172125308 0.999005044942252 +2 180 38 113 0.000994971172125308 0.999005044942252 +2 181 39 0 0.000994971172125308 0.999005044942252 +2 182 39 115 0.000994971172125308 0.999005044942252 +6 163 19 58 +6 164 21 48 +0 + +0101000 ++1285 62 -1240 62 * +Wi + +0101000 ++1196 64 +1239 0 -1284 0 +1187 47 * +Fa +0 1e-007 15 0 +2 19 +0101000 ++1186 81 * +Ed + 1e-007 1 1 0 +1 74 0 3.14471765867682 6.28006030209195 +2 183 21 0 3.14471765867682 6.28006030209195 +2 184 20 0 3.14471765867682 6.28006030209195 +2 185 40 107 3.14471765867682 6.28006030209195 +2 186 40 111 3.14471765867682 6.28006030209195 +2 187 41 107 3.14471765867682 6.28006030209195 +2 188 41 117 3.14471765867682 6.28006030209195 +6 165 22 0 +6 166 20 0 +0 + +0101100 ++1234 112 -1283 112 * +Wi + +0101000 +-1190 70 +1233 0 +1282 0 +1184 70 * +Fa +0 1e-007 20 0 +2 20 +0101000 ++1183 112 * +Ed + 2.19911485751285e-005 1 1 0 +1 75 0 0.000994971172122092 0.999005044942252 +2 189 10 48 0.000994971172122092 0.999005044942252 +2 190 15 118 0.000994971172122092 0.999005044942252 +2 191 42 0 0.000994971172122092 0.999005044942252 +2 192 42 115 0.000994971172122092 0.999005044942252 +2 193 43 0 0.000994971172122092 0.999005044942252 +2 194 43 119 0.000994971172122092 0.999005044942252 +6 167 23 118 +6 168 21 48 +0 + +0101000 ++1281 62 -1236 62 * +Wi + +0101000 +-1187 47 -1280 0 +1235 0 +1181 47 * +Fa +0 1e-007 10 0 +2 21 +0101000 ++1180 27 * +Ed + 1e-007 1 1 0 +1 76 0 6.28631031226661 9.42165295568174 +2 195 22 120 6.28631031226661 9.42165295568174 +2 196 21 121 6.28631031226661 9.42165295568174 +2 197 44 0 6.28631031226661 9.42165295568174 +2 198 44 122 6.28631031226661 9.42165295568174 +2 199 45 0 6.28631031226661 9.42165295568174 +2 200 45 124 6.28631031226661 9.42165295568174 +6 169 22 121 +6 170 24 120 +0 + +0101100 ++1230 62 -1279 62 * +Wi + +0101000 +-1184 70 -1229 0 +1278 0 +1178 47 * +Fa +0 1e-007 21 0 +2 22 +0101000 ++1177 112 * +Ed + 1e-007 1 1 0 +1 70 0 3.1444498003349 6.2803281604339 +3 147 148CN 15 0 3.1444498003349 6.2803281604339 +2 149 26 82 3.1444498003349 6.2803281604339 +2 150 26 83 3.1444498003349 6.2803281604339 +2 151 27 82 3.1444498003349 6.2803281604339 +2 152 27 85 3.1444498003349 6.2803281604339 +2 153 28 86 3.1444498003349 6.2803281604339 +2 154 28 88 3.1444498003349 6.2803281604339 +2 155 29 86 3.1444498003349 6.2803281604339 +2 156 29 90 3.1444498003349 6.2803281604339 +2 157 30 91 3.1444498003349 6.2803281604339 +2 158 30 93 3.1444498003349 6.2803281604339 +2 159 31 94 3.1444498003349 6.2803281604339 +2 160 31 96 3.1444498003349 6.2803281604339 +2 161 32 91 3.1444498003349 6.2803281604339 +2 162 32 98 3.1444498003349 6.2803281604339 +2 163 33 94 3.1444498003349 6.2803281604339 +2 164 33 100 3.1444498003349 6.2803281604339 +2 165 34 101 3.1444498003349 6.2803281604339 +2 166 34 103 3.1444498003349 6.2803281604339 +2 167 35 101 3.1444498003349 6.2803281604339 +2 168 35 105 3.1444498003349 6.2803281604339 +6 171 23 0 +6 172 25 0 +0 + +0101100 ++1232 125 -1277 125 * +Wi + +0101000 +-1181 47 +1276 0 -1231 0 -1175 71 * +Fa +0 1e-007 15 0 +2 23 +0101000 ++1174 125 * +Ve +1e-007 +80 0 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 77 0 0 39.9 +2 201 25 0 0 39.9 +2 202 22 0 0 39.9 +6 173 24 0 +6 174 38 0 +0 + +0101000 +-1226 126 +1172 0 * +Ve +1e-007 +0 0 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 78 0 0 39.9 +2 203 23 0 0 39.9 +2 204 22 0 0 39.9 +6 175 24 0 +6 176 26 0 +0 + +0101000 +-1275 126 +1170 0 * +Ed + 1e-007 1 1 0 +1 79 0 0 80 +2 205 46 0 0 80 +2 206 22 0 0 80 +6 177 24 0 +6 178 39 0 +0 + +0101000 +-1172 0 +1170 0 * +Wi + +0101000 ++1178 47 +1225 0 +1274 0 +1171 76 -1169 76 +1168 76 * +Fa +0 1e-007 22 0 +2 24 +0101000 ++1167 126 * +Ed + 2.19911485751285e-005 1 1 0 +1 80 0 0.000994971172125231 0.999005044942252 +2 207 10 48 0.000994971172125231 0.999005044942252 +2 208 15 118 0.000994971172125231 0.999005044942252 +2 209 47 0 0.000994971172125231 0.999005044942252 +2 210 47 127 0.000994971172125231 0.999005044942252 +2 211 48 0 0.000994971172125231 0.999005044942252 +2 212 48 129 0.000994971172125231 0.999005044942252 +6 179 25 118 +6 180 27 48 +0 + +0101000 ++1273 62 -1228 62 * +Wi + +0101000 ++1175 71 +1227 0 -1272 0 +1165 47 * +Fa +0 1e-007 15 0 +2 25 +0101000 ++1164 125 * +Ve +1e-007 +0 0 10 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 81 0 0 10 +2 213 23 0 0 10 +2 214 46 0 0 10 +2 215 49 130 0 10 +2 216 49 132 0 10 +2 217 50 130 0 10 +2 218 50 134 0 10 +6 181 26 0 +6 182 39 0 +0 + +0101000 +-1162 0 +1170 0 * +Ed + 1e-007 1 1 0 +1 82 0 0 39.9 +2 219 23 0 0 39.9 +2 220 24 0 0 39.9 +6 183 26 0 +6 184 28 0 +0 + +0101000 +-1271 126 +1162 0 * +Wi + +0101000 ++1169 76 +1270 0 -1161 76 -1160 76 * +Fa +0 1e-007 23 0 +2 26 +0101000 ++1159 126 * +Ed + 2.19911485751285e-005 1 1 0 +1 83 0 0.000994971172121984 0.999005044942252 +2 221 10 48 0.000994971172121984 0.999005044942252 +2 222 15 135 0.000994971172121984 0.999005044942252 +2 223 51 0 0.000994971172121984 0.999005044942252 +2 224 51 129 0.000994971172121984 0.999005044942252 +2 225 52 0 0.000994971172121984 0.999005044942252 +2 226 52 136 0.000994971172121984 0.999005044942252 +6 185 29 135 +6 186 27 48 +0 + +0101000 ++1269 62 -1224 62 * +Wi + +0101000 +-1165 47 -1268 0 +1223 0 +1157 47 * +Fa +0 1e-007 10 0 +2 27 +0101000 ++1156 27 * +Ve +1e-007 +80 0 10 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 84 0 0 80 +2 227 46 0 0 80 +2 228 24 0 0 80 +6 187 28 0 +6 188 39 0 +0 + +0101000 +-1154 0 +1162 0 * +Ed + 1e-007 1 1 0 +1 85 0 6.28631031226661 9.42165295568174 +2 229 10 48 6.28631031226661 9.42165295568174 +2 230 24 120 6.28631031226661 9.42165295568174 +2 231 53 0 6.28631031226661 9.42165295568174 +2 232 53 138 6.28631031226661 9.42165295568174 +2 233 54 0 6.28631031226661 9.42165295568174 +2 234 54 140 6.28631031226661 9.42165295568174 +6 189 30 48 +6 190 28 120 +0 + +0101100 ++1267 62 -1218 62 * +Ed + 1e-007 1 1 0 +1 86 0 0 39.9 +2 235 25 0 0 39.9 +2 236 24 0 0 39.9 +6 191 28 0 +6 192 38 0 +0 + +0101000 +-1222 126 +1154 0 * +Wi + +0101000 +-1160 76 +1266 0 +1153 76 -1152 47 +1151 76 +1217 0 * +Fa +0 1e-007 24 0 +2 28 +0101000 ++1150 126 * +Ed + 1e-007 1 1 0 +1 70 0 3.1444498003349 6.2803281604339 +3 147 148CN 15 0 3.1444498003349 6.2803281604339 +2 149 26 82 3.1444498003349 6.2803281604339 +2 150 26 83 3.1444498003349 6.2803281604339 +2 151 27 82 3.1444498003349 6.2803281604339 +2 152 27 85 3.1444498003349 6.2803281604339 +2 153 28 86 3.1444498003349 6.2803281604339 +2 154 28 88 3.1444498003349 6.2803281604339 +2 155 29 86 3.1444498003349 6.2803281604339 +2 156 29 90 3.1444498003349 6.2803281604339 +2 157 30 91 3.1444498003349 6.2803281604339 +2 158 30 93 3.1444498003349 6.2803281604339 +2 159 31 94 3.1444498003349 6.2803281604339 +2 160 31 96 3.1444498003349 6.2803281604339 +2 161 32 91 3.1444498003349 6.2803281604339 +2 162 32 98 3.1444498003349 6.2803281604339 +2 163 33 94 3.1444498003349 6.2803281604339 +2 164 33 100 3.1444498003349 6.2803281604339 +2 165 34 101 3.1444498003349 6.2803281604339 +2 166 34 103 3.1444498003349 6.2803281604339 +2 167 35 101 3.1444498003349 6.2803281604339 +2 168 35 105 3.1444498003349 6.2803281604339 +6 193 29 0 +6 194 31 0 +0 + +0101100 ++1220 141 -1265 141 * +Wi + +0101000 +-1157 47 +1264 0 -1219 0 -1148 77 * +Fa +0 1e-007 15 0 +2 29 +0101000 ++1147 141 * +Ed + 2.19911485751285e-005 1 1 0 +1 87 0 0.00099497117212322 0.999005044942252 +2 237 10 48 0.00099497117212322 0.999005044942252 +2 238 15 142 0.00099497117212322 0.999005044942252 +2 239 55 0 0.00099497117212322 0.999005044942252 +2 240 55 140 0.00099497117212322 0.999005044942252 +2 241 56 0 0.00099497117212322 0.999005044942252 +2 242 56 143 0.00099497117212322 0.999005044942252 +6 195 32 142 +6 196 30 48 +0 + +0101000 ++1263 62 -1214 62 * +Wi + +0101000 ++1152 47 -1262 0 +1213 0 -1145 47 * +Fa +0 1e-007 10 0 +2 30 +0101000 ++1144 27 * +Ed + 2.19911485751285e-005 1 1 0 +1 88 0 0.000994971172125155 0.999005044942252 +2 243 10 48 0.000994971172125155 0.999005044942252 +2 244 15 135 0.000994971172125155 0.999005044942252 +2 245 57 0 0.000994971172125155 0.999005044942252 +2 246 57 144 0.000994971172125155 0.999005044942252 +2 247 58 0 0.000994971172125155 0.999005044942252 +2 248 58 146 0.000994971172125155 0.999005044942252 +6 197 31 135 +6 198 33 48 +0 + +0101000 ++1261 62 -1216 62 * +Wi + +0101000 ++1148 77 +1215 0 -1260 0 +1142 47 * +Fa +0 1e-007 15 0 +2 31 +0101000 ++1141 141 * +Ed + 1e-007 1 1 0 +1 70 0 3.1444498003349 6.2803281604339 +3 147 148CN 15 0 3.1444498003349 6.2803281604339 +2 149 26 82 3.1444498003349 6.2803281604339 +2 150 26 83 3.1444498003349 6.2803281604339 +2 151 27 82 3.1444498003349 6.2803281604339 +2 152 27 85 3.1444498003349 6.2803281604339 +2 153 28 86 3.1444498003349 6.2803281604339 +2 154 28 88 3.1444498003349 6.2803281604339 +2 155 29 86 3.1444498003349 6.2803281604339 +2 156 29 90 3.1444498003349 6.2803281604339 +2 157 30 91 3.1444498003349 6.2803281604339 +2 158 30 93 3.1444498003349 6.2803281604339 +2 159 31 94 3.1444498003349 6.2803281604339 +2 160 31 96 3.1444498003349 6.2803281604339 +2 161 32 91 3.1444498003349 6.2803281604339 +2 162 32 98 3.1444498003349 6.2803281604339 +2 163 33 94 3.1444498003349 6.2803281604339 +2 164 33 100 3.1444498003349 6.2803281604339 +2 165 34 101 3.1444498003349 6.2803281604339 +2 166 34 103 3.1444498003349 6.2803281604339 +2 167 35 101 3.1444498003349 6.2803281604339 +2 168 35 105 3.1444498003349 6.2803281604339 +6 199 32 0 +6 200 34 0 +0 + +0101100 ++1210 147 -1259 147 * +Wi + +0101000 ++1145 47 -1258 0 +1209 0 +1139 78 * +Fa +0 1e-007 15 0 +2 32 +0101000 ++1138 147 * +Ed + 2.19911485751285e-005 1 1 0 +1 89 0 0.000994971172121957 0.999005044942252 +2 249 10 48 0.000994971172121957 0.999005044942252 +2 250 15 148 0.000994971172121957 0.999005044942252 +2 251 59 0 0.000994971172121957 0.999005044942252 +2 252 59 146 0.000994971172121957 0.999005044942252 +2 253 60 0 0.000994971172121957 0.999005044942252 +2 254 60 149 0.000994971172121957 0.999005044942252 +6 201 35 148 +6 202 33 48 +0 + +0101000 ++1257 62 -1212 62 * +Wi + +0101000 +-1142 47 -1256 0 +1211 0 +1136 47 * +Fa +0 1e-007 10 0 +2 33 +0101000 ++1135 27 * +Ed + 2.19911485751285e-005 1 1 0 +1 90 0 0.000994971172121721 0.999005044942251 +2 255 10 48 0.000994971172121721 0.999005044942251 +2 256 15 142 0.000994971172121721 0.999005044942251 +2 257 61 0 0.000994971172121721 0.999005044942251 +2 258 61 150 0.000994971172121721 0.999005044942251 +2 259 62 0 0.000994971172121721 0.999005044942251 +2 260 62 152 0.000994971172121721 0.999005044942251 +6 203 34 142 +6 204 36 48 +0 + +0101000 ++1255 62 -1206 62 * +Wi + +0101000 +-1139 78 -1205 0 +1254 0 -1133 47 * +Fa +0 1e-007 15 0 +2 34 +0101000 ++1132 147 * +Ed + 1e-007 1 1 0 +1 70 0 3.1444498003349 6.2803281604339 +3 147 148CN 15 0 3.1444498003349 6.2803281604339 +2 149 26 82 3.1444498003349 6.2803281604339 +2 150 26 83 3.1444498003349 6.2803281604339 +2 151 27 82 3.1444498003349 6.2803281604339 +2 152 27 85 3.1444498003349 6.2803281604339 +2 153 28 86 3.1444498003349 6.2803281604339 +2 154 28 88 3.1444498003349 6.2803281604339 +2 155 29 86 3.1444498003349 6.2803281604339 +2 156 29 90 3.1444498003349 6.2803281604339 +2 157 30 91 3.1444498003349 6.2803281604339 +2 158 30 93 3.1444498003349 6.2803281604339 +2 159 31 94 3.1444498003349 6.2803281604339 +2 160 31 96 3.1444498003349 6.2803281604339 +2 161 32 91 3.1444498003349 6.2803281604339 +2 162 32 98 3.1444498003349 6.2803281604339 +2 163 33 94 3.1444498003349 6.2803281604339 +2 164 33 100 3.1444498003349 6.2803281604339 +2 165 34 101 3.1444498003349 6.2803281604339 +2 166 34 103 3.1444498003349 6.2803281604339 +2 167 35 101 3.1444498003349 6.2803281604339 +2 168 35 105 3.1444498003349 6.2803281604339 +6 205 35 0 +6 206 37 0 +0 + +0101100 ++1208 153 -1253 153 * +Wi + +0101000 +-1136 47 +1252 0 -1207 0 -1130 79 * +Fa +0 1e-007 15 0 +2 35 +0101000 ++1129 153 * +Ed + 2.19911485751285e-005 1 1 0 +1 91 0 0.000994971172125318 0.999005044942252 +2 261 10 48 0.000994971172125318 0.999005044942252 +2 262 15 148 0.000994971172125318 0.999005044942252 +2 263 63 0 0.000994971172125318 0.999005044942252 +2 264 63 152 0.000994971172125318 0.999005044942252 +2 265 64 0 0.000994971172125318 0.999005044942252 +2 266 64 154 0.000994971172125318 0.999005044942252 +6 207 37 148 +6 208 36 48 +0 + +0101000 ++1251 62 -1204 62 * +Wi + +0101000 +-1127 47 -1250 0 +1202 0 +1133 47 * +Fa +0 1e-007 10 0 +2 36 +0101000 ++1126 27 * +Wi + +0101000 ++1130 79 +1203 0 -1249 0 +1127 47 * +Fa +0 1e-007 15 0 +2 37 +0101000 ++1124 153 * +Ed + 1e-007 1 1 0 +1 92 0 0 10 +2 267 25 0 0 10 +2 268 46 0 0 10 +2 269 65 130 0 10 +2 270 65 156 0 10 +2 271 66 130 0 10 +2 272 66 134 0 10 +6 209 38 0 +6 210 39 0 +0 + +0101000 +-1154 0 +1172 0 * +Wi + +0101000 ++1171 76 +1221 0 -1122 76 -1151 76 * +Fa +0 1e-007 25 0 +2 38 +0101000 ++1121 126 * +Wi + +0101000 +-1168 0 -1122 0 +1153 0 +1161 0 * +Fa +0 1e-007 46 0 +2 39 +0101000 ++1119 0 * +Sh + +0101100 ++1301 26 +1294 26 +1247 39 +1200 39 -1197 46 +1194 64 -1191 46 -1188 69 +1185 64 +1182 70 ++1179 26 +1176 70 +1173 71 -1166 76 +1163 71 -1158 76 +1155 26 +1149 76 +1146 77 +1143 26 ++1140 77 +1137 78 +1134 26 +1131 78 +1128 79 +1125 26 +1123 79 +1120 76 -1118 76 * +So + +0100000 ++1117 0 * +Co + +0100000 ++1116 0 * +Ve +1e-007 +10 0 20 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 93 0 0 6.28318530717959 +2 273 68 0 0 6.28318530717959 +2 274 67 0 0 6.28318530717959 +2 275 69 169 0 6.28318530717959 +2 276 69 171 0 6.28318530717959 +2 277 70 169 0 6.28318530717959 +2 278 70 173 0 6.28318530717959 +2 279 71 169 0 6.28318530717959 +2 280 71 175 0 6.28318530717959 +2 281 72 169 0 6.28318530717959 +2 282 72 177 0 6.28318530717959 +6 211 41 0 +6 212 40 0 +0 + +0101100 ++1114 0 -1114 0 * +Wi + +0101000 ++1113 0 * +Ve +1e-007 +-95 0.01 -43 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 94 0 1.5707963267949 7.85398163397448 +2 283 67 168 1.5707963267949 7.85398163397448 +2 284 73 182 1.5707963267949 7.85398163397448 +6 213 42 182 +6 214 40 168 +0 + +0101100 ++1111 0 -1111 0 * +Wi + +0101000 ++1110 0 * +Fa +0 1e-007 67 0 +2 40 +0101000 ++1112 0 +1109 169 * +Ve +1e-007 +10 0 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 95 0 0 20 +3 285 286CN 68 0 0 20 +2 287 74 169 0 20 +2 288 74 173 0 20 +2 289 75 169 0 20 +2 290 75 177 0 20 +7 215 216 41 0 +0 + +0101000 +-1114 0 +1107 0 * +Ed + 1e-007 1 1 0 +1 96 0 0 6.28318530717959 +2 291 68 0 0 6.28318530717959 +2 292 76 0 0 6.28318530717959 +2 293 77 169 0 6.28318530717959 +2 294 77 173 0 6.28318530717959 +2 295 78 169 0 6.28318530717959 +2 296 78 184 0 6.28318530717959 +2 297 79 169 0 6.28318530717959 +2 298 79 177 0 6.28318530717959 +2 299 80 169 0 6.28318530717959 +2 300 80 186 0 6.28318530717959 +6 217 41 0 +6 218 43 0 +0 + +0101100 ++1107 0 -1107 0 * +Wi + +0101000 +-1113 0 +1106 0 +1105 0 -1106 0 * +Ve +1e-007 +-90.2020410280691 -2 -25 +0 0 + +0101100 +* +Ve +1e-007 +-90.2020410280691 -2 -35 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 97 0 2 12 +2 301 81 193 2 12 +2 302 68 168 2 12 +6 219 41 168 +6 220 44 193 +0 + +0101000 ++1103 0 -1102 0 * +Ve +1e-007 +-90.2020410280691 2 -25 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 98 0 1.36943840602053 1.77215424756926 +2 303 82 193 1.36943840602053 1.77215424756926 +2 304 68 168 1.36943840602053 1.77215424756926 +6 221 41 168 +6 222 45 193 +0 + +0101100 ++1100 0 -1103 0 * +Ve +1e-007 +-90.2020410280691 2 -35 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 99 0 1.36943840602053 1.77215424756926 +2 305 83 193 1.36943840602053 1.77215424756926 +2 306 68 168 1.36943840602053 1.77215424756926 +6 223 41 168 +6 224 46 193 +0 + +0101100 ++1098 0 -1102 0 * +Ed + 1e-007 1 1 0 +1 100 0 2 12 +2 307 84 193 2 12 +2 308 68 168 2 12 +6 225 41 168 +6 226 47 193 +0 + +0101000 ++1100 0 -1098 0 * +Wi + +0101000 +-1101 0 -1099 0 +1097 0 +1096 0 * +Fa +0 1e-007 68 0 +2 41 +0101000 ++1104 0 +1095 169 * +Ve +1e-007 +-95 0.01 -23 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 101 0 19 39 +3 309 310CN 73 0 19 39 +7 227 228 42 0 +0 + +0101000 ++1111 194 -1093 194 * +Ed + 1e-007 1 1 0 +1 102 0 1.5707963267949 7.85398163397448 +2 311 76 168 1.5707963267949 7.85398163397448 +2 312 73 182 1.5707963267949 7.85398163397448 +6 229 42 182 +6 230 43 168 +0 + +0101100 ++1093 0 -1093 0 * +Wi + +0101000 ++1092 182 +1110 0 -1091 0 -1092 182 * +Fa +0 1e-007 73 0 +2 42 +0101000 ++1090 194 * +Wi + +0101000 +-1105 0 * +Wi + +0101000 ++1091 0 * +Fa +0 1e-007 76 0 +2 43 +0101000 +-1088 0 +1087 169 * +Ve +1e-007 +10.183346173608 -2 -35 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 103 0 0.297958971930918 100.683346173608 +2 313 81 0 0.297958971930918 100.683346173608 +2 314 83 0 0.297958971930918 100.683346173608 +6 231 44 0 +6 232 46 0 +0 + +0101000 ++1102 195 -1085 195 * +Ve +1e-007 +10.4169947557416 -2 -35 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 104 0 0 1 +2 315 85 0 0 1 +2 316 81 193 0 1 +4 G1 85 0 81 193 +6 233 48 0 +6 234 44 193 +0 + +0101000 ++1083 0 -1085 0 * +Ve +1e-007 +10.183346173608 -2 -25 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 105 0 0.297958971930918 100.683346173608 +2 317 81 0 0.297958971930918 100.683346173608 +2 318 82 0 0.297958971930918 100.683346173608 +6 235 44 0 +6 236 45 0 +0 + +0101000 ++1103 195 -1081 195 * +Ve +1e-007 +10.4169947557416 -2 -25 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 106 0 0 10 +2 319 86 0 0 10 +2 320 81 193 0 10 +4 G1 86 0 81 193 +6 237 49 0 +6 238 44 193 +0 + +0101000 ++1083 0 -1079 0 * +Ed + 1e-007 1 1 0 +1 107 0 0 1 +2 321 87 0 0 1 +2 322 81 193 0 1 +4 G1 87 0 81 193 +6 239 50 0 +6 240 44 193 +0 + +0101000 ++1079 0 -1081 0 * +Wi + +0101000 +-1084 193 -1101 0 +1082 0 +1080 193 -1078 0 -1077 0 * +Fa +0 1e-007 81 0 +2 44 +0101000 ++1076 195 * +Ve +1e-007 +10.183346173608 2 -25 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 108 0 0.018522783780353 0.384193057766171 +2 323 88 0 0.018522783780353 0.384193057766171 +2 324 82 193 0.018522783780353 0.384193057766171 +4 G1 88 0 82 193 +6 241 51 0 +6 242 45 193 +0 + +0101100 ++1074 0 -1081 0 * +Ed + 1e-007 1 1 0 +1 109 0 0.297958971930918 100.683346173608 +2 325 84 0 0.297958971930918 100.683346173608 +2 326 82 0 0.297958971930918 100.683346173608 +6 243 45 0 +6 244 47 0 +0 + +0101000 ++1100 195 -1074 195 * +Wi + +0101000 ++1080 193 +1099 0 -1073 0 -1072 193 * +Fa +0 1e-007 82 0 +2 45 +0101000 ++1071 195 * +Ve +1e-007 +10.183346173608 2 -35 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 110 0 0.018522783780353 0.384193057766171 +2 327 89 0 0.018522783780353 0.384193057766171 +2 328 83 193 0.018522783780353 0.384193057766171 +4 G1 89 0 83 193 +6 245 52 0 +6 246 46 193 +0 + +0101100 ++1069 0 -1085 0 * +Ed + 1e-007 1 1 0 +1 111 0 0.297958971930918 100.683346173608 +2 329 84 0 0.297958971930918 100.683346173608 +2 330 83 0 0.297958971930918 100.683346173608 +6 247 46 0 +6 248 47 0 +0 + +0101000 ++1098 195 -1069 195 * +Wi + +0101000 ++1084 193 +1097 0 -1068 0 -1067 193 * +Fa +0 1e-007 83 0 +2 46 +0101000 ++1066 195 * +Ve +1e-007 +10.4169947557416 2 -35 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 112 0 0 1 +2 331 90 0 0 1 +2 332 84 193 0 1 +4 G1 90 0 84 193 +6 249 53 0 +6 250 47 193 +0 + +0101000 ++1064 0 -1069 0 * +Ve +1e-007 +10.4169947557416 2 -25 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 113 0 0 10 +2 333 91 0 0 10 +2 334 84 193 0 10 +4 G1 91 0 84 193 +6 251 54 0 +6 252 47 193 +0 + +0101000 ++1064 0 -1062 0 * +Ed + 1e-007 1 1 0 +1 114 0 0 1 +2 335 92 0 0 1 +2 336 84 193 0 1 +4 G1 92 0 84 193 +6 253 55 0 +6 254 47 193 +0 + +0101000 ++1062 0 -1074 0 * +Wi + +0101000 +-1067 193 -1096 0 +1063 0 +1072 193 -1061 0 -1060 0 * +Fa +0 1e-007 84 0 +2 47 +0101000 ++1059 195 * +Ve +1e-007 +11.3790861415833 -2.72727272727273 -35 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 115 0 0 1 +2 337 86 0 0 1 +2 338 85 0 0 1 +4 G1 85 0 86 0 +6 255 48 0 +6 256 49 0 +0 + +0101000 ++1057 0 -1083 0 * +Ve +1e-007 +11.1666783396437 -1.81818181818182 -36 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 116 0 0 1 +2 339 85 0 0 1 +2 340 93 196 0 1 +4 G1 85 0 93 196 +6 257 48 0 +6 258 56 196 +0 + +0101000 ++1057 0 -1055 0 * +Ed + 1e-007 1 1 0 +1 117 0 0 1 +2 341 89 0 0 1 +2 342 85 0 0 1 +4 G1 85 0 89 0 +6 259 48 0 +6 260 52 0 +0 + +0101000 ++1055 0 -1085 0 * +Wi + +0101000 ++1056 0 -1054 0 +1082 0 -1053 0 * +Fa +0 1.18144689289275e-009 85 0 +2 48 +0101000 ++1052 0 * +Ve +1e-007 +11.3790861415833 -2.72727272727273 -25 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 118 0 0 10 +2 343 86 0 0 10 +2 344 93 196 0 10 +4 G1 86 0 93 196 +6 261 49 0 +6 262 56 196 +0 + +0101000 ++1057 0 -1050 0 * +Ed + 1e-007 1 1 0 +1 119 0 0 1 +2 345 86 0 0 1 +2 346 87 0 0 1 +4 G1 87 0 86 0 +6 263 50 0 +6 264 49 0 +0 + +0101000 ++1050 0 -1079 0 * +Wi + +0101000 ++1056 0 -1049 0 +1078 0 -1048 0 * +Fa +0 0 86 0 +2 49 +0101000 ++1047 0 * +Ve +1e-007 +11.1666783396437 -1.81818181818182 -24 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 120 0 0 1 +2 347 87 0 0 1 +2 348 93 196 0 1 +4 G1 87 0 93 196 +6 265 50 0 +6 266 56 196 +0 + +0101000 ++1050 0 -1045 0 * +Ed + 1e-007 1 1 0 +1 121 0 0 1 +2 349 88 0 0 1 +2 350 87 0 0 1 +4 G1 87 0 88 0 +6 267 50 0 +6 268 51 0 +0 + +0101000 ++1045 0 -1081 0 * +Wi + +0101000 ++1048 0 -1044 0 +1077 0 -1043 0 * +Fa +0 1.27641902646865e-009 87 0 +2 50 +0101000 ++1042 0 * +Ve +1e-007 +11.1666783396437 1.81818181818182 -24 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 122 0 0 1 +2 351 88 0 0 1 +2 352 92 0 0 1 +4 G1 92 0 88 0 +6 269 55 0 +6 270 51 0 +0 + +0101000 ++1040 0 -1074 0 * +Ed + 1e-007 1 1 0 +1 123 0 0.018522783780353 0.384193057766171 +2 353 88 0 0.018522783780353 0.384193057766171 +2 354 93 196 0.018522783780353 0.384193057766171 +4 G1 88 0 93 196 +6 271 51 0 +6 272 56 196 +0 + +0101100 ++1040 0 -1045 0 * +Wi + +0101000 +-1039 0 +1038 0 -1073 0 +1043 0 * +Fa +0 0 88 0 +2 51 +0101000 ++1037 0 * +Ve +1e-007 +11.1666783396437 1.81818181818182 -36 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 124 0 0 1 +2 355 89 0 0 1 +2 356 90 0 0 1 +4 G1 90 0 89 0 +6 273 53 0 +6 274 52 0 +0 + +0101000 ++1035 0 -1069 0 * +Ed + 1e-007 1 1 0 +1 125 0 0.018522783780353 0.384193057766171 +2 357 89 0 0.018522783780353 0.384193057766171 +2 358 93 196 0.018522783780353 0.384193057766171 +4 G1 89 0 93 196 +6 275 52 0 +6 276 56 196 +0 + +0101100 ++1035 0 -1055 0 * +Wi + +0101000 +-1034 0 +1033 0 -1068 0 +1053 0 * +Fa +0 0 89 0 +2 52 +0101000 ++1032 0 * +Ve +1e-007 +11.3790861415833 2.72727272727273 -35 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 126 0 0 1 +2 359 91 0 0 1 +2 360 90 0 0 1 +4 G1 90 0 91 0 +6 277 53 0 +6 278 54 0 +0 + +0101000 ++1030 0 -1064 0 * +Ed + 1e-007 1 1 0 +1 127 0 0 1 +2 361 90 0 0 1 +2 362 93 196 0 1 +4 G1 90 0 93 196 +6 279 53 0 +6 280 56 196 +0 + +0101000 ++1030 0 -1035 0 * +Wi + +0101000 ++1029 0 -1028 0 +1063 0 -1034 0 * +Fa +0 1.2174219971416e-009 90 0 +2 53 +0101000 ++1027 0 * +Ve +1e-007 +11.3790861415833 2.72727272727273 -25 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 128 0 0 10 +2 363 91 0 0 10 +2 364 93 196 0 10 +4 G1 91 0 93 196 +6 281 54 0 +6 282 56 196 +0 + +0101000 ++1030 0 -1025 0 * +Ed + 1e-007 1 1 0 +1 129 0 0 1 +2 365 91 0 0 1 +2 366 92 0 0 1 +4 G1 92 0 91 0 +6 283 55 0 +6 284 54 0 +0 + +0101000 ++1025 0 -1062 0 * +Wi + +0101000 ++1029 0 -1024 0 +1061 0 -1023 0 * +Fa +0 0 91 0 +2 54 +0101000 ++1022 0 * +Ed + 1e-007 1 1 0 +1 130 0 0 1 +2 367 92 0 0 1 +2 368 93 196 0 1 +4 G1 92 0 93 196 +6 285 55 0 +6 286 56 196 +0 + +0101000 ++1025 0 -1040 0 * +Wi + +0101000 ++1023 0 -1020 0 +1060 0 -1039 0 * +Fa +0 1.27639985233662e-009 92 0 +2 55 +0101000 ++1019 0 * +Wi + +0101000 +-1049 0 +1054 0 -1044 0 -1033 0 +1038 0 -1028 0 +1020 0 +1024 0 * +Ve +1e-007 +10 0 22.5 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 131 0 0 6.28318530717959 +2 369 93 0 0 6.28318530717959 +2 370 94 0 0 6.28318530717959 +6 287 56 0 +6 288 57 0 +0 + +0101100 ++1016 0 -1016 0 * +Ve +1e-007 +10 0 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 132 0 0 22.5 +3 371 372CN 93 0 0 22.5 +7 289 290 56 0 +0 + +0101000 +-1016 0 +1014 0 * +Ed + 1e-007 1 1 0 +1 133 0 0 6.28318530717959 +2 373 93 0 0 6.28318530717959 +2 374 95 0 0 6.28318530717959 +6 291 56 0 +6 292 58 0 +0 + +0101100 ++1014 0 -1014 0 * +Wi + +0101000 +-1015 0 +1013 0 +1012 0 -1013 0 * +Fa +0 1e-007 93 0 +2 56 +0101000 ++1017 197 +1011 0 * +Wi + +0101000 ++1015 0 * +Ve +1e-007 +29 0 -15 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 134 0 1.5707963267949 7.85398163397448 +2 375 94 196 1.5707963267949 7.85398163397448 +2 376 96 202 1.5707963267949 7.85398163397448 +6 293 59 202 +6 294 57 196 +0 + +0101100 ++1008 0 -1008 0 * +Wi + +0101000 +-1007 0 * +Fa +0 1e-007 94 0 +2 57 +0101000 ++1009 0 +1006 197 * +Wi + +0101000 +-1012 0 * +Ve +1e-007 +29 0 -37.5 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 135 0 1.5707963267949 7.85398163397448 +2 377 95 196 1.5707963267949 7.85398163397448 +2 378 96 202 1.5707963267949 7.85398163397448 +6 295 59 202 +6 296 58 196 +0 + +0101100 ++1003 0 -1003 0 * +Wi + +0101000 +-1002 0 * +Fa +0 1e-007 95 0 +2 58 +0101000 +-1004 0 +1001 197 * +Ed + 1e-007 1 1 0 +1 136 0 0.500999999999998 23.001 +3 379 380CN 96 0 0.500999999999998 23.001 +7 297 298 59 0 +0 + +0101000 ++1003 203 -1008 203 * +Wi + +0101000 ++999 202 +1002 0 -1007 0 -999 202 * +Fa +0 1e-007 96 0 +2 59 +0101000 ++998 203 * +Sh + +0101100 ++1108 168 +1094 168 -1089 182 -1086 168 -1075 193 +1070 193 -1065 193 +1058 193 +1051 0 -1046 0 +-1041 0 -1036 0 +1031 0 -1026 0 +1021 0 +1018 0 +1010 196 +1005 196 -1000 196 -997 202 +* +So + +0100000 ++996 0 * +Co + +0100000 ++995 0 * +Ve +1e-007 +-19.9997499984374 -0.100000000022452 94 +0 0 + +0101100 +* +Ve +1e-007 +19.9997499984373 -0.100000000038794 94 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 137 0 3.14659267442448 6.27818528634408 +2 381 98 0 3.14659267442448 6.27818528634408 +2 382 97 0 3.14659267442448 6.27818528634408 +6 299 61 0 +6 300 60 0 +0 + +0101100 ++993 207 -992 207 * +Ve +1e-007 +-13.9996428525872 -0.100000000021063 94 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 138 0 -11.0003571474128 -5.00025000156263 +2 383 97 206 -11.0003571474128 -5.00025000156263 +2 384 99 208 -11.0003571474128 -5.00025000156263 +6 301 60 206 +6 302 62 208 +0 + +0101000 ++990 0 -993 0 * +Ve +1e-007 +13.9996428525871 -0.10000000003407 94 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 138 0 -44.9997499984373 -38.9996428525871 +2 383 97 206 -44.9997499984373 -38.9996428525871 +2 384 99 208 -44.9997499984373 -38.9996428525871 +6 303 60 206 +6 304 63 208 +0 + +0101000 ++992 0 -988 0 * +Ed + 1e-007 1 1 0 +1 139 0 4.71953189826903 7.84683871608922 +2 385 97 206 4.71953189826903 7.84683871608922 +2 386 100 212 4.71953189826903 7.84683871608922 +6 305 64 212 +6 306 60 206 +0 + +0101100 ++990 0 -988 0 * +Wi + +0101000 ++991 206 +989 0 +987 0 -986 0 * +Fa +0 1e-007 97 0 +2 60 +0101000 ++985 207 * +Ve +1e-007 +-19.9997499984374 -0.100000000022452 74 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 140 0 0 20 +2 387 98 206 0 20 +2 388 99 208 0 20 +6 307 61 206 +6 308 62 208 +0 + +0101000 ++983 0 -993 0 * +Ve +1e-007 +19.9997499984373 -0.100000000038794 74 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 141 0 0 20 +2 389 98 206 0 20 +2 390 99 208 0 20 +6 309 61 206 +6 310 63 208 +0 + +0101000 ++981 0 -992 0 * +Ed + 1e-007 1 1 0 +1 142 0 3.14659267442448 6.27818528634408 +2 391 98 0 3.14659267442448 6.27818528634408 +2 392 101 0 3.14659267442448 6.27818528634408 +6 311 61 0 +6 312 65 0 +0 + +0101100 ++983 207 -981 207 * +Wi + +0101000 +-991 206 -982 0 +980 0 +979 206 * +Fa +0 1e-007 98 0 +2 61 +0101000 ++978 207 * +Ve +1e-007 +-13.9996428525872 -0.100000000021063 74 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 143 0 9.09999999999999 29.1 +2 393 100 212 9.09999999999999 29.1 +2 394 99 208 9.09999999999999 29.1 +6 313 64 212 +6 314 62 208 +0 + +0101000 ++976 0 -990 0 * +Ed + 1e-007 1 1 0 +1 144 0 -11.0003571474128 -5.00025000156263 +2 395 101 206 -11.0003571474128 -5.00025000156263 +2 396 99 208 -11.0003571474128 -5.00025000156263 +6 315 62 208 +6 316 65 206 +0 + +0101000 ++976 0 -983 0 * +Wi + +0101000 +-989 0 -975 0 +982 0 +974 0 * +Fa +0 1e-007 99 0 +2 62 +0101000 ++973 213 * +Ve +1e-007 +13.9996428525871 -0.10000000003407 74 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 145 0 9.09999999999999 29.1 +2 397 100 212 9.09999999999999 29.1 +2 398 99 208 9.09999999999999 29.1 +6 317 64 212 +6 318 63 208 +0 + +0101000 ++971 0 -988 0 * +Ed + 1e-007 1 1 0 +1 144 0 -44.9997499984373 -38.9996428525871 +2 395 101 206 -44.9997499984373 -38.9996428525871 +2 396 99 208 -44.9997499984373 -38.9996428525871 +6 319 63 208 +6 320 65 206 +0 + +0101000 ++981 0 -971 0 * +Wi + +0101000 +-987 0 -980 0 +970 0 +969 0 * +Fa +0 1e-007 99 0 +2 63 +0101000 ++968 213 * +Ed + 1e-007 1 1 0 +1 146 0 4.71953189826903 7.84683871608922 +2 399 101 206 4.71953189826903 7.84683871608922 +2 400 100 212 4.71953189826903 7.84683871608922 +6 321 64 212 +6 322 65 206 +0 + +0101100 ++976 0 -971 0 * +Wi + +0101000 +-986 0 -975 0 +970 0 +966 0 * +Fa +0 1e-007 100 0 +2 64 +0101000 ++965 214 * +Wi + +0101000 ++979 206 +974 0 +969 0 -966 0 * +Fa +0 1e-007 101 0 +2 65 +0101000 ++963 207 * +Sh + +0101100 ++984 206 +977 206 +972 208 +967 208 -964 212 -962 206 * +So + +0100000 ++961 0 * +Co + +0100000 ++960 0 * +Ve +1e-007 +0 90 4 +0 0 + +0101100 +* +Ve +1e-007 +0 0 4 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 147 0 0 90 +2 401 103 0 0 90 +2 402 102 0 0 90 +6 323 66 0 +6 324 67 0 +0 + +0101000 +-958 0 +957 0 * +Ve +1e-007 +100 90 4 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 148 0 0 100 +2 403 104 0 0 100 +2 404 102 0 0 100 +6 325 66 0 +6 326 68 0 +0 + +0101000 +-955 0 +958 0 * +Ve +1e-007 +100 0 4 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 149 0 0 90 +2 405 105 0 0 90 +2 406 102 0 0 90 +6 327 66 0 +6 328 69 0 +0 + +0101000 +-955 0 +953 0 * +Ed + 1e-007 1 1 0 +1 150 0 0 100 +2 407 106 0 0 100 +2 408 102 0 0 100 +6 329 66 0 +6 330 70 0 +0 + +0101000 +-953 0 +957 0 * +Wi + +0101000 +-956 0 -954 0 +952 0 +951 0 * +Ve +1e-007 +-40 -38 -70 +0 0 + +0101100 +* +Ve +1e-007 +-40 38 -70 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 151 0 3.5 79.5 +2 409 102 220 3.5 79.5 +2 410 107 224 3.5 79.5 +6 331 66 220 +6 332 71 224 +0 + +0101000 ++949 0 -948 0 * +Ve +1e-007 +40 -38 -70 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 152 0 -86 -6 +2 411 102 220 -86 -6 +2 412 108 224 -86 -6 +6 333 66 220 +6 334 72 224 +0 + +0101000 ++946 0 -949 0 * +Ve +1e-007 +40 38 -70 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 153 0 -86 -6 +2 413 102 220 -86 -6 +2 414 109 224 -86 -6 +6 335 66 220 +6 336 73 224 +0 + +0101000 ++944 0 -948 0 * +Ed + 1e-007 1 1 0 +1 154 0 3.5 79.5 +2 415 102 220 3.5 79.5 +2 416 110 224 3.5 79.5 +6 337 66 220 +6 338 74 224 +0 + +0101000 ++946 0 -944 0 * +Wi + +0101000 ++947 0 +945 0 -943 0 -942 0 * +Fa +0 1e-007 102 0 +2 66 +0101000 ++950 0 +941 221 * +Ve +1e-007 +0 0 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 155 0 0 4 +2 417 103 0 0 4 +2 418 106 0 0 4 +6 339 67 0 +6 340 70 0 +0 + +0101000 +-957 0 +939 0 * +Ve +1e-007 +0 90 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 156 0 0 4 +2 419 103 0 0 4 +2 420 104 0 0 4 +6 341 67 0 +6 342 68 0 +0 + +0101000 +-958 0 +937 0 * +Ed + 1e-007 1 1 0 +1 157 0 0 90 +2 421 103 0 0 90 +2 422 111 0 0 90 +6 343 67 0 +6 344 75 0 +0 + +0101000 +-937 0 +939 0 * +Wi + +0101000 +-938 0 -956 0 +936 0 +935 0 * +Fa +0 1e-007 103 0 +2 67 +0101000 ++934 0 * +Ve +1e-007 +100 90 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 158 0 0 100 +2 423 104 0 0 100 +2 424 111 0 0 100 +6 345 68 0 +6 346 75 0 +0 + +0101000 +-932 0 +937 0 * +Ed + 1e-007 1 1 0 +1 159 0 0 4 +2 425 105 0 0 4 +2 426 104 0 0 4 +6 347 68 0 +6 348 69 0 +0 + +0101000 +-955 0 +932 0 * +Wi + +0101000 +-931 0 -930 0 +954 0 +936 0 * +Fa +0 1e-007 104 0 +2 68 +0101000 ++929 0 * +Ve +1e-007 +100 0 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 160 0 0 4 +2 427 105 0 0 4 +2 428 106 0 0 4 +6 349 69 0 +6 350 70 0 +0 + +0101000 +-953 0 +927 0 * +Ed + 1e-007 1 1 0 +1 161 0 0 90 +2 429 105 0 0 90 +2 430 111 0 0 90 +6 351 69 0 +6 352 75 0 +0 + +0101000 +-932 0 +927 0 * +Wi + +0101000 +-926 0 -952 0 +930 0 +925 0 * +Fa +0 1e-007 105 0 +2 69 +0101000 ++924 0 * +Ed + 1e-007 1 1 0 +1 162 0 0 100 +2 431 106 0 0 100 +2 432 111 0 0 100 +6 353 70 0 +6 354 75 0 +0 + +0101000 +-927 0 +939 0 * +Wi + +0101000 +-922 0 -926 0 +951 0 +938 0 * +Fa +0 1e-007 106 0 +2 70 +0101000 ++921 0 * +Ve +1e-007 +0 0 6 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 163 0 3 6 +2 433 107 0 3 6 +2 434 108 0 3 6 +6 355 71 0 +6 356 72 0 +0 + +0101000 ++949 225 -919 0 * +Ve +1e-007 +0 76 6 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 164 0 0 76 +2 435 107 0 0 76 +2 436 112 0 0 76 +6 357 71 0 +6 358 76 0 +0 + +0101000 +-917 0 +919 0 * +Ed + 1e-007 1 1 0 +1 165 0 3 6 +2 437 107 0 3 6 +2 438 109 0 3 6 +6 359 71 0 +6 360 73 0 +0 + +0101000 ++948 225 -917 0 * +Wi + +0101000 +-918 224 +947 0 -916 224 +915 224 * +Fa +0 1e-007 107 0 +2 71 +0101000 ++914 225 * +Ve +1e-007 +80 0 6 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 166 0 3 6 +2 439 110 0 3 6 +2 440 108 0 3 6 +6 361 72 0 +6 362 74 0 +0 + +0101000 ++946 225 -912 0 * +Ed + 1e-007 1 1 0 +1 167 0 0 80 +2 441 108 0 0 80 +2 442 112 0 0 80 +6 363 72 0 +6 364 76 0 +0 + +0101000 +-912 0 +919 0 * +Wi + +0101000 +-911 224 +945 0 +910 224 +918 224 * +Fa +0 1e-007 108 0 +2 72 +0101000 ++909 225 * +Ve +1e-007 +80 76 6 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 168 0 3 6 +2 443 110 0 3 6 +2 444 109 0 3 6 +6 365 73 0 +6 366 74 0 +0 + +0101000 ++944 225 -907 0 * +Ed + 1e-007 1 1 0 +1 169 0 0 80 +2 445 109 0 0 80 +2 446 112 0 0 80 +6 367 73 0 +6 368 76 0 +0 + +0101000 +-907 0 +917 0 * +Wi + +0101000 +-906 224 +943 0 +905 224 +915 224 * +Fa +0 1e-007 109 0 +2 73 +0101000 ++904 225 * +Ed + 1e-007 1 1 0 +1 170 0 0 76 +2 447 110 0 0 76 +2 448 112 0 0 76 +6 369 74 0 +6 370 76 0 +0 + +0101000 +-907 0 +912 0 * +Wi + +0101000 +-911 224 +942 0 -902 224 +906 224 * +Fa +0 1e-007 110 0 +2 74 +0101000 ++901 225 * +Wi + +0101000 +-935 0 -931 0 +925 0 +922 0 * +Fa +0 1e-007 111 0 +2 75 +0101000 ++899 0 * +Wi + +0101000 +-916 0 -905 0 +902 0 +910 0 * +Fa +0 1e-007 112 0 +2 76 +0101000 ++897 0 * +Sh + +0101100 ++940 220 -933 220 +928 220 +923 220 -920 220 -913 224 -908 224 +903 224 +900 224 -898 220 ++896 224 * +So + +0100000 ++895 0 * +Co + +0100000 ++894 0 * +Ve +1e-007 +41.5000000000007 -3.9686269665968 21 +0 0 + +0101100 +* +Ve +1e-007 +4 0 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 171 0 0 1.44546849562665 +2 449 113 0 0 1.44546849562665 +2 450 114 0 0 1.44546849562665 +6 371 77 0 +6 372 78 0 +0 + +0101100 +-892 238 +891 0 * +Ve +1e-007 +41.5 -3.96862696659689 19.1 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 172 0 0 1.9 +2 451 113 237 0 1.9 +2 452 115 242 0 1.9 +6 373 77 237 +6 374 79 242 +0 + +0101000 ++892 0 -889 0 * +Ve +1e-007 +4 0 4 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 173 0 0 4 +3 453 454CN 113 0 0 4 +7 375 376 77 0 +0 + +0101000 +-887 0 +891 0 * +Ve +1e-007 +40.5 -3.96862696659689 19.1 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 174 0 3.01626482242173 3.26692048475786 +2 455 113 237 3.01626482242173 3.26692048475786 +2 456 116 242 3.01626482242173 3.26692048475786 +6 377 77 237 +6 378 80 242 +0 + +0101100 ++889 0 -885 0 * +Ed + 1e-007 1 1 0 +1 175 0 0 6.28318530717959 +2 457 113 0 0 6.28318530717959 +2 458 117 0 0 6.28318530717959 +6 379 77 0 +6 380 81 0 +0 + +0101100 ++887 0 -887 0 * +Ve +1e-007 +40.4999999999993 -3.9686269665968 21 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 176 0 0 1.9 +2 459 113 237 0 1.9 +2 460 118 242 0 1.9 +6 381 77 237 +6 382 82 242 +0 + +0101000 ++882 0 -885 0 * +Ve +1e-007 +40.5000000000085 3.96862696659796 21 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 171 0 1.69612415796314 4.58706114921877 +2 449 113 0 1.69612415796314 4.58706114921877 +2 450 114 0 1.69612415796314 4.58706114921877 +6 383 77 0 +6 384 83 0 +0 + +0101100 ++882 238 -880 238 * +Ve +1e-007 +41.4999999999915 3.96862696659796 21 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 171 0 4.8377168115506 6.28318530717959 +2 449 113 0 4.8377168115506 6.28318530717959 +2 450 114 0 4.8377168115506 6.28318530717959 +6 385 77 0 +6 386 78 0 +0 + +0101100 ++878 238 -891 0 * +Ve +1e-007 +40.5 3.96862696659689 19.1 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 177 0 0 1.9 +2 461 113 237 0 1.9 +2 462 118 242 0 1.9 +6 387 77 237 +6 388 82 242 +0 + +0101000 ++880 0 -876 0 * +Ve +1e-007 +41.5 3.96862696659689 19.1 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 178 0 0 1.9 +2 463 113 237 0 1.9 +2 464 115 242 0 1.9 +6 389 77 237 +6 390 79 242 +0 + +0101000 ++878 0 -874 0 * +Ed + 1e-007 1 1 0 +1 174 0 6.15785747601152 6.40851313834765 +2 465 113 237 6.15785747601152 6.40851313834765 +2 456 116 242 6.15785747601152 6.40851313834765 +6 391 77 237 +6 392 80 242 +0 + +0101100 ++876 0 -874 0 * +Wi + +0101000 ++890 237 +888 0 -886 237 +884 0 -883 237 -881 0 +886 237 +879 237 +877 237 +875 0 +-873 0 +872 0 * +Fa +0 1e-007 113 0 +2 77 +0101000 ++871 238 * +Ed + 1e-007 1 1 0 +1 179 0 -6.46862696659796 1.4686269665968 +2 466 114 237 -6.46862696659796 1.4686269665968 +2 467 115 242 -6.46862696659796 1.4686269665968 +6 393 78 237 +6 394 79 242 +0 + +0101000 ++878 0 -892 0 * +Wi + +0101000 ++890 237 -869 0 +877 237 * +Fa +0 1e-007 114 0 +2 78 +0101000 ++868 238 * +Ed + 1e-007 1 1 0 +1 180 0 1.03137303340311 8.96862696659689 +2 468 115 0 1.03137303340311 8.96862696659689 +2 469 116 0 1.03137303340311 8.96862696659689 +6 395 79 0 +6 396 80 0 +0 + +0101000 ++889 243 -874 243 * +Wi + +0101000 ++866 242 +888 0 -873 0 +869 0 * +Fa +0 1e-007 115 0 +2 79 +0101000 ++865 243 * +Ed + 1e-007 1 1 0 +1 181 0 1.03137303340311 8.96862696659689 +2 470 118 0 1.03137303340311 8.96862696659689 +2 471 116 0 1.03137303340311 8.96862696659689 +6 397 80 0 +6 398 82 0 +0 + +0101000 ++885 243 -876 243 * +Wi + +0101000 +-863 242 -884 0 -872 0 +866 242 * +Fa +0 1e-007 116 0 +2 80 +0101000 ++862 243 * +Wi + +0101000 ++883 0 * +Ve +1e-007 +2 0 4 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 182 0 1.5707963267949 7.85398163397448 +2 472 117 0 1.5707963267949 7.85398163397448 +2 473 119 244 1.5707963267949 7.85398163397448 +6 399 84 244 +6 400 81 0 +0 + +0101100 ++859 0 -859 0 * +Wi + +0101000 +-858 0 * +Fa +0 1e-007 117 0 +2 81 +0101000 ++860 0 +857 0 * +Ed + 1e-007 1 1 0 +1 183 0 -6.46862696659796 1.4686269665968 +2 474 114 237 -6.46862696659796 1.4686269665968 +2 475 118 242 -6.46862696659796 1.4686269665968 +6 401 82 242 +6 402 83 237 +0 + +0101000 ++880 0 -882 0 * +Wi + +0101000 ++863 242 +881 0 -875 0 +855 0 * +Fa +0 1e-007 118 0 +2 82 +0101000 ++854 243 * +Wi + +0101000 ++879 237 +855 0 * +Fa +0 1e-007 114 0 +2 83 +0101000 ++852 238 * +Ve +1e-007 +2 0 18 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 184 0 2 18 +3 476 477CN 119 0 2 18 +7 403 404 84 0 +0 + +0101000 ++859 246 -850 0 * +Ed + 1e-007 1 1 0 +1 185 0 0 6.28318530717959 +2 478 119 0 0 6.28318530717959 +2 479 120 0 0 6.28318530717959 +6 405 84 0 +6 406 85 0 +0 + +0101100 ++850 0 -850 0 * +Wi + +0101000 ++849 244 +858 0 -848 244 -849 244 * +Fa +0 1e-007 119 0 +2 84 +0101000 ++847 246 * +Wi + +0101000 ++848 0 * +Fa +0 1e-007 120 0 +2 85 +0101000 ++845 0 * +Sh + +0101100 ++870 237 -867 237 -864 242 +861 242 +856 237 +853 242 -851 237 +846 245 +844 245 * +So + +0100000 ++843 0 * +Co + +0100000 ++842 0 * +Ve +1e-007 +26 0 15 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 186 0 0 6.28318530717959 +2 480 122 0 0 6.28318530717959 +2 481 121 0 0 6.28318530717959 +6 407 87 0 +6 408 86 0 +0 + +0101100 ++840 0 -840 0 * +Wi + +0101000 ++839 0 * +Ve +1e-007 +16 0 15 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 187 0 1.5707963267949 7.85398163397448 +2 482 121 0 1.5707963267949 7.85398163397448 +2 483 123 252 1.5707963267949 7.85398163397448 +6 409 88 252 +6 410 86 0 +0 + +0101100 ++837 0 -837 0 * +Wi + +0101000 +-836 0 * +Fa +0 1e-007 121 0 +2 86 +0101000 ++838 0 +835 0 * +Ve +1e-007 +26 0 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 188 0 0 15 +3 484 485CN 122 0 0 15 +7 411 412 87 0 +0 + +0101000 +-840 0 +833 0 * +Ed + 1e-007 1 1 0 +1 189 0 0 6.28318530717959 +2 486 122 0 0 6.28318530717959 +2 487 124 0 0 6.28318530717959 +6 413 87 0 +6 414 89 0 +0 + +0101100 ++833 0 -833 0 * +Wi + +0101000 +-839 0 +832 0 +831 0 -832 0 * +Fa +0 1e-007 122 0 +2 87 +0101000 ++830 0 * +Ve +1e-007 +16 0 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 190 0 2 17 +3 488 489CN 123 0 2 17 +7 415 416 88 0 +0 + +0101000 ++828 253 -837 253 * +Ed + 1e-007 1 1 0 +1 191 0 1.5707963267949 7.85398163397448 +2 490 124 0 1.5707963267949 7.85398163397448 +2 491 123 252 1.5707963267949 7.85398163397448 +6 417 88 252 +6 418 89 0 +0 + +0101100 ++828 0 -828 0 * +Wi + +0101000 ++827 252 +826 0 -836 0 -827 252 * +Fa +0 1e-007 123 0 +2 88 +0101000 ++825 253 * +Wi + +0101000 +-831 0 * +Wi + +0101000 +-826 0 * +Fa +0 1e-007 124 0 +2 89 +0101000 +-823 0 +822 0 * +Sh + +0101100 ++834 0 +829 0 -824 252 -821 0 * +So + +0100000 ++820 0 * +Co + +0100000 ++819 0 * +Ve +1e-007 +24 -2 40 +0 0 + +0101100 +* +Ve +1e-007 +2 0 4 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 192 0 2 13.5 +3 492 493CN 125 0 2 13.5 +7 419 420 90 0 +0 + +0101000 +-817 291 +816 292 * +Ed + 1e-007 1 1 0 +1 193 0 1.5707963267949 7.85398163397448 +2 494 125 290 1.5707963267949 7.85398163397448 +2 495 126 293 1.5707963267949 7.85398163397448 +6 421 90 290 +6 422 91 293 +0 + +0101100 ++817 0 -817 0 * +Ed + 1e-007 1 1 0 +1 194 0 1.5707963267949 7.85398163397448 +2 496 127 0 1.5707963267949 7.85398163397448 +2 497 125 272 1.5707963267949 7.85398163397448 +6 423 90 272 +6 424 92 0 +0 + +0101100 ++816 0 -816 0 * +Wi + +0101000 ++815 290 -814 0 +813 294 -815 290 * +Fa +0 1e-007 125 0 +2 90 +0101000 ++812 291 * +Wi + +0101000 +-814 0 * +Fa +0 1e-007 126 0 +2 91 +0101000 ++810 295 * +Ve +1e-007 +4 0 4 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 195 0 0 6.28318530717959 +2 498 128 0 0 6.28318530717959 +2 499 127 0 0 6.28318530717959 +6 425 93 0 +6 426 92 0 +0 + +0101100 ++808 0 -808 0 * +Wi + +0101000 ++807 0 * +Wi + +0101000 +-813 0 * +Fa +0 1e-007 127 0 +2 92 +0101000 ++806 0 +805 0 * +Ve +1e-007 +4 0 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 196 0 0 4 +3 500 501CN 128 0 0 4 +7 427 428 93 0 +0 + +0101000 +-808 0 +803 0 * +Ed + 1e-007 1 1 0 +1 197 0 0 6.28318530717959 +2 502 128 0 0 6.28318530717959 +2 503 129 0 0 6.28318530717959 +6 429 93 0 +6 430 94 0 +0 + +0101100 ++803 0 -803 0 * +Wi + +0101000 +-807 0 +802 0 +801 0 -802 0 * +Fa +0 1e-007 128 0 +2 93 +0101000 ++800 0 * +Wi + +0101000 +-801 0 * +Fa +0 1e-007 129 0 +2 94 +0101000 +-798 0 * +Sh + +0101100 ++811 290 -809 293 +804 294 +799 294 -797 294 * +So + +0100000 ++796 0 * +Co + +0100000 ++795 0 * +Ve +1e-007 +-95.0012101464458 -0.100000000014637 -22 +0 0 + +0101100 +* +Ve +1e-007 +-104.998789853554 -0.100000000014326 -22 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 198 0 3.16359442864602 6.26118353212342 +2 504 131 311 3.16359442864602 6.26118353212342 +2 505 130 312 3.16359442864602 6.26118353212342 +2 506 132 313 3.16359442864602 6.26118353212342 +2 507 132 315 3.16359442864602 6.26118353212342 +2 508 133 313 3.16359442864602 6.26118353212342 +2 509 133 317 3.16359442864602 6.26118353212342 +6 431 96 311 +6 432 95 312 +0 + +0101100 ++793 313 -792 313 * +Ve +1e-007 +-96.0112501953739 -0.100000000012089 -22 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 199 0 36.9887498046261 37.9987898535542 +2 510 130 305 36.9887498046261 37.9987898535542 +2 511 134 324 36.9887498046261 37.9987898535542 +6 433 95 305 +6 434 97 324 +0 + +0101000 ++790 0 -793 0 * +Ve +1e-007 +-104.008749804626 -0.10000000001055 -22 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 199 0 28.0012101464458 28.9912501953738 +2 510 130 305 28.0012101464458 28.9912501953738 +2 511 134 324 28.0012101464458 28.9912501953738 +6 435 95 305 +6 436 98 324 +0 + +0101000 ++792 0 -788 0 * +Ed + 1e-007 1 1 0 +1 200 0 3.16659525849218 6.25818270227759 +2 512 130 312 3.16659525849218 6.25818270227759 +2 513 135 334 3.16659525849218 6.25818270227759 +2 514 136 313 3.16659525849218 6.25818270227759 +2 515 136 315 3.16659525849218 6.25818270227759 +2 516 137 313 3.16659525849218 6.25818270227759 +2 517 137 336 3.16659525849218 6.25818270227759 +6 437 99 334 +6 438 95 312 +0 + +0101100 ++790 313 -788 313 * +Wi + +0101000 ++791 307 +789 0 +787 0 -786 307 * +Fa +0 1e-007 130 0 +2 95 +0101000 ++785 306 * +Ve +0.000299957327371129 +-95.0012101464454 -0.0999999999999904 -10.0006304078976 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 201 0 5.00063040789759 17 +2 518 131 337 5.00063040789759 17 +2 519 134 324 5.00063040789759 17 +6 439 96 337 +6 440 97 324 +0 + +0101000 ++783 0 -793 0 * +Ve +0.000299957327371129 +-104.998789853555 -0.100000000000001 -10.0006404808083 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 202 0 5.00064048080828 17 +2 520 131 337 5.00064048080828 17 +2 521 134 324 5.00064048080828 17 +6 441 96 337 +6 442 98 324 +0 + +0101000 ++781 0 -792 0 * +Ed + 0.000299957327371129 1 1 0 +1 203 0 0.501472155827491 0.997919788367708 +2 522 138 0 0.501472155827491 0.997919788367708 +2 523 131 311 0.501472155827491 0.997919788367708 +4 G1 138 0 131 311 +2 524 139 339 0.501472155827491 0.997919788367708 +2 525 139 341 0.501472155827491 0.997919788367708 +2 526 140 339 0.501472155827491 0.997919788367708 +2 527 140 343 0.501472155827491 0.997919788367708 +2 528 141 339 0.501472155827491 0.997919788367708 +2 529 141 345 0.501472155827491 0.997919788367708 +2 530 142 339 0.501472155827491 0.997919788367708 +2 531 142 347 0.501472155827491 0.997919788367708 +2 532 143 313 0.501472155827491 0.997919788367708 +2 533 143 317 0.501472155827491 0.997919788367708 +2 534 144 313 0.501472155827491 0.997919788367708 +2 535 144 349 0.501472155827491 0.997919788367708 +6 443 100 0 +6 444 96 311 +0 + +0101100 ++781 313 -783 313 * +Wi + +0101000 +-791 307 -782 0 +780 0 -779 307 * +Fa +0 1e-007 131 0 +2 96 +0101000 ++778 338 * +Ve +2.31998593732147e-005 +-80 -0.100000000042549 -3.00017241430578 +0 0 + +0101100 +* +Ve +2.31998593732147e-005 +-96.0112501972302 -0.0999999999999988 -3.00017241430563 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 204 0 0 16.0112501972302 +2 536 145 307 0 16.0112501972302 +2 537 134 324 0 16.0112501972302 +6 445 101 307 +6 446 97 324 +0 + +0101000 ++776 0 -775 0 * +Ve +4.55530934770516e-006 +-80 -0.10000000004192 -5.00018518582041 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 205 0 -54.4998275856942 -52.4998148141796 +2 538 146 307 -54.4998275856942 -52.4998148141796 +2 539 134 324 -54.4998275856942 -52.4998148141796 +6 447 97 324 +6 448 102 307 +0 + +0101000 ++776 0 -773 0 * +Ed + 1e-007 1 1 0 +1 206 0 26.000172414396 45 +2 540 135 351 26.000172414396 45 +2 541 134 324 26.000172414396 45 +6 449 99 351 +6 450 97 324 +0 + +0101000 ++775 0 -790 0 * +Ve +0.000388839471335339 +-82 -0.10000000004119 -7.00020000080017 +0 0 + +0101100 +* +Ed + 4.55530934770516e-006 1 1 0 +1 207 0 0 1 +2 542 147 307 0 1 +2 543 134 324 0 1 +6 451 103 307 +6 452 97 324 +0 + +0101000 ++773 0 -770 0 * +Ve +0.000388839471335339 +-92.0005959501568 -0.0999999999995343 -7.0002000008 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 208 0 12 22.0005959501568 +2 544 148 353 12 22.0005959501568 +2 545 134 324 12 22.0005959501568 +6 453 104 353 +6 454 97 324 +0 + +0101000 ++770 0 -768 0 * +Ed + 0.000299957327371129 1 1 0 +1 209 0 0 1 +2 546 138 307 0 1 +2 547 134 324 0 1 +6 455 100 307 +6 456 97 324 +0 + +0101000 ++768 0 -783 0 * +Wi + +0101000 +-774 0 +772 0 -771 0 +769 0 -789 0 +767 0 +782 0 +766 0 * +Fa +0 1e-007 134 0 +2 97 +0101000 ++765 350 * +Ve +2.31998593732147e-005 +-80 -0.100000000023505 -60.9998275856943 +0 0 + +0101100 +* +Ve +2.31998593732147e-005 +-130 -0.100000000023505 -60.9998275856943 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 210 0 0 50 +2 548 145 307 0 50 +2 549 134 324 0 50 +6 457 101 307 +6 458 98 324 +0 + +0101000 ++763 0 -762 0 * +Ve +4.55530934770516e-006 +-80 -0.100000000023328 -58.9998148141797 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 205 0 1.49981481417966 3.49982758569428 +2 538 146 307 1.49981481417966 3.49982758569428 +2 539 134 324 1.49981481417966 3.49982758569428 +6 459 98 324 +6 460 102 307 +0 + +0101000 ++760 0 -763 0 * +Ve +2.31998593732147e-005 +-130 -0.100000000042549 -3.00017241430578 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 211 0 -54.4998275856942 3.49982758569428 +2 550 149 307 -54.4998275856942 3.49982758569428 +2 551 134 324 -54.4998275856942 3.49982758569428 +6 461 98 324 +6 462 105 307 +0 + +0101000 ++758 0 -762 0 * +Ve +0.000388839471335339 +-82 -0.100000000023124 -56.9997999991999 +0 0 + +0101100 +* +Ed + 4.55530934770516e-006 1 1 0 +1 212 0 0 1 +2 552 147 307 0 1 +2 553 134 324 0 1 +6 463 103 307 +6 464 98 324 +0 + +0101000 ++760 0 -756 0 * +Ve +2.31998593732147e-005 +-104.008749715034 -0.10000000000072 -3.00017241430563 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 204 0 24.0087497150345 50 +2 536 145 307 24.0087497150345 50 +2 537 134 324 24.0087497150345 50 +6 465 101 307 +6 466 98 324 +0 + +0101000 ++754 0 -758 0 * +Ve +0.000388839471335339 +-92.0005963768741 -0.100000000000011 -56.9997999992 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 213 0 12 22.0005963768741 +2 554 148 353 12 22.0005963768741 +2 555 134 324 12 22.0005963768741 +6 467 104 353 +6 468 98 324 +0 + +0101000 ++756 0 -752 0 * +Ed + 1e-007 1 1 0 +1 214 0 26.0001724153762 45 +2 556 135 351 26.0001724153762 45 +2 557 134 324 26.0001724153762 45 +6 469 99 351 +6 470 98 324 +0 + +0101000 ++754 0 -788 0 * +Ve +0.000388839471335339 +-95.0012101452518 -0.0999999999997645 -53.9993622995033 +0 0 + +0101100 +* +Ed + 0.000388839471335339 1 1 0 +1 215 0 0 1 +2 558 150 307 0 1 +2 559 134 324 0 1 +6 471 106 307 +6 472 98 324 +0 + +0101000 ++752 0 -749 0 * +Ve +0.000388839471335339 +-95.0012101464458 -0.100000000014637 -42 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 216 0 37 48.9993622995099 +2 560 131 337 37 48.9993622995099 +2 561 134 324 37 48.9993622995099 +6 473 107 337 +6 474 98 324 +0 + +0101000 ++747 0 -749 0 * +Ve +1e-007 +-96.0112501953739 -0.100000000012089 -42 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 217 0 36.9887498046261 37.9987898535542 +2 562 151 305 36.9887498046261 37.9987898535542 +2 563 134 324 36.9887498046261 37.9987898535542 +6 475 98 324 +6 476 108 305 +0 + +0101000 ++745 0 -747 0 * +Ve +0.000388839471335339 +-107.999403028168 -0.0999999999999673 -7.00020000080001 +0 0 + +0101100 +* +Ed + 0.000299957327371129 1 1 0 +1 218 0 0 1 +2 564 138 307 0 1 +2 565 134 324 0 1 +6 477 100 307 +6 478 98 324 +0 + +0101000 ++743 0 -781 0 * +Ve +1e-007 +-96.0112501953739 -0.100000000012087 -57 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 219 0 65 80 +2 566 135 351 65 80 +2 567 134 324 65 80 +6 479 109 351 +6 480 98 324 +0 + +0101000 ++745 0 -741 0 * +Ve +0.000388839471335339 +-119 -0.10000000004119 -7.00020000080017 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 208 0 37.9994030281684 49 +2 544 148 353 37.9994030281684 49 +2 545 134 324 37.9994030281684 49 +6 481 104 353 +6 482 98 324 +0 + +0101000 ++743 0 -739 0 * +Ve +1e-007 +-104.008749804626 -0.100000000010548 -57 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 220 0 28.9962501953738 36.9937498046261 +2 568 152 351 28.9962501953738 36.9937498046261 +2 569 134 324 28.9962501953738 36.9937498046261 +6 483 98 324 +6 484 110 351 +0 + +0101000 ++737 0 -741 0 * +Ve +3.92699081698722e-006 +-120 -0.100000000040779 -8.00020833423774 +0 0 + +0101100 +* +Ed + 3.92699081698722e-006 1 1 0 +1 221 0 0 1 +2 570 153 307 0 1 +2 571 134 324 0 1 +6 485 111 307 +6 486 98 324 +0 + +0101000 ++739 0 -735 0 * +Ve +1e-007 +-104.008749804626 -0.10000000001055 -42 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 222 0 65 80 +2 572 135 351 65 80 +2 573 134 324 65 80 +6 487 109 351 +6 488 98 324 +0 + +0101000 ++733 0 -737 0 * +Ve +3.92699081698722e-006 +-120 -0.10000000002301 -55.9997916657623 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 223 0 -49.4997916657623 -1.50020833423766 +2 574 154 353 -49.4997916657623 -1.50020833423766 +2 575 134 324 -49.4997916657623 -1.50020833423766 +6 489 98 324 +6 490 112 353 +0 + +0101000 ++735 0 -731 0 * +Ve +0.000388839471335339 +-104.998789853554 -0.100000000014328 -42 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 217 0 28.0012101464458 28.9912501953738 +2 562 151 305 28.0012101464458 28.9912501953738 +2 563 134 324 28.0012101464458 28.9912501953738 +6 491 98 324 +6 492 108 305 +0 + +0101000 ++729 0 -733 0 * +Ve +0.000388839471335339 +-119 -0.100000000023124 -56.9997999991999 +0 0 + +0101100 +* +Ed + 3.92699081698722e-006 1 1 0 +1 224 0 0 1 +2 576 153 307 0 1 +2 577 134 324 0 1 +6 493 111 307 +6 494 98 324 +0 + +0101000 ++727 0 -731 0 * +Ve +0.000388839471335339 +-104.998788287694 -0.100000000000001 -53.9993752339299 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 225 0 37 48.9993752360582 +2 578 131 337 37 48.9993752360582 +2 579 134 324 37 48.9993752360582 +6 495 107 337 +6 496 98 324 +0 + +0101000 ++729 0 -725 0 * +Ve +0.000388839471335339 +-107.998772649318 -0.0999999999999985 -56.9997999992 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 213 0 37.9987726493176 49 +2 554 148 353 37.9987726493176 49 +2 555 134 324 37.9987726493176 49 +6 497 104 353 +6 498 98 324 +0 + +0101000 ++723 0 -727 0 * +Ed + 0.000388839471335339 1 1 0 +1 226 0 0 1 +2 580 150 307 0 1 +2 581 134 324 0 1 +6 499 106 307 +6 500 98 324 +0 + +0101000 ++723 0 -725 0 * +Wi + +0101000 ++761 0 +759 0 -757 0 -755 0 -753 0 -751 0 +750 0 -748 0 -787 0 +746 0 +-780 0 +744 0 -742 0 -740 0 +738 0 +736 0 +734 0 +732 0 +730 0 +728 0 +-726 0 -724 0 -722 0 +721 0 * +Fa +0 1e-007 134 0 +2 98 +0101000 ++720 350 * +Ve +2.31998593732147e-005 +-28.7228132326901 4 20.01 +0 0 + +0101100 +* +Ed + 2.31998593732147e-005 1 1 0 +1 227 0 0 0.990777728022367 +2 582 145 0 0 0.990777728022367 +2 583 135 334 0 0.990777728022367 +2 584 155 339 0 0.990777728022367 +2 585 155 356 0 0.990777728022367 +2 586 156 339 0 0.990777728022367 +2 587 156 358 0 0.990777728022367 +2 588 157 339 0 0.990777728022367 +2 589 157 360 0 0.990777728022367 +2 590 158 339 0 0.990777728022367 +2 591 158 362 0 0.990777728022367 +2 592 159 313 0 0.990777728022367 +2 593 159 336 0 0.990777728022367 +2 594 160 313 0 0.990777728022367 +2 595 160 364 0 0.990777728022367 +6 501 99 334 +6 502 101 0 +0 + +0101000 +-775 313 +718 0 * +Ed + 2.31998593732147e-005 1 1 0 +1 228 0 0.667656509622193 1 +2 596 145 0 0.667656509622193 1 +2 597 135 334 0.667656509622193 1 +2 598 161 339 0.667656509622193 1 +2 599 161 356 0.667656509622193 1 +2 600 162 339 0.667656509622193 1 +2 601 162 358 0.667656509622193 1 +2 602 163 339 0.667656509622193 1 +2 603 163 360 0.667656509622193 1 +2 604 164 339 0.667656509622193 1 +2 605 164 362 0.667656509622193 1 +2 606 165 313 0.667656509622193 1 +2 607 165 336 0.667656509622193 1 +2 608 166 313 0.667656509622193 1 +2 609 166 364 0.667656509622193 1 +6 503 99 334 +6 504 101 0 +0 + +0101000 ++754 313 -718 0 * +Wi + +0101000 +-786 307 -771 0 +750 0 -717 307 -716 307 * +Fa +0 1e-007 135 0 +2 99 +0101000 ++715 354 * +Ed + 0.000299957327371129 1 1 0 +1 229 0 0.500542828541322 0.998814152728588 +2 610 138 0 0.500542828541322 0.998814152728588 +2 611 148 352 0.500542828541322 0.998814152728588 +4 G1 138 0 148 352 +2 612 167 339 0.500542828541322 0.998814152728588 +2 613 167 343 0.500542828541322 0.998814152728588 +2 614 168 339 0.500542828541322 0.998814152728588 +2 615 168 366 0.500542828541322 0.998814152728588 +2 616 169 339 0.500542828541322 0.998814152728588 +2 617 169 347 0.500542828541322 0.998814152728588 +2 618 170 339 0.500542828541322 0.998814152728588 +2 619 170 368 0.500542828541322 0.998814152728588 +2 620 171 313 0.500542828541322 0.998814152728588 +2 621 171 349 0.500542828541322 0.998814152728588 +2 622 172 313 0.500542828541322 0.998814152728588 +2 623 172 370 0.500542828541322 0.998814152728588 +6 505 100 0 +6 506 104 352 +0 + +0101100 ++743 313 -768 313 * +Wi + +0101000 ++779 307 +742 0 -766 0 -713 307 * +Fa +0 0.000299957327371129 138 0 +2 100 +0101000 ++712 313 * +Ed + 1e-007 1 1 0 +1 230 0 0.00344828269659791 3.13814437089254 +2 624 145 0 0.00344828269659791 3.13814437089254 +2 625 146 0 0.00344828269659791 3.13814437089254 +2 626 173 339 0.00344828269659791 3.13814437089254 +2 627 173 358 0.00344828269659791 3.13814437089254 +2 628 174 339 0.00344828269659791 3.13814437089254 +2 629 174 372 0.00344828269659791 3.13814437089254 +2 630 175 339 0.00344828269659791 3.13814437089254 +2 631 175 362 0.00344828269659791 3.13814437089254 +2 632 176 339 0.00344828269659791 3.13814437089254 +2 633 176 374 0.00344828269659791 3.13814437089254 +6 507 101 0 +6 508 102 0 +0 + +0101100 ++763 313 -776 313 * +Ed + 1e-007 1 1 0 +1 231 0 0.00344828269659791 3.13814437089254 +2 634 145 0 0.00344828269659791 3.13814437089254 +2 635 149 0 0.00344828269659791 3.13814437089254 +2 636 177 339 0.00344828269659791 3.13814437089254 +2 637 177 358 0.00344828269659791 3.13814437089254 +2 638 178 339 0.00344828269659791 3.13814437089254 +2 639 178 376 0.00344828269659791 3.13814437089254 +2 640 179 339 0.00344828269659791 3.13814437089254 +2 641 179 362 0.00344828269659791 3.13814437089254 +2 642 180 339 0.00344828269659791 3.13814437089254 +2 643 180 378 0.00344828269659791 3.13814437089254 +6 509 101 0 +6 510 105 0 +0 + +0101100 ++762 313 -758 313 * +Wi + +0101000 +-717 307 +774 0 -716 307 +710 307 +753 0 -761 0 -709 307 * +Fa +0 1e-007 145 0 +2 101 +0101000 ++708 313 * +Ed + 1e-007 1 1 0 +1 232 0 0.00370371217216389 3.13788894141694 +2 644 147 0 0.00370371217216389 3.13788894141694 +2 645 146 0 0.00370371217216389 3.13788894141694 +4 G1 147 0 146 0 +2 646 181 339 0.00370371217216389 3.13788894141694 +2 647 181 372 0.00370371217216389 3.13788894141694 +2 648 182 339 0.00370371217216389 3.13788894141694 +2 649 182 380 0.00370371217216389 3.13788894141694 +2 650 183 339 0.00370371217216389 3.13788894141694 +2 651 183 374 0.00370371217216389 3.13788894141694 +2 652 184 339 0.00370371217216389 3.13788894141694 +2 653 184 382 0.00370371217216389 3.13788894141694 +6 511 103 0 +6 512 102 0 +0 + +0101100 ++760 313 -773 313 * +Wi + +0101000 ++710 307 +759 0 +772 0 -706 307 * +Fa +0 1e-007 146 0 +2 102 +0101000 ++705 313 * +Ed + 1e-007 1 1 0 +1 233 0 0.00400001066766845 3.1375926429214 +2 654 147 0 0.00400001066766845 3.1375926429214 +2 655 148 352 0.00400001066766845 3.1375926429214 +4 G1 147 0 148 352 +2 656 185 339 0.00400001066766845 3.1375926429214 +2 657 185 366 0.00400001066766845 3.1375926429214 +2 658 186 339 0.00400001066766845 3.1375926429214 +2 659 186 380 0.00400001066766845 3.1375926429214 +2 660 187 339 0.00400001066766845 3.1375926429214 +2 661 187 368 0.00400001066766845 3.1375926429214 +2 662 188 339 0.00400001066766845 3.1375926429214 +2 663 188 382 0.00400001066766845 3.1375926429214 +6 513 103 0 +6 514 104 352 +0 + +0101100 ++756 313 -770 313 * +Wi + +0101000 ++706 307 -755 0 +769 0 -703 307 * +Fa +0 0 147 0 +2 103 +0101000 ++702 313 * +Ed + 1e-007 1 1 0 +1 234 0 0.00400001066766845 3.1375926429214 +2 664 153 0 0.00400001066766845 3.1375926429214 +2 665 148 352 0.00400001066766845 3.1375926429214 +4 G1 153 0 148 352 +2 666 189 339 0.00400001066766845 3.1375926429214 +2 667 189 366 0.00400001066766845 3.1375926429214 +2 668 190 339 0.00400001066766845 3.1375926429214 +2 669 190 385 0.00400001066766845 3.1375926429214 +2 670 191 339 0.00400001066766845 3.1375926429214 +2 671 191 368 0.00400001066766845 3.1375926429214 +2 672 192 339 0.00400001066766845 3.1375926429214 +2 673 192 387 0.00400001066766845 3.1375926429214 +6 515 111 0 +6 516 104 352 +0 + +0101100 ++727 313 -739 313 * +Ed + 0.000388839471335339 1 1 0 +1 235 0 0.00325162200704329 0.996777201474697 +2 674 150 0 0.00325162200704329 0.996777201474697 +2 675 148 352 0.00325162200704329 0.996777201474697 +4 G1 150 0 148 352 +2 676 193 339 0.00325162200704329 0.996777201474697 +2 677 193 366 0.00325162200704329 0.996777201474697 +2 678 194 339 0.00325162200704329 0.996777201474697 +2 679 194 389 0.00325162200704329 0.996777201474697 +2 680 195 339 0.00325162200704329 0.996777201474697 +2 681 195 368 0.00325162200704329 0.996777201474697 +2 682 196 339 0.00325162200704329 0.996777201474697 +2 683 196 391 0.00325162200704329 0.996777201474697 +2 684 197 313 0.00325162200704329 0.996777201474697 +2 685 197 370 0.00325162200704329 0.996777201474697 +2 686 198 313 0.00325162200704329 0.996777201474697 +2 687 198 393 0.00325162200704329 0.996777201474697 +6 517 106 0 +6 518 104 352 +0 + +0101000 ++752 313 -723 313 * +Wi + +0101000 +-713 307 +738 0 +767 0 -700 307 +703 307 -722 0 -751 0 -699 307 * +Fa +0 1e-007 148 0 +2 104 +0101000 ++698 383 * +Wi + +0101000 ++709 307 +757 0 * +Fa +0 1e-007 149 0 +2 105 +0101000 ++696 313 * +Ed + 0.000388839471335339 1 1 0 +1 236 0 0.00612146209310982 0.991014864868107 +2 688 150 0 0.00612146209310982 0.991014864868107 +2 689 131 311 0.00612146209310982 0.991014864868107 +4 G1 150 0 131 311 +2 690 199 339 0.00612146209310982 0.991014864868107 +2 691 199 389 0.00612146209310982 0.991014864868107 +2 692 200 339 0.00612146209310982 0.991014864868107 +2 693 200 395 0.00612146209310982 0.991014864868107 +2 694 201 339 0.00612146209310982 0.991014864868107 +2 695 201 391 0.00612146209310982 0.991014864868107 +2 696 202 339 0.00612146209310982 0.991014864868107 +2 697 202 397 0.00612146209310982 0.991014864868107 +2 698 203 313 0.00612146209310982 0.991014864868107 +2 699 203 393 0.00612146209310982 0.991014864868107 +2 700 204 313 0.00612146209310982 0.991014864868107 +2 701 204 399 0.00612146209310982 0.991014864868107 +6 519 106 0 +6 520 107 311 +0 + +0101000 ++749 313 -725 313 * +Wi + +0101000 +-699 307 +748 0 -721 0 +694 307 * +Fa +0 0.000388839471335339 150 0 +2 106 +0101000 ++693 313 * +Ed + 1e-007 1 1 0 +1 237 0 3.16359442864602 6.26118353212342 +2 702 131 311 3.16359442864602 6.26118353212342 +2 703 151 312 3.16359442864602 6.26118353212342 +2 704 205 313 3.16359442864602 6.26118353212342 +2 705 205 399 3.16359442864602 6.26118353212342 +2 706 206 313 3.16359442864602 6.26118353212342 +2 707 206 401 3.16359442864602 6.26118353212342 +6 521 107 311 +6 522 108 312 +0 + +0101100 ++747 313 -729 313 * +Wi + +0101000 +-694 307 -746 0 +724 0 +691 307 * +Fa +0 1e-007 131 0 +2 107 +0101000 ++690 338 * +Ed + 1e-007 1 1 0 +1 238 0 3.16659525849218 6.25818270227759 +2 708 151 312 3.16659525849218 6.25818270227759 +2 709 135 334 3.16659525849218 6.25818270227759 +2 710 207 313 3.16659525849218 6.25818270227759 +2 711 207 401 3.16659525849218 6.25818270227759 +2 712 208 313 3.16659525849218 6.25818270227759 +2 713 208 403 3.16659525849218 6.25818270227759 +6 523 109 334 +6 524 108 312 +0 + +0101100 ++745 313 -733 313 * +Wi + +0101000 ++691 307 +744 0 +728 0 -688 307 * +Fa +0 1e-007 151 0 +2 108 +0101000 ++687 306 * +Ed + 1e-007 1 1 0 +1 239 0 0.0250026049023839 3.11659004868779 +2 714 135 0 0.0250026049023839 3.11659004868779 +2 715 152 0 0.0250026049023839 3.11659004868779 +2 716 209 354 0.0250026049023839 3.11659004868779 +2 717 209 404 0.0250026049023839 3.11659004868779 +2 718 210 354 0.0250026049023839 3.11659004868779 +2 719 210 406 0.0250026049023839 3.11659004868779 +6 525 109 0 +6 526 110 0 +0 + +0101100 ++741 354 -737 354 * +Wi + +0101000 ++688 307 -740 0 +732 0 -685 351 * +Fa +0 1e-007 135 0 +2 109 +0101000 ++684 354 * +Wi + +0101000 ++685 351 +736 0 * +Fa +0 1e-007 152 0 +2 110 +0101000 ++682 354 * +Ed + 1e-007 1 1 0 +1 240 0 0.00416667872404679 3.13742597486501 +2 720 153 0 0.00416667872404679 3.13742597486501 +2 721 154 352 0.00416667872404679 3.13742597486501 +4 G1 153 0 154 352 +2 722 211 339 0.00416667872404679 3.13742597486501 +2 723 211 385 0.00416667872404679 3.13742597486501 +2 724 212 339 0.00416667872404679 3.13742597486501 +2 725 212 408 0.00416667872404679 3.13742597486501 +2 726 213 339 0.00416667872404679 3.13742597486501 +2 727 213 387 0.00416667872404679 3.13742597486501 +2 728 214 339 0.00416667872404679 3.13742597486501 +2 729 214 410 0.00416667872404679 3.13742597486501 +6 527 111 0 +6 528 112 352 +0 + +0101100 ++731 313 -735 313 * +Wi + +0101000 ++700 307 -726 0 +734 0 -680 307 * +Fa +0 0 153 0 +2 111 +0101000 ++679 313 * +Wi + +0101000 ++680 307 +730 0 * +Fa +0 1e-007 154 0 +2 112 +0101000 ++677 383 * +Sh + +0101100 ++784 305 +777 337 +764 324 +719 324 -714 351 +711 307 +707 307 -704 307 -701 307 -697 353 ++695 307 +692 307 +689 337 -686 305 -683 351 -681 351 -678 307 -676 353 * +So + +0100000 ++675 0 * +Co + +0100000 ++674 0 * +Ve +1e-007 +26 0 15 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 241 0 0 6.28318530717959 +2 730 216 0 0 6.28318530717959 +2 731 215 0 0 6.28318530717959 +6 529 114 0 +6 530 113 0 +0 + +0101100 ++672 0 -672 0 * +Wi + +0101000 ++671 0 * +Ve +1e-007 +16 0 15 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 242 0 1.5707963267949 7.85398163397448 +2 732 215 0 1.5707963267949 7.85398163397448 +2 733 217 414 1.5707963267949 7.85398163397448 +6 531 115 414 +6 532 113 0 +0 + +0101100 ++669 0 -669 0 * +Wi + +0101000 +-668 0 * +Fa +0 1e-007 215 0 +2 113 +0101000 ++670 0 +667 0 * +Ve +1e-007 +26 0 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 243 0 0 15 +3 734 735CN 216 0 0 15 +7 533 534 114 0 +0 + +0101000 +-672 0 +665 0 * +Ed + 1e-007 1 1 0 +1 244 0 0 6.28318530717959 +2 736 216 0 0 6.28318530717959 +2 737 218 0 0 6.28318530717959 +6 535 114 0 +6 536 116 0 +0 + +0101100 ++665 0 -665 0 * +Wi + +0101000 +-671 0 +664 0 +663 0 -664 0 * +Fa +0 1e-007 216 0 +2 114 +0101000 ++662 0 * +Ve +1e-007 +16 0 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 245 0 2 17 +3 738 739CN 217 0 2 17 +7 537 538 115 0 +0 + +0101000 ++660 415 -669 415 * +Ed + 1e-007 1 1 0 +1 246 0 1.5707963267949 7.85398163397448 +2 740 218 0 1.5707963267949 7.85398163397448 +2 741 217 414 1.5707963267949 7.85398163397448 +6 539 115 414 +6 540 116 0 +0 + +0101100 ++660 0 -660 0 * +Wi + +0101000 ++659 414 +658 0 -668 0 -659 414 * +Fa +0 1e-007 217 0 +2 115 +0101000 ++657 415 * +Wi + +0101000 +-663 0 * +Wi + +0101000 +-658 0 * +Fa +0 1e-007 218 0 +2 116 +0101000 +-655 0 +654 0 * +Sh + +0101100 ++666 0 +661 0 -656 414 -653 0 * +So + +0100000 ++652 0 * +Co + +0100000 ++651 0 * +Ve +1e-007 +-17.9997222200787 -0.100000000022075 59 +0 0 + +0101100 +* +Ve +1e-007 +17.9997222200786 -0.100000000037518 59 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 247 0 3.14714823772493 6.27762972304359 +2 742 220 0 3.14714823772493 6.27762972304359 +2 743 219 0 3.14714823772493 6.27762972304359 +2 744 221 420 3.14714823772493 6.27762972304359 +2 745 221 422 3.14714823772493 6.27762972304359 +2 746 222 420 3.14714823772493 6.27762972304359 +2 747 222 424 3.14714823772493 6.27762972304359 +2 748 223 420 3.14714823772493 6.27762972304359 +2 749 223 426 3.14714823772493 6.27762972304359 +2 750 224 420 3.14714823772493 6.27762972304359 +2 751 224 428 3.14714823772493 6.27762972304359 +6 541 118 0 +6 542 117 0 +0 + +0101100 ++649 420 -648 420 * +Ve +1e-007 +-15.999687496948 -0.100000000021625 59 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 248 0 -9.00031250305195 -7.00027777992128 +2 752 219 419 -9.00031250305195 -7.00027777992128 +2 753 225 429 -9.00031250305195 -7.00027777992128 +6 543 117 419 +6 544 119 429 +0 + +0101000 ++646 0 -649 0 * +Ve +1e-007 +15.999687496948 -0.100000000035978 59 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 248 0 -42.9997222200786 -40.999687496948 +2 752 219 419 -42.9997222200786 -40.999687496948 +2 753 225 429 -42.9997222200786 -40.999687496948 +6 545 117 419 +6 546 120 429 +0 + +0101000 ++648 0 -644 0 * +Ed + 1e-007 1 1 0 +1 249 0 4.71863902107686 7.84773159328141 +2 754 219 430 4.71863902107686 7.84773159328141 +2 755 226 431 4.71863902107686 7.84773159328141 +2 756 227 432 4.71863902107686 7.84773159328141 +2 757 227 433 4.71863902107686 7.84773159328141 +2 758 228 432 4.71863902107686 7.84773159328141 +2 759 228 435 4.71863902107686 7.84773159328141 +2 760 229 432 4.71863902107686 7.84773159328141 +2 761 229 436 4.71863902107686 7.84773159328141 +2 762 230 432 4.71863902107686 7.84773159328141 +2 763 230 438 4.71863902107686 7.84773159328141 +6 547 121 431 +6 548 117 430 +0 + +0101100 ++646 432 -644 432 * +Wi + +0101000 ++647 419 +645 0 +643 0 -642 418 * +Fa +0 1e-007 219 0 +2 117 +0101000 ++641 420 * +Ve +1e-007 +-17.9997222200787 -0.100000000022075 24 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 250 0 0 35 +2 764 220 419 0 35 +2 765 225 429 0 35 +6 549 118 419 +6 550 119 429 +0 + +0101000 ++639 0 -649 0 * +Ve +1e-007 +17.9997222200786 -0.100000000037518 24 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 251 0 0 35 +2 766 220 419 0 35 +2 767 225 429 0 35 +6 551 118 419 +6 552 120 429 +0 + +0101000 ++637 0 -648 0 * +Ed + 1e-007 1 1 0 +1 252 0 3.14714823772493 6.27762972304359 +2 768 220 0 3.14714823772493 6.27762972304359 +2 769 231 0 3.14714823772493 6.27762972304359 +2 770 232 420 3.14714823772493 6.27762972304359 +2 771 232 424 3.14714823772493 6.27762972304359 +2 772 233 420 3.14714823772493 6.27762972304359 +2 773 233 440 3.14714823772493 6.27762972304359 +2 774 234 420 3.14714823772493 6.27762972304359 +2 775 234 428 3.14714823772493 6.27762972304359 +2 776 235 420 3.14714823772493 6.27762972304359 +2 777 235 442 3.14714823772493 6.27762972304359 +6 553 118 0 +6 554 122 0 +0 + +0101100 ++639 420 -637 420 * +Wi + +0101000 +-647 419 -638 0 +636 0 +635 419 * +Fa +0 1e-007 220 0 +2 118 +0101000 ++634 420 * +Ve +1e-007 +-15.999687496948 -0.100000000021625 24 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 253 0 0.100000000000001 35.1 +2 778 226 444 0.100000000000001 35.1 +2 779 225 429 0.100000000000001 35.1 +6 555 121 444 +6 556 119 429 +0 + +0101000 ++632 0 -646 0 * +Ed + 1e-007 1 1 0 +1 254 0 -9.00031250305195 -7.00027777992128 +2 780 231 419 -9.00031250305195 -7.00027777992128 +2 781 225 429 -9.00031250305195 -7.00027777992128 +6 557 119 429 +6 558 122 419 +0 + +0101000 ++632 0 -639 0 * +Wi + +0101000 +-645 0 -631 0 +638 0 +630 0 * +Fa +0 1e-007 225 0 +2 119 +0101000 ++629 443 * +Ve +1e-007 +15.999687496948 -0.100000000035978 24 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 255 0 0.100000000000001 35.1 +2 782 226 444 0.100000000000001 35.1 +2 783 225 429 0.100000000000001 35.1 +6 559 121 444 +6 560 120 429 +0 + +0101000 ++627 0 -644 0 * +Ed + 1e-007 1 1 0 +1 254 0 -42.9997222200786 -40.999687496948 +2 780 231 419 -42.9997222200786 -40.999687496948 +2 781 225 429 -42.9997222200786 -40.999687496948 +6 561 120 429 +6 562 122 419 +0 + +0101000 ++637 0 -627 0 * +Wi + +0101000 +-643 0 -636 0 +626 0 +625 0 * +Fa +0 1e-007 225 0 +2 120 +0101000 ++624 443 * +Ed + 1e-007 1 1 0 +1 256 0 4.71863902107686 7.84773159328142 +2 784 231 430 4.71863902107686 7.84773159328142 +2 785 226 431 4.71863902107686 7.84773159328142 +2 786 236 432 4.71863902107686 7.84773159328142 +2 787 236 435 4.71863902107686 7.84773159328142 +2 788 237 432 4.71863902107686 7.84773159328142 +2 789 237 446 4.71863902107686 7.84773159328142 +2 790 238 432 4.71863902107686 7.84773159328142 +2 791 238 438 4.71863902107686 7.84773159328142 +2 792 239 432 4.71863902107686 7.84773159328142 +2 793 239 447 4.71863902107686 7.84773159328142 +6 563 121 431 +6 564 122 430 +0 + +0101100 ++632 432 -627 432 * +Wi + +0101000 +-642 418 -631 0 +626 0 +622 418 * +Fa +0 1e-007 226 0 +2 121 +0101000 ++621 445 * +Wi + +0101000 ++635 419 +630 0 +625 0 -622 418 * +Fa +0 1e-007 231 0 +2 122 +0101000 ++619 420 * +Sh + +0101100 ++640 419 +633 419 +628 429 +623 429 -620 444 -618 419 * +So + +0100000 ++617 0 * +Co + +0100000 ++616 0 * +Ve +1e-007 +28 0 -39 +0 0 + +0101100 +* +Ve +1e-007 +7 0 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 257 0 0 0.950000000000004 +3 794 795CN 240 0 0 0.950000000000004 +7 565 566 123 0 +0 + +0101000 +-614 454 +613 0 * +Ed + 1e-007 1 1 0 +1 258 0 1.5707963267949 7.85398163397448 +2 796 240 453 1.5707963267949 7.85398163397448 +2 797 241 458 1.5707963267949 7.85398163397448 +6 567 123 453 +6 568 124 458 +0 + +0101100 ++614 0 -614 0 * +Ed + 1e-007 1 1 0 +1 259 0 0 6.28318530717959 +2 798 240 0 0 6.28318530717959 +2 799 242 0 0 6.28318530717959 +6 569 123 0 +6 570 125 0 +0 + +0101100 ++613 0 -613 0 * +Wi + +0101000 ++612 453 -611 0 +610 453 -612 453 * +Fa +0 1e-007 240 0 +2 123 +0101000 ++609 454 * +Ve +1e-007 +6 0 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 260 0 1.5707963267949 7.85398163397448 +2 800 241 0 1.5707963267949 7.85398163397448 +2 801 243 461 1.5707963267949 7.85398163397448 +2 802 244 462 1.5707963267949 7.85398163397448 +2 803 244 464 1.5707963267949 7.85398163397448 +2 804 245 462 1.5707963267949 7.85398163397448 +2 805 245 466 1.5707963267949 7.85398163397448 +2 806 246 462 1.5707963267949 7.85398163397448 +2 807 246 468 1.5707963267949 7.85398163397448 +2 808 247 462 1.5707963267949 7.85398163397448 +2 809 247 470 1.5707963267949 7.85398163397448 +2 810 248 462 1.5707963267949 7.85398163397448 +2 811 248 472 1.5707963267949 7.85398163397448 +2 812 249 462 1.5707963267949 7.85398163397448 +2 813 249 474 1.5707963267949 7.85398163397448 +2 814 250 462 1.5707963267949 7.85398163397448 +2 815 250 476 1.5707963267949 7.85398163397448 +2 816 251 462 1.5707963267949 7.85398163397448 +2 817 251 478 1.5707963267949 7.85398163397448 +6 571 126 461 +6 572 124 0 +0 + +0101100 ++607 0 -607 0 * +Wi + +0101000 +-606 0 * +Wi + +0101000 ++611 0 * +Fa +0 1e-007 241 0 +2 124 +0101000 ++605 0 +604 462 * +Wi + +0101000 +-610 0 * +Fa +0 1e-007 242 0 +2 125 +0101000 +-602 0 * +Ve +1e-007 +6 0 1 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 261 0 0.5 1.5 +3 818 819CN 243 0 0.5 1.5 +2 820 252 481 0.5 1.5 +2 821 252 482 0.5 1.5 +2 822 253 481 0.5 1.5 +2 823 253 483 0.5 1.5 +2 824 254 481 0.5 1.5 +2 825 254 484 0.5 1.5 +2 826 255 481 0.5 1.5 +2 827 255 485 0.5 1.5 +7 573 574 126 0 +0 + +0101000 ++607 480 -600 480 * +Ed + 1e-007 1 1 0 +1 262 0 1.5707963267949 7.85398163397448 +2 828 256 0 1.5707963267949 7.85398163397448 +2 829 243 461 1.5707963267949 7.85398163397448 +2 830 257 462 1.5707963267949 7.85398163397448 +2 831 257 487 1.5707963267949 7.85398163397448 +2 832 258 462 1.5707963267949 7.85398163397448 +2 833 258 464 1.5707963267949 7.85398163397448 +2 834 259 462 1.5707963267949 7.85398163397448 +2 835 259 489 1.5707963267949 7.85398163397448 +2 836 260 462 1.5707963267949 7.85398163397448 +2 837 260 468 1.5707963267949 7.85398163397448 +2 838 261 462 1.5707963267949 7.85398163397448 +2 839 261 491 1.5707963267949 7.85398163397448 +2 840 262 462 1.5707963267949 7.85398163397448 +2 841 262 472 1.5707963267949 7.85398163397448 +2 842 263 462 1.5707963267949 7.85398163397448 +2 843 263 493 1.5707963267949 7.85398163397448 +2 844 264 462 1.5707963267949 7.85398163397448 +2 845 264 476 1.5707963267949 7.85398163397448 +6 575 126 461 +6 576 127 0 +0 + +0101100 ++600 0 -600 0 * +Wi + +0101000 ++599 461 +606 0 -598 0 -599 461 * +Fa +0 1e-007 243 0 +2 126 +0101000 ++597 480 * +Wi + +0101000 +-598 0 * +Ve +1e-007 +28 0 -38 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 263 0 1.5707963267949 7.85398163397448 +2 846 240 453 1.5707963267949 7.85398163397448 +2 847 256 458 1.5707963267949 7.85398163397448 +6 577 128 453 +6 578 127 458 +0 + +0101100 ++594 0 -594 0 * +Wi + +0101000 ++593 0 * +Fa +0 1e-007 256 0 +2 127 +0101000 ++595 0 +592 462 * +Ve +1e-007 +7 0 25 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 257 0 1.95 25 +3 794 795CN 240 0 1.95 25 +7 579 580 128 0 +0 + +0101000 ++594 454 -590 0 * +Ed + 1e-007 1 1 0 +1 264 0 0 6.28318530717959 +2 848 240 0 0 6.28318530717959 +2 849 265 0 0 6.28318530717959 +6 581 128 0 +6 582 129 0 +0 + +0101100 ++590 0 -590 0 * +Wi + +0101000 ++589 453 +593 0 -588 453 -589 453 * +Fa +0 1e-007 240 0 +2 128 +0101000 ++587 454 * +Wi + +0101000 ++588 0 * +Ve +1e-007 +27 0 -14.95 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 265 0 1.5707963267949 7.85398163397448 +2 850 265 453 1.5707963267949 7.85398163397448 +2 851 266 494 1.5707963267949 7.85398163397448 +6 583 130 494 +6 584 129 453 +0 + +0101100 ++584 0 -584 0 * +Wi + +0101000 +-583 0 * +Fa +0 1e-007 265 0 +2 129 +0101000 ++585 0 +582 454 * +Ve +1e-007 +6 0 14 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 266 0 0.0499999999999974 14 +3 852 853CN 266 0 0.0499999999999974 14 +7 585 586 130 0 +0 + +0101000 ++584 495 -580 0 * +Ed + 1e-007 1 1 0 +1 267 0 0 6.28318530717959 +2 854 266 0 0 6.28318530717959 +2 855 267 0 0 6.28318530717959 +6 587 130 0 +6 588 131 0 +0 + +0101100 ++580 0 -580 0 * +Wi + +0101000 ++579 494 +583 0 -578 494 -579 494 * +Fa +0 1e-007 266 0 +2 130 +0101000 ++577 495 * +Wi + +0101000 ++578 0 * +Fa +0 1e-007 267 0 +2 131 +0101000 ++575 0 * +Sh + +0101100 ++608 453 +603 458 -601 453 +596 479 -591 458 +586 453 +581 453 +576 494 +574 494 * +So + +0100000 ++573 0 * +Co + +0100000 ++572 0 * +Ve +1e-007 +12.0005555727036 -0.100000000018675 -37.5 +0 0 + +0101100 +* +Ve +1e-007 +29.9994444272963 -0.100000000026636 -37.5 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 268 0 4.72350032013427 7.84287029422403 +2 856 268 499 4.72350032013427 7.84287029422403 +2 857 269 503 4.72350032013427 7.84287029422403 +6 589 132 499 +6 590 133 503 +0 + +0101100 ++570 0 -569 0 * +Ve +1e-007 +12.0005555727036 -0.100000000018675 -38 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 269 0 0 0.5 +2 858 268 499 0 0.5 +2 859 270 504 0 0.5 +6 591 132 499 +6 592 134 504 +0 + +0101000 ++567 0 -570 0 * +Ve +1e-007 +29.9994444272963 -0.100000000026636 -38 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 270 0 0 0.5 +2 860 268 499 0 0.5 +2 861 270 504 0 0.5 +6 593 132 499 +6 594 135 504 +0 + +0101000 ++565 0 -569 0 * +Ed + 1e-007 1 1 0 +1 271 0 3.15270399333937 6.27207396742913 +2 862 268 0 3.15270399333937 6.27207396742913 +2 863 271 0 3.15270399333937 6.27207396742913 +6 595 132 0 +6 596 136 0 +0 + +0101100 ++567 500 -565 500 * +Wi + +0101000 +-568 0 -566 0 +564 0 +563 499 * +Fa +0 1e-007 268 0 +2 132 +0101000 ++562 500 * +Ve +1e-007 +13.0006250244162 -0.100000000017898 -37.5 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 272 0 -27.5006250244162 -26.5005555727036 +2 864 269 503 -27.5006250244162 -26.5005555727036 +2 865 270 504 -27.5006250244162 -26.5005555727036 +6 597 133 503 +6 598 134 504 +0 + +0101000 ++560 0 -570 0 * +Ve +1e-007 +28.9993749755837 -0.100000000024384 -37.5 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 272 0 -44.4994444272963 -43.4993749755837 +2 864 269 503 -44.4994444272963 -43.4993749755837 +2 865 270 504 -44.4994444272963 -43.4993749755837 +6 599 133 503 +6 600 135 504 +0 + +0101000 ++569 0 -558 0 * +Ed + 1e-007 1 1 0 +1 273 0 4.72488930593065 7.84148130842771 +2 866 269 503 4.72488930593065 7.84148130842771 +2 867 272 509 4.72488930593065 7.84148130842771 +6 601 137 509 +6 602 133 503 +0 + +0101100 ++560 0 -558 0 * +Wi + +0101000 ++568 0 +559 0 +557 0 -556 0 * +Fa +0 1e-007 269 0 +2 133 +0101000 ++555 505 * +Ve +1e-007 +14.0007143221609 -0.0999999999830569 -38 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 274 0 -28.5007143221609 -26.5005555727036 +2 868 271 499 -28.5007143221609 -26.5005555727036 +2 869 270 504 -28.5007143221609 -26.5005555727036 +6 603 134 504 +6 604 136 499 +0 + +0101000 ++553 0 -567 0 * +Ve +1e-007 +14.0007143221609 -0.0999999999830569 -14.9 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 275 0 1 24.1 +2 870 273 512 1 24.1 +2 871 270 504 1 24.1 +6 605 138 512 +6 606 134 504 +0 + +0101000 ++553 0 -551 0 * +Ve +1e-007 +13.0006250244162 -0.100000000017898 -14.9 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 276 0 0.5 23.1 +2 872 272 509 0.5 23.1 +2 873 270 504 0.5 23.1 +6 607 137 509 +6 608 134 504 +0 + +0101000 ++560 0 -549 0 * +Ed + 1e-007 1 1 0 +1 277 0 -39.0007143221609 -38.0006250244162 +2 874 274 515 -39.0007143221609 -38.0006250244162 +2 875 270 504 -39.0007143221609 -38.0006250244162 +6 609 134 504 +6 610 139 515 +0 + +0101000 ++551 0 -549 0 * +Wi + +0101000 ++566 0 +552 0 -559 0 -550 0 +548 0 -547 0 * +Fa +0 1e-007 270 0 +2 134 +0101000 ++546 510 * +Ve +1e-007 +27.9992856778385 -0.100000000021737 -38 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 274 0 -44.4994444272963 -42.4992856778385 +2 868 271 499 -44.4994444272963 -42.4992856778385 +2 869 270 504 -44.4994444272963 -42.4992856778385 +6 611 135 504 +6 612 136 499 +0 + +0101000 ++565 0 -544 0 * +Ve +1e-007 +27.9992856778385 -0.100000000021737 -14.9 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 278 0 1 24.1 +2 876 273 512 1 24.1 +2 877 270 504 1 24.1 +6 613 138 512 +6 614 135 504 +0 + +0101000 ++544 0 -542 0 * +Ve +1e-007 +28.9993749755837 -0.100000000024384 -14.9 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 279 0 0.5 23.1 +2 878 272 509 0.5 23.1 +2 879 270 504 0.5 23.1 +6 615 137 509 +6 616 135 504 +0 + +0101000 ++558 0 -540 0 * +Ed + 1e-007 1 1 0 +1 277 0 -53.9993749755837 -52.9992856778385 +2 874 274 515 -53.9993749755837 -52.9992856778385 +2 875 270 504 -53.9993749755837 -52.9992856778385 +6 617 135 504 +6 618 139 515 +0 + +0101000 ++540 0 -542 0 * +Wi + +0101000 +-564 0 +543 0 -557 0 +541 0 -539 0 -538 0 * +Fa +0 1e-007 270 0 +2 135 +0101000 ++537 510 * +Ed + 1e-007 1 1 0 +1 280 0 4.72667518062126 7.83969543373238 +2 880 271 0 4.72667518062126 7.83969543373238 +2 881 273 511 4.72667518062126 7.83969543373238 +6 619 138 511 +6 620 136 0 +0 + +0101100 ++553 500 -544 500 * +Wi + +0101000 ++563 499 +552 0 +543 0 -535 499 * +Fa +0 1e-007 271 0 +2 136 +0101000 ++534 500 * +Ed + 1e-007 1 1 0 +1 281 0 4.72488930593065 7.84148130842771 +2 882 274 515 4.72488930593065 7.84148130842771 +2 883 272 509 4.72488930593065 7.84148130842771 +6 621 137 509 +6 622 139 515 +0 + +0101100 ++549 0 -540 0 * +Wi + +0101000 ++556 0 -548 0 +539 0 -532 0 * +Fa +0 1e-007 272 0 +2 137 +0101000 ++531 516 * +Ed + 1e-007 1 1 0 +1 282 0 4.72667518062127 7.83969543373239 +2 884 273 512 4.72667518062127 7.83969543373239 +2 885 274 515 4.72667518062127 7.83969543373239 +6 623 138 512 +6 624 139 515 +0 + +0101100 ++551 0 -542 0 * +Wi + +0101000 ++535 499 -550 0 +541 0 -529 0 * +Fa +0 1e-007 273 0 +2 138 +0101000 ++528 517 * +Wi + +0101000 +-529 0 +547 0 +538 0 +532 0 * +Fa +0 1e-007 274 0 +2 139 +0101000 ++526 518 * +Sh + +0101100 ++561 499 +554 503 +545 504 +536 504 -533 499 +530 509 -527 512 +525 515 * +So + +0100000 ++524 0 * +Co + +0100000 ++523 0 * +Ve +1e-007 +-46 -0.0999999999999943 -64.4 +0 0 + +0101100 +* +Ve +1e-007 +-46 -39 -64.4 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 283 0 1 39.9 +2 886 276 0 1 39.9 +2 887 275 524 1 39.9 +4 G1 276 0 275 524 +6 625 141 0 +6 626 140 524 +0 + +0101000 +-521 0 +520 0 * +Ve +1e-007 +-29.9998333328703 -0.100000000023591 -64.4 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 284 0 -63.5001666671297 -47.5 +2 888 275 524 -63.5001666671297 -47.5 +2 889 277 530 -63.5001666671297 -47.5 +6 627 140 524 +6 628 142 530 +0 + +0101000 ++518 0 -521 0 * +Ve +1e-007 +42 -39 -64.4 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 285 0 1 89 +2 890 278 0 1 89 +2 891 275 524 1 89 +4 G1 278 0 275 524 +6 629 143 0 +6 630 140 524 +0 + +0101000 ++520 0 -516 0 * +Ve +1e-007 +29.9998333328702 -0.100000000042854 -64.4 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 286 0 4.71572231989168 7.85064829446685 +2 892 275 524 4.71572231989168 7.85064829446685 +2 893 279 535 4.71572231989168 7.85064829446685 +6 631 144 535 +6 632 140 524 +0 + +0101100 ++518 0 -514 0 * +Ve +1e-007 +42 -0.0999999999999943 -64.4 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 287 0 1 39.9 +2 894 280 0 1 39.9 +2 895 275 524 1 39.9 +4 G1 280 0 275 524 +6 633 145 0 +6 634 140 524 +0 + +0101000 +-512 0 +516 0 * +Ed + 1e-007 1 1 0 +1 284 0 -135.5 -123.49983333287 +2 888 275 524 -135.5 -123.49983333287 +2 889 277 530 -135.5 -123.49983333287 +6 635 140 524 +6 636 142 530 +0 + +0101000 ++512 0 -514 0 * +Wi + +0101000 +-519 0 +517 0 +515 0 -513 0 +511 0 +510 0 * +Fa +0 1e-007 275 0 +2 140 +0101000 ++509 525 * +Ve +6.39439039573674e-005 +-46.8001170884551 -0.100000000000001 -63.9998438503162 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 288 0 3.14159265358979 4.06908304441277 +2 896 276 0 3.14159265358979 4.06908304441277 +2 897 277 530 3.14159265358979 4.06908304441277 +6 637 141 0 +6 638 142 530 +0 + +0101100 ++521 0 -507 0 * +Ve +1e-007 +-47 -39 -63.4 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 289 0 0 1 +2 898 276 0 0 1 +2 899 281 0 0 1 +4 G1 281 0 276 0 +2 900 282 0 0 1 +2 901 282 537 0 1 +2 902 283 0 0 1 +2 903 283 539 0 1 +6 639 146 0 +6 640 141 0 +0 + +0101000 ++520 0 -505 0 * +Ve +6.39439039573674e-005 +-47 -6.16765757804369 -63.4 +0 0 + +0101100 +* +Ed + 6.39439039573674e-005 1 1 0 +1 290 0 0 0.496620143436885 +2 904 276 0 0 0.496620143436885 +2 905 284 549 0 0.496620143436885 +2 906 285 0 0 0.496620143436885 +2 907 285 537 0 0.496620143436885 +2 908 286 0 0 0.496620143436885 +2 909 286 551 0 0.496620143436885 +6 641 141 0 +6 642 147 549 +0 + +0101000 +-507 0 +503 0 * +Ed + 1e-007 1 1 0 +1 291 0 1 33.8323424219563 +2 910 276 0 1 33.8323424219563 +2 911 287 524 1 33.8323424219563 +4 G1 276 0 287 524 +6 643 141 0 +6 644 148 524 +0 + +0101000 +-503 0 +505 0 * +Wi + +0101000 ++519 0 +506 0 -504 0 -502 0 -501 0 * +Fa +0 0 276 0 +2 141 +0101000 ++500 0 * +Ve +1e-007 +43 -0.0999999999999943 -63.4 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 292 0 1.5707963267949 3.14159265358979 +2 912 280 0 1.5707963267949 3.14159265358979 +2 913 277 530 1.5707963267949 3.14159265358979 +6 645 145 0 +6 646 142 530 +0 + +0101100 ++498 0 -512 0 * +Ve +1e-007 +29.9998333328702 -0.10000000004283 -65 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 293 0 0 0.599999999999994 +2 914 279 535 0 0.599999999999994 +2 915 277 530 0 0.599999999999994 +6 647 144 535 +6 648 142 530 +0 + +0101000 ++496 0 -514 0 * +Ve +1e-007 +43 -0.0999999999999943 -0.400000000000006 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 294 0 18.8 81.8 +2 916 288 524 18.8 81.8 +2 917 277 530 18.8 81.8 +6 649 142 530 +6 650 149 524 +0 + +0101000 ++498 0 -494 0 * +Ve +1e-007 +-29.9998333328703 -0.100000000023592 -65 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 295 0 -99.9998333328702 -40.0001666671297 +2 918 289 535 -99.9998333328702 -40.0001666671297 +2 919 277 530 -99.9998333328702 -40.0001666671297 +6 651 142 530 +6 652 150 535 +0 + +0101000 ++496 0 -492 0 * +Ve +1e-007 +42 -0.0999999999999943 0.599999999999994 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 296 0 7.105427357601e-015 1.5707963267949 +2 920 290 0 7.105427357601e-015 1.5707963267949 +2 921 277 530 7.105427357601e-015 1.5707963267949 +6 653 151 0 +6 654 142 530 +0 + +0101100 ++490 0 -494 0 * +Ed + 1e-007 1 1 0 +1 297 0 0 0.599999999999994 +2 922 279 535 0 0.599999999999994 +2 923 277 530 0 0.599999999999994 +6 655 144 535 +6 656 142 530 +0 + +0101000 ++492 0 -518 0 * +Ve +1e-007 +35.9998611108431 -0.100000000044254 0.599999999999994 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 298 0 -135.5 -129.499861110843 +2 924 291 524 -135.5 -129.499861110843 +2 925 277 530 -135.5 -129.499861110843 +6 657 142 530 +6 658 152 524 +0 + +0101000 ++490 0 -487 0 * +Ve +1e-007 +35.9998611108431 -0.100000000044254 10 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 299 0 0.499999999999994 9.90000000000001 +2 926 292 553 0.499999999999994 9.90000000000001 +2 927 277 530 0.499999999999994 9.90000000000001 +6 659 153 553 +6 660 142 530 +0 + +0101000 ++487 0 -485 0 * +Ve +1e-007 +39.0025015644561 -0.0999999999986869 10 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 300 0 -139.002501564456 -135.999861110843 +2 928 293 556 -139.002501564456 -135.999861110843 +2 929 277 530 -139.002501564456 -135.999861110843 +6 661 142 530 +6 662 154 556 +0 + +0101000 ++483 0 -485 0 * +Ve +6.39439039573674e-005 +-60 -0.100000000023706 -63.9998437496184 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 301 0 7.80011699240453 21 +2 930 284 549 7.80011699240453 21 +2 931 277 530 7.80011699240453 21 +6 663 147 549 +6 664 142 530 +0 + +0101000 ++507 0 -481 0 * +Ve +1e-007 +39.0025015644561 -0.0999999999986895 1 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 302 0 9 18 +2 932 294 569 9 18 +2 933 277 530 9 18 +6 665 155 569 +6 666 142 530 +0 + +0101000 ++483 0 -479 0 * +Ve +1e-007 +-60 -0.0999999999999943 -70 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 303 0 15 21.0001562503814 +2 934 295 556 15 21.0001562503814 +2 935 277 530 15 21.0001562503814 +6 667 142 530 +6 668 156 556 +0 + +0101000 ++477 0 -481 0 * +Ve +1e-007 +42.9974984355436 -0.100000000005148 1 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 304 0 88.5025015644561 92.4974984355436 +2 936 296 569 88.5025015644561 92.4974984355436 +2 937 277 530 88.5025015644561 92.4974984355436 +6 669 157 569 +6 670 142 530 +0 + +0101000 ++479 0 -475 0 * +Ve +1e-007 +50 -0.0999999999999943 -70 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 305 0 -150 -40 +2 938 297 556 -150 -40 +2 939 277 530 -150 -40 +6 671 142 530 +6 672 158 556 +0 + +0101000 ++473 0 -477 0 * +Ve +1e-007 +42.9974984355436 -0.100000000005139 10 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 306 0 9 18 +2 940 294 569 9 18 +2 941 277 530 9 18 +6 673 155 569 +6 674 142 530 +0 + +0101000 ++471 0 -475 0 * +Ve +1e-007 +50 -0.0999999999999943 10 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 307 0 15 95 +2 942 298 556 15 95 +2 943 277 530 15 95 +6 675 142 530 +6 676 159 556 +0 + +0101000 ++473 0 -469 0 * +Ed + 1e-007 1 1 0 +1 300 0 -150 -142.997498435544 +2 928 293 556 -150 -142.997498435544 +2 929 277 530 -150 -142.997498435544 +6 677 142 530 +6 678 154 556 +0 + +0101000 ++469 0 -471 0 * +Wi + +0101000 +-510 0 -497 0 +495 0 +493 0 -491 0 -489 0 -488 0 +486 0 -517 0 +484 0 +-506 0 -482 0 -480 0 +478 0 +476 0 +474 0 +472 0 -470 0 -468 0 -467 0 +* +Fa +0 1e-007 277 0 +2 142 +0101000 ++466 552 * +Ve +1e-007 +-46 -40 -63.4 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 308 0 0 1 +2 944 278 0 0 1 +2 945 281 0 0 1 +4 G1 281 0 278 0 +6 679 146 0 +6 680 143 0 +0 + +0101000 ++520 0 -464 0 * +Ve +1e-007 +42 -40 -63.4 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 309 0 1 89 +2 946 278 0 1 89 +2 947 299 524 1 89 +4 G1 278 0 299 524 +6 681 143 0 +6 682 160 524 +0 + +0101000 ++464 0 -462 0 * +Ed + 1e-007 1 1 0 +1 310 0 0 1 +2 948 278 0 0 1 +2 949 300 0 0 1 +4 G1 300 0 278 0 +6 683 161 0 +6 684 143 0 +0 + +0101000 ++516 0 -462 0 * +Wi + +0101000 +-463 0 +515 0 -461 0 +460 0 * +Fa +0 0 278 0 +2 143 +0101000 ++459 0 * +Ed + 1e-007 1 1 0 +1 311 0 3.14492599309678 6.27985196767195 +2 950 279 0 3.14492599309678 6.27985196767195 +2 951 289 0 3.14492599309678 6.27985196767195 +6 685 144 0 +6 686 150 0 +0 + +0101100 ++492 570 -496 570 * +Wi + +0101000 +-513 0 -488 0 +495 0 +457 535 * +Fa +0 1e-007 279 0 +2 144 +0101000 ++456 570 * +Ve +1e-007 +43 -39 -63.4 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 312 0 0 1 +2 952 280 0 0 1 +2 953 300 0 0 1 +4 G1 300 0 280 0 +6 687 161 0 +6 688 145 0 +0 + +0101000 ++516 0 -454 0 * +Ed + 1e-007 1 1 0 +1 313 0 1 39.9 +2 954 280 0 1 39.9 +2 955 288 524 1 39.9 +4 G1 280 0 288 524 +6 689 145 0 +6 690 149 524 +0 + +0101000 +-498 0 +454 0 * +Wi + +0101000 ++511 0 -497 0 -453 0 -452 0 * +Fa +0 0 280 0 +2 145 +0101000 ++451 0 * +Ed + 1e-007 1 1 1 +2 956 281 0 0 1 +6 691 146 0 +0 + +0101000 ++520 0 -520 0 * +Ed + 1e-007 1 1 0 +1 314 0 0 1 +2 957 301 0 0 1 +2 958 281 0 0 1 +4 G1 281 0 301 0 +2 959 302 0 0 1 +2 960 302 572 0 1 +6 692 146 0 +6 693 162 0 +0 + +0101000 ++505 0 -464 0 * +Wi + +0101000 +-504 0 +449 0 +463 0 -448 0 * +Fa +0 1e-007 281 0 +2 146 +0101000 ++447 0 * +Ve +5.98787953590725e-005 +-47 -5.04380808516743 -0.400000000000006 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 315 0 0.193953027799336 2.98331360366497 +2 961 287 524 0.193953027799336 2.98331360366497 +2 962 284 549 0.193953027799336 2.98331360366497 +2 963 303 0 0.193953027799336 2.98331360366497 +2 964 303 575 0.193953027799336 2.98331360366497 +2 965 304 0 0.193953027799336 2.98331360366497 +2 966 304 551 0.193953027799336 2.98331360366497 +6 694 147 549 +6 695 148 524 +0 + +0101100 ++503 0 -445 0 * +Ve +6.39439039573674e-005 +-60 -0.100000000043331 -0.000156250381607492 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 316 0 6.28631031226661 9.42165295568174 +2 967 295 556 6.28631031226661 9.42165295568174 +2 968 284 549 6.28631031226661 9.42165295568174 +2 969 305 0 6.28631031226661 9.42165295568174 +2 970 305 551 6.28631031226661 9.42165295568174 +6 696 147 549 +6 697 156 556 +0 + +0101100 ++481 0 -443 0 * +Ve +6.39439039573674e-005 +-46.9165832942695 -0.100000000000158 -0.000156250381472489 +0 0 + +0101100 +* +Ed + 5.98787953590725e-005 1 1 0 +1 317 0 0 0.983743931512503 +2 971 306 0 0 0.983743931512503 +2 972 284 549 0 0.983743931512503 +2 973 307 0 0 0.983743931512503 +2 974 307 551 0 0.983743931512503 +2 975 308 0 0 0.983743931512503 +2 976 308 577 0 0.983743931512503 +6 698 147 549 +6 699 163 0 +0 + +0101000 +-441 0 +445 0 * +Ed + 1e-007 1 1 0 +1 318 0 7.91658329426948 21 +2 977 284 549 7.91658329426948 21 +2 978 277 530 7.91658329426948 21 +6 700 147 549 +6 701 164 530 +0 + +0101000 ++441 0 -443 0 * +Wi + +0101000 +-502 0 -480 0 +444 0 -442 0 +440 0 +439 0 * +Fa +0 1e-007 284 0 +2 147 +0101000 ++438 573 * +Ve +1e-007 +-47 -39 -0.400000000000006 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 319 0 1 64 +2 979 301 0 1 64 +2 980 287 524 1 64 +4 G1 301 0 287 524 +6 702 162 0 +6 703 148 524 +0 + +0101000 ++505 0 -436 0 * +Ed + 1e-007 1 1 0 +1 320 0 1 34.9561919148326 +2 981 306 0 1 34.9561919148326 +2 982 287 524 1 34.9561919148326 +4 G1 306 0 287 524 +6 704 163 0 +6 705 148 524 +0 + +0101000 +-445 0 +436 0 * +Wi + +0101000 ++501 0 +444 0 -435 0 -434 0 * +Fa +0 1e-007 287 0 +2 148 +0101000 ++433 525 * +Ve +1e-007 +43 -39 -0.400000000000006 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 321 0 1 64 +2 983 309 0 1 64 +2 984 288 524 1 64 +4 G1 309 0 288 524 +6 706 165 0 +6 707 149 524 +0 + +0101000 ++454 0 -431 0 * +Ed + 1e-007 1 1 0 +1 322 0 1 39.9 +2 985 290 0 1 39.9 +2 986 288 524 1 39.9 +4 G1 290 0 288 524 +6 708 151 0 +6 709 149 524 +0 + +0101000 +-494 0 +431 0 * +Wi + +0101000 ++452 0 +493 0 -430 0 -429 0 * +Fa +0 1e-007 288 0 +2 149 +0101000 ++428 525 * +Wi + +0101000 ++457 535 +491 0 * +Fa +0 1e-007 289 0 +2 150 +0101000 ++426 570 * +Ve +1e-007 +42 -39 0.599999999999994 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 323 0 0 1 +2 987 290 0 0 1 +2 988 310 0 0 1 +4 G1 310 0 290 0 +6 710 166 0 +6 711 151 0 +0 + +0101000 ++424 0 -431 0 * +Ed + 1e-007 1 1 0 +1 324 0 1 39.9 +2 989 290 0 1 39.9 +2 990 291 524 1 39.9 +4 G1 290 0 291 524 +6 712 151 0 +6 713 152 524 +0 + +0101000 +-490 0 +424 0 * +Wi + +0101000 +-429 0 +489 0 -423 0 +422 0 * +Fa +0 0 290 0 +2 151 +0101000 ++421 0 * +Ve +5.98787953590725e-005 +-46 -0.0999999999999943 0.599999999999994 +0 0 + +0101100 +* +Ve +1e-007 +-46 -39 0.599999999999994 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 325 0 1 39.9 +2 991 306 0 1 39.9 +2 992 291 524 1 39.9 +4 G1 306 0 291 524 +6 714 163 0 +6 715 152 524 +0 + +0101000 +-419 0 +418 0 * +Ve +1e-007 +-35.9998611108433 -0.0999999999760206 0.599999999999994 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 298 0 -57.5001388891567 -47.5 +2 924 291 524 -57.5001388891567 -47.5 +2 925 277 530 -57.5001388891567 -47.5 +6 716 152 524 +6 717 164 530 +0 + +0101000 ++416 0 -419 0 * +Ed + 1e-007 1 1 0 +1 326 0 1 89 +2 993 311 0 1 89 +2 994 291 524 1 89 +4 G1 311 0 291 524 +6 718 167 0 +6 719 152 524 +0 + +0101000 ++418 0 -424 0 * +Ed + 1e-007 1 1 0 +1 327 0 4.71516676173406 7.85120385262322 +2 995 292 553 4.71516676173406 7.85120385262322 +2 996 291 524 4.71516676173406 7.85120385262322 +6 720 153 553 +6 721 152 524 +0 + +0101100 ++416 0 -487 0 * +Wi + +0101000 +-417 0 +415 0 +414 0 -413 0 +422 0 +486 0 * +Fa +0 1e-007 291 0 +2 152 +0101000 ++412 525 * +Ve +1e-007 +-35.9998611108433 -0.0999999999760206 10 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 328 0 0.499999999999994 9.90000000000001 +2 997 292 553 0.499999999999994 9.90000000000001 +2 998 277 530 0.499999999999994 9.90000000000001 +6 722 153 553 +6 723 164 530 +0 + +0101000 ++416 0 -410 0 * +Ed + 1e-007 1 1 0 +1 329 0 4.71516676173406 7.85120385262322 +2 999 293 579 4.71516676173406 7.85120385262322 +2 1000 292 0 4.71516676173406 7.85120385262322 +6 724 153 0 +6 725 154 579 +0 + +0101100 ++410 578 -485 578 * +Wi + +0101000 ++413 0 -409 0 +484 0 -408 553 * +Fa +0 1e-007 292 0 +2 153 +0101000 ++407 578 * +Ve +1e-007 +0 -43 10 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 330 0 3.14159265358979 9.42477796076938 +2 1001 293 556 3.14159265358979 9.42477796076938 +2 1002 294 584 3.14159265358979 9.42477796076938 +6 726 168 584 +6 727 154 556 +0 + +0101100 ++405 0 -405 0 * +Wi + +0101000 ++404 0 * +Ve +1e-007 +-60 -0.0999999999999943 10 +0 0 + +0101100 +* +Ve +1e-007 +0 0 80 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 331 0 0 49.9 +2 1003 295 0 0 49.9 +2 1004 293 0 0 49.9 +6 728 154 0 +6 729 156 0 +0 + +0101000 +-402 580 +401 0 * +Ve +1e-007 +-42.9974984355438 -0.10000000000128 10 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 300 0 -57.0025015644562 -40 +2 928 293 556 -57.0025015644562 -40 +2 929 277 530 -57.0025015644562 -40 +6 730 154 556 +6 731 164 530 +0 + +0101000 ++399 0 -402 0 * +Ve +1e-007 +110 0 80 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 332 0 0 110 +2 1005 312 0 0 110 +2 1006 293 0 0 110 +6 732 154 0 +6 733 169 0 +0 + +0101000 +-397 0 +401 0 * +Ve +1e-007 +-39.0025015644559 -0.09999999999485 10 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 333 0 7.90400249077768 10.9455534307579 +2 1007 293 556 7.90400249077768 10.9455534307579 +2 1008 294 585 7.90400249077768 10.9455534307579 +6 734 170 585 +6 735 154 556 +0 + +0101100 ++395 0 -399 0 * +Ed + 1e-007 1 1 0 +1 334 0 0 49.9 +2 1009 298 0 0 49.9 +2 1010 293 0 0 49.9 +6 736 154 0 +6 737 159 0 +0 + +0101000 +-469 580 +397 0 * +Ed + 1e-007 1 1 0 +1 300 0 -64.0001388891567 -60.9974984355441 +2 928 293 556 -64.0001388891567 -60.9974984355441 +2 929 277 530 -64.0001388891567 -60.9974984355441 +6 738 154 556 +6 739 164 530 +0 + +0101000 ++410 0 -395 0 * +Ed + 1e-007 1 1 0 +1 335 0 1.62081718360324 4.66236812357958 +2 1011 293 556 1.62081718360324 4.66236812357958 +2 1012 294 569 1.62081718360324 4.66236812357958 +6 740 155 569 +6 741 154 556 +0 + +0101100 ++471 0 -483 0 * +Wi + +0101000 +-400 556 +398 0 +396 556 +394 0 +393 556 +392 0 +467 0 -408 553 +391 0 +482 0 +* +Fa +0 1e-007 293 0 +2 154 +0101000 ++403 580 +390 580 * +Ed + 1e-007 1 1 0 +1 336 0 0.0500208568083474 3.09157179678468 +2 1013 294 0 0.0500208568083474 3.09157179678468 +2 1014 296 0 0.0500208568083474 3.09157179678468 +6 742 157 0 +6 743 155 0 +0 + +0101100 ++475 586 -479 586 * +Wi + +0101000 ++391 0 -470 0 +478 0 -388 569 * +Fa +0 1e-007 294 0 +2 155 +0101000 ++387 586 * +Ed + 1e-007 1 1 0 +1 303 0 84.9998437496184 95 +2 934 295 556 84.9998437496184 95 +2 935 277 530 84.9998437496184 95 +6 744 156 556 +6 745 164 530 +0 + +0101000 ++443 0 -402 0 * +Ve +1e-007 +0 0 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 337 0 0 49.9 +2 1015 295 0 0 49.9 +2 1016 297 0 0 49.9 +6 746 156 0 +6 747 158 0 +0 + +0101000 +-477 580 +384 0 * +Ed + 1e-007 1 1 0 +1 338 0 0 80 +2 1017 295 0 0 80 +2 1018 312 0 0 80 +6 748 156 0 +6 749 169 0 +0 + +0101000 +-401 0 +384 0 * +Wi + +0101000 ++442 0 +476 0 +385 0 +383 556 -400 556 -382 556 * +Fa +0 1e-007 295 0 +2 156 +0101000 ++381 580 * +Wi + +0101000 ++388 569 +474 0 * +Fa +0 1e-007 296 0 +2 157 +0101000 ++379 586 * +Ve +1e-007 +110 0 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 339 0 0 110 +2 1019 312 0 0 110 +2 1020 297 0 0 110 +6 750 158 0 +6 751 169 0 +0 + +0101000 +-377 0 +384 0 * +Ed + 1e-007 1 1 0 +1 340 0 0 49.9 +2 1021 298 0 0 49.9 +2 1022 297 0 0 49.9 +6 752 158 0 +6 753 159 0 +0 + +0101000 +-473 580 +377 0 * +Wi + +0101000 +-383 556 +472 0 +376 556 +375 556 * +Fa +0 1e-007 297 0 +2 158 +0101000 ++374 580 * +Ed + 1e-007 1 1 0 +1 341 0 0 80 +2 1023 298 0 0 80 +2 1024 312 0 0 80 +6 754 159 0 +6 755 169 0 +0 + +0101000 +-397 0 +377 0 * +Wi + +0101000 +-393 556 +468 0 -372 556 +375 556 * +Fa +0 1e-007 298 0 +2 159 +0101000 ++371 580 * +Ve +1e-007 +-46 -40 -0.400000000000006 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 342 0 1 64 +2 1025 301 0 1 64 +2 1026 299 524 1 64 +4 G1 301 0 299 524 +6 756 162 0 +6 757 160 524 +0 + +0101000 ++464 0 -369 0 * +Ve +1e-007 +42 -40 -0.400000000000006 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 343 0 1 89 +2 1027 311 0 1 89 +2 1028 299 524 1 89 +4 G1 311 0 299 524 +6 758 167 0 +6 759 160 524 +0 + +0101000 ++369 0 -367 0 * +Ed + 1e-007 1 1 0 +1 344 0 1 64 +2 1029 309 0 1 64 +2 1030 299 524 1 64 +4 G1 309 0 299 524 +6 760 165 0 +6 761 160 524 +0 + +0101000 ++462 0 -367 0 * +Wi + +0101000 ++368 0 -461 0 +366 0 -365 0 * +Fa +0 1e-007 299 0 +2 160 +0101000 ++364 525 * +Ed + 1e-007 1 1 1 +2 1031 300 0 0 1 +6 762 161 0 +0 + +0101000 ++516 0 -516 0 * +Ed + 1e-007 1 1 0 +1 345 0 0 1 +2 1032 309 0 0 1 +2 1033 300 0 0 1 +4 G1 300 0 309 0 +6 763 161 0 +6 764 165 0 +0 + +0101000 ++454 0 -462 0 * +Wi + +0101000 +-453 0 +362 0 +460 0 -361 0 * +Fa +0 1e-007 300 0 +2 161 +0101000 ++360 0 * +Ed + 1e-007 1 1 0 +1 346 0 0 1 +2 1034 301 0 0 1 +2 1035 313 0 0 1 +4 G1 313 0 301 0 +2 1036 314 0 0 1 +2 1037 314 572 0 1 +6 765 171 0 +6 766 162 0 +0 + +0101000 ++436 0 -369 0 * +Wi + +0101000 +-435 0 +448 0 -358 0 +368 0 * +Fa +0 0 301 0 +2 162 +0101000 ++357 0 * +Ed + 1e-007 1 1 0 +1 347 0 5.12373536564779 6.28318530717959 +2 1038 306 0 5.12373536564779 6.28318530717959 +2 1039 277 530 5.12373536564779 6.28318530717959 +6 767 163 0 +6 768 164 530 +0 + +0101100 ++441 0 -419 0 * +Ed + 1e-007 1 1 0 +1 348 0 0 1 +2 1040 306 0 0 1 +2 1041 313 0 0 1 +4 G1 313 0 306 0 +2 1042 315 0 0 1 +2 1043 315 577 0 1 +6 769 171 0 +6 770 163 0 +0 + +0101000 ++418 0 -436 0 * +Wi + +0101000 +-440 0 -355 0 -434 0 +417 0 -354 0 * +Fa +0 0 306 0 +2 163 +0101000 ++353 0 * +Ve +1e-007 +-42.9974984355438 -0.100000000001287 1 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 349 0 9 18 +2 1044 294 585 9 18 +2 1045 277 530 9 18 +6 771 170 585 +6 772 164 530 +0 + +0101000 ++399 0 -351 0 * +Ve +1e-007 +-39.0025015644564 -0.100000000005148 1 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 350 0 47.5025015644562 51.4974984355436 +2 1046 296 585 47.5025015644562 51.4974984355436 +2 1047 277 530 47.5025015644562 51.4974984355436 +6 773 172 585 +6 774 164 530 +0 + +0101000 ++351 0 -349 0 * +Ed + 1e-007 1 1 0 +1 351 0 9 18 +2 1048 294 585 9 18 +2 1049 277 530 9 18 +6 775 170 585 +6 776 164 530 +0 + +0101000 ++395 0 -349 0 * +Wi + +0101000 ++439 0 -355 0 +385 0 +415 0 -398 0 -409 0 +350 0 -392 0 +348 0 -347 0 +* +Fa +0 1e-007 277 0 +2 164 +0101000 ++346 552 * +Ed + 1e-007 1 1 0 +1 352 0 0 1 +2 1050 309 0 0 1 +2 1051 310 0 0 1 +4 G1 310 0 309 0 +6 777 166 0 +6 778 165 0 +0 + +0101000 ++431 0 -367 0 * +Wi + +0101000 +-430 0 +361 0 -344 0 +365 0 * +Fa +0 0 309 0 +2 165 +0101000 ++343 0 * +Ed + 1e-007 1 1 1 +2 1052 310 0 0 1 +6 779 166 0 +0 + +0101000 ++424 0 -424 0 * +Ed + 1e-007 1 1 0 +1 353 0 0 1 +2 1053 311 0 0 1 +2 1054 310 0 0 1 +4 G1 310 0 311 0 +6 780 166 0 +6 781 167 0 +0 + +0101000 ++424 0 -367 0 * +Wi + +0101000 +-423 0 +341 0 +340 0 -344 0 * +Fa +0 1e-007 310 0 +2 166 +0101000 ++339 0 * +Ed + 1e-007 1 1 0 +1 354 0 0 1 +2 1055 311 0 0 1 +2 1056 313 0 0 1 +4 G1 313 0 311 0 +6 782 171 0 +6 783 167 0 +0 + +0101000 ++418 0 -369 0 * +Wi + +0101000 +-337 0 +414 0 -366 0 +340 0 * +Fa +0 0 311 0 +2 167 +0101000 ++336 0 * +Ve +1e-007 +2 0 18 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 355 0 9 18 +3 1057 1058CN 294 0 9 18 +7 784 785 168 0 +0 + +0101000 ++405 587 -334 0 * +Ed + 1e-007 1 1 0 +1 336 0 0 6.28318530717959 +2 1013 294 0 0 6.28318530717959 +2 1014 296 0 0 6.28318530717959 +6 786 173 0 +6 787 168 0 +0 + +0101100 ++334 0 -334 0 * +Wi + +0101000 ++333 584 +404 0 -332 584 -333 584 * +Fa +0 1e-007 294 0 +2 168 +0101000 ++331 587 * +Wi + +0101000 +-376 0 -372 0 +396 0 +382 0 * +Fa +0 1e-007 312 0 +2 169 +0101000 ++329 0 * +Ed + 1e-007 1 1 0 +1 336 0 3.19161351039814 6.23316445037317 +2 1013 294 0 3.19161351039814 6.23316445037317 +2 1014 296 0 3.19161351039814 6.23316445037317 +6 788 172 0 +6 789 170 0 +0 + +0101100 ++349 588 -351 588 * +Wi + +0101000 ++394 0 -347 0 +350 0 -327 585 * +Fa +0 1e-007 294 0 +2 170 +0101000 ++326 588 * +Ed + 1e-007 1 1 1 +2 1059 313 0 0 1 +6 790 171 0 +0 + +0101000 ++418 0 -418 0 * +Wi + +0101000 +-354 0 +324 0 +337 0 -358 0 * +Fa +0 1e-007 313 0 +2 171 +0101000 ++323 0 * +Wi + +0101000 ++327 585 +348 0 * +Fa +0 1e-007 296 0 +2 172 +0101000 ++321 588 * +Wi + +0101000 ++332 0 * +Fa +0 1e-007 296 0 +2 173 +0101000 ++319 0 * +Sh + +0101100 ++508 524 +499 0 +465 530 -458 0 -455 535 -450 0 -446 0 -437 549 +432 524 -427 524 ++425 535 +420 0 -411 524 -406 553 +389 556 -386 569 -380 556 -378 569 -373 556 +370 556 ++363 524 +359 0 -356 0 -352 0 +345 530 +342 0 -338 0 +335 0 -330 584 -328 556 +-325 585 +322 0 -320 585 -318 584 * +So + +0100000 ++317 0 * +Co + +0100000 ++316 0 * +Ve +1e-007 +35 -0.0999999999999996 80 +0 0 + +0101100 +* +Ve +1e-007 +35 -5 80 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 356 0 -2.5 2.4 +2 1060 317 0 -2.5 2.4 +2 1061 316 589 -2.5 2.4 +6 791 174 589 +6 792 175 0 +0 + +0101000 +-314 0 +313 0 * +Ve +1e-007 +35 -0.100000000005149 41.9974984355436 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 357 0 67.9974984355436 106 +2 1062 316 589 67.9974984355436 106 +2 1063 318 598 67.9974984355436 106 +6 793 174 589 +6 794 176 598 +0 + +0101000 ++311 0 -314 0 * +Ve +1e-007 +0 0 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 358 0 0 49 +2 1064 316 0 0 49 +2 1065 319 0 0 49 +6 795 174 0 +6 796 177 0 +0 + +0101000 +-313 590 +309 0 * +Ve +1e-007 +35 -2 40 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 359 0 1.5707963267949 3.09157179678145 +2 1066 316 589 1.5707963267949 3.09157179678145 +2 1067 320 617 1.5707963267949 3.09157179678145 +6 797 178 617 +6 798 174 589 +0 + +0101100 +-311 0 +307 0 * +Ve +1e-007 +35 -0.0999999999999996 31 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 360 0 0 4.9 +2 1068 316 0 0 4.9 +2 1069 321 0 0 4.9 +6 799 174 0 +6 800 179 0 +0 + +0101000 +-305 590 +309 0 * +Ve +1e-007 +35 -0.10000000000131 38.0025015644562 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 359 0 6.33320616398601 7.85398163397448 +2 1066 316 589 6.33320616398601 7.85398163397448 +2 1067 320 617 6.33320616398601 7.85398163397448 +6 801 180 617 +6 802 174 589 +0 + +0101100 ++303 0 -307 0 * +Ed + 1e-007 1 1 0 +1 357 0 57 64.0025015644563 +2 1062 316 589 57 64.0025015644563 +2 1063 318 598 57 64.0025015644563 +6 803 174 589 +6 804 181 598 +0 + +0101000 ++305 0 -303 0 * +Wi + +0101000 +-312 0 +310 0 -308 589 +306 0 +304 589 +302 0 +301 0 * +Fa +0 1e-007 316 0 +2 174 +0101000 ++300 590 * +Ve +1e-007 +25.9998076915963 -0.100000000041546 80 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 361 0 -108 -98.9998076915963 +2 1070 317 0 -108 -98.9998076915963 +2 1071 318 598 -108 -98.9998076915963 +6 805 175 0 +6 806 176 598 +0 + +0101000 ++314 0 -298 0 * +Ve +1e-007 +35.6510869399611 -4.99999999993359 80 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 362 0 -18.1510869399611 -17.5 +2 1072 317 0 -18.1510869399611 -17.5 +2 1073 319 589 -18.1510869399611 -17.5 +6 807 175 0 +6 808 177 589 +0 + +0101000 ++296 0 -313 0 * +Ve +1e-007 +-25.9998076915964 -0.100000000023211 80 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 363 0 4.71623514371443 7.85013547064404 +2 1074 317 0 4.71623514371443 7.85013547064404 +2 1075 322 618 4.71623514371443 7.85013547064404 +6 809 182 618 +6 810 175 0 +0 + +0101100 ++294 0 -298 0 * +Ve +1e-007 +-35.9998611108431 -0.100000000016742 80 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 364 0 3.14437043494029 6.14384596642368 +2 1076 323 0 3.14437043494029 6.14384596642368 +2 1077 317 0 3.14437043494029 6.14384596642368 +6 811 183 0 +6 812 175 0 +0 + +0101000 ++292 0 -296 0 * +Ed + 1e-007 1 1 0 +1 361 0 -47.0001923084036 -37.0001388891569 +2 1070 317 0 -47.0001923084036 -37.0001388891569 +2 1071 318 598 -47.0001923084036 -37.0001388891569 +6 813 175 0 +6 814 184 598 +0 + +0101000 ++294 0 -292 0 * +Wi + +0101000 ++312 0 +297 0 +295 0 -293 0 +291 0 +290 0 * +Fa +0 1e-007 317 0 +2 175 +0101000 ++289 0 * +Ve +1.63362817986668e-005 +25.9998076915965 -0.100000000000003 41.9974984159807 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 365 0 46.9974984159807 85 +2 1078 322 618 46.9974984159807 85 +2 1079 318 598 46.9974984159807 85 +6 815 182 618 +6 816 176 598 +0 + +0101000 ++287 0 -298 0 * +Ed + 1e-007 1 1 0 +1 366 0 2.5 11.5001923097777 +2 1080 320 617 2.5 11.5001923097777 +2 1081 318 598 2.5 11.5001923097777 +6 817 178 617 +6 818 176 598 +0 + +0101000 ++311 0 -287 0 * +Wi + +0101000 +-297 0 -310 0 +286 0 +285 0 * +Fa +0 1e-007 318 0 +2 176 +0101000 ++284 619 * +Ve +1e-007 +35.6510869399518 -5 31 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 367 0 0 0.651086939951783 +2 1082 319 0 0 0.651086939951783 +2 1083 321 0 0 0.651086939951783 +6 819 177 0 +6 820 179 0 +0 + +0101000 +-282 590 +309 0 * +Ed + 1e-007 1 1 0 +1 368 0 31 80 +2 1084 323 0 31 80 +2 1085 319 589 31 80 +6 821 183 0 +6 822 177 589 +0 + +0101000 ++282 0 -296 0 * +Wi + +0101000 ++308 589 -295 0 -281 589 -280 0 * +Fa +0 1e-007 319 0 +2 177 +0101000 ++279 590 * +Ve +1.63362817986668e-005 +25.9229627936314 -2.00000000000001 40 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 369 0 2.5 11.5770372063684 +3 1086 1087CN 320 0 2.5 11.5770372063684 +6 823 178 0 +6 824 180 0 +0 + +0101000 ++307 620 -277 620 * +Ed + 1.63362817986668e-005 1 1 0 +1 370 0 0.0186368456408336 1 +2 1088 322 618 0.0186368456408336 1 +2 1089 320 617 0.0186368456408336 1 +6 825 178 617 +6 826 182 618 +0 + +0101000 ++287 0 -277 0 * +Wi + +0101000 ++306 0 +285 0 -276 617 +275 0 * +Fa +0 1e-007 320 0 +2 178 +0101000 ++274 620 * +Ve +1e-007 +35.9998611108432 -0.100000000000259 31 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 371 0 -91.4998611108432 -90.5 +2 1090 321 589 -91.4998611108432 -90.5 +2 1091 318 598 -91.4998611108432 -90.5 +6 827 179 589 +6 828 181 598 +0 + +0101000 ++272 0 -305 0 * +Ed + 1e-007 1 1 0 +1 372 0 1.43145698603713 1.56801854544485 +2 1092 323 0 1.43145698603713 1.56801854544485 +2 1093 321 589 1.43145698603713 1.56801854544485 +6 829 183 0 +6 830 179 589 +0 + +0101000 +-272 0 +282 0 * +Wi + +0101000 +-304 589 +271 0 +281 589 +270 0 * +Fa +0 1e-007 321 0 +2 179 +0101000 ++269 590 * +Ve +1.63362817986668e-005 +25.9998076915965 -0.100000000000026 38.0025015697718 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 373 0 2.5 11.500192308739 +2 1094 320 617 2.5 11.500192308739 +2 1095 318 598 2.5 11.500192308739 +6 831 180 617 +6 832 181 598 +0 + +0101000 ++303 0 -267 0 * +Ed + 1.63362817986668e-005 1 1 0 +1 374 0 0 0.9813377478338 +2 1096 322 618 0 0.9813377478338 +2 1097 320 617 0 0.9813377478338 +6 833 180 617 +6 834 182 618 +0 + +0101000 +-267 0 +277 0 * +Wi + +0101000 ++302 0 -266 0 +276 617 +265 0 * +Fa +0 1e-007 320 0 +2 180 +0101000 ++264 620 * +Ve +1e-007 +35.9998611108431 -0.100000000044256 20 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 375 0 20 31 +2 1098 323 0 20 31 +2 1099 318 598 20 31 +6 835 183 0 +6 836 181 598 +0 + +0101000 ++262 0 -272 0 * +Ve +1e-007 +37.0012501953738 -0.10000000001055 20 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 376 0 -110.001250195374 -108.999861110843 +2 1100 324 621 -110.001250195374 -108.999861110843 +2 1101 318 598 -110.001250195374 -108.999861110843 +6 837 181 598 +6 838 185 621 +0 + +0101000 ++260 0 -262 0 * +Ve +1e-007 +37.0012501953738 -0.100000000010548 17 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 377 0 1 4 +2 1102 325 622 1 4 +2 1103 318 598 1 4 +6 839 186 622 +6 840 181 598 +0 + +0101000 ++260 0 -258 0 * +Ve +1e-007 +39.0025015644562 -0.10000000000131 17 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 378 0 89.5012501953738 91.5025015644563 +2 1104 326 622 89.5012501953738 91.5025015644563 +2 1105 318 598 89.5012501953738 91.5025015644563 +6 841 181 598 +6 842 187 622 +0 + +0101000 ++258 0 -256 0 * +Ve +1e-007 +39.0025015644562 -0.10000000000131 10 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 379 0 2 9 +2 1106 320 623 2 9 +2 1107 318 598 2 9 +6 843 188 623 +6 844 181 598 +0 + +0101000 ++256 0 -254 0 * +Ve +1.63362817986668e-005 +25.9998076915963 -0.100000000041546 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 365 0 5 43.0025015697718 +2 1078 322 618 5 43.0025015697718 +2 1079 318 598 5 43.0025015697718 +6 845 182 618 +6 846 181 598 +0 + +0101000 ++252 0 -267 0 * +Ve +1e-007 +35.9998611108431 -0.100000000044256 10 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 380 0 -112.002501564456 -108.999861110843 +2 1108 327 621 -112.002501564456 -108.999861110843 +2 1109 318 598 -112.002501564456 -108.999861110843 +6 847 181 598 +6 848 189 621 +0 + +0101000 ++254 0 -250 0 * +Ve +1e-007 +35.9998611108431 -0.100000000044256 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 381 0 -108.999861110843 -98.9998076915963 +2 1110 328 0 -108.999861110843 -98.9998076915963 +2 1111 318 598 -108.999861110843 -98.9998076915963 +6 849 181 598 +6 850 190 0 +0 + +0101000 ++248 0 -252 0 * +Ed + 1e-007 1 1 0 +1 382 0 0 10 +2 1112 323 0 0 10 +2 1113 318 598 0 10 +6 851 191 0 +6 852 181 598 +0 + +0101000 ++248 0 -250 0 * +Wi + +0101000 +-261 0 -259 0 -271 0 +257 0 -301 0 +255 0 -266 0 +253 0 +251 0 +249 0 ++247 0 -246 0 * +Fa +0 1e-007 318 0 +2 181 +0101000 ++245 619 * +Ve +1.63362817986668e-005 +-25.9998076915964 -0.100000000023234 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 383 0 4.71623514371443 7.85013547064404 +2 1114 328 0 4.71623514371443 7.85013547064404 +2 1115 322 618 4.71623514371443 7.85013547064404 +6 853 182 618 +6 854 190 0 +0 + +0101100 ++243 0 -252 0 * +Ed + 1e-007 1 1 0 +1 384 0 5 85 +2 1116 322 618 5 85 +2 1117 318 598 5 85 +6 855 182 618 +6 856 184 598 +0 + +0101000 ++243 0 -294 0 * +Wi + +0101000 +-265 0 +251 0 -275 0 +242 0 +286 0 -241 0 -293 0 * +Fa +0 1e-007 322 0 +2 182 +0101000 ++240 624 * +Ve +1e-007 +-35.9998611108433 -0.099999999976023 20 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 385 0 4.71516676173406 7.85120385262322 +2 1118 323 0 4.71516676173406 7.85120385262322 +2 1119 324 621 4.71516676173406 7.85120385262322 +6 857 183 0 +6 858 185 621 +0 + +0101100 ++238 0 -262 0 * +Ed + 1e-007 1 1 0 +1 386 0 20 80 +2 1120 323 0 20 80 +2 1121 318 598 20 80 +6 859 183 0 +6 860 184 598 +0 + +0101000 ++238 0 -292 0 * +Wi + +0101000 +-270 0 +261 0 +280 0 +237 0 -291 0 -236 0 * +Fa +0 1e-007 323 0 +2 183 +0101000 ++235 0 * +Ve +1e-007 +-35.9998611108431 -0.100000000023968 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 381 0 -47.0001923084036 -37.0001388891569 +2 1110 328 0 -47.0001923084036 -37.0001388891569 +2 1111 318 598 -47.0001923084036 -37.0001388891569 +6 861 184 598 +6 862 190 0 +0 + +0101000 ++243 0 -233 0 * +Ve +1e-007 +-37.0012501953739 -0.100000000012087 20 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 376 0 -37.0001388891567 -35.9987498046261 +2 1100 324 621 -37.0001388891567 -35.9987498046261 +2 1101 318 598 -37.0001388891567 -35.9987498046261 +6 863 184 598 +6 864 185 621 +0 + +0101000 ++238 0 -231 0 * +Ve +1e-007 +-35.9998611108433 -0.099999999976023 10 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 387 0 0 10 +2 1122 323 0 0 10 +2 1123 318 598 0 10 +6 865 191 0 +6 866 184 598 +0 + +0101000 ++233 0 -229 0 * +Ve +1e-007 +-37.0012501953739 -0.100000000012089 17 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 388 0 1 4 +2 1124 325 625 1 4 +2 1125 318 598 1 4 +6 867 192 625 +6 868 184 598 +0 + +0101000 ++231 0 -227 0 * +Ve +1e-007 +-39.0025015644564 -0.100000000005149 10 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 380 0 -37.0001388891567 -33.9974984355436 +2 1108 327 621 -37.0001388891567 -33.9974984355436 +2 1109 318 598 -37.0001388891567 -33.9974984355436 +6 869 184 598 +6 870 189 621 +0 + +0101000 ++229 0 -225 0 * +Ve +1e-007 +-39.0025015644564 -0.100000000005147 17 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 389 0 54.4974984355436 56.4987498046261 +2 1126 326 625 54.4974984355436 56.4987498046261 +2 1127 318 598 54.4974984355436 56.4987498046261 +6 871 184 598 +6 872 193 625 +0 + +0101000 ++223 0 -227 0 * +Ed + 1e-007 1 1 0 +1 390 0 2 9 +2 1128 320 626 2 9 +2 1129 318 598 2 9 +6 873 194 626 +6 874 184 598 +0 + +0101000 ++223 0 -225 0 * +Wi + +0101000 +-290 0 -241 0 +236 0 +232 0 -230 0 +228 0 -226 0 +224 0 +222 0 -221 0 +* +Fa +0 1e-007 318 0 +2 184 +0101000 ++220 619 * +Ve +1e-007 +0 -45 20 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 391 0 3.14159265358979 9.42477796076938 +2 1130 324 621 3.14159265358979 9.42477796076938 +2 1131 325 628 3.14159265358979 9.42477796076938 +6 875 195 628 +6 876 185 621 +0 + +0101100 ++218 0 -218 0 * +Wi + +0101000 ++217 0 * +Ve +1e-007 +-44.9987498046262 -0.10000000001045 20 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 392 0 7.87898423887687 10.9705716826623 +2 1132 324 621 7.87898423887687 10.9705716826623 +2 1133 325 625 7.87898423887687 10.9705716826623 +6 877 192 625 +6 878 185 621 +0 + +0101100 ++231 0 -215 0 * +Ve +1e-007 +44.9987498046261 -0.100000000012087 20 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 393 0 1.59579893169728 4.68738637548269 +2 1134 324 621 1.59579893169728 4.68738637548269 +2 1135 325 622 1.59579893169728 4.68738637548269 +6 879 186 622 +6 880 185 621 +0 + +0101100 ++213 0 -260 0 * +Ve +1e-007 +-45.9998913042195 -0.0999999999755795 20 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 376 0 -28.0012501953738 -27.0001086957805 +2 1100 324 621 -28.0012501953738 -27.0001086957805 +2 1101 318 598 -28.0012501953738 -27.0001086957805 +6 881 185 621 +6 882 196 598 +0 + +0101000 ++215 0 -211 0 * +Ve +1e-007 +45.9998913042193 -0.100000000045832 20 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 376 0 -118.999891304219 -117.998749804626 +2 1100 324 621 -118.999891304219 -117.998749804626 +2 1101 318 598 -118.999891304219 -117.998749804626 +6 883 185 621 +6 884 197 598 +0 + +0101000 ++209 0 -213 0 * +Ed + 1e-007 1 1 0 +1 394 0 3.14376656834503 6.28101139242283 +2 1136 329 0 3.14376656834503 6.28101139242283 +2 1137 324 0 3.14376656834503 6.28101139242283 +6 885 198 0 +6 886 185 0 +0 + +0101100 ++211 627 -209 627 * +Wi + +0101000 +-237 0 +230 0 +259 0 +214 0 +212 0 +210 0 +208 0 +207 621 * +Fa +0 1e-007 324 0 +2 185 +0101000 ++216 627 +206 627 * +Ve +1e-007 +44.9987498046261 -0.100000000012087 17 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 395 0 1 4 +2 1138 325 622 1 4 +2 1139 318 598 1 4 +6 887 186 622 +6 888 197 598 +0 + +0101000 ++213 0 -204 0 * +Ed + 1e-007 1 1 0 +1 396 0 0.0250026049023839 3.11659004868779 +2 1140 325 0 0.0250026049023839 3.11659004868779 +2 1141 326 0 0.0250026049023839 3.11659004868779 +6 889 186 0 +6 890 187 0 +0 + +0101100 ++204 629 -258 629 * +Wi + +0101000 ++212 0 -203 0 +257 0 -202 622 * +Fa +0 1e-007 325 0 +2 186 +0101000 ++201 629 * +Ve +1e-007 +42.9974984355436 -0.100000000005149 17 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 378 0 95.4974984355436 97.4987498046261 +2 1104 326 622 95.4974984355436 97.4987498046261 +2 1105 318 598 95.4974984355436 97.4987498046261 +6 891 187 622 +6 892 197 598 +0 + +0101000 ++199 0 -204 0 * +Ed + 1e-007 1 1 0 +1 397 0 1.62081718360324 4.66236812357826 +2 1142 326 0 1.62081718360324 4.66236812357826 +2 1143 320 599 1.62081718360324 4.66236812357826 +6 893 188 599 +6 894 187 0 +0 + +0101100 ++199 629 -256 629 * +Wi + +0101000 ++202 622 +198 0 +255 0 -197 622 * +Fa +0 1e-007 326 0 +2 187 +0101000 ++196 629 * +Ve +1e-007 +42.9974984355436 -0.100000000005149 10 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 398 0 1.62081718360324 4.66236812357826 +2 1144 327 621 1.62081718360324 4.66236812357826 +2 1145 320 623 1.62081718360324 4.66236812357826 +6 895 188 623 +6 896 189 621 +0 + +0101100 ++194 0 -254 0 * +Ed + 1e-007 1 1 0 +1 399 0 2 9 +2 1146 320 623 2 9 +2 1147 318 598 2 9 +6 897 188 623 +6 898 197 598 +0 + +0101000 ++199 0 -194 0 * +Wi + +0101000 +-193 0 -192 0 +253 0 +197 622 * +Fa +0 1e-007 320 0 +2 188 +0101000 ++191 630 * +Ve +1e-007 +0 -43 10 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 400 0 3.14159265358979 9.42477796076938 +2 1148 327 621 3.14159265358979 9.42477796076938 +2 1149 320 631 3.14159265358979 9.42477796076938 +6 899 199 631 +6 900 189 621 +0 + +0101100 ++189 0 -189 0 * +Wi + +0101000 ++188 0 * +Ve +1e-007 +-45.9998913042195 -0.0999999999755795 10 +0 0 + +0101100 +* +Ve +1e-007 +45.9998913042193 -0.100000000045832 10 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 401 0 3.14376656834503 6.28101139242283 +2 1150 329 0 3.14376656834503 6.28101139242283 +2 1151 327 0 3.14376656834503 6.28101139242283 +6 901 198 0 +6 902 189 0 +0 + +0101100 ++186 627 -185 627 * +Ve +1e-007 +-42.9974984355439 -0.0999999999987107 10 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 380 0 -30.0025015644561 -27.0001086957805 +2 1108 327 621 -30.0025015644561 -27.0001086957805 +2 1109 318 598 -30.0025015644561 -27.0001086957805 +6 903 189 621 +6 904 196 598 +0 + +0101000 ++183 0 -186 0 * +Ed + 1e-007 1 1 0 +1 380 0 -118.999891304219 -115.997498435544 +2 1108 327 621 -118.999891304219 -115.997498435544 +2 1109 318 598 -118.999891304219 -115.997498435544 +6 905 189 621 +6 906 197 598 +0 + +0101000 ++185 0 -194 0 * +Ed + 1e-007 1 1 0 +1 402 0 7.90400249078283 10.9455534307592 +2 1152 327 621 7.90400249078283 10.9455534307592 +2 1153 320 626 7.90400249078283 10.9455534307592 +6 907 194 626 +6 908 189 621 +0 + +0101100 ++225 0 -183 0 * +Ed + 1e-007 1 1 0 +1 403 0 4.71516676173406 7.85120385262322 +2 1154 323 0 4.71516676173406 7.85120385262322 +2 1155 327 621 4.71516676173406 7.85120385262322 +6 909 191 0 +6 910 189 621 +0 + +0101100 ++229 0 -250 0 * +Wi + +0101000 ++184 621 +182 0 +181 0 +180 0 +193 0 +224 0 +249 0 -179 0 * +Fa +0 1e-007 327 0 +2 189 +0101000 ++187 627 +178 627 * +Ed + 1e-007 1 1 0 +1 404 0 3.14437043494049 6.28040752582832 +2 1156 323 0 3.14437043494049 6.28040752582832 +2 1157 328 0 3.14437043494049 6.28040752582832 +6 911 191 0 +6 912 190 0 +0 + +0101100 ++233 0 -248 0 * +Wi + +0101000 +-242 0 +232 0 +247 0 +176 0 * +Fa +0 1e-007 328 0 +2 190 +0101000 ++175 0 * +Wi + +0101000 ++176 0 -228 0 +246 0 -179 0 * +Fa +0 1e-007 323 0 +2 191 +0101000 ++173 0 * +Ve +1e-007 +-44.9987498046262 -0.100000000010454 17 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 405 0 1 4 +2 1158 325 625 1 4 +2 1159 318 598 1 4 +6 913 192 625 +6 914 196 598 +0 + +0101000 ++215 0 -171 0 * +Ed + 1e-007 1 1 0 +1 396 0 3.16659525849218 6.25818270227761 +2 1140 325 0 3.16659525849218 6.25818270227761 +2 1141 326 0 3.16659525849218 6.25818270227761 +6 915 192 0 +6 916 193 0 +0 + +0101100 ++227 632 -171 632 * +Wi + +0101000 ++214 0 -226 0 +170 0 -169 625 * +Fa +0 1e-007 325 0 +2 192 +0101000 ++168 632 * +Ve +1e-007 +-42.9974984355438 -0.100000000001287 17 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 389 0 48.5012501953738 50.5025015644562 +2 1126 326 625 48.5012501953738 50.5025015644562 +2 1127 318 598 48.5012501953738 50.5025015644562 +6 917 193 625 +6 918 196 598 +0 + +0101000 ++171 0 -166 0 * +Ed + 1e-007 1 1 0 +1 397 0 4.76240983719304 7.80396077716807 +2 1142 326 0 4.76240983719304 7.80396077716807 +2 1143 320 599 4.76240983719304 7.80396077716807 +6 919 194 599 +6 920 193 0 +0 + +0101100 ++223 632 -166 632 * +Wi + +0101000 ++169 625 +222 0 +165 0 -164 625 * +Fa +0 1e-007 326 0 +2 193 +0101000 ++163 632 * +Ed + 1e-007 1 1 0 +1 406 0 2 9 +2 1160 320 626 2 9 +2 1161 318 598 2 9 +6 921 194 626 +6 922 196 598 +0 + +0101000 ++166 0 -183 0 * +Wi + +0101000 +-180 0 -221 0 +161 0 +164 625 * +Fa +0 1e-007 320 0 +2 194 +0101000 ++160 633 * +Ve +1e-007 +4 0 4 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 407 0 1 4 +3 1162 1163CN 325 0 1 4 +7 923 924 195 0 +0 + +0101000 ++218 634 -158 0 * +Ed + 1e-007 1 1 0 +1 396 0 0 6.28318530717959 +2 1140 325 0 0 6.28318530717959 +2 1141 326 0 0 6.28318530717959 +6 925 195 0 +6 926 200 0 +0 + +0101100 ++158 0 -158 0 * +Wi + +0101000 ++157 628 +217 0 -156 628 -157 628 * +Fa +0 1e-007 325 0 +2 195 +0101000 ++155 634 * +Ed + 1e-007 1 1 0 +1 408 0 0 10 +2 1164 329 621 0 10 +2 1165 318 598 0 10 +6 927 198 621 +6 928 196 598 +0 + +0101000 ++186 0 -211 0 * +Wi + +0101000 +-210 0 +170 0 +153 0 +165 0 +182 0 +161 0 * +Fa +0 1e-007 318 0 +2 196 +0101000 ++152 619 * +Ed + 1e-007 1 1 0 +1 409 0 0 10 +2 1166 329 621 0 10 +2 1167 318 598 0 10 +6 929 198 621 +6 930 197 598 +0 + +0101000 ++185 0 -209 0 * +Wi + +0101000 +-208 0 -150 0 -203 0 +181 0 +198 0 -192 0 * +Fa +0 1e-007 318 0 +2 197 +0101000 ++149 619 * +Wi + +0101000 +-207 621 -153 0 +150 0 +184 621 * +Fa +0 1e-007 329 0 +2 198 +0101000 ++147 627 * +Ve +1e-007 +2 0 4 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 369 0 2 9 +3 1086 1087CN 320 0 2 9 +7 931 932 199 0 +0 + +0101000 +-189 635 +145 636 * +Ed + 1e-007 1 1 0 +1 397 0 1.5707963267949 7.85398163397448 +2 1142 326 0 1.5707963267949 7.85398163397448 +2 1143 320 599 1.5707963267949 7.85398163397448 +6 933 199 599 +6 934 200 0 +0 + +0101100 ++145 0 -145 0 * +Wi + +0101000 ++144 631 -188 0 +143 628 -144 631 * +Fa +0 1e-007 320 0 +2 199 +0101000 ++142 635 * +Wi + +0101000 ++156 0 * +Wi + +0101000 +-143 0 * +Fa +0 1e-007 326 0 +2 200 +0101000 ++140 0 +139 0 * +Sh + +0101100 ++299 589 +288 0 +283 598 +278 589 -273 617 +268 589 -263 617 +244 598 -239 618 +234 0 ++219 598 +205 621 -200 622 -195 622 -190 623 -177 621 -174 0 +172 0 -167 625 -162 625 +-159 626 -154 628 +151 598 +148 598 +146 621 -141 631 -138 628 * +So + +0100000 ++137 0 * +Co + +0100000 ++136 0 * +Ve +1e-007 +12.0005555727036 -0.100000000018675 -38 +0 0 + +0101100 +* +Ve +1e-007 +29.9994444272963 -0.100000000026636 -38 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 410 0 3.15270399333937 6.27207396742913 +2 1168 331 0 3.15270399333937 6.27207396742913 +2 1169 330 0 3.15270399333937 6.27207396742913 +6 935 202 0 +6 936 201 0 +0 + +0101100 ++134 641 -133 641 * +Ve +1e-007 +15.000833391212 -0.10000000001574 -38 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 411 0 -29.500833391212 -26.5005555727036 +2 1170 330 640 -29.500833391212 -26.5005555727036 +2 1171 332 642 -29.500833391212 -26.5005555727036 +6 937 201 640 +6 938 203 642 +0 + +0101000 ++131 0 -134 0 * +Ve +1e-007 +26.9991666087879 -0.100000000018591 -38 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 411 0 -44.4994444272963 -41.4991666087879 +2 1170 330 640 -44.4994444272963 -41.4991666087879 +2 1171 332 642 -44.4994444272963 -41.4991666087879 +6 939 201 640 +6 940 204 642 +0 + +0101000 ++133 0 -129 0 * +Ed + 1e-007 1 1 0 +1 412 0 4.72905641875538 7.83731419560331 +2 1172 330 0 4.72905641875538 7.83731419560331 +2 1173 333 645 4.72905641875538 7.83731419560331 +6 941 205 645 +6 942 201 0 +0 + +0101100 ++131 641 -129 641 * +Wi + +0101000 ++132 640 +130 0 +128 0 -127 640 * +Fa +0 1e-007 330 0 +2 201 +0101000 ++126 641 * +Ve +1e-007 +12.0005555727036 -0.100000000018675 -39 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 413 0 0 1 +2 1174 331 640 0 1 +2 1175 332 642 0 1 +6 943 202 640 +6 944 203 642 +0 + +0101000 ++124 0 -134 0 * +Ve +1e-007 +29.9994444272963 -0.100000000026636 -39 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 414 0 0 1 +2 1176 331 640 0 1 +2 1177 332 642 0 1 +6 945 202 640 +6 946 204 642 +0 + +0101000 ++122 0 -133 0 * +Ed + 1e-007 1 1 0 +1 415 0 3.15270399333937 6.27207396742913 +2 1178 331 0 3.15270399333937 6.27207396742913 +2 1179 334 0 3.15270399333937 6.27207396742913 +6 947 202 0 +6 948 206 0 +0 + +0101100 ++124 641 -122 641 * +Wi + +0101000 +-132 640 -123 0 +121 0 +120 640 * +Fa +0 1e-007 331 0 +2 202 +0101000 ++119 641 * +Ve +1e-007 +15.000833391212 -0.10000000001574 -39 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 416 0 0.5 1.5 +2 1180 333 647 0.5 1.5 +2 1181 332 642 0.5 1.5 +6 949 205 647 +6 950 203 642 +0 + +0101000 ++117 0 -131 0 * +Ed + 1e-007 1 1 0 +1 417 0 -29.500833391212 -26.5005555727036 +2 1182 334 640 -29.500833391212 -26.5005555727036 +2 1183 332 642 -29.500833391212 -26.5005555727036 +6 951 203 642 +6 952 206 640 +0 + +0101000 ++117 0 -124 0 * +Wi + +0101000 +-130 0 -116 0 +123 0 +115 0 * +Fa +0 1e-007 332 0 +2 203 +0101000 ++114 646 * +Ve +1e-007 +26.9991666087879 -0.100000000018591 -39 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 418 0 0.5 1.5 +2 1184 333 647 0.5 1.5 +2 1185 332 642 0.5 1.5 +6 953 205 647 +6 954 204 642 +0 + +0101000 ++112 0 -129 0 * +Ed + 1e-007 1 1 0 +1 417 0 -44.4994444272963 -41.4991666087879 +2 1182 334 640 -44.4994444272963 -41.4991666087879 +2 1183 332 642 -44.4994444272963 -41.4991666087879 +6 955 204 642 +6 956 206 640 +0 + +0101000 ++122 0 -112 0 * +Wi + +0101000 +-128 0 -121 0 +111 0 +110 0 * +Fa +0 1e-007 332 0 +2 204 +0101000 ++109 646 * +Ed + 1e-007 1 1 0 +1 419 0 4.72905641875539 7.83731419560332 +2 1186 334 0 4.72905641875539 7.83731419560332 +2 1187 333 645 4.72905641875539 7.83731419560332 +6 957 205 645 +6 958 206 0 +0 + +0101100 ++117 641 -112 641 * +Wi + +0101000 +-127 640 -116 0 +111 0 +107 640 * +Fa +0 1e-007 333 0 +2 205 +0101000 ++106 648 * +Wi + +0101000 ++120 640 +115 0 +110 0 -107 640 * +Fa +0 1e-007 334 0 +2 206 +0101000 ++104 641 * +Sh + +0101100 ++125 640 +118 640 +113 642 +108 642 -105 647 -103 640 * +So + +0100000 ++102 0 * +Co + +0100000 ++101 0 * +Ve +0.000268319171044726 +19.1666666666767 5.71304550033743 5.1 +0 0 + +0101100 +* +Ve +0.000268319171044726 +19.1191071428576 5.69756457268652 5.1 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 420 0 3.45211448825381 3.46045045769138 +2 1188 336 655 3.45211448825381 3.46045045769138 +2 1189 335 651 3.45211448825381 3.46045045769138 +6 959 207 651 +6 960 208 655 +0 + +0101000 ++99 0 -98 0 * +Ve +0.000268319171044726 +19.1666666666663 5.71304550033527 -1.5 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 421 0 14 20.6 +2 1190 335 651 14 20.6 +2 1191 337 660 14 20.6 +6 961 207 651 +6 962 209 660 +0 + +0101000 ++96 0 -99 0 * +Ve +0.000268319171044726 +18.4657738095215 5.43853818737102 6.5 +0 0 + +0101100 +* +Ed + 0.000268319171044726 1 1 0 +1 422 0 0 1 +2 1192 338 664 0 1 +2 1193 335 651 0 1 +6 963 210 664 +6 964 207 651 +0 + +0101000 ++98 0 -94 0 * +Ve +0.000268319171044726 +27 0 -1.5 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 423 0 1.5707963267949 3.45211448825556 +2 1194 335 651 1.5707963267949 3.45211448825556 +2 1195 339 665 1.5707963267949 3.45211448825556 +6 965 207 651 +6 966 211 665 +0 + +0101100 ++92 0 -96 0 * +Ve +0.000268319171044726 +18.4657738095098 -5.43853818736556 6.5 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 424 0 2.00685586902105 4.27632943815638 +2 1196 335 0 2.00685586902105 4.27632943815638 +2 1197 340 0 2.00685586902105 4.27632943815638 +6 967 207 0 +6 968 212 0 +0 + +0101100 ++94 652 -90 652 * +Ve +1e-007 +27 0 -14.9 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 425 0 0.6 14 +3 1198 1199CN 335 0 0.6 14 +7 969 970 207 0 +0 + +0101000 +-92 652 +88 652 * +Ve +0.000268319171044726 +19.119107142857 -5.69756457268857 5.1 +0 0 + +0101100 +* +Ed + 0.000268319171044726 1 1 0 +1 426 0 0 1 +2 1200 338 664 0 1 +2 1201 335 651 0 1 +6 971 210 664 +6 972 207 651 +0 + +0101000 ++90 0 -86 0 * +Ed + 1e-007 1 1 0 +1 427 0 1.5707963267949 7.85398163397448 +2 1202 341 655 1.5707963267949 7.85398163397448 +2 1203 335 651 1.5707963267949 7.85398163397448 +6 973 207 651 +6 974 213 655 +0 + +0101100 ++88 0 -88 0 * +Ve +0.000268319171044726 +19.1666666666767 -5.71304550033743 5.1 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 420 0 5.96432750307801 5.97266347251558 +2 1188 336 655 5.96432750307801 5.97266347251558 +2 1204 335 651 5.96432750307801 5.97266347251558 +6 975 207 651 +6 976 208 655 +0 + +0101000 +-83 0 +86 0 * +Ve +0.000268319171044726 +19.1666666666668 -5.71304550033375 -1.5 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 428 0 14 20.6 +2 1205 335 651 14 20.6 +2 1206 337 660 14 20.6 +6 977 207 651 +6 978 209 660 +0 + +0101000 ++81 0 -83 0 * +Ed + 1e-007 1 1 0 +1 423 0 5.97266347251382 7.85398163397448 +2 1207 335 651 5.97266347251382 7.85398163397448 +2 1195 339 665 5.97266347251382 7.85398163397448 +6 979 207 651 +6 980 211 665 +0 + +0101000 +-92 0 +81 0 * +Wi + +0101000 +-97 0 -95 0 -93 0 -91 0 -89 651 -87 651 -85 0 +84 0 -82 0 +87 651 ++80 0 -79 0 * +Fa +0 1e-007 335 0 +2 207 +0101000 ++78 652 * +Ed + 1e-007 1 1 0 +1 429 0 1.86048332079203 7.56429463997735 +2 1208 336 655 1.86048332079203 7.56429463997735 +2 1209 337 660 1.86048332079203 7.56429463997735 +6 981 209 660 +6 982 208 655 +0 + +0101100 ++99 0 -83 0 * +Ed + 1e-007 1 1 0 +1 430 0 1.86042064395885 7.56435731681043 +2 1210 338 664 1.86042064395885 7.56435731681043 +2 1211 336 655 1.86042064395885 7.56435731681043 +6 983 210 664 +6 984 208 655 +0 + +0101100 ++98 0 -86 0 * +Wi + +0101000 +-97 0 +76 0 -75 0 -82 0 * +Fa +0 1e-007 336 0 +2 208 +0101000 ++74 666 * +Ed + 1e-007 1 1 0 +1 431 0 1.86048332079207 7.56429463997739 +2 1212 339 0 1.86048332079207 7.56429463997739 +2 1213 337 656 1.86048332079207 7.56429463997739 +6 985 209 656 +6 986 211 0 +0 + +0101100 ++96 668 -81 668 * +Wi + +0101000 ++72 665 -95 0 +80 0 -76 0 * +Fa +0 1e-007 337 0 +2 209 +0101000 ++71 667 * +Ve +1e-007 +19.25 0 6.5 +0 0 + +0101100 +* +Ve +1e-007 +18 0 4 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 432 0 1.67705098312484 4.47213595499958 +3 1214 1215CN 338 0 1.67705098312484 4.47213595499958 +7 987 988 210 0 +0 + +0101000 ++69 669 -68 0 * +Ed + 1e-007 1 1 0 +1 433 0 1.28437468244846 1.5707963267949 +2 1216 338 664 1.28437468244846 1.5707963267949 +2 1217 340 651 1.28437468244846 1.5707963267949 +6 989 210 664 +6 990 212 651 +0 + +0101100 ++90 0 -69 0 * +Ed + 1e-007 1 1 0 +1 434 0 0 6.28318530717959 +2 1218 338 0 0 6.28318530717959 +2 1219 342 0 0 6.28318530717959 +6 991 210 0 +6 992 214 0 +0 + +0101100 ++68 0 -68 0 * +Ed + 1e-007 1 1 0 +1 433 0 1.5707963267949 1.85721797114143 +2 1220 338 664 1.5707963267949 1.85721797114143 +2 1217 340 651 1.5707963267949 1.85721797114143 +6 993 210 664 +6 994 212 651 +0 + +0101100 ++69 0 -94 0 * +Wi + +0101000 ++67 664 +66 0 -65 664 -85 0 -67 664 +75 0 +64 0 -93 0 * +Fa +0 1e-007 338 0 +2 210 +0101000 ++63 669 * +Wi + +0101000 +-72 665 -91 0 -79 0 * +Ve +1e-007 +34 0 -1.5 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 435 0 1.5707963267949 7.85398163397448 +2 1221 343 655 1.5707963267949 7.85398163397448 +2 1222 339 665 1.5707963267949 7.85398163397448 +6 995 215 655 +6 996 211 665 +0 + +0101100 ++60 0 -60 0 * +Wi + +0101000 ++59 0 * +Fa +0 1e-007 339 0 +2 211 +0101000 ++61 668 +58 668 * +Wi + +0101000 ++89 651 +64 0 +66 0 * +Fa +0 1e-007 340 0 +2 212 +0101000 ++56 652 * +Ve +1e-007 +34 0 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 436 0 0 6.28318530717959 +2 1223 343 0 0 6.28318530717959 +2 1224 341 0 0 6.28318530717959 +6 997 215 0 +6 998 213 0 +0 + +0101100 ++54 0 -54 0 * +Wi + +0101000 +-53 0 * +Wi + +0101000 +-84 0 * +Fa +0 1e-007 341 0 +2 213 +0101000 +-52 0 +51 666 * +Wi + +0101000 ++65 0 * +Ve +1e-007 +16 0 9 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 437 0 1.5707963267949 7.85398163397448 +2 1225 344 675 1.5707963267949 7.85398163397448 +2 1226 342 664 1.5707963267949 7.85398163397448 +6 999 216 675 +6 1000 214 664 +0 + +0101100 ++48 0 -48 0 * +Wi + +0101000 +-47 0 * +Fa +0 1e-007 342 0 +2 214 +0101000 ++49 0 +46 669 * +Ed + 1e-007 1 1 0 +1 438 0 0 13.4 +3 1227 1228CN 343 0 0 13.4 +7 1001 1002 215 0 +0 + +0101000 +-60 666 +54 0 * +Wi + +0101000 ++44 655 -59 0 +53 655 -44 655 * +Fa +0 1e-007 343 0 +2 215 +0101000 ++43 666 * +Ve +1e-007 +16 0 17 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 439 0 0.100000000000002 17 +3 1229 1230CN 344 0 0.100000000000002 17 +7 1003 1004 216 0 +0 + +0101000 ++48 676 -41 0 * +Ed + 1e-007 1 1 0 +1 440 0 0 6.28318530717959 +2 1231 344 0 0 6.28318530717959 +2 1232 345 0 0 6.28318530717959 +6 1005 216 0 +6 1006 217 0 +0 + +0101100 ++41 0 -41 0 * +Wi + +0101000 ++40 675 +47 0 -39 675 -40 675 * +Fa +0 1e-007 344 0 +2 216 +0101000 ++38 676 * +Wi + +0101000 ++39 0 * +Ve +1e-007 +15 0 17 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 441 0 1.5707963267949 7.85398163397448 +2 1233 345 0 1.5707963267949 7.85398163397448 +2 1234 346 677 1.5707963267949 7.85398163397448 +6 1007 218 677 +6 1008 217 0 +0 + +0101100 ++35 0 -35 0 * +Wi + +0101000 +-34 0 * +Fa +0 1e-007 345 0 +2 217 +0101000 ++36 0 +33 0 * +Ve +1e-007 +15 0 43.9 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 442 0 1 27.9 +3 1235 1236CN 346 0 1 27.9 +7 1009 1010 218 0 +0 + +0101000 +-31 679 +35 681 * +Ed + 1e-007 1 1 0 +1 443 0 1.5707963267949 7.85398163397448 +2 1237 346 680 1.5707963267949 7.85398163397448 +2 1238 347 684 1.5707963267949 7.85398163397448 +6 1011 218 680 +6 1012 219 684 +0 + +0101100 ++31 0 -31 0 * +Wi + +0101000 ++30 680 -29 0 +34 685 -30 680 * +Fa +0 1e-007 346 0 +2 218 +0101000 ++28 679 * +Ve +1e-007 +16 0 0 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 444 0 0 6.28318530717959 +2 1239 348 0 0 6.28318530717959 +2 1240 347 0 0 6.28318530717959 +6 1013 220 0 +6 1014 219 0 +0 + +0101100 ++26 0 -26 0 * +Wi + +0101000 +-25 0 * +Wi + +0101000 +-29 0 * +Fa +0 1e-007 347 0 +2 219 +0101000 +-24 0 +23 687 * +Ve +1e-007 +16 0 17 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 445 0 0 6.28318530717959 +2 1241 348 0 0 6.28318530717959 +2 1242 349 0 0 6.28318530717959 +6 1015 220 0 +6 1016 221 0 +0 + +0101100 ++21 0 -21 0 * +Ed + 1e-007 1 1 0 +1 446 0 0 17 +3 1243 1244CN 348 0 0 17 +7 1017 1018 220 0 +0 + +0101000 +-21 0 +26 0 * +Wi + +0101000 +-20 0 +19 0 +25 0 -19 0 * +Fa +0 1e-007 348 0 +2 220 +0101000 ++18 0 * +Wi + +0101000 ++20 0 * +Ve +1e-007 +14 0 69.9 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 447 0 1.5707963267949 7.85398163397448 +2 1245 349 689 1.5707963267949 7.85398163397448 +2 1246 350 692 1.5707963267949 7.85398163397448 +6 1019 222 692 +6 1020 221 689 +0 + +0101100 ++15 0 -15 0 * +Wi + +0101000 +-14 0 * +Fa +0 1e-007 349 0 +2 221 +0101000 ++16 0 +13 688 * +Ve +1e-007 +14 0 50 +0 0 + +0101100 +* +Ed + 1e-007 1 1 0 +1 448 0 4.90000000000001 50 +3 1247 1248CN 350 0 4.90000000000001 50 +7 1021 1022 222 0 +0 + +0101000 ++15 694 -11 0 * +Ed + 1e-007 1 1 0 +1 449 0 0 6.28318530717959 +2 1249 350 0 0 6.28318530717959 +2 1250 351 0 0 6.28318530717959 +6 1023 222 0 +6 1024 223 0 +0 + +0101100 ++11 0 -11 0 * +Wi + +0101000 ++10 692 +14 0 -9 692 -10 692 * +Fa +0 1e-007 350 0 +2 222 +0101000 ++8 694 * +Wi + +0101000 ++9 0 * +Fa +0 1e-007 351 0 +2 223 +0101000 ++6 0 * +Sh + +0101100 +-77 651 +73 655 +70 660 +62 664 +57 665 -55 651 -50 655 +45 664 +42 655 +37 675 ++32 675 +27 678 -22 686 +17 686 +12 686 +7 693 +5 693 * +So + +0100000 ++4 0 * +Co + +0100000 ++3 0 * +Co + +1100000 ++1311 0 +1115 0 +994 0 +959 0 +893 0 +841 0 +818 251 +794 271 +673 0 +650 413 ++615 0 +571 0 +522 0 +315 0 +135 0 +100 0 +2 0 * + ++1 0 \ No newline at end of file From 4a3de793cf9ab5c82e80f67f3ca949ef262f7ccf Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Fri, 15 Nov 2024 03:24:45 +0100 Subject: [PATCH 031/157] Fix ReadFromString and WriteToString methods of BRepTools_ShapeSet --- src/SWIG_files/wrapper/BRepTools.i | 36 ++++++++++++++++------------ src/SWIG_files/wrapper/BRepTools.pyi | 7 +++--- 2 files changed, 25 insertions(+), 18 deletions(-) diff --git a/src/SWIG_files/wrapper/BRepTools.i b/src/SWIG_files/wrapper/BRepTools.i index c29136741..611834137 100644 --- a/src/SWIG_files/wrapper/BRepTools.i +++ b/src/SWIG_files/wrapper/BRepTools.i @@ -2549,24 +2549,30 @@ Writes the triangulation on the stream in a format that can be read back by ") WriteTriangulation; void WriteTriangulation(std::ostream &OutValue, const Standard_Boolean Compact = Standard_True, const Message_ProgressRange & theProgress = Message_ProgressRange()); -}; + %feature("autodoc", "Serializes TopoDS_Shape to string. If full_precision is False, the default precision of std::stringstream is used which regularly causes rounding.") WriteToString; + %extend{ + static std::string WriteToString(const TopoDS_Shape & shape, bool full_precision = true) { + std::stringstream s; + if(full_precision) { + s.precision(17); + s.setf(std::ios::scientific); + } + BRepTools::Write(shape, s); + return s.str();} + }; + %feature("autodoc", "Deserializes TopoDS_Shape from string") ReadFromString; + %extend{ + static TopoDS_Shape ReadFromString(const std::string & src) { + std::stringstream s(src); + TopoDS_Shape shape; + BRep_Builder b; + BRepTools::Read(shape, s, b); + return shape;} + }; + }; -%extend BRepTools_ShapeSet { - static TopoDS_Shape ReadFromString(const std::string & src) { - std::stringstream s(src); - TopoDS_Shape shape; - BRep_Builder b; - BRepTools::Read(shape, s, b); - return shape; - }; - std::string WriteToString() { - std::stringstream s; - self->Write(s); - return s.str(); - }; -}; %extend BRepTools_ShapeSet { %pythoncode { __repr__ = _dumps_object diff --git a/src/SWIG_files/wrapper/BRepTools.pyi b/src/SWIG_files/wrapper/BRepTools.pyi index bc5b8a03a..5290844ce 100644 --- a/src/SWIG_files/wrapper/BRepTools.pyi +++ b/src/SWIG_files/wrapper/BRepTools.pyi @@ -247,9 +247,10 @@ class BRepTools_ShapeSet(TopTools_ShapeSet): def WritePolygon3D(self, Compact: Optional[bool] = True, theProgress: Optional[Message_ProgressRange] = Message_ProgressRange()) -> str: ... def WritePolygonOnTriangulation(self, Compact: Optional[bool] = True, theProgress: Optional[Message_ProgressRange] = Message_ProgressRange()) -> str: ... def WriteTriangulation(self, Compact: Optional[bool] = True, theProgress: Optional[Message_ProgressRange] = Message_ProgressRange()) -> str: ... - - def ReadFromString(str: src) -> TopoDS_Shape - def WriteToString() -> str + @staticmethod + def WriteToString(sh: TopoDS_Shape) -> str: ... + @staticmethod + def ReadFromString(s: str) -> TopoDS_Shape: ... class BRepTools_Substitution: def __init__(self) -> None: ... From a2037241a46b5f5e2b8bed3ca8c1a3bf1e7f5449 Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Fri, 15 Nov 2024 05:16:46 +0100 Subject: [PATCH 032/157] Add wrapper for SelectMgr_FrustumBuiler,SelectMgr_ToleranceMap,SelectMgr_ViewerSelector,SelectMgr_SensitiveEntitySet see #1380 --- src/SWIG_files/wrapper/SelectMgr.i | 1695 +++++++++++++++++++++++--- src/SWIG_files/wrapper/SelectMgr.pyi | 116 +- src/SWIG_files/wrapper/generator.log | 18 +- 3 files changed, 1664 insertions(+), 165 deletions(-) diff --git a/src/SWIG_files/wrapper/SelectMgr.i b/src/SWIG_files/wrapper/SelectMgr.i index eb9b0c153..6fd904d7f 100644 --- a/src/SWIG_files/wrapper/SelectMgr.i +++ b/src/SWIG_files/wrapper/SelectMgr.i @@ -55,8 +55,10 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_selectmgr.html" #include #include #include -#include #include +#include +#include +#include #include #include #include @@ -101,8 +103,10 @@ https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_selectmgr.html" %import TopLoc.i %import V3d.i %import TopAbs.i -%import BVH.i %import Bnd.i +%import BVH.i +%import TColStd.i +%import TCollection.i %pythoncode { from enum import IntEnum @@ -226,11 +230,13 @@ SelectMgr_TOU_None = SelectMgr_TypeOfUpdate.SelectMgr_TOU_None %wrap_handle(SelectMgr_BaseIntersector) %wrap_handle(SelectMgr_EntityOwner) %wrap_handle(SelectMgr_Filter) +%wrap_handle(SelectMgr_FrustumBuilder) %wrap_handle(SelectMgr_SelectableObject) %wrap_handle(SelectMgr_Selection) %wrap_handle(SelectMgr_SelectionImageFiller) %wrap_handle(SelectMgr_SelectionManager) %wrap_handle(SelectMgr_SensitiveEntity) +%wrap_handle(SelectMgr_ViewerSelector) %wrap_handle(SelectMgr_AxisIntersector) %wrap_handle(SelectMgr_CompositionFilter) %wrap_handle(SelectMgr_AndFilter) @@ -1664,6 +1670,173 @@ Indicates that the selected interactive object passes the filter. the owner, ano /********************************* * class SelectMgr_FrustumBuilder * *********************************/ +class SelectMgr_FrustumBuilder : public Standard_Transient { + public: + /****************** SelectMgr_FrustumBuilder ******************/ + /**** md5 signature: 5c09c1ed5df49feec0cc53d573508e5d ****/ + %feature("compactdefaultargs") SelectMgr_FrustumBuilder; + %feature("autodoc", "Return +------- +None + +Description +----------- +Creates new frustum builder with empty matrices. +") SelectMgr_FrustumBuilder; + SelectMgr_FrustumBuilder(); + + /****************** Camera ******************/ + /**** md5 signature: 9722357b74290d4bf6f13f9113469012 ****/ + %feature("compactdefaultargs") Camera; + %feature("autodoc", "Return +------- +opencascade::handle + +Description +----------- +Returns current camera. +") Camera; + const opencascade::handle & Camera(); + + /****************** InvalidateViewport ******************/ + /**** md5 signature: 42a7d3cb51a659b4fba1ecab2bb02ae7 ****/ + %feature("compactdefaultargs") InvalidateViewport; + %feature("autodoc", "Return +------- +None + +Description +----------- +No available documentation. +") InvalidateViewport; + void InvalidateViewport(); + + /****************** ProjectPntOnViewPlane ******************/ + /**** md5 signature: b57ec803227d022418a9752b363651c8 ****/ + %feature("compactdefaultargs") ProjectPntOnViewPlane; + %feature("autodoc", " +Parameters +---------- +theX: float +theY: float +theZ: float + +Return +------- +gp_Pnt + +Description +----------- +Projects 2d screen point onto view frustum plane: thez = 0 - near plane, thez = 1 - far plane. +") ProjectPntOnViewPlane; + gp_Pnt ProjectPntOnViewPlane(const Standard_Real & theX, const Standard_Real & theY, const Standard_Real & theZ); + + /****************** SetCamera ******************/ + /**** md5 signature: feb4846a043de91d4d1b29714dfe3b70 ****/ + %feature("compactdefaultargs") SetCamera; + %feature("autodoc", " +Parameters +---------- +theCamera: Graphic3d_Camera + +Return +------- +None + +Description +----------- +Stores current camera. +") SetCamera; + void SetCamera(const opencascade::handle & theCamera); + + /****************** SetViewport ******************/ + /**** md5 signature: 8a132d12573d3301f6dc1103aa3c5d06 ****/ + %feature("compactdefaultargs") SetViewport; + %feature("autodoc", " +Parameters +---------- +theX: float +theY: float +theWidth: float +theHeight: float + +Return +------- +None + +Description +----------- +Stores current viewport coordinates. +") SetViewport; + void SetViewport(const Standard_Real theX, const Standard_Real theY, const Standard_Real theWidth, const Standard_Real theHeight); + + /****************** SetWindowSize ******************/ + /**** md5 signature: 8f5369c74a4835dacda32c89cfdc6f2a ****/ + %feature("compactdefaultargs") SetWindowSize; + %feature("autodoc", " +Parameters +---------- +theWidth: int +theHeight: int + +Return +------- +None + +Description +----------- +Stores current window width and height. +") SetWindowSize; + void SetWindowSize(const Standard_Integer theWidth, const Standard_Integer theHeight); + + /****************** SignedPlanePntDist ******************/ + /**** md5 signature: 197b23e7016adf49f5250381a86e2bc7 ****/ + %feature("compactdefaultargs") SignedPlanePntDist; + %feature("autodoc", " +Parameters +---------- +theEq: SelectMgr_Vec3 +thePnt: SelectMgr_Vec3 + +Return +------- +float + +Description +----------- +Calculates signed distance between plane with equation theeq and point thepnt. +") SignedPlanePntDist; + Standard_Real SignedPlanePntDist(const SelectMgr_Vec3 & theEq, const SelectMgr_Vec3 & thePnt); + + /****************** WindowSize ******************/ + /**** md5 signature: b6b9e026658a5426a88d46691f9f9543 ****/ + %feature("compactdefaultargs") WindowSize; + %feature("autodoc", " +Parameters +---------- + +Return +------- +theWidth: int +theHeight: int + +Description +----------- +No available documentation. +") WindowSize; + void WindowSize(Standard_Integer &OutValue, Standard_Integer &OutValue); + +}; + + +%make_alias(SelectMgr_FrustumBuilder) + +%extend SelectMgr_FrustumBuilder { + %pythoncode { + __repr__ = _dumps_object + } +}; + /*********************************** * class SelectMgr_SelectableObject * ***********************************/ @@ -1702,6 +1875,24 @@ Adds the selection aselection with the selection mode index amode to this framew ") AddSelection; void AddSelection(const opencascade::handle & aSelection, const Standard_Integer aMode); + /****************** BndBoxOfSelected ******************/ + /**** md5 signature: 443f93b07a9907ef337840cc8b4ae9ed ****/ + %feature("compactdefaultargs") BndBoxOfSelected; + %feature("autodoc", " +Parameters +---------- +theOwners: SelectMgr_IndexedMapOfOwner + +Return +------- +Bnd_Box + +Description +----------- +Returns a bounding box of sensitive entities with the owners given if they are a part of activated selection. +") BndBoxOfSelected; + Bnd_Box BndBoxOfSelected(const opencascade::handle & theOwners); + /****************** ClearDynamicHighlight ******************/ /**** md5 signature: d0352ce4e2dd5f23d593337c0a535955 ****/ %feature("compactdefaultargs") ClearDynamicHighlight; @@ -2141,10 +2332,6 @@ Updates locations in all sensitive entities from and in correspondi %extend SelectMgr_SelectableObject { %pythoncode { __repr__ = _dumps_object - - @methodnotwrapped - def BndBoxOfSelected(self): - pass } }; @@ -2412,6 +2599,19 @@ Creates instances of all available selecting volume types. ") SelectMgr_SelectingVolumeManager; SelectMgr_SelectingVolumeManager(); + /****************** ActiveVolume ******************/ + /**** md5 signature: 8fea4d782109be39039e6429b87f144f ****/ + %feature("compactdefaultargs") ActiveVolume; + %feature("autodoc", "Return +------- +opencascade::handle + +Description +----------- +Returns active selecting volume that was built during last run of occt selection mechanism. +") ActiveVolume; + const opencascade::handle & ActiveVolume(); + /****************** AllowOverlapDetection ******************/ /**** md5 signature: 835f65572d504a5580a4fc1007d46f5c ****/ %feature("compactdefaultargs") AllowOverlapDetection; @@ -3263,10 +3463,6 @@ Returns window size. %extend SelectMgr_SelectingVolumeManager { %pythoncode { __repr__ = _dumps_object - - @methodnotwrapped - def ActiveVolume(self): - pass } }; @@ -4035,125 +4231,1119 @@ Marks entity as active for selection. /************************************* * class SelectMgr_SensitiveEntitySet * *************************************/ -/******************************** -* class SelectMgr_SortCriterion * -********************************/ -class SelectMgr_SortCriterion { +class SelectMgr_SensitiveEntitySet : public BVH_PrimitiveSet3d { public: - opencascade::handle Entity; - gp_Pnt Point; - Graphic3d_Vec3 Normal; - float Depth; - float MinDist; - float Tolerance; - int Priority; - int ZLayerPosition; - int NbOwnerMatches; - /****************** SelectMgr_SortCriterion ******************/ - /**** md5 signature: 7c43477619c7a9df7500d7db5ac6145a ****/ - %feature("compactdefaultargs") SelectMgr_SortCriterion; - %feature("autodoc", "Return + /****************** SelectMgr_SensitiveEntitySet ******************/ + /**** md5 signature: 4816c11ef4f210373f40e888a47a7c51 ****/ + %feature("compactdefaultargs") SelectMgr_SensitiveEntitySet; + %feature("autodoc", " +Parameters +---------- +theBuilder: Select3D_BVHBuilder3d + +Return ------- None Description ----------- Empty constructor. -") SelectMgr_SortCriterion; - SelectMgr_SortCriterion(); +") SelectMgr_SensitiveEntitySet; + SelectMgr_SensitiveEntitySet(const opencascade::handle & theBuilder); - /****************** IsCloserDepth ******************/ - /**** md5 signature: f54c02ecbb70ec9f3fd99f77b918a45b ****/ - %feature("compactdefaultargs") IsCloserDepth; + /****************** Append ******************/ + /**** md5 signature: f1f2d6cb2f3466312e4080ad7518780c ****/ + %feature("compactdefaultargs") Append; %feature("autodoc", " Parameters ---------- -theOther: SelectMgr_SortCriterion +theEntity: SelectMgr_SensitiveEntity Return ------- -bool +None Description ----------- -Compare with another item by depth, priority and mindist. -") IsCloserDepth; - bool IsCloserDepth(const SelectMgr_SortCriterion & theOther); +Adds new entity to the set and marks bvh tree for rebuild. +") Append; + void Append(const opencascade::handle & theEntity); - /****************** IsHigherPriority ******************/ - /**** md5 signature: 7ef827a8f908cd593cb19194e4c3327d ****/ - %feature("compactdefaultargs") IsHigherPriority; + /****************** Append ******************/ + /**** md5 signature: e6591546193c1ce19d53703585f4f17a ****/ + %feature("compactdefaultargs") Append; %feature("autodoc", " Parameters ---------- -theOther: SelectMgr_SortCriterion +theSelection: SelectMgr_Selection Return ------- -bool +None Description ----------- -Compare with another item using old logic (occt version <= 6.3.1) with priority considered preceding depth. -") IsHigherPriority; - bool IsHigherPriority(const SelectMgr_SortCriterion & theOther); - -}; - +Adds every entity of selection theselection to the set and marks bvh tree for rebuild. +") Append; + void Append(const opencascade::handle & theSelection); -%extend SelectMgr_SortCriterion { - %pythoncode { - __repr__ = _dumps_object - } -}; + /****************** Box ******************/ + /**** md5 signature: 22c3eb5645e6347dd0035e626594efa9 ****/ + %feature("compactdefaultargs") Box; + %feature("autodoc", " +Parameters +---------- +theIndex: int -/******************************* -* class SelectMgr_ToleranceMap * -*******************************/ -/******************************** -* class SelectMgr_ViewClipRange * -********************************/ -class SelectMgr_ViewClipRange { - public: - /****************** SelectMgr_ViewClipRange ******************/ - /**** md5 signature: 26502fffc9d3cfab4e9764855bb46286 ****/ - %feature("compactdefaultargs") SelectMgr_ViewClipRange; - %feature("autodoc", "Return +Return ------- -None +Select3D_BndBox3d Description ----------- -Creates an empty clip range. -") SelectMgr_ViewClipRange; - SelectMgr_ViewClipRange(); +Returns bounding box of entity with index theidx. +") Box; + virtual Select3D_BndBox3d Box(const Standard_Integer theIndex); - /****************** AddClipSubRange ******************/ - /**** md5 signature: 629945498bfae195a79192ef4690f13f ****/ - %feature("compactdefaultargs") AddClipSubRange; + /****************** Center ******************/ + /**** md5 signature: 48de7c6a76513e5acf63fc9dd37f0c0a ****/ + %feature("compactdefaultargs") Center; %feature("autodoc", " Parameters ---------- -theRange: Bnd_Range +theIndex: int +theAxis: int Return ------- -None +float Description ----------- -Adds a clipping sub-range (for clipping chains). -") AddClipSubRange; - void AddClipSubRange(const Bnd_Range & theRange); +Returns geometry center of sensitive entity index theidx along the given axis theaxis. +") Center; + virtual Standard_Real Center(const Standard_Integer theIndex, const Standard_Integer theAxis); - /****************** AddClippingPlanes ******************/ - /**** md5 signature: 530c5e2e47a475c0ff904682df4ec3ab ****/ - %feature("compactdefaultargs") AddClippingPlanes; + /****************** GetSensitiveById ******************/ + /**** md5 signature: 0ecedd38df9fbb4e470a13be1d749c50 ****/ + %feature("compactdefaultargs") GetSensitiveById; %feature("autodoc", " Parameters ---------- -thePlanes: Graphic3d_SequenceOfHClipPlane -thePickRay: gp_Ax1 +theIndex: int + +Return +------- +opencascade::handle + +Description +----------- +Returns the entity with index theindex in the set. +") GetSensitiveById; + const opencascade::handle & GetSensitiveById(const Standard_Integer theIndex); + + /****************** HasEntityWithPersistence ******************/ + /**** md5 signature: 881be9af2b4b9997aeaef6aa199c6613 ****/ + %feature("compactdefaultargs") HasEntityWithPersistence; + %feature("autodoc", "Return +------- +bool + +Description +----------- +Returns map of entities. +") HasEntityWithPersistence; + Standard_Boolean HasEntityWithPersistence(); + + /****************** Owners ******************/ + /**** md5 signature: 70c8cbbe5355e413322d0ca24aff8221 ****/ + %feature("compactdefaultargs") Owners; + %feature("autodoc", "Return +------- +SelectMgr_MapOfOwners + +Description +----------- +Returns map of owners. +") Owners; + const SelectMgr_MapOfOwners & Owners(); + + /****************** Remove ******************/ + /**** md5 signature: a10f175ccd1487b6c7e3d1ea673a92cf ****/ + %feature("compactdefaultargs") Remove; + %feature("autodoc", " +Parameters +---------- +theSelection: SelectMgr_Selection + +Return +------- +None + +Description +----------- +Removes every entity of selection theselection from the set and marks bvh tree for rebuild. +") Remove; + void Remove(const opencascade::handle & theSelection); + + /****************** Sensitives ******************/ + /**** md5 signature: 67c2bd61a84de23112cd1ec72645954f ****/ + %feature("compactdefaultargs") Sensitives; + %feature("autodoc", "Return +------- +SelectMgr_IndexedMapOfHSensitive + +Description +----------- +Returns map of entities. +") Sensitives; + const SelectMgr_IndexedMapOfHSensitive & Sensitives(); + + /****************** Size ******************/ + /**** md5 signature: 8b9290cdf9c653fc150b9b31776f3f21 ****/ + %feature("compactdefaultargs") Size; + %feature("autodoc", "Return +------- +int + +Description +----------- +Returns the amount of entities. +") Size; + virtual Standard_Integer Size(); + + /****************** Swap ******************/ + /**** md5 signature: 4f3a1d9a66c5faf13938607dcfe6badf ****/ + %feature("compactdefaultargs") Swap; + %feature("autodoc", " +Parameters +---------- +theIndex1: int +theIndex2: int + +Return +------- +None + +Description +----------- +Swaps items with indexes theidx1 and theidx2. +") Swap; + virtual void Swap(const Standard_Integer theIndex1, const Standard_Integer theIndex2); + +}; + + +%extend SelectMgr_SensitiveEntitySet { + %pythoncode { + __repr__ = _dumps_object + } +}; + +/******************************** +* class SelectMgr_SortCriterion * +********************************/ +class SelectMgr_SortCriterion { + public: + opencascade::handle Entity; + gp_Pnt Point; + Graphic3d_Vec3 Normal; + float Depth; + float MinDist; + float Tolerance; + int Priority; + int ZLayerPosition; + int NbOwnerMatches; + /****************** SelectMgr_SortCriterion ******************/ + /**** md5 signature: 7c43477619c7a9df7500d7db5ac6145a ****/ + %feature("compactdefaultargs") SelectMgr_SortCriterion; + %feature("autodoc", "Return +------- +None + +Description +----------- +Empty constructor. +") SelectMgr_SortCriterion; + SelectMgr_SortCriterion(); + + /****************** IsCloserDepth ******************/ + /**** md5 signature: f54c02ecbb70ec9f3fd99f77b918a45b ****/ + %feature("compactdefaultargs") IsCloserDepth; + %feature("autodoc", " +Parameters +---------- +theOther: SelectMgr_SortCriterion + +Return +------- +bool + +Description +----------- +Compare with another item by depth, priority and mindist. +") IsCloserDepth; + bool IsCloserDepth(const SelectMgr_SortCriterion & theOther); + + /****************** IsHigherPriority ******************/ + /**** md5 signature: 7ef827a8f908cd593cb19194e4c3327d ****/ + %feature("compactdefaultargs") IsHigherPriority; + %feature("autodoc", " +Parameters +---------- +theOther: SelectMgr_SortCriterion + +Return +------- +bool + +Description +----------- +Compare with another item using old logic (occt version <= 6.3.1) with priority considered preceding depth. +") IsHigherPriority; + bool IsHigherPriority(const SelectMgr_SortCriterion & theOther); + +}; + + +%extend SelectMgr_SortCriterion { + %pythoncode { + __repr__ = _dumps_object + } +}; + +/******************************* +* class SelectMgr_ToleranceMap * +*******************************/ +class SelectMgr_ToleranceMap { + public: + /****************** SelectMgr_ToleranceMap ******************/ + /**** md5 signature: 46903483ae2b6a3dcfe4495acae47180 ****/ + %feature("compactdefaultargs") SelectMgr_ToleranceMap; + %feature("autodoc", "Return +------- +None + +Description +----------- +Sets tolerance values to -1.0. +") SelectMgr_ToleranceMap; + SelectMgr_ToleranceMap(); + + /****************** Add ******************/ + /**** md5 signature: 13e4d46ecc5d04d15ecf3e33fa0d0fb9 ****/ + %feature("compactdefaultargs") Add; + %feature("autodoc", " +Parameters +---------- +theTolerance: int + +Return +------- +None + +Description +----------- +Adds the value given to map, checks if the current tolerance value should be replaced by thetolerance. +") Add; + void Add(const Standard_Integer & theTolerance); + + /****************** CustomTolerance ******************/ + /**** md5 signature: 80443541a6d32449a668e7ed1d7175c7 ****/ + %feature("compactdefaultargs") CustomTolerance; + %feature("autodoc", "Return +------- +int + +Description +----------- +Returns the value of custom tolerance regardless of it validity. +") CustomTolerance; + Standard_Integer CustomTolerance(); + + /****************** Decrement ******************/ + /**** md5 signature: 5c1f63b3f8f16be162652bae13c57bea ****/ + %feature("compactdefaultargs") Decrement; + %feature("autodoc", " +Parameters +---------- +theTolerance: int + +Return +------- +None + +Description +----------- +Decrements a counter of the tolerance given, checks if the current tolerance value should be recalculated. +") Decrement; + void Decrement(const Standard_Integer & theTolerance); + + /****************** IsCustomTolSet ******************/ + /**** md5 signature: 6e50033a4f64950f8de6c305bf9ea757 ****/ + %feature("compactdefaultargs") IsCustomTolSet; + %feature("autodoc", "Return +------- +bool + +Description +----------- +Returns true if custom tolerance value is greater than zero. +") IsCustomTolSet; + Standard_Boolean IsCustomTolSet(); + + /****************** ResetDefaults ******************/ + /**** md5 signature: b0dbee72b4ad8d6a406672850505804e ****/ + %feature("compactdefaultargs") ResetDefaults; + %feature("autodoc", "Return +------- +None + +Description +----------- +Unsets a custom tolerance and enables adaptive checks. +") ResetDefaults; + void ResetDefaults(); + + /****************** SetCustomTolerance ******************/ + /**** md5 signature: aee5cafe32c5f72bbbfba864b14d2d3b ****/ + %feature("compactdefaultargs") SetCustomTolerance; + %feature("autodoc", " +Parameters +---------- +theTolerance: int + +Return +------- +None + +Description +----------- +Sets tolerance to the given one and disables adaptive checks. +") SetCustomTolerance; + void SetCustomTolerance(const Standard_Integer theTolerance); + + /****************** Tolerance ******************/ + /**** md5 signature: 855cf5f31b30ac5d20a8b2c49d29d1b9 ****/ + %feature("compactdefaultargs") Tolerance; + %feature("autodoc", "Return +------- +int + +Description +----------- +Returns a current tolerance that must be applied. +") Tolerance; + Standard_Integer Tolerance(); + +}; + + +%extend SelectMgr_ToleranceMap { + %pythoncode { + __repr__ = _dumps_object + } +}; + +/******************************** +* class SelectMgr_ViewClipRange * +********************************/ +class SelectMgr_ViewClipRange { + public: + /****************** SelectMgr_ViewClipRange ******************/ + /**** md5 signature: 26502fffc9d3cfab4e9764855bb46286 ****/ + %feature("compactdefaultargs") SelectMgr_ViewClipRange; + %feature("autodoc", "Return +------- +None + +Description +----------- +Creates an empty clip range. +") SelectMgr_ViewClipRange; + SelectMgr_ViewClipRange(); + + /****************** AddClipSubRange ******************/ + /**** md5 signature: 629945498bfae195a79192ef4690f13f ****/ + %feature("compactdefaultargs") AddClipSubRange; + %feature("autodoc", " +Parameters +---------- +theRange: Bnd_Range + +Return +------- +None + +Description +----------- +Adds a clipping sub-range (for clipping chains). +") AddClipSubRange; + void AddClipSubRange(const Bnd_Range & theRange); + + /****************** AddClippingPlanes ******************/ + /**** md5 signature: 530c5e2e47a475c0ff904682df4ec3ab ****/ + %feature("compactdefaultargs") AddClippingPlanes; + %feature("autodoc", " +Parameters +---------- +thePlanes: Graphic3d_SequenceOfHClipPlane +thePickRay: gp_Ax1 + +Return +------- +None + +Description +----------- +Add clipping planes. planes and picking ray should be defined in the same coordinate system. +") AddClippingPlanes; + void AddClippingPlanes(const Graphic3d_SequenceOfHClipPlane & thePlanes, const gp_Ax1 & thePickRay); + + /****************** ChangeUnclipRange ******************/ + /**** md5 signature: 58b75e3eeaf4dd4dbdda4bc0bfa4ec3e ****/ + %feature("compactdefaultargs") ChangeUnclipRange; + %feature("autodoc", "Return +------- +Bnd_Range + +Description +----------- +Returns the main unclipped range; [-inf, inf] by default. +") ChangeUnclipRange; + Bnd_Range & ChangeUnclipRange(); + + + /****************** DumpJson ******************/ + %feature("autodoc", " +Parameters +---------- +depth: int, default=-1 + +Return +------- +str + +Description +----------- +Dump the object to JSON string. +") DumpJson; + %extend{ + std::string DumpJson(int depth=-1) { + std::stringstream s; + self->DumpJson(s, depth); + return "{" + s.str() + "}" ;} + }; + /****************** GetNearestDepth ******************/ + /**** md5 signature: a7d31c5d6b83b64f1f6f7f0def838d0f ****/ + %feature("compactdefaultargs") GetNearestDepth; + %feature("autodoc", " +Parameters +---------- +theRange: Bnd_Range + +Return +------- +theDepth: float + +Description +----------- +Calculates the min not clipped value from the range. returns false if the whole range is clipped. +") GetNearestDepth; + Standard_Boolean GetNearestDepth(const Bnd_Range & theRange, Standard_Real &OutValue); + + /****************** IsClipped ******************/ + /**** md5 signature: 28a5904272062fde8c7fd50816e6a223 ****/ + %feature("compactdefaultargs") IsClipped; + %feature("autodoc", " +Parameters +---------- +theDepth: float + +Return +------- +bool + +Description +----------- +Check if the given depth is not within clipping range(s), e.g. true means depth is clipped. +") IsClipped; + Standard_Boolean IsClipped(const Standard_Real theDepth); + + /****************** SetVoid ******************/ + /**** md5 signature: 4e44fd52f6a76368c77b381fe1482a21 ****/ + %feature("compactdefaultargs") SetVoid; + %feature("autodoc", "Return +------- +None + +Description +----------- +Clears clipping range. +") SetVoid; + void SetVoid(); + +}; + + +%extend SelectMgr_ViewClipRange { + %pythoncode { + __repr__ = _dumps_object + } +}; + +/********************************* +* class SelectMgr_ViewerSelector * +*********************************/ +class SelectMgr_ViewerSelector : public Standard_Transient { + public: + /****************** SelectMgr_ViewerSelector ******************/ + /**** md5 signature: 7b62f34747cb971942db0314921f3d1b ****/ + %feature("compactdefaultargs") SelectMgr_ViewerSelector; + %feature("autodoc", "Return +------- +None + +Description +----------- +Constructs an empty selector object. +") SelectMgr_ViewerSelector; + SelectMgr_ViewerSelector(); + + /****************** ActiveOwners ******************/ + /**** md5 signature: e83e54ed1a2d7643638b27424fa672fc ****/ + %feature("compactdefaultargs") ActiveOwners; + %feature("autodoc", " +Parameters +---------- +theOwners: SelectMgr_EntityOwner + +Return +------- +None + +Description +----------- +Returns the list of active entity owners. +") ActiveOwners; + void ActiveOwners(NCollection_List > & theOwners); + + /****************** AddSelectableObject ******************/ + /**** md5 signature: f218951d73442065913cd4c14a6fa242 ****/ + %feature("compactdefaultargs") AddSelectableObject; + %feature("autodoc", " +Parameters +---------- +theObject: SelectMgr_SelectableObject + +Return +------- +None + +Description +----------- +Adds new object to the map of selectable objects. +") AddSelectableObject; + void AddSelectableObject(const opencascade::handle & theObject); + + /****************** AddSelectionToObject ******************/ + /**** md5 signature: 2141463a745216f29058bc1f4607d6d5 ****/ + %feature("compactdefaultargs") AddSelectionToObject; + %feature("autodoc", " +Parameters +---------- +theObject: SelectMgr_SelectableObject +theSelection: SelectMgr_Selection + +Return +------- +None + +Description +----------- +Adds new selection to the object and builds its bvh tree. +") AddSelectionToObject; + void AddSelectionToObject(const opencascade::handle & theObject, const opencascade::handle & theSelection); + + /****************** AllowOverlapDetection ******************/ + /**** md5 signature: 8ba9bf76b94978880f7a1365cdd5ce26 ****/ + %feature("compactdefaultargs") AllowOverlapDetection; + %feature("autodoc", " +Parameters +---------- +theIsToAllow: bool + +Return +------- +None + +Description +----------- +Is used for rectangular selection only if theistoallow is false, only fully included sensitives will be detected, otherwise the algorithm will mark both included and overlapped entities as matched. +") AllowOverlapDetection; + void AllowOverlapDetection(const Standard_Boolean theIsToAllow); + + /****************** Clear ******************/ + /**** md5 signature: 75abd67f132413fc11c19201aabf1126 ****/ + %feature("compactdefaultargs") Clear; + %feature("autodoc", "Return +------- +None + +Description +----------- +Empties all the tables, removes all selections... +") Clear; + void Clear(); + + /****************** ClearPicked ******************/ + /**** md5 signature: b496614da1f164c06376bcf4c0aa4d2f ****/ + %feature("compactdefaultargs") ClearPicked; + %feature("autodoc", "Return +------- +None + +Description +----------- +Clears picking results. +") ClearPicked; + void ClearPicked(); + + /****************** ClearSensitive ******************/ + /**** md5 signature: bbfbdb95251072aaccc54e26ea15ada9 ****/ + %feature("compactdefaultargs") ClearSensitive; + %feature("autodoc", " +Parameters +---------- +theView: V3d_View + +Return +------- +None + +Description +----------- +No available documentation. +") ClearSensitive; + void ClearSensitive(const opencascade::handle & theView); + + /****************** Contains ******************/ + /**** md5 signature: 78a3e6bbff753619951717c11cf591d9 ****/ + %feature("compactdefaultargs") Contains; + %feature("autodoc", " +Parameters +---------- +theObject: SelectMgr_SelectableObject + +Return +------- +bool + +Description +----------- +No available documentation. +") Contains; + Standard_Boolean Contains(const opencascade::handle & theObject); + + /****************** CustomPixelTolerance ******************/ + /**** md5 signature: 9497c077b16b917b6f52ae9b3e06304e ****/ + %feature("compactdefaultargs") CustomPixelTolerance; + %feature("autodoc", "Return +------- +int + +Description +----------- +Returns custom pixel tolerance value. +") CustomPixelTolerance; + Standard_Integer CustomPixelTolerance(); + + /****************** DepthTolerance ******************/ + /**** md5 signature: 5eb30ecbeec79f777ddfc94a151880bd ****/ + %feature("compactdefaultargs") DepthTolerance; + %feature("autodoc", "Return +------- +float + +Description +----------- +Return the tolerance for considering two entities having a similar depth (distance from eye to entity). +") DepthTolerance; + Standard_Real DepthTolerance(); + + /****************** DepthToleranceType ******************/ + /**** md5 signature: c380649fe7713e3a87bde2b284f953ae ****/ + %feature("compactdefaultargs") DepthToleranceType; + %feature("autodoc", "Return +------- +SelectMgr_TypeOfDepthTolerance + +Description +----------- +Return the type of tolerance for considering two entities having a similar depth (distance from eye to entity); selectmgr_typeofdepthtolerance_sensitivityfactor by default. +") DepthToleranceType; + SelectMgr_TypeOfDepthTolerance DepthToleranceType(); + + /****************** DisplaySensitive ******************/ + /**** md5 signature: 8dded899c4a255afc18ddc44c8d7a6f7 ****/ + %feature("compactdefaultargs") DisplaySensitive; + %feature("autodoc", " +Parameters +---------- +theView: V3d_View + +Return +------- +None + +Description +----------- +Displays sensitives in view . +") DisplaySensitive; + void DisplaySensitive(const opencascade::handle & theView); + + /****************** DisplaySensitive ******************/ + /**** md5 signature: b1201290956c96d7a296cb8583c59abe ****/ + %feature("compactdefaultargs") DisplaySensitive; + %feature("autodoc", " +Parameters +---------- +theSel: SelectMgr_Selection +theTrsf: gp_Trsf +theView: V3d_View +theToClearOthers: bool (optional, default to Standard_True) + +Return +------- +None + +Description +----------- +No available documentation. +") DisplaySensitive; + void DisplaySensitive(const opencascade::handle & theSel, const gp_Trsf & theTrsf, const opencascade::handle & theView, const Standard_Boolean theToClearOthers = Standard_True); + + + /****************** DumpJson ******************/ + %feature("autodoc", " +Parameters +---------- +depth: int, default=-1 + +Return +------- +str + +Description +----------- +Dump the object to JSON string. +") DumpJson; + %extend{ + std::string DumpJson(int depth=-1) { + std::stringstream s; + self->DumpJson(s, depth); + return "{" + s.str() + "}" ;} + }; + /****************** EntitySetBuilder ******************/ + /**** md5 signature: 52914ec571d0b78bdc7cb60acd7ef05a ****/ + %feature("compactdefaultargs") EntitySetBuilder; + %feature("autodoc", "Return +------- +opencascade::handle + +Description +----------- +Returns the default builder used to construct bvh of entity set. +") EntitySetBuilder; + const opencascade::handle EntitySetBuilder(); + + /****************** GetManager ******************/ + /**** md5 signature: 1e3e7e7901c4a711a6a7b92a70014822 ****/ + %feature("compactdefaultargs") GetManager; + %feature("autodoc", "Return +------- +SelectMgr_SelectingVolumeManager + +Description +----------- +Returns instance of selecting volume manager of the viewer selector. +") GetManager; + SelectMgr_SelectingVolumeManager & GetManager(); + + /****************** IsActive ******************/ + /**** md5 signature: d5470c10bdda5f0f4ab236e757f7b861 ****/ + %feature("compactdefaultargs") IsActive; + %feature("autodoc", " +Parameters +---------- +theSelectableObject: SelectMgr_SelectableObject +theMode: int + +Return +------- +bool + +Description +----------- +Returns true if the selectable object aselectableobject having the selection mode amode is active in this selector. +") IsActive; + Standard_Boolean IsActive(const opencascade::handle & theSelectableObject, const Standard_Integer theMode); + + /****************** IsInside ******************/ + /**** md5 signature: 55a6f977e8d6d1e15f934601ea16a501 ****/ + %feature("compactdefaultargs") IsInside; + %feature("autodoc", " +Parameters +---------- +theSelectableObject: SelectMgr_SelectableObject +theMode: int + +Return +------- +bool + +Description +----------- +Returns true if the selectable object aselectableobject having the selection mode amode is in this selector. +") IsInside; + Standard_Boolean IsInside(const opencascade::handle & theSelectableObject, const Standard_Integer theMode); + + /****************** Modes ******************/ + /**** md5 signature: ffb5cb9b5ef052e25bbb4dbef0237f18 ****/ + %feature("compactdefaultargs") Modes; + %feature("autodoc", " +Parameters +---------- +theSelectableObject: SelectMgr_SelectableObject +theModeList: TColStd_ListOfInteger +theWantedState: SelectMgr_StateOfSelection (optional, default to SelectMgr_SOS_Any) + +Return +------- +bool + +Description +----------- +Returns the list of selection modes modelist found in this selector for the selectable object aselectableobject. returns true if aselectableobject is referenced inside this selector; returns false if the object is not present in this selector. +") Modes; + Standard_Boolean Modes(const opencascade::handle & theSelectableObject, TColStd_ListOfInteger & theModeList, const SelectMgr_StateOfSelection theWantedState = SelectMgr_SOS_Any); + + /****************** MoveSelectableObject ******************/ + /**** md5 signature: 5bdd1df0fce978279ec116396cbc6a68 ****/ + %feature("compactdefaultargs") MoveSelectableObject; + %feature("autodoc", " +Parameters +---------- +theObject: SelectMgr_SelectableObject + +Return +------- +None + +Description +----------- +Moves existing object from set of not transform persistence objects to set of transform persistence objects (or vice versa). +") MoveSelectableObject; + void MoveSelectableObject(const opencascade::handle & theObject); + + /****************** NbPicked ******************/ + /**** md5 signature: 1e5922f7d7f8bb6d486a25fa1352cce7 ****/ + %feature("compactdefaultargs") NbPicked; + %feature("autodoc", "Return +------- +int + +Description +----------- +Returns the number of detected owners. +") NbPicked; + Standard_Integer NbPicked(); + + /****************** OnePicked ******************/ + /**** md5 signature: 06695973eb15f33aa731025f3b6253dc ****/ + %feature("compactdefaultargs") OnePicked; + %feature("autodoc", "Return +------- +opencascade::handle + +Description +----------- +Returns the picked element with the highest priority, and which is the closest to the last successful mouse position. +") OnePicked; + opencascade::handle OnePicked(); + + /****************** Pick ******************/ + /**** md5 signature: 2bffaec90f889b1c8a589371f27c765d ****/ + %feature("compactdefaultargs") Pick; + %feature("autodoc", " +Parameters +---------- +theXPix: int +theYPix: int +theView: V3d_View + +Return +------- +None + +Description +----------- +Picks the sensitive entity at the pixel coordinates of the mouse and . the selector looks for touched areas and owners. +") Pick; + void Pick(const Standard_Integer theXPix, const Standard_Integer theYPix, const opencascade::handle & theView); + + /****************** Pick ******************/ + /**** md5 signature: ac91d378236f4cd1507ea2ad52a93f76 ****/ + %feature("compactdefaultargs") Pick; + %feature("autodoc", " +Parameters +---------- +theXPMin: int +theYPMin: int +theXPMax: int +theYPMax: int +theView: V3d_View + +Return +------- +None + +Description +----------- +Picks the sensitive entity according to the minimum and maximum pixel values , , and defining a 2d area for selection in the 3d view aview. +") Pick; + void Pick(const Standard_Integer theXPMin, const Standard_Integer theYPMin, const Standard_Integer theXPMax, const Standard_Integer theYPMax, const opencascade::handle & theView); + + /****************** Pick ******************/ + /**** md5 signature: d9dd319057f3def6d1d43685fa1cdf94 ****/ + %feature("compactdefaultargs") Pick; + %feature("autodoc", " +Parameters +---------- +thePolyline: TColgp_Array1OfPnt2d +theView: V3d_View + +Return +------- +None + +Description +----------- +Pick action - input pixel values for polyline selection for selection. +") Pick; + void Pick(const TColgp_Array1OfPnt2d & thePolyline, const opencascade::handle & theView); + + /****************** Pick ******************/ + /**** md5 signature: 534c41acdf40cdc7534b926e77873ace ****/ + %feature("compactdefaultargs") Pick; + %feature("autodoc", " +Parameters +---------- +theAxis: gp_Ax1 +theView: V3d_View + +Return +------- +None + +Description +----------- +Picks the sensitive entity according to the input axis. this is geometric intersection 3d objects by axis (camera parameters are ignored and objects with transform persistance are skipped). +") Pick; + void Pick(const gp_Ax1 & theAxis, const opencascade::handle & theView); + + /****************** Picked ******************/ + /**** md5 signature: 6760e33474c400a8d0afcacda0d075de ****/ + %feature("compactdefaultargs") Picked; + %feature("autodoc", " +Parameters +---------- +theRank: int + +Return +------- +opencascade::handle + +Description +----------- +Returns the entity owner for the object picked at specified position. @param therank rank of detected object within range 1...nbpicked(). +") Picked; + opencascade::handle Picked(const Standard_Integer theRank); + + /****************** PickedData ******************/ + /**** md5 signature: e84187de944a8ab2106eac0d67700a40 ****/ + %feature("compactdefaultargs") PickedData; + %feature("autodoc", " +Parameters +---------- +theRank: int + +Return +------- +SelectMgr_SortCriterion + +Description +----------- +Returns the entity for the object picked at specified position. @param therank rank of detected object within range 1...nbpicked(). +") PickedData; + const SelectMgr_SortCriterion & PickedData(const Standard_Integer theRank); + + /****************** PickedEntity ******************/ + /**** md5 signature: 1597acbfac8be91b18a0ddb95e10b3b7 ****/ + %feature("compactdefaultargs") PickedEntity; + %feature("autodoc", " +Parameters +---------- +theRank: int + +Return +------- +opencascade::handle + +Description +----------- +Returns the entity for the object picked at specified position. @param therank rank of detected object within range 1...nbpicked(). +") PickedEntity; + const opencascade::handle & PickedEntity(const Standard_Integer theRank); + + /****************** PickedPoint ******************/ + /**** md5 signature: df6911ebee5f921057309eeaccd7991e ****/ + %feature("compactdefaultargs") PickedPoint; + %feature("autodoc", " +Parameters +---------- +theRank: int + +Return +------- +gp_Pnt + +Description +----------- +Returns the 3d point (intersection of picking axis with the object nearest to eye) for the object picked at specified position. @param therank rank of detected object within range 1...nbpicked(). +") PickedPoint; + gp_Pnt PickedPoint(const Standard_Integer theRank); + + /****************** PixelTolerance ******************/ + /**** md5 signature: 5b865b201c1641a73b871f7bcdb1eeb9 ****/ + %feature("compactdefaultargs") PixelTolerance; + %feature("autodoc", "Return +------- +int + +Description +----------- +Returns the largest pixel tolerance. +") PixelTolerance; + Standard_Integer PixelTolerance(); + + /****************** QueueBVHBuild ******************/ + /**** md5 signature: 896a0efab352ae61ee3ef99e1dfa8c9f ****/ + %feature("compactdefaultargs") QueueBVHBuild; + %feature("autodoc", " +Parameters +---------- +theEntity: Select3D_SensitiveEntity Return ------- @@ -4161,105 +5351,336 @@ None Description ----------- -Add clipping planes. planes and picking ray should be defined in the same coordinate system. -") AddClippingPlanes; - void AddClippingPlanes(const Graphic3d_SequenceOfHClipPlane & thePlanes, const gp_Ax1 & thePickRay); +Queues a sensitive entity to build its bvh. +") QueueBVHBuild; + void QueueBVHBuild(const opencascade::handle & theEntity); - /****************** ChangeUnclipRange ******************/ - /**** md5 signature: 58b75e3eeaf4dd4dbdda4bc0bfa4ec3e ****/ - %feature("compactdefaultargs") ChangeUnclipRange; + /****************** RebuildObjectsTree ******************/ + /**** md5 signature: 628a59a88256b2ec574763a4a2d8322a ****/ + %feature("compactdefaultargs") RebuildObjectsTree; + %feature("autodoc", " +Parameters +---------- +theIsForce: bool (optional, default to Standard_False) + +Return +------- +None + +Description +----------- +Marks bvh of selectable objects for rebuild. parameter theisforce set as true guarantees that 1st level bvh for the viewer selector will be rebuilt during this call. +") RebuildObjectsTree; + void RebuildObjectsTree(const Standard_Boolean theIsForce = Standard_False); + + /****************** RebuildSensitivesTree ******************/ + /**** md5 signature: 819af8d1979424b3e6df844d4e61f2b2 ****/ + %feature("compactdefaultargs") RebuildSensitivesTree; + %feature("autodoc", " +Parameters +---------- +theObject: SelectMgr_SelectableObject +theIsForce: bool (optional, default to Standard_False) + +Return +------- +None + +Description +----------- +Marks bvh of sensitive entities of particular selectable object for rebuild. parameter theisforce set as true guarantees that 2nd level bvh for the object given will be rebuilt during this call. +") RebuildSensitivesTree; + void RebuildSensitivesTree(const opencascade::handle & theObject, const Standard_Boolean theIsForce = Standard_False); + + /****************** RemovePicked ******************/ + /**** md5 signature: 80184406bbb99da0f278fd26e116df67 ****/ + %feature("compactdefaultargs") RemovePicked; + %feature("autodoc", " +Parameters +---------- +theObject: SelectMgr_SelectableObject + +Return +------- +bool + +Description +----------- +Remove picked entities associated with specified object. +") RemovePicked; + Standard_Boolean RemovePicked(const opencascade::handle & theObject); + + /****************** RemoveSelectableObject ******************/ + /**** md5 signature: 1e8f196e9c9d6bf9be8ac2a00dec3498 ****/ + %feature("compactdefaultargs") RemoveSelectableObject; + %feature("autodoc", " +Parameters +---------- +theObject: SelectMgr_SelectableObject + +Return +------- +None + +Description +----------- +Removes selectable object from map of selectable ones. +") RemoveSelectableObject; + void RemoveSelectableObject(const opencascade::handle & theObject); + + /****************** RemoveSelectionOfObject ******************/ + /**** md5 signature: 69adfc0cf7246377c43727c2b93bf6f2 ****/ + %feature("compactdefaultargs") RemoveSelectionOfObject; + %feature("autodoc", " +Parameters +---------- +theObject: SelectMgr_SelectableObject +theSelection: SelectMgr_Selection + +Return +------- +None + +Description +----------- +Removes selection of the object and marks its bvh tree for rebuild. +") RemoveSelectionOfObject; + void RemoveSelectionOfObject(const opencascade::handle & theObject, const opencascade::handle & theSelection); + + /****************** ResetSelectionActivationStatus ******************/ + /**** md5 signature: bf2a203e68c060aeca555d5082fa1fa7 ****/ + %feature("compactdefaultargs") ResetSelectionActivationStatus; %feature("autodoc", "Return ------- -Bnd_Range +None Description ----------- -Returns the main unclipped range; [-inf, inf] by default. -") ChangeUnclipRange; - Bnd_Range & ChangeUnclipRange(); +Marks all added sensitive entities of all objects as non-selectable. +") ResetSelectionActivationStatus; + void ResetSelectionActivationStatus(); + /****************** SelectableObjects ******************/ + /**** md5 signature: 3e067502f3452297d930a8e90567e3d9 ****/ + %feature("compactdefaultargs") SelectableObjects; + %feature("autodoc", "Return +------- +SelectMgr_SelectableObjectSet - /****************** DumpJson ******************/ - %feature("autodoc", " +Description +----------- +Return map of selectable objects. +") SelectableObjects; + const SelectMgr_SelectableObjectSet & SelectableObjects(); + + /****************** Sensitivity ******************/ + /**** md5 signature: 6758039a5591c08f2d1e8b5cc5b25161 ****/ + %feature("compactdefaultargs") Sensitivity; + %feature("autodoc", "Return +------- +float + +Description +----------- +Returns the largest sensitivity of picking. +") Sensitivity; + Standard_Real Sensitivity(); + + /****************** SetDepthTolerance ******************/ + /**** md5 signature: 7e4087788ba7c5cb05aecd7cf2807046 ****/ + %feature("compactdefaultargs") SetDepthTolerance; + %feature("autodoc", " Parameters ---------- -depth: int, default=-1 +theType: SelectMgr_TypeOfDepthTolerance +theTolerance: float Return ------- -str +None Description ----------- -Dump the object to JSON string. -") DumpJson; - %extend{ - std::string DumpJson(int depth=-1) { - std::stringstream s; - self->DumpJson(s, depth); - return "{" + s.str() + "}" ;} - }; - /****************** GetNearestDepth ******************/ - /**** md5 signature: a7d31c5d6b83b64f1f6f7f0def838d0f ****/ - %feature("compactdefaultargs") GetNearestDepth; +Set the tolerance for considering two entities having a similar depth (distance from eye to entity). @param thetype [in] type of tolerance value @param thetolerance [in] tolerance value in 3d scale (selectmgr_typeofdepthtolerance_uniform) or in pixels (selectmgr_typeofdepthtolerance_uniformpixels); value is ignored in case of selectmgr_typeofdepthtolerance_sensitivityfactor. +") SetDepthTolerance; + void SetDepthTolerance(SelectMgr_TypeOfDepthTolerance theType, Standard_Real theTolerance); + + /****************** SetEntitySetBuilder ******************/ + /**** md5 signature: 09ee8498ee64bb589a0261fd9a7e5188 ****/ + %feature("compactdefaultargs") SetEntitySetBuilder; %feature("autodoc", " Parameters ---------- -theRange: Bnd_Range +theBuilder: Select3D_BVHBuilder3d Return ------- -theDepth: float +None Description ----------- -Calculates the min not clipped value from the range. returns false if the whole range is clipped. -") GetNearestDepth; - Standard_Boolean GetNearestDepth(const Bnd_Range & theRange, Standard_Real &OutValue); +Sets the default builder used to construct bvh of entity set. the new builder will be also assigned for already defined objects, but computed bvh trees will not be invalidated. +") SetEntitySetBuilder; + void SetEntitySetBuilder(const opencascade::handle & theBuilder); - /****************** IsClipped ******************/ - /**** md5 signature: 28a5904272062fde8c7fd50816e6a223 ****/ - %feature("compactdefaultargs") IsClipped; + /****************** SetPickClosest ******************/ + /**** md5 signature: 7e98eb34a16b50c51a37c341a8616401 ****/ + %feature("compactdefaultargs") SetPickClosest; %feature("autodoc", " Parameters ---------- -theDepth: float +theToPreferClosest: bool + +Return +------- +None + +Description +----------- +Set flag determining precedence of picked depth over entity priority in sorted results. +") SetPickClosest; + void SetPickClosest(bool theToPreferClosest); + + /****************** SetPixelTolerance ******************/ + /**** md5 signature: fda084bdc0d0a8e945d1f4e82a500297 ****/ + %feature("compactdefaultargs") SetPixelTolerance; + %feature("autodoc", " +Parameters +---------- +theTolerance: int + +Return +------- +None + +Description +----------- +Sets the pixel tolerance . +") SetPixelTolerance; + void SetPixelTolerance(const Standard_Integer theTolerance); + + /****************** SetToPrebuildBVH ******************/ + /**** md5 signature: a1a0e8f03c7f4b82aa7284578f0fb968 ****/ + %feature("compactdefaultargs") SetToPrebuildBVH; + %feature("autodoc", " +Parameters +---------- +theToPrebuild: bool +theThreadsNum: int (optional, default to -1) + +Return +------- +None + +Description +----------- +Enables/disables building bvh for sensitives in separate threads. +") SetToPrebuildBVH; + void SetToPrebuildBVH(Standard_Boolean theToPrebuild, Standard_Integer theThreadsNum = -1); + + /****************** SortResult ******************/ + /**** md5 signature: 0272cdf84299752febeb97ffe8d3c3e3 ****/ + %feature("compactdefaultargs") SortResult; + %feature("autodoc", "Return +------- +None + +Description +----------- +Sorts the detected entities by priority and distance. +") SortResult; + virtual void SortResult(); + + /****************** Status ******************/ + /**** md5 signature: 71a08ab697d7bef66c0335534974a223 ****/ + %feature("compactdefaultargs") Status; + %feature("autodoc", " +Parameters +---------- +theSelection: SelectMgr_Selection + +Return +------- +SelectMgr_StateOfSelection + +Description +----------- +Returns the selection status status of the selection aselection. +") Status; + SelectMgr_StateOfSelection Status(const opencascade::handle & theSelection); + + /****************** Status ******************/ + /**** md5 signature: c85ec742b457f156e341dab17a4171ac ****/ + %feature("compactdefaultargs") Status; + %feature("autodoc", " +Parameters +---------- +theSelectableObject: SelectMgr_SelectableObject Return ------- +TCollection_AsciiString + +Description +----------- +No available documentation. +") Status; + TCollection_AsciiString Status(const opencascade::handle & theSelectableObject); + + /****************** ToPickClosest ******************/ + /**** md5 signature: 408e2d13bb22c289ef23455e357ab945 ****/ + %feature("compactdefaultargs") ToPickClosest; + %feature("autodoc", "Return +------- bool Description ----------- -Check if the given depth is not within clipping range(s), e.g. true means depth is clipped. -") IsClipped; - Standard_Boolean IsClipped(const Standard_Real theDepth); +Return the flag determining precedence of picked depth (distance from eye to entity) over entity priority in sorted results; true by default. when flag is true, priority will be considered only if entities have the same depth within the tolerance. when flag is false, entities with higher priority will be in front regardless of their depth (like x-ray). +") ToPickClosest; + bool ToPickClosest(); - /****************** SetVoid ******************/ - /**** md5 signature: 4e44fd52f6a76368c77b381fe1482a21 ****/ - %feature("compactdefaultargs") SetVoid; + /****************** ToPrebuildBVH ******************/ + /**** md5 signature: a5a6258c7c6a323d99d16797640eef14 ****/ + %feature("compactdefaultargs") ToPrebuildBVH; + %feature("autodoc", "Return +------- +bool + +Description +----------- +Returns true if building bvh for sensitives in separate threads is enabled. +") ToPrebuildBVH; + Standard_Boolean ToPrebuildBVH(); + + /****************** WaitForBVHBuild ******************/ + /**** md5 signature: 7e92f221a918ae1b9444d5e68a00db6b ****/ + %feature("compactdefaultargs") WaitForBVHBuild; %feature("autodoc", "Return ------- None Description ----------- -Clears clipping range. -") SetVoid; - void SetVoid(); +Waits bvh threads finished building. +") WaitForBVHBuild; + void WaitForBVHBuild(); }; -%extend SelectMgr_ViewClipRange { +%make_alias(SelectMgr_ViewerSelector) + +%extend SelectMgr_ViewerSelector { %pythoncode { __repr__ = _dumps_object + + @methodnotwrapped + def ToPixMap(self): + pass } }; -/********************************* -* class SelectMgr_ViewerSelector * -*********************************/ /********************************** * class SelectMgr_AxisIntersector * **********************************/ @@ -5086,10 +6507,6 @@ No available documentation. class SelectMgr_Frustum: pass -@classnotwrapped -class SelectMgr_FrustumBuilder: - pass - @classnotwrapped class SelectMgr_BaseFrustum: pass @@ -5106,18 +6523,6 @@ class SelectMgr_RectangularFrustum: class SelectMgr_TriangularFrustumSet: pass -@classnotwrapped -class SelectMgr_ToleranceMap: - pass - -@classnotwrapped -class SelectMgr_ViewerSelector: - pass - -@classnotwrapped -class SelectMgr_SensitiveEntitySet: - pass - } /* end python proxy for excluded classes */ /* harray1 classes */ diff --git a/src/SWIG_files/wrapper/SelectMgr.pyi b/src/SWIG_files/wrapper/SelectMgr.pyi index e662364e2..dac7a82e6 100644 --- a/src/SWIG_files/wrapper/SelectMgr.pyi +++ b/src/SWIG_files/wrapper/SelectMgr.pyi @@ -14,8 +14,10 @@ from OCC.Core.Prs3d import * from OCC.Core.TopLoc import * from OCC.Core.V3d import * from OCC.Core.TopAbs import * -from OCC.Core.BVH import * from OCC.Core.Bnd import * +from OCC.Core.BVH import * +from OCC.Core.TColStd import * +from OCC.Core.TCollection import * SelectBasics_EntityOwner = NewType("SelectBasics_EntityOwner", SelectMgr_EntityOwner) # the following typedef cannot be wrapped as is @@ -241,9 +243,21 @@ class SelectMgr_Filter(Standard_Transient): def ActsOn(self, aStandardMode: TopAbs_ShapeEnum) -> bool: ... def IsOk(self, anObj: SelectMgr_EntityOwner) -> bool: ... +class SelectMgr_FrustumBuilder(Standard_Transient): + def __init__(self) -> None: ... + def Camera(self) -> Graphic3d_Camera: ... + def InvalidateViewport(self) -> None: ... + def ProjectPntOnViewPlane(self, theX: float, theY: float, theZ: float) -> gp_Pnt: ... + def SetCamera(self, theCamera: Graphic3d_Camera) -> None: ... + def SetViewport(self, theX: float, theY: float, theWidth: float, theHeight: float) -> None: ... + def SetWindowSize(self, theWidth: int, theHeight: int) -> None: ... + def SignedPlanePntDist(self, theEq: SelectMgr_Vec3, thePnt: SelectMgr_Vec3) -> float: ... + def WindowSize(self) -> Tuple[int, int]: ... + class SelectMgr_SelectableObject(PrsMgr_PresentableObject): def AcceptShapeDecomposition(self) -> bool: ... def AddSelection(self, aSelection: SelectMgr_Selection, aMode: int) -> None: ... + def BndBoxOfSelected(self, theOwners: SelectMgr_IndexedMapOfOwner) -> Bnd_Box: ... def ClearDynamicHighlight(self, theMgr: PrsMgr_PresentationManager) -> None: ... def ClearSelected(self) -> None: ... def ClearSelections(self, update: Optional[bool] = False) -> None: ... @@ -287,6 +301,7 @@ class SelectMgr_SelectableObjectSet: class SelectMgr_SelectingVolumeManager(SelectBasics_SelectingVolumeManager): def __init__(self) -> None: ... + def ActiveVolume(self) -> SelectMgr_BaseIntersector: ... def AllowOverlapDetection(self, theIsToAllow: bool) -> None: ... @overload def BuildSelectingVolume(self) -> None: ... @@ -405,11 +420,37 @@ class SelectMgr_SensitiveEntity(Standard_Transient): def ResetSelectionActiveStatus(self) -> None: ... def SetActiveForSelection(self) -> None: ... +class SelectMgr_SensitiveEntitySet(BVH_PrimitiveSet3d): + def __init__(self, theBuilder: Select3D_BVHBuilder3d) -> None: ... + @overload + def Append(self, theEntity: SelectMgr_SensitiveEntity) -> None: ... + @overload + def Append(self, theSelection: SelectMgr_Selection) -> None: ... + def Box(self, theIndex: int) -> Select3D_BndBox3d: ... + def Center(self, theIndex: int, theAxis: int) -> float: ... + def GetSensitiveById(self, theIndex: int) -> SelectMgr_SensitiveEntity: ... + def HasEntityWithPersistence(self) -> bool: ... + def Owners(self) -> SelectMgr_MapOfOwners: ... + def Remove(self, theSelection: SelectMgr_Selection) -> None: ... + def Sensitives(self) -> SelectMgr_IndexedMapOfHSensitive: ... + def Size(self) -> int: ... + def Swap(self, theIndex1: int, theIndex2: int) -> None: ... + class SelectMgr_SortCriterion: def __init__(self) -> None: ... def IsCloserDepth(self, theOther: SelectMgr_SortCriterion) -> bool: ... def IsHigherPriority(self, theOther: SelectMgr_SortCriterion) -> bool: ... +class SelectMgr_ToleranceMap: + def __init__(self) -> None: ... + def Add(self, theTolerance: int) -> None: ... + def CustomTolerance(self) -> int: ... + def Decrement(self, theTolerance: int) -> None: ... + def IsCustomTolSet(self) -> bool: ... + def ResetDefaults(self) -> None: ... + def SetCustomTolerance(self, theTolerance: int) -> None: ... + def Tolerance(self) -> int: ... + class SelectMgr_ViewClipRange: def __init__(self) -> None: ... def AddClipSubRange(self, theRange: Bnd_Range) -> None: ... @@ -420,6 +461,67 @@ class SelectMgr_ViewClipRange: def IsClipped(self, theDepth: float) -> bool: ... def SetVoid(self) -> None: ... +class SelectMgr_ViewerSelector(Standard_Transient): + def __init__(self) -> None: ... + def AddSelectableObject(self, theObject: SelectMgr_SelectableObject) -> None: ... + def AddSelectionToObject(self, theObject: SelectMgr_SelectableObject, theSelection: SelectMgr_Selection) -> None: ... + def AllowOverlapDetection(self, theIsToAllow: bool) -> None: ... + def Clear(self) -> None: ... + def ClearPicked(self) -> None: ... + def ClearSensitive(self, theView: V3d_View) -> None: ... + def Contains(self, theObject: SelectMgr_SelectableObject) -> bool: ... + def CustomPixelTolerance(self) -> int: ... + def DepthTolerance(self) -> float: ... + def DepthToleranceType(self) -> SelectMgr_TypeOfDepthTolerance: ... + @overload + def DisplaySensitive(self, theView: V3d_View) -> None: ... + @overload + def DisplaySensitive(self, theSel: SelectMgr_Selection, theTrsf: gp_Trsf, theView: V3d_View, theToClearOthers: Optional[bool] = True) -> None: ... + def DumpJson(self, depth: Optional[int]=-1) -> str: ... + def EntitySetBuilder(self) -> Select3D_BVHBuilder3d: ... + def GetManager(self) -> SelectMgr_SelectingVolumeManager: ... + def IsActive(self, theSelectableObject: SelectMgr_SelectableObject, theMode: int) -> bool: ... + def IsInside(self, theSelectableObject: SelectMgr_SelectableObject, theMode: int) -> bool: ... + def Modes(self, theSelectableObject: SelectMgr_SelectableObject, theModeList: TColStd_ListOfInteger, theWantedState: Optional[SelectMgr_StateOfSelection] = SelectMgr_SOS_Any) -> bool: ... + def MoveSelectableObject(self, theObject: SelectMgr_SelectableObject) -> None: ... + def NbPicked(self) -> int: ... + def OnePicked(self) -> SelectMgr_EntityOwner: ... + @overload + def Pick(self, theXPix: int, theYPix: int, theView: V3d_View) -> None: ... + @overload + def Pick(self, theXPMin: int, theYPMin: int, theXPMax: int, theYPMax: int, theView: V3d_View) -> None: ... + @overload + def Pick(self, thePolyline: TColgp_Array1OfPnt2d, theView: V3d_View) -> None: ... + @overload + def Pick(self, theAxis: gp_Ax1, theView: V3d_View) -> None: ... + def Picked(self, theRank: int) -> SelectMgr_EntityOwner: ... + def PickedData(self, theRank: int) -> SelectMgr_SortCriterion: ... + def PickedEntity(self, theRank: int) -> Select3D_SensitiveEntity: ... + def PickedPoint(self, theRank: int) -> gp_Pnt: ... + def PixelTolerance(self) -> int: ... + def QueueBVHBuild(self, theEntity: Select3D_SensitiveEntity) -> None: ... + def RebuildObjectsTree(self, theIsForce: Optional[bool] = False) -> None: ... + def RebuildSensitivesTree(self, theObject: SelectMgr_SelectableObject, theIsForce: Optional[bool] = False) -> None: ... + def RemovePicked(self, theObject: SelectMgr_SelectableObject) -> bool: ... + def RemoveSelectableObject(self, theObject: SelectMgr_SelectableObject) -> None: ... + def RemoveSelectionOfObject(self, theObject: SelectMgr_SelectableObject, theSelection: SelectMgr_Selection) -> None: ... + def ResetSelectionActivationStatus(self) -> None: ... + def SelectableObjects(self) -> SelectMgr_SelectableObjectSet: ... + def Sensitivity(self) -> float: ... + def SetDepthTolerance(self, theType: SelectMgr_TypeOfDepthTolerance, theTolerance: float) -> None: ... + def SetEntitySetBuilder(self, theBuilder: Select3D_BVHBuilder3d) -> None: ... + def SetPickClosest(self, theToPreferClosest: bool) -> None: ... + def SetPixelTolerance(self, theTolerance: int) -> None: ... + def SetToPrebuildBVH(self, theToPrebuild: bool, theThreadsNum: Optional[int] = -1) -> None: ... + def SortResult(self) -> None: ... + @overload + def Status(self, theSelection: SelectMgr_Selection) -> SelectMgr_StateOfSelection: ... + @overload + def Status(self, theSelectableObject: SelectMgr_SelectableObject) -> str: ... + def ToPickClosest(self) -> bool: ... + def ToPrebuildBVH(self) -> bool: ... + def WaitForBVHBuild(self) -> None: ... + class SelectMgr_AxisIntersector(SelectMgr_BaseIntersector): def __init__(self) -> None: ... def Build(self) -> None: ... @@ -484,9 +586,6 @@ class SelectMgr_OrFilter(SelectMgr_CompositionFilter): #classnotwrapped class SelectMgr_Frustum: ... -#classnotwrapped -class SelectMgr_FrustumBuilder: ... - #classnotwrapped class SelectMgr_BaseFrustum: ... @@ -499,15 +598,6 @@ class SelectMgr_RectangularFrustum: ... #classnotwrapped class SelectMgr_TriangularFrustumSet: ... -#classnotwrapped -class SelectMgr_ToleranceMap: ... - -#classnotwrapped -class SelectMgr_ViewerSelector: ... - -#classnotwrapped -class SelectMgr_SensitiveEntitySet: ... - # harray1 classes # harray2 classes # hsequence classes diff --git a/src/SWIG_files/wrapper/generator.log b/src/SWIG_files/wrapper/generator.log index 7f1cedb4d..bdf2cd0d2 100644 --- a/src/SWIG_files/wrapper/generator.log +++ b/src/SWIG_files/wrapper/generator.log @@ -2,13 +2,13 @@ ############################ Running pythonocc-generator. ############################ -git revision : ee0643e +git revision : 6514450 operating system : Linux 64bit 6.8.0-48-generic occt version targeted : 7.8.1 -date : 2024-11-10 17:47:59.350215 +date : 2024-11-15 05:14:26.954816 ############################ [INFO ] Processing toolkit TKBO === @@ -8090,9 +8090,9 @@ date : 2024-11-10 17:47:59.350215 [INFO ] [TypeHint] More than 1 constructor, @overload decorator needed. [INFO ] Class: SelectMgr_Filter [INFO ] Class SelectMgr_Filter is abstract, using %nodefaultctor. +[INFO ] Class: SelectMgr_FrustumBuilder [INFO ] Class: SelectMgr_SelectableObject [INFO ] Class SelectMgr_SelectableObject is abstract, using %nodefaultctor. -[INFO ] explicitly excluded method SelectMgr_SelectableObject::443f93b07a9907ef337840cc8b4ae9ed [INFO ] Class: SelectMgr_SelectableObjectSet [INFO ] Wrap nested class SelectMgr_SelectableObjectSet::Iterator [INFO ] Enum: BVHSubset @@ -8101,7 +8101,6 @@ date : 2024-11-10 17:47:59.350215 [WARNI] [TypeHint] Skipping type BVHSubset, should contain _ [WARNI] [TypeHint] Skipping type BVHSubset, should contain _ [INFO ] Class: SelectMgr_SelectingVolumeManager -[INFO ] explicitly excluded method SelectMgr_SelectingVolumeManager::8fea4d782109be39039e6429b87f144f [WARNI] [TypeHint] Skipping type NCollection_Vector, seems to be a template [INFO ] Class: SelectMgr_Selection [WARNI] [TypeHint] Skip type NCollection_Vector>, because of trailing : @@ -8112,8 +8111,13 @@ date : 2024-11-10 17:47:59.350215 [INFO ] Constructor skipped for abstract class SelectMgr_SelectionImageFiller [INFO ] Class: SelectMgr_SelectionManager [INFO ] Class: SelectMgr_SensitiveEntity +[INFO ] Class: SelectMgr_SensitiveEntitySet [INFO ] Class: SelectMgr_SortCriterion +[INFO ] Class: SelectMgr_ToleranceMap [INFO ] Class: SelectMgr_ViewClipRange +[INFO ] Class: SelectMgr_ViewerSelector +[INFO ] explicitly excluded method SelectMgr_ViewerSelector::c75f681b9842a1a990930b338f100d0b +[WARNI] [TypeHint] Skip type NCollection_List, because of trailing : [INFO ] Class: SelectMgr_AxisIntersector [INFO ] Class: SelectMgr_CompositionFilter [INFO ] Class: SelectMgr_AndFilter @@ -9554,8 +9558,8 @@ date : 2024-11-10 17:47:59.350215 [INFO ] Class: UnitsMethods [INFO ] ################################################# -SWIG interface file generation completed in 18.22s +SWIG interface file generation completed in 33.27s ################################################# -[INFO ] Number of classes: 4743 -[INFO ] Number of methods: 47536 +[INFO ] Number of classes: 4747 +[INFO ] Number of methods: 47619 From dd99ec9753f5d4d7ad74e416bd911e9eb2611509 Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Fri, 15 Nov 2024 07:17:24 +0100 Subject: [PATCH 033/157] Update numpy.i to latest revision, fixes for SWIG 4.3 --- src/SWIG_files/common/numpy.i | 192 ++++++++++++---------------------- 1 file changed, 67 insertions(+), 125 deletions(-) diff --git a/src/SWIG_files/common/numpy.i b/src/SWIG_files/common/numpy.i index 99ed073ab..747446648 100644 --- a/src/SWIG_files/common/numpy.i +++ b/src/SWIG_files/common/numpy.i @@ -48,7 +48,7 @@ %fragment("NumPy_Backward_Compatibility", "header") { -%#if NPY_API_VERSION < 0x00000007 +%#if NPY_API_VERSION < NPY_1_7_API_VERSION %#define NPY_ARRAY_DEFAULT NPY_DEFAULT %#define NPY_ARRAY_FARRAY NPY_FARRAY %#define NPY_FORTRANORDER NPY_FORTRAN @@ -69,7 +69,7 @@ { /* Macros to extract array attributes. */ -%#if NPY_API_VERSION < 0x00000007 +%#if NPY_API_VERSION < NPY_1_7_API_VERSION %#define is_array(a) ((a) && PyArray_Check((PyArrayObject*)a)) %#define array_type(a) (int)(PyArray_TYPE((PyArrayObject*)a)) %#define array_numdims(a) (((PyArrayObject*)a)->nd) @@ -165,13 +165,11 @@ return PyArray_EquivTypenums(actual_type, desired_type); } -%#ifdef SWIGPY_USE_CAPSULE - void free_cap(PyObject * cap) +void free_cap(PyObject * cap) { void* array = (void*) PyCapsule_GetPointer(cap,SWIGPY_CAPSULE_NAME); if (array != NULL) free(array); } -%#endif } @@ -293,7 +291,7 @@ Py_INCREF(array_descr(ary)); result = (PyArrayObject*) PyArray_FromArray(ary, array_descr(ary), -%#if NPY_API_VERSION < 0x00000007 +%#if NPY_API_VERSION < NPY_1_7_API_VERSION NPY_FORTRANORDER); %#else NPY_ARRAY_F_CONTIGUOUS); @@ -524,7 +522,7 @@ return success; } - /* Require the given PyArrayObject to to be Fortran ordered. If the + /* Require the given PyArrayObject to be Fortran ordered. If the * the PyArrayObject is already Fortran ordered, do nothing. Else, * set the Fortran ordering flag and recompute the strides. */ @@ -1991,7 +1989,7 @@ %typemap(argout) (DATA_TYPE ARGOUT_ARRAY1[ANY]) { - $result = SWIG_Python_AppendOutput($result,(PyObject*)array$argnum); + $result = SWIG_AppendOutput($result,(PyObject*)array$argnum); } /* Typemap suite for (DATA_TYPE* ARGOUT_ARRAY1, DIM_TYPE DIM1) @@ -2020,7 +2018,7 @@ %typemap(argout) (DATA_TYPE* ARGOUT_ARRAY1, DIM_TYPE DIM1) { - $result = SWIG_Python_AppendOutput($result,(PyObject*)array$argnum); + $result = SWIG_AppendOutput($result,(PyObject*)array$argnum); } /* Typemap suite for (DIM_TYPE DIM1, DATA_TYPE* ARGOUT_ARRAY1) @@ -2049,7 +2047,7 @@ %typemap(argout) (DIM_TYPE DIM1, DATA_TYPE* ARGOUT_ARRAY1) { - $result = SWIG_Python_AppendOutput($result,(PyObject*)array$argnum); + $result = SWIG_AppendOutput($result,(PyObject*)array$argnum); } /* Typemap suite for (DATA_TYPE ARGOUT_ARRAY2[ANY][ANY]) @@ -2067,7 +2065,7 @@ %typemap(argout) (DATA_TYPE ARGOUT_ARRAY2[ANY][ANY]) { - $result = SWIG_Python_AppendOutput($result,(PyObject*)array$argnum); + $result = SWIG_AppendOutput($result,(PyObject*)array$argnum); } /* Typemap suite for (DATA_TYPE ARGOUT_ARRAY3[ANY][ANY][ANY]) @@ -2085,7 +2083,7 @@ %typemap(argout) (DATA_TYPE ARGOUT_ARRAY3[ANY][ANY][ANY]) { - $result = SWIG_Python_AppendOutput($result,(PyObject*)array$argnum); + $result = SWIG_AppendOutput($result,(PyObject*)array$argnum); } /* Typemap suite for (DATA_TYPE ARGOUT_ARRAY4[ANY][ANY][ANY][ANY]) @@ -2103,7 +2101,7 @@ %typemap(argout) (DATA_TYPE ARGOUT_ARRAY4[ANY][ANY][ANY][ANY]) { - $result = SWIG_Python_AppendOutput($result,(PyObject*)array$argnum); + $result = SWIG_AppendOutput($result,(PyObject*)array$argnum); } /*****************************/ @@ -2128,7 +2126,7 @@ PyArrayObject* array = (PyArrayObject*) obj; if (!array) SWIG_fail; - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DIM_TYPE* DIM1, DATA_TYPE** ARGOUTVIEW_ARRAY1) @@ -2149,7 +2147,7 @@ PyArrayObject* array = (PyArrayObject*) obj; if (!array) SWIG_fail; - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DATA_TYPE** ARGOUTVIEW_ARRAY2, DIM_TYPE* DIM1, DIM_TYPE* DIM2) @@ -2171,7 +2169,7 @@ PyArrayObject* array = (PyArrayObject*) obj; if (!array) SWIG_fail; - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DIM_TYPE* DIM1, DIM_TYPE* DIM2, DATA_TYPE** ARGOUTVIEW_ARRAY2) @@ -2193,7 +2191,7 @@ PyArrayObject* array = (PyArrayObject*) obj; if (!array) SWIG_fail; - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DATA_TYPE** ARGOUTVIEW_FARRAY2, DIM_TYPE* DIM1, DIM_TYPE* DIM2) @@ -2215,7 +2213,7 @@ PyArrayObject* array = (PyArrayObject*) obj; if (!array || !require_fortran(array)) SWIG_fail; - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DIM_TYPE* DIM1, DIM_TYPE* DIM2, DATA_TYPE** ARGOUTVIEW_FARRAY2) @@ -2237,7 +2235,7 @@ PyArrayObject* array = (PyArrayObject*) obj; if (!array || !require_fortran(array)) SWIG_fail; - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DATA_TYPE** ARGOUTVIEW_ARRAY3, DIM_TYPE* DIM1, DIM_TYPE* DIM2, @@ -2261,7 +2259,7 @@ PyArrayObject* array = (PyArrayObject*) obj; if (!array) SWIG_fail; - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DIM_TYPE* DIM1, DIM_TYPE* DIM2, DIM_TYPE* DIM3, @@ -2285,7 +2283,7 @@ PyArrayObject* array = (PyArrayObject*) obj; if (!array) SWIG_fail; - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DATA_TYPE** ARGOUTVIEW_FARRAY3, DIM_TYPE* DIM1, DIM_TYPE* DIM2, @@ -2309,7 +2307,7 @@ PyArrayObject* array = (PyArrayObject*) obj; if (!array || !require_fortran(array)) SWIG_fail; - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DIM_TYPE* DIM1, DIM_TYPE* DIM2, DIM_TYPE* DIM3, @@ -2333,7 +2331,7 @@ PyArrayObject* array = (PyArrayObject*) obj; if (!array || !require_fortran(array)) SWIG_fail; - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DATA_TYPE** ARGOUTVIEW_ARRAY4, DIM_TYPE* DIM1, DIM_TYPE* DIM2, @@ -2358,7 +2356,7 @@ PyArrayObject* array = (PyArrayObject*) obj; if (!array) SWIG_fail; - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DIM_TYPE* DIM1, DIM_TYPE* DIM2, DIM_TYPE* DIM3, DIM_TYPE* DIM4, @@ -2383,7 +2381,7 @@ PyArrayObject* array = (PyArrayObject*) obj; if (!array) SWIG_fail; - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DATA_TYPE** ARGOUTVIEW_FARRAY4, DIM_TYPE* DIM1, DIM_TYPE* DIM2, @@ -2408,7 +2406,7 @@ PyArrayObject* array = (PyArrayObject*) obj; if (!array || !require_fortran(array)) SWIG_fail; - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DIM_TYPE* DIM1, DIM_TYPE* DIM2, DIM_TYPE* DIM3, DIM_TYPE* DIM4, @@ -2433,7 +2431,7 @@ PyArrayObject* array = (PyArrayObject*) obj; if (!array || !require_fortran(array)) SWIG_fail; - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /*************************************/ @@ -2459,19 +2457,15 @@ if (!array) SWIG_fail; -%#ifdef SWIGPY_USE_CAPSULE - PyObject* cap = PyCapsule_New((void*)(*$1), SWIGPY_CAPSULE_NAME, free_cap); -%#else - PyObject* cap = PyCObject_FromVoidPtr((void*)(*$1), free); -%#endif +PyObject* cap = PyCapsule_New((void*)(*$1), SWIGPY_CAPSULE_NAME, free_cap); -%#if NPY_API_VERSION < 0x00000007 +%#if NPY_API_VERSION < NPY_1_7_API_VERSION PyArray_BASE(array) = cap; %#else PyArray_SetBaseObject(array,cap); %#endif - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DIM_TYPE* DIM1, DATA_TYPE** ARGOUTVIEWM_ARRAY1) @@ -2493,19 +2487,15 @@ if (!array) SWIG_fail; -%#ifdef SWIGPY_USE_CAPSULE - PyObject* cap = PyCapsule_New((void*)(*$2), SWIGPY_CAPSULE_NAME, free_cap); -%#else - PyObject* cap = PyCObject_FromVoidPtr((void*)(*$2), free); -%#endif +PyObject* cap = PyCapsule_New((void*)(*$2), SWIGPY_CAPSULE_NAME, free_cap); -%#if NPY_API_VERSION < 0x00000007 +%#if NPY_API_VERSION < NPY_1_7_API_VERSION PyArray_BASE(array) = cap; %#else PyArray_SetBaseObject(array,cap); %#endif - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DATA_TYPE** ARGOUTVIEWM_ARRAY2, DIM_TYPE* DIM1, DIM_TYPE* DIM2) @@ -2528,19 +2518,15 @@ if (!array) SWIG_fail; -%#ifdef SWIGPY_USE_CAPSULE - PyObject* cap = PyCapsule_New((void*)(*$1), SWIGPY_CAPSULE_NAME, free_cap); -%#else - PyObject* cap = PyCObject_FromVoidPtr((void*)(*$1), free); -%#endif +PyObject* cap = PyCapsule_New((void*)(*$1), SWIGPY_CAPSULE_NAME, free_cap); -%#if NPY_API_VERSION < 0x00000007 +%#if NPY_API_VERSION < NPY_1_7_API_VERSION PyArray_BASE(array) = cap; %#else PyArray_SetBaseObject(array,cap); %#endif - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DIM_TYPE* DIM1, DIM_TYPE* DIM2, DATA_TYPE** ARGOUTVIEWM_ARRAY2) @@ -2563,19 +2549,15 @@ if (!array) SWIG_fail; -%#ifdef SWIGPY_USE_CAPSULE - PyObject* cap = PyCapsule_New((void*)(*$3), SWIGPY_CAPSULE_NAME, free_cap); -%#else - PyObject* cap = PyCObject_FromVoidPtr((void*)(*$3), free); -%#endif +PyObject* cap = PyCapsule_New((void*)(*$3), SWIGPY_CAPSULE_NAME, free_cap); -%#if NPY_API_VERSION < 0x00000007 +%#if NPY_API_VERSION < NPY_1_7_API_VERSION PyArray_BASE(array) = cap; %#else PyArray_SetBaseObject(array,cap); %#endif - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DATA_TYPE** ARGOUTVIEWM_FARRAY2, DIM_TYPE* DIM1, DIM_TYPE* DIM2) @@ -2598,19 +2580,15 @@ if (!array || !require_fortran(array)) SWIG_fail; -%#ifdef SWIGPY_USE_CAPSULE - PyObject* cap = PyCapsule_New((void*)(*$1), SWIGPY_CAPSULE_NAME, free_cap); -%#else - PyObject* cap = PyCObject_FromVoidPtr((void*)(*$1), free); -%#endif +PyObject* cap = PyCapsule_New((void*)(*$1), SWIGPY_CAPSULE_NAME, free_cap); -%#if NPY_API_VERSION < 0x00000007 +%#if NPY_API_VERSION < NPY_1_7_API_VERSION PyArray_BASE(array) = cap; %#else PyArray_SetBaseObject(array,cap); %#endif - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DIM_TYPE* DIM1, DIM_TYPE* DIM2, DATA_TYPE** ARGOUTVIEWM_FARRAY2) @@ -2633,19 +2611,15 @@ if (!array || !require_fortran(array)) SWIG_fail; -%#ifdef SWIGPY_USE_CAPSULE - PyObject* cap = PyCapsule_New((void*)(*$3), SWIGPY_CAPSULE_NAME, free_cap); -%#else - PyObject* cap = PyCObject_FromVoidPtr((void*)(*$3), free); -%#endif +PyObject* cap = PyCapsule_New((void*)(*$3), SWIGPY_CAPSULE_NAME, free_cap); -%#if NPY_API_VERSION < 0x00000007 +%#if NPY_API_VERSION < NPY_1_7_API_VERSION PyArray_BASE(array) = cap; %#else PyArray_SetBaseObject(array,cap); %#endif - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DATA_TYPE** ARGOUTVIEWM_ARRAY3, DIM_TYPE* DIM1, DIM_TYPE* DIM2, @@ -2670,19 +2644,15 @@ if (!array) SWIG_fail; -%#ifdef SWIGPY_USE_CAPSULE - PyObject* cap = PyCapsule_New((void*)(*$1), SWIGPY_CAPSULE_NAME, free_cap); -%#else - PyObject* cap = PyCObject_FromVoidPtr((void*)(*$1), free); -%#endif +PyObject* cap = PyCapsule_New((void*)(*$1), SWIGPY_CAPSULE_NAME, free_cap); -%#if NPY_API_VERSION < 0x00000007 +%#if NPY_API_VERSION < NPY_1_7_API_VERSION PyArray_BASE(array) = cap; %#else PyArray_SetBaseObject(array,cap); %#endif - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DIM_TYPE* DIM1, DIM_TYPE* DIM2, DIM_TYPE* DIM3, @@ -2707,19 +2677,15 @@ if (!array) SWIG_fail; -%#ifdef SWIGPY_USE_CAPSULE - PyObject* cap = PyCapsule_New((void*)(*$4), SWIGPY_CAPSULE_NAME, free_cap); -%#else - PyObject* cap = PyCObject_FromVoidPtr((void*)(*$4), free); -%#endif +PyObject* cap = PyCapsule_New((void*)(*$4), SWIGPY_CAPSULE_NAME, free_cap); -%#if NPY_API_VERSION < 0x00000007 +%#if NPY_API_VERSION < NPY_1_7_API_VERSION PyArray_BASE(array) = cap; %#else PyArray_SetBaseObject(array,cap); %#endif - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DATA_TYPE** ARGOUTVIEWM_FARRAY3, DIM_TYPE* DIM1, DIM_TYPE* DIM2, @@ -2744,19 +2710,15 @@ if (!array || !require_fortran(array)) SWIG_fail; -%#ifdef SWIGPY_USE_CAPSULE - PyObject* cap = PyCapsule_New((void*)(*$1), SWIGPY_CAPSULE_NAME, free_cap); -%#else - PyObject* cap = PyCObject_FromVoidPtr((void*)(*$1), free); -%#endif +PyObject* cap = PyCapsule_New((void*)(*$1), SWIGPY_CAPSULE_NAME, free_cap); -%#if NPY_API_VERSION < 0x00000007 +%#if NPY_API_VERSION < NPY_1_7_API_VERSION PyArray_BASE(array) = cap; %#else PyArray_SetBaseObject(array,cap); %#endif - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DIM_TYPE* DIM1, DIM_TYPE* DIM2, DIM_TYPE* DIM3, @@ -2781,19 +2743,15 @@ if (!array || !require_fortran(array)) SWIG_fail; -%#ifdef SWIGPY_USE_CAPSULE - PyObject* cap = PyCapsule_New((void*)(*$4), SWIGPY_CAPSULE_NAME, free_cap); -%#else - PyObject* cap = PyCObject_FromVoidPtr((void*)(*$4), free); -%#endif +PyObject* cap = PyCapsule_New((void*)(*$4), SWIGPY_CAPSULE_NAME, free_cap); -%#if NPY_API_VERSION < 0x00000007 +%#if NPY_API_VERSION < NPY_1_7_API_VERSION PyArray_BASE(array) = cap; %#else PyArray_SetBaseObject(array,cap); %#endif - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DATA_TYPE** ARGOUTVIEWM_ARRAY4, DIM_TYPE* DIM1, DIM_TYPE* DIM2, @@ -2819,19 +2777,15 @@ if (!array) SWIG_fail; -%#ifdef SWIGPY_USE_CAPSULE - PyObject* cap = PyCapsule_New((void*)(*$1), SWIGPY_CAPSULE_NAME, free_cap); -%#else - PyObject* cap = PyCObject_FromVoidPtr((void*)(*$1), free); -%#endif +PyObject* cap = PyCapsule_New((void*)(*$1), SWIGPY_CAPSULE_NAME, free_cap); -%#if NPY_API_VERSION < 0x00000007 +%#if NPY_API_VERSION < NPY_1_7_API_VERSION PyArray_BASE(array) = cap; %#else PyArray_SetBaseObject(array,cap); %#endif - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DIM_TYPE* DIM1, DIM_TYPE* DIM2, DIM_TYPE* DIM3, DIM_TYPE* DIM4, @@ -2857,19 +2811,15 @@ if (!array) SWIG_fail; -%#ifdef SWIGPY_USE_CAPSULE - PyObject* cap = PyCapsule_New((void*)(*$5), SWIGPY_CAPSULE_NAME, free_cap); -%#else - PyObject* cap = PyCObject_FromVoidPtr((void*)(*$5), free); -%#endif +PyObject* cap = PyCapsule_New((void*)(*$5), SWIGPY_CAPSULE_NAME, free_cap); -%#if NPY_API_VERSION < 0x00000007 +%#if NPY_API_VERSION < NPY_1_7_API_VERSION PyArray_BASE(array) = cap; %#else PyArray_SetBaseObject(array,cap); %#endif - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DATA_TYPE** ARGOUTVIEWM_FARRAY4, DIM_TYPE* DIM1, DIM_TYPE* DIM2, @@ -2895,19 +2845,15 @@ if (!array || !require_fortran(array)) SWIG_fail; -%#ifdef SWIGPY_USE_CAPSULE - PyObject* cap = PyCapsule_New((void*)(*$1), SWIGPY_CAPSULE_NAME, free_cap); -%#else - PyObject* cap = PyCObject_FromVoidPtr((void*)(*$1), free); -%#endif +PyObject* cap = PyCapsule_New((void*)(*$1), SWIGPY_CAPSULE_NAME, free_cap); -%#if NPY_API_VERSION < 0x00000007 +%#if NPY_API_VERSION < NPY_1_7_API_VERSION PyArray_BASE(array) = cap; %#else PyArray_SetBaseObject(array,cap); %#endif - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /* Typemap suite for (DIM_TYPE* DIM1, DIM_TYPE* DIM2, DIM_TYPE* DIM3, DIM_TYPE* DIM4, @@ -2933,19 +2879,15 @@ if (!array || !require_fortran(array)) SWIG_fail; -%#ifdef SWIGPY_USE_CAPSULE - PyObject* cap = PyCapsule_New((void*)(*$5), SWIGPY_CAPSULE_NAME, free_cap); -%#else - PyObject* cap = PyCObject_FromVoidPtr((void*)(*$5), free); -%#endif +PyObject* cap = PyCapsule_New((void*)(*$5), SWIGPY_CAPSULE_NAME, free_cap); -%#if NPY_API_VERSION < 0x00000007 +%#if NPY_API_VERSION < NPY_1_7_API_VERSION PyArray_BASE(array) = cap; %#else PyArray_SetBaseObject(array,cap); %#endif - $result = SWIG_Python_AppendOutput($result,obj); + $result = SWIG_AppendOutput($result,obj); } /**************************************/ From ede2d26c2b9da748b90e8c558e0b6c3e3c2c1fc5 Mon Sep 17 00:00:00 2001 From: Thomas Paviot Date: Fri, 15 Nov 2024 17:52:44 +0100 Subject: [PATCH 034/157] Regenerate all SWIG files: update refman to latest 7.8.0, add class name to .i files documentation for each method --- src/SWIG_files/wrapper/AIS.i | 4406 +++++++------- src/SWIG_files/wrapper/APIHeaderSection.i | 206 +- src/SWIG_files/wrapper/Adaptor2d.i | 410 +- src/SWIG_files/wrapper/Adaptor3d.i | 978 ++-- src/SWIG_files/wrapper/AdvApp2Var.i | 786 +-- src/SWIG_files/wrapper/AdvApprox.i | 166 +- src/SWIG_files/wrapper/AppBlend.i | 82 +- src/SWIG_files/wrapper/AppCont.i | 50 +- src/SWIG_files/wrapper/AppDef.i | 1542 ++--- src/SWIG_files/wrapper/AppParCurves.i | 258 +- src/SWIG_files/wrapper/AppStd.i | 6 +- src/SWIG_files/wrapper/AppStdL.i | 6 +- src/SWIG_files/wrapper/Approx.i | 566 +- src/SWIG_files/wrapper/ApproxInt.i | 46 +- src/SWIG_files/wrapper/Aspect.i | 854 +-- src/SWIG_files/wrapper/BOPAlgo.i | 1078 ++-- src/SWIG_files/wrapper/BOPDS.i | 1202 ++-- src/SWIG_files/wrapper/BOPTools.i | 458 +- src/SWIG_files/wrapper/BRep.i | 1174 ++-- src/SWIG_files/wrapper/BRepAdaptor.i | 566 +- src/SWIG_files/wrapper/BRepAlgo.i | 326 +- src/SWIG_files/wrapper/BRepAlgoAPI.i | 382 +- src/SWIG_files/wrapper/BRepApprox.i | 1322 ++--- src/SWIG_files/wrapper/BRepBlend.i | 1762 +++--- src/SWIG_files/wrapper/BRepBndLib.i | 18 +- src/SWIG_files/wrapper/BRepBuilderAPI.i | 1118 ++-- src/SWIG_files/wrapper/BRepCheck.i | 330 +- src/SWIG_files/wrapper/BRepClass.i | 258 +- src/SWIG_files/wrapper/BRepClass3d.i | 270 +- src/SWIG_files/wrapper/BRepExtrema.i | 650 +-- src/SWIG_files/wrapper/BRepFeat.i | 594 +- src/SWIG_files/wrapper/BRepFill.i | 1118 ++-- src/SWIG_files/wrapper/BRepFilletAPI.i | 546 +- src/SWIG_files/wrapper/BRepGProp.i | 490 +- src/SWIG_files/wrapper/BRepIntCurveSurface.i | 62 +- src/SWIG_files/wrapper/BRepLProp.i | 214 +- src/SWIG_files/wrapper/BRepLib.i | 1038 ++-- src/SWIG_files/wrapper/BRepMAT2d.i | 138 +- src/SWIG_files/wrapper/BRepMesh.i | 1150 ++-- src/SWIG_files/wrapper/BRepMeshData.i | 142 +- src/SWIG_files/wrapper/BRepOffset.i | 526 +- src/SWIG_files/wrapper/BRepOffsetAPI.i | 670 +-- src/SWIG_files/wrapper/BRepPrim.i | 582 +- src/SWIG_files/wrapper/BRepPrimAPI.i | 422 +- src/SWIG_files/wrapper/BRepProj.i | 34 +- src/SWIG_files/wrapper/BRepSweep.i | 514 +- src/SWIG_files/wrapper/BRepTools.i | 750 +-- src/SWIG_files/wrapper/BRepTopAdaptor.i | 210 +- src/SWIG_files/wrapper/BSplCLib.i | 674 +-- src/SWIG_files/wrapper/BSplSLib.i | 174 +- src/SWIG_files/wrapper/BVH.i | 70 +- src/SWIG_files/wrapper/BiTgte.i | 366 +- src/SWIG_files/wrapper/BinDrivers.i | 74 +- src/SWIG_files/wrapper/BinLDrivers.i | 98 +- src/SWIG_files/wrapper/BinMDF.i | 110 +- src/SWIG_files/wrapper/BinMDataStd.i | 366 +- src/SWIG_files/wrapper/BinMDataXtd.i | 110 +- src/SWIG_files/wrapper/BinMDocStd.i | 22 +- src/SWIG_files/wrapper/BinMFunction.i | 54 +- src/SWIG_files/wrapper/BinMNaming.i | 82 +- src/SWIG_files/wrapper/BinMXCAFDoc.i | 234 +- src/SWIG_files/wrapper/BinObjMgt.i | 238 +- src/SWIG_files/wrapper/BinTObjDrivers.i | 110 +- src/SWIG_files/wrapper/BinTools.i | 390 +- src/SWIG_files/wrapper/BinXCAFDrivers.i | 30 +- src/SWIG_files/wrapper/Bisector.i | 598 +- src/SWIG_files/wrapper/Blend.i | 890 +-- src/SWIG_files/wrapper/BlendFunc.i | 1446 ++--- src/SWIG_files/wrapper/Bnd.i | 1018 ++-- src/SWIG_files/wrapper/BndLib.i | 150 +- src/SWIG_files/wrapper/CDF.i | 330 +- src/SWIG_files/wrapper/CDM.i | 422 +- src/SWIG_files/wrapper/CPnts.i | 206 +- src/SWIG_files/wrapper/CSLib.i | 70 +- src/SWIG_files/wrapper/ChFi2d.i | 218 +- src/SWIG_files/wrapper/ChFi3d.i | 354 +- src/SWIG_files/wrapper/ChFiDS.i | 1242 ++-- src/SWIG_files/wrapper/ChFiKPart.i | 18 +- src/SWIG_files/wrapper/Contap.i | 922 +-- src/SWIG_files/wrapper/Convert.i | 326 +- src/SWIG_files/wrapper/DE.i | 286 +- src/SWIG_files/wrapper/DEBRepCascade.i | 98 +- src/SWIG_files/wrapper/DEXCAFCascade.i | 98 +- src/SWIG_files/wrapper/Draft.i | 234 +- src/SWIG_files/wrapper/DsgPrs.i | 2 +- src/SWIG_files/wrapper/ElCLib.i | 482 +- src/SWIG_files/wrapper/ElSLib.i | 306 +- src/SWIG_files/wrapper/Expr.i | 1778 +++--- src/SWIG_files/wrapper/ExprIntrp.i | 146 +- src/SWIG_files/wrapper/Extrema.i | 2842 ++++----- src/SWIG_files/wrapper/FEmTool.i | 2 +- src/SWIG_files/wrapper/FSD.i | 2 +- src/SWIG_files/wrapper/FairCurve.i | 266 +- src/SWIG_files/wrapper/FilletSurf.i | 178 +- src/SWIG_files/wrapper/GC.i | 370 +- src/SWIG_files/wrapper/GCE2d.i | 282 +- src/SWIG_files/wrapper/GCPnts.i | 402 +- src/SWIG_files/wrapper/GProp.i | 274 +- src/SWIG_files/wrapper/GccAna.i | 550 +- src/SWIG_files/wrapper/GccEnt.i | 98 +- src/SWIG_files/wrapper/GccInt.i | 102 +- src/SWIG_files/wrapper/Geom.i | 3774 ++++++------ src/SWIG_files/wrapper/Geom2d.i | 1790 +++--- src/SWIG_files/wrapper/Geom2dAPI.i | 214 +- src/SWIG_files/wrapper/Geom2dAdaptor.i | 154 +- src/SWIG_files/wrapper/Geom2dConvert.i | 166 +- src/SWIG_files/wrapper/Geom2dEvaluator.i | 78 +- src/SWIG_files/wrapper/Geom2dGcc.i | 970 ++-- src/SWIG_files/wrapper/Geom2dHatch.i | 450 +- src/SWIG_files/wrapper/Geom2dInt.i | 506 +- src/SWIG_files/wrapper/Geom2dLProp.i | 166 +- src/SWIG_files/wrapper/GeomAPI.i | 538 +- src/SWIG_files/wrapper/GeomAbs.i | 2 +- src/SWIG_files/wrapper/GeomAdaptor.i | 706 +-- src/SWIG_files/wrapper/GeomConvert.i | 486 +- src/SWIG_files/wrapper/GeomEvaluator.i | 206 +- src/SWIG_files/wrapper/GeomFill.i | 2774 ++++----- src/SWIG_files/wrapper/GeomInt.i | 1298 ++--- src/SWIG_files/wrapper/GeomLProp.i | 214 +- src/SWIG_files/wrapper/GeomLib.i | 298 +- src/SWIG_files/wrapper/GeomPlate.i | 470 +- src/SWIG_files/wrapper/GeomProjLib.i | 34 +- src/SWIG_files/wrapper/GeomToStep.i | 386 +- src/SWIG_files/wrapper/GeomTools.i | 198 +- src/SWIG_files/wrapper/Graphic3d.i | 5362 ++++++++--------- src/SWIG_files/wrapper/HLRAlgo.i | 702 +-- src/SWIG_files/wrapper/HLRAppli.i | 22 +- src/SWIG_files/wrapper/HLRBRep.i | 3118 +++++----- src/SWIG_files/wrapper/HLRTopoBRep.i | 242 +- src/SWIG_files/wrapper/Hatch.i | 110 +- src/SWIG_files/wrapper/HatchGen.i | 190 +- src/SWIG_files/wrapper/HeaderSection.i | 154 +- src/SWIG_files/wrapper/Hermit.i | 14 +- src/SWIG_files/wrapper/IFSelect.i | 3378 +++++------ src/SWIG_files/wrapper/IGESCAFControl.i | 202 +- src/SWIG_files/wrapper/IGESControl.i | 138 +- src/SWIG_files/wrapper/IGESData.i | 1970 +++---- src/SWIG_files/wrapper/IGESToBRep.i | 682 +-- src/SWIG_files/wrapper/IMeshData.i | 242 +- src/SWIG_files/wrapper/IMeshTools.i | 142 +- src/SWIG_files/wrapper/IVtk.i | 2 +- src/SWIG_files/wrapper/IVtkOCC.i | 2 +- src/SWIG_files/wrapper/IVtkTools.i | 2 +- src/SWIG_files/wrapper/IVtkVTK.i | 2 +- src/SWIG_files/wrapper/Image.i | 2 +- src/SWIG_files/wrapper/IntAna.i | 502 +- src/SWIG_files/wrapper/IntAna2d.i | 170 +- src/SWIG_files/wrapper/IntCurve.i | 306 +- src/SWIG_files/wrapper/IntCurveSurface.i | 534 +- src/SWIG_files/wrapper/IntCurvesFace.i | 134 +- src/SWIG_files/wrapper/IntImp.i | 2 +- src/SWIG_files/wrapper/IntImpParGen.i | 18 +- src/SWIG_files/wrapper/IntPatch.i | 1942 +++---- src/SWIG_files/wrapper/IntPolyh.i | 602 +- src/SWIG_files/wrapper/IntRes2d.i | 218 +- src/SWIG_files/wrapper/IntStart.i | 6 +- src/SWIG_files/wrapper/IntSurf.i | 442 +- src/SWIG_files/wrapper/IntTools.i | 1354 ++--- src/SWIG_files/wrapper/IntWalk.i | 114 +- src/SWIG_files/wrapper/Interface.i | 2574 ++++----- src/SWIG_files/wrapper/InterfaceGraphic.i | 2 +- src/SWIG_files/wrapper/Intf.i | 338 +- src/SWIG_files/wrapper/Intrv.i | 166 +- src/SWIG_files/wrapper/LDOM.i | 2 +- src/SWIG_files/wrapper/LProp.i | 42 +- src/SWIG_files/wrapper/LProp3d.i | 206 +- src/SWIG_files/wrapper/Law.i | 570 +- src/SWIG_files/wrapper/LocOpe.i | 746 +-- src/SWIG_files/wrapper/LocalAnalysis.i | 170 +- src/SWIG_files/wrapper/MAT.i | 682 +-- src/SWIG_files/wrapper/MAT2d.i | 314 +- src/SWIG_files/wrapper/Media.i | 414 +- src/SWIG_files/wrapper/MeshVS.i | 962 ++-- src/SWIG_files/wrapper/Message.i | 746 +-- src/SWIG_files/wrapper/MoniTool.i | 710 +-- src/SWIG_files/wrapper/NCollection.i | 2 +- src/SWIG_files/wrapper/NLPlate.i | 278 +- src/SWIG_files/wrapper/OSD.i | 2 +- src/SWIG_files/wrapper/PCDM.i | 306 +- src/SWIG_files/wrapper/PLib.i | 322 +- src/SWIG_files/wrapper/Plate.i | 318 +- src/SWIG_files/wrapper/Plugin.i | 2 +- src/SWIG_files/wrapper/Poly.i | 1010 ++-- src/SWIG_files/wrapper/Precision.i | 74 +- src/SWIG_files/wrapper/ProjLib.i | 1046 ++-- src/SWIG_files/wrapper/Prs3d.i | 1418 ++--- src/SWIG_files/wrapper/PrsDim.i | 914 +-- src/SWIG_files/wrapper/PrsMgr.i | 486 +- src/SWIG_files/wrapper/Quantity.i | 426 +- src/SWIG_files/wrapper/RWGltf.i | 426 +- src/SWIG_files/wrapper/RWHeaderSection.i | 90 +- src/SWIG_files/wrapper/RWMesh.i | 430 +- src/SWIG_files/wrapper/RWObj.i | 306 +- src/SWIG_files/wrapper/RWPly.i | 254 +- src/SWIG_files/wrapper/RWStepAP203.i | 178 +- src/SWIG_files/wrapper/RWStepAP214.i | 482 +- src/SWIG_files/wrapper/RWStepAP242.i | 66 +- src/SWIG_files/wrapper/RWStepBasic.i | 1778 +++--- src/SWIG_files/wrapper/RWStepDimTol.i | 774 +-- src/SWIG_files/wrapper/RWStepElement.i | 242 +- src/SWIG_files/wrapper/RWStepFEA.i | 834 +-- src/SWIG_files/wrapper/RWStepGeom.i | 1334 ++--- src/SWIG_files/wrapper/RWStepKinematics.i | 1186 ++-- src/SWIG_files/wrapper/RWStepRepr.i | 1030 ++-- src/SWIG_files/wrapper/RWStepShape.i | 1442 ++--- src/SWIG_files/wrapper/RWStepVisual.i | 1494 ++--- src/SWIG_files/wrapper/RWStl.i | 130 +- src/SWIG_files/wrapper/Resource.i | 138 +- src/SWIG_files/wrapper/STEPCAFControl.i | 534 +- src/SWIG_files/wrapper/STEPConstruct.i | 810 +-- src/SWIG_files/wrapper/STEPControl.i | 202 +- src/SWIG_files/wrapper/STEPEdit.i | 74 +- src/SWIG_files/wrapper/STEPSelections.i | 214 +- src/SWIG_files/wrapper/Select3D.i | 754 +-- src/SWIG_files/wrapper/SelectBasics.i | 194 +- src/SWIG_files/wrapper/SelectMgr.i | 1314 ++--- src/SWIG_files/wrapper/ShapeAlgo.i | 26 +- src/SWIG_files/wrapper/ShapeAnalysis.i | 1486 ++--- src/SWIG_files/wrapper/ShapeBuild.i | 110 +- src/SWIG_files/wrapper/ShapeConstruct.i | 106 +- src/SWIG_files/wrapper/ShapeCustom.i | 190 +- src/SWIG_files/wrapper/ShapeExtend.i | 482 +- src/SWIG_files/wrapper/ShapeFix.i | 1066 ++-- src/SWIG_files/wrapper/ShapeProcess.i | 198 +- src/SWIG_files/wrapper/ShapeProcessAPI.i | 26 +- src/SWIG_files/wrapper/ShapeUpgrade.i | 982 ++-- src/SWIG_files/wrapper/Standard.i | 394 +- src/SWIG_files/wrapper/StdFail.i | 2 +- src/SWIG_files/wrapper/StdPrs.i | 538 +- src/SWIG_files/wrapper/StdSelect.i | 170 +- src/SWIG_files/wrapper/StepAP203.i | 414 +- src/SWIG_files/wrapper/StepAP209.i | 118 +- src/SWIG_files/wrapper/StepAP214.i | 1338 ++--- src/SWIG_files/wrapper/StepAP242.i | 222 +- src/SWIG_files/wrapper/StepBasic.i | 3354 +++++------ src/SWIG_files/wrapper/StepData.i | 1858 +++--- src/SWIG_files/wrapper/StepDimTol.i | 970 ++-- src/SWIG_files/wrapper/StepElement.i | 814 +-- src/SWIG_files/wrapper/StepFEA.i | 1150 ++-- src/SWIG_files/wrapper/StepGeom.i | 2454 ++++---- src/SWIG_files/wrapper/StepKinematics.i | 2054 +++---- src/SWIG_files/wrapper/StepRepr.i | 1350 ++--- src/SWIG_files/wrapper/StepShape.i | 2022 +++---- src/SWIG_files/wrapper/StepToGeom.i | 194 +- src/SWIG_files/wrapper/StepToTopoDS.i | 514 +- src/SWIG_files/wrapper/StepVisual.i | 2606 ++++----- src/SWIG_files/wrapper/StlAPI.i | 22 +- src/SWIG_files/wrapper/Storage.i | 2 +- src/SWIG_files/wrapper/Sweep.i | 102 +- src/SWIG_files/wrapper/TColGeom.i | 2 +- src/SWIG_files/wrapper/TColGeom2d.i | 2 +- src/SWIG_files/wrapper/TColQuantity.i | 2 +- src/SWIG_files/wrapper/TColStd.i | 118 +- src/SWIG_files/wrapper/TColgp.i | 2 +- src/SWIG_files/wrapper/TCollection.i | 978 ++-- src/SWIG_files/wrapper/TDF.i | 1074 ++-- src/SWIG_files/wrapper/TDataStd.i | 2246 ++++---- src/SWIG_files/wrapper/TDataXtd.i | 830 +-- src/SWIG_files/wrapper/TDocStd.i | 762 +-- src/SWIG_files/wrapper/TFunction.i | 502 +- src/SWIG_files/wrapper/TNaming.i | 994 ++-- src/SWIG_files/wrapper/TObj.i | 914 +-- src/SWIG_files/wrapper/TPrsStd.i | 438 +- src/SWIG_files/wrapper/TShort.i | 2 +- src/SWIG_files/wrapper/TopAbs.i | 50 +- src/SWIG_files/wrapper/TopBas.i | 50 +- src/SWIG_files/wrapper/TopClass.i | 50 +- src/SWIG_files/wrapper/TopCnx.i | 26 +- src/SWIG_files/wrapper/TopExp.i | 86 +- src/SWIG_files/wrapper/TopLoc.i | 182 +- src/SWIG_files/wrapper/TopOpeBRep.i | 1558 ++--- src/SWIG_files/wrapper/TopOpeBRepBuild.i | 2450 ++++---- src/SWIG_files/wrapper/TopOpeBRepDS.i | 2014 +++---- src/SWIG_files/wrapper/TopOpeBRepTool.i | 1186 ++-- src/SWIG_files/wrapper/TopTools.i | 170 +- src/SWIG_files/wrapper/TopTrans.i | 62 +- src/SWIG_files/wrapper/TopoDS.i | 530 +- src/SWIG_files/wrapper/TopoDSToStep.i | 370 +- src/SWIG_files/wrapper/Transfer.i | 1170 ++-- src/SWIG_files/wrapper/TransferBRep.i | 382 +- src/SWIG_files/wrapper/UTL.i | 74 +- src/SWIG_files/wrapper/Units.i | 750 +-- src/SWIG_files/wrapper/UnitsAPI.i | 134 +- src/SWIG_files/wrapper/UnitsMethods.i | 38 +- src/SWIG_files/wrapper/V3d.i | 1370 ++--- src/SWIG_files/wrapper/Vrml.i | 1326 ++--- src/SWIG_files/wrapper/VrmlAPI.i | 94 +- src/SWIG_files/wrapper/VrmlConverter.i | 386 +- src/SWIG_files/wrapper/VrmlData.i | 966 ++-- src/SWIG_files/wrapper/XBRepMesh.i | 6 +- src/SWIG_files/wrapper/XCAFApp.i | 14 +- src/SWIG_files/wrapper/XCAFDimTolObjects.i | 590 +- src/SWIG_files/wrapper/XCAFDoc.i | 2766 ++++----- src/SWIG_files/wrapper/XCAFNoteObjects.i | 58 +- src/SWIG_files/wrapper/XCAFPrs.i | 218 +- src/SWIG_files/wrapper/XCAFView.i | 142 +- src/SWIG_files/wrapper/XSControl.i | 914 +-- src/SWIG_files/wrapper/XmlDrivers.i | 42 +- src/SWIG_files/wrapper/XmlLDrivers.i | 66 +- src/SWIG_files/wrapper/XmlMDF.i | 122 +- src/SWIG_files/wrapper/XmlMDataStd.i | 366 +- src/SWIG_files/wrapper/XmlMDataXtd.i | 110 +- src/SWIG_files/wrapper/XmlMDocStd.i | 22 +- src/SWIG_files/wrapper/XmlMFunction.i | 54 +- src/SWIG_files/wrapper/XmlMNaming.i | 90 +- src/SWIG_files/wrapper/XmlMXCAFDoc.i | 234 +- src/SWIG_files/wrapper/XmlObjMgt.i | 166 +- src/SWIG_files/wrapper/XmlTObjDrivers.i | 110 +- src/SWIG_files/wrapper/XmlXCAFDrivers.i | 26 +- src/SWIG_files/wrapper/gce.i | 554 +- src/SWIG_files/wrapper/generator.log | 6 +- src/SWIG_files/wrapper/gp.i | 5394 +++++++++--------- src/SWIG_files/wrapper/math.i | 1722 +++--- 313 files changed, 93505 insertions(+), 93505 deletions(-) diff --git a/src/SWIG_files/wrapper/AIS.i b/src/SWIG_files/wrapper/AIS.i index 59fe2584c..b25f7181d 100644 --- a/src/SWIG_files/wrapper/AIS.i +++ b/src/SWIG_files/wrapper/AIS.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define AISDOCSTRING "AIS module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_ais.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_ais.html" %enddef %module (package="OCC.Core", docstring=AISDOCSTRING) AIS @@ -662,8 +662,8 @@ class AIS { **********************/ class AIS_Animation : public Standard_Transient { public: - /****************** AIS_Animation ******************/ - /**** md5 signature: 727aa36e0eb9a950096a860aa469ee16 ****/ + /****** AIS_Animation::AIS_Animation ******/ + /****** md5 signature: 727aa36e0eb9a950096a860aa469ee16 ******/ %feature("compactdefaultargs") AIS_Animation; %feature("autodoc", " Parameters @@ -680,8 +680,8 @@ Creates empty animation. ") AIS_Animation; AIS_Animation(TCollection_AsciiString theAnimationName); - /****************** Add ******************/ - /**** md5 signature: b7202ad1c8c688e6eb7fda91d2734c8a ****/ + /****** AIS_Animation::Add ******/ + /****** md5 signature: b7202ad1c8c688e6eb7fda91d2734c8a ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -698,8 +698,8 @@ Add single animation to the timeline. @param theanimation input animation. ") Add; void Add(const opencascade::handle & theAnimation); - /****************** Children ******************/ - /**** md5 signature: 4d291cae5d0ccc80f46be7cb0940bb81 ****/ + /****** AIS_Animation::Children ******/ + /****** md5 signature: 4d291cae5d0ccc80f46be7cb0940bb81 ******/ %feature("compactdefaultargs") Children; %feature("autodoc", "Return ------- @@ -711,8 +711,8 @@ Return sequence of child animations. ") Children; const NCollection_Sequence> & Children(); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** AIS_Animation::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -724,8 +724,8 @@ Clear animation timeline - remove all animations from it. ") Clear; void Clear(); - /****************** CopyFrom ******************/ - /**** md5 signature: 7d3ff49ce8472b7f7d11949859063cb9 ****/ + /****** AIS_Animation::CopyFrom ******/ + /****** md5 signature: 7d3ff49ce8472b7f7d11949859063cb9 ******/ %feature("compactdefaultargs") CopyFrom; %feature("autodoc", " Parameters @@ -742,8 +742,8 @@ Clears own children and then copy child animations from another object. copy als ") CopyFrom; void CopyFrom(const opencascade::handle & theOther); - /****************** Duration ******************/ - /**** md5 signature: 06189957f640ef2ea84a8c20c3be6eb2 ****/ + /****** AIS_Animation::Duration ******/ + /****** md5 signature: 06189957f640ef2ea84a8c20c3be6eb2 ******/ %feature("compactdefaultargs") Duration; %feature("autodoc", "Return ------- @@ -755,8 +755,8 @@ Return duration of the animation in the timeline. ") Duration; Standard_Real Duration(); - /****************** ElapsedTime ******************/ - /**** md5 signature: 70206d58970896f6b73a519322e3cb27 ****/ + /****** AIS_Animation::ElapsedTime ******/ + /****** md5 signature: 70206d58970896f6b73a519322e3cb27 ******/ %feature("compactdefaultargs") ElapsedTime; %feature("autodoc", "Return ------- @@ -768,8 +768,8 @@ Return elapsed time. ") ElapsedTime; Standard_Real ElapsedTime(); - /****************** Find ******************/ - /**** md5 signature: 9e22b1f4cfa3ba31fa4a06fb1ca92a95 ****/ + /****** AIS_Animation::Find ******/ + /****** md5 signature: 9e22b1f4cfa3ba31fa4a06fb1ca92a95 ******/ %feature("compactdefaultargs") Find; %feature("autodoc", " Parameters @@ -786,8 +786,8 @@ Return the child animation with the given name. ") Find; opencascade::handle Find(TCollection_AsciiString theAnimationName); - /****************** HasOwnDuration ******************/ - /**** md5 signature: d56fdc215ecd1f278eef79952f8de61f ****/ + /****** AIS_Animation::HasOwnDuration ******/ + /****** md5 signature: d56fdc215ecd1f278eef79952f8de61f ******/ %feature("compactdefaultargs") HasOwnDuration; %feature("autodoc", "Return ------- @@ -799,8 +799,8 @@ Return true if duration is defined. ") HasOwnDuration; Standard_Boolean HasOwnDuration(); - /****************** IsStopped ******************/ - /**** md5 signature: 47d24d2d20eebce42247deefc3d90f95 ****/ + /****** AIS_Animation::IsStopped ******/ + /****** md5 signature: 47d24d2d20eebce42247deefc3d90f95 ******/ %feature("compactdefaultargs") IsStopped; %feature("autodoc", "Return ------- @@ -812,8 +812,8 @@ Check if animation is to be performed in the animation timeline. return true if ") IsStopped; bool IsStopped(); - /****************** Name ******************/ - /**** md5 signature: efed61b92683387cd746fb27e0376505 ****/ + /****** AIS_Animation::Name ******/ + /****** md5 signature: efed61b92683387cd746fb27e0376505 ******/ %feature("compactdefaultargs") Name; %feature("autodoc", "Return ------- @@ -825,8 +825,8 @@ Animation name. ") Name; const TCollection_AsciiString & Name(); - /****************** OwnDuration ******************/ - /**** md5 signature: 91e7334f62ba03e5416b947ca9e5589c ****/ + /****** AIS_Animation::OwnDuration ******/ + /****** md5 signature: 91e7334f62ba03e5416b947ca9e5589c ******/ %feature("compactdefaultargs") OwnDuration; %feature("autodoc", "Return ------- @@ -838,8 +838,8 @@ Return own duration of the animation in the timeline. ") OwnDuration; Standard_Real OwnDuration(); - /****************** Pause ******************/ - /**** md5 signature: 98a33dcef2fa2a4e7461512069a3757c ****/ + /****** AIS_Animation::Pause ******/ + /****** md5 signature: 98a33dcef2fa2a4e7461512069a3757c ******/ %feature("compactdefaultargs") Pause; %feature("autodoc", "Return ------- @@ -851,8 +851,8 @@ Pause the process timeline. ") Pause; virtual void Pause(); - /****************** Remove ******************/ - /**** md5 signature: c2d3205baf5b26e561fca40dd748a99c ****/ + /****** AIS_Animation::Remove ******/ + /****** md5 signature: c2d3205baf5b26e561fca40dd748a99c ******/ %feature("compactdefaultargs") Remove; %feature("autodoc", " Parameters @@ -869,8 +869,8 @@ Remove the child animation. ") Remove; Standard_Boolean Remove(const opencascade::handle & theAnimation); - /****************** Replace ******************/ - /**** md5 signature: 42763c45f3c3b0ec0a4cf50313c6374f ****/ + /****** AIS_Animation::Replace ******/ + /****** md5 signature: 42763c45f3c3b0ec0a4cf50313c6374f ******/ %feature("compactdefaultargs") Replace; %feature("autodoc", " Parameters @@ -888,8 +888,8 @@ Replace the child animation. ") Replace; Standard_Boolean Replace(const opencascade::handle & theAnimationOld, const opencascade::handle & theAnimationNew); - /****************** SetOwnDuration ******************/ - /**** md5 signature: 93e15a8bd1da9298f6befc23307f6a81 ****/ + /****** AIS_Animation::SetOwnDuration ******/ + /****** md5 signature: 93e15a8bd1da9298f6befc23307f6a81 ******/ %feature("compactdefaultargs") SetOwnDuration; %feature("autodoc", " Parameters @@ -906,8 +906,8 @@ Defines duration of the animation. ") SetOwnDuration; void SetOwnDuration(const Standard_Real theDuration); - /****************** SetStartPts ******************/ - /**** md5 signature: 564ab9fb556b377ff791cc01be87d894 ****/ + /****** AIS_Animation::SetStartPts ******/ + /****** md5 signature: 564ab9fb556b377ff791cc01be87d894 ******/ %feature("compactdefaultargs") SetStartPts; %feature("autodoc", " Parameters @@ -924,8 +924,8 @@ Sets time limits for animation in the animation timeline. ") SetStartPts; void SetStartPts(const Standard_Real thePtsStart); - /****************** SetTimer ******************/ - /**** md5 signature: bc8c37bcd5d705b0ef533ab6789205d2 ****/ + /****** AIS_Animation::SetTimer ******/ + /****** md5 signature: bc8c37bcd5d705b0ef533ab6789205d2 ******/ %feature("compactdefaultargs") SetTimer; %feature("autodoc", " Parameters @@ -942,8 +942,8 @@ Set playback timer. ") SetTimer; void SetTimer(const opencascade::handle & theTimer); - /****************** Start ******************/ - /**** md5 signature: f879b7bb1d28c81e7848195df5536432 ****/ + /****** AIS_Animation::Start ******/ + /****** md5 signature: f879b7bb1d28c81e7848195df5536432 ******/ %feature("compactdefaultargs") Start; %feature("autodoc", " Parameters @@ -960,8 +960,8 @@ Start animation. this method changes status of the animation to started. this st ") Start; virtual void Start(const Standard_Boolean theToUpdate); - /****************** StartPts ******************/ - /**** md5 signature: a0076f268b996d9d8cca8f5b92fd5c71 ****/ + /****** AIS_Animation::StartPts ******/ + /****** md5 signature: a0076f268b996d9d8cca8f5b92fd5c71 ******/ %feature("compactdefaultargs") StartPts; %feature("autodoc", "Return ------- @@ -973,8 +973,8 @@ Return start time of the animation in the timeline. ") StartPts; Standard_Real StartPts(); - /****************** StartTimer ******************/ - /**** md5 signature: 0f7c28567a9543eb78614de7c427983a ****/ + /****** AIS_Animation::StartTimer ******/ + /****** md5 signature: 0f7c28567a9543eb78614de7c427983a ******/ %feature("compactdefaultargs") StartTimer; %feature("autodoc", " Parameters @@ -994,8 +994,8 @@ Start animation with internally defined timer instance. calls ::start() internal ") StartTimer; virtual void StartTimer(const Standard_Real theStartPts, const Standard_Real thePlaySpeed, const Standard_Boolean theToUpdate, const Standard_Boolean theToStopTimer = Standard_False); - /****************** Stop ******************/ - /**** md5 signature: e7291f237a00cfa5edd0b11c2d39a866 ****/ + /****** AIS_Animation::Stop ******/ + /****** md5 signature: e7291f237a00cfa5edd0b11c2d39a866 ******/ %feature("compactdefaultargs") Stop; %feature("autodoc", "Return ------- @@ -1007,8 +1007,8 @@ Stop animation. this method changed status of the animation to stopped. this sta ") Stop; virtual void Stop(); - /****************** Timer ******************/ - /**** md5 signature: 5e95b895bb505401280421403e4d0404 ****/ + /****** AIS_Animation::Timer ******/ + /****** md5 signature: 5e95b895bb505401280421403e4d0404 ******/ %feature("compactdefaultargs") Timer; %feature("autodoc", "Return ------- @@ -1020,8 +1020,8 @@ Return playback timer. ") Timer; const opencascade::handle & Timer(); - /****************** Update ******************/ - /**** md5 signature: 3cb3b333871faa76cde54e56cbc9a277 ****/ + /****** AIS_Animation::Update ******/ + /****** md5 signature: 3cb3b333871faa76cde54e56cbc9a277 ******/ %feature("compactdefaultargs") Update; %feature("autodoc", " Parameters @@ -1038,8 +1038,8 @@ Update single frame of animation, update timer state @param thepts [in] the time ") Update; virtual Standard_Boolean Update(const Standard_Real thePts); - /****************** UpdateTimer ******************/ - /**** md5 signature: e7ae9d2b64379352e7169b97fceb8f0b ****/ + /****** AIS_Animation::UpdateTimer ******/ + /****** md5 signature: e7ae9d2b64379352e7169b97fceb8f0b ******/ %feature("compactdefaultargs") UpdateTimer; %feature("autodoc", "Return ------- @@ -1051,8 +1051,8 @@ Update single frame of animation, update timer state return current time of time ") UpdateTimer; virtual Standard_Real UpdateTimer(); - /****************** UpdateTotalDuration ******************/ - /**** md5 signature: 93617e806beabddc226ac7dfb7d23e8a ****/ + /****** AIS_Animation::UpdateTotalDuration ******/ + /****** md5 signature: 93617e806beabddc226ac7dfb7d23e8a ******/ %feature("compactdefaultargs") UpdateTotalDuration; %feature("autodoc", "Return ------- @@ -1083,8 +1083,8 @@ class AIS_AnimationProgress { float Pts; float LocalPts; float LocalNormalized; - /****************** AIS_AnimationProgress ******************/ - /**** md5 signature: 9e9e671b9cf6b1f96915c177eaaa8cf0 ****/ + /****** AIS_AnimationProgress::AIS_AnimationProgress ******/ + /****** md5 signature: 9e9e671b9cf6b1f96915c177eaaa8cf0 ******/ %feature("compactdefaultargs") AIS_AnimationProgress; %feature("autodoc", "Return ------- @@ -1110,8 +1110,8 @@ No available documentation. ****************************/ class AIS_AttributeFilter : public SelectMgr_Filter { public: - /****************** AIS_AttributeFilter ******************/ - /**** md5 signature: efd1db0583fe2307eee29a09c901762e ****/ + /****** AIS_AttributeFilter::AIS_AttributeFilter ******/ + /****** md5 signature: efd1db0583fe2307eee29a09c901762e ******/ %feature("compactdefaultargs") AIS_AttributeFilter; %feature("autodoc", "Return ------- @@ -1123,8 +1123,8 @@ Constructs an empty attribute filter object. this filter object determines wheth ") AIS_AttributeFilter; AIS_AttributeFilter(); - /****************** AIS_AttributeFilter ******************/ - /**** md5 signature: c9cdc1fdd6f2484c93f120e29d61460e ****/ + /****** AIS_AttributeFilter::AIS_AttributeFilter ******/ + /****** md5 signature: c9cdc1fdd6f2484c93f120e29d61460e ******/ %feature("compactdefaultargs") AIS_AttributeFilter; %feature("autodoc", " Parameters @@ -1141,8 +1141,8 @@ Constructs an attribute filter object defined by the color attribute acol. ") AIS_AttributeFilter; AIS_AttributeFilter(const Quantity_NameOfColor aCol); - /****************** AIS_AttributeFilter ******************/ - /**** md5 signature: 2972c55c086814240c46ab438e47b674 ****/ + /****** AIS_AttributeFilter::AIS_AttributeFilter ******/ + /****** md5 signature: 2972c55c086814240c46ab438e47b674 ******/ %feature("compactdefaultargs") AIS_AttributeFilter; %feature("autodoc", " Parameters @@ -1159,8 +1159,8 @@ Constructs an attribute filter object defined by the line width attribute awidth ") AIS_AttributeFilter; AIS_AttributeFilter(const Standard_Real aWidth); - /****************** HasColor ******************/ - /**** md5 signature: f14084fe0c7674324d105b06cc1ff5b4 ****/ + /****** AIS_AttributeFilter::HasColor ******/ + /****** md5 signature: f14084fe0c7674324d105b06cc1ff5b4 ******/ %feature("compactdefaultargs") HasColor; %feature("autodoc", "Return ------- @@ -1172,8 +1172,8 @@ Indicates that the interactive object has the color setting specified by the arg ") HasColor; Standard_Boolean HasColor(); - /****************** HasWidth ******************/ - /**** md5 signature: 93af72110529b1e94c6797d09cd35e15 ****/ + /****** AIS_AttributeFilter::HasWidth ******/ + /****** md5 signature: 93af72110529b1e94c6797d09cd35e15 ******/ %feature("compactdefaultargs") HasWidth; %feature("autodoc", "Return ------- @@ -1185,8 +1185,8 @@ Indicates that the interactive object has the width setting specified by the arg ") HasWidth; Standard_Boolean HasWidth(); - /****************** IsOk ******************/ - /**** md5 signature: 30e74b6ea22a70db5324b6f796325694 ****/ + /****** AIS_AttributeFilter::IsOk ******/ + /****** md5 signature: 30e74b6ea22a70db5324b6f796325694 ******/ %feature("compactdefaultargs") IsOk; %feature("autodoc", " Parameters @@ -1203,8 +1203,8 @@ Indicates that the selected interactive object passes the filter. the owner, ano ") IsOk; virtual Standard_Boolean IsOk(const opencascade::handle & anObj); - /****************** SetColor ******************/ - /**** md5 signature: 9860b6e19b23fad901e24b0cb7a0be30 ****/ + /****** AIS_AttributeFilter::SetColor ******/ + /****** md5 signature: 9860b6e19b23fad901e24b0cb7a0be30 ******/ %feature("compactdefaultargs") SetColor; %feature("autodoc", " Parameters @@ -1221,8 +1221,8 @@ Sets the color. ") SetColor; void SetColor(const Quantity_NameOfColor theCol); - /****************** SetWidth ******************/ - /**** md5 signature: a388bd43f011bc773d8da404945719b5 ****/ + /****** AIS_AttributeFilter::SetWidth ******/ + /****** md5 signature: a388bd43f011bc773d8da404945719b5 ******/ %feature("compactdefaultargs") SetWidth; %feature("autodoc", " Parameters @@ -1239,8 +1239,8 @@ Sets the line width. ") SetWidth; void SetWidth(const Standard_Real theWidth); - /****************** UnsetColor ******************/ - /**** md5 signature: 6e328a6dea703ee08923d991dc618e9a ****/ + /****** AIS_AttributeFilter::UnsetColor ******/ + /****** md5 signature: 6e328a6dea703ee08923d991dc618e9a ******/ %feature("compactdefaultargs") UnsetColor; %feature("autodoc", "Return ------- @@ -1252,8 +1252,8 @@ Removes the setting for color from the filter. ") UnsetColor; void UnsetColor(); - /****************** UnsetWidth ******************/ - /**** md5 signature: 4be8fdb1e151f0a55dae0f7e3762ce2f ****/ + /****** AIS_AttributeFilter::UnsetWidth ******/ + /****** md5 signature: 4be8fdb1e151f0a55dae0f7e3762ce2f ******/ %feature("compactdefaultargs") UnsetWidth; %feature("autodoc", "Return ------- @@ -1281,8 +1281,8 @@ Removes the setting for width from the filter. **************************/ class AIS_BadEdgeFilter : public SelectMgr_Filter { public: - /****************** AIS_BadEdgeFilter ******************/ - /**** md5 signature: c4f845eb6fba1f43aff9d06bfb985213 ****/ + /****** AIS_BadEdgeFilter::AIS_BadEdgeFilter ******/ + /****** md5 signature: c4f845eb6fba1f43aff9d06bfb985213 ******/ %feature("compactdefaultargs") AIS_BadEdgeFilter; %feature("autodoc", "Return ------- @@ -1294,8 +1294,8 @@ Constructs an empty filter object for bad edges. ") AIS_BadEdgeFilter; AIS_BadEdgeFilter(); - /****************** ActsOn ******************/ - /**** md5 signature: 202566b6d5f020366514ab01472c39b8 ****/ + /****** AIS_BadEdgeFilter::ActsOn ******/ + /****** md5 signature: 202566b6d5f020366514ab01472c39b8 ******/ %feature("compactdefaultargs") ActsOn; %feature("autodoc", " Parameters @@ -1312,8 +1312,8 @@ No available documentation. ") ActsOn; virtual Standard_Boolean ActsOn(const TopAbs_ShapeEnum aType); - /****************** AddEdge ******************/ - /**** md5 signature: 934c4e49a2ab432fcd7f7080aefadb3d ****/ + /****** AIS_BadEdgeFilter::AddEdge ******/ + /****** md5 signature: 934c4e49a2ab432fcd7f7080aefadb3d ******/ %feature("compactdefaultargs") AddEdge; %feature("autodoc", " Parameters @@ -1331,8 +1331,8 @@ Adds an edge to the list of non-selectionnable edges. ") AddEdge; void AddEdge(const TopoDS_Edge & anEdge, const Standard_Integer Index); - /****************** IsOk ******************/ - /**** md5 signature: c2526a31eda69e8f1f4f826cf18212d8 ****/ + /****** AIS_BadEdgeFilter::IsOk ******/ + /****** md5 signature: c2526a31eda69e8f1f4f826cf18212d8 ******/ %feature("compactdefaultargs") IsOk; %feature("autodoc", " Parameters @@ -1349,8 +1349,8 @@ No available documentation. ") IsOk; virtual Standard_Boolean IsOk(const opencascade::handle & EO); - /****************** RemoveEdges ******************/ - /**** md5 signature: 63ed789acf308eb7c7b33128e1a1dc4b ****/ + /****** AIS_BadEdgeFilter::RemoveEdges ******/ + /****** md5 signature: 63ed789acf308eb7c7b33128e1a1dc4b ******/ %feature("compactdefaultargs") RemoveEdges; %feature("autodoc", " Parameters @@ -1367,8 +1367,8 @@ Removes from the list of non-selectionnable edges all edges in the contour with current contour. used by isok. *******************************/ class AIS_C0RegularityFilter : public SelectMgr_Filter { public: - /****************** AIS_C0RegularityFilter ******************/ - /**** md5 signature: 3cbcdfd2403fe0204a455ddc08350f99 ****/ + /****** AIS_C0RegularityFilter::AIS_C0RegularityFilter ******/ + /****** md5 signature: 3cbcdfd2403fe0204a455ddc08350f99 ******/ %feature("compactdefaultargs") AIS_C0RegularityFilter; %feature("autodoc", " Parameters @@ -1419,8 +1419,8 @@ No available documentation. ") AIS_C0RegularityFilter; AIS_C0RegularityFilter(const TopoDS_Shape & aShape); - /****************** ActsOn ******************/ - /**** md5 signature: 202566b6d5f020366514ab01472c39b8 ****/ + /****** AIS_C0RegularityFilter::ActsOn ******/ + /****** md5 signature: 202566b6d5f020366514ab01472c39b8 ******/ %feature("compactdefaultargs") ActsOn; %feature("autodoc", " Parameters @@ -1437,8 +1437,8 @@ No available documentation. ") ActsOn; virtual Standard_Boolean ActsOn(const TopAbs_ShapeEnum aType); - /****************** IsOk ******************/ - /**** md5 signature: c2526a31eda69e8f1f4f826cf18212d8 ****/ + /****** AIS_C0RegularityFilter::IsOk ******/ + /****** md5 signature: c2526a31eda69e8f1f4f826cf18212d8 ******/ %feature("compactdefaultargs") IsOk; %feature("autodoc", " Parameters @@ -1476,8 +1476,8 @@ class AIS_ColoredDrawer : public Prs3d_Drawer { bool myHasOwnColor; bool myHasOwnTransp; bool myHasOwnWidth; - /****************** AIS_ColoredDrawer ******************/ - /**** md5 signature: fb206bfbdf2e0955a791e7882ddd0a6d ****/ + /****** AIS_ColoredDrawer::AIS_ColoredDrawer ******/ + /****** md5 signature: fb206bfbdf2e0955a791e7882ddd0a6d ******/ %feature("compactdefaultargs") AIS_ColoredDrawer; %feature("autodoc", " Parameters @@ -1494,8 +1494,8 @@ Default constructor. ") AIS_ColoredDrawer; AIS_ColoredDrawer(const opencascade::handle & theLink); - /****************** HasOwnColor ******************/ - /**** md5 signature: c1d7c3268c360a84f320795d404c0b59 ****/ + /****** AIS_ColoredDrawer::HasOwnColor ******/ + /****** md5 signature: c1d7c3268c360a84f320795d404c0b59 ******/ %feature("compactdefaultargs") HasOwnColor; %feature("autodoc", "Return ------- @@ -1507,8 +1507,8 @@ No available documentation. ") HasOwnColor; bool HasOwnColor(); - /****************** HasOwnMaterial ******************/ - /**** md5 signature: d79080c087fc3592869db0ed508eafbc ****/ + /****** AIS_ColoredDrawer::HasOwnMaterial ******/ + /****** md5 signature: d79080c087fc3592869db0ed508eafbc ******/ %feature("compactdefaultargs") HasOwnMaterial; %feature("autodoc", "Return ------- @@ -1520,8 +1520,8 @@ No available documentation. ") HasOwnMaterial; bool HasOwnMaterial(); - /****************** HasOwnTransparency ******************/ - /**** md5 signature: bfa958c2a81028d8551656b0f415f2b7 ****/ + /****** AIS_ColoredDrawer::HasOwnTransparency ******/ + /****** md5 signature: bfa958c2a81028d8551656b0f415f2b7 ******/ %feature("compactdefaultargs") HasOwnTransparency; %feature("autodoc", "Return ------- @@ -1533,8 +1533,8 @@ No available documentation. ") HasOwnTransparency; bool HasOwnTransparency(); - /****************** HasOwnWidth ******************/ - /**** md5 signature: 9f80b7b4536e979a5ec2d9011e0b5ad9 ****/ + /****** AIS_ColoredDrawer::HasOwnWidth ******/ + /****** md5 signature: 9f80b7b4536e979a5ec2d9011e0b5ad9 ******/ %feature("compactdefaultargs") HasOwnWidth; %feature("autodoc", "Return ------- @@ -1546,8 +1546,8 @@ No available documentation. ") HasOwnWidth; bool HasOwnWidth(); - /****************** IsHidden ******************/ - /**** md5 signature: 488685d602cd739d12ad12a5304d7b3e ****/ + /****** AIS_ColoredDrawer::IsHidden ******/ + /****** md5 signature: 488685d602cd739d12ad12a5304d7b3e ******/ %feature("compactdefaultargs") IsHidden; %feature("autodoc", "Return ------- @@ -1559,8 +1559,8 @@ No available documentation. ") IsHidden; bool IsHidden(); - /****************** SetHidden ******************/ - /**** md5 signature: b8fd4d1df359caf57cb2042980fb02f6 ****/ + /****** AIS_ColoredDrawer::SetHidden ******/ + /****** md5 signature: b8fd4d1df359caf57cb2042980fb02f6 ******/ %feature("compactdefaultargs") SetHidden; %feature("autodoc", " Parameters @@ -1577,8 +1577,8 @@ No available documentation. ") SetHidden; void SetHidden(const bool theToHide); - /****************** SetOwnColor ******************/ - /**** md5 signature: 907a5bceace779e32277c3a1c2939792 ****/ + /****** AIS_ColoredDrawer::SetOwnColor ******/ + /****** md5 signature: 907a5bceace779e32277c3a1c2939792 ******/ %feature("compactdefaultargs") SetOwnColor; %feature("autodoc", " Parameters @@ -1595,8 +1595,8 @@ No available documentation. ") SetOwnColor; void SetOwnColor(const Quantity_Color &); - /****************** SetOwnMaterial ******************/ - /**** md5 signature: a9d55f286f01e4a30605f50143bdaada ****/ + /****** AIS_ColoredDrawer::SetOwnMaterial ******/ + /****** md5 signature: a9d55f286f01e4a30605f50143bdaada ******/ %feature("compactdefaultargs") SetOwnMaterial; %feature("autodoc", "Return ------- @@ -1608,8 +1608,8 @@ No available documentation. ") SetOwnMaterial; void SetOwnMaterial(); - /****************** SetOwnTransparency ******************/ - /**** md5 signature: 785e1eb625a3adf8c2d0a175272d25b2 ****/ + /****** AIS_ColoredDrawer::SetOwnTransparency ******/ + /****** md5 signature: 785e1eb625a3adf8c2d0a175272d25b2 ******/ %feature("compactdefaultargs") SetOwnTransparency; %feature("autodoc", " Parameters @@ -1626,8 +1626,8 @@ No available documentation. ") SetOwnTransparency; void SetOwnTransparency(Standard_Real ); - /****************** SetOwnWidth ******************/ - /**** md5 signature: b905349cdb9aa07ebf24fb1890debcd1 ****/ + /****** AIS_ColoredDrawer::SetOwnWidth ******/ + /****** md5 signature: b905349cdb9aa07ebf24fb1890debcd1 ******/ %feature("compactdefaultargs") SetOwnWidth; %feature("autodoc", " Parameters @@ -1644,8 +1644,8 @@ No available documentation. ") SetOwnWidth; void SetOwnWidth(const Standard_Real); - /****************** UnsetOwnColor ******************/ - /**** md5 signature: 99078fba8198e7c264e3446bab64edc2 ****/ + /****** AIS_ColoredDrawer::UnsetOwnColor ******/ + /****** md5 signature: 99078fba8198e7c264e3446bab64edc2 ******/ %feature("compactdefaultargs") UnsetOwnColor; %feature("autodoc", "Return ------- @@ -1657,8 +1657,8 @@ No available documentation. ") UnsetOwnColor; void UnsetOwnColor(); - /****************** UnsetOwnMaterial ******************/ - /**** md5 signature: 51558ef8e8f82da5e88a74b4204850af ****/ + /****** AIS_ColoredDrawer::UnsetOwnMaterial ******/ + /****** md5 signature: 51558ef8e8f82da5e88a74b4204850af ******/ %feature("compactdefaultargs") UnsetOwnMaterial; %feature("autodoc", "Return ------- @@ -1670,8 +1670,8 @@ No available documentation. ") UnsetOwnMaterial; void UnsetOwnMaterial(); - /****************** UnsetOwnTransparency ******************/ - /**** md5 signature: 5d88cb3910be04c91a3ef80818d3b464 ****/ + /****** AIS_ColoredDrawer::UnsetOwnTransparency ******/ + /****** md5 signature: 5d88cb3910be04c91a3ef80818d3b464 ******/ %feature("compactdefaultargs") UnsetOwnTransparency; %feature("autodoc", "Return ------- @@ -1683,8 +1683,8 @@ No available documentation. ") UnsetOwnTransparency; void UnsetOwnTransparency(); - /****************** UnsetOwnWidth ******************/ - /**** md5 signature: 9ab1ef7846eb1ab8ad2a68a36ac92341 ****/ + /****** AIS_ColoredDrawer::UnsetOwnWidth ******/ + /****** md5 signature: 9ab1ef7846eb1ab8ad2a68a36ac92341 ******/ %feature("compactdefaultargs") UnsetOwnWidth; %feature("autodoc", "Return ------- @@ -1712,8 +1712,8 @@ No available documentation. ****************************/ class AIS_ExclusionFilter : public SelectMgr_Filter { public: - /****************** AIS_ExclusionFilter ******************/ - /**** md5 signature: 064ab98be3c73998d458415e488fecc1 ****/ + /****** AIS_ExclusionFilter::AIS_ExclusionFilter ******/ + /****** md5 signature: 064ab98be3c73998d458415e488fecc1 ******/ %feature("compactdefaultargs") AIS_ExclusionFilter; %feature("autodoc", " Parameters @@ -1730,8 +1730,8 @@ Constructs an empty exclusion filter object defined by the flag setting exclusio ") AIS_ExclusionFilter; AIS_ExclusionFilter(const Standard_Boolean ExclusionFlagOn = Standard_True); - /****************** AIS_ExclusionFilter ******************/ - /**** md5 signature: 041d0ad3434583d0c04faf66f482809a ****/ + /****** AIS_ExclusionFilter::AIS_ExclusionFilter ******/ + /****** md5 signature: 041d0ad3434583d0c04faf66f482809a ******/ %feature("compactdefaultargs") AIS_ExclusionFilter; %feature("autodoc", " Parameters @@ -1749,8 +1749,8 @@ All the ais objects of will be rejected by the isok method. ") AIS_ExclusionFilter; AIS_ExclusionFilter(const AIS_KindOfInteractive TypeToExclude, const Standard_Boolean ExclusionFlagOn = Standard_True); - /****************** AIS_ExclusionFilter ******************/ - /**** md5 signature: cab18768b3cb1adf8f2ba0efbbe4421f ****/ + /****** AIS_ExclusionFilter::AIS_ExclusionFilter ******/ + /****** md5 signature: cab18768b3cb1adf8f2ba0efbbe4421f ******/ %feature("compactdefaultargs") AIS_ExclusionFilter; %feature("autodoc", " Parameters @@ -1769,8 +1769,8 @@ Constructs an exclusion filter object defined by the enumeration value typetoexc ") AIS_ExclusionFilter; AIS_ExclusionFilter(const AIS_KindOfInteractive TypeToExclude, const Standard_Integer SignatureInType, const Standard_Boolean ExclusionFlagOn = Standard_True); - /****************** Add ******************/ - /**** md5 signature: 085fb35c1492d2f8b4750399435d1aa2 ****/ + /****** AIS_ExclusionFilter::Add ******/ + /****** md5 signature: 085fb35c1492d2f8b4750399435d1aa2 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1787,8 +1787,8 @@ Adds the type typetoexclude to the list of types. ") Add; Standard_Boolean Add(const AIS_KindOfInteractive TypeToExclude); - /****************** Add ******************/ - /**** md5 signature: 86fefe7809855d68a55a9dc4b6decc4f ****/ + /****** AIS_ExclusionFilter::Add ******/ + /****** md5 signature: 86fefe7809855d68a55a9dc4b6decc4f ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1806,8 +1806,8 @@ No available documentation. ") Add; Standard_Boolean Add(const AIS_KindOfInteractive TypeToExclude, const Standard_Integer SignatureInType); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** AIS_ExclusionFilter::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -1819,8 +1819,8 @@ No available documentation. ") Clear; void Clear(); - /****************** IsExclusionFlagOn ******************/ - /**** md5 signature: 8ca18384ba58f8732ba66b57719f07bf ****/ + /****** AIS_ExclusionFilter::IsExclusionFlagOn ******/ + /****** md5 signature: 8ca18384ba58f8732ba66b57719f07bf ******/ %feature("compactdefaultargs") IsExclusionFlagOn; %feature("autodoc", "Return ------- @@ -1832,8 +1832,8 @@ No available documentation. ") IsExclusionFlagOn; Standard_Boolean IsExclusionFlagOn(); - /****************** IsOk ******************/ - /**** md5 signature: 30e74b6ea22a70db5324b6f796325694 ****/ + /****** AIS_ExclusionFilter::IsOk ******/ + /****** md5 signature: 30e74b6ea22a70db5324b6f796325694 ******/ %feature("compactdefaultargs") IsOk; %feature("autodoc", " Parameters @@ -1850,8 +1850,8 @@ No available documentation. ") IsOk; virtual Standard_Boolean IsOk(const opencascade::handle & anObj); - /****************** IsStored ******************/ - /**** md5 signature: bba870e74cc49817d7f7c8757cf54a8c ****/ + /****** AIS_ExclusionFilter::IsStored ******/ + /****** md5 signature: bba870e74cc49817d7f7c8757cf54a8c ******/ %feature("compactdefaultargs") IsStored; %feature("autodoc", " Parameters @@ -1868,8 +1868,8 @@ No available documentation. ") IsStored; Standard_Boolean IsStored(const AIS_KindOfInteractive aType); - /****************** ListOfSignature ******************/ - /**** md5 signature: 1a8fa99abcbb240a3c0dc243f15bff18 ****/ + /****** AIS_ExclusionFilter::ListOfSignature ******/ + /****** md5 signature: 1a8fa99abcbb240a3c0dc243f15bff18 ******/ %feature("compactdefaultargs") ListOfSignature; %feature("autodoc", " Parameters @@ -1887,8 +1887,8 @@ No available documentation. ") ListOfSignature; void ListOfSignature(const AIS_KindOfInteractive aType, TColStd_ListOfInteger & TheStoredList); - /****************** ListOfStoredTypes ******************/ - /**** md5 signature: 69d6ce3a47052a79b0d237bd773c8583 ****/ + /****** AIS_ExclusionFilter::ListOfStoredTypes ******/ + /****** md5 signature: 69d6ce3a47052a79b0d237bd773c8583 ******/ %feature("compactdefaultargs") ListOfStoredTypes; %feature("autodoc", " Parameters @@ -1905,8 +1905,8 @@ No available documentation. ") ListOfStoredTypes; void ListOfStoredTypes(TColStd_ListOfInteger & TheList); - /****************** Remove ******************/ - /**** md5 signature: 111f2ac32b46afb3d773732ee38ca94a ****/ + /****** AIS_ExclusionFilter::Remove ******/ + /****** md5 signature: 111f2ac32b46afb3d773732ee38ca94a ******/ %feature("compactdefaultargs") Remove; %feature("autodoc", " Parameters @@ -1923,8 +1923,8 @@ No available documentation. ") Remove; Standard_Boolean Remove(const AIS_KindOfInteractive TypeToExclude); - /****************** Remove ******************/ - /**** md5 signature: a6c8969a5b4d28109160b0ea4cf45f3d ****/ + /****** AIS_ExclusionFilter::Remove ******/ + /****** md5 signature: a6c8969a5b4d28109160b0ea4cf45f3d ******/ %feature("compactdefaultargs") Remove; %feature("autodoc", " Parameters @@ -1942,8 +1942,8 @@ No available documentation. ") Remove; Standard_Boolean Remove(const AIS_KindOfInteractive TypeToExclude, const Standard_Integer SignatureInType); - /****************** SetExclusionFlag ******************/ - /**** md5 signature: f2397263f584a343e57fbb29cc64b0e6 ****/ + /****** AIS_ExclusionFilter::SetExclusionFlag ******/ + /****** md5 signature: f2397263f584a343e57fbb29cc64b0e6 ******/ %feature("compactdefaultargs") SetExclusionFlag; %feature("autodoc", " Parameters @@ -1976,8 +1976,8 @@ No available documentation. *************************/ class AIS_GlobalStatus : public Standard_Transient { public: - /****************** AIS_GlobalStatus ******************/ - /**** md5 signature: 9c56844364db5c947daf28e63bef42e2 ****/ + /****** AIS_GlobalStatus::AIS_GlobalStatus ******/ + /****** md5 signature: 9c56844364db5c947daf28e63bef42e2 ******/ %feature("compactdefaultargs") AIS_GlobalStatus; %feature("autodoc", "Return ------- @@ -1989,8 +1989,8 @@ Default constructor. ") AIS_GlobalStatus; AIS_GlobalStatus(); - /****************** AddSelectionMode ******************/ - /**** md5 signature: fc8df9157b3ed8a48caafbee5c741526 ****/ + /****** AIS_GlobalStatus::AddSelectionMode ******/ + /****** md5 signature: fc8df9157b3ed8a48caafbee5c741526 ******/ %feature("compactdefaultargs") AddSelectionMode; %feature("autodoc", " Parameters @@ -2007,8 +2007,8 @@ Add selection mode. ") AddSelectionMode; Standard_Boolean AddSelectionMode(const Standard_Integer theMode); - /****************** ClearSelectionModes ******************/ - /**** md5 signature: 239a6fa95794aa4d619474ae09fc6c8d ****/ + /****** AIS_GlobalStatus::ClearSelectionModes ******/ + /****** md5 signature: 239a6fa95794aa4d619474ae09fc6c8d ******/ %feature("compactdefaultargs") ClearSelectionModes; %feature("autodoc", "Return ------- @@ -2020,8 +2020,8 @@ Remove all selection modes. ") ClearSelectionModes; void ClearSelectionModes(); - /****************** DisplayMode ******************/ - /**** md5 signature: 87ab8eae5ccb1d4f4dfd02dc34d6febc ****/ + /****** AIS_GlobalStatus::DisplayMode ******/ + /****** md5 signature: 87ab8eae5ccb1d4f4dfd02dc34d6febc ******/ %feature("compactdefaultargs") DisplayMode; %feature("autodoc", "Return ------- @@ -2033,8 +2033,8 @@ Returns the display mode. ") DisplayMode; Standard_Integer DisplayMode(); - /****************** HilightStyle ******************/ - /**** md5 signature: d17b0472c23cb74e2e63d1233b6a1355 ****/ + /****** AIS_GlobalStatus::HilightStyle ******/ + /****** md5 signature: d17b0472c23cb74e2e63d1233b6a1355 ******/ %feature("compactdefaultargs") HilightStyle; %feature("autodoc", "Return ------- @@ -2046,8 +2046,8 @@ Returns applied highlight style for a particular object. ") HilightStyle; const opencascade::handle & HilightStyle(); - /****************** IsHilighted ******************/ - /**** md5 signature: 35d1f91e445f37fcfd3bf419bad32f49 ****/ + /****** AIS_GlobalStatus::IsHilighted ******/ + /****** md5 signature: 35d1f91e445f37fcfd3bf419bad32f49 ******/ %feature("compactdefaultargs") IsHilighted; %feature("autodoc", "Return ------- @@ -2059,8 +2059,8 @@ Returns true if object is highlighted. ") IsHilighted; Standard_Boolean IsHilighted(); - /****************** IsSModeIn ******************/ - /**** md5 signature: a53322586bcace0ddb4fe2232b3482bf ****/ + /****** AIS_GlobalStatus::IsSModeIn ******/ + /****** md5 signature: a53322586bcace0ddb4fe2232b3482bf ******/ %feature("compactdefaultargs") IsSModeIn; %feature("autodoc", " Parameters @@ -2077,8 +2077,8 @@ Return true if selection mode was registered. ") IsSModeIn; Standard_Boolean IsSModeIn(Standard_Integer theMode); - /****************** IsSubIntensityOn ******************/ - /**** md5 signature: 1df00a9c06ea8c4f5d73e211efb2c1c6 ****/ + /****** AIS_GlobalStatus::IsSubIntensityOn ******/ + /****** md5 signature: 1df00a9c06ea8c4f5d73e211efb2c1c6 ******/ %feature("compactdefaultargs") IsSubIntensityOn; %feature("autodoc", "Return ------- @@ -2090,8 +2090,8 @@ No available documentation. ") IsSubIntensityOn; Standard_Boolean IsSubIntensityOn(); - /****************** RemoveSelectionMode ******************/ - /**** md5 signature: 80e1091c3c87bf86bc5b1fb90ac0860e ****/ + /****** AIS_GlobalStatus::RemoveSelectionMode ******/ + /****** md5 signature: 80e1091c3c87bf86bc5b1fb90ac0860e ******/ %feature("compactdefaultargs") RemoveSelectionMode; %feature("autodoc", " Parameters @@ -2108,8 +2108,8 @@ Remove selection mode. ") RemoveSelectionMode; Standard_Boolean RemoveSelectionMode(const Standard_Integer theMode); - /****************** SelectionModes ******************/ - /**** md5 signature: 908d50ed59833e1e3d8eb3eb90d6ad2c ****/ + /****** AIS_GlobalStatus::SelectionModes ******/ + /****** md5 signature: 908d50ed59833e1e3d8eb3eb90d6ad2c ******/ %feature("compactdefaultargs") SelectionModes; %feature("autodoc", "Return ------- @@ -2121,8 +2121,8 @@ Returns active selection modes of the object. ") SelectionModes; const TColStd_ListOfInteger & SelectionModes(); - /****************** SetDisplayMode ******************/ - /**** md5 signature: 2a99a6840fca4af1fbc5cc91ac2d554d ****/ + /****** AIS_GlobalStatus::SetDisplayMode ******/ + /****** md5 signature: 2a99a6840fca4af1fbc5cc91ac2d554d ******/ %feature("compactdefaultargs") SetDisplayMode; %feature("autodoc", " Parameters @@ -2139,8 +2139,8 @@ Sets display mode. ") SetDisplayMode; void SetDisplayMode(const Standard_Integer theMode); - /****************** SetHilightStatus ******************/ - /**** md5 signature: 32df1cc3cd232c4fb69f8546f990eb32 ****/ + /****** AIS_GlobalStatus::SetHilightStatus ******/ + /****** md5 signature: 32df1cc3cd232c4fb69f8546f990eb32 ******/ %feature("compactdefaultargs") SetHilightStatus; %feature("autodoc", " Parameters @@ -2157,8 +2157,8 @@ Sets highlighted state. ") SetHilightStatus; void SetHilightStatus(const Standard_Boolean theStatus); - /****************** SetHilightStyle ******************/ - /**** md5 signature: f245d0c0a2ce5f6a233e75a326f80a8c ****/ + /****** AIS_GlobalStatus::SetHilightStyle ******/ + /****** md5 signature: f245d0c0a2ce5f6a233e75a326f80a8c ******/ %feature("compactdefaultargs") SetHilightStyle; %feature("autodoc", " Parameters @@ -2175,8 +2175,8 @@ Changes applied highlight style for a particular object. ") SetHilightStyle; void SetHilightStyle(const opencascade::handle & theStyle); - /****************** SetSubIntensity ******************/ - /**** md5 signature: 0f4ba431b62fe5e0935797fe9323fda7 ****/ + /****** AIS_GlobalStatus::SetSubIntensity ******/ + /****** md5 signature: 0f4ba431b62fe5e0935797fe9323fda7 ******/ %feature("compactdefaultargs") SetSubIntensity; %feature("autodoc", " Parameters @@ -2209,8 +2209,8 @@ No available documentation. ************************/ class AIS_GraphicTool { public: - /****************** GetInteriorColor ******************/ - /**** md5 signature: a09776a9369f9af7c09c13e0f002bccf ****/ + /****** AIS_GraphicTool::GetInteriorColor ******/ + /****** md5 signature: a09776a9369f9af7c09c13e0f002bccf ******/ %feature("compactdefaultargs") GetInteriorColor; %feature("autodoc", " Parameters @@ -2227,8 +2227,8 @@ No available documentation. ") GetInteriorColor; static Quantity_NameOfColor GetInteriorColor(const opencascade::handle & aDrawer); - /****************** GetInteriorColor ******************/ - /**** md5 signature: ca6ae445556055bebc087f7202929ccf ****/ + /****** AIS_GraphicTool::GetInteriorColor ******/ + /****** md5 signature: ca6ae445556055bebc087f7202929ccf ******/ %feature("compactdefaultargs") GetInteriorColor; %feature("autodoc", " Parameters @@ -2246,8 +2246,8 @@ No available documentation. ") GetInteriorColor; static void GetInteriorColor(const opencascade::handle & aDrawer, Quantity_Color & aColor); - /****************** GetLineAtt ******************/ - /**** md5 signature: ff93797c6653dc188d33c3aa89713ee0 ****/ + /****** AIS_GraphicTool::GetLineAtt ******/ + /****** md5 signature: ff93797c6653dc188d33c3aa89713ee0 ******/ %feature("compactdefaultargs") GetLineAtt; %feature("autodoc", " Parameters @@ -2267,8 +2267,8 @@ No available documentation. ") GetLineAtt; static void GetLineAtt(const opencascade::handle & aDrawer, const AIS_TypeOfAttribute TheTypeOfAttributes, Quantity_NameOfColor & aCol, Standard_Real &OutValue, Aspect_TypeOfLine &OutValue); - /****************** GetLineColor ******************/ - /**** md5 signature: eba7d0fb34c3645d05f21c7b3545cd3c ****/ + /****** AIS_GraphicTool::GetLineColor ******/ + /****** md5 signature: eba7d0fb34c3645d05f21c7b3545cd3c ******/ %feature("compactdefaultargs") GetLineColor; %feature("autodoc", " Parameters @@ -2286,8 +2286,8 @@ No available documentation. ") GetLineColor; static Quantity_NameOfColor GetLineColor(const opencascade::handle & aDrawer, const AIS_TypeOfAttribute TheTypeOfAttributes); - /****************** GetLineColor ******************/ - /**** md5 signature: ba905e7c41f5ad7f557bf6fdd367c9fc ****/ + /****** AIS_GraphicTool::GetLineColor ******/ + /****** md5 signature: ba905e7c41f5ad7f557bf6fdd367c9fc ******/ %feature("compactdefaultargs") GetLineColor; %feature("autodoc", " Parameters @@ -2306,8 +2306,8 @@ No available documentation. ") GetLineColor; static void GetLineColor(const opencascade::handle & aDrawer, const AIS_TypeOfAttribute TheTypeOfAttributes, Quantity_Color & TheLineColor); - /****************** GetLineType ******************/ - /**** md5 signature: 096ac584eafeaee003d7c6fee0409ae9 ****/ + /****** AIS_GraphicTool::GetLineType ******/ + /****** md5 signature: 096ac584eafeaee003d7c6fee0409ae9 ******/ %feature("compactdefaultargs") GetLineType; %feature("autodoc", " Parameters @@ -2325,8 +2325,8 @@ No available documentation. ") GetLineType; static Aspect_TypeOfLine GetLineType(const opencascade::handle & aDrawer, const AIS_TypeOfAttribute TheTypeOfAttributes); - /****************** GetLineWidth ******************/ - /**** md5 signature: 9598d110bfca1fc2bd93c1fc85125dbb ****/ + /****** AIS_GraphicTool::GetLineWidth ******/ + /****** md5 signature: 9598d110bfca1fc2bd93c1fc85125dbb ******/ %feature("compactdefaultargs") GetLineWidth; %feature("autodoc", " Parameters @@ -2344,8 +2344,8 @@ No available documentation. ") GetLineWidth; static Standard_Real GetLineWidth(const opencascade::handle & aDrawer, const AIS_TypeOfAttribute TheTypeOfAttributes); - /****************** GetMaterial ******************/ - /**** md5 signature: 4049b89d3369ddd54ce882f6e39b1700 ****/ + /****** AIS_GraphicTool::GetMaterial ******/ + /****** md5 signature: 4049b89d3369ddd54ce882f6e39b1700 ******/ %feature("compactdefaultargs") GetMaterial; %feature("autodoc", " Parameters @@ -2376,8 +2376,8 @@ No available documentation. *******************************/ class AIS_InteractiveContext : public Standard_Transient { public: - /****************** AIS_InteractiveContext ******************/ - /**** md5 signature: e050aa4400b6a1b1bad39801422c3f15 ****/ + /****** AIS_InteractiveContext::AIS_InteractiveContext ******/ + /****** md5 signature: e050aa4400b6a1b1bad39801422c3f15 ******/ %feature("compactdefaultargs") AIS_InteractiveContext; %feature("autodoc", " Parameters @@ -2394,8 +2394,8 @@ Constructs the interactive context object defined by the principal viewer mainvi ") AIS_InteractiveContext; AIS_InteractiveContext(const opencascade::handle & MainViewer); - /****************** Activate ******************/ - /**** md5 signature: 55fe7d0b67d661d0036919d5c5b808fe ****/ + /****** AIS_InteractiveContext::Activate ******/ + /****** md5 signature: 55fe7d0b67d661d0036919d5c5b808fe ******/ %feature("compactdefaultargs") Activate; %feature("autodoc", " Parameters @@ -2414,8 +2414,8 @@ Activates the selection mode amode whose index is given, for the given interacti ") Activate; void Activate(const opencascade::handle & theObj, const Standard_Integer theMode = 0, const Standard_Boolean theIsForce = Standard_False); - /****************** Activate ******************/ - /**** md5 signature: 8f26e8d542718dfb36634eb940fc280b ****/ + /****** AIS_InteractiveContext::Activate ******/ + /****** md5 signature: 8f26e8d542718dfb36634eb940fc280b ******/ %feature("compactdefaultargs") Activate; %feature("autodoc", " Parameters @@ -2433,8 +2433,8 @@ Activates the given selection mode for the all displayed objects. ") Activate; void Activate(const Standard_Integer theMode, const Standard_Boolean theIsForce = Standard_False); - /****************** ActivatedModes ******************/ - /**** md5 signature: 473b3a424c116d59c0cb0dea18173794 ****/ + /****** AIS_InteractiveContext::ActivatedModes ******/ + /****** md5 signature: 473b3a424c116d59c0cb0dea18173794 ******/ %feature("compactdefaultargs") ActivatedModes; %feature("autodoc", " Parameters @@ -2452,8 +2452,8 @@ Returns the list of activated selection modes. ") ActivatedModes; void ActivatedModes(const opencascade::handle & anIobj, TColStd_ListOfInteger & theList); - /****************** AddFilter ******************/ - /**** md5 signature: 8a902c12e6fe5b2f586f4e19c0758623 ****/ + /****** AIS_InteractiveContext::AddFilter ******/ + /****** md5 signature: 8a902c12e6fe5b2f586f4e19c0758623 ******/ %feature("compactdefaultargs") AddFilter; %feature("autodoc", " Parameters @@ -2470,8 +2470,8 @@ Allows you to add the filter. ") AddFilter; void AddFilter(const opencascade::handle & theFilter); - /****************** AddOrRemoveCurrentObject ******************/ - /**** md5 signature: 89eb3aca1b8b6d529be5010ff461f430 ****/ + /****** AIS_InteractiveContext::AddOrRemoveCurrentObject ******/ + /****** md5 signature: 89eb3aca1b8b6d529be5010ff461f430 ******/ %feature("compactdefaultargs") AddOrRemoveCurrentObject; %feature("autodoc", " Parameters @@ -2489,8 +2489,8 @@ Allows to add or remove the object given to the list of current and highlight/un ") AddOrRemoveCurrentObject; void AddOrRemoveCurrentObject(const opencascade::handle & theObj, const Standard_Boolean theIsToUpdateViewer); - /****************** AddOrRemoveSelected ******************/ - /**** md5 signature: 1bb429ff4eafd5c81c1557e9bf7f1315 ****/ + /****** AIS_InteractiveContext::AddOrRemoveSelected ******/ + /****** md5 signature: 1bb429ff4eafd5c81c1557e9bf7f1315 ******/ %feature("compactdefaultargs") AddOrRemoveSelected; %feature("autodoc", " Parameters @@ -2508,8 +2508,8 @@ Allows to highlight or unhighlight the owner given depending on its selection st ") AddOrRemoveSelected; void AddOrRemoveSelected(const opencascade::handle & theObject, const Standard_Boolean theToUpdateViewer); - /****************** AddOrRemoveSelected ******************/ - /**** md5 signature: 16190e6848910433cfb62ce0a8cd35f5 ****/ + /****** AIS_InteractiveContext::AddOrRemoveSelected ******/ + /****** md5 signature: 16190e6848910433cfb62ce0a8cd35f5 ******/ %feature("compactdefaultargs") AddOrRemoveSelected; %feature("autodoc", " Parameters @@ -2527,8 +2527,8 @@ Allows to highlight or unhighlight the owner given depending on its selection st ") AddOrRemoveSelected; void AddOrRemoveSelected(const opencascade::handle & theOwner, const Standard_Boolean theToUpdateViewer); - /****************** AddSelect ******************/ - /**** md5 signature: 52ea6338337a736ab508e9fc2a8879f6 ****/ + /****** AIS_InteractiveContext::AddSelect ******/ + /****** md5 signature: 52ea6338337a736ab508e9fc2a8879f6 ******/ %feature("compactdefaultargs") AddSelect; %feature("autodoc", " Parameters @@ -2545,8 +2545,8 @@ Adds object in the selection. ") AddSelect; AIS_StatusOfPick AddSelect(const opencascade::handle & theObject); - /****************** AddSelect ******************/ - /**** md5 signature: 37dc4fd1f46d4797ff3f04cf30ba255c ****/ + /****** AIS_InteractiveContext::AddSelect ******/ + /****** md5 signature: 37dc4fd1f46d4797ff3f04cf30ba255c ******/ %feature("compactdefaultargs") AddSelect; %feature("autodoc", " Parameters @@ -2563,8 +2563,8 @@ Adds object in the selection. ") AddSelect; AIS_StatusOfPick AddSelect(const opencascade::handle & theObject); - /****************** Applicative ******************/ - /**** md5 signature: d43af2e985c3a710a87f1b988ff487fb ****/ + /****** AIS_InteractiveContext::Applicative ******/ + /****** md5 signature: d43af2e985c3a710a87f1b988ff487fb ******/ %feature("compactdefaultargs") Applicative; %feature("autodoc", "Return ------- @@ -2576,8 +2576,8 @@ Returns selectedinteractive()->getowner(). @sa selectedowner(). ") Applicative; opencascade::handle Applicative(); - /****************** AutomaticHilight ******************/ - /**** md5 signature: 4952888a363f75b407065ba2086186e6 ****/ + /****** AIS_InteractiveContext::AutomaticHilight ******/ + /****** md5 signature: 4952888a363f75b407065ba2086186e6 ******/ %feature("compactdefaultargs") AutomaticHilight; %feature("autodoc", "Return ------- @@ -2589,8 +2589,8 @@ Returns true if the automatic highlight mode is active; true by default. @sa mov ") AutomaticHilight; Standard_Boolean AutomaticHilight(); - /****************** BeginImmediateDraw ******************/ - /**** md5 signature: 35e8d0184dd051a6d98a100d7384205d ****/ + /****** AIS_InteractiveContext::BeginImmediateDraw ******/ + /****** md5 signature: 35e8d0184dd051a6d98a100d7384205d ******/ %feature("compactdefaultargs") BeginImmediateDraw; %feature("autodoc", "Return ------- @@ -2602,8 +2602,8 @@ Initializes the list of presentations to be displayed returns false if no local ") BeginImmediateDraw; Standard_Boolean BeginImmediateDraw(); - /****************** BoundingBoxOfSelection ******************/ - /**** md5 signature: ce3c459b72706889de79199277654aa5 ****/ + /****** AIS_InteractiveContext::BoundingBoxOfSelection ******/ + /****** md5 signature: ce3c459b72706889de79199277654aa5 ******/ %feature("compactdefaultargs") BoundingBoxOfSelection; %feature("autodoc", " Parameters @@ -2620,8 +2620,8 @@ Returns bounding box of selected objects. ") BoundingBoxOfSelection; Bnd_Box BoundingBoxOfSelection(const opencascade::handle & theView); - /****************** BoundingBoxOfSelection ******************/ - /**** md5 signature: e06af7ec716edc2c5f5cf7203564685a ****/ + /****** AIS_InteractiveContext::BoundingBoxOfSelection ******/ + /****** md5 signature: e06af7ec716edc2c5f5cf7203564685a ******/ %feature("compactdefaultargs") BoundingBoxOfSelection; %feature("autodoc", "Return ------- @@ -2633,8 +2633,8 @@ No available documentation. ") BoundingBoxOfSelection; Bnd_Box BoundingBoxOfSelection(); - /****************** ClearActiveSensitive ******************/ - /**** md5 signature: 81b910a4cd745e76d9d2719b0e8bc729 ****/ + /****** AIS_InteractiveContext::ClearActiveSensitive ******/ + /****** md5 signature: 81b910a4cd745e76d9d2719b0e8bc729 ******/ %feature("compactdefaultargs") ClearActiveSensitive; %feature("autodoc", " Parameters @@ -2651,8 +2651,8 @@ Clear visualization of sensitives. ") ClearActiveSensitive; void ClearActiveSensitive(const opencascade::handle & aView); - /****************** ClearCurrents ******************/ - /**** md5 signature: 5a42913642e1c5502336115ec9966dde ****/ + /****** AIS_InteractiveContext::ClearCurrents ******/ + /****** md5 signature: 5a42913642e1c5502336115ec9966dde ******/ %feature("compactdefaultargs") ClearCurrents; %feature("autodoc", " Parameters @@ -2669,8 +2669,8 @@ Empties previous current objects in order to get the current objects detected by ") ClearCurrents; void ClearCurrents(const Standard_Boolean theToUpdateViewer); - /****************** ClearDetected ******************/ - /**** md5 signature: 05bcfbbe15e2a7b718c1e7367190267b ****/ + /****** AIS_InteractiveContext::ClearDetected ******/ + /****** md5 signature: 05bcfbbe15e2a7b718c1e7367190267b ******/ %feature("compactdefaultargs") ClearDetected; %feature("autodoc", " Parameters @@ -2687,8 +2687,8 @@ Clears the list of entities detected by moveto() and resets dynamic highlighting ") ClearDetected; Standard_Boolean ClearDetected(Standard_Boolean theToRedrawImmediate = Standard_False); - /****************** ClearPrs ******************/ - /**** md5 signature: cc651ed8024f067783d71c8717cfd6c7 ****/ + /****** AIS_InteractiveContext::ClearPrs ******/ + /****** md5 signature: cc651ed8024f067783d71c8717cfd6c7 ******/ %feature("compactdefaultargs") ClearPrs; %feature("autodoc", " Parameters @@ -2707,8 +2707,8 @@ Empties the graphic presentation of the mode indexed by amode. warning! removes ") ClearPrs; void ClearPrs(const opencascade::handle & theIObj, const Standard_Integer theMode, const Standard_Boolean theToUpdateViewer); - /****************** ClearSelected ******************/ - /**** md5 signature: cd9127863ce8c74cdaa3ced0018f7a26 ****/ + /****** AIS_InteractiveContext::ClearSelected ******/ + /****** md5 signature: cd9127863ce8c74cdaa3ced0018f7a26 ******/ %feature("compactdefaultargs") ClearSelected; %feature("autodoc", " Parameters @@ -2725,8 +2725,8 @@ Empties previous selected objects in order to get the selected objects detected ") ClearSelected; void ClearSelected(const Standard_Boolean theToUpdateViewer); - /****************** Color ******************/ - /**** md5 signature: 30319ccfc0804ed2727c24b795588dd1 ****/ + /****** AIS_InteractiveContext::Color ******/ + /****** md5 signature: 30319ccfc0804ed2727c24b795588dd1 ******/ %feature("compactdefaultargs") Color; %feature("autodoc", " Parameters @@ -2744,8 +2744,8 @@ Returns the color of the object in the interactive context. ") Color; void Color(const opencascade::handle & aniobj, Quantity_Color & acolor); - /****************** Current ******************/ - /**** md5 signature: 306daa9a488493500027cb5d7534764b ****/ + /****** AIS_InteractiveContext::Current ******/ + /****** md5 signature: 306daa9a488493500027cb5d7534764b ******/ %feature("compactdefaultargs") Current; %feature("autodoc", "Return ------- @@ -2757,8 +2757,8 @@ Returns the current interactive object. objects selected when there is no open l ") Current; opencascade::handle Current(); - /****************** CurrentViewer ******************/ - /**** md5 signature: c71b17a30c90b404a2fe56e1cbabac4b ****/ + /****** AIS_InteractiveContext::CurrentViewer ******/ + /****** md5 signature: c71b17a30c90b404a2fe56e1cbabac4b ******/ %feature("compactdefaultargs") CurrentViewer; %feature("autodoc", "Return ------- @@ -2770,8 +2770,8 @@ Returns the current viewer. ") CurrentViewer; const opencascade::handle & CurrentViewer(); - /****************** Deactivate ******************/ - /**** md5 signature: 2836d4ea8ca04a1b3dbd8159991e33e0 ****/ + /****** AIS_InteractiveContext::Deactivate ******/ + /****** md5 signature: 2836d4ea8ca04a1b3dbd8159991e33e0 ******/ %feature("compactdefaultargs") Deactivate; %feature("autodoc", " Parameters @@ -2788,8 +2788,8 @@ Deactivates all the activated selection modes of an object. ") Deactivate; void Deactivate(const opencascade::handle & theObj); - /****************** Deactivate ******************/ - /**** md5 signature: a1aa11d729d351adf1e876927c761e2e ****/ + /****** AIS_InteractiveContext::Deactivate ******/ + /****** md5 signature: a1aa11d729d351adf1e876927c761e2e ******/ %feature("compactdefaultargs") Deactivate; %feature("autodoc", " Parameters @@ -2807,8 +2807,8 @@ Deactivates all the activated selection modes of the interactive object aniobj w ") Deactivate; void Deactivate(const opencascade::handle & theObj, const Standard_Integer theMode); - /****************** Deactivate ******************/ - /**** md5 signature: e24aebd581a35bc452696b3deee7c97a ****/ + /****** AIS_InteractiveContext::Deactivate ******/ + /****** md5 signature: e24aebd581a35bc452696b3deee7c97a ******/ %feature("compactdefaultargs") Deactivate; %feature("autodoc", " Parameters @@ -2825,8 +2825,8 @@ Deactivates the given selection mode for all displayed objects. ") Deactivate; void Deactivate(const Standard_Integer theMode); - /****************** Deactivate ******************/ - /**** md5 signature: cfea69d44907bc53764978e47e0de401 ****/ + /****** AIS_InteractiveContext::Deactivate ******/ + /****** md5 signature: cfea69d44907bc53764978e47e0de401 ******/ %feature("compactdefaultargs") Deactivate; %feature("autodoc", "Return ------- @@ -2838,8 +2838,8 @@ Deactivates all the activated selection mode at all displayed objects. ") Deactivate; void Deactivate(); - /****************** DefaultDrawer ******************/ - /**** md5 signature: 14128b182687edc7e9f18d40a682f0b8 ****/ + /****** AIS_InteractiveContext::DefaultDrawer ******/ + /****** md5 signature: 14128b182687edc7e9f18d40a682f0b8 ******/ %feature("compactdefaultargs") DefaultDrawer; %feature("autodoc", "Return ------- @@ -2851,8 +2851,8 @@ Returns the default attribute manager. this contains all the color and line attr ") DefaultDrawer; const opencascade::handle & DefaultDrawer(); - /****************** DetectedCurrentObject ******************/ - /**** md5 signature: db9a21d25f0bb2a34f1d9b68c667faf4 ****/ + /****** AIS_InteractiveContext::DetectedCurrentObject ******/ + /****** md5 signature: db9a21d25f0bb2a34f1d9b68c667faf4 ******/ %feature("compactdefaultargs") DetectedCurrentObject; %feature("autodoc", "Return ------- @@ -2864,8 +2864,8 @@ Return current mouse-detected interactive object or null object, if there is no ") DetectedCurrentObject; opencascade::handle DetectedCurrentObject(); - /****************** DetectedCurrentOwner ******************/ - /**** md5 signature: f92c094b1c7835be9059494de430ed90 ****/ + /****** AIS_InteractiveContext::DetectedCurrentOwner ******/ + /****** md5 signature: f92c094b1c7835be9059494de430ed90 ******/ %feature("compactdefaultargs") DetectedCurrentOwner; %feature("autodoc", "Return ------- @@ -2877,8 +2877,8 @@ Returns the owner from detected list pointed by current iterator position. warni ") DetectedCurrentOwner; opencascade::handle DetectedCurrentOwner(); - /****************** DetectedCurrentShape ******************/ - /**** md5 signature: 89ce12168c616c9e784d18e7ee93368c ****/ + /****** AIS_InteractiveContext::DetectedCurrentShape ******/ + /****** md5 signature: 89ce12168c616c9e784d18e7ee93368c ******/ %feature("compactdefaultargs") DetectedCurrentShape; %feature("autodoc", "Return ------- @@ -2890,8 +2890,8 @@ Return current mouse-detected shape or empty (null) shape, if current interactiv ") DetectedCurrentShape; const TopoDS_Shape DetectedCurrentShape(); - /****************** DetectedInteractive ******************/ - /**** md5 signature: b0bed930b69f468285a023bd6f872239 ****/ + /****** AIS_InteractiveContext::DetectedInteractive ******/ + /****** md5 signature: b0bed930b69f468285a023bd6f872239 ******/ %feature("compactdefaultargs") DetectedInteractive; %feature("autodoc", "Return ------- @@ -2903,8 +2903,8 @@ Returns the interactive objects last detected in context. in general this is jus ") DetectedInteractive; opencascade::handle DetectedInteractive(); - /****************** DetectedOwner ******************/ - /**** md5 signature: e2c982281c31eda113b04938de464319 ****/ + /****** AIS_InteractiveContext::DetectedOwner ******/ + /****** md5 signature: e2c982281c31eda113b04938de464319 ******/ %feature("compactdefaultargs") DetectedOwner; %feature("autodoc", "Return ------- @@ -2916,8 +2916,8 @@ Returns the owner of the detected sensitive primitive which is currently dynamic ") DetectedOwner; const opencascade::handle & DetectedOwner(); - /****************** DetectedShape ******************/ - /**** md5 signature: f9c1d6b6d8e786aa2886d569920b8fa0 ****/ + /****** AIS_InteractiveContext::DetectedShape ******/ + /****** md5 signature: f9c1d6b6d8e786aa2886d569920b8fa0 ******/ %feature("compactdefaultargs") DetectedShape; %feature("autodoc", "Return ------- @@ -2929,8 +2929,8 @@ Returns the shape detected in local context. @sa detectedowner(). ") DetectedShape; const TopoDS_Shape DetectedShape(); - /****************** DeviationAngle ******************/ - /**** md5 signature: 003652129c87707eb3add7448baffc41 ****/ + /****** AIS_InteractiveContext::DeviationAngle ******/ + /****** md5 signature: 003652129c87707eb3add7448baffc41 ******/ %feature("compactdefaultargs") DeviationAngle; %feature("autodoc", "Return ------- @@ -2942,8 +2942,8 @@ No available documentation. ") DeviationAngle; Standard_Real DeviationAngle(); - /****************** DeviationCoefficient ******************/ - /**** md5 signature: aa403b444ce189be03dbbfdaa044ed4e ****/ + /****** AIS_InteractiveContext::DeviationCoefficient ******/ + /****** md5 signature: aa403b444ce189be03dbbfdaa044ed4e ******/ %feature("compactdefaultargs") DeviationCoefficient; %feature("autodoc", "Return ------- @@ -2955,8 +2955,8 @@ Returns the deviation coefficient. drawings of curves or patches are made with r ") DeviationCoefficient; Standard_Real DeviationCoefficient(); - /****************** DisableDrawHiddenLine ******************/ - /**** md5 signature: 6b6aa32f5adca641a6dc6a0b3f24eac5 ****/ + /****** AIS_InteractiveContext::DisableDrawHiddenLine ******/ + /****** md5 signature: 6b6aa32f5adca641a6dc6a0b3f24eac5 ******/ %feature("compactdefaultargs") DisableDrawHiddenLine; %feature("autodoc", "Return ------- @@ -2968,8 +2968,8 @@ No available documentation. ") DisableDrawHiddenLine; void DisableDrawHiddenLine(); - /****************** Disconnect ******************/ - /**** md5 signature: 528774f6c6d5fd969edecd2c6f010a95 ****/ + /****** AIS_InteractiveContext::Disconnect ******/ + /****** md5 signature: 528774f6c6d5fd969edecd2c6f010a95 ******/ %feature("compactdefaultargs") Disconnect; %feature("autodoc", " Parameters @@ -2987,8 +2987,8 @@ Disconnects theobjtodisconnect from theassembly and removes dependent selection ") Disconnect; void Disconnect(const opencascade::handle & theAssembly, const opencascade::handle & theObjToDisconnect = NULL); - /****************** Display ******************/ - /**** md5 signature: 884ed94525df7c45cb1fa54e5a35ba76 ****/ + /****** AIS_InteractiveContext::Display ******/ + /****** md5 signature: 884ed94525df7c45cb1fa54e5a35ba76 ******/ %feature("compactdefaultargs") Display; %feature("autodoc", " Parameters @@ -3006,8 +3006,8 @@ Displays the object in this context using default display mode. this will be the ") Display; void Display(const opencascade::handle & theIObj, const Standard_Boolean theToUpdateViewer); - /****************** Display ******************/ - /**** md5 signature: 4844e1a120d1763a2f1c9c28b42360f1 ****/ + /****** AIS_InteractiveContext::Display ******/ + /****** md5 signature: 4844e1a120d1763a2f1c9c28b42360f1 ******/ %feature("compactdefaultargs") Display; %feature("autodoc", " Parameters @@ -3028,8 +3028,8 @@ Sets status, display mode and selection mode for specified object if theselectio ") Display; void Display(const opencascade::handle & theIObj, const Standard_Integer theDispMode, const Standard_Integer theSelectionMode, const Standard_Boolean theToUpdateViewer, const PrsMgr_DisplayStatus theDispStatus = PrsMgr_DisplayStatus_None); - /****************** Display ******************/ - /**** md5 signature: 3bee65d480eafecc8a7bf6cf7e559b20 ****/ + /****** AIS_InteractiveContext::Display ******/ + /****** md5 signature: 3bee65d480eafecc8a7bf6cf7e559b20 ******/ %feature("compactdefaultargs") Display; %feature("autodoc", " Parameters @@ -3051,8 +3051,8 @@ No available documentation. ") Display; void Display(const opencascade::handle & theIObj, const Standard_Integer theDispMode, const Standard_Integer theSelectionMode, const Standard_Boolean theToUpdateViewer, const Standard_Boolean theToAllowDecomposition, const PrsMgr_DisplayStatus theDispStatus = PrsMgr_DisplayStatus_None); - /****************** DisplayActiveSensitive ******************/ - /**** md5 signature: 3e2889a461702eed5abdf967dcfcfd6c ****/ + /****** AIS_InteractiveContext::DisplayActiveSensitive ******/ + /****** md5 signature: 3e2889a461702eed5abdf967dcfcfd6c ******/ %feature("compactdefaultargs") DisplayActiveSensitive; %feature("autodoc", " Parameters @@ -3069,8 +3069,8 @@ Visualization of sensitives - for debugging purposes!. ") DisplayActiveSensitive; void DisplayActiveSensitive(const opencascade::handle & aView); - /****************** DisplayActiveSensitive ******************/ - /**** md5 signature: 3aede03c6608a0f4e195960113404d0e ****/ + /****** AIS_InteractiveContext::DisplayActiveSensitive ******/ + /****** md5 signature: 3aede03c6608a0f4e195960113404d0e ******/ %feature("compactdefaultargs") DisplayActiveSensitive; %feature("autodoc", " Parameters @@ -3088,8 +3088,8 @@ Visualization of sensitives - for debugging purposes!. ") DisplayActiveSensitive; void DisplayActiveSensitive(const opencascade::handle & anObject, const opencascade::handle & aView); - /****************** DisplayAll ******************/ - /**** md5 signature: ba71b3275c7e104b6dd9f109fe7e9d88 ****/ + /****** AIS_InteractiveContext::DisplayAll ******/ + /****** md5 signature: ba71b3275c7e104b6dd9f109fe7e9d88 ******/ %feature("compactdefaultargs") DisplayAll; %feature("autodoc", " Parameters @@ -3106,8 +3106,8 @@ Displays all hidden objects. ") DisplayAll; void DisplayAll(const Standard_Boolean theToUpdateViewer); - /****************** DisplayMode ******************/ - /**** md5 signature: 87ab8eae5ccb1d4f4dfd02dc34d6febc ****/ + /****** AIS_InteractiveContext::DisplayMode ******/ + /****** md5 signature: 87ab8eae5ccb1d4f4dfd02dc34d6febc ******/ %feature("compactdefaultargs") DisplayMode; %feature("autodoc", "Return ------- @@ -3119,8 +3119,8 @@ Returns the display mode setting to be used by default. ") DisplayMode; Standard_Integer DisplayMode(); - /****************** DisplayPriority ******************/ - /**** md5 signature: 5ee166e687f439119f4237cb1827925f ****/ + /****** AIS_InteractiveContext::DisplayPriority ******/ + /****** md5 signature: 5ee166e687f439119f4237cb1827925f ******/ %feature("compactdefaultargs") DisplayPriority; %feature("autodoc", " Parameters @@ -3137,8 +3137,8 @@ Returns the display priority of the object. ") DisplayPriority; Graphic3d_DisplayPriority DisplayPriority(const opencascade::handle & theIObj); - /****************** DisplaySelected ******************/ - /**** md5 signature: 6981bcb57104e11b8ce741613e585a41 ****/ + /****** AIS_InteractiveContext::DisplaySelected ******/ + /****** md5 signature: 6981bcb57104e11b8ce741613e585a41 ******/ %feature("compactdefaultargs") DisplaySelected; %feature("autodoc", " Parameters @@ -3155,8 +3155,8 @@ Displays current objects. ") DisplaySelected; void DisplaySelected(const Standard_Boolean theToUpdateViewer); - /****************** DisplayStatus ******************/ - /**** md5 signature: 63fdc6587cc5281c7155ba72cfd784af ****/ + /****** AIS_InteractiveContext::DisplayStatus ******/ + /****** md5 signature: 63fdc6587cc5281c7155ba72cfd784af ******/ %feature("compactdefaultargs") DisplayStatus; %feature("autodoc", " Parameters @@ -3173,8 +3173,8 @@ Returns the display status of the entity aniobj. this will be one of the followi ") DisplayStatus; PrsMgr_DisplayStatus DisplayStatus(const opencascade::handle & anIobj); - /****************** DisplayedObjects ******************/ - /**** md5 signature: 2ac371de0991b7c60d0ec9d3cdc39d6c ****/ + /****** AIS_InteractiveContext::DisplayedObjects ******/ + /****** md5 signature: 2ac371de0991b7c60d0ec9d3cdc39d6c ******/ %feature("compactdefaultargs") DisplayedObjects; %feature("autodoc", " Parameters @@ -3191,8 +3191,8 @@ Returns the list of displayed objects of a particular type whichkind and signatu ") DisplayedObjects; void DisplayedObjects(AIS_ListOfInteractive & aListOfIO); - /****************** DisplayedObjects ******************/ - /**** md5 signature: e13aa22fbebdae8b832b7fe1e5a85dda ****/ + /****** AIS_InteractiveContext::DisplayedObjects ******/ + /****** md5 signature: e13aa22fbebdae8b832b7fe1e5a85dda ******/ %feature("compactdefaultargs") DisplayedObjects; %feature("autodoc", " Parameters @@ -3211,8 +3211,8 @@ Gives the list of displayed objects of a particular type and signature. by defau ") DisplayedObjects; void DisplayedObjects(const AIS_KindOfInteractive theWhichKind, const Standard_Integer theWhichSignature, AIS_ListOfInteractive & theListOfIO); - /****************** DrawHiddenLine ******************/ - /**** md5 signature: 372ddba1ff29bf8cd686ca27ede4bc2a ****/ + /****** AIS_InteractiveContext::DrawHiddenLine ******/ + /****** md5 signature: 372ddba1ff29bf8cd686ca27ede4bc2a ******/ %feature("compactdefaultargs") DrawHiddenLine; %feature("autodoc", "Return ------- @@ -3245,8 +3245,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** EnableDrawHiddenLine ******************/ - /**** md5 signature: ef1c63d78ea294d9e74f6b66ff4bc5ee ****/ + /****** AIS_InteractiveContext::EnableDrawHiddenLine ******/ + /****** md5 signature: ef1c63d78ea294d9e74f6b66ff4bc5ee ******/ %feature("compactdefaultargs") EnableDrawHiddenLine; %feature("autodoc", "Return ------- @@ -3258,8 +3258,8 @@ No available documentation. ") EnableDrawHiddenLine; void EnableDrawHiddenLine(); - /****************** EndImmediateDraw ******************/ - /**** md5 signature: d412b785cf73f80c6e408fe57fdcaa1e ****/ + /****** AIS_InteractiveContext::EndImmediateDraw ******/ + /****** md5 signature: d412b785cf73f80c6e408fe57fdcaa1e ******/ %feature("compactdefaultargs") EndImmediateDraw; %feature("autodoc", " Parameters @@ -3276,8 +3276,8 @@ Returns true if the immediate display has been done. ") EndImmediateDraw; Standard_Boolean EndImmediateDraw(const opencascade::handle & theView); - /****************** EndImmediateDraw ******************/ - /**** md5 signature: 817e9310dd497bb5350d7d89a7805025 ****/ + /****** AIS_InteractiveContext::EndImmediateDraw ******/ + /****** md5 signature: 817e9310dd497bb5350d7d89a7805025 ******/ %feature("compactdefaultargs") EndImmediateDraw; %feature("autodoc", "Return ------- @@ -3289,8 +3289,8 @@ Uses the first active view of main viewer! returns true if the immediate display ") EndImmediateDraw; Standard_Boolean EndImmediateDraw(); - /****************** Erase ******************/ - /**** md5 signature: 969438c38739175fcb7c0c4c75b922fb ****/ + /****** AIS_InteractiveContext::Erase ******/ + /****** md5 signature: 969438c38739175fcb7c0c4c75b922fb ******/ %feature("compactdefaultargs") Erase; %feature("autodoc", " Parameters @@ -3308,8 +3308,8 @@ Hides the object. the object's presentations are simply flagged as invisible and ") Erase; void Erase(const opencascade::handle & theIObj, const Standard_Boolean theToUpdateViewer); - /****************** EraseAll ******************/ - /**** md5 signature: 5b33d1ce278b256afd7b4948a73d39cd ****/ + /****** AIS_InteractiveContext::EraseAll ******/ + /****** md5 signature: 5b33d1ce278b256afd7b4948a73d39cd ******/ %feature("compactdefaultargs") EraseAll; %feature("autodoc", " Parameters @@ -3326,8 +3326,8 @@ Hides all objects. the object's presentations are simply flagged as invisible an ") EraseAll; void EraseAll(const Standard_Boolean theToUpdateViewer); - /****************** EraseSelected ******************/ - /**** md5 signature: c049d06d34cae1cc7285391e7aeb3e9b ****/ + /****** AIS_InteractiveContext::EraseSelected ******/ + /****** md5 signature: c049d06d34cae1cc7285391e7aeb3e9b ******/ %feature("compactdefaultargs") EraseSelected; %feature("autodoc", " Parameters @@ -3344,8 +3344,8 @@ Hides selected objects. the object's presentations are simply flagged as invisib ") EraseSelected; void EraseSelected(const Standard_Boolean theToUpdateViewer); - /****************** ErasedObjects ******************/ - /**** md5 signature: fba807be656c8be6c28360b3dee631c5 ****/ + /****** AIS_InteractiveContext::ErasedObjects ******/ + /****** md5 signature: fba807be656c8be6c28360b3dee631c5 ******/ %feature("compactdefaultargs") ErasedObjects; %feature("autodoc", " Parameters @@ -3362,8 +3362,8 @@ Returns the list thelistofio of erased objects (hidden objects) particular type ") ErasedObjects; void ErasedObjects(AIS_ListOfInteractive & theListOfIO); - /****************** ErasedObjects ******************/ - /**** md5 signature: d02164fb2a78fbf0cad653c1922f6452 ****/ + /****** AIS_InteractiveContext::ErasedObjects ******/ + /****** md5 signature: d02164fb2a78fbf0cad653c1922f6452 ******/ %feature("compactdefaultargs") ErasedObjects; %feature("autodoc", " Parameters @@ -3382,8 +3382,8 @@ Gives the list of erased objects (hidden objects) type and signature by default, ") ErasedObjects; void ErasedObjects(const AIS_KindOfInteractive theWhichKind, const Standard_Integer theWhichSignature, AIS_ListOfInteractive & theListOfIO); - /****************** FilterType ******************/ - /**** md5 signature: e37fce598a0b5e9b676a367504573e6c ****/ + /****** AIS_InteractiveContext::FilterType ******/ + /****** md5 signature: e37fce598a0b5e9b676a367504573e6c ******/ %feature("compactdefaultargs") FilterType; %feature("autodoc", "Return ------- @@ -3395,8 +3395,8 @@ Return the context selection filter type. ") FilterType; SelectMgr_FilterType FilterType(); - /****************** Filters ******************/ - /**** md5 signature: 93a08b293ea4d8d9b7d3fef18387c381 ****/ + /****** AIS_InteractiveContext::Filters ******/ + /****** md5 signature: 93a08b293ea4d8d9b7d3fef18387c381 ******/ %feature("compactdefaultargs") Filters; %feature("autodoc", "Return ------- @@ -3408,8 +3408,8 @@ Returns the list of filters active in a local context. ") Filters; const SelectMgr_ListOfFilter & Filters(); - /****************** FirstSelectedObject ******************/ - /**** md5 signature: b2acdd4c911cfcbaab84d9d6a86cd9a5 ****/ + /****** AIS_InteractiveContext::FirstSelectedObject ******/ + /****** md5 signature: b2acdd4c911cfcbaab84d9d6a86cd9a5 ******/ %feature("compactdefaultargs") FirstSelectedObject; %feature("autodoc", "Return ------- @@ -3421,8 +3421,8 @@ Returns the first selected object in the list of current selected. ") FirstSelectedObject; opencascade::handle FirstSelectedObject(); - /****************** FitSelected ******************/ - /**** md5 signature: 35039067e64419ba27be322de4475534 ****/ + /****** AIS_InteractiveContext::FitSelected ******/ + /****** md5 signature: 35039067e64419ba27be322de4475534 ******/ %feature("compactdefaultargs") FitSelected; %feature("autodoc", " Parameters @@ -3441,8 +3441,8 @@ Fits the view correspondingly to the bounds of selected objects. infinite object ") FitSelected; void FitSelected(const opencascade::handle & theView, const Standard_Real theMargin, const Standard_Boolean theToUpdate); - /****************** FitSelected ******************/ - /**** md5 signature: fac92c7e203e7b23d7c9d8470d938941 ****/ + /****** AIS_InteractiveContext::FitSelected ******/ + /****** md5 signature: fac92c7e203e7b23d7c9d8470d938941 ******/ %feature("compactdefaultargs") FitSelected; %feature("autodoc", " Parameters @@ -3459,8 +3459,8 @@ Fits the view correspondingly to the bounds of selected objects. infinite object ") FitSelected; void FitSelected(const opencascade::handle & theView); - /****************** GetAutoActivateSelection ******************/ - /**** md5 signature: a611232040c566e34ca8670e7ea16a71 ****/ + /****** AIS_InteractiveContext::GetAutoActivateSelection ******/ + /****** md5 signature: a611232040c566e34ca8670e7ea16a71 ******/ %feature("compactdefaultargs") GetAutoActivateSelection; %feature("autodoc", "Return ------- @@ -3472,8 +3472,8 @@ Manages displaying the new object should also automatically activate default sel ") GetAutoActivateSelection; Standard_Boolean GetAutoActivateSelection(); - /****************** GetZLayer ******************/ - /**** md5 signature: fc7034555b0d116eef6c19ec38f9deca ****/ + /****** AIS_InteractiveContext::GetZLayer ******/ + /****** md5 signature: fc7034555b0d116eef6c19ec38f9deca ******/ %feature("compactdefaultargs") GetZLayer; %feature("autodoc", " Parameters @@ -3490,8 +3490,8 @@ Get z layer id set for displayed interactive object. ") GetZLayer; Graphic3d_ZLayerId GetZLayer(const opencascade::handle & theIObj); - /****************** GlobalFilter ******************/ - /**** md5 signature: 06ef473f9ff7dbdffd2e783f736f69a0 ****/ + /****** AIS_InteractiveContext::GlobalFilter ******/ + /****** md5 signature: 06ef473f9ff7dbdffd2e783f736f69a0 ******/ %feature("compactdefaultargs") GlobalFilter; %feature("autodoc", "Return ------- @@ -3503,8 +3503,8 @@ Return the context selection global context filter. ") GlobalFilter; const opencascade::handle & GlobalFilter(); - /****************** GravityPoint ******************/ - /**** md5 signature: 61432a855a261dfe994f834c87d91d2a ****/ + /****** AIS_InteractiveContext::GravityPoint ******/ + /****** md5 signature: 61432a855a261dfe994f834c87d91d2a ******/ %feature("compactdefaultargs") GravityPoint; %feature("autodoc", " Parameters @@ -3521,8 +3521,8 @@ Return rotation gravity point. ") GravityPoint; virtual gp_Pnt GravityPoint(const opencascade::handle & theView); - /****************** HasApplicative ******************/ - /**** md5 signature: 60d05f5258a04bb60710b49cfc48cf5a ****/ + /****** AIS_InteractiveContext::HasApplicative ******/ + /****** md5 signature: 60d05f5258a04bb60710b49cfc48cf5a ******/ %feature("compactdefaultargs") HasApplicative; %feature("autodoc", "Return ------- @@ -3534,8 +3534,8 @@ Returns selectedinteractive()->hasowner(). @sa selectedowner(). ") HasApplicative; Standard_Boolean HasApplicative(); - /****************** HasColor ******************/ - /**** md5 signature: cc8dd25fdc35e31043976e96be57d5b9 ****/ + /****** AIS_InteractiveContext::HasColor ******/ + /****** md5 signature: cc8dd25fdc35e31043976e96be57d5b9 ******/ %feature("compactdefaultargs") HasColor; %feature("autodoc", " Parameters @@ -3552,8 +3552,8 @@ Returns true if a view of the interactive object has color. ") HasColor; Standard_Boolean HasColor(const opencascade::handle & aniobj); - /****************** HasDetected ******************/ - /**** md5 signature: 9784833ccfaab525e30c79edfbe72190 ****/ + /****** AIS_InteractiveContext::HasDetected ******/ + /****** md5 signature: 9784833ccfaab525e30c79edfbe72190 ******/ %feature("compactdefaultargs") HasDetected; %feature("autodoc", "Return ------- @@ -3565,8 +3565,8 @@ Returns true if there is a mouse-detected entity in context. @sa detectedowner() ") HasDetected; Standard_Boolean HasDetected(); - /****************** HasDetectedShape ******************/ - /**** md5 signature: d2fb3a69e46a45ed0edd4bafb59b8257 ****/ + /****** AIS_InteractiveContext::HasDetectedShape ******/ + /****** md5 signature: d2fb3a69e46a45ed0edd4bafb59b8257 ******/ %feature("compactdefaultargs") HasDetectedShape; %feature("autodoc", "Return ------- @@ -3578,8 +3578,8 @@ Returns true if there is a detected shape in local context. @sa hasdetected(), d ") HasDetectedShape; Standard_Boolean HasDetectedShape(); - /****************** HasLocation ******************/ - /**** md5 signature: 015cfc324c92fd00be4aef64c25f24d2 ****/ + /****** AIS_InteractiveContext::HasLocation ******/ + /****** md5 signature: 015cfc324c92fd00be4aef64c25f24d2 ******/ %feature("compactdefaultargs") HasLocation; %feature("autodoc", " Parameters @@ -3596,8 +3596,8 @@ Returns true if the object has a location. ") HasLocation; Standard_Boolean HasLocation(const opencascade::handle & theObject); - /****************** HasNextDetected ******************/ - /**** md5 signature: 7a28caee8124c59c13fd939c4f7e2c47 ****/ + /****** AIS_InteractiveContext::HasNextDetected ******/ + /****** md5 signature: 7a28caee8124c59c13fd939c4f7e2c47 ******/ %feature("compactdefaultargs") HasNextDetected; %feature("autodoc", "Return ------- @@ -3609,8 +3609,8 @@ Returns true if other entities were detected in the last mouse detection @sa hil ") HasNextDetected; Standard_Boolean HasNextDetected(); - /****************** HasPolygonOffsets ******************/ - /**** md5 signature: 40f0ecc7de3c38df2fa3453b26a4dff0 ****/ + /****** AIS_InteractiveContext::HasPolygonOffsets ******/ + /****** md5 signature: 40f0ecc7de3c38df2fa3453b26a4dff0 ******/ %feature("compactdefaultargs") HasPolygonOffsets; %feature("autodoc", " Parameters @@ -3627,8 +3627,8 @@ Simply calls ais_interactiveobject::haspolygonoffsets(). ") HasPolygonOffsets; Standard_Boolean HasPolygonOffsets(const opencascade::handle & anObj); - /****************** HasSelectedShape ******************/ - /**** md5 signature: 490f9e8372b8aa45e061a56a47cd4fa4 ****/ + /****** AIS_InteractiveContext::HasSelectedShape ******/ + /****** md5 signature: 490f9e8372b8aa45e061a56a47cd4fa4 ******/ %feature("compactdefaultargs") HasSelectedShape; %feature("autodoc", "Return ------- @@ -3640,8 +3640,8 @@ Returns true if the interactive context has a shape selected. @sa selectedshape( ") HasSelectedShape; Standard_Boolean HasSelectedShape(); - /****************** HiddenLineAspect ******************/ - /**** md5 signature: 94d1c2a65d1f004db7812470264560c4 ****/ + /****** AIS_InteractiveContext::HiddenLineAspect ******/ + /****** md5 signature: 94d1c2a65d1f004db7812470264560c4 ******/ %feature("compactdefaultargs") HiddenLineAspect; %feature("autodoc", "Return ------- @@ -3653,8 +3653,8 @@ Initializes hidden line aspect in the default drawing tool, or drawer. the defau ") HiddenLineAspect; const opencascade::handle & HiddenLineAspect(); - /****************** HighlightStyle ******************/ - /**** md5 signature: 2cb78034dd0075f5760ff6947175afbf ****/ + /****** AIS_InteractiveContext::HighlightStyle ******/ + /****** md5 signature: 2cb78034dd0075f5760ff6947175afbf ******/ %feature("compactdefaultargs") HighlightStyle; %feature("autodoc", " Parameters @@ -3671,8 +3671,8 @@ Returns default highlight style settings (could be overridden by prsmgr_presenta ") HighlightStyle; const opencascade::handle & HighlightStyle(const Prs3d_TypeOfHighlight theStyleType); - /****************** HighlightStyle ******************/ - /**** md5 signature: a5e55eefe6df1b6a11e0c9a34f35e9be ****/ + /****** AIS_InteractiveContext::HighlightStyle ******/ + /****** md5 signature: a5e55eefe6df1b6a11e0c9a34f35e9be ******/ %feature("compactdefaultargs") HighlightStyle; %feature("autodoc", "Return ------- @@ -3684,8 +3684,8 @@ Returns current dynamic highlight style settings corresponding to prs3d_typeofhi ") HighlightStyle; const opencascade::handle & HighlightStyle(); - /****************** HighlightStyle ******************/ - /**** md5 signature: 77c11de0b93da91ba5c484b3b8f5f1ce ****/ + /****** AIS_InteractiveContext::HighlightStyle ******/ + /****** md5 signature: 77c11de0b93da91ba5c484b3b8f5f1ce ******/ %feature("compactdefaultargs") HighlightStyle; %feature("autodoc", " Parameters @@ -3703,8 +3703,8 @@ Returns highlight style of the object if it is marked as highlighted via global ") HighlightStyle; Standard_Boolean HighlightStyle(const opencascade::handle & theObj, opencascade::handle & theStyle); - /****************** HighlightStyle ******************/ - /**** md5 signature: 67e112908a1146ebe2626616c583fce2 ****/ + /****** AIS_InteractiveContext::HighlightStyle ******/ + /****** md5 signature: 67e112908a1146ebe2626616c583fce2 ******/ %feature("compactdefaultargs") HighlightStyle; %feature("autodoc", " Parameters @@ -3722,8 +3722,8 @@ Returns highlight style of the owner if it is selected @param theowner [in] the ") HighlightStyle; Standard_Boolean HighlightStyle(const opencascade::handle & theOwner, opencascade::handle & theStyle); - /****************** Hilight ******************/ - /**** md5 signature: e4baa3152e7a2a38dd2e68bd6f2939aa ****/ + /****** AIS_InteractiveContext::Hilight ******/ + /****** md5 signature: e4baa3152e7a2a38dd2e68bd6f2939aa ******/ %feature("compactdefaultargs") Hilight; %feature("autodoc", " Parameters @@ -3741,8 +3741,8 @@ Updates the display in the viewer to take dynamic detection into account. on dyn ") Hilight; void Hilight(const opencascade::handle & theObj, const Standard_Boolean theIsToUpdateViewer); - /****************** HilightCurrents ******************/ - /**** md5 signature: cab78712012415a0a9c1a56c5790e3ed ****/ + /****** AIS_InteractiveContext::HilightCurrents ******/ + /****** md5 signature: cab78712012415a0a9c1a56c5790e3ed ******/ %feature("compactdefaultargs") HilightCurrents; %feature("autodoc", " Parameters @@ -3759,8 +3759,8 @@ Highlights current objects. objects selected when there is no open local context ") HilightCurrents; void HilightCurrents(const Standard_Boolean theToUpdateViewer); - /****************** HilightNextDetected ******************/ - /**** md5 signature: 9c05abb0fa3776e9813bee557372d755 ****/ + /****** AIS_InteractiveContext::HilightNextDetected ******/ + /****** md5 signature: 9c05abb0fa3776e9813bee557372d755 ******/ %feature("compactdefaultargs") HilightNextDetected; %feature("autodoc", " Parameters @@ -3778,8 +3778,8 @@ If more than 1 object is detected by the selector, only the 'best' owner is hili ") HilightNextDetected; Standard_Integer HilightNextDetected(const opencascade::handle & theView, const Standard_Boolean theToRedrawImmediate = Standard_True); - /****************** HilightPreviousDetected ******************/ - /**** md5 signature: 262cae5bc6c5467cc4d7bc8c48f38ba0 ****/ + /****** AIS_InteractiveContext::HilightPreviousDetected ******/ + /****** md5 signature: 262cae5bc6c5467cc4d7bc8c48f38ba0 ******/ %feature("compactdefaultargs") HilightPreviousDetected; %feature("autodoc", " Parameters @@ -3797,8 +3797,8 @@ Same as previous methods in reverse direction. @sa hasnextdetected(), hilightnex ") HilightPreviousDetected; Standard_Integer HilightPreviousDetected(const opencascade::handle & theView, const Standard_Boolean theToRedrawImmediate = Standard_True); - /****************** HilightSelected ******************/ - /**** md5 signature: fbae34d3611ad95d43225055edcfeb6c ****/ + /****** AIS_InteractiveContext::HilightSelected ******/ + /****** md5 signature: fbae34d3611ad95d43225055edcfeb6c ******/ %feature("compactdefaultargs") HilightSelected; %feature("autodoc", " Parameters @@ -3815,8 +3815,8 @@ Highlights selected objects. ") HilightSelected; void HilightSelected(const Standard_Boolean theToUpdateViewer); - /****************** HilightWithColor ******************/ - /**** md5 signature: 39c928c522f658b4bc35ad09476c370b ****/ + /****** AIS_InteractiveContext::HilightWithColor ******/ + /****** md5 signature: 39c928c522f658b4bc35ad09476c370b ******/ %feature("compactdefaultargs") HilightWithColor; %feature("autodoc", " Parameters @@ -3835,8 +3835,8 @@ Changes the color of all the lines of the object in view. ") HilightWithColor; void HilightWithColor(const opencascade::handle & theObj, const opencascade::handle & theStyle, const Standard_Boolean theToUpdateViewer); - /****************** ImmediateAdd ******************/ - /**** md5 signature: f1c6cfe88d67fef4d99d5d59f858679d ****/ + /****** AIS_InteractiveContext::ImmediateAdd ******/ + /****** md5 signature: f1c6cfe88d67fef4d99d5d59f858679d ******/ %feature("compactdefaultargs") ImmediateAdd; %feature("autodoc", " Parameters @@ -3854,8 +3854,8 @@ Returns true if has been stored in the list. ") ImmediateAdd; Standard_Boolean ImmediateAdd(const opencascade::handle & theObj, const Standard_Integer theMode = 0); - /****************** InitCurrent ******************/ - /**** md5 signature: 3be01264f20faf11fcd664c48a8a4660 ****/ + /****** AIS_InteractiveContext::InitCurrent ******/ + /****** md5 signature: 3be01264f20faf11fcd664c48a8a4660 ******/ %feature("compactdefaultargs") InitCurrent; %feature("autodoc", "Return ------- @@ -3867,8 +3867,8 @@ Initializes a scan of the current selected objects in neutral point. objects sel ") InitCurrent; void InitCurrent(); - /****************** InitDetected ******************/ - /**** md5 signature: c8e093453ccb47b93fdb3539272d695f ****/ + /****** AIS_InteractiveContext::InitDetected ******/ + /****** md5 signature: c8e093453ccb47b93fdb3539272d695f ******/ %feature("compactdefaultargs") InitDetected; %feature("autodoc", "Return ------- @@ -3880,8 +3880,8 @@ Initialization for iteration through mouse-detected objects in interactive conte ") InitDetected; void InitDetected(); - /****************** InitSelected ******************/ - /**** md5 signature: 5a647272f34af26ffd1cb3083091517d ****/ + /****** AIS_InteractiveContext::InitSelected ******/ + /****** md5 signature: 5a647272f34af26ffd1cb3083091517d ******/ %feature("compactdefaultargs") InitSelected; %feature("autodoc", "Return ------- @@ -3893,8 +3893,8 @@ Initializes a scan of the selected objects. @sa selectedowner(), moreselected(), ") InitSelected; void InitSelected(); - /****************** IsCurrent ******************/ - /**** md5 signature: 2c28b7fccf52ba48ec1ee035f561df97 ****/ + /****** AIS_InteractiveContext::IsCurrent ******/ + /****** md5 signature: 2c28b7fccf52ba48ec1ee035f561df97 ******/ %feature("compactdefaultargs") IsCurrent; %feature("autodoc", " Parameters @@ -3911,8 +3911,8 @@ Returns true if there is a non-null interactive object in neutral point. objects ") IsCurrent; Standard_Boolean IsCurrent(const opencascade::handle & theObject); - /****************** IsDisplayed ******************/ - /**** md5 signature: ecf149ce37d3b960446b93fc86709fc3 ****/ + /****** AIS_InteractiveContext::IsDisplayed ******/ + /****** md5 signature: ecf149ce37d3b960446b93fc86709fc3 ******/ %feature("compactdefaultargs") IsDisplayed; %feature("autodoc", " Parameters @@ -3929,8 +3929,8 @@ Returns true if object is displayed in the interactive context. ") IsDisplayed; Standard_Boolean IsDisplayed(const opencascade::handle & anIobj); - /****************** IsDisplayed ******************/ - /**** md5 signature: a1ae8679353cd72804eb499d4aee8ded ****/ + /****** AIS_InteractiveContext::IsDisplayed ******/ + /****** md5 signature: a1ae8679353cd72804eb499d4aee8ded ******/ %feature("compactdefaultargs") IsDisplayed; %feature("autodoc", " Parameters @@ -3948,8 +3948,8 @@ No available documentation. ") IsDisplayed; Standard_Boolean IsDisplayed(const opencascade::handle & aniobj, const Standard_Integer aMode); - /****************** IsHilighted ******************/ - /**** md5 signature: b43be3c44fd163fff4750f33b968090a ****/ + /****** AIS_InteractiveContext::IsHilighted ******/ + /****** md5 signature: b43be3c44fd163fff4750f33b968090a ******/ %feature("compactdefaultargs") IsHilighted; %feature("autodoc", " Parameters @@ -3966,8 +3966,8 @@ Returns true if the object is marked as highlighted via its global status @param ") IsHilighted; Standard_Boolean IsHilighted(const opencascade::handle & theObj); - /****************** IsHilighted ******************/ - /**** md5 signature: 5d7918d872a09248c3b801d85db8a988 ****/ + /****** AIS_InteractiveContext::IsHilighted ******/ + /****** md5 signature: 5d7918d872a09248c3b801d85db8a988 ******/ %feature("compactdefaultargs") IsHilighted; %feature("autodoc", " Parameters @@ -3984,8 +3984,8 @@ Returns true if the owner is marked as selected @param theowner [in] the owner t ") IsHilighted; Standard_Boolean IsHilighted(const opencascade::handle & theOwner); - /****************** IsImmediateModeOn ******************/ - /**** md5 signature: 802f25d07bc3216afed5043bb5a75130 ****/ + /****** AIS_InteractiveContext::IsImmediateModeOn ******/ + /****** md5 signature: 802f25d07bc3216afed5043bb5a75130 ******/ %feature("compactdefaultargs") IsImmediateModeOn; %feature("autodoc", "Return ------- @@ -3997,8 +3997,8 @@ No available documentation. ") IsImmediateModeOn; Standard_Boolean IsImmediateModeOn(); - /****************** IsSelected ******************/ - /**** md5 signature: e7bf93b9da84e840c50f69967794905c ****/ + /****** AIS_InteractiveContext::IsSelected ******/ + /****** md5 signature: e7bf93b9da84e840c50f69967794905c ******/ %feature("compactdefaultargs") IsSelected; %feature("autodoc", " Parameters @@ -4015,8 +4015,8 @@ Returns true is the owner given is selected. ") IsSelected; Standard_Boolean IsSelected(const opencascade::handle & theOwner); - /****************** IsSelected ******************/ - /**** md5 signature: d7dd3e491d524a532b0124af17ea19cf ****/ + /****** AIS_InteractiveContext::IsSelected ******/ + /****** md5 signature: d7dd3e491d524a532b0124af17ea19cf ******/ %feature("compactdefaultargs") IsSelected; %feature("autodoc", " Parameters @@ -4033,8 +4033,8 @@ Returns true is the object given is selected. ") IsSelected; Standard_Boolean IsSelected(const opencascade::handle & theObj); - /****************** IsoNumber ******************/ - /**** md5 signature: 67c6591eeef40686da48e9c8279f7db4 ****/ + /****** AIS_InteractiveContext::IsoNumber ******/ + /****** md5 signature: 67c6591eeef40686da48e9c8279f7db4 ******/ %feature("compactdefaultargs") IsoNumber; %feature("autodoc", " Parameters @@ -4051,8 +4051,8 @@ Returns the number of u and v isoparameters displayed. ") IsoNumber; Standard_Integer IsoNumber(const AIS_TypeOfIso WhichIsos = AIS_TOI_Both); - /****************** IsoOnPlane ******************/ - /**** md5 signature: 48280fa3ffd8bf23acfa138c4eadbe98 ****/ + /****** AIS_InteractiveContext::IsoOnPlane ******/ + /****** md5 signature: 48280fa3ffd8bf23acfa138c4eadbe98 ******/ %feature("compactdefaultargs") IsoOnPlane; %feature("autodoc", " Parameters @@ -4069,8 +4069,8 @@ Returns true if drawing isoparameters on planes is enabled. ") IsoOnPlane; void IsoOnPlane(const Standard_Boolean theToSwitchOn); - /****************** IsoOnPlane ******************/ - /**** md5 signature: 725ae5fc83d7314e8a35910b73791b5a ****/ + /****** AIS_InteractiveContext::IsoOnPlane ******/ + /****** md5 signature: 725ae5fc83d7314e8a35910b73791b5a ******/ %feature("compactdefaultargs") IsoOnPlane; %feature("autodoc", "Return ------- @@ -4082,8 +4082,8 @@ Returns true if drawing isoparameters on planes is enabled. if = fals ") IsoOnPlane; Standard_Boolean IsoOnPlane(); - /****************** IsoOnTriangulation ******************/ - /**** md5 signature: 6c6b851432f9c77e0d427b8894d13702 ****/ + /****** AIS_InteractiveContext::IsoOnTriangulation ******/ + /****** md5 signature: 6c6b851432f9c77e0d427b8894d13702 ******/ %feature("compactdefaultargs") IsoOnTriangulation; %feature("autodoc", " Parameters @@ -4101,8 +4101,8 @@ Enables or disables on-triangulation build for isolines for a particular object. ") IsoOnTriangulation; void IsoOnTriangulation(const Standard_Boolean theIsEnabled, const opencascade::handle & theObject); - /****************** IsoOnTriangulation ******************/ - /**** md5 signature: 8e5ad4a63beb9c4793c9d1b96a3b51d2 ****/ + /****** AIS_InteractiveContext::IsoOnTriangulation ******/ + /****** md5 signature: 8e5ad4a63beb9c4793c9d1b96a3b51d2 ******/ %feature("compactdefaultargs") IsoOnTriangulation; %feature("autodoc", " Parameters @@ -4119,8 +4119,8 @@ Enables or disables on-triangulation build for isolines for default drawer. in c ") IsoOnTriangulation; void IsoOnTriangulation(const Standard_Boolean theToSwitchOn); - /****************** IsoOnTriangulation ******************/ - /**** md5 signature: 86d0a4f726e225c8973eb7c232be52f2 ****/ + /****** AIS_InteractiveContext::IsoOnTriangulation ******/ + /****** md5 signature: 86d0a4f726e225c8973eb7c232be52f2 ******/ %feature("compactdefaultargs") IsoOnTriangulation; %feature("autodoc", "Return ------- @@ -4132,8 +4132,8 @@ Returns true if drawing isolines on triangulation algorithm is enabled. ") IsoOnTriangulation; Standard_Boolean IsoOnTriangulation(); - /****************** LastActiveView ******************/ - /**** md5 signature: 917b175d2fccb1c48372a3e9d347f6f4 ****/ + /****** AIS_InteractiveContext::LastActiveView ******/ + /****** md5 signature: 917b175d2fccb1c48372a3e9d347f6f4 ******/ %feature("compactdefaultargs") LastActiveView; %feature("autodoc", "Return ------- @@ -4145,8 +4145,8 @@ Returns last active view (argument of moveto()/select() methods). ") LastActiveView; opencascade::handle LastActiveView(); - /****************** Load ******************/ - /**** md5 signature: 1613cc105e3d94428049dd01e84bdcec ****/ + /****** AIS_InteractiveContext::Load ******/ + /****** md5 signature: 1613cc105e3d94428049dd01e84bdcec ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -4164,8 +4164,8 @@ Allows you to load the interactive object with a given selection mode, and/or wi ") Load; void Load(const opencascade::handle & theObj, const Standard_Integer theSelectionMode = -1); - /****************** Load ******************/ - /**** md5 signature: 4c20b3a553cb0de0cb199ecfc09410a8 ****/ + /****** AIS_InteractiveContext::Load ******/ + /****** md5 signature: 4c20b3a553cb0de0cb199ecfc09410a8 ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -4184,8 +4184,8 @@ No available documentation. ") Load; void Load(const opencascade::handle & theObj, Standard_Integer theSelectionMode, Standard_Boolean ); - /****************** Location ******************/ - /**** md5 signature: e6bd8403c84dda3a7567f9c4cf6245fd ****/ + /****** AIS_InteractiveContext::Location ******/ + /****** md5 signature: e6bd8403c84dda3a7567f9c4cf6245fd ******/ %feature("compactdefaultargs") Location; %feature("autodoc", " Parameters @@ -4202,8 +4202,8 @@ Returns the location of the object. ") Location; TopLoc_Location Location(const opencascade::handle & theObject); - /****************** MainPrsMgr ******************/ - /**** md5 signature: bdc4498bf12a71cbbfdc608a2521c7ca ****/ + /****** AIS_InteractiveContext::MainPrsMgr ******/ + /****** md5 signature: bdc4498bf12a71cbbfdc608a2521c7ca ******/ %feature("compactdefaultargs") MainPrsMgr; %feature("autodoc", "Return ------- @@ -4215,8 +4215,8 @@ No available documentation. ") MainPrsMgr; const opencascade::handle & MainPrsMgr(); - /****************** MainSelector ******************/ - /**** md5 signature: 324583e97a6b1f0d3b2bbf32bc96a6ef ****/ + /****** AIS_InteractiveContext::MainSelector ******/ + /****** md5 signature: 324583e97a6b1f0d3b2bbf32bc96a6ef ******/ %feature("compactdefaultargs") MainSelector; %feature("autodoc", "Return ------- @@ -4228,8 +4228,8 @@ No available documentation. ") MainSelector; const opencascade::handle & MainSelector(); - /****************** MoreCurrent ******************/ - /**** md5 signature: 1a8720231c263e320b851a9c4ea2f693 ****/ + /****** AIS_InteractiveContext::MoreCurrent ******/ + /****** md5 signature: 1a8720231c263e320b851a9c4ea2f693 ******/ %feature("compactdefaultargs") MoreCurrent; %feature("autodoc", "Return ------- @@ -4241,8 +4241,8 @@ Returns true if there is another object found by the scan of the list of current ") MoreCurrent; Standard_Boolean MoreCurrent(); - /****************** MoreDetected ******************/ - /**** md5 signature: 07e8132e91725af6307db9bfd564c136 ****/ + /****** AIS_InteractiveContext::MoreDetected ******/ + /****** md5 signature: 07e8132e91725af6307db9bfd564c136 ******/ %feature("compactdefaultargs") MoreDetected; %feature("autodoc", "Return ------- @@ -4254,8 +4254,8 @@ Return true if there is more mouse-detected objects after the current one during ") MoreDetected; Standard_Boolean MoreDetected(); - /****************** MoreSelected ******************/ - /**** md5 signature: 9f460e4981ece0e01fad2077174757e0 ****/ + /****** AIS_InteractiveContext::MoreSelected ******/ + /****** md5 signature: 9f460e4981ece0e01fad2077174757e0 ******/ %feature("compactdefaultargs") MoreSelected; %feature("autodoc", "Return ------- @@ -4267,8 +4267,8 @@ Returns true if there is another object found by the scan of the list of selecte ") MoreSelected; Standard_Boolean MoreSelected(); - /****************** MoveTo ******************/ - /**** md5 signature: 9c6ee0b190031604e2ad3ee603a732e4 ****/ + /****** AIS_InteractiveContext::MoveTo ******/ + /****** md5 signature: 9c6ee0b190031604e2ad3ee603a732e4 ******/ %feature("compactdefaultargs") MoveTo; %feature("autodoc", " Parameters @@ -4288,8 +4288,8 @@ Relays mouse position in pixels thexpix and theypix to the interactive context s ") MoveTo; AIS_StatusOfDetection MoveTo(const Standard_Integer theXPix, const Standard_Integer theYPix, const opencascade::handle & theView, const Standard_Boolean theToRedrawOnUpdate); - /****************** MoveTo ******************/ - /**** md5 signature: 2d4d11946cb3b5d59dc861dff00a7f66 ****/ + /****** AIS_InteractiveContext::MoveTo ******/ + /****** md5 signature: 2d4d11946cb3b5d59dc861dff00a7f66 ******/ %feature("compactdefaultargs") MoveTo; %feature("autodoc", " Parameters @@ -4308,8 +4308,8 @@ Relays axis theaxis to the interactive context selectors. this is done by the vi ") MoveTo; AIS_StatusOfDetection MoveTo(const gp_Ax1 & theAxis, const opencascade::handle & theView, const Standard_Boolean theToRedrawOnUpdate); - /****************** NbCurrents ******************/ - /**** md5 signature: 2bd21aea6055d1a4ef8d258c5b2a1542 ****/ + /****** AIS_InteractiveContext::NbCurrents ******/ + /****** md5 signature: 2bd21aea6055d1a4ef8d258c5b2a1542 ******/ %feature("compactdefaultargs") NbCurrents; %feature("autodoc", "Return ------- @@ -4321,8 +4321,8 @@ No available documentation. ") NbCurrents; Standard_Integer NbCurrents(); - /****************** NbSelected ******************/ - /**** md5 signature: 29cc2a3b075c044d0d4a48fbbe1b0094 ****/ + /****** AIS_InteractiveContext::NbSelected ******/ + /****** md5 signature: 29cc2a3b075c044d0d4a48fbbe1b0094 ******/ %feature("compactdefaultargs") NbSelected; %feature("autodoc", "Return ------- @@ -4334,8 +4334,8 @@ Count a number of selected entities using initselected()+moreselected()+nextsele ") NbSelected; Standard_Integer NbSelected(); - /****************** NextCurrent ******************/ - /**** md5 signature: d0fa06bf08aae72d9d2f78c98b20d4f9 ****/ + /****** AIS_InteractiveContext::NextCurrent ******/ + /****** md5 signature: d0fa06bf08aae72d9d2f78c98b20d4f9 ******/ %feature("compactdefaultargs") NextCurrent; %feature("autodoc", "Return ------- @@ -4347,8 +4347,8 @@ Continues the scan to the next object in the list of current objects. objects se ") NextCurrent; void NextCurrent(); - /****************** NextDetected ******************/ - /**** md5 signature: 80e9abbe7c307e899704c0aa75085271 ****/ + /****** AIS_InteractiveContext::NextDetected ******/ + /****** md5 signature: 80e9abbe7c307e899704c0aa75085271 ******/ %feature("compactdefaultargs") NextDetected; %feature("autodoc", "Return ------- @@ -4360,8 +4360,8 @@ Gets next current object during iteration through mouse-detected interactive obj ") NextDetected; void NextDetected(); - /****************** NextSelected ******************/ - /**** md5 signature: b0ac689aff47b7f0c7ffd7973ff9538f ****/ + /****** AIS_InteractiveContext::NextSelected ******/ + /****** md5 signature: b0ac689aff47b7f0c7ffd7973ff9538f ******/ %feature("compactdefaultargs") NextSelected; %feature("autodoc", "Return ------- @@ -4373,8 +4373,8 @@ Continues the scan to the next object in the list of selected objects. @sa selec ") NextSelected; void NextSelected(); - /****************** ObjectIterator ******************/ - /**** md5 signature: 804b294e0bb2b10425cdac1f18aab7f5 ****/ + /****** AIS_InteractiveContext::ObjectIterator ******/ + /****** md5 signature: 804b294e0bb2b10425cdac1f18aab7f5 ******/ %feature("compactdefaultargs") ObjectIterator; %feature("autodoc", "Return ------- @@ -4386,8 +4386,8 @@ Create iterator through all objects registered in context. ") ObjectIterator; AIS_DataMapIteratorOfDataMapOfIOStatus ObjectIterator(); - /****************** ObjectsByDisplayStatus ******************/ - /**** md5 signature: 51d891b3fdbc286ef0af76b239900609 ****/ + /****** AIS_InteractiveContext::ObjectsByDisplayStatus ******/ + /****** md5 signature: 51d891b3fdbc286ef0af76b239900609 ******/ %feature("compactdefaultargs") ObjectsByDisplayStatus; %feature("autodoc", " Parameters @@ -4405,8 +4405,8 @@ Returns the list thelistofio of objects with indicated display status particular ") ObjectsByDisplayStatus; void ObjectsByDisplayStatus(const PrsMgr_DisplayStatus theStatus, AIS_ListOfInteractive & theListOfIO); - /****************** ObjectsByDisplayStatus ******************/ - /**** md5 signature: cd9150453dc815573dc7553749c81a33 ****/ + /****** AIS_InteractiveContext::ObjectsByDisplayStatus ******/ + /****** md5 signature: cd9150453dc815573dc7553749c81a33 ******/ %feature("compactdefaultargs") ObjectsByDisplayStatus; %feature("autodoc", " Parameters @@ -4426,8 +4426,8 @@ Gives the list of objects with indicated display status type and signature by de ") ObjectsByDisplayStatus; void ObjectsByDisplayStatus(const AIS_KindOfInteractive WhichKind, const Standard_Integer WhichSignature, const PrsMgr_DisplayStatus theStatus, AIS_ListOfInteractive & theListOfIO); - /****************** ObjectsForView ******************/ - /**** md5 signature: 03db815545a73176f5e924de76ca30b2 ****/ + /****** AIS_InteractiveContext::ObjectsForView ******/ + /****** md5 signature: 03db815545a73176f5e924de76ca30b2 ******/ %feature("compactdefaultargs") ObjectsForView; %feature("autodoc", " Parameters @@ -4447,8 +4447,8 @@ Query objects visible or hidden in specified view due to affinity mask. ") ObjectsForView; void ObjectsForView(AIS_ListOfInteractive & theListOfIO, const opencascade::handle & theView, const Standard_Boolean theIsVisibleInView, const PrsMgr_DisplayStatus theStatus = PrsMgr_DisplayStatus_None); - /****************** ObjectsInside ******************/ - /**** md5 signature: e893957ca156ab9c1aea481eaeae6510 ****/ + /****** AIS_InteractiveContext::ObjectsInside ******/ + /****** md5 signature: e893957ca156ab9c1aea481eaeae6510 ******/ %feature("compactdefaultargs") ObjectsInside; %feature("autodoc", " Parameters @@ -4467,8 +4467,8 @@ Fills with objects of a particular type and signature with no consid ") ObjectsInside; void ObjectsInside(AIS_ListOfInteractive & aListOfIO, const AIS_KindOfInteractive WhichKind = AIS_KindOfInteractive_None, const Standard_Integer WhichSignature = -1); - /****************** PickingStrategy ******************/ - /**** md5 signature: 7ec32744d1635811c168c2b831c6636a ****/ + /****** AIS_InteractiveContext::PickingStrategy ******/ + /****** md5 signature: 7ec32744d1635811c168c2b831c6636a ******/ %feature("compactdefaultargs") PickingStrategy; %feature("autodoc", "Return ------- @@ -4480,8 +4480,8 @@ Return picking strategy; selectmgr_pickingstrategy_firstacceptable by default. @ ") PickingStrategy; SelectMgr_PickingStrategy PickingStrategy(); - /****************** PixelTolerance ******************/ - /**** md5 signature: 8078ba0406b978ded77c2e81f2ee556f ****/ + /****** AIS_InteractiveContext::PixelTolerance ******/ + /****** md5 signature: 8078ba0406b978ded77c2e81f2ee556f ******/ %feature("compactdefaultargs") PixelTolerance; %feature("autodoc", "Return ------- @@ -4493,8 +4493,8 @@ Returns the pixel tolerance, default is 2. pixel tolerance extends sensitivity w ") PixelTolerance; Standard_Integer PixelTolerance(); - /****************** PlaneSize ******************/ - /**** md5 signature: f2c01cfa4b361519aaccdf814526ddcb ****/ + /****** AIS_InteractiveContext::PlaneSize ******/ + /****** md5 signature: f2c01cfa4b361519aaccdf814526ddcb ******/ %feature("compactdefaultargs") PlaneSize; %feature("autodoc", " Parameters @@ -4511,8 +4511,8 @@ Returns true if the length in the x direction xsize is the same as that in the y ") PlaneSize; Standard_Boolean PlaneSize(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** PolygonOffsets ******************/ - /**** md5 signature: c1936a0a3ad3599bb263dc0a176d83eb ****/ + /****** AIS_InteractiveContext::PolygonOffsets ******/ + /****** md5 signature: c1936a0a3ad3599bb263dc0a176d83eb ******/ %feature("compactdefaultargs") PolygonOffsets; %feature("autodoc", " Parameters @@ -4531,8 +4531,8 @@ Retrieves current polygon offsets settings for object. ") PolygonOffsets; void PolygonOffsets(const opencascade::handle & anObj, Standard_Integer &OutValue, Standard_ShortReal &OutValue, Standard_ShortReal &OutValue); - /****************** RebuildSelectionStructs ******************/ - /**** md5 signature: fc018c2ec4a8be467c479b724e4da811 ****/ + /****** AIS_InteractiveContext::RebuildSelectionStructs ******/ + /****** md5 signature: fc018c2ec4a8be467c479b724e4da811 ******/ %feature("compactdefaultargs") RebuildSelectionStructs; %feature("autodoc", "Return ------- @@ -4544,8 +4544,8 @@ Rebuilds 1st level of bvh selection forcibly. ") RebuildSelectionStructs; void RebuildSelectionStructs(); - /****************** RecomputePrsOnly ******************/ - /**** md5 signature: 0b528d2535c19477d902b704c03a7eec ****/ + /****** AIS_InteractiveContext::RecomputePrsOnly ******/ + /****** md5 signature: 0b528d2535c19477d902b704c03a7eec ******/ %feature("compactdefaultargs") RecomputePrsOnly; %feature("autodoc", " Parameters @@ -4564,8 +4564,8 @@ Recomputes the displayed presentations, flags the others. doesn't update present ") RecomputePrsOnly; void RecomputePrsOnly(const opencascade::handle & theIObj, const Standard_Boolean theToUpdateViewer, const Standard_Boolean theAllModes = Standard_False); - /****************** RecomputeSelectionOnly ******************/ - /**** md5 signature: e3225619e43fcc63cdd183d03946a41e ****/ + /****** AIS_InteractiveContext::RecomputeSelectionOnly ******/ + /****** md5 signature: e3225619e43fcc63cdd183d03946a41e ******/ %feature("compactdefaultargs") RecomputeSelectionOnly; %feature("autodoc", " Parameters @@ -4582,8 +4582,8 @@ Recomputes the active selections, flags the others. doesn't update presentations ") RecomputeSelectionOnly; void RecomputeSelectionOnly(const opencascade::handle & anIObj); - /****************** Redisplay ******************/ - /**** md5 signature: 947c6a52bcfc11efad67ab17759161b7 ****/ + /****** AIS_InteractiveContext::Redisplay ******/ + /****** md5 signature: 947c6a52bcfc11efad67ab17759161b7 ******/ %feature("compactdefaultargs") Redisplay; %feature("autodoc", " Parameters @@ -4602,8 +4602,8 @@ Recomputes the seen parts presentation of the object. if theallmodes equals true ") Redisplay; void Redisplay(const opencascade::handle & theIObj, const Standard_Boolean theToUpdateViewer, const Standard_Boolean theAllModes = Standard_False); - /****************** Redisplay ******************/ - /**** md5 signature: 46c62f4d2ef46f9720e84ed2470660f9 ****/ + /****** AIS_InteractiveContext::Redisplay ******/ + /****** md5 signature: 46c62f4d2ef46f9720e84ed2470660f9 ******/ %feature("compactdefaultargs") Redisplay; %feature("autodoc", " Parameters @@ -4622,8 +4622,8 @@ Recomputes the prs/selection of displayed objects of a given type and a given si ") Redisplay; void Redisplay(const AIS_KindOfInteractive theTypeOfObject, const Standard_Integer theSignature, const Standard_Boolean theToUpdateViewer); - /****************** RedrawImmediate ******************/ - /**** md5 signature: 9829a5f87a4517fdc1d9d8e6cd654438 ****/ + /****** AIS_InteractiveContext::RedrawImmediate ******/ + /****** md5 signature: 9829a5f87a4517fdc1d9d8e6cd654438 ******/ %feature("compactdefaultargs") RedrawImmediate; %feature("autodoc", " Parameters @@ -4640,8 +4640,8 @@ Redraws immediate structures in all views of the viewer given taking into accoun ") RedrawImmediate; void RedrawImmediate(const opencascade::handle & theViewer); - /****************** Remove ******************/ - /**** md5 signature: 65f35a6cfb567319856ce5af05c5f34a ****/ + /****** AIS_InteractiveContext::Remove ******/ + /****** md5 signature: 65f35a6cfb567319856ce5af05c5f34a ******/ %feature("compactdefaultargs") Remove; %feature("autodoc", " Parameters @@ -4659,8 +4659,8 @@ Removes object from every viewer. ") Remove; void Remove(const opencascade::handle & theIObj, const Standard_Boolean theToUpdateViewer); - /****************** RemoveAll ******************/ - /**** md5 signature: f450dd60f2781efb4892d6321edefdc6 ****/ + /****** AIS_InteractiveContext::RemoveAll ******/ + /****** md5 signature: f450dd60f2781efb4892d6321edefdc6 ******/ %feature("compactdefaultargs") RemoveAll; %feature("autodoc", " Parameters @@ -4677,8 +4677,8 @@ Removes all the objects from context. ") RemoveAll; void RemoveAll(const Standard_Boolean theToUpdateViewer); - /****************** RemoveFilter ******************/ - /**** md5 signature: 694a9fa10d2e0617b4c8daffb2ec97d7 ****/ + /****** AIS_InteractiveContext::RemoveFilter ******/ + /****** md5 signature: 694a9fa10d2e0617b4c8daffb2ec97d7 ******/ %feature("compactdefaultargs") RemoveFilter; %feature("autodoc", " Parameters @@ -4695,8 +4695,8 @@ Removes a filter from context. ") RemoveFilter; void RemoveFilter(const opencascade::handle & theFilter); - /****************** RemoveFilters ******************/ - /**** md5 signature: 76b1dac56b76ef3b70fd79415970d062 ****/ + /****** AIS_InteractiveContext::RemoveFilters ******/ + /****** md5 signature: 76b1dac56b76ef3b70fd79415970d062 ******/ %feature("compactdefaultargs") RemoveFilters; %feature("autodoc", "Return ------- @@ -4708,8 +4708,8 @@ Remove all filters from context. ") RemoveFilters; void RemoveFilters(); - /****************** ResetLocation ******************/ - /**** md5 signature: 80b2588af111ed65716dd5f1f6899724 ****/ + /****** AIS_InteractiveContext::ResetLocation ******/ + /****** md5 signature: 80b2588af111ed65716dd5f1f6899724 ******/ %feature("compactdefaultargs") ResetLocation; %feature("autodoc", " Parameters @@ -4726,8 +4726,8 @@ Puts the object back into its initial position. ") ResetLocation; void ResetLocation(const opencascade::handle & theObject); - /****************** Select ******************/ - /**** md5 signature: c71757aa96bd289bdb9ac82fa6981ef9 ****/ + /****** AIS_InteractiveContext::Select ******/ + /****** md5 signature: c71757aa96bd289bdb9ac82fa6981ef9 ******/ %feature("compactdefaultargs") Select; %feature("autodoc", " Parameters @@ -4745,8 +4745,8 @@ Sets list of owner selected/deselected using specified selection scheme. @param ") Select; AIS_StatusOfPick Select(const AIS_NArray1OfEntityOwner & theOwners, const AIS_SelectionScheme theSelScheme); - /****************** Select ******************/ - /**** md5 signature: 440778a1d119dc9eec978a78067df06f ****/ + /****** AIS_InteractiveContext::Select ******/ + /****** md5 signature: 440778a1d119dc9eec978a78067df06f ******/ %feature("compactdefaultargs") Select; %feature("autodoc", " Parameters @@ -4768,8 +4768,8 @@ Selects everything found in the bounding rectangle defined by the pixel minima a ") Select; AIS_StatusOfPick Select(const Standard_Integer theXPMin, const Standard_Integer theYPMin, const Standard_Integer theXPMax, const Standard_Integer theYPMax, const opencascade::handle & theView, const Standard_Boolean theToUpdateViewer); - /****************** Select ******************/ - /**** md5 signature: 2a92ae056b4a11b086ad1207d7fea0dd ****/ + /****** AIS_InteractiveContext::Select ******/ + /****** md5 signature: 2a92ae056b4a11b086ad1207d7fea0dd ******/ %feature("compactdefaultargs") Select; %feature("autodoc", " Parameters @@ -4788,8 +4788,8 @@ Polyline selection; clears the previous picked list. ") Select; AIS_StatusOfPick Select(const TColgp_Array1OfPnt2d & thePolyline, const opencascade::handle & theView, const Standard_Boolean theToUpdateViewer); - /****************** Select ******************/ - /**** md5 signature: e14f29de8bcca1ca7d733b513df83374 ****/ + /****** AIS_InteractiveContext::Select ******/ + /****** md5 signature: e14f29de8bcca1ca7d733b513df83374 ******/ %feature("compactdefaultargs") Select; %feature("autodoc", " Parameters @@ -4806,8 +4806,8 @@ Stores and hilights the previous detected; unhilights the previous picked. @sa m ") Select; AIS_StatusOfPick Select(const Standard_Boolean theToUpdateViewer); - /****************** SelectDetected ******************/ - /**** md5 signature: 89506ff221e1c7c4fc54b977e288b0b8 ****/ + /****** AIS_InteractiveContext::SelectDetected ******/ + /****** md5 signature: 89506ff221e1c7c4fc54b977e288b0b8 ******/ %feature("compactdefaultargs") SelectDetected; %feature("autodoc", " Parameters @@ -4824,8 +4824,8 @@ Select and hilights the previous detected via ais_interactivecontext::moveto() m ") SelectDetected; AIS_StatusOfPick SelectDetected(const AIS_SelectionScheme theSelScheme = AIS_SelectionScheme_Replace); - /****************** SelectPoint ******************/ - /**** md5 signature: 4544552d38230d3a0cabb487e3aaef7c ****/ + /****** AIS_InteractiveContext::SelectPoint ******/ + /****** md5 signature: 4544552d38230d3a0cabb487e3aaef7c ******/ %feature("compactdefaultargs") SelectPoint; %feature("autodoc", " Parameters @@ -4844,8 +4844,8 @@ Selects the topmost object picked by the point in the view, viewer should be exp ") SelectPoint; AIS_StatusOfPick SelectPoint(const Graphic3d_Vec2i & thePnt, const opencascade::handle & theView, const AIS_SelectionScheme theSelScheme = AIS_SelectionScheme_Replace); - /****************** SelectPolygon ******************/ - /**** md5 signature: da0b3aa40aa2485939f28c52c4321bc7 ****/ + /****** AIS_InteractiveContext::SelectPolygon ******/ + /****** md5 signature: da0b3aa40aa2485939f28c52c4321bc7 ******/ %feature("compactdefaultargs") SelectPolygon; %feature("autodoc", " Parameters @@ -4864,8 +4864,8 @@ Select everything found in the polygon defined by bounding polyline. viewer shou ") SelectPolygon; AIS_StatusOfPick SelectPolygon(const TColgp_Array1OfPnt2d & thePolyline, const opencascade::handle & theView, const AIS_SelectionScheme theSelScheme = AIS_SelectionScheme_Replace); - /****************** SelectRectangle ******************/ - /**** md5 signature: 0f5973af0c327ca20210ac5c498ef7c0 ****/ + /****** AIS_InteractiveContext::SelectRectangle ******/ + /****** md5 signature: 0f5973af0c327ca20210ac5c498ef7c0 ******/ %feature("compactdefaultargs") SelectRectangle; %feature("autodoc", " Parameters @@ -4885,8 +4885,8 @@ Selects objects within the bounding rectangle. viewer should be explicitly redra ") SelectRectangle; AIS_StatusOfPick SelectRectangle(const Graphic3d_Vec2i & thePntMin, const Graphic3d_Vec2i & thePntMax, const opencascade::handle & theView, const AIS_SelectionScheme theSelScheme = AIS_SelectionScheme_Replace); - /****************** SelectedInteractive ******************/ - /**** md5 signature: b6273836cee8954a2faee535a7126f4e ****/ + /****** AIS_InteractiveContext::SelectedInteractive ******/ + /****** md5 signature: b6273836cee8954a2faee535a7126f4e ******/ %feature("compactdefaultargs") SelectedInteractive; %feature("autodoc", "Return ------- @@ -4898,8 +4898,8 @@ Return opencascade::handle::downcast (selectedowner()->se ") SelectedInteractive; opencascade::handle SelectedInteractive(); - /****************** SelectedOwner ******************/ - /**** md5 signature: 4f367f2cac81145c8b4f46a462bff157 ****/ + /****** AIS_InteractiveContext::SelectedOwner ******/ + /****** md5 signature: 4f367f2cac81145c8b4f46a462bff157 ******/ %feature("compactdefaultargs") SelectedOwner; %feature("autodoc", "Return ------- @@ -4911,8 +4911,8 @@ Returns the owner of the selected entity. @sa initselected(), moreselected(), ne ") SelectedOwner; opencascade::handle SelectedOwner(); - /****************** SelectedShape ******************/ - /**** md5 signature: 721d3a216ce98c9b5e5e9d1b15f143f5 ****/ + /****** AIS_InteractiveContext::SelectedShape ******/ + /****** md5 signature: 721d3a216ce98c9b5e5e9d1b15f143f5 ******/ %feature("compactdefaultargs") SelectedShape; %feature("autodoc", "Return ------- @@ -4924,8 +4924,8 @@ Returns the selected shape. basically it is just a shape returned stored by stds ") SelectedShape; TopoDS_Shape SelectedShape(); - /****************** Selection ******************/ - /**** md5 signature: 0522c4713b6259bb252f2580882a049c ****/ + /****** AIS_InteractiveContext::Selection ******/ + /****** md5 signature: 0522c4713b6259bb252f2580882a049c ******/ %feature("compactdefaultargs") Selection; %feature("autodoc", "Return ------- @@ -4937,8 +4937,8 @@ Returns selection instance. ") Selection; const opencascade::handle & Selection(); - /****************** SelectionManager ******************/ - /**** md5 signature: 9e4dab209ad46b3c197dda1ed7898179 ****/ + /****** AIS_InteractiveContext::SelectionManager ******/ + /****** md5 signature: 9e4dab209ad46b3c197dda1ed7898179 ******/ %feature("compactdefaultargs") SelectionManager; %feature("autodoc", "Return ------- @@ -4950,8 +4950,8 @@ No available documentation. ") SelectionManager; const opencascade::handle & SelectionManager(); - /****************** SelectionStyle ******************/ - /**** md5 signature: 3c3ddd0e1d466df6b150cfb790baa61a ****/ + /****** AIS_InteractiveContext::SelectionStyle ******/ + /****** md5 signature: 3c3ddd0e1d466df6b150cfb790baa61a ******/ %feature("compactdefaultargs") SelectionStyle; %feature("autodoc", "Return ------- @@ -4963,8 +4963,8 @@ Returns current selection style settings corrsponding to prs3d_typeofhighlight_s ") SelectionStyle; const opencascade::handle & SelectionStyle(); - /****************** SetAngleAndDeviation ******************/ - /**** md5 signature: aa67c1520d442b18293722c76e904584 ****/ + /****** AIS_InteractiveContext::SetAngleAndDeviation ******/ + /****** md5 signature: aa67c1520d442b18293722c76e904584 ******/ %feature("compactdefaultargs") SetAngleAndDeviation; %feature("autodoc", " Parameters @@ -4983,8 +4983,8 @@ Calls the ais_shape setangleanddeviation to set both angle and deviation coeffic ") SetAngleAndDeviation; void SetAngleAndDeviation(const opencascade::handle & theIObj, const Standard_Real theAngle, const Standard_Boolean theToUpdateViewer); - /****************** SetAutoActivateSelection ******************/ - /**** md5 signature: ac2e58ba6564f519e5c5ac5e3ee3092e ****/ + /****** AIS_InteractiveContext::SetAutoActivateSelection ******/ + /****** md5 signature: ac2e58ba6564f519e5c5ac5e3ee3092e ******/ %feature("compactdefaultargs") SetAutoActivateSelection; %feature("autodoc", " Parameters @@ -5001,8 +5001,8 @@ Enable or disable automatic activation of default selection mode while displayin ") SetAutoActivateSelection; void SetAutoActivateSelection(const Standard_Boolean theIsAuto); - /****************** SetAutomaticHilight ******************/ - /**** md5 signature: 48f9e99b030a8eaf74f5a4bb8a4486b9 ****/ + /****** AIS_InteractiveContext::SetAutomaticHilight ******/ + /****** md5 signature: 48f9e99b030a8eaf74f5a4bb8a4486b9 ******/ %feature("compactdefaultargs") SetAutomaticHilight; %feature("autodoc", " Parameters @@ -5019,8 +5019,8 @@ Sets the highlighting status of detected and selected entities. this function al ") SetAutomaticHilight; void SetAutomaticHilight(Standard_Boolean theStatus); - /****************** SetColor ******************/ - /**** md5 signature: f81d3ed950b395ddea6c30fdc2042201 ****/ + /****** AIS_InteractiveContext::SetColor ******/ + /****** md5 signature: f81d3ed950b395ddea6c30fdc2042201 ******/ %feature("compactdefaultargs") SetColor; %feature("autodoc", " Parameters @@ -5039,8 +5039,8 @@ Sets the color of the selected entity. ") SetColor; void SetColor(const opencascade::handle & theIObj, const Quantity_Color & theColor, const Standard_Boolean theToUpdateViewer); - /****************** SetCurrentFacingModel ******************/ - /**** md5 signature: 6e9ce30ba43f9290ff6c58e79a404edc ****/ + /****** AIS_InteractiveContext::SetCurrentFacingModel ******/ + /****** md5 signature: 6e9ce30ba43f9290ff6c58e79a404edc ******/ %feature("compactdefaultargs") SetCurrentFacingModel; %feature("autodoc", " Parameters @@ -5058,8 +5058,8 @@ Change the current facing model apply on polygons for setcolor(), settransparenc ") SetCurrentFacingModel; void SetCurrentFacingModel(const opencascade::handle & aniobj, const Aspect_TypeOfFacingModel aModel = Aspect_TOFM_BOTH_SIDE); - /****************** SetCurrentObject ******************/ - /**** md5 signature: bc6b6f7f20877e27eead8e940f0ee191 ****/ + /****** AIS_InteractiveContext::SetCurrentObject ******/ + /****** md5 signature: bc6b6f7f20877e27eead8e940f0ee191 ******/ %feature("compactdefaultargs") SetCurrentObject; %feature("autodoc", " Parameters @@ -5077,8 +5077,8 @@ Updates the view of the current object in open context. objects selected when th ") SetCurrentObject; void SetCurrentObject(const opencascade::handle & theIObj, const Standard_Boolean theToUpdateViewer); - /****************** SetDefaultDrawer ******************/ - /**** md5 signature: fa88c8a7788e5b89033f7deefbc9be1c ****/ + /****** AIS_InteractiveContext::SetDefaultDrawer ******/ + /****** md5 signature: fa88c8a7788e5b89033f7deefbc9be1c ******/ %feature("compactdefaultargs") SetDefaultDrawer; %feature("autodoc", " Parameters @@ -5095,8 +5095,8 @@ Sets the default attribute manager; should be set at context creation time. warn ") SetDefaultDrawer; void SetDefaultDrawer(const opencascade::handle & theDrawer); - /****************** SetDeviationAngle ******************/ - /**** md5 signature: 3fa01c3e51e45d16b88cd62df5c6dba6 ****/ + /****** AIS_InteractiveContext::SetDeviationAngle ******/ + /****** md5 signature: 3fa01c3e51e45d16b88cd62df5c6dba6 ******/ %feature("compactdefaultargs") SetDeviationAngle; %feature("autodoc", " Parameters @@ -5115,8 +5115,8 @@ No available documentation. ") SetDeviationAngle; void SetDeviationAngle(const opencascade::handle & theIObj, const Standard_Real theAngle, const Standard_Boolean theToUpdateViewer); - /****************** SetDeviationAngle ******************/ - /**** md5 signature: 57d7d8b2bbfd40492359d917f4b7c203 ****/ + /****** AIS_InteractiveContext::SetDeviationAngle ******/ + /****** md5 signature: 57d7d8b2bbfd40492359d917f4b7c203 ******/ %feature("compactdefaultargs") SetDeviationAngle; %feature("autodoc", " Parameters @@ -5133,8 +5133,8 @@ Default 20 degrees. ") SetDeviationAngle; void SetDeviationAngle(const Standard_Real theAngle); - /****************** SetDeviationCoefficient ******************/ - /**** md5 signature: a869465c8496bd4f68daf77ec26ec399 ****/ + /****** AIS_InteractiveContext::SetDeviationCoefficient ******/ + /****** md5 signature: a869465c8496bd4f68daf77ec26ec399 ******/ %feature("compactdefaultargs") SetDeviationCoefficient; %feature("autodoc", " Parameters @@ -5153,8 +5153,8 @@ Sets the deviation coefficient thecoefficient. drawings of curves or patches are ") SetDeviationCoefficient; void SetDeviationCoefficient(const opencascade::handle & theIObj, const Standard_Real theCoefficient, const Standard_Boolean theToUpdateViewer); - /****************** SetDeviationCoefficient ******************/ - /**** md5 signature: b9b6c62150e8986b2bdd5259de3558aa ****/ + /****** AIS_InteractiveContext::SetDeviationCoefficient ******/ + /****** md5 signature: b9b6c62150e8986b2bdd5259de3558aa ******/ %feature("compactdefaultargs") SetDeviationCoefficient; %feature("autodoc", " Parameters @@ -5171,8 +5171,8 @@ Sets the deviation coefficient thecoefficient. drawings of curves or patches are ") SetDeviationCoefficient; void SetDeviationCoefficient(const Standard_Real theCoefficient); - /****************** SetDisplayMode ******************/ - /**** md5 signature: 6ffe3bb5ef5970c4fcf781535ed6b3b9 ****/ + /****** AIS_InteractiveContext::SetDisplayMode ******/ + /****** md5 signature: 6ffe3bb5ef5970c4fcf781535ed6b3b9 ******/ %feature("compactdefaultargs") SetDisplayMode; %feature("autodoc", " Parameters @@ -5190,8 +5190,8 @@ Sets the display mode of seen interactive objects (which have no overridden disp ") SetDisplayMode; void SetDisplayMode(const Standard_Integer theMode, const Standard_Boolean theToUpdateViewer); - /****************** SetDisplayMode ******************/ - /**** md5 signature: 8c4da4b973b38bb48138a0e5409e8fa7 ****/ + /****** AIS_InteractiveContext::SetDisplayMode ******/ + /****** md5 signature: 8c4da4b973b38bb48138a0e5409e8fa7 ******/ %feature("compactdefaultargs") SetDisplayMode; %feature("autodoc", " Parameters @@ -5210,8 +5210,8 @@ Sets the display mode of seen interactive objects. themode provides the display ") SetDisplayMode; void SetDisplayMode(const opencascade::handle & theIObj, const Standard_Integer theMode, const Standard_Boolean theToUpdateViewer); - /****************** SetDisplayPriority ******************/ - /**** md5 signature: 42353ccb4c6eda1cc29153e74393c82b ****/ + /****** AIS_InteractiveContext::SetDisplayPriority ******/ + /****** md5 signature: 42353ccb4c6eda1cc29153e74393c82b ******/ %feature("compactdefaultargs") SetDisplayPriority; %feature("autodoc", " Parameters @@ -5229,8 +5229,8 @@ Sets the display priority of the seen parts presentation of the object. ") SetDisplayPriority; void SetDisplayPriority(const opencascade::handle & theIObj, const Graphic3d_DisplayPriority thePriority); - /****************** SetDisplayPriority ******************/ - /**** md5 signature: e26c06c0788dcb81557652d666d011f9 ****/ + /****** AIS_InteractiveContext::SetDisplayPriority ******/ + /****** md5 signature: e26c06c0788dcb81557652d666d011f9 ******/ %feature("compactdefaultargs") SetDisplayPriority; %feature("autodoc", " Parameters @@ -5248,8 +5248,8 @@ No available documentation. ") SetDisplayPriority; void SetDisplayPriority(const opencascade::handle & theIObj, const Standard_Integer thePriority); - /****************** SetFilterType ******************/ - /**** md5 signature: c4f32b4815b398cc3dcfa30b4c00ebdc ****/ + /****** AIS_InteractiveContext::SetFilterType ******/ + /****** md5 signature: c4f32b4815b398cc3dcfa30b4c00ebdc ******/ %feature("compactdefaultargs") SetFilterType; %feature("autodoc", " Parameters @@ -5266,8 +5266,8 @@ Sets the context selection filter type. selectmgr_typefilter_or selection filter ") SetFilterType; void SetFilterType(const SelectMgr_FilterType theFilterType); - /****************** SetHiddenLineAspect ******************/ - /**** md5 signature: 82e7745333ec21f019200e5221b9cdcf ****/ + /****** AIS_InteractiveContext::SetHiddenLineAspect ******/ + /****** md5 signature: 82e7745333ec21f019200e5221b9cdcf ******/ %feature("compactdefaultargs") SetHiddenLineAspect; %feature("autodoc", " Parameters @@ -5284,8 +5284,8 @@ Sets the hidden line aspect anaspect. aspect defines display attributes for hidd ") SetHiddenLineAspect; void SetHiddenLineAspect(const opencascade::handle & theAspect); - /****************** SetHighlightStyle ******************/ - /**** md5 signature: 514ba754efe6d3cdef1ca1443d525348 ****/ + /****** AIS_InteractiveContext::SetHighlightStyle ******/ + /****** md5 signature: 514ba754efe6d3cdef1ca1443d525348 ******/ %feature("compactdefaultargs") SetHighlightStyle; %feature("autodoc", " Parameters @@ -5303,8 +5303,8 @@ Setup highlight style settings. tip: it is better modifying existing style retur ") SetHighlightStyle; void SetHighlightStyle(const Prs3d_TypeOfHighlight theStyleType, const opencascade::handle & theStyle); - /****************** SetHighlightStyle ******************/ - /**** md5 signature: 0f582d623d586c315d681407eef8bab2 ****/ + /****** AIS_InteractiveContext::SetHighlightStyle ******/ + /****** md5 signature: 0f582d623d586c315d681407eef8bab2 ******/ %feature("compactdefaultargs") SetHighlightStyle; %feature("autodoc", " Parameters @@ -5321,8 +5321,8 @@ Setup the style of dynamic highlighting corrsponding to prs3d_typeofhighlight_se ") SetHighlightStyle; void SetHighlightStyle(const opencascade::handle & theStyle); - /****************** SetIsoNumber ******************/ - /**** md5 signature: 108e9a31a51c2c1be4fb2fc91b68906c ****/ + /****** AIS_InteractiveContext::SetIsoNumber ******/ + /****** md5 signature: 108e9a31a51c2c1be4fb2fc91b68906c ******/ %feature("compactdefaultargs") SetIsoNumber; %feature("autodoc", " Parameters @@ -5340,8 +5340,8 @@ Sets the number of u and v isoparameters displayed. ") SetIsoNumber; void SetIsoNumber(const Standard_Integer NbIsos, const AIS_TypeOfIso WhichIsos = AIS_TOI_Both); - /****************** SetLocalAttributes ******************/ - /**** md5 signature: 2dc75f962d027692405727903e0ef22c ****/ + /****** AIS_InteractiveContext::SetLocalAttributes ******/ + /****** md5 signature: 2dc75f962d027692405727903e0ef22c ******/ %feature("compactdefaultargs") SetLocalAttributes; %feature("autodoc", " Parameters @@ -5360,8 +5360,8 @@ Sets the graphic attributes of the interactive object, such as visualization mod ") SetLocalAttributes; void SetLocalAttributes(const opencascade::handle & theIObj, const opencascade::handle & theDrawer, const Standard_Boolean theToUpdateViewer); - /****************** SetLocation ******************/ - /**** md5 signature: 278570b2ad71d01112ac61ba95d92f6f ****/ + /****** AIS_InteractiveContext::SetLocation ******/ + /****** md5 signature: 278570b2ad71d01112ac61ba95d92f6f ******/ %feature("compactdefaultargs") SetLocation; %feature("autodoc", " Parameters @@ -5379,8 +5379,8 @@ Puts the location on the initial graphic representation and the selection for th ") SetLocation; void SetLocation(const opencascade::handle & theObject, const TopLoc_Location & theLocation); - /****************** SetMaterial ******************/ - /**** md5 signature: b7292556e6ed4659948c0946af2a2c88 ****/ + /****** AIS_InteractiveContext::SetMaterial ******/ + /****** md5 signature: b7292556e6ed4659948c0946af2a2c88 ******/ %feature("compactdefaultargs") SetMaterial; %feature("autodoc", " Parameters @@ -5399,8 +5399,8 @@ Provides the type of material setting for the view of the object. ") SetMaterial; void SetMaterial(const opencascade::handle & theIObj, const Graphic3d_MaterialAspect & theMaterial, const Standard_Boolean theToUpdateViewer); - /****************** SetPickingStrategy ******************/ - /**** md5 signature: 7eb0b1033404a3318ec39d0b8f456b86 ****/ + /****** AIS_InteractiveContext::SetPickingStrategy ******/ + /****** md5 signature: 7eb0b1033404a3318ec39d0b8f456b86 ******/ %feature("compactdefaultargs") SetPickingStrategy; %feature("autodoc", " Parameters @@ -5417,8 +5417,8 @@ Setup picking strategy - which entities detected by picking line will be accepte ") SetPickingStrategy; void SetPickingStrategy(const SelectMgr_PickingStrategy theStrategy); - /****************** SetPixelTolerance ******************/ - /**** md5 signature: 0687dc8be567f668454cb9cecd8746b3 ****/ + /****** AIS_InteractiveContext::SetPixelTolerance ******/ + /****** md5 signature: 0687dc8be567f668454cb9cecd8746b3 ******/ %feature("compactdefaultargs") SetPixelTolerance; %feature("autodoc", " Parameters @@ -5435,8 +5435,8 @@ Setup pixel tolerance for moveto() operation. @sa moveto(). ") SetPixelTolerance; void SetPixelTolerance(const Standard_Integer thePrecision = 2); - /****************** SetPlaneSize ******************/ - /**** md5 signature: 6377ec1f2a7840f7b57b14849d1af438 ****/ + /****** AIS_InteractiveContext::SetPlaneSize ******/ + /****** md5 signature: 6377ec1f2a7840f7b57b14849d1af438 ******/ %feature("compactdefaultargs") SetPlaneSize; %feature("autodoc", " Parameters @@ -5455,8 +5455,8 @@ Sets the plane size defined by the length in the x direction xsize and that in t ") SetPlaneSize; void SetPlaneSize(const Standard_Real theSizeX, const Standard_Real theSizeY, const Standard_Boolean theToUpdateViewer); - /****************** SetPlaneSize ******************/ - /**** md5 signature: 8b187b41fa59677dcd33b94c60f2887e ****/ + /****** AIS_InteractiveContext::SetPlaneSize ******/ + /****** md5 signature: 8b187b41fa59677dcd33b94c60f2887e ******/ %feature("compactdefaultargs") SetPlaneSize; %feature("autodoc", " Parameters @@ -5474,8 +5474,8 @@ Sets the plane size asize. ") SetPlaneSize; void SetPlaneSize(const Standard_Real theSize, const Standard_Boolean theToUpdateViewer); - /****************** SetPolygonOffsets ******************/ - /**** md5 signature: f78652fe5f3334a97cfeeaf9fc53a55f ****/ + /****** AIS_InteractiveContext::SetPolygonOffsets ******/ + /****** md5 signature: f78652fe5f3334a97cfeeaf9fc53a55f ******/ %feature("compactdefaultargs") SetPolygonOffsets; %feature("autodoc", " Parameters @@ -5496,8 +5496,8 @@ Sets up polygon offsets for the given ais_interactiveobject. it simply calls ais ") SetPolygonOffsets; void SetPolygonOffsets(const opencascade::handle & theIObj, const Standard_Integer theMode, const Standard_ShortReal theFactor, const Standard_ShortReal theUnits, const Standard_Boolean theToUpdateViewer); - /****************** SetSelected ******************/ - /**** md5 signature: f0b850a3af4fe947123c9d3eafa73363 ****/ + /****** AIS_InteractiveContext::SetSelected ******/ + /****** md5 signature: f0b850a3af4fe947123c9d3eafa73363 ******/ %feature("compactdefaultargs") SetSelected; %feature("autodoc", " Parameters @@ -5515,8 +5515,8 @@ Unhighlights previously selected owners and marks them as not selected. marks ow ") SetSelected; void SetSelected(const opencascade::handle & theOwners, const Standard_Boolean theToUpdateViewer); - /****************** SetSelected ******************/ - /**** md5 signature: 401134da5619f51956c86499d723f4be ****/ + /****** AIS_InteractiveContext::SetSelected ******/ + /****** md5 signature: 401134da5619f51956c86499d723f4be ******/ %feature("compactdefaultargs") SetSelected; %feature("autodoc", " Parameters @@ -5534,8 +5534,8 @@ Puts the interactive object aniobj in the list of selected objects. performs sel ") SetSelected; void SetSelected(const opencascade::handle & theObject, const Standard_Boolean theToUpdateViewer); - /****************** SetSelectedAspect ******************/ - /**** md5 signature: a6c69f221df199d5c6401f993c6f645b ****/ + /****** AIS_InteractiveContext::SetSelectedAspect ******/ + /****** md5 signature: a6c69f221df199d5c6401f993c6f645b ******/ %feature("compactdefaultargs") SetSelectedAspect; %feature("autodoc", " Parameters @@ -5553,8 +5553,8 @@ Sets the graphic basic aspect to the current presentation of all selected object ") SetSelectedAspect; void SetSelectedAspect(const opencascade::handle & theAspect, const Standard_Boolean theToUpdateViewer); - /****************** SetSelectedState ******************/ - /**** md5 signature: d5d1f8962f9c93408e9c2ed807fb4450 ****/ + /****** AIS_InteractiveContext::SetSelectedState ******/ + /****** md5 signature: d5d1f8962f9c93408e9c2ed807fb4450 ******/ %feature("compactdefaultargs") SetSelectedState; %feature("autodoc", " Parameters @@ -5572,8 +5572,8 @@ Updates selected state of specified owner without calling hilightselected(). has ") SetSelectedState; Standard_Boolean SetSelectedState(const opencascade::handle & theOwner, const Standard_Boolean theIsSelected); - /****************** SetSelection ******************/ - /**** md5 signature: 5ff5220ba2200900a533a9612db4e0bd ****/ + /****** AIS_InteractiveContext::SetSelection ******/ + /****** md5 signature: 5ff5220ba2200900a533a9612db4e0bd ******/ %feature("compactdefaultargs") SetSelection; %feature("autodoc", " Parameters @@ -5590,8 +5590,8 @@ Sets selection instance to manipulate a container of selected owners @param thes ") SetSelection; void SetSelection(const opencascade::handle & theSelection); - /****************** SetSelectionModeActive ******************/ - /**** md5 signature: 7c19717100bc0b50dcae6e86485112ab ****/ + /****** AIS_InteractiveContext::SetSelectionModeActive ******/ + /****** md5 signature: 7c19717100bc0b50dcae6e86485112ab ******/ %feature("compactdefaultargs") SetSelectionModeActive; %feature("autodoc", " Parameters @@ -5612,8 +5612,8 @@ Activates or deactivates the selection mode for specified object. has no effect ") SetSelectionModeActive; void SetSelectionModeActive(const opencascade::handle & theObj, const Standard_Integer theMode, const Standard_Boolean theToActivate, const AIS_SelectionModesConcurrency theConcurrency = AIS_SelectionModesConcurrency_Multiple, const Standard_Boolean theIsForce = Standard_False); - /****************** SetSelectionSensitivity ******************/ - /**** md5 signature: b30adbf5d1a9914b4bfcec6e22a4dc51 ****/ + /****** AIS_InteractiveContext::SetSelectionSensitivity ******/ + /****** md5 signature: b30adbf5d1a9914b4bfcec6e22a4dc51 ******/ %feature("compactdefaultargs") SetSelectionSensitivity; %feature("autodoc", " Parameters @@ -5632,8 +5632,8 @@ Allows to manage sensitivity of a particular selection of interactive object the ") SetSelectionSensitivity; void SetSelectionSensitivity(const opencascade::handle & theObject, const Standard_Integer theMode, const Standard_Integer theNewSensitivity); - /****************** SetSelectionStyle ******************/ - /**** md5 signature: 93a6cf42e8daf8b20f671afa0142b5ba ****/ + /****** AIS_InteractiveContext::SetSelectionStyle ******/ + /****** md5 signature: 93a6cf42e8daf8b20f671afa0142b5ba ******/ %feature("compactdefaultargs") SetSelectionStyle; %feature("autodoc", " Parameters @@ -5650,8 +5650,8 @@ Setup the style of selection highlighting. this is just a short-cut to sethighli ") SetSelectionStyle; void SetSelectionStyle(const opencascade::handle & theStyle); - /****************** SetSubIntensityColor ******************/ - /**** md5 signature: efbd8ffda6a16710153bd546969c5e71 ****/ + /****** AIS_InteractiveContext::SetSubIntensityColor ******/ + /****** md5 signature: efbd8ffda6a16710153bd546969c5e71 ******/ %feature("compactdefaultargs") SetSubIntensityColor; %feature("autodoc", " Parameters @@ -5668,8 +5668,8 @@ Sub-intensity allows temporary highlighting of particular objects with specified ") SetSubIntensityColor; void SetSubIntensityColor(const Quantity_Color & theColor); - /****************** SetToHilightSelected ******************/ - /**** md5 signature: c73093a95a9778fce26b45a5b59bda90 ****/ + /****** AIS_InteractiveContext::SetToHilightSelected ******/ + /****** md5 signature: c73093a95a9778fce26b45a5b59bda90 ******/ %feature("compactdefaultargs") SetToHilightSelected; %feature("autodoc", " Parameters @@ -5686,8 +5686,8 @@ Specify whether selected object must be hilighted when mouse cursor is moved abo ") SetToHilightSelected; void SetToHilightSelected(const Standard_Boolean toHilight); - /****************** SetTransformPersistence ******************/ - /**** md5 signature: 4fdb4a5c645cc9dae3adacc6cbe0332f ****/ + /****** AIS_InteractiveContext::SetTransformPersistence ******/ + /****** md5 signature: 4fdb4a5c645cc9dae3adacc6cbe0332f ******/ %feature("compactdefaultargs") SetTransformPersistence; %feature("autodoc", " Parameters @@ -5705,8 +5705,8 @@ Sets transform persistence. ") SetTransformPersistence; void SetTransformPersistence(const opencascade::handle & theObject, const opencascade::handle & theTrsfPers); - /****************** SetTransparency ******************/ - /**** md5 signature: fee820087e4dfddda2498e02179e9112 ****/ + /****** AIS_InteractiveContext::SetTransparency ******/ + /****** md5 signature: fee820087e4dfddda2498e02179e9112 ******/ %feature("compactdefaultargs") SetTransparency; %feature("autodoc", " Parameters @@ -5725,8 +5725,8 @@ Provides the transparency settings for viewing the object. the transparency valu ") SetTransparency; void SetTransparency(const opencascade::handle & theIObj, const Standard_Real theValue, const Standard_Boolean theToUpdateViewer); - /****************** SetTrihedronSize ******************/ - /**** md5 signature: 5fd503409307be524e278af757eb2d24 ****/ + /****** AIS_InteractiveContext::SetTrihedronSize ******/ + /****** md5 signature: 5fd503409307be524e278af757eb2d24 ******/ %feature("compactdefaultargs") SetTrihedronSize; %feature("autodoc", " Parameters @@ -5744,8 +5744,8 @@ Sets the size asize of the trihedron. is used to change the default value 100 mm ") SetTrihedronSize; void SetTrihedronSize(const Standard_Real theSize, const Standard_Boolean theToUpdateViewer); - /****************** SetViewAffinity ******************/ - /**** md5 signature: d3189b408dddf07ef7ed75dda5761b6c ****/ + /****** AIS_InteractiveContext::SetViewAffinity ******/ + /****** md5 signature: d3189b408dddf07ef7ed75dda5761b6c ******/ %feature("compactdefaultargs") SetViewAffinity; %feature("autodoc", " Parameters @@ -5764,8 +5764,8 @@ Setup object visibility in specified view. has no effect if object is not displa ") SetViewAffinity; void SetViewAffinity(const opencascade::handle & theIObj, const opencascade::handle & theView, const Standard_Boolean theIsVisible); - /****************** SetWidth ******************/ - /**** md5 signature: 6abf2eab4c7d3c361f6d5b684119c3cd ****/ + /****** AIS_InteractiveContext::SetWidth ******/ + /****** md5 signature: 6abf2eab4c7d3c361f6d5b684119c3cd ******/ %feature("compactdefaultargs") SetWidth; %feature("autodoc", " Parameters @@ -5784,8 +5784,8 @@ Sets the width of the object. ") SetWidth; virtual void SetWidth(const opencascade::handle & theIObj, const Standard_Real theValue, const Standard_Boolean theToUpdateViewer); - /****************** SetZLayer ******************/ - /**** md5 signature: 9de16485878ef47171f12d852b4297c1 ****/ + /****** AIS_InteractiveContext::SetZLayer ******/ + /****** md5 signature: 9de16485878ef47171f12d852b4297c1 ******/ %feature("compactdefaultargs") SetZLayer; %feature("autodoc", " Parameters @@ -5803,8 +5803,8 @@ Set z layer id for interactive object. the z layers can be used to display tempo ") SetZLayer; void SetZLayer(const opencascade::handle & theIObj, int theLayerId); - /****************** ShiftSelect ******************/ - /**** md5 signature: 5b6572c7a2d833175cf596250c21b3d3 ****/ + /****** AIS_InteractiveContext::ShiftSelect ******/ + /****** md5 signature: 5b6572c7a2d833175cf596250c21b3d3 ******/ %feature("compactdefaultargs") ShiftSelect; %feature("autodoc", " Parameters @@ -5821,8 +5821,8 @@ Adds the last detected to the list of previous picked. if the last detected was ") ShiftSelect; AIS_StatusOfPick ShiftSelect(const Standard_Boolean theToUpdateViewer); - /****************** ShiftSelect ******************/ - /**** md5 signature: 618d73e8ab9d28f941dda9c06d7ed4b3 ****/ + /****** AIS_InteractiveContext::ShiftSelect ******/ + /****** md5 signature: 618d73e8ab9d28f941dda9c06d7ed4b3 ******/ %feature("compactdefaultargs") ShiftSelect; %feature("autodoc", " Parameters @@ -5841,8 +5841,8 @@ Adds the last detected to the list of previous picked. if the last detected was ") ShiftSelect; AIS_StatusOfPick ShiftSelect(const TColgp_Array1OfPnt2d & thePolyline, const opencascade::handle & theView, const Standard_Boolean theToUpdateViewer); - /****************** ShiftSelect ******************/ - /**** md5 signature: cf486a7ba2130ff83344c799e272831f ****/ + /****** AIS_InteractiveContext::ShiftSelect ******/ + /****** md5 signature: cf486a7ba2130ff83344c799e272831f ******/ %feature("compactdefaultargs") ShiftSelect; %feature("autodoc", " Parameters @@ -5864,8 +5864,8 @@ Rectangle of selection; adds new detected entities into the picked list, removes ") ShiftSelect; AIS_StatusOfPick ShiftSelect(const Standard_Integer theXPMin, const Standard_Integer theYPMin, const Standard_Integer theXPMax, const Standard_Integer theYPMax, const opencascade::handle & theView, const Standard_Boolean theToUpdateViewer); - /****************** SubIntensityColor ******************/ - /**** md5 signature: e1332d593cf25efd90cc06d78287a52b ****/ + /****** AIS_InteractiveContext::SubIntensityColor ******/ + /****** md5 signature: e1332d593cf25efd90cc06d78287a52b ******/ %feature("compactdefaultargs") SubIntensityColor; %feature("autodoc", "Return ------- @@ -5877,8 +5877,8 @@ Sub-intensity allows temporary highlighting of particular objects with specified ") SubIntensityColor; const Quantity_Color & SubIntensityColor(); - /****************** SubIntensityOff ******************/ - /**** md5 signature: 6f3475edad38e7262220fe96d88ef623 ****/ + /****** AIS_InteractiveContext::SubIntensityOff ******/ + /****** md5 signature: 6f3475edad38e7262220fe96d88ef623 ******/ %feature("compactdefaultargs") SubIntensityOff; %feature("autodoc", " Parameters @@ -5896,8 +5896,8 @@ Removes the subintensity option for the entity. if a local context is open, the ") SubIntensityOff; void SubIntensityOff(const opencascade::handle & theIObj, const Standard_Boolean theToUpdateViewer); - /****************** SubIntensityOn ******************/ - /**** md5 signature: ca6236bf53cb80cdc3ebbd7e74a23daf ****/ + /****** AIS_InteractiveContext::SubIntensityOn ******/ + /****** md5 signature: ca6236bf53cb80cdc3ebbd7e74a23daf ******/ %feature("compactdefaultargs") SubIntensityOn; %feature("autodoc", " Parameters @@ -5915,8 +5915,8 @@ Highlights, and removes highlights from, the displayed object which is displayed ") SubIntensityOn; void SubIntensityOn(const opencascade::handle & theIObj, const Standard_Boolean theToUpdateViewer); - /****************** ToHilightSelected ******************/ - /**** md5 signature: 988844a9d79a6fc69ac1a23fbcf496f6 ****/ + /****** AIS_InteractiveContext::ToHilightSelected ******/ + /****** md5 signature: 988844a9d79a6fc69ac1a23fbcf496f6 ******/ %feature("compactdefaultargs") ToHilightSelected; %feature("autodoc", "Return ------- @@ -5928,8 +5928,8 @@ Return value specified whether selected object must be hilighted when mouse curs ") ToHilightSelected; Standard_Boolean ToHilightSelected(); - /****************** TrihedronSize ******************/ - /**** md5 signature: 58270011eed5029f395e07a1f2596286 ****/ + /****** AIS_InteractiveContext::TrihedronSize ******/ + /****** md5 signature: 58270011eed5029f395e07a1f2596286 ******/ %feature("compactdefaultargs") TrihedronSize; %feature("autodoc", "Return ------- @@ -5941,8 +5941,8 @@ Returns the current value of trihedron size. ") TrihedronSize; Standard_Real TrihedronSize(); - /****************** Unhilight ******************/ - /**** md5 signature: cabf4c4699cc554eccbb9ac29d71126f ****/ + /****** AIS_InteractiveContext::Unhilight ******/ + /****** md5 signature: cabf4c4699cc554eccbb9ac29d71126f ******/ %feature("compactdefaultargs") Unhilight; %feature("autodoc", " Parameters @@ -5960,8 +5960,8 @@ Removes hilighting from the object. ") Unhilight; void Unhilight(const opencascade::handle & theIObj, const Standard_Boolean theToUpdateViewer); - /****************** UnhilightCurrents ******************/ - /**** md5 signature: afc367d55540bdee7dc9ed2e2e3b600a ****/ + /****** AIS_InteractiveContext::UnhilightCurrents ******/ + /****** md5 signature: afc367d55540bdee7dc9ed2e2e3b600a ******/ %feature("compactdefaultargs") UnhilightCurrents; %feature("autodoc", " Parameters @@ -5978,8 +5978,8 @@ Removes highlighting from current objects. objects selected when there is no ope ") UnhilightCurrents; void UnhilightCurrents(const Standard_Boolean theToUpdateViewer); - /****************** UnhilightSelected ******************/ - /**** md5 signature: 6e710c02eb430375e6fe836b6511101c ****/ + /****** AIS_InteractiveContext::UnhilightSelected ******/ + /****** md5 signature: 6e710c02eb430375e6fe836b6511101c ******/ %feature("compactdefaultargs") UnhilightSelected; %feature("autodoc", " Parameters @@ -5996,8 +5996,8 @@ Removes highlighting from selected objects. ") UnhilightSelected; void UnhilightSelected(const Standard_Boolean theToUpdateViewer); - /****************** UnsetColor ******************/ - /**** md5 signature: d9da782381329c45d7b9d8caa4f3e450 ****/ + /****** AIS_InteractiveContext::UnsetColor ******/ + /****** md5 signature: d9da782381329c45d7b9d8caa4f3e450 ******/ %feature("compactdefaultargs") UnsetColor; %feature("autodoc", " Parameters @@ -6015,8 +6015,8 @@ Removes the color selection for the selected entity. ") UnsetColor; void UnsetColor(const opencascade::handle & theIObj, const Standard_Boolean theToUpdateViewer); - /****************** UnsetDisplayMode ******************/ - /**** md5 signature: 4dc58e4bf04485276a2c0182bb3dc3dc ****/ + /****** AIS_InteractiveContext::UnsetDisplayMode ******/ + /****** md5 signature: 4dc58e4bf04485276a2c0182bb3dc3dc ******/ %feature("compactdefaultargs") UnsetDisplayMode; %feature("autodoc", " Parameters @@ -6034,8 +6034,8 @@ Unsets the display mode of seen interactive objects. ") UnsetDisplayMode; void UnsetDisplayMode(const opencascade::handle & theIObj, const Standard_Boolean theToUpdateViewer); - /****************** UnsetLocalAttributes ******************/ - /**** md5 signature: 97053ae6096b9d24699428d0ecc7f03e ****/ + /****** AIS_InteractiveContext::UnsetLocalAttributes ******/ + /****** md5 signature: 97053ae6096b9d24699428d0ecc7f03e ******/ %feature("compactdefaultargs") UnsetLocalAttributes; %feature("autodoc", " Parameters @@ -6053,8 +6053,8 @@ Removes the settings for local attributes of the object and returns to defaults. ") UnsetLocalAttributes; void UnsetLocalAttributes(const opencascade::handle & theIObj, const Standard_Boolean theToUpdateViewer); - /****************** UnsetMaterial ******************/ - /**** md5 signature: 901ba466f5e6f9138f6e6980dbdef644 ****/ + /****** AIS_InteractiveContext::UnsetMaterial ******/ + /****** md5 signature: 901ba466f5e6f9138f6e6980dbdef644 ******/ %feature("compactdefaultargs") UnsetMaterial; %feature("autodoc", " Parameters @@ -6072,8 +6072,8 @@ Removes the type of material setting for viewing the object. ") UnsetMaterial; void UnsetMaterial(const opencascade::handle & theIObj, const Standard_Boolean theToUpdateViewer); - /****************** UnsetTransparency ******************/ - /**** md5 signature: 2e8742a27916f586cc38ffc5a8e4b854 ****/ + /****** AIS_InteractiveContext::UnsetTransparency ******/ + /****** md5 signature: 2e8742a27916f586cc38ffc5a8e4b854 ******/ %feature("compactdefaultargs") UnsetTransparency; %feature("autodoc", " Parameters @@ -6091,8 +6091,8 @@ Removes the transparency settings for viewing the object. ") UnsetTransparency; void UnsetTransparency(const opencascade::handle & theIObj, const Standard_Boolean theToUpdateViewer); - /****************** UnsetWidth ******************/ - /**** md5 signature: f22cfacba2c4a9f18fad46951832bd9c ****/ + /****** AIS_InteractiveContext::UnsetWidth ******/ + /****** md5 signature: f22cfacba2c4a9f18fad46951832bd9c ******/ %feature("compactdefaultargs") UnsetWidth; %feature("autodoc", " Parameters @@ -6110,8 +6110,8 @@ Removes the width setting of the object. ") UnsetWidth; virtual void UnsetWidth(const opencascade::handle & theIObj, const Standard_Boolean theToUpdateViewer); - /****************** Update ******************/ - /**** md5 signature: 3f42b13a11f9aa876a5b030ed18c6379 ****/ + /****** AIS_InteractiveContext::Update ******/ + /****** md5 signature: 3f42b13a11f9aa876a5b030ed18c6379 ******/ %feature("compactdefaultargs") Update; %feature("autodoc", " Parameters @@ -6129,8 +6129,8 @@ Updates displayed interactive object by checking and recomputing its flagged as ") Update; void Update(const opencascade::handle & theIObj, const Standard_Boolean theUpdateViewer); - /****************** UpdateCurrent ******************/ - /**** md5 signature: b0255cb4a140dfe10f31c4adcc570785 ****/ + /****** AIS_InteractiveContext::UpdateCurrent ******/ + /****** md5 signature: b0255cb4a140dfe10f31c4adcc570785 ******/ %feature("compactdefaultargs") UpdateCurrent; %feature("autodoc", "Return ------- @@ -6142,8 +6142,8 @@ Updates the list of current objects, i.e. hilights new current objects, removes ") UpdateCurrent; void UpdateCurrent(); - /****************** UpdateCurrentViewer ******************/ - /**** md5 signature: 7ec7524380aa7da52320b4262dabacd6 ****/ + /****** AIS_InteractiveContext::UpdateCurrentViewer ******/ + /****** md5 signature: 7ec7524380aa7da52320b4262dabacd6 ******/ %feature("compactdefaultargs") UpdateCurrentViewer; %feature("autodoc", "Return ------- @@ -6155,8 +6155,8 @@ Updates the current viewer. ") UpdateCurrentViewer; void UpdateCurrentViewer(); - /****************** UpdateSelected ******************/ - /**** md5 signature: addaefbb5d1e597c3e797750a2657ccc ****/ + /****** AIS_InteractiveContext::UpdateSelected ******/ + /****** md5 signature: addaefbb5d1e597c3e797750a2657ccc ******/ %feature("compactdefaultargs") UpdateSelected; %feature("autodoc", " Parameters @@ -6173,8 +6173,8 @@ Updates the list of selected objects: i.e. highlights the newly selected ones an ") UpdateSelected; void UpdateSelected(Standard_Boolean theToUpdateViewer); - /****************** Width ******************/ - /**** md5 signature: 4f480dafbfc845fa7330627983f2729f ****/ + /****** AIS_InteractiveContext::Width ******/ + /****** md5 signature: 4f480dafbfc845fa7330627983f2729f ******/ %feature("compactdefaultargs") Width; %feature("autodoc", " Parameters @@ -6216,8 +6216,8 @@ Returns the width of the interactive object in the interactive context. %nodefaultctor AIS_InteractiveObject; class AIS_InteractiveObject : public SelectMgr_SelectableObject { public: - /****************** ClearOwner ******************/ - /**** md5 signature: 8592d7a71151aca87082b1c1d7ca818c ****/ + /****** AIS_InteractiveObject::ClearOwner ******/ + /****** md5 signature: 8592d7a71151aca87082b1c1d7ca818c ******/ %feature("compactdefaultargs") ClearOwner; %feature("autodoc", "Return ------- @@ -6250,8 +6250,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** GetContext ******************/ - /**** md5 signature: 9141453181bb741f4971f346e5b4d4cb ****/ + /****** AIS_InteractiveObject::GetContext ******/ + /****** md5 signature: 9141453181bb741f4971f346e5b4d4cb ******/ %feature("compactdefaultargs") GetContext; %feature("autodoc", "Return ------- @@ -6263,8 +6263,8 @@ Returns the context pointer to the interactive context. ") GetContext; opencascade::handle GetContext(); - /****************** GetOwner ******************/ - /**** md5 signature: 269b252597829cad630a6bbf4ea69473 ****/ + /****** AIS_InteractiveObject::GetOwner ******/ + /****** md5 signature: 269b252597829cad630a6bbf4ea69473 ******/ %feature("compactdefaultargs") GetOwner; %feature("autodoc", "Return ------- @@ -6276,8 +6276,8 @@ Returns the owner of the interactive object. the owner can be a shape for a set ") GetOwner; const opencascade::handle & GetOwner(); - /****************** HasInteractiveContext ******************/ - /**** md5 signature: 1314b115a1808d957f87aa1497f6ab89 ****/ + /****** AIS_InteractiveObject::HasInteractiveContext ******/ + /****** md5 signature: 1314b115a1808d957f87aa1497f6ab89 ******/ %feature("compactdefaultargs") HasInteractiveContext; %feature("autodoc", "Return ------- @@ -6289,8 +6289,8 @@ Indicates whether the interactive object has a pointer to an interactive context ") HasInteractiveContext; Standard_Boolean HasInteractiveContext(); - /****************** HasOwner ******************/ - /**** md5 signature: 3f6ab68b2fb7c6818c3a2483804f0d62 ****/ + /****** AIS_InteractiveObject::HasOwner ******/ + /****** md5 signature: 3f6ab68b2fb7c6818c3a2483804f0d62 ******/ %feature("compactdefaultargs") HasOwner; %feature("autodoc", "Return ------- @@ -6302,8 +6302,8 @@ Returns true if the object has an owner attributed to it. the owner can be a sha ") HasOwner; Standard_Boolean HasOwner(); - /****************** HasPresentation ******************/ - /**** md5 signature: 2847bbb5d15f8c4b2003053a9adce753 ****/ + /****** AIS_InteractiveObject::HasPresentation ******/ + /****** md5 signature: 2847bbb5d15f8c4b2003053a9adce753 ******/ %feature("compactdefaultargs") HasPresentation; %feature("autodoc", "Return ------- @@ -6315,8 +6315,8 @@ Returns true when this object has a presentation in the current displaymode(). ") HasPresentation; Standard_Boolean HasPresentation(); - /****************** InteractiveContext ******************/ - /**** md5 signature: 9383f882f57497c320cdfadce7894acb ****/ + /****** AIS_InteractiveObject::InteractiveContext ******/ + /****** md5 signature: 9383f882f57497c320cdfadce7894acb ******/ %feature("compactdefaultargs") InteractiveContext; %feature("autodoc", "Return ------- @@ -6328,8 +6328,8 @@ Returns the context pointer to the interactive context. ") InteractiveContext; AIS_InteractiveContext * InteractiveContext(); - /****************** Presentation ******************/ - /**** md5 signature: 88be3e26e114f8c34739a306f65e267d ****/ + /****** AIS_InteractiveObject::Presentation ******/ + /****** md5 signature: 88be3e26e114f8c34739a306f65e267d ******/ %feature("compactdefaultargs") Presentation; %feature("autodoc", "Return ------- @@ -6341,8 +6341,8 @@ Returns the current presentation of this object according to the current display ") Presentation; opencascade::handle Presentation(); - /****************** ProcessDragging ******************/ - /**** md5 signature: f5ecfeedca2ff707ad64495902ea5569 ****/ + /****** AIS_InteractiveObject::ProcessDragging ******/ + /****** md5 signature: f5ecfeedca2ff707ad64495902ea5569 ******/ %feature("compactdefaultargs") ProcessDragging; %feature("autodoc", " Parameters @@ -6364,8 +6364,8 @@ Drag object in the viewer. @param thectx [in] interactive context @param theview ") ProcessDragging; virtual Standard_Boolean ProcessDragging(const opencascade::handle & theCtx, const opencascade::handle & theView, const opencascade::handle & theOwner, const Graphic3d_Vec2i & theDragFrom, const Graphic3d_Vec2i & theDragTo, const AIS_DragAction theAction); - /****************** Redisplay ******************/ - /**** md5 signature: fca7d8c34b9513257ffbe0b732493e56 ****/ + /****** AIS_InteractiveObject::Redisplay ******/ + /****** md5 signature: fca7d8c34b9513257ffbe0b732493e56 ******/ %feature("compactdefaultargs") Redisplay; %feature("autodoc", " Parameters @@ -6382,8 +6382,8 @@ Updates the active presentation; if = standard_true all the presentat ") Redisplay; void Redisplay(const Standard_Boolean AllModes = Standard_False); - /****************** SetAspect ******************/ - /**** md5 signature: eb261a37528b25042807667593c3b378 ****/ + /****** AIS_InteractiveObject::SetAspect ******/ + /****** md5 signature: eb261a37528b25042807667593c3b378 ******/ %feature("compactdefaultargs") SetAspect; %feature("autodoc", " Parameters @@ -6400,8 +6400,8 @@ Sets the graphic basic aspect to the current presentation. ") SetAspect; void SetAspect(const opencascade::handle & anAspect); - /****************** SetContext ******************/ - /**** md5 signature: aea0f9b1ecdc3c6f470618d4f2a4757d ****/ + /****** AIS_InteractiveObject::SetContext ******/ + /****** md5 signature: aea0f9b1ecdc3c6f470618d4f2a4757d ******/ %feature("compactdefaultargs") SetContext; %feature("autodoc", " Parameters @@ -6418,8 +6418,8 @@ Sets the interactive context actx and provides a link to the default drawing too ") SetContext; virtual void SetContext(const opencascade::handle & aCtx); - /****************** SetOwner ******************/ - /**** md5 signature: 3c9542fea45232da4a6e2ddd58ba67f4 ****/ + /****** AIS_InteractiveObject::SetOwner ******/ + /****** md5 signature: 3c9542fea45232da4a6e2ddd58ba67f4 ******/ %feature("compactdefaultargs") SetOwner; %feature("autodoc", " Parameters @@ -6436,8 +6436,8 @@ Allows you to attribute the owner theapplicativeentity to an interactive object. ") SetOwner; void SetOwner(const opencascade::handle & theApplicativeEntity); - /****************** Signature ******************/ - /**** md5 signature: 04c50097d676454d1a64488eb69af2dc ****/ + /****** AIS_InteractiveObject::Signature ******/ + /****** md5 signature: 04c50097d676454d1a64488eb69af2dc ******/ %feature("compactdefaultargs") Signature; %feature("autodoc", "Return ------- @@ -6449,8 +6449,8 @@ Specifies additional characteristics of interactive object of type(); -1 by defa ") Signature; virtual Standard_Integer Signature(); - /****************** Type ******************/ - /**** md5 signature: 7e0280329d789210bd49ed9764da22e3 ****/ + /****** AIS_InteractiveObject::Type ******/ + /****** md5 signature: 7e0280329d789210bd49ed9764da22e3 ******/ %feature("compactdefaultargs") Type; %feature("autodoc", "Return ------- @@ -6478,8 +6478,8 @@ Returns the kind of interactive object; ais_kindofinteractive_none by default. *****************************/ class AIS_LightSourceOwner : public SelectMgr_EntityOwner { public: - /****************** AIS_LightSourceOwner ******************/ - /**** md5 signature: 1a76e2e9334a0d57df383ac38fcf4ba6 ****/ + /****** AIS_LightSourceOwner::AIS_LightSourceOwner ******/ + /****** md5 signature: 1a76e2e9334a0d57df383ac38fcf4ba6 ******/ %feature("compactdefaultargs") AIS_LightSourceOwner; %feature("autodoc", " Parameters @@ -6497,8 +6497,8 @@ Main constructor. ") AIS_LightSourceOwner; AIS_LightSourceOwner(const opencascade::handle & theObject, Standard_Integer thePriority = 5); - /****************** HandleMouseClick ******************/ - /**** md5 signature: a1e0b5a1544f4c34e89ff7054f3e9da6 ****/ + /****** AIS_LightSourceOwner::HandleMouseClick ******/ + /****** md5 signature: a1e0b5a1544f4c34e89ff7054f3e9da6 ******/ %feature("compactdefaultargs") HandleMouseClick; %feature("autodoc", " Parameters @@ -6518,8 +6518,8 @@ Handle mouse button click event. ") HandleMouseClick; virtual Standard_Boolean HandleMouseClick(const Graphic3d_Vec2i & thePoint, Aspect_VKeyMouse theButton, Aspect_VKeyFlags theModifiers, bool theIsDoubleClick); - /****************** HilightWithColor ******************/ - /**** md5 signature: 93589dd7f7e0570ae831db807b6e606c ****/ + /****** AIS_LightSourceOwner::HilightWithColor ******/ + /****** md5 signature: 93589dd7f7e0570ae831db807b6e606c ******/ %feature("compactdefaultargs") HilightWithColor; %feature("autodoc", " Parameters @@ -6538,8 +6538,8 @@ Highlights selectable object's presentation with display mode in presentation ma ") HilightWithColor; virtual void HilightWithColor(const opencascade::handle & thePrsMgr, const opencascade::handle & theStyle, const Standard_Integer theMode); - /****************** IsForcedHilight ******************/ - /**** md5 signature: b7e8a39578fc441f958f06f3cf923c7d ****/ + /****** AIS_LightSourceOwner::IsForcedHilight ******/ + /****** md5 signature: b7e8a39578fc441f958f06f3cf923c7d ******/ %feature("compactdefaultargs") IsForcedHilight; %feature("autodoc", "Return ------- @@ -6565,8 +6565,8 @@ Always update dynamic highlighting. *****************************/ class AIS_ManipulatorOwner : public SelectMgr_EntityOwner { public: - /****************** AIS_ManipulatorOwner ******************/ - /**** md5 signature: e9149e1393505f2a15862a109e2ace43 ****/ + /****** AIS_ManipulatorOwner::AIS_ManipulatorOwner ******/ + /****** md5 signature: e9149e1393505f2a15862a109e2ace43 ******/ %feature("compactdefaultargs") AIS_ManipulatorOwner; %feature("autodoc", " Parameters @@ -6586,8 +6586,8 @@ No available documentation. ") AIS_ManipulatorOwner; AIS_ManipulatorOwner(const opencascade::handle & theSelObject, const Standard_Integer theIndex, const AIS_ManipulatorMode theMode, const Standard_Integer thePriority = 0); - /****************** HilightWithColor ******************/ - /**** md5 signature: ff872ded3a30d3b368f40f78eef3d5d8 ****/ + /****** AIS_ManipulatorOwner::HilightWithColor ******/ + /****** md5 signature: ff872ded3a30d3b368f40f78eef3d5d8 ******/ %feature("compactdefaultargs") HilightWithColor; %feature("autodoc", " Parameters @@ -6606,8 +6606,8 @@ No available documentation. ") HilightWithColor; virtual void HilightWithColor(const opencascade::handle & thePM, const opencascade::handle & theStyle, const Standard_Integer theMode); - /****************** Index ******************/ - /**** md5 signature: 0be2d384cf83d16771bb3f9c857c6326 ****/ + /****** AIS_ManipulatorOwner::Index ******/ + /****** md5 signature: 0be2d384cf83d16771bb3f9c857c6326 ******/ %feature("compactdefaultargs") Index; %feature("autodoc", "Return ------- @@ -6619,8 +6619,8 @@ Return index of manipulator axis. ") Index; Standard_Integer Index(); - /****************** IsHilighted ******************/ - /**** md5 signature: 75ad53fe5d3fc51cf2a9dd7e62ee1347 ****/ + /****** AIS_ManipulatorOwner::IsHilighted ******/ + /****** md5 signature: 75ad53fe5d3fc51cf2a9dd7e62ee1347 ******/ %feature("compactdefaultargs") IsHilighted; %feature("autodoc", " Parameters @@ -6638,8 +6638,8 @@ No available documentation. ") IsHilighted; Standard_Boolean IsHilighted(const opencascade::handle & thePM, const Standard_Integer theMode); - /****************** Mode ******************/ - /**** md5 signature: 185ce7f30436df2ae54dc24077fa08f1 ****/ + /****** AIS_ManipulatorOwner::Mode ******/ + /****** md5 signature: 185ce7f30436df2ae54dc24077fa08f1 ******/ %feature("compactdefaultargs") Mode; %feature("autodoc", "Return ------- @@ -6651,8 +6651,8 @@ No available documentation. ") Mode; AIS_ManipulatorMode Mode(); - /****************** Unhilight ******************/ - /**** md5 signature: 2c4ea7d84a1f77c1bca30641ba41616d ****/ + /****** AIS_ManipulatorOwner::Unhilight ******/ + /****** md5 signature: 2c4ea7d84a1f77c1bca30641ba41616d ******/ %feature("compactdefaultargs") Unhilight; %feature("autodoc", " Parameters @@ -6686,8 +6686,8 @@ No available documentation. ****************************/ class AIS_PointCloudOwner : public SelectMgr_EntityOwner { public: - /****************** AIS_PointCloudOwner ******************/ - /**** md5 signature: 670174874a27bd532f1d46109c419250 ****/ + /****** AIS_PointCloudOwner::AIS_PointCloudOwner ******/ + /****** md5 signature: 670174874a27bd532f1d46109c419250 ******/ %feature("compactdefaultargs") AIS_PointCloudOwner; %feature("autodoc", " Parameters @@ -6704,8 +6704,8 @@ Main constructor. ") AIS_PointCloudOwner; AIS_PointCloudOwner(const opencascade::handle & theOrigin); - /****************** Clear ******************/ - /**** md5 signature: 5dc5e5efb2de906b524713f5bda45e1c ****/ + /****** AIS_PointCloudOwner::Clear ******/ + /****** md5 signature: 5dc5e5efb2de906b524713f5bda45e1c ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", " Parameters @@ -6723,8 +6723,8 @@ Clears presentation. ") Clear; virtual void Clear(const opencascade::handle & thePrsMgr, const Standard_Integer theMode); - /****************** DetectedPoints ******************/ - /**** md5 signature: 417e2050aa5d23f2a94aa5e022916b2d ****/ + /****** AIS_PointCloudOwner::DetectedPoints ******/ + /****** md5 signature: 417e2050aa5d23f2a94aa5e022916b2d ******/ %feature("compactdefaultargs") DetectedPoints; %feature("autodoc", "Return ------- @@ -6736,8 +6736,8 @@ Return last detected points. warning! indexation starts with 0 (shifted by -1 co ") DetectedPoints; const opencascade::handle & DetectedPoints(); - /****************** HilightWithColor ******************/ - /**** md5 signature: 93589dd7f7e0570ae831db807b6e606c ****/ + /****** AIS_PointCloudOwner::HilightWithColor ******/ + /****** md5 signature: 93589dd7f7e0570ae831db807b6e606c ******/ %feature("compactdefaultargs") HilightWithColor; %feature("autodoc", " Parameters @@ -6756,8 +6756,8 @@ Handle dynamic highlighting. ") HilightWithColor; virtual void HilightWithColor(const opencascade::handle & thePrsMgr, const opencascade::handle & theStyle, const Standard_Integer theMode); - /****************** IsForcedHilight ******************/ - /**** md5 signature: b7e8a39578fc441f958f06f3cf923c7d ****/ + /****** AIS_PointCloudOwner::IsForcedHilight ******/ + /****** md5 signature: b7e8a39578fc441f958f06f3cf923c7d ******/ %feature("compactdefaultargs") IsForcedHilight; %feature("autodoc", "Return ------- @@ -6769,8 +6769,8 @@ Always update dynamic highlighting. ") IsForcedHilight; virtual Standard_Boolean IsForcedHilight(); - /****************** SelectedPoints ******************/ - /**** md5 signature: 2ac5ef1820739df521163373d95dceba ****/ + /****** AIS_PointCloudOwner::SelectedPoints ******/ + /****** md5 signature: 2ac5ef1820739df521163373d95dceba ******/ %feature("compactdefaultargs") SelectedPoints; %feature("autodoc", "Return ------- @@ -6782,8 +6782,8 @@ Return selected points. warning! indexation starts with 0 (shifted by -1 compari ") SelectedPoints; const opencascade::handle & SelectedPoints(); - /****************** Unhilight ******************/ - /**** md5 signature: da660df8a6c884db0328dd60a36026ae ****/ + /****** AIS_PointCloudOwner::Unhilight ******/ + /****** md5 signature: da660df8a6c884db0328dd60a36026ae ******/ %feature("compactdefaultargs") Unhilight; %feature("autodoc", " Parameters @@ -6815,8 +6815,8 @@ Removes highlighting. **********************/ class AIS_Selection : public Standard_Transient { public: - /****************** AIS_Selection ******************/ - /**** md5 signature: bd27ce322f4357aff0848195050258b2 ****/ + /****** AIS_Selection::AIS_Selection ******/ + /****** md5 signature: bd27ce322f4357aff0848195050258b2 ******/ %feature("compactdefaultargs") AIS_Selection; %feature("autodoc", "Return ------- @@ -6828,8 +6828,8 @@ Creates a new selection. ") AIS_Selection; AIS_Selection(); - /****************** AddSelect ******************/ - /**** md5 signature: 935dfa1e78a7bd4bc211338bfecc5077 ****/ + /****** AIS_Selection::AddSelect ******/ + /****** md5 signature: 935dfa1e78a7bd4bc211338bfecc5077 ******/ %feature("compactdefaultargs") AddSelect; %feature("autodoc", " Parameters @@ -6846,8 +6846,8 @@ The object is always add int the selection. faster when the number of objects se ") AddSelect; virtual AIS_SelectStatus AddSelect(const opencascade::handle & theObject); - /****************** Clear ******************/ - /**** md5 signature: 1badd2d119b64dbdb177834e510c3af9 ****/ + /****** AIS_Selection::Clear ******/ + /****** md5 signature: 1badd2d119b64dbdb177834e510c3af9 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -6859,8 +6859,8 @@ Removes all the object of the selection. ") Clear; virtual void Clear(); - /****************** ClearAndSelect ******************/ - /**** md5 signature: cd4e57dc19c491057fa2be5161ac140d ****/ + /****** AIS_Selection::ClearAndSelect ******/ + /****** md5 signature: cd4e57dc19c491057fa2be5161ac140d ******/ %feature("compactdefaultargs") ClearAndSelect; %feature("autodoc", " Parameters @@ -6879,8 +6879,8 @@ Clears the selection and adds the object in the selection. @param[in] theobject ") ClearAndSelect; virtual void ClearAndSelect(const opencascade::handle & theObject, const opencascade::handle & theFilter, const Standard_Boolean theIsDetected); - /****************** Extent ******************/ - /**** md5 signature: 19453f219e568f9c5109a0fd06459e95 ****/ + /****** AIS_Selection::Extent ******/ + /****** md5 signature: 19453f219e568f9c5109a0fd06459e95 ******/ %feature("compactdefaultargs") Extent; %feature("autodoc", "Return ------- @@ -6892,8 +6892,8 @@ Return the number of selected objects. ") Extent; Standard_Integer Extent(); - /****************** Init ******************/ - /**** md5 signature: ca2feb116ce485f3e8278f79ba5f5d53 ****/ + /****** AIS_Selection::Init ******/ + /****** md5 signature: ca2feb116ce485f3e8278f79ba5f5d53 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", "Return ------- @@ -6905,8 +6905,8 @@ Start iteration through selected objects. ") Init; void Init(); - /****************** IsEmpty ******************/ - /**** md5 signature: d529c07ce9e12eea3222188c82b0e80b ****/ + /****** AIS_Selection::IsEmpty ******/ + /****** md5 signature: d529c07ce9e12eea3222188c82b0e80b ******/ %feature("compactdefaultargs") IsEmpty; %feature("autodoc", "Return ------- @@ -6918,8 +6918,8 @@ Return true if list of selected objects is empty. ") IsEmpty; Standard_Boolean IsEmpty(); - /****************** IsSelected ******************/ - /**** md5 signature: 5ff80b2a0592facc019e9c16f23576a9 ****/ + /****** AIS_Selection::IsSelected ******/ + /****** md5 signature: 5ff80b2a0592facc019e9c16f23576a9 ******/ %feature("compactdefaultargs") IsSelected; %feature("autodoc", " Parameters @@ -6936,8 +6936,8 @@ Checks if the object is in the selection. ") IsSelected; Standard_Boolean IsSelected(const opencascade::handle & theObject); - /****************** More ******************/ - /**** md5 signature: cff271d3b32940da94bada40648f9096 ****/ + /****** AIS_Selection::More ******/ + /****** md5 signature: cff271d3b32940da94bada40648f9096 ******/ %feature("compactdefaultargs") More; %feature("autodoc", "Return ------- @@ -6949,8 +6949,8 @@ Return true if iterator points to selected object. ") More; Standard_Boolean More(); - /****************** Next ******************/ - /**** md5 signature: 1201a55f750036045cd397a65f07fc7d ****/ + /****** AIS_Selection::Next ******/ + /****** md5 signature: 1201a55f750036045cd397a65f07fc7d ******/ %feature("compactdefaultargs") Next; %feature("autodoc", "Return ------- @@ -6962,8 +6962,8 @@ Continue iteration through selected objects. ") Next; void Next(); - /****************** Objects ******************/ - /**** md5 signature: cd0377eef6bd9573f695d03614c020ca ****/ + /****** AIS_Selection::Objects ******/ + /****** md5 signature: cd0377eef6bd9573f695d03614c020ca ******/ %feature("compactdefaultargs") Objects; %feature("autodoc", "Return ------- @@ -6975,8 +6975,8 @@ Return the list of selected objects. ") Objects; const AIS_NListOfEntityOwner & Objects(); - /****************** Select ******************/ - /**** md5 signature: 9f3d04aa1643cf0047c4e1b0ebeba8e9 ****/ + /****** AIS_Selection::Select ******/ + /****** md5 signature: 9f3d04aa1643cf0047c4e1b0ebeba8e9 ******/ %feature("compactdefaultargs") Select; %feature("autodoc", " Parameters @@ -6996,8 +6996,8 @@ If the object is not yet in the selection, it will be added. if the object is al ") Select; virtual AIS_SelectStatus Select(const opencascade::handle & theOwner, const opencascade::handle & theFilter, const AIS_SelectionScheme theSelScheme, const Standard_Boolean theIsDetected); - /****************** SelectOwners ******************/ - /**** md5 signature: ac1b8c76b8f30a86ea808928babe4605 ****/ + /****** AIS_Selection::SelectOwners ******/ + /****** md5 signature: ac1b8c76b8f30a86ea808928babe4605 ******/ %feature("compactdefaultargs") SelectOwners; %feature("autodoc", " Parameters @@ -7017,8 +7017,8 @@ Select or deselect owners depending on the selection scheme. @param[in] thepicke ") SelectOwners; virtual void SelectOwners(const AIS_NArray1OfEntityOwner & thePickedOwners, const AIS_SelectionScheme theSelScheme, const Standard_Boolean theToAllowSelOverlap, const opencascade::handle & theFilter); - /****************** Value ******************/ - /**** md5 signature: af0cbe2fba1d118547342f72cf6f251c ****/ + /****** AIS_Selection::Value ******/ + /****** md5 signature: af0cbe2fba1d118547342f72cf6f251c ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -7046,8 +7046,8 @@ Return selected object at iterator position. ***************************/ class AIS_TrihedronOwner : public SelectMgr_EntityOwner { public: - /****************** AIS_TrihedronOwner ******************/ - /**** md5 signature: 23751440812cd73da0d7efc89d2fb02c ****/ + /****** AIS_TrihedronOwner::AIS_TrihedronOwner ******/ + /****** md5 signature: 23751440812cd73da0d7efc89d2fb02c ******/ %feature("compactdefaultargs") AIS_TrihedronOwner; %feature("autodoc", " Parameters @@ -7066,8 +7066,8 @@ Creates an owner of ais_trihedron object. ") AIS_TrihedronOwner; AIS_TrihedronOwner(const opencascade::handle & theSelObject, const Prs3d_DatumParts theDatumPart, const Standard_Integer thePriority); - /****************** DatumPart ******************/ - /**** md5 signature: a41d605d3f547efa643c1327a2cc9ab2 ****/ + /****** AIS_TrihedronOwner::DatumPart ******/ + /****** md5 signature: a41d605d3f547efa643c1327a2cc9ab2 ******/ %feature("compactdefaultargs") DatumPart; %feature("autodoc", "Return ------- @@ -7079,8 +7079,8 @@ Returns the datum part identifier. ") DatumPart; Prs3d_DatumParts DatumPart(); - /****************** HilightWithColor ******************/ - /**** md5 signature: ff872ded3a30d3b368f40f78eef3d5d8 ****/ + /****** AIS_TrihedronOwner::HilightWithColor ******/ + /****** md5 signature: ff872ded3a30d3b368f40f78eef3d5d8 ******/ %feature("compactdefaultargs") HilightWithColor; %feature("autodoc", " Parameters @@ -7099,8 +7099,8 @@ Highlights selectable object's presentation. ") HilightWithColor; virtual void HilightWithColor(const opencascade::handle & thePM, const opencascade::handle & theStyle, const Standard_Integer theMode); - /****************** IsHilighted ******************/ - /**** md5 signature: 75ad53fe5d3fc51cf2a9dd7e62ee1347 ****/ + /****** AIS_TrihedronOwner::IsHilighted ******/ + /****** md5 signature: 75ad53fe5d3fc51cf2a9dd7e62ee1347 ******/ %feature("compactdefaultargs") IsHilighted; %feature("autodoc", " Parameters @@ -7118,8 +7118,8 @@ Returns true if the presentation manager thepm highlights selections correspondi ") IsHilighted; Standard_Boolean IsHilighted(const opencascade::handle & thePM, const Standard_Integer theMode); - /****************** Unhilight ******************/ - /**** md5 signature: 2c4ea7d84a1f77c1bca30641ba41616d ****/ + /****** AIS_TrihedronOwner::Unhilight ******/ + /****** md5 signature: 2c4ea7d84a1f77c1bca30641ba41616d ******/ %feature("compactdefaultargs") Unhilight; %feature("autodoc", " Parameters @@ -7153,8 +7153,8 @@ Removes highlighting from the owner of a detected selectable object in the prese ***********************/ class AIS_TypeFilter : public SelectMgr_Filter { public: - /****************** AIS_TypeFilter ******************/ - /**** md5 signature: ebb79db0373d3bbba2771a109e6c7798 ****/ + /****** AIS_TypeFilter::AIS_TypeFilter ******/ + /****** md5 signature: ebb79db0373d3bbba2771a109e6c7798 ******/ %feature("compactdefaultargs") AIS_TypeFilter; %feature("autodoc", " Parameters @@ -7171,8 +7171,8 @@ Initializes filter for type, agivenkind. ") AIS_TypeFilter; AIS_TypeFilter(const AIS_KindOfInteractive aGivenKind); - /****************** IsOk ******************/ - /**** md5 signature: 30e74b6ea22a70db5324b6f796325694 ****/ + /****** AIS_TypeFilter::IsOk ******/ + /****** md5 signature: 30e74b6ea22a70db5324b6f796325694 ******/ %feature("compactdefaultargs") IsOk; %feature("autodoc", " Parameters @@ -7205,8 +7205,8 @@ Returns false if the transient is not an interactive object, or if the type of t ***************************/ class AIS_ViewController : public Aspect_WindowInputListener { public: - /****************** AIS_ViewController ******************/ - /**** md5 signature: d17644811ddb999bc83fdf0d339ec312 ****/ + /****** AIS_ViewController::AIS_ViewController ******/ + /****** md5 signature: d17644811ddb999bc83fdf0d339ec312 ******/ %feature("compactdefaultargs") AIS_ViewController; %feature("autodoc", "Return ------- @@ -7218,8 +7218,8 @@ Empty constructor. ") AIS_ViewController; AIS_ViewController(); - /****************** AbortViewAnimation ******************/ - /**** md5 signature: 731d09b2f2102bc88821725825303c73 ****/ + /****** AIS_ViewController::AbortViewAnimation ******/ + /****** md5 signature: 731d09b2f2102bc88821725825303c73 ******/ %feature("compactdefaultargs") AbortViewAnimation; %feature("autodoc", "Return ------- @@ -7231,8 +7231,8 @@ Interrupt active view animation. ") AbortViewAnimation; void AbortViewAnimation(); - /****************** AddTouchPoint ******************/ - /**** md5 signature: 3bd9dbdb649487ab2275978d96667a1b ****/ + /****** AIS_ViewController::AddTouchPoint ******/ + /****** md5 signature: 3bd9dbdb649487ab2275978d96667a1b ******/ %feature("compactdefaultargs") AddTouchPoint; %feature("autodoc", " Parameters @@ -7251,8 +7251,8 @@ Add touch point with the given id. this method is expected to be called from ui ") AddTouchPoint; virtual void AddTouchPoint(Standard_Size theId, const Graphic3d_Vec2d & thePnt, Standard_Boolean theClearBefore = false); - /****************** ChangeInputBuffer ******************/ - /**** md5 signature: c617c43bf721a07d3495c85c386656be ****/ + /****** AIS_ViewController::ChangeInputBuffer ******/ + /****** md5 signature: c617c43bf721a07d3495c85c386656be ******/ %feature("compactdefaultargs") ChangeInputBuffer; %feature("autodoc", " Parameters @@ -7269,8 +7269,8 @@ Return input buffer. ") ChangeInputBuffer; AIS_ViewInputBuffer & ChangeInputBuffer(AIS_ViewInputBufferType theType); - /****************** ChangeMouseGestureMap ******************/ - /**** md5 signature: f27868853ccb67e85e9cde87d79c302f ****/ + /****** AIS_ViewController::ChangeMouseGestureMap ******/ + /****** md5 signature: f27868853ccb67e85e9cde87d79c302f ******/ %feature("compactdefaultargs") ChangeMouseGestureMap; %feature("autodoc", "Return ------- @@ -7282,8 +7282,8 @@ Return map defining mouse gestures. ") ChangeMouseGestureMap; AIS_MouseGestureMap & ChangeMouseGestureMap(); - /****************** ChangeMouseSelectionSchemes ******************/ - /**** md5 signature: 80ce1bcc2c1e49f99852f20cc18b214d ****/ + /****** AIS_ViewController::ChangeMouseSelectionSchemes ******/ + /****** md5 signature: 80ce1bcc2c1e49f99852f20cc18b214d ******/ %feature("compactdefaultargs") ChangeMouseSelectionSchemes; %feature("autodoc", "Return ------- @@ -7295,8 +7295,8 @@ Return map defining mouse gestures. ") ChangeMouseSelectionSchemes; AIS_MouseSelectionSchemeMap & ChangeMouseSelectionSchemes(); - /****************** FetchNavigationKeys ******************/ - /**** md5 signature: 5b7cb763413888a54d2f8b3826e86cda ****/ + /****** AIS_ViewController::FetchNavigationKeys ******/ + /****** md5 signature: 5b7cb763413888a54d2f8b3826e86cda ******/ %feature("compactdefaultargs") FetchNavigationKeys; %feature("autodoc", " Parameters @@ -7314,8 +7314,8 @@ Fetch active navigation actions. ") FetchNavigationKeys; AIS_WalkDelta FetchNavigationKeys(Standard_Real theCrouchRatio, Standard_Real theRunRatio); - /****************** FitAllAuto ******************/ - /**** md5 signature: e1231c24d57b52a006fd8876a9bd9bb0 ****/ + /****** AIS_ViewController::FitAllAuto ******/ + /****** md5 signature: e1231c24d57b52a006fd8876a9bd9bb0 ******/ %feature("compactdefaultargs") FitAllAuto; %feature("autodoc", " Parameters @@ -7333,8 +7333,8 @@ Modify view camera to fit all objects. default implementation fits either all vi ") FitAllAuto; virtual void FitAllAuto(const opencascade::handle & theCtx, const opencascade::handle & theView); - /****************** FlushViewEvents ******************/ - /**** md5 signature: a398ee112a4247b63979af70592cb6a0 ****/ + /****** AIS_ViewController::FlushViewEvents ******/ + /****** md5 signature: a398ee112a4247b63979af70592cb6a0 ******/ %feature("compactdefaultargs") FlushViewEvents; %feature("autodoc", " Parameters @@ -7353,8 +7353,8 @@ Update buffer for rendering thread. this method is expected to be called within ") FlushViewEvents; virtual void FlushViewEvents(const opencascade::handle & theCtx, const opencascade::handle & theView, Standard_Boolean theToHandle = Standard_False); - /****************** GravityPoint ******************/ - /**** md5 signature: 8c62140d10f0624c3042ec01021f9c63 ****/ + /****** AIS_ViewController::GravityPoint ******/ + /****** md5 signature: 8c62140d10f0624c3042ec01021f9c63 ******/ %feature("compactdefaultargs") GravityPoint; %feature("autodoc", " Parameters @@ -7372,8 +7372,8 @@ Compute rotation gravity center point depending on rotation mode. this method is ") GravityPoint; virtual gp_Pnt GravityPoint(const opencascade::handle & theCtx, const opencascade::handle & theView); - /****************** HandleViewEvents ******************/ - /**** md5 signature: e3784b7efd9bd39b5d26bbf04f33ae3d ****/ + /****** AIS_ViewController::HandleViewEvents ******/ + /****** md5 signature: e3784b7efd9bd39b5d26bbf04f33ae3d ******/ %feature("compactdefaultargs") HandleViewEvents; %feature("autodoc", " Parameters @@ -7391,8 +7391,8 @@ Process events within rendering thread. ") HandleViewEvents; virtual void HandleViewEvents(const opencascade::handle & theCtx, const opencascade::handle & theView); - /****************** HasPreviousMoveTo ******************/ - /**** md5 signature: 3d9b6ec437ae40d62db4d05a38ce3745 ****/ + /****** AIS_ViewController::HasPreviousMoveTo ******/ + /****** md5 signature: 3d9b6ec437ae40d62db4d05a38ce3745 ******/ %feature("compactdefaultargs") HasPreviousMoveTo; %feature("autodoc", "Return ------- @@ -7404,8 +7404,8 @@ Return true if previous position of moveto has been defined. ") HasPreviousMoveTo; bool HasPreviousMoveTo(); - /****************** InputBuffer ******************/ - /**** md5 signature: 0e66b64ea2254057a38ac6990d92e49f ****/ + /****** AIS_ViewController::InputBuffer ******/ + /****** md5 signature: 0e66b64ea2254057a38ac6990d92e49f ******/ %feature("compactdefaultargs") InputBuffer; %feature("autodoc", " Parameters @@ -7422,8 +7422,8 @@ Return input buffer. ") InputBuffer; const AIS_ViewInputBuffer & InputBuffer(AIS_ViewInputBufferType theType); - /****************** IsContinuousRedraw ******************/ - /**** md5 signature: ebe0ac2e75e8c36daa1c62aa56049396 ****/ + /****** AIS_ViewController::IsContinuousRedraw ******/ + /****** md5 signature: ebe0ac2e75e8c36daa1c62aa56049396 ******/ %feature("compactdefaultargs") IsContinuousRedraw; %feature("autodoc", "Return ------- @@ -7435,8 +7435,8 @@ Return true if continuous redrawing is enabled; false by default. this option wo ") IsContinuousRedraw; bool IsContinuousRedraw(); - /****************** KeyDown ******************/ - /**** md5 signature: 055381051455eb24c6769534a3ac24de ****/ + /****** AIS_ViewController::KeyDown ******/ + /****** md5 signature: 055381051455eb24c6769534a3ac24de ******/ %feature("compactdefaultargs") KeyDown; %feature("autodoc", " Parameters @@ -7455,8 +7455,8 @@ Press key. default implementation updates internal cache. @param thekey key pres ") KeyDown; virtual void KeyDown(Aspect_VKey theKey, double theTime, double thePressure = 1.0); - /****************** KeyFromAxis ******************/ - /**** md5 signature: 9ef75989fe6dc713757abf2620277306 ****/ + /****** AIS_ViewController::KeyFromAxis ******/ + /****** md5 signature: 9ef75989fe6dc713757abf2620277306 ******/ %feature("compactdefaultargs") KeyFromAxis; %feature("autodoc", " Parameters @@ -7476,8 +7476,8 @@ Simulate key up/down events from axis value. default implementation updates inte ") KeyFromAxis; virtual void KeyFromAxis(Aspect_VKey theNegative, Aspect_VKey thePositive, double theTime, double thePressure); - /****************** KeyUp ******************/ - /**** md5 signature: 62ece3de20f1bd30c606afe8dacaceb1 ****/ + /****** AIS_ViewController::KeyUp ******/ + /****** md5 signature: 62ece3de20f1bd30c606afe8dacaceb1 ******/ %feature("compactdefaultargs") KeyUp; %feature("autodoc", " Parameters @@ -7495,8 +7495,8 @@ Release key. default implementation updates internal cache. @param thekey key pr ") KeyUp; virtual void KeyUp(Aspect_VKey theKey, double theTime); - /****************** MinZoomDistance ******************/ - /**** md5 signature: 5bb7298fe9e97f5e9e5ab0365d634252 ****/ + /****** AIS_ViewController::MinZoomDistance ******/ + /****** md5 signature: 5bb7298fe9e97f5e9e5ab0365d634252 ******/ %feature("compactdefaultargs") MinZoomDistance; %feature("autodoc", "Return ------- @@ -7508,8 +7508,8 @@ Return minimal camera distance for zoom operation. ") MinZoomDistance; double MinZoomDistance(); - /****************** MouseAcceleration ******************/ - /**** md5 signature: f265598ba72b1915cecbb49edd0a9d81 ****/ + /****** AIS_ViewController::MouseAcceleration ******/ + /****** md5 signature: f265598ba72b1915cecbb49edd0a9d81 ******/ %feature("compactdefaultargs") MouseAcceleration; %feature("autodoc", "Return ------- @@ -7521,8 +7521,8 @@ Return mouse input acceleration ratio in first person mode; 1.0 by default. ") MouseAcceleration; float MouseAcceleration(); - /****************** MouseDoubleClickInterval ******************/ - /**** md5 signature: 0b1c8ccdce13f23e18102cc62c6b767a ****/ + /****** AIS_ViewController::MouseDoubleClickInterval ******/ + /****** md5 signature: 0b1c8ccdce13f23e18102cc62c6b767a ******/ %feature("compactdefaultargs") MouseDoubleClickInterval; %feature("autodoc", "Return ------- @@ -7534,8 +7534,8 @@ Return double click interval in seconds; 0.4 by default. ") MouseDoubleClickInterval; double MouseDoubleClickInterval(); - /****************** MouseGestureMap ******************/ - /**** md5 signature: 6a56ea9364a41a0bd33383ac695e295c ****/ + /****** AIS_ViewController::MouseGestureMap ******/ + /****** md5 signature: 6a56ea9364a41a0bd33383ac695e295c ******/ %feature("compactdefaultargs") MouseGestureMap; %feature("autodoc", "Return ------- @@ -7547,8 +7547,8 @@ Return map defining mouse gestures. ") MouseGestureMap; const AIS_MouseGestureMap & MouseGestureMap(); - /****************** MouseSelectionSchemes ******************/ - /**** md5 signature: a293a8235f2dad8699b519a19dccdf67 ****/ + /****** AIS_ViewController::MouseSelectionSchemes ******/ + /****** md5 signature: a293a8235f2dad8699b519a19dccdf67 ******/ %feature("compactdefaultargs") MouseSelectionSchemes; %feature("autodoc", "Return ------- @@ -7560,8 +7560,8 @@ Return map defining mouse selection schemes. ") MouseSelectionSchemes; const AIS_MouseSelectionSchemeMap & MouseSelectionSchemes(); - /****************** NavigationMode ******************/ - /**** md5 signature: de20fce514777ce3a2a466778f462fc3 ****/ + /****** AIS_ViewController::NavigationMode ******/ + /****** md5 signature: de20fce514777ce3a2a466778f462fc3 ******/ %feature("compactdefaultargs") NavigationMode; %feature("autodoc", "Return ------- @@ -7573,8 +7573,8 @@ Return camera navigation mode; ais_navigationmode_orbit by default. ") NavigationMode; AIS_NavigationMode NavigationMode(); - /****************** ObjectsAnimation ******************/ - /**** md5 signature: f84f413869b6320ac0352f35312f7fc9 ****/ + /****** AIS_ViewController::ObjectsAnimation ******/ + /****** md5 signature: f84f413869b6320ac0352f35312f7fc9 ******/ %feature("compactdefaultargs") ObjectsAnimation; %feature("autodoc", "Return ------- @@ -7586,8 +7586,8 @@ Return objects animation; empty (but not null) animation by default. ") ObjectsAnimation; const opencascade::handle & ObjectsAnimation(); - /****************** OnObjectDragged ******************/ - /**** md5 signature: e3d03bd62923f7f609f4ff8690501efc ****/ + /****** AIS_ViewController::OnObjectDragged ******/ + /****** md5 signature: e3d03bd62923f7f609f4ff8690501efc ******/ %feature("compactdefaultargs") OnObjectDragged; %feature("autodoc", " Parameters @@ -7606,8 +7606,8 @@ Callback called by handlemoveto() on dragging object in 3d viewer. this method i ") OnObjectDragged; virtual void OnObjectDragged(const opencascade::handle & theCtx, const opencascade::handle & theView, AIS_DragAction theAction); - /****************** OnSelectionChanged ******************/ - /**** md5 signature: 19b94fd304dbfac300a34e45312cee94 ****/ + /****** AIS_ViewController::OnSelectionChanged ******/ + /****** md5 signature: 19b94fd304dbfac300a34e45312cee94 ******/ %feature("compactdefaultargs") OnSelectionChanged; %feature("autodoc", " Parameters @@ -7625,8 +7625,8 @@ Callback called by handlemoveto() on selection in 3d viewer. this method is expe ") OnSelectionChanged; virtual void OnSelectionChanged(const opencascade::handle & theCtx, const opencascade::handle & theView); - /****************** OnSubviewChanged ******************/ - /**** md5 signature: 164823ba5741e132455aee7ed3e0374f ****/ + /****** AIS_ViewController::OnSubviewChanged ******/ + /****** md5 signature: 164823ba5741e132455aee7ed3e0374f ******/ %feature("compactdefaultargs") OnSubviewChanged; %feature("autodoc", " Parameters @@ -7645,8 +7645,8 @@ Callback called by handleviewevents() on selection of another (sub)view. this me ") OnSubviewChanged; virtual void OnSubviewChanged(const opencascade::handle & theCtx, const opencascade::handle & theOldView, const opencascade::handle & theNewView); - /****************** OrbitAcceleration ******************/ - /**** md5 signature: da5f202aed945c1ea0545de4854049ae ****/ + /****** AIS_ViewController::OrbitAcceleration ******/ + /****** md5 signature: da5f202aed945c1ea0545de4854049ae ******/ %feature("compactdefaultargs") OrbitAcceleration; %feature("autodoc", "Return ------- @@ -7658,8 +7658,8 @@ Return orbit rotation acceleration ratio; 1.0 by default. ") OrbitAcceleration; float OrbitAcceleration(); - /****************** PickAxis ******************/ - /**** md5 signature: 623ae1227bd809a63fcbddc49732d262 ****/ + /****** AIS_ViewController::PickAxis ******/ + /****** md5 signature: 623ae1227bd809a63fcbddc49732d262 ******/ %feature("compactdefaultargs") PickAxis; %feature("autodoc", " Parameters @@ -7679,8 +7679,8 @@ Pick closest point by axis. this method is expected to be called from rendering ") PickAxis; virtual bool PickAxis(gp_Pnt & theTopPnt, const opencascade::handle & theCtx, const opencascade::handle & theView, const gp_Ax1 & theAxis); - /****************** PickPoint ******************/ - /**** md5 signature: f34d655153fb91f33134075ddbeb45a4 ****/ + /****** AIS_ViewController::PickPoint ******/ + /****** md5 signature: f34d655153fb91f33134075ddbeb45a4 ******/ %feature("compactdefaultargs") PickPoint; %feature("autodoc", " Parameters @@ -7701,8 +7701,8 @@ Pick closest point under mouse cursor. this method is expected to be called from ") PickPoint; virtual bool PickPoint(gp_Pnt & thePnt, const opencascade::handle & theCtx, const opencascade::handle & theView, const Graphic3d_Vec2i & theCursor, bool theToStickToPickRay); - /****************** PreviousMoveTo ******************/ - /**** md5 signature: 0238bfa577ed4f8d2d7e4ac20fe0c928 ****/ + /****** AIS_ViewController::PreviousMoveTo ******/ + /****** md5 signature: 0238bfa577ed4f8d2d7e4ac20fe0c928 ******/ %feature("compactdefaultargs") PreviousMoveTo; %feature("autodoc", "Return ------- @@ -7714,8 +7714,8 @@ Return previous position of moveto event in 3d viewer. ") PreviousMoveTo; const Graphic3d_Vec2i & PreviousMoveTo(); - /****************** ProcessClose ******************/ - /**** md5 signature: 3481c3827afdec0c5c5e91dde837b867 ****/ + /****** AIS_ViewController::ProcessClose ******/ + /****** md5 signature: 3481c3827afdec0c5c5e91dde837b867 ******/ %feature("compactdefaultargs") ProcessClose; %feature("autodoc", "Return ------- @@ -7727,8 +7727,8 @@ Handle window close event. default implementation does nothing. ") ProcessClose; virtual void ProcessClose(); - /****************** ProcessConfigure ******************/ - /**** md5 signature: fe5a0999d9281947f44acb4734142af6 ****/ + /****** AIS_ViewController::ProcessConfigure ******/ + /****** md5 signature: fe5a0999d9281947f44acb4734142af6 ******/ %feature("compactdefaultargs") ProcessConfigure; %feature("autodoc", " Parameters @@ -7745,8 +7745,8 @@ Handle window resize event. default implementation does nothing. ") ProcessConfigure; virtual void ProcessConfigure(bool theIsResized); - /****************** ProcessExpose ******************/ - /**** md5 signature: dc0514da1009d9a5010f9cf835c23893 ****/ + /****** AIS_ViewController::ProcessExpose ******/ + /****** md5 signature: dc0514da1009d9a5010f9cf835c23893 ******/ %feature("compactdefaultargs") ProcessExpose; %feature("autodoc", "Return ------- @@ -7758,8 +7758,8 @@ Handle expose event (window content has been invalidation and should be redrawn) ") ProcessExpose; virtual void ProcessExpose(); - /****************** ProcessFocus ******************/ - /**** md5 signature: ff9272136bbf3e658128b3d270a2248c ****/ + /****** AIS_ViewController::ProcessFocus ******/ + /****** md5 signature: ff9272136bbf3e658128b3d270a2248c ******/ %feature("compactdefaultargs") ProcessFocus; %feature("autodoc", " Parameters @@ -7776,8 +7776,8 @@ Handle focus event. default implementation resets cached input state (pressed ke ") ProcessFocus; virtual void ProcessFocus(bool theIsActivated); - /****************** ProcessInput ******************/ - /**** md5 signature: 386b349f17fbbc54b1980328bb1461fc ****/ + /****** AIS_ViewController::ProcessInput ******/ + /****** md5 signature: 386b349f17fbbc54b1980328bb1461fc ******/ %feature("compactdefaultargs") ProcessInput; %feature("autodoc", "Return ------- @@ -7789,8 +7789,8 @@ Handle window input event immediately. default implementation does nothing - inp ") ProcessInput; virtual void ProcessInput(); - /****************** RemoveTouchPoint ******************/ - /**** md5 signature: 191b7bc4b1754be7fbea137e67fea68b ****/ + /****** AIS_ViewController::RemoveTouchPoint ******/ + /****** md5 signature: 191b7bc4b1754be7fbea137e67fea68b ******/ %feature("compactdefaultargs") RemoveTouchPoint; %feature("autodoc", " Parameters @@ -7808,8 +7808,8 @@ Remove touch point with the given id. this method is expected to be called from ") RemoveTouchPoint; virtual bool RemoveTouchPoint(Standard_Size theId, Standard_Boolean theClearSelectPnts = false); - /****************** ResetPreviousMoveTo ******************/ - /**** md5 signature: ff7cc9a520e1718b6fc18bc5f46cc8c2 ****/ + /****** AIS_ViewController::ResetPreviousMoveTo ******/ + /****** md5 signature: ff7cc9a520e1718b6fc18bc5f46cc8c2 ******/ %feature("compactdefaultargs") ResetPreviousMoveTo; %feature("autodoc", "Return ------- @@ -7821,8 +7821,8 @@ Reset previous position of moveto. ") ResetPreviousMoveTo; void ResetPreviousMoveTo(); - /****************** ResetViewInput ******************/ - /**** md5 signature: 62483d4c4a228ccac68e25645b87e1e9 ****/ + /****** AIS_ViewController::ResetViewInput ******/ + /****** md5 signature: 62483d4c4a228ccac68e25645b87e1e9 ******/ %feature("compactdefaultargs") ResetViewInput; %feature("autodoc", "Return ------- @@ -7834,8 +7834,8 @@ Reset input state (pressed keys, mouse buttons, etc.) e.g. on window focus loss. ") ResetViewInput; virtual void ResetViewInput(); - /****************** RotationMode ******************/ - /**** md5 signature: fe28f5b4de6b6363de3be27ba9b18699 ****/ + /****** AIS_ViewController::RotationMode ******/ + /****** md5 signature: fe28f5b4de6b6363de3be27ba9b18699 ******/ %feature("compactdefaultargs") RotationMode; %feature("autodoc", "Return ------- @@ -7847,8 +7847,8 @@ Return camera rotation mode, ais_rotationmode_bndboxactive by default. ") RotationMode; AIS_RotationMode RotationMode(); - /****************** SelectInViewer ******************/ - /**** md5 signature: 455d3e990b5174a5d49957adc7536b62 ****/ + /****** AIS_ViewController::SelectInViewer ******/ + /****** md5 signature: 455d3e990b5174a5d49957adc7536b62 ******/ %feature("compactdefaultargs") SelectInViewer; %feature("autodoc", " Parameters @@ -7866,8 +7866,8 @@ Perform selection in 3d viewer. this method is expected to be called from ui thr ") SelectInViewer; virtual void SelectInViewer(const Graphic3d_Vec2i & thePnt, const AIS_SelectionScheme theScheme = AIS_SelectionScheme_Replace); - /****************** SelectInViewer ******************/ - /**** md5 signature: f9f97b8f40af10382e8032daffba1d1b ****/ + /****** AIS_ViewController::SelectInViewer ******/ + /****** md5 signature: f9f97b8f40af10382e8032daffba1d1b ******/ %feature("compactdefaultargs") SelectInViewer; %feature("autodoc", " Parameters @@ -7885,8 +7885,8 @@ Perform selection in 3d viewer. this method is expected to be called from ui thr ") SelectInViewer; virtual void SelectInViewer(const NCollection_Sequence & thePnts, const AIS_SelectionScheme theScheme = AIS_SelectionScheme_Replace); - /****************** SetAllowDragging ******************/ - /**** md5 signature: df0d4841ca91c4e463f1b9ff172bb5a7 ****/ + /****** AIS_ViewController::SetAllowDragging ******/ + /****** md5 signature: df0d4841ca91c4e463f1b9ff172bb5a7 ******/ %feature("compactdefaultargs") SetAllowDragging; %feature("autodoc", " Parameters @@ -7903,8 +7903,8 @@ Set if dynamic highlight on mouse move is allowed. ") SetAllowDragging; void SetAllowDragging(bool theToEnable); - /****************** SetAllowHighlight ******************/ - /**** md5 signature: 6d086c23d765d930b39eb6604ea15be5 ****/ + /****** AIS_ViewController::SetAllowHighlight ******/ + /****** md5 signature: 6d086c23d765d930b39eb6604ea15be5 ******/ %feature("compactdefaultargs") SetAllowHighlight; %feature("autodoc", " Parameters @@ -7921,8 +7921,8 @@ Set if dragging object is allowed. ") SetAllowHighlight; void SetAllowHighlight(bool theToEnable); - /****************** SetAllowPanning ******************/ - /**** md5 signature: aa5e493b4b9d5ca7f79b1000442d464b ****/ + /****** AIS_ViewController::SetAllowPanning ******/ + /****** md5 signature: aa5e493b4b9d5ca7f79b1000442d464b ******/ %feature("compactdefaultargs") SetAllowPanning; %feature("autodoc", " Parameters @@ -7939,8 +7939,8 @@ Set if panning is allowed. ") SetAllowPanning; void SetAllowPanning(bool theToEnable); - /****************** SetAllowRotation ******************/ - /**** md5 signature: ac9fc6d418b04ff6ca20098169113ae9 ****/ + /****** AIS_ViewController::SetAllowRotation ******/ + /****** md5 signature: ac9fc6d418b04ff6ca20098169113ae9 ******/ %feature("compactdefaultargs") SetAllowRotation; %feature("autodoc", " Parameters @@ -7957,8 +7957,8 @@ Set if camera rotation is allowed. ") SetAllowRotation; void SetAllowRotation(bool theToEnable); - /****************** SetAllowTouchZRotation ******************/ - /**** md5 signature: 684a151d49f6470f151d7e9e10ae1b33 ****/ + /****** AIS_ViewController::SetAllowTouchZRotation ******/ + /****** md5 signature: 684a151d49f6470f151d7e9e10ae1b33 ******/ %feature("compactdefaultargs") SetAllowTouchZRotation; %feature("autodoc", " Parameters @@ -7975,8 +7975,8 @@ Set if z-rotation via two-touches gesture is enabled. ") SetAllowTouchZRotation; void SetAllowTouchZRotation(bool theToEnable); - /****************** SetAllowZFocus ******************/ - /**** md5 signature: eeb044a0780a3ac8322c4f5acfe6f70b ****/ + /****** AIS_ViewController::SetAllowZFocus ******/ + /****** md5 signature: eeb044a0780a3ac8322c4f5acfe6f70b ******/ %feature("compactdefaultargs") SetAllowZFocus; %feature("autodoc", " Parameters @@ -7993,8 +7993,8 @@ Set if zfocus change is allowed. ") SetAllowZFocus; void SetAllowZFocus(bool theToEnable); - /****************** SetAllowZooming ******************/ - /**** md5 signature: 7baa92e6f17f9c36d0a5fa8f4ea8f5e4 ****/ + /****** AIS_ViewController::SetAllowZooming ******/ + /****** md5 signature: 7baa92e6f17f9c36d0a5fa8f4ea8f5e4 ******/ %feature("compactdefaultargs") SetAllowZooming; %feature("autodoc", " Parameters @@ -8011,8 +8011,8 @@ Set if zooming is allowed. ") SetAllowZooming; void SetAllowZooming(bool theToEnable); - /****************** SetContinuousRedraw ******************/ - /**** md5 signature: 20b6590274368b0cc65949958df5306b ****/ + /****** AIS_ViewController::SetContinuousRedraw ******/ + /****** md5 signature: 20b6590274368b0cc65949958df5306b ******/ %feature("compactdefaultargs") SetContinuousRedraw; %feature("autodoc", " Parameters @@ -8029,8 +8029,8 @@ Enable or disable continuous updates. ") SetContinuousRedraw; void SetContinuousRedraw(bool theToEnable); - /****************** SetDisplayXRAuxDevices ******************/ - /**** md5 signature: 135d6d3dee9bf55919790adaacc3d566 ****/ + /****** AIS_ViewController::SetDisplayXRAuxDevices ******/ + /****** md5 signature: 135d6d3dee9bf55919790adaacc3d566 ******/ %feature("compactdefaultargs") SetDisplayXRAuxDevices; %feature("autodoc", " Parameters @@ -8047,8 +8047,8 @@ Set if auxiliary tracked xr devices should be displayed. ") SetDisplayXRAuxDevices; void SetDisplayXRAuxDevices(bool theToDisplay); - /****************** SetDisplayXRHands ******************/ - /**** md5 signature: 825ac296237c4a1dfc7291d638be96fb ****/ + /****** AIS_ViewController::SetDisplayXRHands ******/ + /****** md5 signature: 825ac296237c4a1dfc7291d638be96fb ******/ %feature("compactdefaultargs") SetDisplayXRHands; %feature("autodoc", " Parameters @@ -8065,8 +8065,8 @@ Set if tracked xr hand controllers should be displayed. ") SetDisplayXRHands; void SetDisplayXRHands(bool theToDisplay); - /****************** SetInvertPitch ******************/ - /**** md5 signature: 337a14fda31c3ddd9f94b558761281f5 ****/ + /****** AIS_ViewController::SetInvertPitch ******/ + /****** md5 signature: 337a14fda31c3ddd9f94b558761281f5 ******/ %feature("compactdefaultargs") SetInvertPitch; %feature("autodoc", " Parameters @@ -8083,8 +8083,8 @@ Set flag inverting pitch direction. ") SetInvertPitch; void SetInvertPitch(bool theToInvert); - /****************** SetLockOrbitZUp ******************/ - /**** md5 signature: 1c3c112156d57b75190d046cf6bd0c46 ****/ + /****** AIS_ViewController::SetLockOrbitZUp ******/ + /****** md5 signature: 1c3c112156d57b75190d046cf6bd0c46 ******/ %feature("compactdefaultargs") SetLockOrbitZUp; %feature("autodoc", " Parameters @@ -8101,8 +8101,8 @@ Set if camera up orientation within ais_navigationmode_orbit rotation mode shoul ") SetLockOrbitZUp; void SetLockOrbitZUp(bool theToForceUp); - /****************** SetMinZoomDistance ******************/ - /**** md5 signature: 856c0547c4e27c0d164eba54a3f80e01 ****/ + /****** AIS_ViewController::SetMinZoomDistance ******/ + /****** md5 signature: 856c0547c4e27c0d164eba54a3f80e01 ******/ %feature("compactdefaultargs") SetMinZoomDistance; %feature("autodoc", " Parameters @@ -8119,8 +8119,8 @@ Set minimal camera distance for zoom operation. ") SetMinZoomDistance; void SetMinZoomDistance(double theDist); - /****************** SetMouseAcceleration ******************/ - /**** md5 signature: abc78184a58362cc1aa6587b34de644d ****/ + /****** AIS_ViewController::SetMouseAcceleration ******/ + /****** md5 signature: abc78184a58362cc1aa6587b34de644d ******/ %feature("compactdefaultargs") SetMouseAcceleration; %feature("autodoc", " Parameters @@ -8137,8 +8137,8 @@ Set mouse input acceleration ratio. ") SetMouseAcceleration; void SetMouseAcceleration(float theRatio); - /****************** SetMouseDoubleClickInterval ******************/ - /**** md5 signature: 1f69fdc78277fa239a1443e52d9b3da6 ****/ + /****** AIS_ViewController::SetMouseDoubleClickInterval ******/ + /****** md5 signature: 1f69fdc78277fa239a1443e52d9b3da6 ******/ %feature("compactdefaultargs") SetMouseDoubleClickInterval; %feature("autodoc", " Parameters @@ -8155,8 +8155,8 @@ Set double click interval in seconds. ") SetMouseDoubleClickInterval; void SetMouseDoubleClickInterval(double theSeconds); - /****************** SetNavigationMode ******************/ - /**** md5 signature: e565c8b8b89295a6fb623e32ef593592 ****/ + /****** AIS_ViewController::SetNavigationMode ******/ + /****** md5 signature: e565c8b8b89295a6fb623e32ef593592 ******/ %feature("compactdefaultargs") SetNavigationMode; %feature("autodoc", " Parameters @@ -8173,8 +8173,8 @@ Set camera navigation mode. ") SetNavigationMode; void SetNavigationMode(AIS_NavigationMode theMode); - /****************** SetObjectsAnimation ******************/ - /**** md5 signature: 88f1b826298874a96efd29de754191e5 ****/ + /****** AIS_ViewController::SetObjectsAnimation ******/ + /****** md5 signature: 88f1b826298874a96efd29de754191e5 ******/ %feature("compactdefaultargs") SetObjectsAnimation; %feature("autodoc", " Parameters @@ -8191,8 +8191,8 @@ Set object animation to be handled within handleviewredraw(). ") SetObjectsAnimation; void SetObjectsAnimation(const opencascade::handle & theAnimation); - /****************** SetOrbitAcceleration ******************/ - /**** md5 signature: d9ccb4db2cbf77b5f312c630bd8dcdd6 ****/ + /****** AIS_ViewController::SetOrbitAcceleration ******/ + /****** md5 signature: d9ccb4db2cbf77b5f312c630bd8dcdd6 ******/ %feature("compactdefaultargs") SetOrbitAcceleration; %feature("autodoc", " Parameters @@ -8209,8 +8209,8 @@ Set orbit rotation acceleration ratio. ") SetOrbitAcceleration; void SetOrbitAcceleration(float theRatio); - /****************** SetPauseObjectsAnimation ******************/ - /**** md5 signature: 53643e467565b04cd522841842d5380d ****/ + /****** AIS_ViewController::SetPauseObjectsAnimation ******/ + /****** md5 signature: 53643e467565b04cd522841842d5380d ******/ %feature("compactdefaultargs") SetPauseObjectsAnimation; %feature("autodoc", " Parameters @@ -8227,8 +8227,8 @@ Set if object animation should be paused on mouse click. ") SetPauseObjectsAnimation; void SetPauseObjectsAnimation(bool theToPause); - /****************** SetRotationMode ******************/ - /**** md5 signature: de089ee21b8924d75e03a45a58b75511 ****/ + /****** AIS_ViewController::SetRotationMode ******/ + /****** md5 signature: de089ee21b8924d75e03a45a58b75511 ******/ %feature("compactdefaultargs") SetRotationMode; %feature("autodoc", " Parameters @@ -8245,8 +8245,8 @@ Set camera rotation mode. ") SetRotationMode; void SetRotationMode(AIS_RotationMode theMode); - /****************** SetShowPanAnchorPoint ******************/ - /**** md5 signature: c1af13270fbfe0d32ee0d908aeb118b4 ****/ + /****** AIS_ViewController::SetShowPanAnchorPoint ******/ + /****** md5 signature: c1af13270fbfe0d32ee0d908aeb118b4 ******/ %feature("compactdefaultargs") SetShowPanAnchorPoint; %feature("autodoc", " Parameters @@ -8263,8 +8263,8 @@ Set if panning anchor point within perspective projection should be displayed in ") SetShowPanAnchorPoint; void SetShowPanAnchorPoint(bool theToShow); - /****************** SetShowRotateCenter ******************/ - /**** md5 signature: b6a34589631dfba5576c50d2bede4383 ****/ + /****** AIS_ViewController::SetShowRotateCenter ******/ + /****** md5 signature: b6a34589631dfba5576c50d2bede4383 ******/ %feature("compactdefaultargs") SetShowRotateCenter; %feature("autodoc", " Parameters @@ -8281,8 +8281,8 @@ Set if rotation point should be displayed in 3d viewer. ") SetShowRotateCenter; void SetShowRotateCenter(bool theToShow); - /****************** SetStickToRayOnRotation ******************/ - /**** md5 signature: cf3fd759c29403514df6afecf8051399 ****/ + /****** AIS_ViewController::SetStickToRayOnRotation ******/ + /****** md5 signature: cf3fd759c29403514df6afecf8051399 ******/ %feature("compactdefaultargs") SetStickToRayOnRotation; %feature("autodoc", " Parameters @@ -8299,8 +8299,8 @@ Set if picked point should be projected to picking ray on rotating around point. ") SetStickToRayOnRotation; void SetStickToRayOnRotation(bool theToEnable); - /****************** SetStickToRayOnZoom ******************/ - /**** md5 signature: d25c6b1a39106d29c25ccf77ad2a69b8 ****/ + /****** AIS_ViewController::SetStickToRayOnZoom ******/ + /****** md5 signature: d25c6b1a39106d29c25ccf77ad2a69b8 ******/ %feature("compactdefaultargs") SetStickToRayOnZoom; %feature("autodoc", " Parameters @@ -8317,8 +8317,8 @@ Set if picked point should be projected to picking ray on zooming at point. ") SetStickToRayOnZoom; void SetStickToRayOnZoom(bool theToEnable); - /****************** SetThrustSpeed ******************/ - /**** md5 signature: b13ce9ef3d785307e809621923941346 ****/ + /****** AIS_ViewController::SetThrustSpeed ******/ + /****** md5 signature: b13ce9ef3d785307e809621923941346 ******/ %feature("compactdefaultargs") SetThrustSpeed; %feature("autodoc", " Parameters @@ -8335,8 +8335,8 @@ Set active thrust value. ") SetThrustSpeed; void SetThrustSpeed(float theSpeed); - /****************** SetTouchToleranceScale ******************/ - /**** md5 signature: f1ade41663fe131af4ad6d54d8feebdb ****/ + /****** AIS_ViewController::SetTouchToleranceScale ******/ + /****** md5 signature: f1ade41663fe131af4ad6d54d8feebdb ******/ %feature("compactdefaultargs") SetTouchToleranceScale; %feature("autodoc", " Parameters @@ -8353,8 +8353,8 @@ Set scale factor for adjusting tolerances for starting multi-touch gestures. ") SetTouchToleranceScale; void SetTouchToleranceScale(float theTolerance); - /****************** SetViewAnimation ******************/ - /**** md5 signature: 853aa0ceb7bdaa632922e5e8afd4812f ****/ + /****** AIS_ViewController::SetViewAnimation ******/ + /****** md5 signature: 853aa0ceb7bdaa632922e5e8afd4812f ******/ %feature("compactdefaultargs") SetViewAnimation; %feature("autodoc", " Parameters @@ -8371,8 +8371,8 @@ Set view animation to be handled within handleviewredraw(). ") SetViewAnimation; void SetViewAnimation(const opencascade::handle & theAnimation); - /****************** SetWalkSpeedAbsolute ******************/ - /**** md5 signature: d26b13370b725b71536c89f45bb23923 ****/ + /****** AIS_ViewController::SetWalkSpeedAbsolute ******/ + /****** md5 signature: d26b13370b725b71536c89f45bb23923 ******/ %feature("compactdefaultargs") SetWalkSpeedAbsolute; %feature("autodoc", " Parameters @@ -8389,8 +8389,8 @@ Set normal walking speed, in m/s; 1.5 by default. ") SetWalkSpeedAbsolute; void SetWalkSpeedAbsolute(float theSpeed); - /****************** SetWalkSpeedRelative ******************/ - /**** md5 signature: c00c0ed676f960255bca7849164d38e7 ****/ + /****** AIS_ViewController::SetWalkSpeedRelative ******/ + /****** md5 signature: c00c0ed676f960255bca7849164d38e7 ******/ %feature("compactdefaultargs") SetWalkSpeedRelative; %feature("autodoc", " Parameters @@ -8407,8 +8407,8 @@ Set walking speed relative to scene bounding box. ") SetWalkSpeedRelative; void SetWalkSpeedRelative(float theFactor); - /****************** ThrustSpeed ******************/ - /**** md5 signature: 6ebe02e681cce532322afaeb747648ca ****/ + /****** AIS_ViewController::ThrustSpeed ******/ + /****** md5 signature: 6ebe02e681cce532322afaeb747648ca ******/ %feature("compactdefaultargs") ThrustSpeed; %feature("autodoc", "Return ------- @@ -8420,8 +8420,8 @@ Return active thrust value; 0.0f by default. ") ThrustSpeed; float ThrustSpeed(); - /****************** ToAllowDragging ******************/ - /**** md5 signature: 8a61183f21fcf283f340eec4ff8531b8 ****/ + /****** AIS_ViewController::ToAllowDragging ******/ + /****** md5 signature: 8a61183f21fcf283f340eec4ff8531b8 ******/ %feature("compactdefaultargs") ToAllowDragging; %feature("autodoc", "Return ------- @@ -8433,8 +8433,8 @@ Return true if dragging object is allowed; true by default. ") ToAllowDragging; bool ToAllowDragging(); - /****************** ToAllowHighlight ******************/ - /**** md5 signature: 3e9876722280e384f00f5556d90c68eb ****/ + /****** AIS_ViewController::ToAllowHighlight ******/ + /****** md5 signature: 3e9876722280e384f00f5556d90c68eb ******/ %feature("compactdefaultargs") ToAllowHighlight; %feature("autodoc", "Return ------- @@ -8446,8 +8446,8 @@ Return true if dynamic highlight on mouse move is allowed; true by default. ") ToAllowHighlight; bool ToAllowHighlight(); - /****************** ToAllowPanning ******************/ - /**** md5 signature: d8724d20df71f79fe860bda14e35bbb5 ****/ + /****** AIS_ViewController::ToAllowPanning ******/ + /****** md5 signature: d8724d20df71f79fe860bda14e35bbb5 ******/ %feature("compactdefaultargs") ToAllowPanning; %feature("autodoc", "Return ------- @@ -8459,8 +8459,8 @@ Return true if panning is allowed; true by default. ") ToAllowPanning; bool ToAllowPanning(); - /****************** ToAllowRotation ******************/ - /**** md5 signature: a1bcfb6f1a894b15467dc8feabcaa19b ****/ + /****** AIS_ViewController::ToAllowRotation ******/ + /****** md5 signature: a1bcfb6f1a894b15467dc8feabcaa19b ******/ %feature("compactdefaultargs") ToAllowRotation; %feature("autodoc", "Return ------- @@ -8472,8 +8472,8 @@ Return true if camera rotation is allowed; true by default. ") ToAllowRotation; bool ToAllowRotation(); - /****************** ToAllowTouchZRotation ******************/ - /**** md5 signature: 7b12f77923cf330922234a4f6873992c ****/ + /****** AIS_ViewController::ToAllowTouchZRotation ******/ + /****** md5 signature: 7b12f77923cf330922234a4f6873992c ******/ %feature("compactdefaultargs") ToAllowTouchZRotation; %feature("autodoc", "Return ------- @@ -8485,8 +8485,8 @@ Return true if z-rotation via two-touches gesture is enabled; false by default. ") ToAllowTouchZRotation; bool ToAllowTouchZRotation(); - /****************** ToAllowZFocus ******************/ - /**** md5 signature: 4988d4b63afb784a57e53295d9a3de30 ****/ + /****** AIS_ViewController::ToAllowZFocus ******/ + /****** md5 signature: 4988d4b63afb784a57e53295d9a3de30 ******/ %feature("compactdefaultargs") ToAllowZFocus; %feature("autodoc", "Return ------- @@ -8498,8 +8498,8 @@ Return true if zfocus change is allowed; true by default. ") ToAllowZFocus; bool ToAllowZFocus(); - /****************** ToAllowZooming ******************/ - /**** md5 signature: ca4ee2f5af27be92a7253af8446350d8 ****/ + /****** AIS_ViewController::ToAllowZooming ******/ + /****** md5 signature: ca4ee2f5af27be92a7253af8446350d8 ******/ %feature("compactdefaultargs") ToAllowZooming; %feature("autodoc", "Return ------- @@ -8511,8 +8511,8 @@ Return true if zooming is allowed; true by default. ") ToAllowZooming; bool ToAllowZooming(); - /****************** ToDisplayXRAuxDevices ******************/ - /**** md5 signature: e137eeb702d3133925ef9a160665f27c ****/ + /****** AIS_ViewController::ToDisplayXRAuxDevices ******/ + /****** md5 signature: e137eeb702d3133925ef9a160665f27c ******/ %feature("compactdefaultargs") ToDisplayXRAuxDevices; %feature("autodoc", "Return ------- @@ -8524,8 +8524,8 @@ Return true to display auxiliary tracked xr devices (like tracking stations). ") ToDisplayXRAuxDevices; bool ToDisplayXRAuxDevices(); - /****************** ToDisplayXRHands ******************/ - /**** md5 signature: 32934f4d9a3a4c676a42438dfb298124 ****/ + /****** AIS_ViewController::ToDisplayXRHands ******/ + /****** md5 signature: 32934f4d9a3a4c676a42438dfb298124 ******/ %feature("compactdefaultargs") ToDisplayXRHands; %feature("autodoc", "Return ------- @@ -8537,8 +8537,8 @@ Return true to display xr hand controllers. ") ToDisplayXRHands; bool ToDisplayXRHands(); - /****************** ToInvertPitch ******************/ - /**** md5 signature: 624a70a882a963f2b6dcf003ebe66984 ****/ + /****** AIS_ViewController::ToInvertPitch ******/ + /****** md5 signature: 624a70a882a963f2b6dcf003ebe66984 ******/ %feature("compactdefaultargs") ToInvertPitch; %feature("autodoc", "Return ------- @@ -8550,8 +8550,8 @@ Return true if pitch direction should be inverted while processing aspect_vkey_n ") ToInvertPitch; bool ToInvertPitch(); - /****************** ToLockOrbitZUp ******************/ - /**** md5 signature: 98161f7200cec34fa1a5e0418649145f ****/ + /****** AIS_ViewController::ToLockOrbitZUp ******/ + /****** md5 signature: 98161f7200cec34fa1a5e0418649145f ******/ %feature("compactdefaultargs") ToLockOrbitZUp; %feature("autodoc", "Return ------- @@ -8563,8 +8563,8 @@ Return true if camera up orientation within ais_navigationmode_orbit rotation mo ") ToLockOrbitZUp; bool ToLockOrbitZUp(); - /****************** ToPauseObjectsAnimation ******************/ - /**** md5 signature: 9eebb76fd53450abfb9c1f0883f9c02a ****/ + /****** AIS_ViewController::ToPauseObjectsAnimation ******/ + /****** md5 signature: 9eebb76fd53450abfb9c1f0883f9c02a ******/ %feature("compactdefaultargs") ToPauseObjectsAnimation; %feature("autodoc", "Return ------- @@ -8576,8 +8576,8 @@ Return true if object animation should be paused on mouse click; false by defaul ") ToPauseObjectsAnimation; bool ToPauseObjectsAnimation(); - /****************** ToShowPanAnchorPoint ******************/ - /**** md5 signature: 20019a5af0a5a60f6ba338d642a2d2b0 ****/ + /****** AIS_ViewController::ToShowPanAnchorPoint ******/ + /****** md5 signature: 20019a5af0a5a60f6ba338d642a2d2b0 ******/ %feature("compactdefaultargs") ToShowPanAnchorPoint; %feature("autodoc", "Return ------- @@ -8589,8 +8589,8 @@ Return true if panning anchor point within perspective projection should be disp ") ToShowPanAnchorPoint; bool ToShowPanAnchorPoint(); - /****************** ToShowRotateCenter ******************/ - /**** md5 signature: afbcbc8bef4febc944526842afc0655f ****/ + /****** AIS_ViewController::ToShowRotateCenter ******/ + /****** md5 signature: afbcbc8bef4febc944526842afc0655f ******/ %feature("compactdefaultargs") ToShowRotateCenter; %feature("autodoc", "Return ------- @@ -8602,8 +8602,8 @@ Return true if rotation point should be displayed in 3d viewer; true by default. ") ToShowRotateCenter; bool ToShowRotateCenter(); - /****************** ToStickToRayOnRotation ******************/ - /**** md5 signature: dadbc81c3708872fefe8c3ec144bd235 ****/ + /****** AIS_ViewController::ToStickToRayOnRotation ******/ + /****** md5 signature: dadbc81c3708872fefe8c3ec144bd235 ******/ %feature("compactdefaultargs") ToStickToRayOnRotation; %feature("autodoc", "Return ------- @@ -8615,8 +8615,8 @@ Return true if picked point should be projected to picking ray on rotating aroun ") ToStickToRayOnRotation; bool ToStickToRayOnRotation(); - /****************** ToStickToRayOnZoom ******************/ - /**** md5 signature: eaf01e1ef26d6069928f6489ab0a8c8b ****/ + /****** AIS_ViewController::ToStickToRayOnZoom ******/ + /****** md5 signature: eaf01e1ef26d6069928f6489ab0a8c8b ******/ %feature("compactdefaultargs") ToStickToRayOnZoom; %feature("autodoc", "Return ------- @@ -8628,8 +8628,8 @@ Return true if picked point should be projected to picking ray on zooming at poi ") ToStickToRayOnZoom; bool ToStickToRayOnZoom(); - /****************** TouchToleranceScale ******************/ - /**** md5 signature: 2f6188968f83596542ec90be7549c9c6 ****/ + /****** AIS_ViewController::TouchToleranceScale ******/ + /****** md5 signature: 2f6188968f83596542ec90be7549c9c6 ******/ %feature("compactdefaultargs") TouchToleranceScale; %feature("autodoc", "Return ------- @@ -8641,8 +8641,8 @@ Return scale factor for adjusting tolerances for starting multi-touch gestures; ") TouchToleranceScale; float TouchToleranceScale(); - /****************** Update3dMouse ******************/ - /**** md5 signature: 38284aace0b4c5126a95024b97bd63b9 ****/ + /****** AIS_ViewController::Update3dMouse ******/ + /****** md5 signature: 38284aace0b4c5126a95024b97bd63b9 ******/ %feature("compactdefaultargs") Update3dMouse; %feature("autodoc", " Parameters @@ -8659,8 +8659,8 @@ Process 3d mouse input event (redirects to translation, rotation and keys). ") Update3dMouse; virtual bool Update3dMouse(const WNT_HIDSpaceMouse & theEvent); - /****************** UpdateMouseButtons ******************/ - /**** md5 signature: 81da55faf2bb0988a1f62ddfcbad1a8e ****/ + /****** AIS_ViewController::UpdateMouseButtons ******/ + /****** md5 signature: 81da55faf2bb0988a1f62ddfcbad1a8e ******/ %feature("compactdefaultargs") UpdateMouseButtons; %feature("autodoc", " Parameters @@ -8680,8 +8680,8 @@ Handle mouse button press/release event. this method is expected to be called fr ") UpdateMouseButtons; virtual bool UpdateMouseButtons(const Graphic3d_Vec2i & thePoint, Aspect_VKeyMouse theButtons, Aspect_VKeyFlags theModifiers, bool theIsEmulated); - /****************** UpdateMouseClick ******************/ - /**** md5 signature: aafb990cc843bb6cd39d762419c4af3c ****/ + /****** AIS_ViewController::UpdateMouseClick ******/ + /****** md5 signature: aafb990cc843bb6cd39d762419c4af3c ******/ %feature("compactdefaultargs") UpdateMouseClick; %feature("autodoc", " Parameters @@ -8701,8 +8701,8 @@ Handle mouse button click event (emulated by updatemousebuttons() while releasin ") UpdateMouseClick; virtual bool UpdateMouseClick(const Graphic3d_Vec2i & thePoint, Aspect_VKeyMouse theButton, Aspect_VKeyFlags theModifiers, bool theIsDoubleClick); - /****************** UpdateMousePosition ******************/ - /**** md5 signature: 55ab6f867342193c0763bd3dcd7312a7 ****/ + /****** AIS_ViewController::UpdateMousePosition ******/ + /****** md5 signature: 55ab6f867342193c0763bd3dcd7312a7 ******/ %feature("compactdefaultargs") UpdateMousePosition; %feature("autodoc", " Parameters @@ -8722,8 +8722,8 @@ Handle mouse cursor movement event. this method is expected to be called from ui ") UpdateMousePosition; virtual bool UpdateMousePosition(const Graphic3d_Vec2i & thePoint, Aspect_VKeyMouse theButtons, Aspect_VKeyFlags theModifiers, bool theIsEmulated); - /****************** UpdateMouseScroll ******************/ - /**** md5 signature: f9e0dee1b2f1434abd34279261af844a ****/ + /****** AIS_ViewController::UpdateMouseScroll ******/ + /****** md5 signature: f9e0dee1b2f1434abd34279261af844a ******/ %feature("compactdefaultargs") UpdateMouseScroll; %feature("autodoc", " Parameters @@ -8740,8 +8740,8 @@ Update mouse scroll event; redirects to updatezoom by default. this method is ex ") UpdateMouseScroll; virtual bool UpdateMouseScroll(const Aspect_ScrollDelta & theDelta); - /****************** UpdatePolySelection ******************/ - /**** md5 signature: a7b21ea05bd9285ae2d4ae90cff07198 ****/ + /****** AIS_ViewController::UpdatePolySelection ******/ + /****** md5 signature: a7b21ea05bd9285ae2d4ae90cff07198 ******/ %feature("compactdefaultargs") UpdatePolySelection; %feature("autodoc", " Parameters @@ -8759,8 +8759,8 @@ Update polygonal selection tool. this method is expected to be called from ui th ") UpdatePolySelection; virtual void UpdatePolySelection(const Graphic3d_Vec2i & thePnt, bool theToAppend); - /****************** UpdateRubberBand ******************/ - /**** md5 signature: 4b67e635d5f36e38ae0f2474b56c3748 ****/ + /****** AIS_ViewController::UpdateRubberBand ******/ + /****** md5 signature: 4b67e635d5f36e38ae0f2474b56c3748 ******/ %feature("compactdefaultargs") UpdateRubberBand; %feature("autodoc", " Parameters @@ -8778,8 +8778,8 @@ Update rectangle selection tool. this method is expected to be called from ui th ") UpdateRubberBand; virtual void UpdateRubberBand(const Graphic3d_Vec2i & thePntFrom, const Graphic3d_Vec2i & thePntTo); - /****************** UpdateTouchPoint ******************/ - /**** md5 signature: 208f103531c9da20b09298d16f2dec41 ****/ + /****** AIS_ViewController::UpdateTouchPoint ******/ + /****** md5 signature: 208f103531c9da20b09298d16f2dec41 ******/ %feature("compactdefaultargs") UpdateTouchPoint; %feature("autodoc", " Parameters @@ -8797,8 +8797,8 @@ Update touch point with the given id. if point with specified id was not registe ") UpdateTouchPoint; virtual void UpdateTouchPoint(Standard_Size theId, const Graphic3d_Vec2d & thePnt); - /****************** UpdateViewOrientation ******************/ - /**** md5 signature: ee43c806e8949e02b969471967206777 ****/ + /****** AIS_ViewController::UpdateViewOrientation ******/ + /****** md5 signature: ee43c806e8949e02b969471967206777 ******/ %feature("compactdefaultargs") UpdateViewOrientation; %feature("autodoc", " Parameters @@ -8816,8 +8816,8 @@ Reset view orientation. this method is expected to be called from ui thread. ") UpdateViewOrientation; virtual void UpdateViewOrientation(V3d_TypeOfOrientation theOrientation, bool theToFitAll); - /****************** UpdateZRotation ******************/ - /**** md5 signature: 49c10fcd9e41eb2b1119a794084480d6 ****/ + /****** AIS_ViewController::UpdateZRotation ******/ + /****** md5 signature: 49c10fcd9e41eb2b1119a794084480d6 ******/ %feature("compactdefaultargs") UpdateZRotation; %feature("autodoc", " Parameters @@ -8834,8 +8834,8 @@ Update z rotation event. @param theangle rotation angle, in radians. return true ") UpdateZRotation; virtual bool UpdateZRotation(double theAngle); - /****************** UpdateZoom ******************/ - /**** md5 signature: 3705bb839abd1b717b4e19145bbe8168 ****/ + /****** AIS_ViewController::UpdateZoom ******/ + /****** md5 signature: 3705bb839abd1b717b4e19145bbe8168 ******/ %feature("compactdefaultargs") UpdateZoom; %feature("autodoc", " Parameters @@ -8852,8 +8852,8 @@ Update zoom event (e.g. from mouse scroll). this method is expected to be called ") UpdateZoom; virtual bool UpdateZoom(const Aspect_ScrollDelta & theDelta); - /****************** ViewAnimation ******************/ - /**** md5 signature: 7a7517bd1c0e55fdc5279dc1aefd5047 ****/ + /****** AIS_ViewController::ViewAnimation ******/ + /****** md5 signature: 7a7517bd1c0e55fdc5279dc1aefd5047 ******/ %feature("compactdefaultargs") ViewAnimation; %feature("autodoc", "Return ------- @@ -8865,8 +8865,8 @@ Return view animation; empty (but not null) animation by default. ") ViewAnimation; const opencascade::handle & ViewAnimation(); - /****************** WalkSpeedAbsolute ******************/ - /**** md5 signature: 63209822e3eecea23c4ff51f6e7af537 ****/ + /****** AIS_ViewController::WalkSpeedAbsolute ******/ + /****** md5 signature: 63209822e3eecea23c4ff51f6e7af537 ******/ %feature("compactdefaultargs") WalkSpeedAbsolute; %feature("autodoc", "Return ------- @@ -8878,8 +8878,8 @@ Return normal walking speed, in m/s; 1.5 by default. ") WalkSpeedAbsolute; float WalkSpeedAbsolute(); - /****************** WalkSpeedRelative ******************/ - /**** md5 signature: 907dc8d9c54a4795e102f9cf3c6361ac ****/ + /****** AIS_ViewController::WalkSpeedRelative ******/ + /****** md5 signature: 907dc8d9c54a4795e102f9cf3c6361ac ******/ %feature("compactdefaultargs") WalkSpeedRelative; %feature("autodoc", "Return ------- @@ -8891,8 +8891,8 @@ Return walking speed relative to scene bounding box; 0.1 by default. ") WalkSpeedRelative; float WalkSpeedRelative(); - /****************** handleCameraActions ******************/ - /**** md5 signature: e26067a98b91986866681c1bcad0d809 ****/ + /****** AIS_ViewController::handleCameraActions ******/ + /****** md5 signature: e26067a98b91986866681c1bcad0d809 ******/ %feature("compactdefaultargs") handleCameraActions; %feature("autodoc", " Parameters @@ -8911,8 +8911,8 @@ Perform immediate camera actions (rotate/zoom/pan) on gesture progress. this met ") handleCameraActions; virtual void handleCameraActions(const opencascade::handle & theCtx, const opencascade::handle & theView, const AIS_WalkDelta & theWalk); - /****************** handleMoveTo ******************/ - /**** md5 signature: bd30701597ebc33e344bb6c177211a48 ****/ + /****** AIS_ViewController::handleMoveTo ******/ + /****** md5 signature: bd30701597ebc33e344bb6c177211a48 ******/ %feature("compactdefaultargs") handleMoveTo; %feature("autodoc", " Parameters @@ -8930,8 +8930,8 @@ Perform moveto/selection/dragging. this method is expected to be called from ren ") handleMoveTo; virtual void handleMoveTo(const opencascade::handle & theCtx, const opencascade::handle & theView); - /****************** handleNavigationKeys ******************/ - /**** md5 signature: feb7561777c3adef83227bc5f492cd66 ****/ + /****** AIS_ViewController::handleNavigationKeys ******/ + /****** md5 signature: feb7561777c3adef83227bc5f492cd66 ******/ %feature("compactdefaultargs") handleNavigationKeys; %feature("autodoc", " Parameters @@ -8949,8 +8949,8 @@ Perform navigation (aspect_vkey_navforward and similar keys). this method is exp ") handleNavigationKeys; virtual AIS_WalkDelta handleNavigationKeys(const opencascade::handle & theCtx, const opencascade::handle & theView); - /****************** handleOrbitRotation ******************/ - /**** md5 signature: fdc3bbd840949a270881f6aa0f2931a7 ****/ + /****** AIS_ViewController::handleOrbitRotation ******/ + /****** md5 signature: fdc3bbd840949a270881f6aa0f2931a7 ******/ %feature("compactdefaultargs") handleOrbitRotation; %feature("autodoc", " Parameters @@ -8969,8 +8969,8 @@ Handle orbital rotation events mygl.orbitrotation. @param theview view to modify ") handleOrbitRotation; virtual void handleOrbitRotation(const opencascade::handle & theView, const gp_Pnt & thePnt, bool theToLockZUp); - /****************** handlePanning ******************/ - /**** md5 signature: 5887c49a23a711bd97b00a82a72bab5a ****/ + /****** AIS_ViewController::handlePanning ******/ + /****** md5 signature: 5887c49a23a711bd97b00a82a72bab5a ******/ %feature("compactdefaultargs") handlePanning; %feature("autodoc", " Parameters @@ -8987,8 +8987,8 @@ Handle panning event mygl.panning. ") handlePanning; virtual void handlePanning(const opencascade::handle & theView); - /****************** handleViewOrientationKeys ******************/ - /**** md5 signature: fc827e821ed2c2644d0bb5ebfb306f4c ****/ + /****** AIS_ViewController::handleViewOrientationKeys ******/ + /****** md5 signature: fc827e821ed2c2644d0bb5ebfb306f4c ******/ %feature("compactdefaultargs") handleViewOrientationKeys; %feature("autodoc", " Parameters @@ -9006,8 +9006,8 @@ Handle hot-keys defining new camera orientation (aspect_vkey_viewtop and similar ") handleViewOrientationKeys; virtual void handleViewOrientationKeys(const opencascade::handle & theCtx, const opencascade::handle & theView); - /****************** handleViewRedraw ******************/ - /**** md5 signature: 6fd13d07572584fe70e21b27775870be ****/ + /****** AIS_ViewController::handleViewRedraw ******/ + /****** md5 signature: 6fd13d07572584fe70e21b27775870be ******/ %feature("compactdefaultargs") handleViewRedraw; %feature("autodoc", " Parameters @@ -9025,8 +9025,8 @@ Handle view redraw. this method is expected to be called from rendering thread. ") handleViewRedraw; virtual void handleViewRedraw(const opencascade::handle & theCtx, const opencascade::handle & theView); - /****************** handleViewRotation ******************/ - /**** md5 signature: f2f90628551efd3f46dcbe83213380f1 ****/ + /****** AIS_ViewController::handleViewRotation ******/ + /****** md5 signature: f2f90628551efd3f46dcbe83213380f1 ******/ %feature("compactdefaultargs") handleViewRotation; %feature("autodoc", " Parameters @@ -9047,8 +9047,8 @@ Handle view direction rotation events mygl.viewrotation. this method is expected ") handleViewRotation; virtual void handleViewRotation(const opencascade::handle & theView, double theYawExtra, double thePitchExtra, double theRoll, bool theToRestartOnIncrement); - /****************** handleXRHighlight ******************/ - /**** md5 signature: 8a713c5e7e4c6abab9d9e3fae9bcf71f ****/ + /****** AIS_ViewController::handleXRHighlight ******/ + /****** md5 signature: 8a713c5e7e4c6abab9d9e3fae9bcf71f ******/ %feature("compactdefaultargs") handleXRHighlight; %feature("autodoc", " Parameters @@ -9066,8 +9066,8 @@ Perform dynamic highlighting for active hand. ") handleXRHighlight; virtual void handleXRHighlight(const opencascade::handle & theCtx, const opencascade::handle & theView); - /****************** handleXRInput ******************/ - /**** md5 signature: 1e6d90c7e0207002712ad7ee00652514 ****/ + /****** AIS_ViewController::handleXRInput ******/ + /****** md5 signature: 1e6d90c7e0207002712ad7ee00652514 ******/ %feature("compactdefaultargs") handleXRInput; %feature("autodoc", " Parameters @@ -9086,8 +9086,8 @@ Perform xr input. this method is expected to be called from rendering thread. ") handleXRInput; virtual void handleXRInput(const opencascade::handle & theCtx, const opencascade::handle & theView, const AIS_WalkDelta & theWalk); - /****************** handleXRMoveTo ******************/ - /**** md5 signature: 6e29fe2637a7185008931ac4a920d6f4 ****/ + /****** AIS_ViewController::handleXRMoveTo ******/ + /****** md5 signature: 6e29fe2637a7185008931ac4a920d6f4 ******/ %feature("compactdefaultargs") handleXRMoveTo; %feature("autodoc", " Parameters @@ -9107,8 +9107,8 @@ Perform picking with/without dynamic highlighting for xr pose. ") handleXRMoveTo; virtual Standard_Integer handleXRMoveTo(const opencascade::handle & theCtx, const opencascade::handle & theView, const gp_Trsf & thePose, const Standard_Boolean theToHighlight); - /****************** handleXRPicking ******************/ - /**** md5 signature: 222444cb5c4cdef1d3a6bfb12966c890 ****/ + /****** AIS_ViewController::handleXRPicking ******/ + /****** md5 signature: 222444cb5c4cdef1d3a6bfb12966c890 ******/ %feature("compactdefaultargs") handleXRPicking; %feature("autodoc", " Parameters @@ -9126,8 +9126,8 @@ Handle picking on trigger click. ") handleXRPicking; virtual void handleXRPicking(const opencascade::handle & theCtx, const opencascade::handle & theView); - /****************** handleXRPresentations ******************/ - /**** md5 signature: efc9157b2e2753d08637e420750d902a ****/ + /****** AIS_ViewController::handleXRPresentations ******/ + /****** md5 signature: efc9157b2e2753d08637e420750d902a ******/ %feature("compactdefaultargs") handleXRPresentations; %feature("autodoc", " Parameters @@ -9145,8 +9145,8 @@ Display auxiliary xr presentations. ") handleXRPresentations; virtual void handleXRPresentations(const opencascade::handle & theCtx, const opencascade::handle & theView); - /****************** handleXRTeleport ******************/ - /**** md5 signature: b4e260f3ccbacea0758813222d07c62e ****/ + /****** AIS_ViewController::handleXRTeleport ******/ + /****** md5 signature: b4e260f3ccbacea0758813222d07c62e ******/ %feature("compactdefaultargs") handleXRTeleport; %feature("autodoc", " Parameters @@ -9164,8 +9164,8 @@ Handle trackpad teleportation action. ") handleXRTeleport; virtual void handleXRTeleport(const opencascade::handle & theCtx, const opencascade::handle & theView); - /****************** handleXRTurnPad ******************/ - /**** md5 signature: e830480d597b887ce8a335727dbd86c7 ****/ + /****** AIS_ViewController::handleXRTurnPad ******/ + /****** md5 signature: e830480d597b887ce8a335727dbd86c7 ******/ %feature("compactdefaultargs") handleXRTurnPad; %feature("autodoc", " Parameters @@ -9183,8 +9183,8 @@ Handle trackpad view turn action. ") handleXRTurnPad; virtual void handleXRTurnPad(const opencascade::handle & theCtx, const opencascade::handle & theView); - /****************** handleZFocusScroll ******************/ - /**** md5 signature: 4d7ba821266f7b764f51666a67a2da46 ****/ + /****** AIS_ViewController::handleZFocusScroll ******/ + /****** md5 signature: 4d7ba821266f7b764f51666a67a2da46 ******/ %feature("compactdefaultargs") handleZFocusScroll; %feature("autodoc", " Parameters @@ -9202,8 +9202,8 @@ Handle zscroll event mygl.zoomactions. this method is expected to be called from ") handleZFocusScroll; virtual void handleZFocusScroll(const opencascade::handle & theView, const Aspect_ScrollDelta & theParams); - /****************** handleZRotate ******************/ - /**** md5 signature: 4a013b1ad2e9ee9774ef44523b4a6532 ****/ + /****** AIS_ViewController::handleZRotate ******/ + /****** md5 signature: 4a013b1ad2e9ee9774ef44523b4a6532 ******/ %feature("compactdefaultargs") handleZRotate; %feature("autodoc", " Parameters @@ -9220,8 +9220,8 @@ Handle z rotation event mygl.zrotate. ") handleZRotate; virtual void handleZRotate(const opencascade::handle & theView); - /****************** handleZoom ******************/ - /**** md5 signature: 0e123a7c7df5a4e2cce136990e950a04 ****/ + /****** AIS_ViewController::handleZoom ******/ + /****** md5 signature: 0e123a7c7df5a4e2cce136990e950a04 ******/ %feature("compactdefaultargs") handleZoom; %feature("autodoc", " Parameters @@ -9240,8 +9240,8 @@ Handle zoom event mygl.zoomactions. this method is expected to be called from re ") handleZoom; virtual void handleZoom(const opencascade::handle & theView, const Aspect_ScrollDelta & theParams, const gp_Pnt * thePnt); - /****************** hasPanningAnchorPoint ******************/ - /**** md5 signature: 5a5940ea0f0577e425c4d053777baccb ****/ + /****** AIS_ViewController::hasPanningAnchorPoint ******/ + /****** md5 signature: 5a5940ea0f0577e425c4d053777baccb ******/ %feature("compactdefaultargs") hasPanningAnchorPoint; %feature("autodoc", "Return ------- @@ -9253,8 +9253,8 @@ Return if panning anchor point has been defined. ") hasPanningAnchorPoint; bool hasPanningAnchorPoint(); - /****************** panningAnchorPoint ******************/ - /**** md5 signature: ba684401aa2b89569090e3ad13f4834f ****/ + /****** AIS_ViewController::panningAnchorPoint ******/ + /****** md5 signature: ba684401aa2b89569090e3ad13f4834f ******/ %feature("compactdefaultargs") panningAnchorPoint; %feature("autodoc", "Return ------- @@ -9266,8 +9266,8 @@ Return active panning anchor point. ") panningAnchorPoint; const gp_Pnt panningAnchorPoint(); - /****************** setAskNextFrame ******************/ - /**** md5 signature: 6d19af3a6c77b607b1f07eb2f7996578 ****/ + /****** AIS_ViewController::setAskNextFrame ******/ + /****** md5 signature: 6d19af3a6c77b607b1f07eb2f7996578 ******/ %feature("compactdefaultargs") setAskNextFrame; %feature("autodoc", " Parameters @@ -9284,8 +9284,8 @@ Set if another frame should be drawn right after this one. ") setAskNextFrame; void setAskNextFrame(bool theToDraw = true); - /****************** setPanningAnchorPoint ******************/ - /**** md5 signature: b7553988e5fbf0f722b71d831535f2ef ****/ + /****** AIS_ViewController::setPanningAnchorPoint ******/ + /****** md5 signature: b7553988e5fbf0f722b71d831535f2ef ******/ %feature("compactdefaultargs") setPanningAnchorPoint; %feature("autodoc", " Parameters @@ -9302,8 +9302,8 @@ Set active panning anchor point. ") setPanningAnchorPoint; void setPanningAnchorPoint(const gp_Pnt & thePnt); - /****************** toAskNextFrame ******************/ - /**** md5 signature: d01248dd29bfdaa729f5199d74c25787 ****/ + /****** AIS_ViewController::toAskNextFrame ******/ + /****** md5 signature: d01248dd29bfdaa729f5199d74c25787 ******/ %feature("compactdefaultargs") toAskNextFrame; %feature("autodoc", "Return ------- @@ -9329,8 +9329,8 @@ Return true if another frame should be drawn right after this one. **************************/ class AIS_ViewCubeOwner : public SelectMgr_EntityOwner { public: - /****************** AIS_ViewCubeOwner ******************/ - /**** md5 signature: 36978750a4457ecd3b36a6a3432d9241 ****/ + /****** AIS_ViewCubeOwner::AIS_ViewCubeOwner ******/ + /****** md5 signature: 36978750a4457ecd3b36a6a3432d9241 ******/ %feature("compactdefaultargs") AIS_ViewCubeOwner; %feature("autodoc", " Parameters @@ -9349,8 +9349,8 @@ Main constructor. ") AIS_ViewCubeOwner; AIS_ViewCubeOwner(const opencascade::handle & theObject, V3d_TypeOfOrientation theOrient, Standard_Integer thePriority = 5); - /****************** HandleMouseClick ******************/ - /**** md5 signature: c9960462cd9c8c10b47ef70eec4e28e3 ****/ + /****** AIS_ViewCubeOwner::HandleMouseClick ******/ + /****** md5 signature: c9960462cd9c8c10b47ef70eec4e28e3 ******/ %feature("compactdefaultargs") HandleMouseClick; %feature("autodoc", " Parameters @@ -9370,8 +9370,8 @@ Handle mouse button click event. ") HandleMouseClick; virtual Standard_Boolean HandleMouseClick(const Graphic3d_Vec2i & thePoint, Aspect_VKeyMouse theButton, Aspect_VKeyFlags theModifiers, bool theIsDoubleClick); - /****************** IsForcedHilight ******************/ - /**** md5 signature: dba960b87733b88665f100db30e7dd77 ****/ + /****** AIS_ViewCubeOwner::IsForcedHilight ******/ + /****** md5 signature: dba960b87733b88665f100db30e7dd77 ******/ %feature("compactdefaultargs") IsForcedHilight; %feature("autodoc", "Return ------- @@ -9383,8 +9383,8 @@ Return true. this owner will always call method hilight for its selectable objec ") IsForcedHilight; virtual Standard_Boolean IsForcedHilight(); - /****************** MainOrientation ******************/ - /**** md5 signature: 7d1d15cbf0063e6e41d7faee8d9ffb0a ****/ + /****** AIS_ViewCubeOwner::MainOrientation ******/ + /****** md5 signature: 7d1d15cbf0063e6e41d7faee8d9ffb0a ******/ %feature("compactdefaultargs") MainOrientation; %feature("autodoc", "Return ------- @@ -9410,8 +9410,8 @@ Return new orientation to set. ******************************/ class AIS_ViewCubeSensitive : public Select3D_SensitivePrimitiveArray { public: - /****************** AIS_ViewCubeSensitive ******************/ - /**** md5 signature: e45652d05a411666b6fb202a054d81ef ****/ + /****** AIS_ViewCubeSensitive::AIS_ViewCubeSensitive ******/ + /****** md5 signature: e45652d05a411666b6fb202a054d81ef ******/ %feature("compactdefaultargs") AIS_ViewCubeSensitive; %feature("autodoc", " Parameters @@ -9429,8 +9429,8 @@ Constructor. ") AIS_ViewCubeSensitive; AIS_ViewCubeSensitive(const opencascade::handle & theOwner, const opencascade::handle & theTris); - /****************** Matches ******************/ - /**** md5 signature: 9840986fdc32d0b45aedaac5faa8bc9b ****/ + /****** AIS_ViewCubeSensitive::Matches ******/ + /****** md5 signature: 9840986fdc32d0b45aedaac5faa8bc9b ******/ %feature("compactdefaultargs") Matches; %feature("autodoc", " Parameters @@ -9480,8 +9480,8 @@ class AIS_ViewInputBuffer { _orbitRotation OrbitRotation; _viewRotation ViewRotation; _zrotateParams ZRotate; - /****************** AIS_ViewInputBuffer ******************/ - /**** md5 signature: 745d73c10e784c3d8e971b2aac633943 ****/ + /****** AIS_ViewInputBuffer::AIS_ViewInputBuffer ******/ + /****** md5 signature: 745d73c10e784c3d8e971b2aac633943 ******/ %feature("compactdefaultargs") AIS_ViewInputBuffer; %feature("autodoc", "Return ------- @@ -9493,8 +9493,8 @@ No available documentation. ") AIS_ViewInputBuffer; AIS_ViewInputBuffer(); - /****************** Reset ******************/ - /**** md5 signature: e3081050d274769a1cd4a93969da94c6 ****/ + /****** AIS_ViewInputBuffer::Reset ******/ + /****** md5 signature: e3081050d274769a1cd4a93969da94c6 ******/ %feature("compactdefaultargs") Reset; %feature("autodoc", "Return ------- @@ -9520,8 +9520,8 @@ Reset events buffer. **********************/ class AIS_WalkDelta { public: - /****************** AIS_WalkDelta ******************/ - /**** md5 signature: 78d0e66f1b9582c94cc5e1325ffc1ece ****/ + /****** AIS_WalkDelta::AIS_WalkDelta ******/ + /****** md5 signature: 78d0e66f1b9582c94cc5e1325ffc1ece ******/ %feature("compactdefaultargs") AIS_WalkDelta; %feature("autodoc", "Return ------- @@ -9533,8 +9533,8 @@ Empty constructor. ") AIS_WalkDelta; AIS_WalkDelta(); - /****************** IsCrouching ******************/ - /**** md5 signature: 9edc9fe6122620d3da7900016c4dd274 ****/ + /****** AIS_WalkDelta::IsCrouching ******/ + /****** md5 signature: 9edc9fe6122620d3da7900016c4dd274 ******/ %feature("compactdefaultargs") IsCrouching; %feature("autodoc", "Return ------- @@ -9546,8 +9546,8 @@ Return crouching state. ") IsCrouching; bool IsCrouching(); - /****************** IsDefined ******************/ - /**** md5 signature: b70d5071bbde3aa553369be83e08074a ****/ + /****** AIS_WalkDelta::IsDefined ******/ + /****** md5 signature: b70d5071bbde3aa553369be83e08074a ******/ %feature("compactdefaultargs") IsDefined; %feature("autodoc", "Return ------- @@ -9559,8 +9559,8 @@ Return true if navigation keys are pressed even if delta from the previous frame ") IsDefined; bool IsDefined(); - /****************** IsEmpty ******************/ - /**** md5 signature: 70a41d5fe65955a28167088305fc6991 ****/ + /****** AIS_WalkDelta::IsEmpty ******/ + /****** md5 signature: 70a41d5fe65955a28167088305fc6991 ******/ %feature("compactdefaultargs") IsEmpty; %feature("autodoc", "Return ------- @@ -9572,8 +9572,8 @@ Return true when both rotation and translation deltas are empty. ") IsEmpty; bool IsEmpty(); - /****************** IsJumping ******************/ - /**** md5 signature: d4be653fde273b1c6b730a0da8c487b6 ****/ + /****** AIS_WalkDelta::IsJumping ******/ + /****** md5 signature: d4be653fde273b1c6b730a0da8c487b6 ******/ %feature("compactdefaultargs") IsJumping; %feature("autodoc", "Return ------- @@ -9585,8 +9585,8 @@ Return jumping state. ") IsJumping; bool IsJumping(); - /****************** IsRunning ******************/ - /**** md5 signature: fb4df305f3df2579c794552bb89356af ****/ + /****** AIS_WalkDelta::IsRunning ******/ + /****** md5 signature: fb4df305f3df2579c794552bb89356af ******/ %feature("compactdefaultargs") IsRunning; %feature("autodoc", "Return ------- @@ -9598,8 +9598,8 @@ Return running state. ") IsRunning; bool IsRunning(); - /****************** SetCrouching ******************/ - /**** md5 signature: 5eceefece527a932b4edfcab57edade2 ****/ + /****** AIS_WalkDelta::SetCrouching ******/ + /****** md5 signature: 5eceefece527a932b4edfcab57edade2 ******/ %feature("compactdefaultargs") SetCrouching; %feature("autodoc", " Parameters @@ -9616,8 +9616,8 @@ Set crouching state. ") SetCrouching; void SetCrouching(bool theIsCrouching); - /****************** SetDefined ******************/ - /**** md5 signature: b71ec8fb76b263547fd8c33a97753c6c ****/ + /****** AIS_WalkDelta::SetDefined ******/ + /****** md5 signature: b71ec8fb76b263547fd8c33a97753c6c ******/ %feature("compactdefaultargs") SetDefined; %feature("autodoc", " Parameters @@ -9634,8 +9634,8 @@ Set if any navigation key is pressed. ") SetDefined; void SetDefined(bool theIsDefined); - /****************** SetJumping ******************/ - /**** md5 signature: 3b746ded8c228237e58bdc8b95def62f ****/ + /****** AIS_WalkDelta::SetJumping ******/ + /****** md5 signature: 3b746ded8c228237e58bdc8b95def62f ******/ %feature("compactdefaultargs") SetJumping; %feature("autodoc", " Parameters @@ -9652,8 +9652,8 @@ Set jumping state. ") SetJumping; void SetJumping(bool theIsJumping); - /****************** SetRunning ******************/ - /**** md5 signature: 9e52f30649e18f8ab29d5958a3d4ded2 ****/ + /****** AIS_WalkDelta::SetRunning ******/ + /****** md5 signature: 9e52f30649e18f8ab29d5958a3d4ded2 ******/ %feature("compactdefaultargs") SetRunning; %feature("autodoc", " Parameters @@ -9670,8 +9670,8 @@ Set running state. ") SetRunning; void SetRunning(bool theIsRunning); - /****************** ToMove ******************/ - /**** md5 signature: 7b66cd6cf6a1dd37a403775814652db7 ****/ + /****** AIS_WalkDelta::ToMove ******/ + /****** md5 signature: 7b66cd6cf6a1dd37a403775814652db7 ******/ %feature("compactdefaultargs") ToMove; %feature("autodoc", "Return ------- @@ -9683,8 +9683,8 @@ Return true if translation delta is defined. ") ToMove; bool ToMove(); - /****************** ToRotate ******************/ - /**** md5 signature: fcc05bcbce9d2e30ba46ffee48a00dd8 ****/ + /****** AIS_WalkDelta::ToRotate ******/ + /****** md5 signature: fcc05bcbce9d2e30ba46ffee48a00dd8 ******/ %feature("compactdefaultargs") ToRotate; %feature("autodoc", "Return ------- @@ -9713,8 +9713,8 @@ class AIS_WalkPart { float Value; float Pressure; float Duration; - /****************** AIS_WalkPart ******************/ - /**** md5 signature: 5e3a0f6962670df498761fa44109c312 ****/ + /****** AIS_WalkPart::AIS_WalkPart ******/ + /****** md5 signature: 5e3a0f6962670df498761fa44109c312 ******/ %feature("compactdefaultargs") AIS_WalkPart; %feature("autodoc", "Return ------- @@ -9726,8 +9726,8 @@ Empty constructor. ") AIS_WalkPart; AIS_WalkPart(); - /****************** IsEmpty ******************/ - /**** md5 signature: 70a41d5fe65955a28167088305fc6991 ****/ + /****** AIS_WalkPart::IsEmpty ******/ + /****** md5 signature: 70a41d5fe65955a28167088305fc6991 ******/ %feature("compactdefaultargs") IsEmpty; %feature("autodoc", "Return ------- @@ -9753,8 +9753,8 @@ Return true if delta is empty. ****************************/ class AIS_AnimationCamera : public AIS_Animation { public: - /****************** AIS_AnimationCamera ******************/ - /**** md5 signature: 8ff92abae4b3ac909180f754a717bd23 ****/ + /****** AIS_AnimationCamera::AIS_AnimationCamera ******/ + /****** md5 signature: 8ff92abae4b3ac909180f754a717bd23 ******/ %feature("compactdefaultargs") AIS_AnimationCamera; %feature("autodoc", " Parameters @@ -9772,8 +9772,8 @@ Main constructor. ") AIS_AnimationCamera; AIS_AnimationCamera(TCollection_AsciiString theAnimationName, const opencascade::handle & theView); - /****************** CameraEnd ******************/ - /**** md5 signature: b01b09ea2b055e00cd1afbc9547d1944 ****/ + /****** AIS_AnimationCamera::CameraEnd ******/ + /****** md5 signature: b01b09ea2b055e00cd1afbc9547d1944 ******/ %feature("compactdefaultargs") CameraEnd; %feature("autodoc", "Return ------- @@ -9785,8 +9785,8 @@ Return camera end position. ") CameraEnd; const opencascade::handle & CameraEnd(); - /****************** CameraStart ******************/ - /**** md5 signature: d6ebd288f132ab4ec611acad6908ce38 ****/ + /****** AIS_AnimationCamera::CameraStart ******/ + /****** md5 signature: d6ebd288f132ab4ec611acad6908ce38 ******/ %feature("compactdefaultargs") CameraStart; %feature("autodoc", "Return ------- @@ -9798,8 +9798,8 @@ Return camera start position. ") CameraStart; const opencascade::handle & CameraStart(); - /****************** SetCameraEnd ******************/ - /**** md5 signature: 75679516df27f3c84a21aa3e0909ecf2 ****/ + /****** AIS_AnimationCamera::SetCameraEnd ******/ + /****** md5 signature: 75679516df27f3c84a21aa3e0909ecf2 ******/ %feature("compactdefaultargs") SetCameraEnd; %feature("autodoc", " Parameters @@ -9816,8 +9816,8 @@ Define camera end position. ") SetCameraEnd; void SetCameraEnd(const opencascade::handle & theCameraEnd); - /****************** SetCameraStart ******************/ - /**** md5 signature: 32b740e9f4a21c3ee69c1acc0dfa9c67 ****/ + /****** AIS_AnimationCamera::SetCameraStart ******/ + /****** md5 signature: 32b740e9f4a21c3ee69c1acc0dfa9c67 ******/ %feature("compactdefaultargs") SetCameraStart; %feature("autodoc", " Parameters @@ -9834,8 +9834,8 @@ Define camera start position. ") SetCameraStart; void SetCameraStart(const opencascade::handle & theCameraStart); - /****************** SetView ******************/ - /**** md5 signature: 0584fa04772f11b6b4dc66d41a80a5f7 ****/ + /****** AIS_AnimationCamera::SetView ******/ + /****** md5 signature: 0584fa04772f11b6b4dc66d41a80a5f7 ******/ %feature("compactdefaultargs") SetView; %feature("autodoc", " Parameters @@ -9852,8 +9852,8 @@ Set target view. ") SetView; void SetView(const opencascade::handle & theView); - /****************** View ******************/ - /**** md5 signature: 592d26a27bd3a7b6180f94a10b60dfb1 ****/ + /****** AIS_AnimationCamera::View ******/ + /****** md5 signature: 592d26a27bd3a7b6180f94a10b60dfb1 ******/ %feature("compactdefaultargs") View; %feature("autodoc", "Return ------- @@ -9881,8 +9881,8 @@ Return the target view. *****************/ class AIS_Axis : public AIS_InteractiveObject { public: - /****************** AIS_Axis ******************/ - /**** md5 signature: 496908e4e4a697e3d91ac63063fecdfc ****/ + /****** AIS_Axis::AIS_Axis ******/ + /****** md5 signature: 496908e4e4a697e3d91ac63063fecdfc ******/ %feature("compactdefaultargs") AIS_Axis; %feature("autodoc", " Parameters @@ -9899,8 +9899,8 @@ Initializes the line acomponent. ") AIS_Axis; AIS_Axis(const opencascade::handle & aComponent); - /****************** AIS_Axis ******************/ - /**** md5 signature: e18674f14ec23c9de38d04b4c4849317 ****/ + /****** AIS_Axis::AIS_Axis ******/ + /****** md5 signature: e18674f14ec23c9de38d04b4c4849317 ******/ %feature("compactdefaultargs") AIS_Axis; %feature("autodoc", " Parameters @@ -9918,8 +9918,8 @@ Initializes the axis2 position acomponent. the coordinate system used is right-h ") AIS_Axis; AIS_Axis(const opencascade::handle & aComponent, const AIS_TypeOfAxis anAxisType); - /****************** AIS_Axis ******************/ - /**** md5 signature: 7521b6e648a3b47e5909b08aca72ee84 ****/ + /****** AIS_Axis::AIS_Axis ******/ + /****** md5 signature: 7521b6e648a3b47e5909b08aca72ee84 ******/ %feature("compactdefaultargs") AIS_Axis; %feature("autodoc", " Parameters @@ -9936,8 +9936,8 @@ Initializes the axis1 position anaxis. ") AIS_Axis; AIS_Axis(const opencascade::handle & anAxis); - /****************** AIS_Axis ******************/ - /**** md5 signature: c934eb8339507f1bfcee85301548abec ****/ + /****** AIS_Axis::AIS_Axis ******/ + /****** md5 signature: c934eb8339507f1bfcee85301548abec ******/ %feature("compactdefaultargs") AIS_Axis; %feature("autodoc", " Parameters @@ -9955,8 +9955,8 @@ Initializes the ray as axis with start point and direction @param[in] theaxis st ") AIS_Axis; AIS_Axis(const gp_Ax1 & theAxis, const Standard_Real theLength = -1); - /****************** AcceptDisplayMode ******************/ - /**** md5 signature: 4b2dbc71bc9796a113d83252030ddc96 ****/ + /****** AIS_Axis::AcceptDisplayMode ******/ + /****** md5 signature: 4b2dbc71bc9796a113d83252030ddc96 ******/ %feature("compactdefaultargs") AcceptDisplayMode; %feature("autodoc", " Parameters @@ -9973,8 +9973,8 @@ Returns true if the interactive object accepts the display mode amode. ") AcceptDisplayMode; Standard_Boolean AcceptDisplayMode(const Standard_Integer aMode); - /****************** Axis2Placement ******************/ - /**** md5 signature: 1eb7fb00f1ddac7348881c96ee090d62 ****/ + /****** AIS_Axis::Axis2Placement ******/ + /****** md5 signature: 1eb7fb00f1ddac7348881c96ee090d62 ******/ %feature("compactdefaultargs") Axis2Placement; %feature("autodoc", "Return ------- @@ -9986,8 +9986,8 @@ Returns the position of axis2 and positions it by identifying it as the x, y, or ") Axis2Placement; const opencascade::handle & Axis2Placement(); - /****************** Component ******************/ - /**** md5 signature: f69e55b36337e553cef8f7f1128a7e5d ****/ + /****** AIS_Axis::Component ******/ + /****** md5 signature: f69e55b36337e553cef8f7f1128a7e5d ******/ %feature("compactdefaultargs") Component; %feature("autodoc", "Return ------- @@ -9999,8 +9999,8 @@ Returns the axis entity acomponent and identifies it as a component of a shape. ") Component; const opencascade::handle & Component(); - /****************** IsXYZAxis ******************/ - /**** md5 signature: 1d85f51d36d0ae430b9a865d101c9dcf ****/ + /****** AIS_Axis::IsXYZAxis ******/ + /****** md5 signature: 1d85f51d36d0ae430b9a865d101c9dcf ******/ %feature("compactdefaultargs") IsXYZAxis; %feature("autodoc", "Return ------- @@ -10012,8 +10012,8 @@ Returns a signature of 2 for axis datums. when you activate mode 2 by a signatur ") IsXYZAxis; Standard_Boolean IsXYZAxis(); - /****************** SetAxis1Placement ******************/ - /**** md5 signature: 8c0fc181857403a46c591ffe5130de85 ****/ + /****** AIS_Axis::SetAxis1Placement ******/ + /****** md5 signature: 8c0fc181857403a46c591ffe5130de85 ******/ %feature("compactdefaultargs") SetAxis1Placement; %feature("autodoc", " Parameters @@ -10030,8 +10030,8 @@ Constructs a new line to serve as the axis anaxis in 3d space. ") SetAxis1Placement; void SetAxis1Placement(const opencascade::handle & anAxis); - /****************** SetAxis2Placement ******************/ - /**** md5 signature: acd86dedac2b089c67648b84cfc69afd ****/ + /****** AIS_Axis::SetAxis2Placement ******/ + /****** md5 signature: acd86dedac2b089c67648b84cfc69afd ******/ %feature("compactdefaultargs") SetAxis2Placement; %feature("autodoc", " Parameters @@ -10049,8 +10049,8 @@ Allows you to provide settings for acomponent:the position and direction of an a ") SetAxis2Placement; void SetAxis2Placement(const opencascade::handle & aComponent, const AIS_TypeOfAxis anAxisType); - /****************** SetColor ******************/ - /**** md5 signature: 6b2b764a1e8ffb5d1aa4218d6218005c ****/ + /****** AIS_Axis::SetColor ******/ + /****** md5 signature: 6b2b764a1e8ffb5d1aa4218d6218005c ******/ %feature("compactdefaultargs") SetColor; %feature("autodoc", " Parameters @@ -10067,8 +10067,8 @@ No available documentation. ") SetColor; void SetColor(const Quantity_Color & aColor); - /****************** SetComponent ******************/ - /**** md5 signature: a13f4f5c2d68a8a72653cf5c30dc559b ****/ + /****** AIS_Axis::SetComponent ******/ + /****** md5 signature: a13f4f5c2d68a8a72653cf5c30dc559b ******/ %feature("compactdefaultargs") SetComponent; %feature("autodoc", " Parameters @@ -10085,8 +10085,8 @@ Sets the coordinates of the lin acomponent. ") SetComponent; void SetComponent(const opencascade::handle & aComponent); - /****************** SetDisplayAspect ******************/ - /**** md5 signature: fbb9dcc512474594bfb63a46987619d6 ****/ + /****** AIS_Axis::SetDisplayAspect ******/ + /****** md5 signature: fbb9dcc512474594bfb63a46987619d6 ******/ %feature("compactdefaultargs") SetDisplayAspect; %feature("autodoc", " Parameters @@ -10103,8 +10103,8 @@ Set required visualization parameters. ") SetDisplayAspect; void SetDisplayAspect(const opencascade::handle & theNewDatumAspect); - /****************** SetTypeOfAxis ******************/ - /**** md5 signature: 020f7cadcbe397a98ebb13acd7bdc321 ****/ + /****** AIS_Axis::SetTypeOfAxis ******/ + /****** md5 signature: 020f7cadcbe397a98ebb13acd7bdc321 ******/ %feature("compactdefaultargs") SetTypeOfAxis; %feature("autodoc", " Parameters @@ -10121,8 +10121,8 @@ Constructs the entity thetypeaxis to stock information concerning type of axis. ") SetTypeOfAxis; void SetTypeOfAxis(const AIS_TypeOfAxis theTypeAxis); - /****************** SetWidth ******************/ - /**** md5 signature: 9d813a0ff21da5ccb02e00971f20abed ****/ + /****** AIS_Axis::SetWidth ******/ + /****** md5 signature: 9d813a0ff21da5ccb02e00971f20abed ******/ %feature("compactdefaultargs") SetWidth; %feature("autodoc", " Parameters @@ -10139,8 +10139,8 @@ No available documentation. ") SetWidth; void SetWidth(const Standard_Real aValue); - /****************** Signature ******************/ - /**** md5 signature: 4e037e01ba764fd5d5261e3d9ba6557d ****/ + /****** AIS_Axis::Signature ******/ + /****** md5 signature: 4e037e01ba764fd5d5261e3d9ba6557d ******/ %feature("compactdefaultargs") Signature; %feature("autodoc", "Return ------- @@ -10152,8 +10152,8 @@ No available documentation. ") Signature; virtual Standard_Integer Signature(); - /****************** Type ******************/ - /**** md5 signature: bf4aea6b24d0b584b57c781f208134ec ****/ + /****** AIS_Axis::Type ******/ + /****** md5 signature: bf4aea6b24d0b584b57c781f208134ec ******/ %feature("compactdefaultargs") Type; %feature("autodoc", "Return ------- @@ -10165,8 +10165,8 @@ No available documentation. ") Type; virtual AIS_KindOfInteractive Type(); - /****************** TypeOfAxis ******************/ - /**** md5 signature: 9f9988d6567e5e10c79eb93ead9bc6e5 ****/ + /****** AIS_Axis::TypeOfAxis ******/ + /****** md5 signature: 9f9988d6567e5e10c79eb93ead9bc6e5 ******/ %feature("compactdefaultargs") TypeOfAxis; %feature("autodoc", "Return ------- @@ -10178,8 +10178,8 @@ Returns the type of axis. ") TypeOfAxis; AIS_TypeOfAxis TypeOfAxis(); - /****************** UnsetColor ******************/ - /**** md5 signature: 305de4c541ce8067f3ff456f9ec26b55 ****/ + /****** AIS_Axis::UnsetColor ******/ + /****** md5 signature: 305de4c541ce8067f3ff456f9ec26b55 ******/ %feature("compactdefaultargs") UnsetColor; %feature("autodoc", "Return ------- @@ -10191,8 +10191,8 @@ No available documentation. ") UnsetColor; void UnsetColor(); - /****************** UnsetWidth ******************/ - /**** md5 signature: a9083157cc12b18148f87c7816510f28 ****/ + /****** AIS_Axis::UnsetWidth ******/ + /****** md5 signature: a9083157cc12b18148f87c7816510f28 ******/ %feature("compactdefaultargs") UnsetWidth; %feature("autodoc", "Return ------- @@ -10256,8 +10256,8 @@ SelectionMode_Volume = SelectionMode.SelectionMode_Volume }; /* end python proxy for enums */ - /****************** AIS_CameraFrustum ******************/ - /**** md5 signature: 150818eb23cd3e2e2db0bb6db4cf94d7 ****/ + /****** AIS_CameraFrustum::AIS_CameraFrustum ******/ + /****** md5 signature: 150818eb23cd3e2e2db0bb6db4cf94d7 ******/ %feature("compactdefaultargs") AIS_CameraFrustum; %feature("autodoc", "Return ------- @@ -10269,8 +10269,8 @@ Constructs camera frustum with default configuration. ") AIS_CameraFrustum; AIS_CameraFrustum(); - /****************** AcceptDisplayMode ******************/ - /**** md5 signature: 73e6b64240388c9f5967edd29a7d922a ****/ + /****** AIS_CameraFrustum::AcceptDisplayMode ******/ + /****** md5 signature: 73e6b64240388c9f5967edd29a7d922a ******/ %feature("compactdefaultargs") AcceptDisplayMode; %feature("autodoc", " Parameters @@ -10287,8 +10287,8 @@ Return true if specified display mode is supported. ") AcceptDisplayMode; virtual Standard_Boolean AcceptDisplayMode(const Standard_Integer theMode); - /****************** SetCameraFrustum ******************/ - /**** md5 signature: d196fc8b383c2d94bbf20ae29d0720c5 ****/ + /****** AIS_CameraFrustum::SetCameraFrustum ******/ + /****** md5 signature: d196fc8b383c2d94bbf20ae29d0720c5 ******/ %feature("compactdefaultargs") SetCameraFrustum; %feature("autodoc", " Parameters @@ -10305,8 +10305,8 @@ Sets camera frustum. ") SetCameraFrustum; void SetCameraFrustum(const opencascade::handle & theCamera); - /****************** SetColor ******************/ - /**** md5 signature: 259272248bacb2cef242adbc667f0ef9 ****/ + /****** AIS_CameraFrustum::SetColor ******/ + /****** md5 signature: 259272248bacb2cef242adbc667f0ef9 ******/ %feature("compactdefaultargs") SetColor; %feature("autodoc", " Parameters @@ -10323,8 +10323,8 @@ Setup custom color. ") SetColor; virtual void SetColor(const Quantity_Color & theColor); - /****************** UnsetColor ******************/ - /**** md5 signature: 2da7e2ed6a63f7c70c36c2a82118a7ec ****/ + /****** AIS_CameraFrustum::UnsetColor ******/ + /****** md5 signature: 2da7e2ed6a63f7c70c36c2a82118a7ec ******/ %feature("compactdefaultargs") UnsetColor; %feature("autodoc", "Return ------- @@ -10336,8 +10336,8 @@ Restore default color. ") UnsetColor; virtual void UnsetColor(); - /****************** UnsetTransparency ******************/ - /**** md5 signature: bdf34ac27dd66c689517e7b105e66cb2 ****/ + /****** AIS_CameraFrustum::UnsetTransparency ******/ + /****** md5 signature: bdf34ac27dd66c689517e7b105e66cb2 ******/ %feature("compactdefaultargs") UnsetTransparency; %feature("autodoc", "Return ------- @@ -10363,8 +10363,8 @@ Restore transparency setting. *******************/ class AIS_Circle : public AIS_InteractiveObject { public: - /****************** AIS_Circle ******************/ - /**** md5 signature: 7840debc97d471b60b1bd796a31a034f ****/ + /****** AIS_Circle::AIS_Circle ******/ + /****** md5 signature: 7840debc97d471b60b1bd796a31a034f ******/ %feature("compactdefaultargs") AIS_Circle; %feature("autodoc", " Parameters @@ -10381,8 +10381,8 @@ Initializes this algorithm for constructing ais circle datums initializes the ci ") AIS_Circle; AIS_Circle(const opencascade::handle & aCircle); - /****************** AIS_Circle ******************/ - /**** md5 signature: 27923ecaf8cbe2d56e0129b466ec95f1 ****/ + /****** AIS_Circle::AIS_Circle ******/ + /****** md5 signature: 27923ecaf8cbe2d56e0129b466ec95f1 ******/ %feature("compactdefaultargs") AIS_Circle; %feature("autodoc", " Parameters @@ -10402,8 +10402,8 @@ Initializes this algorithm for constructing ais circle datums. initializes the c ") AIS_Circle; AIS_Circle(const opencascade::handle & theCircle, const Standard_Real theUStart, const Standard_Real theUEnd, const Standard_Boolean theIsFilledCircleSens = Standard_False); - /****************** Circle ******************/ - /**** md5 signature: dca94d5c17b802a2d82f4b02016fcaa0 ****/ + /****** AIS_Circle::Circle ******/ + /****** md5 signature: dca94d5c17b802a2d82f4b02016fcaa0 ******/ %feature("compactdefaultargs") Circle; %feature("autodoc", "Return ------- @@ -10415,8 +10415,8 @@ Returns the circle component defined in setcircle. ") Circle; const opencascade::handle & Circle(); - /****************** IsFilledCircleSens ******************/ - /**** md5 signature: ddaea116033193620f481ab3c97bd9d0 ****/ + /****** AIS_Circle::IsFilledCircleSens ******/ + /****** md5 signature: ddaea116033193620f481ab3c97bd9d0 ******/ %feature("compactdefaultargs") IsFilledCircleSens; %feature("autodoc", "Return ------- @@ -10428,8 +10428,8 @@ Returns the type of sensitivity for the circle;. ") IsFilledCircleSens; Standard_Boolean IsFilledCircleSens(); - /****************** Parameters ******************/ - /**** md5 signature: 6bfe2bdfa8f1f8a9a2b0d2ddbe974b6b ****/ + /****** AIS_Circle::Parameters ******/ + /****** md5 signature: 6bfe2bdfa8f1f8a9a2b0d2ddbe974b6b ******/ %feature("compactdefaultargs") Parameters; %feature("autodoc", " Parameters @@ -10446,8 +10446,8 @@ Constructs instances of the starting point and the end point parameters, theu1 a ") Parameters; void Parameters(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** SetCircle ******************/ - /**** md5 signature: 96449d53f84bdc37171b080fcbaf229f ****/ + /****** AIS_Circle::SetCircle ******/ + /****** md5 signature: 96449d53f84bdc37171b080fcbaf229f ******/ %feature("compactdefaultargs") SetCircle; %feature("autodoc", " Parameters @@ -10464,8 +10464,8 @@ Allows you to provide settings for the circle datum acircle. ") SetCircle; void SetCircle(const opencascade::handle & theCircle); - /****************** SetColor ******************/ - /**** md5 signature: 6b2b764a1e8ffb5d1aa4218d6218005c ****/ + /****** AIS_Circle::SetColor ******/ + /****** md5 signature: 6b2b764a1e8ffb5d1aa4218d6218005c ******/ %feature("compactdefaultargs") SetColor; %feature("autodoc", " Parameters @@ -10482,8 +10482,8 @@ No available documentation. ") SetColor; void SetColor(const Quantity_Color & aColor); - /****************** SetFilledCircleSens ******************/ - /**** md5 signature: a806a83742b7e68ae11b365ebebc7a53 ****/ + /****** AIS_Circle::SetFilledCircleSens ******/ + /****** md5 signature: a806a83742b7e68ae11b365ebebc7a53 ******/ %feature("compactdefaultargs") SetFilledCircleSens; %feature("autodoc", " Parameters @@ -10500,8 +10500,8 @@ Sets the type of sensitivity for the circle. if theisfilledcirclesens set to sta ") SetFilledCircleSens; void SetFilledCircleSens(const Standard_Boolean theIsFilledCircleSens); - /****************** SetFirstParam ******************/ - /**** md5 signature: 30825c81f464c29337e52ffb7bc42de8 ****/ + /****** AIS_Circle::SetFirstParam ******/ + /****** md5 signature: 30825c81f464c29337e52ffb7bc42de8 ******/ %feature("compactdefaultargs") SetFirstParam; %feature("autodoc", " Parameters @@ -10518,8 +10518,8 @@ Allows you to set the parameter theu for the starting point of an arc. ") SetFirstParam; void SetFirstParam(const Standard_Real theU); - /****************** SetLastParam ******************/ - /**** md5 signature: 618bfebbc085b09013b19573c3f2c3ba ****/ + /****** AIS_Circle::SetLastParam ******/ + /****** md5 signature: 618bfebbc085b09013b19573c3f2c3ba ******/ %feature("compactdefaultargs") SetLastParam; %feature("autodoc", " Parameters @@ -10536,8 +10536,8 @@ Allows you to provide the parameter theu for the end point of an arc. ") SetLastParam; void SetLastParam(const Standard_Real theU); - /****************** SetWidth ******************/ - /**** md5 signature: 9d813a0ff21da5ccb02e00971f20abed ****/ + /****** AIS_Circle::SetWidth ******/ + /****** md5 signature: 9d813a0ff21da5ccb02e00971f20abed ******/ %feature("compactdefaultargs") SetWidth; %feature("autodoc", " Parameters @@ -10554,8 +10554,8 @@ Assigns the width avalue to the solid line boundary of the circle datum. ") SetWidth; void SetWidth(const Standard_Real aValue); - /****************** Signature ******************/ - /**** md5 signature: 4e037e01ba764fd5d5261e3d9ba6557d ****/ + /****** AIS_Circle::Signature ******/ + /****** md5 signature: 4e037e01ba764fd5d5261e3d9ba6557d ******/ %feature("compactdefaultargs") Signature; %feature("autodoc", "Return ------- @@ -10567,8 +10567,8 @@ Returns index 6 by default. ") Signature; virtual Standard_Integer Signature(); - /****************** Type ******************/ - /**** md5 signature: bf4aea6b24d0b584b57c781f208134ec ****/ + /****** AIS_Circle::Type ******/ + /****** md5 signature: bf4aea6b24d0b584b57c781f208134ec ******/ %feature("compactdefaultargs") Type; %feature("autodoc", "Return ------- @@ -10580,8 +10580,8 @@ Indicates that the type of interactive object is a datum. ") Type; virtual AIS_KindOfInteractive Type(); - /****************** UnsetColor ******************/ - /**** md5 signature: 305de4c541ce8067f3ff456f9ec26b55 ****/ + /****** AIS_Circle::UnsetColor ******/ + /****** md5 signature: 305de4c541ce8067f3ff456f9ec26b55 ******/ %feature("compactdefaultargs") UnsetColor; %feature("autodoc", "Return ------- @@ -10593,8 +10593,8 @@ Removes color from the solid line boundary of the circle datum. ") UnsetColor; void UnsetColor(); - /****************** UnsetWidth ******************/ - /**** md5 signature: a9083157cc12b18148f87c7816510f28 ****/ + /****** AIS_Circle::UnsetWidth ******/ + /****** md5 signature: a9083157cc12b18148f87c7816510f28 ******/ %feature("compactdefaultargs") UnsetWidth; %feature("autodoc", "Return ------- @@ -10622,8 +10622,8 @@ Removes width settings from the solid line boundary of the circle datum. ***********************/ class AIS_ColorScale : public AIS_InteractiveObject { public: - /****************** AIS_ColorScale ******************/ - /**** md5 signature: f743d580a5e9c57906d990bffe1e305b ****/ + /****** AIS_ColorScale::AIS_ColorScale ******/ + /****** md5 signature: f743d580a5e9c57906d990bffe1e305b ******/ %feature("compactdefaultargs") AIS_ColorScale; %feature("autodoc", "Return ------- @@ -10635,8 +10635,8 @@ Default constructor. ") AIS_ColorScale; AIS_ColorScale(); - /****************** AcceptDisplayMode ******************/ - /**** md5 signature: 4c81f1c2cfc05fd196e1c09a383a3455 ****/ + /****** AIS_ColorScale::AcceptDisplayMode ******/ + /****** md5 signature: 4c81f1c2cfc05fd196e1c09a383a3455 ******/ %feature("compactdefaultargs") AcceptDisplayMode; %feature("autodoc", " Parameters @@ -10653,8 +10653,8 @@ Return true if specified display mode is supported. ") AcceptDisplayMode; virtual Standard_Boolean AcceptDisplayMode(const Standard_Integer theMode); - /****************** ColorRange ******************/ - /**** md5 signature: 09c7c44e660693a064e563e79c9b2177 ****/ + /****** AIS_ColorScale::ColorRange ******/ + /****** md5 signature: 09c7c44e660693a064e563e79c9b2177 ******/ %feature("compactdefaultargs") ColorRange; %feature("autodoc", " Parameters @@ -10672,8 +10672,8 @@ Returns color range corresponding to minimum and maximum values, blue to red by ") ColorRange; void ColorRange(Quantity_Color & theMinColor, Quantity_Color & theMaxColor); - /****************** Compute ******************/ - /**** md5 signature: 2211827d8c388dd82f20241aba38e7b4 ****/ + /****** AIS_ColorScale::Compute ******/ + /****** md5 signature: 2211827d8c388dd82f20241aba38e7b4 ******/ %feature("compactdefaultargs") Compute; %feature("autodoc", " Parameters @@ -10692,8 +10692,8 @@ Compute presentation. ") Compute; virtual void Compute(const opencascade::handle & thePrsMgr, const opencascade::handle & thePresentation, const Standard_Integer theMode); - /****************** ComputeSelection ******************/ - /**** md5 signature: cebd8858c299db78edb7052c49348937 ****/ + /****** AIS_ColorScale::ComputeSelection ******/ + /****** md5 signature: cebd8858c299db78edb7052c49348937 ******/ %feature("compactdefaultargs") ComputeSelection; %feature("autodoc", " Parameters @@ -10711,8 +10711,8 @@ Compute selection - not implemented for color scale. ") ComputeSelection; virtual void ComputeSelection(const opencascade::handle &, const Standard_Integer); - /****************** FindColor ******************/ - /**** md5 signature: 45503e79acd0e8e9e8f6cbed02ec31bf ****/ + /****** AIS_ColorScale::FindColor ******/ + /****** md5 signature: 45503e79acd0e8e9e8f6cbed02ec31bf ******/ %feature("compactdefaultargs") FindColor; %feature("autodoc", " Parameters @@ -10735,8 +10735,8 @@ Calculate color according passed value; returns true if value is in range or fal ") FindColor; static Standard_Boolean FindColor(const Standard_Real theValue, const Standard_Real theMin, const Standard_Real theMax, const Standard_Integer theColorsCount, const Graphic3d_Vec3d & theColorHlsMin, const Graphic3d_Vec3d & theColorHlsMax, Quantity_Color & theColor); - /****************** FindColor ******************/ - /**** md5 signature: 8d3344b8104a62193a16e135eb078b3d ****/ + /****** AIS_ColorScale::FindColor ******/ + /****** md5 signature: 8d3344b8104a62193a16e135eb078b3d ******/ %feature("compactdefaultargs") FindColor; %feature("autodoc", " Parameters @@ -10757,8 +10757,8 @@ Calculate color according passed value; returns true if value is in range or fal ") FindColor; static Standard_Boolean FindColor(const Standard_Real theValue, const Standard_Real theMin, const Standard_Real theMax, const Standard_Integer theColorsCount, Quantity_Color & theColor); - /****************** FindColor ******************/ - /**** md5 signature: 9abe0c7448de981f5c28d49fc8e91980 ****/ + /****** AIS_ColorScale::FindColor ******/ + /****** md5 signature: 9abe0c7448de981f5c28d49fc8e91980 ******/ %feature("compactdefaultargs") FindColor; %feature("autodoc", " Parameters @@ -10776,8 +10776,8 @@ Calculate color according passed value; returns true if value is in range or fal ") FindColor; Standard_Boolean FindColor(const Standard_Real theValue, Quantity_Color & theColor); - /****************** Format ******************/ - /**** md5 signature: e9d46855e7e702fd9247d888cb57d283 ****/ + /****** AIS_ColorScale::Format ******/ + /****** md5 signature: e9d46855e7e702fd9247d888cb57d283 ******/ %feature("compactdefaultargs") Format; %feature("autodoc", "Return ------- @@ -10789,8 +10789,8 @@ Returns the format of text. ") Format; const TCollection_AsciiString & Format(); - /****************** GetBreadth ******************/ - /**** md5 signature: 60c66494a66bb8b81538e217bbd69f0f ****/ + /****** AIS_ColorScale::GetBreadth ******/ + /****** md5 signature: 60c66494a66bb8b81538e217bbd69f0f ******/ %feature("compactdefaultargs") GetBreadth; %feature("autodoc", "Return ------- @@ -10802,8 +10802,8 @@ Returns the breadth of color bar, 0 by default (e.g. should be set by user expli ") GetBreadth; Standard_Integer GetBreadth(); - /****************** GetColorType ******************/ - /**** md5 signature: 74ef7f5246b762298ca7fb66001ffb68 ****/ + /****** AIS_ColorScale::GetColorType ******/ + /****** md5 signature: 74ef7f5246b762298ca7fb66001ffb68 ******/ %feature("compactdefaultargs") GetColorType; %feature("autodoc", "Return ------- @@ -10815,8 +10815,8 @@ Returns the type of colors, aspect_tocsd_auto by default. aspect_tocsd_auto - va ") GetColorType; Aspect_TypeOfColorScaleData GetColorType(); - /****************** GetColors ******************/ - /**** md5 signature: 4eac91b266fb62448dfee88590d32204 ****/ + /****** AIS_ColorScale::GetColors ******/ + /****** md5 signature: 4eac91b266fb62448dfee88590d32204 ******/ %feature("compactdefaultargs") GetColors; %feature("autodoc", " Parameters @@ -10833,8 +10833,8 @@ Returns the user specified colors. ") GetColors; void GetColors(Aspect_SequenceOfColor & theColors); - /****************** GetColors ******************/ - /**** md5 signature: 9dd2da5a85896576f1b8faa51824613e ****/ + /****** AIS_ColorScale::GetColors ******/ + /****** md5 signature: 9dd2da5a85896576f1b8faa51824613e ******/ %feature("compactdefaultargs") GetColors; %feature("autodoc", "Return ------- @@ -10846,8 +10846,8 @@ Returns the user specified colors. ") GetColors; const Aspect_SequenceOfColor & GetColors(); - /****************** GetFormat ******************/ - /**** md5 signature: 54c7ef0bc14e2d3ab1ecb4d4d0c39e35 ****/ + /****** AIS_ColorScale::GetFormat ******/ + /****** md5 signature: 54c7ef0bc14e2d3ab1ecb4d4d0c39e35 ******/ %feature("compactdefaultargs") GetFormat; %feature("autodoc", "Return ------- @@ -10859,8 +10859,8 @@ Returns the format for numbers, '%.4g' by default. the same like format for func ") GetFormat; const TCollection_AsciiString & GetFormat(); - /****************** GetHeight ******************/ - /**** md5 signature: f73bd370be1a33627722a97ab21a3944 ****/ + /****** AIS_ColorScale::GetHeight ******/ + /****** md5 signature: f73bd370be1a33627722a97ab21a3944 ******/ %feature("compactdefaultargs") GetHeight; %feature("autodoc", "Return ------- @@ -10872,8 +10872,8 @@ Returns the height of color bar, 0 by default (e.g. should be set by user explic ") GetHeight; Standard_Integer GetHeight(); - /****************** GetIntervalColor ******************/ - /**** md5 signature: 9fe0281a4a2854a52a01e0ad862b76c8 ****/ + /****** AIS_ColorScale::GetIntervalColor ******/ + /****** md5 signature: 9fe0281a4a2854a52a01e0ad862b76c8 ******/ %feature("compactdefaultargs") GetIntervalColor; %feature("autodoc", " Parameters @@ -10890,8 +10890,8 @@ Returns the user specified color from color map with index (starts at 1). return ") GetIntervalColor; Quantity_Color GetIntervalColor(const Standard_Integer theIndex); - /****************** GetLabel ******************/ - /**** md5 signature: 209ac05f071e491f772f57146e650b94 ****/ + /****** AIS_ColorScale::GetLabel ******/ + /****** md5 signature: 209ac05f071e491f772f57146e650b94 ******/ %feature("compactdefaultargs") GetLabel; %feature("autodoc", " Parameters @@ -10908,8 +10908,8 @@ Returns the user specified label with index theindex. index is in range from 1 t ") GetLabel; TCollection_ExtendedString GetLabel(const Standard_Integer theIndex); - /****************** GetLabelPosition ******************/ - /**** md5 signature: 88288ffee0ed0f8d63549846a0f422d4 ****/ + /****** AIS_ColorScale::GetLabelPosition ******/ + /****** md5 signature: 88288ffee0ed0f8d63549846a0f422d4 ******/ %feature("compactdefaultargs") GetLabelPosition; %feature("autodoc", "Return ------- @@ -10921,8 +10921,8 @@ Returns the position of labels concerning color filled rectangles, aspect_tocsp_ ") GetLabelPosition; Aspect_TypeOfColorScalePosition GetLabelPosition(); - /****************** GetLabelType ******************/ - /**** md5 signature: a0a0539f49a2cced1489ebfe193b2cbf ****/ + /****** AIS_ColorScale::GetLabelType ******/ + /****** md5 signature: a0a0539f49a2cced1489ebfe193b2cbf ******/ %feature("compactdefaultargs") GetLabelType; %feature("autodoc", "Return ------- @@ -10934,8 +10934,8 @@ Returns the type of labels, aspect_tocsd_auto by default. aspect_tocsd_auto - la ") GetLabelType; Aspect_TypeOfColorScaleData GetLabelType(); - /****************** GetLabels ******************/ - /**** md5 signature: b61c0c474dbe12a38ad32ccf53629f06 ****/ + /****** AIS_ColorScale::GetLabels ******/ + /****** md5 signature: b61c0c474dbe12a38ad32ccf53629f06 ******/ %feature("compactdefaultargs") GetLabels; %feature("autodoc", " Parameters @@ -10952,8 +10952,8 @@ Returns the user specified labels. ") GetLabels; void GetLabels(TColStd_SequenceOfExtendedString & theLabels); - /****************** GetMax ******************/ - /**** md5 signature: 6dbd6ddcdeb1e84f290e8ef25a18ec36 ****/ + /****** AIS_ColorScale::GetMax ******/ + /****** md5 signature: 6dbd6ddcdeb1e84f290e8ef25a18ec36 ******/ %feature("compactdefaultargs") GetMax; %feature("autodoc", "Return ------- @@ -10965,8 +10965,8 @@ Returns maximal value of color scale, 1.0 by default. ") GetMax; Standard_Real GetMax(); - /****************** GetMin ******************/ - /**** md5 signature: 012840e577d48b8e93dc4b2ebfe7fab8 ****/ + /****** AIS_ColorScale::GetMin ******/ + /****** md5 signature: 012840e577d48b8e93dc4b2ebfe7fab8 ******/ %feature("compactdefaultargs") GetMin; %feature("autodoc", "Return ------- @@ -10978,8 +10978,8 @@ Returns minimal value of color scale, 0.0 by default. ") GetMin; Standard_Real GetMin(); - /****************** GetNumberOfIntervals ******************/ - /**** md5 signature: 7a45275605944756fb48c569f3216264 ****/ + /****** AIS_ColorScale::GetNumberOfIntervals ******/ + /****** md5 signature: 7a45275605944756fb48c569f3216264 ******/ %feature("compactdefaultargs") GetNumberOfIntervals; %feature("autodoc", "Return ------- @@ -10991,8 +10991,8 @@ Returns the number of color scale intervals, 10 by default. ") GetNumberOfIntervals; Standard_Integer GetNumberOfIntervals(); - /****************** GetPosition ******************/ - /**** md5 signature: 34da0784d19f0c8adbfc5576fc684578 ****/ + /****** AIS_ColorScale::GetPosition ******/ + /****** md5 signature: 34da0784d19f0c8adbfc5576fc684578 ******/ %feature("compactdefaultargs") GetPosition; %feature("autodoc", " Parameters @@ -11009,8 +11009,8 @@ Returns the bottom-left position of color scale, 0x0 by default. ") GetPosition; void GetPosition(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** GetRange ******************/ - /**** md5 signature: 2b2ba75ae145a171d46ddece662d6e49 ****/ + /****** AIS_ColorScale::GetRange ******/ + /****** md5 signature: 2b2ba75ae145a171d46ddece662d6e49 ******/ %feature("compactdefaultargs") GetRange; %feature("autodoc", " Parameters @@ -11027,8 +11027,8 @@ Returns minimal and maximal values of color scale, 0.0 to 1.0 by default. ") GetRange; void GetRange(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** GetSize ******************/ - /**** md5 signature: bda5f3873fc73f6ed83df761bd931364 ****/ + /****** AIS_ColorScale::GetSize ******/ + /****** md5 signature: bda5f3873fc73f6ed83df761bd931364 ******/ %feature("compactdefaultargs") GetSize; %feature("autodoc", " Parameters @@ -11045,8 +11045,8 @@ Returns the size of color bar, 0 and 0 by default (e.g. should be set by user ex ") GetSize; void GetSize(Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** GetTextHeight ******************/ - /**** md5 signature: 56193ab0dbdc23a7fce07b41f86aef1c ****/ + /****** AIS_ColorScale::GetTextHeight ******/ + /****** md5 signature: 56193ab0dbdc23a7fce07b41f86aef1c ******/ %feature("compactdefaultargs") GetTextHeight; %feature("autodoc", "Return ------- @@ -11058,8 +11058,8 @@ Returns the font height of text labels, 20 by default. ") GetTextHeight; Standard_Integer GetTextHeight(); - /****************** GetTitle ******************/ - /**** md5 signature: a72936ae7a819e87d6c110c7a97925c7 ****/ + /****** AIS_ColorScale::GetTitle ******/ + /****** md5 signature: a72936ae7a819e87d6c110c7a97925c7 ******/ %feature("compactdefaultargs") GetTitle; %feature("autodoc", "Return ------- @@ -11071,8 +11071,8 @@ Returns the color scale title string, empty string by default. ") GetTitle; const TCollection_ExtendedString & GetTitle(); - /****************** GetTitlePosition ******************/ - /**** md5 signature: 6653dc38f69098958c96501f1a02b184 ****/ + /****** AIS_ColorScale::GetTitlePosition ******/ + /****** md5 signature: 6653dc38f69098958c96501f1a02b184 ******/ %feature("compactdefaultargs") GetTitlePosition; %feature("autodoc", "Return ------- @@ -11084,8 +11084,8 @@ Returns the position of color scale title, aspect_tocsp_left by default. ") GetTitlePosition; Aspect_TypeOfColorScalePosition GetTitlePosition(); - /****************** GetXPosition ******************/ - /**** md5 signature: 5d6923c1ea08e8ed4c013d7b9f0f3965 ****/ + /****** AIS_ColorScale::GetXPosition ******/ + /****** md5 signature: 5d6923c1ea08e8ed4c013d7b9f0f3965 ******/ %feature("compactdefaultargs") GetXPosition; %feature("autodoc", "Return ------- @@ -11097,8 +11097,8 @@ Returns the left position of color scale, 0 by default. ") GetXPosition; Standard_Integer GetXPosition(); - /****************** GetYPosition ******************/ - /**** md5 signature: 7cc4007da07d7e3f6d724dca71e8398d ****/ + /****** AIS_ColorScale::GetYPosition ******/ + /****** md5 signature: 7cc4007da07d7e3f6d724dca71e8398d ******/ %feature("compactdefaultargs") GetYPosition; %feature("autodoc", "Return ------- @@ -11110,8 +11110,8 @@ Returns the bottom position of color scale, 0 by default. ") GetYPosition; Standard_Integer GetYPosition(); - /****************** HueMax ******************/ - /**** md5 signature: e7799f032906a869b978e479658db84b ****/ + /****** AIS_ColorScale::HueMax ******/ + /****** md5 signature: e7799f032906a869b978e479658db84b ******/ %feature("compactdefaultargs") HueMax; %feature("autodoc", "Return ------- @@ -11123,8 +11123,8 @@ Returns the hue angle corresponding to maximum value, 0 by default (red). ") HueMax; Standard_Real HueMax(); - /****************** HueMin ******************/ - /**** md5 signature: 345bd0e79609339522ded27cde082f7c ****/ + /****** AIS_ColorScale::HueMin ******/ + /****** md5 signature: 345bd0e79609339522ded27cde082f7c ******/ %feature("compactdefaultargs") HueMin; %feature("autodoc", "Return ------- @@ -11136,8 +11136,8 @@ Returns the hue angle corresponding to minimum value, 230 by default (blue). ") HueMin; Standard_Real HueMin(); - /****************** HueRange ******************/ - /**** md5 signature: b7bf861498dcd72e2e9e1407ed935519 ****/ + /****** AIS_ColorScale::HueRange ******/ + /****** md5 signature: b7bf861498dcd72e2e9e1407ed935519 ******/ %feature("compactdefaultargs") HueRange; %feature("autodoc", " Parameters @@ -11154,8 +11154,8 @@ Returns the hue angle range corresponding to minimum and maximum values, 230 to ") HueRange; void HueRange(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** IsLabelAtBorder ******************/ - /**** md5 signature: e70dd3577bdc0d8d3eeffd5bc40cf067 ****/ + /****** AIS_ColorScale::IsLabelAtBorder ******/ + /****** md5 signature: e70dd3577bdc0d8d3eeffd5bc40cf067 ******/ %feature("compactdefaultargs") IsLabelAtBorder; %feature("autodoc", "Return ------- @@ -11167,8 +11167,8 @@ Returns true if the labels are placed at border of color intervals, true by defa ") IsLabelAtBorder; Standard_Boolean IsLabelAtBorder(); - /****************** IsLogarithmic ******************/ - /**** md5 signature: 206c126d3c03062d4da3f5821d473f35 ****/ + /****** AIS_ColorScale::IsLogarithmic ******/ + /****** md5 signature: 206c126d3c03062d4da3f5821d473f35 ******/ %feature("compactdefaultargs") IsLogarithmic; %feature("autodoc", "Return ------- @@ -11180,8 +11180,8 @@ Returns true if the color scale has logarithmic intervals, false by default. ") IsLogarithmic; Standard_Boolean IsLogarithmic(); - /****************** IsReversed ******************/ - /**** md5 signature: fc4392faff5ff74541d64e131a69df7d ****/ + /****** AIS_ColorScale::IsReversed ******/ + /****** md5 signature: fc4392faff5ff74541d64e131a69df7d ******/ %feature("compactdefaultargs") IsReversed; %feature("autodoc", "Return ------- @@ -11193,8 +11193,8 @@ Returns true if the labels and colors used in reversed order, false by default. ") IsReversed; Standard_Boolean IsReversed(); - /****************** IsSmoothTransition ******************/ - /**** md5 signature: 948f5603b0f0b0b71079796c742b4a27 ****/ + /****** AIS_ColorScale::IsSmoothTransition ******/ + /****** md5 signature: 948f5603b0f0b0b71079796c742b4a27 ******/ %feature("compactdefaultargs") IsSmoothTransition; %feature("autodoc", "Return ------- @@ -11206,8 +11206,8 @@ Return true if color transition between neighbor intervals should be linearly in ") IsSmoothTransition; Standard_Boolean IsSmoothTransition(); - /****************** Labels ******************/ - /**** md5 signature: ba9d9d591e9b7d0404c8a268dba1ff46 ****/ + /****** AIS_ColorScale::Labels ******/ + /****** md5 signature: ba9d9d591e9b7d0404c8a268dba1ff46 ******/ %feature("compactdefaultargs") Labels; %feature("autodoc", "Return ------- @@ -11219,8 +11219,8 @@ Returns the user specified labels. ") Labels; const TColStd_SequenceOfExtendedString & Labels(); - /****************** MakeUniformColors ******************/ - /**** md5 signature: c5509db5ca86935ada0aa1098b2c5016 ****/ + /****** AIS_ColorScale::MakeUniformColors ******/ + /****** md5 signature: c5509db5ca86935ada0aa1098b2c5016 ******/ %feature("compactdefaultargs") MakeUniformColors; %feature("autodoc", " Parameters @@ -11240,8 +11240,8 @@ Generates sequence of colors of the same lightness value in cie lch color space ") MakeUniformColors; static Aspect_SequenceOfColor MakeUniformColors(Standard_Integer theNbColors, Standard_Real theLightness, Standard_Real theHueFrom, Standard_Real theHueTo); - /****************** SetBreadth ******************/ - /**** md5 signature: b169d0a06d61cdb70c75cd65cf142545 ****/ + /****** AIS_ColorScale::SetBreadth ******/ + /****** md5 signature: b169d0a06d61cdb70c75cd65cf142545 ******/ %feature("compactdefaultargs") SetBreadth; %feature("autodoc", " Parameters @@ -11258,8 +11258,8 @@ Sets the width of color bar. ") SetBreadth; void SetBreadth(const Standard_Integer theBreadth); - /****************** SetColorRange ******************/ - /**** md5 signature: 3483915ea52d4e4643411a8644762be9 ****/ + /****** AIS_ColorScale::SetColorRange ******/ + /****** md5 signature: 3483915ea52d4e4643411a8644762be9 ******/ %feature("compactdefaultargs") SetColorRange; %feature("autodoc", " Parameters @@ -11277,8 +11277,8 @@ Sets color range corresponding to minimum and maximum values. ") SetColorRange; void SetColorRange(const Quantity_Color & theMinColor, const Quantity_Color & theMaxColor); - /****************** SetColorType ******************/ - /**** md5 signature: ccb79408e792e85c00c45c6bb9b717ac ****/ + /****** AIS_ColorScale::SetColorType ******/ + /****** md5 signature: ccb79408e792e85c00c45c6bb9b717ac ******/ %feature("compactdefaultargs") SetColorType; %feature("autodoc", " Parameters @@ -11295,8 +11295,8 @@ Sets the type of colors. aspect_tocsd_auto - value between red and blue aspect_t ") SetColorType; void SetColorType(const Aspect_TypeOfColorScaleData theType); - /****************** SetColors ******************/ - /**** md5 signature: 053f2a7e1146c7ff1caaf50c036ddd26 ****/ + /****** AIS_ColorScale::SetColors ******/ + /****** md5 signature: 053f2a7e1146c7ff1caaf50c036ddd26 ******/ %feature("compactdefaultargs") SetColors; %feature("autodoc", " Parameters @@ -11313,8 +11313,8 @@ Sets the color scale colors. the length of the sequence should be equal to getnu ") SetColors; void SetColors(const Aspect_SequenceOfColor & theSeq); - /****************** SetFormat ******************/ - /**** md5 signature: db500bbac847facf0570542df6d698c0 ****/ + /****** AIS_ColorScale::SetFormat ******/ + /****** md5 signature: db500bbac847facf0570542df6d698c0 ******/ %feature("compactdefaultargs") SetFormat; %feature("autodoc", " Parameters @@ -11331,8 +11331,8 @@ Sets the color scale auto label format specification. ") SetFormat; void SetFormat(TCollection_AsciiString theFormat); - /****************** SetHeight ******************/ - /**** md5 signature: e32aa97606dad72235a0a6b4a7c46ba6 ****/ + /****** AIS_ColorScale::SetHeight ******/ + /****** md5 signature: e32aa97606dad72235a0a6b4a7c46ba6 ******/ %feature("compactdefaultargs") SetHeight; %feature("autodoc", " Parameters @@ -11349,8 +11349,8 @@ Sets the height of color bar. ") SetHeight; void SetHeight(const Standard_Integer theHeight); - /****************** SetHueRange ******************/ - /**** md5 signature: f87adea70a6ccfaf228d21ab54a0cb26 ****/ + /****** AIS_ColorScale::SetHueRange ******/ + /****** md5 signature: f87adea70a6ccfaf228d21ab54a0cb26 ******/ %feature("compactdefaultargs") SetHueRange; %feature("autodoc", " Parameters @@ -11368,8 +11368,8 @@ Sets hue angle range corresponding to minimum and maximum values. the valid angl ") SetHueRange; void SetHueRange(const Standard_Real theMinAngle, const Standard_Real theMaxAngle); - /****************** SetIntervalColor ******************/ - /**** md5 signature: 754d258b8a860b7f9a3fdd24835d1977 ****/ + /****** AIS_ColorScale::SetIntervalColor ******/ + /****** md5 signature: 754d258b8a860b7f9a3fdd24835d1977 ******/ %feature("compactdefaultargs") SetIntervalColor; %feature("autodoc", " Parameters @@ -11387,8 +11387,8 @@ Sets the color of the specified interval. note that list is automatically resize ") SetIntervalColor; void SetIntervalColor(const Quantity_Color & theColor, const Standard_Integer theIndex); - /****************** SetLabel ******************/ - /**** md5 signature: cfbcf70c0fd3a5586d1e2aa40a279820 ****/ + /****** AIS_ColorScale::SetLabel ******/ + /****** md5 signature: cfbcf70c0fd3a5586d1e2aa40a279820 ******/ %feature("compactdefaultargs") SetLabel; %feature("autodoc", " Parameters @@ -11406,8 +11406,8 @@ Sets the color scale label at index. note that list is automatically resized to ") SetLabel; void SetLabel(TCollection_ExtendedString theLabel, const Standard_Integer theIndex); - /****************** SetLabelAtBorder ******************/ - /**** md5 signature: 2e74089f2855b82e157ab10779d34d9a ****/ + /****** AIS_ColorScale::SetLabelAtBorder ******/ + /****** md5 signature: 2e74089f2855b82e157ab10779d34d9a ******/ %feature("compactdefaultargs") SetLabelAtBorder; %feature("autodoc", " Parameters @@ -11424,8 +11424,8 @@ Sets true if the labels are placed at border of color intervals (true by default ") SetLabelAtBorder; void SetLabelAtBorder(const Standard_Boolean theOn); - /****************** SetLabelPosition ******************/ - /**** md5 signature: f2079deb9de667b1bdebac8fa78780a5 ****/ + /****** AIS_ColorScale::SetLabelPosition ******/ + /****** md5 signature: f2079deb9de667b1bdebac8fa78780a5 ******/ %feature("compactdefaultargs") SetLabelPosition; %feature("autodoc", " Parameters @@ -11442,8 +11442,8 @@ Sets the color scale labels position relative to color bar. ") SetLabelPosition; void SetLabelPosition(const Aspect_TypeOfColorScalePosition thePos); - /****************** SetLabelType ******************/ - /**** md5 signature: 25ca56d3438d8f07cae52daa92e3c673 ****/ + /****** AIS_ColorScale::SetLabelType ******/ + /****** md5 signature: 25ca56d3438d8f07cae52daa92e3c673 ******/ %feature("compactdefaultargs") SetLabelType; %feature("autodoc", " Parameters @@ -11460,8 +11460,8 @@ Sets the type of labels. aspect_tocsd_auto - labels as boundary values for inter ") SetLabelType; void SetLabelType(const Aspect_TypeOfColorScaleData theType); - /****************** SetLabels ******************/ - /**** md5 signature: bfef69cf016bddb79975f840b471e057 ****/ + /****** AIS_ColorScale::SetLabels ******/ + /****** md5 signature: bfef69cf016bddb79975f840b471e057 ******/ %feature("compactdefaultargs") SetLabels; %feature("autodoc", " Parameters @@ -11478,8 +11478,8 @@ Sets the color scale labels. the length of the sequence should be equal to getnu ") SetLabels; void SetLabels(const TColStd_SequenceOfExtendedString & theSeq); - /****************** SetLogarithmic ******************/ - /**** md5 signature: 1aa9b8cbb29d4a6b236745d92f8bbb26 ****/ + /****** AIS_ColorScale::SetLogarithmic ******/ + /****** md5 signature: 1aa9b8cbb29d4a6b236745d92f8bbb26 ******/ %feature("compactdefaultargs") SetLogarithmic; %feature("autodoc", " Parameters @@ -11496,8 +11496,8 @@ Sets true if the color scale has logarithmic intervals. ") SetLogarithmic; void SetLogarithmic(const Standard_Boolean isLogarithmic); - /****************** SetMax ******************/ - /**** md5 signature: 4c20d3fea95945d42f75fa966f2ad673 ****/ + /****** AIS_ColorScale::SetMax ******/ + /****** md5 signature: 4c20d3fea95945d42f75fa966f2ad673 ******/ %feature("compactdefaultargs") SetMax; %feature("autodoc", " Parameters @@ -11514,8 +11514,8 @@ Sets the maximal value of color scale. ") SetMax; void SetMax(const Standard_Real theMax); - /****************** SetMin ******************/ - /**** md5 signature: 6921ecfd3ae542273e85c8630eea2b3b ****/ + /****** AIS_ColorScale::SetMin ******/ + /****** md5 signature: 6921ecfd3ae542273e85c8630eea2b3b ******/ %feature("compactdefaultargs") SetMin; %feature("autodoc", " Parameters @@ -11532,8 +11532,8 @@ Sets the minimal value of color scale. ") SetMin; void SetMin(const Standard_Real theMin); - /****************** SetNumberOfIntervals ******************/ - /**** md5 signature: a481601d8f65c5086c8cf8207d34c5e2 ****/ + /****** AIS_ColorScale::SetNumberOfIntervals ******/ + /****** md5 signature: a481601d8f65c5086c8cf8207d34c5e2 ******/ %feature("compactdefaultargs") SetNumberOfIntervals; %feature("autodoc", " Parameters @@ -11550,8 +11550,8 @@ Sets the number of color scale intervals. ") SetNumberOfIntervals; void SetNumberOfIntervals(const Standard_Integer theNum); - /****************** SetPosition ******************/ - /**** md5 signature: c59d56150ba74cb250a9febbb8af984d ****/ + /****** AIS_ColorScale::SetPosition ******/ + /****** md5 signature: c59d56150ba74cb250a9febbb8af984d ******/ %feature("compactdefaultargs") SetPosition; %feature("autodoc", " Parameters @@ -11569,8 +11569,8 @@ Sets the position of color scale. ") SetPosition; void SetPosition(const Standard_Integer theX, const Standard_Integer theY); - /****************** SetRange ******************/ - /**** md5 signature: 447e6555076e1c4cb2530ad76fe5dd51 ****/ + /****** AIS_ColorScale::SetRange ******/ + /****** md5 signature: 447e6555076e1c4cb2530ad76fe5dd51 ******/ %feature("compactdefaultargs") SetRange; %feature("autodoc", " Parameters @@ -11588,8 +11588,8 @@ Sets the minimal and maximal value of color scale. note that values order will b ") SetRange; void SetRange(const Standard_Real theMin, const Standard_Real theMax); - /****************** SetReversed ******************/ - /**** md5 signature: 76e30efca3b6a2aa0c8a38b4b2cb3c1f ****/ + /****** AIS_ColorScale::SetReversed ******/ + /****** md5 signature: 76e30efca3b6a2aa0c8a38b4b2cb3c1f ******/ %feature("compactdefaultargs") SetReversed; %feature("autodoc", " Parameters @@ -11606,8 +11606,8 @@ Sets true if the labels and colors used in reversed order. ") SetReversed; void SetReversed(const Standard_Boolean theReverse); - /****************** SetSize ******************/ - /**** md5 signature: cffb0141a67df2198798e06d0162c5fa ****/ + /****** AIS_ColorScale::SetSize ******/ + /****** md5 signature: cffb0141a67df2198798e06d0162c5fa ******/ %feature("compactdefaultargs") SetSize; %feature("autodoc", " Parameters @@ -11625,8 +11625,8 @@ Sets the size of color bar. ") SetSize; void SetSize(const Standard_Integer theBreadth, const Standard_Integer theHeight); - /****************** SetSmoothTransition ******************/ - /**** md5 signature: 2f4cc203f3ce19aa09e9aa11dc5041b3 ****/ + /****** AIS_ColorScale::SetSmoothTransition ******/ + /****** md5 signature: 2f4cc203f3ce19aa09e9aa11dc5041b3 ******/ %feature("compactdefaultargs") SetSmoothTransition; %feature("autodoc", " Parameters @@ -11643,8 +11643,8 @@ Setup smooth color transition. ") SetSmoothTransition; void SetSmoothTransition(const Standard_Boolean theIsSmooth); - /****************** SetTextHeight ******************/ - /**** md5 signature: 376d7cbb786e7d59161a71cca5489791 ****/ + /****** AIS_ColorScale::SetTextHeight ******/ + /****** md5 signature: 376d7cbb786e7d59161a71cca5489791 ******/ %feature("compactdefaultargs") SetTextHeight; %feature("autodoc", " Parameters @@ -11661,8 +11661,8 @@ Sets the height of text of color scale. ") SetTextHeight; void SetTextHeight(const Standard_Integer theHeight); - /****************** SetTitle ******************/ - /**** md5 signature: 1858779efdb47aad84406fafb11b64f2 ****/ + /****** AIS_ColorScale::SetTitle ******/ + /****** md5 signature: 1858779efdb47aad84406fafb11b64f2 ******/ %feature("compactdefaultargs") SetTitle; %feature("autodoc", " Parameters @@ -11679,8 +11679,8 @@ Sets the color scale title string. ") SetTitle; void SetTitle(TCollection_ExtendedString theTitle); - /****************** SetTitlePosition ******************/ - /**** md5 signature: ffb68e1026952762986ee0e118b51626 ****/ + /****** AIS_ColorScale::SetTitlePosition ******/ + /****** md5 signature: ffb68e1026952762986ee0e118b51626 ******/ %feature("compactdefaultargs") SetTitlePosition; %feature("autodoc", " Parameters @@ -11697,8 +11697,8 @@ Sets the color scale title position. ") SetTitlePosition; void SetTitlePosition(const Aspect_TypeOfColorScalePosition thePos); - /****************** SetUniformColors ******************/ - /**** md5 signature: 643a34948e3de542baf241bb7740e782 ****/ + /****** AIS_ColorScale::SetUniformColors ******/ + /****** md5 signature: 643a34948e3de542baf241bb7740e782 ******/ %feature("compactdefaultargs") SetUniformColors; %feature("autodoc", " Parameters @@ -11717,8 +11717,8 @@ Populates colors scale by colors of the same lightness value in cie lch color sp ") SetUniformColors; void SetUniformColors(Standard_Real theLightness, Standard_Real theHueFrom, Standard_Real theHueTo); - /****************** SetXPosition ******************/ - /**** md5 signature: a0e6df9560ed6e5302a5d7db2ecacdf8 ****/ + /****** AIS_ColorScale::SetXPosition ******/ + /****** md5 signature: a0e6df9560ed6e5302a5d7db2ecacdf8 ******/ %feature("compactdefaultargs") SetXPosition; %feature("autodoc", " Parameters @@ -11735,8 +11735,8 @@ Sets the left position of color scale. ") SetXPosition; void SetXPosition(const Standard_Integer theX); - /****************** SetYPosition ******************/ - /**** md5 signature: c54835c4c8e01730d64532eb5a13a6e2 ****/ + /****** AIS_ColorScale::SetYPosition ******/ + /****** md5 signature: c54835c4c8e01730d64532eb5a13a6e2 ******/ %feature("compactdefaultargs") SetYPosition; %feature("autodoc", " Parameters @@ -11753,8 +11753,8 @@ Sets the bottom position of color scale. ") SetYPosition; void SetYPosition(const Standard_Integer theY); - /****************** TextHeight ******************/ - /**** md5 signature: f1b1fbe39606e457f13a36a5111da3f5 ****/ + /****** AIS_ColorScale::TextHeight ******/ + /****** md5 signature: f1b1fbe39606e457f13a36a5111da3f5 ******/ %feature("compactdefaultargs") TextHeight; %feature("autodoc", " Parameters @@ -11771,8 +11771,8 @@ Returns the height of text. @param thetext [in] the text of which to calculate h ") TextHeight; Standard_Integer TextHeight(TCollection_ExtendedString theText); - /****************** TextSize ******************/ - /**** md5 signature: df57c5cfbbb6f8f9a5d75ce1943f61ab ****/ + /****** AIS_ColorScale::TextSize ******/ + /****** md5 signature: df57c5cfbbb6f8f9a5d75ce1943f61ab ******/ %feature("compactdefaultargs") TextSize; %feature("autodoc", " Parameters @@ -11792,8 +11792,8 @@ No available documentation. ") TextSize; void TextSize(TCollection_ExtendedString theText, const Standard_Integer theHeight, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** TextWidth ******************/ - /**** md5 signature: ef6e59d61da317f2087b0778bbc36b23 ****/ + /****** AIS_ColorScale::TextWidth ******/ + /****** md5 signature: ef6e59d61da317f2087b0778bbc36b23 ******/ %feature("compactdefaultargs") TextWidth; %feature("autodoc", " Parameters @@ -11810,8 +11810,8 @@ Returns the width of text. @param thetext [in] the text of which to calculate wi ") TextWidth; Standard_Integer TextWidth(TCollection_ExtendedString theText); - /****************** hueToValidRange ******************/ - /**** md5 signature: f60f245014fce41540c5cd6f560cd4ad ****/ + /****** AIS_ColorScale::hueToValidRange ******/ + /****** md5 signature: f60f245014fce41540c5cd6f560cd4ad ******/ %feature("compactdefaultargs") hueToValidRange; %feature("autodoc", " Parameters @@ -11844,8 +11844,8 @@ Shift hue into valid range. lightness and saturation should be specified in vali *********************************/ class AIS_ConnectedInteractive : public AIS_InteractiveObject { public: - /****************** AIS_ConnectedInteractive ******************/ - /**** md5 signature: 377e611268f08de16ae81b87c0243098 ****/ + /****** AIS_ConnectedInteractive::AIS_ConnectedInteractive ******/ + /****** md5 signature: 377e611268f08de16ae81b87c0243098 ******/ %feature("compactdefaultargs") AIS_ConnectedInteractive; %feature("autodoc", " Parameters @@ -11862,8 +11862,8 @@ Disconnects the previous view and sets highlight mode to 0. this highlights the ") AIS_ConnectedInteractive; AIS_ConnectedInteractive(const PrsMgr_TypeOfPresentation3d aTypeOfPresentation3d = PrsMgr_TOP_AllView); - /****************** AcceptDisplayMode ******************/ - /**** md5 signature: 4c81f1c2cfc05fd196e1c09a383a3455 ****/ + /****** AIS_ConnectedInteractive::AcceptDisplayMode ******/ + /****** md5 signature: 4c81f1c2cfc05fd196e1c09a383a3455 ******/ %feature("compactdefaultargs") AcceptDisplayMode; %feature("autodoc", " Parameters @@ -11880,8 +11880,8 @@ Return true if reference presentation accepts specified display mode. ") AcceptDisplayMode; virtual Standard_Boolean AcceptDisplayMode(const Standard_Integer theMode); - /****************** AcceptShapeDecomposition ******************/ - /**** md5 signature: 9203a7c0dd9eda460f91938a68e9d24e ****/ + /****** AIS_ConnectedInteractive::AcceptShapeDecomposition ******/ + /****** md5 signature: 9203a7c0dd9eda460f91938a68e9d24e ******/ %feature("compactdefaultargs") AcceptShapeDecomposition; %feature("autodoc", "Return ------- @@ -11893,8 +11893,8 @@ Informs the graphic context that the interactive object may be decomposed into s ") AcceptShapeDecomposition; virtual Standard_Boolean AcceptShapeDecomposition(); - /****************** Connect ******************/ - /**** md5 signature: 76ce604e5db4b247a8706638259ec61c ****/ + /****** AIS_ConnectedInteractive::Connect ******/ + /****** md5 signature: 76ce604e5db4b247a8706638259ec61c ******/ %feature("compactdefaultargs") Connect; %feature("autodoc", " Parameters @@ -11911,8 +11911,8 @@ Establishes the connection between the connected interactive object, anotheriobj ") Connect; void Connect(const opencascade::handle & theAnotherObj); - /****************** Connect ******************/ - /**** md5 signature: 966dfec391c604c7ae9629c925cdd1c4 ****/ + /****** AIS_ConnectedInteractive::Connect ******/ + /****** md5 signature: 966dfec391c604c7ae9629c925cdd1c4 ******/ %feature("compactdefaultargs") Connect; %feature("autodoc", " Parameters @@ -11930,8 +11930,8 @@ Establishes the connection between the connected interactive object, anotheriobj ") Connect; void Connect(const opencascade::handle & theAnotherObj, const gp_Trsf & theLocation); - /****************** Connect ******************/ - /**** md5 signature: 418505c88f7f147f47107d38894767f1 ****/ + /****** AIS_ConnectedInteractive::Connect ******/ + /****** md5 signature: 418505c88f7f147f47107d38894767f1 ******/ %feature("compactdefaultargs") Connect; %feature("autodoc", " Parameters @@ -11949,8 +11949,8 @@ Establishes the connection between the connected interactive object, anotheriobj ") Connect; void Connect(const opencascade::handle & theAnotherObj, const opencascade::handle & theLocation); - /****************** ConnectedTo ******************/ - /**** md5 signature: 1541a2cb7b3a6f95f8064287356a8f2c ****/ + /****** AIS_ConnectedInteractive::ConnectedTo ******/ + /****** md5 signature: 1541a2cb7b3a6f95f8064287356a8f2c ******/ %feature("compactdefaultargs") ConnectedTo; %feature("autodoc", "Return ------- @@ -11962,8 +11962,8 @@ Returns the connection with the reference interactive object. ") ConnectedTo; const opencascade::handle & ConnectedTo(); - /****************** Disconnect ******************/ - /**** md5 signature: 3c68b068054eba545e5aa24799ed950d ****/ + /****** AIS_ConnectedInteractive::Disconnect ******/ + /****** md5 signature: 3c68b068054eba545e5aa24799ed950d ******/ %feature("compactdefaultargs") Disconnect; %feature("autodoc", "Return ------- @@ -11975,8 +11975,8 @@ Clears the connection with a source reference. the presentation will no longer b ") Disconnect; void Disconnect(); - /****************** HasConnection ******************/ - /**** md5 signature: e23c7e5e57b8a56096bab865a5988291 ****/ + /****** AIS_ConnectedInteractive::HasConnection ******/ + /****** md5 signature: e23c7e5e57b8a56096bab865a5988291 ******/ %feature("compactdefaultargs") HasConnection; %feature("autodoc", "Return ------- @@ -11988,8 +11988,8 @@ Returns true if there is a connection established between the presentation and i ") HasConnection; Standard_Boolean HasConnection(); - /****************** Signature ******************/ - /**** md5 signature: 4e037e01ba764fd5d5261e3d9ba6557d ****/ + /****** AIS_ConnectedInteractive::Signature ******/ + /****** md5 signature: 4e037e01ba764fd5d5261e3d9ba6557d ******/ %feature("compactdefaultargs") Signature; %feature("autodoc", "Return ------- @@ -12001,8 +12001,8 @@ Returns 0. ") Signature; virtual Standard_Integer Signature(); - /****************** Type ******************/ - /**** md5 signature: bf4aea6b24d0b584b57c781f208134ec ****/ + /****** AIS_ConnectedInteractive::Type ******/ + /****** md5 signature: bf4aea6b24d0b584b57c781f208134ec ******/ %feature("compactdefaultargs") Type; %feature("autodoc", "Return ------- @@ -12030,8 +12030,8 @@ Returns koi_object. ************************/ class AIS_LightSource : public AIS_InteractiveObject { public: - /****************** AIS_LightSource ******************/ - /**** md5 signature: 0052d1e81d2de0d4f85d4355071d4c6e ****/ + /****** AIS_LightSource::AIS_LightSource ******/ + /****** md5 signature: 0052d1e81d2de0d4f85d4355071d4c6e ******/ %feature("compactdefaultargs") AIS_LightSource; %feature("autodoc", " Parameters @@ -12048,8 +12048,8 @@ Initializes the light source by copying graphic3d_clight settings. ") AIS_LightSource; AIS_LightSource(const opencascade::handle & theLightSource); - /****************** ArcSize ******************/ - /**** md5 signature: 51ce064e7920840d08ae5330358aab35 ****/ + /****** AIS_LightSource::ArcSize ******/ + /****** md5 signature: 51ce064e7920840d08ae5330358aab35 ******/ %feature("compactdefaultargs") ArcSize; %feature("autodoc", "Return ------- @@ -12061,8 +12061,8 @@ Returns sensitive sphere arc size in pixels; 20 by default. ") ArcSize; Standard_Integer ArcSize(); - /****************** IsZoomable ******************/ - /**** md5 signature: 0e11552facaac98faf2474f0071c0b9d ****/ + /****** AIS_LightSource::IsZoomable ******/ + /****** md5 signature: 0e11552facaac98faf2474f0071c0b9d ******/ %feature("compactdefaultargs") IsZoomable; %feature("autodoc", "Return ------- @@ -12074,8 +12074,8 @@ Returns true if transform-persistence is allowed; true by default for ambient an ") IsZoomable; bool IsZoomable(); - /****************** Light ******************/ - /**** md5 signature: 214a553f85b1ef4686d7ae852494295b ****/ + /****** AIS_LightSource::Light ******/ + /****** md5 signature: 214a553f85b1ef4686d7ae852494295b ******/ %feature("compactdefaultargs") Light; %feature("autodoc", "Return ------- @@ -12087,8 +12087,8 @@ Returns the light. ") Light; const opencascade::handle & Light(); - /****************** MarkerImage ******************/ - /**** md5 signature: 9fa6877c3a5222f7e4f2cd4481cff78c ****/ + /****** AIS_LightSource::MarkerImage ******/ + /****** md5 signature: 9fa6877c3a5222f7e4f2cd4481cff78c ******/ %feature("compactdefaultargs") MarkerImage; %feature("autodoc", " Parameters @@ -12105,8 +12105,8 @@ Returns light source icon. @param theisenabled [in] marker index for enabled/dis ") MarkerImage; const opencascade::handle & MarkerImage(bool theIsEnabled); - /****************** MarkerType ******************/ - /**** md5 signature: 9dc5f63506bba9b44b67e3b05b759d65 ****/ + /****** AIS_LightSource::MarkerType ******/ + /****** md5 signature: 9dc5f63506bba9b44b67e3b05b759d65 ******/ %feature("compactdefaultargs") MarkerType; %feature("autodoc", " Parameters @@ -12123,8 +12123,8 @@ Returns light source icon. @param theisenabled [in] marker index for enabled/dis ") MarkerType; Aspect_TypeOfMarker MarkerType(bool theIsEnabled); - /****************** NbArrows ******************/ - /**** md5 signature: 08e533c060d75469cc6a758b3bf99584 ****/ + /****** AIS_LightSource::NbArrows ******/ + /****** md5 signature: 08e533c060d75469cc6a758b3bf99584 ******/ %feature("compactdefaultargs") NbArrows; %feature("autodoc", "Return ------- @@ -12136,8 +12136,8 @@ Returns a number of directional light arrows to display; 5 by default. ") NbArrows; Standard_Integer NbArrows(); - /****************** NbSplitsArrow ******************/ - /**** md5 signature: 6f408c367866603aaf9e7027b91d3783 ****/ + /****** AIS_LightSource::NbSplitsArrow ******/ + /****** md5 signature: 6f408c367866603aaf9e7027b91d3783 ******/ %feature("compactdefaultargs") NbSplitsArrow; %feature("autodoc", "Return ------- @@ -12149,8 +12149,8 @@ Returns tessellation level for arrows; 20 by default. ") NbSplitsArrow; Standard_Integer NbSplitsArrow(); - /****************** NbSplitsQuadric ******************/ - /**** md5 signature: 3307810c4e75bc09a5065f7d61b55f0d ****/ + /****** AIS_LightSource::NbSplitsQuadric ******/ + /****** md5 signature: 3307810c4e75bc09a5065f7d61b55f0d ******/ %feature("compactdefaultargs") NbSplitsQuadric; %feature("autodoc", "Return ------- @@ -12162,8 +12162,8 @@ Returns tessellation level for quadric surfaces; 30 by default. ") NbSplitsQuadric; Standard_Integer NbSplitsQuadric(); - /****************** SetArcSize ******************/ - /**** md5 signature: 5a3d58d9a58774a120f81b4638e45506 ****/ + /****** AIS_LightSource::SetArcSize ******/ + /****** md5 signature: 5a3d58d9a58774a120f81b4638e45506 ******/ %feature("compactdefaultargs") SetArcSize; %feature("autodoc", " Parameters @@ -12180,8 +12180,8 @@ Sets the size of sensitive sphere arc. ") SetArcSize; void SetArcSize(Standard_Integer theSize); - /****************** SetDisplayName ******************/ - /**** md5 signature: 0df1158ac90d9de14d12ea49eb28b523 ****/ + /****** AIS_LightSource::SetDisplayName ******/ + /****** md5 signature: 0df1158ac90d9de14d12ea49eb28b523 ******/ %feature("compactdefaultargs") SetDisplayName; %feature("autodoc", " Parameters @@ -12198,8 +12198,8 @@ Show/hide light source name. ") SetDisplayName; void SetDisplayName(Standard_Boolean theToDisplay); - /****************** SetDisplayRange ******************/ - /**** md5 signature: 0bd5c9f32b785f6e95c9c58405178361 ****/ + /****** AIS_LightSource::SetDisplayRange ******/ + /****** md5 signature: 0bd5c9f32b785f6e95c9c58405178361 ******/ %feature("compactdefaultargs") SetDisplayRange; %feature("autodoc", " Parameters @@ -12216,8 +12216,8 @@ Show/hide light source range shaded presentation. ") SetDisplayRange; void SetDisplayRange(Standard_Boolean theToDisplay); - /****************** SetDraggable ******************/ - /**** md5 signature: 5d216231b8eb7eb27307d5eb7408eefb ****/ + /****** AIS_LightSource::SetDraggable ******/ + /****** md5 signature: 5d216231b8eb7eb27307d5eb7408eefb ******/ %feature("compactdefaultargs") SetDraggable; %feature("autodoc", " Parameters @@ -12234,8 +12234,8 @@ Sets if dragging is allowed. ") SetDraggable; void SetDraggable(bool theIsDraggable); - /****************** SetLight ******************/ - /**** md5 signature: ce31662804605d4873b310f2a6d763c9 ****/ + /****** AIS_LightSource::SetLight ******/ + /****** md5 signature: ce31662804605d4873b310f2a6d763c9 ******/ %feature("compactdefaultargs") SetLight; %feature("autodoc", " Parameters @@ -12252,8 +12252,8 @@ Set the light. ") SetLight; void SetLight(const opencascade::handle & theLight); - /****************** SetMarkerImage ******************/ - /**** md5 signature: dc256bfcd47e005efd4fe7461270e9e3 ****/ + /****** AIS_LightSource::SetMarkerImage ******/ + /****** md5 signature: dc256bfcd47e005efd4fe7461270e9e3 ******/ %feature("compactdefaultargs") SetMarkerImage; %feature("autodoc", " Parameters @@ -12271,8 +12271,8 @@ Sets custom icon to light source. ") SetMarkerImage; void SetMarkerImage(const opencascade::handle & theImage, bool theIsEnabled); - /****************** SetMarkerType ******************/ - /**** md5 signature: 3f31956a7405775b0ff57aeb49f530f4 ****/ + /****** AIS_LightSource::SetMarkerType ******/ + /****** md5 signature: 3f31956a7405775b0ff57aeb49f530f4 ******/ %feature("compactdefaultargs") SetMarkerType; %feature("autodoc", " Parameters @@ -12290,8 +12290,8 @@ Sets standard icon to light source. ") SetMarkerType; void SetMarkerType(Aspect_TypeOfMarker theType, bool theIsEnabled); - /****************** SetNbArrows ******************/ - /**** md5 signature: 1241cb37383b0436b58b3aa64c069a40 ****/ + /****** AIS_LightSource::SetNbArrows ******/ + /****** md5 signature: 1241cb37383b0436b58b3aa64c069a40 ******/ %feature("compactdefaultargs") SetNbArrows; %feature("autodoc", " Parameters @@ -12308,8 +12308,8 @@ Returns a number of directional light arrows to display (supported values: 1, 3, ") SetNbArrows; void SetNbArrows(Standard_Integer theNbArrows); - /****************** SetNbSplitsArrow ******************/ - /**** md5 signature: a3e56a773947a88b8ca4621a18b95941 ****/ + /****** AIS_LightSource::SetNbSplitsArrow ******/ + /****** md5 signature: a3e56a773947a88b8ca4621a18b95941 ******/ %feature("compactdefaultargs") SetNbSplitsArrow; %feature("autodoc", " Parameters @@ -12326,8 +12326,8 @@ Sets tessellation level for arrows. ") SetNbSplitsArrow; void SetNbSplitsArrow(Standard_Integer theNbSplits); - /****************** SetNbSplitsQuadric ******************/ - /**** md5 signature: b7536ec764c87e16c01603c3fbc174f8 ****/ + /****** AIS_LightSource::SetNbSplitsQuadric ******/ + /****** md5 signature: b7536ec764c87e16c01603c3fbc174f8 ******/ %feature("compactdefaultargs") SetNbSplitsQuadric; %feature("autodoc", " Parameters @@ -12344,8 +12344,8 @@ Sets tessellation level for quadric surfaces. ") SetNbSplitsQuadric; void SetNbSplitsQuadric(Standard_Integer theNbSplits); - /****************** SetSize ******************/ - /**** md5 signature: c110f2a475d2740bb05e539d92d74946 ****/ + /****** AIS_LightSource::SetSize ******/ + /****** md5 signature: c110f2a475d2740bb05e539d92d74946 ******/ %feature("compactdefaultargs") SetSize; %feature("autodoc", " Parameters @@ -12362,8 +12362,8 @@ Sets the size of presentation. ") SetSize; void SetSize(Standard_Real theSize); - /****************** SetSwitchOnClick ******************/ - /**** md5 signature: 97b94ff7d25449db3028d59cb20146de ****/ + /****** AIS_LightSource::SetSwitchOnClick ******/ + /****** md5 signature: 97b94ff7d25449db3028d59cb20146de ******/ %feature("compactdefaultargs") SetSwitchOnClick; %feature("autodoc", " Parameters @@ -12380,8 +12380,8 @@ Sets if mouse click should turn light on/off. ") SetSwitchOnClick; void SetSwitchOnClick(bool theToHandle); - /****************** SetZoomable ******************/ - /**** md5 signature: 97ffe04fce7ef540e2fce9a76dd33eaa ****/ + /****** AIS_LightSource::SetZoomable ******/ + /****** md5 signature: 97ffe04fce7ef540e2fce9a76dd33eaa ******/ %feature("compactdefaultargs") SetZoomable; %feature("autodoc", " Parameters @@ -12398,8 +12398,8 @@ Sets if transform-persistence is allowed. ") SetZoomable; void SetZoomable(bool theIsZoomable); - /****************** Size ******************/ - /**** md5 signature: 0113d47673ecbdcb4822fb85c27ac0c5 ****/ + /****** AIS_LightSource::Size ******/ + /****** md5 signature: 0113d47673ecbdcb4822fb85c27ac0c5 ******/ %feature("compactdefaultargs") Size; %feature("autodoc", "Return ------- @@ -12411,8 +12411,8 @@ Returns the size of presentation; 50 by default. ") Size; Standard_Real Size(); - /****************** ToDisplayName ******************/ - /**** md5 signature: 017d2ca9b70c34687c2520bc2f6310a7 ****/ + /****** AIS_LightSource::ToDisplayName ******/ + /****** md5 signature: 017d2ca9b70c34687c2520bc2f6310a7 ******/ %feature("compactdefaultargs") ToDisplayName; %feature("autodoc", "Return ------- @@ -12424,8 +12424,8 @@ Returns true if the light source name should be displayed; true by default. ") ToDisplayName; Standard_Boolean ToDisplayName(); - /****************** ToDisplayRange ******************/ - /**** md5 signature: d8300aa4d3867fb20b32d03da894e242 ****/ + /****** AIS_LightSource::ToDisplayRange ******/ + /****** md5 signature: d8300aa4d3867fb20b32d03da894e242 ******/ %feature("compactdefaultargs") ToDisplayRange; %feature("autodoc", "Return ------- @@ -12437,8 +12437,8 @@ Returns true to display light source range as sphere (positional light) or cone ") ToDisplayRange; Standard_Boolean ToDisplayRange(); - /****************** ToSwitchOnClick ******************/ - /**** md5 signature: ecdef05201eb6d53f5b9f95f9a193655 ****/ + /****** AIS_LightSource::ToSwitchOnClick ******/ + /****** md5 signature: ecdef05201eb6d53f5b9f95f9a193655 ******/ %feature("compactdefaultargs") ToSwitchOnClick; %feature("autodoc", "Return ------- @@ -12450,8 +12450,8 @@ Returns true if mouse click will turn light on/off; true by default. ") ToSwitchOnClick; bool ToSwitchOnClick(); - /****************** Type ******************/ - /**** md5 signature: bf4aea6b24d0b584b57c781f208134ec ****/ + /****** AIS_LightSource::Type ******/ + /****** md5 signature: bf4aea6b24d0b584b57c781f208134ec ******/ %feature("compactdefaultargs") Type; %feature("autodoc", "Return ------- @@ -12477,8 +12477,8 @@ Returns kind of the object. *****************/ class AIS_Line : public AIS_InteractiveObject { public: - /****************** AIS_Line ******************/ - /**** md5 signature: 8bbcd784a7e573aad13b95eda3357ac2 ****/ + /****** AIS_Line::AIS_Line ******/ + /****** md5 signature: 8bbcd784a7e573aad13b95eda3357ac2 ******/ %feature("compactdefaultargs") AIS_Line; %feature("autodoc", " Parameters @@ -12495,8 +12495,8 @@ Initializes the line aline. ") AIS_Line; AIS_Line(const opencascade::handle & aLine); - /****************** AIS_Line ******************/ - /**** md5 signature: 2068a18405f77f106bfd8618f346ed47 ****/ + /****** AIS_Line::AIS_Line ******/ + /****** md5 signature: 2068a18405f77f106bfd8618f346ed47 ******/ %feature("compactdefaultargs") AIS_Line; %feature("autodoc", " Parameters @@ -12514,8 +12514,8 @@ Initializes a starting point astartpoint and a finishing point aendpoint for the ") AIS_Line; AIS_Line(const opencascade::handle & aStartPoint, const opencascade::handle & aEndPoint); - /****************** Line ******************/ - /**** md5 signature: 3abeaae7f4e4373ddc51d06b177bee17 ****/ + /****** AIS_Line::Line ******/ + /****** md5 signature: 3abeaae7f4e4373ddc51d06b177bee17 ******/ %feature("compactdefaultargs") Line; %feature("autodoc", "Return ------- @@ -12527,8 +12527,8 @@ Constructs an infinite line. ") Line; const opencascade::handle & Line(); - /****************** Points ******************/ - /**** md5 signature: 4980115aa3f0510a68a255ca82f83258 ****/ + /****** AIS_Line::Points ******/ + /****** md5 signature: 4980115aa3f0510a68a255ca82f83258 ******/ %feature("compactdefaultargs") Points; %feature("autodoc", " Parameters @@ -12546,8 +12546,8 @@ Returns the starting point thepstart and the end point thepend of the line set b ") Points; void Points(opencascade::handle & thePStart, opencascade::handle & thePEnd); - /****************** SetColor ******************/ - /**** md5 signature: 6b2b764a1e8ffb5d1aa4218d6218005c ****/ + /****** AIS_Line::SetColor ******/ + /****** md5 signature: 6b2b764a1e8ffb5d1aa4218d6218005c ******/ %feature("compactdefaultargs") SetColor; %feature("autodoc", " Parameters @@ -12564,8 +12564,8 @@ Provides a new color setting acolor for the line in the drawing tool, or 'drawer ") SetColor; void SetColor(const Quantity_Color & aColor); - /****************** SetLine ******************/ - /**** md5 signature: 1110fcc783ccf875a09ba25ff81a4115 ****/ + /****** AIS_Line::SetLine ******/ + /****** md5 signature: 1110fcc783ccf875a09ba25ff81a4115 ******/ %feature("compactdefaultargs") SetLine; %feature("autodoc", " Parameters @@ -12582,8 +12582,8 @@ Instantiates an infinite line. ") SetLine; void SetLine(const opencascade::handle & theLine); - /****************** SetPoints ******************/ - /**** md5 signature: ce5646c69ff404ac863ce5401ebb4524 ****/ + /****** AIS_Line::SetPoints ******/ + /****** md5 signature: ce5646c69ff404ac863ce5401ebb4524 ******/ %feature("compactdefaultargs") SetPoints; %feature("autodoc", " Parameters @@ -12601,8 +12601,8 @@ Sets the starting point thepstart and ending point thepend of the infinite line ") SetPoints; void SetPoints(const opencascade::handle & thePStart, const opencascade::handle & thePEnd); - /****************** SetWidth ******************/ - /**** md5 signature: 9d813a0ff21da5ccb02e00971f20abed ****/ + /****** AIS_Line::SetWidth ******/ + /****** md5 signature: 9d813a0ff21da5ccb02e00971f20abed ******/ %feature("compactdefaultargs") SetWidth; %feature("autodoc", " Parameters @@ -12619,8 +12619,8 @@ Provides the new width setting avalue for the line in the drawing tool, or 'draw ") SetWidth; void SetWidth(const Standard_Real aValue); - /****************** Signature ******************/ - /**** md5 signature: 4e037e01ba764fd5d5261e3d9ba6557d ****/ + /****** AIS_Line::Signature ******/ + /****** md5 signature: 4e037e01ba764fd5d5261e3d9ba6557d ******/ %feature("compactdefaultargs") Signature; %feature("autodoc", "Return ------- @@ -12632,8 +12632,8 @@ Returns the signature 5. ") Signature; virtual Standard_Integer Signature(); - /****************** Type ******************/ - /**** md5 signature: bf4aea6b24d0b584b57c781f208134ec ****/ + /****** AIS_Line::Type ******/ + /****** md5 signature: bf4aea6b24d0b584b57c781f208134ec ******/ %feature("compactdefaultargs") Type; %feature("autodoc", "Return ------- @@ -12645,8 +12645,8 @@ Returns the type datum. ") Type; virtual AIS_KindOfInteractive Type(); - /****************** UnsetColor ******************/ - /**** md5 signature: 305de4c541ce8067f3ff456f9ec26b55 ****/ + /****** AIS_Line::UnsetColor ******/ + /****** md5 signature: 305de4c541ce8067f3ff456f9ec26b55 ******/ %feature("compactdefaultargs") UnsetColor; %feature("autodoc", "Return ------- @@ -12658,8 +12658,8 @@ Removes the color setting and returns the original color. ") UnsetColor; void UnsetColor(); - /****************** UnsetWidth ******************/ - /**** md5 signature: a9083157cc12b18148f87c7816510f28 ****/ + /****** AIS_Line::UnsetWidth ******/ + /****** md5 signature: a9083157cc12b18148f87c7816510f28 ******/ %feature("compactdefaultargs") UnsetWidth; %feature("autodoc", "Return ------- @@ -12695,8 +12695,8 @@ class AIS_Manipulator : public AIS_InteractiveObject { class Cube {}; class Sector {}; class Axis {}; - /****************** AIS_Manipulator ******************/ - /**** md5 signature: d6d73953b5293a4bb9f85d59f84e4550 ****/ + /****** AIS_Manipulator::AIS_Manipulator ******/ + /****** md5 signature: d6d73953b5293a4bb9f85d59f84e4550 ******/ %feature("compactdefaultargs") AIS_Manipulator; %feature("autodoc", "Return ------- @@ -12708,8 +12708,8 @@ Constructs a manipulator object with default placement and all parts to be displ ") AIS_Manipulator; AIS_Manipulator(); - /****************** AIS_Manipulator ******************/ - /**** md5 signature: a673beebf1686d05fab2c9b57d63a9d3 ****/ + /****** AIS_Manipulator::AIS_Manipulator ******/ + /****** md5 signature: a673beebf1686d05fab2c9b57d63a9d3 ******/ %feature("compactdefaultargs") AIS_Manipulator; %feature("autodoc", " Parameters @@ -12726,8 +12726,8 @@ Constructs a manipulator object with input location and positions of axes and al ") AIS_Manipulator; AIS_Manipulator(const gp_Ax2 & thePosition); - /****************** ActiveAxisIndex ******************/ - /**** md5 signature: 5ed7eebd650705cec16cd7895f75e029 ****/ + /****** AIS_Manipulator::ActiveAxisIndex ******/ + /****** md5 signature: 5ed7eebd650705cec16cd7895f75e029 ******/ %feature("compactdefaultargs") ActiveAxisIndex; %feature("autodoc", "Return ------- @@ -12739,8 +12739,8 @@ No available documentation. ") ActiveAxisIndex; Standard_Integer ActiveAxisIndex(); - /****************** ActiveMode ******************/ - /**** md5 signature: 518316bdc464c63b5a1ab2fd9b9e2cb2 ****/ + /****** AIS_Manipulator::ActiveMode ******/ + /****** md5 signature: 518316bdc464c63b5a1ab2fd9b9e2cb2 ******/ %feature("compactdefaultargs") ActiveMode; %feature("autodoc", "Return ------- @@ -12752,8 +12752,8 @@ No available documentation. ") ActiveMode; AIS_ManipulatorMode ActiveMode(); - /****************** Attach ******************/ - /**** md5 signature: 7d386f66b57656d8a31beb14cb6ab6be ****/ + /****** AIS_Manipulator::Attach ******/ + /****** md5 signature: 7d386f66b57656d8a31beb14cb6ab6be ******/ %feature("compactdefaultargs") Attach; %feature("autodoc", " Parameters @@ -12771,8 +12771,8 @@ Attaches himself to the input interactive object and become displayed in the sam ") Attach; void Attach(const opencascade::handle & theObject, OptionsForAttach theOptions = OptionsForAttach()); - /****************** Attach ******************/ - /**** md5 signature: 832dc115dea47eb279f6ed86e41ac087 ****/ + /****** AIS_Manipulator::Attach ******/ + /****** md5 signature: 832dc115dea47eb279f6ed86e41ac087 ******/ %feature("compactdefaultargs") Attach; %feature("autodoc", " Parameters @@ -12790,8 +12790,8 @@ Attaches himself to the input interactive object group and become displayed in t ") Attach; void Attach(const opencascade::handle & theObject, OptionsForAttach theOptions = OptionsForAttach()); - /****************** ClearSelected ******************/ - /**** md5 signature: 3aaae3eac8509b6abfc3ffd58cbe26e1 ****/ + /****** AIS_Manipulator::ClearSelected ******/ + /****** md5 signature: 3aaae3eac8509b6abfc3ffd58cbe26e1 ******/ %feature("compactdefaultargs") ClearSelected; %feature("autodoc", "Return ------- @@ -12803,8 +12803,8 @@ Method which clear all selected owners belonging to this selectable object ( for ") ClearSelected; virtual void ClearSelected(); - /****************** Compute ******************/ - /**** md5 signature: 5d0087b3c43a18eabfc5a74a27907c07 ****/ + /****** AIS_Manipulator::Compute ******/ + /****** md5 signature: 5d0087b3c43a18eabfc5a74a27907c07 ******/ %feature("compactdefaultargs") Compute; %feature("autodoc", " Parameters @@ -12823,8 +12823,8 @@ Fills presentation. @note manipulator presentation does not use display mode and ") Compute; virtual void Compute(const opencascade::handle & thePrsMgr, const opencascade::handle & thePrs, const Standard_Integer theMode = 0); - /****************** ComputeSelection ******************/ - /**** md5 signature: 0ee36b1ad2a8a3c1bbb813dfdb1d40ae ****/ + /****** AIS_Manipulator::ComputeSelection ******/ + /****** md5 signature: 0ee36b1ad2a8a3c1bbb813dfdb1d40ae ******/ %feature("compactdefaultargs") ComputeSelection; %feature("autodoc", " Parameters @@ -12842,8 +12842,8 @@ Computes selection sensitive zones (triangulation) for manipulator. @param theno ") ComputeSelection; virtual void ComputeSelection(const opencascade::handle & theSelection, const Standard_Integer theMode); - /****************** DeactivateCurrentMode ******************/ - /**** md5 signature: 9f9d413f44f19c0e451cbd2d4a724668 ****/ + /****** AIS_Manipulator::DeactivateCurrentMode ******/ + /****** md5 signature: 9f9d413f44f19c0e451cbd2d4a724668 ******/ %feature("compactdefaultargs") DeactivateCurrentMode; %feature("autodoc", "Return ------- @@ -12855,8 +12855,8 @@ Make inactive the current selected manipulator part and reset current axis index ") DeactivateCurrentMode; void DeactivateCurrentMode(); - /****************** Detach ******************/ - /**** md5 signature: 7ff09e11641571ebd32a8aea4ee5c9d7 ****/ + /****** AIS_Manipulator::Detach ******/ + /****** md5 signature: 7ff09e11641571ebd32a8aea4ee5c9d7 ******/ %feature("compactdefaultargs") Detach; %feature("autodoc", "Return ------- @@ -12868,8 +12868,8 @@ Detaches himself from the owner object, and removes itself from context. ") Detach; void Detach(); - /****************** EnableMode ******************/ - /**** md5 signature: ed430e32069c676de349fa1b988e84c2 ****/ + /****** AIS_Manipulator::EnableMode ******/ + /****** md5 signature: ed430e32069c676de349fa1b988e84c2 ******/ %feature("compactdefaultargs") EnableMode; %feature("autodoc", " Parameters @@ -12886,8 +12886,8 @@ Enable manipualtion mode. @warning it activates selection mode in the current co ") EnableMode; void EnableMode(const AIS_ManipulatorMode theMode); - /****************** HasActiveMode ******************/ - /**** md5 signature: f43eeb7b2b47c07afce90de1cbb74ff9 ****/ + /****** AIS_Manipulator::HasActiveMode ******/ + /****** md5 signature: f43eeb7b2b47c07afce90de1cbb74ff9 ******/ %feature("compactdefaultargs") HasActiveMode; %feature("autodoc", "Return ------- @@ -12899,8 +12899,8 @@ Return true if some part of manipulator is selected (transformation mode is acti ") HasActiveMode; Standard_Boolean HasActiveMode(); - /****************** HasActiveTransformation ******************/ - /**** md5 signature: 743e5698ac61066f8b7d495ae7359262 ****/ + /****** AIS_Manipulator::HasActiveTransformation ******/ + /****** md5 signature: 743e5698ac61066f8b7d495ae7359262 ******/ %feature("compactdefaultargs") HasActiveTransformation; %feature("autodoc", "Return ------- @@ -12912,8 +12912,8 @@ No available documentation. ") HasActiveTransformation; Standard_Boolean HasActiveTransformation(); - /****************** HilightOwnerWithColor ******************/ - /**** md5 signature: 55b3be7a2ac03a5f834f6d8c95996212 ****/ + /****** AIS_Manipulator::HilightOwnerWithColor ******/ + /****** md5 signature: 55b3be7a2ac03a5f834f6d8c95996212 ******/ %feature("compactdefaultargs") HilightOwnerWithColor; %feature("autodoc", " Parameters @@ -12932,8 +12932,8 @@ Method which hilight an owner belonging to this selectable object ( for fast pre ") HilightOwnerWithColor; virtual void HilightOwnerWithColor(const opencascade::handle & thePM, const opencascade::handle & theStyle, const opencascade::handle & theOwner); - /****************** HilightSelected ******************/ - /**** md5 signature: b1fc27c909de3a5e8e70f8fe74bf4101 ****/ + /****** AIS_Manipulator::HilightSelected ******/ + /****** md5 signature: b1fc27c909de3a5e8e70f8fe74bf4101 ******/ %feature("compactdefaultargs") HilightSelected; %feature("autodoc", " Parameters @@ -12951,8 +12951,8 @@ Method which draws selected owners ( for fast presentation draw ). ") HilightSelected; virtual void HilightSelected(const opencascade::handle & thePM, const SelectMgr_SequenceOfOwner & theSeq); - /****************** IsAttached ******************/ - /**** md5 signature: f05a2e5d0a5e075997cd6dc06d401426 ****/ + /****** AIS_Manipulator::IsAttached ******/ + /****** md5 signature: f05a2e5d0a5e075997cd6dc06d401426 ******/ %feature("compactdefaultargs") IsAttached; %feature("autodoc", "Return ------- @@ -12964,8 +12964,8 @@ Return true if manipulator is attached to some interactive object (has owning ob ") IsAttached; Standard_Boolean IsAttached(); - /****************** IsAutoHilight ******************/ - /**** md5 signature: d08251e65bb2038174f4c2dab73d34c9 ****/ + /****** AIS_Manipulator::IsAutoHilight ******/ + /****** md5 signature: d08251e65bb2038174f4c2dab73d34c9 ******/ %feature("compactdefaultargs") IsAutoHilight; %feature("autodoc", "Return ------- @@ -12977,8 +12977,8 @@ Disables auto highlighting to use hilightselected() and hilightownerwithcolor() ") IsAutoHilight; virtual Standard_Boolean IsAutoHilight(); - /****************** IsModeActivationOnDetection ******************/ - /**** md5 signature: 2af8fa23d5c9b0d15190f17af70b9283 ****/ + /****** AIS_Manipulator::IsModeActivationOnDetection ******/ + /****** md5 signature: 2af8fa23d5c9b0d15190f17af70b9283 ******/ %feature("compactdefaultargs") IsModeActivationOnDetection; %feature("autodoc", "Return ------- @@ -12990,8 +12990,8 @@ Return true if manual mode activation is enabled. ") IsModeActivationOnDetection; Standard_Boolean IsModeActivationOnDetection(); - /****************** Object ******************/ - /**** md5 signature: 7f1f823e7838d5f1ace29947c6685976 ****/ + /****** AIS_Manipulator::Object ******/ + /****** md5 signature: 7f1f823e7838d5f1ace29947c6685976 ******/ %feature("compactdefaultargs") Object; %feature("autodoc", "Return ------- @@ -13003,8 +13003,8 @@ Return the first (leading) object of the owning objects. ") Object; opencascade::handle Object(); - /****************** Object ******************/ - /**** md5 signature: e539c0d3d9f8c83a7da6513e8f5ba4f9 ****/ + /****** AIS_Manipulator::Object ******/ + /****** md5 signature: e539c0d3d9f8c83a7da6513e8f5ba4f9 ******/ %feature("compactdefaultargs") Object; %feature("autodoc", " Parameters @@ -13021,8 +13021,8 @@ Return one of the owning objects. @warning raises program error if theindex is m ") Object; opencascade::handle Object(const Standard_Integer theIndex); - /****************** ObjectTransformation ******************/ - /**** md5 signature: e6857da7c59a18275835c532be288e72 ****/ + /****** AIS_Manipulator::ObjectTransformation ******/ + /****** md5 signature: e6857da7c59a18275835c532be288e72 ******/ %feature("compactdefaultargs") ObjectTransformation; %feature("autodoc", " Parameters @@ -13042,8 +13042,8 @@ Computes transformation of parent object according to the active mode and input ") ObjectTransformation; Standard_Boolean ObjectTransformation(const Standard_Integer theX, const Standard_Integer theY, const opencascade::handle & theView, gp_Trsf & theTrsf); - /****************** Objects ******************/ - /**** md5 signature: 6f9e402610564bdab86e777db82db8cf ****/ + /****** AIS_Manipulator::Objects ******/ + /****** md5 signature: 6f9e402610564bdab86e777db82db8cf ******/ %feature("compactdefaultargs") Objects; %feature("autodoc", "Return ------- @@ -13055,8 +13055,8 @@ Return all owning objects. ") Objects; opencascade::handle Objects(); - /****************** Position ******************/ - /**** md5 signature: 0919c787263d4f8ff9c1e18688f5d16c ****/ + /****** AIS_Manipulator::Position ******/ + /****** md5 signature: 0919c787263d4f8ff9c1e18688f5d16c ******/ %feature("compactdefaultargs") Position; %feature("autodoc", "Return ------- @@ -13068,8 +13068,8 @@ Return poition of manipulator interactive object. ") Position; const gp_Ax2 Position(); - /****************** ProcessDragging ******************/ - /**** md5 signature: b945957f65b997bcf6b4a92cefdcd430 ****/ + /****** AIS_Manipulator::ProcessDragging ******/ + /****** md5 signature: b945957f65b997bcf6b4a92cefdcd430 ******/ %feature("compactdefaultargs") ProcessDragging; %feature("autodoc", " Parameters @@ -13091,8 +13091,8 @@ Drag object in the viewer. @param thectx [in] interactive context @param theview ") ProcessDragging; virtual Standard_Boolean ProcessDragging(const opencascade::handle & theCtx, const opencascade::handle & theView, const opencascade::handle & theOwner, const Graphic3d_Vec2i & theDragFrom, const Graphic3d_Vec2i & theDragTo, const AIS_DragAction theAction); - /****************** SetGap ******************/ - /**** md5 signature: 93bbf4c4c799016d4246a94510cb49b4 ****/ + /****** AIS_Manipulator::SetGap ******/ + /****** md5 signature: 93bbf4c4c799016d4246a94510cb49b4 ******/ %feature("compactdefaultargs") SetGap; %feature("autodoc", " Parameters @@ -13109,8 +13109,8 @@ Sets gaps between translator, scaler and rotator sub-presentations. ") SetGap; void SetGap(const Standard_ShortReal theValue); - /****************** SetModeActivationOnDetection ******************/ - /**** md5 signature: 74d02205a7664eb45a83e6f9f91b1cfb ****/ + /****** AIS_Manipulator::SetModeActivationOnDetection ******/ + /****** md5 signature: 74d02205a7664eb45a83e6f9f91b1cfb ******/ %feature("compactdefaultargs") SetModeActivationOnDetection; %feature("autodoc", " Parameters @@ -13127,8 +13127,8 @@ Enables mode activation on detection (highlighting). by default, mode is activat ") SetModeActivationOnDetection; void SetModeActivationOnDetection(const Standard_Boolean theToEnable); - /****************** SetPart ******************/ - /**** md5 signature: 684caeb3d3c62fad166a3ed99df49f70 ****/ + /****** AIS_Manipulator::SetPart ******/ + /****** md5 signature: 684caeb3d3c62fad166a3ed99df49f70 ******/ %feature("compactdefaultargs") SetPart; %feature("autodoc", " Parameters @@ -13147,8 +13147,8 @@ Disable or enable visual parts for translation, rotation or scaling for some axi ") SetPart; void SetPart(const Standard_Integer theAxisIndex, const AIS_ManipulatorMode theMode, const Standard_Boolean theIsEnabled); - /****************** SetPart ******************/ - /**** md5 signature: 86d1cc4e648095a53a2accd8505ecc4b ****/ + /****** AIS_Manipulator::SetPart ******/ + /****** md5 signature: 86d1cc4e648095a53a2accd8505ecc4b ******/ %feature("compactdefaultargs") SetPart; %feature("autodoc", " Parameters @@ -13166,8 +13166,8 @@ Disable or enable visual parts for translation, rotation or scaling for all axes ") SetPart; void SetPart(const AIS_ManipulatorMode theMode, const Standard_Boolean theIsEnabled); - /****************** SetPosition ******************/ - /**** md5 signature: 3065dca0a8eb5a2b508f4791a4ae43c1 ****/ + /****** AIS_Manipulator::SetPosition ******/ + /****** md5 signature: 3065dca0a8eb5a2b508f4791a4ae43c1 ******/ %feature("compactdefaultargs") SetPosition; %feature("autodoc", " Parameters @@ -13184,8 +13184,8 @@ Sets position of the manipulator object. ") SetPosition; void SetPosition(const gp_Ax2 & thePosition); - /****************** SetSize ******************/ - /**** md5 signature: 490bc744a2d34e53e9d07eaab52ec139 ****/ + /****** AIS_Manipulator::SetSize ******/ + /****** md5 signature: 490bc744a2d34e53e9d07eaab52ec139 ******/ %feature("compactdefaultargs") SetSize; %feature("autodoc", " Parameters @@ -13202,8 +13202,8 @@ Sets size (length of side of the manipulator cubic bounding box. ") SetSize; void SetSize(const Standard_ShortReal theSideLength); - /****************** SetTransformPersistence ******************/ - /**** md5 signature: 55e7ba0326b97d41dc89997ba6b5628e ****/ + /****** AIS_Manipulator::SetTransformPersistence ******/ + /****** md5 signature: 55e7ba0326b97d41dc89997ba6b5628e ******/ %feature("compactdefaultargs") SetTransformPersistence; %feature("autodoc", " Parameters @@ -13220,8 +13220,8 @@ Redefines transform persistence management to setup transformation for sub-prese ") SetTransformPersistence; virtual void SetTransformPersistence(const opencascade::handle & theTrsfPers); - /****************** SetZoomPersistence ******************/ - /**** md5 signature: 6d63f55bd881baa9dbefc2bc469583f4 ****/ + /****** AIS_Manipulator::SetZoomPersistence ******/ + /****** md5 signature: 6d63f55bd881baa9dbefc2bc469583f4 ******/ %feature("compactdefaultargs") SetZoomPersistence; %feature("autodoc", " Parameters @@ -13238,8 +13238,8 @@ Enable or disable zoom persistence mode for the manipulator. with this mode turn ") SetZoomPersistence; void SetZoomPersistence(const Standard_Boolean theToEnable); - /****************** Size ******************/ - /**** md5 signature: 2fb6b7fb424bb2bf67b8cf866a5ce3c3 ****/ + /****** AIS_Manipulator::Size ******/ + /****** md5 signature: 2fb6b7fb424bb2bf67b8cf866a5ce3c3 ******/ %feature("compactdefaultargs") Size; %feature("autodoc", "Return ------- @@ -13251,8 +13251,8 @@ No available documentation. ") Size; Standard_ShortReal Size(); - /****************** StartTransform ******************/ - /**** md5 signature: 0e42457948e68fa72b81e5837dd4f985 ****/ + /****** AIS_Manipulator::StartTransform ******/ + /****** md5 signature: 0e42457948e68fa72b81e5837dd4f985 ******/ %feature("compactdefaultargs") StartTransform; %feature("autodoc", " Parameters @@ -13271,8 +13271,8 @@ Init start (reference) transformation. @warning it is used in chain with starttr ") StartTransform; void StartTransform(const Standard_Integer theX, const Standard_Integer theY, const opencascade::handle & theView); - /****************** StartTransformation ******************/ - /**** md5 signature: 8eb6cc7b893f18d392ff6c57e93767a3 ****/ + /****** AIS_Manipulator::StartTransformation ******/ + /****** md5 signature: 8eb6cc7b893f18d392ff6c57e93767a3 ******/ %feature("compactdefaultargs") StartTransformation; %feature("autodoc", "Return ------- @@ -13284,8 +13284,8 @@ No available documentation. ") StartTransformation; gp_Trsf StartTransformation(); - /****************** StartTransformation ******************/ - /**** md5 signature: ecdcc1a23c08b016547c467ef2b958df ****/ + /****** AIS_Manipulator::StartTransformation ******/ + /****** md5 signature: ecdcc1a23c08b016547c467ef2b958df ******/ %feature("compactdefaultargs") StartTransformation; %feature("autodoc", " Parameters @@ -13302,8 +13302,8 @@ No available documentation. ") StartTransformation; gp_Trsf StartTransformation(Standard_Integer theIndex); - /****************** StopTransform ******************/ - /**** md5 signature: a1d35931e335de8d202014fd19f22a34 ****/ + /****** AIS_Manipulator::StopTransform ******/ + /****** md5 signature: a1d35931e335de8d202014fd19f22a34 ******/ %feature("compactdefaultargs") StopTransform; %feature("autodoc", " Parameters @@ -13320,8 +13320,8 @@ Reset start (reference) transformation. @param thetoapply [in] option to apply o ") StopTransform; void StopTransform(const Standard_Boolean theToApply = Standard_True); - /****************** Transform ******************/ - /**** md5 signature: 70cd3856c03eefd4d3419cd64304b204 ****/ + /****** AIS_Manipulator::Transform ******/ + /****** md5 signature: 70cd3856c03eefd4d3419cd64304b204 ******/ %feature("compactdefaultargs") Transform; %feature("autodoc", " Parameters @@ -13338,8 +13338,8 @@ Apply to the owning objects the input transformation. @remark the transformation ") Transform; void Transform(const gp_Trsf & aTrsf); - /****************** Transform ******************/ - /**** md5 signature: 7b80f6f8c56072806fdc079cea756bd9 ****/ + /****** AIS_Manipulator::Transform ******/ + /****** md5 signature: 7b80f6f8c56072806fdc079cea756bd9 ******/ %feature("compactdefaultargs") Transform; %feature("autodoc", " Parameters @@ -13358,8 +13358,8 @@ Apply transformation made from mouse moving from start position (save on the fir ") Transform; gp_Trsf Transform(const Standard_Integer theX, const Standard_Integer theY, const opencascade::handle & theView); - /****************** ZoomPersistence ******************/ - /**** md5 signature: 26783ffb6600049d444313c048467f7d ****/ + /****** AIS_Manipulator::ZoomPersistence ******/ + /****** md5 signature: 26783ffb6600049d444313c048467f7d ******/ %feature("compactdefaultargs") ZoomPersistence; %feature("autodoc", "Return ------- @@ -13399,8 +13399,8 @@ Returns state of zoom persistence mode, whether it turned on or off. ************************/ class AIS_MediaPlayer : public AIS_InteractiveObject { public: - /****************** AIS_MediaPlayer ******************/ - /**** md5 signature: 0446d23899803b089df6bd8d6821c9e2 ****/ + /****** AIS_MediaPlayer::AIS_MediaPlayer ******/ + /****** md5 signature: 0446d23899803b089df6bd8d6821c9e2 ******/ %feature("compactdefaultargs") AIS_MediaPlayer; %feature("autodoc", "Return ------- @@ -13412,8 +13412,8 @@ Empty constructor. ") AIS_MediaPlayer; AIS_MediaPlayer(); - /****************** Duration ******************/ - /**** md5 signature: 7dbbe5f7e0b63b92819c252fd1239f67 ****/ + /****** AIS_MediaPlayer::Duration ******/ + /****** md5 signature: 7dbbe5f7e0b63b92819c252fd1239f67 ******/ %feature("compactdefaultargs") Duration; %feature("autodoc", "Return ------- @@ -13425,8 +13425,8 @@ Return duration. ") Duration; double Duration(); - /****************** OpenInput ******************/ - /**** md5 signature: 860c3b6e78ac92cbd8cf0044e55bef88 ****/ + /****** AIS_MediaPlayer::OpenInput ******/ + /****** md5 signature: 860c3b6e78ac92cbd8cf0044e55bef88 ******/ %feature("compactdefaultargs") OpenInput; %feature("autodoc", " Parameters @@ -13444,8 +13444,8 @@ Open specified file. ") OpenInput; void OpenInput(TCollection_AsciiString thePath, Standard_Boolean theToWait); - /****************** PlayPause ******************/ - /**** md5 signature: 811ffa83708da2acdc8d22e930c8cece ****/ + /****** AIS_MediaPlayer::PlayPause ******/ + /****** md5 signature: 811ffa83708da2acdc8d22e930c8cece ******/ %feature("compactdefaultargs") PlayPause; %feature("autodoc", "Return ------- @@ -13457,8 +13457,8 @@ Switch playback state. ") PlayPause; void PlayPause(); - /****************** PlayerContext ******************/ - /**** md5 signature: 5fc0e0cbec11700279e3e8631feee60b ****/ + /****** AIS_MediaPlayer::PlayerContext ******/ + /****** md5 signature: 5fc0e0cbec11700279e3e8631feee60b ******/ %feature("compactdefaultargs") PlayerContext; %feature("autodoc", "Return ------- @@ -13470,8 +13470,8 @@ Return player context. ") PlayerContext; const opencascade::handle & PlayerContext(); - /****************** PresentFrame ******************/ - /**** md5 signature: 7d26f4d44c79f3dff718eeaf121837ff ****/ + /****** AIS_MediaPlayer::PresentFrame ******/ + /****** md5 signature: 7d26f4d44c79f3dff718eeaf121837ff ******/ %feature("compactdefaultargs") PresentFrame; %feature("autodoc", " Parameters @@ -13489,8 +13489,8 @@ Display new frame. ") PresentFrame; bool PresentFrame(const Graphic3d_Vec2i & theLeftCorner, const Graphic3d_Vec2i & theMaxSize); - /****************** SetCallback ******************/ - /**** md5 signature: 6e4600666f30d884b42d87dfd0954e3a ****/ + /****** AIS_MediaPlayer::SetCallback ******/ + /****** md5 signature: 6e4600666f30d884b42d87dfd0954e3a ******/ %feature("compactdefaultargs") SetCallback; %feature("autodoc", " Parameters @@ -13508,8 +13508,8 @@ Setup callback to be called on queue progress (e.g. when new frame should be dis ") SetCallback; void SetCallback(Graphic3d_MediaTextureSet::CallbackOnUpdate_t theCallbackFunction, void * theCallbackUserPtr); - /****************** SetClosePlayer ******************/ - /**** md5 signature: 3032f6e42b741faba7f30fd3218ff7e7 ****/ + /****** AIS_MediaPlayer::SetClosePlayer ******/ + /****** md5 signature: 3032f6e42b741faba7f30fd3218ff7e7 ******/ %feature("compactdefaultargs") SetClosePlayer; %feature("autodoc", "Return ------- @@ -13535,8 +13535,8 @@ Schedule player to be closed. *****************************************/ class AIS_MultipleConnectedInteractive : public AIS_InteractiveObject { public: - /****************** AIS_MultipleConnectedInteractive ******************/ - /**** md5 signature: fba70400b7faac2115b274698220e2c9 ****/ + /****** AIS_MultipleConnectedInteractive::AIS_MultipleConnectedInteractive ******/ + /****** md5 signature: fba70400b7faac2115b274698220e2c9 ******/ %feature("compactdefaultargs") AIS_MultipleConnectedInteractive; %feature("autodoc", "Return ------- @@ -13548,8 +13548,8 @@ Initializes the interactive object with multiple connections to ais_interactive ") AIS_MultipleConnectedInteractive; AIS_MultipleConnectedInteractive(); - /****************** AcceptShapeDecomposition ******************/ - /**** md5 signature: f0c4d1bd14b4f64b202098891add7268 ****/ + /****** AIS_MultipleConnectedInteractive::AcceptShapeDecomposition ******/ + /****** md5 signature: f0c4d1bd14b4f64b202098891add7268 ******/ %feature("compactdefaultargs") AcceptShapeDecomposition; %feature("autodoc", "Return ------- @@ -13561,8 +13561,8 @@ Informs the graphic context that the interactive object may be decomposed into s ") AcceptShapeDecomposition; virtual Standard_Boolean AcceptShapeDecomposition(); - /****************** Connect ******************/ - /**** md5 signature: 9456f753f89ea1d3d12e6c7e4b293e0f ****/ + /****** AIS_MultipleConnectedInteractive::Connect ******/ + /****** md5 signature: 9456f753f89ea1d3d12e6c7e4b293e0f ******/ %feature("compactdefaultargs") Connect; %feature("autodoc", " Parameters @@ -13581,8 +13581,8 @@ Establishes the connection between the connected interactive object, theinteract ") Connect; opencascade::handle Connect(const opencascade::handle & theAnotherObj, const opencascade::handle & theLocation, const opencascade::handle & theTrsfPers); - /****************** Connect ******************/ - /**** md5 signature: d10a69c61a6c9d8b102edd8739b7f2b4 ****/ + /****** AIS_MultipleConnectedInteractive::Connect ******/ + /****** md5 signature: d10a69c61a6c9d8b102edd8739b7f2b4 ******/ %feature("compactdefaultargs") Connect; %feature("autodoc", " Parameters @@ -13599,8 +13599,8 @@ Establishes the connection between the connected interactive object, theinteract ") Connect; opencascade::handle Connect(const opencascade::handle & theAnotherObj); - /****************** Connect ******************/ - /**** md5 signature: 99ccdf3ecba8a64760230d69d1f05173 ****/ + /****** AIS_MultipleConnectedInteractive::Connect ******/ + /****** md5 signature: 99ccdf3ecba8a64760230d69d1f05173 ******/ %feature("compactdefaultargs") Connect; %feature("autodoc", " Parameters @@ -13618,8 +13618,8 @@ Establishes the connection between the connected interactive object, theinteract ") Connect; opencascade::handle Connect(const opencascade::handle & theAnotherObj, const gp_Trsf & theLocation); - /****************** Connect ******************/ - /**** md5 signature: fe47f9ee36bde7f16ff1155bf0cfd849 ****/ + /****** AIS_MultipleConnectedInteractive::Connect ******/ + /****** md5 signature: fe47f9ee36bde7f16ff1155bf0cfd849 ******/ %feature("compactdefaultargs") Connect; %feature("autodoc", " Parameters @@ -13638,8 +13638,8 @@ Establishes the connection between the connected interactive object, theinteract ") Connect; opencascade::handle Connect(const opencascade::handle & theAnotherObj, const gp_Trsf & theLocation, const opencascade::handle & theTrsfPers); - /****************** Disconnect ******************/ - /**** md5 signature: 8baee36d436931ddbde7f0643b9e8f4a ****/ + /****** AIS_MultipleConnectedInteractive::Disconnect ******/ + /****** md5 signature: 8baee36d436931ddbde7f0643b9e8f4a ******/ %feature("compactdefaultargs") Disconnect; %feature("autodoc", " Parameters @@ -13656,8 +13656,8 @@ Removes the connection with theinteractive. ") Disconnect; void Disconnect(const opencascade::handle & theInteractive); - /****************** DisconnectAll ******************/ - /**** md5 signature: 6ff75930eb4fe3a9d24be8bb57ecbce1 ****/ + /****** AIS_MultipleConnectedInteractive::DisconnectAll ******/ + /****** md5 signature: 6ff75930eb4fe3a9d24be8bb57ecbce1 ******/ %feature("compactdefaultargs") DisconnectAll; %feature("autodoc", "Return ------- @@ -13669,8 +13669,8 @@ Clears all the connections to objects. ") DisconnectAll; void DisconnectAll(); - /****************** GetAssemblyOwner ******************/ - /**** md5 signature: fdcc25b4af0825772c906148415cbc13 ****/ + /****** AIS_MultipleConnectedInteractive::GetAssemblyOwner ******/ + /****** md5 signature: fdcc25b4af0825772c906148415cbc13 ******/ %feature("compactdefaultargs") GetAssemblyOwner; %feature("autodoc", "Return ------- @@ -13682,8 +13682,8 @@ Returns common entity owner if the object is an assembly. ") GetAssemblyOwner; virtual const opencascade::handle & GetAssemblyOwner(); - /****************** GlobalSelOwner ******************/ - /**** md5 signature: 4b6aea62676c6d618f2db36c62ce24fb ****/ + /****** AIS_MultipleConnectedInteractive::GlobalSelOwner ******/ + /****** md5 signature: 4b6aea62676c6d618f2db36c62ce24fb ******/ %feature("compactdefaultargs") GlobalSelOwner; %feature("autodoc", "Return ------- @@ -13695,8 +13695,8 @@ Returns the owner of mode for selection of object as a whole. ") GlobalSelOwner; virtual opencascade::handle GlobalSelOwner(); - /****************** HasConnection ******************/ - /**** md5 signature: c342aa32a45245fb748ee5398c1c4a5a ****/ + /****** AIS_MultipleConnectedInteractive::HasConnection ******/ + /****** md5 signature: c342aa32a45245fb748ee5398c1c4a5a ******/ %feature("compactdefaultargs") HasConnection; %feature("autodoc", "Return ------- @@ -13708,8 +13708,8 @@ Returns true if the object is connected to others. ") HasConnection; Standard_Boolean HasConnection(); - /****************** SetContext ******************/ - /**** md5 signature: af12f571fad40e135e056476329514e6 ****/ + /****** AIS_MultipleConnectedInteractive::SetContext ******/ + /****** md5 signature: af12f571fad40e135e056476329514e6 ******/ %feature("compactdefaultargs") SetContext; %feature("autodoc", " Parameters @@ -13726,8 +13726,8 @@ Assigns interactive context. ") SetContext; virtual void SetContext(const opencascade::handle & theCtx); - /****************** Signature ******************/ - /**** md5 signature: 4e037e01ba764fd5d5261e3d9ba6557d ****/ + /****** AIS_MultipleConnectedInteractive::Signature ******/ + /****** md5 signature: 4e037e01ba764fd5d5261e3d9ba6557d ******/ %feature("compactdefaultargs") Signature; %feature("autodoc", "Return ------- @@ -13739,8 +13739,8 @@ No available documentation. ") Signature; virtual Standard_Integer Signature(); - /****************** Type ******************/ - /**** md5 signature: bf4aea6b24d0b584b57c781f208134ec ****/ + /****** AIS_MultipleConnectedInteractive::Type ******/ + /****** md5 signature: bf4aea6b24d0b584b57c781f208134ec ******/ %feature("compactdefaultargs") Type; %feature("autodoc", "Return ------- @@ -13768,8 +13768,8 @@ No available documentation. ******************/ class AIS_Plane : public AIS_InteractiveObject { public: - /****************** AIS_Plane ******************/ - /**** md5 signature: 3c342f25630d9581d2c70a369facc359 ****/ + /****** AIS_Plane::AIS_Plane ******/ + /****** md5 signature: 3c342f25630d9581d2c70a369facc359 ******/ %feature("compactdefaultargs") AIS_Plane; %feature("autodoc", " Parameters @@ -13787,8 +13787,8 @@ Initializes the plane acomponent. if the mode acurrentmode equals true, the draw ") AIS_Plane; AIS_Plane(const opencascade::handle & aComponent, const Standard_Boolean aCurrentMode = Standard_False); - /****************** AIS_Plane ******************/ - /**** md5 signature: 6b93dc858ae0d4c7f57fed9860708802 ****/ + /****** AIS_Plane::AIS_Plane ******/ + /****** md5 signature: 6b93dc858ae0d4c7f57fed9860708802 ******/ %feature("compactdefaultargs") AIS_Plane; %feature("autodoc", " Parameters @@ -13807,8 +13807,8 @@ Initializes the plane acomponent and the point acenter. if the mode acurrentmode ") AIS_Plane; AIS_Plane(const opencascade::handle & aComponent, const gp_Pnt & aCenter, const Standard_Boolean aCurrentMode = Standard_False); - /****************** AIS_Plane ******************/ - /**** md5 signature: 05bf8980d9c4c3df365fa7712ba217b6 ****/ + /****** AIS_Plane::AIS_Plane ******/ + /****** md5 signature: 05bf8980d9c4c3df365fa7712ba217b6 ******/ %feature("compactdefaultargs") AIS_Plane; %feature("autodoc", " Parameters @@ -13829,8 +13829,8 @@ Initializes the plane acomponent, the point acenter, and the minimum and maximum ") AIS_Plane; AIS_Plane(const opencascade::handle & aComponent, const gp_Pnt & aCenter, const gp_Pnt & aPmin, const gp_Pnt & aPmax, const Standard_Boolean aCurrentMode = Standard_False); - /****************** AIS_Plane ******************/ - /**** md5 signature: 9edc05a5ec11fbc531da5dd401280271 ****/ + /****** AIS_Plane::AIS_Plane ******/ + /****** md5 signature: 9edc05a5ec11fbc531da5dd401280271 ******/ %feature("compactdefaultargs") AIS_Plane; %feature("autodoc", " Parameters @@ -13849,8 +13849,8 @@ No available documentation. ") AIS_Plane; AIS_Plane(const opencascade::handle & aComponent, const AIS_TypeOfPlane aPlaneType, const Standard_Boolean aCurrentMode = Standard_False); - /****************** AcceptDisplayMode ******************/ - /**** md5 signature: 16fc40475e94b16a496778d86dfb4fec ****/ + /****** AIS_Plane::AcceptDisplayMode ******/ + /****** md5 signature: 16fc40475e94b16a496778d86dfb4fec ******/ %feature("compactdefaultargs") AcceptDisplayMode; %feature("autodoc", " Parameters @@ -13867,8 +13867,8 @@ Returns true if the display mode selected, amode, is valid for planes. ") AcceptDisplayMode; virtual Standard_Boolean AcceptDisplayMode(const Standard_Integer aMode); - /****************** Axis2Placement ******************/ - /**** md5 signature: 37877c5e97ab627517b822b230b8b22b ****/ + /****** AIS_Plane::Axis2Placement ******/ + /****** md5 signature: 37877c5e97ab627517b822b230b8b22b ******/ %feature("compactdefaultargs") Axis2Placement; %feature("autodoc", "Return ------- @@ -13880,8 +13880,8 @@ Returns the position of the plane's axis2 system identifying the x, y, or z axis ") Axis2Placement; opencascade::handle Axis2Placement(); - /****************** Center ******************/ - /**** md5 signature: 76b3760b23b8ce2c654d603f295e0c0d ****/ + /****** AIS_Plane::Center ******/ + /****** md5 signature: 76b3760b23b8ce2c654d603f295e0c0d ******/ %feature("compactdefaultargs") Center; %feature("autodoc", "Return ------- @@ -13893,8 +13893,8 @@ Returns the coordinates of the center point. ") Center; const gp_Pnt Center(); - /****************** Component ******************/ - /**** md5 signature: 303a9682f54bbdacc71e8f17577c38b3 ****/ + /****** AIS_Plane::Component ******/ + /****** md5 signature: 303a9682f54bbdacc71e8f17577c38b3 ******/ %feature("compactdefaultargs") Component; %feature("autodoc", "Return ------- @@ -13906,8 +13906,8 @@ Returns the component specified in setcomponent. ") Component; const opencascade::handle & Component(); - /****************** ComputeSelection ******************/ - /**** md5 signature: 0ee36b1ad2a8a3c1bbb813dfdb1d40ae ****/ + /****** AIS_Plane::ComputeSelection ******/ + /****** md5 signature: 0ee36b1ad2a8a3c1bbb813dfdb1d40ae ******/ %feature("compactdefaultargs") ComputeSelection; %feature("autodoc", " Parameters @@ -13925,8 +13925,8 @@ No available documentation. ") ComputeSelection; virtual void ComputeSelection(const opencascade::handle & theSelection, const Standard_Integer theMode); - /****************** CurrentMode ******************/ - /**** md5 signature: 063a9db1602f7bac1a4e0fa8301ae9a8 ****/ + /****** AIS_Plane::CurrentMode ******/ + /****** md5 signature: 063a9db1602f7bac1a4e0fa8301ae9a8 ******/ %feature("compactdefaultargs") CurrentMode; %feature("autodoc", "Return ------- @@ -13938,8 +13938,8 @@ Returns the non-default current display mode set by setcurrentmode. ") CurrentMode; Standard_Boolean CurrentMode(); - /****************** HasMinimumSize ******************/ - /**** md5 signature: a365edd1b21418e01a2b57e9636bca4f ****/ + /****** AIS_Plane::HasMinimumSize ******/ + /****** md5 signature: a365edd1b21418e01a2b57e9636bca4f ******/ %feature("compactdefaultargs") HasMinimumSize; %feature("autodoc", "Return ------- @@ -13951,8 +13951,8 @@ Returns true if transform persistence for zoom is set. ") HasMinimumSize; Standard_Boolean HasMinimumSize(); - /****************** HasOwnSize ******************/ - /**** md5 signature: e915e28bcd0aa89fd85e56d0cb0fab71 ****/ + /****** AIS_Plane::HasOwnSize ******/ + /****** md5 signature: e915e28bcd0aa89fd85e56d0cb0fab71 ******/ %feature("compactdefaultargs") HasOwnSize; %feature("autodoc", "Return ------- @@ -13964,8 +13964,8 @@ No available documentation. ") HasOwnSize; Standard_Boolean HasOwnSize(); - /****************** IsXYZPlane ******************/ - /**** md5 signature: a306d22b0be3b8b20d3c93daeae452c2 ****/ + /****** AIS_Plane::IsXYZPlane ******/ + /****** md5 signature: a306d22b0be3b8b20d3c93daeae452c2 ******/ %feature("compactdefaultargs") IsXYZPlane; %feature("autodoc", "Return ------- @@ -13977,8 +13977,8 @@ Returns the type of plane - xy, yz, or xz. ") IsXYZPlane; Standard_Boolean IsXYZPlane(); - /****************** PlaneAttributes ******************/ - /**** md5 signature: 222046c8756742783a17e4ea27163ab2 ****/ + /****** AIS_Plane::PlaneAttributes ******/ + /****** md5 signature: 222046c8756742783a17e4ea27163ab2 ******/ %feature("compactdefaultargs") PlaneAttributes; %feature("autodoc", " Parameters @@ -13998,8 +13998,8 @@ Returns the settings for the selected plane acomponent, provided in setplaneattr ") PlaneAttributes; Standard_Boolean PlaneAttributes(opencascade::handle & aComponent, gp_Pnt & aCenter, gp_Pnt & aPmin, gp_Pnt & aPmax); - /****************** SetAxis2Placement ******************/ - /**** md5 signature: d73d8eb41254415fddcc962ddec5e469 ****/ + /****** AIS_Plane::SetAxis2Placement ******/ + /****** md5 signature: d73d8eb41254415fddcc962ddec5e469 ******/ %feature("compactdefaultargs") SetAxis2Placement; %feature("autodoc", " Parameters @@ -14017,8 +14017,8 @@ Allows you to provide settings for the position and direction of one of the plan ") SetAxis2Placement; void SetAxis2Placement(const opencascade::handle & aComponent, const AIS_TypeOfPlane aPlaneType); - /****************** SetCenter ******************/ - /**** md5 signature: ecf3b6f0e545b80cc6040218013c7da9 ****/ + /****** AIS_Plane::SetCenter ******/ + /****** md5 signature: ecf3b6f0e545b80cc6040218013c7da9 ******/ %feature("compactdefaultargs") SetCenter; %feature("autodoc", " Parameters @@ -14035,8 +14035,8 @@ Provides settings for the center thecenter other than (0, 0, 0). ") SetCenter; void SetCenter(const gp_Pnt & theCenter); - /****************** SetColor ******************/ - /**** md5 signature: 6b2b764a1e8ffb5d1aa4218d6218005c ****/ + /****** AIS_Plane::SetColor ******/ + /****** md5 signature: 6b2b764a1e8ffb5d1aa4218d6218005c ******/ %feature("compactdefaultargs") SetColor; %feature("autodoc", " Parameters @@ -14053,8 +14053,8 @@ No available documentation. ") SetColor; void SetColor(const Quantity_Color & aColor); - /****************** SetComponent ******************/ - /**** md5 signature: cabe0299a719dc64171b081f75779f2e ****/ + /****** AIS_Plane::SetComponent ******/ + /****** md5 signature: cabe0299a719dc64171b081f75779f2e ******/ %feature("compactdefaultargs") SetComponent; %feature("autodoc", " Parameters @@ -14071,8 +14071,8 @@ Creates an instance of the plane acomponent. ") SetComponent; void SetComponent(const opencascade::handle & aComponent); - /****************** SetContext ******************/ - /**** md5 signature: bade88f85081ac1317d21b16677f9862 ****/ + /****** AIS_Plane::SetContext ******/ + /****** md5 signature: bade88f85081ac1317d21b16677f9862 ******/ %feature("compactdefaultargs") SetContext; %feature("autodoc", " Parameters @@ -14089,8 +14089,8 @@ Connection to default drawer implies a recomputation of frame values. ") SetContext; virtual void SetContext(const opencascade::handle & aCtx); - /****************** SetCurrentMode ******************/ - /**** md5 signature: 52128d8f940c1aad39994637a332dfae ****/ + /****** AIS_Plane::SetCurrentMode ******/ + /****** md5 signature: 52128d8f940c1aad39994637a332dfae ******/ %feature("compactdefaultargs") SetCurrentMode; %feature("autodoc", " Parameters @@ -14107,8 +14107,8 @@ Allows you to provide settings for a non-default current display mode. ") SetCurrentMode; void SetCurrentMode(const Standard_Boolean theCurrentMode); - /****************** SetMinimumSize ******************/ - /**** md5 signature: b30f135ff9e397ec4e41d915825ab7d0 ****/ + /****** AIS_Plane::SetMinimumSize ******/ + /****** md5 signature: b30f135ff9e397ec4e41d915825ab7d0 ******/ %feature("compactdefaultargs") SetMinimumSize; %feature("autodoc", " Parameters @@ -14125,8 +14125,8 @@ Sets transform persistence for zoom with value of minimum size. ") SetMinimumSize; void SetMinimumSize(const Standard_Real theValue); - /****************** SetPlaneAttributes ******************/ - /**** md5 signature: fcab47c7809627db9a9877e1b1b1ecfc ****/ + /****** AIS_Plane::SetPlaneAttributes ******/ + /****** md5 signature: fcab47c7809627db9a9877e1b1b1ecfc ******/ %feature("compactdefaultargs") SetPlaneAttributes; %feature("autodoc", " Parameters @@ -14146,8 +14146,8 @@ Allows you to provide settings other than default ones for the selected plane. t ") SetPlaneAttributes; void SetPlaneAttributes(const opencascade::handle & aComponent, const gp_Pnt & aCenter, const gp_Pnt & aPmin, const gp_Pnt & aPmax); - /****************** SetSize ******************/ - /**** md5 signature: c65fe36c41e6254ef40d079d847a39ba ****/ + /****** AIS_Plane::SetSize ******/ + /****** md5 signature: c65fe36c41e6254ef40d079d847a39ba ******/ %feature("compactdefaultargs") SetSize; %feature("autodoc", " Parameters @@ -14164,8 +14164,8 @@ Same value for x and y directions. ") SetSize; void SetSize(const Standard_Real aValue); - /****************** SetSize ******************/ - /**** md5 signature: 62b5a679beaf40fe5973c710160a59dc ****/ + /****** AIS_Plane::SetSize ******/ + /****** md5 signature: 62b5a679beaf40fe5973c710160a59dc ******/ %feature("compactdefaultargs") SetSize; %feature("autodoc", " Parameters @@ -14183,8 +14183,8 @@ Sets the size defined by the length along the x axis xval and the length along t ") SetSize; void SetSize(const Standard_Real Xval, const Standard_Real YVal); - /****************** SetTypeOfSensitivity ******************/ - /**** md5 signature: 0961922ef3f5c20bfe8405bc7846dadb ****/ + /****** AIS_Plane::SetTypeOfSensitivity ******/ + /****** md5 signature: 0961922ef3f5c20bfe8405bc7846dadb ******/ %feature("compactdefaultargs") SetTypeOfSensitivity; %feature("autodoc", " Parameters @@ -14201,8 +14201,8 @@ Sets the type of sensitivity for the plane. ") SetTypeOfSensitivity; void SetTypeOfSensitivity(Select3D_TypeOfSensitivity theTypeOfSensitivity); - /****************** Signature ******************/ - /**** md5 signature: 4e037e01ba764fd5d5261e3d9ba6557d ****/ + /****** AIS_Plane::Signature ******/ + /****** md5 signature: 4e037e01ba764fd5d5261e3d9ba6557d ******/ %feature("compactdefaultargs") Signature; %feature("autodoc", "Return ------- @@ -14214,8 +14214,8 @@ No available documentation. ") Signature; virtual Standard_Integer Signature(); - /****************** Size ******************/ - /**** md5 signature: c55e2744a8e0a499ff417b8524bf3c2d ****/ + /****** AIS_Plane::Size ******/ + /****** md5 signature: c55e2744a8e0a499ff417b8524bf3c2d ******/ %feature("compactdefaultargs") Size; %feature("autodoc", " Parameters @@ -14232,8 +14232,8 @@ No available documentation. ") Size; Standard_Boolean Size(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Type ******************/ - /**** md5 signature: bf4aea6b24d0b584b57c781f208134ec ****/ + /****** AIS_Plane::Type ******/ + /****** md5 signature: bf4aea6b24d0b584b57c781f208134ec ******/ %feature("compactdefaultargs") Type; %feature("autodoc", "Return ------- @@ -14245,8 +14245,8 @@ No available documentation. ") Type; virtual AIS_KindOfInteractive Type(); - /****************** TypeOfPlane ******************/ - /**** md5 signature: b5d4b79d2d9f478b8bfb8f6f08aeff9a ****/ + /****** AIS_Plane::TypeOfPlane ******/ + /****** md5 signature: b5d4b79d2d9f478b8bfb8f6f08aeff9a ******/ %feature("compactdefaultargs") TypeOfPlane; %feature("autodoc", "Return ------- @@ -14258,8 +14258,8 @@ Returns the type of plane - xy, yz, xz or unknown. ") TypeOfPlane; AIS_TypeOfPlane TypeOfPlane(); - /****************** TypeOfSensitivity ******************/ - /**** md5 signature: c53b1e467cd6a018aa2a82b303f3ed51 ****/ + /****** AIS_Plane::TypeOfSensitivity ******/ + /****** md5 signature: c53b1e467cd6a018aa2a82b303f3ed51 ******/ %feature("compactdefaultargs") TypeOfSensitivity; %feature("autodoc", "Return ------- @@ -14271,8 +14271,8 @@ Returns the type of sensitivity for the plane;. ") TypeOfSensitivity; Select3D_TypeOfSensitivity TypeOfSensitivity(); - /****************** UnsetColor ******************/ - /**** md5 signature: 305de4c541ce8067f3ff456f9ec26b55 ****/ + /****** AIS_Plane::UnsetColor ******/ + /****** md5 signature: 305de4c541ce8067f3ff456f9ec26b55 ******/ %feature("compactdefaultargs") UnsetColor; %feature("autodoc", "Return ------- @@ -14284,8 +14284,8 @@ No available documentation. ") UnsetColor; void UnsetColor(); - /****************** UnsetMinimumSize ******************/ - /**** md5 signature: 455188e1c9c74ff00306b83f10dccb0d ****/ + /****** AIS_Plane::UnsetMinimumSize ******/ + /****** md5 signature: 455188e1c9c74ff00306b83f10dccb0d ******/ %feature("compactdefaultargs") UnsetMinimumSize; %feature("autodoc", "Return ------- @@ -14297,8 +14297,8 @@ Unsets transform persistence zoom. ") UnsetMinimumSize; void UnsetMinimumSize(); - /****************** UnsetSize ******************/ - /**** md5 signature: 01e2703c873bbcb3ae46d4b247bdacb6 ****/ + /****** AIS_Plane::UnsetSize ******/ + /****** md5 signature: 01e2703c873bbcb3ae46d4b247bdacb6 ******/ %feature("compactdefaultargs") UnsetSize; %feature("autodoc", "Return ------- @@ -14326,8 +14326,8 @@ No available documentation. ***************************/ class AIS_PlaneTrihedron : public AIS_InteractiveObject { public: - /****************** AIS_PlaneTrihedron ******************/ - /**** md5 signature: ae783f3a176a7a2444c5f23672eaf5c5 ****/ + /****** AIS_PlaneTrihedron::AIS_PlaneTrihedron ******/ + /****** md5 signature: ae783f3a176a7a2444c5f23672eaf5c5 ******/ %feature("compactdefaultargs") AIS_PlaneTrihedron; %feature("autodoc", " Parameters @@ -14344,8 +14344,8 @@ Initializes the plane aplane. the plane trihedron is constructed from this and a ") AIS_PlaneTrihedron; AIS_PlaneTrihedron(const opencascade::handle & aPlane); - /****************** AcceptDisplayMode ******************/ - /**** md5 signature: 4b2dbc71bc9796a113d83252030ddc96 ****/ + /****** AIS_PlaneTrihedron::AcceptDisplayMode ******/ + /****** md5 signature: 4b2dbc71bc9796a113d83252030ddc96 ******/ %feature("compactdefaultargs") AcceptDisplayMode; %feature("autodoc", " Parameters @@ -14362,8 +14362,8 @@ Returns true if the display mode selected, amode, is valid. ") AcceptDisplayMode; Standard_Boolean AcceptDisplayMode(const Standard_Integer aMode); - /****************** Component ******************/ - /**** md5 signature: e2c0d02519a70a2ebf4ac43e0b834b9e ****/ + /****** AIS_PlaneTrihedron::Component ******/ + /****** md5 signature: e2c0d02519a70a2ebf4ac43e0b834b9e ******/ %feature("compactdefaultargs") Component; %feature("autodoc", "Return ------- @@ -14375,8 +14375,8 @@ Returns the component specified in setcomponent. ") Component; opencascade::handle Component(); - /****************** GetLength ******************/ - /**** md5 signature: 9390a920d888683f8b474026b2d95a49 ****/ + /****** AIS_PlaneTrihedron::GetLength ******/ + /****** md5 signature: 9390a920d888683f8b474026b2d95a49 ******/ %feature("compactdefaultargs") GetLength; %feature("autodoc", "Return ------- @@ -14388,8 +14388,8 @@ Returns the length of x and y axes. ") GetLength; Standard_Real GetLength(); - /****************** Position ******************/ - /**** md5 signature: 7d9aba563ce6c4534b6f60ef5450366a ****/ + /****** AIS_PlaneTrihedron::Position ******/ + /****** md5 signature: 7d9aba563ce6c4534b6f60ef5450366a ******/ %feature("compactdefaultargs") Position; %feature("autodoc", "Return ------- @@ -14401,8 +14401,8 @@ Returns the point of origin of the plane trihedron. ") Position; opencascade::handle Position(); - /****************** SetColor ******************/ - /**** md5 signature: 259272248bacb2cef242adbc667f0ef9 ****/ + /****** AIS_PlaneTrihedron::SetColor ******/ + /****** md5 signature: 259272248bacb2cef242adbc667f0ef9 ******/ %feature("compactdefaultargs") SetColor; %feature("autodoc", " Parameters @@ -14419,8 +14419,8 @@ Allows you to provide settings for the color acolor. ") SetColor; virtual void SetColor(const Quantity_Color & theColor); - /****************** SetComponent ******************/ - /**** md5 signature: 1bca8d1d2d75bebfbc41ee846bfa84a1 ****/ + /****** AIS_PlaneTrihedron::SetComponent ******/ + /****** md5 signature: 1bca8d1d2d75bebfbc41ee846bfa84a1 ******/ %feature("compactdefaultargs") SetComponent; %feature("autodoc", " Parameters @@ -14437,8 +14437,8 @@ Creates an instance of the component object aplane. ") SetComponent; void SetComponent(const opencascade::handle & aPlane); - /****************** SetLength ******************/ - /**** md5 signature: 8666b48a650ccc14efb217be9a1a2a9d ****/ + /****** AIS_PlaneTrihedron::SetLength ******/ + /****** md5 signature: 8666b48a650ccc14efb217be9a1a2a9d ******/ %feature("compactdefaultargs") SetLength; %feature("autodoc", " Parameters @@ -14455,8 +14455,8 @@ Sets the length of the x and y axes. ") SetLength; void SetLength(const Standard_Real theLength); - /****************** SetXLabel ******************/ - /**** md5 signature: 77db9994f4c4890941ca57fa8eb88e9a ****/ + /****** AIS_PlaneTrihedron::SetXLabel ******/ + /****** md5 signature: 77db9994f4c4890941ca57fa8eb88e9a ******/ %feature("compactdefaultargs") SetXLabel; %feature("autodoc", " Parameters @@ -14473,8 +14473,8 @@ No available documentation. ") SetXLabel; void SetXLabel(TCollection_AsciiString theLabel); - /****************** SetYLabel ******************/ - /**** md5 signature: 8fe68a257c14798d817c0a27a82042b8 ****/ + /****** AIS_PlaneTrihedron::SetYLabel ******/ + /****** md5 signature: 8fe68a257c14798d817c0a27a82042b8 ******/ %feature("compactdefaultargs") SetYLabel; %feature("autodoc", " Parameters @@ -14491,8 +14491,8 @@ No available documentation. ") SetYLabel; void SetYLabel(TCollection_AsciiString theLabel); - /****************** Signature ******************/ - /**** md5 signature: 4e037e01ba764fd5d5261e3d9ba6557d ****/ + /****** AIS_PlaneTrihedron::Signature ******/ + /****** md5 signature: 4e037e01ba764fd5d5261e3d9ba6557d ******/ %feature("compactdefaultargs") Signature; %feature("autodoc", "Return ------- @@ -14504,8 +14504,8 @@ No available documentation. ") Signature; virtual Standard_Integer Signature(); - /****************** Type ******************/ - /**** md5 signature: bf4aea6b24d0b584b57c781f208134ec ****/ + /****** AIS_PlaneTrihedron::Type ******/ + /****** md5 signature: bf4aea6b24d0b584b57c781f208134ec ******/ %feature("compactdefaultargs") Type; %feature("autodoc", "Return ------- @@ -14517,8 +14517,8 @@ Returns datum as the type of interactive object. ") Type; virtual AIS_KindOfInteractive Type(); - /****************** XAxis ******************/ - /**** md5 signature: e4128aaf660a4951e55140d350cd10f9 ****/ + /****** AIS_PlaneTrihedron::XAxis ******/ + /****** md5 signature: e4128aaf660a4951e55140d350cd10f9 ******/ %feature("compactdefaultargs") XAxis; %feature("autodoc", "Return ------- @@ -14530,8 +14530,8 @@ Returns the 'xaxis'. ") XAxis; opencascade::handle XAxis(); - /****************** YAxis ******************/ - /**** md5 signature: 0a267871ff2869b09e2a9b41404ae03b ****/ + /****** AIS_PlaneTrihedron::YAxis ******/ + /****** md5 signature: 0a267871ff2869b09e2a9b41404ae03b ******/ %feature("compactdefaultargs") YAxis; %feature("autodoc", "Return ------- @@ -14559,8 +14559,8 @@ Returns the 'yaxis'. ******************/ class AIS_Point : public AIS_InteractiveObject { public: - /****************** AIS_Point ******************/ - /**** md5 signature: 2f1f87ccd8789d1b41f61f012d372bc1 ****/ + /****** AIS_Point::AIS_Point ******/ + /****** md5 signature: 2f1f87ccd8789d1b41f61f012d372bc1 ******/ %feature("compactdefaultargs") AIS_Point; %feature("autodoc", " Parameters @@ -14577,8 +14577,8 @@ Initializes the point acomponent from which the point datum will be built. ") AIS_Point; AIS_Point(const opencascade::handle & aComponent); - /****************** AcceptDisplayMode ******************/ - /**** md5 signature: 4b2dbc71bc9796a113d83252030ddc96 ****/ + /****** AIS_Point::AcceptDisplayMode ******/ + /****** md5 signature: 4b2dbc71bc9796a113d83252030ddc96 ******/ %feature("compactdefaultargs") AcceptDisplayMode; %feature("autodoc", " Parameters @@ -14595,8 +14595,8 @@ Returns true if the display mode selected is valid for point datums. ") AcceptDisplayMode; Standard_Boolean AcceptDisplayMode(const Standard_Integer aMode); - /****************** Component ******************/ - /**** md5 signature: 04da78de5b13e434be2216d44998d0e9 ****/ + /****** AIS_Point::Component ******/ + /****** md5 signature: 04da78de5b13e434be2216d44998d0e9 ******/ %feature("compactdefaultargs") Component; %feature("autodoc", "Return ------- @@ -14608,8 +14608,8 @@ Returns the component specified in setcomponent. ") Component; opencascade::handle Component(); - /****************** HasMarker ******************/ - /**** md5 signature: 7622325081b114c983e5a28bc511c5cc ****/ + /****** AIS_Point::HasMarker ******/ + /****** md5 signature: 7622325081b114c983e5a28bc511c5cc ******/ %feature("compactdefaultargs") HasMarker; %feature("autodoc", "Return ------- @@ -14621,8 +14621,8 @@ Returns true if the point datum has a marker. ") HasMarker; Standard_Boolean HasMarker(); - /****************** SetColor ******************/ - /**** md5 signature: 259272248bacb2cef242adbc667f0ef9 ****/ + /****** AIS_Point::SetColor ******/ + /****** md5 signature: 259272248bacb2cef242adbc667f0ef9 ******/ %feature("compactdefaultargs") SetColor; %feature("autodoc", " Parameters @@ -14639,8 +14639,8 @@ Allows you to provide settings for the color. ") SetColor; virtual void SetColor(const Quantity_Color & theColor); - /****************** SetComponent ******************/ - /**** md5 signature: e1a4992bb046aba80ac5162deb11429f ****/ + /****** AIS_Point::SetComponent ******/ + /****** md5 signature: e1a4992bb046aba80ac5162deb11429f ******/ %feature("compactdefaultargs") SetComponent; %feature("autodoc", " Parameters @@ -14657,8 +14657,8 @@ Constructs an instance of the point acomponent. ") SetComponent; void SetComponent(const opencascade::handle & aComponent); - /****************** SetMarker ******************/ - /**** md5 signature: 53b11e7f18efb0f33c0075851766f7e8 ****/ + /****** AIS_Point::SetMarker ******/ + /****** md5 signature: 53b11e7f18efb0f33c0075851766f7e8 ******/ %feature("compactdefaultargs") SetMarker; %feature("autodoc", " Parameters @@ -14675,8 +14675,8 @@ Allows you to provide settings for a marker. these include - type of marker, - m ") SetMarker; void SetMarker(const Aspect_TypeOfMarker aType); - /****************** Signature ******************/ - /**** md5 signature: 4e037e01ba764fd5d5261e3d9ba6557d ****/ + /****** AIS_Point::Signature ******/ + /****** md5 signature: 4e037e01ba764fd5d5261e3d9ba6557d ******/ %feature("compactdefaultargs") Signature; %feature("autodoc", "Return ------- @@ -14688,8 +14688,8 @@ Returns index 1, the default index for a point. ") Signature; virtual Standard_Integer Signature(); - /****************** Type ******************/ - /**** md5 signature: bf4aea6b24d0b584b57c781f208134ec ****/ + /****** AIS_Point::Type ******/ + /****** md5 signature: bf4aea6b24d0b584b57c781f208134ec ******/ %feature("compactdefaultargs") Type; %feature("autodoc", "Return ------- @@ -14701,8 +14701,8 @@ Indicates that a point is a datum. ") Type; virtual AIS_KindOfInteractive Type(); - /****************** UnsetColor ******************/ - /**** md5 signature: 2da7e2ed6a63f7c70c36c2a82118a7ec ****/ + /****** AIS_Point::UnsetColor ******/ + /****** md5 signature: 2da7e2ed6a63f7c70c36c2a82118a7ec ******/ %feature("compactdefaultargs") UnsetColor; %feature("autodoc", "Return ------- @@ -14714,8 +14714,8 @@ Allows you to remove color settings. ") UnsetColor; virtual void UnsetColor(); - /****************** UnsetMarker ******************/ - /**** md5 signature: df2d21daa9af0f066f37782351572702 ****/ + /****** AIS_Point::UnsetMarker ******/ + /****** md5 signature: df2d21daa9af0f066f37782351572702 ******/ %feature("compactdefaultargs") UnsetMarker; %feature("autodoc", "Return ------- @@ -14727,8 +14727,8 @@ Removes the marker settings. ") UnsetMarker; void UnsetMarker(); - /****************** Vertex ******************/ - /**** md5 signature: f00980db3d22a7e6d7f5f1300940ccaa ****/ + /****** AIS_Point::Vertex ******/ + /****** md5 signature: f00980db3d22a7e6d7f5f1300940ccaa ******/ %feature("compactdefaultargs") Vertex; %feature("autodoc", "Return ------- @@ -14789,8 +14789,8 @@ SM_BndBox = SelectionMode.SM_BndBox }; /* end python proxy for enums */ - /****************** AIS_PointCloud ******************/ - /**** md5 signature: a48e67fa09efde4b134cc4b5e5b4ca47 ****/ + /****** AIS_PointCloud::AIS_PointCloud ******/ + /****** md5 signature: a48e67fa09efde4b134cc4b5e5b4ca47 ******/ %feature("compactdefaultargs") AIS_PointCloud; %feature("autodoc", "Return ------- @@ -14802,8 +14802,8 @@ Constructor. ") AIS_PointCloud; AIS_PointCloud(); - /****************** GetBoundingBox ******************/ - /**** md5 signature: c776ca3f9f7d80c6934fc1b6003552bc ****/ + /****** AIS_PointCloud::GetBoundingBox ******/ + /****** md5 signature: c776ca3f9f7d80c6934fc1b6003552bc ******/ %feature("compactdefaultargs") GetBoundingBox; %feature("autodoc", "Return ------- @@ -14815,8 +14815,8 @@ Get bounding box for presentation. ") GetBoundingBox; virtual Bnd_Box GetBoundingBox(); - /****************** GetPoints ******************/ - /**** md5 signature: e4eda70415581cdfb96fa049a3263656 ****/ + /****** AIS_PointCloud::GetPoints ******/ + /****** md5 signature: e4eda70415581cdfb96fa049a3263656 ******/ %feature("compactdefaultargs") GetPoints; %feature("autodoc", "Return ------- @@ -14828,8 +14828,8 @@ Get the points array. method might be overridden to fill in points array dynamic ") GetPoints; virtual const opencascade::handle GetPoints(); - /****************** SetColor ******************/ - /**** md5 signature: 259272248bacb2cef242adbc667f0ef9 ****/ + /****** AIS_PointCloud::SetColor ******/ + /****** md5 signature: 259272248bacb2cef242adbc667f0ef9 ******/ %feature("compactdefaultargs") SetColor; %feature("autodoc", " Parameters @@ -14846,8 +14846,8 @@ Setup custom color. affects presentation only when no per-point color attribute ") SetColor; virtual void SetColor(const Quantity_Color & theColor); - /****************** SetMaterial ******************/ - /**** md5 signature: 2361a3d4a6a38f1663c4f2b668f1199e ****/ + /****** AIS_PointCloud::SetMaterial ******/ + /****** md5 signature: 2361a3d4a6a38f1663c4f2b668f1199e ******/ %feature("compactdefaultargs") SetMaterial; %feature("autodoc", " Parameters @@ -14864,8 +14864,8 @@ Setup custom material. affects presentation only when normals are defined. ") SetMaterial; virtual void SetMaterial(const Graphic3d_MaterialAspect & theMat); - /****************** SetPoints ******************/ - /**** md5 signature: 0b6a2d7fb3cf24bd7f5f4e81bd82b008 ****/ + /****** AIS_PointCloud::SetPoints ******/ + /****** md5 signature: 0b6a2d7fb3cf24bd7f5f4e81bd82b008 ******/ %feature("compactdefaultargs") SetPoints; %feature("autodoc", " Parameters @@ -14882,8 +14882,8 @@ Sets the points from array of points. method will not copy the input data - arra ") SetPoints; virtual void SetPoints(const opencascade::handle & thePoints); - /****************** SetPoints ******************/ - /**** md5 signature: a5e4149d123953f4aa31667666e721d4 ****/ + /****** AIS_PointCloud::SetPoints ******/ + /****** md5 signature: a5e4149d123953f4aa31667666e721d4 ******/ %feature("compactdefaultargs") SetPoints; %feature("autodoc", " Parameters @@ -14902,8 +14902,8 @@ Sets the points with optional colors. the input data will be copied into interna ") SetPoints; virtual void SetPoints(const opencascade::handle & theCoords, const opencascade::handle & theColors = NULL, const opencascade::handle & theNormals = NULL); - /****************** UnsetColor ******************/ - /**** md5 signature: 2da7e2ed6a63f7c70c36c2a82118a7ec ****/ + /****** AIS_PointCloud::UnsetColor ******/ + /****** md5 signature: 2da7e2ed6a63f7c70c36c2a82118a7ec ******/ %feature("compactdefaultargs") UnsetColor; %feature("autodoc", "Return ------- @@ -14915,8 +14915,8 @@ Restore default color. ") UnsetColor; virtual void UnsetColor(); - /****************** UnsetMaterial ******************/ - /**** md5 signature: 0a051ddc9f5267e24615c6f3dfd30498 ****/ + /****** AIS_PointCloud::UnsetMaterial ******/ + /****** md5 signature: 0a051ddc9f5267e24615c6f3dfd30498 ******/ %feature("compactdefaultargs") UnsetMaterial; %feature("autodoc", "Return ------- @@ -14944,8 +14944,8 @@ Restore default material. ***********************/ class AIS_RubberBand : public AIS_InteractiveObject { public: - /****************** AIS_RubberBand ******************/ - /**** md5 signature: 830a722d349851c570ded7e3f3ebacf8 ****/ + /****** AIS_RubberBand::AIS_RubberBand ******/ + /****** md5 signature: 830a722d349851c570ded7e3f3ebacf8 ******/ %feature("compactdefaultargs") AIS_RubberBand; %feature("autodoc", "Return ------- @@ -14957,8 +14957,8 @@ Constructs rubber band with default configuration: empty filling and white solid ") AIS_RubberBand; AIS_RubberBand(); - /****************** AIS_RubberBand ******************/ - /**** md5 signature: f206c8224cee53d31fb6bb8cc43bef8e ****/ + /****** AIS_RubberBand::AIS_RubberBand ******/ + /****** md5 signature: f206c8224cee53d31fb6bb8cc43bef8e ******/ %feature("compactdefaultargs") AIS_RubberBand; %feature("autodoc", " Parameters @@ -14978,8 +14978,8 @@ Consructs the rubber band with empty filling and defined line style. @param thel ") AIS_RubberBand; AIS_RubberBand(const Quantity_Color & theLineColor, const Aspect_TypeOfLine theType, const Standard_Real theLineWidth = 1.0, const Standard_Boolean theIsPolygonClosed = Standard_True); - /****************** AIS_RubberBand ******************/ - /**** md5 signature: 89e6e93566c08dfc9ed6bc2ca57390a0 ****/ + /****** AIS_RubberBand::AIS_RubberBand ******/ + /****** md5 signature: 89e6e93566c08dfc9ed6bc2ca57390a0 ******/ %feature("compactdefaultargs") AIS_RubberBand; %feature("autodoc", " Parameters @@ -15001,8 +15001,8 @@ Constructs the rubber band with defined filling and line parameters. @param thel ") AIS_RubberBand; AIS_RubberBand(const Quantity_Color & theLineColor, const Aspect_TypeOfLine theType, const Quantity_Color theFillColor, const Standard_Real theTransparency = 1.0, const Standard_Real theLineWidth = 1.0, const Standard_Boolean theIsPolygonClosed = Standard_True); - /****************** AddPoint ******************/ - /**** md5 signature: 42c27bcd3e0ab815d6401243fb685b51 ****/ + /****** AIS_RubberBand::AddPoint ******/ + /****** md5 signature: 42c27bcd3e0ab815d6401243fb685b51 ******/ %feature("compactdefaultargs") AddPoint; %feature("autodoc", " Parameters @@ -15019,8 +15019,8 @@ Adds last point to the list of points. they are used to build polygon for rubber ") AddPoint; void AddPoint(const Graphic3d_Vec2i & thePoint); - /****************** ClearPoints ******************/ - /**** md5 signature: 666d63d9f2a8b4f033341bec50a0bbe5 ****/ + /****** AIS_RubberBand::ClearPoints ******/ + /****** md5 signature: 666d63d9f2a8b4f033341bec50a0bbe5 ******/ %feature("compactdefaultargs") ClearPoints; %feature("autodoc", "Return ------- @@ -15032,8 +15032,8 @@ Remove all points for the rubber band polygon. ") ClearPoints; void ClearPoints(); - /****************** FillColor ******************/ - /**** md5 signature: ffbf8b528d2e8dbd58b3fdc84942a96d ****/ + /****** AIS_RubberBand::FillColor ******/ + /****** md5 signature: ffbf8b528d2e8dbd58b3fdc84942a96d ******/ %feature("compactdefaultargs") FillColor; %feature("autodoc", "Return ------- @@ -15045,8 +15045,8 @@ Return the color of rubber band filling. ") FillColor; Quantity_Color FillColor(); - /****************** FillTransparency ******************/ - /**** md5 signature: 0c352e3dbfa6432d72d8ec9221d3015d ****/ + /****** AIS_RubberBand::FillTransparency ******/ + /****** md5 signature: 0c352e3dbfa6432d72d8ec9221d3015d ******/ %feature("compactdefaultargs") FillTransparency; %feature("autodoc", "Return ------- @@ -15058,8 +15058,8 @@ Return fill transparency. ") FillTransparency; Standard_Real FillTransparency(); - /****************** IsFilling ******************/ - /**** md5 signature: 91fdd2021ff1fad726886b499424ccdd ****/ + /****** AIS_RubberBand::IsFilling ******/ + /****** md5 signature: 91fdd2021ff1fad726886b499424ccdd ******/ %feature("compactdefaultargs") IsFilling; %feature("autodoc", "Return ------- @@ -15071,8 +15071,8 @@ Return true if filling of rubber band is enabled. ") IsFilling; Standard_Boolean IsFilling(); - /****************** IsPolygonClosed ******************/ - /**** md5 signature: deeb710d374819fbf6ad38f62a301293 ****/ + /****** AIS_RubberBand::IsPolygonClosed ******/ + /****** md5 signature: deeb710d374819fbf6ad38f62a301293 ******/ %feature("compactdefaultargs") IsPolygonClosed; %feature("autodoc", "Return ------- @@ -15084,8 +15084,8 @@ Return true if automatic closing of rubber band is enabled. ") IsPolygonClosed; Standard_Boolean IsPolygonClosed(); - /****************** LineColor ******************/ - /**** md5 signature: 287d3db7c040dbd903ae9bab4775434d ****/ + /****** AIS_RubberBand::LineColor ******/ + /****** md5 signature: 287d3db7c040dbd903ae9bab4775434d ******/ %feature("compactdefaultargs") LineColor; %feature("autodoc", "Return ------- @@ -15097,8 +15097,8 @@ Return the color attributes. ") LineColor; Quantity_Color LineColor(); - /****************** LineType ******************/ - /**** md5 signature: 0f99f64671ffab5d520407d1f66ce563 ****/ + /****** AIS_RubberBand::LineType ******/ + /****** md5 signature: 0f99f64671ffab5d520407d1f66ce563 ******/ %feature("compactdefaultargs") LineType; %feature("autodoc", "Return ------- @@ -15110,8 +15110,8 @@ Return type of lines. ") LineType; Aspect_TypeOfLine LineType(); - /****************** LineWidth ******************/ - /**** md5 signature: 7028be9a1a0deda89ceb2ccd30bda317 ****/ + /****** AIS_RubberBand::LineWidth ******/ + /****** md5 signature: 7028be9a1a0deda89ceb2ccd30bda317 ******/ %feature("compactdefaultargs") LineWidth; %feature("autodoc", "Return ------- @@ -15123,8 +15123,8 @@ Return width of lines. ") LineWidth; Standard_Real LineWidth(); - /****************** Points ******************/ - /**** md5 signature: f9612ca729b2bdd863061545066ec5cc ****/ + /****** AIS_RubberBand::Points ******/ + /****** md5 signature: f9612ca729b2bdd863061545066ec5cc ******/ %feature("compactdefaultargs") Points; %feature("autodoc", "Return ------- @@ -15136,8 +15136,8 @@ Return points for the rubber band polygon. ") Points; const NCollection_Sequence & Points(); - /****************** RemoveLastPoint ******************/ - /**** md5 signature: 90c19d859f20a83ceba67713ab84917b ****/ + /****** AIS_RubberBand::RemoveLastPoint ******/ + /****** md5 signature: 90c19d859f20a83ceba67713ab84917b ******/ %feature("compactdefaultargs") RemoveLastPoint; %feature("autodoc", "Return ------- @@ -15149,8 +15149,8 @@ Remove last point from the list of points for the rubber band polygon. @sa addpo ") RemoveLastPoint; void RemoveLastPoint(); - /****************** SetFillColor ******************/ - /**** md5 signature: a05c06141e0ede7ccc6b1d79a19ece27 ****/ + /****** AIS_RubberBand::SetFillColor ******/ + /****** md5 signature: a05c06141e0ede7ccc6b1d79a19ece27 ******/ %feature("compactdefaultargs") SetFillColor; %feature("autodoc", " Parameters @@ -15167,8 +15167,8 @@ Sets color of rubber band filling. ") SetFillColor; void SetFillColor(const Quantity_Color & theColor); - /****************** SetFillTransparency ******************/ - /**** md5 signature: 483f815d00ddd65d253b43360b4b15a1 ****/ + /****** AIS_RubberBand::SetFillTransparency ******/ + /****** md5 signature: 483f815d00ddd65d253b43360b4b15a1 ******/ %feature("compactdefaultargs") SetFillTransparency; %feature("autodoc", " Parameters @@ -15185,8 +15185,8 @@ Sets fill transparency. @param thevalue [in] the transparency value. 1.0 is for ") SetFillTransparency; void SetFillTransparency(const Standard_Real theValue); - /****************** SetFilling ******************/ - /**** md5 signature: df4f622ce4ceece864cea55c7c7d5893 ****/ + /****** AIS_RubberBand::SetFilling ******/ + /****** md5 signature: df4f622ce4ceece864cea55c7c7d5893 ******/ %feature("compactdefaultargs") SetFilling; %feature("autodoc", " Parameters @@ -15203,8 +15203,8 @@ Enable or disable filling of rubber band. ") SetFilling; void SetFilling(const Standard_Boolean theIsFilling); - /****************** SetFilling ******************/ - /**** md5 signature: 0bb022730b6fdadb73a8f3e7920af24e ****/ + /****** AIS_RubberBand::SetFilling ******/ + /****** md5 signature: 0bb022730b6fdadb73a8f3e7920af24e ******/ %feature("compactdefaultargs") SetFilling; %feature("autodoc", " Parameters @@ -15222,8 +15222,8 @@ Enable filling of rubber band with defined parameters. @param thecolor [in] colo ") SetFilling; void SetFilling(const Quantity_Color theColor, const Standard_Real theTransparency); - /****************** SetLineColor ******************/ - /**** md5 signature: cda5d06f471777b34354dd1e594e9ba9 ****/ + /****** AIS_RubberBand::SetLineColor ******/ + /****** md5 signature: cda5d06f471777b34354dd1e594e9ba9 ******/ %feature("compactdefaultargs") SetLineColor; %feature("autodoc", " Parameters @@ -15240,8 +15240,8 @@ Sets color of lines for rubber band presentation. ") SetLineColor; void SetLineColor(const Quantity_Color & theColor); - /****************** SetLineType ******************/ - /**** md5 signature: ad6a901b16ac578c15dc18e99302b01e ****/ + /****** AIS_RubberBand::SetLineType ******/ + /****** md5 signature: ad6a901b16ac578c15dc18e99302b01e ******/ %feature("compactdefaultargs") SetLineType; %feature("autodoc", " Parameters @@ -15258,8 +15258,8 @@ Sets type of line for rubber band presentation. ") SetLineType; void SetLineType(const Aspect_TypeOfLine theType); - /****************** SetLineWidth ******************/ - /**** md5 signature: b8f442f2ffcdc567b7bd62c5c4cdd45f ****/ + /****** AIS_RubberBand::SetLineWidth ******/ + /****** md5 signature: b8f442f2ffcdc567b7bd62c5c4cdd45f ******/ %feature("compactdefaultargs") SetLineWidth; %feature("autodoc", " Parameters @@ -15276,8 +15276,8 @@ Sets width of line for rubber band presentation. ") SetLineWidth; void SetLineWidth(const Standard_Real theWidth); - /****************** SetPolygonClosed ******************/ - /**** md5 signature: e051ee25b6bcca4aadc4fd8abe7e174a ****/ + /****** AIS_RubberBand::SetPolygonClosed ******/ + /****** md5 signature: e051ee25b6bcca4aadc4fd8abe7e174a ******/ %feature("compactdefaultargs") SetPolygonClosed; %feature("autodoc", " Parameters @@ -15294,8 +15294,8 @@ Automatically create an additional line connecting the first and the last screen ") SetPolygonClosed; void SetPolygonClosed(Standard_Boolean theIsPolygonClosed); - /****************** SetRectangle ******************/ - /**** md5 signature: a10c4a7ba9e0ff374fd3fd9a26e1088a ****/ + /****** AIS_RubberBand::SetRectangle ******/ + /****** md5 signature: a10c4a7ba9e0ff374fd3fd9a26e1088a ******/ %feature("compactdefaultargs") SetRectangle; %feature("autodoc", " Parameters @@ -15331,8 +15331,8 @@ Sets rectangle bounds. ******************/ class AIS_Shape : public AIS_InteractiveObject { public: - /****************** AIS_Shape ******************/ - /**** md5 signature: 676def0e267dd9cfd41b78bdeb64a3a6 ****/ + /****** AIS_Shape::AIS_Shape ******/ + /****** md5 signature: 676def0e267dd9cfd41b78bdeb64a3a6 ******/ %feature("compactdefaultargs") AIS_Shape; %feature("autodoc", " Parameters @@ -15349,8 +15349,8 @@ Initializes construction of the shape shap from wires, edges and vertices. ") AIS_Shape; AIS_Shape(const TopoDS_Shape & shap); - /****************** AcceptDisplayMode ******************/ - /**** md5 signature: 4c81f1c2cfc05fd196e1c09a383a3455 ****/ + /****** AIS_Shape::AcceptDisplayMode ******/ + /****** md5 signature: 4c81f1c2cfc05fd196e1c09a383a3455 ******/ %feature("compactdefaultargs") AcceptDisplayMode; %feature("autodoc", " Parameters @@ -15367,8 +15367,8 @@ Return true if specified display mode is supported. ") AcceptDisplayMode; virtual Standard_Boolean AcceptDisplayMode(const Standard_Integer theMode); - /****************** AcceptShapeDecomposition ******************/ - /**** md5 signature: 9203a7c0dd9eda460f91938a68e9d24e ****/ + /****** AIS_Shape::AcceptShapeDecomposition ******/ + /****** md5 signature: 9203a7c0dd9eda460f91938a68e9d24e ******/ %feature("compactdefaultargs") AcceptShapeDecomposition; %feature("autodoc", "Return ------- @@ -15380,8 +15380,8 @@ Returns true if the interactive object accepts shape decomposition. ") AcceptShapeDecomposition; virtual Standard_Boolean AcceptShapeDecomposition(); - /****************** BoundingBox ******************/ - /**** md5 signature: c5ba355b93437b89fc95a23246eabd6a ****/ + /****** AIS_Shape::BoundingBox ******/ + /****** md5 signature: c5ba355b93437b89fc95a23246eabd6a ******/ %feature("compactdefaultargs") BoundingBox; %feature("autodoc", "Return ------- @@ -15393,8 +15393,8 @@ Constructs a bounding box with which to reconstruct compound topological shapes ") BoundingBox; virtual const Bnd_Box & BoundingBox(); - /****************** Color ******************/ - /**** md5 signature: 1982b45d283b92077c1723466ec20a14 ****/ + /****** AIS_Shape::Color ******/ + /****** md5 signature: 1982b45d283b92077c1723466ec20a14 ******/ %feature("compactdefaultargs") Color; %feature("autodoc", " Parameters @@ -15432,8 +15432,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** Material ******************/ - /**** md5 signature: bd49ae260cc3f6209d9618dfc722ced2 ****/ + /****** AIS_Shape::Material ******/ + /****** md5 signature: bd49ae260cc3f6209d9618dfc722ced2 ******/ %feature("compactdefaultargs") Material; %feature("autodoc", "Return ------- @@ -15445,8 +15445,8 @@ Returns the nameofmaterial attributes of the shape accordingly to the current fa ") Material; virtual Graphic3d_NameOfMaterial Material(); - /****************** OwnDeviationAngle ******************/ - /**** md5 signature: 40e9067bc6e61f75e42a502bd518a070 ****/ + /****** AIS_Shape::OwnDeviationAngle ******/ + /****** md5 signature: 40e9067bc6e61f75e42a502bd518a070 ******/ %feature("compactdefaultargs") OwnDeviationAngle; %feature("autodoc", " Parameters @@ -15463,8 +15463,8 @@ Returns true and the values of the deviation angle anangle and the previous devi ") OwnDeviationAngle; Standard_Boolean OwnDeviationAngle(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** OwnDeviationCoefficient ******************/ - /**** md5 signature: 37b33b79d8eb25faa0a3dd31519d110a ****/ + /****** AIS_Shape::OwnDeviationCoefficient ******/ + /****** md5 signature: 37b33b79d8eb25faa0a3dd31519d110a ******/ %feature("compactdefaultargs") OwnDeviationCoefficient; %feature("autodoc", " Parameters @@ -15481,8 +15481,8 @@ Returns true and the values of the deviation coefficient acoefficient and the pr ") OwnDeviationCoefficient; Standard_Boolean OwnDeviationCoefficient(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** SelectionMode ******************/ - /**** md5 signature: 4a947460fc181fe83e633a9f49d508dd ****/ + /****** AIS_Shape::SelectionMode ******/ + /****** md5 signature: 4a947460fc181fe83e633a9f49d508dd ******/ %feature("compactdefaultargs") SelectionMode; %feature("autodoc", " Parameters @@ -15499,8 +15499,8 @@ Return selection mode for specified shape type. ") SelectionMode; static Standard_Integer SelectionMode(const TopAbs_ShapeEnum theShapeType); - /****************** SelectionType ******************/ - /**** md5 signature: 3418b538998473b7ebfd408f8153924e ****/ + /****** AIS_Shape::SelectionType ******/ + /****** md5 signature: 3418b538998473b7ebfd408f8153924e ******/ %feature("compactdefaultargs") SelectionType; %feature("autodoc", " Parameters @@ -15517,8 +15517,8 @@ Return shape type for specified selection mode. ") SelectionType; static TopAbs_ShapeEnum SelectionType(const Standard_Integer theSelMode); - /****************** Set ******************/ - /**** md5 signature: 51503ed05940c30aefe5458efb0529e5 ****/ + /****** AIS_Shape::Set ******/ + /****** md5 signature: 51503ed05940c30aefe5458efb0529e5 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -15535,8 +15535,8 @@ Alias for ::setshape(). ") Set; void Set(const TopoDS_Shape & theShape); - /****************** SetAngleAndDeviation ******************/ - /**** md5 signature: 3f26a06c2a928474bccaea0ef6a5a4cd ****/ + /****** AIS_Shape::SetAngleAndDeviation ******/ + /****** md5 signature: 3f26a06c2a928474bccaea0ef6a5a4cd ******/ %feature("compactdefaultargs") SetAngleAndDeviation; %feature("autodoc", " Parameters @@ -15553,8 +15553,8 @@ This compute a new angle and deviation from the value anangle and set the values ") SetAngleAndDeviation; void SetAngleAndDeviation(const Standard_Real anAngle); - /****************** SetColor ******************/ - /**** md5 signature: 259272248bacb2cef242adbc667f0ef9 ****/ + /****** AIS_Shape::SetColor ******/ + /****** md5 signature: 259272248bacb2cef242adbc667f0ef9 ******/ %feature("compactdefaultargs") SetColor; %feature("autodoc", " Parameters @@ -15571,8 +15571,8 @@ Sets the color acolor in the reconstructed compound shape. acts via the drawer m ") SetColor; virtual void SetColor(const Quantity_Color & theColor); - /****************** SetMaterial ******************/ - /**** md5 signature: cc1b64cc41c0ecb4b453d96f4996d469 ****/ + /****** AIS_Shape::SetMaterial ******/ + /****** md5 signature: cc1b64cc41c0ecb4b453d96f4996d469 ******/ %feature("compactdefaultargs") SetMaterial; %feature("autodoc", " Parameters @@ -15589,8 +15589,8 @@ Allows you to provide settings for the material aname in the reconstructed compo ") SetMaterial; virtual void SetMaterial(const Graphic3d_MaterialAspect & aName); - /****************** SetOwnDeviationAngle ******************/ - /**** md5 signature: aec2fb5ac4ce30b0f41b58af1d45999f ****/ + /****** AIS_Shape::SetOwnDeviationAngle ******/ + /****** md5 signature: aec2fb5ac4ce30b0f41b58af1d45999f ******/ %feature("compactdefaultargs") SetOwnDeviationAngle; %feature("autodoc", "Return ------- @@ -15602,8 +15602,8 @@ Sets a local value for deviation angle for this specific shape. ") SetOwnDeviationAngle; Standard_Boolean SetOwnDeviationAngle(); - /****************** SetOwnDeviationAngle ******************/ - /**** md5 signature: 3061c55552c128f703fa14901147c62a ****/ + /****** AIS_Shape::SetOwnDeviationAngle ******/ + /****** md5 signature: 3061c55552c128f703fa14901147c62a ******/ %feature("compactdefaultargs") SetOwnDeviationAngle; %feature("autodoc", " Parameters @@ -15620,8 +15620,8 @@ Sets myowndeviationangle field in prs3d_drawer & recomputes presentation. ") SetOwnDeviationAngle; void SetOwnDeviationAngle(const Standard_Real anAngle); - /****************** SetOwnDeviationCoefficient ******************/ - /**** md5 signature: 1c85ce58334056121dacea2a7d566b14 ****/ + /****** AIS_Shape::SetOwnDeviationCoefficient ******/ + /****** md5 signature: 1c85ce58334056121dacea2a7d566b14 ******/ %feature("compactdefaultargs") SetOwnDeviationCoefficient; %feature("autodoc", "Return ------- @@ -15633,8 +15633,8 @@ Sets a local value for deviation coefficient for this specific shape. ") SetOwnDeviationCoefficient; Standard_Boolean SetOwnDeviationCoefficient(); - /****************** SetOwnDeviationCoefficient ******************/ - /**** md5 signature: 75d3daa7bdb95da77761e0553fc0712d ****/ + /****** AIS_Shape::SetOwnDeviationCoefficient ******/ + /****** md5 signature: 75d3daa7bdb95da77761e0553fc0712d ******/ %feature("compactdefaultargs") SetOwnDeviationCoefficient; %feature("autodoc", " Parameters @@ -15651,8 +15651,8 @@ Sets a local value for deviation coefficient for this specific shape. ") SetOwnDeviationCoefficient; void SetOwnDeviationCoefficient(const Standard_Real aCoefficient); - /****************** SetShape ******************/ - /**** md5 signature: 927e2ebe2fb5354dfb3da3c53e512cad ****/ + /****** AIS_Shape::SetShape ******/ + /****** md5 signature: 927e2ebe2fb5354dfb3da3c53e512cad ******/ %feature("compactdefaultargs") SetShape; %feature("autodoc", " Parameters @@ -15669,8 +15669,8 @@ Constructs an instance of the shape object theshape. ") SetShape; void SetShape(const TopoDS_Shape & theShape); - /****************** SetTextureOriginUV ******************/ - /**** md5 signature: ef6ae799011e0e64c5951dbb75a0bbf3 ****/ + /****** AIS_Shape::SetTextureOriginUV ******/ + /****** md5 signature: ef6ae799011e0e64c5951dbb75a0bbf3 ******/ %feature("compactdefaultargs") SetTextureOriginUV; %feature("autodoc", " Parameters @@ -15687,8 +15687,8 @@ Use this method to change the origin of the texture. the texel (0,0) will be map ") SetTextureOriginUV; void SetTextureOriginUV(const gp_Pnt2d & theOriginUV); - /****************** SetTextureRepeatUV ******************/ - /**** md5 signature: 25b37b340fee812ff2a622d745958d59 ****/ + /****** AIS_Shape::SetTextureRepeatUV ******/ + /****** md5 signature: 25b37b340fee812ff2a622d745958d59 ******/ %feature("compactdefaultargs") SetTextureRepeatUV; %feature("autodoc", " Parameters @@ -15705,8 +15705,8 @@ Sets the number of occurrences of the texture on each face. the texture itself i ") SetTextureRepeatUV; void SetTextureRepeatUV(const gp_Pnt2d & theRepeatUV); - /****************** SetTextureScaleUV ******************/ - /**** md5 signature: ec42ab71903fb0177a6a0aa0ee8187f9 ****/ + /****** AIS_Shape::SetTextureScaleUV ******/ + /****** md5 signature: ec42ab71903fb0177a6a0aa0ee8187f9 ******/ %feature("compactdefaultargs") SetTextureScaleUV; %feature("autodoc", " Parameters @@ -15723,8 +15723,8 @@ Use this method to scale the texture (percent of the face). you can specify a sc ") SetTextureScaleUV; void SetTextureScaleUV(const gp_Pnt2d & theScaleUV); - /****************** SetTransparency ******************/ - /**** md5 signature: 92324fa31dc7752e99539d3b250e4522 ****/ + /****** AIS_Shape::SetTransparency ******/ + /****** md5 signature: 92324fa31dc7752e99539d3b250e4522 ******/ %feature("compactdefaultargs") SetTransparency; %feature("autodoc", " Parameters @@ -15741,8 +15741,8 @@ Sets the value avalue for transparency in the reconstructed compound shape. ") SetTransparency; virtual void SetTransparency(const Standard_Real aValue = 0.6); - /****************** SetTypeOfHLR ******************/ - /**** md5 signature: f05d013edd687a2ace45302343607b0d ****/ + /****** AIS_Shape::SetTypeOfHLR ******/ + /****** md5 signature: f05d013edd687a2ace45302343607b0d ******/ %feature("compactdefaultargs") SetTypeOfHLR; %feature("autodoc", " Parameters @@ -15759,8 +15759,8 @@ Sets the type of hlr algorithm used by the shape. ") SetTypeOfHLR; void SetTypeOfHLR(const Prs3d_TypeOfHLR theTypeOfHLR); - /****************** SetWidth ******************/ - /**** md5 signature: e7615096a848f5015090af1e7028d21b ****/ + /****** AIS_Shape::SetWidth ******/ + /****** md5 signature: e7615096a848f5015090af1e7028d21b ******/ %feature("compactdefaultargs") SetWidth; %feature("autodoc", " Parameters @@ -15777,8 +15777,8 @@ Sets the value avalue for line width in the reconstructed compound shape. change ") SetWidth; virtual void SetWidth(const Standard_Real aValue); - /****************** Shape ******************/ - /**** md5 signature: 1058569f5d639354fedf11e73741b7df ****/ + /****** AIS_Shape::Shape ******/ + /****** md5 signature: 1058569f5d639354fedf11e73741b7df ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -15790,8 +15790,8 @@ Returns this shape object. ") Shape; const TopoDS_Shape Shape(); - /****************** Signature ******************/ - /**** md5 signature: 4e037e01ba764fd5d5261e3d9ba6557d ****/ + /****** AIS_Shape::Signature ******/ + /****** md5 signature: 4e037e01ba764fd5d5261e3d9ba6557d ******/ %feature("compactdefaultargs") Signature; %feature("autodoc", "Return ------- @@ -15803,8 +15803,8 @@ Returns index 0. this value refers to shape from topabs_shapeenum. ") Signature; virtual Standard_Integer Signature(); - /****************** TextureOriginUV ******************/ - /**** md5 signature: c2e574654e7fff1283a776325c9d03eb ****/ + /****** AIS_Shape::TextureOriginUV ******/ + /****** md5 signature: c2e574654e7fff1283a776325c9d03eb ******/ %feature("compactdefaultargs") TextureOriginUV; %feature("autodoc", "Return ------- @@ -15816,8 +15816,8 @@ Return texture origin uv position; (0, 0) by default. ") TextureOriginUV; const gp_Pnt2d TextureOriginUV(); - /****************** TextureRepeatUV ******************/ - /**** md5 signature: de849df2f2a78aabc5d59235e4643811 ****/ + /****** AIS_Shape::TextureRepeatUV ******/ + /****** md5 signature: de849df2f2a78aabc5d59235e4643811 ******/ %feature("compactdefaultargs") TextureRepeatUV; %feature("autodoc", "Return ------- @@ -15829,8 +15829,8 @@ Return texture repeat uv values; (1, 1) by default. ") TextureRepeatUV; const gp_Pnt2d TextureRepeatUV(); - /****************** TextureScaleUV ******************/ - /**** md5 signature: 4a631ef97f685c7cc9ee0c3ecef81321 ****/ + /****** AIS_Shape::TextureScaleUV ******/ + /****** md5 signature: 4a631ef97f685c7cc9ee0c3ecef81321 ******/ %feature("compactdefaultargs") TextureScaleUV; %feature("autodoc", "Return ------- @@ -15842,8 +15842,8 @@ Return scale factor for uv coordinates; (1, 1) by default. ") TextureScaleUV; const gp_Pnt2d TextureScaleUV(); - /****************** Transparency ******************/ - /**** md5 signature: bfa77aad49dcd61a1bc27d8c82087538 ****/ + /****** AIS_Shape::Transparency ******/ + /****** md5 signature: bfa77aad49dcd61a1bc27d8c82087538 ******/ %feature("compactdefaultargs") Transparency; %feature("autodoc", "Return ------- @@ -15855,8 +15855,8 @@ Returns the transparency attributes of the shape accordingly to the current faci ") Transparency; virtual Standard_Real Transparency(); - /****************** Type ******************/ - /**** md5 signature: bf4aea6b24d0b584b57c781f208134ec ****/ + /****** AIS_Shape::Type ******/ + /****** md5 signature: bf4aea6b24d0b584b57c781f208134ec ******/ %feature("compactdefaultargs") Type; %feature("autodoc", "Return ------- @@ -15868,8 +15868,8 @@ Returns object as the type of interactive object. ") Type; virtual AIS_KindOfInteractive Type(); - /****************** TypeOfHLR ******************/ - /**** md5 signature: 6e7597badcbcce7d92e2fcaa7413af66 ****/ + /****** AIS_Shape::TypeOfHLR ******/ + /****** md5 signature: 6e7597badcbcce7d92e2fcaa7413af66 ******/ %feature("compactdefaultargs") TypeOfHLR; %feature("autodoc", "Return ------- @@ -15881,8 +15881,8 @@ Gets the type of hlr algorithm. ") TypeOfHLR; Prs3d_TypeOfHLR TypeOfHLR(); - /****************** UnsetColor ******************/ - /**** md5 signature: 2da7e2ed6a63f7c70c36c2a82118a7ec ****/ + /****** AIS_Shape::UnsetColor ******/ + /****** md5 signature: 2da7e2ed6a63f7c70c36c2a82118a7ec ******/ %feature("compactdefaultargs") UnsetColor; %feature("autodoc", "Return ------- @@ -15894,8 +15894,8 @@ Removes settings for color in the reconstructed compound shape. ") UnsetColor; virtual void UnsetColor(); - /****************** UnsetMaterial ******************/ - /**** md5 signature: 0a051ddc9f5267e24615c6f3dfd30498 ****/ + /****** AIS_Shape::UnsetMaterial ******/ + /****** md5 signature: 0a051ddc9f5267e24615c6f3dfd30498 ******/ %feature("compactdefaultargs") UnsetMaterial; %feature("autodoc", "Return ------- @@ -15907,8 +15907,8 @@ Removes settings for material in the reconstructed compound shape. ") UnsetMaterial; virtual void UnsetMaterial(); - /****************** UnsetTransparency ******************/ - /**** md5 signature: bdf34ac27dd66c689517e7b105e66cb2 ****/ + /****** AIS_Shape::UnsetTransparency ******/ + /****** md5 signature: bdf34ac27dd66c689517e7b105e66cb2 ******/ %feature("compactdefaultargs") UnsetTransparency; %feature("autodoc", "Return ------- @@ -15920,8 +15920,8 @@ Removes the setting for transparency in the reconstructed compound shape. ") UnsetTransparency; virtual void UnsetTransparency(); - /****************** UnsetWidth ******************/ - /**** md5 signature: f4f13d47402fae34af3d548b3b62cf10 ****/ + /****** AIS_Shape::UnsetWidth ******/ + /****** md5 signature: f4f13d47402fae34af3d548b3b62cf10 ******/ %feature("compactdefaultargs") UnsetWidth; %feature("autodoc", "Return ------- @@ -15933,8 +15933,8 @@ Removes the setting for line width in the reconstructed compound shape. ") UnsetWidth; virtual void UnsetWidth(); - /****************** UserAngle ******************/ - /**** md5 signature: edce4b4e5010ac8160b607ac8192497e ****/ + /****** AIS_Shape::UserAngle ******/ + /****** md5 signature: edce4b4e5010ac8160b607ac8192497e ******/ %feature("compactdefaultargs") UserAngle; %feature("autodoc", "Return ------- @@ -15946,8 +15946,8 @@ Gives back the angle initial value put by the user. ") UserAngle; Standard_Real UserAngle(); - /****************** computeHlrPresentation ******************/ - /**** md5 signature: 2c89e1d02192d3494845e204cf0b751c ****/ + /****** AIS_Shape::computeHlrPresentation ******/ + /****** md5 signature: 2c89e1d02192d3494845e204cf0b751c ******/ %feature("compactdefaultargs") computeHlrPresentation; %feature("autodoc", " Parameters @@ -15983,8 +15983,8 @@ Compute hlr presentation for specified shape. ****************************/ class AIS_SignatureFilter : public AIS_TypeFilter { public: - /****************** AIS_SignatureFilter ******************/ - /**** md5 signature: 57bfd47e3c0b858781c37970ccb12c16 ****/ + /****** AIS_SignatureFilter::AIS_SignatureFilter ******/ + /****** md5 signature: 57bfd47e3c0b858781c37970ccb12c16 ******/ %feature("compactdefaultargs") AIS_SignatureFilter; %feature("autodoc", " Parameters @@ -16002,8 +16002,8 @@ Initializes the signature filter, adding the signature specification, agivensign ") AIS_SignatureFilter; AIS_SignatureFilter(const AIS_KindOfInteractive aGivenKind, const Standard_Integer aGivenSignature); - /****************** IsOk ******************/ - /**** md5 signature: 22a33e4e2022519dc44ef8862044fea0 ****/ + /****** AIS_SignatureFilter::IsOk ******/ + /****** md5 signature: 22a33e4e2022519dc44ef8862044fea0 ******/ %feature("compactdefaultargs") IsOk; %feature("autodoc", " Parameters @@ -16036,8 +16036,8 @@ Returns false if the transient is not an ais_interactiveobject. returns false if **********************/ class AIS_TextLabel : public AIS_InteractiveObject { public: - /****************** AIS_TextLabel ******************/ - /**** md5 signature: ea29765f87567cd9f618ee169e658a97 ****/ + /****** AIS_TextLabel::AIS_TextLabel ******/ + /****** md5 signature: ea29765f87567cd9f618ee169e658a97 ******/ %feature("compactdefaultargs") AIS_TextLabel; %feature("autodoc", "Return ------- @@ -16049,8 +16049,8 @@ Default constructor. ") AIS_TextLabel; AIS_TextLabel(); - /****************** AcceptDisplayMode ******************/ - /**** md5 signature: 4c81f1c2cfc05fd196e1c09a383a3455 ****/ + /****** AIS_TextLabel::AcceptDisplayMode ******/ + /****** md5 signature: 4c81f1c2cfc05fd196e1c09a383a3455 ******/ %feature("compactdefaultargs") AcceptDisplayMode; %feature("autodoc", " Parameters @@ -16067,8 +16067,8 @@ Return true for supported display mode. ") AcceptDisplayMode; virtual Standard_Boolean AcceptDisplayMode(const Standard_Integer theMode); - /****************** FontAspect ******************/ - /**** md5 signature: 6949367e7841153f9bf40dc3c8ceebde ****/ + /****** AIS_TextLabel::FontAspect ******/ + /****** md5 signature: 6949367e7841153f9bf40dc3c8ceebde ******/ %feature("compactdefaultargs") FontAspect; %feature("autodoc", "Return ------- @@ -16080,8 +16080,8 @@ Returns the font aspect of the label text. ") FontAspect; Font_FontAspect FontAspect(); - /****************** FontName ******************/ - /**** md5 signature: 2c67f4ccf190033bd2df359b02c80019 ****/ + /****** AIS_TextLabel::FontName ******/ + /****** md5 signature: 2c67f4ccf190033bd2df359b02c80019 ******/ %feature("compactdefaultargs") FontName; %feature("autodoc", "Return ------- @@ -16093,8 +16093,8 @@ Returns the font of the label text. ") FontName; const TCollection_AsciiString & FontName(); - /****************** HasFlipping ******************/ - /**** md5 signature: e5aa6181c813315a6f4edf94cdb0e9ac ****/ + /****** AIS_TextLabel::HasFlipping ******/ + /****** md5 signature: e5aa6181c813315a6f4edf94cdb0e9ac ******/ %feature("compactdefaultargs") HasFlipping; %feature("autodoc", "Return ------- @@ -16106,8 +16106,8 @@ No available documentation. ") HasFlipping; Standard_Boolean HasFlipping(); - /****************** HasOrientation3D ******************/ - /**** md5 signature: 32890c1ea6df573c66760af44025329e ****/ + /****** AIS_TextLabel::HasOrientation3D ******/ + /****** md5 signature: 32890c1ea6df573c66760af44025329e ******/ %feature("compactdefaultargs") HasOrientation3D; %feature("autodoc", "Return ------- @@ -16119,8 +16119,8 @@ Returns true if the current text placement mode uses text orientation in the mod ") HasOrientation3D; Standard_Boolean HasOrientation3D(); - /****************** HasOwnAnchorPoint ******************/ - /**** md5 signature: e37194a0a04c6cfedb999cfbbcc9f46f ****/ + /****** AIS_TextLabel::HasOwnAnchorPoint ******/ + /****** md5 signature: e37194a0a04c6cfedb999cfbbcc9f46f ******/ %feature("compactdefaultargs") HasOwnAnchorPoint; %feature("autodoc", "Return ------- @@ -16132,8 +16132,8 @@ Returns flag if text uses position as point of attach. ") HasOwnAnchorPoint; Standard_Boolean HasOwnAnchorPoint(); - /****************** Orientation3D ******************/ - /**** md5 signature: 59c12b43a793dfc418565149b93d1848 ****/ + /****** AIS_TextLabel::Orientation3D ******/ + /****** md5 signature: 59c12b43a793dfc418565149b93d1848 ******/ %feature("compactdefaultargs") Orientation3D; %feature("autodoc", "Return ------- @@ -16145,8 +16145,8 @@ Returns label orientation in the model 3d space. ") Orientation3D; const gp_Ax2 Orientation3D(); - /****************** Position ******************/ - /**** md5 signature: b397668de8ab55c0ba7dba3385ed76d0 ****/ + /****** AIS_TextLabel::Position ******/ + /****** md5 signature: b397668de8ab55c0ba7dba3385ed76d0 ******/ %feature("compactdefaultargs") Position; %feature("autodoc", "Return ------- @@ -16158,8 +16158,8 @@ Returns position. ") Position; const gp_Pnt Position(); - /****************** SetAngle ******************/ - /**** md5 signature: dd6cdd7e9c31b2b6461d8a3e1df2d0ba ****/ + /****** AIS_TextLabel::SetAngle ******/ + /****** md5 signature: dd6cdd7e9c31b2b6461d8a3e1df2d0ba ******/ %feature("compactdefaultargs") SetAngle; %feature("autodoc", " Parameters @@ -16176,8 +16176,8 @@ Setup angle. ") SetAngle; void SetAngle(const Standard_Real theAngle); - /****************** SetColor ******************/ - /**** md5 signature: 259272248bacb2cef242adbc667f0ef9 ****/ + /****** AIS_TextLabel::SetColor ******/ + /****** md5 signature: 259272248bacb2cef242adbc667f0ef9 ******/ %feature("compactdefaultargs") SetColor; %feature("autodoc", " Parameters @@ -16194,8 +16194,8 @@ Setup color of entire text. ") SetColor; virtual void SetColor(const Quantity_Color & theColor); - /****************** SetColorSubTitle ******************/ - /**** md5 signature: 86b27f31504d545b35f6d527a8614032 ****/ + /****** AIS_TextLabel::SetColorSubTitle ******/ + /****** md5 signature: 86b27f31504d545b35f6d527a8614032 ******/ %feature("compactdefaultargs") SetColorSubTitle; %feature("autodoc", " Parameters @@ -16212,8 +16212,8 @@ Modifies the colour of the subtitle for the todt_subtitle textdisplaytype and th ") SetColorSubTitle; void SetColorSubTitle(const Quantity_Color & theColor); - /****************** SetDisplayType ******************/ - /**** md5 signature: 841f090e5b526ffb97840b2c0b5ccf62 ****/ + /****** AIS_TextLabel::SetDisplayType ******/ + /****** md5 signature: 841f090e5b526ffb97840b2c0b5ccf62 ******/ %feature("compactdefaultargs") SetDisplayType; %feature("autodoc", " Parameters @@ -16230,8 +16230,8 @@ Define the display type of the text. //! todt_normal default display. text only. ") SetDisplayType; void SetDisplayType(const Aspect_TypeOfDisplayText theDisplayType); - /****************** SetFlipping ******************/ - /**** md5 signature: 63ae61d2bbfa473697ae5bde51aa1b85 ****/ + /****** AIS_TextLabel::SetFlipping ******/ + /****** md5 signature: 63ae61d2bbfa473697ae5bde51aa1b85 ******/ %feature("compactdefaultargs") SetFlipping; %feature("autodoc", " Parameters @@ -16248,8 +16248,8 @@ No available documentation. ") SetFlipping; void SetFlipping(const Standard_Boolean theIsFlipping); - /****************** SetFont ******************/ - /**** md5 signature: d9bf22282bf38a81d5b21c8bf460eabf ****/ + /****** AIS_TextLabel::SetFont ******/ + /****** md5 signature: d9bf22282bf38a81d5b21c8bf460eabf ******/ %feature("compactdefaultargs") SetFont; %feature("autodoc", " Parameters @@ -16266,8 +16266,8 @@ Setup font. ") SetFont; void SetFont(Standard_CString theFont); - /****************** SetFontAspect ******************/ - /**** md5 signature: 5c2494c796ae98d97b009a2fec1f0d8d ****/ + /****** AIS_TextLabel::SetFontAspect ******/ + /****** md5 signature: 5c2494c796ae98d97b009a2fec1f0d8d ******/ %feature("compactdefaultargs") SetFontAspect; %feature("autodoc", " Parameters @@ -16284,8 +16284,8 @@ Setup font aspect. ") SetFontAspect; void SetFontAspect(const Font_FontAspect theFontAspect); - /****************** SetHJustification ******************/ - /**** md5 signature: 222b316fbe2b20961d17c752ca22f482 ****/ + /****** AIS_TextLabel::SetHJustification ******/ + /****** md5 signature: 222b316fbe2b20961d17c752ca22f482 ******/ %feature("compactdefaultargs") SetHJustification; %feature("autodoc", " Parameters @@ -16302,8 +16302,8 @@ Setup horizontal justification. ") SetHJustification; void SetHJustification(const Graphic3d_HorizontalTextAlignment theHJust); - /****************** SetHeight ******************/ - /**** md5 signature: 805878ad5815242d668f44db87535707 ****/ + /****** AIS_TextLabel::SetHeight ******/ + /****** md5 signature: 805878ad5815242d668f44db87535707 ******/ %feature("compactdefaultargs") SetHeight; %feature("autodoc", " Parameters @@ -16320,8 +16320,8 @@ Setup height. ") SetHeight; void SetHeight(const Standard_Real theHeight); - /****************** SetMaterial ******************/ - /**** md5 signature: 66ca7d2e5ce9f246d7fa85fd0d49ef24 ****/ + /****** AIS_TextLabel::SetMaterial ******/ + /****** md5 signature: 66ca7d2e5ce9f246d7fa85fd0d49ef24 ******/ %feature("compactdefaultargs") SetMaterial; %feature("autodoc", " Parameters @@ -16338,8 +16338,8 @@ Material has no effect for text label. ") SetMaterial; virtual void SetMaterial(const Graphic3d_MaterialAspect &); - /****************** SetOrientation3D ******************/ - /**** md5 signature: 495ee926ccc07e7eec3f148e71ebe0e0 ****/ + /****** AIS_TextLabel::SetOrientation3D ******/ + /****** md5 signature: 495ee926ccc07e7eec3f148e71ebe0e0 ******/ %feature("compactdefaultargs") SetOrientation3D; %feature("autodoc", " Parameters @@ -16356,8 +16356,8 @@ Setup label orientation in the model 3d space. ") SetOrientation3D; void SetOrientation3D(const gp_Ax2 & theOrientation); - /****************** SetOwnAnchorPoint ******************/ - /**** md5 signature: 4420b2820f2b347d958d5ff71cef8f14 ****/ + /****** AIS_TextLabel::SetOwnAnchorPoint ******/ + /****** md5 signature: 4420b2820f2b347d958d5ff71cef8f14 ******/ %feature("compactdefaultargs") SetOwnAnchorPoint; %feature("autodoc", " Parameters @@ -16374,8 +16374,8 @@ Set flag if text uses position as point of attach. ") SetOwnAnchorPoint; void SetOwnAnchorPoint(const Standard_Boolean theOwnAnchorPoint); - /****************** SetPosition ******************/ - /**** md5 signature: 6cd7cdcecb59ee7f74eb9c342f464f4d ****/ + /****** AIS_TextLabel::SetPosition ******/ + /****** md5 signature: 6cd7cdcecb59ee7f74eb9c342f464f4d ******/ %feature("compactdefaultargs") SetPosition; %feature("autodoc", " Parameters @@ -16392,8 +16392,8 @@ Setup position. ") SetPosition; void SetPosition(const gp_Pnt & thePosition); - /****************** SetText ******************/ - /**** md5 signature: 4a1b137668607e74e5fd1c9c0ecf6bb3 ****/ + /****** AIS_TextLabel::SetText ******/ + /****** md5 signature: 4a1b137668607e74e5fd1c9c0ecf6bb3 ******/ %feature("compactdefaultargs") SetText; %feature("autodoc", " Parameters @@ -16410,8 +16410,8 @@ Setup text. ") SetText; void SetText(TCollection_ExtendedString theText); - /****************** SetTextFormatter ******************/ - /**** md5 signature: 69d92dbd5b2f2ec93859c8dcc0b4f585 ****/ + /****** AIS_TextLabel::SetTextFormatter ******/ + /****** md5 signature: 69d92dbd5b2f2ec93859c8dcc0b4f585 ******/ %feature("compactdefaultargs") SetTextFormatter; %feature("autodoc", " Parameters @@ -16428,8 +16428,8 @@ Setup text formatter for presentation. it's empty by default. ") SetTextFormatter; void SetTextFormatter(const opencascade::handle & theFormatter); - /****************** SetTransparency ******************/ - /**** md5 signature: ba76d0fd3455858ee750a8806e400e81 ****/ + /****** AIS_TextLabel::SetTransparency ******/ + /****** md5 signature: ba76d0fd3455858ee750a8806e400e81 ******/ %feature("compactdefaultargs") SetTransparency; %feature("autodoc", " Parameters @@ -16446,8 +16446,8 @@ Setup transparency within [0, 1] range. ") SetTransparency; virtual void SetTransparency(const Standard_Real theValue); - /****************** SetVJustification ******************/ - /**** md5 signature: 74811ea56e21f5af22a1b17013352e38 ****/ + /****** AIS_TextLabel::SetVJustification ******/ + /****** md5 signature: 74811ea56e21f5af22a1b17013352e38 ******/ %feature("compactdefaultargs") SetVJustification; %feature("autodoc", " Parameters @@ -16464,8 +16464,8 @@ Setup vertical justification. ") SetVJustification; void SetVJustification(const Graphic3d_VerticalTextAlignment theVJust); - /****************** SetZoomable ******************/ - /**** md5 signature: f87b964084e353bb6b380aea2cc4a4d0 ****/ + /****** AIS_TextLabel::SetZoomable ******/ + /****** md5 signature: f87b964084e353bb6b380aea2cc4a4d0 ******/ %feature("compactdefaultargs") SetZoomable; %feature("autodoc", " Parameters @@ -16482,8 +16482,8 @@ Setup zoomable property. ") SetZoomable; void SetZoomable(const Standard_Boolean theIsZoomable); - /****************** Text ******************/ - /**** md5 signature: 72bf6306b0638727f5e5c6cb054bb79f ****/ + /****** AIS_TextLabel::Text ******/ + /****** md5 signature: 72bf6306b0638727f5e5c6cb054bb79f ******/ %feature("compactdefaultargs") Text; %feature("autodoc", "Return ------- @@ -16495,8 +16495,8 @@ Returns the label text. ") Text; const TCollection_ExtendedString & Text(); - /****************** TextFormatter ******************/ - /**** md5 signature: 8f3bf7d01406c07afa85cad5f2782460 ****/ + /****** AIS_TextLabel::TextFormatter ******/ + /****** md5 signature: 8f3bf7d01406c07afa85cad5f2782460 ******/ %feature("compactdefaultargs") TextFormatter; %feature("autodoc", "Return ------- @@ -16508,8 +16508,8 @@ Returns text presentation formatter; null by default, which means standard text ") TextFormatter; const opencascade::handle & TextFormatter(); - /****************** UnsetOrientation3D ******************/ - /**** md5 signature: 493fe411e83a69dc26417de323100db9 ****/ + /****** AIS_TextLabel::UnsetOrientation3D ******/ + /****** md5 signature: 493fe411e83a69dc26417de323100db9 ******/ %feature("compactdefaultargs") UnsetOrientation3D; %feature("autodoc", "Return ------- @@ -16521,8 +16521,8 @@ Reset label orientation in the model 3d space. ") UnsetOrientation3D; void UnsetOrientation3D(); - /****************** UnsetTransparency ******************/ - /**** md5 signature: d5dc50ef874a9e0fcbfa62da4cd73b8f ****/ + /****** AIS_TextLabel::UnsetTransparency ******/ + /****** md5 signature: d5dc50ef874a9e0fcbfa62da4cd73b8f ******/ %feature("compactdefaultargs") UnsetTransparency; %feature("autodoc", "Return ------- @@ -16550,8 +16550,8 @@ Removes the transparency setting. **************************/ class AIS_Triangulation : public AIS_InteractiveObject { public: - /****************** AIS_Triangulation ******************/ - /**** md5 signature: b1f39d13206b79ed4e26675482c469c3 ****/ + /****** AIS_Triangulation::AIS_Triangulation ******/ + /****** md5 signature: b1f39d13206b79ed4e26675482c469c3 ******/ %feature("compactdefaultargs") AIS_Triangulation; %feature("autodoc", " Parameters @@ -16568,8 +16568,8 @@ Constructs the triangulation display object. ") AIS_Triangulation; AIS_Triangulation(const opencascade::handle & aTriangulation); - /****************** GetColors ******************/ - /**** md5 signature: 02261cc1c013e697d82f9d79c04e76d7 ****/ + /****** AIS_Triangulation::GetColors ******/ + /****** md5 signature: 02261cc1c013e697d82f9d79c04e76d7 ******/ %feature("compactdefaultargs") GetColors; %feature("autodoc", "Return ------- @@ -16581,8 +16581,8 @@ Get the color for each node. each 32-bit color is alpha << 24 + blue << 16 + gre ") GetColors; opencascade::handle GetColors(); - /****************** GetTriangulation ******************/ - /**** md5 signature: 43bd327b5645ba0da5653a0bd81a9f5b ****/ + /****** AIS_Triangulation::GetTriangulation ******/ + /****** md5 signature: 43bd327b5645ba0da5653a0bd81a9f5b ******/ %feature("compactdefaultargs") GetTriangulation; %feature("autodoc", "Return ------- @@ -16594,8 +16594,8 @@ Returns poly_triangulation . ") GetTriangulation; opencascade::handle GetTriangulation(); - /****************** HasVertexColors ******************/ - /**** md5 signature: fa868ff9e1fa2eafb8056b01f75d6453 ****/ + /****** AIS_Triangulation::HasVertexColors ******/ + /****** md5 signature: fa868ff9e1fa2eafb8056b01f75d6453 ******/ %feature("compactdefaultargs") HasVertexColors; %feature("autodoc", "Return ------- @@ -16607,8 +16607,8 @@ Returns true if triangulation has vertex colors. ") HasVertexColors; Standard_Boolean HasVertexColors(); - /****************** SetColors ******************/ - /**** md5 signature: 0a92a5615736d146ffd88ca378dd2d45 ****/ + /****** AIS_Triangulation::SetColors ******/ + /****** md5 signature: 0a92a5615736d146ffd88ca378dd2d45 ******/ %feature("compactdefaultargs") SetColors; %feature("autodoc", " Parameters @@ -16625,8 +16625,8 @@ Set the color for each node. each 32-bit color is alpha << 24 + blue << 16 + gre ") SetColors; void SetColors(const opencascade::handle & aColor); - /****************** SetTransparency ******************/ - /**** md5 signature: 92324fa31dc7752e99539d3b250e4522 ****/ + /****** AIS_Triangulation::SetTransparency ******/ + /****** md5 signature: 92324fa31dc7752e99539d3b250e4522 ******/ %feature("compactdefaultargs") SetTransparency; %feature("autodoc", " Parameters @@ -16643,8 +16643,8 @@ Sets the value avalue for transparency in the reconstructed compound shape. ") SetTransparency; virtual void SetTransparency(const Standard_Real aValue = 0.6); - /****************** SetTriangulation ******************/ - /**** md5 signature: 5958e531c24aa9ebf5d35ea3895b63dd ****/ + /****** AIS_Triangulation::SetTriangulation ******/ + /****** md5 signature: 5958e531c24aa9ebf5d35ea3895b63dd ******/ %feature("compactdefaultargs") SetTriangulation; %feature("autodoc", " Parameters @@ -16661,8 +16661,8 @@ No available documentation. ") SetTriangulation; void SetTriangulation(const opencascade::handle & aTriangulation); - /****************** UnsetTransparency ******************/ - /**** md5 signature: bdf34ac27dd66c689517e7b105e66cb2 ****/ + /****** AIS_Triangulation::UnsetTransparency ******/ + /****** md5 signature: bdf34ac27dd66c689517e7b105e66cb2 ******/ %feature("compactdefaultargs") UnsetTransparency; %feature("autodoc", "Return ------- @@ -16690,8 +16690,8 @@ Removes the setting for transparency in the reconstructed compound shape. **********************/ class AIS_Trihedron : public AIS_InteractiveObject { public: - /****************** AIS_Trihedron ******************/ - /**** md5 signature: 7abadf81ecefbae170558dec5a045471 ****/ + /****** AIS_Trihedron::AIS_Trihedron ******/ + /****** md5 signature: 7abadf81ecefbae170558dec5a045471 ******/ %feature("compactdefaultargs") AIS_Trihedron; %feature("autodoc", " Parameters @@ -16708,8 +16708,8 @@ Initializes a trihedron entity. ") AIS_Trihedron; AIS_Trihedron(const opencascade::handle & theComponent); - /****************** AcceptDisplayMode ******************/ - /**** md5 signature: 4c81f1c2cfc05fd196e1c09a383a3455 ****/ + /****** AIS_Trihedron::AcceptDisplayMode ******/ + /****** md5 signature: 4c81f1c2cfc05fd196e1c09a383a3455 ******/ %feature("compactdefaultargs") AcceptDisplayMode; %feature("autodoc", " Parameters @@ -16726,8 +16726,8 @@ Returns true if the display mode selected, amode, is valid for trihedron datums. ") AcceptDisplayMode; virtual Standard_Boolean AcceptDisplayMode(const Standard_Integer theMode); - /****************** ArrowColor ******************/ - /**** md5 signature: 4fc33e4156a708bf068aa14dcdd1f4ea ****/ + /****** AIS_Trihedron::ArrowColor ******/ + /****** md5 signature: 4fc33e4156a708bf068aa14dcdd1f4ea ******/ %feature("compactdefaultargs") ArrowColor; %feature("autodoc", "Return ------- @@ -16739,8 +16739,8 @@ Returns trihedron arrow color. ") ArrowColor; Quantity_Color ArrowColor(); - /****************** ClearSelected ******************/ - /**** md5 signature: 3aaae3eac8509b6abfc3ffd58cbe26e1 ****/ + /****** AIS_Trihedron::ClearSelected ******/ + /****** md5 signature: 3aaae3eac8509b6abfc3ffd58cbe26e1 ******/ %feature("compactdefaultargs") ClearSelected; %feature("autodoc", "Return ------- @@ -16752,8 +16752,8 @@ Method which clear all selected owners belonging to this selectable object ( for ") ClearSelected; virtual void ClearSelected(); - /****************** Component ******************/ - /**** md5 signature: 1234d8906c95cc001e4c962cd9c4933b ****/ + /****** AIS_Trihedron::Component ******/ + /****** md5 signature: 1234d8906c95cc001e4c962cd9c4933b ******/ %feature("compactdefaultargs") Component; %feature("autodoc", "Return ------- @@ -16765,8 +16765,8 @@ Returns the right-handed coordinate system set in setcomponent. ") Component; const opencascade::handle & Component(); - /****************** DatumDisplayMode ******************/ - /**** md5 signature: 85349bc7830d85b4d93f109c8361b6bf ****/ + /****** AIS_Trihedron::DatumDisplayMode ******/ + /****** md5 signature: 85349bc7830d85b4d93f109c8361b6bf ******/ %feature("compactdefaultargs") DatumDisplayMode; %feature("autodoc", "Return ------- @@ -16778,8 +16778,8 @@ Returns datum display mode. ") DatumDisplayMode; Prs3d_DatumMode DatumDisplayMode(); - /****************** DatumPartColor ******************/ - /**** md5 signature: 6085d0ed60102d6ed078723a4a105a8f ****/ + /****** AIS_Trihedron::DatumPartColor ******/ + /****** md5 signature: 6085d0ed60102d6ed078723a4a105a8f ******/ %feature("compactdefaultargs") DatumPartColor; %feature("autodoc", " Parameters @@ -16796,8 +16796,8 @@ Returns color of datum part: origin or some of trihedron axes. ") DatumPartColor; Quantity_Color DatumPartColor(Prs3d_DatumParts thePart); - /****************** HasArrowColor ******************/ - /**** md5 signature: 752dadd6593a80c09907199cd16ef4e8 ****/ + /****** AIS_Trihedron::HasArrowColor ******/ + /****** md5 signature: 752dadd6593a80c09907199cd16ef4e8 ******/ %feature("compactdefaultargs") HasArrowColor; %feature("autodoc", "Return ------- @@ -16809,8 +16809,8 @@ Returns true if trihedron has own arrow color. ") HasArrowColor; Standard_Boolean HasArrowColor(); - /****************** HasOwnSize ******************/ - /**** md5 signature: e915e28bcd0aa89fd85e56d0cb0fab71 ****/ + /****** AIS_Trihedron::HasOwnSize ******/ + /****** md5 signature: e915e28bcd0aa89fd85e56d0cb0fab71 ******/ %feature("compactdefaultargs") HasOwnSize; %feature("autodoc", "Return ------- @@ -16822,8 +16822,8 @@ Returns true if the trihedron object has a size other than the default size of 1 ") HasOwnSize; Standard_Boolean HasOwnSize(); - /****************** HasTextColor ******************/ - /**** md5 signature: cace4b0f1dd5ef05d295a303f4b6e82b ****/ + /****** AIS_Trihedron::HasTextColor ******/ + /****** md5 signature: cace4b0f1dd5ef05d295a303f4b6e82b ******/ %feature("compactdefaultargs") HasTextColor; %feature("autodoc", "Return ------- @@ -16835,8 +16835,8 @@ Returns true if trihedron has own text color. ") HasTextColor; Standard_Boolean HasTextColor(); - /****************** HilightOwnerWithColor ******************/ - /**** md5 signature: 55b3be7a2ac03a5f834f6d8c95996212 ****/ + /****** AIS_Trihedron::HilightOwnerWithColor ******/ + /****** md5 signature: 55b3be7a2ac03a5f834f6d8c95996212 ******/ %feature("compactdefaultargs") HilightOwnerWithColor; %feature("autodoc", " Parameters @@ -16855,8 +16855,8 @@ Method which hilight an owner belonging to this selectable object ( for fast pre ") HilightOwnerWithColor; virtual void HilightOwnerWithColor(const opencascade::handle & thePM, const opencascade::handle & theStyle, const opencascade::handle & theOwner); - /****************** HilightSelected ******************/ - /**** md5 signature: 5b1feef80cfa0a6159413c3c4ca13941 ****/ + /****** AIS_Trihedron::HilightSelected ******/ + /****** md5 signature: 5b1feef80cfa0a6159413c3c4ca13941 ******/ %feature("compactdefaultargs") HilightSelected; %feature("autodoc", " Parameters @@ -16874,8 +16874,8 @@ Method which draws selected owners ( for fast presentation draw ). ") HilightSelected; virtual void HilightSelected(const opencascade::handle & thePM, const SelectMgr_SequenceOfOwner & theOwners); - /****************** Label ******************/ - /**** md5 signature: cd3b87f754f01f91f4db0b402e5a6620 ****/ + /****** AIS_Trihedron::Label ******/ + /****** md5 signature: cd3b87f754f01f91f4db0b402e5a6620 ******/ %feature("compactdefaultargs") Label; %feature("autodoc", " Parameters @@ -16892,8 +16892,8 @@ Returns text of axis. parameter thepart should be xaxis, yaxis or zaxis. ") Label; const TCollection_ExtendedString & Label(Prs3d_DatumParts thePart); - /****************** SelectionPriority ******************/ - /**** md5 signature: c7f76247dd6ec404acc1afff52e95917 ****/ + /****** AIS_Trihedron::SelectionPriority ******/ + /****** md5 signature: c7f76247dd6ec404acc1afff52e95917 ******/ %feature("compactdefaultargs") SelectionPriority; %feature("autodoc", " Parameters @@ -16910,8 +16910,8 @@ Returns priority of selection for owner of the given type. ") SelectionPriority; Standard_Integer SelectionPriority(Prs3d_DatumParts thePart); - /****************** SetArrowColor ******************/ - /**** md5 signature: b033462aa3dce4543ee90b2ffdc498cd ****/ + /****** AIS_Trihedron::SetArrowColor ******/ + /****** md5 signature: b033462aa3dce4543ee90b2ffdc498cd ******/ %feature("compactdefaultargs") SetArrowColor; %feature("autodoc", " Parameters @@ -16928,8 +16928,8 @@ Sets color of arrow of trihedron axes. ") SetArrowColor; void SetArrowColor(const Quantity_Color & theColor); - /****************** SetArrowColor ******************/ - /**** md5 signature: eed1ac90c97ed266f836f961bb20ebcd ****/ + /****** AIS_Trihedron::SetArrowColor ******/ + /****** md5 signature: eed1ac90c97ed266f836f961bb20ebcd ******/ %feature("compactdefaultargs") SetArrowColor; %feature("autodoc", " Parameters @@ -16947,8 +16947,8 @@ Sets color of arrow of trihedron axes. ") SetArrowColor; void SetArrowColor(const Prs3d_DatumParts thePart, const Quantity_Color & theColor); - /****************** SetAxisColor ******************/ - /**** md5 signature: 5414b36e056312b5d2ce5a3255bab6e0 ****/ + /****** AIS_Trihedron::SetAxisColor ******/ + /****** md5 signature: 5414b36e056312b5d2ce5a3255bab6e0 ******/ %feature("compactdefaultargs") SetAxisColor; %feature("autodoc", " Parameters @@ -16965,8 +16965,8 @@ Sets color of z-axis. //standard_deprecated('this method is deprecated - setcolo ") SetAxisColor; void SetAxisColor(const Quantity_Color & theColor); - /****************** SetColor ******************/ - /**** md5 signature: 259272248bacb2cef242adbc667f0ef9 ****/ + /****** AIS_Trihedron::SetColor ******/ + /****** md5 signature: 259272248bacb2cef242adbc667f0ef9 ******/ %feature("compactdefaultargs") SetColor; %feature("autodoc", " Parameters @@ -16983,8 +16983,8 @@ Sets the color thecolor for this trihedron object, it changes color of axes. ") SetColor; virtual void SetColor(const Quantity_Color & theColor); - /****************** SetComponent ******************/ - /**** md5 signature: 0cb02d582043f1733c1764c1c909a674 ****/ + /****** AIS_Trihedron::SetComponent ******/ + /****** md5 signature: 0cb02d582043f1733c1764c1c909a674 ******/ %feature("compactdefaultargs") SetComponent; %feature("autodoc", " Parameters @@ -17001,8 +17001,8 @@ Constructs the right-handed coordinate system acomponent. ") SetComponent; void SetComponent(const opencascade::handle & theComponent); - /****************** SetDatumDisplayMode ******************/ - /**** md5 signature: 9f6d65070e9826102aec9979c024ba74 ****/ + /****** AIS_Trihedron::SetDatumDisplayMode ******/ + /****** md5 signature: 9f6d65070e9826102aec9979c024ba74 ******/ %feature("compactdefaultargs") SetDatumDisplayMode; %feature("autodoc", " Parameters @@ -17019,8 +17019,8 @@ Sets shading or wireframe display mode, triangle or segment graphic group is use ") SetDatumDisplayMode; void SetDatumDisplayMode(Prs3d_DatumMode theMode); - /****************** SetDatumPartColor ******************/ - /**** md5 signature: bac1c795a4dc41baab0e0761fbd4adfa ****/ + /****** AIS_Trihedron::SetDatumPartColor ******/ + /****** md5 signature: bac1c795a4dc41baab0e0761fbd4adfa ******/ %feature("compactdefaultargs") SetDatumPartColor; %feature("autodoc", " Parameters @@ -17038,8 +17038,8 @@ Sets color of datum part: origin or some of trihedron axes. if presentation is s ") SetDatumPartColor; void SetDatumPartColor(const Prs3d_DatumParts thePart, const Quantity_Color & theColor); - /****************** SetDrawArrows ******************/ - /**** md5 signature: fb1a2bd859e154964e1a124af5e1fb01 ****/ + /****** AIS_Trihedron::SetDrawArrows ******/ + /****** md5 signature: fb1a2bd859e154964e1a124af5e1fb01 ******/ %feature("compactdefaultargs") SetDrawArrows; %feature("autodoc", " Parameters @@ -17056,8 +17056,8 @@ Sets whether to draw the arrows in visualization. ") SetDrawArrows; void SetDrawArrows(const Standard_Boolean theToDraw); - /****************** SetLabel ******************/ - /**** md5 signature: f46fc70422e44644cfd6260e70ed55d0 ****/ + /****** AIS_Trihedron::SetLabel ******/ + /****** md5 signature: f46fc70422e44644cfd6260e70ed55d0 ******/ %feature("compactdefaultargs") SetLabel; %feature("autodoc", " Parameters @@ -17075,8 +17075,8 @@ Sets text label for trihedron axis. parameter thepart should be xaxis, yaxis or ") SetLabel; void SetLabel(const Prs3d_DatumParts thePart, TCollection_ExtendedString theName); - /****************** SetOriginColor ******************/ - /**** md5 signature: 1017d076464e72d0a5e64feb3baf458f ****/ + /****** AIS_Trihedron::SetOriginColor ******/ + /****** md5 signature: 1017d076464e72d0a5e64feb3baf458f ******/ %feature("compactdefaultargs") SetOriginColor; %feature("autodoc", " Parameters @@ -17093,8 +17093,8 @@ Sets color of origin. //standard_deprecated('this method is deprecated - setcolo ") SetOriginColor; void SetOriginColor(const Quantity_Color & theColor); - /****************** SetSelectionPriority ******************/ - /**** md5 signature: a3572d43d4d834b85a5686dc7ffb301b ****/ + /****** AIS_Trihedron::SetSelectionPriority ******/ + /****** md5 signature: a3572d43d4d834b85a5686dc7ffb301b ******/ %feature("compactdefaultargs") SetSelectionPriority; %feature("autodoc", " Parameters @@ -17112,8 +17112,8 @@ Sets priority of selection for owner of the given type. ") SetSelectionPriority; void SetSelectionPriority(Prs3d_DatumParts thePart, Standard_Integer thePriority); - /****************** SetSize ******************/ - /**** md5 signature: 4ddd2387ee49354c88a5763d724abf32 ****/ + /****** AIS_Trihedron::SetSize ******/ + /****** md5 signature: 4ddd2387ee49354c88a5763d724abf32 ******/ %feature("compactdefaultargs") SetSize; %feature("autodoc", " Parameters @@ -17130,8 +17130,8 @@ Sets the size of trihedron object. ") SetSize; void SetSize(const Standard_Real theValue); - /****************** SetTextColor ******************/ - /**** md5 signature: c4c1e2b86d1c9f306c0090e96309e623 ****/ + /****** AIS_Trihedron::SetTextColor ******/ + /****** md5 signature: c4c1e2b86d1c9f306c0090e96309e623 ******/ %feature("compactdefaultargs") SetTextColor; %feature("autodoc", " Parameters @@ -17148,8 +17148,8 @@ Sets color of label of trihedron axes. ") SetTextColor; void SetTextColor(const Quantity_Color & theColor); - /****************** SetTextColor ******************/ - /**** md5 signature: bdaf05bdad9bcc4e0cbdf6a0d46642a3 ****/ + /****** AIS_Trihedron::SetTextColor ******/ + /****** md5 signature: bdaf05bdad9bcc4e0cbdf6a0d46642a3 ******/ %feature("compactdefaultargs") SetTextColor; %feature("autodoc", " Parameters @@ -17167,8 +17167,8 @@ Sets color of label of trihedron axis. ") SetTextColor; void SetTextColor(const Prs3d_DatumParts thePart, const Quantity_Color & theColor); - /****************** SetXAxisColor ******************/ - /**** md5 signature: ed9ab965e65191191a7681d47d2ec159 ****/ + /****** AIS_Trihedron::SetXAxisColor ******/ + /****** md5 signature: ed9ab965e65191191a7681d47d2ec159 ******/ %feature("compactdefaultargs") SetXAxisColor; %feature("autodoc", " Parameters @@ -17185,8 +17185,8 @@ Sets color of x-axis. //standard_deprecated('this method is deprecated - setcolo ") SetXAxisColor; void SetXAxisColor(const Quantity_Color & theColor); - /****************** SetYAxisColor ******************/ - /**** md5 signature: 3d9f763d5f18d448930e3a455d43081f ****/ + /****** AIS_Trihedron::SetYAxisColor ******/ + /****** md5 signature: 3d9f763d5f18d448930e3a455d43081f ******/ %feature("compactdefaultargs") SetYAxisColor; %feature("autodoc", " Parameters @@ -17203,8 +17203,8 @@ Sets color of y-axis. //standard_deprecated('this method is deprecated - setcolo ") SetYAxisColor; void SetYAxisColor(const Quantity_Color & theColor); - /****************** Signature ******************/ - /**** md5 signature: 4e037e01ba764fd5d5261e3d9ba6557d ****/ + /****** AIS_Trihedron::Signature ******/ + /****** md5 signature: 4e037e01ba764fd5d5261e3d9ba6557d ******/ %feature("compactdefaultargs") Signature; %feature("autodoc", "Return ------- @@ -17216,8 +17216,8 @@ Returns index 3, selection of the planes xoy, yoz, xoz. ") Signature; virtual Standard_Integer Signature(); - /****************** Size ******************/ - /**** md5 signature: a8e9905382c3964d697ee929ccdb9562 ****/ + /****** AIS_Trihedron::Size ******/ + /****** md5 signature: a8e9905382c3964d697ee929ccdb9562 ******/ %feature("compactdefaultargs") Size; %feature("autodoc", "Return ------- @@ -17229,8 +17229,8 @@ Returns the size of trihedron object; 100.0 by default. ") Size; Standard_Real Size(); - /****************** TextColor ******************/ - /**** md5 signature: 44826bd1a0a47517f0715e047eb767ed ****/ + /****** AIS_Trihedron::TextColor ******/ + /****** md5 signature: 44826bd1a0a47517f0715e047eb767ed ******/ %feature("compactdefaultargs") TextColor; %feature("autodoc", "Return ------- @@ -17242,8 +17242,8 @@ Returns trihedron text color. ") TextColor; Quantity_Color TextColor(); - /****************** ToDrawArrows ******************/ - /**** md5 signature: d43d54fb812974eaf7cf90303f961bff ****/ + /****** AIS_Trihedron::ToDrawArrows ******/ + /****** md5 signature: d43d54fb812974eaf7cf90303f961bff ******/ %feature("compactdefaultargs") ToDrawArrows; %feature("autodoc", "Return ------- @@ -17255,8 +17255,8 @@ Returns true if arrows are to be drawn. ") ToDrawArrows; Standard_Boolean ToDrawArrows(); - /****************** Type ******************/ - /**** md5 signature: bf4aea6b24d0b584b57c781f208134ec ****/ + /****** AIS_Trihedron::Type ******/ + /****** md5 signature: bf4aea6b24d0b584b57c781f208134ec ******/ %feature("compactdefaultargs") Type; %feature("autodoc", "Return ------- @@ -17268,8 +17268,8 @@ Indicates that the type of interactive object is datum. ") Type; virtual AIS_KindOfInteractive Type(); - /****************** UnsetColor ******************/ - /**** md5 signature: 2da7e2ed6a63f7c70c36c2a82118a7ec ****/ + /****** AIS_Trihedron::UnsetColor ******/ + /****** md5 signature: 2da7e2ed6a63f7c70c36c2a82118a7ec ******/ %feature("compactdefaultargs") UnsetColor; %feature("autodoc", "Return ------- @@ -17281,8 +17281,8 @@ Removes the settings for color. ") UnsetColor; virtual void UnsetColor(); - /****************** UnsetSize ******************/ - /**** md5 signature: 01e2703c873bbcb3ae46d4b247bdacb6 ****/ + /****** AIS_Trihedron::UnsetSize ******/ + /****** md5 signature: 01e2703c873bbcb3ae46d4b247bdacb6 ******/ %feature("compactdefaultargs") UnsetSize; %feature("autodoc", "Return ------- @@ -17310,8 +17310,8 @@ Removes any non-default settings for size of this trihedron object. if the objec *********************/ class AIS_ViewCube : public AIS_InteractiveObject { public: - /****************** AIS_ViewCube ******************/ - /**** md5 signature: 582207f6972f9893779647b1bc5ed072 ****/ + /****** AIS_ViewCube::AIS_ViewCube ******/ + /****** md5 signature: 582207f6972f9893779647b1bc5ed072 ******/ %feature("compactdefaultargs") AIS_ViewCube; %feature("autodoc", "Return ------- @@ -17323,8 +17323,8 @@ Empty constructor. ") AIS_ViewCube; AIS_ViewCube(); - /****************** AcceptDisplayMode ******************/ - /**** md5 signature: 4c81f1c2cfc05fd196e1c09a383a3455 ****/ + /****** AIS_ViewCube::AcceptDisplayMode ******/ + /****** md5 signature: 4c81f1c2cfc05fd196e1c09a383a3455 ******/ %feature("compactdefaultargs") AcceptDisplayMode; %feature("autodoc", " Parameters @@ -17341,8 +17341,8 @@ Return true for supported display mode. ") AcceptDisplayMode; virtual Standard_Boolean AcceptDisplayMode(const Standard_Integer theMode); - /****************** AxesConeRadius ******************/ - /**** md5 signature: 23e3bc06f9ef74bf1f32dddb0a5141c6 ****/ + /****** AIS_ViewCube::AxesConeRadius ******/ + /****** md5 signature: 23e3bc06f9ef74bf1f32dddb0a5141c6 ******/ %feature("compactdefaultargs") AxesConeRadius; %feature("autodoc", "Return ------- @@ -17354,8 +17354,8 @@ Returns radius of cone of axes of the trihedron; 3.0 by default. ") AxesConeRadius; Standard_Real AxesConeRadius(); - /****************** AxesPadding ******************/ - /**** md5 signature: c7cf9c49ac3b2ff7007839a7a4e35f25 ****/ + /****** AIS_ViewCube::AxesPadding ******/ + /****** md5 signature: c7cf9c49ac3b2ff7007839a7a4e35f25 ******/ %feature("compactdefaultargs") AxesPadding; %feature("autodoc", "Return ------- @@ -17367,8 +17367,8 @@ Return padding between axes and 3d part (box); 10 by default. ") AxesPadding; Standard_Real AxesPadding(); - /****************** AxesRadius ******************/ - /**** md5 signature: e0e9b4d6d2ce901288b78fae1c0e1957 ****/ + /****** AIS_ViewCube::AxesRadius ******/ + /****** md5 signature: e0e9b4d6d2ce901288b78fae1c0e1957 ******/ %feature("compactdefaultargs") AxesRadius; %feature("autodoc", "Return ------- @@ -17380,8 +17380,8 @@ Returns radius of axes of the trihedron; 1.0 by default. ") AxesRadius; Standard_Real AxesRadius(); - /****************** AxesSphereRadius ******************/ - /**** md5 signature: b34ec1288e6549c6a7cc3dbf4283a8c3 ****/ + /****** AIS_ViewCube::AxesSphereRadius ******/ + /****** md5 signature: b34ec1288e6549c6a7cc3dbf4283a8c3 ******/ %feature("compactdefaultargs") AxesSphereRadius; %feature("autodoc", "Return ------- @@ -17393,8 +17393,8 @@ Returns radius of sphere (central point) of the trihedron; 4.0 by default. ") AxesSphereRadius; Standard_Real AxesSphereRadius(); - /****************** AxisLabel ******************/ - /**** md5 signature: 5de552dbd8b43895a1c56ff8429a7ff8 ****/ + /****** AIS_ViewCube::AxisLabel ******/ + /****** md5 signature: 5de552dbd8b43895a1c56ff8429a7ff8 ******/ %feature("compactdefaultargs") AxisLabel; %feature("autodoc", " Parameters @@ -17411,8 +17411,8 @@ Return axes labels or empty string if undefined. default labels: x, y, z. ") AxisLabel; TCollection_AsciiString AxisLabel(Prs3d_DatumParts theAxis); - /****************** BoxColor ******************/ - /**** md5 signature: 50e147884653441e4200c687eaac0698 ****/ + /****** AIS_ViewCube::BoxColor ******/ + /****** md5 signature: 50e147884653441e4200c687eaac0698 ******/ %feature("compactdefaultargs") BoxColor; %feature("autodoc", "Return ------- @@ -17424,8 +17424,8 @@ Return value of front color for the 3d part of object. ") BoxColor; const Quantity_Color & BoxColor(); - /****************** BoxCornerMinSize ******************/ - /**** md5 signature: cafaf934eb4662e014c49d3919a5ce75 ****/ + /****** AIS_ViewCube::BoxCornerMinSize ******/ + /****** md5 signature: cafaf934eb4662e014c49d3919a5ce75 ******/ %feature("compactdefaultargs") BoxCornerMinSize; %feature("autodoc", "Return ------- @@ -17437,8 +17437,8 @@ Return minimal size of box corner; 2 by default. ") BoxCornerMinSize; Standard_Real BoxCornerMinSize(); - /****************** BoxCornerStyle ******************/ - /**** md5 signature: fd4fc1c3355e14afdded11cd3419cf7a ****/ + /****** AIS_ViewCube::BoxCornerStyle ******/ + /****** md5 signature: fd4fc1c3355e14afdded11cd3419cf7a ******/ %feature("compactdefaultargs") BoxCornerStyle; %feature("autodoc", "Return ------- @@ -17450,8 +17450,8 @@ Return shading style of box corners. ") BoxCornerStyle; const opencascade::handle & BoxCornerStyle(); - /****************** BoxEdgeGap ******************/ - /**** md5 signature: 67480960a2f50fb564f93a6c1b577c13 ****/ + /****** AIS_ViewCube::BoxEdgeGap ******/ + /****** md5 signature: 67480960a2f50fb564f93a6c1b577c13 ******/ %feature("compactdefaultargs") BoxEdgeGap; %feature("autodoc", "Return ------- @@ -17463,8 +17463,8 @@ Return gap between box edges and box sides; 0 by default. ") BoxEdgeGap; Standard_Real BoxEdgeGap(); - /****************** BoxEdgeMinSize ******************/ - /**** md5 signature: 9b8c3f97bde852c0a0b85f3805feb5aa ****/ + /****** AIS_ViewCube::BoxEdgeMinSize ******/ + /****** md5 signature: 9b8c3f97bde852c0a0b85f3805feb5aa ******/ %feature("compactdefaultargs") BoxEdgeMinSize; %feature("autodoc", "Return ------- @@ -17476,8 +17476,8 @@ Return minimal size of box edge; 2 by default. ") BoxEdgeMinSize; Standard_Real BoxEdgeMinSize(); - /****************** BoxEdgeStyle ******************/ - /**** md5 signature: 5e9bce8c10e662a32cada7316ea97356 ****/ + /****** AIS_ViewCube::BoxEdgeStyle ******/ + /****** md5 signature: 5e9bce8c10e662a32cada7316ea97356 ******/ %feature("compactdefaultargs") BoxEdgeStyle; %feature("autodoc", "Return ------- @@ -17489,8 +17489,8 @@ Return shading style of box edges. ") BoxEdgeStyle; const opencascade::handle & BoxEdgeStyle(); - /****************** BoxFacetExtension ******************/ - /**** md5 signature: 63868a40e6236808acfc797143f8d7d3 ****/ + /****** AIS_ViewCube::BoxFacetExtension ******/ + /****** md5 signature: 63868a40e6236808acfc797143f8d7d3 ******/ %feature("compactdefaultargs") BoxFacetExtension; %feature("autodoc", "Return ------- @@ -17502,8 +17502,8 @@ Return box facet extension to edge/corner facet split; 10 by default. ") BoxFacetExtension; Standard_Real BoxFacetExtension(); - /****************** BoxSideLabel ******************/ - /**** md5 signature: a97bf5fe626f7488166a6ec22c6801dd ****/ + /****** AIS_ViewCube::BoxSideLabel ******/ + /****** md5 signature: a97bf5fe626f7488166a6ec22c6801dd ******/ %feature("compactdefaultargs") BoxSideLabel; %feature("autodoc", " Parameters @@ -17520,8 +17520,8 @@ Return box side label or empty string if undefined. default labels: front, back, ") BoxSideLabel; TCollection_AsciiString BoxSideLabel(V3d_TypeOfOrientation theSide); - /****************** BoxSideStyle ******************/ - /**** md5 signature: a46fcc5ed6922015f07f2f9b6adb0b29 ****/ + /****** AIS_ViewCube::BoxSideStyle ******/ + /****** md5 signature: a46fcc5ed6922015f07f2f9b6adb0b29 ******/ %feature("compactdefaultargs") BoxSideStyle; %feature("autodoc", "Return ------- @@ -17533,8 +17533,8 @@ Return shading style of box sides. ") BoxSideStyle; const opencascade::handle & BoxSideStyle(); - /****************** BoxTransparency ******************/ - /**** md5 signature: 35032e2c2d21ffedb0b966bdeec6d019 ****/ + /****** AIS_ViewCube::BoxTransparency ******/ + /****** md5 signature: 35032e2c2d21ffedb0b966bdeec6d019 ******/ %feature("compactdefaultargs") BoxTransparency; %feature("autodoc", "Return ------- @@ -17546,8 +17546,8 @@ Return transparency for 3d part of object. ") BoxTransparency; Standard_Real BoxTransparency(); - /****************** ClearSelected ******************/ - /**** md5 signature: 407e8a534dc8fd5986c54ff8c078ba6d ****/ + /****** AIS_ViewCube::ClearSelected ******/ + /****** md5 signature: 407e8a534dc8fd5986c54ff8c078ba6d ******/ %feature("compactdefaultargs") ClearSelected; %feature("autodoc", "Return ------- @@ -17559,8 +17559,8 @@ Method which clear all selected owners belonging to this selectable object. @war ") ClearSelected; virtual void ClearSelected(); - /****************** Compute ******************/ - /**** md5 signature: 5d0087b3c43a18eabfc5a74a27907c07 ****/ + /****** AIS_ViewCube::Compute ******/ + /****** md5 signature: 5d0087b3c43a18eabfc5a74a27907c07 ******/ %feature("compactdefaultargs") Compute; %feature("autodoc", " Parameters @@ -17579,8 +17579,8 @@ Compute 3d part of view cube. @param theprsmgr [in] presentation manager. @param ") Compute; virtual void Compute(const opencascade::handle & thePrsMgr, const opencascade::handle & thePrs, const Standard_Integer theMode = 0); - /****************** ComputeSelection ******************/ - /**** md5 signature: 0ee36b1ad2a8a3c1bbb813dfdb1d40ae ****/ + /****** AIS_ViewCube::ComputeSelection ******/ + /****** md5 signature: 0ee36b1ad2a8a3c1bbb813dfdb1d40ae ******/ %feature("compactdefaultargs") ComputeSelection; %feature("autodoc", " Parameters @@ -17598,8 +17598,8 @@ Redefine computing of sensitive entities for view cube. @param theselection [in] ") ComputeSelection; virtual void ComputeSelection(const opencascade::handle & theSelection, const Standard_Integer theMode); - /****************** Duration ******************/ - /**** md5 signature: cd23e793a0fab00473e0b8c81979e62b ****/ + /****** AIS_ViewCube::Duration ******/ + /****** md5 signature: cd23e793a0fab00473e0b8c81979e62b ******/ %feature("compactdefaultargs") Duration; %feature("autodoc", "Return ------- @@ -17611,8 +17611,8 @@ Return duration of animation in seconds; 0.5 sec by default. ") Duration; Standard_Real Duration(); - /****************** Font ******************/ - /**** md5 signature: 246154ff4659a4acf077229295e5855e ****/ + /****** AIS_ViewCube::Font ******/ + /****** md5 signature: 246154ff4659a4acf077229295e5855e ******/ %feature("compactdefaultargs") Font; %feature("autodoc", "Return ------- @@ -17624,8 +17624,8 @@ Return font name that is used for displaying of sides and axes text. alias for: ") Font; const TCollection_AsciiString & Font(); - /****************** FontHeight ******************/ - /**** md5 signature: f8ae02fac55647c17230ba644edd4c2a ****/ + /****** AIS_ViewCube::FontHeight ******/ + /****** md5 signature: f8ae02fac55647c17230ba644edd4c2a ******/ %feature("compactdefaultargs") FontHeight; %feature("autodoc", "Return ------- @@ -17637,8 +17637,8 @@ Return height of font. ") FontHeight; Standard_Real FontHeight(); - /****************** GlobalSelOwner ******************/ - /**** md5 signature: 4b6aea62676c6d618f2db36c62ce24fb ****/ + /****** AIS_ViewCube::GlobalSelOwner ******/ + /****** md5 signature: 4b6aea62676c6d618f2db36c62ce24fb ******/ %feature("compactdefaultargs") GlobalSelOwner; %feature("autodoc", "Return ------- @@ -17650,8 +17650,8 @@ Global selection has no meaning for this class. ") GlobalSelOwner; virtual opencascade::handle GlobalSelOwner(); - /****************** HandleClick ******************/ - /**** md5 signature: 233cc95372f82b5f942da4a36a76df2e ****/ + /****** AIS_ViewCube::HandleClick ******/ + /****** md5 signature: 233cc95372f82b5f942da4a36a76df2e ******/ %feature("compactdefaultargs") HandleClick; %feature("autodoc", " Parameters @@ -17668,8 +17668,8 @@ Perform camera transformation corresponding to the input detected owner. ") HandleClick; virtual void HandleClick(const opencascade::handle & theOwner); - /****************** HasAnimation ******************/ - /**** md5 signature: ea8e65091e3937097b9cc6944fb87e34 ****/ + /****** AIS_ViewCube::HasAnimation ******/ + /****** md5 signature: ea8e65091e3937097b9cc6944fb87e34 ******/ %feature("compactdefaultargs") HasAnimation; %feature("autodoc", "Return ------- @@ -17681,8 +17681,8 @@ Return true if view cube has unfinished animation of view camera. ") HasAnimation; Standard_Boolean HasAnimation(); - /****************** HilightOwnerWithColor ******************/ - /**** md5 signature: 55b3be7a2ac03a5f834f6d8c95996212 ****/ + /****** AIS_ViewCube::HilightOwnerWithColor ******/ + /****** md5 signature: 55b3be7a2ac03a5f834f6d8c95996212 ******/ %feature("compactdefaultargs") HilightOwnerWithColor; %feature("autodoc", " Parameters @@ -17701,8 +17701,8 @@ Method which highlights input owner belonging to this selectable object. @param ") HilightOwnerWithColor; virtual void HilightOwnerWithColor(const opencascade::handle & thePM, const opencascade::handle & theStyle, const opencascade::handle & theOwner); - /****************** HilightSelected ******************/ - /**** md5 signature: b1fc27c909de3a5e8e70f8fe74bf4101 ****/ + /****** AIS_ViewCube::HilightSelected ******/ + /****** md5 signature: b1fc27c909de3a5e8e70f8fe74bf4101 ******/ %feature("compactdefaultargs") HilightSelected; %feature("autodoc", " Parameters @@ -17720,8 +17720,8 @@ Method which draws selected owners. ") HilightSelected; virtual void HilightSelected(const opencascade::handle & thePM, const SelectMgr_SequenceOfOwner & theSeq); - /****************** InnerColor ******************/ - /**** md5 signature: 14a7d761b72d032118329dab4a717cc8 ****/ + /****** AIS_ViewCube::InnerColor ******/ + /****** md5 signature: 14a7d761b72d032118329dab4a717cc8 ******/ %feature("compactdefaultargs") InnerColor; %feature("autodoc", "Return ------- @@ -17733,8 +17733,8 @@ Return color of sides back material. ") InnerColor; const Quantity_Color & InnerColor(); - /****************** IsAutoHilight ******************/ - /**** md5 signature: d08251e65bb2038174f4c2dab73d34c9 ****/ + /****** AIS_ViewCube::IsAutoHilight ******/ + /****** md5 signature: d08251e65bb2038174f4c2dab73d34c9 ******/ %feature("compactdefaultargs") IsAutoHilight; %feature("autodoc", "Return ------- @@ -17746,8 +17746,8 @@ Disables auto highlighting to use hilightselected() and hilightownerwithcolor() ") IsAutoHilight; virtual Standard_Boolean IsAutoHilight(); - /****************** IsBoxCorner ******************/ - /**** md5 signature: 75fe36b27e987c1abfb32a08311b0265 ****/ + /****** AIS_ViewCube::IsBoxCorner ******/ + /****** md5 signature: 75fe36b27e987c1abfb32a08311b0265 ******/ %feature("compactdefaultargs") IsBoxCorner; %feature("autodoc", " Parameters @@ -17764,8 +17764,8 @@ Return true if specified orientation belongs to box corner (vertex). ") IsBoxCorner; static bool IsBoxCorner(V3d_TypeOfOrientation theOrient); - /****************** IsBoxEdge ******************/ - /**** md5 signature: dea43b60f7436844e12040dd2b97a04c ****/ + /****** AIS_ViewCube::IsBoxEdge ******/ + /****** md5 signature: dea43b60f7436844e12040dd2b97a04c ******/ %feature("compactdefaultargs") IsBoxEdge; %feature("autodoc", " Parameters @@ -17782,8 +17782,8 @@ Return true if specified orientation belongs to box edge. ") IsBoxEdge; static bool IsBoxEdge(V3d_TypeOfOrientation theOrient); - /****************** IsBoxSide ******************/ - /**** md5 signature: f20117775f8e7e897cd2c7de0f3999b8 ****/ + /****** AIS_ViewCube::IsBoxSide ******/ + /****** md5 signature: f20117775f8e7e897cd2c7de0f3999b8 ******/ %feature("compactdefaultargs") IsBoxSide; %feature("autodoc", " Parameters @@ -17800,8 +17800,8 @@ Return true if specified orientation belongs to box side. ") IsBoxSide; static bool IsBoxSide(V3d_TypeOfOrientation theOrient); - /****************** IsFixedAnimationLoop ******************/ - /**** md5 signature: 9a52eb355318c2784667b23e102c4d58 ****/ + /****** AIS_ViewCube::IsFixedAnimationLoop ******/ + /****** md5 signature: 9a52eb355318c2784667b23e102c4d58 ******/ %feature("compactdefaultargs") IsFixedAnimationLoop; %feature("autodoc", "Return ------- @@ -17813,8 +17813,8 @@ Return true if camera animation should be done in uninterruptible loop; true by ") IsFixedAnimationLoop; Standard_Boolean IsFixedAnimationLoop(); - /****************** IsYup ******************/ - /**** md5 signature: 0258bf2f11be77e639c0e89833b4fb7d ****/ + /****** AIS_ViewCube::IsYup ******/ + /****** md5 signature: 0258bf2f11be77e639c0e89833b4fb7d ******/ %feature("compactdefaultargs") IsYup; %feature("autodoc", "Return ------- @@ -17826,8 +17826,8 @@ Return true if application expects y-up viewer orientation instead of z-up; fals ") IsYup; Standard_Boolean IsYup(); - /****************** ResetStyles ******************/ - /**** md5 signature: 1f06b68deac4bd647a9e560e0db0ee77 ****/ + /****** AIS_ViewCube::ResetStyles ******/ + /****** md5 signature: 1f06b68deac4bd647a9e560e0db0ee77 ******/ %feature("compactdefaultargs") ResetStyles; %feature("autodoc", "Return ------- @@ -17839,8 +17839,8 @@ Reset all size and style parameters to default. @warning it doesn't reset positi ") ResetStyles; void ResetStyles(); - /****************** RoundRadius ******************/ - /**** md5 signature: b765e7492bbb4ae2e6ea2c63b8a106ee ****/ + /****** AIS_ViewCube::RoundRadius ******/ + /****** md5 signature: b765e7492bbb4ae2e6ea2c63b8a106ee ******/ %feature("compactdefaultargs") RoundRadius; %feature("autodoc", "Return ------- @@ -17852,8 +17852,8 @@ Return relative radius of side corners (round rectangle); 0.0 by default. the va ") RoundRadius; Standard_Real RoundRadius(); - /****************** SetAutoStartAnimation ******************/ - /**** md5 signature: 8a1b8c856a96bad116e83f4b7a7dfe16 ****/ + /****** AIS_ViewCube::SetAutoStartAnimation ******/ + /****** md5 signature: 8a1b8c856a96bad116e83f4b7a7dfe16 ******/ %feature("compactdefaultargs") SetAutoStartAnimation; %feature("autodoc", " Parameters @@ -17870,8 +17870,8 @@ Enable/disable automatic camera transformation on selection (highlighting). the ") SetAutoStartAnimation; void SetAutoStartAnimation(bool theToEnable); - /****************** SetAxesConeRadius ******************/ - /**** md5 signature: 5b9982593302c2edb4cbf267b741048d ****/ + /****** AIS_ViewCube::SetAxesConeRadius ******/ + /****** md5 signature: 5b9982593302c2edb4cbf267b741048d ******/ %feature("compactdefaultargs") SetAxesConeRadius; %feature("autodoc", " Parameters @@ -17888,8 +17888,8 @@ Sets radius of cone of axes of the trihedron. ") SetAxesConeRadius; void SetAxesConeRadius(Standard_Real theRadius); - /****************** SetAxesLabels ******************/ - /**** md5 signature: e0b70137acafbab1dfb0049c9b2302e4 ****/ + /****** AIS_ViewCube::SetAxesLabels ******/ + /****** md5 signature: e0b70137acafbab1dfb0049c9b2302e4 ******/ %feature("compactdefaultargs") SetAxesLabels; %feature("autodoc", " Parameters @@ -17908,8 +17908,8 @@ Set axes labels. ") SetAxesLabels; void SetAxesLabels(TCollection_AsciiString theX, TCollection_AsciiString theY, TCollection_AsciiString theZ); - /****************** SetAxesPadding ******************/ - /**** md5 signature: bda467829db54201ecc24927f31793c3 ****/ + /****** AIS_ViewCube::SetAxesPadding ******/ + /****** md5 signature: bda467829db54201ecc24927f31793c3 ******/ %feature("compactdefaultargs") SetAxesPadding; %feature("autodoc", " Parameters @@ -17926,8 +17926,8 @@ Set new value of padding between axes and 3d part (box). ") SetAxesPadding; void SetAxesPadding(Standard_Real theValue); - /****************** SetAxesRadius ******************/ - /**** md5 signature: aab4f5bcdcec373e5a8868efe5c50aaa ****/ + /****** AIS_ViewCube::SetAxesRadius ******/ + /****** md5 signature: aab4f5bcdcec373e5a8868efe5c50aaa ******/ %feature("compactdefaultargs") SetAxesRadius; %feature("autodoc", " Parameters @@ -17944,8 +17944,8 @@ Sets radius of axes of the trihedron. ") SetAxesRadius; void SetAxesRadius(const Standard_Real theRadius); - /****************** SetAxesSphereRadius ******************/ - /**** md5 signature: 7180a507b86f2297dbefdcf2ccccf86e ****/ + /****** AIS_ViewCube::SetAxesSphereRadius ******/ + /****** md5 signature: 7180a507b86f2297dbefdcf2ccccf86e ******/ %feature("compactdefaultargs") SetAxesSphereRadius; %feature("autodoc", " Parameters @@ -17962,8 +17962,8 @@ Sets radius of sphere (central point) of the trihedron. ") SetAxesSphereRadius; void SetAxesSphereRadius(Standard_Real theRadius); - /****************** SetBoxColor ******************/ - /**** md5 signature: 88db23bbfdea3bc42a298167dbc484b3 ****/ + /****** AIS_ViewCube::SetBoxColor ******/ + /****** md5 signature: 88db23bbfdea3bc42a298167dbc484b3 ******/ %feature("compactdefaultargs") SetBoxColor; %feature("autodoc", " Parameters @@ -17980,8 +17980,8 @@ Set new value of front color for the 3d part of object. @param thecolor [in] inp ") SetBoxColor; void SetBoxColor(const Quantity_Color & theColor); - /****************** SetBoxCornerMinSize ******************/ - /**** md5 signature: 9d13ba003e1e5abf276c1861755ae870 ****/ + /****** AIS_ViewCube::SetBoxCornerMinSize ******/ + /****** md5 signature: 9d13ba003e1e5abf276c1861755ae870 ******/ %feature("compactdefaultargs") SetBoxCornerMinSize; %feature("autodoc", " Parameters @@ -17998,8 +17998,8 @@ Set new value of box corner minimal size. ") SetBoxCornerMinSize; void SetBoxCornerMinSize(Standard_Real theValue); - /****************** SetBoxEdgeGap ******************/ - /**** md5 signature: 509bab1cb550227d5b9ef2b8b06b8857 ****/ + /****** AIS_ViewCube::SetBoxEdgeGap ******/ + /****** md5 signature: 509bab1cb550227d5b9ef2b8b06b8857 ******/ %feature("compactdefaultargs") SetBoxEdgeGap; %feature("autodoc", " Parameters @@ -18016,8 +18016,8 @@ Set new value of box edges gap. ") SetBoxEdgeGap; void SetBoxEdgeGap(Standard_Real theValue); - /****************** SetBoxEdgeMinSize ******************/ - /**** md5 signature: 5ebb8cd58ee33cd5b2d5938d1345e440 ****/ + /****** AIS_ViewCube::SetBoxEdgeMinSize ******/ + /****** md5 signature: 5ebb8cd58ee33cd5b2d5938d1345e440 ******/ %feature("compactdefaultargs") SetBoxEdgeMinSize; %feature("autodoc", " Parameters @@ -18034,8 +18034,8 @@ Set new value of box edge minimal size. ") SetBoxEdgeMinSize; void SetBoxEdgeMinSize(Standard_Real theValue); - /****************** SetBoxFacetExtension ******************/ - /**** md5 signature: 098f3a467ddf8cf6716c6347bad9ca5c ****/ + /****** AIS_ViewCube::SetBoxFacetExtension ******/ + /****** md5 signature: 098f3a467ddf8cf6716c6347bad9ca5c ******/ %feature("compactdefaultargs") SetBoxFacetExtension; %feature("autodoc", " Parameters @@ -18052,8 +18052,8 @@ Set new value of box facet extension. ") SetBoxFacetExtension; void SetBoxFacetExtension(Standard_Real theValue); - /****************** SetBoxSideLabel ******************/ - /**** md5 signature: afb875f447d85dddc5aecae5535def86 ****/ + /****** AIS_ViewCube::SetBoxSideLabel ******/ + /****** md5 signature: afb875f447d85dddc5aecae5535def86 ******/ %feature("compactdefaultargs") SetBoxSideLabel; %feature("autodoc", " Parameters @@ -18071,8 +18071,8 @@ Set box side label. ") SetBoxSideLabel; void SetBoxSideLabel(const V3d_TypeOfOrientation theSide, TCollection_AsciiString theLabel); - /****************** SetBoxTransparency ******************/ - /**** md5 signature: 7b1db2c489dae836412f459804ab26de ****/ + /****** AIS_ViewCube::SetBoxTransparency ******/ + /****** md5 signature: 7b1db2c489dae836412f459804ab26de ******/ %feature("compactdefaultargs") SetBoxTransparency; %feature("autodoc", " Parameters @@ -18089,8 +18089,8 @@ Set new value of transparency for 3d part of object. @param thevalue [in] input ") SetBoxTransparency; void SetBoxTransparency(Standard_Real theValue); - /****************** SetColor ******************/ - /**** md5 signature: 8b05a1176e8ea8308341667f45b45c55 ****/ + /****** AIS_ViewCube::SetColor ******/ + /****** md5 signature: 8b05a1176e8ea8308341667f45b45c55 ******/ %feature("compactdefaultargs") SetColor; %feature("autodoc", " Parameters @@ -18107,8 +18107,8 @@ Set new value of color for the whole object. @param thecolor [in] input color va ") SetColor; virtual void SetColor(const Quantity_Color & theColor); - /****************** SetDrawAxes ******************/ - /**** md5 signature: 6d8a79f10109d6e330c2252fb0788a3a ****/ + /****** AIS_ViewCube::SetDrawAxes ******/ + /****** md5 signature: 6d8a79f10109d6e330c2252fb0788a3a ******/ %feature("compactdefaultargs") SetDrawAxes; %feature("autodoc", " Parameters @@ -18125,8 +18125,8 @@ Enable/disable drawing of trihedron. ") SetDrawAxes; void SetDrawAxes(Standard_Boolean theValue); - /****************** SetDrawEdges ******************/ - /**** md5 signature: 561c086bdeef81fcce791ab36dd58d37 ****/ + /****** AIS_ViewCube::SetDrawEdges ******/ + /****** md5 signature: 561c086bdeef81fcce791ab36dd58d37 ******/ %feature("compactdefaultargs") SetDrawEdges; %feature("autodoc", " Parameters @@ -18143,8 +18143,8 @@ Enable/disable drawing of edges of view cube. ") SetDrawEdges; void SetDrawEdges(Standard_Boolean theValue); - /****************** SetDrawVertices ******************/ - /**** md5 signature: 7620542fa225287ee76a8ccf14ea2d2f ****/ + /****** AIS_ViewCube::SetDrawVertices ******/ + /****** md5 signature: 7620542fa225287ee76a8ccf14ea2d2f ******/ %feature("compactdefaultargs") SetDrawVertices; %feature("autodoc", " Parameters @@ -18161,8 +18161,8 @@ Enable/disable drawing of vertices (corners) of view cube. ") SetDrawVertices; void SetDrawVertices(Standard_Boolean theValue); - /****************** SetDuration ******************/ - /**** md5 signature: 77de8062b463afd09fa32f19d1f28c85 ****/ + /****** AIS_ViewCube::SetDuration ******/ + /****** md5 signature: 77de8062b463afd09fa32f19d1f28c85 ******/ %feature("compactdefaultargs") SetDuration; %feature("autodoc", " Parameters @@ -18179,8 +18179,8 @@ Set duration of animation. @param thevalue [in] input value of duration in secon ") SetDuration; void SetDuration(Standard_Real theValue); - /****************** SetFitSelected ******************/ - /**** md5 signature: 8d3243804e683621aa021dc968363a29 ****/ + /****** AIS_ViewCube::SetFitSelected ******/ + /****** md5 signature: 8d3243804e683621aa021dc968363a29 ******/ %feature("compactdefaultargs") SetFitSelected; %feature("autodoc", " Parameters @@ -18197,8 +18197,8 @@ Set if animation should fit selected objects or to fit entire scene. ") SetFitSelected; void SetFitSelected(Standard_Boolean theToFitSelected); - /****************** SetFixedAnimationLoop ******************/ - /**** md5 signature: f081ff0fc52eba4baf015d8e1c8d3cf9 ****/ + /****** AIS_ViewCube::SetFixedAnimationLoop ******/ + /****** md5 signature: f081ff0fc52eba4baf015d8e1c8d3cf9 ******/ %feature("compactdefaultargs") SetFixedAnimationLoop; %feature("autodoc", " Parameters @@ -18215,8 +18215,8 @@ Set if camera animation should be done in uninterruptible loop. ") SetFixedAnimationLoop; void SetFixedAnimationLoop(bool theToEnable); - /****************** SetFont ******************/ - /**** md5 signature: 7f2969793d80ece6d22485bcb15f06b4 ****/ + /****** AIS_ViewCube::SetFont ******/ + /****** md5 signature: 7f2969793d80ece6d22485bcb15f06b4 ******/ %feature("compactdefaultargs") SetFont; %feature("autodoc", " Parameters @@ -18233,8 +18233,8 @@ Set font name that is used for displaying of sides and axes text. alias for: @co ") SetFont; void SetFont(TCollection_AsciiString theFont); - /****************** SetFontHeight ******************/ - /**** md5 signature: 88c3666178019f6b9e8629cb7bd9166f ****/ + /****** AIS_ViewCube::SetFontHeight ******/ + /****** md5 signature: 88c3666178019f6b9e8629cb7bd9166f ******/ %feature("compactdefaultargs") SetFontHeight; %feature("autodoc", " Parameters @@ -18251,8 +18251,8 @@ Change font height. alias for: @code attributes()->textaspect()->setheight() @en ") SetFontHeight; void SetFontHeight(Standard_Real theValue); - /****************** SetInnerColor ******************/ - /**** md5 signature: c006b72a08a2372175b589ace45abf78 ****/ + /****** AIS_ViewCube::SetInnerColor ******/ + /****** md5 signature: c006b72a08a2372175b589ace45abf78 ******/ %feature("compactdefaultargs") SetInnerColor; %feature("autodoc", " Parameters @@ -18269,8 +18269,8 @@ Set color of sides back material. alias for: @code attributes()->shadingaspect() ") SetInnerColor; void SetInnerColor(const Quantity_Color & theColor); - /****************** SetMaterial ******************/ - /**** md5 signature: ee0a196604d70f5cc8455b24228bcaef ****/ + /****** AIS_ViewCube::SetMaterial ******/ + /****** md5 signature: ee0a196604d70f5cc8455b24228bcaef ******/ %feature("compactdefaultargs") SetMaterial; %feature("autodoc", " Parameters @@ -18287,8 +18287,8 @@ Sets the material for the interactive object. ") SetMaterial; virtual void SetMaterial(const Graphic3d_MaterialAspect & theMat); - /****************** SetResetCamera ******************/ - /**** md5 signature: 5f322fdd51d73afcfa771ed706e084e8 ****/ + /****** AIS_ViewCube::SetResetCamera ******/ + /****** md5 signature: 5f322fdd51d73afcfa771ed706e084e8 ******/ %feature("compactdefaultargs") SetResetCamera; %feature("autodoc", " Parameters @@ -18305,8 +18305,8 @@ Set if new camera up direction should be always set to default value for a new c ") SetResetCamera; void SetResetCamera(Standard_Boolean theToReset); - /****************** SetRoundRadius ******************/ - /**** md5 signature: 3f1472c692ca705e2555a28d216862a0 ****/ + /****** AIS_ViewCube::SetRoundRadius ******/ + /****** md5 signature: 3f1472c692ca705e2555a28d216862a0 ******/ %feature("compactdefaultargs") SetRoundRadius; %feature("autodoc", " Parameters @@ -18323,8 +18323,8 @@ Set relative radius of view cube sides corners (round rectangle). the value shou ") SetRoundRadius; void SetRoundRadius(const Standard_Real theValue); - /****************** SetSize ******************/ - /**** md5 signature: 5baa016955736829fa7e1f0badc0d106 ****/ + /****** AIS_ViewCube::SetSize ******/ + /****** md5 signature: 5baa016955736829fa7e1f0badc0d106 ******/ %feature("compactdefaultargs") SetSize; %feature("autodoc", " Parameters @@ -18342,8 +18342,8 @@ Sets size (width and height) of view cube sides. @param thetoadaptanother if tru ") SetSize; void SetSize(Standard_Real theValue, Standard_Boolean theToAdaptAnother = true); - /****************** SetTextColor ******************/ - /**** md5 signature: f1aa114965e956f094c13e5b3ae0dc42 ****/ + /****** AIS_ViewCube::SetTextColor ******/ + /****** md5 signature: f1aa114965e956f094c13e5b3ae0dc42 ******/ %feature("compactdefaultargs") SetTextColor; %feature("autodoc", " Parameters @@ -18360,8 +18360,8 @@ Set color of text labels on box sides. alias for: @code attributes()->textaspect ") SetTextColor; void SetTextColor(const Quantity_Color & theColor); - /****************** SetTransparency ******************/ - /**** md5 signature: dd8539d90dbe5b5ee6a12b8b3e461ecb ****/ + /****** AIS_ViewCube::SetTransparency ******/ + /****** md5 signature: dd8539d90dbe5b5ee6a12b8b3e461ecb ******/ %feature("compactdefaultargs") SetTransparency; %feature("autodoc", " Parameters @@ -18378,8 +18378,8 @@ Set new value of transparency for the whole object. @param thevalue [in] input t ") SetTransparency; virtual void SetTransparency(const Standard_Real theValue); - /****************** SetViewAnimation ******************/ - /**** md5 signature: 853aa0ceb7bdaa632922e5e8afd4812f ****/ + /****** AIS_ViewCube::SetViewAnimation ******/ + /****** md5 signature: 853aa0ceb7bdaa632922e5e8afd4812f ******/ %feature("compactdefaultargs") SetViewAnimation; %feature("autodoc", " Parameters @@ -18396,8 +18396,8 @@ Set view animation. ") SetViewAnimation; void SetViewAnimation(const opencascade::handle & theAnimation); - /****************** SetYup ******************/ - /**** md5 signature: 042b2f912421f1ec215a2aee204101be ****/ + /****** AIS_ViewCube::SetYup ******/ + /****** md5 signature: 042b2f912421f1ec215a2aee204101be ******/ %feature("compactdefaultargs") SetYup; %feature("autodoc", " Parameters @@ -18415,8 +18415,8 @@ Set if application expects y-up viewer orientation instead of z-up. ") SetYup; void SetYup(Standard_Boolean theIsYup, Standard_Boolean theToUpdateLabels = Standard_True); - /****************** Size ******************/ - /**** md5 signature: 0113d47673ecbdcb4822fb85c27ac0c5 ****/ + /****** AIS_ViewCube::Size ******/ + /****** md5 signature: 0113d47673ecbdcb4822fb85c27ac0c5 ******/ %feature("compactdefaultargs") Size; %feature("autodoc", "Return ------- @@ -18428,8 +18428,8 @@ Return size (width and height) of view cube sides; 100 by default. ") Size; Standard_Real Size(); - /****************** StartAnimation ******************/ - /**** md5 signature: e11ccac5a43cc784cce774de19a1f2f9 ****/ + /****** AIS_ViewCube::StartAnimation ******/ + /****** md5 signature: e11ccac5a43cc784cce774de19a1f2f9 ******/ %feature("compactdefaultargs") StartAnimation; %feature("autodoc", " Parameters @@ -18446,8 +18446,8 @@ Start camera transformation corresponding to the input detected owner. @param th ") StartAnimation; virtual void StartAnimation(const opencascade::handle & theOwner); - /****************** TextColor ******************/ - /**** md5 signature: 92b8584a07bd8f0e0e3839a819e74e79 ****/ + /****** AIS_ViewCube::TextColor ******/ + /****** md5 signature: 92b8584a07bd8f0e0e3839a819e74e79 ******/ %feature("compactdefaultargs") TextColor; %feature("autodoc", "Return ------- @@ -18459,8 +18459,8 @@ Return text color of labels of box sides; black by default. ") TextColor; const Quantity_Color & TextColor(); - /****************** ToAutoStartAnimation ******************/ - /**** md5 signature: 173be5b407140d752a33eecf77a56b09 ****/ + /****** AIS_ViewCube::ToAutoStartAnimation ******/ + /****** md5 signature: 173be5b407140d752a33eecf77a56b09 ******/ %feature("compactdefaultargs") ToAutoStartAnimation; %feature("autodoc", "Return ------- @@ -18472,8 +18472,8 @@ Return true if automatic camera transformation on selection (highlighting) is en ") ToAutoStartAnimation; Standard_Boolean ToAutoStartAnimation(); - /****************** ToDrawAxes ******************/ - /**** md5 signature: cf79dcc6451b48c9e4ca8d3f257bcc8d ****/ + /****** AIS_ViewCube::ToDrawAxes ******/ + /****** md5 signature: cf79dcc6451b48c9e4ca8d3f257bcc8d ******/ %feature("compactdefaultargs") ToDrawAxes; %feature("autodoc", "Return ------- @@ -18485,8 +18485,8 @@ Return true if trihedron is drawn; true by default. ") ToDrawAxes; Standard_Boolean ToDrawAxes(); - /****************** ToDrawEdges ******************/ - /**** md5 signature: 04159a85d23312a120a98b95966f1e8d ****/ + /****** AIS_ViewCube::ToDrawEdges ******/ + /****** md5 signature: 04159a85d23312a120a98b95966f1e8d ******/ %feature("compactdefaultargs") ToDrawEdges; %feature("autodoc", "Return ------- @@ -18498,8 +18498,8 @@ Return true if edges of view cube is drawn; true by default. ") ToDrawEdges; Standard_Boolean ToDrawEdges(); - /****************** ToDrawVertices ******************/ - /**** md5 signature: 71770068df79467e3f52c43f268b446f ****/ + /****** AIS_ViewCube::ToDrawVertices ******/ + /****** md5 signature: 71770068df79467e3f52c43f268b446f ******/ %feature("compactdefaultargs") ToDrawVertices; %feature("autodoc", "Return ------- @@ -18511,8 +18511,8 @@ Return true if vertices (vertex) of view cube is drawn; true by default. ") ToDrawVertices; Standard_Boolean ToDrawVertices(); - /****************** ToFitSelected ******************/ - /**** md5 signature: ca2e1783e415345ec5dde27605ce5511 ****/ + /****** AIS_ViewCube::ToFitSelected ******/ + /****** md5 signature: ca2e1783e415345ec5dde27605ce5511 ******/ %feature("compactdefaultargs") ToFitSelected; %feature("autodoc", "Return ------- @@ -18524,8 +18524,8 @@ Return true if animation should fit selected objects and false to fit entire sce ") ToFitSelected; Standard_Boolean ToFitSelected(); - /****************** ToResetCameraUp ******************/ - /**** md5 signature: 8126147cfb93a6867ff8d666dce509ea ****/ + /****** AIS_ViewCube::ToResetCameraUp ******/ + /****** md5 signature: 8126147cfb93a6867ff8d666dce509ea ******/ %feature("compactdefaultargs") ToResetCameraUp; %feature("autodoc", "Return ------- @@ -18537,8 +18537,8 @@ Return true if new camera up direction should be always set to default value for ") ToResetCameraUp; Standard_Boolean ToResetCameraUp(); - /****************** UnsetAttributes ******************/ - /**** md5 signature: f3893ef8c4b0f7748ca4fdf6a6ba4ae8 ****/ + /****** AIS_ViewCube::UnsetAttributes ******/ + /****** md5 signature: f3893ef8c4b0f7748ca4fdf6a6ba4ae8 ******/ %feature("compactdefaultargs") UnsetAttributes; %feature("autodoc", "Return ------- @@ -18550,8 +18550,8 @@ Set default parameters for visual attributes @sa attributes(). ") UnsetAttributes; virtual void UnsetAttributes(); - /****************** UnsetColor ******************/ - /**** md5 signature: 543a55646b9732434a34cda0626c7ae0 ****/ + /****** AIS_ViewCube::UnsetColor ******/ + /****** md5 signature: 543a55646b9732434a34cda0626c7ae0 ******/ %feature("compactdefaultargs") UnsetColor; %feature("autodoc", "Return ------- @@ -18563,8 +18563,8 @@ Reset color for the whole object. ") UnsetColor; virtual void UnsetColor(); - /****************** UnsetHilightAttributes ******************/ - /**** md5 signature: cdbaa046fa84db348b32f4063de97507 ****/ + /****** AIS_ViewCube::UnsetHilightAttributes ******/ + /****** md5 signature: cdbaa046fa84db348b32f4063de97507 ******/ %feature("compactdefaultargs") UnsetHilightAttributes; %feature("autodoc", "Return ------- @@ -18576,8 +18576,8 @@ Set default parameters for dynamic highlighting attributes, reset highlight attr ") UnsetHilightAttributes; virtual void UnsetHilightAttributes(); - /****************** UnsetMaterial ******************/ - /**** md5 signature: fd222a04e009fb71173291d494b57fbe ****/ + /****** AIS_ViewCube::UnsetMaterial ******/ + /****** md5 signature: fd222a04e009fb71173291d494b57fbe ******/ %feature("compactdefaultargs") UnsetMaterial; %feature("autodoc", "Return ------- @@ -18589,8 +18589,8 @@ Sets the material for the interactive object. ") UnsetMaterial; virtual void UnsetMaterial(); - /****************** UnsetTransparency ******************/ - /**** md5 signature: d5dc50ef874a9e0fcbfa62da4cd73b8f ****/ + /****** AIS_ViewCube::UnsetTransparency ******/ + /****** md5 signature: d5dc50ef874a9e0fcbfa62da4cd73b8f ******/ %feature("compactdefaultargs") UnsetTransparency; %feature("autodoc", "Return ------- @@ -18602,8 +18602,8 @@ Reset transparency for the whole object. ") UnsetTransparency; virtual void UnsetTransparency(); - /****************** UpdateAnimation ******************/ - /**** md5 signature: 1cd4b6447fb9ee386d69db232b771bf6 ****/ + /****** AIS_ViewCube::UpdateAnimation ******/ + /****** md5 signature: 1cd4b6447fb9ee386d69db232b771bf6 ******/ %feature("compactdefaultargs") UpdateAnimation; %feature("autodoc", " Parameters @@ -18620,8 +18620,8 @@ Perform one step of current camera transformation. thetoupdate [in] enable/disab ") UpdateAnimation; virtual Standard_Boolean UpdateAnimation(const Standard_Boolean theToUpdate); - /****************** ViewAnimation ******************/ - /**** md5 signature: 7a7517bd1c0e55fdc5279dc1aefd5047 ****/ + /****** AIS_ViewCube::ViewAnimation ******/ + /****** md5 signature: 7a7517bd1c0e55fdc5279dc1aefd5047 ******/ %feature("compactdefaultargs") ViewAnimation; %feature("autodoc", "Return ------- @@ -18647,8 +18647,8 @@ Return view animation. ****************************/ class AIS_XRTrackedDevice : public AIS_InteractiveObject { public: - /****************** AIS_XRTrackedDevice ******************/ - /**** md5 signature: 73db88b212ab4ea311f2c54259f77263 ****/ + /****** AIS_XRTrackedDevice::AIS_XRTrackedDevice ******/ + /****** md5 signature: 73db88b212ab4ea311f2c54259f77263 ******/ %feature("compactdefaultargs") AIS_XRTrackedDevice; %feature("autodoc", " Parameters @@ -18666,8 +18666,8 @@ Main constructor. ") AIS_XRTrackedDevice; AIS_XRTrackedDevice(const opencascade::handle & theTris, const opencascade::handle & theTexture); - /****************** AIS_XRTrackedDevice ******************/ - /**** md5 signature: 81dc9375bb8ceba5f8e13cdae8ed699d ****/ + /****** AIS_XRTrackedDevice::AIS_XRTrackedDevice ******/ + /****** md5 signature: 81dc9375bb8ceba5f8e13cdae8ed699d ******/ %feature("compactdefaultargs") AIS_XRTrackedDevice; %feature("autodoc", "Return ------- @@ -18679,8 +18679,8 @@ Empty constructor. ") AIS_XRTrackedDevice; AIS_XRTrackedDevice(); - /****************** LaserColor ******************/ - /**** md5 signature: 3764f0787105c7ac66e6b31a8f2890b8 ****/ + /****** AIS_XRTrackedDevice::LaserColor ******/ + /****** md5 signature: 3764f0787105c7ac66e6b31a8f2890b8 ******/ %feature("compactdefaultargs") LaserColor; %feature("autodoc", "Return ------- @@ -18692,8 +18692,8 @@ Return laser color. ") LaserColor; const Quantity_Color & LaserColor(); - /****************** LaserLength ******************/ - /**** md5 signature: a1c42ebb70645a086f015598d7a3f880 ****/ + /****** AIS_XRTrackedDevice::LaserLength ******/ + /****** md5 signature: a1c42ebb70645a086f015598d7a3f880 ******/ %feature("compactdefaultargs") LaserLength; %feature("autodoc", "Return ------- @@ -18705,8 +18705,8 @@ Return laser length. ") LaserLength; Standard_ShortReal LaserLength(); - /****************** Role ******************/ - /**** md5 signature: 9ca69fc1cf78226378dfe201ccd20d67 ****/ + /****** AIS_XRTrackedDevice::Role ******/ + /****** md5 signature: 9ca69fc1cf78226378dfe201ccd20d67 ******/ %feature("compactdefaultargs") Role; %feature("autodoc", "Return ------- @@ -18718,8 +18718,8 @@ Return device role. ") Role; Aspect_XRTrackedDeviceRole Role(); - /****************** SetLaserColor ******************/ - /**** md5 signature: 6c097047fce7892b381ebd56a66e83cc ****/ + /****** AIS_XRTrackedDevice::SetLaserColor ******/ + /****** md5 signature: 6c097047fce7892b381ebd56a66e83cc ******/ %feature("compactdefaultargs") SetLaserColor; %feature("autodoc", " Parameters @@ -18736,8 +18736,8 @@ Set laser color. ") SetLaserColor; void SetLaserColor(const Quantity_Color & theColor); - /****************** SetLaserLength ******************/ - /**** md5 signature: 43d0febcaf31d7623acf48aa12a5ca5b ****/ + /****** AIS_XRTrackedDevice::SetLaserLength ******/ + /****** md5 signature: 43d0febcaf31d7623acf48aa12a5ca5b ******/ %feature("compactdefaultargs") SetLaserLength; %feature("autodoc", " Parameters @@ -18754,8 +18754,8 @@ Set laser length. ") SetLaserLength; void SetLaserLength(Standard_ShortReal theLength); - /****************** SetRole ******************/ - /**** md5 signature: 327a00be1fb4288d5cf8731991db2478 ****/ + /****** AIS_XRTrackedDevice::SetRole ******/ + /****** md5 signature: 327a00be1fb4288d5cf8731991db2478 ******/ %feature("compactdefaultargs") SetRole; %feature("autodoc", " Parameters @@ -18772,8 +18772,8 @@ Set device role. ") SetRole; void SetRole(Aspect_XRTrackedDeviceRole theRole); - /****************** SetUnitFactor ******************/ - /**** md5 signature: 8af5f076041e3e6f73d217280b2545fb ****/ + /****** AIS_XRTrackedDevice::SetUnitFactor ******/ + /****** md5 signature: 8af5f076041e3e6f73d217280b2545fb ******/ %feature("compactdefaultargs") SetUnitFactor; %feature("autodoc", " Parameters @@ -18790,8 +18790,8 @@ Set unit scale factor. ") SetUnitFactor; void SetUnitFactor(Standard_ShortReal theFactor); - /****************** UnitFactor ******************/ - /**** md5 signature: 86bfa16b9e53c2b7bd0c03986ad464d6 ****/ + /****** AIS_XRTrackedDevice::UnitFactor ******/ + /****** md5 signature: 86bfa16b9e53c2b7bd0c03986ad464d6 ******/ %feature("compactdefaultargs") UnitFactor; %feature("autodoc", "Return ------- @@ -18817,8 +18817,8 @@ Return unit scale factor. **********************************/ class AIS_AnimationAxisRotation : public AIS_BaseAnimationObject { public: - /****************** AIS_AnimationAxisRotation ******************/ - /**** md5 signature: 819427e2c422233cc067da4633992952 ****/ + /****** AIS_AnimationAxisRotation::AIS_AnimationAxisRotation ******/ + /****** md5 signature: 819427e2c422233cc067da4633992952 ******/ %feature("compactdefaultargs") AIS_AnimationAxisRotation; %feature("autodoc", " Parameters @@ -18856,8 +18856,8 @@ Constructor with initialization. @param[in] theanimationname animation identifie ****************************/ class AIS_AnimationObject : public AIS_BaseAnimationObject { public: - /****************** AIS_AnimationObject ******************/ - /**** md5 signature: c16e60828b420c37f86bd653dd4d9c04 ****/ + /****** AIS_AnimationObject::AIS_AnimationObject ******/ + /****** md5 signature: c16e60828b420c37f86bd653dd4d9c04 ******/ %feature("compactdefaultargs") AIS_AnimationObject; %feature("autodoc", " Parameters @@ -18894,8 +18894,8 @@ Constructor with initialization. note that start/end transformations specify exa *************************/ class AIS_ColoredShape : public AIS_Shape { public: - /****************** AIS_ColoredShape ******************/ - /**** md5 signature: fb3b55130e0ac29dc003b42df171867f ****/ + /****** AIS_ColoredShape::AIS_ColoredShape ******/ + /****** md5 signature: fb3b55130e0ac29dc003b42df171867f ******/ %feature("compactdefaultargs") AIS_ColoredShape; %feature("autodoc", " Parameters @@ -18912,8 +18912,8 @@ Default constructor. ") AIS_ColoredShape; AIS_ColoredShape(const TopoDS_Shape & theShape); - /****************** AIS_ColoredShape ******************/ - /**** md5 signature: 57d5a885b365bbdae440a6669a47baaf ****/ + /****** AIS_ColoredShape::AIS_ColoredShape ******/ + /****** md5 signature: 57d5a885b365bbdae440a6669a47baaf ******/ %feature("compactdefaultargs") AIS_ColoredShape; %feature("autodoc", " Parameters @@ -18930,8 +18930,8 @@ Copy constructor. ") AIS_ColoredShape; AIS_ColoredShape(const opencascade::handle & theShape); - /****************** ChangeCustomAspectsMap ******************/ - /**** md5 signature: 2476431f03a5311f849b8058f8394850 ****/ + /****** AIS_ColoredShape::ChangeCustomAspectsMap ******/ + /****** md5 signature: 2476431f03a5311f849b8058f8394850 ******/ %feature("compactdefaultargs") ChangeCustomAspectsMap; %feature("autodoc", "Return ------- @@ -18943,8 +18943,8 @@ Return the map of custom aspects. ") ChangeCustomAspectsMap; AIS_DataMapOfShapeDrawer & ChangeCustomAspectsMap(); - /****************** ClearCustomAspects ******************/ - /**** md5 signature: fc6f686010bc49df004ff6cccab2c0a6 ****/ + /****** AIS_ColoredShape::ClearCustomAspects ******/ + /****** md5 signature: fc6f686010bc49df004ff6cccab2c0a6 ******/ %feature("compactdefaultargs") ClearCustomAspects; %feature("autodoc", "Return ------- @@ -18956,8 +18956,8 @@ Reset the map of custom sub-shape aspects. ") ClearCustomAspects; virtual void ClearCustomAspects(); - /****************** CustomAspects ******************/ - /**** md5 signature: 23e6d1633ab573a66905b41e46a87dae ****/ + /****** AIS_ColoredShape::CustomAspects ******/ + /****** md5 signature: 23e6d1633ab573a66905b41e46a87dae ******/ %feature("compactdefaultargs") CustomAspects; %feature("autodoc", " Parameters @@ -18974,8 +18974,8 @@ Customize properties of specified sub-shape. the shape will be stored in the map ") CustomAspects; virtual opencascade::handle CustomAspects(const TopoDS_Shape & theShape); - /****************** CustomAspectsMap ******************/ - /**** md5 signature: 47035b68a9196eeabf7efbd351c7543e ****/ + /****** AIS_ColoredShape::CustomAspectsMap ******/ + /****** md5 signature: 47035b68a9196eeabf7efbd351c7543e ******/ %feature("compactdefaultargs") CustomAspectsMap; %feature("autodoc", "Return ------- @@ -18987,8 +18987,8 @@ Return the map of custom aspects. ") CustomAspectsMap; const AIS_DataMapOfShapeDrawer & CustomAspectsMap(); - /****************** SetColor ******************/ - /**** md5 signature: 259272248bacb2cef242adbc667f0ef9 ****/ + /****** AIS_ColoredShape::SetColor ******/ + /****** md5 signature: 259272248bacb2cef242adbc667f0ef9 ******/ %feature("compactdefaultargs") SetColor; %feature("autodoc", " Parameters @@ -19005,8 +19005,8 @@ Setup color of entire shape. ") SetColor; virtual void SetColor(const Quantity_Color & theColor); - /****************** SetCustomColor ******************/ - /**** md5 signature: 6e83a5131df277baf8e10888e6a04420 ****/ + /****** AIS_ColoredShape::SetCustomColor ******/ + /****** md5 signature: 6e83a5131df277baf8e10888e6a04420 ******/ %feature("compactdefaultargs") SetCustomColor; %feature("autodoc", " Parameters @@ -19024,8 +19024,8 @@ Customize color of specified sub-shape. ") SetCustomColor; void SetCustomColor(const TopoDS_Shape & theShape, const Quantity_Color & theColor); - /****************** SetCustomTransparency ******************/ - /**** md5 signature: 8d33038bdbc2ac4fcd98bb4df4850d0d ****/ + /****** AIS_ColoredShape::SetCustomTransparency ******/ + /****** md5 signature: 8d33038bdbc2ac4fcd98bb4df4850d0d ******/ %feature("compactdefaultargs") SetCustomTransparency; %feature("autodoc", " Parameters @@ -19043,8 +19043,8 @@ Customize transparency of specified sub-shape. ") SetCustomTransparency; void SetCustomTransparency(const TopoDS_Shape & theShape, Standard_Real theTransparency); - /****************** SetCustomWidth ******************/ - /**** md5 signature: ecca2ec2322496495b6873213e79a4c4 ****/ + /****** AIS_ColoredShape::SetCustomWidth ******/ + /****** md5 signature: ecca2ec2322496495b6873213e79a4c4 ******/ %feature("compactdefaultargs") SetCustomWidth; %feature("autodoc", " Parameters @@ -19062,8 +19062,8 @@ Customize line width of specified sub-shape. ") SetCustomWidth; void SetCustomWidth(const TopoDS_Shape & theShape, const Standard_Real theLineWidth); - /****************** SetMaterial ******************/ - /**** md5 signature: 027cc7416eed42a51ff9f029065484ce ****/ + /****** AIS_ColoredShape::SetMaterial ******/ + /****** md5 signature: 027cc7416eed42a51ff9f029065484ce ******/ %feature("compactdefaultargs") SetMaterial; %feature("autodoc", " Parameters @@ -19080,8 +19080,8 @@ Sets the material aspect. ") SetMaterial; virtual void SetMaterial(const Graphic3d_MaterialAspect & theAspect); - /****************** SetTransparency ******************/ - /**** md5 signature: ba76d0fd3455858ee750a8806e400e81 ****/ + /****** AIS_ColoredShape::SetTransparency ******/ + /****** md5 signature: ba76d0fd3455858ee750a8806e400e81 ******/ %feature("compactdefaultargs") SetTransparency; %feature("autodoc", " Parameters @@ -19098,8 +19098,8 @@ Sets transparency value. ") SetTransparency; virtual void SetTransparency(const Standard_Real theValue); - /****************** SetWidth ******************/ - /**** md5 signature: 57b7c9277a0da4b605caca1f2d04261e ****/ + /****** AIS_ColoredShape::SetWidth ******/ + /****** md5 signature: 57b7c9277a0da4b605caca1f2d04261e ******/ %feature("compactdefaultargs") SetWidth; %feature("autodoc", " Parameters @@ -19116,8 +19116,8 @@ Setup line width of entire shape. ") SetWidth; virtual void SetWidth(const Standard_Real theLineWidth); - /****************** UnsetCustomAspects ******************/ - /**** md5 signature: c6fa220c089211fa5af52ae527cd7403 ****/ + /****** AIS_ColoredShape::UnsetCustomAspects ******/ + /****** md5 signature: c6fa220c089211fa5af52ae527cd7403 ******/ %feature("compactdefaultargs") UnsetCustomAspects; %feature("autodoc", " Parameters @@ -19135,8 +19135,8 @@ Reset custom properties of specified sub-shape. @param thetounregister unregiste ") UnsetCustomAspects; void UnsetCustomAspects(const TopoDS_Shape & theShape, const Standard_Boolean theToUnregister = Standard_False); - /****************** UnsetTransparency ******************/ - /**** md5 signature: bdf34ac27dd66c689517e7b105e66cb2 ****/ + /****** AIS_ColoredShape::UnsetTransparency ******/ + /****** md5 signature: bdf34ac27dd66c689517e7b105e66cb2 ******/ %feature("compactdefaultargs") UnsetTransparency; %feature("autodoc", "Return ------- @@ -19148,8 +19148,8 @@ Removes the setting for transparency in the reconstructed compound shape. ") UnsetTransparency; virtual void UnsetTransparency(); - /****************** UnsetWidth ******************/ - /**** md5 signature: f4f13d47402fae34af3d548b3b62cf10 ****/ + /****** AIS_ColoredShape::UnsetWidth ******/ + /****** md5 signature: f4f13d47402fae34af3d548b3b62cf10 ******/ %feature("compactdefaultargs") UnsetWidth; %feature("autodoc", "Return ------- @@ -19177,8 +19177,8 @@ Setup line width of entire shape. **************************/ class AIS_TexturedShape : public AIS_Shape { public: - /****************** AIS_TexturedShape ******************/ - /**** md5 signature: 7b5e3f67785ea4fff1a50e2a26f126ec ****/ + /****** AIS_TexturedShape::AIS_TexturedShape ******/ + /****** md5 signature: 7b5e3f67785ea4fff1a50e2a26f126ec ******/ %feature("compactdefaultargs") AIS_TexturedShape; %feature("autodoc", " Parameters @@ -19195,8 +19195,8 @@ Initializes the textured shape. ") AIS_TexturedShape; AIS_TexturedShape(const TopoDS_Shape & theShape); - /****************** AcceptDisplayMode ******************/ - /**** md5 signature: 4c81f1c2cfc05fd196e1c09a383a3455 ****/ + /****** AIS_TexturedShape::AcceptDisplayMode ******/ + /****** md5 signature: 4c81f1c2cfc05fd196e1c09a383a3455 ******/ %feature("compactdefaultargs") AcceptDisplayMode; %feature("autodoc", " Parameters @@ -19213,8 +19213,8 @@ Return true if specified display mode is supported (extends ais_shape with displ ") AcceptDisplayMode; virtual Standard_Boolean AcceptDisplayMode(const Standard_Integer theMode); - /****************** DisableTextureModulate ******************/ - /**** md5 signature: 97c815d24c97b655242a724b8bf1b6c6 ****/ + /****** AIS_TexturedShape::DisableTextureModulate ******/ + /****** md5 signature: 97c815d24c97b655242a724b8bf1b6c6 ******/ %feature("compactdefaultargs") DisableTextureModulate; %feature("autodoc", "Return ------- @@ -19226,8 +19226,8 @@ Disables texture modulation. ") DisableTextureModulate; void DisableTextureModulate(); - /****************** EnableTextureModulate ******************/ - /**** md5 signature: 6079501117720843b340d16a5a6761c6 ****/ + /****** AIS_TexturedShape::EnableTextureModulate ******/ + /****** md5 signature: 6079501117720843b340d16a5a6761c6 ******/ %feature("compactdefaultargs") EnableTextureModulate; %feature("autodoc", "Return ------- @@ -19239,8 +19239,8 @@ Enables texture modulation. ") EnableTextureModulate; void EnableTextureModulate(); - /****************** SetColor ******************/ - /**** md5 signature: 259272248bacb2cef242adbc667f0ef9 ****/ + /****** AIS_TexturedShape::SetColor ******/ + /****** md5 signature: 259272248bacb2cef242adbc667f0ef9 ******/ %feature("compactdefaultargs") SetColor; %feature("autodoc", " Parameters @@ -19257,8 +19257,8 @@ Sets the color. ") SetColor; virtual void SetColor(const Quantity_Color & theColor); - /****************** SetMaterial ******************/ - /**** md5 signature: 027cc7416eed42a51ff9f029065484ce ****/ + /****** AIS_TexturedShape::SetMaterial ******/ + /****** md5 signature: 027cc7416eed42a51ff9f029065484ce ******/ %feature("compactdefaultargs") SetMaterial; %feature("autodoc", " Parameters @@ -19275,8 +19275,8 @@ Sets the material aspect. ") SetMaterial; virtual void SetMaterial(const Graphic3d_MaterialAspect & theAspect); - /****************** SetTextureFileName ******************/ - /**** md5 signature: 15c6241ea9acf77eec1dd78180a11112 ****/ + /****** AIS_TexturedShape::SetTextureFileName ******/ + /****** md5 signature: 15c6241ea9acf77eec1dd78180a11112 ******/ %feature("compactdefaultargs") SetTextureFileName; %feature("autodoc", " Parameters @@ -19293,8 +19293,8 @@ Sets the texture source. can specify path to texture image ") SetTextureFileName; virtual void SetTextureFileName(TCollection_AsciiString theTextureFileName); - /****************** SetTextureMapOff ******************/ - /**** md5 signature: 63364859b184736648b21d705a82db43 ****/ + /****** AIS_TexturedShape::SetTextureMapOff ******/ + /****** md5 signature: 63364859b184736648b21d705a82db43 ******/ %feature("compactdefaultargs") SetTextureMapOff; %feature("autodoc", "Return ------- @@ -19306,8 +19306,8 @@ Disables texture mapping. ") SetTextureMapOff; void SetTextureMapOff(); - /****************** SetTextureMapOn ******************/ - /**** md5 signature: 61746e3f31a504b75cfbd53d8aff65e6 ****/ + /****** AIS_TexturedShape::SetTextureMapOn ******/ + /****** md5 signature: 61746e3f31a504b75cfbd53d8aff65e6 ******/ %feature("compactdefaultargs") SetTextureMapOn; %feature("autodoc", "Return ------- @@ -19319,8 +19319,8 @@ Enables texture mapping. ") SetTextureMapOn; void SetTextureMapOn(); - /****************** SetTextureOrigin ******************/ - /**** md5 signature: 376433b22adc598ae979b2689aa06720 ****/ + /****** AIS_TexturedShape::SetTextureOrigin ******/ + /****** md5 signature: 376433b22adc598ae979b2689aa06720 ******/ %feature("compactdefaultargs") SetTextureOrigin; %feature("autodoc", " Parameters @@ -19339,8 +19339,8 @@ Use this method to change the origin of the texture. the texel (0,0) will be map ") SetTextureOrigin; void SetTextureOrigin(const Standard_Boolean theToSetTextureOrigin, const Standard_Real theUOrigin = 0.0, const Standard_Real theVOrigin = 0.0); - /****************** SetTexturePixMap ******************/ - /**** md5 signature: 94f1328e4794c7fc34b1026e594da246 ****/ + /****** AIS_TexturedShape::SetTexturePixMap ******/ + /****** md5 signature: 94f1328e4794c7fc34b1026e594da246 ******/ %feature("compactdefaultargs") SetTexturePixMap; %feature("autodoc", " Parameters @@ -19357,8 +19357,8 @@ Sets the texture source. specifies image data. please note th ") SetTexturePixMap; virtual void SetTexturePixMap(const opencascade::handle & theTexturePixMap); - /****************** SetTextureRepeat ******************/ - /**** md5 signature: bfbb34918c9be619b4b0aa3c7926bce9 ****/ + /****** AIS_TexturedShape::SetTextureRepeat ******/ + /****** md5 signature: bfbb34918c9be619b4b0aa3c7926bce9 ******/ %feature("compactdefaultargs") SetTextureRepeat; %feature("autodoc", " Parameters @@ -19377,8 +19377,8 @@ Sets the number of occurrences of the texture on each face. the texture itself i ") SetTextureRepeat; void SetTextureRepeat(const Standard_Boolean theToRepeat, const Standard_Real theURepeat = 1.0, const Standard_Real theVRepeat = 1.0); - /****************** SetTextureScale ******************/ - /**** md5 signature: 400d25195a4dd51c58b863f68c159841 ****/ + /****** AIS_TexturedShape::SetTextureScale ******/ + /****** md5 signature: 400d25195a4dd51c58b863f68c159841 ******/ %feature("compactdefaultargs") SetTextureScale; %feature("autodoc", " Parameters @@ -19397,8 +19397,8 @@ Use this method to scale the texture (percent of the face). you can specify a sc ") SetTextureScale; void SetTextureScale(const Standard_Boolean theToSetTextureScale, const Standard_Real theScaleU = 1.0, const Standard_Real theScaleV = 1.0); - /****************** TextureFile ******************/ - /**** md5 signature: 9a6c79cb2b482678f5b7c07b954ecea9 ****/ + /****** AIS_TexturedShape::TextureFile ******/ + /****** md5 signature: 9a6c79cb2b482678f5b7c07b954ecea9 ******/ %feature("compactdefaultargs") TextureFile; %feature("autodoc", "Return ------- @@ -19410,8 +19410,8 @@ Return path to the texture file. ") TextureFile; Standard_CString TextureFile(); - /****************** TextureMapState ******************/ - /**** md5 signature: 383404f1553dcde6191be859120a79f5 ****/ + /****** AIS_TexturedShape::TextureMapState ******/ + /****** md5 signature: 383404f1553dcde6191be859120a79f5 ******/ %feature("compactdefaultargs") TextureMapState; %feature("autodoc", "Return ------- @@ -19423,8 +19423,8 @@ Return flag to control texture mapping (for presentation mode 3). ") TextureMapState; Standard_Boolean TextureMapState(); - /****************** TextureModulate ******************/ - /**** md5 signature: c5f30284076b9848b41b3650d0b61253 ****/ + /****** AIS_TexturedShape::TextureModulate ******/ + /****** md5 signature: c5f30284076b9848b41b3650d0b61253 ******/ %feature("compactdefaultargs") TextureModulate; %feature("autodoc", "Return ------- @@ -19436,8 +19436,8 @@ Return true if texture color modulation is turned on. ") TextureModulate; Standard_Boolean TextureModulate(); - /****************** TextureOrigin ******************/ - /**** md5 signature: 38e250787d2ff1326d55f0160476e4ca ****/ + /****** AIS_TexturedShape::TextureOrigin ******/ + /****** md5 signature: 38e250787d2ff1326d55f0160476e4ca ******/ %feature("compactdefaultargs") TextureOrigin; %feature("autodoc", "Return ------- @@ -19449,8 +19449,8 @@ Return true if texture uv origin has been modified. ") TextureOrigin; Standard_Boolean TextureOrigin(); - /****************** TexturePixMap ******************/ - /**** md5 signature: f87f144c3a04ccf005ab0fc99e7fbfed ****/ + /****** AIS_TexturedShape::TexturePixMap ******/ + /****** md5 signature: f87f144c3a04ccf005ab0fc99e7fbfed ******/ %feature("compactdefaultargs") TexturePixMap; %feature("autodoc", "Return ------- @@ -19462,8 +19462,8 @@ Return the source pixmap for texture map. ") TexturePixMap; const opencascade::handle & TexturePixMap(); - /****************** TextureRepeat ******************/ - /**** md5 signature: 212d7df9500adb68a80d8f2b3bc7a27c ****/ + /****** AIS_TexturedShape::TextureRepeat ******/ + /****** md5 signature: 212d7df9500adb68a80d8f2b3bc7a27c ******/ %feature("compactdefaultargs") TextureRepeat; %feature("autodoc", "Return ------- @@ -19475,8 +19475,8 @@ Return texture repeat flag. ") TextureRepeat; Standard_Boolean TextureRepeat(); - /****************** TextureScale ******************/ - /**** md5 signature: e5d81624609f681f147a099328454b07 ****/ + /****** AIS_TexturedShape::TextureScale ******/ + /****** md5 signature: e5d81624609f681f147a099328454b07 ******/ %feature("compactdefaultargs") TextureScale; %feature("autodoc", "Return ------- @@ -19488,8 +19488,8 @@ Return true if scale factor should be applied to texture mapping. ") TextureScale; Standard_Boolean TextureScale(); - /****************** TextureScaleU ******************/ - /**** md5 signature: 9776950f41e75a5c7d44cfe89127a0c3 ****/ + /****** AIS_TexturedShape::TextureScaleU ******/ + /****** md5 signature: 9776950f41e75a5c7d44cfe89127a0c3 ******/ %feature("compactdefaultargs") TextureScaleU; %feature("autodoc", "Return ------- @@ -19501,8 +19501,8 @@ Return scale factor for u coordinate (1.0 by default). ") TextureScaleU; Standard_Real TextureScaleU(); - /****************** TextureScaleV ******************/ - /**** md5 signature: 6fb743bea73c852a9e3e1e56c8c43b08 ****/ + /****** AIS_TexturedShape::TextureScaleV ******/ + /****** md5 signature: 6fb743bea73c852a9e3e1e56c8c43b08 ******/ %feature("compactdefaultargs") TextureScaleV; %feature("autodoc", "Return ------- @@ -19514,8 +19514,8 @@ Return scale factor for v coordinate (1.0 by default). ") TextureScaleV; Standard_Real TextureScaleV(); - /****************** TextureUOrigin ******************/ - /**** md5 signature: 10ef3372c0fb41b7da97ce782d879adc ****/ + /****** AIS_TexturedShape::TextureUOrigin ******/ + /****** md5 signature: 10ef3372c0fb41b7da97ce782d879adc ******/ %feature("compactdefaultargs") TextureUOrigin; %feature("autodoc", "Return ------- @@ -19527,8 +19527,8 @@ Return texture origin u position (0.0 by default). ") TextureUOrigin; Standard_Real TextureUOrigin(); - /****************** TextureVOrigin ******************/ - /**** md5 signature: 42004987cc3ad144bf2d27aa57e01071 ****/ + /****** AIS_TexturedShape::TextureVOrigin ******/ + /****** md5 signature: 42004987cc3ad144bf2d27aa57e01071 ******/ %feature("compactdefaultargs") TextureVOrigin; %feature("autodoc", "Return ------- @@ -19540,8 +19540,8 @@ Return texture origin v position (0.0 by default). ") TextureVOrigin; Standard_Real TextureVOrigin(); - /****************** URepeat ******************/ - /**** md5 signature: 404b02720a20f2fc3eb85deed39ca11b ****/ + /****** AIS_TexturedShape::URepeat ******/ + /****** md5 signature: 404b02720a20f2fc3eb85deed39ca11b ******/ %feature("compactdefaultargs") URepeat; %feature("autodoc", "Return ------- @@ -19553,8 +19553,8 @@ Return texture repeat u value. ") URepeat; Standard_Real URepeat(); - /****************** UnsetColor ******************/ - /**** md5 signature: 2da7e2ed6a63f7c70c36c2a82118a7ec ****/ + /****** AIS_TexturedShape::UnsetColor ******/ + /****** md5 signature: 2da7e2ed6a63f7c70c36c2a82118a7ec ******/ %feature("compactdefaultargs") UnsetColor; %feature("autodoc", "Return ------- @@ -19566,8 +19566,8 @@ Removes settings for the color. ") UnsetColor; virtual void UnsetColor(); - /****************** UnsetMaterial ******************/ - /**** md5 signature: 0a051ddc9f5267e24615c6f3dfd30498 ****/ + /****** AIS_TexturedShape::UnsetMaterial ******/ + /****** md5 signature: 0a051ddc9f5267e24615c6f3dfd30498 ******/ %feature("compactdefaultargs") UnsetMaterial; %feature("autodoc", "Return ------- @@ -19579,8 +19579,8 @@ Removes settings for material aspect. ") UnsetMaterial; virtual void UnsetMaterial(); - /****************** UpdateAttributes ******************/ - /**** md5 signature: 334c979de66ee04703d34c5c9478d7f3 ****/ + /****** AIS_TexturedShape::UpdateAttributes ******/ + /****** md5 signature: 334c979de66ee04703d34c5c9478d7f3 ******/ %feature("compactdefaultargs") UpdateAttributes; %feature("autodoc", "Return ------- @@ -19592,8 +19592,8 @@ Use this method to display the textured shape without recomputing the whole pres ") UpdateAttributes; void UpdateAttributes(); - /****************** VRepeat ******************/ - /**** md5 signature: 397e3c09b7e7140fac90dda021680f8d ****/ + /****** AIS_TexturedShape::VRepeat ******/ + /****** md5 signature: 397e3c09b7e7140fac90dda021680f8d ******/ %feature("compactdefaultargs") VRepeat; %feature("autodoc", "Return ------- diff --git a/src/SWIG_files/wrapper/APIHeaderSection.i b/src/SWIG_files/wrapper/APIHeaderSection.i index dafe0e9df..54e50b0f5 100644 --- a/src/SWIG_files/wrapper/APIHeaderSection.i +++ b/src/SWIG_files/wrapper/APIHeaderSection.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define APIHEADERSECTIONDOCSTRING "APIHeaderSection module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_apiheadersection.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_apiheadersection.html" %enddef %module (package="OCC.Core", docstring=APIHEADERSECTIONDOCSTRING) APIHeaderSection @@ -94,8 +94,8 @@ from OCC.Core.Exception import * ************************************/ class APIHeaderSection_EditHeader : public IFSelect_Editor { public: - /****************** APIHeaderSection_EditHeader ******************/ - /**** md5 signature: 2bf08a1315df936c9484c98a1d1baf5a ****/ + /****** APIHeaderSection_EditHeader::APIHeaderSection_EditHeader ******/ + /****** md5 signature: 2bf08a1315df936c9484c98a1d1baf5a ******/ %feature("compactdefaultargs") APIHeaderSection_EditHeader; %feature("autodoc", "Return ------- @@ -107,8 +107,8 @@ No available documentation. ") APIHeaderSection_EditHeader; APIHeaderSection_EditHeader(); - /****************** Apply ******************/ - /**** md5 signature: 7128480b7f4b1ff6fd959731640e27fc ****/ + /****** APIHeaderSection_EditHeader::Apply ******/ + /****** md5 signature: 7128480b7f4b1ff6fd959731640e27fc ******/ %feature("compactdefaultargs") Apply; %feature("autodoc", " Parameters @@ -127,8 +127,8 @@ No available documentation. ") Apply; Standard_Boolean Apply(const opencascade::handle & form, const opencascade::handle & ent, const opencascade::handle & model); - /****************** Label ******************/ - /**** md5 signature: e2fbf0e262882b3e9ec00c539ad3471b ****/ + /****** APIHeaderSection_EditHeader::Label ******/ + /****** md5 signature: e2fbf0e262882b3e9ec00c539ad3471b ******/ %feature("compactdefaultargs") Label; %feature("autodoc", "Return ------- @@ -140,8 +140,8 @@ No available documentation. ") Label; TCollection_AsciiString Label(); - /****************** Load ******************/ - /**** md5 signature: fbb84192d1ec7737c4c84905239a2df8 ****/ + /****** APIHeaderSection_EditHeader::Load ******/ + /****** md5 signature: fbb84192d1ec7737c4c84905239a2df8 ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -160,8 +160,8 @@ No available documentation. ") Load; Standard_Boolean Load(const opencascade::handle & form, const opencascade::handle & ent, const opencascade::handle & model); - /****************** Recognize ******************/ - /**** md5 signature: 745b42e0c753cb6baed4d66bbf94e5b8 ****/ + /****** APIHeaderSection_EditHeader::Recognize ******/ + /****** md5 signature: 745b42e0c753cb6baed4d66bbf94e5b8 ******/ %feature("compactdefaultargs") Recognize; %feature("autodoc", " Parameters @@ -178,8 +178,8 @@ No available documentation. ") Recognize; Standard_Boolean Recognize(const opencascade::handle & form); - /****************** StringValue ******************/ - /**** md5 signature: 4371620dd4c31b906a08f6f8ee98f04a ****/ + /****** APIHeaderSection_EditHeader::StringValue ******/ + /****** md5 signature: 4371620dd4c31b906a08f6f8ee98f04a ******/ %feature("compactdefaultargs") StringValue; %feature("autodoc", " Parameters @@ -213,8 +213,8 @@ No available documentation. ************************************/ class APIHeaderSection_MakeHeader { public: - /****************** APIHeaderSection_MakeHeader ******************/ - /**** md5 signature: 231ae7cfabfb8525a17a55b5e8098f01 ****/ + /****** APIHeaderSection_MakeHeader::APIHeaderSection_MakeHeader ******/ + /****** md5 signature: 231ae7cfabfb8525a17a55b5e8098f01 ******/ %feature("compactdefaultargs") APIHeaderSection_MakeHeader; %feature("autodoc", " Parameters @@ -231,8 +231,8 @@ Prepares a new makeheader from scratch. ") APIHeaderSection_MakeHeader; APIHeaderSection_MakeHeader(const Standard_Integer shapetype = 0); - /****************** APIHeaderSection_MakeHeader ******************/ - /**** md5 signature: 3bf1a3faeeaf6e2623b6097489a9d879 ****/ + /****** APIHeaderSection_MakeHeader::APIHeaderSection_MakeHeader ******/ + /****** md5 signature: 3bf1a3faeeaf6e2623b6097489a9d879 ******/ %feature("compactdefaultargs") APIHeaderSection_MakeHeader; %feature("autodoc", " Parameters @@ -249,8 +249,8 @@ Prepares a makeheader from the content of a stepmodel see isdone to know if the ") APIHeaderSection_MakeHeader; APIHeaderSection_MakeHeader(const opencascade::handle & model); - /****************** AddSchemaIdentifier ******************/ - /**** md5 signature: fb971c31ef622fe2699e9896a61d0b7c ****/ + /****** APIHeaderSection_MakeHeader::AddSchemaIdentifier ******/ + /****** md5 signature: fb971c31ef622fe2699e9896a61d0b7c ******/ %feature("compactdefaultargs") AddSchemaIdentifier; %feature("autodoc", " Parameters @@ -267,8 +267,8 @@ Add a subname of schema (if not yet in the list). ") AddSchemaIdentifier; void AddSchemaIdentifier(const opencascade::handle & aSchemaIdentifier); - /****************** Apply ******************/ - /**** md5 signature: 7a18b7c9dc5aace0d13d1301acc1073f ****/ + /****** APIHeaderSection_MakeHeader::Apply ******/ + /****** md5 signature: 7a18b7c9dc5aace0d13d1301acc1073f ******/ %feature("compactdefaultargs") Apply; %feature("autodoc", " Parameters @@ -285,8 +285,8 @@ Creates an empty header for a new step model and allows the header fields to be ") Apply; void Apply(const opencascade::handle & model); - /****************** Author ******************/ - /**** md5 signature: 23de40daf6aa0108289fcab1cc10b710 ****/ + /****** APIHeaderSection_MakeHeader::Author ******/ + /****** md5 signature: 23de40daf6aa0108289fcab1cc10b710 ******/ %feature("compactdefaultargs") Author; %feature("autodoc", "Return ------- @@ -298,8 +298,8 @@ No available documentation. ") Author; opencascade::handle Author(); - /****************** AuthorValue ******************/ - /**** md5 signature: 053bae3a6f3b50b0b3cbcc10f1448e71 ****/ + /****** APIHeaderSection_MakeHeader::AuthorValue ******/ + /****** md5 signature: 053bae3a6f3b50b0b3cbcc10f1448e71 ******/ %feature("compactdefaultargs") AuthorValue; %feature("autodoc", " Parameters @@ -316,8 +316,8 @@ Returns the value of the name attribute for the file_name entity. ") AuthorValue; opencascade::handle AuthorValue(const Standard_Integer num); - /****************** Authorisation ******************/ - /**** md5 signature: 74cf5a9ad29d5b5b00394896d05f442b ****/ + /****** APIHeaderSection_MakeHeader::Authorisation ******/ + /****** md5 signature: 74cf5a9ad29d5b5b00394896d05f442b ******/ %feature("compactdefaultargs") Authorisation; %feature("autodoc", "Return ------- @@ -329,8 +329,8 @@ Returns the value of the authorization attribute for the file_name entity. ") Authorisation; opencascade::handle Authorisation(); - /****************** Description ******************/ - /**** md5 signature: 9b909686a25b7d6265affec4e3820e98 ****/ + /****** APIHeaderSection_MakeHeader::Description ******/ + /****** md5 signature: 9b909686a25b7d6265affec4e3820e98 ******/ %feature("compactdefaultargs") Description; %feature("autodoc", "Return ------- @@ -342,8 +342,8 @@ No available documentation. ") Description; opencascade::handle Description(); - /****************** DescriptionValue ******************/ - /**** md5 signature: c5b8ce5eb4616a323970d217aa88af81 ****/ + /****** APIHeaderSection_MakeHeader::DescriptionValue ******/ + /****** md5 signature: c5b8ce5eb4616a323970d217aa88af81 ******/ %feature("compactdefaultargs") DescriptionValue; %feature("autodoc", " Parameters @@ -360,8 +360,8 @@ Returns the value of the description attribute for the file_description entity. ") DescriptionValue; opencascade::handle DescriptionValue(const Standard_Integer num); - /****************** FdValue ******************/ - /**** md5 signature: 399c35af474cdbfb7c29fa336d37d16b ****/ + /****** APIHeaderSection_MakeHeader::FdValue ******/ + /****** md5 signature: 399c35af474cdbfb7c29fa336d37d16b ******/ %feature("compactdefaultargs") FdValue; %feature("autodoc", "Return ------- @@ -373,8 +373,8 @@ Returns the file_description entity. returns an empty entity if the file_descrip ") FdValue; opencascade::handle FdValue(); - /****************** FnValue ******************/ - /**** md5 signature: 1fce139b98d1ddb3cc6f35b294bb9be7 ****/ + /****** APIHeaderSection_MakeHeader::FnValue ******/ + /****** md5 signature: 1fce139b98d1ddb3cc6f35b294bb9be7 ******/ %feature("compactdefaultargs") FnValue; %feature("autodoc", "Return ------- @@ -386,8 +386,8 @@ Returns the file_name entity. returns an empty entity if the file_name entity is ") FnValue; opencascade::handle FnValue(); - /****************** FsValue ******************/ - /**** md5 signature: c8a4cff4875f3713ab08524574c21b3d ****/ + /****** APIHeaderSection_MakeHeader::FsValue ******/ + /****** md5 signature: c8a4cff4875f3713ab08524574c21b3d ******/ %feature("compactdefaultargs") FsValue; %feature("autodoc", "Return ------- @@ -399,8 +399,8 @@ Returns the file_schema entity. returns an empty entity if the file_schema entit ") FsValue; opencascade::handle FsValue(); - /****************** HasFd ******************/ - /**** md5 signature: 3e3e6b526b3805f902bd9b9718341d83 ****/ + /****** APIHeaderSection_MakeHeader::HasFd ******/ + /****** md5 signature: 3e3e6b526b3805f902bd9b9718341d83 ******/ %feature("compactdefaultargs") HasFd; %feature("autodoc", "Return ------- @@ -412,8 +412,8 @@ Checks whether there is a file_description entity. returns true if there is one. ") HasFd; Standard_Boolean HasFd(); - /****************** HasFn ******************/ - /**** md5 signature: 22abe5d4b1e7cc9f85b888c01240ca09 ****/ + /****** APIHeaderSection_MakeHeader::HasFn ******/ + /****** md5 signature: 22abe5d4b1e7cc9f85b888c01240ca09 ******/ %feature("compactdefaultargs") HasFn; %feature("autodoc", "Return ------- @@ -425,8 +425,8 @@ Checks whether there is a file_name entity. returns true if there is one. ") HasFn; Standard_Boolean HasFn(); - /****************** HasFs ******************/ - /**** md5 signature: 89a6bd5da2c2843e66a711cfaa6d599b ****/ + /****** APIHeaderSection_MakeHeader::HasFs ******/ + /****** md5 signature: 89a6bd5da2c2843e66a711cfaa6d599b ******/ %feature("compactdefaultargs") HasFs; %feature("autodoc", "Return ------- @@ -438,8 +438,8 @@ Checks whether there is a file_schema entity. returns true if there is one. ") HasFs; Standard_Boolean HasFs(); - /****************** ImplementationLevel ******************/ - /**** md5 signature: b09f681ece8c976e12d39e35c7caa9fe ****/ + /****** APIHeaderSection_MakeHeader::ImplementationLevel ******/ + /****** md5 signature: b09f681ece8c976e12d39e35c7caa9fe ******/ %feature("compactdefaultargs") ImplementationLevel; %feature("autodoc", "Return ------- @@ -451,8 +451,8 @@ Returns the value of the implementation_level attribute for the file_description ") ImplementationLevel; opencascade::handle ImplementationLevel(); - /****************** Init ******************/ - /**** md5 signature: 95810cfe4820451da1da0554cb350c5c ****/ + /****** APIHeaderSection_MakeHeader::Init ******/ + /****** md5 signature: 95810cfe4820451da1da0554cb350c5c ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -469,8 +469,8 @@ Cancels the former definition and gives a filename to be used when a model has n ") Init; void Init(Standard_CString nameval); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** APIHeaderSection_MakeHeader::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -482,8 +482,8 @@ Returns true if all data have been defined (see also hasfn, hasfs, hasfd). ") IsDone; Standard_Boolean IsDone(); - /****************** Name ******************/ - /**** md5 signature: 6bcb97f17b57cae0750fd29eac20499c ****/ + /****** APIHeaderSection_MakeHeader::Name ******/ + /****** md5 signature: 6bcb97f17b57cae0750fd29eac20499c ******/ %feature("compactdefaultargs") Name; %feature("autodoc", "Return ------- @@ -495,8 +495,8 @@ Returns the name attribute for the file_name entity. ") Name; opencascade::handle Name(); - /****************** NbAuthor ******************/ - /**** md5 signature: 6ca174c13a42409600e9909ad554980b ****/ + /****** APIHeaderSection_MakeHeader::NbAuthor ******/ + /****** md5 signature: 6ca174c13a42409600e9909ad554980b ******/ %feature("compactdefaultargs") NbAuthor; %feature("autodoc", "Return ------- @@ -508,8 +508,8 @@ Returns the number of values for the author attribute in the file_name entity. ") NbAuthor; Standard_Integer NbAuthor(); - /****************** NbDescription ******************/ - /**** md5 signature: 38d1fdc13e41b3ac019bdb2d4ba64b1e ****/ + /****** APIHeaderSection_MakeHeader::NbDescription ******/ + /****** md5 signature: 38d1fdc13e41b3ac019bdb2d4ba64b1e ******/ %feature("compactdefaultargs") NbDescription; %feature("autodoc", "Return ------- @@ -521,8 +521,8 @@ Returns the number of values for the file_description entity in the step file he ") NbDescription; Standard_Integer NbDescription(); - /****************** NbOrganization ******************/ - /**** md5 signature: 60ebd0ae36d49c04683d7f95b2a097f9 ****/ + /****** APIHeaderSection_MakeHeader::NbOrganization ******/ + /****** md5 signature: 60ebd0ae36d49c04683d7f95b2a097f9 ******/ %feature("compactdefaultargs") NbOrganization; %feature("autodoc", "Return ------- @@ -534,8 +534,8 @@ Returns the number of values for the organization attribute in the file_name ent ") NbOrganization; Standard_Integer NbOrganization(); - /****************** NbSchemaIdentifiers ******************/ - /**** md5 signature: 260454647efe5048cae47a1a4cd460a4 ****/ + /****** APIHeaderSection_MakeHeader::NbSchemaIdentifiers ******/ + /****** md5 signature: 260454647efe5048cae47a1a4cd460a4 ******/ %feature("compactdefaultargs") NbSchemaIdentifiers; %feature("autodoc", "Return ------- @@ -547,8 +547,8 @@ Returns the number of values for the schema_identifier attribute in the file_sch ") NbSchemaIdentifiers; Standard_Integer NbSchemaIdentifiers(); - /****************** NewModel ******************/ - /**** md5 signature: 35ddc5a32982d5512b348f225233e219 ****/ + /****** APIHeaderSection_MakeHeader::NewModel ******/ + /****** md5 signature: 35ddc5a32982d5512b348f225233e219 ******/ %feature("compactdefaultargs") NewModel; %feature("autodoc", " Parameters @@ -565,8 +565,8 @@ Builds a header, creates a new stepmodel, then applies the header to the stepmod ") NewModel; opencascade::handle NewModel(const opencascade::handle & protocol); - /****************** Organization ******************/ - /**** md5 signature: 454248c33742fc33d8c2d44c0e083d34 ****/ + /****** APIHeaderSection_MakeHeader::Organization ******/ + /****** md5 signature: 454248c33742fc33d8c2d44c0e083d34 ******/ %feature("compactdefaultargs") Organization; %feature("autodoc", "Return ------- @@ -578,8 +578,8 @@ No available documentation. ") Organization; opencascade::handle Organization(); - /****************** OrganizationValue ******************/ - /**** md5 signature: 3caa7e153a3d6decf2c39d267a41eb95 ****/ + /****** APIHeaderSection_MakeHeader::OrganizationValue ******/ + /****** md5 signature: 3caa7e153a3d6decf2c39d267a41eb95 ******/ %feature("compactdefaultargs") OrganizationValue; %feature("autodoc", " Parameters @@ -596,8 +596,8 @@ Returns the value of attribute organization for the file_name entity. ") OrganizationValue; opencascade::handle OrganizationValue(const Standard_Integer num); - /****************** OriginatingSystem ******************/ - /**** md5 signature: 543b855a9c992957f432135cf086f1e1 ****/ + /****** APIHeaderSection_MakeHeader::OriginatingSystem ******/ + /****** md5 signature: 543b855a9c992957f432135cf086f1e1 ******/ %feature("compactdefaultargs") OriginatingSystem; %feature("autodoc", "Return ------- @@ -609,8 +609,8 @@ No available documentation. ") OriginatingSystem; opencascade::handle OriginatingSystem(); - /****************** PreprocessorVersion ******************/ - /**** md5 signature: 2cdc579887f56c912417c5ff0ccd068c ****/ + /****** APIHeaderSection_MakeHeader::PreprocessorVersion ******/ + /****** md5 signature: 2cdc579887f56c912417c5ff0ccd068c ******/ %feature("compactdefaultargs") PreprocessorVersion; %feature("autodoc", "Return ------- @@ -622,8 +622,8 @@ Returns the name of the preprocessor_version for the file_name entity. ") PreprocessorVersion; opencascade::handle PreprocessorVersion(); - /****************** SchemaIdentifiers ******************/ - /**** md5 signature: 404b25dfbdf2c6acd6d96aec78411851 ****/ + /****** APIHeaderSection_MakeHeader::SchemaIdentifiers ******/ + /****** md5 signature: 404b25dfbdf2c6acd6d96aec78411851 ******/ %feature("compactdefaultargs") SchemaIdentifiers; %feature("autodoc", "Return ------- @@ -635,8 +635,8 @@ No available documentation. ") SchemaIdentifiers; opencascade::handle SchemaIdentifiers(); - /****************** SchemaIdentifiersValue ******************/ - /**** md5 signature: ba505a8bd6bc4c707e90011f1b54457f ****/ + /****** APIHeaderSection_MakeHeader::SchemaIdentifiersValue ******/ + /****** md5 signature: ba505a8bd6bc4c707e90011f1b54457f ******/ %feature("compactdefaultargs") SchemaIdentifiersValue; %feature("autodoc", " Parameters @@ -653,8 +653,8 @@ Returns the value of the schema_identifier attribute for the file_schema entity. ") SchemaIdentifiersValue; opencascade::handle SchemaIdentifiersValue(const Standard_Integer num); - /****************** SetAuthor ******************/ - /**** md5 signature: c479de6bbe2aeb24d60e92667b68a0af ****/ + /****** APIHeaderSection_MakeHeader::SetAuthor ******/ + /****** md5 signature: c479de6bbe2aeb24d60e92667b68a0af ******/ %feature("compactdefaultargs") SetAuthor; %feature("autodoc", " Parameters @@ -671,8 +671,8 @@ No available documentation. ") SetAuthor; void SetAuthor(const opencascade::handle & aAuthor); - /****************** SetAuthorValue ******************/ - /**** md5 signature: cc33232c8663abd7f2ca48f6203f9736 ****/ + /****** APIHeaderSection_MakeHeader::SetAuthorValue ******/ + /****** md5 signature: cc33232c8663abd7f2ca48f6203f9736 ******/ %feature("compactdefaultargs") SetAuthorValue; %feature("autodoc", " Parameters @@ -690,8 +690,8 @@ No available documentation. ") SetAuthorValue; void SetAuthorValue(const Standard_Integer num, const opencascade::handle & aAuthor); - /****************** SetAuthorisation ******************/ - /**** md5 signature: dabbd55c5d2fdde44a103b7c5629df5c ****/ + /****** APIHeaderSection_MakeHeader::SetAuthorisation ******/ + /****** md5 signature: dabbd55c5d2fdde44a103b7c5629df5c ******/ %feature("compactdefaultargs") SetAuthorisation; %feature("autodoc", " Parameters @@ -708,8 +708,8 @@ No available documentation. ") SetAuthorisation; void SetAuthorisation(const opencascade::handle & aAuthorisation); - /****************** SetDescription ******************/ - /**** md5 signature: 1e04b25950c14571044a08d553341bd0 ****/ + /****** APIHeaderSection_MakeHeader::SetDescription ******/ + /****** md5 signature: 1e04b25950c14571044a08d553341bd0 ******/ %feature("compactdefaultargs") SetDescription; %feature("autodoc", " Parameters @@ -726,8 +726,8 @@ No available documentation. ") SetDescription; void SetDescription(const opencascade::handle & aDescription); - /****************** SetDescriptionValue ******************/ - /**** md5 signature: a8f2c66c20e21c2385f52a8fd239e40f ****/ + /****** APIHeaderSection_MakeHeader::SetDescriptionValue ******/ + /****** md5 signature: a8f2c66c20e21c2385f52a8fd239e40f ******/ %feature("compactdefaultargs") SetDescriptionValue; %feature("autodoc", " Parameters @@ -745,8 +745,8 @@ No available documentation. ") SetDescriptionValue; void SetDescriptionValue(const Standard_Integer num, const opencascade::handle & aDescription); - /****************** SetImplementationLevel ******************/ - /**** md5 signature: 456c2b949d32712489902f181c0fdd2e ****/ + /****** APIHeaderSection_MakeHeader::SetImplementationLevel ******/ + /****** md5 signature: 456c2b949d32712489902f181c0fdd2e ******/ %feature("compactdefaultargs") SetImplementationLevel; %feature("autodoc", " Parameters @@ -763,8 +763,8 @@ No available documentation. ") SetImplementationLevel; void SetImplementationLevel(const opencascade::handle & aImplementationLevel); - /****************** SetName ******************/ - /**** md5 signature: 1e0b00d9eb163c8a0cdbb986e2ee24f6 ****/ + /****** APIHeaderSection_MakeHeader::SetName ******/ + /****** md5 signature: 1e0b00d9eb163c8a0cdbb986e2ee24f6 ******/ %feature("compactdefaultargs") SetName; %feature("autodoc", " Parameters @@ -781,8 +781,8 @@ No available documentation. ") SetName; void SetName(const opencascade::handle & aName); - /****************** SetOrganization ******************/ - /**** md5 signature: 898ebb6b0632041f91e1f21a8a1ca169 ****/ + /****** APIHeaderSection_MakeHeader::SetOrganization ******/ + /****** md5 signature: 898ebb6b0632041f91e1f21a8a1ca169 ******/ %feature("compactdefaultargs") SetOrganization; %feature("autodoc", " Parameters @@ -799,8 +799,8 @@ No available documentation. ") SetOrganization; void SetOrganization(const opencascade::handle & aOrganization); - /****************** SetOrganizationValue ******************/ - /**** md5 signature: fe8a80aaa470fd8e2239e6f20b14ee57 ****/ + /****** APIHeaderSection_MakeHeader::SetOrganizationValue ******/ + /****** md5 signature: fe8a80aaa470fd8e2239e6f20b14ee57 ******/ %feature("compactdefaultargs") SetOrganizationValue; %feature("autodoc", " Parameters @@ -818,8 +818,8 @@ No available documentation. ") SetOrganizationValue; void SetOrganizationValue(const Standard_Integer num, const opencascade::handle & aOrganization); - /****************** SetOriginatingSystem ******************/ - /**** md5 signature: df50b03f270ab4067d00a9b263849945 ****/ + /****** APIHeaderSection_MakeHeader::SetOriginatingSystem ******/ + /****** md5 signature: df50b03f270ab4067d00a9b263849945 ******/ %feature("compactdefaultargs") SetOriginatingSystem; %feature("autodoc", " Parameters @@ -836,8 +836,8 @@ No available documentation. ") SetOriginatingSystem; void SetOriginatingSystem(const opencascade::handle & aOriginatingSystem); - /****************** SetPreprocessorVersion ******************/ - /**** md5 signature: cf1be8e1fadf8f579cf193da0139a1b2 ****/ + /****** APIHeaderSection_MakeHeader::SetPreprocessorVersion ******/ + /****** md5 signature: cf1be8e1fadf8f579cf193da0139a1b2 ******/ %feature("compactdefaultargs") SetPreprocessorVersion; %feature("autodoc", " Parameters @@ -854,8 +854,8 @@ No available documentation. ") SetPreprocessorVersion; void SetPreprocessorVersion(const opencascade::handle & aPreprocessorVersion); - /****************** SetSchemaIdentifiers ******************/ - /**** md5 signature: 37a42703d2ec981a51e918549381152b ****/ + /****** APIHeaderSection_MakeHeader::SetSchemaIdentifiers ******/ + /****** md5 signature: 37a42703d2ec981a51e918549381152b ******/ %feature("compactdefaultargs") SetSchemaIdentifiers; %feature("autodoc", " Parameters @@ -872,8 +872,8 @@ No available documentation. ") SetSchemaIdentifiers; void SetSchemaIdentifiers(const opencascade::handle & aSchemaIdentifiers); - /****************** SetSchemaIdentifiersValue ******************/ - /**** md5 signature: 0af7d48de5cd14a190015f37164e5d73 ****/ + /****** APIHeaderSection_MakeHeader::SetSchemaIdentifiersValue ******/ + /****** md5 signature: 0af7d48de5cd14a190015f37164e5d73 ******/ %feature("compactdefaultargs") SetSchemaIdentifiersValue; %feature("autodoc", " Parameters @@ -891,8 +891,8 @@ No available documentation. ") SetSchemaIdentifiersValue; void SetSchemaIdentifiersValue(const Standard_Integer num, const opencascade::handle & aSchemaIdentifier); - /****************** SetTimeStamp ******************/ - /**** md5 signature: 38e2ba6d611ac3c71ddded5966b2c9a2 ****/ + /****** APIHeaderSection_MakeHeader::SetTimeStamp ******/ + /****** md5 signature: 38e2ba6d611ac3c71ddded5966b2c9a2 ******/ %feature("compactdefaultargs") SetTimeStamp; %feature("autodoc", " Parameters @@ -909,8 +909,8 @@ No available documentation. ") SetTimeStamp; void SetTimeStamp(const opencascade::handle & aTimeStamp); - /****************** TimeStamp ******************/ - /**** md5 signature: b66adf354c77d407fbbc52d9a834d10f ****/ + /****** APIHeaderSection_MakeHeader::TimeStamp ******/ + /****** md5 signature: b66adf354c77d407fbbc52d9a834d10f ******/ %feature("compactdefaultargs") TimeStamp; %feature("autodoc", "Return ------- diff --git a/src/SWIG_files/wrapper/Adaptor2d.i b/src/SWIG_files/wrapper/Adaptor2d.i index 4d388f909..795032ef4 100644 --- a/src/SWIG_files/wrapper/Adaptor2d.i +++ b/src/SWIG_files/wrapper/Adaptor2d.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define ADAPTOR2DDOCSTRING "Adaptor2d module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_adaptor2d.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_adaptor2d.html" %enddef %module (package="OCC.Core", docstring=ADAPTOR2DDOCSTRING) Adaptor2d @@ -90,8 +90,8 @@ from OCC.Core.Exception import * **************************/ class Adaptor2d_Curve2d : public Standard_Transient { public: - /****************** BSpline ******************/ - /**** md5 signature: b2a7a571ebf1b38738b883a277ef794f ****/ + /****** Adaptor2d_Curve2d::BSpline ******/ + /****** md5 signature: b2a7a571ebf1b38738b883a277ef794f ******/ %feature("compactdefaultargs") BSpline; %feature("autodoc", "Return ------- @@ -103,8 +103,8 @@ No available documentation. ") BSpline; virtual opencascade::handle BSpline(); - /****************** Bezier ******************/ - /**** md5 signature: f8f04b3add4103e9f0350b8ed2285dc4 ****/ + /****** Adaptor2d_Curve2d::Bezier ******/ + /****** md5 signature: f8f04b3add4103e9f0350b8ed2285dc4 ******/ %feature("compactdefaultargs") Bezier; %feature("autodoc", "Return ------- @@ -116,8 +116,8 @@ No available documentation. ") Bezier; virtual opencascade::handle Bezier(); - /****************** Circle ******************/ - /**** md5 signature: 624ff1e0c75139ee893a5066be1b5a0c ****/ + /****** Adaptor2d_Curve2d::Circle ******/ + /****** md5 signature: 624ff1e0c75139ee893a5066be1b5a0c ******/ %feature("compactdefaultargs") Circle; %feature("autodoc", "Return ------- @@ -129,8 +129,8 @@ No available documentation. ") Circle; virtual gp_Circ2d Circle(); - /****************** Continuity ******************/ - /**** md5 signature: 8564d2514f3a14a163da9fa2b30a9284 ****/ + /****** Adaptor2d_Curve2d::Continuity ******/ + /****** md5 signature: 8564d2514f3a14a163da9fa2b30a9284 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", "Return ------- @@ -142,8 +142,8 @@ No available documentation. ") Continuity; virtual GeomAbs_Shape Continuity(); - /****************** D0 ******************/ - /**** md5 signature: 032807b33fd2114f83050446452a9d16 ****/ + /****** Adaptor2d_Curve2d::D0 ******/ + /****** md5 signature: 032807b33fd2114f83050446452a9d16 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -161,8 +161,8 @@ Computes the point of parameter u on the curve. ") D0; virtual void D0(const Standard_Real U, gp_Pnt2d & P); - /****************** D1 ******************/ - /**** md5 signature: 62f67df0ec10ce52e6bbc3e7f976f93f ****/ + /****** Adaptor2d_Curve2d::D1 ******/ + /****** md5 signature: 62f67df0ec10ce52e6bbc3e7f976f93f ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -181,8 +181,8 @@ Computes the point of parameter u on the curve with its first derivative. raised ") D1; virtual void D1(const Standard_Real U, gp_Pnt2d & P, gp_Vec2d & V); - /****************** D2 ******************/ - /**** md5 signature: 7ba7fbaac090150f487dc89b64867507 ****/ + /****** Adaptor2d_Curve2d::D2 ******/ + /****** md5 signature: 7ba7fbaac090150f487dc89b64867507 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -202,8 +202,8 @@ Returns the point p of parameter u, the first and second derivatives v1 and v2. ") D2; virtual void D2(const Standard_Real U, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2); - /****************** D3 ******************/ - /**** md5 signature: ad3456ec57f07904ba35638d0146d01f ****/ + /****** Adaptor2d_Curve2d::D3 ******/ + /****** md5 signature: ad3456ec57f07904ba35638d0146d01f ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -224,8 +224,8 @@ Returns the point p of parameter u, the first, the second and the third derivati ") D3; virtual void D3(const Standard_Real U, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2, gp_Vec2d & V3); - /****************** DN ******************/ - /**** md5 signature: f633d1449599e5f52db1c34ec4b27035 ****/ + /****** Adaptor2d_Curve2d::DN ******/ + /****** md5 signature: f633d1449599e5f52db1c34ec4b27035 ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -243,8 +243,8 @@ The returned vector gives the value of the derivative for the order of derivatio ") DN; virtual gp_Vec2d DN(const Standard_Real U, const Standard_Integer N); - /****************** Degree ******************/ - /**** md5 signature: d442d1b77ae7b1ce10d9531914b14be7 ****/ + /****** Adaptor2d_Curve2d::Degree ******/ + /****** md5 signature: d442d1b77ae7b1ce10d9531914b14be7 ******/ %feature("compactdefaultargs") Degree; %feature("autodoc", "Return ------- @@ -256,8 +256,8 @@ No available documentation. ") Degree; virtual Standard_Integer Degree(); - /****************** Ellipse ******************/ - /**** md5 signature: ad57dba8c1c2fed98a4ee4d518e5af58 ****/ + /****** Adaptor2d_Curve2d::Ellipse ******/ + /****** md5 signature: ad57dba8c1c2fed98a4ee4d518e5af58 ******/ %feature("compactdefaultargs") Ellipse; %feature("autodoc", "Return ------- @@ -269,8 +269,8 @@ No available documentation. ") Ellipse; virtual gp_Elips2d Ellipse(); - /****************** FirstParameter ******************/ - /**** md5 signature: adaac52a0f2d3263c19caadcbea394a2 ****/ + /****** Adaptor2d_Curve2d::FirstParameter ******/ + /****** md5 signature: adaac52a0f2d3263c19caadcbea394a2 ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", "Return ------- @@ -282,8 +282,8 @@ No available documentation. ") FirstParameter; virtual Standard_Real FirstParameter(); - /****************** GetType ******************/ - /**** md5 signature: 657f9e3cbd23a069ca4adcba08a9b196 ****/ + /****** Adaptor2d_Curve2d::GetType ******/ + /****** md5 signature: 657f9e3cbd23a069ca4adcba08a9b196 ******/ %feature("compactdefaultargs") GetType; %feature("autodoc", "Return ------- @@ -295,8 +295,8 @@ Returns the type of the curve in the current interval: line, circle, ellipse, hy ") GetType; virtual GeomAbs_CurveType GetType(); - /****************** Hyperbola ******************/ - /**** md5 signature: ec5c753a319a89563396073e20a5375e ****/ + /****** Adaptor2d_Curve2d::Hyperbola ******/ + /****** md5 signature: ec5c753a319a89563396073e20a5375e ******/ %feature("compactdefaultargs") Hyperbola; %feature("autodoc", "Return ------- @@ -308,8 +308,8 @@ No available documentation. ") Hyperbola; virtual gp_Hypr2d Hyperbola(); - /****************** Intervals ******************/ - /**** md5 signature: 1b47d9fadea42b0a52e1ad5844faff05 ****/ + /****** Adaptor2d_Curve2d::Intervals ******/ + /****** md5 signature: 1b47d9fadea42b0a52e1ad5844faff05 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -327,8 +327,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; virtual void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsClosed ******************/ - /**** md5 signature: d57ef0715a5abf96ea6273eee63d5417 ****/ + /****** Adaptor2d_Curve2d::IsClosed ******/ + /****** md5 signature: d57ef0715a5abf96ea6273eee63d5417 ******/ %feature("compactdefaultargs") IsClosed; %feature("autodoc", "Return ------- @@ -340,8 +340,8 @@ No available documentation. ") IsClosed; virtual Standard_Boolean IsClosed(); - /****************** IsPeriodic ******************/ - /**** md5 signature: aac83d336e26e94b4cd1076ac72ce2c9 ****/ + /****** Adaptor2d_Curve2d::IsPeriodic ******/ + /****** md5 signature: aac83d336e26e94b4cd1076ac72ce2c9 ******/ %feature("compactdefaultargs") IsPeriodic; %feature("autodoc", "Return ------- @@ -353,8 +353,8 @@ No available documentation. ") IsPeriodic; virtual Standard_Boolean IsPeriodic(); - /****************** IsRational ******************/ - /**** md5 signature: 5389f1211fc99cfdcbd6575b8eec7b5c ****/ + /****** Adaptor2d_Curve2d::IsRational ******/ + /****** md5 signature: 5389f1211fc99cfdcbd6575b8eec7b5c ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -366,8 +366,8 @@ No available documentation. ") IsRational; virtual Standard_Boolean IsRational(); - /****************** LastParameter ******************/ - /**** md5 signature: 38a37eecbdff8d3a1b5ffdd6b12bf4d9 ****/ + /****** Adaptor2d_Curve2d::LastParameter ******/ + /****** md5 signature: 38a37eecbdff8d3a1b5ffdd6b12bf4d9 ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", "Return ------- @@ -379,8 +379,8 @@ No available documentation. ") LastParameter; virtual Standard_Real LastParameter(); - /****************** Line ******************/ - /**** md5 signature: c030f66e64195409bcfc92be438de5d5 ****/ + /****** Adaptor2d_Curve2d::Line ******/ + /****** md5 signature: c030f66e64195409bcfc92be438de5d5 ******/ %feature("compactdefaultargs") Line; %feature("autodoc", "Return ------- @@ -392,8 +392,8 @@ No available documentation. ") Line; virtual gp_Lin2d Line(); - /****************** NbIntervals ******************/ - /**** md5 signature: 0b37dc42182e542f53017d0e52c8cd03 ****/ + /****** Adaptor2d_Curve2d::NbIntervals ******/ + /****** md5 signature: 0b37dc42182e542f53017d0e52c8cd03 ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -410,8 +410,8 @@ If necessary, breaks the curve in intervals of continuity . and returns the n ") NbIntervals; virtual Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** NbKnots ******************/ - /**** md5 signature: 22b54658d4850824758b23cad1529c2f ****/ + /****** Adaptor2d_Curve2d::NbKnots ******/ + /****** md5 signature: 22b54658d4850824758b23cad1529c2f ******/ %feature("compactdefaultargs") NbKnots; %feature("autodoc", "Return ------- @@ -423,8 +423,8 @@ No available documentation. ") NbKnots; virtual Standard_Integer NbKnots(); - /****************** NbPoles ******************/ - /**** md5 signature: 1b49ced11f88c6092f4e3b2473fe0460 ****/ + /****** Adaptor2d_Curve2d::NbPoles ******/ + /****** md5 signature: 1b49ced11f88c6092f4e3b2473fe0460 ******/ %feature("compactdefaultargs") NbPoles; %feature("autodoc", "Return ------- @@ -436,8 +436,8 @@ No available documentation. ") NbPoles; virtual Standard_Integer NbPoles(); - /****************** NbSamples ******************/ - /**** md5 signature: fa9dfaedc08a9e4459ffebec8ddb6476 ****/ + /****** Adaptor2d_Curve2d::NbSamples ******/ + /****** md5 signature: fa9dfaedc08a9e4459ffebec8ddb6476 ******/ %feature("compactdefaultargs") NbSamples; %feature("autodoc", "Return ------- @@ -449,8 +449,8 @@ No available documentation. ") NbSamples; virtual Standard_Integer NbSamples(); - /****************** Parabola ******************/ - /**** md5 signature: 2bbe5ac6a61b052fd2bae484e8f0313c ****/ + /****** Adaptor2d_Curve2d::Parabola ******/ + /****** md5 signature: 2bbe5ac6a61b052fd2bae484e8f0313c ******/ %feature("compactdefaultargs") Parabola; %feature("autodoc", "Return ------- @@ -462,8 +462,8 @@ No available documentation. ") Parabola; virtual gp_Parab2d Parabola(); - /****************** Period ******************/ - /**** md5 signature: e4913c399f3a0a7037e498c5a9da8e1f ****/ + /****** Adaptor2d_Curve2d::Period ******/ + /****** md5 signature: e4913c399f3a0a7037e498c5a9da8e1f ******/ %feature("compactdefaultargs") Period; %feature("autodoc", "Return ------- @@ -475,8 +475,8 @@ No available documentation. ") Period; virtual Standard_Real Period(); - /****************** Resolution ******************/ - /**** md5 signature: 66fa92ada4ec8706453c0525abd4ecd6 ****/ + /****** Adaptor2d_Curve2d::Resolution ******/ + /****** md5 signature: 66fa92ada4ec8706453c0525abd4ecd6 ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -493,8 +493,8 @@ Returns the parametric resolution corresponding to the real space resolution ShallowCopy(); - /****************** Trim ******************/ - /**** md5 signature: aa66325f9b552366d3dd9f832a9cb16d ****/ + /****** Adaptor2d_Curve2d::Trim ******/ + /****** md5 signature: aa66325f9b552366d3dd9f832a9cb16d ******/ %feature("compactdefaultargs") Trim; %feature("autodoc", " Parameters @@ -526,8 +526,8 @@ Returns a curve equivalent of between parameters and . Trim(const Standard_Real First, const Standard_Real Last, const Standard_Real Tol); - /****************** Value ******************/ - /**** md5 signature: af409c62c74a5e93d7c7e76240b9de9b ****/ + /****** Adaptor2d_Curve2d::Value ******/ + /****** md5 signature: af409c62c74a5e93d7c7e76240b9de9b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -560,8 +560,8 @@ Computes the point of parameter u on the curve. *************************/ class Adaptor2d_Line2d : public Adaptor2d_Curve2d { public: - /****************** Adaptor2d_Line2d ******************/ - /**** md5 signature: a217d4c2f1a39c468576f503c72e4282 ****/ + /****** Adaptor2d_Line2d::Adaptor2d_Line2d ******/ + /****** md5 signature: a217d4c2f1a39c468576f503c72e4282 ******/ %feature("compactdefaultargs") Adaptor2d_Line2d; %feature("autodoc", "Return ------- @@ -573,8 +573,8 @@ No available documentation. ") Adaptor2d_Line2d; Adaptor2d_Line2d(); - /****************** Adaptor2d_Line2d ******************/ - /**** md5 signature: b3b555011ccd08a69e1a951ee36e4ce2 ****/ + /****** Adaptor2d_Line2d::Adaptor2d_Line2d ******/ + /****** md5 signature: b3b555011ccd08a69e1a951ee36e4ce2 ******/ %feature("compactdefaultargs") Adaptor2d_Line2d; %feature("autodoc", " Parameters @@ -594,8 +594,8 @@ No available documentation. ") Adaptor2d_Line2d; Adaptor2d_Line2d(const gp_Pnt2d & P, const gp_Dir2d & D, const Standard_Real UFirst, const Standard_Real ULast); - /****************** BSpline ******************/ - /**** md5 signature: 9439c331c4f14f299277aa5a4ff16cec ****/ + /****** Adaptor2d_Line2d::BSpline ******/ + /****** md5 signature: 9439c331c4f14f299277aa5a4ff16cec ******/ %feature("compactdefaultargs") BSpline; %feature("autodoc", "Return ------- @@ -607,8 +607,8 @@ No available documentation. ") BSpline; opencascade::handle BSpline(); - /****************** Bezier ******************/ - /**** md5 signature: cabcbe9e94c679dcfc142972b20ab60b ****/ + /****** Adaptor2d_Line2d::Bezier ******/ + /****** md5 signature: cabcbe9e94c679dcfc142972b20ab60b ******/ %feature("compactdefaultargs") Bezier; %feature("autodoc", "Return ------- @@ -620,8 +620,8 @@ No available documentation. ") Bezier; opencascade::handle Bezier(); - /****************** Circle ******************/ - /**** md5 signature: 031880777795958cc554fa5739cb3a95 ****/ + /****** Adaptor2d_Line2d::Circle ******/ + /****** md5 signature: 031880777795958cc554fa5739cb3a95 ******/ %feature("compactdefaultargs") Circle; %feature("autodoc", "Return ------- @@ -633,8 +633,8 @@ No available documentation. ") Circle; gp_Circ2d Circle(); - /****************** Continuity ******************/ - /**** md5 signature: 9381b370dfdd50af7f1b79ce202f0c6f ****/ + /****** Adaptor2d_Line2d::Continuity ******/ + /****** md5 signature: 9381b370dfdd50af7f1b79ce202f0c6f ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", "Return ------- @@ -646,8 +646,8 @@ No available documentation. ") Continuity; GeomAbs_Shape Continuity(); - /****************** D0 ******************/ - /**** md5 signature: 93720dcd9f9e8e8980602530da337c79 ****/ + /****** Adaptor2d_Line2d::D0 ******/ + /****** md5 signature: 93720dcd9f9e8e8980602530da337c79 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -665,8 +665,8 @@ No available documentation. ") D0; void D0(const Standard_Real X, gp_Pnt2d & P); - /****************** D1 ******************/ - /**** md5 signature: 423f97f4cd493b4f6cf5b9cd8bc9c101 ****/ + /****** Adaptor2d_Line2d::D1 ******/ + /****** md5 signature: 423f97f4cd493b4f6cf5b9cd8bc9c101 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -685,8 +685,8 @@ No available documentation. ") D1; void D1(const Standard_Real X, gp_Pnt2d & P, gp_Vec2d & V); - /****************** D2 ******************/ - /**** md5 signature: fe409137f7ff4361ef92efcdab935654 ****/ + /****** Adaptor2d_Line2d::D2 ******/ + /****** md5 signature: fe409137f7ff4361ef92efcdab935654 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -706,8 +706,8 @@ No available documentation. ") D2; void D2(const Standard_Real X, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2); - /****************** D3 ******************/ - /**** md5 signature: 802e53b731cc18884f89925d02e1d5fb ****/ + /****** Adaptor2d_Line2d::D3 ******/ + /****** md5 signature: 802e53b731cc18884f89925d02e1d5fb ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -728,8 +728,8 @@ No available documentation. ") D3; void D3(const Standard_Real X, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2, gp_Vec2d & V3); - /****************** DN ******************/ - /**** md5 signature: a05d2f76912764cef5ac7bb40ebda3d7 ****/ + /****** Adaptor2d_Line2d::DN ******/ + /****** md5 signature: a05d2f76912764cef5ac7bb40ebda3d7 ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -747,8 +747,8 @@ No available documentation. ") DN; gp_Vec2d DN(const Standard_Real U, const Standard_Integer N); - /****************** Degree ******************/ - /**** md5 signature: 5ce473e72cc7bb935a667f4c839dab09 ****/ + /****** Adaptor2d_Line2d::Degree ******/ + /****** md5 signature: 5ce473e72cc7bb935a667f4c839dab09 ******/ %feature("compactdefaultargs") Degree; %feature("autodoc", "Return ------- @@ -760,8 +760,8 @@ No available documentation. ") Degree; Standard_Integer Degree(); - /****************** Ellipse ******************/ - /**** md5 signature: 57e9088d9546fb79032102b676477b62 ****/ + /****** Adaptor2d_Line2d::Ellipse ******/ + /****** md5 signature: 57e9088d9546fb79032102b676477b62 ******/ %feature("compactdefaultargs") Ellipse; %feature("autodoc", "Return ------- @@ -773,8 +773,8 @@ No available documentation. ") Ellipse; gp_Elips2d Ellipse(); - /****************** FirstParameter ******************/ - /**** md5 signature: eb9ebe94572bd67588fe8811eac261fb ****/ + /****** Adaptor2d_Line2d::FirstParameter ******/ + /****** md5 signature: eb9ebe94572bd67588fe8811eac261fb ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", "Return ------- @@ -786,8 +786,8 @@ No available documentation. ") FirstParameter; Standard_Real FirstParameter(); - /****************** GetType ******************/ - /**** md5 signature: 0ad61dcbb5497908c1b536e766f0fcb9 ****/ + /****** Adaptor2d_Line2d::GetType ******/ + /****** md5 signature: 0ad61dcbb5497908c1b536e766f0fcb9 ******/ %feature("compactdefaultargs") GetType; %feature("autodoc", "Return ------- @@ -799,8 +799,8 @@ No available documentation. ") GetType; GeomAbs_CurveType GetType(); - /****************** Hyperbola ******************/ - /**** md5 signature: 951e1971b5974627f011740e5c4c9ecb ****/ + /****** Adaptor2d_Line2d::Hyperbola ******/ + /****** md5 signature: 951e1971b5974627f011740e5c4c9ecb ******/ %feature("compactdefaultargs") Hyperbola; %feature("autodoc", "Return ------- @@ -812,8 +812,8 @@ No available documentation. ") Hyperbola; gp_Hypr2d Hyperbola(); - /****************** Intervals ******************/ - /**** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ****/ + /****** Adaptor2d_Line2d::Intervals ******/ + /****** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -831,8 +831,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsClosed ******************/ - /**** md5 signature: 00978070ec4cb5f00d1d002a8d5d3763 ****/ + /****** Adaptor2d_Line2d::IsClosed ******/ + /****** md5 signature: 00978070ec4cb5f00d1d002a8d5d3763 ******/ %feature("compactdefaultargs") IsClosed; %feature("autodoc", "Return ------- @@ -844,8 +844,8 @@ No available documentation. ") IsClosed; Standard_Boolean IsClosed(); - /****************** IsPeriodic ******************/ - /**** md5 signature: 15e3ccfd3ad4ae42959489f7f64aa8ca ****/ + /****** Adaptor2d_Line2d::IsPeriodic ******/ + /****** md5 signature: 15e3ccfd3ad4ae42959489f7f64aa8ca ******/ %feature("compactdefaultargs") IsPeriodic; %feature("autodoc", "Return ------- @@ -857,8 +857,8 @@ No available documentation. ") IsPeriodic; Standard_Boolean IsPeriodic(); - /****************** IsRational ******************/ - /**** md5 signature: 82ca56fad113156125f40128b25c0d8e ****/ + /****** Adaptor2d_Line2d::IsRational ******/ + /****** md5 signature: 82ca56fad113156125f40128b25c0d8e ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -870,8 +870,8 @@ No available documentation. ") IsRational; Standard_Boolean IsRational(); - /****************** LastParameter ******************/ - /**** md5 signature: cb4925a2d4a451ceec8f6ad486530f9c ****/ + /****** Adaptor2d_Line2d::LastParameter ******/ + /****** md5 signature: cb4925a2d4a451ceec8f6ad486530f9c ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", "Return ------- @@ -883,8 +883,8 @@ No available documentation. ") LastParameter; Standard_Real LastParameter(); - /****************** Line ******************/ - /**** md5 signature: d41344e9c3febf8a7347a9e78e837373 ****/ + /****** Adaptor2d_Line2d::Line ******/ + /****** md5 signature: d41344e9c3febf8a7347a9e78e837373 ******/ %feature("compactdefaultargs") Line; %feature("autodoc", "Return ------- @@ -896,8 +896,8 @@ No available documentation. ") Line; gp_Lin2d Line(); - /****************** Load ******************/ - /**** md5 signature: 7620a23c09d16846209666736fe05b85 ****/ + /****** Adaptor2d_Line2d::Load ******/ + /****** md5 signature: 7620a23c09d16846209666736fe05b85 ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -914,8 +914,8 @@ No available documentation. ") Load; void Load(const gp_Lin2d & L); - /****************** Load ******************/ - /**** md5 signature: 3737a9da343db0c1813b6fdf3bdda8e1 ****/ + /****** Adaptor2d_Line2d::Load ******/ + /****** md5 signature: 3737a9da343db0c1813b6fdf3bdda8e1 ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -934,8 +934,8 @@ No available documentation. ") Load; void Load(const gp_Lin2d & L, const Standard_Real UFirst, const Standard_Real ULast); - /****************** NbIntervals ******************/ - /**** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ****/ + /****** Adaptor2d_Line2d::NbIntervals ******/ + /****** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -952,8 +952,8 @@ If necessary, breaks the curve in intervals of continuity . and returns the n ") NbIntervals; Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** NbKnots ******************/ - /**** md5 signature: 841663cbf96bec3b939f307c52df6c7c ****/ + /****** Adaptor2d_Line2d::NbKnots ******/ + /****** md5 signature: 841663cbf96bec3b939f307c52df6c7c ******/ %feature("compactdefaultargs") NbKnots; %feature("autodoc", "Return ------- @@ -965,8 +965,8 @@ No available documentation. ") NbKnots; Standard_Integer NbKnots(); - /****************** NbPoles ******************/ - /**** md5 signature: 52e5fadf897540545847ef59cc0ba942 ****/ + /****** Adaptor2d_Line2d::NbPoles ******/ + /****** md5 signature: 52e5fadf897540545847ef59cc0ba942 ******/ %feature("compactdefaultargs") NbPoles; %feature("autodoc", "Return ------- @@ -978,8 +978,8 @@ No available documentation. ") NbPoles; Standard_Integer NbPoles(); - /****************** Parabola ******************/ - /**** md5 signature: 38729705f952495154cecf7cf9964648 ****/ + /****** Adaptor2d_Line2d::Parabola ******/ + /****** md5 signature: 38729705f952495154cecf7cf9964648 ******/ %feature("compactdefaultargs") Parabola; %feature("autodoc", "Return ------- @@ -991,8 +991,8 @@ No available documentation. ") Parabola; gp_Parab2d Parabola(); - /****************** Period ******************/ - /**** md5 signature: 88909a321398632744c0d6841580c626 ****/ + /****** Adaptor2d_Line2d::Period ******/ + /****** md5 signature: 88909a321398632744c0d6841580c626 ******/ %feature("compactdefaultargs") Period; %feature("autodoc", "Return ------- @@ -1004,8 +1004,8 @@ No available documentation. ") Period; Standard_Real Period(); - /****************** Resolution ******************/ - /**** md5 signature: cc4a4d9111fadd20ad48e62bc4df1579 ****/ + /****** Adaptor2d_Line2d::Resolution ******/ + /****** md5 signature: cc4a4d9111fadd20ad48e62bc4df1579 ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -1022,8 +1022,8 @@ No available documentation. ") Resolution; Standard_Real Resolution(const Standard_Real R3d); - /****************** ShallowCopy ******************/ - /**** md5 signature: 7526aff3b770b4e3b1eb3cc08adfb4b0 ****/ + /****** Adaptor2d_Line2d::ShallowCopy ******/ + /****** md5 signature: 7526aff3b770b4e3b1eb3cc08adfb4b0 ******/ %feature("compactdefaultargs") ShallowCopy; %feature("autodoc", "Return ------- @@ -1035,8 +1035,8 @@ Shallow copy of adaptor. ") ShallowCopy; virtual opencascade::handle ShallowCopy(); - /****************** Trim ******************/ - /**** md5 signature: b5ce1c7f3b02aa6680da8e9ad704acc6 ****/ + /****** Adaptor2d_Line2d::Trim ******/ + /****** md5 signature: b5ce1c7f3b02aa6680da8e9ad704acc6 ******/ %feature("compactdefaultargs") Trim; %feature("autodoc", " Parameters @@ -1055,8 +1055,8 @@ Returns a curve equivalent of between parameters and . Trim(const Standard_Real First, const Standard_Real Last, const Standard_Real Tol); - /****************** Value ******************/ - /**** md5 signature: 98884cb0e60eec266d8c9645d817f1b5 ****/ + /****** Adaptor2d_Line2d::Value ******/ + /****** md5 signature: 98884cb0e60eec266d8c9645d817f1b5 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -1089,8 +1089,8 @@ No available documentation. ******************************/ class Adaptor2d_OffsetCurve : public Adaptor2d_Curve2d { public: - /****************** Adaptor2d_OffsetCurve ******************/ - /**** md5 signature: 451c0a1cc0af1792697a4f563e2766d2 ****/ + /****** Adaptor2d_OffsetCurve::Adaptor2d_OffsetCurve ******/ + /****** md5 signature: 451c0a1cc0af1792697a4f563e2766d2 ******/ %feature("compactdefaultargs") Adaptor2d_OffsetCurve; %feature("autodoc", "Return ------- @@ -1102,8 +1102,8 @@ The offset is set to 0. ") Adaptor2d_OffsetCurve; Adaptor2d_OffsetCurve(); - /****************** Adaptor2d_OffsetCurve ******************/ - /**** md5 signature: 5654e6bb9cb8b9bac1b0469cd906dc2c ****/ + /****** Adaptor2d_OffsetCurve::Adaptor2d_OffsetCurve ******/ + /****** md5 signature: 5654e6bb9cb8b9bac1b0469cd906dc2c ******/ %feature("compactdefaultargs") Adaptor2d_OffsetCurve; %feature("autodoc", " Parameters @@ -1120,8 +1120,8 @@ The curve is loaded. the offset is set to 0. ") Adaptor2d_OffsetCurve; Adaptor2d_OffsetCurve(const opencascade::handle & C); - /****************** Adaptor2d_OffsetCurve ******************/ - /**** md5 signature: 2b9b1c473de25b65f79a33cf02d9d422 ****/ + /****** Adaptor2d_OffsetCurve::Adaptor2d_OffsetCurve ******/ + /****** md5 signature: 2b9b1c473de25b65f79a33cf02d9d422 ******/ %feature("compactdefaultargs") Adaptor2d_OffsetCurve; %feature("autodoc", " Parameters @@ -1139,8 +1139,8 @@ Creates an offsetcurve curve. the offset is set to offset. ") Adaptor2d_OffsetCurve; Adaptor2d_OffsetCurve(const opencascade::handle & C, const Standard_Real Offset); - /****************** Adaptor2d_OffsetCurve ******************/ - /**** md5 signature: bcca54868ea581c1cf7db2b8ab1074bc ****/ + /****** Adaptor2d_OffsetCurve::Adaptor2d_OffsetCurve ******/ + /****** md5 signature: bcca54868ea581c1cf7db2b8ab1074bc ******/ %feature("compactdefaultargs") Adaptor2d_OffsetCurve; %feature("autodoc", " Parameters @@ -1160,8 +1160,8 @@ Create an offset curve. wfirst,wlast define the bounds of the offset curve. ") Adaptor2d_OffsetCurve; Adaptor2d_OffsetCurve(const opencascade::handle & C, const Standard_Real Offset, const Standard_Real WFirst, const Standard_Real WLast); - /****************** BSpline ******************/ - /**** md5 signature: 9439c331c4f14f299277aa5a4ff16cec ****/ + /****** Adaptor2d_OffsetCurve::BSpline ******/ + /****** md5 signature: 9439c331c4f14f299277aa5a4ff16cec ******/ %feature("compactdefaultargs") BSpline; %feature("autodoc", "Return ------- @@ -1173,8 +1173,8 @@ No available documentation. ") BSpline; opencascade::handle BSpline(); - /****************** Bezier ******************/ - /**** md5 signature: cabcbe9e94c679dcfc142972b20ab60b ****/ + /****** Adaptor2d_OffsetCurve::Bezier ******/ + /****** md5 signature: cabcbe9e94c679dcfc142972b20ab60b ******/ %feature("compactdefaultargs") Bezier; %feature("autodoc", "Return ------- @@ -1186,8 +1186,8 @@ No available documentation. ") Bezier; opencascade::handle Bezier(); - /****************** Circle ******************/ - /**** md5 signature: 031880777795958cc554fa5739cb3a95 ****/ + /****** Adaptor2d_OffsetCurve::Circle ******/ + /****** md5 signature: 031880777795958cc554fa5739cb3a95 ******/ %feature("compactdefaultargs") Circle; %feature("autodoc", "Return ------- @@ -1199,8 +1199,8 @@ No available documentation. ") Circle; gp_Circ2d Circle(); - /****************** Continuity ******************/ - /**** md5 signature: 9381b370dfdd50af7f1b79ce202f0c6f ****/ + /****** Adaptor2d_OffsetCurve::Continuity ******/ + /****** md5 signature: 9381b370dfdd50af7f1b79ce202f0c6f ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", "Return ------- @@ -1212,8 +1212,8 @@ No available documentation. ") Continuity; GeomAbs_Shape Continuity(); - /****************** Curve ******************/ - /**** md5 signature: 49c261ed663fbe8204b6afa365e067a9 ****/ + /****** Adaptor2d_OffsetCurve::Curve ******/ + /****** md5 signature: 49c261ed663fbe8204b6afa365e067a9 ******/ %feature("compactdefaultargs") Curve; %feature("autodoc", "Return ------- @@ -1225,8 +1225,8 @@ No available documentation. ") Curve; const opencascade::handle & Curve(); - /****************** D0 ******************/ - /**** md5 signature: 01a5234aae6db090351bac35b3718fd9 ****/ + /****** Adaptor2d_OffsetCurve::D0 ******/ + /****** md5 signature: 01a5234aae6db090351bac35b3718fd9 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -1244,8 +1244,8 @@ Computes the point of parameter u on the curve. ") D0; void D0(const Standard_Real U, gp_Pnt2d & P); - /****************** D1 ******************/ - /**** md5 signature: 79a293d0b91ab6d1359881075119fb56 ****/ + /****** Adaptor2d_OffsetCurve::D1 ******/ + /****** md5 signature: 79a293d0b91ab6d1359881075119fb56 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -1264,8 +1264,8 @@ Computes the point of parameter u on the curve with its first derivative. raised ") D1; void D1(const Standard_Real U, gp_Pnt2d & P, gp_Vec2d & V); - /****************** D2 ******************/ - /**** md5 signature: acc8c0955596bb0bf809102736ad1124 ****/ + /****** Adaptor2d_OffsetCurve::D2 ******/ + /****** md5 signature: acc8c0955596bb0bf809102736ad1124 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -1285,8 +1285,8 @@ Returns the point p of parameter u, the first and second derivatives v1 and v2. ") D2; void D2(const Standard_Real U, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2); - /****************** D3 ******************/ - /**** md5 signature: 28315b7efe2f6c64fe9497aa5c5ddaf6 ****/ + /****** Adaptor2d_OffsetCurve::D3 ******/ + /****** md5 signature: 28315b7efe2f6c64fe9497aa5c5ddaf6 ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -1307,8 +1307,8 @@ Returns the point p of parameter u, the first, the second and the third derivati ") D3; void D3(const Standard_Real U, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2, gp_Vec2d & V3); - /****************** DN ******************/ - /**** md5 signature: a05d2f76912764cef5ac7bb40ebda3d7 ****/ + /****** Adaptor2d_OffsetCurve::DN ******/ + /****** md5 signature: a05d2f76912764cef5ac7bb40ebda3d7 ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -1326,8 +1326,8 @@ The returned vector gives the value of the derivative for the order of derivatio ") DN; gp_Vec2d DN(const Standard_Real U, const Standard_Integer N); - /****************** Degree ******************/ - /**** md5 signature: 5ce473e72cc7bb935a667f4c839dab09 ****/ + /****** Adaptor2d_OffsetCurve::Degree ******/ + /****** md5 signature: 5ce473e72cc7bb935a667f4c839dab09 ******/ %feature("compactdefaultargs") Degree; %feature("autodoc", "Return ------- @@ -1339,8 +1339,8 @@ No available documentation. ") Degree; Standard_Integer Degree(); - /****************** Ellipse ******************/ - /**** md5 signature: 57e9088d9546fb79032102b676477b62 ****/ + /****** Adaptor2d_OffsetCurve::Ellipse ******/ + /****** md5 signature: 57e9088d9546fb79032102b676477b62 ******/ %feature("compactdefaultargs") Ellipse; %feature("autodoc", "Return ------- @@ -1352,8 +1352,8 @@ No available documentation. ") Ellipse; gp_Elips2d Ellipse(); - /****************** FirstParameter ******************/ - /**** md5 signature: 93c381754667baab23468a195644e410 ****/ + /****** Adaptor2d_OffsetCurve::FirstParameter ******/ + /****** md5 signature: 93c381754667baab23468a195644e410 ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", "Return ------- @@ -1365,8 +1365,8 @@ No available documentation. ") FirstParameter; virtual Standard_Real FirstParameter(); - /****************** GetType ******************/ - /**** md5 signature: 0ad61dcbb5497908c1b536e766f0fcb9 ****/ + /****** Adaptor2d_OffsetCurve::GetType ******/ + /****** md5 signature: 0ad61dcbb5497908c1b536e766f0fcb9 ******/ %feature("compactdefaultargs") GetType; %feature("autodoc", "Return ------- @@ -1378,8 +1378,8 @@ Returns the type of the curve in the current interval: line, circle, ellipse, hy ") GetType; GeomAbs_CurveType GetType(); - /****************** Hyperbola ******************/ - /**** md5 signature: 951e1971b5974627f011740e5c4c9ecb ****/ + /****** Adaptor2d_OffsetCurve::Hyperbola ******/ + /****** md5 signature: 951e1971b5974627f011740e5c4c9ecb ******/ %feature("compactdefaultargs") Hyperbola; %feature("autodoc", "Return ------- @@ -1391,8 +1391,8 @@ No available documentation. ") Hyperbola; gp_Hypr2d Hyperbola(); - /****************** Intervals ******************/ - /**** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ****/ + /****** Adaptor2d_OffsetCurve::Intervals ******/ + /****** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -1410,8 +1410,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsClosed ******************/ - /**** md5 signature: 00978070ec4cb5f00d1d002a8d5d3763 ****/ + /****** Adaptor2d_OffsetCurve::IsClosed ******/ + /****** md5 signature: 00978070ec4cb5f00d1d002a8d5d3763 ******/ %feature("compactdefaultargs") IsClosed; %feature("autodoc", "Return ------- @@ -1423,8 +1423,8 @@ No available documentation. ") IsClosed; Standard_Boolean IsClosed(); - /****************** IsPeriodic ******************/ - /**** md5 signature: 15e3ccfd3ad4ae42959489f7f64aa8ca ****/ + /****** Adaptor2d_OffsetCurve::IsPeriodic ******/ + /****** md5 signature: 15e3ccfd3ad4ae42959489f7f64aa8ca ******/ %feature("compactdefaultargs") IsPeriodic; %feature("autodoc", "Return ------- @@ -1436,8 +1436,8 @@ No available documentation. ") IsPeriodic; Standard_Boolean IsPeriodic(); - /****************** IsRational ******************/ - /**** md5 signature: 82ca56fad113156125f40128b25c0d8e ****/ + /****** Adaptor2d_OffsetCurve::IsRational ******/ + /****** md5 signature: 82ca56fad113156125f40128b25c0d8e ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -1449,8 +1449,8 @@ No available documentation. ") IsRational; Standard_Boolean IsRational(); - /****************** LastParameter ******************/ - /**** md5 signature: a2893a92f9c4af09acb0cd59d959d964 ****/ + /****** Adaptor2d_OffsetCurve::LastParameter ******/ + /****** md5 signature: a2893a92f9c4af09acb0cd59d959d964 ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", "Return ------- @@ -1462,8 +1462,8 @@ No available documentation. ") LastParameter; virtual Standard_Real LastParameter(); - /****************** Line ******************/ - /**** md5 signature: d41344e9c3febf8a7347a9e78e837373 ****/ + /****** Adaptor2d_OffsetCurve::Line ******/ + /****** md5 signature: d41344e9c3febf8a7347a9e78e837373 ******/ %feature("compactdefaultargs") Line; %feature("autodoc", "Return ------- @@ -1475,8 +1475,8 @@ No available documentation. ") Line; gp_Lin2d Line(); - /****************** Load ******************/ - /**** md5 signature: 9061983eb8107070a51888448966855a ****/ + /****** Adaptor2d_OffsetCurve::Load ******/ + /****** md5 signature: 9061983eb8107070a51888448966855a ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -1493,8 +1493,8 @@ Changes the curve. the offset is reset to 0. ") Load; void Load(const opencascade::handle & S); - /****************** Load ******************/ - /**** md5 signature: 9a0b0df619b9827b4c54ec1608be65ca ****/ + /****** Adaptor2d_OffsetCurve::Load ******/ + /****** md5 signature: 9a0b0df619b9827b4c54ec1608be65ca ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -1511,8 +1511,8 @@ Changes the offset on the current curve. ") Load; void Load(const Standard_Real Offset); - /****************** Load ******************/ - /**** md5 signature: 3322ee7ce92e3dcbd7a1a9bc1c56530c ****/ + /****** Adaptor2d_OffsetCurve::Load ******/ + /****** md5 signature: 3322ee7ce92e3dcbd7a1a9bc1c56530c ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -1531,8 +1531,8 @@ Changes the offset curve on the current curve. ") Load; void Load(const Standard_Real Offset, const Standard_Real WFirst, const Standard_Real WLast); - /****************** NbIntervals ******************/ - /**** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ****/ + /****** Adaptor2d_OffsetCurve::NbIntervals ******/ + /****** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -1549,8 +1549,8 @@ If necessary, breaks the curve in intervals of continuity . and returns the n ") NbIntervals; Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** NbKnots ******************/ - /**** md5 signature: 841663cbf96bec3b939f307c52df6c7c ****/ + /****** Adaptor2d_OffsetCurve::NbKnots ******/ + /****** md5 signature: 841663cbf96bec3b939f307c52df6c7c ******/ %feature("compactdefaultargs") NbKnots; %feature("autodoc", "Return ------- @@ -1562,8 +1562,8 @@ No available documentation. ") NbKnots; Standard_Integer NbKnots(); - /****************** NbPoles ******************/ - /**** md5 signature: 52e5fadf897540545847ef59cc0ba942 ****/ + /****** Adaptor2d_OffsetCurve::NbPoles ******/ + /****** md5 signature: 52e5fadf897540545847ef59cc0ba942 ******/ %feature("compactdefaultargs") NbPoles; %feature("autodoc", "Return ------- @@ -1575,8 +1575,8 @@ No available documentation. ") NbPoles; Standard_Integer NbPoles(); - /****************** NbSamples ******************/ - /**** md5 signature: 4121a3c2901a01f0443f1a396ebcd6f7 ****/ + /****** Adaptor2d_OffsetCurve::NbSamples ******/ + /****** md5 signature: 4121a3c2901a01f0443f1a396ebcd6f7 ******/ %feature("compactdefaultargs") NbSamples; %feature("autodoc", "Return ------- @@ -1588,8 +1588,8 @@ No available documentation. ") NbSamples; Standard_Integer NbSamples(); - /****************** Offset ******************/ - /**** md5 signature: dc63f42d21519182e8aed77d60677eb8 ****/ + /****** Adaptor2d_OffsetCurve::Offset ******/ + /****** md5 signature: dc63f42d21519182e8aed77d60677eb8 ******/ %feature("compactdefaultargs") Offset; %feature("autodoc", "Return ------- @@ -1601,8 +1601,8 @@ No available documentation. ") Offset; Standard_Real Offset(); - /****************** Parabola ******************/ - /**** md5 signature: 38729705f952495154cecf7cf9964648 ****/ + /****** Adaptor2d_OffsetCurve::Parabola ******/ + /****** md5 signature: 38729705f952495154cecf7cf9964648 ******/ %feature("compactdefaultargs") Parabola; %feature("autodoc", "Return ------- @@ -1614,8 +1614,8 @@ No available documentation. ") Parabola; gp_Parab2d Parabola(); - /****************** Period ******************/ - /**** md5 signature: 88909a321398632744c0d6841580c626 ****/ + /****** Adaptor2d_OffsetCurve::Period ******/ + /****** md5 signature: 88909a321398632744c0d6841580c626 ******/ %feature("compactdefaultargs") Period; %feature("autodoc", "Return ------- @@ -1627,8 +1627,8 @@ No available documentation. ") Period; Standard_Real Period(); - /****************** Resolution ******************/ - /**** md5 signature: cc4a4d9111fadd20ad48e62bc4df1579 ****/ + /****** Adaptor2d_OffsetCurve::Resolution ******/ + /****** md5 signature: cc4a4d9111fadd20ad48e62bc4df1579 ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -1645,8 +1645,8 @@ Returns the parametric resolution corresponding to the real space resolution ShallowCopy(); - /****************** Trim ******************/ - /**** md5 signature: b5ce1c7f3b02aa6680da8e9ad704acc6 ****/ + /****** Adaptor2d_OffsetCurve::Trim ******/ + /****** md5 signature: b5ce1c7f3b02aa6680da8e9ad704acc6 ******/ %feature("compactdefaultargs") Trim; %feature("autodoc", " Parameters @@ -1678,8 +1678,8 @@ Returns a curve equivalent of between parameters and . Trim(const Standard_Real First, const Standard_Real Last, const Standard_Real Tol); - /****************** Value ******************/ - /**** md5 signature: 91dcf5c5229f25c64d3a714347090b29 ****/ + /****** Adaptor2d_OffsetCurve::Value ******/ + /****** md5 signature: 91dcf5c5229f25c64d3a714347090b29 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/Adaptor3d.i b/src/SWIG_files/wrapper/Adaptor3d.i index caadeb44e..46230fdb2 100644 --- a/src/SWIG_files/wrapper/Adaptor3d.i +++ b/src/SWIG_files/wrapper/Adaptor3d.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define ADAPTOR3DDOCSTRING "Adaptor3d module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_adaptor3d.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_adaptor3d.html" %enddef %module (package="OCC.Core", docstring=ADAPTOR3DDOCSTRING) Adaptor3d @@ -101,8 +101,8 @@ from OCC.Core.Exception import * ************************/ class Adaptor3d_Curve : public Standard_Transient { public: - /****************** BSpline ******************/ - /**** md5 signature: 534c7ad12bf6a739dd70c41ffd91fbc3 ****/ + /****** Adaptor3d_Curve::BSpline ******/ + /****** md5 signature: 534c7ad12bf6a739dd70c41ffd91fbc3 ******/ %feature("compactdefaultargs") BSpline; %feature("autodoc", "Return ------- @@ -114,8 +114,8 @@ No available documentation. ") BSpline; virtual opencascade::handle BSpline(); - /****************** Bezier ******************/ - /**** md5 signature: d039f5111d5d399e0d141d31d71bb173 ****/ + /****** Adaptor3d_Curve::Bezier ******/ + /****** md5 signature: d039f5111d5d399e0d141d31d71bb173 ******/ %feature("compactdefaultargs") Bezier; %feature("autodoc", "Return ------- @@ -127,8 +127,8 @@ No available documentation. ") Bezier; virtual opencascade::handle Bezier(); - /****************** Circle ******************/ - /**** md5 signature: 2ffde840d9a6755dd8dac11847721aeb ****/ + /****** Adaptor3d_Curve::Circle ******/ + /****** md5 signature: 2ffde840d9a6755dd8dac11847721aeb ******/ %feature("compactdefaultargs") Circle; %feature("autodoc", "Return ------- @@ -140,8 +140,8 @@ No available documentation. ") Circle; virtual gp_Circ Circle(); - /****************** Continuity ******************/ - /**** md5 signature: 8564d2514f3a14a163da9fa2b30a9284 ****/ + /****** Adaptor3d_Curve::Continuity ******/ + /****** md5 signature: 8564d2514f3a14a163da9fa2b30a9284 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", "Return ------- @@ -153,8 +153,8 @@ No available documentation. ") Continuity; virtual GeomAbs_Shape Continuity(); - /****************** D0 ******************/ - /**** md5 signature: ff252230a6b53579b22b53cd2be20378 ****/ + /****** Adaptor3d_Curve::D0 ******/ + /****** md5 signature: ff252230a6b53579b22b53cd2be20378 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -172,8 +172,8 @@ Computes the point of parameter u on the curve. ") D0; virtual void D0(const Standard_Real U, gp_Pnt & P); - /****************** D1 ******************/ - /**** md5 signature: 46c2267eec5c778b3f712b1f654b247b ****/ + /****** Adaptor3d_Curve::D1 ******/ + /****** md5 signature: 46c2267eec5c778b3f712b1f654b247b ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -192,8 +192,8 @@ Computes the point of parameter u on the curve with its first derivative. raised ") D1; virtual void D1(const Standard_Real U, gp_Pnt & P, gp_Vec & V); - /****************** D2 ******************/ - /**** md5 signature: bd2a31f266173337a625aa6cc256dc38 ****/ + /****** Adaptor3d_Curve::D2 ******/ + /****** md5 signature: bd2a31f266173337a625aa6cc256dc38 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -213,8 +213,8 @@ Returns the point p of parameter u, the first and second derivatives v1 and v2. ") D2; virtual void D2(const Standard_Real U, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2); - /****************** D3 ******************/ - /**** md5 signature: 4c8a92894fd5c8702f8e4fc644b169e8 ****/ + /****** Adaptor3d_Curve::D3 ******/ + /****** md5 signature: 4c8a92894fd5c8702f8e4fc644b169e8 ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -235,8 +235,8 @@ Returns the point p of parameter u, the first, the second and the third derivati ") D3; virtual void D3(const Standard_Real U, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2, gp_Vec & V3); - /****************** DN ******************/ - /**** md5 signature: e7a556aebd910c39086a16864c70a895 ****/ + /****** Adaptor3d_Curve::DN ******/ + /****** md5 signature: e7a556aebd910c39086a16864c70a895 ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -254,8 +254,8 @@ The returned vector gives the value of the derivative for the order of derivatio ") DN; virtual gp_Vec DN(const Standard_Real U, const Standard_Integer N); - /****************** Degree ******************/ - /**** md5 signature: d442d1b77ae7b1ce10d9531914b14be7 ****/ + /****** Adaptor3d_Curve::Degree ******/ + /****** md5 signature: d442d1b77ae7b1ce10d9531914b14be7 ******/ %feature("compactdefaultargs") Degree; %feature("autodoc", "Return ------- @@ -267,8 +267,8 @@ No available documentation. ") Degree; virtual Standard_Integer Degree(); - /****************** Ellipse ******************/ - /**** md5 signature: d9f1f2aa507ae2b9ee66e792a6ec6d18 ****/ + /****** Adaptor3d_Curve::Ellipse ******/ + /****** md5 signature: d9f1f2aa507ae2b9ee66e792a6ec6d18 ******/ %feature("compactdefaultargs") Ellipse; %feature("autodoc", "Return ------- @@ -280,8 +280,8 @@ No available documentation. ") Ellipse; virtual gp_Elips Ellipse(); - /****************** FirstParameter ******************/ - /**** md5 signature: adaac52a0f2d3263c19caadcbea394a2 ****/ + /****** Adaptor3d_Curve::FirstParameter ******/ + /****** md5 signature: adaac52a0f2d3263c19caadcbea394a2 ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", "Return ------- @@ -293,8 +293,8 @@ No available documentation. ") FirstParameter; virtual Standard_Real FirstParameter(); - /****************** GetType ******************/ - /**** md5 signature: 657f9e3cbd23a069ca4adcba08a9b196 ****/ + /****** Adaptor3d_Curve::GetType ******/ + /****** md5 signature: 657f9e3cbd23a069ca4adcba08a9b196 ******/ %feature("compactdefaultargs") GetType; %feature("autodoc", "Return ------- @@ -306,8 +306,8 @@ Returns the type of the curve in the current interval: line, circle, ellipse, hy ") GetType; virtual GeomAbs_CurveType GetType(); - /****************** Hyperbola ******************/ - /**** md5 signature: 087275fe9d7175cc6c5a1b3aff60a964 ****/ + /****** Adaptor3d_Curve::Hyperbola ******/ + /****** md5 signature: 087275fe9d7175cc6c5a1b3aff60a964 ******/ %feature("compactdefaultargs") Hyperbola; %feature("autodoc", "Return ------- @@ -319,8 +319,8 @@ No available documentation. ") Hyperbola; virtual gp_Hypr Hyperbola(); - /****************** Intervals ******************/ - /**** md5 signature: 1b47d9fadea42b0a52e1ad5844faff05 ****/ + /****** Adaptor3d_Curve::Intervals ******/ + /****** md5 signature: 1b47d9fadea42b0a52e1ad5844faff05 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -338,8 +338,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; virtual void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsClosed ******************/ - /**** md5 signature: d57ef0715a5abf96ea6273eee63d5417 ****/ + /****** Adaptor3d_Curve::IsClosed ******/ + /****** md5 signature: d57ef0715a5abf96ea6273eee63d5417 ******/ %feature("compactdefaultargs") IsClosed; %feature("autodoc", "Return ------- @@ -351,8 +351,8 @@ No available documentation. ") IsClosed; virtual Standard_Boolean IsClosed(); - /****************** IsPeriodic ******************/ - /**** md5 signature: aac83d336e26e94b4cd1076ac72ce2c9 ****/ + /****** Adaptor3d_Curve::IsPeriodic ******/ + /****** md5 signature: aac83d336e26e94b4cd1076ac72ce2c9 ******/ %feature("compactdefaultargs") IsPeriodic; %feature("autodoc", "Return ------- @@ -364,8 +364,8 @@ No available documentation. ") IsPeriodic; virtual Standard_Boolean IsPeriodic(); - /****************** IsRational ******************/ - /**** md5 signature: 5389f1211fc99cfdcbd6575b8eec7b5c ****/ + /****** Adaptor3d_Curve::IsRational ******/ + /****** md5 signature: 5389f1211fc99cfdcbd6575b8eec7b5c ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -377,8 +377,8 @@ No available documentation. ") IsRational; virtual Standard_Boolean IsRational(); - /****************** LastParameter ******************/ - /**** md5 signature: 38a37eecbdff8d3a1b5ffdd6b12bf4d9 ****/ + /****** Adaptor3d_Curve::LastParameter ******/ + /****** md5 signature: 38a37eecbdff8d3a1b5ffdd6b12bf4d9 ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", "Return ------- @@ -390,8 +390,8 @@ No available documentation. ") LastParameter; virtual Standard_Real LastParameter(); - /****************** Line ******************/ - /**** md5 signature: 82d4979efdeac0c1d5c97a520a424fe8 ****/ + /****** Adaptor3d_Curve::Line ******/ + /****** md5 signature: 82d4979efdeac0c1d5c97a520a424fe8 ******/ %feature("compactdefaultargs") Line; %feature("autodoc", "Return ------- @@ -403,8 +403,8 @@ No available documentation. ") Line; virtual gp_Lin Line(); - /****************** NbIntervals ******************/ - /**** md5 signature: 0b37dc42182e542f53017d0e52c8cd03 ****/ + /****** Adaptor3d_Curve::NbIntervals ******/ + /****** md5 signature: 0b37dc42182e542f53017d0e52c8cd03 ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -421,8 +421,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; virtual Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** NbKnots ******************/ - /**** md5 signature: 22b54658d4850824758b23cad1529c2f ****/ + /****** Adaptor3d_Curve::NbKnots ******/ + /****** md5 signature: 22b54658d4850824758b23cad1529c2f ******/ %feature("compactdefaultargs") NbKnots; %feature("autodoc", "Return ------- @@ -434,8 +434,8 @@ No available documentation. ") NbKnots; virtual Standard_Integer NbKnots(); - /****************** NbPoles ******************/ - /**** md5 signature: 1b49ced11f88c6092f4e3b2473fe0460 ****/ + /****** Adaptor3d_Curve::NbPoles ******/ + /****** md5 signature: 1b49ced11f88c6092f4e3b2473fe0460 ******/ %feature("compactdefaultargs") NbPoles; %feature("autodoc", "Return ------- @@ -447,8 +447,8 @@ No available documentation. ") NbPoles; virtual Standard_Integer NbPoles(); - /****************** OffsetCurve ******************/ - /**** md5 signature: 655d22f4633348168546c74998986f8b ****/ + /****** Adaptor3d_Curve::OffsetCurve ******/ + /****** md5 signature: 655d22f4633348168546c74998986f8b ******/ %feature("compactdefaultargs") OffsetCurve; %feature("autodoc", "Return ------- @@ -460,8 +460,8 @@ No available documentation. ") OffsetCurve; virtual opencascade::handle OffsetCurve(); - /****************** Parabola ******************/ - /**** md5 signature: 049a76e288b128edd6e69945fe3570cf ****/ + /****** Adaptor3d_Curve::Parabola ******/ + /****** md5 signature: 049a76e288b128edd6e69945fe3570cf ******/ %feature("compactdefaultargs") Parabola; %feature("autodoc", "Return ------- @@ -473,8 +473,8 @@ No available documentation. ") Parabola; virtual gp_Parab Parabola(); - /****************** Period ******************/ - /**** md5 signature: e4913c399f3a0a7037e498c5a9da8e1f ****/ + /****** Adaptor3d_Curve::Period ******/ + /****** md5 signature: e4913c399f3a0a7037e498c5a9da8e1f ******/ %feature("compactdefaultargs") Period; %feature("autodoc", "Return ------- @@ -486,8 +486,8 @@ No available documentation. ") Period; virtual Standard_Real Period(); - /****************** Resolution ******************/ - /**** md5 signature: 66fa92ada4ec8706453c0525abd4ecd6 ****/ + /****** Adaptor3d_Curve::Resolution ******/ + /****** md5 signature: 66fa92ada4ec8706453c0525abd4ecd6 ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -504,8 +504,8 @@ Returns the parametric resolution corresponding to the real space resolution ShallowCopy(); - /****************** Trim ******************/ - /**** md5 signature: 28307ca5011d5510d72469097ddcd806 ****/ + /****** Adaptor3d_Curve::Trim ******/ + /****** md5 signature: 28307ca5011d5510d72469097ddcd806 ******/ %feature("compactdefaultargs") Trim; %feature("autodoc", " Parameters @@ -537,8 +537,8 @@ Returns a curve equivalent of between parameters and . Trim(const Standard_Real First, const Standard_Real Last, const Standard_Real Tol); - /****************** Value ******************/ - /**** md5 signature: 29b1ab46081b3ec6882d2390e14cd6b7 ****/ + /****** Adaptor3d_Curve::Value ******/ + /****** md5 signature: 29b1ab46081b3ec6882d2390e14cd6b7 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -571,8 +571,8 @@ Computes the point of parameter u on the curve. *******************************/ class Adaptor3d_HSurfaceTool { public: - /****************** AxeOfRevolution ******************/ - /**** md5 signature: 4e3c848c28744e01b507e4ba35d58b75 ****/ + /****** Adaptor3d_HSurfaceTool::AxeOfRevolution ******/ + /****** md5 signature: 4e3c848c28744e01b507e4ba35d58b75 ******/ %feature("compactdefaultargs") AxeOfRevolution; %feature("autodoc", " Parameters @@ -589,8 +589,8 @@ No available documentation. ") AxeOfRevolution; static gp_Ax1 AxeOfRevolution(const opencascade::handle & theSurf); - /****************** BSpline ******************/ - /**** md5 signature: b20eee8852543ecba534da56f02ccdf2 ****/ + /****** Adaptor3d_HSurfaceTool::BSpline ******/ + /****** md5 signature: b20eee8852543ecba534da56f02ccdf2 ******/ %feature("compactdefaultargs") BSpline; %feature("autodoc", " Parameters @@ -607,8 +607,8 @@ No available documentation. ") BSpline; static opencascade::handle BSpline(const opencascade::handle & theSurf); - /****************** BasisCurve ******************/ - /**** md5 signature: a71b9a72441e0c7b51624acf5d096f74 ****/ + /****** Adaptor3d_HSurfaceTool::BasisCurve ******/ + /****** md5 signature: a71b9a72441e0c7b51624acf5d096f74 ******/ %feature("compactdefaultargs") BasisCurve; %feature("autodoc", " Parameters @@ -625,8 +625,8 @@ No available documentation. ") BasisCurve; static opencascade::handle BasisCurve(const opencascade::handle & theSurf); - /****************** BasisSurface ******************/ - /**** md5 signature: 6934a2ceed70d84abf626da742f2ca76 ****/ + /****** Adaptor3d_HSurfaceTool::BasisSurface ******/ + /****** md5 signature: 6934a2ceed70d84abf626da742f2ca76 ******/ %feature("compactdefaultargs") BasisSurface; %feature("autodoc", " Parameters @@ -643,8 +643,8 @@ No available documentation. ") BasisSurface; static opencascade::handle BasisSurface(const opencascade::handle & theSurf); - /****************** Bezier ******************/ - /**** md5 signature: ef3b727f4373bb00634a7bd688d5763b ****/ + /****** Adaptor3d_HSurfaceTool::Bezier ******/ + /****** md5 signature: ef3b727f4373bb00634a7bd688d5763b ******/ %feature("compactdefaultargs") Bezier; %feature("autodoc", " Parameters @@ -661,8 +661,8 @@ No available documentation. ") Bezier; static opencascade::handle Bezier(const opencascade::handle & theSurf); - /****************** Cone ******************/ - /**** md5 signature: a89b691d80e2017209b45690348a907f ****/ + /****** Adaptor3d_HSurfaceTool::Cone ******/ + /****** md5 signature: a89b691d80e2017209b45690348a907f ******/ %feature("compactdefaultargs") Cone; %feature("autodoc", " Parameters @@ -679,8 +679,8 @@ No available documentation. ") Cone; static gp_Cone Cone(const opencascade::handle & theSurf); - /****************** Cylinder ******************/ - /**** md5 signature: 4f2f78ef4d73dcfbb95115cb8f3fa005 ****/ + /****** Adaptor3d_HSurfaceTool::Cylinder ******/ + /****** md5 signature: 4f2f78ef4d73dcfbb95115cb8f3fa005 ******/ %feature("compactdefaultargs") Cylinder; %feature("autodoc", " Parameters @@ -697,8 +697,8 @@ No available documentation. ") Cylinder; static gp_Cylinder Cylinder(const opencascade::handle & theSurf); - /****************** D0 ******************/ - /**** md5 signature: ef0f2f9a8ca6c0c9f75569aea26f4923 ****/ + /****** Adaptor3d_HSurfaceTool::D0 ******/ + /****** md5 signature: ef0f2f9a8ca6c0c9f75569aea26f4923 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -718,8 +718,8 @@ No available documentation. ") D0; static void D0(const opencascade::handle & theSurf, const Standard_Real theU, const Standard_Real theV, gp_Pnt & thePnt); - /****************** D1 ******************/ - /**** md5 signature: a7a9c17ffe5446525786782c4d8ec23c ****/ + /****** Adaptor3d_HSurfaceTool::D1 ******/ + /****** md5 signature: a7a9c17ffe5446525786782c4d8ec23c ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -741,8 +741,8 @@ No available documentation. ") D1; static void D1(const opencascade::handle & theSurf, const Standard_Real theU, const Standard_Real theV, gp_Pnt & thePnt, gp_Vec & theD1U, gp_Vec & theD1V); - /****************** D2 ******************/ - /**** md5 signature: d37322a7acd2c884c1193c7c40124ccd ****/ + /****** Adaptor3d_HSurfaceTool::D2 ******/ + /****** md5 signature: d37322a7acd2c884c1193c7c40124ccd ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -767,8 +767,8 @@ No available documentation. ") D2; static void D2(const opencascade::handle & theSurf, const Standard_Real theU, const Standard_Real theV, gp_Pnt & thePnt, gp_Vec & theD1U, gp_Vec & theD1V, gp_Vec & theD2U, gp_Vec & theD2V, gp_Vec & theD2UV); - /****************** D3 ******************/ - /**** md5 signature: 548950301f5d431905372eddf5619eb0 ****/ + /****** Adaptor3d_HSurfaceTool::D3 ******/ + /****** md5 signature: 548950301f5d431905372eddf5619eb0 ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -797,8 +797,8 @@ No available documentation. ") D3; static void D3(const opencascade::handle & theSurf, const Standard_Real theU, const Standard_Real theV, gp_Pnt & thePnt, gp_Vec & theD1U, gp_Vec & theD1V, gp_Vec & theD2U, gp_Vec & theD2V, gp_Vec & theD2UV, gp_Vec & theD3U, gp_Vec & theD3V, gp_Vec & theD3UUV, gp_Vec & theD3UVV); - /****************** DN ******************/ - /**** md5 signature: 53aedfdee41fb6987ac126268a92d99b ****/ + /****** Adaptor3d_HSurfaceTool::DN ******/ + /****** md5 signature: 53aedfdee41fb6987ac126268a92d99b ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -819,8 +819,8 @@ No available documentation. ") DN; static gp_Vec DN(const opencascade::handle & theSurf, const Standard_Real theU, const Standard_Real theV, const Standard_Integer theNU, const Standard_Integer theNV); - /****************** Direction ******************/ - /**** md5 signature: 390f6a317984f3d7d015dcaaccd7ed67 ****/ + /****** Adaptor3d_HSurfaceTool::Direction ******/ + /****** md5 signature: 390f6a317984f3d7d015dcaaccd7ed67 ******/ %feature("compactdefaultargs") Direction; %feature("autodoc", " Parameters @@ -837,8 +837,8 @@ No available documentation. ") Direction; static gp_Dir Direction(const opencascade::handle & theSurf); - /****************** FirstUParameter ******************/ - /**** md5 signature: 09a568c2a86c9579d6d807f3e72bc98f ****/ + /****** Adaptor3d_HSurfaceTool::FirstUParameter ******/ + /****** md5 signature: 09a568c2a86c9579d6d807f3e72bc98f ******/ %feature("compactdefaultargs") FirstUParameter; %feature("autodoc", " Parameters @@ -855,8 +855,8 @@ No available documentation. ") FirstUParameter; static Standard_Real FirstUParameter(const opencascade::handle & theSurf); - /****************** FirstVParameter ******************/ - /**** md5 signature: 9a27fa1be5f466c88aad4c2e37fb7f0f ****/ + /****** Adaptor3d_HSurfaceTool::FirstVParameter ******/ + /****** md5 signature: 9a27fa1be5f466c88aad4c2e37fb7f0f ******/ %feature("compactdefaultargs") FirstVParameter; %feature("autodoc", " Parameters @@ -873,8 +873,8 @@ No available documentation. ") FirstVParameter; static Standard_Real FirstVParameter(const opencascade::handle & theSurf); - /****************** GetType ******************/ - /**** md5 signature: 53f66bf2c621ee9ef4e55ebd8ffafedc ****/ + /****** Adaptor3d_HSurfaceTool::GetType ******/ + /****** md5 signature: 53f66bf2c621ee9ef4e55ebd8ffafedc ******/ %feature("compactdefaultargs") GetType; %feature("autodoc", " Parameters @@ -891,8 +891,8 @@ No available documentation. ") GetType; static GeomAbs_SurfaceType GetType(const opencascade::handle & theSurf); - /****************** IsSurfG1 ******************/ - /**** md5 signature: d95107568ad3b12d40cce978273a764d ****/ + /****** Adaptor3d_HSurfaceTool::IsSurfG1 ******/ + /****** md5 signature: d95107568ad3b12d40cce978273a764d ******/ %feature("compactdefaultargs") IsSurfG1; %feature("autodoc", " Parameters @@ -911,8 +911,8 @@ No available documentation. ") IsSurfG1; static Standard_Boolean IsSurfG1(const opencascade::handle & theSurf, const Standard_Boolean theAlongU, const Standard_Real theAngTol = Precision::Angular()); - /****************** IsUClosed ******************/ - /**** md5 signature: 72572d307cc1b0c468f6fd5b46afb6a4 ****/ + /****** Adaptor3d_HSurfaceTool::IsUClosed ******/ + /****** md5 signature: 72572d307cc1b0c468f6fd5b46afb6a4 ******/ %feature("compactdefaultargs") IsUClosed; %feature("autodoc", " Parameters @@ -929,8 +929,8 @@ No available documentation. ") IsUClosed; static Standard_Boolean IsUClosed(const opencascade::handle & theSurf); - /****************** IsUPeriodic ******************/ - /**** md5 signature: b78a8d5ae8699626e5a192f250e8d734 ****/ + /****** Adaptor3d_HSurfaceTool::IsUPeriodic ******/ + /****** md5 signature: b78a8d5ae8699626e5a192f250e8d734 ******/ %feature("compactdefaultargs") IsUPeriodic; %feature("autodoc", " Parameters @@ -947,8 +947,8 @@ No available documentation. ") IsUPeriodic; static Standard_Boolean IsUPeriodic(const opencascade::handle & theSurf); - /****************** IsVClosed ******************/ - /**** md5 signature: c45c621ec386b255606174f186649fab ****/ + /****** Adaptor3d_HSurfaceTool::IsVClosed ******/ + /****** md5 signature: c45c621ec386b255606174f186649fab ******/ %feature("compactdefaultargs") IsVClosed; %feature("autodoc", " Parameters @@ -965,8 +965,8 @@ No available documentation. ") IsVClosed; static Standard_Boolean IsVClosed(const opencascade::handle & theSurf); - /****************** IsVPeriodic ******************/ - /**** md5 signature: f4305ccce01d0fbbd27855b1043d4ce5 ****/ + /****** Adaptor3d_HSurfaceTool::IsVPeriodic ******/ + /****** md5 signature: f4305ccce01d0fbbd27855b1043d4ce5 ******/ %feature("compactdefaultargs") IsVPeriodic; %feature("autodoc", " Parameters @@ -983,8 +983,8 @@ No available documentation. ") IsVPeriodic; static Standard_Boolean IsVPeriodic(const opencascade::handle & theSurf); - /****************** LastUParameter ******************/ - /**** md5 signature: 30477e987d8f575f84b54a57ce9f7444 ****/ + /****** Adaptor3d_HSurfaceTool::LastUParameter ******/ + /****** md5 signature: 30477e987d8f575f84b54a57ce9f7444 ******/ %feature("compactdefaultargs") LastUParameter; %feature("autodoc", " Parameters @@ -1001,8 +1001,8 @@ No available documentation. ") LastUParameter; static Standard_Real LastUParameter(const opencascade::handle & theSurf); - /****************** LastVParameter ******************/ - /**** md5 signature: d5915a1291074a4423aec5d175b66bbc ****/ + /****** Adaptor3d_HSurfaceTool::LastVParameter ******/ + /****** md5 signature: d5915a1291074a4423aec5d175b66bbc ******/ %feature("compactdefaultargs") LastVParameter; %feature("autodoc", " Parameters @@ -1019,8 +1019,8 @@ No available documentation. ") LastVParameter; static Standard_Real LastVParameter(const opencascade::handle & theSurf); - /****************** NbSamplesU ******************/ - /**** md5 signature: 50ddbf72eceb31a63e22869e67292178 ****/ + /****** Adaptor3d_HSurfaceTool::NbSamplesU ******/ + /****** md5 signature: 50ddbf72eceb31a63e22869e67292178 ******/ %feature("compactdefaultargs") NbSamplesU; %feature("autodoc", " Parameters @@ -1037,8 +1037,8 @@ No available documentation. ") NbSamplesU; static Standard_Integer NbSamplesU(const opencascade::handle & S); - /****************** NbSamplesU ******************/ - /**** md5 signature: 7ffe816252db97bdbf2950cea2ca2037 ****/ + /****** Adaptor3d_HSurfaceTool::NbSamplesU ******/ + /****** md5 signature: 7ffe816252db97bdbf2950cea2ca2037 ******/ %feature("compactdefaultargs") NbSamplesU; %feature("autodoc", " Parameters @@ -1057,8 +1057,8 @@ No available documentation. ") NbSamplesU; static Standard_Integer NbSamplesU(const opencascade::handle & S, const Standard_Real u1, const Standard_Real u2); - /****************** NbSamplesV ******************/ - /**** md5 signature: 3604df32e5eb1f507b1b53de19c12208 ****/ + /****** Adaptor3d_HSurfaceTool::NbSamplesV ******/ + /****** md5 signature: 3604df32e5eb1f507b1b53de19c12208 ******/ %feature("compactdefaultargs") NbSamplesV; %feature("autodoc", " Parameters @@ -1075,8 +1075,8 @@ No available documentation. ") NbSamplesV; static Standard_Integer NbSamplesV(const opencascade::handle & S); - /****************** NbSamplesV ******************/ - /**** md5 signature: c65f614c9f36a107ebd0cfa1e6386566 ****/ + /****** Adaptor3d_HSurfaceTool::NbSamplesV ******/ + /****** md5 signature: c65f614c9f36a107ebd0cfa1e6386566 ******/ %feature("compactdefaultargs") NbSamplesV; %feature("autodoc", " Parameters @@ -1095,8 +1095,8 @@ No available documentation. ") NbSamplesV; static Standard_Integer NbSamplesV(const opencascade::handle &, const Standard_Real v1, const Standard_Real v2); - /****************** NbUIntervals ******************/ - /**** md5 signature: fef1dad379e290c3cf16fef6ea8c820e ****/ + /****** Adaptor3d_HSurfaceTool::NbUIntervals ******/ + /****** md5 signature: fef1dad379e290c3cf16fef6ea8c820e ******/ %feature("compactdefaultargs") NbUIntervals; %feature("autodoc", " Parameters @@ -1114,8 +1114,8 @@ No available documentation. ") NbUIntervals; static Standard_Integer NbUIntervals(const opencascade::handle & theSurf, const GeomAbs_Shape theSh); - /****************** NbVIntervals ******************/ - /**** md5 signature: 54fd606ca3f499eebfa8059b5b5d9f74 ****/ + /****** Adaptor3d_HSurfaceTool::NbVIntervals ******/ + /****** md5 signature: 54fd606ca3f499eebfa8059b5b5d9f74 ******/ %feature("compactdefaultargs") NbVIntervals; %feature("autodoc", " Parameters @@ -1133,8 +1133,8 @@ No available documentation. ") NbVIntervals; static Standard_Integer NbVIntervals(const opencascade::handle & theSurf, const GeomAbs_Shape theSh); - /****************** OffsetValue ******************/ - /**** md5 signature: 85e20729392a6c80ca1b75cc991aedbe ****/ + /****** Adaptor3d_HSurfaceTool::OffsetValue ******/ + /****** md5 signature: 85e20729392a6c80ca1b75cc991aedbe ******/ %feature("compactdefaultargs") OffsetValue; %feature("autodoc", " Parameters @@ -1151,8 +1151,8 @@ No available documentation. ") OffsetValue; static Standard_Real OffsetValue(const opencascade::handle & theSurf); - /****************** Plane ******************/ - /**** md5 signature: 130558349c1c282f4139d902e5e9368f ****/ + /****** Adaptor3d_HSurfaceTool::Plane ******/ + /****** md5 signature: 130558349c1c282f4139d902e5e9368f ******/ %feature("compactdefaultargs") Plane; %feature("autodoc", " Parameters @@ -1169,8 +1169,8 @@ No available documentation. ") Plane; static gp_Pln Plane(const opencascade::handle & theSurf); - /****************** Sphere ******************/ - /**** md5 signature: 65542b788a7978c4d53b85508f7b7b04 ****/ + /****** Adaptor3d_HSurfaceTool::Sphere ******/ + /****** md5 signature: 65542b788a7978c4d53b85508f7b7b04 ******/ %feature("compactdefaultargs") Sphere; %feature("autodoc", " Parameters @@ -1187,8 +1187,8 @@ No available documentation. ") Sphere; static gp_Sphere Sphere(const opencascade::handle & theSurf); - /****************** Torus ******************/ - /**** md5 signature: 501d3c96d8b60d053b3044bf8c2ccc47 ****/ + /****** Adaptor3d_HSurfaceTool::Torus ******/ + /****** md5 signature: 501d3c96d8b60d053b3044bf8c2ccc47 ******/ %feature("compactdefaultargs") Torus; %feature("autodoc", " Parameters @@ -1205,8 +1205,8 @@ No available documentation. ") Torus; static gp_Torus Torus(const opencascade::handle & theSurf); - /****************** UIntervals ******************/ - /**** md5 signature: f279ed888174d088294a26485fe4f7d2 ****/ + /****** Adaptor3d_HSurfaceTool::UIntervals ******/ + /****** md5 signature: f279ed888174d088294a26485fe4f7d2 ******/ %feature("compactdefaultargs") UIntervals; %feature("autodoc", " Parameters @@ -1225,8 +1225,8 @@ No available documentation. ") UIntervals; static void UIntervals(const opencascade::handle & theSurf, TColStd_Array1OfReal & theTab, const GeomAbs_Shape theSh); - /****************** UPeriod ******************/ - /**** md5 signature: 4aeb87257dacd4656faf037c69140a18 ****/ + /****** Adaptor3d_HSurfaceTool::UPeriod ******/ + /****** md5 signature: 4aeb87257dacd4656faf037c69140a18 ******/ %feature("compactdefaultargs") UPeriod; %feature("autodoc", " Parameters @@ -1243,8 +1243,8 @@ No available documentation. ") UPeriod; static Standard_Real UPeriod(const opencascade::handle & theSurf); - /****************** UResolution ******************/ - /**** md5 signature: c6db1a9c95ce8de22a88509a6b426b1c ****/ + /****** Adaptor3d_HSurfaceTool::UResolution ******/ + /****** md5 signature: c6db1a9c95ce8de22a88509a6b426b1c ******/ %feature("compactdefaultargs") UResolution; %feature("autodoc", " Parameters @@ -1262,8 +1262,8 @@ No available documentation. ") UResolution; static Standard_Real UResolution(const opencascade::handle & theSurf, const Standard_Real theR3d); - /****************** UTrim ******************/ - /**** md5 signature: 89490d90b4ba34479d131997cc0a14c7 ****/ + /****** Adaptor3d_HSurfaceTool::UTrim ******/ + /****** md5 signature: 89490d90b4ba34479d131997cc0a14c7 ******/ %feature("compactdefaultargs") UTrim; %feature("autodoc", " Parameters @@ -1283,8 +1283,8 @@ If >= . ") UTrim; static opencascade::handle UTrim(const opencascade::handle & theSurf, const Standard_Real theFirst, const Standard_Real theLast, const Standard_Real theTol); - /****************** VIntervals ******************/ - /**** md5 signature: 57ded06c80e1ec6f84e74507a3d38d67 ****/ + /****** Adaptor3d_HSurfaceTool::VIntervals ******/ + /****** md5 signature: 57ded06c80e1ec6f84e74507a3d38d67 ******/ %feature("compactdefaultargs") VIntervals; %feature("autodoc", " Parameters @@ -1303,8 +1303,8 @@ No available documentation. ") VIntervals; static void VIntervals(const opencascade::handle & theSurf, TColStd_Array1OfReal & theTab, const GeomAbs_Shape theSh); - /****************** VPeriod ******************/ - /**** md5 signature: f67c9c307abb1d8d90b6594b6b0fbd1d ****/ + /****** Adaptor3d_HSurfaceTool::VPeriod ******/ + /****** md5 signature: f67c9c307abb1d8d90b6594b6b0fbd1d ******/ %feature("compactdefaultargs") VPeriod; %feature("autodoc", " Parameters @@ -1321,8 +1321,8 @@ No available documentation. ") VPeriod; static Standard_Real VPeriod(const opencascade::handle & theSurf); - /****************** VResolution ******************/ - /**** md5 signature: f1bc46b0efcda3053b6da41b831f082f ****/ + /****** Adaptor3d_HSurfaceTool::VResolution ******/ + /****** md5 signature: f1bc46b0efcda3053b6da41b831f082f ******/ %feature("compactdefaultargs") VResolution; %feature("autodoc", " Parameters @@ -1340,8 +1340,8 @@ No available documentation. ") VResolution; static Standard_Real VResolution(const opencascade::handle & theSurf, const Standard_Real theR3d); - /****************** VTrim ******************/ - /**** md5 signature: 3459ab4e01913199af1a74ede3ba1856 ****/ + /****** Adaptor3d_HSurfaceTool::VTrim ******/ + /****** md5 signature: 3459ab4e01913199af1a74ede3ba1856 ******/ %feature("compactdefaultargs") VTrim; %feature("autodoc", " Parameters @@ -1361,8 +1361,8 @@ If >= . ") VTrim; static opencascade::handle VTrim(const opencascade::handle & theSurf, const Standard_Real theFirst, const Standard_Real theLast, const Standard_Real theTol); - /****************** Value ******************/ - /**** md5 signature: 84d566772d6b3b2e19370cd2b0f8b89c ****/ + /****** Adaptor3d_HSurfaceTool::Value ******/ + /****** md5 signature: 84d566772d6b3b2e19370cd2b0f8b89c ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -1395,8 +1395,8 @@ No available documentation. **************************/ class Adaptor3d_HVertex : public Standard_Transient { public: - /****************** Adaptor3d_HVertex ******************/ - /**** md5 signature: eac58a1b58e0ece2155add6b7d6c9250 ****/ + /****** Adaptor3d_HVertex::Adaptor3d_HVertex ******/ + /****** md5 signature: eac58a1b58e0ece2155add6b7d6c9250 ******/ %feature("compactdefaultargs") Adaptor3d_HVertex; %feature("autodoc", "Return ------- @@ -1408,8 +1408,8 @@ No available documentation. ") Adaptor3d_HVertex; Adaptor3d_HVertex(); - /****************** Adaptor3d_HVertex ******************/ - /**** md5 signature: b8097197d4737b7cb21d79f7d8bd45d4 ****/ + /****** Adaptor3d_HVertex::Adaptor3d_HVertex ******/ + /****** md5 signature: b8097197d4737b7cb21d79f7d8bd45d4 ******/ %feature("compactdefaultargs") Adaptor3d_HVertex; %feature("autodoc", " Parameters @@ -1428,8 +1428,8 @@ No available documentation. ") Adaptor3d_HVertex; Adaptor3d_HVertex(const gp_Pnt2d & P, const TopAbs_Orientation Ori, const Standard_Real Resolution); - /****************** IsSame ******************/ - /**** md5 signature: f23854098e5a2c0e58714ff498a18027 ****/ + /****** Adaptor3d_HVertex::IsSame ******/ + /****** md5 signature: f23854098e5a2c0e58714ff498a18027 ******/ %feature("compactdefaultargs") IsSame; %feature("autodoc", " Parameters @@ -1446,8 +1446,8 @@ No available documentation. ") IsSame; virtual Standard_Boolean IsSame(const opencascade::handle & Other); - /****************** Orientation ******************/ - /**** md5 signature: c985680b482f7598ebf61ff3db6ab594 ****/ + /****** Adaptor3d_HVertex::Orientation ******/ + /****** md5 signature: c985680b482f7598ebf61ff3db6ab594 ******/ %feature("compactdefaultargs") Orientation; %feature("autodoc", "Return ------- @@ -1459,8 +1459,8 @@ No available documentation. ") Orientation; virtual TopAbs_Orientation Orientation(); - /****************** Parameter ******************/ - /**** md5 signature: 20685a87d4a2fb9ff73f5a56e84880d4 ****/ + /****** Adaptor3d_HVertex::Parameter ******/ + /****** md5 signature: 20685a87d4a2fb9ff73f5a56e84880d4 ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", " Parameters @@ -1477,8 +1477,8 @@ No available documentation. ") Parameter; virtual Standard_Real Parameter(const opencascade::handle & C); - /****************** Resolution ******************/ - /**** md5 signature: ec6f3df4575cf3700b58ff4c13f33f75 ****/ + /****** Adaptor3d_HVertex::Resolution ******/ + /****** md5 signature: ec6f3df4575cf3700b58ff4c13f33f75 ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -1495,8 +1495,8 @@ Parametric resolution (2d). ") Resolution; virtual Standard_Real Resolution(const opencascade::handle & C); - /****************** Value ******************/ - /**** md5 signature: b163ee7405059c08236e9641cb63201d ****/ + /****** Adaptor3d_HVertex::Value ******/ + /****** md5 signature: b163ee7405059c08236e9641cb63201d ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -1524,8 +1524,8 @@ No available documentation. ****************************/ class Adaptor3d_InterFunc : public math_FunctionWithDerivative { public: - /****************** Adaptor3d_InterFunc ******************/ - /**** md5 signature: d6afc00bbf8d3cd088610834f216ab59 ****/ + /****** Adaptor3d_InterFunc::Adaptor3d_InterFunc ******/ + /****** md5 signature: d6afc00bbf8d3cd088610834f216ab59 ******/ %feature("compactdefaultargs") Adaptor3d_InterFunc; %feature("autodoc", " Parameters @@ -1544,8 +1544,8 @@ Build the function u(t)=fixval if fix =1 or v(t)=fixval if fix=2. ") Adaptor3d_InterFunc; Adaptor3d_InterFunc(const opencascade::handle & C, const Standard_Real FixVal, const Standard_Integer Fix); - /****************** Derivative ******************/ - /**** md5 signature: 95e91729f1fb548d9a62f690b302c323 ****/ + /****** Adaptor3d_InterFunc::Derivative ******/ + /****** md5 signature: 95e91729f1fb548d9a62f690b302c323 ******/ %feature("compactdefaultargs") Derivative; %feature("autodoc", " Parameters @@ -1562,8 +1562,8 @@ Computes the derivative of the function for the variable . returns true i ") Derivative; Standard_Boolean Derivative(const Standard_Real X, Standard_Real &OutValue); - /****************** Value ******************/ - /**** md5 signature: 860bcc3da162e9f9f232f07518550196 ****/ + /****** Adaptor3d_InterFunc::Value ******/ + /****** md5 signature: 860bcc3da162e9f9f232f07518550196 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -1580,8 +1580,8 @@ Computes the value of the function for the variable . returns true if the ") Value; Standard_Boolean Value(const Standard_Real X, Standard_Real &OutValue); - /****************** Values ******************/ - /**** md5 signature: fd71eb9a1a2bd16185bbb032c3d29afc ****/ + /****** Adaptor3d_InterFunc::Values ******/ + /****** md5 signature: fd71eb9a1a2bd16185bbb032c3d29afc ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -1613,8 +1613,8 @@ Computes the value and the derivative of the function for the variable < **************************/ class Adaptor3d_Surface : public Standard_Transient { public: - /****************** AxeOfRevolution ******************/ - /**** md5 signature: 3debc8f77289017ebe3fc26c5b0a7fde ****/ + /****** Adaptor3d_Surface::AxeOfRevolution ******/ + /****** md5 signature: 3debc8f77289017ebe3fc26c5b0a7fde ******/ %feature("compactdefaultargs") AxeOfRevolution; %feature("autodoc", "Return ------- @@ -1626,8 +1626,8 @@ No available documentation. ") AxeOfRevolution; virtual gp_Ax1 AxeOfRevolution(); - /****************** BSpline ******************/ - /**** md5 signature: 8782849eb7b84189e1fb34c968aef438 ****/ + /****** Adaptor3d_Surface::BSpline ******/ + /****** md5 signature: 8782849eb7b84189e1fb34c968aef438 ******/ %feature("compactdefaultargs") BSpline; %feature("autodoc", "Return ------- @@ -1639,8 +1639,8 @@ No available documentation. ") BSpline; virtual opencascade::handle BSpline(); - /****************** BasisCurve ******************/ - /**** md5 signature: 99c15a8a36ba096c01e3a30ab92fff44 ****/ + /****** Adaptor3d_Surface::BasisCurve ******/ + /****** md5 signature: 99c15a8a36ba096c01e3a30ab92fff44 ******/ %feature("compactdefaultargs") BasisCurve; %feature("autodoc", "Return ------- @@ -1652,8 +1652,8 @@ No available documentation. ") BasisCurve; virtual opencascade::handle BasisCurve(); - /****************** BasisSurface ******************/ - /**** md5 signature: 530983a0f32601b5771bf2a2dc2ae5d1 ****/ + /****** Adaptor3d_Surface::BasisSurface ******/ + /****** md5 signature: 530983a0f32601b5771bf2a2dc2ae5d1 ******/ %feature("compactdefaultargs") BasisSurface; %feature("autodoc", "Return ------- @@ -1665,8 +1665,8 @@ No available documentation. ") BasisSurface; virtual opencascade::handle BasisSurface(); - /****************** Bezier ******************/ - /**** md5 signature: 46959653edaff049efd779790fb904a6 ****/ + /****** Adaptor3d_Surface::Bezier ******/ + /****** md5 signature: 46959653edaff049efd779790fb904a6 ******/ %feature("compactdefaultargs") Bezier; %feature("autodoc", "Return ------- @@ -1678,8 +1678,8 @@ No available documentation. ") Bezier; virtual opencascade::handle Bezier(); - /****************** Cone ******************/ - /**** md5 signature: b31d0ac73f9470a65ea707968772eae6 ****/ + /****** Adaptor3d_Surface::Cone ******/ + /****** md5 signature: b31d0ac73f9470a65ea707968772eae6 ******/ %feature("compactdefaultargs") Cone; %feature("autodoc", "Return ------- @@ -1691,8 +1691,8 @@ No available documentation. ") Cone; virtual gp_Cone Cone(); - /****************** Cylinder ******************/ - /**** md5 signature: a4f845f2a6611b82f64b6852242a95c6 ****/ + /****** Adaptor3d_Surface::Cylinder ******/ + /****** md5 signature: a4f845f2a6611b82f64b6852242a95c6 ******/ %feature("compactdefaultargs") Cylinder; %feature("autodoc", "Return ------- @@ -1704,8 +1704,8 @@ No available documentation. ") Cylinder; virtual gp_Cylinder Cylinder(); - /****************** D0 ******************/ - /**** md5 signature: 8f923a57ca8ceff3aab5a02bea8d5f12 ****/ + /****** Adaptor3d_Surface::D0 ******/ + /****** md5 signature: 8f923a57ca8ceff3aab5a02bea8d5f12 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -1724,8 +1724,8 @@ Computes the point of parameters u,v on the surface. ") D0; virtual void D0(const Standard_Real U, const Standard_Real V, gp_Pnt & P); - /****************** D1 ******************/ - /**** md5 signature: 35469e629742699989c5c1b8606a25fd ****/ + /****** Adaptor3d_Surface::D1 ******/ + /****** md5 signature: 35469e629742699989c5c1b8606a25fd ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -1746,8 +1746,8 @@ Computes the point and the first derivatives on the surface. raised if the conti ") D1; virtual void D1(const Standard_Real U, const Standard_Real V, gp_Pnt & P, gp_Vec & D1U, gp_Vec & D1V); - /****************** D2 ******************/ - /**** md5 signature: 74bb864108093f2d81c871ea0acee116 ****/ + /****** Adaptor3d_Surface::D2 ******/ + /****** md5 signature: 74bb864108093f2d81c871ea0acee116 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -1771,8 +1771,8 @@ Computes the point, the first and second derivatives on the surface. raised if t ") D2; virtual void D2(const Standard_Real U, const Standard_Real V, gp_Pnt & P, gp_Vec & D1U, gp_Vec & D1V, gp_Vec & D2U, gp_Vec & D2V, gp_Vec & D2UV); - /****************** D3 ******************/ - /**** md5 signature: 508c3f845e4a876a074039e7919851f4 ****/ + /****** Adaptor3d_Surface::D3 ******/ + /****** md5 signature: 508c3f845e4a876a074039e7919851f4 ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -1800,8 +1800,8 @@ Computes the point, the first, second and third derivatives on the surface. rais ") D3; virtual void D3(const Standard_Real U, const Standard_Real V, gp_Pnt & P, gp_Vec & D1U, gp_Vec & D1V, gp_Vec & D2U, gp_Vec & D2V, gp_Vec & D2UV, gp_Vec & D3U, gp_Vec & D3V, gp_Vec & D3UUV, gp_Vec & D3UVV); - /****************** DN ******************/ - /**** md5 signature: 90d6ef938b4ef7a56483bf904c51a1a8 ****/ + /****** Adaptor3d_Surface::DN ******/ + /****** md5 signature: 90d6ef938b4ef7a56483bf904c51a1a8 ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -1821,8 +1821,8 @@ Computes the derivative of order nu in the direction u and nv in the direction v ") DN; virtual gp_Vec DN(const Standard_Real U, const Standard_Real V, const Standard_Integer Nu, const Standard_Integer Nv); - /****************** Direction ******************/ - /**** md5 signature: 50eb80ad6a4d551e2cfbf73fe32bbfa8 ****/ + /****** Adaptor3d_Surface::Direction ******/ + /****** md5 signature: 50eb80ad6a4d551e2cfbf73fe32bbfa8 ******/ %feature("compactdefaultargs") Direction; %feature("autodoc", "Return ------- @@ -1834,8 +1834,8 @@ No available documentation. ") Direction; virtual gp_Dir Direction(); - /****************** FirstUParameter ******************/ - /**** md5 signature: 9f096cb45fc2a40a442b3b2353b81fbb ****/ + /****** Adaptor3d_Surface::FirstUParameter ******/ + /****** md5 signature: 9f096cb45fc2a40a442b3b2353b81fbb ******/ %feature("compactdefaultargs") FirstUParameter; %feature("autodoc", "Return ------- @@ -1847,8 +1847,8 @@ No available documentation. ") FirstUParameter; virtual Standard_Real FirstUParameter(); - /****************** FirstVParameter ******************/ - /**** md5 signature: 8340035b2368d72a37ea6eae3b1a363d ****/ + /****** Adaptor3d_Surface::FirstVParameter ******/ + /****** md5 signature: 8340035b2368d72a37ea6eae3b1a363d ******/ %feature("compactdefaultargs") FirstVParameter; %feature("autodoc", "Return ------- @@ -1860,8 +1860,8 @@ No available documentation. ") FirstVParameter; virtual Standard_Real FirstVParameter(); - /****************** GetType ******************/ - /**** md5 signature: 488899158a40114032119920bcbe6d69 ****/ + /****** Adaptor3d_Surface::GetType ******/ + /****** md5 signature: 488899158a40114032119920bcbe6d69 ******/ %feature("compactdefaultargs") GetType; %feature("autodoc", "Return ------- @@ -1873,8 +1873,8 @@ Returns the type of the surface: plane, cylinder, cone, sphere, torus, beziersur ") GetType; virtual GeomAbs_SurfaceType GetType(); - /****************** IsUClosed ******************/ - /**** md5 signature: e8a70695ac5408e96548fcba7d28a395 ****/ + /****** Adaptor3d_Surface::IsUClosed ******/ + /****** md5 signature: e8a70695ac5408e96548fcba7d28a395 ******/ %feature("compactdefaultargs") IsUClosed; %feature("autodoc", "Return ------- @@ -1886,8 +1886,8 @@ No available documentation. ") IsUClosed; virtual Standard_Boolean IsUClosed(); - /****************** IsUPeriodic ******************/ - /**** md5 signature: 9d4b893bb8b451d02be4c61ddc985b6f ****/ + /****** Adaptor3d_Surface::IsUPeriodic ******/ + /****** md5 signature: 9d4b893bb8b451d02be4c61ddc985b6f ******/ %feature("compactdefaultargs") IsUPeriodic; %feature("autodoc", "Return ------- @@ -1899,8 +1899,8 @@ No available documentation. ") IsUPeriodic; virtual Standard_Boolean IsUPeriodic(); - /****************** IsURational ******************/ - /**** md5 signature: 98b0228d6ecbcd4b9af2be5d094f411b ****/ + /****** Adaptor3d_Surface::IsURational ******/ + /****** md5 signature: 98b0228d6ecbcd4b9af2be5d094f411b ******/ %feature("compactdefaultargs") IsURational; %feature("autodoc", "Return ------- @@ -1912,8 +1912,8 @@ No available documentation. ") IsURational; virtual Standard_Boolean IsURational(); - /****************** IsVClosed ******************/ - /**** md5 signature: da82351c635dac1ca8aa7073075606ab ****/ + /****** Adaptor3d_Surface::IsVClosed ******/ + /****** md5 signature: da82351c635dac1ca8aa7073075606ab ******/ %feature("compactdefaultargs") IsVClosed; %feature("autodoc", "Return ------- @@ -1925,8 +1925,8 @@ No available documentation. ") IsVClosed; virtual Standard_Boolean IsVClosed(); - /****************** IsVPeriodic ******************/ - /**** md5 signature: 4fc2bb80a34d1bca3a757ab95e92ad20 ****/ + /****** Adaptor3d_Surface::IsVPeriodic ******/ + /****** md5 signature: 4fc2bb80a34d1bca3a757ab95e92ad20 ******/ %feature("compactdefaultargs") IsVPeriodic; %feature("autodoc", "Return ------- @@ -1938,8 +1938,8 @@ No available documentation. ") IsVPeriodic; virtual Standard_Boolean IsVPeriodic(); - /****************** IsVRational ******************/ - /**** md5 signature: b78ede066dfcf5f30f85b3fdc92ebee2 ****/ + /****** Adaptor3d_Surface::IsVRational ******/ + /****** md5 signature: b78ede066dfcf5f30f85b3fdc92ebee2 ******/ %feature("compactdefaultargs") IsVRational; %feature("autodoc", "Return ------- @@ -1951,8 +1951,8 @@ No available documentation. ") IsVRational; virtual Standard_Boolean IsVRational(); - /****************** LastUParameter ******************/ - /**** md5 signature: 292da90d07338ad25c177c2fa028d14b ****/ + /****** Adaptor3d_Surface::LastUParameter ******/ + /****** md5 signature: 292da90d07338ad25c177c2fa028d14b ******/ %feature("compactdefaultargs") LastUParameter; %feature("autodoc", "Return ------- @@ -1964,8 +1964,8 @@ No available documentation. ") LastUParameter; virtual Standard_Real LastUParameter(); - /****************** LastVParameter ******************/ - /**** md5 signature: fe2a75a2531511d2ada9a247cd4ccf4b ****/ + /****** Adaptor3d_Surface::LastVParameter ******/ + /****** md5 signature: fe2a75a2531511d2ada9a247cd4ccf4b ******/ %feature("compactdefaultargs") LastVParameter; %feature("autodoc", "Return ------- @@ -1977,8 +1977,8 @@ No available documentation. ") LastVParameter; virtual Standard_Real LastVParameter(); - /****************** NbUIntervals ******************/ - /**** md5 signature: 3f9b4bb4318cf4eb75b5fc6022bec51c ****/ + /****** Adaptor3d_Surface::NbUIntervals ******/ + /****** md5 signature: 3f9b4bb4318cf4eb75b5fc6022bec51c ******/ %feature("compactdefaultargs") NbUIntervals; %feature("autodoc", " Parameters @@ -1995,8 +1995,8 @@ Returns the number of u intervals for continuity . may be one if ucontinuity( ") NbUIntervals; virtual Standard_Integer NbUIntervals(const GeomAbs_Shape S); - /****************** NbUKnots ******************/ - /**** md5 signature: 7a1c0895759d5e9cddda277e4036d7a2 ****/ + /****** Adaptor3d_Surface::NbUKnots ******/ + /****** md5 signature: 7a1c0895759d5e9cddda277e4036d7a2 ******/ %feature("compactdefaultargs") NbUKnots; %feature("autodoc", "Return ------- @@ -2008,8 +2008,8 @@ No available documentation. ") NbUKnots; virtual Standard_Integer NbUKnots(); - /****************** NbUPoles ******************/ - /**** md5 signature: 49425c131d5bbf51ecbf25f256eb3893 ****/ + /****** Adaptor3d_Surface::NbUPoles ******/ + /****** md5 signature: 49425c131d5bbf51ecbf25f256eb3893 ******/ %feature("compactdefaultargs") NbUPoles; %feature("autodoc", "Return ------- @@ -2021,8 +2021,8 @@ No available documentation. ") NbUPoles; virtual Standard_Integer NbUPoles(); - /****************** NbVIntervals ******************/ - /**** md5 signature: c612588f13518c121daaa98c7187c5dd ****/ + /****** Adaptor3d_Surface::NbVIntervals ******/ + /****** md5 signature: c612588f13518c121daaa98c7187c5dd ******/ %feature("compactdefaultargs") NbVIntervals; %feature("autodoc", " Parameters @@ -2039,8 +2039,8 @@ Returns the number of v intervals for continuity . may be one if vcontinuity( ") NbVIntervals; virtual Standard_Integer NbVIntervals(const GeomAbs_Shape S); - /****************** NbVKnots ******************/ - /**** md5 signature: 056eba7e2948215fc1920f79773a07b7 ****/ + /****** Adaptor3d_Surface::NbVKnots ******/ + /****** md5 signature: 056eba7e2948215fc1920f79773a07b7 ******/ %feature("compactdefaultargs") NbVKnots; %feature("autodoc", "Return ------- @@ -2052,8 +2052,8 @@ No available documentation. ") NbVKnots; virtual Standard_Integer NbVKnots(); - /****************** NbVPoles ******************/ - /**** md5 signature: 27419519071863c30fa7e303bf9714b1 ****/ + /****** Adaptor3d_Surface::NbVPoles ******/ + /****** md5 signature: 27419519071863c30fa7e303bf9714b1 ******/ %feature("compactdefaultargs") NbVPoles; %feature("autodoc", "Return ------- @@ -2065,8 +2065,8 @@ No available documentation. ") NbVPoles; virtual Standard_Integer NbVPoles(); - /****************** OffsetValue ******************/ - /**** md5 signature: 668f7151c7b3b100446406f1c2b0b2e9 ****/ + /****** Adaptor3d_Surface::OffsetValue ******/ + /****** md5 signature: 668f7151c7b3b100446406f1c2b0b2e9 ******/ %feature("compactdefaultargs") OffsetValue; %feature("autodoc", "Return ------- @@ -2078,8 +2078,8 @@ No available documentation. ") OffsetValue; virtual Standard_Real OffsetValue(); - /****************** Plane ******************/ - /**** md5 signature: ae2ef8a7cc00a3678c001f660e5e87af ****/ + /****** Adaptor3d_Surface::Plane ******/ + /****** md5 signature: ae2ef8a7cc00a3678c001f660e5e87af ******/ %feature("compactdefaultargs") Plane; %feature("autodoc", "Return ------- @@ -2091,8 +2091,8 @@ No available documentation. ") Plane; virtual gp_Pln Plane(); - /****************** ShallowCopy ******************/ - /**** md5 signature: 2c40a5f136e5a824520c885db1d4fa77 ****/ + /****** Adaptor3d_Surface::ShallowCopy ******/ + /****** md5 signature: 2c40a5f136e5a824520c885db1d4fa77 ******/ %feature("compactdefaultargs") ShallowCopy; %feature("autodoc", "Return ------- @@ -2104,8 +2104,8 @@ Shallow copy of adaptor. ") ShallowCopy; virtual opencascade::handle ShallowCopy(); - /****************** Sphere ******************/ - /**** md5 signature: cc119d9c2d6769252e8f267250b5802d ****/ + /****** Adaptor3d_Surface::Sphere ******/ + /****** md5 signature: cc119d9c2d6769252e8f267250b5802d ******/ %feature("compactdefaultargs") Sphere; %feature("autodoc", "Return ------- @@ -2117,8 +2117,8 @@ No available documentation. ") Sphere; virtual gp_Sphere Sphere(); - /****************** Torus ******************/ - /**** md5 signature: d9bc77c59c8537a8319376aa7df09ccd ****/ + /****** Adaptor3d_Surface::Torus ******/ + /****** md5 signature: d9bc77c59c8537a8319376aa7df09ccd ******/ %feature("compactdefaultargs") Torus; %feature("autodoc", "Return ------- @@ -2130,8 +2130,8 @@ No available documentation. ") Torus; virtual gp_Torus Torus(); - /****************** UContinuity ******************/ - /**** md5 signature: 77ad7bb6fa9eb6fee5117117dc1ac55d ****/ + /****** Adaptor3d_Surface::UContinuity ******/ + /****** md5 signature: 77ad7bb6fa9eb6fee5117117dc1ac55d ******/ %feature("compactdefaultargs") UContinuity; %feature("autodoc", "Return ------- @@ -2143,8 +2143,8 @@ No available documentation. ") UContinuity; virtual GeomAbs_Shape UContinuity(); - /****************** UDegree ******************/ - /**** md5 signature: 5deb29548a36c721198fed8800d06830 ****/ + /****** Adaptor3d_Surface::UDegree ******/ + /****** md5 signature: 5deb29548a36c721198fed8800d06830 ******/ %feature("compactdefaultargs") UDegree; %feature("autodoc", "Return ------- @@ -2156,8 +2156,8 @@ No available documentation. ") UDegree; virtual Standard_Integer UDegree(); - /****************** UIntervals ******************/ - /**** md5 signature: b593cc9a16bcef9f9aa90ee2aec21589 ****/ + /****** Adaptor3d_Surface::UIntervals ******/ + /****** md5 signature: b593cc9a16bcef9f9aa90ee2aec21589 ******/ %feature("compactdefaultargs") UIntervals; %feature("autodoc", " Parameters @@ -2175,8 +2175,8 @@ Returns the intervals with the requested continuity in the u direction. ") UIntervals; virtual void UIntervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** UPeriod ******************/ - /**** md5 signature: b5a8af3fdd028670ffc618d509b562aa ****/ + /****** Adaptor3d_Surface::UPeriod ******/ + /****** md5 signature: b5a8af3fdd028670ffc618d509b562aa ******/ %feature("compactdefaultargs") UPeriod; %feature("autodoc", "Return ------- @@ -2188,8 +2188,8 @@ No available documentation. ") UPeriod; virtual Standard_Real UPeriod(); - /****************** UResolution ******************/ - /**** md5 signature: 47eb7fe0f86b388ef7c61b75143d68fd ****/ + /****** Adaptor3d_Surface::UResolution ******/ + /****** md5 signature: 47eb7fe0f86b388ef7c61b75143d68fd ******/ %feature("compactdefaultargs") UResolution; %feature("autodoc", " Parameters @@ -2206,8 +2206,8 @@ Returns the parametric u resolution corresponding to the real space resolution < ") UResolution; virtual Standard_Real UResolution(const Standard_Real R3d); - /****************** UTrim ******************/ - /**** md5 signature: c37e4851cad3cfe0fd1be5953bcbb1dc ****/ + /****** Adaptor3d_Surface::UTrim ******/ + /****** md5 signature: c37e4851cad3cfe0fd1be5953bcbb1dc ******/ %feature("compactdefaultargs") UTrim; %feature("autodoc", " Parameters @@ -2226,8 +2226,8 @@ Returns a surface trimmed in the u direction equivalent of between parame ") UTrim; virtual opencascade::handle UTrim(const Standard_Real First, const Standard_Real Last, const Standard_Real Tol); - /****************** VContinuity ******************/ - /**** md5 signature: d072bc9a7996d58b53b4d1e10a7f1999 ****/ + /****** Adaptor3d_Surface::VContinuity ******/ + /****** md5 signature: d072bc9a7996d58b53b4d1e10a7f1999 ******/ %feature("compactdefaultargs") VContinuity; %feature("autodoc", "Return ------- @@ -2239,8 +2239,8 @@ No available documentation. ") VContinuity; virtual GeomAbs_Shape VContinuity(); - /****************** VDegree ******************/ - /**** md5 signature: 1fa8f8863980920be56d3f9b30ac2667 ****/ + /****** Adaptor3d_Surface::VDegree ******/ + /****** md5 signature: 1fa8f8863980920be56d3f9b30ac2667 ******/ %feature("compactdefaultargs") VDegree; %feature("autodoc", "Return ------- @@ -2252,8 +2252,8 @@ No available documentation. ") VDegree; virtual Standard_Integer VDegree(); - /****************** VIntervals ******************/ - /**** md5 signature: 391c756d3f528314e59ebde11c556497 ****/ + /****** Adaptor3d_Surface::VIntervals ******/ + /****** md5 signature: 391c756d3f528314e59ebde11c556497 ******/ %feature("compactdefaultargs") VIntervals; %feature("autodoc", " Parameters @@ -2271,8 +2271,8 @@ Returns the intervals with the requested continuity in the v direction. ") VIntervals; virtual void VIntervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** VPeriod ******************/ - /**** md5 signature: aaa8f393a9608b88a2a3f8c8043833cb ****/ + /****** Adaptor3d_Surface::VPeriod ******/ + /****** md5 signature: aaa8f393a9608b88a2a3f8c8043833cb ******/ %feature("compactdefaultargs") VPeriod; %feature("autodoc", "Return ------- @@ -2284,8 +2284,8 @@ No available documentation. ") VPeriod; virtual Standard_Real VPeriod(); - /****************** VResolution ******************/ - /**** md5 signature: 24d123fbb93e57d711b320c4e0431f2a ****/ + /****** Adaptor3d_Surface::VResolution ******/ + /****** md5 signature: 24d123fbb93e57d711b320c4e0431f2a ******/ %feature("compactdefaultargs") VResolution; %feature("autodoc", " Parameters @@ -2302,8 +2302,8 @@ Returns the parametric v resolution corresponding to the real space resolution < ") VResolution; virtual Standard_Real VResolution(const Standard_Real R3d); - /****************** VTrim ******************/ - /**** md5 signature: feea2421d912ddae74778d2b21c61475 ****/ + /****** Adaptor3d_Surface::VTrim ******/ + /****** md5 signature: feea2421d912ddae74778d2b21c61475 ******/ %feature("compactdefaultargs") VTrim; %feature("autodoc", " Parameters @@ -2322,8 +2322,8 @@ Returns a surface trimmed in the v direction between parameters and VTrim(const Standard_Real First, const Standard_Real Last, const Standard_Real Tol); - /****************** Value ******************/ - /**** md5 signature: 86112fa27918493b04ce20ef2fcddd47 ****/ + /****** Adaptor3d_Surface::Value ******/ + /****** md5 signature: 86112fa27918493b04ce20ef2fcddd47 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -2357,8 +2357,8 @@ Computes the point of parameters u,v on the surface. tip: use geomlib::normestim ****************************/ class Adaptor3d_TopolTool : public Standard_Transient { public: - /****************** Adaptor3d_TopolTool ******************/ - /**** md5 signature: aa825ed0136d2875577bee7eaf4b157c ****/ + /****** Adaptor3d_TopolTool::Adaptor3d_TopolTool ******/ + /****** md5 signature: aa825ed0136d2875577bee7eaf4b157c ******/ %feature("compactdefaultargs") Adaptor3d_TopolTool; %feature("autodoc", "Return ------- @@ -2370,8 +2370,8 @@ No available documentation. ") Adaptor3d_TopolTool; Adaptor3d_TopolTool(); - /****************** Adaptor3d_TopolTool ******************/ - /**** md5 signature: ab0a135902966159ae926769ffdb7052 ****/ + /****** Adaptor3d_TopolTool::Adaptor3d_TopolTool ******/ + /****** md5 signature: ab0a135902966159ae926769ffdb7052 ******/ %feature("compactdefaultargs") Adaptor3d_TopolTool; %feature("autodoc", " Parameters @@ -2388,8 +2388,8 @@ No available documentation. ") Adaptor3d_TopolTool; Adaptor3d_TopolTool(const opencascade::handle & Surface); - /****************** BSplSamplePnts ******************/ - /**** md5 signature: 6903f238d66cf388d6121d16fc28d803 ****/ + /****** Adaptor3d_TopolTool::BSplSamplePnts ******/ + /****** md5 signature: 6903f238d66cf388d6121d16fc28d803 ******/ %feature("compactdefaultargs") BSplSamplePnts; %feature("autodoc", " Parameters @@ -2408,8 +2408,8 @@ Compute the sample-points for the intersections algorithms by adaptive algorithm ") BSplSamplePnts; virtual void BSplSamplePnts(const Standard_Real theDefl, const Standard_Integer theNUmin, const Standard_Integer theNVmin); - /****************** Classify ******************/ - /**** md5 signature: c8c5dc96886d407d270064b81c56f4cf ****/ + /****** Adaptor3d_TopolTool::Classify ******/ + /****** md5 signature: c8c5dc96886d407d270064b81c56f4cf ******/ %feature("compactdefaultargs") Classify; %feature("autodoc", " Parameters @@ -2428,8 +2428,8 @@ No available documentation. ") Classify; virtual TopAbs_State Classify(const gp_Pnt2d & P, const Standard_Real Tol, const Standard_Boolean ReacdreOnPeriodic = Standard_True); - /****************** ComputeSamplePoints ******************/ - /**** md5 signature: 23fc57af64fa6b59fefe18fa9084fa69 ****/ + /****** Adaptor3d_TopolTool::ComputeSamplePoints ******/ + /****** md5 signature: 23fc57af64fa6b59fefe18fa9084fa69 ******/ %feature("compactdefaultargs") ComputeSamplePoints; %feature("autodoc", "Return ------- @@ -2441,8 +2441,8 @@ No available documentation. ") ComputeSamplePoints; virtual void ComputeSamplePoints(); - /****************** DomainIsInfinite ******************/ - /**** md5 signature: 6d41c776a0aa728b4d318a59f43aa974 ****/ + /****** Adaptor3d_TopolTool::DomainIsInfinite ******/ + /****** md5 signature: 6d41c776a0aa728b4d318a59f43aa974 ******/ %feature("compactdefaultargs") DomainIsInfinite; %feature("autodoc", "Return ------- @@ -2454,8 +2454,8 @@ No available documentation. ") DomainIsInfinite; virtual Standard_Boolean DomainIsInfinite(); - /****************** Edge ******************/ - /**** md5 signature: 714bd83d54f0cbd20920648bb51520ec ****/ + /****** Adaptor3d_TopolTool::Edge ******/ + /****** md5 signature: 714bd83d54f0cbd20920648bb51520ec ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", "Return ------- @@ -2467,8 +2467,8 @@ No available documentation. ") Edge; virtual Standard_Address Edge(); - /****************** GetConeApexParam ******************/ - /**** md5 signature: 8be4fd6f665527c4e6b570e1d3c513af ****/ + /****** Adaptor3d_TopolTool::GetConeApexParam ******/ + /****** md5 signature: 8be4fd6f665527c4e6b570e1d3c513af ******/ %feature("compactdefaultargs") GetConeApexParam; %feature("autodoc", " Parameters @@ -2486,8 +2486,8 @@ Computes the cone's apex parameters. @param[in] thec conical surface @param[in] ") GetConeApexParam; static void GetConeApexParam(const gp_Cone & theC, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Has3d ******************/ - /**** md5 signature: e26db380d8c3401e2b00bbdf4f01fa61 ****/ + /****** Adaptor3d_TopolTool::Has3d ******/ + /****** md5 signature: e26db380d8c3401e2b00bbdf4f01fa61 ******/ %feature("compactdefaultargs") Has3d; %feature("autodoc", "Return ------- @@ -2499,8 +2499,8 @@ Answers if arcs and vertices may have 3d representations, so that we could use t ") Has3d; virtual Standard_Boolean Has3d(); - /****************** Identical ******************/ - /**** md5 signature: cfa27a5dfaa8508af97ba96a7ec6e21b ****/ + /****** Adaptor3d_TopolTool::Identical ******/ + /****** md5 signature: cfa27a5dfaa8508af97ba96a7ec6e21b ******/ %feature("compactdefaultargs") Identical; %feature("autodoc", " Parameters @@ -2518,8 +2518,8 @@ Returns true if the vertices v1 and v2 are identical. this method does not take ") Identical; virtual Standard_Boolean Identical(const opencascade::handle & V1, const opencascade::handle & V2); - /****************** Init ******************/ - /**** md5 signature: 2f96d79a31287a19717a3642c1e9b28c ****/ + /****** Adaptor3d_TopolTool::Init ******/ + /****** md5 signature: 2f96d79a31287a19717a3642c1e9b28c ******/ %feature("compactdefaultargs") Init; %feature("autodoc", "Return ------- @@ -2531,8 +2531,8 @@ No available documentation. ") Init; virtual void Init(); - /****************** InitVertexIterator ******************/ - /**** md5 signature: 30be0f0057566eace0f6ff06b5235ec5 ****/ + /****** Adaptor3d_TopolTool::InitVertexIterator ******/ + /****** md5 signature: 30be0f0057566eace0f6ff06b5235ec5 ******/ %feature("compactdefaultargs") InitVertexIterator; %feature("autodoc", "Return ------- @@ -2544,8 +2544,8 @@ No available documentation. ") InitVertexIterator; virtual void InitVertexIterator(); - /****************** Initialize ******************/ - /**** md5 signature: 6a5837327bc1f6a299aa49b49efb0b51 ****/ + /****** Adaptor3d_TopolTool::Initialize ******/ + /****** md5 signature: 6a5837327bc1f6a299aa49b49efb0b51 ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", "Return ------- @@ -2557,8 +2557,8 @@ No available documentation. ") Initialize; virtual void Initialize(); - /****************** Initialize ******************/ - /**** md5 signature: faffacbbf54c7a186e23fb682d81e648 ****/ + /****** Adaptor3d_TopolTool::Initialize ******/ + /****** md5 signature: faffacbbf54c7a186e23fb682d81e648 ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -2575,8 +2575,8 @@ No available documentation. ") Initialize; virtual void Initialize(const opencascade::handle & S); - /****************** Initialize ******************/ - /**** md5 signature: 20b22aee7c221a24f9ddddb5f04f3ad2 ****/ + /****** Adaptor3d_TopolTool::Initialize ******/ + /****** md5 signature: 20b22aee7c221a24f9ddddb5f04f3ad2 ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -2593,8 +2593,8 @@ No available documentation. ") Initialize; virtual void Initialize(const opencascade::handle & Curve); - /****************** IsThePointOn ******************/ - /**** md5 signature: 28addf6263169f07c643732d758cdb38 ****/ + /****** Adaptor3d_TopolTool::IsThePointOn ******/ + /****** md5 signature: 28addf6263169f07c643732d758cdb38 ******/ %feature("compactdefaultargs") IsThePointOn; %feature("autodoc", " Parameters @@ -2613,8 +2613,8 @@ No available documentation. ") IsThePointOn; virtual Standard_Boolean IsThePointOn(const gp_Pnt2d & P, const Standard_Real Tol, const Standard_Boolean ReacdreOnPeriodic = Standard_True); - /****************** IsUniformSampling ******************/ - /**** md5 signature: 65a63313e56102fef767c73e6c7f9956 ****/ + /****** Adaptor3d_TopolTool::IsUniformSampling ******/ + /****** md5 signature: 65a63313e56102fef767c73e6c7f9956 ******/ %feature("compactdefaultargs") IsUniformSampling; %feature("autodoc", "Return ------- @@ -2626,8 +2626,8 @@ Returns true if provide uniform sampling of points. ") IsUniformSampling; virtual Standard_Boolean IsUniformSampling(); - /****************** More ******************/ - /**** md5 signature: e821632af8361f06a178b6ca19f5020e ****/ + /****** Adaptor3d_TopolTool::More ******/ + /****** md5 signature: e821632af8361f06a178b6ca19f5020e ******/ %feature("compactdefaultargs") More; %feature("autodoc", "Return ------- @@ -2639,8 +2639,8 @@ No available documentation. ") More; virtual Standard_Boolean More(); - /****************** MoreVertex ******************/ - /**** md5 signature: a8b43dc9585a890721f120d7a26ec923 ****/ + /****** Adaptor3d_TopolTool::MoreVertex ******/ + /****** md5 signature: a8b43dc9585a890721f120d7a26ec923 ******/ %feature("compactdefaultargs") MoreVertex; %feature("autodoc", "Return ------- @@ -2652,8 +2652,8 @@ No available documentation. ") MoreVertex; virtual Standard_Boolean MoreVertex(); - /****************** NbSamples ******************/ - /**** md5 signature: 67b66476ff5b3d26402ec88a76db99c8 ****/ + /****** Adaptor3d_TopolTool::NbSamples ******/ + /****** md5 signature: 67b66476ff5b3d26402ec88a76db99c8 ******/ %feature("compactdefaultargs") NbSamples; %feature("autodoc", "Return ------- @@ -2665,8 +2665,8 @@ Compute the sample-points for the intersections algorithms. ") NbSamples; virtual Standard_Integer NbSamples(); - /****************** NbSamplesU ******************/ - /**** md5 signature: a8a639849a6476b7e06a072e6ce378ca ****/ + /****** Adaptor3d_TopolTool::NbSamplesU ******/ + /****** md5 signature: a8a639849a6476b7e06a072e6ce378ca ******/ %feature("compactdefaultargs") NbSamplesU; %feature("autodoc", "Return ------- @@ -2678,8 +2678,8 @@ Compute the sample-points for the intersections algorithms. ") NbSamplesU; virtual Standard_Integer NbSamplesU(); - /****************** NbSamplesV ******************/ - /**** md5 signature: fe0cfaa8ce33377585fa9145b0af8a01 ****/ + /****** Adaptor3d_TopolTool::NbSamplesV ******/ + /****** md5 signature: fe0cfaa8ce33377585fa9145b0af8a01 ******/ %feature("compactdefaultargs") NbSamplesV; %feature("autodoc", "Return ------- @@ -2691,8 +2691,8 @@ Compute the sample-points for the intersections algorithms. ") NbSamplesV; virtual Standard_Integer NbSamplesV(); - /****************** Next ******************/ - /**** md5 signature: 73141d627b33e5b89ace1d498cedfc52 ****/ + /****** Adaptor3d_TopolTool::Next ******/ + /****** md5 signature: 73141d627b33e5b89ace1d498cedfc52 ******/ %feature("compactdefaultargs") Next; %feature("autodoc", "Return ------- @@ -2704,8 +2704,8 @@ No available documentation. ") Next; virtual void Next(); - /****************** NextVertex ******************/ - /**** md5 signature: 965ea8fa3abffe2964338c5b0ad5701c ****/ + /****** Adaptor3d_TopolTool::NextVertex ******/ + /****** md5 signature: 965ea8fa3abffe2964338c5b0ad5701c ******/ %feature("compactdefaultargs") NextVertex; %feature("autodoc", "Return ------- @@ -2717,8 +2717,8 @@ No available documentation. ") NextVertex; virtual void NextVertex(); - /****************** Orientation ******************/ - /**** md5 signature: 2ec1f29b131dd0ba8f7295bc408c863d ****/ + /****** Adaptor3d_TopolTool::Orientation ******/ + /****** md5 signature: 2ec1f29b131dd0ba8f7295bc408c863d ******/ %feature("compactdefaultargs") Orientation; %feature("autodoc", " Parameters @@ -2735,8 +2735,8 @@ If the function returns the orientation of the arc. if the orientation is forwar ") Orientation; virtual TopAbs_Orientation Orientation(const opencascade::handle & C); - /****************** Orientation ******************/ - /**** md5 signature: b97399854b9802139edc16aa1fd0c067 ****/ + /****** Adaptor3d_TopolTool::Orientation ******/ + /****** md5 signature: b97399854b9802139edc16aa1fd0c067 ******/ %feature("compactdefaultargs") Orientation; %feature("autodoc", " Parameters @@ -2753,8 +2753,8 @@ Returns the orientation of the vertex v. the vertex has been found with an explo ") Orientation; virtual TopAbs_Orientation Orientation(const opencascade::handle & V); - /****************** Pnt ******************/ - /**** md5 signature: f39649c498746c92e9e0e5c9f69ca51e ****/ + /****** Adaptor3d_TopolTool::Pnt ******/ + /****** md5 signature: f39649c498746c92e9e0e5c9f69ca51e ******/ %feature("compactdefaultargs") Pnt; %feature("autodoc", " Parameters @@ -2771,8 +2771,8 @@ Returns 3d point of the vertex v. ") Pnt; virtual gp_Pnt Pnt(const opencascade::handle & V); - /****************** SamplePnts ******************/ - /**** md5 signature: cb1bbdcdfeca14f92fa49d557a8ab965 ****/ + /****** Adaptor3d_TopolTool::SamplePnts ******/ + /****** md5 signature: cb1bbdcdfeca14f92fa49d557a8ab965 ******/ %feature("compactdefaultargs") SamplePnts; %feature("autodoc", " Parameters @@ -2791,8 +2791,8 @@ Compute the sample-points for the intersections algorithms by adaptive algorithm ") SamplePnts; virtual void SamplePnts(const Standard_Real theDefl, const Standard_Integer theNUmin, const Standard_Integer theNVmin); - /****************** SamplePoint ******************/ - /**** md5 signature: fa80c305164d2e62ffe8cb0ec7643678 ****/ + /****** Adaptor3d_TopolTool::SamplePoint ******/ + /****** md5 signature: fa80c305164d2e62ffe8cb0ec7643678 ******/ %feature("compactdefaultargs") SamplePoint; %feature("autodoc", " Parameters @@ -2811,8 +2811,8 @@ No available documentation. ") SamplePoint; virtual void SamplePoint(const Standard_Integer Index, gp_Pnt2d & P2d, gp_Pnt & P3d); - /****************** Tol3d ******************/ - /**** md5 signature: ca38e336a92c0a050652dac5bd784e6b ****/ + /****** Adaptor3d_TopolTool::Tol3d ******/ + /****** md5 signature: ca38e336a92c0a050652dac5bd784e6b ******/ %feature("compactdefaultargs") Tol3d; %feature("autodoc", " Parameters @@ -2829,8 +2829,8 @@ Returns 3d tolerance of the arc c. ") Tol3d; virtual Standard_Real Tol3d(const opencascade::handle & C); - /****************** Tol3d ******************/ - /**** md5 signature: e2e5362802ebc0fb247e0d27af1a66c7 ****/ + /****** Adaptor3d_TopolTool::Tol3d ******/ + /****** md5 signature: e2e5362802ebc0fb247e0d27af1a66c7 ******/ %feature("compactdefaultargs") Tol3d; %feature("autodoc", " Parameters @@ -2847,8 +2847,8 @@ Returns 3d tolerance of the vertex v. ") Tol3d; virtual Standard_Real Tol3d(const opencascade::handle & V); - /****************** UParameters ******************/ - /**** md5 signature: ca8708c5011ae09ddc342ec3e782fcd0 ****/ + /****** Adaptor3d_TopolTool::UParameters ******/ + /****** md5 signature: ca8708c5011ae09ddc342ec3e782fcd0 ******/ %feature("compactdefaultargs") UParameters; %feature("autodoc", " Parameters @@ -2865,8 +2865,8 @@ Return the set of u parameters on the surface obtained by the method samplepnts. ") UParameters; void UParameters(TColStd_Array1OfReal & theArray); - /****************** VParameters ******************/ - /**** md5 signature: 7d86a95e3c8948209ccc18ec9e74b2ce ****/ + /****** Adaptor3d_TopolTool::VParameters ******/ + /****** md5 signature: 7d86a95e3c8948209ccc18ec9e74b2ce ******/ %feature("compactdefaultargs") VParameters; %feature("autodoc", " Parameters @@ -2883,8 +2883,8 @@ Return the set of v parameters on the surface obtained by the method samplepnts. ") VParameters; void VParameters(TColStd_Array1OfReal & theArray); - /****************** Value ******************/ - /**** md5 signature: 69341486cc398dcbf57c11fda47f97ca ****/ + /****** Adaptor3d_TopolTool::Value ******/ + /****** md5 signature: 69341486cc398dcbf57c11fda47f97ca ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -2896,8 +2896,8 @@ No available documentation. ") Value; virtual opencascade::handle Value(); - /****************** Vertex ******************/ - /**** md5 signature: 5fa61bdbc5145c1abf55279009e1141b ****/ + /****** Adaptor3d_TopolTool::Vertex ******/ + /****** md5 signature: 5fa61bdbc5145c1abf55279009e1141b ******/ %feature("compactdefaultargs") Vertex; %feature("autodoc", "Return ------- @@ -2925,8 +2925,8 @@ No available documentation. *********************************/ class Adaptor3d_CurveOnSurface : public Adaptor3d_Curve { public: - /****************** Adaptor3d_CurveOnSurface ******************/ - /**** md5 signature: 6b7eb8b8fde65fd79c0e562453b0df89 ****/ + /****** Adaptor3d_CurveOnSurface::Adaptor3d_CurveOnSurface ******/ + /****** md5 signature: 6b7eb8b8fde65fd79c0e562453b0df89 ******/ %feature("compactdefaultargs") Adaptor3d_CurveOnSurface; %feature("autodoc", "Return ------- @@ -2938,8 +2938,8 @@ No available documentation. ") Adaptor3d_CurveOnSurface; Adaptor3d_CurveOnSurface(); - /****************** Adaptor3d_CurveOnSurface ******************/ - /**** md5 signature: 43855c057bcf63a011b7ed029a6545e6 ****/ + /****** Adaptor3d_CurveOnSurface::Adaptor3d_CurveOnSurface ******/ + /****** md5 signature: 43855c057bcf63a011b7ed029a6545e6 ******/ %feature("compactdefaultargs") Adaptor3d_CurveOnSurface; %feature("autodoc", " Parameters @@ -2956,8 +2956,8 @@ No available documentation. ") Adaptor3d_CurveOnSurface; Adaptor3d_CurveOnSurface(const opencascade::handle & S); - /****************** Adaptor3d_CurveOnSurface ******************/ - /**** md5 signature: b05d3f0d46c0fd08ffcffadc70a4838b ****/ + /****** Adaptor3d_CurveOnSurface::Adaptor3d_CurveOnSurface ******/ + /****** md5 signature: b05d3f0d46c0fd08ffcffadc70a4838b ******/ %feature("compactdefaultargs") Adaptor3d_CurveOnSurface; %feature("autodoc", " Parameters @@ -2975,8 +2975,8 @@ Creates a curveonsurface from the 2d curve and the surface . ") Adaptor3d_CurveOnSurface; Adaptor3d_CurveOnSurface(const opencascade::handle & C, const opencascade::handle & S); - /****************** BSpline ******************/ - /**** md5 signature: 3ccc0d851302bffb5de6344e3eb3e58d ****/ + /****** Adaptor3d_CurveOnSurface::BSpline ******/ + /****** md5 signature: 3ccc0d851302bffb5de6344e3eb3e58d ******/ %feature("compactdefaultargs") BSpline; %feature("autodoc", "Return ------- @@ -2988,8 +2988,8 @@ No available documentation. ") BSpline; opencascade::handle BSpline(); - /****************** Bezier ******************/ - /**** md5 signature: 092280fc6ee0e7104fbbe3460d73e83c ****/ + /****** Adaptor3d_CurveOnSurface::Bezier ******/ + /****** md5 signature: 092280fc6ee0e7104fbbe3460d73e83c ******/ %feature("compactdefaultargs") Bezier; %feature("autodoc", "Return ------- @@ -3001,8 +3001,8 @@ No available documentation. ") Bezier; opencascade::handle Bezier(); - /****************** ChangeCurve ******************/ - /**** md5 signature: 0751d1f9e5791d4ab52f473cba6aa712 ****/ + /****** Adaptor3d_CurveOnSurface::ChangeCurve ******/ + /****** md5 signature: 0751d1f9e5791d4ab52f473cba6aa712 ******/ %feature("compactdefaultargs") ChangeCurve; %feature("autodoc", "Return ------- @@ -3014,8 +3014,8 @@ No available documentation. ") ChangeCurve; opencascade::handle & ChangeCurve(); - /****************** ChangeSurface ******************/ - /**** md5 signature: b8c30fe30999884649c5e492e4d3ae1b ****/ + /****** Adaptor3d_CurveOnSurface::ChangeSurface ******/ + /****** md5 signature: b8c30fe30999884649c5e492e4d3ae1b ******/ %feature("compactdefaultargs") ChangeSurface; %feature("autodoc", "Return ------- @@ -3027,8 +3027,8 @@ No available documentation. ") ChangeSurface; opencascade::handle & ChangeSurface(); - /****************** Circle ******************/ - /**** md5 signature: 5f382e7a6af009845ea6e16d54814298 ****/ + /****** Adaptor3d_CurveOnSurface::Circle ******/ + /****** md5 signature: 5f382e7a6af009845ea6e16d54814298 ******/ %feature("compactdefaultargs") Circle; %feature("autodoc", "Return ------- @@ -3040,8 +3040,8 @@ No available documentation. ") Circle; gp_Circ Circle(); - /****************** Continuity ******************/ - /**** md5 signature: 9381b370dfdd50af7f1b79ce202f0c6f ****/ + /****** Adaptor3d_CurveOnSurface::Continuity ******/ + /****** md5 signature: 9381b370dfdd50af7f1b79ce202f0c6f ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", "Return ------- @@ -3053,8 +3053,8 @@ No available documentation. ") Continuity; GeomAbs_Shape Continuity(); - /****************** D0 ******************/ - /**** md5 signature: 5f7d08d8d17afc516aac9ef64bf9711f ****/ + /****** Adaptor3d_CurveOnSurface::D0 ******/ + /****** md5 signature: 5f7d08d8d17afc516aac9ef64bf9711f ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -3072,8 +3072,8 @@ Computes the point of parameter u on the curve. ") D0; void D0(const Standard_Real U, gp_Pnt & P); - /****************** D1 ******************/ - /**** md5 signature: 1dc830ec49a945a61cde5e5c027b78d7 ****/ + /****** Adaptor3d_CurveOnSurface::D1 ******/ + /****** md5 signature: 1dc830ec49a945a61cde5e5c027b78d7 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -3092,8 +3092,8 @@ Computes the point of parameter u on the curve with its first derivative. raised ") D1; void D1(const Standard_Real U, gp_Pnt & P, gp_Vec & V); - /****************** D2 ******************/ - /**** md5 signature: a694b4ba68c0fd83fbac79f945cb5d8c ****/ + /****** Adaptor3d_CurveOnSurface::D2 ******/ + /****** md5 signature: a694b4ba68c0fd83fbac79f945cb5d8c ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -3113,8 +3113,8 @@ Returns the point p of parameter u, the first and second derivatives v1 and v2. ") D2; void D2(const Standard_Real U, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2); - /****************** D3 ******************/ - /**** md5 signature: cf1c3b5fe7af9d5c183c1b16b21c43f1 ****/ + /****** Adaptor3d_CurveOnSurface::D3 ******/ + /****** md5 signature: cf1c3b5fe7af9d5c183c1b16b21c43f1 ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -3135,8 +3135,8 @@ Returns the point p of parameter u, the first, the second and the third derivati ") D3; void D3(const Standard_Real U, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2, gp_Vec & V3); - /****************** DN ******************/ - /**** md5 signature: 0d4a3e2fc2b4b03d2a49e0796a487efb ****/ + /****** Adaptor3d_CurveOnSurface::DN ******/ + /****** md5 signature: 0d4a3e2fc2b4b03d2a49e0796a487efb ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -3154,8 +3154,8 @@ The returned vector gives the value of the derivative for the order of derivatio ") DN; gp_Vec DN(const Standard_Real U, const Standard_Integer N); - /****************** Degree ******************/ - /**** md5 signature: 5ce473e72cc7bb935a667f4c839dab09 ****/ + /****** Adaptor3d_CurveOnSurface::Degree ******/ + /****** md5 signature: 5ce473e72cc7bb935a667f4c839dab09 ******/ %feature("compactdefaultargs") Degree; %feature("autodoc", "Return ------- @@ -3167,8 +3167,8 @@ No available documentation. ") Degree; Standard_Integer Degree(); - /****************** Ellipse ******************/ - /**** md5 signature: e9a77f14e9bbca29370202de404ea9c1 ****/ + /****** Adaptor3d_CurveOnSurface::Ellipse ******/ + /****** md5 signature: e9a77f14e9bbca29370202de404ea9c1 ******/ %feature("compactdefaultargs") Ellipse; %feature("autodoc", "Return ------- @@ -3180,8 +3180,8 @@ No available documentation. ") Ellipse; gp_Elips Ellipse(); - /****************** FirstParameter ******************/ - /**** md5 signature: eb9ebe94572bd67588fe8811eac261fb ****/ + /****** Adaptor3d_CurveOnSurface::FirstParameter ******/ + /****** md5 signature: eb9ebe94572bd67588fe8811eac261fb ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", "Return ------- @@ -3193,8 +3193,8 @@ No available documentation. ") FirstParameter; Standard_Real FirstParameter(); - /****************** GetCurve ******************/ - /**** md5 signature: 59faf580a052d0534228f92dbc8fa8ec ****/ + /****** Adaptor3d_CurveOnSurface::GetCurve ******/ + /****** md5 signature: 59faf580a052d0534228f92dbc8fa8ec ******/ %feature("compactdefaultargs") GetCurve; %feature("autodoc", "Return ------- @@ -3206,8 +3206,8 @@ No available documentation. ") GetCurve; const opencascade::handle & GetCurve(); - /****************** GetSurface ******************/ - /**** md5 signature: 56dff0248d5d8fc9e2bd341c8dad1556 ****/ + /****** Adaptor3d_CurveOnSurface::GetSurface ******/ + /****** md5 signature: 56dff0248d5d8fc9e2bd341c8dad1556 ******/ %feature("compactdefaultargs") GetSurface; %feature("autodoc", "Return ------- @@ -3219,8 +3219,8 @@ No available documentation. ") GetSurface; const opencascade::handle & GetSurface(); - /****************** GetType ******************/ - /**** md5 signature: 0ad61dcbb5497908c1b536e766f0fcb9 ****/ + /****** Adaptor3d_CurveOnSurface::GetType ******/ + /****** md5 signature: 0ad61dcbb5497908c1b536e766f0fcb9 ******/ %feature("compactdefaultargs") GetType; %feature("autodoc", "Return ------- @@ -3232,8 +3232,8 @@ Returns the type of the curve in the current interval: line, circle, ellipse, hy ") GetType; GeomAbs_CurveType GetType(); - /****************** Hyperbola ******************/ - /**** md5 signature: a96ca49b2ad017b35bb09d0b86cb690d ****/ + /****** Adaptor3d_CurveOnSurface::Hyperbola ******/ + /****** md5 signature: a96ca49b2ad017b35bb09d0b86cb690d ******/ %feature("compactdefaultargs") Hyperbola; %feature("autodoc", "Return ------- @@ -3245,8 +3245,8 @@ No available documentation. ") Hyperbola; gp_Hypr Hyperbola(); - /****************** Intervals ******************/ - /**** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ****/ + /****** Adaptor3d_CurveOnSurface::Intervals ******/ + /****** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -3264,8 +3264,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsClosed ******************/ - /**** md5 signature: 00978070ec4cb5f00d1d002a8d5d3763 ****/ + /****** Adaptor3d_CurveOnSurface::IsClosed ******/ + /****** md5 signature: 00978070ec4cb5f00d1d002a8d5d3763 ******/ %feature("compactdefaultargs") IsClosed; %feature("autodoc", "Return ------- @@ -3277,8 +3277,8 @@ No available documentation. ") IsClosed; Standard_Boolean IsClosed(); - /****************** IsPeriodic ******************/ - /**** md5 signature: 15e3ccfd3ad4ae42959489f7f64aa8ca ****/ + /****** Adaptor3d_CurveOnSurface::IsPeriodic ******/ + /****** md5 signature: 15e3ccfd3ad4ae42959489f7f64aa8ca ******/ %feature("compactdefaultargs") IsPeriodic; %feature("autodoc", "Return ------- @@ -3290,8 +3290,8 @@ No available documentation. ") IsPeriodic; Standard_Boolean IsPeriodic(); - /****************** IsRational ******************/ - /**** md5 signature: 82ca56fad113156125f40128b25c0d8e ****/ + /****** Adaptor3d_CurveOnSurface::IsRational ******/ + /****** md5 signature: 82ca56fad113156125f40128b25c0d8e ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -3303,8 +3303,8 @@ No available documentation. ") IsRational; Standard_Boolean IsRational(); - /****************** LastParameter ******************/ - /**** md5 signature: cb4925a2d4a451ceec8f6ad486530f9c ****/ + /****** Adaptor3d_CurveOnSurface::LastParameter ******/ + /****** md5 signature: cb4925a2d4a451ceec8f6ad486530f9c ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", "Return ------- @@ -3316,8 +3316,8 @@ No available documentation. ") LastParameter; Standard_Real LastParameter(); - /****************** Line ******************/ - /**** md5 signature: cf28f5541e4e744dd8038e2a9ac75a8f ****/ + /****** Adaptor3d_CurveOnSurface::Line ******/ + /****** md5 signature: cf28f5541e4e744dd8038e2a9ac75a8f ******/ %feature("compactdefaultargs") Line; %feature("autodoc", "Return ------- @@ -3329,8 +3329,8 @@ No available documentation. ") Line; gp_Lin Line(); - /****************** Load ******************/ - /**** md5 signature: 5fdedc45f7f3e3286603c8152dd5d5ba ****/ + /****** Adaptor3d_CurveOnSurface::Load ******/ + /****** md5 signature: 5fdedc45f7f3e3286603c8152dd5d5ba ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -3347,8 +3347,8 @@ Changes the surface. ") Load; void Load(const opencascade::handle & S); - /****************** Load ******************/ - /**** md5 signature: ddca440597e53b1ed736274984f99921 ****/ + /****** Adaptor3d_CurveOnSurface::Load ******/ + /****** md5 signature: ddca440597e53b1ed736274984f99921 ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -3365,8 +3365,8 @@ Changes the 2d curve. ") Load; void Load(const opencascade::handle & C); - /****************** Load ******************/ - /**** md5 signature: 30aac2c787964491ce82a24360e0e4be ****/ + /****** Adaptor3d_CurveOnSurface::Load ******/ + /****** md5 signature: 30aac2c787964491ce82a24360e0e4be ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -3384,8 +3384,8 @@ Load both curve and surface. ") Load; void Load(const opencascade::handle & C, const opencascade::handle & S); - /****************** NbIntervals ******************/ - /**** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ****/ + /****** Adaptor3d_CurveOnSurface::NbIntervals ******/ + /****** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -3402,8 +3402,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** NbKnots ******************/ - /**** md5 signature: 841663cbf96bec3b939f307c52df6c7c ****/ + /****** Adaptor3d_CurveOnSurface::NbKnots ******/ + /****** md5 signature: 841663cbf96bec3b939f307c52df6c7c ******/ %feature("compactdefaultargs") NbKnots; %feature("autodoc", "Return ------- @@ -3415,8 +3415,8 @@ No available documentation. ") NbKnots; Standard_Integer NbKnots(); - /****************** NbPoles ******************/ - /**** md5 signature: 52e5fadf897540545847ef59cc0ba942 ****/ + /****** Adaptor3d_CurveOnSurface::NbPoles ******/ + /****** md5 signature: 52e5fadf897540545847ef59cc0ba942 ******/ %feature("compactdefaultargs") NbPoles; %feature("autodoc", "Return ------- @@ -3428,8 +3428,8 @@ No available documentation. ") NbPoles; Standard_Integer NbPoles(); - /****************** Parabola ******************/ - /**** md5 signature: 68860abab63fd184ea5c7eb97f0762c1 ****/ + /****** Adaptor3d_CurveOnSurface::Parabola ******/ + /****** md5 signature: 68860abab63fd184ea5c7eb97f0762c1 ******/ %feature("compactdefaultargs") Parabola; %feature("autodoc", "Return ------- @@ -3441,8 +3441,8 @@ No available documentation. ") Parabola; gp_Parab Parabola(); - /****************** Period ******************/ - /**** md5 signature: 88909a321398632744c0d6841580c626 ****/ + /****** Adaptor3d_CurveOnSurface::Period ******/ + /****** md5 signature: 88909a321398632744c0d6841580c626 ******/ %feature("compactdefaultargs") Period; %feature("autodoc", "Return ------- @@ -3454,8 +3454,8 @@ No available documentation. ") Period; Standard_Real Period(); - /****************** Resolution ******************/ - /**** md5 signature: cc4a4d9111fadd20ad48e62bc4df1579 ****/ + /****** Adaptor3d_CurveOnSurface::Resolution ******/ + /****** md5 signature: cc4a4d9111fadd20ad48e62bc4df1579 ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -3472,8 +3472,8 @@ Returns the parametric resolution corresponding to the real space resolution ShallowCopy(); - /****************** Trim ******************/ - /**** md5 signature: 40a46ffe7379c6d919968b501b8343a5 ****/ + /****** Adaptor3d_CurveOnSurface::Trim ******/ + /****** md5 signature: 40a46ffe7379c6d919968b501b8343a5 ******/ %feature("compactdefaultargs") Trim; %feature("autodoc", " Parameters @@ -3505,8 +3505,8 @@ Returns a curve equivalent of between parameters and . Trim(const Standard_Real First, const Standard_Real Last, const Standard_Real Tol); - /****************** Value ******************/ - /**** md5 signature: d7f310c73762cbaa285ace0a141bc7bf ****/ + /****** Adaptor3d_CurveOnSurface::Value ******/ + /****** md5 signature: d7f310c73762cbaa285ace0a141bc7bf ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -3539,8 +3539,8 @@ Computes the point of parameter u on the curve. ***************************/ class Adaptor3d_IsoCurve : public Adaptor3d_Curve { public: - /****************** Adaptor3d_IsoCurve ******************/ - /**** md5 signature: cb862f00a186757c14cd5025f695a90c ****/ + /****** Adaptor3d_IsoCurve::Adaptor3d_IsoCurve ******/ + /****** md5 signature: cb862f00a186757c14cd5025f695a90c ******/ %feature("compactdefaultargs") Adaptor3d_IsoCurve; %feature("autodoc", "Return ------- @@ -3552,8 +3552,8 @@ The iso is set to noneiso. ") Adaptor3d_IsoCurve; Adaptor3d_IsoCurve(); - /****************** Adaptor3d_IsoCurve ******************/ - /**** md5 signature: 607c0557eaedda13d060731388d0c004 ****/ + /****** Adaptor3d_IsoCurve::Adaptor3d_IsoCurve ******/ + /****** md5 signature: 607c0557eaedda13d060731388d0c004 ******/ %feature("compactdefaultargs") Adaptor3d_IsoCurve; %feature("autodoc", " Parameters @@ -3570,8 +3570,8 @@ The surface is loaded. the iso is set to noneiso. ") Adaptor3d_IsoCurve; Adaptor3d_IsoCurve(const opencascade::handle & S); - /****************** Adaptor3d_IsoCurve ******************/ - /**** md5 signature: bfbcfabf7a1c156890f141f7adbff1f4 ****/ + /****** Adaptor3d_IsoCurve::Adaptor3d_IsoCurve ******/ + /****** md5 signature: bfbcfabf7a1c156890f141f7adbff1f4 ******/ %feature("compactdefaultargs") Adaptor3d_IsoCurve; %feature("autodoc", " Parameters @@ -3590,8 +3590,8 @@ Creates an isocurve curve. iso defines the type (isou or isou) param defines the ") Adaptor3d_IsoCurve; Adaptor3d_IsoCurve(const opencascade::handle & S, const GeomAbs_IsoType Iso, const Standard_Real Param); - /****************** Adaptor3d_IsoCurve ******************/ - /**** md5 signature: e4dee8adea539086aa810249d6783f57 ****/ + /****** Adaptor3d_IsoCurve::Adaptor3d_IsoCurve ******/ + /****** md5 signature: e4dee8adea539086aa810249d6783f57 ******/ %feature("compactdefaultargs") Adaptor3d_IsoCurve; %feature("autodoc", " Parameters @@ -3612,8 +3612,8 @@ Create an isocurve curve. iso defines the type (isou or isov). param defines the ") Adaptor3d_IsoCurve; Adaptor3d_IsoCurve(const opencascade::handle & S, const GeomAbs_IsoType Iso, const Standard_Real Param, const Standard_Real WFirst, const Standard_Real WLast); - /****************** BSpline ******************/ - /**** md5 signature: 3ccc0d851302bffb5de6344e3eb3e58d ****/ + /****** Adaptor3d_IsoCurve::BSpline ******/ + /****** md5 signature: 3ccc0d851302bffb5de6344e3eb3e58d ******/ %feature("compactdefaultargs") BSpline; %feature("autodoc", "Return ------- @@ -3625,8 +3625,8 @@ No available documentation. ") BSpline; opencascade::handle BSpline(); - /****************** Bezier ******************/ - /**** md5 signature: 092280fc6ee0e7104fbbe3460d73e83c ****/ + /****** Adaptor3d_IsoCurve::Bezier ******/ + /****** md5 signature: 092280fc6ee0e7104fbbe3460d73e83c ******/ %feature("compactdefaultargs") Bezier; %feature("autodoc", "Return ------- @@ -3638,8 +3638,8 @@ No available documentation. ") Bezier; opencascade::handle Bezier(); - /****************** Circle ******************/ - /**** md5 signature: 5f382e7a6af009845ea6e16d54814298 ****/ + /****** Adaptor3d_IsoCurve::Circle ******/ + /****** md5 signature: 5f382e7a6af009845ea6e16d54814298 ******/ %feature("compactdefaultargs") Circle; %feature("autodoc", "Return ------- @@ -3651,8 +3651,8 @@ No available documentation. ") Circle; gp_Circ Circle(); - /****************** Continuity ******************/ - /**** md5 signature: 9381b370dfdd50af7f1b79ce202f0c6f ****/ + /****** Adaptor3d_IsoCurve::Continuity ******/ + /****** md5 signature: 9381b370dfdd50af7f1b79ce202f0c6f ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", "Return ------- @@ -3664,8 +3664,8 @@ No available documentation. ") Continuity; GeomAbs_Shape Continuity(); - /****************** D0 ******************/ - /**** md5 signature: 5f7d08d8d17afc516aac9ef64bf9711f ****/ + /****** Adaptor3d_IsoCurve::D0 ******/ + /****** md5 signature: 5f7d08d8d17afc516aac9ef64bf9711f ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -3683,8 +3683,8 @@ Computes the point of parameter u on the curve. ") D0; void D0(const Standard_Real U, gp_Pnt & P); - /****************** D1 ******************/ - /**** md5 signature: 1dc830ec49a945a61cde5e5c027b78d7 ****/ + /****** Adaptor3d_IsoCurve::D1 ******/ + /****** md5 signature: 1dc830ec49a945a61cde5e5c027b78d7 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -3703,8 +3703,8 @@ Computes the point of parameter u on the curve with its first derivative. raised ") D1; void D1(const Standard_Real U, gp_Pnt & P, gp_Vec & V); - /****************** D2 ******************/ - /**** md5 signature: a694b4ba68c0fd83fbac79f945cb5d8c ****/ + /****** Adaptor3d_IsoCurve::D2 ******/ + /****** md5 signature: a694b4ba68c0fd83fbac79f945cb5d8c ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -3724,8 +3724,8 @@ Returns the point p of parameter u, the first and second derivatives v1 and v2. ") D2; void D2(const Standard_Real U, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2); - /****************** D3 ******************/ - /**** md5 signature: cf1c3b5fe7af9d5c183c1b16b21c43f1 ****/ + /****** Adaptor3d_IsoCurve::D3 ******/ + /****** md5 signature: cf1c3b5fe7af9d5c183c1b16b21c43f1 ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -3746,8 +3746,8 @@ Returns the point p of parameter u, the first, the second and the third derivati ") D3; void D3(const Standard_Real U, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2, gp_Vec & V3); - /****************** DN ******************/ - /**** md5 signature: 0d4a3e2fc2b4b03d2a49e0796a487efb ****/ + /****** Adaptor3d_IsoCurve::DN ******/ + /****** md5 signature: 0d4a3e2fc2b4b03d2a49e0796a487efb ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -3765,8 +3765,8 @@ The returned vector gives the value of the derivative for the order of derivatio ") DN; gp_Vec DN(const Standard_Real U, const Standard_Integer N); - /****************** Degree ******************/ - /**** md5 signature: 5ce473e72cc7bb935a667f4c839dab09 ****/ + /****** Adaptor3d_IsoCurve::Degree ******/ + /****** md5 signature: 5ce473e72cc7bb935a667f4c839dab09 ******/ %feature("compactdefaultargs") Degree; %feature("autodoc", "Return ------- @@ -3778,8 +3778,8 @@ No available documentation. ") Degree; Standard_Integer Degree(); - /****************** Ellipse ******************/ - /**** md5 signature: e9a77f14e9bbca29370202de404ea9c1 ****/ + /****** Adaptor3d_IsoCurve::Ellipse ******/ + /****** md5 signature: e9a77f14e9bbca29370202de404ea9c1 ******/ %feature("compactdefaultargs") Ellipse; %feature("autodoc", "Return ------- @@ -3791,8 +3791,8 @@ No available documentation. ") Ellipse; gp_Elips Ellipse(); - /****************** FirstParameter ******************/ - /**** md5 signature: 93c381754667baab23468a195644e410 ****/ + /****** Adaptor3d_IsoCurve::FirstParameter ******/ + /****** md5 signature: 93c381754667baab23468a195644e410 ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", "Return ------- @@ -3804,8 +3804,8 @@ No available documentation. ") FirstParameter; virtual Standard_Real FirstParameter(); - /****************** GetType ******************/ - /**** md5 signature: 0ad61dcbb5497908c1b536e766f0fcb9 ****/ + /****** Adaptor3d_IsoCurve::GetType ******/ + /****** md5 signature: 0ad61dcbb5497908c1b536e766f0fcb9 ******/ %feature("compactdefaultargs") GetType; %feature("autodoc", "Return ------- @@ -3817,8 +3817,8 @@ Returns the type of the curve in the current interval: line, circle, ellipse, hy ") GetType; GeomAbs_CurveType GetType(); - /****************** Hyperbola ******************/ - /**** md5 signature: a96ca49b2ad017b35bb09d0b86cb690d ****/ + /****** Adaptor3d_IsoCurve::Hyperbola ******/ + /****** md5 signature: a96ca49b2ad017b35bb09d0b86cb690d ******/ %feature("compactdefaultargs") Hyperbola; %feature("autodoc", "Return ------- @@ -3830,8 +3830,8 @@ No available documentation. ") Hyperbola; gp_Hypr Hyperbola(); - /****************** Intervals ******************/ - /**** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ****/ + /****** Adaptor3d_IsoCurve::Intervals ******/ + /****** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -3849,8 +3849,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsClosed ******************/ - /**** md5 signature: 00978070ec4cb5f00d1d002a8d5d3763 ****/ + /****** Adaptor3d_IsoCurve::IsClosed ******/ + /****** md5 signature: 00978070ec4cb5f00d1d002a8d5d3763 ******/ %feature("compactdefaultargs") IsClosed; %feature("autodoc", "Return ------- @@ -3862,8 +3862,8 @@ No available documentation. ") IsClosed; Standard_Boolean IsClosed(); - /****************** IsPeriodic ******************/ - /**** md5 signature: 15e3ccfd3ad4ae42959489f7f64aa8ca ****/ + /****** Adaptor3d_IsoCurve::IsPeriodic ******/ + /****** md5 signature: 15e3ccfd3ad4ae42959489f7f64aa8ca ******/ %feature("compactdefaultargs") IsPeriodic; %feature("autodoc", "Return ------- @@ -3875,8 +3875,8 @@ No available documentation. ") IsPeriodic; Standard_Boolean IsPeriodic(); - /****************** IsRational ******************/ - /**** md5 signature: 82ca56fad113156125f40128b25c0d8e ****/ + /****** Adaptor3d_IsoCurve::IsRational ******/ + /****** md5 signature: 82ca56fad113156125f40128b25c0d8e ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -3888,8 +3888,8 @@ No available documentation. ") IsRational; Standard_Boolean IsRational(); - /****************** Iso ******************/ - /**** md5 signature: ab18592b64592fda4c22a1eda51e637d ****/ + /****** Adaptor3d_IsoCurve::Iso ******/ + /****** md5 signature: ab18592b64592fda4c22a1eda51e637d ******/ %feature("compactdefaultargs") Iso; %feature("autodoc", "Return ------- @@ -3901,8 +3901,8 @@ No available documentation. ") Iso; GeomAbs_IsoType Iso(); - /****************** LastParameter ******************/ - /**** md5 signature: a2893a92f9c4af09acb0cd59d959d964 ****/ + /****** Adaptor3d_IsoCurve::LastParameter ******/ + /****** md5 signature: a2893a92f9c4af09acb0cd59d959d964 ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", "Return ------- @@ -3914,8 +3914,8 @@ No available documentation. ") LastParameter; virtual Standard_Real LastParameter(); - /****************** Line ******************/ - /**** md5 signature: cf28f5541e4e744dd8038e2a9ac75a8f ****/ + /****** Adaptor3d_IsoCurve::Line ******/ + /****** md5 signature: cf28f5541e4e744dd8038e2a9ac75a8f ******/ %feature("compactdefaultargs") Line; %feature("autodoc", "Return ------- @@ -3927,8 +3927,8 @@ No available documentation. ") Line; gp_Lin Line(); - /****************** Load ******************/ - /**** md5 signature: 5fdedc45f7f3e3286603c8152dd5d5ba ****/ + /****** Adaptor3d_IsoCurve::Load ******/ + /****** md5 signature: 5fdedc45f7f3e3286603c8152dd5d5ba ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -3945,8 +3945,8 @@ Changes the surface. the iso is reset to noneiso. ") Load; void Load(const opencascade::handle & S); - /****************** Load ******************/ - /**** md5 signature: 66ff0843f86cebdbf3cebf29ed66e909 ****/ + /****** Adaptor3d_IsoCurve::Load ******/ + /****** md5 signature: 66ff0843f86cebdbf3cebf29ed66e909 ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -3964,8 +3964,8 @@ Changes the iso on the current surface. ") Load; void Load(const GeomAbs_IsoType Iso, const Standard_Real Param); - /****************** Load ******************/ - /**** md5 signature: ce2acdffae7f9f3edf3c676305191098 ****/ + /****** Adaptor3d_IsoCurve::Load ******/ + /****** md5 signature: ce2acdffae7f9f3edf3c676305191098 ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -3985,8 +3985,8 @@ Changes the iso on the current surface. ") Load; void Load(const GeomAbs_IsoType Iso, const Standard_Real Param, const Standard_Real WFirst, const Standard_Real WLast); - /****************** NbIntervals ******************/ - /**** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ****/ + /****** Adaptor3d_IsoCurve::NbIntervals ******/ + /****** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -4003,8 +4003,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** NbKnots ******************/ - /**** md5 signature: 841663cbf96bec3b939f307c52df6c7c ****/ + /****** Adaptor3d_IsoCurve::NbKnots ******/ + /****** md5 signature: 841663cbf96bec3b939f307c52df6c7c ******/ %feature("compactdefaultargs") NbKnots; %feature("autodoc", "Return ------- @@ -4016,8 +4016,8 @@ No available documentation. ") NbKnots; Standard_Integer NbKnots(); - /****************** NbPoles ******************/ - /**** md5 signature: 52e5fadf897540545847ef59cc0ba942 ****/ + /****** Adaptor3d_IsoCurve::NbPoles ******/ + /****** md5 signature: 52e5fadf897540545847ef59cc0ba942 ******/ %feature("compactdefaultargs") NbPoles; %feature("autodoc", "Return ------- @@ -4029,8 +4029,8 @@ No available documentation. ") NbPoles; Standard_Integer NbPoles(); - /****************** Parabola ******************/ - /**** md5 signature: 68860abab63fd184ea5c7eb97f0762c1 ****/ + /****** Adaptor3d_IsoCurve::Parabola ******/ + /****** md5 signature: 68860abab63fd184ea5c7eb97f0762c1 ******/ %feature("compactdefaultargs") Parabola; %feature("autodoc", "Return ------- @@ -4042,8 +4042,8 @@ No available documentation. ") Parabola; gp_Parab Parabola(); - /****************** Parameter ******************/ - /**** md5 signature: a1c30d1196ee452cd8e422f1e25a0fbc ****/ + /****** Adaptor3d_IsoCurve::Parameter ******/ + /****** md5 signature: a1c30d1196ee452cd8e422f1e25a0fbc ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", "Return ------- @@ -4055,8 +4055,8 @@ No available documentation. ") Parameter; Standard_Real Parameter(); - /****************** Period ******************/ - /**** md5 signature: 88909a321398632744c0d6841580c626 ****/ + /****** Adaptor3d_IsoCurve::Period ******/ + /****** md5 signature: 88909a321398632744c0d6841580c626 ******/ %feature("compactdefaultargs") Period; %feature("autodoc", "Return ------- @@ -4068,8 +4068,8 @@ No available documentation. ") Period; Standard_Real Period(); - /****************** Resolution ******************/ - /**** md5 signature: cc4a4d9111fadd20ad48e62bc4df1579 ****/ + /****** Adaptor3d_IsoCurve::Resolution ******/ + /****** md5 signature: cc4a4d9111fadd20ad48e62bc4df1579 ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -4086,8 +4086,8 @@ Returns the parametric resolution corresponding to the real space resolution ShallowCopy(); - /****************** Surface ******************/ - /**** md5 signature: 36b438ec6a4fa276d7bb47e4d8b0376a ****/ + /****** Adaptor3d_IsoCurve::Surface ******/ + /****** md5 signature: 36b438ec6a4fa276d7bb47e4d8b0376a ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", "Return ------- @@ -4112,8 +4112,8 @@ No available documentation. ") Surface; const opencascade::handle & Surface(); - /****************** Trim ******************/ - /**** md5 signature: 40a46ffe7379c6d919968b501b8343a5 ****/ + /****** Adaptor3d_IsoCurve::Trim ******/ + /****** md5 signature: 40a46ffe7379c6d919968b501b8343a5 ******/ %feature("compactdefaultargs") Trim; %feature("autodoc", " Parameters @@ -4132,8 +4132,8 @@ Returns a curve equivalent of between parameters and . Trim(const Standard_Real First, const Standard_Real Last, const Standard_Real Tol); - /****************** Value ******************/ - /**** md5 signature: d7f310c73762cbaa285ace0a141bc7bf ****/ + /****** Adaptor3d_IsoCurve::Value ******/ + /****** md5 signature: d7f310c73762cbaa285ace0a141bc7bf ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/AdvApp2Var.i b/src/SWIG_files/wrapper/AdvApp2Var.i index 6127dbfbe..9ac2a70a1 100644 --- a/src/SWIG_files/wrapper/AdvApp2Var.i +++ b/src/SWIG_files/wrapper/AdvApp2Var.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define ADVAPP2VARDOCSTRING "AdvApp2Var module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_advapp2var.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_advapp2var.html" %enddef %module (package="OCC.Core", docstring=ADVAPP2VARDOCSTRING) AdvApp2Var @@ -179,8 +179,8 @@ typedef unsigned long long ulongint; ***********************************/ class AdvApp2Var_ApproxAFunc2Var { public: - /****************** AdvApp2Var_ApproxAFunc2Var ******************/ - /**** md5 signature: 6379ab64b1b4c1e0c124bdc6f7c7f799 ****/ + /****** AdvApp2Var_ApproxAFunc2Var::AdvApp2Var_ApproxAFunc2Var ******/ + /****** md5 signature: 6379ab64b1b4c1e0c124bdc6f7c7f799 ******/ %feature("compactdefaultargs") AdvApp2Var_ApproxAFunc2Var; %feature("autodoc", " Parameters @@ -219,8 +219,8 @@ No available documentation. ") AdvApp2Var_ApproxAFunc2Var; AdvApp2Var_ApproxAFunc2Var(const Standard_Integer Num1DSS, const Standard_Integer Num2DSS, const Standard_Integer Num3DSS, const opencascade::handle & OneDTol, const opencascade::handle & TwoDTol, const opencascade::handle & ThreeDTol, const opencascade::handle & OneDTolFr, const opencascade::handle & TwoDTolFr, const opencascade::handle & ThreeDTolFr, const Standard_Real FirstInU, const Standard_Real LastInU, const Standard_Real FirstInV, const Standard_Real LastInV, const GeomAbs_IsoType FavorIso, const GeomAbs_Shape ContInU, const GeomAbs_Shape ContInV, const Standard_Integer PrecisCode, const Standard_Integer MaxDegInU, const Standard_Integer MaxDegInV, const Standard_Integer MaxPatch, const AdvApp2Var_EvaluatorFunc2Var & Func, AdvApprox_Cutting & UChoice, AdvApprox_Cutting & VChoice); - /****************** AdvApp2Var_ApproxAFunc2Var ******************/ - /**** md5 signature: cb5f144bc0526b9241a11be61366792e ****/ + /****** AdvApp2Var_ApproxAFunc2Var::AdvApp2Var_ApproxAFunc2Var ******/ + /****** md5 signature: cb5f144bc0526b9241a11be61366792e ******/ %feature("compactdefaultargs") AdvApp2Var_ApproxAFunc2Var; %feature("autodoc", " Parameters @@ -260,8 +260,8 @@ No available documentation. ") AdvApp2Var_ApproxAFunc2Var; AdvApp2Var_ApproxAFunc2Var(const Standard_Integer Num1DSS, const Standard_Integer Num2DSS, const Standard_Integer Num3DSS, const opencascade::handle & OneDTol, const opencascade::handle & TwoDTol, const opencascade::handle & ThreeDTol, const opencascade::handle & OneDTolFr, const opencascade::handle & TwoDTolFr, const opencascade::handle & ThreeDTolFr, const Standard_Real FirstInU, const Standard_Real LastInU, const Standard_Real FirstInV, const Standard_Real LastInV, const GeomAbs_IsoType FavorIso, const GeomAbs_Shape ContInU, const GeomAbs_Shape ContInV, const Standard_Integer PrecisCode, const Standard_Integer MaxDegInU, const Standard_Integer MaxDegInV, const Standard_Integer MaxPatch, const AdvApp2Var_EvaluatorFunc2Var & Func, const AdvApp2Var_Criterion & Crit, AdvApprox_Cutting & UChoice, AdvApprox_Cutting & VChoice); - /****************** AverageError ******************/ - /**** md5 signature: d3a5b5e32b36bc7e79202cfa1abaedbe ****/ + /****** AdvApp2Var_ApproxAFunc2Var::AverageError ******/ + /****** md5 signature: d3a5b5e32b36bc7e79202cfa1abaedbe ******/ %feature("compactdefaultargs") AverageError; %feature("autodoc", " Parameters @@ -278,8 +278,8 @@ Returns the average errors. ") AverageError; opencascade::handle AverageError(const Standard_Integer Dimension); - /****************** AverageError ******************/ - /**** md5 signature: b46c820432bcb3498c5c88e842dca097 ****/ + /****** AdvApp2Var_ApproxAFunc2Var::AverageError ******/ + /****** md5 signature: b46c820432bcb3498c5c88e842dca097 ******/ %feature("compactdefaultargs") AverageError; %feature("autodoc", " Parameters @@ -297,8 +297,8 @@ Returns the average error of the bsplinesurface of range index. ") AverageError; Standard_Real AverageError(const Standard_Integer Dimension, const Standard_Integer Index); - /****************** CritError ******************/ - /**** md5 signature: cfeaabf78ae9cebfb4b197eb333f93f2 ****/ + /****** AdvApp2Var_ApproxAFunc2Var::CritError ******/ + /****** md5 signature: cfeaabf78ae9cebfb4b197eb333f93f2 ******/ %feature("compactdefaultargs") CritError; %feature("autodoc", " Parameters @@ -316,8 +316,8 @@ No available documentation. ") CritError; Standard_Real CritError(const Standard_Integer Dimension, const Standard_Integer Index); - /****************** Dump ******************/ - /**** md5 signature: d37b43e0b2386dc096d5d707876db157 ****/ + /****** AdvApp2Var_ApproxAFunc2Var::Dump ******/ + /****** md5 signature: d37b43e0b2386dc096d5d707876db157 ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", " Parameters @@ -333,8 +333,8 @@ Prints on the stream 'o' information on the current state of the object. ") Dump; void Dump(std::ostream &OutValue); - /****************** HasResult ******************/ - /**** md5 signature: 345d4b0f7e88f528928167976d8256d5 ****/ + /****** AdvApp2Var_ApproxAFunc2Var::HasResult ******/ + /****** md5 signature: 345d4b0f7e88f528928167976d8256d5 ******/ %feature("compactdefaultargs") HasResult; %feature("autodoc", "Return ------- @@ -346,8 +346,8 @@ True if the approximation did come out with a result that is not necessarely wit ") HasResult; Standard_Boolean HasResult(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** AdvApp2Var_ApproxAFunc2Var::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -359,8 +359,8 @@ True if the approximation succeeded within the imposed tolerances and the wished ") IsDone; Standard_Boolean IsDone(); - /****************** MaxError ******************/ - /**** md5 signature: 65f67ba992f5651ddbda653be6688fd1 ****/ + /****** AdvApp2Var_ApproxAFunc2Var::MaxError ******/ + /****** md5 signature: 65f67ba992f5651ddbda653be6688fd1 ******/ %feature("compactdefaultargs") MaxError; %feature("autodoc", " Parameters @@ -377,8 +377,8 @@ Returns the errors max. ") MaxError; opencascade::handle MaxError(const Standard_Integer Dimension); - /****************** MaxError ******************/ - /**** md5 signature: 5025e53abdc4b5b4ec15e940b792a6ea ****/ + /****** AdvApp2Var_ApproxAFunc2Var::MaxError ******/ + /****** md5 signature: 5025e53abdc4b5b4ec15e940b792a6ea ******/ %feature("compactdefaultargs") MaxError; %feature("autodoc", " Parameters @@ -396,8 +396,8 @@ Returns the error max of the bsplinesurface of range index. ") MaxError; Standard_Real MaxError(const Standard_Integer Dimension, const Standard_Integer Index); - /****************** NumSubSpaces ******************/ - /**** md5 signature: 1f04f546c1efa091a0725c4b06bc8324 ****/ + /****** AdvApp2Var_ApproxAFunc2Var::NumSubSpaces ******/ + /****** md5 signature: 1f04f546c1efa091a0725c4b06bc8324 ******/ %feature("compactdefaultargs") NumSubSpaces; %feature("autodoc", " Parameters @@ -414,8 +414,8 @@ No available documentation. ") NumSubSpaces; Standard_Integer NumSubSpaces(const Standard_Integer Dimension); - /****************** Surface ******************/ - /**** md5 signature: c06dcd87a2a0e19728e106a09c270879 ****/ + /****** AdvApp2Var_ApproxAFunc2Var::Surface ******/ + /****** md5 signature: c06dcd87a2a0e19728e106a09c270879 ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", " Parameters @@ -432,8 +432,8 @@ Returns the bsplinesurface of range index. ") Surface; opencascade::handle Surface(const Standard_Integer Index); - /****************** UDegree ******************/ - /**** md5 signature: f204e5fbf1c49e3d9e4889dfead5a190 ****/ + /****** AdvApp2Var_ApproxAFunc2Var::UDegree ******/ + /****** md5 signature: f204e5fbf1c49e3d9e4889dfead5a190 ******/ %feature("compactdefaultargs") UDegree; %feature("autodoc", "Return ------- @@ -445,8 +445,8 @@ No available documentation. ") UDegree; Standard_Integer UDegree(); - /****************** UFrontError ******************/ - /**** md5 signature: 0a65d91af85c1f21c459707f3707a4be ****/ + /****** AdvApp2Var_ApproxAFunc2Var::UFrontError ******/ + /****** md5 signature: 0a65d91af85c1f21c459707f3707a4be ******/ %feature("compactdefaultargs") UFrontError; %feature("autodoc", " Parameters @@ -463,8 +463,8 @@ Returns the errors max on ufrontiers warning: dimension must be equal to 3. ") UFrontError; opencascade::handle UFrontError(const Standard_Integer Dimension); - /****************** UFrontError ******************/ - /**** md5 signature: 7013ba67bcdab606aa7a3dff1c57a4d9 ****/ + /****** AdvApp2Var_ApproxAFunc2Var::UFrontError ******/ + /****** md5 signature: 7013ba67bcdab606aa7a3dff1c57a4d9 ******/ %feature("compactdefaultargs") UFrontError; %feature("autodoc", " Parameters @@ -482,8 +482,8 @@ Returns the error max of the bsplinesurface of range index on a ufrontier. ") UFrontError; Standard_Real UFrontError(const Standard_Integer Dimension, const Standard_Integer Index); - /****************** VDegree ******************/ - /**** md5 signature: 4901bdb3b29a5c2410ca93d6a7816f06 ****/ + /****** AdvApp2Var_ApproxAFunc2Var::VDegree ******/ + /****** md5 signature: 4901bdb3b29a5c2410ca93d6a7816f06 ******/ %feature("compactdefaultargs") VDegree; %feature("autodoc", "Return ------- @@ -495,8 +495,8 @@ No available documentation. ") VDegree; Standard_Integer VDegree(); - /****************** VFrontError ******************/ - /**** md5 signature: c67297c0cd6479a8b7b6ed44f0b54d22 ****/ + /****** AdvApp2Var_ApproxAFunc2Var::VFrontError ******/ + /****** md5 signature: c67297c0cd6479a8b7b6ed44f0b54d22 ******/ %feature("compactdefaultargs") VFrontError; %feature("autodoc", " Parameters @@ -513,8 +513,8 @@ Returns the errors max on vfrontiers warning: dimension must be equal to 3. ") VFrontError; opencascade::handle VFrontError(const Standard_Integer Dimension); - /****************** VFrontError ******************/ - /**** md5 signature: 8dd750790f1ee2230900ab6006316f3f ****/ + /****** AdvApp2Var_ApproxAFunc2Var::VFrontError ******/ + /****** md5 signature: 8dd750790f1ee2230900ab6006316f3f ******/ %feature("compactdefaultargs") VFrontError; %feature("autodoc", " Parameters @@ -546,8 +546,8 @@ Returns the error max of the bsplinesurface of range index on a vfrontier. *******************************/ class AdvApp2Var_ApproxF2var { public: - /****************** mma1her_ ******************/ - /**** md5 signature: 340a71780d0d59f85eb5ef4e22592c91 ****/ + /****** AdvApp2Var_ApproxF2var::mma1her_ ******/ + /****** md5 signature: 340a71780d0d59f85eb5ef4e22592c91 ******/ %feature("compactdefaultargs") mma1her_; %feature("autodoc", " Parameters @@ -566,8 +566,8 @@ No available documentation. ") mma1her_; static int mma1her_(const integer * , doublereal * , integer * ); - /****************** mma2ac1_ ******************/ - /**** md5 signature: 2cb2859fe6a263b9e735e90035090c4d ****/ + /****** AdvApp2Var_ApproxF2var::mma2ac1_ ******/ + /****** md5 signature: 2cb2859fe6a263b9e735e90035090c4d ******/ %feature("compactdefaultargs") mma2ac1_; %feature("autodoc", " Parameters @@ -595,8 +595,8 @@ No available documentation. ") mma2ac1_; static int mma2ac1_(const integer * , const integer * , const integer * , const integer * , const integer * , const doublereal * , const doublereal * , const doublereal * , const doublereal * , const doublereal * , const doublereal * , doublereal * ); - /****************** mma2ac2_ ******************/ - /**** md5 signature: 3fc501ea89c6f69223da0748a5067c51 ****/ + /****** AdvApp2Var_ApproxF2var::mma2ac2_ ******/ + /****** md5 signature: 3fc501ea89c6f69223da0748a5067c51 ******/ %feature("compactdefaultargs") mma2ac2_; %feature("autodoc", " Parameters @@ -623,8 +623,8 @@ No available documentation. ") mma2ac2_; static int mma2ac2_(const integer * , const integer * , const integer * , const integer * , const integer * , const integer * , const doublereal * , const integer * , const doublereal * , const doublereal * , doublereal * ); - /****************** mma2ac3_ ******************/ - /**** md5 signature: 2014e6f62c9c1b3f4638d01a4d1c8b84 ****/ + /****** AdvApp2Var_ApproxF2var::mma2ac3_ ******/ + /****** md5 signature: 2014e6f62c9c1b3f4638d01a4d1c8b84 ******/ %feature("compactdefaultargs") mma2ac3_; %feature("autodoc", " Parameters @@ -651,8 +651,8 @@ No available documentation. ") mma2ac3_; static int mma2ac3_(const integer * , const integer * , const integer * , const integer * , const integer * , const integer * , const doublereal * , const integer * , const doublereal * , const doublereal * , doublereal * ); - /****************** mma2can_ ******************/ - /**** md5 signature: 6567d45f17981e806023a3f3d386ebd4 ****/ + /****** AdvApp2Var_ApproxF2var::mma2can_ ******/ + /****** md5 signature: 6567d45f17981e806023a3f3d386ebd4 ******/ %feature("compactdefaultargs") mma2can_; %feature("autodoc", " Parameters @@ -679,8 +679,8 @@ No available documentation. ") mma2can_; static int mma2can_(const integer * , const integer * , const integer * , const integer * , const integer * , const integer * , const integer * , const doublereal * , doublereal * , doublereal * , integer * ); - /****************** mma2cdi_ ******************/ - /**** md5 signature: 6822f06275dfe10240eb63f63cb8154a ****/ + /****** AdvApp2Var_ApproxF2var::mma2cdi_ ******/ + /****** md5 signature: 6822f06275dfe10240eb63f63cb8154a ******/ %feature("compactdefaultargs") mma2cdi_; %feature("autodoc", " Parameters @@ -720,8 +720,8 @@ No available documentation. ") mma2cdi_; static int mma2cdi_(integer * ndimen, integer * nbpntu, doublereal * urootl, integer * nbpntv, doublereal * vrootl, integer * iordru, integer * iordrv, doublereal * contr1, doublereal * contr2, doublereal * contr3, doublereal * contr4, doublereal * sotbu1, doublereal * sotbu2, doublereal * ditbu1, doublereal * ditbu2, doublereal * sotbv1, doublereal * sotbv2, doublereal * ditbv1, doublereal * ditbv2, doublereal * sosotb, doublereal * soditb, doublereal * disotb, doublereal * diditb, integer * iercod); - /****************** mma2ce1_ ******************/ - /**** md5 signature: 425c3d53b101c9c0f002c96ad41e6fc3 ****/ + /****** AdvApp2Var_ApproxF2var::mma2ce1_ ******/ + /****** md5 signature: 425c3d53b101c9c0f002c96ad41e6fc3 ******/ %feature("compactdefaultargs") mma2ce1_; %feature("autodoc", " Parameters @@ -763,8 +763,8 @@ No available documentation. ") mma2ce1_; static int mma2ce1_(integer * numdec, integer * ndimen, integer * nbsesp, integer * ndimse, integer * ndminu, integer * ndminv, integer * ndguli, integer * ndgvli, integer * ndjacu, integer * ndjacv, integer * iordru, integer * iordrv, integer * nbpntu, integer * nbpntv, doublereal * epsapr, doublereal * sosotb, doublereal * disotb, doublereal * soditb, doublereal * diditb, doublereal * patjac, doublereal * errmax, doublereal * errmoy, integer * ndegpu, integer * ndegpv, integer * itydec, integer * iercod); - /****************** mma2ds1_ ******************/ - /**** md5 signature: a21bcf00d7cc3ec0c2e76dc7755429fe ****/ + /****** AdvApp2Var_ApproxF2var::mma2ds1_ ******/ + /****** md5 signature: a21bcf00d7cc3ec0c2e76dc7755429fe ******/ %feature("compactdefaultargs") mma2ds1_; %feature("autodoc", " Parameters @@ -796,8 +796,8 @@ No available documentation. ") mma2ds1_; static int mma2ds1_(integer * ndimen, doublereal * uintfn, doublereal * vintfn, const AdvApp2Var_EvaluatorFunc2Var & foncnp, integer * nbpntu, integer * nbpntv, doublereal * urootb, doublereal * vrootb, integer * isofav, doublereal * sosotb, doublereal * disotb, doublereal * soditb, doublereal * diditb, doublereal * fpntab, doublereal * ttable, integer * iercod); - /****************** mma2fnc_ ******************/ - /**** md5 signature: 18763f0e21666ad6ab99c64fb6dbb75d ****/ + /****** AdvApp2Var_ApproxF2var::mma2fnc_ ******/ + /****** md5 signature: 18763f0e21666ad6ab99c64fb6dbb75d ******/ %feature("compactdefaultargs") mma2fnc_; %feature("autodoc", " Parameters @@ -839,8 +839,8 @@ No available documentation. ") mma2fnc_; static int mma2fnc_(integer * ndimen, integer * nbsesp, integer * ndimse, doublereal * uvfonc, const AdvApp2Var_EvaluatorFunc2Var & foncnp, doublereal * tconst, integer * isofav, integer * nbroot, doublereal * rootlg, integer * iordre, integer * ideriv, integer * ndgjac, integer * nbcrmx, integer * ncflim, doublereal * epsapr, integer * ncoeff, doublereal * courbe, integer * nbcrbe, doublereal * somtab, doublereal * diftab, doublereal * contr1, doublereal * contr2, doublereal * tabdec, doublereal * errmax, doublereal * errmoy, integer * iercod); - /****************** mma2fx6_ ******************/ - /**** md5 signature: 3e9466bd52c1a918c5d9e90482550972 ****/ + /****** AdvApp2Var_ApproxF2var::mma2fx6_ ******/ + /****** md5 signature: 3e9466bd52c1a918c5d9e90482550972 ******/ %feature("compactdefaultargs") mma2fx6_; %feature("autodoc", " Parameters @@ -871,8 +871,8 @@ No available documentation. ") mma2fx6_; static int mma2fx6_(integer * ncfmxu, integer * ncfmxv, integer * ndimen, integer * nbsesp, integer * ndimse, integer * nbupat, integer * nbvpat, integer * iordru, integer * iordrv, doublereal * epsapr, doublereal * epsfro, doublereal * patcan, doublereal * errmax, integer * ncoefu, integer * ncoefv); - /****************** mma2jmx_ ******************/ - /**** md5 signature: 1d8a613ee6223c570e2deac14273a3d7 ****/ + /****** AdvApp2Var_ApproxF2var::mma2jmx_ ******/ + /****** md5 signature: 1d8a613ee6223c570e2deac14273a3d7 ******/ %feature("compactdefaultargs") mma2jmx_; %feature("autodoc", " Parameters @@ -891,8 +891,8 @@ No available documentation. ") mma2jmx_; static int mma2jmx_(integer * ndgjac, integer * iordre, doublereal * xjacmx); - /****************** mma2roo_ ******************/ - /**** md5 signature: 2b9206bd8c653739680ae42d9246a3e2 ****/ + /****** AdvApp2Var_ApproxF2var::mma2roo_ ******/ + /****** md5 signature: 2b9206bd8c653739680ae42d9246a3e2 ******/ %feature("compactdefaultargs") mma2roo_; %feature("autodoc", " Parameters @@ -912,8 +912,8 @@ No available documentation. ") mma2roo_; static int mma2roo_(integer * nbpntu, integer * nbpntv, doublereal * urootl, doublereal * vrootl); - /****************** mmapptt_ ******************/ - /**** md5 signature: df26bb1629da819cc478cf38ae76a65b ****/ + /****** AdvApp2Var_ApproxF2var::mmapptt_ ******/ + /****** md5 signature: df26bb1629da819cc478cf38ae76a65b ******/ %feature("compactdefaultargs") mmapptt_; %feature("autodoc", " Parameters @@ -948,8 +948,8 @@ No available documentation. ***************************/ class AdvApp2Var_Context { public: - /****************** AdvApp2Var_Context ******************/ - /**** md5 signature: cc918e3d6337a3e3d6fef3c7fa6e90a5 ****/ + /****** AdvApp2Var_Context::AdvApp2Var_Context ******/ + /****** md5 signature: cc918e3d6337a3e3d6fef3c7fa6e90a5 ******/ %feature("compactdefaultargs") AdvApp2Var_Context; %feature("autodoc", "Return ------- @@ -961,8 +961,8 @@ No available documentation. ") AdvApp2Var_Context; AdvApp2Var_Context(); - /****************** AdvApp2Var_Context ******************/ - /**** md5 signature: 21cd87756d9328ae205fa641ee18a3e8 ****/ + /****** AdvApp2Var_Context::AdvApp2Var_Context ******/ + /****** md5 signature: 21cd87756d9328ae205fa641ee18a3e8 ******/ %feature("compactdefaultargs") AdvApp2Var_Context; %feature("autodoc", " Parameters @@ -993,8 +993,8 @@ No available documentation. ") AdvApp2Var_Context; AdvApp2Var_Context(const Standard_Integer ifav, const Standard_Integer iu, const Standard_Integer iv, const Standard_Integer nlimu, const Standard_Integer nlimv, const Standard_Integer iprecis, const Standard_Integer nb1Dss, const Standard_Integer nb2Dss, const Standard_Integer nb3Dss, const opencascade::handle & tol1D, const opencascade::handle & tol2D, const opencascade::handle & tol3D, const opencascade::handle & tof1D, const opencascade::handle & tof2D, const opencascade::handle & tof3D); - /****************** CToler ******************/ - /**** md5 signature: 24bd3fb0eebd880254f8ac1ee89f8d89 ****/ + /****** AdvApp2Var_Context::CToler ******/ + /****** md5 signature: 24bd3fb0eebd880254f8ac1ee89f8d89 ******/ %feature("compactdefaultargs") CToler; %feature("autodoc", "Return ------- @@ -1006,8 +1006,8 @@ No available documentation. ") CToler; opencascade::handle CToler(); - /****************** FToler ******************/ - /**** md5 signature: d5ab5676361cb292c8f03db44e65e0b8 ****/ + /****** AdvApp2Var_Context::FToler ******/ + /****** md5 signature: d5ab5676361cb292c8f03db44e65e0b8 ******/ %feature("compactdefaultargs") FToler; %feature("autodoc", "Return ------- @@ -1019,8 +1019,8 @@ No available documentation. ") FToler; opencascade::handle FToler(); - /****************** FavorIso ******************/ - /**** md5 signature: c6d174e38329c613da300ca8a0f5d50f ****/ + /****** AdvApp2Var_Context::FavorIso ******/ + /****** md5 signature: c6d174e38329c613da300ca8a0f5d50f ******/ %feature("compactdefaultargs") FavorIso; %feature("autodoc", "Return ------- @@ -1032,8 +1032,8 @@ No available documentation. ") FavorIso; Standard_Integer FavorIso(); - /****************** IToler ******************/ - /**** md5 signature: 2d6a816890d9a18a597840c55f73f6fb ****/ + /****** AdvApp2Var_Context::IToler ******/ + /****** md5 signature: 2d6a816890d9a18a597840c55f73f6fb ******/ %feature("compactdefaultargs") IToler; %feature("autodoc", "Return ------- @@ -1045,8 +1045,8 @@ No available documentation. ") IToler; opencascade::handle IToler(); - /****************** TotalDimension ******************/ - /**** md5 signature: f052f99d2f000729ae53d6c6fee257cf ****/ + /****** AdvApp2Var_Context::TotalDimension ******/ + /****** md5 signature: f052f99d2f000729ae53d6c6fee257cf ******/ %feature("compactdefaultargs") TotalDimension; %feature("autodoc", "Return ------- @@ -1058,8 +1058,8 @@ No available documentation. ") TotalDimension; Standard_Integer TotalDimension(); - /****************** TotalNumberSSP ******************/ - /**** md5 signature: faf2dd9e8595d670d21dc10f3c6a6913 ****/ + /****** AdvApp2Var_Context::TotalNumberSSP ******/ + /****** md5 signature: faf2dd9e8595d670d21dc10f3c6a6913 ******/ %feature("compactdefaultargs") TotalNumberSSP; %feature("autodoc", "Return ------- @@ -1071,8 +1071,8 @@ No available documentation. ") TotalNumberSSP; Standard_Integer TotalNumberSSP(); - /****************** UGauss ******************/ - /**** md5 signature: 9a6b5ace3b55823419bfede442d992cd ****/ + /****** AdvApp2Var_Context::UGauss ******/ + /****** md5 signature: 9a6b5ace3b55823419bfede442d992cd ******/ %feature("compactdefaultargs") UGauss; %feature("autodoc", "Return ------- @@ -1084,8 +1084,8 @@ No available documentation. ") UGauss; opencascade::handle UGauss(); - /****************** UJacDeg ******************/ - /**** md5 signature: 8044fad5cd7721e5b1833954c8c1f64c ****/ + /****** AdvApp2Var_Context::UJacDeg ******/ + /****** md5 signature: 8044fad5cd7721e5b1833954c8c1f64c ******/ %feature("compactdefaultargs") UJacDeg; %feature("autodoc", "Return ------- @@ -1097,8 +1097,8 @@ No available documentation. ") UJacDeg; Standard_Integer UJacDeg(); - /****************** UJacMax ******************/ - /**** md5 signature: c8c8acc46da154a394ae1ee532d52d75 ****/ + /****** AdvApp2Var_Context::UJacMax ******/ + /****** md5 signature: c8c8acc46da154a394ae1ee532d52d75 ******/ %feature("compactdefaultargs") UJacMax; %feature("autodoc", "Return ------- @@ -1110,8 +1110,8 @@ No available documentation. ") UJacMax; opencascade::handle UJacMax(); - /****************** ULimit ******************/ - /**** md5 signature: 43d12bdc3dda11b989b8554e085d81f0 ****/ + /****** AdvApp2Var_Context::ULimit ******/ + /****** md5 signature: 43d12bdc3dda11b989b8554e085d81f0 ******/ %feature("compactdefaultargs") ULimit; %feature("autodoc", "Return ------- @@ -1123,8 +1123,8 @@ No available documentation. ") ULimit; Standard_Integer ULimit(); - /****************** UOrder ******************/ - /**** md5 signature: 3bb505464047fef2900b8b2c2896c41e ****/ + /****** AdvApp2Var_Context::UOrder ******/ + /****** md5 signature: 3bb505464047fef2900b8b2c2896c41e ******/ %feature("compactdefaultargs") UOrder; %feature("autodoc", "Return ------- @@ -1136,8 +1136,8 @@ No available documentation. ") UOrder; Standard_Integer UOrder(); - /****************** URoots ******************/ - /**** md5 signature: 4c908ffe6bc2d725142f172a06cf0c1a ****/ + /****** AdvApp2Var_Context::URoots ******/ + /****** md5 signature: 4c908ffe6bc2d725142f172a06cf0c1a ******/ %feature("compactdefaultargs") URoots; %feature("autodoc", "Return ------- @@ -1149,8 +1149,8 @@ No available documentation. ") URoots; opencascade::handle URoots(); - /****************** VGauss ******************/ - /**** md5 signature: 66196d55762d9b1232b870bb36f21d59 ****/ + /****** AdvApp2Var_Context::VGauss ******/ + /****** md5 signature: 66196d55762d9b1232b870bb36f21d59 ******/ %feature("compactdefaultargs") VGauss; %feature("autodoc", "Return ------- @@ -1162,8 +1162,8 @@ No available documentation. ") VGauss; opencascade::handle VGauss(); - /****************** VJacDeg ******************/ - /**** md5 signature: f9bfee79cd23f4af3716e80cf6ddba4a ****/ + /****** AdvApp2Var_Context::VJacDeg ******/ + /****** md5 signature: f9bfee79cd23f4af3716e80cf6ddba4a ******/ %feature("compactdefaultargs") VJacDeg; %feature("autodoc", "Return ------- @@ -1175,8 +1175,8 @@ No available documentation. ") VJacDeg; Standard_Integer VJacDeg(); - /****************** VJacMax ******************/ - /**** md5 signature: 78706a3e7697c048821f62c71af456df ****/ + /****** AdvApp2Var_Context::VJacMax ******/ + /****** md5 signature: 78706a3e7697c048821f62c71af456df ******/ %feature("compactdefaultargs") VJacMax; %feature("autodoc", "Return ------- @@ -1188,8 +1188,8 @@ No available documentation. ") VJacMax; opencascade::handle VJacMax(); - /****************** VLimit ******************/ - /**** md5 signature: e8accebaf43ffe9314093c4a788410d4 ****/ + /****** AdvApp2Var_Context::VLimit ******/ + /****** md5 signature: e8accebaf43ffe9314093c4a788410d4 ******/ %feature("compactdefaultargs") VLimit; %feature("autodoc", "Return ------- @@ -1201,8 +1201,8 @@ No available documentation. ") VLimit; Standard_Integer VLimit(); - /****************** VOrder ******************/ - /**** md5 signature: 704529177e651451c5029c517db99652 ****/ + /****** AdvApp2Var_Context::VOrder ******/ + /****** md5 signature: 704529177e651451c5029c517db99652 ******/ %feature("compactdefaultargs") VOrder; %feature("autodoc", "Return ------- @@ -1214,8 +1214,8 @@ No available documentation. ") VOrder; Standard_Integer VOrder(); - /****************** VRoots ******************/ - /**** md5 signature: 54311a504719af5252d92bb212279e0e ****/ + /****** AdvApp2Var_Context::VRoots ******/ + /****** md5 signature: 54311a504719af5252d92bb212279e0e ******/ %feature("compactdefaultargs") VRoots; %feature("autodoc", "Return ------- @@ -1242,8 +1242,8 @@ No available documentation. %nodefaultctor AdvApp2Var_Criterion; class AdvApp2Var_Criterion { public: - /****************** IsSatisfied ******************/ - /**** md5 signature: 628e527776d280624d73fc40a69ddb25 ****/ + /****** AdvApp2Var_Criterion::IsSatisfied ******/ + /****** md5 signature: 628e527776d280624d73fc40a69ddb25 ******/ %feature("compactdefaultargs") IsSatisfied; %feature("autodoc", " Parameters @@ -1260,8 +1260,8 @@ No available documentation. ") IsSatisfied; virtual Standard_Boolean IsSatisfied(const AdvApp2Var_Patch & P); - /****************** MaxValue ******************/ - /**** md5 signature: 90bad7204548ba76bfdb4dc2b65fa9de ****/ + /****** AdvApp2Var_Criterion::MaxValue ******/ + /****** md5 signature: 90bad7204548ba76bfdb4dc2b65fa9de ******/ %feature("compactdefaultargs") MaxValue; %feature("autodoc", "Return ------- @@ -1273,8 +1273,8 @@ No available documentation. ") MaxValue; Standard_Real MaxValue(); - /****************** Repartition ******************/ - /**** md5 signature: cff4f841f0657cd7a89a6b578a81602b ****/ + /****** AdvApp2Var_Criterion::Repartition ******/ + /****** md5 signature: cff4f841f0657cd7a89a6b578a81602b ******/ %feature("compactdefaultargs") Repartition; %feature("autodoc", "Return ------- @@ -1286,8 +1286,8 @@ No available documentation. ") Repartition; AdvApp2Var_CriterionRepartition Repartition(); - /****************** Type ******************/ - /**** md5 signature: 1b9684751cac1e3e89787b772495a1ed ****/ + /****** AdvApp2Var_Criterion::Type ******/ + /****** md5 signature: 1b9684751cac1e3e89787b772495a1ed ******/ %feature("compactdefaultargs") Type; %feature("autodoc", "Return ------- @@ -1299,8 +1299,8 @@ No available documentation. ") Type; AdvApp2Var_CriterionType Type(); - /****************** Value ******************/ - /**** md5 signature: bd5a3e3cc8b366204940110914f05bd9 ****/ + /****** AdvApp2Var_Criterion::Value ******/ + /****** md5 signature: bd5a3e3cc8b366204940110914f05bd9 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -1332,8 +1332,8 @@ No available documentation. ************************/ class AdvApp2Var_Data { public: - /****************** Getmaovpar ******************/ - /**** md5 signature: 8be6c57b8566deaa01e416a23bd10998 ****/ + /****** AdvApp2Var_Data::Getmaovpar ******/ + /****** md5 signature: 8be6c57b8566deaa01e416a23bd10998 ******/ %feature("compactdefaultargs") Getmaovpar; %feature("autodoc", "Return ------- @@ -1345,8 +1345,8 @@ No available documentation. ") Getmaovpar; static maovpar_1_ & Getmaovpar(); - /****************** Getmaovpch ******************/ - /**** md5 signature: 334543f940b9215443e5709331588bab ****/ + /****** AdvApp2Var_Data::Getmaovpch ******/ + /****** md5 signature: 334543f940b9215443e5709331588bab ******/ %feature("compactdefaultargs") Getmaovpch; %feature("autodoc", "Return ------- @@ -1358,8 +1358,8 @@ No available documentation. ") Getmaovpch; static maovpch_1_ & Getmaovpch(); - /****************** Getmdnombr ******************/ - /**** md5 signature: ac61a22aa001b1c0a5ee35b5c3602fd3 ****/ + /****** AdvApp2Var_Data::Getmdnombr ******/ + /****** md5 signature: ac61a22aa001b1c0a5ee35b5c3602fd3 ******/ %feature("compactdefaultargs") Getmdnombr; %feature("autodoc", "Return ------- @@ -1371,8 +1371,8 @@ No available documentation. ") Getmdnombr; static mdnombr_1_ & Getmdnombr(); - /****************** Getminombr ******************/ - /**** md5 signature: e8d64195164353bb0d45e76471e1c166 ****/ + /****** AdvApp2Var_Data::Getminombr ******/ + /****** md5 signature: e8d64195164353bb0d45e76471e1c166 ******/ %feature("compactdefaultargs") Getminombr; %feature("autodoc", "Return ------- @@ -1384,8 +1384,8 @@ No available documentation. ") Getminombr; static minombr_1_ & Getminombr(); - /****************** Getmlgdrtl ******************/ - /**** md5 signature: 91d40b6c00de974dbdc2bb896a280dcf ****/ + /****** AdvApp2Var_Data::Getmlgdrtl ******/ + /****** md5 signature: 91d40b6c00de974dbdc2bb896a280dcf ******/ %feature("compactdefaultargs") Getmlgdrtl; %feature("autodoc", "Return ------- @@ -1397,8 +1397,8 @@ No available documentation. ") Getmlgdrtl; static mlgdrtl_1_ & Getmlgdrtl(); - /****************** Getmmapgs0 ******************/ - /**** md5 signature: 79c6c799aa3e3857c5cf09c5affb7c09 ****/ + /****** AdvApp2Var_Data::Getmmapgs0 ******/ + /****** md5 signature: 79c6c799aa3e3857c5cf09c5affb7c09 ******/ %feature("compactdefaultargs") Getmmapgs0; %feature("autodoc", "Return ------- @@ -1410,8 +1410,8 @@ No available documentation. ") Getmmapgs0; static mmapgs0_1_ & Getmmapgs0(); - /****************** Getmmapgs1 ******************/ - /**** md5 signature: 421c69fcd1506661b0c60d98977952bb ****/ + /****** AdvApp2Var_Data::Getmmapgs1 ******/ + /****** md5 signature: 421c69fcd1506661b0c60d98977952bb ******/ %feature("compactdefaultargs") Getmmapgs1; %feature("autodoc", "Return ------- @@ -1423,8 +1423,8 @@ No available documentation. ") Getmmapgs1; static mmapgs1_1_ & Getmmapgs1(); - /****************** Getmmapgs2 ******************/ - /**** md5 signature: cd17b54466c50e23724fb4ca4086c700 ****/ + /****** AdvApp2Var_Data::Getmmapgs2 ******/ + /****** md5 signature: cd17b54466c50e23724fb4ca4086c700 ******/ %feature("compactdefaultargs") Getmmapgs2; %feature("autodoc", "Return ------- @@ -1436,8 +1436,8 @@ No available documentation. ") Getmmapgs2; static mmapgs2_1_ & Getmmapgs2(); - /****************** Getmmapgss ******************/ - /**** md5 signature: 2da5fe3a3d53bfd1ed26a2f7054305e0 ****/ + /****** AdvApp2Var_Data::Getmmapgss ******/ + /****** md5 signature: 2da5fe3a3d53bfd1ed26a2f7054305e0 ******/ %feature("compactdefaultargs") Getmmapgss; %feature("autodoc", "Return ------- @@ -1449,8 +1449,8 @@ No available documentation. ") Getmmapgss; static mmapgss_1_ & Getmmapgss(); - /****************** Getmmcmcnp ******************/ - /**** md5 signature: 7d0b6ef51dfee2c7e36ff733bfb092f1 ****/ + /****** AdvApp2Var_Data::Getmmcmcnp ******/ + /****** md5 signature: 7d0b6ef51dfee2c7e36ff733bfb092f1 ******/ %feature("compactdefaultargs") Getmmcmcnp; %feature("autodoc", "Return ------- @@ -1462,8 +1462,8 @@ No available documentation. ") Getmmcmcnp; static mmcmcnp_1_ & Getmmcmcnp(); - /****************** Getmmjcobi ******************/ - /**** md5 signature: 17e6be3fe538455810b1d4b422cf768d ****/ + /****** AdvApp2Var_Data::Getmmjcobi ******/ + /****** md5 signature: 17e6be3fe538455810b1d4b422cf768d ******/ %feature("compactdefaultargs") Getmmjcobi; %feature("autodoc", "Return ------- @@ -1492,8 +1492,8 @@ No available documentation. *****************************/ class AdvApp2Var_Framework { public: - /****************** AdvApp2Var_Framework ******************/ - /**** md5 signature: 818737758a4dfd25fda3f71a4e5485ad ****/ + /****** AdvApp2Var_Framework::AdvApp2Var_Framework ******/ + /****** md5 signature: 818737758a4dfd25fda3f71a4e5485ad ******/ %feature("compactdefaultargs") AdvApp2Var_Framework; %feature("autodoc", "Return ------- @@ -1505,8 +1505,8 @@ No available documentation. ") AdvApp2Var_Framework; AdvApp2Var_Framework(); - /****************** AdvApp2Var_Framework ******************/ - /**** md5 signature: 960e0b78689457d0b96130210d6b1b29 ****/ + /****** AdvApp2Var_Framework::AdvApp2Var_Framework ******/ + /****** md5 signature: 960e0b78689457d0b96130210d6b1b29 ******/ %feature("compactdefaultargs") AdvApp2Var_Framework; %feature("autodoc", " Parameters @@ -1525,8 +1525,8 @@ No available documentation. ") AdvApp2Var_Framework; AdvApp2Var_Framework(const AdvApp2Var_SequenceOfNode & Frame, const AdvApp2Var_SequenceOfStrip & UFrontier, const AdvApp2Var_SequenceOfStrip & VFrontier); - /****************** ChangeIso ******************/ - /**** md5 signature: 3fec201f44a8293dfa569255b6814bbb ****/ + /****** AdvApp2Var_Framework::ChangeIso ******/ + /****** md5 signature: 3fec201f44a8293dfa569255b6814bbb ******/ %feature("compactdefaultargs") ChangeIso; %feature("autodoc", " Parameters @@ -1545,8 +1545,8 @@ No available documentation. ") ChangeIso; void ChangeIso(const Standard_Integer IndexIso, const Standard_Integer IndexStrip, const opencascade::handle & anIso); - /****************** FirstNode ******************/ - /**** md5 signature: 7e2537d33d03d4ae88afbab57eff7727 ****/ + /****** AdvApp2Var_Framework::FirstNode ******/ + /****** md5 signature: 7e2537d33d03d4ae88afbab57eff7727 ******/ %feature("compactdefaultargs") FirstNode; %feature("autodoc", " Parameters @@ -1565,8 +1565,8 @@ No available documentation. ") FirstNode; Standard_Integer FirstNode(const GeomAbs_IsoType Type, const Standard_Integer IndexIso, const Standard_Integer IndexStrip); - /****************** FirstNotApprox ******************/ - /**** md5 signature: 227783178d7bb021aee9bed3eb70dd7f ****/ + /****** AdvApp2Var_Framework::FirstNotApprox ******/ + /****** md5 signature: 227783178d7bb021aee9bed3eb70dd7f ******/ %feature("compactdefaultargs") FirstNotApprox; %feature("autodoc", " Parameters @@ -1583,8 +1583,8 @@ Search the index of the first iso not approximated, if all isos are approximated ") FirstNotApprox; opencascade::handle FirstNotApprox(Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** IsoU ******************/ - /**** md5 signature: e9d88953cce2797fb11a4e1b24499c34 ****/ + /****** AdvApp2Var_Framework::IsoU ******/ + /****** md5 signature: e9d88953cce2797fb11a4e1b24499c34 ******/ %feature("compactdefaultargs") IsoU; %feature("autodoc", " Parameters @@ -1603,8 +1603,8 @@ No available documentation. ") IsoU; const AdvApp2Var_Iso & IsoU(const Standard_Real U, const Standard_Real V0, const Standard_Real V1); - /****************** IsoV ******************/ - /**** md5 signature: 359e34e6c22686add688faaa999793c8 ****/ + /****** AdvApp2Var_Framework::IsoV ******/ + /****** md5 signature: 359e34e6c22686add688faaa999793c8 ******/ %feature("compactdefaultargs") IsoV; %feature("autodoc", " Parameters @@ -1623,8 +1623,8 @@ No available documentation. ") IsoV; const AdvApp2Var_Iso & IsoV(const Standard_Real U0, const Standard_Real U1, const Standard_Real V); - /****************** LastNode ******************/ - /**** md5 signature: c5ec3a09215187eaa4100a7b4686bdb3 ****/ + /****** AdvApp2Var_Framework::LastNode ******/ + /****** md5 signature: c5ec3a09215187eaa4100a7b4686bdb3 ******/ %feature("compactdefaultargs") LastNode; %feature("autodoc", " Parameters @@ -1643,8 +1643,8 @@ No available documentation. ") LastNode; Standard_Integer LastNode(const GeomAbs_IsoType Type, const Standard_Integer IndexIso, const Standard_Integer IndexStrip); - /****************** Node ******************/ - /**** md5 signature: 1d29de45887544e302e72092c1d86599 ****/ + /****** AdvApp2Var_Framework::Node ******/ + /****** md5 signature: 1d29de45887544e302e72092c1d86599 ******/ %feature("compactdefaultargs") Node; %feature("autodoc", " Parameters @@ -1661,8 +1661,8 @@ No available documentation. ") Node; const opencascade::handle & Node(const Standard_Integer IndexNode); - /****************** Node ******************/ - /**** md5 signature: c9d756687d8ab078da4b83b35aee2845 ****/ + /****** AdvApp2Var_Framework::Node ******/ + /****** md5 signature: c9d756687d8ab078da4b83b35aee2845 ******/ %feature("compactdefaultargs") Node; %feature("autodoc", " Parameters @@ -1680,8 +1680,8 @@ No available documentation. ") Node; const opencascade::handle & Node(const Standard_Real U, const Standard_Real V); - /****************** UEquation ******************/ - /**** md5 signature: eae095443123601e82f5e427f107c558 ****/ + /****** AdvApp2Var_Framework::UEquation ******/ + /****** md5 signature: eae095443123601e82f5e427f107c558 ******/ %feature("compactdefaultargs") UEquation; %feature("autodoc", " Parameters @@ -1699,8 +1699,8 @@ No available documentation. ") UEquation; const opencascade::handle & UEquation(const Standard_Integer IndexIso, const Standard_Integer IndexStrip); - /****************** UpdateInU ******************/ - /**** md5 signature: 6ceeb1ee9354cac6afc634b1d9c74e7c ****/ + /****** AdvApp2Var_Framework::UpdateInU ******/ + /****** md5 signature: 6ceeb1ee9354cac6afc634b1d9c74e7c ******/ %feature("compactdefaultargs") UpdateInU; %feature("autodoc", " Parameters @@ -1717,8 +1717,8 @@ No available documentation. ") UpdateInU; void UpdateInU(const Standard_Real CuttingValue); - /****************** UpdateInV ******************/ - /**** md5 signature: c0f8535993a7fefff54e4fb95c170b72 ****/ + /****** AdvApp2Var_Framework::UpdateInV ******/ + /****** md5 signature: c0f8535993a7fefff54e4fb95c170b72 ******/ %feature("compactdefaultargs") UpdateInV; %feature("autodoc", " Parameters @@ -1735,8 +1735,8 @@ No available documentation. ") UpdateInV; void UpdateInV(const Standard_Real CuttingValue); - /****************** VEquation ******************/ - /**** md5 signature: b409a4641e852e2861825c39dc2922c1 ****/ + /****** AdvApp2Var_Framework::VEquation ******/ + /****** md5 signature: b409a4641e852e2861825c39dc2922c1 ******/ %feature("compactdefaultargs") VEquation; %feature("autodoc", " Parameters @@ -1771,8 +1771,8 @@ No available documentation. ****************************/ class AdvApp2Var_MathBase { public: - /****************** mdsptpt_ ******************/ - /**** md5 signature: d0cc0c7502e5928d82f8b656b6dd1fa0 ****/ + /****** AdvApp2Var_MathBase::mdsptpt_ ******/ + /****** md5 signature: d0cc0c7502e5928d82f8b656b6dd1fa0 ******/ %feature("compactdefaultargs") mdsptpt_; %feature("autodoc", " Parameters @@ -1792,8 +1792,8 @@ No available documentation. ") mdsptpt_; static int mdsptpt_(integer * ndimen, doublereal * point1, doublereal * point2, doublereal * distan); - /****************** mmapcmp_ ******************/ - /**** md5 signature: ddc220b71480aa8b72622753a27c1a08 ****/ + /****** AdvApp2Var_MathBase::mmapcmp_ ******/ + /****** md5 signature: ddc220b71480aa8b72622753a27c1a08 ******/ %feature("compactdefaultargs") mmapcmp_; %feature("autodoc", " Parameters @@ -1814,8 +1814,8 @@ Description ") mmapcmp_; static int mmapcmp_(integer * , integer * , integer * , double * , double * ); - /****************** mmaperx_ ******************/ - /**** md5 signature: 3e2559039cb3bda8c6d64ac866023ed5 ****/ + /****** AdvApp2Var_MathBase::mmaperx_ ******/ + /****** md5 signature: 3e2559039cb3bda8c6d64ac866023ed5 ******/ %feature("compactdefaultargs") mmaperx_; %feature("autodoc", " Parameters @@ -1840,8 +1840,8 @@ No available documentation. ") mmaperx_; static int mmaperx_(integer * ncofmx, integer * ndimen, integer * ncoeff, integer * iordre, doublereal * crvjac, integer * ncfnew, doublereal * ycvmax, doublereal * errmax, integer * iercod); - /****************** mmarcin_ ******************/ - /**** md5 signature: c26a2d31e50b2e630a193421191f8420 ****/ + /****** AdvApp2Var_MathBase::mmarcin_ ******/ + /****** md5 signature: c26a2d31e50b2e630a193421191f8420 ******/ %feature("compactdefaultargs") mmarcin_; %feature("autodoc", " Parameters @@ -1865,8 +1865,8 @@ No available documentation. ") mmarcin_; static int mmarcin_(integer * ndimax, integer * ndim, integer * ncoeff, doublereal * crvold, doublereal * u0, doublereal * u1, doublereal * crvnew, integer * iercod); - /****************** mmbulld_ ******************/ - /**** md5 signature: a6e5ee873b96338395e569d9e9188ef2 ****/ + /****** AdvApp2Var_MathBase::mmbulld_ ******/ + /****** md5 signature: a6e5ee873b96338395e569d9e9188ef2 ******/ %feature("compactdefaultargs") mmbulld_; %feature("autodoc", " Parameters @@ -1886,8 +1886,8 @@ No available documentation. ") mmbulld_; static int mmbulld_(integer * nbcoln, integer * nblign, doublereal * dtabtr, integer * numcle); - /****************** mmcdriv_ ******************/ - /**** md5 signature: 44a825407cbe882facc2d5a6e2edfbbd ****/ + /****** AdvApp2Var_MathBase::mmcdriv_ ******/ + /****** md5 signature: 44a825407cbe882facc2d5a6e2edfbbd ******/ %feature("compactdefaultargs") mmcdriv_; %feature("autodoc", " Parameters @@ -1909,8 +1909,8 @@ No available documentation. ") mmcdriv_; static int mmcdriv_(integer * ndimen, integer * ncoeff, doublereal * courbe, integer * ideriv, integer * ncofdv, doublereal * crvdrv); - /****************** mmcglc1_ ******************/ - /**** md5 signature: 1ced960f022f6bb9a52d4739071f227c ****/ + /****** AdvApp2Var_MathBase::mmcglc1_ ******/ + /****** md5 signature: 1ced960f022f6bb9a52d4739071f227c ******/ %feature("compactdefaultargs") mmcglc1_; %feature("autodoc", " Parameters @@ -1936,8 +1936,8 @@ Description ") mmcglc1_; static int mmcglc1_(integer * ndimax, integer * ndimen, integer * ncoeff, doublereal * courbe, doublereal * tdebut, doublereal * tfinal, doublereal * epsiln, doublereal * xlongc, doublereal * erreur, integer * iercod); - /****************** mmcvctx_ ******************/ - /**** md5 signature: 5f90652ee7a4410f4c19f327eeb75459 ****/ + /****** AdvApp2Var_MathBase::mmcvctx_ ******/ + /****** md5 signature: 5f90652ee7a4410f4c19f327eeb75459 ******/ %feature("compactdefaultargs") mmcvctx_; %feature("autodoc", " Parameters @@ -1961,8 +1961,8 @@ No available documentation. ") mmcvctx_; static int mmcvctx_(integer * ndimen, integer * ncofmx, integer * nderiv, doublereal * ctrtes, doublereal * crvres, doublereal * tabaux, doublereal * xmatri, integer * iercod); - /****************** mmcvinv_ ******************/ - /**** md5 signature: d83fa9f36dfce85985ef06a9963e1c45 ****/ + /****** AdvApp2Var_MathBase::mmcvinv_ ******/ + /****** md5 signature: d83fa9f36dfce85985ef06a9963e1c45 ******/ %feature("compactdefaultargs") mmcvinv_; %feature("autodoc", " Parameters @@ -1983,8 +1983,8 @@ No available documentation. ") mmcvinv_; static int mmcvinv_(integer * ndimax, integer * ncoef, integer * ndim, doublereal * curveo, doublereal * curve); - /****************** mmdrc11_ ******************/ - /**** md5 signature: a28ee8f5001caafb97564920bd3ce882 ****/ + /****** AdvApp2Var_MathBase::mmdrc11_ ******/ + /****** md5 signature: a28ee8f5001caafb97564920bd3ce882 ******/ %feature("compactdefaultargs") mmdrc11_; %feature("autodoc", " Parameters @@ -2006,8 +2006,8 @@ No available documentation. ") mmdrc11_; static int mmdrc11_(integer * , integer * , integer * , doublereal * , doublereal * , doublereal * ); - /****************** mmdrvck_ ******************/ - /**** md5 signature: 525722fedd3aebf005d25056187dddf4 ****/ + /****** AdvApp2Var_MathBase::mmdrvck_ ******/ + /****** md5 signature: 525722fedd3aebf005d25056187dddf4 ******/ %feature("compactdefaultargs") mmdrvck_; %feature("autodoc", " Parameters @@ -2029,8 +2029,8 @@ No available documentation. ") mmdrvck_; static int mmdrvck_(integer * ncoeff, integer * ndimen, doublereal * courbe, integer * ideriv, doublereal * tparam, doublereal * pntcrb); - /****************** mmeps1_ ******************/ - /**** md5 signature: ab904ccf5f764d7370e8f091a5379338 ****/ + /****** AdvApp2Var_MathBase::mmeps1_ ******/ + /****** md5 signature: ab904ccf5f764d7370e8f091a5379338 ******/ %feature("compactdefaultargs") mmeps1_; %feature("autodoc", " Parameters @@ -2047,8 +2047,8 @@ No available documentation. ") mmeps1_; static int mmeps1_(doublereal * epsilo); - /****************** mmfmca8_ ******************/ - /**** md5 signature: c9877e732829f9386b22d78cdded7be7 ****/ + /****** AdvApp2Var_MathBase::mmfmca8_ ******/ + /****** md5 signature: c9877e732829f9386b22d78cdded7be7 ******/ %feature("compactdefaultargs") mmfmca8_; %feature("autodoc", " Parameters @@ -2072,8 +2072,8 @@ No available documentation. ") mmfmca8_; static int mmfmca8_(const integer * ndimen, const integer * ncoefu, const integer * ncoefv, const integer * ndimax, const integer * ncfumx, const integer * ncfvmx, doublereal * tabini, doublereal * tabres); - /****************** mmfmca9_ ******************/ - /**** md5 signature: cdef922fdd9cca02e97d563176bdee76 ****/ + /****** AdvApp2Var_MathBase::mmfmca9_ ******/ + /****** md5 signature: cdef922fdd9cca02e97d563176bdee76 ******/ %feature("compactdefaultargs") mmfmca9_; %feature("autodoc", " Parameters @@ -2097,8 +2097,8 @@ No available documentation. ") mmfmca9_; static int mmfmca9_(integer * , integer * , integer * , integer * , integer * , integer * , doublereal * , doublereal * ); - /****************** mmfmcar_ ******************/ - /**** md5 signature: 2f3d1dabb652936348dd204ce98331a8 ****/ + /****** AdvApp2Var_MathBase::mmfmcar_ ******/ + /****** md5 signature: 2f3d1dabb652936348dd204ce98331a8 ******/ %feature("compactdefaultargs") mmfmcar_; %feature("autodoc", " Parameters @@ -2125,8 +2125,8 @@ No available documentation. ") mmfmcar_; static int mmfmcar_(integer * ndimen, integer * ncofmx, integer * ncoefu, integer * ncoefv, doublereal * patold, doublereal * upara1, doublereal * upara2, doublereal * vpara1, doublereal * vpara2, doublereal * patnew, integer * iercod); - /****************** mmfmcb5_ ******************/ - /**** md5 signature: 56a81c8b6cc564145902ada0223ca749 ****/ + /****** AdvApp2Var_MathBase::mmfmcb5_ ******/ + /****** md5 signature: 56a81c8b6cc564145902ada0223ca749 ******/ %feature("compactdefaultargs") mmfmcb5_; %feature("autodoc", " Parameters @@ -2151,8 +2151,8 @@ No available documentation. ") mmfmcb5_; static int mmfmcb5_(integer * , integer * , integer * , doublereal * , integer * , integer * , integer * , doublereal * , integer * ); - /****************** mmfmtb1_ ******************/ - /**** md5 signature: 8a4ac823cf2bfaa5d0b3a5b23ce64fec ****/ + /****** AdvApp2Var_MathBase::mmfmtb1_ ******/ + /****** md5 signature: 8a4ac823cf2bfaa5d0b3a5b23ce64fec ******/ %feature("compactdefaultargs") mmfmtb1_; %feature("autodoc", " Parameters @@ -2177,8 +2177,8 @@ No available documentation. ") mmfmtb1_; static int mmfmtb1_(integer * maxsz1, doublereal * table1, integer * isize1, integer * jsize1, integer * maxsz2, doublereal * table2, integer * isize2, integer * jsize2, integer * iercod); - /****************** mmhjcan_ ******************/ - /**** md5 signature: 446f4e5fc4471218506e9b511d9c6d33 ****/ + /****** AdvApp2Var_MathBase::mmhjcan_ ******/ + /****** md5 signature: 446f4e5fc4471218506e9b511d9c6d33 ******/ %feature("compactdefaultargs") mmhjcan_; %feature("autodoc", " Parameters @@ -2203,8 +2203,8 @@ No available documentation. ") mmhjcan_; static int mmhjcan_(integer * ndimen, integer * ncourb, integer * ncftab, integer * orcont, integer * ncflim, doublereal * tcbold, doublereal * tdecop, doublereal * tcbnew, integer * iercod); - /****************** mminltt_ ******************/ - /**** md5 signature: f6302a533cf8887921d63b52fd1db29d ****/ + /****** AdvApp2Var_MathBase::mminltt_ ******/ + /****** md5 signature: f6302a533cf8887921d63b52fd1db29d ******/ %feature("compactdefaultargs") mminltt_; %feature("autodoc", " Parameters @@ -2228,8 +2228,8 @@ No available documentation. ") mminltt_; static int mminltt_(integer * ncolmx, integer * nlgnmx, doublereal * tabtri, integer * nbrcol, integer * nbrlgn, doublereal * ajoute, doublereal * epseg, integer * iercod); - /****************** mmjacan_ ******************/ - /**** md5 signature: 9434e56960effb3e5ef4b134391a328e ****/ + /****** AdvApp2Var_MathBase::mmjacan_ ******/ + /****** md5 signature: 9434e56960effb3e5ef4b134391a328e ******/ %feature("compactdefaultargs") mmjacan_; %feature("autodoc", " Parameters @@ -2249,8 +2249,8 @@ No available documentation. ") mmjacan_; static int mmjacan_(const integer * ideriv, integer * ndeg, doublereal * poljac, doublereal * polcan); - /****************** mmjaccv_ ******************/ - /**** md5 signature: b65686bb9f09d9ff3a5414b37737b25f ****/ + /****** AdvApp2Var_MathBase::mmjaccv_ ******/ + /****** md5 signature: b65686bb9f09d9ff3a5414b37737b25f ******/ %feature("compactdefaultargs") mmjaccv_; %feature("autodoc", " Parameters @@ -2272,8 +2272,8 @@ No available documentation. ") mmjaccv_; static int mmjaccv_(const integer * ncoef, const integer * ndim, const integer * ider, const doublereal * crvlgd, doublereal * polaux, doublereal * crvcan); - /****************** mmmpocur_ ******************/ - /**** md5 signature: 74e6aabd8a9a0120f39cdca7f2a2ab4c ****/ + /****** AdvApp2Var_MathBase::mmmpocur_ ******/ + /****** md5 signature: 74e6aabd8a9a0120f39cdca7f2a2ab4c ******/ %feature("compactdefaultargs") mmmpocur_; %feature("autodoc", " Parameters @@ -2295,8 +2295,8 @@ No available documentation. ") mmmpocur_; static int mmmpocur_(integer * ncofmx, integer * ndim, integer * ndeg, doublereal * courbe, doublereal * tparam, doublereal * tabval); - /****************** mmmrslwd_ ******************/ - /**** md5 signature: a95d2925ac37222049e9bf15d84c3cb5 ****/ + /****** AdvApp2Var_MathBase::mmmrslwd_ ******/ + /****** md5 signature: a95d2925ac37222049e9bf15d84c3cb5 ******/ %feature("compactdefaultargs") mmmrslwd_; %feature("autodoc", " Parameters @@ -2321,8 +2321,8 @@ No available documentation. ") mmmrslwd_; static int mmmrslwd_(integer * normax, integer * nordre, integer * ndim, doublereal * amat, doublereal * bmat, doublereal * epspiv, doublereal * aaux, doublereal * xmat, integer * iercod); - /****************** mmpobas_ ******************/ - /**** md5 signature: 7bc22d5de8ef6a29982a574e3973164e ****/ + /****** AdvApp2Var_MathBase::mmpobas_ ******/ + /****** md5 signature: 7bc22d5de8ef6a29982a574e3973164e ******/ %feature("compactdefaultargs") mmpobas_; %feature("autodoc", " Parameters @@ -2344,8 +2344,8 @@ No available documentation. ") mmpobas_; static int mmpobas_(doublereal * tparam, integer * iordre, integer * ncoeff, integer * nderiv, doublereal * valbas, integer * iercod); - /****************** mmpocrb_ ******************/ - /**** md5 signature: a12dcc0fd2ee502b557d028a01877b8d ****/ + /****** AdvApp2Var_MathBase::mmpocrb_ ******/ + /****** md5 signature: a12dcc0fd2ee502b557d028a01877b8d ******/ %feature("compactdefaultargs") mmpocrb_; %feature("autodoc", " Parameters @@ -2367,8 +2367,8 @@ No available documentation. ") mmpocrb_; static int mmpocrb_(integer * ndimax, integer * ncoeff, doublereal * courbe, integer * ndim, doublereal * tparam, doublereal * pntcrb); - /****************** mmposui_ ******************/ - /**** md5 signature: 34280b75c6efa74cfc4d92b1604d7018 ****/ + /****** AdvApp2Var_MathBase::mmposui_ ******/ + /****** md5 signature: 34280b75c6efa74cfc4d92b1604d7018 ******/ %feature("compactdefaultargs") mmposui_; %feature("autodoc", " Parameters @@ -2389,8 +2389,8 @@ No available documentation. ") mmposui_; static int mmposui_(integer * dimmat, integer * nistoc, integer * aposit, integer * posuiv, integer * iercod); - /****************** mmresol_ ******************/ - /**** md5 signature: 6a24def37f274fef1c72ffabb3fb8a78 ****/ + /****** AdvApp2Var_MathBase::mmresol_ ******/ + /****** md5 signature: 6a24def37f274fef1c72ffabb3fb8a78 ******/ %feature("compactdefaultargs") mmresol_; %feature("autodoc", " Parameters @@ -2422,8 +2422,8 @@ No available documentation. ") mmresol_; static int mmresol_(integer * hdimen, integer * gdimen, integer * hnstoc, integer * gnstoc, integer * mnstoc, doublereal * matsyh, doublereal * matsyg, doublereal * vecsyh, doublereal * vecsyg, integer * hposit, integer * hposui, integer * gposit, integer * mmposui, integer * mposit, doublereal * vecsol, integer * iercod); - /****************** mmrtptt_ ******************/ - /**** md5 signature: bf320f4ce6a9651125680601f69e4537 ****/ + /****** AdvApp2Var_MathBase::mmrtptt_ ******/ + /****** md5 signature: bf320f4ce6a9651125680601f69e4537 ******/ %feature("compactdefaultargs") mmrtptt_; %feature("autodoc", " Parameters @@ -2441,8 +2441,8 @@ No available documentation. ") mmrtptt_; static int mmrtptt_(integer * ndglgd, doublereal * rtlegd); - /****************** mmsrre2_ ******************/ - /**** md5 signature: 11a570be7ee4b84e48a67aa8ec09f727 ****/ + /****** AdvApp2Var_MathBase::mmsrre2_ ******/ + /****** md5 signature: 11a570be7ee4b84e48a67aa8ec09f727 ******/ %feature("compactdefaultargs") mmsrre2_; %feature("autodoc", " Parameters @@ -2465,8 +2465,8 @@ No available documentation. ") mmsrre2_; static int mmsrre2_(doublereal * tparam, integer * nbrval, doublereal * tablev, doublereal * epsil, integer * numint, integer * itypen, integer * iercod); - /****************** mmtrpjj_ ******************/ - /**** md5 signature: 0569f5b50e1f2f007294ac92dcbfad1c ****/ + /****** AdvApp2Var_MathBase::mmtrpjj_ ******/ + /****** md5 signature: 0569f5b50e1f2f007294ac92dcbfad1c ******/ %feature("compactdefaultargs") mmtrpjj_; %feature("autodoc", " Parameters @@ -2491,8 +2491,8 @@ No available documentation. ") mmtrpjj_; static int mmtrpjj_(integer * ncofmx, integer * ndimen, integer * ncoeff, doublereal * epsi3d, integer * iordre, doublereal * crvlgd, doublereal * ycvmax, doublereal * errmax, integer * ncfnew); - /****************** mmunivt_ ******************/ - /**** md5 signature: 16381a0150e98e032a27d190626c862c ****/ + /****** AdvApp2Var_MathBase::mmunivt_ ******/ + /****** md5 signature: 16381a0150e98e032a27d190626c862c ******/ %feature("compactdefaultargs") mmunivt_; %feature("autodoc", " Parameters @@ -2513,8 +2513,8 @@ No available documentation. ") mmunivt_; static int mmunivt_(integer * ndimen, doublereal * vector, doublereal * vecnrm, doublereal * epsiln, integer * iercod); - /****************** mmveps3_ ******************/ - /**** md5 signature: 23174d833a81b088dd2fea3e5aa72ce3 ****/ + /****** AdvApp2Var_MathBase::mmveps3_ ******/ + /****** md5 signature: 23174d833a81b088dd2fea3e5aa72ce3 ******/ %feature("compactdefaultargs") mmveps3_; %feature("autodoc", " Parameters @@ -2531,8 +2531,8 @@ No available documentation. ") mmveps3_; static int mmveps3_(doublereal * eps03); - /****************** mmvncol_ ******************/ - /**** md5 signature: 4f89cab0e4d7a63481dc99370fbc8fb2 ****/ + /****** AdvApp2Var_MathBase::mmvncol_ ******/ + /****** md5 signature: 4f89cab0e4d7a63481dc99370fbc8fb2 ******/ %feature("compactdefaultargs") mmvncol_; %feature("autodoc", " Parameters @@ -2552,8 +2552,8 @@ No available documentation. ") mmvncol_; static int mmvncol_(integer * ndimen, doublereal * vecin, doublereal * vecout, integer * iercod); - /****************** mmwprcs_ ******************/ - /**** md5 signature: 477d823794f68972576604130750f753 ****/ + /****** AdvApp2Var_MathBase::mmwprcs_ ******/ + /****** md5 signature: 477d823794f68972576604130750f753 ******/ %feature("compactdefaultargs") mmwprcs_; %feature("autodoc", " Parameters @@ -2575,8 +2575,8 @@ No available documentation. ") mmwprcs_; static void mmwprcs_(doublereal * , doublereal * , doublereal * , doublereal * , integer * , integer * ); - /****************** msc_ ******************/ - /**** md5 signature: 3114f971d87dcb65a2ab7e6d240393b5 ****/ + /****** AdvApp2Var_MathBase::msc_ ******/ + /****** md5 signature: 3114f971d87dcb65a2ab7e6d240393b5 ******/ %feature("compactdefaultargs") msc_; %feature("autodoc", " Parameters @@ -2595,8 +2595,8 @@ No available documentation. ") msc_; static doublereal msc_(integer * ndimen, doublereal * vecte1, doublereal * vecte2); - /****************** mvsheld_ ******************/ - /**** md5 signature: 4ecbda11b378509d5fa7a83d2e283759 ****/ + /****** AdvApp2Var_MathBase::mvsheld_ ******/ + /****** md5 signature: 4ecbda11b378509d5fa7a83d2e283759 ******/ %feature("compactdefaultargs") mvsheld_; %feature("autodoc", " Parameters @@ -2616,8 +2616,8 @@ No available documentation. ") mvsheld_; static int mvsheld_(integer * n, integer * is, doublereal * dtab, integer * icle); - /****************** mzsnorm_ ******************/ - /**** md5 signature: cdbf39590da261aaf47c5ccd25c4da77 ****/ + /****** AdvApp2Var_MathBase::mzsnorm_ ******/ + /****** md5 signature: cdbf39590da261aaf47c5ccd25c4da77 ******/ %feature("compactdefaultargs") mzsnorm_; %feature("autodoc", " Parameters @@ -2635,8 +2635,8 @@ No available documentation. ") mzsnorm_; static doublereal mzsnorm_(integer * ndimen, doublereal * vecteu); - /****************** pow__di ******************/ - /**** md5 signature: e4a7f433243cba4d130c7523c160c9cd ****/ + /****** AdvApp2Var_MathBase::pow__di ******/ + /****** md5 signature: e4a7f433243cba4d130c7523c160c9cd ******/ %feature("compactdefaultargs") pow__di; %feature("autodoc", " Parameters @@ -2672,8 +2672,8 @@ No available documentation. ***************************/ class AdvApp2Var_Network { public: - /****************** AdvApp2Var_Network ******************/ - /**** md5 signature: d17d550414bf3ecdb9a7860fb411e42f ****/ + /****** AdvApp2Var_Network::AdvApp2Var_Network ******/ + /****** md5 signature: d17d550414bf3ecdb9a7860fb411e42f ******/ %feature("compactdefaultargs") AdvApp2Var_Network; %feature("autodoc", "Return ------- @@ -2685,8 +2685,8 @@ No available documentation. ") AdvApp2Var_Network; AdvApp2Var_Network(); - /****************** AdvApp2Var_Network ******************/ - /**** md5 signature: 193c289f215945d46188eaeb35e19607 ****/ + /****** AdvApp2Var_Network::AdvApp2Var_Network ******/ + /****** md5 signature: 193c289f215945d46188eaeb35e19607 ******/ %feature("compactdefaultargs") AdvApp2Var_Network; %feature("autodoc", " Parameters @@ -2705,8 +2705,8 @@ No available documentation. ") AdvApp2Var_Network; AdvApp2Var_Network(const AdvApp2Var_SequenceOfPatch & Net, const TColStd_SequenceOfReal & TheU, const TColStd_SequenceOfReal & TheV); - /****************** ChangePatch ******************/ - /**** md5 signature: 49bf90b6471d1093efa33d9d67b1d5ff ****/ + /****** AdvApp2Var_Network::ChangePatch ******/ + /****** md5 signature: 49bf90b6471d1093efa33d9d67b1d5ff ******/ %feature("compactdefaultargs") ChangePatch; %feature("autodoc", " Parameters @@ -2723,8 +2723,8 @@ No available documentation. ") ChangePatch; AdvApp2Var_Patch & ChangePatch(const Standard_Integer Index); - /****************** FirstNotApprox ******************/ - /**** md5 signature: 71bb30feb26f00338924d16d7bd6d369 ****/ + /****** AdvApp2Var_Network::FirstNotApprox ******/ + /****** md5 signature: 71bb30feb26f00338924d16d7bd6d369 ******/ %feature("compactdefaultargs") FirstNotApprox; %feature("autodoc", " Parameters @@ -2740,8 +2740,8 @@ Search the index of the first patch not approximated, if all patches are approxi ") FirstNotApprox; Standard_Boolean FirstNotApprox(Standard_Integer &OutValue); - /****************** NbPatch ******************/ - /**** md5 signature: e694837768b0b0d655ecd0758a2789f8 ****/ + /****** AdvApp2Var_Network::NbPatch ******/ + /****** md5 signature: e694837768b0b0d655ecd0758a2789f8 ******/ %feature("compactdefaultargs") NbPatch; %feature("autodoc", "Return ------- @@ -2753,8 +2753,8 @@ No available documentation. ") NbPatch; Standard_Integer NbPatch(); - /****************** NbPatchInU ******************/ - /**** md5 signature: 3f35fc1ac6634939a320e7ad44a7f7a1 ****/ + /****** AdvApp2Var_Network::NbPatchInU ******/ + /****** md5 signature: 3f35fc1ac6634939a320e7ad44a7f7a1 ******/ %feature("compactdefaultargs") NbPatchInU; %feature("autodoc", "Return ------- @@ -2766,8 +2766,8 @@ No available documentation. ") NbPatchInU; Standard_Integer NbPatchInU(); - /****************** NbPatchInV ******************/ - /**** md5 signature: f81c6419ee7410e1e8c617bbe5c3f7ab ****/ + /****** AdvApp2Var_Network::NbPatchInV ******/ + /****** md5 signature: f81c6419ee7410e1e8c617bbe5c3f7ab ******/ %feature("compactdefaultargs") NbPatchInV; %feature("autodoc", "Return ------- @@ -2779,8 +2779,8 @@ No available documentation. ") NbPatchInV; Standard_Integer NbPatchInV(); - /****************** Patch ******************/ - /**** md5 signature: d7ebd409a545712c8a1fd621e1074507 ****/ + /****** AdvApp2Var_Network::Patch ******/ + /****** md5 signature: d7ebd409a545712c8a1fd621e1074507 ******/ %feature("compactdefaultargs") Patch; %feature("autodoc", " Parameters @@ -2798,8 +2798,8 @@ No available documentation. ") Patch; const AdvApp2Var_Patch & Patch(const Standard_Integer UIndex, const Standard_Integer VIndex); - /****************** SameDegree ******************/ - /**** md5 signature: 7e217979ae78b3668d6f94e6a8ad1993 ****/ + /****** AdvApp2Var_Network::SameDegree ******/ + /****** md5 signature: 7e217979ae78b3668d6f94e6a8ad1993 ******/ %feature("compactdefaultargs") SameDegree; %feature("autodoc", " Parameters @@ -2818,8 +2818,8 @@ No available documentation. ") SameDegree; void SameDegree(const Standard_Integer iu, const Standard_Integer iv, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** UParameter ******************/ - /**** md5 signature: 71719dc788a69ec419550ca101145d24 ****/ + /****** AdvApp2Var_Network::UParameter ******/ + /****** md5 signature: 71719dc788a69ec419550ca101145d24 ******/ %feature("compactdefaultargs") UParameter; %feature("autodoc", " Parameters @@ -2836,8 +2836,8 @@ No available documentation. ") UParameter; Standard_Real UParameter(const Standard_Integer Index); - /****************** UpdateInU ******************/ - /**** md5 signature: 6ceeb1ee9354cac6afc634b1d9c74e7c ****/ + /****** AdvApp2Var_Network::UpdateInU ******/ + /****** md5 signature: 6ceeb1ee9354cac6afc634b1d9c74e7c ******/ %feature("compactdefaultargs") UpdateInU; %feature("autodoc", " Parameters @@ -2854,8 +2854,8 @@ No available documentation. ") UpdateInU; void UpdateInU(const Standard_Real CuttingValue); - /****************** UpdateInV ******************/ - /**** md5 signature: c0f8535993a7fefff54e4fb95c170b72 ****/ + /****** AdvApp2Var_Network::UpdateInV ******/ + /****** md5 signature: c0f8535993a7fefff54e4fb95c170b72 ******/ %feature("compactdefaultargs") UpdateInV; %feature("autodoc", " Parameters @@ -2872,8 +2872,8 @@ No available documentation. ") UpdateInV; void UpdateInV(const Standard_Real CuttingValue); - /****************** VParameter ******************/ - /**** md5 signature: 33aa4b550b26911e9a612085aed53f03 ****/ + /****** AdvApp2Var_Network::VParameter ******/ + /****** md5 signature: 33aa4b550b26911e9a612085aed53f03 ******/ %feature("compactdefaultargs") VParameter; %feature("autodoc", " Parameters @@ -2904,8 +2904,8 @@ No available documentation. ************************/ class AdvApp2Var_Node : public Standard_Transient { public: - /****************** AdvApp2Var_Node ******************/ - /**** md5 signature: 757375f90af24c95af5d449c30bcf4b6 ****/ + /****** AdvApp2Var_Node::AdvApp2Var_Node ******/ + /****** md5 signature: 757375f90af24c95af5d449c30bcf4b6 ******/ %feature("compactdefaultargs") AdvApp2Var_Node; %feature("autodoc", "Return ------- @@ -2917,8 +2917,8 @@ No available documentation. ") AdvApp2Var_Node; AdvApp2Var_Node(); - /****************** AdvApp2Var_Node ******************/ - /**** md5 signature: d2cda16fc3142332455215854e92a317 ****/ + /****** AdvApp2Var_Node::AdvApp2Var_Node ******/ + /****** md5 signature: d2cda16fc3142332455215854e92a317 ******/ %feature("compactdefaultargs") AdvApp2Var_Node; %feature("autodoc", " Parameters @@ -2936,8 +2936,8 @@ No available documentation. ") AdvApp2Var_Node; AdvApp2Var_Node(const Standard_Integer iu, const Standard_Integer iv); - /****************** AdvApp2Var_Node ******************/ - /**** md5 signature: 02101f67a99867a736cba2d1116fa5ee ****/ + /****** AdvApp2Var_Node::AdvApp2Var_Node ******/ + /****** md5 signature: 02101f67a99867a736cba2d1116fa5ee ******/ %feature("compactdefaultargs") AdvApp2Var_Node; %feature("autodoc", " Parameters @@ -2956,8 +2956,8 @@ No available documentation. ") AdvApp2Var_Node; AdvApp2Var_Node(const gp_XY & UV, const Standard_Integer iu, const Standard_Integer iv); - /****************** Coord ******************/ - /**** md5 signature: 55c3583d2b85a3d85724dfd062f17fa4 ****/ + /****** AdvApp2Var_Node::Coord ******/ + /****** md5 signature: 55c3583d2b85a3d85724dfd062f17fa4 ******/ %feature("compactdefaultargs") Coord; %feature("autodoc", "Return ------- @@ -2969,8 +2969,8 @@ Returns the coordinates (u,v) of the node. ") Coord; const gp_XY Coord(); - /****************** Error ******************/ - /**** md5 signature: 4813a340da2d4e85dbd4db1c55725856 ****/ + /****** AdvApp2Var_Node::Error ******/ + /****** md5 signature: 4813a340da2d4e85dbd4db1c55725856 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -2988,8 +2988,8 @@ Returns the error between f(u,v) and its approximation. ") Error; Standard_Real Error(const Standard_Integer iu, const Standard_Integer iv); - /****************** Point ******************/ - /**** md5 signature: 749335184bea0e3e4adcaec95037b5c4 ****/ + /****** AdvApp2Var_Node::Point ******/ + /****** md5 signature: 749335184bea0e3e4adcaec95037b5c4 ******/ %feature("compactdefaultargs") Point; %feature("autodoc", " Parameters @@ -3007,8 +3007,8 @@ Returns the value f(u,v) or its derivates on the node (u,v). ") Point; const gp_Pnt Point(const Standard_Integer iu, const Standard_Integer iv); - /****************** SetCoord ******************/ - /**** md5 signature: 4e5a25b156489466ba1a9a9f348b2305 ****/ + /****** AdvApp2Var_Node::SetCoord ******/ + /****** md5 signature: 4e5a25b156489466ba1a9a9f348b2305 ******/ %feature("compactdefaultargs") SetCoord; %feature("autodoc", " Parameters @@ -3026,8 +3026,8 @@ Changes the coordinates (u,v) to (x1,x2). ") SetCoord; void SetCoord(const Standard_Real x1, const Standard_Real x2); - /****************** SetError ******************/ - /**** md5 signature: bdc80934791ff9f2bae407029b05b646 ****/ + /****** AdvApp2Var_Node::SetError ******/ + /****** md5 signature: bdc80934791ff9f2bae407029b05b646 ******/ %feature("compactdefaultargs") SetError; %feature("autodoc", " Parameters @@ -3046,8 +3046,8 @@ Affects the error between f(u,v) and its approximation. ") SetError; void SetError(const Standard_Integer iu, const Standard_Integer iv, const Standard_Real error); - /****************** SetPoint ******************/ - /**** md5 signature: 76994ba669d4525ebd26c6236bb72440 ****/ + /****** AdvApp2Var_Node::SetPoint ******/ + /****** md5 signature: 76994ba669d4525ebd26c6236bb72440 ******/ %feature("compactdefaultargs") SetPoint; %feature("autodoc", " Parameters @@ -3066,8 +3066,8 @@ Affects the value f(u,v) or its derivates on the node (u,v). ") SetPoint; void SetPoint(const Standard_Integer iu, const Standard_Integer iv, const gp_Pnt & Pt); - /****************** UOrder ******************/ - /**** md5 signature: 240f145a108dc3ebbbcea6f9c3c264fc ****/ + /****** AdvApp2Var_Node::UOrder ******/ + /****** md5 signature: 240f145a108dc3ebbbcea6f9c3c264fc ******/ %feature("compactdefaultargs") UOrder; %feature("autodoc", "Return ------- @@ -3079,8 +3079,8 @@ Returns the continuity order in u of the node. ") UOrder; Standard_Integer UOrder(); - /****************** VOrder ******************/ - /**** md5 signature: bacd1acb31115deb5ae2d0800c99aadf ****/ + /****** AdvApp2Var_Node::VOrder ******/ + /****** md5 signature: bacd1acb31115deb5ae2d0800c99aadf ******/ %feature("compactdefaultargs") VOrder; %feature("autodoc", "Return ------- @@ -3108,8 +3108,8 @@ Returns the continuity order in v of the node. *************************/ class AdvApp2Var_Patch : public Standard_Transient { public: - /****************** AdvApp2Var_Patch ******************/ - /**** md5 signature: d33d6d4645686ec8d5b284576c0f601e ****/ + /****** AdvApp2Var_Patch::AdvApp2Var_Patch ******/ + /****** md5 signature: d33d6d4645686ec8d5b284576c0f601e ******/ %feature("compactdefaultargs") AdvApp2Var_Patch; %feature("autodoc", "Return ------- @@ -3121,8 +3121,8 @@ No available documentation. ") AdvApp2Var_Patch; AdvApp2Var_Patch(); - /****************** AdvApp2Var_Patch ******************/ - /**** md5 signature: 009293243a6ed1ff77c648dd22d8cf3b ****/ + /****** AdvApp2Var_Patch::AdvApp2Var_Patch ******/ + /****** md5 signature: 009293243a6ed1ff77c648dd22d8cf3b ******/ %feature("compactdefaultargs") AdvApp2Var_Patch; %feature("autodoc", " Parameters @@ -3144,8 +3144,8 @@ No available documentation. ") AdvApp2Var_Patch; AdvApp2Var_Patch(const Standard_Real U0, const Standard_Real U1, const Standard_Real V0, const Standard_Real V1, const Standard_Integer iu, const Standard_Integer iv); - /****************** AddConstraints ******************/ - /**** md5 signature: abf03d99820fa7dc9c1dcf3e4036e911 ****/ + /****** AdvApp2Var_Patch::AddConstraints ******/ + /****** md5 signature: abf03d99820fa7dc9c1dcf3e4036e911 ******/ %feature("compactdefaultargs") AddConstraints; %feature("autodoc", " Parameters @@ -3163,8 +3163,8 @@ No available documentation. ") AddConstraints; void AddConstraints(const AdvApp2Var_Context & Conditions, const AdvApp2Var_Framework & Constraints); - /****************** AddErrors ******************/ - /**** md5 signature: e042d0a7d13c92b6b2ba54fe1e7f2429 ****/ + /****** AdvApp2Var_Patch::AddErrors ******/ + /****** md5 signature: e042d0a7d13c92b6b2ba54fe1e7f2429 ******/ %feature("compactdefaultargs") AddErrors; %feature("autodoc", " Parameters @@ -3181,8 +3181,8 @@ No available documentation. ") AddErrors; void AddErrors(const AdvApp2Var_Framework & Constraints); - /****************** AverageErrors ******************/ - /**** md5 signature: d8502ea596eaa24c6ddd3c29b947b322 ****/ + /****** AdvApp2Var_Patch::AverageErrors ******/ + /****** md5 signature: d8502ea596eaa24c6ddd3c29b947b322 ******/ %feature("compactdefaultargs") AverageErrors; %feature("autodoc", "Return ------- @@ -3194,8 +3194,8 @@ No available documentation. ") AverageErrors; opencascade::handle AverageErrors(); - /****************** ChangeDomain ******************/ - /**** md5 signature: 2ac5144771fa2395ab4c3175f83f7fdd ****/ + /****** AdvApp2Var_Patch::ChangeDomain ******/ + /****** md5 signature: 2ac5144771fa2395ab4c3175f83f7fdd ******/ %feature("compactdefaultargs") ChangeDomain; %feature("autodoc", " Parameters @@ -3215,8 +3215,8 @@ No available documentation. ") ChangeDomain; void ChangeDomain(const Standard_Real a, const Standard_Real b, const Standard_Real c, const Standard_Real d); - /****************** ChangeNbCoeff ******************/ - /**** md5 signature: 802370e7ae3255f35692248af680e738 ****/ + /****** AdvApp2Var_Patch::ChangeNbCoeff ******/ + /****** md5 signature: 802370e7ae3255f35692248af680e738 ******/ %feature("compactdefaultargs") ChangeNbCoeff; %feature("autodoc", " Parameters @@ -3234,8 +3234,8 @@ No available documentation. ") ChangeNbCoeff; void ChangeNbCoeff(const Standard_Integer NbCoeffU, const Standard_Integer NbCoeffV); - /****************** Coefficients ******************/ - /**** md5 signature: e17d56434ae80ca1c852d61d7c3ca62a ****/ + /****** AdvApp2Var_Patch::Coefficients ******/ + /****** md5 signature: e17d56434ae80ca1c852d61d7c3ca62a ******/ %feature("compactdefaultargs") Coefficients; %feature("autodoc", " Parameters @@ -3253,8 +3253,8 @@ No available documentation. ") Coefficients; opencascade::handle Coefficients(const Standard_Integer SSPIndex, const AdvApp2Var_Context & Conditions); - /****************** CritValue ******************/ - /**** md5 signature: 23a54416c5dbe722901061f446e55cde ****/ + /****** AdvApp2Var_Patch::CritValue ******/ + /****** md5 signature: 23a54416c5dbe722901061f446e55cde ******/ %feature("compactdefaultargs") CritValue; %feature("autodoc", "Return ------- @@ -3266,8 +3266,8 @@ No available documentation. ") CritValue; Standard_Real CritValue(); - /****************** CutSense ******************/ - /**** md5 signature: 992e37471b9e9d39f6176f987d7026a1 ****/ + /****** AdvApp2Var_Patch::CutSense ******/ + /****** md5 signature: 992e37471b9e9d39f6176f987d7026a1 ******/ %feature("compactdefaultargs") CutSense; %feature("autodoc", "Return ------- @@ -3279,8 +3279,8 @@ No available documentation. ") CutSense; Standard_Integer CutSense(); - /****************** CutSense ******************/ - /**** md5 signature: 521a8a559c48f0a748d039ed8b373ff4 ****/ + /****** AdvApp2Var_Patch::CutSense ******/ + /****** md5 signature: 521a8a559c48f0a748d039ed8b373ff4 ******/ %feature("compactdefaultargs") CutSense; %feature("autodoc", " Parameters @@ -3298,8 +3298,8 @@ No available documentation. ") CutSense; Standard_Integer CutSense(const AdvApp2Var_Criterion & Crit, const Standard_Integer NumDec); - /****************** Discretise ******************/ - /**** md5 signature: c6ff2fab99b0d1f461ae97d16b7121e3 ****/ + /****** AdvApp2Var_Patch::Discretise ******/ + /****** md5 signature: c6ff2fab99b0d1f461ae97d16b7121e3 ******/ %feature("compactdefaultargs") Discretise; %feature("autodoc", " Parameters @@ -3318,8 +3318,8 @@ No available documentation. ") Discretise; void Discretise(const AdvApp2Var_Context & Conditions, const AdvApp2Var_Framework & Constraints, const AdvApp2Var_EvaluatorFunc2Var & func); - /****************** HasResult ******************/ - /**** md5 signature: 345d4b0f7e88f528928167976d8256d5 ****/ + /****** AdvApp2Var_Patch::HasResult ******/ + /****** md5 signature: 345d4b0f7e88f528928167976d8256d5 ******/ %feature("compactdefaultargs") HasResult; %feature("autodoc", "Return ------- @@ -3331,8 +3331,8 @@ No available documentation. ") HasResult; Standard_Boolean HasResult(); - /****************** IsApproximated ******************/ - /**** md5 signature: 7c34eaf99169909b82e07df22d055afb ****/ + /****** AdvApp2Var_Patch::IsApproximated ******/ + /****** md5 signature: 7c34eaf99169909b82e07df22d055afb ******/ %feature("compactdefaultargs") IsApproximated; %feature("autodoc", "Return ------- @@ -3344,8 +3344,8 @@ No available documentation. ") IsApproximated; Standard_Boolean IsApproximated(); - /****************** IsDiscretised ******************/ - /**** md5 signature: 47baa977dd394ace9e32cb703e3423fb ****/ + /****** AdvApp2Var_Patch::IsDiscretised ******/ + /****** md5 signature: 47baa977dd394ace9e32cb703e3423fb ******/ %feature("compactdefaultargs") IsDiscretised; %feature("autodoc", "Return ------- @@ -3357,8 +3357,8 @@ No available documentation. ") IsDiscretised; Standard_Boolean IsDiscretised(); - /****************** IsoErrors ******************/ - /**** md5 signature: 8ea111f68143778d4a8973276e928d0b ****/ + /****** AdvApp2Var_Patch::IsoErrors ******/ + /****** md5 signature: 8ea111f68143778d4a8973276e928d0b ******/ %feature("compactdefaultargs") IsoErrors; %feature("autodoc", "Return ------- @@ -3370,8 +3370,8 @@ No available documentation. ") IsoErrors; opencascade::handle IsoErrors(); - /****************** MakeApprox ******************/ - /**** md5 signature: 276a3e9cd61d2de916908db5672bd9b2 ****/ + /****** AdvApp2Var_Patch::MakeApprox ******/ + /****** md5 signature: 276a3e9cd61d2de916908db5672bd9b2 ******/ %feature("compactdefaultargs") MakeApprox; %feature("autodoc", " Parameters @@ -3390,8 +3390,8 @@ No available documentation. ") MakeApprox; void MakeApprox(const AdvApp2Var_Context & Conditions, const AdvApp2Var_Framework & Constraints, const Standard_Integer NumDec); - /****************** MaxErrors ******************/ - /**** md5 signature: 2c31ae61bc19ac28b8afc8aaffbdb3d7 ****/ + /****** AdvApp2Var_Patch::MaxErrors ******/ + /****** md5 signature: 2c31ae61bc19ac28b8afc8aaffbdb3d7 ******/ %feature("compactdefaultargs") MaxErrors; %feature("autodoc", "Return ------- @@ -3403,8 +3403,8 @@ No available documentation. ") MaxErrors; opencascade::handle MaxErrors(); - /****************** NbCoeffInU ******************/ - /**** md5 signature: 69cd17080302de88c9d27eb417982d70 ****/ + /****** AdvApp2Var_Patch::NbCoeffInU ******/ + /****** md5 signature: 69cd17080302de88c9d27eb417982d70 ******/ %feature("compactdefaultargs") NbCoeffInU; %feature("autodoc", "Return ------- @@ -3416,8 +3416,8 @@ No available documentation. ") NbCoeffInU; Standard_Integer NbCoeffInU(); - /****************** NbCoeffInV ******************/ - /**** md5 signature: 5fdc9c87479a6f2cd28f37494a151db7 ****/ + /****** AdvApp2Var_Patch::NbCoeffInV ******/ + /****** md5 signature: 5fdc9c87479a6f2cd28f37494a151db7 ******/ %feature("compactdefaultargs") NbCoeffInV; %feature("autodoc", "Return ------- @@ -3429,8 +3429,8 @@ No available documentation. ") NbCoeffInV; Standard_Integer NbCoeffInV(); - /****************** OverwriteApprox ******************/ - /**** md5 signature: 498eeb5383c32fe019241a25212632dc ****/ + /****** AdvApp2Var_Patch::OverwriteApprox ******/ + /****** md5 signature: 498eeb5383c32fe019241a25212632dc ******/ %feature("compactdefaultargs") OverwriteApprox; %feature("autodoc", "Return ------- @@ -3442,8 +3442,8 @@ No available documentation. ") OverwriteApprox; void OverwriteApprox(); - /****************** Poles ******************/ - /**** md5 signature: a678e8da8145f8a2e18659df95598b78 ****/ + /****** AdvApp2Var_Patch::Poles ******/ + /****** md5 signature: a678e8da8145f8a2e18659df95598b78 ******/ %feature("compactdefaultargs") Poles; %feature("autodoc", " Parameters @@ -3461,8 +3461,8 @@ No available documentation. ") Poles; opencascade::handle Poles(const Standard_Integer SSPIndex, const AdvApp2Var_Context & Conditions); - /****************** ResetApprox ******************/ - /**** md5 signature: 95158c4db01998815f8d16a93f8762e3 ****/ + /****** AdvApp2Var_Patch::ResetApprox ******/ + /****** md5 signature: 95158c4db01998815f8d16a93f8762e3 ******/ %feature("compactdefaultargs") ResetApprox; %feature("autodoc", "Return ------- @@ -3474,8 +3474,8 @@ No available documentation. ") ResetApprox; void ResetApprox(); - /****************** SetCritValue ******************/ - /**** md5 signature: fa8644c9d9151b6fc16f33d9ba06eb43 ****/ + /****** AdvApp2Var_Patch::SetCritValue ******/ + /****** md5 signature: fa8644c9d9151b6fc16f33d9ba06eb43 ******/ %feature("compactdefaultargs") SetCritValue; %feature("autodoc", " Parameters @@ -3492,8 +3492,8 @@ No available documentation. ") SetCritValue; void SetCritValue(const Standard_Real dist); - /****************** U0 ******************/ - /**** md5 signature: 339bb715a75de7a8b4555f6a339ebd10 ****/ + /****** AdvApp2Var_Patch::U0 ******/ + /****** md5 signature: 339bb715a75de7a8b4555f6a339ebd10 ******/ %feature("compactdefaultargs") U0; %feature("autodoc", "Return ------- @@ -3505,8 +3505,8 @@ No available documentation. ") U0; Standard_Real U0(); - /****************** U1 ******************/ - /**** md5 signature: dc11e0157513dfb2ced295d3b3c19ebf ****/ + /****** AdvApp2Var_Patch::U1 ******/ + /****** md5 signature: dc11e0157513dfb2ced295d3b3c19ebf ******/ %feature("compactdefaultargs") U1; %feature("autodoc", "Return ------- @@ -3518,8 +3518,8 @@ No available documentation. ") U1; Standard_Real U1(); - /****************** UOrder ******************/ - /**** md5 signature: 3bb505464047fef2900b8b2c2896c41e ****/ + /****** AdvApp2Var_Patch::UOrder ******/ + /****** md5 signature: 3bb505464047fef2900b8b2c2896c41e ******/ %feature("compactdefaultargs") UOrder; %feature("autodoc", "Return ------- @@ -3531,8 +3531,8 @@ No available documentation. ") UOrder; Standard_Integer UOrder(); - /****************** V0 ******************/ - /**** md5 signature: 00b73901144f5edffff220d5d949eac1 ****/ + /****** AdvApp2Var_Patch::V0 ******/ + /****** md5 signature: 00b73901144f5edffff220d5d949eac1 ******/ %feature("compactdefaultargs") V0; %feature("autodoc", "Return ------- @@ -3544,8 +3544,8 @@ No available documentation. ") V0; Standard_Real V0(); - /****************** V1 ******************/ - /**** md5 signature: 4690fe5b6fc46d61802a6f0d508c99e5 ****/ + /****** AdvApp2Var_Patch::V1 ******/ + /****** md5 signature: 4690fe5b6fc46d61802a6f0d508c99e5 ******/ %feature("compactdefaultargs") V1; %feature("autodoc", "Return ------- @@ -3557,8 +3557,8 @@ No available documentation. ") V1; Standard_Real V1(); - /****************** VOrder ******************/ - /**** md5 signature: 704529177e651451c5029c517db99652 ****/ + /****** AdvApp2Var_Patch::VOrder ******/ + /****** md5 signature: 704529177e651451c5029c517db99652 ******/ %feature("compactdefaultargs") VOrder; %feature("autodoc", "Return ------- @@ -3587,8 +3587,8 @@ No available documentation. class AdvApp2Var_SysBase { public: class mitem {}; - /****************** AdvApp2Var_SysBase ******************/ - /**** md5 signature: 037dbb5c455e29c97a0cdd1615e8c69a ****/ + /****** AdvApp2Var_SysBase::AdvApp2Var_SysBase ******/ + /****** md5 signature: 037dbb5c455e29c97a0cdd1615e8c69a ******/ %feature("compactdefaultargs") AdvApp2Var_SysBase; %feature("autodoc", "Return ------- @@ -3600,8 +3600,8 @@ No available documentation. ") AdvApp2Var_SysBase; AdvApp2Var_SysBase(); - /****************** do__fio ******************/ - /**** md5 signature: 2cf3b2f76e4397a39b6b26f1f24587d6 ****/ + /****** AdvApp2Var_SysBase::do__fio ******/ + /****** md5 signature: 2cf3b2f76e4397a39b6b26f1f24587d6 ******/ %feature("compactdefaultargs") do__fio; %feature("autodoc", "Return ------- @@ -3613,8 +3613,8 @@ No available documentation. ") do__fio; static int do__fio(); - /****************** do__lio ******************/ - /**** md5 signature: 1aad0eab41f21d50ea885ddaf41bd76b ****/ + /****** AdvApp2Var_SysBase::do__lio ******/ + /****** md5 signature: 1aad0eab41f21d50ea885ddaf41bd76b ******/ %feature("compactdefaultargs") do__lio; %feature("autodoc", "Return ------- @@ -3626,8 +3626,8 @@ No available documentation. ") do__lio; static int do__lio(); - /****************** macinit_ ******************/ - /**** md5 signature: b882f9f2083ffeb7a4d047c8c9eed173 ****/ + /****** AdvApp2Var_SysBase::macinit_ ******/ + /****** md5 signature: b882f9f2083ffeb7a4d047c8c9eed173 ******/ %feature("compactdefaultargs") macinit_; %feature("autodoc", " Parameters @@ -3645,8 +3645,8 @@ No available documentation. ") macinit_; static int macinit_(int * , int * ); - /****************** macrai4_ ******************/ - /**** md5 signature: 0b82b8932cd90447e9719c6d0ea6770e ****/ + /****** AdvApp2Var_SysBase::macrai4_ ******/ + /****** md5 signature: 0b82b8932cd90447e9719c6d0ea6770e ******/ %feature("compactdefaultargs") macrai4_; %feature("autodoc", " Parameters @@ -3667,8 +3667,8 @@ No available documentation. ") macrai4_; int macrai4_(integer * nbelem, integer * maxelm, integer * itablo, intptr_t * iofset, integer * iercod); - /****************** macrar8_ ******************/ - /**** md5 signature: 0fe325ba06bc2bb7a2a56adaadaef79f ****/ + /****** AdvApp2Var_SysBase::macrar8_ ******/ + /****** md5 signature: 0fe325ba06bc2bb7a2a56adaadaef79f ******/ %feature("compactdefaultargs") macrar8_; %feature("autodoc", " Parameters @@ -3689,8 +3689,8 @@ No available documentation. ") macrar8_; int macrar8_(integer * nbelem, integer * maxelm, doublereal * xtablo, intptr_t * iofset, integer * iercod); - /****************** macrdi4_ ******************/ - /**** md5 signature: adbf9dc4998d49cdeb9ec904ae5369d9 ****/ + /****** AdvApp2Var_SysBase::macrdi4_ ******/ + /****** md5 signature: adbf9dc4998d49cdeb9ec904ae5369d9 ******/ %feature("compactdefaultargs") macrdi4_; %feature("autodoc", " Parameters @@ -3711,8 +3711,8 @@ No available documentation. ") macrdi4_; int macrdi4_(integer * nbelem, integer * maxelm, integer * itablo, intptr_t * iofset, integer * iercod); - /****************** macrdr8_ ******************/ - /**** md5 signature: 59c1de640359cc81a9ba0b28ba054a45 ****/ + /****** AdvApp2Var_SysBase::macrdr8_ ******/ + /****** md5 signature: 59c1de640359cc81a9ba0b28ba054a45 ******/ %feature("compactdefaultargs") macrdr8_; %feature("autodoc", " Parameters @@ -3733,8 +3733,8 @@ No available documentation. ") macrdr8_; int macrdr8_(integer * nbelem, integer * maxelm, doublereal * xtablo, intptr_t * iofset, integer * iercod); - /****************** maermsg_ ******************/ - /**** md5 signature: 3521f6514eb56f1d2efe552ec8bb7ef0 ****/ + /****** AdvApp2Var_SysBase::maermsg_ ******/ + /****** md5 signature: 3521f6514eb56f1d2efe552ec8bb7ef0 ******/ %feature("compactdefaultargs") maermsg_; %feature("autodoc", " Parameters @@ -3753,8 +3753,8 @@ No available documentation. ") maermsg_; static int maermsg_(const char * cnompg, integer * icoder, ftnlen cnompg_len); - /****************** mainial_ ******************/ - /**** md5 signature: 22a172c01af47b94bac0122c7c454091 ****/ + /****** AdvApp2Var_SysBase::mainial_ ******/ + /****** md5 signature: 22a172c01af47b94bac0122c7c454091 ******/ %feature("compactdefaultargs") mainial_; %feature("autodoc", "Return ------- @@ -3766,8 +3766,8 @@ No available documentation. ") mainial_; int mainial_(); - /****************** maitbr8_ ******************/ - /**** md5 signature: b9cb20c149f17c408909c17bd7b8ed49 ****/ + /****** AdvApp2Var_SysBase::maitbr8_ ******/ + /****** md5 signature: b9cb20c149f17c408909c17bd7b8ed49 ******/ %feature("compactdefaultargs") maitbr8_; %feature("autodoc", " Parameters @@ -3786,8 +3786,8 @@ No available documentation. ") maitbr8_; static int maitbr8_(integer * itaill, doublereal * xtab, doublereal * xval); - /****************** maovsr8_ ******************/ - /**** md5 signature: 4ed73ca13a51d2c0e3c314b21da45c12 ****/ + /****** AdvApp2Var_SysBase::maovsr8_ ******/ + /****** md5 signature: 4ed73ca13a51d2c0e3c314b21da45c12 ******/ %feature("compactdefaultargs") maovsr8_; %feature("autodoc", " Parameters @@ -3804,8 +3804,8 @@ No available documentation. ") maovsr8_; static int maovsr8_(integer * ivalcs); - /****************** mcrdelt_ ******************/ - /**** md5 signature: 819c57c0f692a59c62677eb50adb81a4 ****/ + /****** AdvApp2Var_SysBase::mcrdelt_ ******/ + /****** md5 signature: 819c57c0f692a59c62677eb50adb81a4 ******/ %feature("compactdefaultargs") mcrdelt_; %feature("autodoc", " Parameters @@ -3826,8 +3826,8 @@ No available documentation. ") mcrdelt_; int mcrdelt_(integer * iunit, integer * isize, void * t, intptr_t * iofset, integer * iercod); - /****************** mcrfill_ ******************/ - /**** md5 signature: be4b67960201d9ced29ceedc9f961ab3 ****/ + /****** AdvApp2Var_SysBase::mcrfill_ ******/ + /****** md5 signature: be4b67960201d9ced29ceedc9f961ab3 ******/ %feature("compactdefaultargs") mcrfill_; %feature("autodoc", " Parameters @@ -3846,8 +3846,8 @@ No available documentation. ") mcrfill_; static int mcrfill_(integer * size, void * tin, void * tout); - /****************** mcrrqst_ ******************/ - /**** md5 signature: 4679deece1dda86417c4beb0334c93cb ****/ + /****** AdvApp2Var_SysBase::mcrrqst_ ******/ + /****** md5 signature: 4679deece1dda86417c4beb0334c93cb ******/ %feature("compactdefaultargs") mcrrqst_; %feature("autodoc", " Parameters @@ -3868,8 +3868,8 @@ No available documentation. ") mcrrqst_; int mcrrqst_(integer * iunit, integer * isize, void * t, intptr_t * iofset, integer * iercod); - /****************** mgenmsg_ ******************/ - /**** md5 signature: 1b59b230a367abddf3b9cd6a99b39487 ****/ + /****** AdvApp2Var_SysBase::mgenmsg_ ******/ + /****** md5 signature: 1b59b230a367abddf3b9cd6a99b39487 ******/ %feature("compactdefaultargs") mgenmsg_; %feature("autodoc", " Parameters @@ -3887,8 +3887,8 @@ No available documentation. ") mgenmsg_; static int mgenmsg_(const char * nomprg, ftnlen nomprg_len); - /****************** mgsomsg_ ******************/ - /**** md5 signature: 31f3734e692045616afd66e3f8757450 ****/ + /****** AdvApp2Var_SysBase::mgsomsg_ ******/ + /****** md5 signature: 31f3734e692045616afd66e3f8757450 ******/ %feature("compactdefaultargs") mgsomsg_; %feature("autodoc", " Parameters @@ -3906,8 +3906,8 @@ No available documentation. ") mgsomsg_; static int mgsomsg_(const char * nomprg, ftnlen nomprg_len); - /****************** miraz_ ******************/ - /**** md5 signature: 24a2a1e4b8fd6828d77f5010fa9d9f7f ****/ + /****** AdvApp2Var_SysBase::miraz_ ******/ + /****** md5 signature: 24a2a1e4b8fd6828d77f5010fa9d9f7f ******/ %feature("compactdefaultargs") miraz_; %feature("autodoc", " Parameters @@ -3925,8 +3925,8 @@ No available documentation. ") miraz_; static void miraz_(integer * taille, void * adt); - /****************** mnfndeb_ ******************/ - /**** md5 signature: e206e56e1443aff338ea92ec4b50fe55 ****/ + /****** AdvApp2Var_SysBase::mnfndeb_ ******/ + /****** md5 signature: e206e56e1443aff338ea92ec4b50fe55 ******/ %feature("compactdefaultargs") mnfndeb_; %feature("autodoc", "Return ------- @@ -3938,8 +3938,8 @@ No available documentation. ") mnfndeb_; static integer mnfndeb_(); - /****************** msifill_ ******************/ - /**** md5 signature: b3303f70cf7f1647dd193e2d74bb0381 ****/ + /****** AdvApp2Var_SysBase::msifill_ ******/ + /****** md5 signature: b3303f70cf7f1647dd193e2d74bb0381 ******/ %feature("compactdefaultargs") msifill_; %feature("autodoc", " Parameters @@ -3958,8 +3958,8 @@ No available documentation. ") msifill_; static int msifill_(integer * nbintg, integer * ivecin, integer * ivecou); - /****************** msrfill_ ******************/ - /**** md5 signature: 4da81a3e2f58e8e272de26cef456ca5c ****/ + /****** AdvApp2Var_SysBase::msrfill_ ******/ + /****** md5 signature: 4da81a3e2f58e8e272de26cef456ca5c ******/ %feature("compactdefaultargs") msrfill_; %feature("autodoc", " Parameters @@ -3978,8 +3978,8 @@ No available documentation. ") msrfill_; static int msrfill_(integer * nbreel, doublereal * vecent, doublereal * vecsor); - /****************** mswrdbg_ ******************/ - /**** md5 signature: b893a114fc87aec8b4d99925d2ba32a0 ****/ + /****** AdvApp2Var_SysBase::mswrdbg_ ******/ + /****** md5 signature: b893a114fc87aec8b4d99925d2ba32a0 ******/ %feature("compactdefaultargs") mswrdbg_; %feature("autodoc", " Parameters @@ -3997,8 +3997,8 @@ No available documentation. ") mswrdbg_; static int mswrdbg_(const char * ctexte, ftnlen ctexte_len); - /****************** mvriraz_ ******************/ - /**** md5 signature: 50aaf265d23e4b6465b101662340699b ****/ + /****** AdvApp2Var_SysBase::mvriraz_ ******/ + /****** md5 signature: 50aaf265d23e4b6465b101662340699b ******/ %feature("compactdefaultargs") mvriraz_; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/AdvApprox.i b/src/SWIG_files/wrapper/AdvApprox.i index 74721ee16..3c450f7e3 100644 --- a/src/SWIG_files/wrapper/AdvApprox.i +++ b/src/SWIG_files/wrapper/AdvApprox.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define ADVAPPROXDOCSTRING "AdvApprox module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_advapprox.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_advapprox.html" %enddef %module (package="OCC.Core", docstring=ADVAPPROXDOCSTRING) AdvApprox @@ -88,8 +88,8 @@ from OCC.Core.Exception import * **********************************/ class AdvApprox_ApproxAFunction { public: - /****************** AdvApprox_ApproxAFunction ******************/ - /**** md5 signature: 52698dd73ba5a2e229f763f1eeaa3916 ****/ + /****** AdvApprox_ApproxAFunction::AdvApprox_ApproxAFunction ******/ + /****** md5 signature: 52698dd73ba5a2e229f763f1eeaa3916 ******/ %feature("compactdefaultargs") AdvApprox_ApproxAFunction; %feature("autodoc", " Parameters @@ -117,8 +117,8 @@ Constructs approximator tool. //! warning: the func should be valid reference to ") AdvApprox_ApproxAFunction; AdvApprox_ApproxAFunction(const Standard_Integer Num1DSS, const Standard_Integer Num2DSS, const Standard_Integer Num3DSS, const opencascade::handle & OneDTol, const opencascade::handle & TwoDTol, const opencascade::handle & ThreeDTol, const Standard_Real First, const Standard_Real Last, const GeomAbs_Shape Continuity, const Standard_Integer MaxDeg, const Standard_Integer MaxSeg, const AdvApprox_EvaluatorFunction & Func); - /****************** AdvApprox_ApproxAFunction ******************/ - /**** md5 signature: 3c7b9b1840e5ed63d1e5cf800bb06df4 ****/ + /****** AdvApprox_ApproxAFunction::AdvApprox_ApproxAFunction ******/ + /****** md5 signature: 3c7b9b1840e5ed63d1e5cf800bb06df4 ******/ %feature("compactdefaultargs") AdvApprox_ApproxAFunction; %feature("autodoc", " Parameters @@ -147,8 +147,8 @@ Approximation with user methode of cutting. ") AdvApprox_ApproxAFunction; AdvApprox_ApproxAFunction(const Standard_Integer Num1DSS, const Standard_Integer Num2DSS, const Standard_Integer Num3DSS, const opencascade::handle & OneDTol, const opencascade::handle & TwoDTol, const opencascade::handle & ThreeDTol, const Standard_Real First, const Standard_Real Last, const GeomAbs_Shape Continuity, const Standard_Integer MaxDeg, const Standard_Integer MaxSeg, const AdvApprox_EvaluatorFunction & Func, const AdvApprox_Cutting & CutTool); - /****************** Approximation ******************/ - /**** md5 signature: 9f78b3fd0d68a0fda47d9a3558a9335b ****/ + /****** AdvApprox_ApproxAFunction::Approximation ******/ + /****** md5 signature: 9f78b3fd0d68a0fda47d9a3558a9335b ******/ %feature("compactdefaultargs") Approximation; %feature("autodoc", " Parameters @@ -182,8 +182,8 @@ No available documentation. ") Approximation; static void Approximation(const Standard_Integer TotalDimension, const Standard_Integer TotalNumSS, const TColStd_Array1OfInteger & LocalDimension, const Standard_Real First, const Standard_Real Last, AdvApprox_EvaluatorFunction & Evaluator, const AdvApprox_Cutting & CutTool, const Standard_Integer ContinuityOrder, const Standard_Integer NumMaxCoeffs, const Standard_Integer MaxSegments, const TColStd_Array1OfReal & TolerancesArray, const Standard_Integer code_precis, Standard_Integer &OutValue, TColStd_Array1OfInteger & NumCoeffPerCurveArray, TColStd_Array1OfReal & LocalCoefficientArray, TColStd_Array1OfReal & IntervalsArray, TColStd_Array1OfReal & ErrorMaxArray, TColStd_Array1OfReal & AverageErrorArray, Standard_Integer &OutValue); - /****************** AverageError ******************/ - /**** md5 signature: d3a5b5e32b36bc7e79202cfa1abaedbe ****/ + /****** AdvApprox_ApproxAFunction::AverageError ******/ + /****** md5 signature: d3a5b5e32b36bc7e79202cfa1abaedbe ******/ %feature("compactdefaultargs") AverageError; %feature("autodoc", " Parameters @@ -200,8 +200,8 @@ Returns the error as is in the algorithms. ") AverageError; opencascade::handle AverageError(const Standard_Integer Dimension); - /****************** AverageError ******************/ - /**** md5 signature: b46c820432bcb3498c5c88e842dca097 ****/ + /****** AdvApprox_ApproxAFunction::AverageError ******/ + /****** md5 signature: b46c820432bcb3498c5c88e842dca097 ******/ %feature("compactdefaultargs") AverageError; %feature("autodoc", " Parameters @@ -219,8 +219,8 @@ No available documentation. ") AverageError; Standard_Real AverageError(const Standard_Integer Dimension, const Standard_Integer Index); - /****************** Degree ******************/ - /**** md5 signature: e3276df1ce733e2c8e940db548a26d03 ****/ + /****** AdvApprox_ApproxAFunction::Degree ******/ + /****** md5 signature: e3276df1ce733e2c8e940db548a26d03 ******/ %feature("compactdefaultargs") Degree; %feature("autodoc", "Return ------- @@ -232,8 +232,8 @@ No available documentation. ") Degree; Standard_Integer Degree(); - /****************** Dump ******************/ - /**** md5 signature: d37b43e0b2386dc096d5d707876db157 ****/ + /****** AdvApprox_ApproxAFunction::Dump ******/ + /****** md5 signature: d37b43e0b2386dc096d5d707876db157 ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", " Parameters @@ -249,8 +249,8 @@ Display information on approximation. ") Dump; void Dump(std::ostream &OutValue); - /****************** HasResult ******************/ - /**** md5 signature: 345d4b0f7e88f528928167976d8256d5 ****/ + /****** AdvApprox_ApproxAFunction::HasResult ******/ + /****** md5 signature: 345d4b0f7e88f528928167976d8256d5 ******/ %feature("compactdefaultargs") HasResult; %feature("autodoc", "Return ------- @@ -262,8 +262,8 @@ No available documentation. ") HasResult; Standard_Boolean HasResult(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** AdvApprox_ApproxAFunction::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -275,8 +275,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** Knots ******************/ - /**** md5 signature: e3036b1d0b355a749bda4aabdce1e25e ****/ + /****** AdvApprox_ApproxAFunction::Knots ******/ + /****** md5 signature: e3036b1d0b355a749bda4aabdce1e25e ******/ %feature("compactdefaultargs") Knots; %feature("autodoc", "Return ------- @@ -288,8 +288,8 @@ No available documentation. ") Knots; opencascade::handle Knots(); - /****************** MaxError ******************/ - /**** md5 signature: 65f67ba992f5651ddbda653be6688fd1 ****/ + /****** AdvApprox_ApproxAFunction::MaxError ******/ + /****** md5 signature: 65f67ba992f5651ddbda653be6688fd1 ******/ %feature("compactdefaultargs") MaxError; %feature("autodoc", " Parameters @@ -306,8 +306,8 @@ Returns the error as is in the algorithms. ") MaxError; opencascade::handle MaxError(const Standard_Integer Dimension); - /****************** MaxError ******************/ - /**** md5 signature: 5025e53abdc4b5b4ec15e940b792a6ea ****/ + /****** AdvApprox_ApproxAFunction::MaxError ******/ + /****** md5 signature: 5025e53abdc4b5b4ec15e940b792a6ea ******/ %feature("compactdefaultargs") MaxError; %feature("autodoc", " Parameters @@ -325,8 +325,8 @@ No available documentation. ") MaxError; Standard_Real MaxError(const Standard_Integer Dimension, const Standard_Integer Index); - /****************** Multiplicities ******************/ - /**** md5 signature: 9e49a3a1189f16bd9a66f6044bdea111 ****/ + /****** AdvApprox_ApproxAFunction::Multiplicities ******/ + /****** md5 signature: 9e49a3a1189f16bd9a66f6044bdea111 ******/ %feature("compactdefaultargs") Multiplicities; %feature("autodoc", "Return ------- @@ -338,8 +338,8 @@ No available documentation. ") Multiplicities; opencascade::handle Multiplicities(); - /****************** NbKnots ******************/ - /**** md5 signature: ccda669299f8eba1ba0d3387af4c950e ****/ + /****** AdvApprox_ApproxAFunction::NbKnots ******/ + /****** md5 signature: ccda669299f8eba1ba0d3387af4c950e ******/ %feature("compactdefaultargs") NbKnots; %feature("autodoc", "Return ------- @@ -351,8 +351,8 @@ No available documentation. ") NbKnots; Standard_Integer NbKnots(); - /****************** NbPoles ******************/ - /**** md5 signature: 9a7d6d5f8a21c5833786e951bce99604 ****/ + /****** AdvApprox_ApproxAFunction::NbPoles ******/ + /****** md5 signature: 9a7d6d5f8a21c5833786e951bce99604 ******/ %feature("compactdefaultargs") NbPoles; %feature("autodoc", "Return ------- @@ -364,8 +364,8 @@ As the name says. ") NbPoles; Standard_Integer NbPoles(); - /****************** NumSubSpaces ******************/ - /**** md5 signature: 1f04f546c1efa091a0725c4b06bc8324 ****/ + /****** AdvApprox_ApproxAFunction::NumSubSpaces ******/ + /****** md5 signature: 1f04f546c1efa091a0725c4b06bc8324 ******/ %feature("compactdefaultargs") NumSubSpaces; %feature("autodoc", " Parameters @@ -382,8 +382,8 @@ No available documentation. ") NumSubSpaces; Standard_Integer NumSubSpaces(const Standard_Integer Dimension); - /****************** Poles ******************/ - /**** md5 signature: 8cc6feb688f8fc6866490bd3dec45155 ****/ + /****** AdvApprox_ApproxAFunction::Poles ******/ + /****** md5 signature: 8cc6feb688f8fc6866490bd3dec45155 ******/ %feature("compactdefaultargs") Poles; %feature("autodoc", "Return ------- @@ -395,8 +395,8 @@ Description ") Poles; opencascade::handle Poles(); - /****************** Poles ******************/ - /**** md5 signature: 70f7f2780ee5277810f623af82eaa942 ****/ + /****** AdvApprox_ApproxAFunction::Poles ******/ + /****** md5 signature: 70f7f2780ee5277810f623af82eaa942 ******/ %feature("compactdefaultargs") Poles; %feature("autodoc", " Parameters @@ -414,8 +414,8 @@ Returns the poles at index from the 3d subspace. ") Poles; void Poles(const Standard_Integer Index, TColgp_Array1OfPnt & P); - /****************** Poles1d ******************/ - /**** md5 signature: 50dedda33d16f0863543f211d9c672d7 ****/ + /****** AdvApprox_ApproxAFunction::Poles1d ******/ + /****** md5 signature: 50dedda33d16f0863543f211d9c672d7 ******/ %feature("compactdefaultargs") Poles1d; %feature("autodoc", "Return ------- @@ -427,8 +427,8 @@ Returns the poles from the algorithms as is. ") Poles1d; opencascade::handle Poles1d(); - /****************** Poles1d ******************/ - /**** md5 signature: bbe028eb84e30d7d276f2dfbcdab8d94 ****/ + /****** AdvApprox_ApproxAFunction::Poles1d ******/ + /****** md5 signature: bbe028eb84e30d7d276f2dfbcdab8d94 ******/ %feature("compactdefaultargs") Poles1d; %feature("autodoc", " Parameters @@ -446,8 +446,8 @@ Returns the poles at index from the 1d subspace. ") Poles1d; void Poles1d(const Standard_Integer Index, TColStd_Array1OfReal & P); - /****************** Poles2d ******************/ - /**** md5 signature: 17feefc22dc950f494bdca290d69c41c ****/ + /****** AdvApprox_ApproxAFunction::Poles2d ******/ + /****** md5 signature: 17feefc22dc950f494bdca290d69c41c ******/ %feature("compactdefaultargs") Poles2d; %feature("autodoc", "Return ------- @@ -459,8 +459,8 @@ Returns the poles from the algorithms as is. ") Poles2d; opencascade::handle Poles2d(); - /****************** Poles2d ******************/ - /**** md5 signature: eb553b876b593ca686aaad8a47bbee13 ****/ + /****** AdvApprox_ApproxAFunction::Poles2d ******/ + /****** md5 signature: eb553b876b593ca686aaad8a47bbee13 ******/ %feature("compactdefaultargs") Poles2d; %feature("autodoc", " Parameters @@ -493,8 +493,8 @@ Returns the poles at index from the 2d subspace. %nodefaultctor AdvApprox_Cutting; class AdvApprox_Cutting { public: - /****************** Value ******************/ - /**** md5 signature: 2a55932822e40a99ef4fb0b17db08278 ****/ + /****** AdvApprox_Cutting::Value ******/ + /****** md5 signature: 2a55932822e40a99ef4fb0b17db08278 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -529,8 +529,8 @@ No available documentation. *******************************/ class AdvApprox_SimpleApprox { public: - /****************** AdvApprox_SimpleApprox ******************/ - /**** md5 signature: 270cf65a533da8c6af961ac48b19228b ****/ + /****** AdvApprox_SimpleApprox::AdvApprox_SimpleApprox ******/ + /****** md5 signature: 270cf65a533da8c6af961ac48b19228b ******/ %feature("compactdefaultargs") AdvApprox_SimpleApprox; %feature("autodoc", " Parameters @@ -553,8 +553,8 @@ No available documentation. ") AdvApprox_SimpleApprox; AdvApprox_SimpleApprox(const Standard_Integer TotalDimension, const Standard_Integer TotalNumSS, const GeomAbs_Shape Continuity, const Standard_Integer WorkDegree, const Standard_Integer NbGaussPoints, const opencascade::handle & JacobiBase, const AdvApprox_EvaluatorFunction & Func); - /****************** AverageError ******************/ - /**** md5 signature: 7406f4cb057b3ba4d255eeb1dcbafe20 ****/ + /****** AdvApprox_SimpleApprox::AverageError ******/ + /****** md5 signature: 7406f4cb057b3ba4d255eeb1dcbafe20 ******/ %feature("compactdefaultargs") AverageError; %feature("autodoc", " Parameters @@ -571,8 +571,8 @@ No available documentation. ") AverageError; Standard_Real AverageError(const Standard_Integer Index); - /****************** Coefficients ******************/ - /**** md5 signature: f8d98a88294910b80f034293241aa939 ****/ + /****** AdvApprox_SimpleApprox::Coefficients ******/ + /****** md5 signature: f8d98a88294910b80f034293241aa939 ******/ %feature("compactdefaultargs") Coefficients; %feature("autodoc", "Return ------- @@ -584,8 +584,8 @@ Returns the coefficients in the jacobi base. ") Coefficients; opencascade::handle Coefficients(); - /****************** Degree ******************/ - /**** md5 signature: e3276df1ce733e2c8e940db548a26d03 ****/ + /****** AdvApprox_SimpleApprox::Degree ******/ + /****** md5 signature: e3276df1ce733e2c8e940db548a26d03 ******/ %feature("compactdefaultargs") Degree; %feature("autodoc", "Return ------- @@ -597,8 +597,8 @@ No available documentation. ") Degree; Standard_Integer Degree(); - /****************** DifTab ******************/ - /**** md5 signature: cd3f00845ed7985681a4ecca4468e0f3 ****/ + /****** AdvApprox_SimpleApprox::DifTab ******/ + /****** md5 signature: cd3f00845ed7985681a4ecca4468e0f3 ******/ %feature("compactdefaultargs") DifTab; %feature("autodoc", "Return ------- @@ -610,8 +610,8 @@ No available documentation. ") DifTab; opencascade::handle DifTab(); - /****************** Dump ******************/ - /**** md5 signature: d37b43e0b2386dc096d5d707876db157 ****/ + /****** AdvApprox_SimpleApprox::Dump ******/ + /****** md5 signature: d37b43e0b2386dc096d5d707876db157 ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", " Parameters @@ -627,8 +627,8 @@ Display information on approximation. ") Dump; void Dump(std::ostream &OutValue); - /****************** FirstConstr ******************/ - /**** md5 signature: f7818f8b2283dc680ce2b42c85a59f9d ****/ + /****** AdvApprox_SimpleApprox::FirstConstr ******/ + /****** md5 signature: f7818f8b2283dc680ce2b42c85a59f9d ******/ %feature("compactdefaultargs") FirstConstr; %feature("autodoc", "Return ------- @@ -640,8 +640,8 @@ Returns the constraints at first. ") FirstConstr; opencascade::handle FirstConstr(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** AdvApprox_SimpleApprox::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -653,8 +653,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** LastConstr ******************/ - /**** md5 signature: 740c220072c2649ff64a4ddf79211099 ****/ + /****** AdvApprox_SimpleApprox::LastConstr ******/ + /****** md5 signature: 740c220072c2649ff64a4ddf79211099 ******/ %feature("compactdefaultargs") LastConstr; %feature("autodoc", "Return ------- @@ -666,8 +666,8 @@ Returns the constraints at last. ") LastConstr; opencascade::handle LastConstr(); - /****************** MaxError ******************/ - /**** md5 signature: cce0b3a0574e15581306a5273b015a12 ****/ + /****** AdvApprox_SimpleApprox::MaxError ******/ + /****** md5 signature: cce0b3a0574e15581306a5273b015a12 ******/ %feature("compactdefaultargs") MaxError; %feature("autodoc", " Parameters @@ -684,8 +684,8 @@ No available documentation. ") MaxError; Standard_Real MaxError(const Standard_Integer Index); - /****************** Perform ******************/ - /**** md5 signature: fa12ac6af76871c60787c6e7b0bbb5a6 ****/ + /****** AdvApprox_SimpleApprox::Perform ******/ + /****** md5 signature: fa12ac6af76871c60787c6e7b0bbb5a6 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -706,8 +706,8 @@ Constructs approximator tool. //! warning: the func should be valid reference to ") Perform; void Perform(const TColStd_Array1OfInteger & LocalDimension, const TColStd_Array1OfReal & LocalTolerancesArray, const Standard_Real First, const Standard_Real Last, const Standard_Integer MaxDegree); - /****************** SomTab ******************/ - /**** md5 signature: e2354e299b61e673e6368c628fdcb464 ****/ + /****** AdvApprox_SimpleApprox::SomTab ******/ + /****** md5 signature: e2354e299b61e673e6368c628fdcb464 ******/ %feature("compactdefaultargs") SomTab; %feature("autodoc", "Return ------- @@ -733,8 +733,8 @@ No available documentation. *******************************/ class AdvApprox_DichoCutting : public AdvApprox_Cutting { public: - /****************** AdvApprox_DichoCutting ******************/ - /**** md5 signature: 49eacbf0bb8c2a4e18a60b06e528d4ee ****/ + /****** AdvApprox_DichoCutting::AdvApprox_DichoCutting ******/ + /****** md5 signature: 49eacbf0bb8c2a4e18a60b06e528d4ee ******/ %feature("compactdefaultargs") AdvApprox_DichoCutting; %feature("autodoc", "Return ------- @@ -746,8 +746,8 @@ No available documentation. ") AdvApprox_DichoCutting; AdvApprox_DichoCutting(); - /****************** Value ******************/ - /**** md5 signature: faed359aa12110072e7334faf44a2938 ****/ + /****** AdvApprox_DichoCutting::Value ******/ + /****** md5 signature: faed359aa12110072e7334faf44a2938 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -779,8 +779,8 @@ No available documentation. *****************************/ class AdvApprox_PrefAndRec : public AdvApprox_Cutting { public: - /****************** AdvApprox_PrefAndRec ******************/ - /**** md5 signature: d90754cbbe32adec40449bbd37bb798f ****/ + /****** AdvApprox_PrefAndRec::AdvApprox_PrefAndRec ******/ + /****** md5 signature: d90754cbbe32adec40449bbd37bb798f ******/ %feature("compactdefaultargs") AdvApprox_PrefAndRec; %feature("autodoc", " Parameters @@ -799,8 +799,8 @@ No available documentation. ") AdvApprox_PrefAndRec; AdvApprox_PrefAndRec(const TColStd_Array1OfReal & RecomendedCut, const TColStd_Array1OfReal & PrefferedCut, const Standard_Real Weight = 5); - /****************** Value ******************/ - /**** md5 signature: faed359aa12110072e7334faf44a2938 ****/ + /****** AdvApprox_PrefAndRec::Value ******/ + /****** md5 signature: faed359aa12110072e7334faf44a2938 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -832,8 +832,8 @@ Cuting value is - the recommended point nerest of (a+b)/2 if pi is in ]a,b[ or e ******************************/ class AdvApprox_PrefCutting : public AdvApprox_Cutting { public: - /****************** AdvApprox_PrefCutting ******************/ - /**** md5 signature: e4caf40ab49131f92edfd3f3c93d31fa ****/ + /****** AdvApprox_PrefCutting::AdvApprox_PrefCutting ******/ + /****** md5 signature: e4caf40ab49131f92edfd3f3c93d31fa ******/ %feature("compactdefaultargs") AdvApprox_PrefCutting; %feature("autodoc", " Parameters @@ -850,8 +850,8 @@ No available documentation. ") AdvApprox_PrefCutting; AdvApprox_PrefCutting(const TColStd_Array1OfReal & CutPnts); - /****************** Value ******************/ - /**** md5 signature: faed359aa12110072e7334faf44a2938 ****/ + /****** AdvApprox_PrefCutting::Value ******/ + /****** md5 signature: faed359aa12110072e7334faf44a2938 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/AppBlend.i b/src/SWIG_files/wrapper/AppBlend.i index 0ed2ff3dc..42f6b2158 100644 --- a/src/SWIG_files/wrapper/AppBlend.i +++ b/src/SWIG_files/wrapper/AppBlend.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define APPBLENDDOCSTRING "AppBlend module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_appblend.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_appblend.html" %enddef %module (package="OCC.Core", docstring=APPBLENDDOCSTRING) AppBlend @@ -84,8 +84,8 @@ from OCC.Core.Exception import * %nodefaultctor AppBlend_Approx; class AppBlend_Approx { public: - /****************** Curve2d ******************/ - /**** md5 signature: 6ef1d581e8883ca21d640959b427812e ****/ + /****** AppBlend_Approx::Curve2d ******/ + /****** md5 signature: 6ef1d581e8883ca21d640959b427812e ******/ %feature("compactdefaultargs") Curve2d; %feature("autodoc", " Parameters @@ -105,8 +105,8 @@ No available documentation. ") Curve2d; virtual void Curve2d(const Standard_Integer Index, TColgp_Array1OfPnt2d & TPoles, TColStd_Array1OfReal & TKnots, TColStd_Array1OfInteger & TMults); - /****************** Curve2dPoles ******************/ - /**** md5 signature: 21b8c37cf290ddbf86d8741351d65e6f ****/ + /****** AppBlend_Approx::Curve2dPoles ******/ + /****** md5 signature: 21b8c37cf290ddbf86d8741351d65e6f ******/ %feature("compactdefaultargs") Curve2dPoles; %feature("autodoc", " Parameters @@ -123,8 +123,8 @@ No available documentation. ") Curve2dPoles; virtual const TColgp_Array1OfPnt2d & Curve2dPoles(const Standard_Integer Index); - /****************** Curves2dDegree ******************/ - /**** md5 signature: 4509acc411fdc27018b295deca2cb8c4 ****/ + /****** AppBlend_Approx::Curves2dDegree ******/ + /****** md5 signature: 4509acc411fdc27018b295deca2cb8c4 ******/ %feature("compactdefaultargs") Curves2dDegree; %feature("autodoc", "Return ------- @@ -136,8 +136,8 @@ No available documentation. ") Curves2dDegree; virtual Standard_Integer Curves2dDegree(); - /****************** Curves2dKnots ******************/ - /**** md5 signature: 1fce4ab4de82998f2a2d9c8deabc481d ****/ + /****** AppBlend_Approx::Curves2dKnots ******/ + /****** md5 signature: 1fce4ab4de82998f2a2d9c8deabc481d ******/ %feature("compactdefaultargs") Curves2dKnots; %feature("autodoc", "Return ------- @@ -149,8 +149,8 @@ No available documentation. ") Curves2dKnots; virtual const TColStd_Array1OfReal & Curves2dKnots(); - /****************** Curves2dMults ******************/ - /**** md5 signature: 74370fb1d6aa282da8696027e9fc8b1a ****/ + /****** AppBlend_Approx::Curves2dMults ******/ + /****** md5 signature: 74370fb1d6aa282da8696027e9fc8b1a ******/ %feature("compactdefaultargs") Curves2dMults; %feature("autodoc", "Return ------- @@ -162,8 +162,8 @@ No available documentation. ") Curves2dMults; virtual const TColStd_Array1OfInteger & Curves2dMults(); - /****************** Curves2dShape ******************/ - /**** md5 signature: f9f7c23cba49fa5b9e086d4d285a1ea8 ****/ + /****** AppBlend_Approx::Curves2dShape ******/ + /****** md5 signature: f9f7c23cba49fa5b9e086d4d285a1ea8 ******/ %feature("compactdefaultargs") Curves2dShape; %feature("autodoc", " Parameters @@ -181,8 +181,8 @@ No available documentation. ") Curves2dShape; virtual void Curves2dShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** IsDone ******************/ - /**** md5 signature: 36fb91162f1629bd3590f9505ad76527 ****/ + /****** AppBlend_Approx::IsDone ******/ + /****** md5 signature: 36fb91162f1629bd3590f9505ad76527 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -194,8 +194,8 @@ No available documentation. ") IsDone; virtual Standard_Boolean IsDone(); - /****************** NbCurves2d ******************/ - /**** md5 signature: b464512c5d6604037088136e2a46084c ****/ + /****** AppBlend_Approx::NbCurves2d ******/ + /****** md5 signature: b464512c5d6604037088136e2a46084c ******/ %feature("compactdefaultargs") NbCurves2d; %feature("autodoc", "Return ------- @@ -207,8 +207,8 @@ No available documentation. ") NbCurves2d; virtual Standard_Integer NbCurves2d(); - /****************** SurfPoles ******************/ - /**** md5 signature: 3feda0b0926d82c7983d7133a272d10e ****/ + /****** AppBlend_Approx::SurfPoles ******/ + /****** md5 signature: 3feda0b0926d82c7983d7133a272d10e ******/ %feature("compactdefaultargs") SurfPoles; %feature("autodoc", "Return ------- @@ -220,8 +220,8 @@ No available documentation. ") SurfPoles; virtual const TColgp_Array2OfPnt & SurfPoles(); - /****************** SurfShape ******************/ - /**** md5 signature: 0c93f2a9040da0496a6f04a40b0a1a26 ****/ + /****** AppBlend_Approx::SurfShape ******/ + /****** md5 signature: 0c93f2a9040da0496a6f04a40b0a1a26 ******/ %feature("compactdefaultargs") SurfShape; %feature("autodoc", " Parameters @@ -242,8 +242,8 @@ No available documentation. ") SurfShape; virtual void SurfShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** SurfUKnots ******************/ - /**** md5 signature: 91644c8d2b15417aea0d1b6f71d5fd9d ****/ + /****** AppBlend_Approx::SurfUKnots ******/ + /****** md5 signature: 91644c8d2b15417aea0d1b6f71d5fd9d ******/ %feature("compactdefaultargs") SurfUKnots; %feature("autodoc", "Return ------- @@ -255,8 +255,8 @@ No available documentation. ") SurfUKnots; virtual const TColStd_Array1OfReal & SurfUKnots(); - /****************** SurfUMults ******************/ - /**** md5 signature: b004082cbd8fd147e3c9ac946a6ce77c ****/ + /****** AppBlend_Approx::SurfUMults ******/ + /****** md5 signature: b004082cbd8fd147e3c9ac946a6ce77c ******/ %feature("compactdefaultargs") SurfUMults; %feature("autodoc", "Return ------- @@ -268,8 +268,8 @@ No available documentation. ") SurfUMults; virtual const TColStd_Array1OfInteger & SurfUMults(); - /****************** SurfVKnots ******************/ - /**** md5 signature: d94937812d05e1a5a45d49af1046f23a ****/ + /****** AppBlend_Approx::SurfVKnots ******/ + /****** md5 signature: d94937812d05e1a5a45d49af1046f23a ******/ %feature("compactdefaultargs") SurfVKnots; %feature("autodoc", "Return ------- @@ -281,8 +281,8 @@ No available documentation. ") SurfVKnots; virtual const TColStd_Array1OfReal & SurfVKnots(); - /****************** SurfVMults ******************/ - /**** md5 signature: e3026c1f9e4d8ad28f9b02514bcb563b ****/ + /****** AppBlend_Approx::SurfVMults ******/ + /****** md5 signature: e3026c1f9e4d8ad28f9b02514bcb563b ******/ %feature("compactdefaultargs") SurfVMults; %feature("autodoc", "Return ------- @@ -294,8 +294,8 @@ No available documentation. ") SurfVMults; virtual const TColStd_Array1OfInteger & SurfVMults(); - /****************** SurfWeights ******************/ - /**** md5 signature: 0094429327b3e1793b1574a1c3f24891 ****/ + /****** AppBlend_Approx::SurfWeights ******/ + /****** md5 signature: 0094429327b3e1793b1574a1c3f24891 ******/ %feature("compactdefaultargs") SurfWeights; %feature("autodoc", "Return ------- @@ -307,8 +307,8 @@ No available documentation. ") SurfWeights; virtual const TColStd_Array2OfReal & SurfWeights(); - /****************** Surface ******************/ - /**** md5 signature: 3dc7a47afa12113df713d63f693e8a9c ****/ + /****** AppBlend_Approx::Surface ******/ + /****** md5 signature: 3dc7a47afa12113df713d63f693e8a9c ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", " Parameters @@ -330,8 +330,8 @@ No available documentation. ") Surface; virtual void Surface(TColgp_Array2OfPnt & TPoles, TColStd_Array2OfReal & TWeights, TColStd_Array1OfReal & TUKnots, TColStd_Array1OfReal & TVKnots, TColStd_Array1OfInteger & TUMults, TColStd_Array1OfInteger & TVMults); - /****************** TolCurveOnSurf ******************/ - /**** md5 signature: 77dc1cab6bb65cb31b29453e222cda0d ****/ + /****** AppBlend_Approx::TolCurveOnSurf ******/ + /****** md5 signature: 77dc1cab6bb65cb31b29453e222cda0d ******/ %feature("compactdefaultargs") TolCurveOnSurf; %feature("autodoc", " Parameters @@ -348,8 +348,8 @@ No available documentation. ") TolCurveOnSurf; virtual Standard_Real TolCurveOnSurf(const Standard_Integer Index); - /****************** TolReached ******************/ - /**** md5 signature: 5e9aae13c8bbf85f458ef90b551aedd6 ****/ + /****** AppBlend_Approx::TolReached ******/ + /****** md5 signature: 5e9aae13c8bbf85f458ef90b551aedd6 ******/ %feature("compactdefaultargs") TolReached; %feature("autodoc", " Parameters @@ -366,8 +366,8 @@ No available documentation. ") TolReached; virtual void TolReached(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** UDegree ******************/ - /**** md5 signature: 99251021d46ac57c1f99021acfd6c37a ****/ + /****** AppBlend_Approx::UDegree ******/ + /****** md5 signature: 99251021d46ac57c1f99021acfd6c37a ******/ %feature("compactdefaultargs") UDegree; %feature("autodoc", "Return ------- @@ -379,8 +379,8 @@ No available documentation. ") UDegree; virtual Standard_Integer UDegree(); - /****************** VDegree ******************/ - /**** md5 signature: 392167bc1e0a7022cba57acab5609126 ****/ + /****** AppBlend_Approx::VDegree ******/ + /****** md5 signature: 392167bc1e0a7022cba57acab5609126 ******/ %feature("compactdefaultargs") VDegree; %feature("autodoc", "Return ------- diff --git a/src/SWIG_files/wrapper/AppCont.i b/src/SWIG_files/wrapper/AppCont.i index 26ebbc31c..4298bd809 100644 --- a/src/SWIG_files/wrapper/AppCont.i +++ b/src/SWIG_files/wrapper/AppCont.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define APPCONTDOCSTRING "AppCont module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_appcont.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_appcont.html" %enddef %module (package="OCC.Core", docstring=APPCONTDOCSTRING) AppCont @@ -85,8 +85,8 @@ from OCC.Core.Exception import * %nodefaultctor AppCont_Function; class AppCont_Function { public: - /****************** D1 ******************/ - /**** md5 signature: d74f1ada11c5cab4d59bf5506c4d986e ****/ + /****** AppCont_Function::D1 ******/ + /****** md5 signature: d74f1ada11c5cab4d59bf5506c4d986e ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -105,8 +105,8 @@ Returns the derivative at parameter . ") D1; virtual Standard_Boolean D1(const Standard_Real theU, NCollection_Array1 & theVec2d, NCollection_Array1 & theVec); - /****************** FirstParameter ******************/ - /**** md5 signature: d1641ead93c23610f9b5155af230348d ****/ + /****** AppCont_Function::FirstParameter ******/ + /****** md5 signature: d1641ead93c23610f9b5155af230348d ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", "Return ------- @@ -118,8 +118,8 @@ Returns the first parameter of the function. ") FirstParameter; virtual Standard_Real FirstParameter(); - /****************** GetNbOf2dPoints ******************/ - /**** md5 signature: 3f7ada48633b9454e96b6c14faaaa97b ****/ + /****** AppCont_Function::GetNbOf2dPoints ******/ + /****** md5 signature: 3f7ada48633b9454e96b6c14faaaa97b ******/ %feature("compactdefaultargs") GetNbOf2dPoints; %feature("autodoc", "Return ------- @@ -131,8 +131,8 @@ Get number of 2d points returned by 'value' and 'd1' functions. ") GetNbOf2dPoints; Standard_Integer GetNbOf2dPoints(); - /****************** GetNbOf3dPoints ******************/ - /**** md5 signature: 34417cccd11cb70858a56fd546f2c85d ****/ + /****** AppCont_Function::GetNbOf3dPoints ******/ + /****** md5 signature: 34417cccd11cb70858a56fd546f2c85d ******/ %feature("compactdefaultargs") GetNbOf3dPoints; %feature("autodoc", "Return ------- @@ -144,8 +144,8 @@ Get number of 3d points returned by 'value' and 'd1' functions. ") GetNbOf3dPoints; Standard_Integer GetNbOf3dPoints(); - /****************** GetNumberOfPoints ******************/ - /**** md5 signature: f86c4c0754a51bf0afa2e9f149bdf2e0 ****/ + /****** AppCont_Function::GetNumberOfPoints ******/ + /****** md5 signature: f86c4c0754a51bf0afa2e9f149bdf2e0 ******/ %feature("compactdefaultargs") GetNumberOfPoints; %feature("autodoc", " Parameters @@ -162,8 +162,8 @@ Get number of 3d and 2d points returned by 'value' and 'd1' functions. ") GetNumberOfPoints; void GetNumberOfPoints(Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** LastParameter ******************/ - /**** md5 signature: 78c346d133438e913e50667c32977882 ****/ + /****** AppCont_Function::LastParameter ******/ + /****** md5 signature: 78c346d133438e913e50667c32977882 ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", "Return ------- @@ -175,8 +175,8 @@ Returns the last parameter of the function. ") LastParameter; virtual Standard_Real LastParameter(); - /****************** PeriodInformation ******************/ - /**** md5 signature: 2ec0eaf4e71d35192917d14baaa1c237 ****/ + /****** AppCont_Function::PeriodInformation ******/ + /****** md5 signature: 2ec0eaf4e71d35192917d14baaa1c237 ******/ %feature("compactdefaultargs") PeriodInformation; %feature("autodoc", " Parameters @@ -194,8 +194,8 @@ Return information about peridicity in output paramateters space. @param thedimi ") PeriodInformation; virtual void PeriodInformation(const Standard_Integer, Standard_Boolean &OutValue, Standard_Real &OutValue); - /****************** Value ******************/ - /**** md5 signature: f5048d9ba7a2a644fd22ab0a87e61896 ****/ + /****** AppCont_Function::Value ******/ + /****** md5 signature: f5048d9ba7a2a644fd22ab0a87e61896 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -228,8 +228,8 @@ Returns the point at parameter . ****************************/ class AppCont_LeastSquare { public: - /****************** AppCont_LeastSquare ******************/ - /**** md5 signature: bef4a7f12a53a8a2686f96d5313108c8 ****/ + /****** AppCont_LeastSquare::AppCont_LeastSquare ******/ + /****** md5 signature: bef4a7f12a53a8a2686f96d5313108c8 ******/ %feature("compactdefaultargs") AppCont_LeastSquare; %feature("autodoc", " Parameters @@ -252,8 +252,8 @@ No available documentation. ") AppCont_LeastSquare; AppCont_LeastSquare(const AppCont_Function & SSP, const Standard_Real U0, const Standard_Real U1, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const Standard_Integer Deg, const Standard_Integer NbPoints); - /****************** Error ******************/ - /**** md5 signature: 6cc4f4a7927f2c0b4ca37a4d45ee7075 ****/ + /****** AppCont_LeastSquare::Error ******/ + /****** md5 signature: 6cc4f4a7927f2c0b4ca37a4d45ee7075 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -271,8 +271,8 @@ No available documentation. ") Error; void Error(Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** AppCont_LeastSquare::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -284,8 +284,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** Value ******************/ - /**** md5 signature: 59eb7b43f630b0afdd94fa8f4898fb6d ****/ + /****** AppCont_LeastSquare::Value ******/ + /****** md5 signature: 59eb7b43f630b0afdd94fa8f4898fb6d ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- diff --git a/src/SWIG_files/wrapper/AppDef.i b/src/SWIG_files/wrapper/AppDef.i index f9ac7f493..a71d2b852 100644 --- a/src/SWIG_files/wrapper/AppDef.i +++ b/src/SWIG_files/wrapper/AppDef.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define APPDEFDOCSTRING "AppDef module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_appdef.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_appdef.html" %enddef %module (package="OCC.Core", docstring=APPDEFDOCSTRING) AppDef @@ -108,8 +108,8 @@ typedef NCollection_Array1 AppDef_Array1OfMultiPoin ****************************************************************/ class AppDef_BSpGradient_BFGSOfMyBSplGradientOfBSplineCompute : public math_BFGS { public: - /****************** AppDef_BSpGradient_BFGSOfMyBSplGradientOfBSplineCompute ******************/ - /**** md5 signature: b799c0288bfc80846933f29e0453169e ****/ + /****** AppDef_BSpGradient_BFGSOfMyBSplGradientOfBSplineCompute::AppDef_BSpGradient_BFGSOfMyBSplGradientOfBSplineCompute ******/ + /****** md5 signature: b799c0288bfc80846933f29e0453169e ******/ %feature("compactdefaultargs") AppDef_BSpGradient_BFGSOfMyBSplGradientOfBSplineCompute; %feature("autodoc", " Parameters @@ -131,8 +131,8 @@ No available documentation. ") AppDef_BSpGradient_BFGSOfMyBSplGradientOfBSplineCompute; AppDef_BSpGradient_BFGSOfMyBSplGradientOfBSplineCompute(math_MultipleVarFunctionWithGradient & F, const math_Vector & StartingPoint, const Standard_Real Tolerance3d, const Standard_Real Tolerance2d, const Standard_Real Eps, const Standard_Integer NbIterations = 200); - /****************** IsSolutionReached ******************/ - /**** md5 signature: a6c0da888a257bf852b40b8daf6526dc ****/ + /****** AppDef_BSpGradient_BFGSOfMyBSplGradientOfBSplineCompute::IsSolutionReached ******/ + /****** md5 signature: a6c0da888a257bf852b40b8daf6526dc ******/ %feature("compactdefaultargs") IsSolutionReached; %feature("autodoc", " Parameters @@ -163,8 +163,8 @@ No available documentation. **************************************************************/ class AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute : public math_MultipleVarFunctionWithGradient { public: - /****************** AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute ******************/ - /**** md5 signature: 659c146b3e69832c7073bcc94e62f2f9 ****/ + /****** AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute::AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute ******/ + /****** md5 signature: 659c146b3e69832c7073bcc94e62f2f9 ******/ %feature("compactdefaultargs") AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute; %feature("autodoc", " Parameters @@ -188,8 +188,8 @@ Initializes the fields of the function. the approximating curve has cont ") AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute; AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute(const AppDef_MultiLine & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const opencascade::handle & TheConstraints, const math_Vector & Parameters, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Integer NbPol); - /****************** CurveValue ******************/ - /**** md5 signature: c83ed6c1c3091309bccd8d719a30ec54 ****/ + /****** AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute::CurveValue ******/ + /****** md5 signature: c83ed6c1c3091309bccd8d719a30ec54 ******/ %feature("compactdefaultargs") CurveValue; %feature("autodoc", "Return ------- @@ -201,8 +201,8 @@ Returns the multibspcurve approximating the set after computing the value f or g ") CurveValue; AppParCurves_MultiBSpCurve CurveValue(); - /****************** DerivativeFunctionMatrix ******************/ - /**** md5 signature: c2dbca1da1c1c1aaf2ff7895be813eaf ****/ + /****** AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute::DerivativeFunctionMatrix ******/ + /****** md5 signature: c2dbca1da1c1c1aaf2ff7895be813eaf ******/ %feature("compactdefaultargs") DerivativeFunctionMatrix; %feature("autodoc", "Return ------- @@ -214,8 +214,8 @@ Returns the derivative function matrix used to approximate the multiline. ") DerivativeFunctionMatrix; const math_Matrix & DerivativeFunctionMatrix(); - /****************** Error ******************/ - /**** md5 signature: 540c96711689798ec6a7d515d5e5e1c7 ****/ + /****** AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute::Error ******/ + /****** md5 signature: 540c96711689798ec6a7d515d5e5e1c7 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -233,8 +233,8 @@ Returns the distance between the multipoint of range ipoint and the curve curvei ") Error; Standard_Real Error(const Standard_Integer IPoint, const Standard_Integer CurveIndex); - /****************** FirstConstraint ******************/ - /**** md5 signature: 6814c8615ee3f59417c740c77d2ce795 ****/ + /****** AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute::FirstConstraint ******/ + /****** md5 signature: 6814c8615ee3f59417c740c77d2ce795 ******/ %feature("compactdefaultargs") FirstConstraint; %feature("autodoc", " Parameters @@ -252,8 +252,8 @@ No available documentation. ") FirstConstraint; AppParCurves_Constraint FirstConstraint(const opencascade::handle & TheConstraints, const Standard_Integer FirstPoint); - /****************** FunctionMatrix ******************/ - /**** md5 signature: aec90dd003c289db9092eb79712677e1 ****/ + /****** AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute::FunctionMatrix ******/ + /****** md5 signature: aec90dd003c289db9092eb79712677e1 ******/ %feature("compactdefaultargs") FunctionMatrix; %feature("autodoc", "Return ------- @@ -265,8 +265,8 @@ Returns the function matrix used to approximate the multiline. ") FunctionMatrix; const math_Matrix & FunctionMatrix(); - /****************** Gradient ******************/ - /**** md5 signature: 5ee531ceab07ab216991e3bf02edf0f7 ****/ + /****** AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute::Gradient ******/ + /****** md5 signature: 5ee531ceab07ab216991e3bf02edf0f7 ******/ %feature("compactdefaultargs") Gradient; %feature("autodoc", " Parameters @@ -284,8 +284,8 @@ Returns the gradient g of the sum above for the parameters xi. ") Gradient; Standard_Boolean Gradient(const math_Vector & X, math_Vector & G); - /****************** Index ******************/ - /**** md5 signature: c11a6982042d7a2c5bf9fb50324ac971 ****/ + /****** AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute::Index ******/ + /****** md5 signature: c11a6982042d7a2c5bf9fb50324ac971 ******/ %feature("compactdefaultargs") Index; %feature("autodoc", "Return ------- @@ -297,8 +297,8 @@ Returns the indexes of the first non null values of a and da. the values are non ") Index; const math_IntegerVector & Index(); - /****************** LastConstraint ******************/ - /**** md5 signature: f3572ad2cc7e299a1f7b6cb9d14677cf ****/ + /****** AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute::LastConstraint ******/ + /****** md5 signature: f3572ad2cc7e299a1f7b6cb9d14677cf ******/ %feature("compactdefaultargs") LastConstraint; %feature("autodoc", " Parameters @@ -316,8 +316,8 @@ No available documentation. ") LastConstraint; AppParCurves_Constraint LastConstraint(const opencascade::handle & TheConstraints, const Standard_Integer LastPoint); - /****************** MaxError2d ******************/ - /**** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ****/ + /****** AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute::MaxError2d ******/ + /****** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ******/ %feature("compactdefaultargs") MaxError2d; %feature("autodoc", "Return ------- @@ -329,8 +329,8 @@ Returns the maximum distance between the points and the multibspcurve. ") MaxError2d; Standard_Real MaxError2d(); - /****************** MaxError3d ******************/ - /**** md5 signature: c6ba463cdf4a0e426329b589363186b7 ****/ + /****** AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute::MaxError3d ******/ + /****** md5 signature: c6ba463cdf4a0e426329b589363186b7 ******/ %feature("compactdefaultargs") MaxError3d; %feature("autodoc", "Return ------- @@ -342,8 +342,8 @@ Returns the maximum distance between the points and the multibspcurve. ") MaxError3d; Standard_Real MaxError3d(); - /****************** NbVariables ******************/ - /**** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ****/ + /****** AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute::NbVariables ******/ + /****** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -355,8 +355,8 @@ Returns the number of variables of the function. it corresponds to the number of ") NbVariables; Standard_Integer NbVariables(); - /****************** NewParameters ******************/ - /**** md5 signature: 1d606e7b2aa9813a84f6984ebdf52bb7 ****/ + /****** AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute::NewParameters ******/ + /****** md5 signature: 1d606e7b2aa9813a84f6984ebdf52bb7 ******/ %feature("compactdefaultargs") NewParameters; %feature("autodoc", "Return ------- @@ -368,8 +368,8 @@ Returns the new parameters of the multiline. ") NewParameters; const math_Vector & NewParameters(); - /****************** SetFirstLambda ******************/ - /**** md5 signature: 819efdb8532bd01857d5e29b79901d19 ****/ + /****** AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute::SetFirstLambda ******/ + /****** md5 signature: 819efdb8532bd01857d5e29b79901d19 ******/ %feature("compactdefaultargs") SetFirstLambda; %feature("autodoc", " Parameters @@ -386,8 +386,8 @@ No available documentation. ") SetFirstLambda; void SetFirstLambda(const Standard_Real l1); - /****************** SetLastLambda ******************/ - /**** md5 signature: b34d15f9505b8355ba362a879a836d1a ****/ + /****** AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute::SetLastLambda ******/ + /****** md5 signature: b34d15f9505b8355ba362a879a836d1a ******/ %feature("compactdefaultargs") SetLastLambda; %feature("autodoc", " Parameters @@ -404,8 +404,8 @@ No available documentation. ") SetLastLambda; void SetLastLambda(const Standard_Real l2); - /****************** Value ******************/ - /**** md5 signature: 33f8b9f75d238865cc320f57ac729801 ****/ + /****** AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute::Value ******/ + /****** md5 signature: 33f8b9f75d238865cc320f57ac729801 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -422,8 +422,8 @@ This method computes the new approximation of the multiline ssp and calculates f ") Value; Standard_Boolean Value(const math_Vector & X, Standard_Real &OutValue); - /****************** Values ******************/ - /**** md5 signature: 66c7c08f6bec2933f700c6f45cf14285 ****/ + /****** AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute::Values ******/ + /****** md5 signature: 66c7c08f6bec2933f700c6f45cf14285 ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -455,8 +455,8 @@ Returns the value f=sum(||pui - bi*pi||)2. returns the value g = grad(f) for the *****************************************************************/ class AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute { public: - /****************** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute ******************/ - /**** md5 signature: 7212679b8f6e008d4b7aa3fb8cfebd46 ****/ + /****** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute::AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute ******/ + /****** md5 signature: 7212679b8f6e008d4b7aa3fb8cfebd46 ******/ %feature("compactdefaultargs") AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute; %feature("autodoc", " Parameters @@ -479,8 +479,8 @@ Given a multiline, this algorithm computes the least square resolution using the ") AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute; AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute(const AppDef_MultiLine & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const math_Vector & Parameters, const Standard_Integer NbPol); - /****************** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute ******************/ - /**** md5 signature: 95a7c9c221e01ce5ef38001c1e1f1ed1 ****/ + /****** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute::AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute ******/ + /****** md5 signature: 95a7c9c221e01ce5ef38001c1e1f1ed1 ******/ %feature("compactdefaultargs") AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute; %feature("autodoc", " Parameters @@ -502,8 +502,8 @@ Initializes the fields of the object. ") AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute; AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute(const AppDef_MultiLine & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const Standard_Integer NbPol); - /****************** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute ******************/ - /**** md5 signature: 2780998f405468abc7dcea03504fb32f ****/ + /****** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute::AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute ******/ + /****** md5 signature: 2780998f405468abc7dcea03504fb32f ******/ %feature("compactdefaultargs") AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute; %feature("autodoc", " Parameters @@ -528,8 +528,8 @@ Given a multiline, this algorithm computes the least square resolution using the ") AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute; AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute(const AppDef_MultiLine & SSP, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const math_Vector & Parameters, const Standard_Integer NbPol); - /****************** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute ******************/ - /**** md5 signature: 23e53a2b39fe45234ff5600214a374ac ****/ + /****** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute::AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute ******/ + /****** md5 signature: 23e53a2b39fe45234ff5600214a374ac ******/ %feature("compactdefaultargs") AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute; %feature("autodoc", " Parameters @@ -553,8 +553,8 @@ Initializes the fields of the object. ") AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute; AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute(const AppDef_MultiLine & SSP, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const Standard_Integer NbPol); - /****************** BSplineValue ******************/ - /**** md5 signature: a38863f7c9b6fa566ee9fea09f971d5c ****/ + /****** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute::BSplineValue ******/ + /****** md5 signature: a38863f7c9b6fa566ee9fea09f971d5c ******/ %feature("compactdefaultargs") BSplineValue; %feature("autodoc", "Return ------- @@ -566,8 +566,8 @@ Returns the result of the approximation, i.e. all the curves. an exception is ra ") BSplineValue; AppParCurves_MultiBSpCurve BSplineValue(); - /****************** BezierValue ******************/ - /**** md5 signature: 2bbd29cb039e6bcdcdf61afe82651ac1 ****/ + /****** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute::BezierValue ******/ + /****** md5 signature: 2bbd29cb039e6bcdcdf61afe82651ac1 ******/ %feature("compactdefaultargs") BezierValue; %feature("autodoc", "Return ------- @@ -579,8 +579,8 @@ Returns the result of the approximation, i.e. all the curves. an exception is ra ") BezierValue; AppParCurves_MultiCurve BezierValue(); - /****************** DerivativeFunctionMatrix ******************/ - /**** md5 signature: c2dbca1da1c1c1aaf2ff7895be813eaf ****/ + /****** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute::DerivativeFunctionMatrix ******/ + /****** md5 signature: c2dbca1da1c1c1aaf2ff7895be813eaf ******/ %feature("compactdefaultargs") DerivativeFunctionMatrix; %feature("autodoc", "Return ------- @@ -592,8 +592,8 @@ Returns the derivative function matrix used to approximate the set. ") DerivativeFunctionMatrix; const math_Matrix & DerivativeFunctionMatrix(); - /****************** Distance ******************/ - /**** md5 signature: 608fad06f540e822f2b9f4d329c097b6 ****/ + /****** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute::Distance ******/ + /****** md5 signature: 608fad06f540e822f2b9f4d329c097b6 ******/ %feature("compactdefaultargs") Distance; %feature("autodoc", "Return ------- @@ -605,8 +605,8 @@ Returns the distances between the points of the multiline and the approximation ") Distance; const math_Matrix & Distance(); - /****************** Error ******************/ - /**** md5 signature: 7c05c0164fc88dbacc4d90d301fe7f12 ****/ + /****** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute::Error ******/ + /****** md5 signature: 7c05c0164fc88dbacc4d90d301fe7f12 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -624,8 +624,8 @@ Returns the maximum errors between the multiline and the approximation curves. f ") Error; void Error(Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** ErrorGradient ******************/ - /**** md5 signature: 3e5c3757aad8d0f394eda590c0bc62e3 ****/ + /****** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute::ErrorGradient ******/ + /****** md5 signature: 3e5c3757aad8d0f394eda590c0bc62e3 ******/ %feature("compactdefaultargs") ErrorGradient; %feature("autodoc", " Parameters @@ -644,8 +644,8 @@ Returns the maximum errors between the multiline and the approximation curves. f ") ErrorGradient; void ErrorGradient(math_Vector & Grad, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** FirstLambda ******************/ - /**** md5 signature: 87ad21cc13708c47c81704b38426d999 ****/ + /****** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute::FirstLambda ******/ + /****** md5 signature: 87ad21cc13708c47c81704b38426d999 ******/ %feature("compactdefaultargs") FirstLambda; %feature("autodoc", "Return ------- @@ -657,8 +657,8 @@ Returns the value (p2 - p1)/ v1 if the first point was a tangency point. ") FirstLambda; Standard_Real FirstLambda(); - /****************** FunctionMatrix ******************/ - /**** md5 signature: aec90dd003c289db9092eb79712677e1 ****/ + /****** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute::FunctionMatrix ******/ + /****** md5 signature: aec90dd003c289db9092eb79712677e1 ******/ %feature("compactdefaultargs") FunctionMatrix; %feature("autodoc", "Return ------- @@ -670,8 +670,8 @@ Returns the function matrix used to approximate the set. ") FunctionMatrix; const math_Matrix & FunctionMatrix(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -683,8 +683,8 @@ Returns true if all has been correctly done. ") IsDone; Standard_Boolean IsDone(); - /****************** KIndex ******************/ - /**** md5 signature: 2821052a9bfe72ec4f531ccb52a80ffb ****/ + /****** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute::KIndex ******/ + /****** md5 signature: 2821052a9bfe72ec4f531ccb52a80ffb ******/ %feature("compactdefaultargs") KIndex; %feature("autodoc", "Return ------- @@ -696,8 +696,8 @@ Returns the indexes of the first non null values of a and da. the values are non ") KIndex; const math_IntegerVector & KIndex(); - /****************** LastLambda ******************/ - /**** md5 signature: f7e26790258c4ab513bae9dd1a5955e1 ****/ + /****** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute::LastLambda ******/ + /****** md5 signature: f7e26790258c4ab513bae9dd1a5955e1 ******/ %feature("compactdefaultargs") LastLambda; %feature("autodoc", "Return ------- @@ -709,8 +709,8 @@ Returns the value (pn - pn-1)/ vn if the last point was a tangency point. ") LastLambda; Standard_Real LastLambda(); - /****************** Perform ******************/ - /**** md5 signature: 5b8f20d810ea57d5223b42dfd01410ad ****/ + /****** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute::Perform ******/ + /****** md5 signature: 5b8f20d810ea57d5223b42dfd01410ad ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -727,8 +727,8 @@ Is used after having initialized the fields. the case 'curvaturepoint' is not tr ") Perform; void Perform(const math_Vector & Parameters); - /****************** Perform ******************/ - /**** md5 signature: cbf083f2b8329680dc5a52f482f436ad ****/ + /****** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute::Perform ******/ + /****** md5 signature: cbf083f2b8329680dc5a52f482f436ad ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -747,8 +747,8 @@ Is used after having initialized the fields. ") Perform; void Perform(const math_Vector & Parameters, const Standard_Real l1, const Standard_Real l2); - /****************** Perform ******************/ - /**** md5 signature: 380f2440b07e3b3805c4eda2da2e8c6e ****/ + /****** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute::Perform ******/ + /****** md5 signature: 380f2440b07e3b3805c4eda2da2e8c6e ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -769,8 +769,8 @@ Is used after having initialized the fields. is the tangent vector at the ") Perform; void Perform(const math_Vector & Parameters, const math_Vector & V1t, const math_Vector & V2t, const Standard_Real l1, const Standard_Real l2); - /****************** Perform ******************/ - /**** md5 signature: 5f7ecae6d947ca76138d939cdd616b0f ****/ + /****** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute::Perform ******/ + /****** md5 signature: 5f7ecae6d947ca76138d939cdd616b0f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -793,8 +793,8 @@ Is used after having initialized the fields. is the tangent vector at the ") Perform; void Perform(const math_Vector & Parameters, const math_Vector & V1t, const math_Vector & V2t, const math_Vector & V1c, const math_Vector & V2c, const Standard_Real l1, const Standard_Real l2); - /****************** Points ******************/ - /**** md5 signature: 8a77545526c5096bca80b9c07f882412 ****/ + /****** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute::Points ******/ + /****** md5 signature: 8a77545526c5096bca80b9c07f882412 ******/ %feature("compactdefaultargs") Points; %feature("autodoc", "Return ------- @@ -806,8 +806,8 @@ Returns the matrix of points value. ") Points; const math_Matrix & Points(); - /****************** Poles ******************/ - /**** md5 signature: 1437a652beb857bd22c16de65cb18857 ****/ + /****** AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute::Poles ******/ + /****** md5 signature: 1437a652beb857bd22c16de65cb18857 ******/ %feature("compactdefaultargs") Poles; %feature("autodoc", "Return ------- @@ -833,8 +833,8 @@ Returns the matrix of resulting control points value. ******************************/ class AppDef_BSplineCompute { public: - /****************** AppDef_BSplineCompute ******************/ - /**** md5 signature: 2408a61abd93bf31117d7ba011536f8c ****/ + /****** AppDef_BSplineCompute::AppDef_BSplineCompute ******/ + /****** md5 signature: 2408a61abd93bf31117d7ba011536f8c ******/ %feature("compactdefaultargs") AppDef_BSplineCompute; %feature("autodoc", " Parameters @@ -859,8 +859,8 @@ The multiline will be approximated until tolerances will be reached. the ") AppDef_BSplineCompute; AppDef_BSplineCompute(const AppDef_MultiLine & Line, const Standard_Integer degreemin = 4, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-3, const Standard_Real Tolerance2d = 1.0e-6, const Standard_Integer NbIterations = 5, const Standard_Boolean cutting = Standard_True, const Approx_ParametrizationType parametrization = Approx_ChordLength, const Standard_Boolean Squares = Standard_False); - /****************** AppDef_BSplineCompute ******************/ - /**** md5 signature: 7b22210476c396af31272298fe953380 ****/ + /****** AppDef_BSplineCompute::AppDef_BSplineCompute ******/ + /****** md5 signature: 7b22210476c396af31272298fe953380 ******/ %feature("compactdefaultargs") AppDef_BSplineCompute; %feature("autodoc", " Parameters @@ -885,8 +885,8 @@ The multiline will be approximated until tolerances will be reached. the ") AppDef_BSplineCompute; AppDef_BSplineCompute(const AppDef_MultiLine & Line, const math_Vector & Parameters, const Standard_Integer degreemin = 4, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-03, const Standard_Real Tolerance2d = 1.0e-06, const Standard_Integer NbIterations = 5, const Standard_Boolean cutting = Standard_True, const Standard_Boolean Squares = Standard_False); - /****************** AppDef_BSplineCompute ******************/ - /**** md5 signature: 37659dde443160bc04cf7ecedbff89a5 ****/ + /****** AppDef_BSplineCompute::AppDef_BSplineCompute ******/ + /****** md5 signature: 37659dde443160bc04cf7ecedbff89a5 ******/ %feature("compactdefaultargs") AppDef_BSplineCompute; %feature("autodoc", " Parameters @@ -910,8 +910,8 @@ Initializes the fields of the algorithm. ") AppDef_BSplineCompute; AppDef_BSplineCompute(const math_Vector & Parameters, const Standard_Integer degreemin = 4, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-03, const Standard_Real Tolerance2d = 1.0e-06, const Standard_Integer NbIterations = 5, const Standard_Boolean cutting = Standard_True, const Standard_Boolean Squares = Standard_False); - /****************** AppDef_BSplineCompute ******************/ - /**** md5 signature: 4beb8fca857f810f35b0c88e2b91fd54 ****/ + /****** AppDef_BSplineCompute::AppDef_BSplineCompute ******/ + /****** md5 signature: 4beb8fca857f810f35b0c88e2b91fd54 ******/ %feature("compactdefaultargs") AppDef_BSplineCompute; %feature("autodoc", " Parameters @@ -935,8 +935,8 @@ Initializes the fields of the algorithm. ") AppDef_BSplineCompute; AppDef_BSplineCompute(const Standard_Integer degreemin = 4, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-03, const Standard_Real Tolerance2d = 1.0e-06, const Standard_Integer NbIterations = 5, const Standard_Boolean cutting = Standard_True, const Approx_ParametrizationType parametrization = Approx_ChordLength, const Standard_Boolean Squares = Standard_False); - /****************** ChangeValue ******************/ - /**** md5 signature: afc5e23129509014348d63bb72db41ec ****/ + /****** AppDef_BSplineCompute::ChangeValue ******/ + /****** md5 signature: afc5e23129509014348d63bb72db41ec ******/ %feature("compactdefaultargs") ChangeValue; %feature("autodoc", "Return ------- @@ -948,8 +948,8 @@ Returns the result of the approximation. ") ChangeValue; AppParCurves_MultiBSpCurve & ChangeValue(); - /****************** Error ******************/ - /**** md5 signature: cda70ea4f3f90e8bdc1d9692db9c77b8 ****/ + /****** AppDef_BSplineCompute::Error ******/ + /****** md5 signature: cda70ea4f3f90e8bdc1d9692db9c77b8 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -966,8 +966,8 @@ Returns the tolerances 2d and 3d of the multibspcurve. ") Error; void Error(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Init ******************/ - /**** md5 signature: 10f7f80e213a93740574c45700071b76 ****/ + /****** AppDef_BSplineCompute::Init ******/ + /****** md5 signature: 10f7f80e213a93740574c45700071b76 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -991,8 +991,8 @@ Initializes the fields of the algorithm. ") Init; void Init(const Standard_Integer degreemin = 4, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-03, const Standard_Real Tolerance2d = 1.0e-06, const Standard_Integer NbIterations = 5, const Standard_Boolean cutting = Standard_True, const Approx_ParametrizationType parametrization = Approx_ChordLength, const Standard_Boolean Squares = Standard_False); - /****************** Interpol ******************/ - /**** md5 signature: bc4286f280e57eaa20ef92f495fa1e33 ****/ + /****** AppDef_BSplineCompute::Interpol ******/ + /****** md5 signature: bc4286f280e57eaa20ef92f495fa1e33 ******/ %feature("compactdefaultargs") Interpol; %feature("autodoc", " Parameters @@ -1009,8 +1009,8 @@ Constructs an interpolation of the multiline the result will be a c2 curv ") Interpol; void Interpol(const AppDef_MultiLine & Line); - /****************** IsAllApproximated ******************/ - /**** md5 signature: bf42a9f9ee3a867655d96a0c1fdcd853 ****/ + /****** AppDef_BSplineCompute::IsAllApproximated ******/ + /****** md5 signature: bf42a9f9ee3a867655d96a0c1fdcd853 ******/ %feature("compactdefaultargs") IsAllApproximated; %feature("autodoc", "Return ------- @@ -1022,8 +1022,8 @@ Returns false if at a moment of the approximation, the status noapproximation ha ") IsAllApproximated; Standard_Boolean IsAllApproximated(); - /****************** IsToleranceReached ******************/ - /**** md5 signature: cbd7380250e74c96655b10c8025eb873 ****/ + /****** AppDef_BSplineCompute::IsToleranceReached ******/ + /****** md5 signature: cbd7380250e74c96655b10c8025eb873 ******/ %feature("compactdefaultargs") IsToleranceReached; %feature("autodoc", "Return ------- @@ -1035,8 +1035,8 @@ Returns false if the status nopointsadded has been sent. ") IsToleranceReached; Standard_Boolean IsToleranceReached(); - /****************** Parameters ******************/ - /**** md5 signature: 7c84e53bc11f80fb0f3c0e787e4b026e ****/ + /****** AppDef_BSplineCompute::Parameters ******/ + /****** md5 signature: 7c84e53bc11f80fb0f3c0e787e4b026e ******/ %feature("compactdefaultargs") Parameters; %feature("autodoc", "Return ------- @@ -1048,8 +1048,8 @@ Returns the new parameters of the approximation corresponding to the points of t ") Parameters; const TColStd_Array1OfReal & Parameters(); - /****************** Perform ******************/ - /**** md5 signature: ba94f8a8967068aa8bee6df81ea2be62 ****/ + /****** AppDef_BSplineCompute::Perform ******/ + /****** md5 signature: ba94f8a8967068aa8bee6df81ea2be62 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1066,8 +1066,8 @@ Runs the algorithm after having initialized the fields. ") Perform; void Perform(const AppDef_MultiLine & Line); - /****************** SetConstraints ******************/ - /**** md5 signature: 99b92dc193142adf44568f800cd394dc ****/ + /****** AppDef_BSplineCompute::SetConstraints ******/ + /****** md5 signature: 99b92dc193142adf44568f800cd394dc ******/ %feature("compactdefaultargs") SetConstraints; %feature("autodoc", " Parameters @@ -1085,8 +1085,8 @@ Changes the first and the last constraint points. ") SetConstraints; void SetConstraints(const AppParCurves_Constraint firstC, const AppParCurves_Constraint lastC); - /****************** SetContinuity ******************/ - /**** md5 signature: 004921b69180f9ee5c70f476a9b25f44 ****/ + /****** AppDef_BSplineCompute::SetContinuity ******/ + /****** md5 signature: 004921b69180f9ee5c70f476a9b25f44 ******/ %feature("compactdefaultargs") SetContinuity; %feature("autodoc", " Parameters @@ -1103,8 +1103,8 @@ Sets the continuity of the spline. if c = 2, the spline will be c2. ") SetContinuity; void SetContinuity(const Standard_Integer C); - /****************** SetDegrees ******************/ - /**** md5 signature: 545fdd7d739fa58cc970e73d0413f8ef ****/ + /****** AppDef_BSplineCompute::SetDegrees ******/ + /****** md5 signature: 545fdd7d739fa58cc970e73d0413f8ef ******/ %feature("compactdefaultargs") SetDegrees; %feature("autodoc", " Parameters @@ -1122,8 +1122,8 @@ Changes the degrees of the approximation. ") SetDegrees; void SetDegrees(const Standard_Integer degreemin, const Standard_Integer degreemax); - /****************** SetKnots ******************/ - /**** md5 signature: 81377d2824af79de90394b654e5ac494 ****/ + /****** AppDef_BSplineCompute::SetKnots ******/ + /****** md5 signature: 81377d2824af79de90394b654e5ac494 ******/ %feature("compactdefaultargs") SetKnots; %feature("autodoc", " Parameters @@ -1140,8 +1140,8 @@ The approximation will be done with the set of knots . the multiplicities ") SetKnots; void SetKnots(const TColStd_Array1OfReal & Knots); - /****************** SetKnotsAndMultiplicities ******************/ - /**** md5 signature: 78291c57c68644dfe7114ee9a585b271 ****/ + /****** AppDef_BSplineCompute::SetKnotsAndMultiplicities ******/ + /****** md5 signature: 78291c57c68644dfe7114ee9a585b271 ******/ %feature("compactdefaultargs") SetKnotsAndMultiplicities; %feature("autodoc", " Parameters @@ -1159,8 +1159,8 @@ The approximation will be done with the set of knots and the multiplicit ") SetKnotsAndMultiplicities; void SetKnotsAndMultiplicities(const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults); - /****************** SetParameters ******************/ - /**** md5 signature: b1eab3f1f1c8f0892e7a87810e5892e3 ****/ + /****** AppDef_BSplineCompute::SetParameters ******/ + /****** md5 signature: b1eab3f1f1c8f0892e7a87810e5892e3 ******/ %feature("compactdefaultargs") SetParameters; %feature("autodoc", " Parameters @@ -1177,8 +1177,8 @@ The approximation will begin with the set of parameters . ") SetParameters; void SetParameters(const math_Vector & ThePar); - /****************** SetPeriodic ******************/ - /**** md5 signature: 3109823bbe448d62437b44b39b4d9b19 ****/ + /****** AppDef_BSplineCompute::SetPeriodic ******/ + /****** md5 signature: 3109823bbe448d62437b44b39b4d9b19 ******/ %feature("compactdefaultargs") SetPeriodic; %feature("autodoc", " Parameters @@ -1195,8 +1195,8 @@ Sets periodic flag. if theperiodic = standard_true, algorithm tries to build per ") SetPeriodic; void SetPeriodic(const Standard_Boolean thePeriodic); - /****************** SetTolerances ******************/ - /**** md5 signature: ce7879738ace848f7a3a27c56467be10 ****/ + /****** AppDef_BSplineCompute::SetTolerances ******/ + /****** md5 signature: ce7879738ace848f7a3a27c56467be10 ******/ %feature("compactdefaultargs") SetTolerances; %feature("autodoc", " Parameters @@ -1214,8 +1214,8 @@ Changes the tolerances of the approximation. ") SetTolerances; void SetTolerances(const Standard_Real Tolerance3d, const Standard_Real Tolerance2d); - /****************** Value ******************/ - /**** md5 signature: c818c96a9a832640b6267a997c4dbd3b ****/ + /****** AppDef_BSplineCompute::Value ******/ + /****** md5 signature: c818c96a9a832640b6267a997c4dbd3b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -1241,8 +1241,8 @@ Returns the result of the approximation. ***********************/ class AppDef_Compute { public: - /****************** AppDef_Compute ******************/ - /**** md5 signature: c6833ee0a5b84d67a02d9dae53b24f5f ****/ + /****** AppDef_Compute::AppDef_Compute ******/ + /****** md5 signature: c6833ee0a5b84d67a02d9dae53b24f5f ******/ %feature("compactdefaultargs") AppDef_Compute; %feature("autodoc", " Parameters @@ -1267,8 +1267,8 @@ The multiline will be approximated until tolerances will be reached. the ") AppDef_Compute; AppDef_Compute(const AppDef_MultiLine & Line, const Standard_Integer degreemin = 4, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-3, const Standard_Real Tolerance2d = 1.0e-6, const Standard_Integer NbIterations = 5, const Standard_Boolean cutting = Standard_True, const Approx_ParametrizationType parametrization = Approx_ChordLength, const Standard_Boolean Squares = Standard_False); - /****************** AppDef_Compute ******************/ - /**** md5 signature: 9e4217e85d94e90315d60b7b75f82535 ****/ + /****** AppDef_Compute::AppDef_Compute ******/ + /****** md5 signature: 9e4217e85d94e90315d60b7b75f82535 ******/ %feature("compactdefaultargs") AppDef_Compute; %feature("autodoc", " Parameters @@ -1293,8 +1293,8 @@ The multiline will be approximated until tolerances will be reached. the ") AppDef_Compute; AppDef_Compute(const AppDef_MultiLine & Line, const math_Vector & Parameters, const Standard_Integer degreemin = 4, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-03, const Standard_Real Tolerance2d = 1.0e-06, const Standard_Integer NbIterations = 5, const Standard_Boolean cutting = Standard_True, const Standard_Boolean Squares = Standard_False); - /****************** AppDef_Compute ******************/ - /**** md5 signature: ad9cd1ddc4958b27791ce973be5159af ****/ + /****** AppDef_Compute::AppDef_Compute ******/ + /****** md5 signature: ad9cd1ddc4958b27791ce973be5159af ******/ %feature("compactdefaultargs") AppDef_Compute; %feature("autodoc", " Parameters @@ -1318,8 +1318,8 @@ Initializes the fields of the algorithm. ") AppDef_Compute; AppDef_Compute(const math_Vector & Parameters, const Standard_Integer degreemin = 4, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-03, const Standard_Real Tolerance2d = 1.0e-06, const Standard_Integer NbIterations = 5, const Standard_Boolean cutting = Standard_True, const Standard_Boolean Squares = Standard_False); - /****************** AppDef_Compute ******************/ - /**** md5 signature: c8eee3cf66b774bb63a317362fc20729 ****/ + /****** AppDef_Compute::AppDef_Compute ******/ + /****** md5 signature: c8eee3cf66b774bb63a317362fc20729 ******/ %feature("compactdefaultargs") AppDef_Compute; %feature("autodoc", " Parameters @@ -1343,8 +1343,8 @@ Initializes the fields of the algorithm. ") AppDef_Compute; AppDef_Compute(const Standard_Integer degreemin = 4, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-03, const Standard_Real Tolerance2d = 1.0e-06, const Standard_Integer NbIterations = 5, const Standard_Boolean cutting = Standard_True, const Approx_ParametrizationType parametrization = Approx_ChordLength, const Standard_Boolean Squares = Standard_False); - /****************** ChangeValue ******************/ - /**** md5 signature: 141696e747a4846a7446e394b31644d5 ****/ + /****** AppDef_Compute::ChangeValue ******/ + /****** md5 signature: 141696e747a4846a7446e394b31644d5 ******/ %feature("compactdefaultargs") ChangeValue; %feature("autodoc", " Parameters @@ -1361,8 +1361,8 @@ Returns the result of the approximation. ") ChangeValue; AppParCurves_MultiCurve & ChangeValue(const Standard_Integer Index = 1); - /****************** Error ******************/ - /**** md5 signature: 6a8061230005ba951097d8b73e7dbec6 ****/ + /****** AppDef_Compute::Error ******/ + /****** md5 signature: 6a8061230005ba951097d8b73e7dbec6 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -1380,8 +1380,8 @@ Returns the tolerances 2d and 3d of the multicurve. ") Error; void Error(const Standard_Integer Index, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Init ******************/ - /**** md5 signature: 10f7f80e213a93740574c45700071b76 ****/ + /****** AppDef_Compute::Init ******/ + /****** md5 signature: 10f7f80e213a93740574c45700071b76 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -1405,8 +1405,8 @@ Initializes the fields of the algorithm. ") Init; void Init(const Standard_Integer degreemin = 4, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-03, const Standard_Real Tolerance2d = 1.0e-06, const Standard_Integer NbIterations = 5, const Standard_Boolean cutting = Standard_True, const Approx_ParametrizationType parametrization = Approx_ChordLength, const Standard_Boolean Squares = Standard_False); - /****************** IsAllApproximated ******************/ - /**** md5 signature: bf42a9f9ee3a867655d96a0c1fdcd853 ****/ + /****** AppDef_Compute::IsAllApproximated ******/ + /****** md5 signature: bf42a9f9ee3a867655d96a0c1fdcd853 ******/ %feature("compactdefaultargs") IsAllApproximated; %feature("autodoc", "Return ------- @@ -1418,8 +1418,8 @@ Returns false if at a moment of the approximation, the status noapproximation ha ") IsAllApproximated; Standard_Boolean IsAllApproximated(); - /****************** IsToleranceReached ******************/ - /**** md5 signature: cbd7380250e74c96655b10c8025eb873 ****/ + /****** AppDef_Compute::IsToleranceReached ******/ + /****** md5 signature: cbd7380250e74c96655b10c8025eb873 ******/ %feature("compactdefaultargs") IsToleranceReached; %feature("autodoc", "Return ------- @@ -1431,8 +1431,8 @@ Returns false if the status nopointsadded has been sent. ") IsToleranceReached; Standard_Boolean IsToleranceReached(); - /****************** NbMultiCurves ******************/ - /**** md5 signature: 944d4af40d93d46a8a3a888df2d8b388 ****/ + /****** AppDef_Compute::NbMultiCurves ******/ + /****** md5 signature: 944d4af40d93d46a8a3a888df2d8b388 ******/ %feature("compactdefaultargs") NbMultiCurves; %feature("autodoc", "Return ------- @@ -1444,8 +1444,8 @@ Returns the number of multicurve doing the approximation of the multiline. ") NbMultiCurves; Standard_Integer NbMultiCurves(); - /****************** Parameters ******************/ - /**** md5 signature: 457fc00b4795a877d025353e491bb905 ****/ + /****** AppDef_Compute::Parameters ******/ + /****** md5 signature: 457fc00b4795a877d025353e491bb905 ******/ %feature("compactdefaultargs") Parameters; %feature("autodoc", " Parameters @@ -1462,8 +1462,8 @@ Returns the new parameters of the approximation corresponding to the points of t ") Parameters; const TColStd_Array1OfReal & Parameters(const Standard_Integer Index = 1); - /****************** Parametrization ******************/ - /**** md5 signature: 28de4bdef662891658a0d7c12417a76f ****/ + /****** AppDef_Compute::Parametrization ******/ + /****** md5 signature: 28de4bdef662891658a0d7c12417a76f ******/ %feature("compactdefaultargs") Parametrization; %feature("autodoc", "Return ------- @@ -1475,8 +1475,8 @@ Returns the type of parametrization. ") Parametrization; Approx_ParametrizationType Parametrization(); - /****************** Perform ******************/ - /**** md5 signature: ba94f8a8967068aa8bee6df81ea2be62 ****/ + /****** AppDef_Compute::Perform ******/ + /****** md5 signature: ba94f8a8967068aa8bee6df81ea2be62 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1493,8 +1493,8 @@ Runs the algorithm after having initialized the fields. ") Perform; void Perform(const AppDef_MultiLine & Line); - /****************** SetConstraints ******************/ - /**** md5 signature: 99b92dc193142adf44568f800cd394dc ****/ + /****** AppDef_Compute::SetConstraints ******/ + /****** md5 signature: 99b92dc193142adf44568f800cd394dc ******/ %feature("compactdefaultargs") SetConstraints; %feature("autodoc", " Parameters @@ -1512,8 +1512,8 @@ Changes the first and the last constraint points. ") SetConstraints; void SetConstraints(const AppParCurves_Constraint firstC, const AppParCurves_Constraint lastC); - /****************** SetDegrees ******************/ - /**** md5 signature: 545fdd7d739fa58cc970e73d0413f8ef ****/ + /****** AppDef_Compute::SetDegrees ******/ + /****** md5 signature: 545fdd7d739fa58cc970e73d0413f8ef ******/ %feature("compactdefaultargs") SetDegrees; %feature("autodoc", " Parameters @@ -1531,8 +1531,8 @@ Changes the degrees of the approximation. ") SetDegrees; void SetDegrees(const Standard_Integer degreemin, const Standard_Integer degreemax); - /****************** SetTolerances ******************/ - /**** md5 signature: ce7879738ace848f7a3a27c56467be10 ****/ + /****** AppDef_Compute::SetTolerances ******/ + /****** md5 signature: ce7879738ace848f7a3a27c56467be10 ******/ %feature("compactdefaultargs") SetTolerances; %feature("autodoc", " Parameters @@ -1550,8 +1550,8 @@ Changes the tolerances of the approximation. ") SetTolerances; void SetTolerances(const Standard_Real Tolerance3d, const Standard_Real Tolerance2d); - /****************** SplineValue ******************/ - /**** md5 signature: 8abd3bdfb130cc23332c1960701072a6 ****/ + /****** AppDef_Compute::SplineValue ******/ + /****** md5 signature: 8abd3bdfb130cc23332c1960701072a6 ******/ %feature("compactdefaultargs") SplineValue; %feature("autodoc", "Return ------- @@ -1563,8 +1563,8 @@ Returns the result of the approximation. ") SplineValue; AppParCurves_MultiBSpCurve SplineValue(); - /****************** Value ******************/ - /**** md5 signature: ce9a9d43a5aa1f3754abfba817bb7838 ****/ + /****** AppDef_Compute::Value ******/ + /****** md5 signature: ce9a9d43a5aa1f3754abfba817bb7838 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -1595,8 +1595,8 @@ Returns the result of the approximation. **************************************************/ class AppDef_Gradient_BFGSOfMyGradientOfCompute : public math_BFGS { public: - /****************** AppDef_Gradient_BFGSOfMyGradientOfCompute ******************/ - /**** md5 signature: 126f77d585cdec22a8e8a8e4ae8c13ce ****/ + /****** AppDef_Gradient_BFGSOfMyGradientOfCompute::AppDef_Gradient_BFGSOfMyGradientOfCompute ******/ + /****** md5 signature: 126f77d585cdec22a8e8a8e4ae8c13ce ******/ %feature("compactdefaultargs") AppDef_Gradient_BFGSOfMyGradientOfCompute; %feature("autodoc", " Parameters @@ -1618,8 +1618,8 @@ No available documentation. ") AppDef_Gradient_BFGSOfMyGradientOfCompute; AppDef_Gradient_BFGSOfMyGradientOfCompute(math_MultipleVarFunctionWithGradient & F, const math_Vector & StartingPoint, const Standard_Real Tolerance3d, const Standard_Real Tolerance2d, const Standard_Real Eps, const Standard_Integer NbIterations = 200); - /****************** IsSolutionReached ******************/ - /**** md5 signature: a6c0da888a257bf852b40b8daf6526dc ****/ + /****** AppDef_Gradient_BFGSOfMyGradientOfCompute::IsSolutionReached ******/ + /****** md5 signature: a6c0da888a257bf852b40b8daf6526dc ******/ %feature("compactdefaultargs") IsSolutionReached; %feature("autodoc", " Parameters @@ -1650,8 +1650,8 @@ No available documentation. ************************************************************/ class AppDef_Gradient_BFGSOfMyGradientbisOfBSplineCompute : public math_BFGS { public: - /****************** AppDef_Gradient_BFGSOfMyGradientbisOfBSplineCompute ******************/ - /**** md5 signature: db032bfef1a0cabc4126bb1cff8b2cd7 ****/ + /****** AppDef_Gradient_BFGSOfMyGradientbisOfBSplineCompute::AppDef_Gradient_BFGSOfMyGradientbisOfBSplineCompute ******/ + /****** md5 signature: db032bfef1a0cabc4126bb1cff8b2cd7 ******/ %feature("compactdefaultargs") AppDef_Gradient_BFGSOfMyGradientbisOfBSplineCompute; %feature("autodoc", " Parameters @@ -1673,8 +1673,8 @@ No available documentation. ") AppDef_Gradient_BFGSOfMyGradientbisOfBSplineCompute; AppDef_Gradient_BFGSOfMyGradientbisOfBSplineCompute(math_MultipleVarFunctionWithGradient & F, const math_Vector & StartingPoint, const Standard_Real Tolerance3d, const Standard_Real Tolerance2d, const Standard_Real Eps, const Standard_Integer NbIterations = 200); - /****************** IsSolutionReached ******************/ - /**** md5 signature: a6c0da888a257bf852b40b8daf6526dc ****/ + /****** AppDef_Gradient_BFGSOfMyGradientbisOfBSplineCompute::IsSolutionReached ******/ + /****** md5 signature: a6c0da888a257bf852b40b8daf6526dc ******/ %feature("compactdefaultargs") IsSolutionReached; %feature("autodoc", " Parameters @@ -1705,8 +1705,8 @@ No available documentation. ******************************************/ class AppDef_Gradient_BFGSOfTheGradient : public math_BFGS { public: - /****************** AppDef_Gradient_BFGSOfTheGradient ******************/ - /**** md5 signature: a988e1566651277ba477ec7a76734981 ****/ + /****** AppDef_Gradient_BFGSOfTheGradient::AppDef_Gradient_BFGSOfTheGradient ******/ + /****** md5 signature: a988e1566651277ba477ec7a76734981 ******/ %feature("compactdefaultargs") AppDef_Gradient_BFGSOfTheGradient; %feature("autodoc", " Parameters @@ -1728,8 +1728,8 @@ No available documentation. ") AppDef_Gradient_BFGSOfTheGradient; AppDef_Gradient_BFGSOfTheGradient(math_MultipleVarFunctionWithGradient & F, const math_Vector & StartingPoint, const Standard_Real Tolerance3d, const Standard_Real Tolerance2d, const Standard_Real Eps, const Standard_Integer NbIterations = 200); - /****************** IsSolutionReached ******************/ - /**** md5 signature: a6c0da888a257bf852b40b8daf6526dc ****/ + /****** AppDef_Gradient_BFGSOfTheGradient::IsSolutionReached ******/ + /****** md5 signature: a6c0da888a257bf852b40b8daf6526dc ******/ %feature("compactdefaultargs") IsSolutionReached; %feature("autodoc", " Parameters @@ -1760,8 +1760,8 @@ No available documentation. *************************/ class AppDef_MultiLine { public: - /****************** AppDef_MultiLine ******************/ - /**** md5 signature: eca84113c714860aa7239eb211e137f5 ****/ + /****** AppDef_MultiLine::AppDef_MultiLine ******/ + /****** md5 signature: eca84113c714860aa7239eb211e137f5 ******/ %feature("compactdefaultargs") AppDef_MultiLine; %feature("autodoc", "Return ------- @@ -1773,8 +1773,8 @@ Creates an undefined multiline. ") AppDef_MultiLine; AppDef_MultiLine(); - /****************** AppDef_MultiLine ******************/ - /**** md5 signature: 12f50085378edce7cd43da048d563786 ****/ + /****** AppDef_MultiLine::AppDef_MultiLine ******/ + /****** md5 signature: 12f50085378edce7cd43da048d563786 ******/ %feature("compactdefaultargs") AppDef_MultiLine; %feature("autodoc", " Parameters @@ -1791,8 +1791,8 @@ Given the number nbmult of multipointconstraints of this multiline , it initiali ") AppDef_MultiLine; AppDef_MultiLine(const Standard_Integer NbMult); - /****************** AppDef_MultiLine ******************/ - /**** md5 signature: 64ec35865d92daa24a03b18b2dd11882 ****/ + /****** AppDef_MultiLine::AppDef_MultiLine ******/ + /****** md5 signature: 64ec35865d92daa24a03b18b2dd11882 ******/ %feature("compactdefaultargs") AppDef_MultiLine; %feature("autodoc", " Parameters @@ -1809,8 +1809,8 @@ Constructs a multiline with an array of multipointconstraints. ") AppDef_MultiLine; AppDef_MultiLine(const AppDef_Array1OfMultiPointConstraint & tabMultiP); - /****************** AppDef_MultiLine ******************/ - /**** md5 signature: 1bf9d9b2d482b677ffc5d1deb2308402 ****/ + /****** AppDef_MultiLine::AppDef_MultiLine ******/ + /****** md5 signature: 1bf9d9b2d482b677ffc5d1deb2308402 ******/ %feature("compactdefaultargs") AppDef_MultiLine; %feature("autodoc", " Parameters @@ -1827,8 +1827,8 @@ The multiline constructed will have one line of 3d points without their tangenci ") AppDef_MultiLine; AppDef_MultiLine(const TColgp_Array1OfPnt & tabP3d); - /****************** AppDef_MultiLine ******************/ - /**** md5 signature: 1d6626e296ebc032e27692387207051e ****/ + /****** AppDef_MultiLine::AppDef_MultiLine ******/ + /****** md5 signature: 1d6626e296ebc032e27692387207051e ******/ %feature("compactdefaultargs") AppDef_MultiLine; %feature("autodoc", " Parameters @@ -1845,8 +1845,8 @@ The multiline constructed will have one line of 2d points without their tangenci ") AppDef_MultiLine; AppDef_MultiLine(const TColgp_Array1OfPnt2d & tabP2d); - /****************** Dump ******************/ - /**** md5 signature: d37b43e0b2386dc096d5d707876db157 ****/ + /****** AppDef_MultiLine::Dump ******/ + /****** md5 signature: d37b43e0b2386dc096d5d707876db157 ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", " Parameters @@ -1862,8 +1862,8 @@ Prints on the stream o information on the current state of the object. is used t ") Dump; void Dump(std::ostream &OutValue); - /****************** NbMultiPoints ******************/ - /**** md5 signature: 3773aba9a0a09cf608eddf5448da667d ****/ + /****** AppDef_MultiLine::NbMultiPoints ******/ + /****** md5 signature: 3773aba9a0a09cf608eddf5448da667d ******/ %feature("compactdefaultargs") NbMultiPoints; %feature("autodoc", "Return ------- @@ -1875,8 +1875,8 @@ Returns the number of multipointconstraints of the multiline. ") NbMultiPoints; Standard_Integer NbMultiPoints(); - /****************** NbPoints ******************/ - /**** md5 signature: 1d4bbbd7c4dda4f1e56c00ae994bedbe ****/ + /****** AppDef_MultiLine::NbPoints ******/ + /****** md5 signature: 1d4bbbd7c4dda4f1e56c00ae994bedbe ******/ %feature("compactdefaultargs") NbPoints; %feature("autodoc", "Return ------- @@ -1888,8 +1888,8 @@ Returns the number of points from multipoints composing the multiline. ") NbPoints; Standard_Integer NbPoints(); - /****************** SetValue ******************/ - /**** md5 signature: ae7924dceb17bb1bf8b5a017807c66cf ****/ + /****** AppDef_MultiLine::SetValue ******/ + /****** md5 signature: ae7924dceb17bb1bf8b5a017807c66cf ******/ %feature("compactdefaultargs") SetValue; %feature("autodoc", " Parameters @@ -1907,8 +1907,8 @@ It sets the multipointconstraint of range index to the value mpoint. an exceptio ") SetValue; void SetValue(const Standard_Integer Index, const AppDef_MultiPointConstraint & MPoint); - /****************** Value ******************/ - /**** md5 signature: ec3432f3274bca28664158bc2414cf94 ****/ + /****** AppDef_MultiLine::Value ******/ + /****** md5 signature: ec3432f3274bca28664158bc2414cf94 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -1943,8 +1943,8 @@ Returns the multipointconstraint of range index an exception is raised if index< ************************************/ class AppDef_MultiPointConstraint : public AppParCurves_MultiPoint { public: - /****************** AppDef_MultiPointConstraint ******************/ - /**** md5 signature: 96027af1988322f99b6e55f7786bbfed ****/ + /****** AppDef_MultiPointConstraint::AppDef_MultiPointConstraint ******/ + /****** md5 signature: 96027af1988322f99b6e55f7786bbfed ******/ %feature("compactdefaultargs") AppDef_MultiPointConstraint; %feature("autodoc", "Return ------- @@ -1956,8 +1956,8 @@ Creates an undefined multipointconstraint. ") AppDef_MultiPointConstraint; AppDef_MultiPointConstraint(); - /****************** AppDef_MultiPointConstraint ******************/ - /**** md5 signature: ff76964ee920829861e64dfe38e9cb12 ****/ + /****** AppDef_MultiPointConstraint::AppDef_MultiPointConstraint ******/ + /****** md5 signature: ff76964ee920829861e64dfe38e9cb12 ******/ %feature("compactdefaultargs") AppDef_MultiPointConstraint; %feature("autodoc", " Parameters @@ -1975,8 +1975,8 @@ Constructs a set of points used to approximate a multiline. these points can be ") AppDef_MultiPointConstraint; AppDef_MultiPointConstraint(const Standard_Integer NbPoints, const Standard_Integer NbPoints2d); - /****************** AppDef_MultiPointConstraint ******************/ - /**** md5 signature: 9184167dca4027cf0f0b5603034fb92c ****/ + /****** AppDef_MultiPointConstraint::AppDef_MultiPointConstraint ******/ + /****** md5 signature: 9184167dca4027cf0f0b5603034fb92c ******/ %feature("compactdefaultargs") AppDef_MultiPointConstraint; %feature("autodoc", " Parameters @@ -1993,8 +1993,8 @@ Creates a multipoint only composed of 3d points. ") AppDef_MultiPointConstraint; AppDef_MultiPointConstraint(const TColgp_Array1OfPnt & tabP); - /****************** AppDef_MultiPointConstraint ******************/ - /**** md5 signature: 46a09e9865b6eb31d4538e09d085c188 ****/ + /****** AppDef_MultiPointConstraint::AppDef_MultiPointConstraint ******/ + /****** md5 signature: 46a09e9865b6eb31d4538e09d085c188 ******/ %feature("compactdefaultargs") AppDef_MultiPointConstraint; %feature("autodoc", " Parameters @@ -2011,8 +2011,8 @@ Creates a multipoint only composed of 2d points. ") AppDef_MultiPointConstraint; AppDef_MultiPointConstraint(const TColgp_Array1OfPnt2d & tabP); - /****************** AppDef_MultiPointConstraint ******************/ - /**** md5 signature: 4b41af30a79a87deddbf4ee5cd31a158 ****/ + /****** AppDef_MultiPointConstraint::AppDef_MultiPointConstraint ******/ + /****** md5 signature: 4b41af30a79a87deddbf4ee5cd31a158 ******/ %feature("compactdefaultargs") AppDef_MultiPointConstraint; %feature("autodoc", " Parameters @@ -2030,8 +2030,8 @@ Constructs a set of points used to approximate a multiline. these points can be ") AppDef_MultiPointConstraint; AppDef_MultiPointConstraint(const TColgp_Array1OfPnt & tabP, const TColgp_Array1OfPnt2d & tabP2d); - /****************** AppDef_MultiPointConstraint ******************/ - /**** md5 signature: 44443bf947130186f3723c074454fa6c ****/ + /****** AppDef_MultiPointConstraint::AppDef_MultiPointConstraint ******/ + /****** md5 signature: 44443bf947130186f3723c074454fa6c ******/ %feature("compactdefaultargs") AppDef_MultiPointConstraint; %feature("autodoc", " Parameters @@ -2053,8 +2053,8 @@ Creates a multipointconstraint with a constraint of curvature. an exception is r ") AppDef_MultiPointConstraint; AppDef_MultiPointConstraint(const TColgp_Array1OfPnt & tabP, const TColgp_Array1OfPnt2d & tabP2d, const TColgp_Array1OfVec & tabVec, const TColgp_Array1OfVec2d & tabVec2d, const TColgp_Array1OfVec & tabCur, const TColgp_Array1OfVec2d & tabCur2d); - /****************** AppDef_MultiPointConstraint ******************/ - /**** md5 signature: d748f264c5548ebcc67245703c451c24 ****/ + /****** AppDef_MultiPointConstraint::AppDef_MultiPointConstraint ******/ + /****** md5 signature: d748f264c5548ebcc67245703c451c24 ******/ %feature("compactdefaultargs") AppDef_MultiPointConstraint; %feature("autodoc", " Parameters @@ -2074,8 +2074,8 @@ Creates a multipointconstraint with a constraint of tangency. an exception is ra ") AppDef_MultiPointConstraint; AppDef_MultiPointConstraint(const TColgp_Array1OfPnt & tabP, const TColgp_Array1OfPnt2d & tabP2d, const TColgp_Array1OfVec & tabVec, const TColgp_Array1OfVec2d & tabVec2d); - /****************** AppDef_MultiPointConstraint ******************/ - /**** md5 signature: 94d7957cb88369d49d63036eed746423 ****/ + /****** AppDef_MultiPointConstraint::AppDef_MultiPointConstraint ******/ + /****** md5 signature: 94d7957cb88369d49d63036eed746423 ******/ %feature("compactdefaultargs") AppDef_MultiPointConstraint; %feature("autodoc", " Parameters @@ -2094,8 +2094,8 @@ Creates a multipointconstraint only composed of 3d points with constraints of cu ") AppDef_MultiPointConstraint; AppDef_MultiPointConstraint(const TColgp_Array1OfPnt & tabP, const TColgp_Array1OfVec & tabVec, const TColgp_Array1OfVec & tabCur); - /****************** AppDef_MultiPointConstraint ******************/ - /**** md5 signature: 31f20878f084137d450aeb8e587bf928 ****/ + /****** AppDef_MultiPointConstraint::AppDef_MultiPointConstraint ******/ + /****** md5 signature: 31f20878f084137d450aeb8e587bf928 ******/ %feature("compactdefaultargs") AppDef_MultiPointConstraint; %feature("autodoc", " Parameters @@ -2113,8 +2113,8 @@ Creates a multipointconstraint only composed of 3d points with constraints of ta ") AppDef_MultiPointConstraint; AppDef_MultiPointConstraint(const TColgp_Array1OfPnt & tabP, const TColgp_Array1OfVec & tabVec); - /****************** AppDef_MultiPointConstraint ******************/ - /**** md5 signature: 21d3ccff0015997a435f1a264a1c2e78 ****/ + /****** AppDef_MultiPointConstraint::AppDef_MultiPointConstraint ******/ + /****** md5 signature: 21d3ccff0015997a435f1a264a1c2e78 ******/ %feature("compactdefaultargs") AppDef_MultiPointConstraint; %feature("autodoc", " Parameters @@ -2132,8 +2132,8 @@ Creates a multipointconstraint only composed of 2d points with constraints of ta ") AppDef_MultiPointConstraint; AppDef_MultiPointConstraint(const TColgp_Array1OfPnt2d & tabP2d, const TColgp_Array1OfVec2d & tabVec2d); - /****************** AppDef_MultiPointConstraint ******************/ - /**** md5 signature: 66a61a1bf7f3832fb19b1df85df945e9 ****/ + /****** AppDef_MultiPointConstraint::AppDef_MultiPointConstraint ******/ + /****** md5 signature: 66a61a1bf7f3832fb19b1df85df945e9 ******/ %feature("compactdefaultargs") AppDef_MultiPointConstraint; %feature("autodoc", " Parameters @@ -2152,8 +2152,8 @@ Creates a multipointconstraint only composed of 2d points with constraints of cu ") AppDef_MultiPointConstraint; AppDef_MultiPointConstraint(const TColgp_Array1OfPnt2d & tabP2d, const TColgp_Array1OfVec2d & tabVec2d, const TColgp_Array1OfVec2d & tabCur2d); - /****************** Curv ******************/ - /**** md5 signature: 901fe2bd94b085eee25dc02982da6bce ****/ + /****** AppDef_MultiPointConstraint::Curv ******/ + /****** md5 signature: 901fe2bd94b085eee25dc02982da6bce ******/ %feature("compactdefaultargs") Curv; %feature("autodoc", " Parameters @@ -2170,8 +2170,8 @@ Returns the normal vector at the point of range index. an exception is raised if ") Curv; gp_Vec Curv(const Standard_Integer Index); - /****************** Curv2d ******************/ - /**** md5 signature: e6ac9d88d679b86619b3f52f8b16e6a4 ****/ + /****** AppDef_MultiPointConstraint::Curv2d ******/ + /****** md5 signature: e6ac9d88d679b86619b3f52f8b16e6a4 ******/ %feature("compactdefaultargs") Curv2d; %feature("autodoc", " Parameters @@ -2188,8 +2188,8 @@ Returns the normal vector at the point of range index. an exception is raised if ") Curv2d; gp_Vec2d Curv2d(const Standard_Integer Index); - /****************** Dump ******************/ - /**** md5 signature: b42defe2d7a7208961fa81b225a70479 ****/ + /****** AppDef_MultiPointConstraint::Dump ******/ + /****** md5 signature: b42defe2d7a7208961fa81b225a70479 ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", " Parameters @@ -2205,8 +2205,8 @@ Prints on the stream o information on the current state of the object. is used t ") Dump; virtual void Dump(std::ostream &OutValue); - /****************** IsCurvaturePoint ******************/ - /**** md5 signature: d472719ada146163920fff12150b4a88 ****/ + /****** AppDef_MultiPointConstraint::IsCurvaturePoint ******/ + /****** md5 signature: d472719ada146163920fff12150b4a88 ******/ %feature("compactdefaultargs") IsCurvaturePoint; %feature("autodoc", "Return ------- @@ -2218,8 +2218,8 @@ Returns true if the multipoint has a curvature value. ") IsCurvaturePoint; Standard_Boolean IsCurvaturePoint(); - /****************** IsTangencyPoint ******************/ - /**** md5 signature: a9c9faea523a7d80ff8416e04b887e70 ****/ + /****** AppDef_MultiPointConstraint::IsTangencyPoint ******/ + /****** md5 signature: a9c9faea523a7d80ff8416e04b887e70 ******/ %feature("compactdefaultargs") IsTangencyPoint; %feature("autodoc", "Return ------- @@ -2231,8 +2231,8 @@ Returns true if the multipoint has a tangency value. ") IsTangencyPoint; Standard_Boolean IsTangencyPoint(); - /****************** SetCurv ******************/ - /**** md5 signature: 0162d39bffdfbd1d75ead34617bd7b2e ****/ + /****** AppDef_MultiPointConstraint::SetCurv ******/ + /****** md5 signature: 0162d39bffdfbd1d75ead34617bd7b2e ******/ %feature("compactdefaultargs") SetCurv; %feature("autodoc", " Parameters @@ -2250,8 +2250,8 @@ Vec sets the value of the normal vector at the point of index index. the norm of ") SetCurv; void SetCurv(const Standard_Integer Index, const gp_Vec & Curv); - /****************** SetCurv2d ******************/ - /**** md5 signature: 3ec1dbcf520f618b653d5041e0c8d8dd ****/ + /****** AppDef_MultiPointConstraint::SetCurv2d ******/ + /****** md5 signature: 3ec1dbcf520f618b653d5041e0c8d8dd ******/ %feature("compactdefaultargs") SetCurv2d; %feature("autodoc", " Parameters @@ -2269,8 +2269,8 @@ Vec sets the value of the normal vector at the point of index index. the norm of ") SetCurv2d; void SetCurv2d(const Standard_Integer Index, const gp_Vec2d & Curv2d); - /****************** SetTang ******************/ - /**** md5 signature: b9f6088507651a7284dea739ac0606f3 ****/ + /****** AppDef_MultiPointConstraint::SetTang ******/ + /****** md5 signature: b9f6088507651a7284dea739ac0606f3 ******/ %feature("compactdefaultargs") SetTang; %feature("autodoc", " Parameters @@ -2288,8 +2288,8 @@ Sets the value of the tangency of the point of range index. an exception is rais ") SetTang; void SetTang(const Standard_Integer Index, const gp_Vec & Tang); - /****************** SetTang2d ******************/ - /**** md5 signature: f8ceb77e6c6d212baca26c1596380f6f ****/ + /****** AppDef_MultiPointConstraint::SetTang2d ******/ + /****** md5 signature: f8ceb77e6c6d212baca26c1596380f6f ******/ %feature("compactdefaultargs") SetTang2d; %feature("autodoc", " Parameters @@ -2307,8 +2307,8 @@ Sets the value of the tangency of the point of range index. an exception is rais ") SetTang2d; void SetTang2d(const Standard_Integer Index, const gp_Vec2d & Tang2d); - /****************** Tang ******************/ - /**** md5 signature: b3ab01973cc67e0139dc6df881bab23f ****/ + /****** AppDef_MultiPointConstraint::Tang ******/ + /****** md5 signature: b3ab01973cc67e0139dc6df881bab23f ******/ %feature("compactdefaultargs") Tang; %feature("autodoc", " Parameters @@ -2325,8 +2325,8 @@ Returns the tangency value of the point of range index. an exception is raised i ") Tang; gp_Vec Tang(const Standard_Integer Index); - /****************** Tang2d ******************/ - /**** md5 signature: 40fbe4c8c727eda957d23ce8b2313218 ****/ + /****** AppDef_MultiPointConstraint::Tang2d ******/ + /****** md5 signature: 40fbe4c8c727eda957d23ce8b2313218 ******/ %feature("compactdefaultargs") Tang2d; %feature("autodoc", " Parameters @@ -2357,8 +2357,8 @@ Returns the tangency value of the point of range index. an exception is raised i **********************************************/ class AppDef_MyBSplGradientOfBSplineCompute { public: - /****************** AppDef_MyBSplGradientOfBSplineCompute ******************/ - /**** md5 signature: 285b1c5b1288155aae98fcdade735980 ****/ + /****** AppDef_MyBSplGradientOfBSplineCompute::AppDef_MyBSplGradientOfBSplineCompute ******/ + /****** md5 signature: 285b1c5b1288155aae98fcdade735980 ******/ %feature("compactdefaultargs") AppDef_MyBSplGradientOfBSplineCompute; %feature("autodoc", " Parameters @@ -2385,8 +2385,8 @@ Tries to minimize the sum (square(||qui - bi*pi||)) where pui describe the appro ") AppDef_MyBSplGradientOfBSplineCompute; AppDef_MyBSplGradientOfBSplineCompute(const AppDef_MultiLine & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const opencascade::handle & TheConstraints, math_Vector & Parameters, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Integer Deg, const Standard_Real Tol3d, const Standard_Real Tol2d, const Standard_Integer NbIterations = 1); - /****************** AppDef_MyBSplGradientOfBSplineCompute ******************/ - /**** md5 signature: e90d26c95787b979a56c520408235daf ****/ + /****** AppDef_MyBSplGradientOfBSplineCompute::AppDef_MyBSplGradientOfBSplineCompute ******/ + /****** md5 signature: e90d26c95787b979a56c520408235daf ******/ %feature("compactdefaultargs") AppDef_MyBSplGradientOfBSplineCompute; %feature("autodoc", " Parameters @@ -2415,8 +2415,8 @@ Tries to minimize the sum (square(||qui - bi*pi||)) where pui describe the appro ") AppDef_MyBSplGradientOfBSplineCompute; AppDef_MyBSplGradientOfBSplineCompute(const AppDef_MultiLine & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const opencascade::handle & TheConstraints, math_Vector & Parameters, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Integer Deg, const Standard_Real Tol3d, const Standard_Real Tol2d, const Standard_Integer NbIterations, const Standard_Real lambda1, const Standard_Real lambda2); - /****************** AverageError ******************/ - /**** md5 signature: 420f3b7884af8c019ac24a5fe5ae6ff8 ****/ + /****** AppDef_MyBSplGradientOfBSplineCompute::AverageError ******/ + /****** md5 signature: 420f3b7884af8c019ac24a5fe5ae6ff8 ******/ %feature("compactdefaultargs") AverageError; %feature("autodoc", "Return ------- @@ -2428,8 +2428,8 @@ Returns the average error between the old and the new approximation. ") AverageError; Standard_Real AverageError(); - /****************** Error ******************/ - /**** md5 signature: 94d11b0fe58daf5df892c75e38905cde ****/ + /****** AppDef_MyBSplGradientOfBSplineCompute::Error ******/ + /****** md5 signature: 94d11b0fe58daf5df892c75e38905cde ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -2446,8 +2446,8 @@ Returns the difference between the old and the new approximation. an exception i ") Error; Standard_Real Error(const Standard_Integer Index); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** AppDef_MyBSplGradientOfBSplineCompute::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -2459,8 +2459,8 @@ Returns true if all has been correctly done. ") IsDone; Standard_Boolean IsDone(); - /****************** MaxError2d ******************/ - /**** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ****/ + /****** AppDef_MyBSplGradientOfBSplineCompute::MaxError2d ******/ + /****** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ******/ %feature("compactdefaultargs") MaxError2d; %feature("autodoc", "Return ------- @@ -2472,8 +2472,8 @@ Returns the maximum difference between the old and the new approximation. ") MaxError2d; Standard_Real MaxError2d(); - /****************** MaxError3d ******************/ - /**** md5 signature: c6ba463cdf4a0e426329b589363186b7 ****/ + /****** AppDef_MyBSplGradientOfBSplineCompute::MaxError3d ******/ + /****** md5 signature: c6ba463cdf4a0e426329b589363186b7 ******/ %feature("compactdefaultargs") MaxError3d; %feature("autodoc", "Return ------- @@ -2485,8 +2485,8 @@ Returns the maximum difference between the old and the new approximation. ") MaxError3d; Standard_Real MaxError3d(); - /****************** Value ******************/ - /**** md5 signature: 35d2ee100f1a9fc11f00b074d7d3553e ****/ + /****** AppDef_MyBSplGradientOfBSplineCompute::Value ******/ + /****** md5 signature: 35d2ee100f1a9fc11f00b074d7d3553e ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -2512,8 +2512,8 @@ Returns all the bspline curves approximating the multiline ssp after minimizatio ***********************************/ class AppDef_MyGradientOfCompute { public: - /****************** AppDef_MyGradientOfCompute ******************/ - /**** md5 signature: d6d163c2b5b0d362b397ec1451a85a67 ****/ + /****** AppDef_MyGradientOfCompute::AppDef_MyGradientOfCompute ******/ + /****** md5 signature: d6d163c2b5b0d362b397ec1451a85a67 ******/ %feature("compactdefaultargs") AppDef_MyGradientOfCompute; %feature("autodoc", " Parameters @@ -2538,8 +2538,8 @@ Tries to minimize the sum (square(||qui - bi*pi||)) where pui describe the appro ") AppDef_MyGradientOfCompute; AppDef_MyGradientOfCompute(const AppDef_MultiLine & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const opencascade::handle & TheConstraints, math_Vector & Parameters, const Standard_Integer Deg, const Standard_Real Tol3d, const Standard_Real Tol2d, const Standard_Integer NbIterations = 200); - /****************** AverageError ******************/ - /**** md5 signature: 420f3b7884af8c019ac24a5fe5ae6ff8 ****/ + /****** AppDef_MyGradientOfCompute::AverageError ******/ + /****** md5 signature: 420f3b7884af8c019ac24a5fe5ae6ff8 ******/ %feature("compactdefaultargs") AverageError; %feature("autodoc", "Return ------- @@ -2551,8 +2551,8 @@ Returns the average error between the old and the new approximation. ") AverageError; Standard_Real AverageError(); - /****************** Error ******************/ - /**** md5 signature: 94d11b0fe58daf5df892c75e38905cde ****/ + /****** AppDef_MyGradientOfCompute::Error ******/ + /****** md5 signature: 94d11b0fe58daf5df892c75e38905cde ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -2569,8 +2569,8 @@ Returns the difference between the old and the new approximation. an exception i ") Error; Standard_Real Error(const Standard_Integer Index); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** AppDef_MyGradientOfCompute::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -2582,8 +2582,8 @@ Returns true if all has been correctly done. ") IsDone; Standard_Boolean IsDone(); - /****************** MaxError2d ******************/ - /**** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ****/ + /****** AppDef_MyGradientOfCompute::MaxError2d ******/ + /****** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ******/ %feature("compactdefaultargs") MaxError2d; %feature("autodoc", "Return ------- @@ -2595,8 +2595,8 @@ Returns the maximum difference between the old and the new approximation. ") MaxError2d; Standard_Real MaxError2d(); - /****************** MaxError3d ******************/ - /**** md5 signature: c6ba463cdf4a0e426329b589363186b7 ****/ + /****** AppDef_MyGradientOfCompute::MaxError3d ******/ + /****** md5 signature: c6ba463cdf4a0e426329b589363186b7 ******/ %feature("compactdefaultargs") MaxError3d; %feature("autodoc", "Return ------- @@ -2608,8 +2608,8 @@ Returns the maximum difference between the old and the new approximation. ") MaxError3d; Standard_Real MaxError3d(); - /****************** Value ******************/ - /**** md5 signature: dac7e49320bc0e9a268aeb92592734dc ****/ + /****** AppDef_MyGradientOfCompute::Value ******/ + /****** md5 signature: dac7e49320bc0e9a268aeb92592734dc ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -2635,8 +2635,8 @@ Returns all the bezier curves approximating the multiline ssp after minimization *********************************************/ class AppDef_MyGradientbisOfBSplineCompute { public: - /****************** AppDef_MyGradientbisOfBSplineCompute ******************/ - /**** md5 signature: 6bd7ad47a144857ac891dd606d181fd3 ****/ + /****** AppDef_MyGradientbisOfBSplineCompute::AppDef_MyGradientbisOfBSplineCompute ******/ + /****** md5 signature: 6bd7ad47a144857ac891dd606d181fd3 ******/ %feature("compactdefaultargs") AppDef_MyGradientbisOfBSplineCompute; %feature("autodoc", " Parameters @@ -2661,8 +2661,8 @@ Tries to minimize the sum (square(||qui - bi*pi||)) where pui describe the appro ") AppDef_MyGradientbisOfBSplineCompute; AppDef_MyGradientbisOfBSplineCompute(const AppDef_MultiLine & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const opencascade::handle & TheConstraints, math_Vector & Parameters, const Standard_Integer Deg, const Standard_Real Tol3d, const Standard_Real Tol2d, const Standard_Integer NbIterations = 200); - /****************** AverageError ******************/ - /**** md5 signature: 420f3b7884af8c019ac24a5fe5ae6ff8 ****/ + /****** AppDef_MyGradientbisOfBSplineCompute::AverageError ******/ + /****** md5 signature: 420f3b7884af8c019ac24a5fe5ae6ff8 ******/ %feature("compactdefaultargs") AverageError; %feature("autodoc", "Return ------- @@ -2674,8 +2674,8 @@ Returns the average error between the old and the new approximation. ") AverageError; Standard_Real AverageError(); - /****************** Error ******************/ - /**** md5 signature: 94d11b0fe58daf5df892c75e38905cde ****/ + /****** AppDef_MyGradientbisOfBSplineCompute::Error ******/ + /****** md5 signature: 94d11b0fe58daf5df892c75e38905cde ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -2692,8 +2692,8 @@ Returns the difference between the old and the new approximation. an exception i ") Error; Standard_Real Error(const Standard_Integer Index); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** AppDef_MyGradientbisOfBSplineCompute::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -2705,8 +2705,8 @@ Returns true if all has been correctly done. ") IsDone; Standard_Boolean IsDone(); - /****************** MaxError2d ******************/ - /**** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ****/ + /****** AppDef_MyGradientbisOfBSplineCompute::MaxError2d ******/ + /****** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ******/ %feature("compactdefaultargs") MaxError2d; %feature("autodoc", "Return ------- @@ -2718,8 +2718,8 @@ Returns the maximum difference between the old and the new approximation. ") MaxError2d; Standard_Real MaxError2d(); - /****************** MaxError3d ******************/ - /**** md5 signature: c6ba463cdf4a0e426329b589363186b7 ****/ + /****** AppDef_MyGradientbisOfBSplineCompute::MaxError3d ******/ + /****** md5 signature: c6ba463cdf4a0e426329b589363186b7 ******/ %feature("compactdefaultargs") MaxError3d; %feature("autodoc", "Return ------- @@ -2731,8 +2731,8 @@ Returns the maximum difference between the old and the new approximation. ") MaxError3d; Standard_Real MaxError3d(); - /****************** Value ******************/ - /**** md5 signature: dac7e49320bc0e9a268aeb92592734dc ****/ + /****** AppDef_MyGradientbisOfBSplineCompute::Value ******/ + /****** md5 signature: dac7e49320bc0e9a268aeb92592734dc ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -2758,8 +2758,8 @@ Returns all the bezier curves approximating the multiline ssp after minimization **************************/ class AppDef_MyLineTool { public: - /****************** Curvature ******************/ - /**** md5 signature: 12e4a67b8d371d9f1a978704077ccbc8 ****/ + /****** AppDef_MyLineTool::Curvature ******/ + /****** md5 signature: 12e4a67b8d371d9f1a978704077ccbc8 ******/ %feature("compactdefaultargs") Curvature; %feature("autodoc", " Parameters @@ -2778,8 +2778,8 @@ Returns the 3d curvatures of the multipoint when only 3d points ex ") Curvature; static Standard_Boolean Curvature(const AppDef_MultiLine & ML, const Standard_Integer MPointIndex, TColgp_Array1OfVec & tabV); - /****************** Curvature ******************/ - /**** md5 signature: da227696a9b2e067a20d3b5467649970 ****/ + /****** AppDef_MyLineTool::Curvature ******/ + /****** md5 signature: da227696a9b2e067a20d3b5467649970 ******/ %feature("compactdefaultargs") Curvature; %feature("autodoc", " Parameters @@ -2798,8 +2798,8 @@ Returns the 2d curvatures of the multipoint only when 2d points ex ") Curvature; static Standard_Boolean Curvature(const AppDef_MultiLine & ML, const Standard_Integer MPointIndex, TColgp_Array1OfVec2d & tabV2d); - /****************** Curvature ******************/ - /**** md5 signature: c8420054f061601ba7d5d683c11ca2e7 ****/ + /****** AppDef_MyLineTool::Curvature ******/ + /****** md5 signature: c8420054f061601ba7d5d683c11ca2e7 ******/ %feature("compactdefaultargs") Curvature; %feature("autodoc", " Parameters @@ -2819,8 +2819,8 @@ Returns the 3d and 2d curvatures of the multipoint . ") Curvature; static Standard_Boolean Curvature(const AppDef_MultiLine & ML, const Standard_Integer MPointIndex, TColgp_Array1OfVec & tabV, TColgp_Array1OfVec2d & tabV2d); - /****************** FirstPoint ******************/ - /**** md5 signature: aa6413da896459eb8c56102a045df964 ****/ + /****** AppDef_MyLineTool::FirstPoint ******/ + /****** md5 signature: aa6413da896459eb8c56102a045df964 ******/ %feature("compactdefaultargs") FirstPoint; %feature("autodoc", " Parameters @@ -2837,8 +2837,8 @@ Returns the first index of multipoints of the multiline. ") FirstPoint; static Standard_Integer FirstPoint(const AppDef_MultiLine & ML); - /****************** LastPoint ******************/ - /**** md5 signature: 9f5446370dab90e6dc755040302f27ba ****/ + /****** AppDef_MyLineTool::LastPoint ******/ + /****** md5 signature: 9f5446370dab90e6dc755040302f27ba ******/ %feature("compactdefaultargs") LastPoint; %feature("autodoc", " Parameters @@ -2855,8 +2855,8 @@ Returns the last index of multipoints of the multiline. ") LastPoint; static Standard_Integer LastPoint(const AppDef_MultiLine & ML); - /****************** MakeMLBetween ******************/ - /**** md5 signature: 45eb4314bc229297ec468e0e68adda67 ****/ + /****** AppDef_MyLineTool::MakeMLBetween ******/ + /****** md5 signature: 45eb4314bc229297ec468e0e68adda67 ******/ %feature("compactdefaultargs") MakeMLBetween; %feature("autodoc", " Parameters @@ -2876,8 +2876,8 @@ Is never called in the algorithms. nothing is done. ") MakeMLBetween; static AppDef_MultiLine MakeMLBetween(const AppDef_MultiLine & ML, const Standard_Integer I1, const Standard_Integer I2, const Standard_Integer NbPMin); - /****************** MakeMLOneMorePoint ******************/ - /**** md5 signature: 63482999c5c43dccf4668a0ab37a5909 ****/ + /****** AppDef_MyLineTool::MakeMLOneMorePoint ******/ + /****** md5 signature: 63482999c5c43dccf4668a0ab37a5909 ******/ %feature("compactdefaultargs") MakeMLOneMorePoint; %feature("autodoc", " Parameters @@ -2898,8 +2898,8 @@ Is never called in the algorithms. nothing is done. ") MakeMLOneMorePoint; static Standard_Boolean MakeMLOneMorePoint(const AppDef_MultiLine & ML, const Standard_Integer I1, const Standard_Integer I2, const Standard_Integer indbad, AppDef_MultiLine & OtherLine); - /****************** NbP2d ******************/ - /**** md5 signature: 7a37caf206ab568500c96708d4d9f281 ****/ + /****** AppDef_MyLineTool::NbP2d ******/ + /****** md5 signature: 7a37caf206ab568500c96708d4d9f281 ******/ %feature("compactdefaultargs") NbP2d; %feature("autodoc", " Parameters @@ -2916,8 +2916,8 @@ Returns the number of 2d points of a multiline. ") NbP2d; static Standard_Integer NbP2d(const AppDef_MultiLine & ML); - /****************** NbP3d ******************/ - /**** md5 signature: b37e0daf764f3796dfd4e04f1004f411 ****/ + /****** AppDef_MyLineTool::NbP3d ******/ + /****** md5 signature: b37e0daf764f3796dfd4e04f1004f411 ******/ %feature("compactdefaultargs") NbP3d; %feature("autodoc", " Parameters @@ -2934,8 +2934,8 @@ Returns the number of 3d points of a multiline. ") NbP3d; static Standard_Integer NbP3d(const AppDef_MultiLine & ML); - /****************** Tangency ******************/ - /**** md5 signature: 899765c31b68f9d5622bb4f335d17af9 ****/ + /****** AppDef_MyLineTool::Tangency ******/ + /****** md5 signature: 899765c31b68f9d5622bb4f335d17af9 ******/ %feature("compactdefaultargs") Tangency; %feature("autodoc", " Parameters @@ -2954,8 +2954,8 @@ Returns the 3d points of the multipoint when only 3d points exist. ") Tangency; static Standard_Boolean Tangency(const AppDef_MultiLine & ML, const Standard_Integer MPointIndex, TColgp_Array1OfVec & tabV); - /****************** Tangency ******************/ - /**** md5 signature: 0b0abe2371afc94bdc402cd3a5e13ca6 ****/ + /****** AppDef_MyLineTool::Tangency ******/ + /****** md5 signature: 0b0abe2371afc94bdc402cd3a5e13ca6 ******/ %feature("compactdefaultargs") Tangency; %feature("autodoc", " Parameters @@ -2974,8 +2974,8 @@ Returns the 2d tangency points of the multipoint only when 2d poin ") Tangency; static Standard_Boolean Tangency(const AppDef_MultiLine & ML, const Standard_Integer MPointIndex, TColgp_Array1OfVec2d & tabV2d); - /****************** Tangency ******************/ - /**** md5 signature: 260996d76e35422100d12a8ced363571 ****/ + /****** AppDef_MyLineTool::Tangency ******/ + /****** md5 signature: 260996d76e35422100d12a8ced363571 ******/ %feature("compactdefaultargs") Tangency; %feature("autodoc", " Parameters @@ -2995,8 +2995,8 @@ Returns the 3d and 2d points of the multipoint . ") Tangency; static Standard_Boolean Tangency(const AppDef_MultiLine & ML, const Standard_Integer MPointIndex, TColgp_Array1OfVec & tabV, TColgp_Array1OfVec2d & tabV2d); - /****************** Value ******************/ - /**** md5 signature: 8dcbf0fabc7c1e1761c0065a48505664 ****/ + /****** AppDef_MyLineTool::Value ******/ + /****** md5 signature: 8dcbf0fabc7c1e1761c0065a48505664 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -3015,8 +3015,8 @@ Returns the 3d points of the multipoint when only 3d points exist. ") Value; static void Value(const AppDef_MultiLine & ML, const Standard_Integer MPointIndex, TColgp_Array1OfPnt & tabPt); - /****************** Value ******************/ - /**** md5 signature: 531d0eb0a3bfd42e8f41bd5400fec8b8 ****/ + /****** AppDef_MyLineTool::Value ******/ + /****** md5 signature: 531d0eb0a3bfd42e8f41bd5400fec8b8 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -3035,8 +3035,8 @@ Returns the 2d points of the multipoint when only 2d points exist. ") Value; static void Value(const AppDef_MultiLine & ML, const Standard_Integer MPointIndex, TColgp_Array1OfPnt2d & tabPt2d); - /****************** Value ******************/ - /**** md5 signature: 2b0210374c28698cdc099922d8d2b967 ****/ + /****** AppDef_MyLineTool::Value ******/ + /****** md5 signature: 2b0210374c28698cdc099922d8d2b967 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -3056,8 +3056,8 @@ Returns the 3d and 2d points of the multipoint . ") Value; static void Value(const AppDef_MultiLine & ML, const Standard_Integer MPointIndex, TColgp_Array1OfPnt & tabPt, TColgp_Array1OfPnt2d & tabPt2d); - /****************** WhatStatus ******************/ - /**** md5 signature: a4e05eb1bdb8d525ab7cc67865409902 ****/ + /****** AppDef_MyLineTool::WhatStatus ******/ + /****** md5 signature: a4e05eb1bdb8d525ab7cc67865409902 ******/ %feature("compactdefaultargs") WhatStatus; %feature("autodoc", " Parameters @@ -3090,8 +3090,8 @@ Returns nopointsadded. ************************************************/ class AppDef_ParFunctionOfMyGradientOfCompute : public math_MultipleVarFunctionWithGradient { public: - /****************** AppDef_ParFunctionOfMyGradientOfCompute ******************/ - /**** md5 signature: 5e82b667e483741251b19a4b42af6a1c ****/ + /****** AppDef_ParFunctionOfMyGradientOfCompute::AppDef_ParFunctionOfMyGradientOfCompute ******/ + /****** md5 signature: 5e82b667e483741251b19a4b42af6a1c ******/ %feature("compactdefaultargs") AppDef_ParFunctionOfMyGradientOfCompute; %feature("autodoc", " Parameters @@ -3113,8 +3113,8 @@ Initializes the fields of the function. the approximating curve has the desired ") AppDef_ParFunctionOfMyGradientOfCompute; AppDef_ParFunctionOfMyGradientOfCompute(const AppDef_MultiLine & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const opencascade::handle & TheConstraints, const math_Vector & Parameters, const Standard_Integer Deg); - /****************** CurveValue ******************/ - /**** md5 signature: c2e2cb976554936214bdfe3487b0362c ****/ + /****** AppDef_ParFunctionOfMyGradientOfCompute::CurveValue ******/ + /****** md5 signature: c2e2cb976554936214bdfe3487b0362c ******/ %feature("compactdefaultargs") CurveValue; %feature("autodoc", "Return ------- @@ -3126,8 +3126,8 @@ Returns the multicurve approximating the set after computing the value f or grad ") CurveValue; AppParCurves_MultiCurve CurveValue(); - /****************** Error ******************/ - /**** md5 signature: 59bc36aa259ae04fcbc9c2a60fae6dfb ****/ + /****** AppDef_ParFunctionOfMyGradientOfCompute::Error ******/ + /****** md5 signature: 59bc36aa259ae04fcbc9c2a60fae6dfb ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -3145,8 +3145,8 @@ Returns the distance between the multipoint of range ipoint and the curve curvei ") Error; Standard_Real Error(const Standard_Integer IPoint, const Standard_Integer CurveIndex); - /****************** FirstConstraint ******************/ - /**** md5 signature: 6814c8615ee3f59417c740c77d2ce795 ****/ + /****** AppDef_ParFunctionOfMyGradientOfCompute::FirstConstraint ******/ + /****** md5 signature: 6814c8615ee3f59417c740c77d2ce795 ******/ %feature("compactdefaultargs") FirstConstraint; %feature("autodoc", " Parameters @@ -3164,8 +3164,8 @@ No available documentation. ") FirstConstraint; AppParCurves_Constraint FirstConstraint(const opencascade::handle & TheConstraints, const Standard_Integer FirstPoint); - /****************** Gradient ******************/ - /**** md5 signature: 5ee531ceab07ab216991e3bf02edf0f7 ****/ + /****** AppDef_ParFunctionOfMyGradientOfCompute::Gradient ******/ + /****** md5 signature: 5ee531ceab07ab216991e3bf02edf0f7 ******/ %feature("compactdefaultargs") Gradient; %feature("autodoc", " Parameters @@ -3183,8 +3183,8 @@ Returns the gradient g of the sum above for the parameters xi. ") Gradient; Standard_Boolean Gradient(const math_Vector & X, math_Vector & G); - /****************** LastConstraint ******************/ - /**** md5 signature: f3572ad2cc7e299a1f7b6cb9d14677cf ****/ + /****** AppDef_ParFunctionOfMyGradientOfCompute::LastConstraint ******/ + /****** md5 signature: f3572ad2cc7e299a1f7b6cb9d14677cf ******/ %feature("compactdefaultargs") LastConstraint; %feature("autodoc", " Parameters @@ -3202,8 +3202,8 @@ No available documentation. ") LastConstraint; AppParCurves_Constraint LastConstraint(const opencascade::handle & TheConstraints, const Standard_Integer LastPoint); - /****************** MaxError2d ******************/ - /**** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ****/ + /****** AppDef_ParFunctionOfMyGradientOfCompute::MaxError2d ******/ + /****** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ******/ %feature("compactdefaultargs") MaxError2d; %feature("autodoc", "Return ------- @@ -3215,8 +3215,8 @@ Returns the maximum distance between the points and the multicurve. ") MaxError2d; Standard_Real MaxError2d(); - /****************** MaxError3d ******************/ - /**** md5 signature: c6ba463cdf4a0e426329b589363186b7 ****/ + /****** AppDef_ParFunctionOfMyGradientOfCompute::MaxError3d ******/ + /****** md5 signature: c6ba463cdf4a0e426329b589363186b7 ******/ %feature("compactdefaultargs") MaxError3d; %feature("autodoc", "Return ------- @@ -3228,8 +3228,8 @@ Returns the maximum distance between the points and the multicurve. ") MaxError3d; Standard_Real MaxError3d(); - /****************** NbVariables ******************/ - /**** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ****/ + /****** AppDef_ParFunctionOfMyGradientOfCompute::NbVariables ******/ + /****** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -3241,8 +3241,8 @@ Returns the number of variables of the function. it corresponds to the number of ") NbVariables; Standard_Integer NbVariables(); - /****************** NewParameters ******************/ - /**** md5 signature: 1d606e7b2aa9813a84f6984ebdf52bb7 ****/ + /****** AppDef_ParFunctionOfMyGradientOfCompute::NewParameters ******/ + /****** md5 signature: 1d606e7b2aa9813a84f6984ebdf52bb7 ******/ %feature("compactdefaultargs") NewParameters; %feature("autodoc", "Return ------- @@ -3254,8 +3254,8 @@ Returns the new parameters of the multiline. ") NewParameters; const math_Vector & NewParameters(); - /****************** Value ******************/ - /**** md5 signature: 33f8b9f75d238865cc320f57ac729801 ****/ + /****** AppDef_ParFunctionOfMyGradientOfCompute::Value ******/ + /****** md5 signature: 33f8b9f75d238865cc320f57ac729801 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -3272,8 +3272,8 @@ This method computes the new approximation of the multiline ssp and calculates f ") Value; Standard_Boolean Value(const math_Vector & X, Standard_Real &OutValue); - /****************** Values ******************/ - /**** md5 signature: 66c7c08f6bec2933f700c6f45cf14285 ****/ + /****** AppDef_ParFunctionOfMyGradientOfCompute::Values ******/ + /****** md5 signature: 66c7c08f6bec2933f700c6f45cf14285 ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -3305,8 +3305,8 @@ Returns the value f=sum(||pui - bi*pi||)2. returns the value g = grad(f) for the **********************************************************/ class AppDef_ParFunctionOfMyGradientbisOfBSplineCompute : public math_MultipleVarFunctionWithGradient { public: - /****************** AppDef_ParFunctionOfMyGradientbisOfBSplineCompute ******************/ - /**** md5 signature: 71e0b753e00d6144bda7beaa41e6a211 ****/ + /****** AppDef_ParFunctionOfMyGradientbisOfBSplineCompute::AppDef_ParFunctionOfMyGradientbisOfBSplineCompute ******/ + /****** md5 signature: 71e0b753e00d6144bda7beaa41e6a211 ******/ %feature("compactdefaultargs") AppDef_ParFunctionOfMyGradientbisOfBSplineCompute; %feature("autodoc", " Parameters @@ -3328,8 +3328,8 @@ Initializes the fields of the function. the approximating curve has the desired ") AppDef_ParFunctionOfMyGradientbisOfBSplineCompute; AppDef_ParFunctionOfMyGradientbisOfBSplineCompute(const AppDef_MultiLine & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const opencascade::handle & TheConstraints, const math_Vector & Parameters, const Standard_Integer Deg); - /****************** CurveValue ******************/ - /**** md5 signature: c2e2cb976554936214bdfe3487b0362c ****/ + /****** AppDef_ParFunctionOfMyGradientbisOfBSplineCompute::CurveValue ******/ + /****** md5 signature: c2e2cb976554936214bdfe3487b0362c ******/ %feature("compactdefaultargs") CurveValue; %feature("autodoc", "Return ------- @@ -3341,8 +3341,8 @@ Returns the multicurve approximating the set after computing the value f or grad ") CurveValue; AppParCurves_MultiCurve CurveValue(); - /****************** Error ******************/ - /**** md5 signature: 59bc36aa259ae04fcbc9c2a60fae6dfb ****/ + /****** AppDef_ParFunctionOfMyGradientbisOfBSplineCompute::Error ******/ + /****** md5 signature: 59bc36aa259ae04fcbc9c2a60fae6dfb ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -3360,8 +3360,8 @@ Returns the distance between the multipoint of range ipoint and the curve curvei ") Error; Standard_Real Error(const Standard_Integer IPoint, const Standard_Integer CurveIndex); - /****************** FirstConstraint ******************/ - /**** md5 signature: 6814c8615ee3f59417c740c77d2ce795 ****/ + /****** AppDef_ParFunctionOfMyGradientbisOfBSplineCompute::FirstConstraint ******/ + /****** md5 signature: 6814c8615ee3f59417c740c77d2ce795 ******/ %feature("compactdefaultargs") FirstConstraint; %feature("autodoc", " Parameters @@ -3379,8 +3379,8 @@ No available documentation. ") FirstConstraint; AppParCurves_Constraint FirstConstraint(const opencascade::handle & TheConstraints, const Standard_Integer FirstPoint); - /****************** Gradient ******************/ - /**** md5 signature: 5ee531ceab07ab216991e3bf02edf0f7 ****/ + /****** AppDef_ParFunctionOfMyGradientbisOfBSplineCompute::Gradient ******/ + /****** md5 signature: 5ee531ceab07ab216991e3bf02edf0f7 ******/ %feature("compactdefaultargs") Gradient; %feature("autodoc", " Parameters @@ -3398,8 +3398,8 @@ Returns the gradient g of the sum above for the parameters xi. ") Gradient; Standard_Boolean Gradient(const math_Vector & X, math_Vector & G); - /****************** LastConstraint ******************/ - /**** md5 signature: f3572ad2cc7e299a1f7b6cb9d14677cf ****/ + /****** AppDef_ParFunctionOfMyGradientbisOfBSplineCompute::LastConstraint ******/ + /****** md5 signature: f3572ad2cc7e299a1f7b6cb9d14677cf ******/ %feature("compactdefaultargs") LastConstraint; %feature("autodoc", " Parameters @@ -3417,8 +3417,8 @@ No available documentation. ") LastConstraint; AppParCurves_Constraint LastConstraint(const opencascade::handle & TheConstraints, const Standard_Integer LastPoint); - /****************** MaxError2d ******************/ - /**** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ****/ + /****** AppDef_ParFunctionOfMyGradientbisOfBSplineCompute::MaxError2d ******/ + /****** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ******/ %feature("compactdefaultargs") MaxError2d; %feature("autodoc", "Return ------- @@ -3430,8 +3430,8 @@ Returns the maximum distance between the points and the multicurve. ") MaxError2d; Standard_Real MaxError2d(); - /****************** MaxError3d ******************/ - /**** md5 signature: c6ba463cdf4a0e426329b589363186b7 ****/ + /****** AppDef_ParFunctionOfMyGradientbisOfBSplineCompute::MaxError3d ******/ + /****** md5 signature: c6ba463cdf4a0e426329b589363186b7 ******/ %feature("compactdefaultargs") MaxError3d; %feature("autodoc", "Return ------- @@ -3443,8 +3443,8 @@ Returns the maximum distance between the points and the multicurve. ") MaxError3d; Standard_Real MaxError3d(); - /****************** NbVariables ******************/ - /**** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ****/ + /****** AppDef_ParFunctionOfMyGradientbisOfBSplineCompute::NbVariables ******/ + /****** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -3456,8 +3456,8 @@ Returns the number of variables of the function. it corresponds to the number of ") NbVariables; Standard_Integer NbVariables(); - /****************** NewParameters ******************/ - /**** md5 signature: 1d606e7b2aa9813a84f6984ebdf52bb7 ****/ + /****** AppDef_ParFunctionOfMyGradientbisOfBSplineCompute::NewParameters ******/ + /****** md5 signature: 1d606e7b2aa9813a84f6984ebdf52bb7 ******/ %feature("compactdefaultargs") NewParameters; %feature("autodoc", "Return ------- @@ -3469,8 +3469,8 @@ Returns the new parameters of the multiline. ") NewParameters; const math_Vector & NewParameters(); - /****************** Value ******************/ - /**** md5 signature: 33f8b9f75d238865cc320f57ac729801 ****/ + /****** AppDef_ParFunctionOfMyGradientbisOfBSplineCompute::Value ******/ + /****** md5 signature: 33f8b9f75d238865cc320f57ac729801 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -3487,8 +3487,8 @@ This method computes the new approximation of the multiline ssp and calculates f ") Value; Standard_Boolean Value(const math_Vector & X, Standard_Real &OutValue); - /****************** Values ******************/ - /**** md5 signature: 66c7c08f6bec2933f700c6f45cf14285 ****/ + /****** AppDef_ParFunctionOfMyGradientbisOfBSplineCompute::Values ******/ + /****** md5 signature: 66c7c08f6bec2933f700c6f45cf14285 ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -3520,8 +3520,8 @@ Returns the value f=sum(||pui - bi*pi||)2. returns the value g = grad(f) for the ****************************************/ class AppDef_ParFunctionOfTheGradient : public math_MultipleVarFunctionWithGradient { public: - /****************** AppDef_ParFunctionOfTheGradient ******************/ - /**** md5 signature: 6ae58b53fc28bc68999c5284f8bd72a8 ****/ + /****** AppDef_ParFunctionOfTheGradient::AppDef_ParFunctionOfTheGradient ******/ + /****** md5 signature: 6ae58b53fc28bc68999c5284f8bd72a8 ******/ %feature("compactdefaultargs") AppDef_ParFunctionOfTheGradient; %feature("autodoc", " Parameters @@ -3543,8 +3543,8 @@ Initializes the fields of the function. the approximating curve has the desired ") AppDef_ParFunctionOfTheGradient; AppDef_ParFunctionOfTheGradient(const AppDef_MultiLine & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const opencascade::handle & TheConstraints, const math_Vector & Parameters, const Standard_Integer Deg); - /****************** CurveValue ******************/ - /**** md5 signature: c2e2cb976554936214bdfe3487b0362c ****/ + /****** AppDef_ParFunctionOfTheGradient::CurveValue ******/ + /****** md5 signature: c2e2cb976554936214bdfe3487b0362c ******/ %feature("compactdefaultargs") CurveValue; %feature("autodoc", "Return ------- @@ -3556,8 +3556,8 @@ Returns the multicurve approximating the set after computing the value f or grad ") CurveValue; AppParCurves_MultiCurve CurveValue(); - /****************** Error ******************/ - /**** md5 signature: 59bc36aa259ae04fcbc9c2a60fae6dfb ****/ + /****** AppDef_ParFunctionOfTheGradient::Error ******/ + /****** md5 signature: 59bc36aa259ae04fcbc9c2a60fae6dfb ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -3575,8 +3575,8 @@ Returns the distance between the multipoint of range ipoint and the curve curvei ") Error; Standard_Real Error(const Standard_Integer IPoint, const Standard_Integer CurveIndex); - /****************** FirstConstraint ******************/ - /**** md5 signature: 6814c8615ee3f59417c740c77d2ce795 ****/ + /****** AppDef_ParFunctionOfTheGradient::FirstConstraint ******/ + /****** md5 signature: 6814c8615ee3f59417c740c77d2ce795 ******/ %feature("compactdefaultargs") FirstConstraint; %feature("autodoc", " Parameters @@ -3594,8 +3594,8 @@ No available documentation. ") FirstConstraint; AppParCurves_Constraint FirstConstraint(const opencascade::handle & TheConstraints, const Standard_Integer FirstPoint); - /****************** Gradient ******************/ - /**** md5 signature: 5ee531ceab07ab216991e3bf02edf0f7 ****/ + /****** AppDef_ParFunctionOfTheGradient::Gradient ******/ + /****** md5 signature: 5ee531ceab07ab216991e3bf02edf0f7 ******/ %feature("compactdefaultargs") Gradient; %feature("autodoc", " Parameters @@ -3613,8 +3613,8 @@ Returns the gradient g of the sum above for the parameters xi. ") Gradient; Standard_Boolean Gradient(const math_Vector & X, math_Vector & G); - /****************** LastConstraint ******************/ - /**** md5 signature: f3572ad2cc7e299a1f7b6cb9d14677cf ****/ + /****** AppDef_ParFunctionOfTheGradient::LastConstraint ******/ + /****** md5 signature: f3572ad2cc7e299a1f7b6cb9d14677cf ******/ %feature("compactdefaultargs") LastConstraint; %feature("autodoc", " Parameters @@ -3632,8 +3632,8 @@ No available documentation. ") LastConstraint; AppParCurves_Constraint LastConstraint(const opencascade::handle & TheConstraints, const Standard_Integer LastPoint); - /****************** MaxError2d ******************/ - /**** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ****/ + /****** AppDef_ParFunctionOfTheGradient::MaxError2d ******/ + /****** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ******/ %feature("compactdefaultargs") MaxError2d; %feature("autodoc", "Return ------- @@ -3645,8 +3645,8 @@ Returns the maximum distance between the points and the multicurve. ") MaxError2d; Standard_Real MaxError2d(); - /****************** MaxError3d ******************/ - /**** md5 signature: c6ba463cdf4a0e426329b589363186b7 ****/ + /****** AppDef_ParFunctionOfTheGradient::MaxError3d ******/ + /****** md5 signature: c6ba463cdf4a0e426329b589363186b7 ******/ %feature("compactdefaultargs") MaxError3d; %feature("autodoc", "Return ------- @@ -3658,8 +3658,8 @@ Returns the maximum distance between the points and the multicurve. ") MaxError3d; Standard_Real MaxError3d(); - /****************** NbVariables ******************/ - /**** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ****/ + /****** AppDef_ParFunctionOfTheGradient::NbVariables ******/ + /****** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -3671,8 +3671,8 @@ Returns the number of variables of the function. it corresponds to the number of ") NbVariables; Standard_Integer NbVariables(); - /****************** NewParameters ******************/ - /**** md5 signature: 1d606e7b2aa9813a84f6984ebdf52bb7 ****/ + /****** AppDef_ParFunctionOfTheGradient::NewParameters ******/ + /****** md5 signature: 1d606e7b2aa9813a84f6984ebdf52bb7 ******/ %feature("compactdefaultargs") NewParameters; %feature("autodoc", "Return ------- @@ -3684,8 +3684,8 @@ Returns the new parameters of the multiline. ") NewParameters; const math_Vector & NewParameters(); - /****************** Value ******************/ - /**** md5 signature: 33f8b9f75d238865cc320f57ac729801 ****/ + /****** AppDef_ParFunctionOfTheGradient::Value ******/ + /****** md5 signature: 33f8b9f75d238865cc320f57ac729801 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -3702,8 +3702,8 @@ This method computes the new approximation of the multiline ssp and calculates f ") Value; Standard_Boolean Value(const math_Vector & X, Standard_Real &OutValue); - /****************** Values ******************/ - /**** md5 signature: 66c7c08f6bec2933f700c6f45cf14285 ****/ + /****** AppDef_ParFunctionOfTheGradient::Values ******/ + /****** md5 signature: 66c7c08f6bec2933f700c6f45cf14285 ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -3735,8 +3735,8 @@ Returns the value f=sum(||pui - bi*pi||)2. returns the value g = grad(f) for the ***************************************************/ class AppDef_ParLeastSquareOfMyGradientOfCompute { public: - /****************** AppDef_ParLeastSquareOfMyGradientOfCompute ******************/ - /**** md5 signature: 0f470f8d09760a577136f1515d1bfb47 ****/ + /****** AppDef_ParLeastSquareOfMyGradientOfCompute::AppDef_ParLeastSquareOfMyGradientOfCompute ******/ + /****** md5 signature: 0f470f8d09760a577136f1515d1bfb47 ******/ %feature("compactdefaultargs") AppDef_ParLeastSquareOfMyGradientOfCompute; %feature("autodoc", " Parameters @@ -3759,8 +3759,8 @@ Given a multiline, this algorithm computes the least square resolution using the ") AppDef_ParLeastSquareOfMyGradientOfCompute; AppDef_ParLeastSquareOfMyGradientOfCompute(const AppDef_MultiLine & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const math_Vector & Parameters, const Standard_Integer NbPol); - /****************** AppDef_ParLeastSquareOfMyGradientOfCompute ******************/ - /**** md5 signature: 4c1463e27c262a50e76b8fe5dff270c0 ****/ + /****** AppDef_ParLeastSquareOfMyGradientOfCompute::AppDef_ParLeastSquareOfMyGradientOfCompute ******/ + /****** md5 signature: 4c1463e27c262a50e76b8fe5dff270c0 ******/ %feature("compactdefaultargs") AppDef_ParLeastSquareOfMyGradientOfCompute; %feature("autodoc", " Parameters @@ -3782,8 +3782,8 @@ Initializes the fields of the object. ") AppDef_ParLeastSquareOfMyGradientOfCompute; AppDef_ParLeastSquareOfMyGradientOfCompute(const AppDef_MultiLine & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const Standard_Integer NbPol); - /****************** AppDef_ParLeastSquareOfMyGradientOfCompute ******************/ - /**** md5 signature: 6150d26142d95dfba2fe070d4d272305 ****/ + /****** AppDef_ParLeastSquareOfMyGradientOfCompute::AppDef_ParLeastSquareOfMyGradientOfCompute ******/ + /****** md5 signature: 6150d26142d95dfba2fe070d4d272305 ******/ %feature("compactdefaultargs") AppDef_ParLeastSquareOfMyGradientOfCompute; %feature("autodoc", " Parameters @@ -3808,8 +3808,8 @@ Given a multiline, this algorithm computes the least square resolution using the ") AppDef_ParLeastSquareOfMyGradientOfCompute; AppDef_ParLeastSquareOfMyGradientOfCompute(const AppDef_MultiLine & SSP, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const math_Vector & Parameters, const Standard_Integer NbPol); - /****************** AppDef_ParLeastSquareOfMyGradientOfCompute ******************/ - /**** md5 signature: 1e1086e0e59f1c54539147a819762a29 ****/ + /****** AppDef_ParLeastSquareOfMyGradientOfCompute::AppDef_ParLeastSquareOfMyGradientOfCompute ******/ + /****** md5 signature: 1e1086e0e59f1c54539147a819762a29 ******/ %feature("compactdefaultargs") AppDef_ParLeastSquareOfMyGradientOfCompute; %feature("autodoc", " Parameters @@ -3833,8 +3833,8 @@ Initializes the fields of the object. ") AppDef_ParLeastSquareOfMyGradientOfCompute; AppDef_ParLeastSquareOfMyGradientOfCompute(const AppDef_MultiLine & SSP, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const Standard_Integer NbPol); - /****************** BSplineValue ******************/ - /**** md5 signature: a38863f7c9b6fa566ee9fea09f971d5c ****/ + /****** AppDef_ParLeastSquareOfMyGradientOfCompute::BSplineValue ******/ + /****** md5 signature: a38863f7c9b6fa566ee9fea09f971d5c ******/ %feature("compactdefaultargs") BSplineValue; %feature("autodoc", "Return ------- @@ -3846,8 +3846,8 @@ Returns the result of the approximation, i.e. all the curves. an exception is ra ") BSplineValue; AppParCurves_MultiBSpCurve BSplineValue(); - /****************** BezierValue ******************/ - /**** md5 signature: 2bbd29cb039e6bcdcdf61afe82651ac1 ****/ + /****** AppDef_ParLeastSquareOfMyGradientOfCompute::BezierValue ******/ + /****** md5 signature: 2bbd29cb039e6bcdcdf61afe82651ac1 ******/ %feature("compactdefaultargs") BezierValue; %feature("autodoc", "Return ------- @@ -3859,8 +3859,8 @@ Returns the result of the approximation, i.e. all the curves. an exception is ra ") BezierValue; AppParCurves_MultiCurve BezierValue(); - /****************** DerivativeFunctionMatrix ******************/ - /**** md5 signature: c2dbca1da1c1c1aaf2ff7895be813eaf ****/ + /****** AppDef_ParLeastSquareOfMyGradientOfCompute::DerivativeFunctionMatrix ******/ + /****** md5 signature: c2dbca1da1c1c1aaf2ff7895be813eaf ******/ %feature("compactdefaultargs") DerivativeFunctionMatrix; %feature("autodoc", "Return ------- @@ -3872,8 +3872,8 @@ Returns the derivative function matrix used to approximate the set. ") DerivativeFunctionMatrix; const math_Matrix & DerivativeFunctionMatrix(); - /****************** Distance ******************/ - /**** md5 signature: 608fad06f540e822f2b9f4d329c097b6 ****/ + /****** AppDef_ParLeastSquareOfMyGradientOfCompute::Distance ******/ + /****** md5 signature: 608fad06f540e822f2b9f4d329c097b6 ******/ %feature("compactdefaultargs") Distance; %feature("autodoc", "Return ------- @@ -3885,8 +3885,8 @@ Returns the distances between the points of the multiline and the approximation ") Distance; const math_Matrix & Distance(); - /****************** Error ******************/ - /**** md5 signature: 7c05c0164fc88dbacc4d90d301fe7f12 ****/ + /****** AppDef_ParLeastSquareOfMyGradientOfCompute::Error ******/ + /****** md5 signature: 7c05c0164fc88dbacc4d90d301fe7f12 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -3904,8 +3904,8 @@ Returns the maximum errors between the multiline and the approximation curves. f ") Error; void Error(Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** ErrorGradient ******************/ - /**** md5 signature: 3e5c3757aad8d0f394eda590c0bc62e3 ****/ + /****** AppDef_ParLeastSquareOfMyGradientOfCompute::ErrorGradient ******/ + /****** md5 signature: 3e5c3757aad8d0f394eda590c0bc62e3 ******/ %feature("compactdefaultargs") ErrorGradient; %feature("autodoc", " Parameters @@ -3924,8 +3924,8 @@ Returns the maximum errors between the multiline and the approximation curves. f ") ErrorGradient; void ErrorGradient(math_Vector & Grad, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** FirstLambda ******************/ - /**** md5 signature: 87ad21cc13708c47c81704b38426d999 ****/ + /****** AppDef_ParLeastSquareOfMyGradientOfCompute::FirstLambda ******/ + /****** md5 signature: 87ad21cc13708c47c81704b38426d999 ******/ %feature("compactdefaultargs") FirstLambda; %feature("autodoc", "Return ------- @@ -3937,8 +3937,8 @@ Returns the value (p2 - p1)/ v1 if the first point was a tangency point. ") FirstLambda; Standard_Real FirstLambda(); - /****************** FunctionMatrix ******************/ - /**** md5 signature: aec90dd003c289db9092eb79712677e1 ****/ + /****** AppDef_ParLeastSquareOfMyGradientOfCompute::FunctionMatrix ******/ + /****** md5 signature: aec90dd003c289db9092eb79712677e1 ******/ %feature("compactdefaultargs") FunctionMatrix; %feature("autodoc", "Return ------- @@ -3950,8 +3950,8 @@ Returns the function matrix used to approximate the set. ") FunctionMatrix; const math_Matrix & FunctionMatrix(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** AppDef_ParLeastSquareOfMyGradientOfCompute::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -3963,8 +3963,8 @@ Returns true if all has been correctly done. ") IsDone; Standard_Boolean IsDone(); - /****************** KIndex ******************/ - /**** md5 signature: 2821052a9bfe72ec4f531ccb52a80ffb ****/ + /****** AppDef_ParLeastSquareOfMyGradientOfCompute::KIndex ******/ + /****** md5 signature: 2821052a9bfe72ec4f531ccb52a80ffb ******/ %feature("compactdefaultargs") KIndex; %feature("autodoc", "Return ------- @@ -3976,8 +3976,8 @@ Returns the indexes of the first non null values of a and da. the values are non ") KIndex; const math_IntegerVector & KIndex(); - /****************** LastLambda ******************/ - /**** md5 signature: f7e26790258c4ab513bae9dd1a5955e1 ****/ + /****** AppDef_ParLeastSquareOfMyGradientOfCompute::LastLambda ******/ + /****** md5 signature: f7e26790258c4ab513bae9dd1a5955e1 ******/ %feature("compactdefaultargs") LastLambda; %feature("autodoc", "Return ------- @@ -3989,8 +3989,8 @@ Returns the value (pn - pn-1)/ vn if the last point was a tangency point. ") LastLambda; Standard_Real LastLambda(); - /****************** Perform ******************/ - /**** md5 signature: 5b8f20d810ea57d5223b42dfd01410ad ****/ + /****** AppDef_ParLeastSquareOfMyGradientOfCompute::Perform ******/ + /****** md5 signature: 5b8f20d810ea57d5223b42dfd01410ad ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -4007,8 +4007,8 @@ Is used after having initialized the fields. the case 'curvaturepoint' is not tr ") Perform; void Perform(const math_Vector & Parameters); - /****************** Perform ******************/ - /**** md5 signature: cbf083f2b8329680dc5a52f482f436ad ****/ + /****** AppDef_ParLeastSquareOfMyGradientOfCompute::Perform ******/ + /****** md5 signature: cbf083f2b8329680dc5a52f482f436ad ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -4027,8 +4027,8 @@ Is used after having initialized the fields. ") Perform; void Perform(const math_Vector & Parameters, const Standard_Real l1, const Standard_Real l2); - /****************** Perform ******************/ - /**** md5 signature: 380f2440b07e3b3805c4eda2da2e8c6e ****/ + /****** AppDef_ParLeastSquareOfMyGradientOfCompute::Perform ******/ + /****** md5 signature: 380f2440b07e3b3805c4eda2da2e8c6e ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -4049,8 +4049,8 @@ Is used after having initialized the fields. is the tangent vector at the ") Perform; void Perform(const math_Vector & Parameters, const math_Vector & V1t, const math_Vector & V2t, const Standard_Real l1, const Standard_Real l2); - /****************** Perform ******************/ - /**** md5 signature: 5f7ecae6d947ca76138d939cdd616b0f ****/ + /****** AppDef_ParLeastSquareOfMyGradientOfCompute::Perform ******/ + /****** md5 signature: 5f7ecae6d947ca76138d939cdd616b0f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -4073,8 +4073,8 @@ Is used after having initialized the fields. is the tangent vector at the ") Perform; void Perform(const math_Vector & Parameters, const math_Vector & V1t, const math_Vector & V2t, const math_Vector & V1c, const math_Vector & V2c, const Standard_Real l1, const Standard_Real l2); - /****************** Points ******************/ - /**** md5 signature: 8a77545526c5096bca80b9c07f882412 ****/ + /****** AppDef_ParLeastSquareOfMyGradientOfCompute::Points ******/ + /****** md5 signature: 8a77545526c5096bca80b9c07f882412 ******/ %feature("compactdefaultargs") Points; %feature("autodoc", "Return ------- @@ -4086,8 +4086,8 @@ Returns the matrix of points value. ") Points; const math_Matrix & Points(); - /****************** Poles ******************/ - /**** md5 signature: 1437a652beb857bd22c16de65cb18857 ****/ + /****** AppDef_ParLeastSquareOfMyGradientOfCompute::Poles ******/ + /****** md5 signature: 1437a652beb857bd22c16de65cb18857 ******/ %feature("compactdefaultargs") Poles; %feature("autodoc", "Return ------- @@ -4113,8 +4113,8 @@ Returns the matrix of resulting control points value. *************************************************************/ class AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute { public: - /****************** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute ******************/ - /**** md5 signature: 5c7d889ff7c3c53d9c2d304f6513a770 ****/ + /****** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute::AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute ******/ + /****** md5 signature: 5c7d889ff7c3c53d9c2d304f6513a770 ******/ %feature("compactdefaultargs") AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute; %feature("autodoc", " Parameters @@ -4137,8 +4137,8 @@ Given a multiline, this algorithm computes the least square resolution using the ") AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute; AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute(const AppDef_MultiLine & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const math_Vector & Parameters, const Standard_Integer NbPol); - /****************** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute ******************/ - /**** md5 signature: d358e31489791262a5431ebacf9dc7b9 ****/ + /****** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute::AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute ******/ + /****** md5 signature: d358e31489791262a5431ebacf9dc7b9 ******/ %feature("compactdefaultargs") AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute; %feature("autodoc", " Parameters @@ -4160,8 +4160,8 @@ Initializes the fields of the object. ") AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute; AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute(const AppDef_MultiLine & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const Standard_Integer NbPol); - /****************** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute ******************/ - /**** md5 signature: b4722672fa82bbd3c01a14c4f1ea81fb ****/ + /****** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute::AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute ******/ + /****** md5 signature: b4722672fa82bbd3c01a14c4f1ea81fb ******/ %feature("compactdefaultargs") AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute; %feature("autodoc", " Parameters @@ -4186,8 +4186,8 @@ Given a multiline, this algorithm computes the least square resolution using the ") AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute; AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute(const AppDef_MultiLine & SSP, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const math_Vector & Parameters, const Standard_Integer NbPol); - /****************** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute ******************/ - /**** md5 signature: 9ac1102ac0cd7f24c5edbabd8d6c6d2a ****/ + /****** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute::AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute ******/ + /****** md5 signature: 9ac1102ac0cd7f24c5edbabd8d6c6d2a ******/ %feature("compactdefaultargs") AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute; %feature("autodoc", " Parameters @@ -4211,8 +4211,8 @@ Initializes the fields of the object. ") AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute; AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute(const AppDef_MultiLine & SSP, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const Standard_Integer NbPol); - /****************** BSplineValue ******************/ - /**** md5 signature: a38863f7c9b6fa566ee9fea09f971d5c ****/ + /****** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute::BSplineValue ******/ + /****** md5 signature: a38863f7c9b6fa566ee9fea09f971d5c ******/ %feature("compactdefaultargs") BSplineValue; %feature("autodoc", "Return ------- @@ -4224,8 +4224,8 @@ Returns the result of the approximation, i.e. all the curves. an exception is ra ") BSplineValue; AppParCurves_MultiBSpCurve BSplineValue(); - /****************** BezierValue ******************/ - /**** md5 signature: 2bbd29cb039e6bcdcdf61afe82651ac1 ****/ + /****** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute::BezierValue ******/ + /****** md5 signature: 2bbd29cb039e6bcdcdf61afe82651ac1 ******/ %feature("compactdefaultargs") BezierValue; %feature("autodoc", "Return ------- @@ -4237,8 +4237,8 @@ Returns the result of the approximation, i.e. all the curves. an exception is ra ") BezierValue; AppParCurves_MultiCurve BezierValue(); - /****************** DerivativeFunctionMatrix ******************/ - /**** md5 signature: c2dbca1da1c1c1aaf2ff7895be813eaf ****/ + /****** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute::DerivativeFunctionMatrix ******/ + /****** md5 signature: c2dbca1da1c1c1aaf2ff7895be813eaf ******/ %feature("compactdefaultargs") DerivativeFunctionMatrix; %feature("autodoc", "Return ------- @@ -4250,8 +4250,8 @@ Returns the derivative function matrix used to approximate the set. ") DerivativeFunctionMatrix; const math_Matrix & DerivativeFunctionMatrix(); - /****************** Distance ******************/ - /**** md5 signature: 608fad06f540e822f2b9f4d329c097b6 ****/ + /****** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute::Distance ******/ + /****** md5 signature: 608fad06f540e822f2b9f4d329c097b6 ******/ %feature("compactdefaultargs") Distance; %feature("autodoc", "Return ------- @@ -4263,8 +4263,8 @@ Returns the distances between the points of the multiline and the approximation ") Distance; const math_Matrix & Distance(); - /****************** Error ******************/ - /**** md5 signature: 7c05c0164fc88dbacc4d90d301fe7f12 ****/ + /****** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute::Error ******/ + /****** md5 signature: 7c05c0164fc88dbacc4d90d301fe7f12 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -4282,8 +4282,8 @@ Returns the maximum errors between the multiline and the approximation curves. f ") Error; void Error(Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** ErrorGradient ******************/ - /**** md5 signature: 3e5c3757aad8d0f394eda590c0bc62e3 ****/ + /****** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute::ErrorGradient ******/ + /****** md5 signature: 3e5c3757aad8d0f394eda590c0bc62e3 ******/ %feature("compactdefaultargs") ErrorGradient; %feature("autodoc", " Parameters @@ -4302,8 +4302,8 @@ Returns the maximum errors between the multiline and the approximation curves. f ") ErrorGradient; void ErrorGradient(math_Vector & Grad, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** FirstLambda ******************/ - /**** md5 signature: 87ad21cc13708c47c81704b38426d999 ****/ + /****** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute::FirstLambda ******/ + /****** md5 signature: 87ad21cc13708c47c81704b38426d999 ******/ %feature("compactdefaultargs") FirstLambda; %feature("autodoc", "Return ------- @@ -4315,8 +4315,8 @@ Returns the value (p2 - p1)/ v1 if the first point was a tangency point. ") FirstLambda; Standard_Real FirstLambda(); - /****************** FunctionMatrix ******************/ - /**** md5 signature: aec90dd003c289db9092eb79712677e1 ****/ + /****** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute::FunctionMatrix ******/ + /****** md5 signature: aec90dd003c289db9092eb79712677e1 ******/ %feature("compactdefaultargs") FunctionMatrix; %feature("autodoc", "Return ------- @@ -4328,8 +4328,8 @@ Returns the function matrix used to approximate the set. ") FunctionMatrix; const math_Matrix & FunctionMatrix(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -4341,8 +4341,8 @@ Returns true if all has been correctly done. ") IsDone; Standard_Boolean IsDone(); - /****************** KIndex ******************/ - /**** md5 signature: 2821052a9bfe72ec4f531ccb52a80ffb ****/ + /****** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute::KIndex ******/ + /****** md5 signature: 2821052a9bfe72ec4f531ccb52a80ffb ******/ %feature("compactdefaultargs") KIndex; %feature("autodoc", "Return ------- @@ -4354,8 +4354,8 @@ Returns the indexes of the first non null values of a and da. the values are non ") KIndex; const math_IntegerVector & KIndex(); - /****************** LastLambda ******************/ - /**** md5 signature: f7e26790258c4ab513bae9dd1a5955e1 ****/ + /****** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute::LastLambda ******/ + /****** md5 signature: f7e26790258c4ab513bae9dd1a5955e1 ******/ %feature("compactdefaultargs") LastLambda; %feature("autodoc", "Return ------- @@ -4367,8 +4367,8 @@ Returns the value (pn - pn-1)/ vn if the last point was a tangency point. ") LastLambda; Standard_Real LastLambda(); - /****************** Perform ******************/ - /**** md5 signature: 5b8f20d810ea57d5223b42dfd01410ad ****/ + /****** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute::Perform ******/ + /****** md5 signature: 5b8f20d810ea57d5223b42dfd01410ad ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -4385,8 +4385,8 @@ Is used after having initialized the fields. the case 'curvaturepoint' is not tr ") Perform; void Perform(const math_Vector & Parameters); - /****************** Perform ******************/ - /**** md5 signature: cbf083f2b8329680dc5a52f482f436ad ****/ + /****** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute::Perform ******/ + /****** md5 signature: cbf083f2b8329680dc5a52f482f436ad ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -4405,8 +4405,8 @@ Is used after having initialized the fields. ") Perform; void Perform(const math_Vector & Parameters, const Standard_Real l1, const Standard_Real l2); - /****************** Perform ******************/ - /**** md5 signature: 380f2440b07e3b3805c4eda2da2e8c6e ****/ + /****** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute::Perform ******/ + /****** md5 signature: 380f2440b07e3b3805c4eda2da2e8c6e ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -4427,8 +4427,8 @@ Is used after having initialized the fields. is the tangent vector at the ") Perform; void Perform(const math_Vector & Parameters, const math_Vector & V1t, const math_Vector & V2t, const Standard_Real l1, const Standard_Real l2); - /****************** Perform ******************/ - /**** md5 signature: 5f7ecae6d947ca76138d939cdd616b0f ****/ + /****** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute::Perform ******/ + /****** md5 signature: 5f7ecae6d947ca76138d939cdd616b0f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -4451,8 +4451,8 @@ Is used after having initialized the fields. is the tangent vector at the ") Perform; void Perform(const math_Vector & Parameters, const math_Vector & V1t, const math_Vector & V2t, const math_Vector & V1c, const math_Vector & V2c, const Standard_Real l1, const Standard_Real l2); - /****************** Points ******************/ - /**** md5 signature: 8a77545526c5096bca80b9c07f882412 ****/ + /****** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute::Points ******/ + /****** md5 signature: 8a77545526c5096bca80b9c07f882412 ******/ %feature("compactdefaultargs") Points; %feature("autodoc", "Return ------- @@ -4464,8 +4464,8 @@ Returns the matrix of points value. ") Points; const math_Matrix & Points(); - /****************** Poles ******************/ - /**** md5 signature: 1437a652beb857bd22c16de65cb18857 ****/ + /****** AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute::Poles ******/ + /****** md5 signature: 1437a652beb857bd22c16de65cb18857 ******/ %feature("compactdefaultargs") Poles; %feature("autodoc", "Return ------- @@ -4491,8 +4491,8 @@ Returns the matrix of resulting control points value. *******************************************/ class AppDef_ParLeastSquareOfTheGradient { public: - /****************** AppDef_ParLeastSquareOfTheGradient ******************/ - /**** md5 signature: f10deca5c5a2f219a4aac3b29290f883 ****/ + /****** AppDef_ParLeastSquareOfTheGradient::AppDef_ParLeastSquareOfTheGradient ******/ + /****** md5 signature: f10deca5c5a2f219a4aac3b29290f883 ******/ %feature("compactdefaultargs") AppDef_ParLeastSquareOfTheGradient; %feature("autodoc", " Parameters @@ -4515,8 +4515,8 @@ Given a multiline, this algorithm computes the least square resolution using the ") AppDef_ParLeastSquareOfTheGradient; AppDef_ParLeastSquareOfTheGradient(const AppDef_MultiLine & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const math_Vector & Parameters, const Standard_Integer NbPol); - /****************** AppDef_ParLeastSquareOfTheGradient ******************/ - /**** md5 signature: ffaf2f04cbeda05157e4779b39436d87 ****/ + /****** AppDef_ParLeastSquareOfTheGradient::AppDef_ParLeastSquareOfTheGradient ******/ + /****** md5 signature: ffaf2f04cbeda05157e4779b39436d87 ******/ %feature("compactdefaultargs") AppDef_ParLeastSquareOfTheGradient; %feature("autodoc", " Parameters @@ -4538,8 +4538,8 @@ Initializes the fields of the object. ") AppDef_ParLeastSquareOfTheGradient; AppDef_ParLeastSquareOfTheGradient(const AppDef_MultiLine & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const Standard_Integer NbPol); - /****************** AppDef_ParLeastSquareOfTheGradient ******************/ - /**** md5 signature: 0a6fa28c9440f806dc69f10826983565 ****/ + /****** AppDef_ParLeastSquareOfTheGradient::AppDef_ParLeastSquareOfTheGradient ******/ + /****** md5 signature: 0a6fa28c9440f806dc69f10826983565 ******/ %feature("compactdefaultargs") AppDef_ParLeastSquareOfTheGradient; %feature("autodoc", " Parameters @@ -4564,8 +4564,8 @@ Given a multiline, this algorithm computes the least square resolution using the ") AppDef_ParLeastSquareOfTheGradient; AppDef_ParLeastSquareOfTheGradient(const AppDef_MultiLine & SSP, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const math_Vector & Parameters, const Standard_Integer NbPol); - /****************** AppDef_ParLeastSquareOfTheGradient ******************/ - /**** md5 signature: 41e374c7b096bebe266c47cde703aa75 ****/ + /****** AppDef_ParLeastSquareOfTheGradient::AppDef_ParLeastSquareOfTheGradient ******/ + /****** md5 signature: 41e374c7b096bebe266c47cde703aa75 ******/ %feature("compactdefaultargs") AppDef_ParLeastSquareOfTheGradient; %feature("autodoc", " Parameters @@ -4589,8 +4589,8 @@ Initializes the fields of the object. ") AppDef_ParLeastSquareOfTheGradient; AppDef_ParLeastSquareOfTheGradient(const AppDef_MultiLine & SSP, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const Standard_Integer NbPol); - /****************** BSplineValue ******************/ - /**** md5 signature: a38863f7c9b6fa566ee9fea09f971d5c ****/ + /****** AppDef_ParLeastSquareOfTheGradient::BSplineValue ******/ + /****** md5 signature: a38863f7c9b6fa566ee9fea09f971d5c ******/ %feature("compactdefaultargs") BSplineValue; %feature("autodoc", "Return ------- @@ -4602,8 +4602,8 @@ Returns the result of the approximation, i.e. all the curves. an exception is ra ") BSplineValue; AppParCurves_MultiBSpCurve BSplineValue(); - /****************** BezierValue ******************/ - /**** md5 signature: 2bbd29cb039e6bcdcdf61afe82651ac1 ****/ + /****** AppDef_ParLeastSquareOfTheGradient::BezierValue ******/ + /****** md5 signature: 2bbd29cb039e6bcdcdf61afe82651ac1 ******/ %feature("compactdefaultargs") BezierValue; %feature("autodoc", "Return ------- @@ -4615,8 +4615,8 @@ Returns the result of the approximation, i.e. all the curves. an exception is ra ") BezierValue; AppParCurves_MultiCurve BezierValue(); - /****************** DerivativeFunctionMatrix ******************/ - /**** md5 signature: c2dbca1da1c1c1aaf2ff7895be813eaf ****/ + /****** AppDef_ParLeastSquareOfTheGradient::DerivativeFunctionMatrix ******/ + /****** md5 signature: c2dbca1da1c1c1aaf2ff7895be813eaf ******/ %feature("compactdefaultargs") DerivativeFunctionMatrix; %feature("autodoc", "Return ------- @@ -4628,8 +4628,8 @@ Returns the derivative function matrix used to approximate the set. ") DerivativeFunctionMatrix; const math_Matrix & DerivativeFunctionMatrix(); - /****************** Distance ******************/ - /**** md5 signature: 608fad06f540e822f2b9f4d329c097b6 ****/ + /****** AppDef_ParLeastSquareOfTheGradient::Distance ******/ + /****** md5 signature: 608fad06f540e822f2b9f4d329c097b6 ******/ %feature("compactdefaultargs") Distance; %feature("autodoc", "Return ------- @@ -4641,8 +4641,8 @@ Returns the distances between the points of the multiline and the approximation ") Distance; const math_Matrix & Distance(); - /****************** Error ******************/ - /**** md5 signature: 7c05c0164fc88dbacc4d90d301fe7f12 ****/ + /****** AppDef_ParLeastSquareOfTheGradient::Error ******/ + /****** md5 signature: 7c05c0164fc88dbacc4d90d301fe7f12 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -4660,8 +4660,8 @@ Returns the maximum errors between the multiline and the approximation curves. f ") Error; void Error(Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** ErrorGradient ******************/ - /**** md5 signature: 3e5c3757aad8d0f394eda590c0bc62e3 ****/ + /****** AppDef_ParLeastSquareOfTheGradient::ErrorGradient ******/ + /****** md5 signature: 3e5c3757aad8d0f394eda590c0bc62e3 ******/ %feature("compactdefaultargs") ErrorGradient; %feature("autodoc", " Parameters @@ -4680,8 +4680,8 @@ Returns the maximum errors between the multiline and the approximation curves. f ") ErrorGradient; void ErrorGradient(math_Vector & Grad, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** FirstLambda ******************/ - /**** md5 signature: 87ad21cc13708c47c81704b38426d999 ****/ + /****** AppDef_ParLeastSquareOfTheGradient::FirstLambda ******/ + /****** md5 signature: 87ad21cc13708c47c81704b38426d999 ******/ %feature("compactdefaultargs") FirstLambda; %feature("autodoc", "Return ------- @@ -4693,8 +4693,8 @@ Returns the value (p2 - p1)/ v1 if the first point was a tangency point. ") FirstLambda; Standard_Real FirstLambda(); - /****************** FunctionMatrix ******************/ - /**** md5 signature: aec90dd003c289db9092eb79712677e1 ****/ + /****** AppDef_ParLeastSquareOfTheGradient::FunctionMatrix ******/ + /****** md5 signature: aec90dd003c289db9092eb79712677e1 ******/ %feature("compactdefaultargs") FunctionMatrix; %feature("autodoc", "Return ------- @@ -4706,8 +4706,8 @@ Returns the function matrix used to approximate the set. ") FunctionMatrix; const math_Matrix & FunctionMatrix(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** AppDef_ParLeastSquareOfTheGradient::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -4719,8 +4719,8 @@ Returns true if all has been correctly done. ") IsDone; Standard_Boolean IsDone(); - /****************** KIndex ******************/ - /**** md5 signature: 2821052a9bfe72ec4f531ccb52a80ffb ****/ + /****** AppDef_ParLeastSquareOfTheGradient::KIndex ******/ + /****** md5 signature: 2821052a9bfe72ec4f531ccb52a80ffb ******/ %feature("compactdefaultargs") KIndex; %feature("autodoc", "Return ------- @@ -4732,8 +4732,8 @@ Returns the indexes of the first non null values of a and da. the values are non ") KIndex; const math_IntegerVector & KIndex(); - /****************** LastLambda ******************/ - /**** md5 signature: f7e26790258c4ab513bae9dd1a5955e1 ****/ + /****** AppDef_ParLeastSquareOfTheGradient::LastLambda ******/ + /****** md5 signature: f7e26790258c4ab513bae9dd1a5955e1 ******/ %feature("compactdefaultargs") LastLambda; %feature("autodoc", "Return ------- @@ -4745,8 +4745,8 @@ Returns the value (pn - pn-1)/ vn if the last point was a tangency point. ") LastLambda; Standard_Real LastLambda(); - /****************** Perform ******************/ - /**** md5 signature: 5b8f20d810ea57d5223b42dfd01410ad ****/ + /****** AppDef_ParLeastSquareOfTheGradient::Perform ******/ + /****** md5 signature: 5b8f20d810ea57d5223b42dfd01410ad ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -4763,8 +4763,8 @@ Is used after having initialized the fields. the case 'curvaturepoint' is not tr ") Perform; void Perform(const math_Vector & Parameters); - /****************** Perform ******************/ - /**** md5 signature: cbf083f2b8329680dc5a52f482f436ad ****/ + /****** AppDef_ParLeastSquareOfTheGradient::Perform ******/ + /****** md5 signature: cbf083f2b8329680dc5a52f482f436ad ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -4783,8 +4783,8 @@ Is used after having initialized the fields. ") Perform; void Perform(const math_Vector & Parameters, const Standard_Real l1, const Standard_Real l2); - /****************** Perform ******************/ - /**** md5 signature: 380f2440b07e3b3805c4eda2da2e8c6e ****/ + /****** AppDef_ParLeastSquareOfTheGradient::Perform ******/ + /****** md5 signature: 380f2440b07e3b3805c4eda2da2e8c6e ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -4805,8 +4805,8 @@ Is used after having initialized the fields. is the tangent vector at the ") Perform; void Perform(const math_Vector & Parameters, const math_Vector & V1t, const math_Vector & V2t, const Standard_Real l1, const Standard_Real l2); - /****************** Perform ******************/ - /**** md5 signature: 5f7ecae6d947ca76138d939cdd616b0f ****/ + /****** AppDef_ParLeastSquareOfTheGradient::Perform ******/ + /****** md5 signature: 5f7ecae6d947ca76138d939cdd616b0f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -4829,8 +4829,8 @@ Is used after having initialized the fields. is the tangent vector at the ") Perform; void Perform(const math_Vector & Parameters, const math_Vector & V1t, const math_Vector & V2t, const math_Vector & V1c, const math_Vector & V2c, const Standard_Real l1, const Standard_Real l2); - /****************** Points ******************/ - /**** md5 signature: 8a77545526c5096bca80b9c07f882412 ****/ + /****** AppDef_ParLeastSquareOfTheGradient::Points ******/ + /****** md5 signature: 8a77545526c5096bca80b9c07f882412 ******/ %feature("compactdefaultargs") Points; %feature("autodoc", "Return ------- @@ -4842,8 +4842,8 @@ Returns the matrix of points value. ") Points; const math_Matrix & Points(); - /****************** Poles ******************/ - /**** md5 signature: 1437a652beb857bd22c16de65cb18857 ****/ + /****** AppDef_ParLeastSquareOfTheGradient::Poles ******/ + /****** md5 signature: 1437a652beb857bd22c16de65cb18857 ******/ %feature("compactdefaultargs") Poles; %feature("autodoc", "Return ------- @@ -4869,8 +4869,8 @@ Returns the matrix of resulting control points value. **************************************************/ class AppDef_ResConstraintOfMyGradientOfCompute { public: - /****************** AppDef_ResConstraintOfMyGradientOfCompute ******************/ - /**** md5 signature: 6cfad4139f20fc94b0b10535a1a2b060 ****/ + /****** AppDef_ResConstraintOfMyGradientOfCompute::AppDef_ResConstraintOfMyGradientOfCompute ******/ + /****** md5 signature: 6cfad4139f20fc94b0b10535a1a2b060 ******/ %feature("compactdefaultargs") AppDef_ResConstraintOfMyGradientOfCompute; %feature("autodoc", " Parameters @@ -4894,8 +4894,8 @@ Given a multiline ssp with constraints points, this algorithm finds the best cur ") AppDef_ResConstraintOfMyGradientOfCompute; AppDef_ResConstraintOfMyGradientOfCompute(const AppDef_MultiLine & SSP, AppParCurves_MultiCurve & SCurv, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const opencascade::handle & Constraints, const math_Matrix & Bern, const math_Matrix & DerivativeBern, const Standard_Real Tolerance = 1.0e-10); - /****************** ConstraintDerivative ******************/ - /**** md5 signature: 03ceb3c5a326d9e5b704d04ea0088376 ****/ + /****** AppDef_ResConstraintOfMyGradientOfCompute::ConstraintDerivative ******/ + /****** md5 signature: 03ceb3c5a326d9e5b704d04ea0088376 ******/ %feature("compactdefaultargs") ConstraintDerivative; %feature("autodoc", " Parameters @@ -4915,8 +4915,8 @@ Returns the derivative of the constraint matrix. ") ConstraintDerivative; const math_Matrix & ConstraintDerivative(const AppDef_MultiLine & SSP, const math_Vector & Parameters, const Standard_Integer Deg, const math_Matrix & DA); - /****************** ConstraintMatrix ******************/ - /**** md5 signature: 22481357cd3fa297d87302ab5bf68ab7 ****/ + /****** AppDef_ResConstraintOfMyGradientOfCompute::ConstraintMatrix ******/ + /****** md5 signature: 22481357cd3fa297d87302ab5bf68ab7 ******/ %feature("compactdefaultargs") ConstraintMatrix; %feature("autodoc", "Return ------- @@ -4928,8 +4928,8 @@ No available documentation. ") ConstraintMatrix; const math_Matrix & ConstraintMatrix(); - /****************** Duale ******************/ - /**** md5 signature: fa2d61bba97045a52b936ca097de9f1b ****/ + /****** AppDef_ResConstraintOfMyGradientOfCompute::Duale ******/ + /****** md5 signature: fa2d61bba97045a52b936ca097de9f1b ******/ %feature("compactdefaultargs") Duale; %feature("autodoc", "Return ------- @@ -4941,8 +4941,8 @@ Returns the duale variables of the system. ") Duale; const math_Vector & Duale(); - /****************** InverseMatrix ******************/ - /**** md5 signature: 6c593c2bc8580243a5ff315f7f6a1f0e ****/ + /****** AppDef_ResConstraintOfMyGradientOfCompute::InverseMatrix ******/ + /****** md5 signature: 6c593c2bc8580243a5ff315f7f6a1f0e ******/ %feature("compactdefaultargs") InverseMatrix; %feature("autodoc", "Return ------- @@ -4954,8 +4954,8 @@ Returns the inverse of cont*transposed(cont), where cont is the constraint matri ") InverseMatrix; const math_Matrix & InverseMatrix(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** AppDef_ResConstraintOfMyGradientOfCompute::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -4985,8 +4985,8 @@ Returns true if all has been correctly done. ************************************************************/ class AppDef_ResConstraintOfMyGradientbisOfBSplineCompute { public: - /****************** AppDef_ResConstraintOfMyGradientbisOfBSplineCompute ******************/ - /**** md5 signature: 19f1d924fc5c45098e224f6711eb1fac ****/ + /****** AppDef_ResConstraintOfMyGradientbisOfBSplineCompute::AppDef_ResConstraintOfMyGradientbisOfBSplineCompute ******/ + /****** md5 signature: 19f1d924fc5c45098e224f6711eb1fac ******/ %feature("compactdefaultargs") AppDef_ResConstraintOfMyGradientbisOfBSplineCompute; %feature("autodoc", " Parameters @@ -5010,8 +5010,8 @@ Given a multiline ssp with constraints points, this algorithm finds the best cur ") AppDef_ResConstraintOfMyGradientbisOfBSplineCompute; AppDef_ResConstraintOfMyGradientbisOfBSplineCompute(const AppDef_MultiLine & SSP, AppParCurves_MultiCurve & SCurv, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const opencascade::handle & Constraints, const math_Matrix & Bern, const math_Matrix & DerivativeBern, const Standard_Real Tolerance = 1.0e-10); - /****************** ConstraintDerivative ******************/ - /**** md5 signature: 03ceb3c5a326d9e5b704d04ea0088376 ****/ + /****** AppDef_ResConstraintOfMyGradientbisOfBSplineCompute::ConstraintDerivative ******/ + /****** md5 signature: 03ceb3c5a326d9e5b704d04ea0088376 ******/ %feature("compactdefaultargs") ConstraintDerivative; %feature("autodoc", " Parameters @@ -5031,8 +5031,8 @@ Returns the derivative of the constraint matrix. ") ConstraintDerivative; const math_Matrix & ConstraintDerivative(const AppDef_MultiLine & SSP, const math_Vector & Parameters, const Standard_Integer Deg, const math_Matrix & DA); - /****************** ConstraintMatrix ******************/ - /**** md5 signature: 22481357cd3fa297d87302ab5bf68ab7 ****/ + /****** AppDef_ResConstraintOfMyGradientbisOfBSplineCompute::ConstraintMatrix ******/ + /****** md5 signature: 22481357cd3fa297d87302ab5bf68ab7 ******/ %feature("compactdefaultargs") ConstraintMatrix; %feature("autodoc", "Return ------- @@ -5044,8 +5044,8 @@ No available documentation. ") ConstraintMatrix; const math_Matrix & ConstraintMatrix(); - /****************** Duale ******************/ - /**** md5 signature: fa2d61bba97045a52b936ca097de9f1b ****/ + /****** AppDef_ResConstraintOfMyGradientbisOfBSplineCompute::Duale ******/ + /****** md5 signature: fa2d61bba97045a52b936ca097de9f1b ******/ %feature("compactdefaultargs") Duale; %feature("autodoc", "Return ------- @@ -5057,8 +5057,8 @@ Returns the duale variables of the system. ") Duale; const math_Vector & Duale(); - /****************** InverseMatrix ******************/ - /**** md5 signature: 6c593c2bc8580243a5ff315f7f6a1f0e ****/ + /****** AppDef_ResConstraintOfMyGradientbisOfBSplineCompute::InverseMatrix ******/ + /****** md5 signature: 6c593c2bc8580243a5ff315f7f6a1f0e ******/ %feature("compactdefaultargs") InverseMatrix; %feature("autodoc", "Return ------- @@ -5070,8 +5070,8 @@ Returns the inverse of cont*transposed(cont), where cont is the constraint matri ") InverseMatrix; const math_Matrix & InverseMatrix(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** AppDef_ResConstraintOfMyGradientbisOfBSplineCompute::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -5101,8 +5101,8 @@ Returns true if all has been correctly done. ******************************************/ class AppDef_ResConstraintOfTheGradient { public: - /****************** AppDef_ResConstraintOfTheGradient ******************/ - /**** md5 signature: 28edbef59ca63ee686fc7b7c358570b5 ****/ + /****** AppDef_ResConstraintOfTheGradient::AppDef_ResConstraintOfTheGradient ******/ + /****** md5 signature: 28edbef59ca63ee686fc7b7c358570b5 ******/ %feature("compactdefaultargs") AppDef_ResConstraintOfTheGradient; %feature("autodoc", " Parameters @@ -5126,8 +5126,8 @@ Given a multiline ssp with constraints points, this algorithm finds the best cur ") AppDef_ResConstraintOfTheGradient; AppDef_ResConstraintOfTheGradient(const AppDef_MultiLine & SSP, AppParCurves_MultiCurve & SCurv, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const opencascade::handle & Constraints, const math_Matrix & Bern, const math_Matrix & DerivativeBern, const Standard_Real Tolerance = 1.0e-10); - /****************** ConstraintDerivative ******************/ - /**** md5 signature: 03ceb3c5a326d9e5b704d04ea0088376 ****/ + /****** AppDef_ResConstraintOfTheGradient::ConstraintDerivative ******/ + /****** md5 signature: 03ceb3c5a326d9e5b704d04ea0088376 ******/ %feature("compactdefaultargs") ConstraintDerivative; %feature("autodoc", " Parameters @@ -5147,8 +5147,8 @@ Returns the derivative of the constraint matrix. ") ConstraintDerivative; const math_Matrix & ConstraintDerivative(const AppDef_MultiLine & SSP, const math_Vector & Parameters, const Standard_Integer Deg, const math_Matrix & DA); - /****************** ConstraintMatrix ******************/ - /**** md5 signature: 22481357cd3fa297d87302ab5bf68ab7 ****/ + /****** AppDef_ResConstraintOfTheGradient::ConstraintMatrix ******/ + /****** md5 signature: 22481357cd3fa297d87302ab5bf68ab7 ******/ %feature("compactdefaultargs") ConstraintMatrix; %feature("autodoc", "Return ------- @@ -5160,8 +5160,8 @@ No available documentation. ") ConstraintMatrix; const math_Matrix & ConstraintMatrix(); - /****************** Duale ******************/ - /**** md5 signature: fa2d61bba97045a52b936ca097de9f1b ****/ + /****** AppDef_ResConstraintOfTheGradient::Duale ******/ + /****** md5 signature: fa2d61bba97045a52b936ca097de9f1b ******/ %feature("compactdefaultargs") Duale; %feature("autodoc", "Return ------- @@ -5173,8 +5173,8 @@ Returns the duale variables of the system. ") Duale; const math_Vector & Duale(); - /****************** InverseMatrix ******************/ - /**** md5 signature: 6c593c2bc8580243a5ff315f7f6a1f0e ****/ + /****** AppDef_ResConstraintOfTheGradient::InverseMatrix ******/ + /****** md5 signature: 6c593c2bc8580243a5ff315f7f6a1f0e ******/ %feature("compactdefaultargs") InverseMatrix; %feature("autodoc", "Return ------- @@ -5186,8 +5186,8 @@ Returns the inverse of cont*transposed(cont), where cont is the constraint matri ") InverseMatrix; const math_Matrix & InverseMatrix(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** AppDef_ResConstraintOfTheGradient::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -5218,8 +5218,8 @@ Returns true if all has been correctly done. %nodefaultctor AppDef_SmoothCriterion; class AppDef_SmoothCriterion : public Standard_Transient { public: - /****************** AssemblyTable ******************/ - /**** md5 signature: 4ea475cc7902240e9011827552f2aa0e ****/ + /****** AppDef_SmoothCriterion::AssemblyTable ******/ + /****** md5 signature: 4ea475cc7902240e9011827552f2aa0e ******/ %feature("compactdefaultargs") AssemblyTable; %feature("autodoc", "Return ------- @@ -5231,8 +5231,8 @@ No available documentation. ") AssemblyTable; virtual opencascade::handle AssemblyTable(); - /****************** DependenceTable ******************/ - /**** md5 signature: c016d827aafaa774489e50229cf20da6 ****/ + /****** AppDef_SmoothCriterion::DependenceTable ******/ + /****** md5 signature: c016d827aafaa774489e50229cf20da6 ******/ %feature("compactdefaultargs") DependenceTable; %feature("autodoc", "Return ------- @@ -5244,8 +5244,8 @@ No available documentation. ") DependenceTable; virtual opencascade::handle DependenceTable(); - /****************** ErrorValues ******************/ - /**** md5 signature: cfe3e0a15201f20a76cdffc4832deb32 ****/ + /****** AppDef_SmoothCriterion::ErrorValues ******/ + /****** md5 signature: cfe3e0a15201f20a76cdffc4832deb32 ******/ %feature("compactdefaultargs") ErrorValues; %feature("autodoc", " Parameters @@ -5263,8 +5263,8 @@ No available documentation. ") ErrorValues; virtual void ErrorValues(Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** EstLength ******************/ - /**** md5 signature: 0b189fee7c9f70cecec55bd68f2b8b7e ****/ + /****** AppDef_SmoothCriterion::EstLength ******/ + /****** md5 signature: 0b189fee7c9f70cecec55bd68f2b8b7e ******/ %feature("compactdefaultargs") EstLength; %feature("autodoc", "Return ------- @@ -5276,8 +5276,8 @@ No available documentation. ") EstLength; virtual Standard_Real & EstLength(); - /****************** GetCurve ******************/ - /**** md5 signature: 8fb90ce90606b6bcb1989378cd53a4f9 ****/ + /****** AppDef_SmoothCriterion::GetCurve ******/ + /****** md5 signature: 8fb90ce90606b6bcb1989378cd53a4f9 ******/ %feature("compactdefaultargs") GetCurve; %feature("autodoc", " Parameters @@ -5294,8 +5294,8 @@ No available documentation. ") GetCurve; virtual void GetCurve(opencascade::handle & C); - /****************** GetEstimation ******************/ - /**** md5 signature: 8ba11ef014057784f34452683585efb6 ****/ + /****** AppDef_SmoothCriterion::GetEstimation ******/ + /****** md5 signature: 8ba11ef014057784f34452683585efb6 ******/ %feature("compactdefaultargs") GetEstimation; %feature("autodoc", " Parameters @@ -5313,8 +5313,8 @@ No available documentation. ") GetEstimation; virtual void GetEstimation(Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** GetWeight ******************/ - /**** md5 signature: af9c1e5043bd3ead9bfc060a4fb69ec7 ****/ + /****** AppDef_SmoothCriterion::GetWeight ******/ + /****** md5 signature: af9c1e5043bd3ead9bfc060a4fb69ec7 ******/ %feature("compactdefaultargs") GetWeight; %feature("autodoc", " Parameters @@ -5331,8 +5331,8 @@ No available documentation. ") GetWeight; virtual void GetWeight(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Gradient ******************/ - /**** md5 signature: e66cfcf660598f9d33bd6c51e71787ee ****/ + /****** AppDef_SmoothCriterion::Gradient ******/ + /****** md5 signature: e66cfcf660598f9d33bd6c51e71787ee ******/ %feature("compactdefaultargs") Gradient; %feature("autodoc", " Parameters @@ -5351,8 +5351,8 @@ No available documentation. ") Gradient; virtual void Gradient(const Standard_Integer Element, const Standard_Integer Dimension, math_Vector & G); - /****************** Hessian ******************/ - /**** md5 signature: ae17248c337e30b997401d5573140102 ****/ + /****** AppDef_SmoothCriterion::Hessian ******/ + /****** md5 signature: ae17248c337e30b997401d5573140102 ******/ %feature("compactdefaultargs") Hessian; %feature("autodoc", " Parameters @@ -5372,8 +5372,8 @@ No available documentation. ") Hessian; virtual void Hessian(const Standard_Integer Element, const Standard_Integer Dimension1, const Standard_Integer Dimension2, math_Matrix & H); - /****************** InputVector ******************/ - /**** md5 signature: d70c25b60b28c3838fab1614a13293f8 ****/ + /****** AppDef_SmoothCriterion::InputVector ******/ + /****** md5 signature: d70c25b60b28c3838fab1614a13293f8 ******/ %feature("compactdefaultargs") InputVector; %feature("autodoc", " Parameters @@ -5391,8 +5391,8 @@ Convert the assembly vector in an curve;. ") InputVector; virtual void InputVector(const math_Vector & X, const opencascade::handle & AssTable); - /****************** QualityValues ******************/ - /**** md5 signature: b244d6cd90390992902f1f73faa0efd3 ****/ + /****** AppDef_SmoothCriterion::QualityValues ******/ + /****** md5 signature: b244d6cd90390992902f1f73faa0efd3 ******/ %feature("compactdefaultargs") QualityValues; %feature("autodoc", " Parameters @@ -5413,8 +5413,8 @@ No available documentation. ") QualityValues; virtual Standard_Integer QualityValues(const Standard_Real J1min, const Standard_Real J2min, const Standard_Real J3min, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** SetCurve ******************/ - /**** md5 signature: f9249c904dd8eed90d010d71e8bbeb67 ****/ + /****** AppDef_SmoothCriterion::SetCurve ******/ + /****** md5 signature: f9249c904dd8eed90d010d71e8bbeb67 ******/ %feature("compactdefaultargs") SetCurve; %feature("autodoc", " Parameters @@ -5431,8 +5431,8 @@ No available documentation. ") SetCurve; virtual void SetCurve(const opencascade::handle & C); - /****************** SetEstimation ******************/ - /**** md5 signature: 1eee8cba9d7425225339e7da8aafbe68 ****/ + /****** AppDef_SmoothCriterion::SetEstimation ******/ + /****** md5 signature: 1eee8cba9d7425225339e7da8aafbe68 ******/ %feature("compactdefaultargs") SetEstimation; %feature("autodoc", " Parameters @@ -5451,8 +5451,8 @@ No available documentation. ") SetEstimation; virtual void SetEstimation(const Standard_Real E1, const Standard_Real E2, const Standard_Real E3); - /****************** SetParameters ******************/ - /**** md5 signature: 27aab9728b5d765091cba886e9f49273 ****/ + /****** AppDef_SmoothCriterion::SetParameters ******/ + /****** md5 signature: 27aab9728b5d765091cba886e9f49273 ******/ %feature("compactdefaultargs") SetParameters; %feature("autodoc", " Parameters @@ -5469,8 +5469,8 @@ No available documentation. ") SetParameters; virtual void SetParameters(const opencascade::handle & Parameters); - /****************** SetWeight ******************/ - /**** md5 signature: dc802dcd07fa8159f377bdea35a73f35 ****/ + /****** AppDef_SmoothCriterion::SetWeight ******/ + /****** md5 signature: dc802dcd07fa8159f377bdea35a73f35 ******/ %feature("compactdefaultargs") SetWeight; %feature("autodoc", " Parameters @@ -5491,8 +5491,8 @@ No available documentation. ") SetWeight; virtual void SetWeight(const Standard_Real QuadraticWeight, const Standard_Real QualityWeight, const Standard_Real percentJ1, const Standard_Real percentJ2, const Standard_Real percentJ3); - /****************** SetWeight ******************/ - /**** md5 signature: 7071df0ad4a367ddf80150dd3c3f5302 ****/ + /****** AppDef_SmoothCriterion::SetWeight ******/ + /****** md5 signature: 7071df0ad4a367ddf80150dd3c3f5302 ******/ %feature("compactdefaultargs") SetWeight; %feature("autodoc", " Parameters @@ -5525,8 +5525,8 @@ No available documentation. ***************************/ class AppDef_TheFunction : public math_MultipleVarFunctionWithGradient { public: - /****************** AppDef_TheFunction ******************/ - /**** md5 signature: da57d66f050dd8770549a173c8a381bb ****/ + /****** AppDef_TheFunction::AppDef_TheFunction ******/ + /****** md5 signature: da57d66f050dd8770549a173c8a381bb ******/ %feature("compactdefaultargs") AppDef_TheFunction; %feature("autodoc", " Parameters @@ -5548,8 +5548,8 @@ Initializes the fields of the function. the approximating curve has the desired ") AppDef_TheFunction; AppDef_TheFunction(const AppDef_MultiLine & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const opencascade::handle & TheConstraints, const math_Vector & Parameters, const Standard_Integer Deg); - /****************** CurveValue ******************/ - /**** md5 signature: c2e2cb976554936214bdfe3487b0362c ****/ + /****** AppDef_TheFunction::CurveValue ******/ + /****** md5 signature: c2e2cb976554936214bdfe3487b0362c ******/ %feature("compactdefaultargs") CurveValue; %feature("autodoc", "Return ------- @@ -5561,8 +5561,8 @@ Returns the multicurve approximating the set after computing the value f or grad ") CurveValue; AppParCurves_MultiCurve CurveValue(); - /****************** Error ******************/ - /**** md5 signature: 59bc36aa259ae04fcbc9c2a60fae6dfb ****/ + /****** AppDef_TheFunction::Error ******/ + /****** md5 signature: 59bc36aa259ae04fcbc9c2a60fae6dfb ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -5580,8 +5580,8 @@ Returns the distance between the multipoint of range ipoint and the curve curvei ") Error; Standard_Real Error(const Standard_Integer IPoint, const Standard_Integer CurveIndex); - /****************** FirstConstraint ******************/ - /**** md5 signature: 6814c8615ee3f59417c740c77d2ce795 ****/ + /****** AppDef_TheFunction::FirstConstraint ******/ + /****** md5 signature: 6814c8615ee3f59417c740c77d2ce795 ******/ %feature("compactdefaultargs") FirstConstraint; %feature("autodoc", " Parameters @@ -5599,8 +5599,8 @@ No available documentation. ") FirstConstraint; AppParCurves_Constraint FirstConstraint(const opencascade::handle & TheConstraints, const Standard_Integer FirstPoint); - /****************** Gradient ******************/ - /**** md5 signature: 5ee531ceab07ab216991e3bf02edf0f7 ****/ + /****** AppDef_TheFunction::Gradient ******/ + /****** md5 signature: 5ee531ceab07ab216991e3bf02edf0f7 ******/ %feature("compactdefaultargs") Gradient; %feature("autodoc", " Parameters @@ -5618,8 +5618,8 @@ Returns the gradient g of the sum above for the parameters xi. ") Gradient; Standard_Boolean Gradient(const math_Vector & X, math_Vector & G); - /****************** LastConstraint ******************/ - /**** md5 signature: f3572ad2cc7e299a1f7b6cb9d14677cf ****/ + /****** AppDef_TheFunction::LastConstraint ******/ + /****** md5 signature: f3572ad2cc7e299a1f7b6cb9d14677cf ******/ %feature("compactdefaultargs") LastConstraint; %feature("autodoc", " Parameters @@ -5637,8 +5637,8 @@ No available documentation. ") LastConstraint; AppParCurves_Constraint LastConstraint(const opencascade::handle & TheConstraints, const Standard_Integer LastPoint); - /****************** MaxError2d ******************/ - /**** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ****/ + /****** AppDef_TheFunction::MaxError2d ******/ + /****** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ******/ %feature("compactdefaultargs") MaxError2d; %feature("autodoc", "Return ------- @@ -5650,8 +5650,8 @@ Returns the maximum distance between the points and the multicurve. ") MaxError2d; Standard_Real MaxError2d(); - /****************** MaxError3d ******************/ - /**** md5 signature: c6ba463cdf4a0e426329b589363186b7 ****/ + /****** AppDef_TheFunction::MaxError3d ******/ + /****** md5 signature: c6ba463cdf4a0e426329b589363186b7 ******/ %feature("compactdefaultargs") MaxError3d; %feature("autodoc", "Return ------- @@ -5663,8 +5663,8 @@ Returns the maximum distance between the points and the multicurve. ") MaxError3d; Standard_Real MaxError3d(); - /****************** NbVariables ******************/ - /**** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ****/ + /****** AppDef_TheFunction::NbVariables ******/ + /****** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -5676,8 +5676,8 @@ Returns the number of variables of the function. it corresponds to the number of ") NbVariables; Standard_Integer NbVariables(); - /****************** NewParameters ******************/ - /**** md5 signature: 1d606e7b2aa9813a84f6984ebdf52bb7 ****/ + /****** AppDef_TheFunction::NewParameters ******/ + /****** md5 signature: 1d606e7b2aa9813a84f6984ebdf52bb7 ******/ %feature("compactdefaultargs") NewParameters; %feature("autodoc", "Return ------- @@ -5689,8 +5689,8 @@ Returns the new parameters of the multiline. ") NewParameters; const math_Vector & NewParameters(); - /****************** Value ******************/ - /**** md5 signature: 33f8b9f75d238865cc320f57ac729801 ****/ + /****** AppDef_TheFunction::Value ******/ + /****** md5 signature: 33f8b9f75d238865cc320f57ac729801 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -5707,8 +5707,8 @@ This method computes the new approximation of the multiline ssp and calculates f ") Value; Standard_Boolean Value(const math_Vector & X, Standard_Real &OutValue); - /****************** Values ******************/ - /**** md5 signature: 66c7c08f6bec2933f700c6f45cf14285 ****/ + /****** AppDef_TheFunction::Values ******/ + /****** md5 signature: 66c7c08f6bec2933f700c6f45cf14285 ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -5740,8 +5740,8 @@ Returns the value f=sum(||pui - bi*pi||)2. returns the value g = grad(f) for the ***************************/ class AppDef_TheGradient { public: - /****************** AppDef_TheGradient ******************/ - /**** md5 signature: 85b9700dca31ee16f7fb2f871aed88ab ****/ + /****** AppDef_TheGradient::AppDef_TheGradient ******/ + /****** md5 signature: 85b9700dca31ee16f7fb2f871aed88ab ******/ %feature("compactdefaultargs") AppDef_TheGradient; %feature("autodoc", " Parameters @@ -5766,8 +5766,8 @@ Tries to minimize the sum (square(||qui - bi*pi||)) where pui describe the appro ") AppDef_TheGradient; AppDef_TheGradient(const AppDef_MultiLine & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const opencascade::handle & TheConstraints, math_Vector & Parameters, const Standard_Integer Deg, const Standard_Real Tol3d, const Standard_Real Tol2d, const Standard_Integer NbIterations = 200); - /****************** AverageError ******************/ - /**** md5 signature: 420f3b7884af8c019ac24a5fe5ae6ff8 ****/ + /****** AppDef_TheGradient::AverageError ******/ + /****** md5 signature: 420f3b7884af8c019ac24a5fe5ae6ff8 ******/ %feature("compactdefaultargs") AverageError; %feature("autodoc", "Return ------- @@ -5779,8 +5779,8 @@ Returns the average error between the old and the new approximation. ") AverageError; Standard_Real AverageError(); - /****************** Error ******************/ - /**** md5 signature: 94d11b0fe58daf5df892c75e38905cde ****/ + /****** AppDef_TheGradient::Error ******/ + /****** md5 signature: 94d11b0fe58daf5df892c75e38905cde ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -5797,8 +5797,8 @@ Returns the difference between the old and the new approximation. an exception i ") Error; Standard_Real Error(const Standard_Integer Index); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** AppDef_TheGradient::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -5810,8 +5810,8 @@ Returns true if all has been correctly done. ") IsDone; Standard_Boolean IsDone(); - /****************** MaxError2d ******************/ - /**** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ****/ + /****** AppDef_TheGradient::MaxError2d ******/ + /****** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ******/ %feature("compactdefaultargs") MaxError2d; %feature("autodoc", "Return ------- @@ -5823,8 +5823,8 @@ Returns the maximum difference between the old and the new approximation. ") MaxError2d; Standard_Real MaxError2d(); - /****************** MaxError3d ******************/ - /**** md5 signature: c6ba463cdf4a0e426329b589363186b7 ****/ + /****** AppDef_TheGradient::MaxError3d ******/ + /****** md5 signature: c6ba463cdf4a0e426329b589363186b7 ******/ %feature("compactdefaultargs") MaxError3d; %feature("autodoc", "Return ------- @@ -5836,8 +5836,8 @@ Returns the maximum difference between the old and the new approximation. ") MaxError3d; Standard_Real MaxError3d(); - /****************** Value ******************/ - /**** md5 signature: dac7e49320bc0e9a268aeb92592734dc ****/ + /****** AppDef_TheGradient::Value ******/ + /****** md5 signature: dac7e49320bc0e9a268aeb92592734dc ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -5863,8 +5863,8 @@ Returns all the bezier curves approximating the multiline ssp after minimization *******************************/ class AppDef_TheLeastSquares { public: - /****************** AppDef_TheLeastSquares ******************/ - /**** md5 signature: f752b383abdb9dda4b6c44712dd024e1 ****/ + /****** AppDef_TheLeastSquares::AppDef_TheLeastSquares ******/ + /****** md5 signature: f752b383abdb9dda4b6c44712dd024e1 ******/ %feature("compactdefaultargs") AppDef_TheLeastSquares; %feature("autodoc", " Parameters @@ -5887,8 +5887,8 @@ Given a multiline, this algorithm computes the least square resolution using the ") AppDef_TheLeastSquares; AppDef_TheLeastSquares(const AppDef_MultiLine & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const math_Vector & Parameters, const Standard_Integer NbPol); - /****************** AppDef_TheLeastSquares ******************/ - /**** md5 signature: ef6a5ff8da68e59f81011325a75bf3c6 ****/ + /****** AppDef_TheLeastSquares::AppDef_TheLeastSquares ******/ + /****** md5 signature: ef6a5ff8da68e59f81011325a75bf3c6 ******/ %feature("compactdefaultargs") AppDef_TheLeastSquares; %feature("autodoc", " Parameters @@ -5910,8 +5910,8 @@ Initializes the fields of the object. ") AppDef_TheLeastSquares; AppDef_TheLeastSquares(const AppDef_MultiLine & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const Standard_Integer NbPol); - /****************** AppDef_TheLeastSquares ******************/ - /**** md5 signature: 3a5f460d8866bf1aa381c89f9b8a5452 ****/ + /****** AppDef_TheLeastSquares::AppDef_TheLeastSquares ******/ + /****** md5 signature: 3a5f460d8866bf1aa381c89f9b8a5452 ******/ %feature("compactdefaultargs") AppDef_TheLeastSquares; %feature("autodoc", " Parameters @@ -5936,8 +5936,8 @@ Given a multiline, this algorithm computes the least square resolution using the ") AppDef_TheLeastSquares; AppDef_TheLeastSquares(const AppDef_MultiLine & SSP, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const math_Vector & Parameters, const Standard_Integer NbPol); - /****************** AppDef_TheLeastSquares ******************/ - /**** md5 signature: 5bbebc9514a1e40a98553eefac06902f ****/ + /****** AppDef_TheLeastSquares::AppDef_TheLeastSquares ******/ + /****** md5 signature: 5bbebc9514a1e40a98553eefac06902f ******/ %feature("compactdefaultargs") AppDef_TheLeastSquares; %feature("autodoc", " Parameters @@ -5961,8 +5961,8 @@ Initializes the fields of the object. ") AppDef_TheLeastSquares; AppDef_TheLeastSquares(const AppDef_MultiLine & SSP, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const Standard_Integer NbPol); - /****************** BSplineValue ******************/ - /**** md5 signature: a38863f7c9b6fa566ee9fea09f971d5c ****/ + /****** AppDef_TheLeastSquares::BSplineValue ******/ + /****** md5 signature: a38863f7c9b6fa566ee9fea09f971d5c ******/ %feature("compactdefaultargs") BSplineValue; %feature("autodoc", "Return ------- @@ -5974,8 +5974,8 @@ Returns the result of the approximation, i.e. all the curves. an exception is ra ") BSplineValue; AppParCurves_MultiBSpCurve BSplineValue(); - /****************** BezierValue ******************/ - /**** md5 signature: 2bbd29cb039e6bcdcdf61afe82651ac1 ****/ + /****** AppDef_TheLeastSquares::BezierValue ******/ + /****** md5 signature: 2bbd29cb039e6bcdcdf61afe82651ac1 ******/ %feature("compactdefaultargs") BezierValue; %feature("autodoc", "Return ------- @@ -5987,8 +5987,8 @@ Returns the result of the approximation, i.e. all the curves. an exception is ra ") BezierValue; AppParCurves_MultiCurve BezierValue(); - /****************** DerivativeFunctionMatrix ******************/ - /**** md5 signature: c2dbca1da1c1c1aaf2ff7895be813eaf ****/ + /****** AppDef_TheLeastSquares::DerivativeFunctionMatrix ******/ + /****** md5 signature: c2dbca1da1c1c1aaf2ff7895be813eaf ******/ %feature("compactdefaultargs") DerivativeFunctionMatrix; %feature("autodoc", "Return ------- @@ -6000,8 +6000,8 @@ Returns the derivative function matrix used to approximate the set. ") DerivativeFunctionMatrix; const math_Matrix & DerivativeFunctionMatrix(); - /****************** Distance ******************/ - /**** md5 signature: 608fad06f540e822f2b9f4d329c097b6 ****/ + /****** AppDef_TheLeastSquares::Distance ******/ + /****** md5 signature: 608fad06f540e822f2b9f4d329c097b6 ******/ %feature("compactdefaultargs") Distance; %feature("autodoc", "Return ------- @@ -6013,8 +6013,8 @@ Returns the distances between the points of the multiline and the approximation ") Distance; const math_Matrix & Distance(); - /****************** Error ******************/ - /**** md5 signature: 7c05c0164fc88dbacc4d90d301fe7f12 ****/ + /****** AppDef_TheLeastSquares::Error ******/ + /****** md5 signature: 7c05c0164fc88dbacc4d90d301fe7f12 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -6032,8 +6032,8 @@ Returns the maximum errors between the multiline and the approximation curves. f ") Error; void Error(Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** ErrorGradient ******************/ - /**** md5 signature: 3e5c3757aad8d0f394eda590c0bc62e3 ****/ + /****** AppDef_TheLeastSquares::ErrorGradient ******/ + /****** md5 signature: 3e5c3757aad8d0f394eda590c0bc62e3 ******/ %feature("compactdefaultargs") ErrorGradient; %feature("autodoc", " Parameters @@ -6052,8 +6052,8 @@ Returns the maximum errors between the multiline and the approximation curves. f ") ErrorGradient; void ErrorGradient(math_Vector & Grad, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** FirstLambda ******************/ - /**** md5 signature: 87ad21cc13708c47c81704b38426d999 ****/ + /****** AppDef_TheLeastSquares::FirstLambda ******/ + /****** md5 signature: 87ad21cc13708c47c81704b38426d999 ******/ %feature("compactdefaultargs") FirstLambda; %feature("autodoc", "Return ------- @@ -6065,8 +6065,8 @@ Returns the value (p2 - p1)/ v1 if the first point was a tangency point. ") FirstLambda; Standard_Real FirstLambda(); - /****************** FunctionMatrix ******************/ - /**** md5 signature: aec90dd003c289db9092eb79712677e1 ****/ + /****** AppDef_TheLeastSquares::FunctionMatrix ******/ + /****** md5 signature: aec90dd003c289db9092eb79712677e1 ******/ %feature("compactdefaultargs") FunctionMatrix; %feature("autodoc", "Return ------- @@ -6078,8 +6078,8 @@ Returns the function matrix used to approximate the set. ") FunctionMatrix; const math_Matrix & FunctionMatrix(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** AppDef_TheLeastSquares::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -6091,8 +6091,8 @@ Returns true if all has been correctly done. ") IsDone; Standard_Boolean IsDone(); - /****************** KIndex ******************/ - /**** md5 signature: 2821052a9bfe72ec4f531ccb52a80ffb ****/ + /****** AppDef_TheLeastSquares::KIndex ******/ + /****** md5 signature: 2821052a9bfe72ec4f531ccb52a80ffb ******/ %feature("compactdefaultargs") KIndex; %feature("autodoc", "Return ------- @@ -6104,8 +6104,8 @@ Returns the indexes of the first non null values of a and da. the values are non ") KIndex; const math_IntegerVector & KIndex(); - /****************** LastLambda ******************/ - /**** md5 signature: f7e26790258c4ab513bae9dd1a5955e1 ****/ + /****** AppDef_TheLeastSquares::LastLambda ******/ + /****** md5 signature: f7e26790258c4ab513bae9dd1a5955e1 ******/ %feature("compactdefaultargs") LastLambda; %feature("autodoc", "Return ------- @@ -6117,8 +6117,8 @@ Returns the value (pn - pn-1)/ vn if the last point was a tangency point. ") LastLambda; Standard_Real LastLambda(); - /****************** Perform ******************/ - /**** md5 signature: 5b8f20d810ea57d5223b42dfd01410ad ****/ + /****** AppDef_TheLeastSquares::Perform ******/ + /****** md5 signature: 5b8f20d810ea57d5223b42dfd01410ad ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -6135,8 +6135,8 @@ Is used after having initialized the fields. the case 'curvaturepoint' is not tr ") Perform; void Perform(const math_Vector & Parameters); - /****************** Perform ******************/ - /**** md5 signature: cbf083f2b8329680dc5a52f482f436ad ****/ + /****** AppDef_TheLeastSquares::Perform ******/ + /****** md5 signature: cbf083f2b8329680dc5a52f482f436ad ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -6155,8 +6155,8 @@ Is used after having initialized the fields. ") Perform; void Perform(const math_Vector & Parameters, const Standard_Real l1, const Standard_Real l2); - /****************** Perform ******************/ - /**** md5 signature: 380f2440b07e3b3805c4eda2da2e8c6e ****/ + /****** AppDef_TheLeastSquares::Perform ******/ + /****** md5 signature: 380f2440b07e3b3805c4eda2da2e8c6e ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -6177,8 +6177,8 @@ Is used after having initialized the fields. is the tangent vector at the ") Perform; void Perform(const math_Vector & Parameters, const math_Vector & V1t, const math_Vector & V2t, const Standard_Real l1, const Standard_Real l2); - /****************** Perform ******************/ - /**** md5 signature: 5f7ecae6d947ca76138d939cdd616b0f ****/ + /****** AppDef_TheLeastSquares::Perform ******/ + /****** md5 signature: 5f7ecae6d947ca76138d939cdd616b0f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -6201,8 +6201,8 @@ Is used after having initialized the fields. is the tangent vector at the ") Perform; void Perform(const math_Vector & Parameters, const math_Vector & V1t, const math_Vector & V2t, const math_Vector & V1c, const math_Vector & V2c, const Standard_Real l1, const Standard_Real l2); - /****************** Points ******************/ - /**** md5 signature: 8a77545526c5096bca80b9c07f882412 ****/ + /****** AppDef_TheLeastSquares::Points ******/ + /****** md5 signature: 8a77545526c5096bca80b9c07f882412 ******/ %feature("compactdefaultargs") Points; %feature("autodoc", "Return ------- @@ -6214,8 +6214,8 @@ Returns the matrix of points value. ") Points; const math_Matrix & Points(); - /****************** Poles ******************/ - /**** md5 signature: 1437a652beb857bd22c16de65cb18857 ****/ + /****** AppDef_TheLeastSquares::Poles ******/ + /****** md5 signature: 1437a652beb857bd22c16de65cb18857 ******/ %feature("compactdefaultargs") Poles; %feature("autodoc", "Return ------- @@ -6241,8 +6241,8 @@ Returns the matrix of resulting control points value. ************************/ class AppDef_TheResol { public: - /****************** AppDef_TheResol ******************/ - /**** md5 signature: 4b9b6ad5df71d40b30db8c43f2f8211e ****/ + /****** AppDef_TheResol::AppDef_TheResol ******/ + /****** md5 signature: 4b9b6ad5df71d40b30db8c43f2f8211e ******/ %feature("compactdefaultargs") AppDef_TheResol; %feature("autodoc", " Parameters @@ -6266,8 +6266,8 @@ Given a multiline ssp with constraints points, this algorithm finds the best cur ") AppDef_TheResol; AppDef_TheResol(const AppDef_MultiLine & SSP, AppParCurves_MultiCurve & SCurv, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const opencascade::handle & Constraints, const math_Matrix & Bern, const math_Matrix & DerivativeBern, const Standard_Real Tolerance = 1.0e-10); - /****************** ConstraintDerivative ******************/ - /**** md5 signature: 03ceb3c5a326d9e5b704d04ea0088376 ****/ + /****** AppDef_TheResol::ConstraintDerivative ******/ + /****** md5 signature: 03ceb3c5a326d9e5b704d04ea0088376 ******/ %feature("compactdefaultargs") ConstraintDerivative; %feature("autodoc", " Parameters @@ -6287,8 +6287,8 @@ Returns the derivative of the constraint matrix. ") ConstraintDerivative; const math_Matrix & ConstraintDerivative(const AppDef_MultiLine & SSP, const math_Vector & Parameters, const Standard_Integer Deg, const math_Matrix & DA); - /****************** ConstraintMatrix ******************/ - /**** md5 signature: 22481357cd3fa297d87302ab5bf68ab7 ****/ + /****** AppDef_TheResol::ConstraintMatrix ******/ + /****** md5 signature: 22481357cd3fa297d87302ab5bf68ab7 ******/ %feature("compactdefaultargs") ConstraintMatrix; %feature("autodoc", "Return ------- @@ -6300,8 +6300,8 @@ No available documentation. ") ConstraintMatrix; const math_Matrix & ConstraintMatrix(); - /****************** Duale ******************/ - /**** md5 signature: fa2d61bba97045a52b936ca097de9f1b ****/ + /****** AppDef_TheResol::Duale ******/ + /****** md5 signature: fa2d61bba97045a52b936ca097de9f1b ******/ %feature("compactdefaultargs") Duale; %feature("autodoc", "Return ------- @@ -6313,8 +6313,8 @@ Returns the duale variables of the system. ") Duale; const math_Vector & Duale(); - /****************** InverseMatrix ******************/ - /**** md5 signature: 6c593c2bc8580243a5ff315f7f6a1f0e ****/ + /****** AppDef_TheResol::InverseMatrix ******/ + /****** md5 signature: 6c593c2bc8580243a5ff315f7f6a1f0e ******/ %feature("compactdefaultargs") InverseMatrix; %feature("autodoc", "Return ------- @@ -6326,8 +6326,8 @@ Returns the inverse of cont*transposed(cont), where cont is the constraint matri ") InverseMatrix; const math_Matrix & InverseMatrix(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** AppDef_TheResol::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -6357,8 +6357,8 @@ Returns true if all has been correctly done. ***************************/ class AppDef_Variational { public: - /****************** AppDef_Variational ******************/ - /**** md5 signature: f90b6cf052ecf51b369ee723a9ac7b8b ****/ + /****** AppDef_Variational::AppDef_Variational ******/ + /****** md5 signature: f90b6cf052ecf51b369ee723a9ac7b8b ******/ %feature("compactdefaultargs") AppDef_Variational; %feature("autodoc", " Parameters @@ -6385,8 +6385,8 @@ Constructor. initialization of the fields. warning: nc0: number of passagepoint ") AppDef_Variational; AppDef_Variational(const AppDef_MultiLine & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const opencascade::handle & TheConstraints, const Standard_Integer MaxDegree = 14, const Standard_Integer MaxSegment = 100, const GeomAbs_Shape Continuity = GeomAbs_C2, const Standard_Boolean WithMinMax = Standard_False, const Standard_Boolean WithCutting = Standard_True, const Standard_Real Tolerance = 1.0, const Standard_Integer NbIterations = 2); - /****************** Approximate ******************/ - /**** md5 signature: c99f59de561bcc5fc0bce8bf73c657b1 ****/ + /****** AppDef_Variational::Approximate ******/ + /****** md5 signature: c99f59de561bcc5fc0bce8bf73c657b1 ******/ %feature("compactdefaultargs") Approximate; %feature("autodoc", "Return ------- @@ -6398,8 +6398,8 @@ Makes the approximation with the current fields. ") Approximate; void Approximate(); - /****************** AverageError ******************/ - /**** md5 signature: 420f3b7884af8c019ac24a5fe5ae6ff8 ****/ + /****** AppDef_Variational::AverageError ******/ + /****** md5 signature: 420f3b7884af8c019ac24a5fe5ae6ff8 ******/ %feature("compactdefaultargs") AverageError; %feature("autodoc", "Return ------- @@ -6411,8 +6411,8 @@ Returns the average error between the multiline from appdef and the approximatio ") AverageError; Standard_Real AverageError(); - /****************** Continuity ******************/ - /**** md5 signature: 4cc571878c66d538aeaf8b0affec3574 ****/ + /****** AppDef_Variational::Continuity ******/ + /****** md5 signature: 4cc571878c66d538aeaf8b0affec3574 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", "Return ------- @@ -6424,8 +6424,8 @@ Returns the continuity used in the approximation. ") Continuity; GeomAbs_Shape Continuity(); - /****************** Criterium ******************/ - /**** md5 signature: edb6a5a9c11d025eaea36c85716d20aa ****/ + /****** AppDef_Variational::Criterium ******/ + /****** md5 signature: edb6a5a9c11d025eaea36c85716d20aa ******/ %feature("compactdefaultargs") Criterium; %feature("autodoc", " Parameters @@ -6443,8 +6443,8 @@ Returns the values of the quality criterium. ") Criterium; void Criterium(Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** CriteriumWeight ******************/ - /**** md5 signature: d1e8815ca315e3e933ecc550d2c9ab9d ****/ + /****** AppDef_Variational::CriteriumWeight ******/ + /****** md5 signature: d1e8815ca315e3e933ecc550d2c9ab9d ******/ %feature("compactdefaultargs") CriteriumWeight; %feature("autodoc", " Parameters @@ -6462,8 +6462,8 @@ Returns the weights (as percent) associed to the criterium used in the optimizat ") CriteriumWeight; void CriteriumWeight(Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Distance ******************/ - /**** md5 signature: fb873fdfe64ff9a1fb1949ce5ba730e9 ****/ + /****** AppDef_Variational::Distance ******/ + /****** md5 signature: fb873fdfe64ff9a1fb1949ce5ba730e9 ******/ %feature("compactdefaultargs") Distance; %feature("autodoc", " Parameters @@ -6480,8 +6480,8 @@ Returns the distances between the points of the multiline and the approximation ") Distance; void Distance(math_Matrix & mat); - /****************** Dump ******************/ - /**** md5 signature: d37b43e0b2386dc096d5d707876db157 ****/ + /****** AppDef_Variational::Dump ******/ + /****** md5 signature: d37b43e0b2386dc096d5d707876db157 ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", " Parameters @@ -6497,8 +6497,8 @@ Prints on the stream o information on the current state of the object. maxerror, ") Dump; void Dump(std::ostream &OutValue); - /****************** IsCreated ******************/ - /**** md5 signature: ee98cd23a823f97ff49721b779c9bc76 ****/ + /****** AppDef_Variational::IsCreated ******/ + /****** md5 signature: ee98cd23a823f97ff49721b779c9bc76 ******/ %feature("compactdefaultargs") IsCreated; %feature("autodoc", "Return ------- @@ -6510,8 +6510,8 @@ Returns true if the creation is done and correspond to the current fields. ") IsCreated; Standard_Boolean IsCreated(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** AppDef_Variational::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -6523,8 +6523,8 @@ Returns true if the approximation is ok and correspond to the current fields. ") IsDone; Standard_Boolean IsDone(); - /****************** IsOverConstrained ******************/ - /**** md5 signature: b90429989d8f8debd1e02927f18e060e ****/ + /****** AppDef_Variational::IsOverConstrained ******/ + /****** md5 signature: b90429989d8f8debd1e02927f18e060e ******/ %feature("compactdefaultargs") IsOverConstrained; %feature("autodoc", "Return ------- @@ -6536,8 +6536,8 @@ Returns true if the problem is overconstrained in this case, approximation canno ") IsOverConstrained; Standard_Boolean IsOverConstrained(); - /****************** Knots ******************/ - /**** md5 signature: 6fb22c3eaf6dc04bd29ac3396a7169a9 ****/ + /****** AppDef_Variational::Knots ******/ + /****** md5 signature: 6fb22c3eaf6dc04bd29ac3396a7169a9 ******/ %feature("compactdefaultargs") Knots; %feature("autodoc", "Return ------- @@ -6549,8 +6549,8 @@ Returns the knots uses to the approximations. ") Knots; const opencascade::handle & Knots(); - /****************** MaxDegree ******************/ - /**** md5 signature: 2c79ca8c281a4e3978650b16dd11f77d ****/ + /****** AppDef_Variational::MaxDegree ******/ + /****** md5 signature: 2c79ca8c281a4e3978650b16dd11f77d ******/ %feature("compactdefaultargs") MaxDegree; %feature("autodoc", "Return ------- @@ -6562,8 +6562,8 @@ Returns the maximum degree used in the approximation. ") MaxDegree; Standard_Integer MaxDegree(); - /****************** MaxError ******************/ - /**** md5 signature: 90f2419f0b1537a77da84305579339a2 ****/ + /****** AppDef_Variational::MaxError ******/ + /****** md5 signature: 90f2419f0b1537a77da84305579339a2 ******/ %feature("compactdefaultargs") MaxError; %feature("autodoc", "Return ------- @@ -6575,8 +6575,8 @@ Returns the maximum of the distances between the points of the multiline and the ") MaxError; Standard_Real MaxError(); - /****************** MaxErrorIndex ******************/ - /**** md5 signature: 971e966c0fe3112e06e17b68cf389166 ****/ + /****** AppDef_Variational::MaxErrorIndex ******/ + /****** md5 signature: 971e966c0fe3112e06e17b68cf389166 ******/ %feature("compactdefaultargs") MaxErrorIndex; %feature("autodoc", "Return ------- @@ -6588,8 +6588,8 @@ Returns the index of the multipoint of errormax. ") MaxErrorIndex; Standard_Integer MaxErrorIndex(); - /****************** MaxSegment ******************/ - /**** md5 signature: 1053b33469d38c347d8d0e695823bcf7 ****/ + /****** AppDef_Variational::MaxSegment ******/ + /****** md5 signature: 1053b33469d38c347d8d0e695823bcf7 ******/ %feature("compactdefaultargs") MaxSegment; %feature("autodoc", "Return ------- @@ -6601,8 +6601,8 @@ Returns the maximum of segment used in the approximation. ") MaxSegment; Standard_Integer MaxSegment(); - /****************** NbIterations ******************/ - /**** md5 signature: 05334f1e34f7c858ac022754e906f2bf ****/ + /****** AppDef_Variational::NbIterations ******/ + /****** md5 signature: 05334f1e34f7c858ac022754e906f2bf ******/ %feature("compactdefaultargs") NbIterations; %feature("autodoc", "Return ------- @@ -6614,8 +6614,8 @@ Returns the number of iterations used in the approximation. ") NbIterations; Standard_Integer NbIterations(); - /****************** Parameters ******************/ - /**** md5 signature: 7527b844d237672b1654e0e34e57815c ****/ + /****** AppDef_Variational::Parameters ******/ + /****** md5 signature: 7527b844d237672b1654e0e34e57815c ******/ %feature("compactdefaultargs") Parameters; %feature("autodoc", "Return ------- @@ -6627,8 +6627,8 @@ Returns the parameters uses to the approximations. ") Parameters; const opencascade::handle & Parameters(); - /****************** QuadraticError ******************/ - /**** md5 signature: 4966a1d89bf85fe81f2bcefbdff19919 ****/ + /****** AppDef_Variational::QuadraticError ******/ + /****** md5 signature: 4966a1d89bf85fe81f2bcefbdff19919 ******/ %feature("compactdefaultargs") QuadraticError; %feature("autodoc", "Return ------- @@ -6640,8 +6640,8 @@ Returns the quadratic average of the distances between the points of the multili ") QuadraticError; Standard_Real QuadraticError(); - /****************** SetConstraints ******************/ - /**** md5 signature: cc790287f6182849f720a3c5328f25b7 ****/ + /****** AppDef_Variational::SetConstraints ******/ + /****** md5 signature: cc790287f6182849f720a3c5328f25b7 ******/ %feature("compactdefaultargs") SetConstraints; %feature("autodoc", " Parameters @@ -6658,8 +6658,8 @@ Define the constraints to approximate if this value is incompatible with the oth ") SetConstraints; Standard_Boolean SetConstraints(const opencascade::handle & aConstrainst); - /****************** SetContinuity ******************/ - /**** md5 signature: f974005f1ed42db31f2565c8a366cbbe ****/ + /****** AppDef_Variational::SetContinuity ******/ + /****** md5 signature: f974005f1ed42db31f2565c8a366cbbe ******/ %feature("compactdefaultargs") SetContinuity; %feature("autodoc", " Parameters @@ -6676,8 +6676,8 @@ Define the continuity used in the approximation if this value is incompatible wi ") SetContinuity; Standard_Boolean SetContinuity(const GeomAbs_Shape C); - /****************** SetCriteriumWeight ******************/ - /**** md5 signature: 168b9075f5e06eafee2d48483e8549b2 ****/ + /****** AppDef_Variational::SetCriteriumWeight ******/ + /****** md5 signature: 168b9075f5e06eafee2d48483e8549b2 ******/ %feature("compactdefaultargs") SetCriteriumWeight; %feature("autodoc", " Parameters @@ -6696,8 +6696,8 @@ Define the weights (as percent) associed to the criterium used in the optimizati ") SetCriteriumWeight; void SetCriteriumWeight(const Standard_Real Percent1, const Standard_Real Percent2, const Standard_Real Percent3); - /****************** SetCriteriumWeight ******************/ - /**** md5 signature: 953a9a555201757eb4d851ed7bafb979 ****/ + /****** AppDef_Variational::SetCriteriumWeight ******/ + /****** md5 signature: 953a9a555201757eb4d851ed7bafb979 ******/ %feature("compactdefaultargs") SetCriteriumWeight; %feature("autodoc", " Parameters @@ -6715,8 +6715,8 @@ Define the weight (as percent) associed to the criterium order used in the optim ") SetCriteriumWeight; void SetCriteriumWeight(const Standard_Integer Order, const Standard_Real Percent); - /****************** SetKnots ******************/ - /**** md5 signature: e8661b15a04d92d82b8a0d602a32994c ****/ + /****** AppDef_Variational::SetKnots ******/ + /****** md5 signature: e8661b15a04d92d82b8a0d602a32994c ******/ %feature("compactdefaultargs") SetKnots; %feature("autodoc", " Parameters @@ -6733,8 +6733,8 @@ Defines the knots used by the approximations if this value is incompatible with ") SetKnots; Standard_Boolean SetKnots(const opencascade::handle & knots); - /****************** SetMaxDegree ******************/ - /**** md5 signature: fca035c6d3f4efa993181625249e062c ****/ + /****** AppDef_Variational::SetMaxDegree ******/ + /****** md5 signature: fca035c6d3f4efa993181625249e062c ******/ %feature("compactdefaultargs") SetMaxDegree; %feature("autodoc", " Parameters @@ -6751,8 +6751,8 @@ Define the maximum degree used in the approximation if this value is incompatibl ") SetMaxDegree; Standard_Boolean SetMaxDegree(const Standard_Integer Degree); - /****************** SetMaxSegment ******************/ - /**** md5 signature: a24ae9d7cd32cbd6c0a12b78e2965cbf ****/ + /****** AppDef_Variational::SetMaxSegment ******/ + /****** md5 signature: a24ae9d7cd32cbd6c0a12b78e2965cbf ******/ %feature("compactdefaultargs") SetMaxSegment; %feature("autodoc", " Parameters @@ -6769,8 +6769,8 @@ Define the maximum number of segments used in the approximation if this value is ") SetMaxSegment; Standard_Boolean SetMaxSegment(const Standard_Integer NbSegment); - /****************** SetNbIterations ******************/ - /**** md5 signature: 3ae76dd00e47cee8353c15b0f4494e29 ****/ + /****** AppDef_Variational::SetNbIterations ******/ + /****** md5 signature: 3ae76dd00e47cee8353c15b0f4494e29 ******/ %feature("compactdefaultargs") SetNbIterations; %feature("autodoc", " Parameters @@ -6787,8 +6787,8 @@ Define the number of iterations used in the approximation. if iter < 1. ") SetNbIterations; void SetNbIterations(const Standard_Integer Iter); - /****************** SetParameters ******************/ - /**** md5 signature: 98407971ef258f529d76e2dc1e8651b1 ****/ + /****** AppDef_Variational::SetParameters ******/ + /****** md5 signature: 98407971ef258f529d76e2dc1e8651b1 ******/ %feature("compactdefaultargs") SetParameters; %feature("autodoc", " Parameters @@ -6805,8 +6805,8 @@ Defines the parameters used by the approximations. ") SetParameters; void SetParameters(const opencascade::handle & param); - /****************** SetTolerance ******************/ - /**** md5 signature: fc6e9b0c16aebccb1a4d05571a3e6ef6 ****/ + /****** AppDef_Variational::SetTolerance ******/ + /****** md5 signature: fc6e9b0c16aebccb1a4d05571a3e6ef6 ******/ %feature("compactdefaultargs") SetTolerance; %feature("autodoc", " Parameters @@ -6823,8 +6823,8 @@ Define the tolerance used in the approximation. ") SetTolerance; void SetTolerance(const Standard_Real Tol); - /****************** SetWithCutting ******************/ - /**** md5 signature: 02d0c9b4b956a64bc1920736b5081e0f ****/ + /****** AppDef_Variational::SetWithCutting ******/ + /****** md5 signature: 02d0c9b4b956a64bc1920736b5081e0f ******/ %feature("compactdefaultargs") SetWithCutting; %feature("autodoc", " Parameters @@ -6841,8 +6841,8 @@ Define if the approximation can insert new knots or not. if this value is incomp ") SetWithCutting; Standard_Boolean SetWithCutting(const Standard_Boolean Cutting); - /****************** SetWithMinMax ******************/ - /**** md5 signature: 1b54e87ae81f0f7a5b31ba668276567f ****/ + /****** AppDef_Variational::SetWithMinMax ******/ + /****** md5 signature: 1b54e87ae81f0f7a5b31ba668276567f ******/ %feature("compactdefaultargs") SetWithMinMax; %feature("autodoc", " Parameters @@ -6859,8 +6859,8 @@ Define if the approximation search to minimize the maximum error or not. ") SetWithMinMax; void SetWithMinMax(const Standard_Boolean MinMax); - /****************** Tolerance ******************/ - /**** md5 signature: 9e5775014410d884d1a1adc1cd47930b ****/ + /****** AppDef_Variational::Tolerance ******/ + /****** md5 signature: 9e5775014410d884d1a1adc1cd47930b ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", "Return ------- @@ -6872,8 +6872,8 @@ Returns the tolerance used in the approximation. ") Tolerance; Standard_Real Tolerance(); - /****************** Value ******************/ - /**** md5 signature: 35d2ee100f1a9fc11f00b074d7d3553e ****/ + /****** AppDef_Variational::Value ******/ + /****** md5 signature: 35d2ee100f1a9fc11f00b074d7d3553e ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -6885,8 +6885,8 @@ Returns all the bspline curves approximating the multiline from appdef ssp after ") Value; AppParCurves_MultiBSpCurve Value(); - /****************** WithCutting ******************/ - /**** md5 signature: d1aad1460fd0343f58333133d5abda17 ****/ + /****** AppDef_Variational::WithCutting ******/ + /****** md5 signature: d1aad1460fd0343f58333133d5abda17 ******/ %feature("compactdefaultargs") WithCutting; %feature("autodoc", "Return ------- @@ -6898,8 +6898,8 @@ Returns if the approximation can insert new knots or not. ") WithCutting; Standard_Boolean WithCutting(); - /****************** WithMinMax ******************/ - /**** md5 signature: 4a834814fd8ebdf3109c458400dbeda7 ****/ + /****** AppDef_Variational::WithMinMax ******/ + /****** md5 signature: 4a834814fd8ebdf3109c458400dbeda7 ******/ %feature("compactdefaultargs") WithMinMax; %feature("autodoc", "Return ------- @@ -6925,8 +6925,8 @@ Returns if the approximation search to minimize the maximum error or not. ******************************/ class AppDef_LinearCriteria : public AppDef_SmoothCriterion { public: - /****************** AppDef_LinearCriteria ******************/ - /**** md5 signature: 7971c8c3b54afa7d1e4ec19e4b96b14a ****/ + /****** AppDef_LinearCriteria::AppDef_LinearCriteria ******/ + /****** md5 signature: 7971c8c3b54afa7d1e4ec19e4b96b14a ******/ %feature("compactdefaultargs") AppDef_LinearCriteria; %feature("autodoc", " Parameters @@ -6945,8 +6945,8 @@ No available documentation. ") AppDef_LinearCriteria; AppDef_LinearCriteria(const AppDef_MultiLine & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint); - /****************** AssemblyTable ******************/ - /**** md5 signature: bfa501d807c9eb758d31854422707098 ****/ + /****** AppDef_LinearCriteria::AssemblyTable ******/ + /****** md5 signature: bfa501d807c9eb758d31854422707098 ******/ %feature("compactdefaultargs") AssemblyTable; %feature("autodoc", "Return ------- @@ -6958,8 +6958,8 @@ No available documentation. ") AssemblyTable; opencascade::handle AssemblyTable(); - /****************** DependenceTable ******************/ - /**** md5 signature: 74ba8d8ba6ec3333e18c69c449d161a3 ****/ + /****** AppDef_LinearCriteria::DependenceTable ******/ + /****** md5 signature: 74ba8d8ba6ec3333e18c69c449d161a3 ******/ %feature("compactdefaultargs") DependenceTable; %feature("autodoc", "Return ------- @@ -6971,8 +6971,8 @@ No available documentation. ") DependenceTable; opencascade::handle DependenceTable(); - /****************** ErrorValues ******************/ - /**** md5 signature: a777f9d4f93c8023ace5e9d0026ef74c ****/ + /****** AppDef_LinearCriteria::ErrorValues ******/ + /****** md5 signature: a777f9d4f93c8023ace5e9d0026ef74c ******/ %feature("compactdefaultargs") ErrorValues; %feature("autodoc", " Parameters @@ -7003,8 +7003,8 @@ No available documentation. $self->EstLength()=value; } }; - /****************** GetCurve ******************/ - /**** md5 signature: cd8e9b34a7462f6d0e280ba39eb7013b ****/ + /****** AppDef_LinearCriteria::GetCurve ******/ + /****** md5 signature: cd8e9b34a7462f6d0e280ba39eb7013b ******/ %feature("compactdefaultargs") GetCurve; %feature("autodoc", " Parameters @@ -7021,8 +7021,8 @@ No available documentation. ") GetCurve; void GetCurve(opencascade::handle & C); - /****************** GetEstimation ******************/ - /**** md5 signature: c203dc9f9f35d061778069cc5bca8cde ****/ + /****** AppDef_LinearCriteria::GetEstimation ******/ + /****** md5 signature: c203dc9f9f35d061778069cc5bca8cde ******/ %feature("compactdefaultargs") GetEstimation; %feature("autodoc", " Parameters @@ -7040,8 +7040,8 @@ No available documentation. ") GetEstimation; void GetEstimation(Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** GetWeight ******************/ - /**** md5 signature: 20228a28f0bf77c9b8a22ba4a2c3775a ****/ + /****** AppDef_LinearCriteria::GetWeight ******/ + /****** md5 signature: 20228a28f0bf77c9b8a22ba4a2c3775a ******/ %feature("compactdefaultargs") GetWeight; %feature("autodoc", " Parameters @@ -7058,8 +7058,8 @@ No available documentation. ") GetWeight; void GetWeight(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Gradient ******************/ - /**** md5 signature: 321bc1515ee5e590e26f19411e445e89 ****/ + /****** AppDef_LinearCriteria::Gradient ******/ + /****** md5 signature: 321bc1515ee5e590e26f19411e445e89 ******/ %feature("compactdefaultargs") Gradient; %feature("autodoc", " Parameters @@ -7078,8 +7078,8 @@ No available documentation. ") Gradient; void Gradient(const Standard_Integer Element, const Standard_Integer Dimension, math_Vector & G); - /****************** Hessian ******************/ - /**** md5 signature: 8b40c8291caedf88a740760d60139e94 ****/ + /****** AppDef_LinearCriteria::Hessian ******/ + /****** md5 signature: 8b40c8291caedf88a740760d60139e94 ******/ %feature("compactdefaultargs") Hessian; %feature("autodoc", " Parameters @@ -7099,8 +7099,8 @@ No available documentation. ") Hessian; void Hessian(const Standard_Integer Element, const Standard_Integer Dimension1, const Standard_Integer Dimension2, math_Matrix & H); - /****************** InputVector ******************/ - /**** md5 signature: 9fc6c35d42441a4e3e3012543ade00f3 ****/ + /****** AppDef_LinearCriteria::InputVector ******/ + /****** md5 signature: 9fc6c35d42441a4e3e3012543ade00f3 ******/ %feature("compactdefaultargs") InputVector; %feature("autodoc", " Parameters @@ -7118,8 +7118,8 @@ Convert the assembly vector in an curve;. ") InputVector; void InputVector(const math_Vector & X, const opencascade::handle & AssTable); - /****************** QualityValues ******************/ - /**** md5 signature: 827da749488066754087e937754eac94 ****/ + /****** AppDef_LinearCriteria::QualityValues ******/ + /****** md5 signature: 827da749488066754087e937754eac94 ******/ %feature("compactdefaultargs") QualityValues; %feature("autodoc", " Parameters @@ -7140,8 +7140,8 @@ No available documentation. ") QualityValues; Standard_Integer QualityValues(const Standard_Real J1min, const Standard_Real J2min, const Standard_Real J3min, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** SetCurve ******************/ - /**** md5 signature: 04239691cf498ce7af97807decd2562a ****/ + /****** AppDef_LinearCriteria::SetCurve ******/ + /****** md5 signature: 04239691cf498ce7af97807decd2562a ******/ %feature("compactdefaultargs") SetCurve; %feature("autodoc", " Parameters @@ -7158,8 +7158,8 @@ No available documentation. ") SetCurve; void SetCurve(const opencascade::handle & C); - /****************** SetEstimation ******************/ - /**** md5 signature: 7e003424ca19f8200aab6824d74b9d27 ****/ + /****** AppDef_LinearCriteria::SetEstimation ******/ + /****** md5 signature: 7e003424ca19f8200aab6824d74b9d27 ******/ %feature("compactdefaultargs") SetEstimation; %feature("autodoc", " Parameters @@ -7178,8 +7178,8 @@ No available documentation. ") SetEstimation; void SetEstimation(const Standard_Real E1, const Standard_Real E2, const Standard_Real E3); - /****************** SetParameters ******************/ - /**** md5 signature: 5a4d4d2d682d53038fd9018938ef98a7 ****/ + /****** AppDef_LinearCriteria::SetParameters ******/ + /****** md5 signature: 5a4d4d2d682d53038fd9018938ef98a7 ******/ %feature("compactdefaultargs") SetParameters; %feature("autodoc", " Parameters @@ -7196,8 +7196,8 @@ No available documentation. ") SetParameters; void SetParameters(const opencascade::handle & Parameters); - /****************** SetWeight ******************/ - /**** md5 signature: 8783a77241be255334f6fe96a205454d ****/ + /****** AppDef_LinearCriteria::SetWeight ******/ + /****** md5 signature: 8783a77241be255334f6fe96a205454d ******/ %feature("compactdefaultargs") SetWeight; %feature("autodoc", " Parameters @@ -7218,8 +7218,8 @@ No available documentation. ") SetWeight; void SetWeight(const Standard_Real QuadraticWeight, const Standard_Real QualityWeight, const Standard_Real percentJ1, const Standard_Real percentJ2, const Standard_Real percentJ3); - /****************** SetWeight ******************/ - /**** md5 signature: e02860ae1c35c7abb2994c7477ce803e ****/ + /****** AppDef_LinearCriteria::SetWeight ******/ + /****** md5 signature: e02860ae1c35c7abb2994c7477ce803e ******/ %feature("compactdefaultargs") SetWeight; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/AppParCurves.i b/src/SWIG_files/wrapper/AppParCurves.i index 9caeb52b7..eb80eede1 100644 --- a/src/SWIG_files/wrapper/AppParCurves.i +++ b/src/SWIG_files/wrapper/AppParCurves.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define APPPARCURVESDOCSTRING "AppParCurves module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_appparcurves.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_appparcurves.html" %enddef %module (package="OCC.Core", docstring=APPPARCURVESDOCSTRING) AppParCurves @@ -144,8 +144,8 @@ typedef NCollection_Sequence AppParCurves_SequenceOfMul %rename(appparcurves) AppParCurves; class AppParCurves { public: - /****************** Bernstein ******************/ - /**** md5 signature: 6083f4d506d507e1c27b964d1798261a ****/ + /****** AppParCurves::Bernstein ******/ + /****** md5 signature: 6083f4d506d507e1c27b964d1798261a ******/ %feature("compactdefaultargs") Bernstein; %feature("autodoc", " Parameters @@ -165,8 +165,8 @@ No available documentation. ") Bernstein; static void Bernstein(const Standard_Integer NbPoles, const math_Vector & U, math_Matrix & A, math_Matrix & DA); - /****************** BernsteinMatrix ******************/ - /**** md5 signature: f2f56219e01080af0002f41515715977 ****/ + /****** AppParCurves::BernsteinMatrix ******/ + /****** md5 signature: f2f56219e01080af0002f41515715977 ******/ %feature("compactdefaultargs") BernsteinMatrix; %feature("autodoc", " Parameters @@ -185,8 +185,8 @@ No available documentation. ") BernsteinMatrix; static void BernsteinMatrix(const Standard_Integer NbPoles, const math_Vector & U, math_Matrix & A); - /****************** SecondDerivativeBernstein ******************/ - /**** md5 signature: 1abcd1eb2687613081acd95df365fb86 ****/ + /****** AppParCurves::SecondDerivativeBernstein ******/ + /****** md5 signature: 1abcd1eb2687613081acd95df365fb86 ******/ %feature("compactdefaultargs") SecondDerivativeBernstein; %feature("autodoc", " Parameters @@ -204,8 +204,8 @@ No available documentation. ") SecondDerivativeBernstein; static void SecondDerivativeBernstein(const Standard_Real U, math_Vector & DDA); - /****************** SplineFunction ******************/ - /**** md5 signature: 38ad65037e2df48a984f401be4124915 ****/ + /****** AppParCurves::SplineFunction ******/ + /****** md5 signature: 38ad65037e2df48a984f401be4124915 ******/ %feature("compactdefaultargs") SplineFunction; %feature("autodoc", " Parameters @@ -242,8 +242,8 @@ No available documentation. **************************************/ class AppParCurves_ConstraintCouple { public: - /****************** AppParCurves_ConstraintCouple ******************/ - /**** md5 signature: 2d0beb66a2c21dcdf2fbd5460216f59a ****/ + /****** AppParCurves_ConstraintCouple::AppParCurves_ConstraintCouple ******/ + /****** md5 signature: 2d0beb66a2c21dcdf2fbd5460216f59a ******/ %feature("compactdefaultargs") AppParCurves_ConstraintCouple; %feature("autodoc", "Return ------- @@ -255,8 +255,8 @@ Returns an indefinite constraintcouple. ") AppParCurves_ConstraintCouple; AppParCurves_ConstraintCouple(); - /****************** AppParCurves_ConstraintCouple ******************/ - /**** md5 signature: 2e04177a83c06c9aa237d2efd07304c1 ****/ + /****** AppParCurves_ConstraintCouple::AppParCurves_ConstraintCouple ******/ + /****** md5 signature: 2e04177a83c06c9aa237d2efd07304c1 ******/ %feature("compactdefaultargs") AppParCurves_ConstraintCouple; %feature("autodoc", " Parameters @@ -274,8 +274,8 @@ Create a couple the object will have the constraint . ") AppParCurves_ConstraintCouple; AppParCurves_ConstraintCouple(const Standard_Integer TheIndex, const AppParCurves_Constraint Cons); - /****************** Constraint ******************/ - /**** md5 signature: b7676d3a1231c229c21b4d44c5eeebc6 ****/ + /****** AppParCurves_ConstraintCouple::Constraint ******/ + /****** md5 signature: b7676d3a1231c229c21b4d44c5eeebc6 ******/ %feature("compactdefaultargs") Constraint; %feature("autodoc", "Return ------- @@ -287,8 +287,8 @@ Returns the constraint of the object. ") Constraint; AppParCurves_Constraint Constraint(); - /****************** Index ******************/ - /**** md5 signature: 407d80ef3037d55996765198adea3908 ****/ + /****** AppParCurves_ConstraintCouple::Index ******/ + /****** md5 signature: 407d80ef3037d55996765198adea3908 ******/ %feature("compactdefaultargs") Index; %feature("autodoc", "Return ------- @@ -300,8 +300,8 @@ Returns the index of the constraint object. ") Index; Standard_Integer Index(); - /****************** SetConstraint ******************/ - /**** md5 signature: 5938458484f978c0b92a6c2a2d7c7815 ****/ + /****** AppParCurves_ConstraintCouple::SetConstraint ******/ + /****** md5 signature: 5938458484f978c0b92a6c2a2d7c7815 ******/ %feature("compactdefaultargs") SetConstraint; %feature("autodoc", " Parameters @@ -318,8 +318,8 @@ Changes the constraint of the object. ") SetConstraint; void SetConstraint(const AppParCurves_Constraint Cons); - /****************** SetIndex ******************/ - /**** md5 signature: 8837cdd415a0f5c290f45964b1b4e33b ****/ + /****** AppParCurves_ConstraintCouple::SetIndex ******/ + /****** md5 signature: 8837cdd415a0f5c290f45964b1b4e33b ******/ %feature("compactdefaultargs") SetIndex; %feature("autodoc", " Parameters @@ -350,8 +350,8 @@ Changes the index of the constraint object. ********************************/ class AppParCurves_MultiCurve { public: - /****************** AppParCurves_MultiCurve ******************/ - /**** md5 signature: c99f496a7f9803f7bae2a1b9eb0e5c95 ****/ + /****** AppParCurves_MultiCurve::AppParCurves_MultiCurve ******/ + /****** md5 signature: c99f496a7f9803f7bae2a1b9eb0e5c95 ******/ %feature("compactdefaultargs") AppParCurves_MultiCurve; %feature("autodoc", "Return ------- @@ -363,8 +363,8 @@ Returns an indefinite multicurve. ") AppParCurves_MultiCurve; AppParCurves_MultiCurve(); - /****************** AppParCurves_MultiCurve ******************/ - /**** md5 signature: ab53822f8368c830602c9078bee067b6 ****/ + /****** AppParCurves_MultiCurve::AppParCurves_MultiCurve ******/ + /****** md5 signature: ab53822f8368c830602c9078bee067b6 ******/ %feature("compactdefaultargs") AppParCurves_MultiCurve; %feature("autodoc", " Parameters @@ -381,8 +381,8 @@ Creates a multicurve, describing bezier curves all containing the same number of ") AppParCurves_MultiCurve; AppParCurves_MultiCurve(const Standard_Integer NbPol); - /****************** AppParCurves_MultiCurve ******************/ - /**** md5 signature: 70743a4fd5a5bb7db1b0290704f44092 ****/ + /****** AppParCurves_MultiCurve::AppParCurves_MultiCurve ******/ + /****** md5 signature: 70743a4fd5a5bb7db1b0290704f44092 ******/ %feature("compactdefaultargs") AppParCurves_MultiCurve; %feature("autodoc", " Parameters @@ -399,8 +399,8 @@ Creates a multicurve, describing bezier curves all containing the same number of ") AppParCurves_MultiCurve; AppParCurves_MultiCurve(const AppParCurves_Array1OfMultiPoint & tabMU); - /****************** Curve ******************/ - /**** md5 signature: 77d76aad156e29d4ac0b74a9677b4fc4 ****/ + /****** AppParCurves_MultiCurve::Curve ******/ + /****** md5 signature: 77d76aad156e29d4ac0b74a9677b4fc4 ******/ %feature("compactdefaultargs") Curve; %feature("autodoc", " Parameters @@ -418,8 +418,8 @@ Returns the pole array of the curve of range cuindex. an exception is raised if ") Curve; void Curve(const Standard_Integer CuIndex, TColgp_Array1OfPnt & TabPnt); - /****************** Curve ******************/ - /**** md5 signature: 0630c6e9c6389a7dc96b7349978e4968 ****/ + /****** AppParCurves_MultiCurve::Curve ******/ + /****** md5 signature: 0630c6e9c6389a7dc96b7349978e4968 ******/ %feature("compactdefaultargs") Curve; %feature("autodoc", " Parameters @@ -437,8 +437,8 @@ Returns the pole array of the curve of range cuindex. an exception is raised if ") Curve; void Curve(const Standard_Integer CuIndex, TColgp_Array1OfPnt2d & TabPnt); - /****************** D1 ******************/ - /**** md5 signature: 69608dcd334935ba9947cc6e8407f786 ****/ + /****** AppParCurves_MultiCurve::D1 ******/ + /****** md5 signature: 69608dcd334935ba9947cc6e8407f786 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -458,8 +458,8 @@ Returns the value of the point with a parameter u on the bezier curve number cui ") D1; virtual void D1(const Standard_Integer CuIndex, const Standard_Real U, gp_Pnt & Pt, gp_Vec & V1); - /****************** D1 ******************/ - /**** md5 signature: 1f28a5a9cca3a0612c23df38e60e2835 ****/ + /****** AppParCurves_MultiCurve::D1 ******/ + /****** md5 signature: 1f28a5a9cca3a0612c23df38e60e2835 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -479,8 +479,8 @@ Returns the value of the point with a parameter u on the bezier curve number cui ") D1; virtual void D1(const Standard_Integer CuIndex, const Standard_Real U, gp_Pnt2d & Pt, gp_Vec2d & V1); - /****************** D2 ******************/ - /**** md5 signature: d386ba7a5dc9ea89f545a921999c606a ****/ + /****** AppParCurves_MultiCurve::D2 ******/ + /****** md5 signature: d386ba7a5dc9ea89f545a921999c606a ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -501,8 +501,8 @@ Returns the value of the point with a parameter u on the bezier curve number cui ") D2; virtual void D2(const Standard_Integer CuIndex, const Standard_Real U, gp_Pnt & Pt, gp_Vec & V1, gp_Vec & V2); - /****************** D2 ******************/ - /**** md5 signature: 88aceafd06974bd21758462d3d3982c8 ****/ + /****** AppParCurves_MultiCurve::D2 ******/ + /****** md5 signature: 88aceafd06974bd21758462d3d3982c8 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -523,8 +523,8 @@ Returns the value of the point with a parameter u on the bezier curve number cui ") D2; virtual void D2(const Standard_Integer CuIndex, const Standard_Real U, gp_Pnt2d & Pt, gp_Vec2d & V1, gp_Vec2d & V2); - /****************** Degree ******************/ - /**** md5 signature: d442d1b77ae7b1ce10d9531914b14be7 ****/ + /****** AppParCurves_MultiCurve::Degree ******/ + /****** md5 signature: d442d1b77ae7b1ce10d9531914b14be7 ******/ %feature("compactdefaultargs") Degree; %feature("autodoc", "Return ------- @@ -536,8 +536,8 @@ Returns the degree of the curves. ") Degree; virtual Standard_Integer Degree(); - /****************** Dimension ******************/ - /**** md5 signature: 233a747292487cfcc269a1edff4efead ****/ + /****** AppParCurves_MultiCurve::Dimension ******/ + /****** md5 signature: 233a747292487cfcc269a1edff4efead ******/ %feature("compactdefaultargs") Dimension; %feature("autodoc", " Parameters @@ -554,8 +554,8 @@ Returns the dimension of the cuindex curve. an exception is raised if cuindex<0 ") Dimension; Standard_Integer Dimension(const Standard_Integer CuIndex); - /****************** Dump ******************/ - /**** md5 signature: 3285fe47a669df0eece9c96593dad879 ****/ + /****** AppParCurves_MultiCurve::Dump ******/ + /****** md5 signature: 3285fe47a669df0eece9c96593dad879 ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", " Parameters @@ -571,8 +571,8 @@ Prints on the stream o information on the current state of the object. is used t ") Dump; virtual void Dump(std::ostream &OutValue); - /****************** NbCurves ******************/ - /**** md5 signature: f7f6dbd981df076443155a5a87b5c223 ****/ + /****** AppParCurves_MultiCurve::NbCurves ******/ + /****** md5 signature: f7f6dbd981df076443155a5a87b5c223 ******/ %feature("compactdefaultargs") NbCurves; %feature("autodoc", "Return ------- @@ -584,8 +584,8 @@ Returns the number of curves resulting from the approximation of a multiline. ") NbCurves; Standard_Integer NbCurves(); - /****************** NbPoles ******************/ - /**** md5 signature: 1b49ced11f88c6092f4e3b2473fe0460 ****/ + /****** AppParCurves_MultiCurve::NbPoles ******/ + /****** md5 signature: 1b49ced11f88c6092f4e3b2473fe0460 ******/ %feature("compactdefaultargs") NbPoles; %feature("autodoc", "Return ------- @@ -597,8 +597,8 @@ Returns the number of poles on curves resulting from the approximation of a mult ") NbPoles; virtual Standard_Integer NbPoles(); - /****************** Pole ******************/ - /**** md5 signature: 7bb8775e90ed8f03169cae266a7799fe ****/ + /****** AppParCurves_MultiCurve::Pole ******/ + /****** md5 signature: 7bb8775e90ed8f03169cae266a7799fe ******/ %feature("compactdefaultargs") Pole; %feature("autodoc", " Parameters @@ -616,8 +616,8 @@ Returns the nieme pole of the cuindex curve. the curve must be a 3d curve. ") Pole; const gp_Pnt Pole(const Standard_Integer CuIndex, const Standard_Integer Nieme); - /****************** Pole2d ******************/ - /**** md5 signature: 880b22a4b3330f19044b87412dc9e9d8 ****/ + /****** AppParCurves_MultiCurve::Pole2d ******/ + /****** md5 signature: 880b22a4b3330f19044b87412dc9e9d8 ******/ %feature("compactdefaultargs") Pole2d; %feature("autodoc", " Parameters @@ -635,8 +635,8 @@ Returns the nieme pole of the cuindex curve. the curve must be a 2d curve. ") Pole2d; const gp_Pnt2d Pole2d(const Standard_Integer CuIndex, const Standard_Integer Nieme); - /****************** SetNbPoles ******************/ - /**** md5 signature: f55c5d785771e333d790c81f3fd2756c ****/ + /****** AppParCurves_MultiCurve::SetNbPoles ******/ + /****** md5 signature: f55c5d785771e333d790c81f3fd2756c ******/ %feature("compactdefaultargs") SetNbPoles; %feature("autodoc", " Parameters @@ -653,8 +653,8 @@ The number of poles of the multicurve will be set to . ") SetNbPoles; void SetNbPoles(const Standard_Integer nbPoles); - /****************** SetValue ******************/ - /**** md5 signature: c785c64b1d8f4f0cfc1d59599a082232 ****/ + /****** AppParCurves_MultiCurve::SetValue ******/ + /****** md5 signature: c785c64b1d8f4f0cfc1d59599a082232 ******/ %feature("compactdefaultargs") SetValue; %feature("autodoc", " Parameters @@ -672,8 +672,8 @@ Sets the multipoint of range index to the value . an exception is raised ") SetValue; void SetValue(const Standard_Integer Index, const AppParCurves_MultiPoint & MPoint); - /****************** Transform ******************/ - /**** md5 signature: eeafca59c4aa3844b7ef4b2a2000138b ****/ + /****** AppParCurves_MultiCurve::Transform ******/ + /****** md5 signature: eeafca59c4aa3844b7ef4b2a2000138b ******/ %feature("compactdefaultargs") Transform; %feature("autodoc", " Parameters @@ -696,8 +696,8 @@ Applies a transformation to the curve of range . newx = x + dx*oldx new ") Transform; void Transform(const Standard_Integer CuIndex, const Standard_Real x, const Standard_Real dx, const Standard_Real y, const Standard_Real dy, const Standard_Real z, const Standard_Real dz); - /****************** Transform2d ******************/ - /**** md5 signature: f971a79006ea32dbdba557f63bde3045 ****/ + /****** AppParCurves_MultiCurve::Transform2d ******/ + /****** md5 signature: f971a79006ea32dbdba557f63bde3045 ******/ %feature("compactdefaultargs") Transform2d; %feature("autodoc", " Parameters @@ -718,8 +718,8 @@ Applies a transformation to the curve of range . newx = x + dx*oldx new ") Transform2d; void Transform2d(const Standard_Integer CuIndex, const Standard_Real x, const Standard_Real dx, const Standard_Real y, const Standard_Real dy); - /****************** Value ******************/ - /**** md5 signature: d01350fa8fbaba6cf60b90df24a52acd ****/ + /****** AppParCurves_MultiCurve::Value ******/ + /****** md5 signature: d01350fa8fbaba6cf60b90df24a52acd ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -736,8 +736,8 @@ Returns the index multipoint. an exception is raised if index <0 or index >degre ") Value; AppParCurves_MultiPoint Value(const Standard_Integer Index); - /****************** Value ******************/ - /**** md5 signature: 36d681f12c55158bec87d7926565a2ae ****/ + /****** AppParCurves_MultiCurve::Value ******/ + /****** md5 signature: 36d681f12c55158bec87d7926565a2ae ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -756,8 +756,8 @@ Returns the value of the point with a parameter u on the bezier curve number cui ") Value; virtual void Value(const Standard_Integer CuIndex, const Standard_Real U, gp_Pnt & Pt); - /****************** Value ******************/ - /**** md5 signature: 502a825f28e07eac0d63ead931b327a4 ****/ + /****** AppParCurves_MultiCurve::Value ******/ + /****** md5 signature: 502a825f28e07eac0d63ead931b327a4 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -790,8 +790,8 @@ Returns the value of the point with a parameter u on the bezier curve number cui ********************************/ class AppParCurves_MultiPoint { public: - /****************** AppParCurves_MultiPoint ******************/ - /**** md5 signature: bdc6941dcf0660c86661916e3a73590f ****/ + /****** AppParCurves_MultiPoint::AppParCurves_MultiPoint ******/ + /****** md5 signature: bdc6941dcf0660c86661916e3a73590f ******/ %feature("compactdefaultargs") AppParCurves_MultiPoint; %feature("autodoc", "Return ------- @@ -803,8 +803,8 @@ Creates an indefinite multipoint. ") AppParCurves_MultiPoint; AppParCurves_MultiPoint(); - /****************** AppParCurves_MultiPoint ******************/ - /**** md5 signature: f2c4d8495da5191c569ee4cd81862aed ****/ + /****** AppParCurves_MultiPoint::AppParCurves_MultiPoint ******/ + /****** md5 signature: f2c4d8495da5191c569ee4cd81862aed ******/ %feature("compactdefaultargs") AppParCurves_MultiPoint; %feature("autodoc", " Parameters @@ -822,8 +822,8 @@ Constructs a set of points used to approximate a multiline. these points can be ") AppParCurves_MultiPoint; AppParCurves_MultiPoint(const Standard_Integer NbPoints, const Standard_Integer NbPoints2d); - /****************** AppParCurves_MultiPoint ******************/ - /**** md5 signature: 098d62ea6d68baf166c4e47892f5582a ****/ + /****** AppParCurves_MultiPoint::AppParCurves_MultiPoint ******/ + /****** md5 signature: 098d62ea6d68baf166c4e47892f5582a ******/ %feature("compactdefaultargs") AppParCurves_MultiPoint; %feature("autodoc", " Parameters @@ -840,8 +840,8 @@ Creates a multipoint only composed of 3d points. ") AppParCurves_MultiPoint; AppParCurves_MultiPoint(const TColgp_Array1OfPnt & tabP); - /****************** AppParCurves_MultiPoint ******************/ - /**** md5 signature: c08efd211c7d4211982830578522853e ****/ + /****** AppParCurves_MultiPoint::AppParCurves_MultiPoint ******/ + /****** md5 signature: c08efd211c7d4211982830578522853e ******/ %feature("compactdefaultargs") AppParCurves_MultiPoint; %feature("autodoc", " Parameters @@ -858,8 +858,8 @@ Creates a multipoint only composed of 2d points. ") AppParCurves_MultiPoint; AppParCurves_MultiPoint(const TColgp_Array1OfPnt2d & tabP2d); - /****************** AppParCurves_MultiPoint ******************/ - /**** md5 signature: 6edc620d44780f5e3d5ef9bc7b67f769 ****/ + /****** AppParCurves_MultiPoint::AppParCurves_MultiPoint ******/ + /****** md5 signature: 6edc620d44780f5e3d5ef9bc7b67f769 ******/ %feature("compactdefaultargs") AppParCurves_MultiPoint; %feature("autodoc", " Parameters @@ -877,8 +877,8 @@ Constructs a set of points used to approximate a multiline. these points can be ") AppParCurves_MultiPoint; AppParCurves_MultiPoint(const TColgp_Array1OfPnt & tabP, const TColgp_Array1OfPnt2d & tabP2d); - /****************** Dimension ******************/ - /**** md5 signature: d62b6204616825059e668380c046a413 ****/ + /****** AppParCurves_MultiPoint::Dimension ******/ + /****** md5 signature: d62b6204616825059e668380c046a413 ******/ %feature("compactdefaultargs") Dimension; %feature("autodoc", " Parameters @@ -895,8 +895,8 @@ Returns the dimension of the point of range index. an exception is raised if ind ") Dimension; Standard_Integer Dimension(const Standard_Integer Index); - /****************** Dump ******************/ - /**** md5 signature: 3285fe47a669df0eece9c96593dad879 ****/ + /****** AppParCurves_MultiPoint::Dump ******/ + /****** md5 signature: 3285fe47a669df0eece9c96593dad879 ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", " Parameters @@ -912,8 +912,8 @@ Prints on the stream o information on the current state of the object. is used t ") Dump; virtual void Dump(std::ostream &OutValue); - /****************** NbPoints ******************/ - /**** md5 signature: 1d4bbbd7c4dda4f1e56c00ae994bedbe ****/ + /****** AppParCurves_MultiPoint::NbPoints ******/ + /****** md5 signature: 1d4bbbd7c4dda4f1e56c00ae994bedbe ******/ %feature("compactdefaultargs") NbPoints; %feature("autodoc", "Return ------- @@ -925,8 +925,8 @@ Returns the number of points of dimension 3d. ") NbPoints; Standard_Integer NbPoints(); - /****************** NbPoints2d ******************/ - /**** md5 signature: 04e861cb3ea7014064e18d2efa74916e ****/ + /****** AppParCurves_MultiPoint::NbPoints2d ******/ + /****** md5 signature: 04e861cb3ea7014064e18d2efa74916e ******/ %feature("compactdefaultargs") NbPoints2d; %feature("autodoc", "Return ------- @@ -938,8 +938,8 @@ Returns the number of points of dimension 2d. ") NbPoints2d; Standard_Integer NbPoints2d(); - /****************** Point ******************/ - /**** md5 signature: ee1d88fa34d027a5da9aa36f1333c940 ****/ + /****** AppParCurves_MultiPoint::Point ******/ + /****** md5 signature: ee1d88fa34d027a5da9aa36f1333c940 ******/ %feature("compactdefaultargs") Point; %feature("autodoc", " Parameters @@ -956,8 +956,8 @@ Returns the 3d point of range index. an exception is raised if index < 0 or inde ") Point; const gp_Pnt Point(const Standard_Integer Index); - /****************** Point2d ******************/ - /**** md5 signature: 63958a48bde67c8c9498c94bf226f0c1 ****/ + /****** AppParCurves_MultiPoint::Point2d ******/ + /****** md5 signature: 63958a48bde67c8c9498c94bf226f0c1 ******/ %feature("compactdefaultargs") Point2d; %feature("autodoc", " Parameters @@ -974,8 +974,8 @@ Returns the 2d point of range index. an exception is raised if index <= number o ") Point2d; const gp_Pnt2d Point2d(const Standard_Integer Index); - /****************** SetPoint ******************/ - /**** md5 signature: eec4edf464bf53e171f2a10ed56a6a90 ****/ + /****** AppParCurves_MultiPoint::SetPoint ******/ + /****** md5 signature: eec4edf464bf53e171f2a10ed56a6a90 ******/ %feature("compactdefaultargs") SetPoint; %feature("autodoc", " Parameters @@ -993,8 +993,8 @@ The 3d point of range index of this multipoint is set to . an exception i ") SetPoint; void SetPoint(const Standard_Integer Index, const gp_Pnt & Point); - /****************** SetPoint2d ******************/ - /**** md5 signature: d4ab7252bb9c5fc36d58e13ed8204cd7 ****/ + /****** AppParCurves_MultiPoint::SetPoint2d ******/ + /****** md5 signature: d4ab7252bb9c5fc36d58e13ed8204cd7 ******/ %feature("compactdefaultargs") SetPoint2d; %feature("autodoc", " Parameters @@ -1012,8 +1012,8 @@ The 2d point of range index is set to . an exception is raised if index > ") SetPoint2d; void SetPoint2d(const Standard_Integer Index, const gp_Pnt2d & Point); - /****************** Transform ******************/ - /**** md5 signature: eeafca59c4aa3844b7ef4b2a2000138b ****/ + /****** AppParCurves_MultiPoint::Transform ******/ + /****** md5 signature: eeafca59c4aa3844b7ef4b2a2000138b ******/ %feature("compactdefaultargs") Transform; %feature("autodoc", " Parameters @@ -1036,8 +1036,8 @@ Applies a transformation to the curve of range . newx = x + dx*oldx new ") Transform; void Transform(const Standard_Integer CuIndex, const Standard_Real x, const Standard_Real dx, const Standard_Real y, const Standard_Real dy, const Standard_Real z, const Standard_Real dz); - /****************** Transform2d ******************/ - /**** md5 signature: f971a79006ea32dbdba557f63bde3045 ****/ + /****** AppParCurves_MultiPoint::Transform2d ******/ + /****** md5 signature: f971a79006ea32dbdba557f63bde3045 ******/ %feature("compactdefaultargs") Transform2d; %feature("autodoc", " Parameters @@ -1072,8 +1072,8 @@ Applies a transformation to the curve of range . newx = x + dx*oldx new ***********************************/ class AppParCurves_MultiBSpCurve : public AppParCurves_MultiCurve { public: - /****************** AppParCurves_MultiBSpCurve ******************/ - /**** md5 signature: af68efb34081b4614004b429064cf90d ****/ + /****** AppParCurves_MultiBSpCurve::AppParCurves_MultiBSpCurve ******/ + /****** md5 signature: af68efb34081b4614004b429064cf90d ******/ %feature("compactdefaultargs") AppParCurves_MultiBSpCurve; %feature("autodoc", "Return ------- @@ -1085,8 +1085,8 @@ Returns an indefinite multibspcurve. ") AppParCurves_MultiBSpCurve; AppParCurves_MultiBSpCurve(); - /****************** AppParCurves_MultiBSpCurve ******************/ - /**** md5 signature: 17ea5f61b50de55b2f0643399d4bf222 ****/ + /****** AppParCurves_MultiBSpCurve::AppParCurves_MultiBSpCurve ******/ + /****** md5 signature: 17ea5f61b50de55b2f0643399d4bf222 ******/ %feature("compactdefaultargs") AppParCurves_MultiBSpCurve; %feature("autodoc", " Parameters @@ -1103,8 +1103,8 @@ Creates a multibspcurve, describing bspline curves all containing the same numbe ") AppParCurves_MultiBSpCurve; AppParCurves_MultiBSpCurve(const Standard_Integer NbPol); - /****************** AppParCurves_MultiBSpCurve ******************/ - /**** md5 signature: 2e6a299ac2191b7c00835e952bab3994 ****/ + /****** AppParCurves_MultiBSpCurve::AppParCurves_MultiBSpCurve ******/ + /****** md5 signature: 2e6a299ac2191b7c00835e952bab3994 ******/ %feature("compactdefaultargs") AppParCurves_MultiBSpCurve; %feature("autodoc", " Parameters @@ -1123,8 +1123,8 @@ Creates a multibspcurve, describing bspline curves all containing the same numbe ") AppParCurves_MultiBSpCurve; AppParCurves_MultiBSpCurve(const AppParCurves_Array1OfMultiPoint & tabMU, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults); - /****************** AppParCurves_MultiBSpCurve ******************/ - /**** md5 signature: 667077f62ca87194425908092d8f377e ****/ + /****** AppParCurves_MultiBSpCurve::AppParCurves_MultiBSpCurve ******/ + /****** md5 signature: 667077f62ca87194425908092d8f377e ******/ %feature("compactdefaultargs") AppParCurves_MultiBSpCurve; %feature("autodoc", " Parameters @@ -1143,8 +1143,8 @@ Creates a multibspcurve, describing bspline curves, taking control points from < ") AppParCurves_MultiBSpCurve; AppParCurves_MultiBSpCurve(const AppParCurves_MultiCurve & SC, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults); - /****************** D1 ******************/ - /**** md5 signature: 2dda908a24380d7947dff3bf28b8a69a ****/ + /****** AppParCurves_MultiBSpCurve::D1 ******/ + /****** md5 signature: 2dda908a24380d7947dff3bf28b8a69a ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -1164,8 +1164,8 @@ Returns the value of the point with a parameter u on the bspline curve number cu ") D1; virtual void D1(const Standard_Integer CuIndex, const Standard_Real U, gp_Pnt & Pt, gp_Vec & V1); - /****************** D1 ******************/ - /**** md5 signature: e791658119b85ed908026873615bf4bb ****/ + /****** AppParCurves_MultiBSpCurve::D1 ******/ + /****** md5 signature: e791658119b85ed908026873615bf4bb ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -1185,8 +1185,8 @@ Returns the value of the point with a parameter u on the bspline curve number cu ") D1; virtual void D1(const Standard_Integer CuIndex, const Standard_Real U, gp_Pnt2d & Pt, gp_Vec2d & V1); - /****************** D2 ******************/ - /**** md5 signature: 41a6c63baa5c44cc4ef2a790cd96d410 ****/ + /****** AppParCurves_MultiBSpCurve::D2 ******/ + /****** md5 signature: 41a6c63baa5c44cc4ef2a790cd96d410 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -1207,8 +1207,8 @@ Returns the value of the point with a parameter u on the bspline curve number cu ") D2; virtual void D2(const Standard_Integer CuIndex, const Standard_Real U, gp_Pnt & Pt, gp_Vec & V1, gp_Vec & V2); - /****************** D2 ******************/ - /**** md5 signature: f788853f472545c49cd0c6d9a312a910 ****/ + /****** AppParCurves_MultiBSpCurve::D2 ******/ + /****** md5 signature: f788853f472545c49cd0c6d9a312a910 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -1229,8 +1229,8 @@ Returns the value of the point with a parameter u on the bspline curve number cu ") D2; virtual void D2(const Standard_Integer CuIndex, const Standard_Real U, gp_Pnt2d & Pt, gp_Vec2d & V1, gp_Vec2d & V2); - /****************** Degree ******************/ - /**** md5 signature: 2cd53f6fbda0e87c600a87505cc42c0a ****/ + /****** AppParCurves_MultiBSpCurve::Degree ******/ + /****** md5 signature: 2cd53f6fbda0e87c600a87505cc42c0a ******/ %feature("compactdefaultargs") Degree; %feature("autodoc", "Return ------- @@ -1242,8 +1242,8 @@ Returns the degree of the curve(s). ") Degree; virtual Standard_Integer Degree(); - /****************** Dump ******************/ - /**** md5 signature: b42defe2d7a7208961fa81b225a70479 ****/ + /****** AppParCurves_MultiBSpCurve::Dump ******/ + /****** md5 signature: b42defe2d7a7208961fa81b225a70479 ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", " Parameters @@ -1259,8 +1259,8 @@ Prints on the stream o information on the current state of the object. is used t ") Dump; virtual void Dump(std::ostream &OutValue); - /****************** Knots ******************/ - /**** md5 signature: 8001460ab922c7159116eb85f0693b97 ****/ + /****** AppParCurves_MultiBSpCurve::Knots ******/ + /****** md5 signature: 8001460ab922c7159116eb85f0693b97 ******/ %feature("compactdefaultargs") Knots; %feature("autodoc", "Return ------- @@ -1272,8 +1272,8 @@ Returns an array of reals containing the multiplicities of curves resulting from ") Knots; const TColStd_Array1OfReal & Knots(); - /****************** Multiplicities ******************/ - /**** md5 signature: cde561f92fd30b25ca2f1b1b8716c207 ****/ + /****** AppParCurves_MultiBSpCurve::Multiplicities ******/ + /****** md5 signature: cde561f92fd30b25ca2f1b1b8716c207 ******/ %feature("compactdefaultargs") Multiplicities; %feature("autodoc", "Return ------- @@ -1285,8 +1285,8 @@ Returns an array of reals containing the multiplicities of curves resulting from ") Multiplicities; const TColStd_Array1OfInteger & Multiplicities(); - /****************** SetKnots ******************/ - /**** md5 signature: 1207e3ead5948e7dbb692ff666a8c4c6 ****/ + /****** AppParCurves_MultiBSpCurve::SetKnots ******/ + /****** md5 signature: 1207e3ead5948e7dbb692ff666a8c4c6 ******/ %feature("compactdefaultargs") SetKnots; %feature("autodoc", " Parameters @@ -1303,8 +1303,8 @@ Knots of the multibspcurve are assigned to . ") SetKnots; void SetKnots(const TColStd_Array1OfReal & theKnots); - /****************** SetMultiplicities ******************/ - /**** md5 signature: 88029c3854006126ceb59c1cf2511cad ****/ + /****** AppParCurves_MultiBSpCurve::SetMultiplicities ******/ + /****** md5 signature: 88029c3854006126ceb59c1cf2511cad ******/ %feature("compactdefaultargs") SetMultiplicities; %feature("autodoc", " Parameters @@ -1321,8 +1321,8 @@ Multiplicities of the multibspcurve are assigned to . ") SetMultiplicities; void SetMultiplicities(const TColStd_Array1OfInteger & theMults); - /****************** Value ******************/ - /**** md5 signature: cf964c7cfce5da4040dea30275022f53 ****/ + /****** AppParCurves_MultiBSpCurve::Value ******/ + /****** md5 signature: cf964c7cfce5da4040dea30275022f53 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -1341,8 +1341,8 @@ Returns the value of the point with a parameter u on the bspline curve number cu ") Value; virtual void Value(const Standard_Integer CuIndex, const Standard_Real U, gp_Pnt & Pt); - /****************** Value ******************/ - /**** md5 signature: 9728da3ef76ccc862255f1ef1723d43c ****/ + /****** AppParCurves_MultiBSpCurve::Value ******/ + /****** md5 signature: 9728da3ef76ccc862255f1ef1723d43c ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/AppStd.i b/src/SWIG_files/wrapper/AppStd.i index 957d16da1..269473d6f 100644 --- a/src/SWIG_files/wrapper/AppStd.i +++ b/src/SWIG_files/wrapper/AppStd.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define APPSTDDOCSTRING "AppStd module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_appstd.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_appstd.html" %enddef %module (package="OCC.Core", docstring=APPSTDDOCSTRING) AppStd @@ -109,8 +109,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** ResourcesName ******************/ - /**** md5 signature: 93814b3160304ee63e9655e18518a289 ****/ + /****** AppStd_Application::ResourcesName ******/ + /****** md5 signature: 93814b3160304ee63e9655e18518a289 ******/ %feature("compactdefaultargs") ResourcesName; %feature("autodoc", "Return ------- diff --git a/src/SWIG_files/wrapper/AppStdL.i b/src/SWIG_files/wrapper/AppStdL.i index 1df6f2f80..27a914d3e 100644 --- a/src/SWIG_files/wrapper/AppStdL.i +++ b/src/SWIG_files/wrapper/AppStdL.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define APPSTDLDOCSTRING "AppStdL module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_appstdl.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_appstdl.html" %enddef %module (package="OCC.Core", docstring=APPSTDLDOCSTRING) AppStdL @@ -110,8 +110,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** ResourcesName ******************/ - /**** md5 signature: 93814b3160304ee63e9655e18518a289 ****/ + /****** AppStdL_Application::ResourcesName ******/ + /****** md5 signature: 93814b3160304ee63e9655e18518a289 ******/ %feature("compactdefaultargs") ResourcesName; %feature("autodoc", "Return ------- diff --git a/src/SWIG_files/wrapper/Approx.i b/src/SWIG_files/wrapper/Approx.i index 1887124d4..b73244fe0 100644 --- a/src/SWIG_files/wrapper/Approx.i +++ b/src/SWIG_files/wrapper/Approx.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define APPROXDOCSTRING "Approx module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_approx.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_approx.html" %enddef %module (package="OCC.Core", docstring=APPROXDOCSTRING) Approx @@ -151,8 +151,8 @@ typedef NCollection_Sequence> Approx_ ***********************/ class Approx_Curve2d { public: - /****************** Approx_Curve2d ******************/ - /**** md5 signature: 1cf9afd9ee459ec2a81ee32abee6de50 ****/ + /****** Approx_Curve2d::Approx_Curve2d ******/ + /****** md5 signature: 1cf9afd9ee459ec2a81ee32abee6de50 ******/ %feature("compactdefaultargs") Approx_Curve2d; %feature("autodoc", " Parameters @@ -176,8 +176,8 @@ No available documentation. ") Approx_Curve2d; Approx_Curve2d(const opencascade::handle & C2D, const Standard_Real First, const Standard_Real Last, const Standard_Real TolU, const Standard_Real TolV, const GeomAbs_Shape Continuity, const Standard_Integer MaxDegree, const Standard_Integer MaxSegments); - /****************** Curve ******************/ - /**** md5 signature: 1960069de54819d72fccc75ab85806ec ****/ + /****** Approx_Curve2d::Curve ******/ + /****** md5 signature: 1960069de54819d72fccc75ab85806ec ******/ %feature("compactdefaultargs") Curve; %feature("autodoc", "Return ------- @@ -189,8 +189,8 @@ No available documentation. ") Curve; opencascade::handle Curve(); - /****************** HasResult ******************/ - /**** md5 signature: 345d4b0f7e88f528928167976d8256d5 ****/ + /****** Approx_Curve2d::HasResult ******/ + /****** md5 signature: 345d4b0f7e88f528928167976d8256d5 ******/ %feature("compactdefaultargs") HasResult; %feature("autodoc", "Return ------- @@ -202,8 +202,8 @@ No available documentation. ") HasResult; Standard_Boolean HasResult(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** Approx_Curve2d::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -215,8 +215,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** MaxError2dU ******************/ - /**** md5 signature: 847075004569102dbcc931f742530c0e ****/ + /****** Approx_Curve2d::MaxError2dU ******/ + /****** md5 signature: 847075004569102dbcc931f742530c0e ******/ %feature("compactdefaultargs") MaxError2dU; %feature("autodoc", "Return ------- @@ -228,8 +228,8 @@ No available documentation. ") MaxError2dU; Standard_Real MaxError2dU(); - /****************** MaxError2dV ******************/ - /**** md5 signature: 641a3fe3b7d3b163d6a32b23f94b6eec ****/ + /****** Approx_Curve2d::MaxError2dV ******/ + /****** md5 signature: 641a3fe3b7d3b163d6a32b23f94b6eec ******/ %feature("compactdefaultargs") MaxError2dV; %feature("autodoc", "Return ------- @@ -255,8 +255,8 @@ No available documentation. ***********************/ class Approx_Curve3d { public: - /****************** Approx_Curve3d ******************/ - /**** md5 signature: 4662771ab9a9bb958e880ba73bec8340 ****/ + /****** Approx_Curve3d::Approx_Curve3d ******/ + /****** md5 signature: 4662771ab9a9bb958e880ba73bec8340 ******/ %feature("compactdefaultargs") Approx_Curve3d; %feature("autodoc", " Parameters @@ -277,8 +277,8 @@ Approximation of a curve with respect of the required tolerance tol3d. ") Approx_Curve3d; Approx_Curve3d(const opencascade::handle & Curve, const Standard_Real Tol3d, const GeomAbs_Shape Order, const Standard_Integer MaxSegments, const Standard_Integer MaxDegree); - /****************** Curve ******************/ - /**** md5 signature: 8f61eb8bebb31bbd1fd75a7da450accd ****/ + /****** Approx_Curve3d::Curve ******/ + /****** md5 signature: 8f61eb8bebb31bbd1fd75a7da450accd ******/ %feature("compactdefaultargs") Curve; %feature("autodoc", "Return ------- @@ -290,8 +290,8 @@ No available documentation. ") Curve; opencascade::handle Curve(); - /****************** Dump ******************/ - /**** md5 signature: d37b43e0b2386dc096d5d707876db157 ****/ + /****** Approx_Curve3d::Dump ******/ + /****** md5 signature: d37b43e0b2386dc096d5d707876db157 ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", " Parameters @@ -307,8 +307,8 @@ Print on the stream o information about the object. ") Dump; void Dump(std::ostream &OutValue); - /****************** HasResult ******************/ - /**** md5 signature: 345d4b0f7e88f528928167976d8256d5 ****/ + /****** Approx_Curve3d::HasResult ******/ + /****** md5 signature: 345d4b0f7e88f528928167976d8256d5 ******/ %feature("compactdefaultargs") HasResult; %feature("autodoc", "Return ------- @@ -320,8 +320,8 @@ Returns standard_true if the approximation did come out with a result that is no ") HasResult; Standard_Boolean HasResult(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** Approx_Curve3d::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -333,8 +333,8 @@ Returns standard_true if the approximation has been done within required toleran ") IsDone; Standard_Boolean IsDone(); - /****************** MaxError ******************/ - /**** md5 signature: 90f2419f0b1537a77da84305579339a2 ****/ + /****** Approx_Curve3d::MaxError ******/ + /****** md5 signature: 90f2419f0b1537a77da84305579339a2 ******/ %feature("compactdefaultargs") MaxError; %feature("autodoc", "Return ------- @@ -360,8 +360,8 @@ Returns the maximum error (>0 when an approximation has been done, 0 if no appro ******************************/ class Approx_CurveOnSurface { public: - /****************** Approx_CurveOnSurface ******************/ - /**** md5 signature: 8924b9935f0fc05dc273ee96b9ecd51b ****/ + /****** Approx_CurveOnSurface::Approx_CurveOnSurface ******/ + /****** md5 signature: 8924b9935f0fc05dc273ee96b9ecd51b ******/ %feature("compactdefaultargs") Approx_CurveOnSurface; %feature("autodoc", " Parameters @@ -387,8 +387,8 @@ This constructor calls perform method. this constructor is deprecated. ") Approx_CurveOnSurface; Approx_CurveOnSurface(const opencascade::handle & C2D, const opencascade::handle & Surf, const Standard_Real First, const Standard_Real Last, const Standard_Real Tol, const GeomAbs_Shape Continuity, const Standard_Integer MaxDegree, const Standard_Integer MaxSegments, const Standard_Boolean Only3d = Standard_False, const Standard_Boolean Only2d = Standard_False); - /****************** Approx_CurveOnSurface ******************/ - /**** md5 signature: 6bf6e1de687ad8553d00cd8a3f1f8344 ****/ + /****** Approx_CurveOnSurface::Approx_CurveOnSurface ******/ + /****** md5 signature: 6bf6e1de687ad8553d00cd8a3f1f8344 ******/ %feature("compactdefaultargs") Approx_CurveOnSurface; %feature("autodoc", " Parameters @@ -409,8 +409,8 @@ This constructor does not call perform method. @param thec2d 2d curve to be appr ") Approx_CurveOnSurface; Approx_CurveOnSurface(const opencascade::handle & theC2D, const opencascade::handle & theSurf, const Standard_Real theFirst, const Standard_Real theLast, const Standard_Real theTol); - /****************** Curve2d ******************/ - /**** md5 signature: a68a2dac2ad11e4da3864dc2433ead7f ****/ + /****** Approx_CurveOnSurface::Curve2d ******/ + /****** md5 signature: a68a2dac2ad11e4da3864dc2433ead7f ******/ %feature("compactdefaultargs") Curve2d; %feature("autodoc", "Return ------- @@ -422,8 +422,8 @@ No available documentation. ") Curve2d; opencascade::handle Curve2d(); - /****************** Curve3d ******************/ - /**** md5 signature: 40af7069a21d4ba6c9b73d59c7d6dc50 ****/ + /****** Approx_CurveOnSurface::Curve3d ******/ + /****** md5 signature: 40af7069a21d4ba6c9b73d59c7d6dc50 ******/ %feature("compactdefaultargs") Curve3d; %feature("autodoc", "Return ------- @@ -435,8 +435,8 @@ No available documentation. ") Curve3d; opencascade::handle Curve3d(); - /****************** HasResult ******************/ - /**** md5 signature: 345d4b0f7e88f528928167976d8256d5 ****/ + /****** Approx_CurveOnSurface::HasResult ******/ + /****** md5 signature: 345d4b0f7e88f528928167976d8256d5 ******/ %feature("compactdefaultargs") HasResult; %feature("autodoc", "Return ------- @@ -448,8 +448,8 @@ No available documentation. ") HasResult; Standard_Boolean HasResult(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** Approx_CurveOnSurface::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -461,8 +461,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** MaxError2dU ******************/ - /**** md5 signature: 847075004569102dbcc931f742530c0e ****/ + /****** Approx_CurveOnSurface::MaxError2dU ******/ + /****** md5 signature: 847075004569102dbcc931f742530c0e ******/ %feature("compactdefaultargs") MaxError2dU; %feature("autodoc", "Return ------- @@ -474,8 +474,8 @@ No available documentation. ") MaxError2dU; Standard_Real MaxError2dU(); - /****************** MaxError2dV ******************/ - /**** md5 signature: 641a3fe3b7d3b163d6a32b23f94b6eec ****/ + /****** Approx_CurveOnSurface::MaxError2dV ******/ + /****** md5 signature: 641a3fe3b7d3b163d6a32b23f94b6eec ******/ %feature("compactdefaultargs") MaxError2dV; %feature("autodoc", "Return ------- @@ -487,8 +487,8 @@ Returns the maximum errors relatively to the u component or the v component of t ") MaxError2dV; Standard_Real MaxError2dV(); - /****************** MaxError3d ******************/ - /**** md5 signature: c6ba463cdf4a0e426329b589363186b7 ****/ + /****** Approx_CurveOnSurface::MaxError3d ******/ + /****** md5 signature: c6ba463cdf4a0e426329b589363186b7 ******/ %feature("compactdefaultargs") MaxError3d; %feature("autodoc", "Return ------- @@ -500,8 +500,8 @@ No available documentation. ") MaxError3d; Standard_Real MaxError3d(); - /****************** Perform ******************/ - /**** md5 signature: fe8b2a86aab3827740ea72c22a54e926 ****/ + /****** Approx_CurveOnSurface::Perform ******/ + /****** md5 signature: fe8b2a86aab3827740ea72c22a54e926 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -536,8 +536,8 @@ Constructs the 3d curve. input parameters are ignored when the input curve is u- ************************************/ class Approx_CurvilinearParameter { public: - /****************** Approx_CurvilinearParameter ******************/ - /**** md5 signature: 8d18e8dfacd0a079eb20447b49586c35 ****/ + /****** Approx_CurvilinearParameter::Approx_CurvilinearParameter ******/ + /****** md5 signature: 8d18e8dfacd0a079eb20447b49586c35 ******/ %feature("compactdefaultargs") Approx_CurvilinearParameter; %feature("autodoc", " Parameters @@ -558,8 +558,8 @@ Case of a free 3d curve. ") Approx_CurvilinearParameter; Approx_CurvilinearParameter(const opencascade::handle & C3D, const Standard_Real Tol, const GeomAbs_Shape Order, const Standard_Integer MaxDegree, const Standard_Integer MaxSegments); - /****************** Approx_CurvilinearParameter ******************/ - /**** md5 signature: 55fdfdb6b236c7342a9df38b0c499ba5 ****/ + /****** Approx_CurvilinearParameter::Approx_CurvilinearParameter ******/ + /****** md5 signature: 55fdfdb6b236c7342a9df38b0c499ba5 ******/ %feature("compactdefaultargs") Approx_CurvilinearParameter; %feature("autodoc", " Parameters @@ -581,8 +581,8 @@ Case of a curve on one surface. ") Approx_CurvilinearParameter; Approx_CurvilinearParameter(const opencascade::handle & C2D, const opencascade::handle & Surf, const Standard_Real Tol, const GeomAbs_Shape Order, const Standard_Integer MaxDegree, const Standard_Integer MaxSegments); - /****************** Approx_CurvilinearParameter ******************/ - /**** md5 signature: c239a7061007faa74c11bd361d60ce57 ****/ + /****** Approx_CurvilinearParameter::Approx_CurvilinearParameter ******/ + /****** md5 signature: c239a7061007faa74c11bd361d60ce57 ******/ %feature("compactdefaultargs") Approx_CurvilinearParameter; %feature("autodoc", " Parameters @@ -606,8 +606,8 @@ Case of a curve on two surfaces. ") Approx_CurvilinearParameter; Approx_CurvilinearParameter(const opencascade::handle & C2D1, const opencascade::handle & Surf1, const opencascade::handle & C2D2, const opencascade::handle & Surf2, const Standard_Real Tol, const GeomAbs_Shape Order, const Standard_Integer MaxDegree, const Standard_Integer MaxSegments); - /****************** Curve2d1 ******************/ - /**** md5 signature: 320386716849305473262b1fbe175d01 ****/ + /****** Approx_CurvilinearParameter::Curve2d1 ******/ + /****** md5 signature: 320386716849305473262b1fbe175d01 ******/ %feature("compactdefaultargs") Curve2d1; %feature("autodoc", "Return ------- @@ -619,8 +619,8 @@ Returns the bsplinecurve representing the reparametrized 2d curve on the first s ") Curve2d1; opencascade::handle Curve2d1(); - /****************** Curve2d2 ******************/ - /**** md5 signature: c454b48582ae4e125bffbd0a7c1ecb65 ****/ + /****** Approx_CurvilinearParameter::Curve2d2 ******/ + /****** md5 signature: c454b48582ae4e125bffbd0a7c1ecb65 ******/ %feature("compactdefaultargs") Curve2d2; %feature("autodoc", "Return ------- @@ -632,8 +632,8 @@ Returns the bsplinecurve representing the reparametrized 2d curve on the second ") Curve2d2; opencascade::handle Curve2d2(); - /****************** Curve3d ******************/ - /**** md5 signature: 40af7069a21d4ba6c9b73d59c7d6dc50 ****/ + /****** Approx_CurvilinearParameter::Curve3d ******/ + /****** md5 signature: 40af7069a21d4ba6c9b73d59c7d6dc50 ******/ %feature("compactdefaultargs") Curve3d; %feature("autodoc", "Return ------- @@ -645,8 +645,8 @@ Returns the bspline curve corresponding to the reparametrized 3d curve. ") Curve3d; opencascade::handle Curve3d(); - /****************** Dump ******************/ - /**** md5 signature: d37b43e0b2386dc096d5d707876db157 ****/ + /****** Approx_CurvilinearParameter::Dump ******/ + /****** md5 signature: d37b43e0b2386dc096d5d707876db157 ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", " Parameters @@ -662,8 +662,8 @@ Print the maximum errors(s). ") Dump; void Dump(std::ostream &OutValue); - /****************** HasResult ******************/ - /**** md5 signature: 345d4b0f7e88f528928167976d8256d5 ****/ + /****** Approx_CurvilinearParameter::HasResult ******/ + /****** md5 signature: 345d4b0f7e88f528928167976d8256d5 ******/ %feature("compactdefaultargs") HasResult; %feature("autodoc", "Return ------- @@ -675,8 +675,8 @@ No available documentation. ") HasResult; Standard_Boolean HasResult(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** Approx_CurvilinearParameter::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -688,8 +688,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** MaxError2d1 ******************/ - /**** md5 signature: 455a6dc1101b77daa7669b3852e634a6 ****/ + /****** Approx_CurvilinearParameter::MaxError2d1 ******/ + /****** md5 signature: 455a6dc1101b77daa7669b3852e634a6 ******/ %feature("compactdefaultargs") MaxError2d1; %feature("autodoc", "Return ------- @@ -701,8 +701,8 @@ Returns the maximum error on the first reparametrized 2d curve. ") MaxError2d1; Standard_Real MaxError2d1(); - /****************** MaxError2d2 ******************/ - /**** md5 signature: 415b1db6afd0a77c250335998bc39142 ****/ + /****** Approx_CurvilinearParameter::MaxError2d2 ******/ + /****** md5 signature: 415b1db6afd0a77c250335998bc39142 ******/ %feature("compactdefaultargs") MaxError2d2; %feature("autodoc", "Return ------- @@ -714,8 +714,8 @@ Returns the maximum error on the second reparametrized 2d curve. ") MaxError2d2; Standard_Real MaxError2d2(); - /****************** MaxError3d ******************/ - /**** md5 signature: c6ba463cdf4a0e426329b589363186b7 ****/ + /****** Approx_CurvilinearParameter::MaxError3d ******/ + /****** md5 signature: c6ba463cdf4a0e426329b589363186b7 ******/ %feature("compactdefaultargs") MaxError3d; %feature("autodoc", "Return ------- @@ -741,8 +741,8 @@ Returns the maximum error on the reparametrized 3d curve. ***************************/ class Approx_CurvlinFunc : public Standard_Transient { public: - /****************** Approx_CurvlinFunc ******************/ - /**** md5 signature: c91fd83aabe931a1e52d13473ccfd009 ****/ + /****** Approx_CurvlinFunc::Approx_CurvlinFunc ******/ + /****** md5 signature: c91fd83aabe931a1e52d13473ccfd009 ******/ %feature("compactdefaultargs") Approx_CurvlinFunc; %feature("autodoc", " Parameters @@ -760,8 +760,8 @@ No available documentation. ") Approx_CurvlinFunc; Approx_CurvlinFunc(const opencascade::handle & C, const Standard_Real Tol); - /****************** Approx_CurvlinFunc ******************/ - /**** md5 signature: c69a4fe4cbfe7c5d7648f238e2e8b84a ****/ + /****** Approx_CurvlinFunc::Approx_CurvlinFunc ******/ + /****** md5 signature: c69a4fe4cbfe7c5d7648f238e2e8b84a ******/ %feature("compactdefaultargs") Approx_CurvlinFunc; %feature("autodoc", " Parameters @@ -780,8 +780,8 @@ No available documentation. ") Approx_CurvlinFunc; Approx_CurvlinFunc(const opencascade::handle & C2D, const opencascade::handle & S, const Standard_Real Tol); - /****************** Approx_CurvlinFunc ******************/ - /**** md5 signature: d04cb6fd18225e82ef40a4e61e7e3bdf ****/ + /****** Approx_CurvlinFunc::Approx_CurvlinFunc ******/ + /****** md5 signature: d04cb6fd18225e82ef40a4e61e7e3bdf ******/ %feature("compactdefaultargs") Approx_CurvlinFunc; %feature("autodoc", " Parameters @@ -802,8 +802,8 @@ No available documentation. ") Approx_CurvlinFunc; Approx_CurvlinFunc(const opencascade::handle & C2D1, const opencascade::handle & C2D2, const opencascade::handle & S1, const opencascade::handle & S2, const Standard_Real Tol); - /****************** EvalCase1 ******************/ - /**** md5 signature: d6f977aec2ba6ef7261ad448995f2a1d ****/ + /****** Approx_CurvlinFunc::EvalCase1 ******/ + /****** md5 signature: d6f977aec2ba6ef7261ad448995f2a1d ******/ %feature("compactdefaultargs") EvalCase1; %feature("autodoc", " Parameters @@ -822,8 +822,8 @@ If mycase != 1. ") EvalCase1; Standard_Boolean EvalCase1(const Standard_Real S, const Standard_Integer Order, TColStd_Array1OfReal & Result); - /****************** EvalCase2 ******************/ - /**** md5 signature: af7190c5733447d4dcb3107db703f25d ****/ + /****** Approx_CurvlinFunc::EvalCase2 ******/ + /****** md5 signature: af7190c5733447d4dcb3107db703f25d ******/ %feature("compactdefaultargs") EvalCase2; %feature("autodoc", " Parameters @@ -842,8 +842,8 @@ If mycase != 2. ") EvalCase2; Standard_Boolean EvalCase2(const Standard_Real S, const Standard_Integer Order, TColStd_Array1OfReal & Result); - /****************** EvalCase3 ******************/ - /**** md5 signature: 6ecbd89f3323d6c9fcd40c282e079d3c ****/ + /****** Approx_CurvlinFunc::EvalCase3 ******/ + /****** md5 signature: 6ecbd89f3323d6c9fcd40c282e079d3c ******/ %feature("compactdefaultargs") EvalCase3; %feature("autodoc", " Parameters @@ -862,8 +862,8 @@ If mycase != 3. ") EvalCase3; Standard_Boolean EvalCase3(const Standard_Real S, const Standard_Integer Order, TColStd_Array1OfReal & Result); - /****************** FirstParameter ******************/ - /**** md5 signature: 4ccedbaad83be904f510b4760c75f69c ****/ + /****** Approx_CurvlinFunc::FirstParameter ******/ + /****** md5 signature: 4ccedbaad83be904f510b4760c75f69c ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", "Return ------- @@ -875,8 +875,8 @@ No available documentation. ") FirstParameter; Standard_Real FirstParameter(); - /****************** GetLength ******************/ - /**** md5 signature: 9390a920d888683f8b474026b2d95a49 ****/ + /****** Approx_CurvlinFunc::GetLength ******/ + /****** md5 signature: 9390a920d888683f8b474026b2d95a49 ******/ %feature("compactdefaultargs") GetLength; %feature("autodoc", "Return ------- @@ -888,8 +888,8 @@ No available documentation. ") GetLength; Standard_Real GetLength(); - /****************** GetSParameter ******************/ - /**** md5 signature: de8883031fb26c06bc41920f0af259b5 ****/ + /****** Approx_CurvlinFunc::GetSParameter ******/ + /****** md5 signature: de8883031fb26c06bc41920f0af259b5 ******/ %feature("compactdefaultargs") GetSParameter; %feature("autodoc", " Parameters @@ -906,8 +906,8 @@ Returns original parameter corresponding s. ") GetSParameter; Standard_Real GetSParameter(const Standard_Real U); - /****************** GetUParameter ******************/ - /**** md5 signature: a288323291b5a7c86e97e5e379347550 ****/ + /****** Approx_CurvlinFunc::GetUParameter ******/ + /****** md5 signature: a288323291b5a7c86e97e5e379347550 ******/ %feature("compactdefaultargs") GetUParameter; %feature("autodoc", " Parameters @@ -926,8 +926,8 @@ Returns original parameter corresponding s. if case == 1 computation is performe ") GetUParameter; Standard_Real GetUParameter(Adaptor3d_Curve & C, const Standard_Real S, const Standard_Integer NumberOfCurve); - /****************** Intervals ******************/ - /**** md5 signature: c7a2f17df7514293a67a56baae0afb68 ****/ + /****** Approx_CurvlinFunc::Intervals ******/ + /****** md5 signature: c7a2f17df7514293a67a56baae0afb68 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -945,8 +945,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** LastParameter ******************/ - /**** md5 signature: 7cdf630921ee47ad365a5a6bafd4b46e ****/ + /****** Approx_CurvlinFunc::LastParameter ******/ + /****** md5 signature: 7cdf630921ee47ad365a5a6bafd4b46e ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", "Return ------- @@ -958,8 +958,8 @@ No available documentation. ") LastParameter; Standard_Real LastParameter(); - /****************** Length ******************/ - /**** md5 signature: 389864b782ecf5fea5b568ea6b4ee166 ****/ + /****** Approx_CurvlinFunc::Length ******/ + /****** md5 signature: 389864b782ecf5fea5b568ea6b4ee166 ******/ %feature("compactdefaultargs") Length; %feature("autodoc", "Return ------- @@ -971,8 +971,8 @@ Computes length of the curve. ") Length; void Length(); - /****************** Length ******************/ - /**** md5 signature: a36b32537f2aaeb51d308d784a8bcd1e ****/ + /****** Approx_CurvlinFunc::Length ******/ + /****** md5 signature: a36b32537f2aaeb51d308d784a8bcd1e ******/ %feature("compactdefaultargs") Length; %feature("autodoc", " Parameters @@ -991,8 +991,8 @@ Computes length of the curve segment. ") Length; Standard_Real Length(Adaptor3d_Curve & C, const Standard_Real FirstU, const Standard_Real LasrU); - /****************** NbIntervals ******************/ - /**** md5 signature: a9cec7e4e6cb5b355a27e6de1f3fc9d9 ****/ + /****** Approx_CurvlinFunc::NbIntervals ******/ + /****** md5 signature: a9cec7e4e6cb5b355a27e6de1f3fc9d9 ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -1009,8 +1009,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** SetTol ******************/ - /**** md5 signature: 807eaaa5cf0c0afd4dc54d9743374704 ****/ + /****** Approx_CurvlinFunc::SetTol ******/ + /****** md5 signature: 807eaaa5cf0c0afd4dc54d9743374704 ******/ %feature("compactdefaultargs") SetTol; %feature("autodoc", " Parameters @@ -1027,8 +1027,8 @@ Description ") SetTol; void SetTol(const Standard_Real Tol); - /****************** Trim ******************/ - /**** md5 signature: e4c090d64e46a6e2ad68afd1ac49d0f1 ****/ + /****** Approx_CurvlinFunc::Trim ******/ + /****** md5 signature: e4c090d64e46a6e2ad68afd1ac49d0f1 ******/ %feature("compactdefaultargs") Trim; %feature("autodoc", " Parameters @@ -1063,8 +1063,8 @@ If first < 0 or last > 1. ****************************/ class Approx_FitAndDivide { public: - /****************** Approx_FitAndDivide ******************/ - /**** md5 signature: ea3ebc13b87efed4a03fe4693299cd01 ****/ + /****** Approx_FitAndDivide::Approx_FitAndDivide ******/ + /****** md5 signature: ea3ebc13b87efed4a03fe4693299cd01 ******/ %feature("compactdefaultargs") Approx_FitAndDivide; %feature("autodoc", " Parameters @@ -1088,8 +1088,8 @@ The multiline will be approximated until tolerances will be reached. the ") Approx_FitAndDivide; Approx_FitAndDivide(const AppCont_Function & Line, const Standard_Integer degreemin = 3, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-5, const Standard_Real Tolerance2d = 1.0e-5, const Standard_Boolean cutting = Standard_False, const AppParCurves_Constraint FirstC = AppParCurves_TangencyPoint, const AppParCurves_Constraint LastC = AppParCurves_TangencyPoint); - /****************** Approx_FitAndDivide ******************/ - /**** md5 signature: c98a0117adc1bef392f7f6b0763498fd ****/ + /****** Approx_FitAndDivide::Approx_FitAndDivide ******/ + /****** md5 signature: c98a0117adc1bef392f7f6b0763498fd ******/ %feature("compactdefaultargs") Approx_FitAndDivide; %feature("autodoc", " Parameters @@ -1112,8 +1112,8 @@ Initializes the fields of the algorithm. ") Approx_FitAndDivide; Approx_FitAndDivide(const Standard_Integer degreemin = 3, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-05, const Standard_Real Tolerance2d = 1.0e-05, const Standard_Boolean cutting = Standard_False, const AppParCurves_Constraint FirstC = AppParCurves_TangencyPoint, const AppParCurves_Constraint LastC = AppParCurves_TangencyPoint); - /****************** Error ******************/ - /**** md5 signature: 6a8061230005ba951097d8b73e7dbec6 ****/ + /****** Approx_FitAndDivide::Error ******/ + /****** md5 signature: 6a8061230005ba951097d8b73e7dbec6 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -1131,8 +1131,8 @@ Returns the tolerances 2d and 3d of the multicurve. ") Error; void Error(const Standard_Integer Index, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** IsAllApproximated ******************/ - /**** md5 signature: bf42a9f9ee3a867655d96a0c1fdcd853 ****/ + /****** Approx_FitAndDivide::IsAllApproximated ******/ + /****** md5 signature: bf42a9f9ee3a867655d96a0c1fdcd853 ******/ %feature("compactdefaultargs") IsAllApproximated; %feature("autodoc", "Return ------- @@ -1144,8 +1144,8 @@ Returns false if at a moment of the approximation, the status noapproximation ha ") IsAllApproximated; Standard_Boolean IsAllApproximated(); - /****************** IsToleranceReached ******************/ - /**** md5 signature: cbd7380250e74c96655b10c8025eb873 ****/ + /****** Approx_FitAndDivide::IsToleranceReached ******/ + /****** md5 signature: cbd7380250e74c96655b10c8025eb873 ******/ %feature("compactdefaultargs") IsToleranceReached; %feature("autodoc", "Return ------- @@ -1157,8 +1157,8 @@ Returns false if the status nopointsadded has been sent. ") IsToleranceReached; Standard_Boolean IsToleranceReached(); - /****************** NbMultiCurves ******************/ - /**** md5 signature: 944d4af40d93d46a8a3a888df2d8b388 ****/ + /****** Approx_FitAndDivide::NbMultiCurves ******/ + /****** md5 signature: 944d4af40d93d46a8a3a888df2d8b388 ******/ %feature("compactdefaultargs") NbMultiCurves; %feature("autodoc", "Return ------- @@ -1170,8 +1170,8 @@ Returns the number of multicurve doing the approximation of the multiline. ") NbMultiCurves; Standard_Integer NbMultiCurves(); - /****************** Parameters ******************/ - /**** md5 signature: da3dbf6a597566992bf85427f2de867b ****/ + /****** Approx_FitAndDivide::Parameters ******/ + /****** md5 signature: da3dbf6a597566992bf85427f2de867b ******/ %feature("compactdefaultargs") Parameters; %feature("autodoc", " Parameters @@ -1189,8 +1189,8 @@ No available documentation. ") Parameters; void Parameters(const Standard_Integer Index, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Perform ******************/ - /**** md5 signature: caf6a1aea817b16df8ee08ce9b993f4f ****/ + /****** Approx_FitAndDivide::Perform ******/ + /****** md5 signature: caf6a1aea817b16df8ee08ce9b993f4f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1207,8 +1207,8 @@ Runs the algorithm after having initialized the fields. ") Perform; void Perform(const AppCont_Function & Line); - /****************** SetConstraints ******************/ - /**** md5 signature: 99b92dc193142adf44568f800cd394dc ****/ + /****** Approx_FitAndDivide::SetConstraints ******/ + /****** md5 signature: 99b92dc193142adf44568f800cd394dc ******/ %feature("compactdefaultargs") SetConstraints; %feature("autodoc", " Parameters @@ -1226,8 +1226,8 @@ Changes the constraints of the approximation. ") SetConstraints; void SetConstraints(const AppParCurves_Constraint FirstC, const AppParCurves_Constraint LastC); - /****************** SetDegrees ******************/ - /**** md5 signature: 545fdd7d739fa58cc970e73d0413f8ef ****/ + /****** Approx_FitAndDivide::SetDegrees ******/ + /****** md5 signature: 545fdd7d739fa58cc970e73d0413f8ef ******/ %feature("compactdefaultargs") SetDegrees; %feature("autodoc", " Parameters @@ -1245,8 +1245,8 @@ Changes the degrees of the approximation. ") SetDegrees; void SetDegrees(const Standard_Integer degreemin, const Standard_Integer degreemax); - /****************** SetHangChecking ******************/ - /**** md5 signature: 082382da7c6c3da9061b500893941826 ****/ + /****** Approx_FitAndDivide::SetHangChecking ******/ + /****** md5 signature: 082382da7c6c3da9061b500893941826 ******/ %feature("compactdefaultargs") SetHangChecking; %feature("autodoc", " Parameters @@ -1263,8 +1263,8 @@ Set value of hang checking flag if this flag = true, possible hang of algorithm ") SetHangChecking; void SetHangChecking(const Standard_Boolean theHangChecking); - /****************** SetInvOrder ******************/ - /**** md5 signature: 50bac5968816111fd573c6f1be407215 ****/ + /****** Approx_FitAndDivide::SetInvOrder ******/ + /****** md5 signature: 50bac5968816111fd573c6f1be407215 ******/ %feature("compactdefaultargs") SetInvOrder; %feature("autodoc", " Parameters @@ -1281,8 +1281,8 @@ Set inverse order of degree selection: if theinvordr = true, current degree is c ") SetInvOrder; void SetInvOrder(const Standard_Boolean theInvOrder); - /****************** SetMaxSegments ******************/ - /**** md5 signature: 649dded305ab339e1c7f2a819b32eedd ****/ + /****** Approx_FitAndDivide::SetMaxSegments ******/ + /****** md5 signature: 649dded305ab339e1c7f2a819b32eedd ******/ %feature("compactdefaultargs") SetMaxSegments; %feature("autodoc", " Parameters @@ -1299,8 +1299,8 @@ Changes the max number of segments, which is allowed for cutting. ") SetMaxSegments; void SetMaxSegments(const Standard_Integer theMaxSegments); - /****************** SetTolerances ******************/ - /**** md5 signature: ce7879738ace848f7a3a27c56467be10 ****/ + /****** Approx_FitAndDivide::SetTolerances ******/ + /****** md5 signature: ce7879738ace848f7a3a27c56467be10 ******/ %feature("compactdefaultargs") SetTolerances; %feature("autodoc", " Parameters @@ -1318,8 +1318,8 @@ Changes the tolerances of the approximation. ") SetTolerances; void SetTolerances(const Standard_Real Tolerance3d, const Standard_Real Tolerance2d); - /****************** Value ******************/ - /**** md5 signature: 89790f3ff3d6d18a45f409a34e79bd67 ****/ + /****** Approx_FitAndDivide::Value ******/ + /****** md5 signature: 89790f3ff3d6d18a45f409a34e79bd67 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -1350,8 +1350,8 @@ Returns the approximation multicurve of range . ******************************/ class Approx_FitAndDivide2d { public: - /****************** Approx_FitAndDivide2d ******************/ - /**** md5 signature: 661477a957a15a70835b41b5c2bb9698 ****/ + /****** Approx_FitAndDivide2d::Approx_FitAndDivide2d ******/ + /****** md5 signature: 661477a957a15a70835b41b5c2bb9698 ******/ %feature("compactdefaultargs") Approx_FitAndDivide2d; %feature("autodoc", " Parameters @@ -1375,8 +1375,8 @@ The multiline will be approximated until tolerances will be reached. the ") Approx_FitAndDivide2d; Approx_FitAndDivide2d(const AppCont_Function & Line, const Standard_Integer degreemin = 3, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-5, const Standard_Real Tolerance2d = 1.0e-5, const Standard_Boolean cutting = Standard_False, const AppParCurves_Constraint FirstC = AppParCurves_TangencyPoint, const AppParCurves_Constraint LastC = AppParCurves_TangencyPoint); - /****************** Approx_FitAndDivide2d ******************/ - /**** md5 signature: bca52594fb84bdf1c9b46ce4d487e8cb ****/ + /****** Approx_FitAndDivide2d::Approx_FitAndDivide2d ******/ + /****** md5 signature: bca52594fb84bdf1c9b46ce4d487e8cb ******/ %feature("compactdefaultargs") Approx_FitAndDivide2d; %feature("autodoc", " Parameters @@ -1399,8 +1399,8 @@ Initializes the fields of the algorithm. ") Approx_FitAndDivide2d; Approx_FitAndDivide2d(const Standard_Integer degreemin = 3, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-05, const Standard_Real Tolerance2d = 1.0e-05, const Standard_Boolean cutting = Standard_False, const AppParCurves_Constraint FirstC = AppParCurves_TangencyPoint, const AppParCurves_Constraint LastC = AppParCurves_TangencyPoint); - /****************** Error ******************/ - /**** md5 signature: 6a8061230005ba951097d8b73e7dbec6 ****/ + /****** Approx_FitAndDivide2d::Error ******/ + /****** md5 signature: 6a8061230005ba951097d8b73e7dbec6 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -1418,8 +1418,8 @@ Returns the tolerances 2d and 3d of the multicurve. ") Error; void Error(const Standard_Integer Index, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** IsAllApproximated ******************/ - /**** md5 signature: bf42a9f9ee3a867655d96a0c1fdcd853 ****/ + /****** Approx_FitAndDivide2d::IsAllApproximated ******/ + /****** md5 signature: bf42a9f9ee3a867655d96a0c1fdcd853 ******/ %feature("compactdefaultargs") IsAllApproximated; %feature("autodoc", "Return ------- @@ -1431,8 +1431,8 @@ Returns false if at a moment of the approximation, the status noapproximation ha ") IsAllApproximated; Standard_Boolean IsAllApproximated(); - /****************** IsToleranceReached ******************/ - /**** md5 signature: cbd7380250e74c96655b10c8025eb873 ****/ + /****** Approx_FitAndDivide2d::IsToleranceReached ******/ + /****** md5 signature: cbd7380250e74c96655b10c8025eb873 ******/ %feature("compactdefaultargs") IsToleranceReached; %feature("autodoc", "Return ------- @@ -1444,8 +1444,8 @@ Returns false if the status nopointsadded has been sent. ") IsToleranceReached; Standard_Boolean IsToleranceReached(); - /****************** NbMultiCurves ******************/ - /**** md5 signature: 944d4af40d93d46a8a3a888df2d8b388 ****/ + /****** Approx_FitAndDivide2d::NbMultiCurves ******/ + /****** md5 signature: 944d4af40d93d46a8a3a888df2d8b388 ******/ %feature("compactdefaultargs") NbMultiCurves; %feature("autodoc", "Return ------- @@ -1457,8 +1457,8 @@ Returns the number of multicurve doing the approximation of the multiline. ") NbMultiCurves; Standard_Integer NbMultiCurves(); - /****************** Parameters ******************/ - /**** md5 signature: da3dbf6a597566992bf85427f2de867b ****/ + /****** Approx_FitAndDivide2d::Parameters ******/ + /****** md5 signature: da3dbf6a597566992bf85427f2de867b ******/ %feature("compactdefaultargs") Parameters; %feature("autodoc", " Parameters @@ -1476,8 +1476,8 @@ No available documentation. ") Parameters; void Parameters(const Standard_Integer Index, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Perform ******************/ - /**** md5 signature: caf6a1aea817b16df8ee08ce9b993f4f ****/ + /****** Approx_FitAndDivide2d::Perform ******/ + /****** md5 signature: caf6a1aea817b16df8ee08ce9b993f4f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1494,8 +1494,8 @@ Runs the algorithm after having initialized the fields. ") Perform; void Perform(const AppCont_Function & Line); - /****************** SetConstraints ******************/ - /**** md5 signature: 99b92dc193142adf44568f800cd394dc ****/ + /****** Approx_FitAndDivide2d::SetConstraints ******/ + /****** md5 signature: 99b92dc193142adf44568f800cd394dc ******/ %feature("compactdefaultargs") SetConstraints; %feature("autodoc", " Parameters @@ -1513,8 +1513,8 @@ Changes the constraints of the approximation. ") SetConstraints; void SetConstraints(const AppParCurves_Constraint FirstC, const AppParCurves_Constraint LastC); - /****************** SetDegrees ******************/ - /**** md5 signature: 545fdd7d739fa58cc970e73d0413f8ef ****/ + /****** Approx_FitAndDivide2d::SetDegrees ******/ + /****** md5 signature: 545fdd7d739fa58cc970e73d0413f8ef ******/ %feature("compactdefaultargs") SetDegrees; %feature("autodoc", " Parameters @@ -1532,8 +1532,8 @@ Changes the degrees of the approximation. ") SetDegrees; void SetDegrees(const Standard_Integer degreemin, const Standard_Integer degreemax); - /****************** SetHangChecking ******************/ - /**** md5 signature: 082382da7c6c3da9061b500893941826 ****/ + /****** Approx_FitAndDivide2d::SetHangChecking ******/ + /****** md5 signature: 082382da7c6c3da9061b500893941826 ******/ %feature("compactdefaultargs") SetHangChecking; %feature("autodoc", " Parameters @@ -1550,8 +1550,8 @@ Set value of hang checking flag if this flag = true, possible hang of algorithm ") SetHangChecking; void SetHangChecking(const Standard_Boolean theHangChecking); - /****************** SetInvOrder ******************/ - /**** md5 signature: 50bac5968816111fd573c6f1be407215 ****/ + /****** Approx_FitAndDivide2d::SetInvOrder ******/ + /****** md5 signature: 50bac5968816111fd573c6f1be407215 ******/ %feature("compactdefaultargs") SetInvOrder; %feature("autodoc", " Parameters @@ -1568,8 +1568,8 @@ Set inverse order of degree selection: if theinvordr = true, current degree is c ") SetInvOrder; void SetInvOrder(const Standard_Boolean theInvOrder); - /****************** SetMaxSegments ******************/ - /**** md5 signature: 649dded305ab339e1c7f2a819b32eedd ****/ + /****** Approx_FitAndDivide2d::SetMaxSegments ******/ + /****** md5 signature: 649dded305ab339e1c7f2a819b32eedd ******/ %feature("compactdefaultargs") SetMaxSegments; %feature("autodoc", " Parameters @@ -1586,8 +1586,8 @@ Changes the max number of segments, which is allowed for cutting. ") SetMaxSegments; void SetMaxSegments(const Standard_Integer theMaxSegments); - /****************** SetTolerances ******************/ - /**** md5 signature: ce7879738ace848f7a3a27c56467be10 ****/ + /****** Approx_FitAndDivide2d::SetTolerances ******/ + /****** md5 signature: ce7879738ace848f7a3a27c56467be10 ******/ %feature("compactdefaultargs") SetTolerances; %feature("autodoc", " Parameters @@ -1605,8 +1605,8 @@ Changes the tolerances of the approximation. ") SetTolerances; void SetTolerances(const Standard_Real Tolerance3d, const Standard_Real Tolerance2d); - /****************** Value ******************/ - /**** md5 signature: 89790f3ff3d6d18a45f409a34e79bd67 ****/ + /****** Approx_FitAndDivide2d::Value ******/ + /****** md5 signature: 89790f3ff3d6d18a45f409a34e79bd67 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -1637,8 +1637,8 @@ Returns the approximation multicurve of range . *********************************/ class Approx_MCurvesToBSpCurve { public: - /****************** Approx_MCurvesToBSpCurve ******************/ - /**** md5 signature: f2ce6c1a8e6e0de7a78187ebdf09738b ****/ + /****** Approx_MCurvesToBSpCurve::Approx_MCurvesToBSpCurve ******/ + /****** md5 signature: f2ce6c1a8e6e0de7a78187ebdf09738b ******/ %feature("compactdefaultargs") Approx_MCurvesToBSpCurve; %feature("autodoc", "Return ------- @@ -1650,8 +1650,8 @@ No available documentation. ") Approx_MCurvesToBSpCurve; Approx_MCurvesToBSpCurve(); - /****************** Append ******************/ - /**** md5 signature: ffc631c7b8994b3171041a1a53a9ce0c ****/ + /****** Approx_MCurvesToBSpCurve::Append ******/ + /****** md5 signature: ffc631c7b8994b3171041a1a53a9ce0c ******/ %feature("compactdefaultargs") Append; %feature("autodoc", " Parameters @@ -1668,8 +1668,8 @@ No available documentation. ") Append; void Append(const AppParCurves_MultiCurve & MC); - /****************** ChangeValue ******************/ - /**** md5 signature: 2275e53c2101f0a946b62e87720ec0a1 ****/ + /****** Approx_MCurvesToBSpCurve::ChangeValue ******/ + /****** md5 signature: 2275e53c2101f0a946b62e87720ec0a1 ******/ %feature("compactdefaultargs") ChangeValue; %feature("autodoc", "Return ------- @@ -1681,8 +1681,8 @@ Return the composite multicurves as a multibspcurve. ") ChangeValue; AppParCurves_MultiBSpCurve ChangeValue(); - /****************** Perform ******************/ - /**** md5 signature: c04b01412cba7220c024b5eb4532697f ****/ + /****** Approx_MCurvesToBSpCurve::Perform ******/ + /****** md5 signature: c04b01412cba7220c024b5eb4532697f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", "Return ------- @@ -1694,8 +1694,8 @@ No available documentation. ") Perform; void Perform(); - /****************** Perform ******************/ - /**** md5 signature: ecc994138ac3982c8ac29315eac11580 ****/ + /****** Approx_MCurvesToBSpCurve::Perform ******/ + /****** md5 signature: ecc994138ac3982c8ac29315eac11580 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1712,8 +1712,8 @@ No available documentation. ") Perform; void Perform(const AppParCurves_SequenceOfMultiCurve & TheSeq); - /****************** Reset ******************/ - /**** md5 signature: 7beb446fe26b948f797f8de87e46c23d ****/ + /****** Approx_MCurvesToBSpCurve::Reset ******/ + /****** md5 signature: 7beb446fe26b948f797f8de87e46c23d ******/ %feature("compactdefaultargs") Reset; %feature("autodoc", "Return ------- @@ -1725,8 +1725,8 @@ No available documentation. ") Reset; void Reset(); - /****************** Value ******************/ - /**** md5 signature: c818c96a9a832640b6267a997c4dbd3b ****/ + /****** Approx_MCurvesToBSpCurve::Value ******/ + /****** md5 signature: c818c96a9a832640b6267a997c4dbd3b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -1753,8 +1753,8 @@ Return the composite multicurves as a multibspcurve. class Approx_SameParameter { public: class Approx_SameParameter_Data {}; - /****************** Approx_SameParameter ******************/ - /**** md5 signature: 2930666ec596179e1ab77039278ff0c2 ****/ + /****** Approx_SameParameter::Approx_SameParameter ******/ + /****** md5 signature: 2930666ec596179e1ab77039278ff0c2 ******/ %feature("compactdefaultargs") Approx_SameParameter; %feature("autodoc", " Parameters @@ -1774,8 +1774,8 @@ Warning: the c3d and c2d must have the same parametric domain. ") Approx_SameParameter; Approx_SameParameter(const opencascade::handle & C3D, const opencascade::handle & C2D, const opencascade::handle & S, const Standard_Real Tol); - /****************** Approx_SameParameter ******************/ - /**** md5 signature: c5ca4b0fa91714a7d8dbbb7f74166b6e ****/ + /****** Approx_SameParameter::Approx_SameParameter ******/ + /****** md5 signature: c5ca4b0fa91714a7d8dbbb7f74166b6e ******/ %feature("compactdefaultargs") Approx_SameParameter; %feature("autodoc", " Parameters @@ -1795,8 +1795,8 @@ Warning: the c3d and c2d must have the same parametric domain. ") Approx_SameParameter; Approx_SameParameter(const opencascade::handle & C3D, const opencascade::handle & C2D, const opencascade::handle & S, const Standard_Real Tol); - /****************** Approx_SameParameter ******************/ - /**** md5 signature: fd528457c519a0cdcaefab6e6d47b26f ****/ + /****** Approx_SameParameter::Approx_SameParameter ******/ + /****** md5 signature: fd528457c519a0cdcaefab6e6d47b26f ******/ %feature("compactdefaultargs") Approx_SameParameter; %feature("autodoc", " Parameters @@ -1816,8 +1816,8 @@ Warning: the c3d and c2d must have the same parametric domain. ") Approx_SameParameter; Approx_SameParameter(const opencascade::handle & C3D, const opencascade::handle & C2D, const opencascade::handle & S, const Standard_Real Tol); - /****************** Curve2d ******************/ - /**** md5 signature: 5fab5e35541cfe36f16f0294e27855ba ****/ + /****** Approx_SameParameter::Curve2d ******/ + /****** md5 signature: 5fab5e35541cfe36f16f0294e27855ba ******/ %feature("compactdefaultargs") Curve2d; %feature("autodoc", "Return ------- @@ -1829,8 +1829,8 @@ Returns the 2d curve that has the same parameter as the 3d curve once evaluated ") Curve2d; opencascade::handle Curve2d(); - /****************** Curve3d ******************/ - /**** md5 signature: bf4d235dc27cc25572185a2b068878b7 ****/ + /****** Approx_SameParameter::Curve3d ******/ + /****** md5 signature: bf4d235dc27cc25572185a2b068878b7 ******/ %feature("compactdefaultargs") Curve3d; %feature("autodoc", "Return ------- @@ -1842,8 +1842,8 @@ Returns the 3d curve that has the same parameter as the 3d curve once evaluated ") Curve3d; opencascade::handle Curve3d(); - /****************** CurveOnSurface ******************/ - /**** md5 signature: 4576c068b1d09f135c33c1fb035c3e4f ****/ + /****** Approx_SameParameter::CurveOnSurface ******/ + /****** md5 signature: 4576c068b1d09f135c33c1fb035c3e4f ******/ %feature("compactdefaultargs") CurveOnSurface; %feature("autodoc", "Return ------- @@ -1855,8 +1855,8 @@ Returns the 3d curve on surface that has the same parameter as the 3d curve up t ") CurveOnSurface; opencascade::handle CurveOnSurface(); - /****************** IsDone ******************/ - /**** md5 signature: e385477ab1bec806154173d4a550fd68 ****/ + /****** Approx_SameParameter::IsDone ******/ + /****** md5 signature: e385477ab1bec806154173d4a550fd68 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -1868,8 +1868,8 @@ Description ") IsDone; Standard_Boolean IsDone(); - /****************** IsSameParameter ******************/ - /**** md5 signature: cc3eb7385472632cf8547c37090fb098 ****/ + /****** Approx_SameParameter::IsSameParameter ******/ + /****** md5 signature: cc3eb7385472632cf8547c37090fb098 ******/ %feature("compactdefaultargs") IsSameParameter; %feature("autodoc", "Return ------- @@ -1881,8 +1881,8 @@ Tells whether the original data had already the same parameter up to the toleran ") IsSameParameter; Standard_Boolean IsSameParameter(); - /****************** TolReached ******************/ - /**** md5 signature: 1f37a98b0772d31c830ed1321616b6c5 ****/ + /****** Approx_SameParameter::TolReached ******/ + /****** md5 signature: 1f37a98b0772d31c830ed1321616b6c5 ******/ %feature("compactdefaultargs") TolReached; %feature("autodoc", "Return ------- @@ -1908,8 +1908,8 @@ Description **********************************/ class Approx_SweepApproximation { public: - /****************** Approx_SweepApproximation ******************/ - /**** md5 signature: 1e58ff1dd49473e8ec1efa55877921aa ****/ + /****** Approx_SweepApproximation::Approx_SweepApproximation ******/ + /****** md5 signature: 1e58ff1dd49473e8ec1efa55877921aa ******/ %feature("compactdefaultargs") Approx_SweepApproximation; %feature("autodoc", " Parameters @@ -1926,8 +1926,8 @@ No available documentation. ") Approx_SweepApproximation; Approx_SweepApproximation(const opencascade::handle & Func); - /****************** Average2dError ******************/ - /**** md5 signature: 8ed28c3aca266ff5de26936a7d153ffb ****/ + /****** Approx_SweepApproximation::Average2dError ******/ + /****** md5 signature: 8ed28c3aca266ff5de26936a7d153ffb ******/ %feature("compactdefaultargs") Average2dError; %feature("autodoc", " Parameters @@ -1944,8 +1944,8 @@ Returns the average error of the 2d curve approximation. ") Average2dError; Standard_Real Average2dError(const Standard_Integer Index); - /****************** AverageErrorOnSurf ******************/ - /**** md5 signature: bac8be79201b06f130f6dd21a4817d03 ****/ + /****** Approx_SweepApproximation::AverageErrorOnSurf ******/ + /****** md5 signature: bac8be79201b06f130f6dd21a4817d03 ******/ %feature("compactdefaultargs") AverageErrorOnSurf; %feature("autodoc", "Return ------- @@ -1957,8 +1957,8 @@ Returns the average error in the surface approximation. ") AverageErrorOnSurf; Standard_Real AverageErrorOnSurf(); - /****************** Curve2d ******************/ - /**** md5 signature: 45f5fb41b7daba7a20d1fb56ead05f0f ****/ + /****** Approx_SweepApproximation::Curve2d ******/ + /****** md5 signature: 45f5fb41b7daba7a20d1fb56ead05f0f ******/ %feature("compactdefaultargs") Curve2d; %feature("autodoc", " Parameters @@ -1978,8 +1978,8 @@ No available documentation. ") Curve2d; void Curve2d(const Standard_Integer Index, TColgp_Array1OfPnt2d & TPoles, TColStd_Array1OfReal & TKnots, TColStd_Array1OfInteger & TMults); - /****************** Curve2dPoles ******************/ - /**** md5 signature: 8df321abd16a4651f96229eab1c5f048 ****/ + /****** Approx_SweepApproximation::Curve2dPoles ******/ + /****** md5 signature: 8df321abd16a4651f96229eab1c5f048 ******/ %feature("compactdefaultargs") Curve2dPoles; %feature("autodoc", " Parameters @@ -1996,8 +1996,8 @@ No available documentation. ") Curve2dPoles; const TColgp_Array1OfPnt2d & Curve2dPoles(const Standard_Integer Index); - /****************** Curves2dDegree ******************/ - /**** md5 signature: 85ba31033da623d05ad75c9b051842b3 ****/ + /****** Approx_SweepApproximation::Curves2dDegree ******/ + /****** md5 signature: 85ba31033da623d05ad75c9b051842b3 ******/ %feature("compactdefaultargs") Curves2dDegree; %feature("autodoc", "Return ------- @@ -2009,8 +2009,8 @@ No available documentation. ") Curves2dDegree; Standard_Integer Curves2dDegree(); - /****************** Curves2dKnots ******************/ - /**** md5 signature: cd12725d88c425f3fe1ebccf9467256f ****/ + /****** Approx_SweepApproximation::Curves2dKnots ******/ + /****** md5 signature: cd12725d88c425f3fe1ebccf9467256f ******/ %feature("compactdefaultargs") Curves2dKnots; %feature("autodoc", "Return ------- @@ -2022,8 +2022,8 @@ No available documentation. ") Curves2dKnots; const TColStd_Array1OfReal & Curves2dKnots(); - /****************** Curves2dMults ******************/ - /**** md5 signature: d4f1ca5a39a589bb289460010c5bbf39 ****/ + /****** Approx_SweepApproximation::Curves2dMults ******/ + /****** md5 signature: d4f1ca5a39a589bb289460010c5bbf39 ******/ %feature("compactdefaultargs") Curves2dMults; %feature("autodoc", "Return ------- @@ -2035,8 +2035,8 @@ No available documentation. ") Curves2dMults; const TColStd_Array1OfInteger & Curves2dMults(); - /****************** Curves2dShape ******************/ - /**** md5 signature: 28bf2faa4b8e811f12223cb99d1721ea ****/ + /****** Approx_SweepApproximation::Curves2dShape ******/ + /****** md5 signature: 28bf2faa4b8e811f12223cb99d1721ea ******/ %feature("compactdefaultargs") Curves2dShape; %feature("autodoc", " Parameters @@ -2054,8 +2054,8 @@ No available documentation. ") Curves2dShape; void Curves2dShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** Dump ******************/ - /**** md5 signature: d37b43e0b2386dc096d5d707876db157 ****/ + /****** Approx_SweepApproximation::Dump ******/ + /****** md5 signature: d37b43e0b2386dc096d5d707876db157 ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", " Parameters @@ -2071,8 +2071,8 @@ Display information on approximation. ") Dump; void Dump(std::ostream &OutValue); - /****************** Eval ******************/ - /**** md5 signature: 71e7f11e45548ac47de3b270019a0b2d ****/ + /****** Approx_SweepApproximation::Eval ******/ + /****** md5 signature: 71e7f11e45548ac47de3b270019a0b2d ******/ %feature("compactdefaultargs") Eval; %feature("autodoc", " Parameters @@ -2092,8 +2092,8 @@ The evaluatorfunction from advapprox;. ") Eval; Standard_Integer Eval(const Standard_Real Parameter, const Standard_Integer DerivativeRequest, const Standard_Real First, const Standard_Real Last, Standard_Real &OutValue); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** Approx_SweepApproximation::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -2105,8 +2105,8 @@ Returns if we have an result. ") IsDone; Standard_Boolean IsDone(); - /****************** Max2dError ******************/ - /**** md5 signature: bb3f56b4b55e0d91b8620b3ad4fad758 ****/ + /****** Approx_SweepApproximation::Max2dError ******/ + /****** md5 signature: bb3f56b4b55e0d91b8620b3ad4fad758 ******/ %feature("compactdefaultargs") Max2dError; %feature("autodoc", " Parameters @@ -2123,8 +2123,8 @@ Returns the maximum error of the 2d curve approximation. ") Max2dError; Standard_Real Max2dError(const Standard_Integer Index); - /****************** MaxErrorOnSurf ******************/ - /**** md5 signature: e42290da593c42adaac24f68c51ecbda ****/ + /****** Approx_SweepApproximation::MaxErrorOnSurf ******/ + /****** md5 signature: e42290da593c42adaac24f68c51ecbda ******/ %feature("compactdefaultargs") MaxErrorOnSurf; %feature("autodoc", "Return ------- @@ -2136,8 +2136,8 @@ Returns the maximum error in the surface approximation. ") MaxErrorOnSurf; Standard_Real MaxErrorOnSurf(); - /****************** NbCurves2d ******************/ - /**** md5 signature: 91ae967daa54efe7d38afad4a5698e5b ****/ + /****** Approx_SweepApproximation::NbCurves2d ******/ + /****** md5 signature: 91ae967daa54efe7d38afad4a5698e5b ******/ %feature("compactdefaultargs") NbCurves2d; %feature("autodoc", "Return ------- @@ -2149,8 +2149,8 @@ No available documentation. ") NbCurves2d; Standard_Integer NbCurves2d(); - /****************** Perform ******************/ - /**** md5 signature: 306f26941735cb759216a105543fe10a ****/ + /****** Approx_SweepApproximation::Perform ******/ + /****** md5 signature: 306f26941735cb759216a105543fe10a ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2175,8 +2175,8 @@ Perform the approximation [first, last]: approx_sweepapproximation.cdl tol3d: to ") Perform; void Perform(const Standard_Real First, const Standard_Real Last, const Standard_Real Tol3d, const Standard_Real BoundTol, const Standard_Real Tol2d, const Standard_Real TolAngular, const GeomAbs_Shape Continuity = GeomAbs_C0, const Standard_Integer Degmax = 11, const Standard_Integer Segmax = 50); - /****************** SurfPoles ******************/ - /**** md5 signature: 33be5d08621b237fcd73b5b9accd2338 ****/ + /****** Approx_SweepApproximation::SurfPoles ******/ + /****** md5 signature: 33be5d08621b237fcd73b5b9accd2338 ******/ %feature("compactdefaultargs") SurfPoles; %feature("autodoc", "Return ------- @@ -2188,8 +2188,8 @@ No available documentation. ") SurfPoles; const TColgp_Array2OfPnt & SurfPoles(); - /****************** SurfShape ******************/ - /**** md5 signature: 6dbc9c018a92aabb9f9d1988ac20cb43 ****/ + /****** Approx_SweepApproximation::SurfShape ******/ + /****** md5 signature: 6dbc9c018a92aabb9f9d1988ac20cb43 ******/ %feature("compactdefaultargs") SurfShape; %feature("autodoc", " Parameters @@ -2210,8 +2210,8 @@ No available documentation. ") SurfShape; void SurfShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** SurfUKnots ******************/ - /**** md5 signature: 30cf4dd9deaf04a1c77052e14ae7392b ****/ + /****** Approx_SweepApproximation::SurfUKnots ******/ + /****** md5 signature: 30cf4dd9deaf04a1c77052e14ae7392b ******/ %feature("compactdefaultargs") SurfUKnots; %feature("autodoc", "Return ------- @@ -2223,8 +2223,8 @@ No available documentation. ") SurfUKnots; const TColStd_Array1OfReal & SurfUKnots(); - /****************** SurfUMults ******************/ - /**** md5 signature: ef046447df8e4b2931da90e1475e731f ****/ + /****** Approx_SweepApproximation::SurfUMults ******/ + /****** md5 signature: ef046447df8e4b2931da90e1475e731f ******/ %feature("compactdefaultargs") SurfUMults; %feature("autodoc", "Return ------- @@ -2236,8 +2236,8 @@ No available documentation. ") SurfUMults; const TColStd_Array1OfInteger & SurfUMults(); - /****************** SurfVKnots ******************/ - /**** md5 signature: 52c9dafc43c5e3713c77d7aa4381da5c ****/ + /****** Approx_SweepApproximation::SurfVKnots ******/ + /****** md5 signature: 52c9dafc43c5e3713c77d7aa4381da5c ******/ %feature("compactdefaultargs") SurfVKnots; %feature("autodoc", "Return ------- @@ -2249,8 +2249,8 @@ No available documentation. ") SurfVKnots; const TColStd_Array1OfReal & SurfVKnots(); - /****************** SurfVMults ******************/ - /**** md5 signature: 589e6536c77c512e7a37f99faf0fa21c ****/ + /****** Approx_SweepApproximation::SurfVMults ******/ + /****** md5 signature: 589e6536c77c512e7a37f99faf0fa21c ******/ %feature("compactdefaultargs") SurfVMults; %feature("autodoc", "Return ------- @@ -2262,8 +2262,8 @@ No available documentation. ") SurfVMults; const TColStd_Array1OfInteger & SurfVMults(); - /****************** SurfWeights ******************/ - /**** md5 signature: 894d2a3f2c33f7d641aef9c7f9e3fa57 ****/ + /****** Approx_SweepApproximation::SurfWeights ******/ + /****** md5 signature: 894d2a3f2c33f7d641aef9c7f9e3fa57 ******/ %feature("compactdefaultargs") SurfWeights; %feature("autodoc", "Return ------- @@ -2275,8 +2275,8 @@ No available documentation. ") SurfWeights; const TColStd_Array2OfReal & SurfWeights(); - /****************** Surface ******************/ - /**** md5 signature: 49bb9dd6da49966f0010e14dd0ffef04 ****/ + /****** Approx_SweepApproximation::Surface ******/ + /****** md5 signature: 49bb9dd6da49966f0010e14dd0ffef04 ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", " Parameters @@ -2298,8 +2298,8 @@ No available documentation. ") Surface; void Surface(TColgp_Array2OfPnt & TPoles, TColStd_Array2OfReal & TWeights, TColStd_Array1OfReal & TUKnots, TColStd_Array1OfReal & TVKnots, TColStd_Array1OfInteger & TUMults, TColStd_Array1OfInteger & TVMults); - /****************** TolCurveOnSurf ******************/ - /**** md5 signature: f21f0f877b35cf67581fa59260f72857 ****/ + /****** Approx_SweepApproximation::TolCurveOnSurf ******/ + /****** md5 signature: f21f0f877b35cf67581fa59260f72857 ******/ %feature("compactdefaultargs") TolCurveOnSurf; %feature("autodoc", " Parameters @@ -2316,8 +2316,8 @@ Returns the maximum 3d error of the 2d curve approximation on the surfac ") TolCurveOnSurf; Standard_Real TolCurveOnSurf(const Standard_Integer Index); - /****************** UDegree ******************/ - /**** md5 signature: f204e5fbf1c49e3d9e4889dfead5a190 ****/ + /****** Approx_SweepApproximation::UDegree ******/ + /****** md5 signature: f204e5fbf1c49e3d9e4889dfead5a190 ******/ %feature("compactdefaultargs") UDegree; %feature("autodoc", "Return ------- @@ -2329,8 +2329,8 @@ No available documentation. ") UDegree; Standard_Integer UDegree(); - /****************** VDegree ******************/ - /**** md5 signature: 4901bdb3b29a5c2410ca93d6a7816f06 ****/ + /****** Approx_SweepApproximation::VDegree ******/ + /****** md5 signature: 4901bdb3b29a5c2410ca93d6a7816f06 ******/ %feature("compactdefaultargs") VDegree; %feature("autodoc", "Return ------- @@ -2357,8 +2357,8 @@ No available documentation. %nodefaultctor Approx_SweepFunction; class Approx_SweepFunction : public Standard_Transient { public: - /****************** BarycentreOfSurf ******************/ - /**** md5 signature: cbc6eaf5619edbfc0f2839466f8de856 ****/ + /****** Approx_SweepFunction::BarycentreOfSurf ******/ + /****** md5 signature: cbc6eaf5619edbfc0f2839466f8de856 ******/ %feature("compactdefaultargs") BarycentreOfSurf; %feature("autodoc", "Return ------- @@ -2370,8 +2370,8 @@ Get the barycentre of surface. an very poor estimation is sufficient. this infor ") BarycentreOfSurf; virtual gp_Pnt BarycentreOfSurf(); - /****************** D0 ******************/ - /**** md5 signature: 59d4398da857a954d97c3c261c2f0d6a ****/ + /****** Approx_SweepFunction::D0 ******/ + /****** md5 signature: 59d4398da857a954d97c3c261c2f0d6a ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -2393,8 +2393,8 @@ Compute the section for v = param. ") D0; virtual Standard_Boolean D0(const Standard_Real Param, const Standard_Real First, const Standard_Real Last, TColgp_Array1OfPnt & Poles, TColgp_Array1OfPnt2d & Poles2d, TColStd_Array1OfReal & Weigths); - /****************** D1 ******************/ - /**** md5 signature: 509d473b60471c40fb84a525daccf7b2 ****/ + /****** Approx_SweepFunction::D1 ******/ + /****** md5 signature: 509d473b60471c40fb84a525daccf7b2 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -2419,8 +2419,8 @@ Compute the first derivative in v direction of the section for v = param warning ") D1; virtual Standard_Boolean D1(const Standard_Real Param, const Standard_Real First, const Standard_Real Last, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths); - /****************** D2 ******************/ - /**** md5 signature: 9688db55fcb73e40afa5da6bce93a93e ****/ + /****** Approx_SweepFunction::D2 ******/ + /****** md5 signature: 9688db55fcb73e40afa5da6bce93a93e ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -2448,8 +2448,8 @@ Compute the second derivative in v direction of the section for v = param warnin ") D2; virtual Standard_Boolean D2(const Standard_Real Param, const Standard_Real First, const Standard_Real Last, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfVec & D2Poles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColgp_Array1OfVec2d & D2Poles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths, TColStd_Array1OfReal & D2Weigths); - /****************** GetMinimalWeight ******************/ - /**** md5 signature: 6fdd12d5da1669c5217b9449c91c0d9e ****/ + /****** Approx_SweepFunction::GetMinimalWeight ******/ + /****** md5 signature: 6fdd12d5da1669c5217b9449c91c0d9e ******/ %feature("compactdefaultargs") GetMinimalWeight; %feature("autodoc", " Parameters @@ -2466,8 +2466,8 @@ Compute the minimal value of weight for each poles in all sections. this informa ") GetMinimalWeight; virtual void GetMinimalWeight(TColStd_Array1OfReal & Weigths); - /****************** GetTolerance ******************/ - /**** md5 signature: 1096196f89d9fc10f33e62e0d43284fe ****/ + /****** Approx_SweepFunction::GetTolerance ******/ + /****** md5 signature: 1096196f89d9fc10f33e62e0d43284fe ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -2487,8 +2487,8 @@ Returns the tolerance to reach in approximation to satisfy. boundtol error at th ") GetTolerance; virtual void GetTolerance(const Standard_Real BoundTol, const Standard_Real SurfTol, const Standard_Real AngleTol, TColStd_Array1OfReal & Tol3d); - /****************** Intervals ******************/ - /**** md5 signature: 7d2bf038a9213acf1609cc1244a3ee03 ****/ + /****** Approx_SweepFunction::Intervals ******/ + /****** md5 signature: 7d2bf038a9213acf1609cc1244a3ee03 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -2506,8 +2506,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; virtual void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsRational ******************/ - /**** md5 signature: e2d546fe827c13e22032dacc2ce90819 ****/ + /****** Approx_SweepFunction::IsRational ******/ + /****** md5 signature: e2d546fe827c13e22032dacc2ce90819 ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -2519,8 +2519,8 @@ Returns if the sections are rationnal or not. ") IsRational; virtual Standard_Boolean IsRational(); - /****************** Knots ******************/ - /**** md5 signature: 7e71a376fdfa4fc27638b1b7f6f203bb ****/ + /****** Approx_SweepFunction::Knots ******/ + /****** md5 signature: 7e71a376fdfa4fc27638b1b7f6f203bb ******/ %feature("compactdefaultargs") Knots; %feature("autodoc", " Parameters @@ -2537,8 +2537,8 @@ Get the knots of the section. ") Knots; virtual void Knots(TColStd_Array1OfReal & TKnots); - /****************** MaximalSection ******************/ - /**** md5 signature: d9acdf10cc3735a15f259a425c017f62 ****/ + /****** Approx_SweepFunction::MaximalSection ******/ + /****** md5 signature: d9acdf10cc3735a15f259a425c017f62 ******/ %feature("compactdefaultargs") MaximalSection; %feature("autodoc", "Return ------- @@ -2550,8 +2550,8 @@ Returns the length of the greater section. thisinformation is useful to g1's con ") MaximalSection; virtual Standard_Real MaximalSection(); - /****************** Mults ******************/ - /**** md5 signature: d5fb3b1381d15914585fd7e6e0eafecb ****/ + /****** Approx_SweepFunction::Mults ******/ + /****** md5 signature: d5fb3b1381d15914585fd7e6e0eafecb ******/ %feature("compactdefaultargs") Mults; %feature("autodoc", " Parameters @@ -2568,8 +2568,8 @@ Get the multplicities of the section. ") Mults; virtual void Mults(TColStd_Array1OfInteger & TMults); - /****************** Nb2dCurves ******************/ - /**** md5 signature: 1badd0e2d38d18f16705a0a708ba7c67 ****/ + /****** Approx_SweepFunction::Nb2dCurves ******/ + /****** md5 signature: 1badd0e2d38d18f16705a0a708ba7c67 ******/ %feature("compactdefaultargs") Nb2dCurves; %feature("autodoc", "Return ------- @@ -2581,8 +2581,8 @@ Get the number of 2d curves to approximate. ") Nb2dCurves; virtual Standard_Integer Nb2dCurves(); - /****************** NbIntervals ******************/ - /**** md5 signature: cb7f68d4b2c30f29cd5ba6f81443d314 ****/ + /****** Approx_SweepFunction::NbIntervals ******/ + /****** md5 signature: cb7f68d4b2c30f29cd5ba6f81443d314 ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -2599,8 +2599,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; virtual Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** Resolution ******************/ - /**** md5 signature: 70b0f0265ef5802a650e7ab2f0220a7e ****/ + /****** Approx_SweepFunction::Resolution ******/ + /****** md5 signature: 70b0f0265ef5802a650e7ab2f0220a7e ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -2619,8 +2619,8 @@ Returns the resolutions in the sub-space 2d this information is usfull t ") Resolution; virtual void Resolution(const Standard_Integer Index, const Standard_Real Tol, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** SectionShape ******************/ - /**** md5 signature: 2709d0545e048eec44ae3de66392188f ****/ + /****** Approx_SweepFunction::SectionShape ******/ + /****** md5 signature: 2709d0545e048eec44ae3de66392188f ******/ %feature("compactdefaultargs") SectionShape; %feature("autodoc", " Parameters @@ -2638,8 +2638,8 @@ Get the format of an section. ") SectionShape; virtual void SectionShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** SetInterval ******************/ - /**** md5 signature: 0547f3a9c04c5f6c0363c26295b2e795 ****/ + /****** Approx_SweepFunction::SetInterval ******/ + /****** md5 signature: 0547f3a9c04c5f6c0363c26295b2e795 ******/ %feature("compactdefaultargs") SetInterval; %feature("autodoc", " Parameters @@ -2657,8 +2657,8 @@ Sets the bounds of the parametric interval on the fonction this determines the d ") SetInterval; virtual void SetInterval(const Standard_Real First, const Standard_Real Last); - /****************** SetTolerance ******************/ - /**** md5 signature: 93e9274684dae026e60334d9dec71409 ****/ + /****** Approx_SweepFunction::SetTolerance ******/ + /****** md5 signature: 93e9274684dae026e60334d9dec71409 ******/ %feature("compactdefaultargs") SetTolerance; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/ApproxInt.i b/src/SWIG_files/wrapper/ApproxInt.i index ecc3b83d6..f84442c84 100644 --- a/src/SWIG_files/wrapper/ApproxInt.i +++ b/src/SWIG_files/wrapper/ApproxInt.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define APPROXINTDOCSTRING "ApproxInt module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_approxint.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_approxint.html" %enddef %module (package="OCC.Core", docstring=APPROXINTDOCSTRING) ApproxInt @@ -100,8 +100,8 @@ from OCC.Core.Exception import * ****************************/ class ApproxInt_KnotTools { public: - /****************** BuildCurvature ******************/ - /**** md5 signature: b62269124f28a23358303630ee8d4ebf ****/ + /****** ApproxInt_KnotTools::BuildCurvature ******/ + /****** md5 signature: b62269124f28a23358303630ee8d4ebf ******/ %feature("compactdefaultargs") BuildCurvature; %feature("autodoc", " Parameters @@ -121,8 +121,8 @@ Builds discrete curvature. ") BuildCurvature; static void BuildCurvature(const NCollection_LocalArray & theCoords, const Standard_Integer theDim, const math_Vector & thePars, TColStd_Array1OfReal & theCurv, Standard_Real &OutValue); - /****************** BuildKnots ******************/ - /**** md5 signature: 49c65485e14fc730360039ad6109a047 ****/ + /****** ApproxInt_KnotTools::BuildKnots ******/ + /****** md5 signature: 49c65485e14fc730360039ad6109a047 ******/ %feature("compactdefaultargs") BuildKnots; %feature("autodoc", " Parameters @@ -147,8 +147,8 @@ Main function to build optimal knot sequence. at least one set from (thepntsxyz, ") BuildKnots; static void BuildKnots(const TColgp_Array1OfPnt & thePntsXYZ, const TColgp_Array1OfPnt2d & thePntsU1V1, const TColgp_Array1OfPnt2d & thePntsU2V2, const math_Vector & thePars, const Standard_Boolean theApproxXYZ, const Standard_Boolean theApproxU1V1, const Standard_Boolean theApproxU2V2, const Standard_Integer theMinNbPnts, NCollection_Vector & theKnots); - /****************** DefineParType ******************/ - /**** md5 signature: e1d91690eade86173e6384cbb3ec9b53 ****/ + /****** ApproxInt_KnotTools::DefineParType ******/ + /****** md5 signature: e1d91690eade86173e6384cbb3ec9b53 ******/ %feature("compactdefaultargs") DefineParType; %feature("autodoc", " Parameters @@ -185,8 +185,8 @@ Defines preferable parametrization type for thewl . %nodefaultctor ApproxInt_SvSurfaces; class ApproxInt_SvSurfaces { public: - /****************** Compute ******************/ - /**** md5 signature: 9bdd8cb0fe1ff936e14f942b7906c8f7 ****/ + /****** ApproxInt_SvSurfaces::Compute ******/ + /****** md5 signature: 9bdd8cb0fe1ff936e14f942b7906c8f7 ******/ %feature("compactdefaultargs") Compute; %feature("autodoc", " Parameters @@ -209,8 +209,8 @@ Returns true if tg,tguv1 tguv2 can be computed. ") Compute; virtual Standard_Boolean Compute(Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue, gp_Pnt & Pt, gp_Vec & Tg, gp_Vec2d & Tguv1, gp_Vec2d & Tguv2); - /****************** GetUseSolver ******************/ - /**** md5 signature: 0cd3174a4b9b13255f5e86b8e6432347 ****/ + /****** ApproxInt_SvSurfaces::GetUseSolver ******/ + /****** md5 signature: 0cd3174a4b9b13255f5e86b8e6432347 ******/ %feature("compactdefaultargs") GetUseSolver; %feature("autodoc", "Return ------- @@ -222,8 +222,8 @@ No available documentation. ") GetUseSolver; virtual Standard_Boolean GetUseSolver(); - /****************** Pnt ******************/ - /**** md5 signature: 16f6732cc231fab7357ba8adcca3b24d ****/ + /****** ApproxInt_SvSurfaces::Pnt ******/ + /****** md5 signature: 16f6732cc231fab7357ba8adcca3b24d ******/ %feature("compactdefaultargs") Pnt; %feature("autodoc", " Parameters @@ -244,8 +244,8 @@ No available documentation. ") Pnt; virtual void Pnt(const Standard_Real u1, const Standard_Real v1, const Standard_Real u2, const Standard_Real v2, gp_Pnt & P); - /****************** SeekPoint ******************/ - /**** md5 signature: 8aa752ba1a03beb45a63885928b32852 ****/ + /****** ApproxInt_SvSurfaces::SeekPoint ******/ + /****** md5 signature: 8aa752ba1a03beb45a63885928b32852 ******/ %feature("compactdefaultargs") SeekPoint; %feature("autodoc", " Parameters @@ -266,8 +266,8 @@ Computes point on curve and parameters on the surfaces. ") SeekPoint; virtual Standard_Boolean SeekPoint(const Standard_Real u1, const Standard_Real v1, const Standard_Real u2, const Standard_Real v2, IntSurf_PntOn2S & Point); - /****************** SetUseSolver ******************/ - /**** md5 signature: 8daf390fbfdad2bd58b32fcfe3098b8e ****/ + /****** ApproxInt_SvSurfaces::SetUseSolver ******/ + /****** md5 signature: 8daf390fbfdad2bd58b32fcfe3098b8e ******/ %feature("compactdefaultargs") SetUseSolver; %feature("autodoc", " Parameters @@ -284,8 +284,8 @@ No available documentation. ") SetUseSolver; void SetUseSolver(const Standard_Boolean theUseSol); - /****************** Tangency ******************/ - /**** md5 signature: 2d07e542429be7042ab790c78def5d62 ****/ + /****** ApproxInt_SvSurfaces::Tangency ******/ + /****** md5 signature: 2d07e542429be7042ab790c78def5d62 ******/ %feature("compactdefaultargs") Tangency; %feature("autodoc", " Parameters @@ -306,8 +306,8 @@ No available documentation. ") Tangency; virtual Standard_Boolean Tangency(const Standard_Real u1, const Standard_Real v1, const Standard_Real u2, const Standard_Real v2, gp_Vec & Tg); - /****************** TangencyOnSurf1 ******************/ - /**** md5 signature: ee7bf3b7674ea843f917140a18295d41 ****/ + /****** ApproxInt_SvSurfaces::TangencyOnSurf1 ******/ + /****** md5 signature: ee7bf3b7674ea843f917140a18295d41 ******/ %feature("compactdefaultargs") TangencyOnSurf1; %feature("autodoc", " Parameters @@ -328,8 +328,8 @@ No available documentation. ") TangencyOnSurf1; virtual Standard_Boolean TangencyOnSurf1(const Standard_Real u1, const Standard_Real v1, const Standard_Real u2, const Standard_Real v2, gp_Vec2d & Tg); - /****************** TangencyOnSurf2 ******************/ - /**** md5 signature: f01fe4b58e226a7dd00bc8969effe750 ****/ + /****** ApproxInt_SvSurfaces::TangencyOnSurf2 ******/ + /****** md5 signature: f01fe4b58e226a7dd00bc8969effe750 ******/ %feature("compactdefaultargs") TangencyOnSurf2; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/Aspect.i b/src/SWIG_files/wrapper/Aspect.i index 8d596f01e..b16d14240 100644 --- a/src/SWIG_files/wrapper/Aspect.i +++ b/src/SWIG_files/wrapper/Aspect.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define ASPECTDOCSTRING "Aspect module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_aspect.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_aspect.html" %enddef %module (package="OCC.Core", docstring=ASPECTDOCSTRING) Aspect @@ -1175,8 +1175,8 @@ typedef void * HANDLE; **************************/ class Aspect_Background { public: - /****************** Aspect_Background ******************/ - /**** md5 signature: c285d3f164d7d45415123925b55dfa2d ****/ + /****** Aspect_Background::Aspect_Background ******/ + /****** md5 signature: c285d3f164d7d45415123925b55dfa2d ******/ %feature("compactdefaultargs") Aspect_Background; %feature("autodoc", "Return ------- @@ -1188,8 +1188,8 @@ Creates a window background. default color: noc_matragray. ") Aspect_Background; Aspect_Background(); - /****************** Aspect_Background ******************/ - /**** md5 signature: 5dbd53dd21ee3414ceec63d3dadf45f2 ****/ + /****** Aspect_Background::Aspect_Background ******/ + /****** md5 signature: 5dbd53dd21ee3414ceec63d3dadf45f2 ******/ %feature("compactdefaultargs") Aspect_Background; %feature("autodoc", " Parameters @@ -1206,8 +1206,8 @@ Creates a window background with the colour . ") Aspect_Background; Aspect_Background(const Quantity_Color & AColor); - /****************** Color ******************/ - /**** md5 signature: b37a2e584a895a08fcf8ead60940b246 ****/ + /****** Aspect_Background::Color ******/ + /****** md5 signature: b37a2e584a895a08fcf8ead60940b246 ******/ %feature("compactdefaultargs") Color; %feature("autodoc", "Return ------- @@ -1240,8 +1240,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** SetColor ******************/ - /**** md5 signature: 5aebf70a123538e7dff670112c56db0d ****/ + /****** Aspect_Background::SetColor ******/ + /****** md5 signature: 5aebf70a123538e7dff670112c56db0d ******/ %feature("compactdefaultargs") SetColor; %feature("autodoc", " Parameters @@ -1272,8 +1272,8 @@ Modifies the colour of the window background . *********************************/ class Aspect_DisplayConnection : public Standard_Transient { public: - /****************** GetDefaultFBConfig ******************/ - /**** md5 signature: 622b64beb2b73c32aace98cc90ab7793 ****/ + /****** Aspect_DisplayConnection::GetDefaultFBConfig ******/ + /****** md5 signature: 622b64beb2b73c32aace98cc90ab7793 ******/ %feature("compactdefaultargs") GetDefaultFBConfig; %feature("autodoc", "Return ------- @@ -1285,8 +1285,8 @@ Return native window fb config (glxfbconfig on xlib). ") GetDefaultFBConfig; Aspect_FBConfig GetDefaultFBConfig(); - /****************** GetDefaultVisualInfo ******************/ - /**** md5 signature: dde27c64c5cbb24e80531c18197370c1 ****/ + /****** Aspect_DisplayConnection::GetDefaultVisualInfo ******/ + /****** md5 signature: dde27c64c5cbb24e80531c18197370c1 ******/ %feature("compactdefaultargs") GetDefaultVisualInfo; %feature("autodoc", "Return ------- @@ -1298,8 +1298,8 @@ Return default window visual or null when undefined. ") GetDefaultVisualInfo; Aspect_XVisualInfo * GetDefaultVisualInfo(); - /****************** GetDisplayAspect ******************/ - /**** md5 signature: b7c859e60cde1d6a2d363b0c0841abb9 ****/ + /****** Aspect_DisplayConnection::GetDisplayAspect ******/ + /****** md5 signature: b7c859e60cde1d6a2d363b0c0841abb9 ******/ %feature("compactdefaultargs") GetDisplayAspect; %feature("autodoc", "Return ------- @@ -1362,8 +1362,8 @@ Return pointer to display structure that serves as the connection to the x serve *********************/ class Aspect_GenId { public: - /****************** Aspect_GenId ******************/ - /**** md5 signature: 569c368c12c13ee3f3906663aa53662b ****/ + /****** Aspect_GenId::Aspect_GenId ******/ + /****** md5 signature: 569c368c12c13ee3f3906663aa53662b ******/ %feature("compactdefaultargs") Aspect_GenId; %feature("autodoc", "Return ------- @@ -1375,8 +1375,8 @@ Creates an available set of identifiers with the lower bound 0 and the upper bou ") Aspect_GenId; Aspect_GenId(); - /****************** Aspect_GenId ******************/ - /**** md5 signature: 3f26c1994924a0cb83cef8d1c5e3f8d3 ****/ + /****** Aspect_GenId::Aspect_GenId ******/ + /****** md5 signature: 3f26c1994924a0cb83cef8d1c5e3f8d3 ******/ %feature("compactdefaultargs") Aspect_GenId; %feature("autodoc", " Parameters @@ -1394,8 +1394,8 @@ Creates an available set of identifiers with specified range. raises identdefini ") Aspect_GenId; Aspect_GenId(const Standard_Integer theLow, const Standard_Integer theUpper); - /****************** Available ******************/ - /**** md5 signature: 697caaa4e9190a2cfddfe8f6ce24ea8c ****/ + /****** Aspect_GenId::Available ******/ + /****** md5 signature: 697caaa4e9190a2cfddfe8f6ce24ea8c ******/ %feature("compactdefaultargs") Available; %feature("autodoc", "Return ------- @@ -1428,8 +1428,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** Free ******************/ - /**** md5 signature: adf04b00a0d9dc585c1f31bcdbc395bf ****/ + /****** Aspect_GenId::Free ******/ + /****** md5 signature: adf04b00a0d9dc585c1f31bcdbc395bf ******/ %feature("compactdefaultargs") Free; %feature("autodoc", "Return ------- @@ -1441,8 +1441,8 @@ Free all identifiers - make the whole range available again. ") Free; void Free(); - /****************** Free ******************/ - /**** md5 signature: 912044af0159c0455ab1de14a2ea922d ****/ + /****** Aspect_GenId::Free ******/ + /****** md5 signature: 912044af0159c0455ab1de14a2ea922d ******/ %feature("compactdefaultargs") Free; %feature("autodoc", " Parameters @@ -1459,8 +1459,8 @@ Free specified identifier. warning - method has no protection against double-fre ") Free; void Free(const Standard_Integer theId); - /****************** HasFree ******************/ - /**** md5 signature: b1851639e312df8e9d1643954f18fb9e ****/ + /****** Aspect_GenId::HasFree ******/ + /****** md5 signature: b1851639e312df8e9d1643954f18fb9e ******/ %feature("compactdefaultargs") HasFree; %feature("autodoc", "Return ------- @@ -1472,8 +1472,8 @@ Returns true if there are available identifiers in range. ") HasFree; Standard_Boolean HasFree(); - /****************** Lower ******************/ - /**** md5 signature: a2a9f1c3c17fa0f26434aadaabeff45a ****/ + /****** Aspect_GenId::Lower ******/ + /****** md5 signature: a2a9f1c3c17fa0f26434aadaabeff45a ******/ %feature("compactdefaultargs") Lower; %feature("autodoc", "Return ------- @@ -1485,8 +1485,8 @@ Returns the lower identifier in range. ") Lower; Standard_Integer Lower(); - /****************** Next ******************/ - /**** md5 signature: e7361d634adcab8f63c24d757e1e478e ****/ + /****** Aspect_GenId::Next ******/ + /****** md5 signature: e7361d634adcab8f63c24d757e1e478e ******/ %feature("compactdefaultargs") Next; %feature("autodoc", "Return ------- @@ -1498,8 +1498,8 @@ Returns the next available identifier. warning: raises identdefinitionerror if a ") Next; Standard_Integer Next(); - /****************** Next ******************/ - /**** md5 signature: 3fd1eee7f153c7ff797dea1b9f67ad85 ****/ + /****** Aspect_GenId::Next ******/ + /****** md5 signature: 3fd1eee7f153c7ff797dea1b9f67ad85 ******/ %feature("compactdefaultargs") Next; %feature("autodoc", " Parameters @@ -1515,8 +1515,8 @@ Generates the next available identifier. @param theid [out] generated identifier ") Next; Standard_Boolean Next(Standard_Integer &OutValue); - /****************** Upper ******************/ - /**** md5 signature: 621f04fab59b49711e54299100973c4e ****/ + /****** Aspect_GenId::Upper ******/ + /****** md5 signature: 621f04fab59b49711e54299100973c4e ******/ %feature("compactdefaultargs") Upper; %feature("autodoc", "Return ------- @@ -1543,8 +1543,8 @@ Returns the upper identifier in range. %nodefaultctor Aspect_Grid; class Aspect_Grid : public Standard_Transient { public: - /****************** Activate ******************/ - /**** md5 signature: 3c1c2136e4be5cb74d5a6a6df9f2730e ****/ + /****** Aspect_Grid::Activate ******/ + /****** md5 signature: 3c1c2136e4be5cb74d5a6a6df9f2730e ******/ %feature("compactdefaultargs") Activate; %feature("autodoc", "Return ------- @@ -1556,8 +1556,8 @@ Activates the grid. the hit method will return gridx and gridx computed accordin ") Activate; void Activate(); - /****************** Colors ******************/ - /**** md5 signature: febac332dabf87330fc8ae564a90811c ****/ + /****** Aspect_Grid::Colors ******/ + /****** md5 signature: febac332dabf87330fc8ae564a90811c ******/ %feature("compactdefaultargs") Colors; %feature("autodoc", " Parameters @@ -1575,8 +1575,8 @@ Returns the colors of the grid. ") Colors; void Colors(Quantity_Color & aColor, Quantity_Color & aTenthColor); - /****************** Compute ******************/ - /**** md5 signature: f2dc3bb20b3dea64f42829e338efc410 ****/ + /****** Aspect_Grid::Compute ******/ + /****** md5 signature: f2dc3bb20b3dea64f42829e338efc410 ******/ %feature("compactdefaultargs") Compute; %feature("autodoc", " Parameters @@ -1595,8 +1595,8 @@ Returns the point of the grid the closest to the point x,y. ") Compute; virtual void Compute(const Standard_Real X, const Standard_Real Y, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Deactivate ******************/ - /**** md5 signature: d5b1d14a550597a64031c7a7feceee08 ****/ + /****** Aspect_Grid::Deactivate ******/ + /****** md5 signature: d5b1d14a550597a64031c7a7feceee08 ******/ %feature("compactdefaultargs") Deactivate; %feature("autodoc", "Return ------- @@ -1608,8 +1608,8 @@ Deactivates the grid. the hit method will return gridx and gridx as the enter va ") Deactivate; void Deactivate(); - /****************** Display ******************/ - /**** md5 signature: a5bb9d443eb910f59769ed67aea52525 ****/ + /****** Aspect_Grid::Display ******/ + /****** md5 signature: a5bb9d443eb910f59769ed67aea52525 ******/ %feature("compactdefaultargs") Display; %feature("autodoc", "Return ------- @@ -1621,8 +1621,8 @@ Display the grid at screen. ") Display; virtual void Display(); - /****************** DrawMode ******************/ - /**** md5 signature: 820acf5cdbd9b081ca2fdb9e8fa43978 ****/ + /****** Aspect_Grid::DrawMode ******/ + /****** md5 signature: 820acf5cdbd9b081ca2fdb9e8fa43978 ******/ %feature("compactdefaultargs") DrawMode; %feature("autodoc", "Return ------- @@ -1655,8 +1655,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** Erase ******************/ - /**** md5 signature: c55517fe39ff6c9fe42803167b097498 ****/ + /****** Aspect_Grid::Erase ******/ + /****** md5 signature: c55517fe39ff6c9fe42803167b097498 ******/ %feature("compactdefaultargs") Erase; %feature("autodoc", "Return ------- @@ -1668,8 +1668,8 @@ Erase the grid from screen. ") Erase; virtual void Erase(); - /****************** Hit ******************/ - /**** md5 signature: a0d754d9f4e2a7f6a6b3cbe673f29375 ****/ + /****** Aspect_Grid::Hit ******/ + /****** md5 signature: a0d754d9f4e2a7f6a6b3cbe673f29375 ******/ %feature("compactdefaultargs") Hit; %feature("autodoc", " Parameters @@ -1688,8 +1688,8 @@ Returns the point of the grid the closest to the point x,y if the grid is active ") Hit; void Hit(const Standard_Real X, const Standard_Real Y, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Init ******************/ - /**** md5 signature: ae70d610df2081e50f19659c49fb9bd4 ****/ + /****** Aspect_Grid::Init ******/ + /****** md5 signature: ae70d610df2081e50f19659c49fb9bd4 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", "Return ------- @@ -1701,8 +1701,8 @@ No available documentation. ") Init; virtual void Init(); - /****************** IsActive ******************/ - /**** md5 signature: 1430a89053d4b0413f25b185201efe70 ****/ + /****** Aspect_Grid::IsActive ******/ + /****** md5 signature: 1430a89053d4b0413f25b185201efe70 ******/ %feature("compactdefaultargs") IsActive; %feature("autodoc", "Return ------- @@ -1714,8 +1714,8 @@ Returns true when the grid is active. ") IsActive; Standard_Boolean IsActive(); - /****************** IsDisplayed ******************/ - /**** md5 signature: f0a946c4c132eaa80b7a2b5b8752ab0c ****/ + /****** Aspect_Grid::IsDisplayed ******/ + /****** md5 signature: f0a946c4c132eaa80b7a2b5b8752ab0c ******/ %feature("compactdefaultargs") IsDisplayed; %feature("autodoc", "Return ------- @@ -1727,8 +1727,8 @@ Returns true when the grid is displayed at screen. ") IsDisplayed; virtual Standard_Boolean IsDisplayed(); - /****************** Rotate ******************/ - /**** md5 signature: ba6155601a6a3ebf5db401b4fcb0cac9 ****/ + /****** Aspect_Grid::Rotate ******/ + /****** md5 signature: ba6155601a6a3ebf5db401b4fcb0cac9 ******/ %feature("compactdefaultargs") Rotate; %feature("autodoc", " Parameters @@ -1745,8 +1745,8 @@ Rotate the grid from a relative angle. ") Rotate; void Rotate(const Standard_Real anAngle); - /****************** RotationAngle ******************/ - /**** md5 signature: 6c7adcb07df938548950d9bd86bc732a ****/ + /****** Aspect_Grid::RotationAngle ******/ + /****** md5 signature: 6c7adcb07df938548950d9bd86bc732a ******/ %feature("compactdefaultargs") RotationAngle; %feature("autodoc", "Return ------- @@ -1758,8 +1758,8 @@ Returns the x angle of the grid. ") RotationAngle; Standard_Real RotationAngle(); - /****************** SetColors ******************/ - /**** md5 signature: f81cf1490ceea17485c0de0269e7ec9c ****/ + /****** Aspect_Grid::SetColors ******/ + /****** md5 signature: f81cf1490ceea17485c0de0269e7ec9c ******/ %feature("compactdefaultargs") SetColors; %feature("autodoc", " Parameters @@ -1777,8 +1777,8 @@ Change the colors of the grid. ") SetColors; virtual void SetColors(const Quantity_Color & aColor, const Quantity_Color & aTenthColor); - /****************** SetDrawMode ******************/ - /**** md5 signature: ee6037d77208349cb9a8e316a9952fc6 ****/ + /****** Aspect_Grid::SetDrawMode ******/ + /****** md5 signature: ee6037d77208349cb9a8e316a9952fc6 ******/ %feature("compactdefaultargs") SetDrawMode; %feature("autodoc", " Parameters @@ -1795,8 +1795,8 @@ Change the grid aspect. ") SetDrawMode; void SetDrawMode(const Aspect_GridDrawMode aDrawMode); - /****************** SetRotationAngle ******************/ - /**** md5 signature: f85165df588b8bb105e7c1fc95c0038c ****/ + /****** Aspect_Grid::SetRotationAngle ******/ + /****** md5 signature: f85165df588b8bb105e7c1fc95c0038c ******/ %feature("compactdefaultargs") SetRotationAngle; %feature("autodoc", " Parameters @@ -1813,8 +1813,8 @@ Defines the orientation of the grid. ") SetRotationAngle; void SetRotationAngle(const Standard_Real anAngle); - /****************** SetXOrigin ******************/ - /**** md5 signature: 5f29e91eabd84d1fb448e2f1a42216fa ****/ + /****** Aspect_Grid::SetXOrigin ******/ + /****** md5 signature: 5f29e91eabd84d1fb448e2f1a42216fa ******/ %feature("compactdefaultargs") SetXOrigin; %feature("autodoc", " Parameters @@ -1831,8 +1831,8 @@ Defines the x origin of the grid. ") SetXOrigin; void SetXOrigin(const Standard_Real anOrigin); - /****************** SetYOrigin ******************/ - /**** md5 signature: 8ae28e02e415aeae0cabe4ebeb845aac ****/ + /****** Aspect_Grid::SetYOrigin ******/ + /****** md5 signature: 8ae28e02e415aeae0cabe4ebeb845aac ******/ %feature("compactdefaultargs") SetYOrigin; %feature("autodoc", " Parameters @@ -1849,8 +1849,8 @@ Defines the y origin of the grid. ") SetYOrigin; void SetYOrigin(const Standard_Real anOrigin); - /****************** Translate ******************/ - /**** md5 signature: 2c4d53c487acc4e66ea6ff494e659356 ****/ + /****** Aspect_Grid::Translate ******/ + /****** md5 signature: 2c4d53c487acc4e66ea6ff494e659356 ******/ %feature("compactdefaultargs") Translate; %feature("autodoc", " Parameters @@ -1868,8 +1868,8 @@ Translate the grid from a relative distance. ") Translate; void Translate(const Standard_Real aDx, const Standard_Real aDy); - /****************** XOrigin ******************/ - /**** md5 signature: 2ca8cc35b96fb011ff973786f0ef31b1 ****/ + /****** Aspect_Grid::XOrigin ******/ + /****** md5 signature: 2ca8cc35b96fb011ff973786f0ef31b1 ******/ %feature("compactdefaultargs") XOrigin; %feature("autodoc", "Return ------- @@ -1881,8 +1881,8 @@ Returns the x origin of the grid. ") XOrigin; Standard_Real XOrigin(); - /****************** YOrigin ******************/ - /**** md5 signature: 7f8bdf33836dd27df5ea3c3e718919d0 ****/ + /****** Aspect_Grid::YOrigin ******/ + /****** md5 signature: 7f8bdf33836dd27df5ea3c3e718919d0 ******/ %feature("compactdefaultargs") YOrigin; %feature("autodoc", "Return ------- @@ -1912,8 +1912,8 @@ class Aspect_ScrollDelta { public: float Delta; Aspect_VKeyFlags Flags; - /****************** Aspect_ScrollDelta ******************/ - /**** md5 signature: 0d3fcbaf34563dcd0f20bf50c1b22bc1 ****/ + /****** Aspect_ScrollDelta::Aspect_ScrollDelta ******/ + /****** md5 signature: 0d3fcbaf34563dcd0f20bf50c1b22bc1 ******/ %feature("compactdefaultargs") Aspect_ScrollDelta; %feature("autodoc", "Return ------- @@ -1925,8 +1925,8 @@ Empty constructor. ") Aspect_ScrollDelta; Aspect_ScrollDelta(); - /****************** Aspect_ScrollDelta ******************/ - /**** md5 signature: f8460f2fd92f69dbd6ae1c79508cf38b ****/ + /****** Aspect_ScrollDelta::Aspect_ScrollDelta ******/ + /****** md5 signature: f8460f2fd92f69dbd6ae1c79508cf38b ******/ %feature("compactdefaultargs") Aspect_ScrollDelta; %feature("autodoc", " Parameters @@ -1945,8 +1945,8 @@ Constructor. ") Aspect_ScrollDelta; Aspect_ScrollDelta(const NCollection_Vec2 & thePnt, Standard_Real theValue, Aspect_VKeyFlags theFlags = Aspect_VKeyFlags_NONE); - /****************** Aspect_ScrollDelta ******************/ - /**** md5 signature: 4c6a15a03d5e8065050d3ebd39119299 ****/ + /****** Aspect_ScrollDelta::Aspect_ScrollDelta ******/ + /****** md5 signature: 4c6a15a03d5e8065050d3ebd39119299 ******/ %feature("compactdefaultargs") Aspect_ScrollDelta; %feature("autodoc", " Parameters @@ -1964,8 +1964,8 @@ Constructor with undefined point. ") Aspect_ScrollDelta; Aspect_ScrollDelta(Standard_Real theValue, Aspect_VKeyFlags theFlags = Aspect_VKeyFlags_NONE); - /****************** HasPoint ******************/ - /**** md5 signature: 314e70d3c9f0b28261d75c0c6244be38 ****/ + /****** Aspect_ScrollDelta::HasPoint ******/ + /****** md5 signature: 314e70d3c9f0b28261d75c0c6244be38 ******/ %feature("compactdefaultargs") HasPoint; %feature("autodoc", "Return ------- @@ -1977,8 +1977,8 @@ Return true if action has point defined. ") HasPoint; bool HasPoint(); - /****************** ResetPoint ******************/ - /**** md5 signature: d4f07a32710ac608e876db8058caee64 ****/ + /****** Aspect_ScrollDelta::ResetPoint ******/ + /****** md5 signature: d4f07a32710ac608e876db8058caee64 ******/ %feature("compactdefaultargs") ResetPoint; %feature("autodoc", "Return ------- @@ -2004,8 +2004,8 @@ Reset at point. *********************************/ class Aspect_SkydomeBackground { public: - /****************** Aspect_SkydomeBackground ******************/ - /**** md5 signature: 3c25f69c902a4ad07c515cd932d3d294 ****/ + /****** Aspect_SkydomeBackground::Aspect_SkydomeBackground ******/ + /****** md5 signature: 3c25f69c902a4ad07c515cd932d3d294 ******/ %feature("compactdefaultargs") Aspect_SkydomeBackground; %feature("autodoc", "Return ------- @@ -2017,8 +2017,8 @@ Creates a window skydome background. by default skydome is initialized with sun ") Aspect_SkydomeBackground; Aspect_SkydomeBackground(); - /****************** Aspect_SkydomeBackground ******************/ - /**** md5 signature: 3a75c743ed1f3d8ea420373174e19a33 ****/ + /****** Aspect_SkydomeBackground::Aspect_SkydomeBackground ******/ + /****** md5 signature: 3a75c743ed1f3d8ea420373174e19a33 ******/ %feature("compactdefaultargs") Aspect_SkydomeBackground; %feature("autodoc", " Parameters @@ -2039,8 +2039,8 @@ Creates a window skydome background with given parameters. @param[in] thesundire ") Aspect_SkydomeBackground; Aspect_SkydomeBackground(const gp_Dir & theSunDirection, Standard_ShortReal theCloudiness, Standard_ShortReal theTime, Standard_ShortReal theFogginess, Standard_Integer theSize); - /****************** Cloudiness ******************/ - /**** md5 signature: dc5cc52623d8691a38ed69cd8a0c18b7 ****/ + /****** Aspect_SkydomeBackground::Cloudiness ******/ + /****** md5 signature: dc5cc52623d8691a38ed69cd8a0c18b7 ******/ %feature("compactdefaultargs") Cloudiness; %feature("autodoc", "Return ------- @@ -2073,8 +2073,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** Fogginess ******************/ - /**** md5 signature: c50b52b93dcf09580ca9736bc7f6571e ****/ + /****** Aspect_SkydomeBackground::Fogginess ******/ + /****** md5 signature: c50b52b93dcf09580ca9736bc7f6571e ******/ %feature("compactdefaultargs") Fogginess; %feature("autodoc", "Return ------- @@ -2086,8 +2086,8 @@ Get fog intensity. by default this value is 0.0 0.0 means no fog and 1.0 - high ") Fogginess; Standard_ShortReal Fogginess(); - /****************** SetCloudiness ******************/ - /**** md5 signature: 920d86159a2674d4c13553ecbeb16824 ****/ + /****** Aspect_SkydomeBackground::SetCloudiness ******/ + /****** md5 signature: 920d86159a2674d4c13553ecbeb16824 ******/ %feature("compactdefaultargs") SetCloudiness; %feature("autodoc", " Parameters @@ -2104,8 +2104,8 @@ Set cloud intensity. by default this value is 0.2 0.0 means no clouds at all and ") SetCloudiness; void SetCloudiness(Standard_ShortReal theCloudiness); - /****************** SetFogginess ******************/ - /**** md5 signature: 96294984cc974e9ab6dd33824cb4a7b8 ****/ + /****** Aspect_SkydomeBackground::SetFogginess ******/ + /****** md5 signature: 96294984cc974e9ab6dd33824cb4a7b8 ******/ %feature("compactdefaultargs") SetFogginess; %feature("autodoc", " Parameters @@ -2122,8 +2122,8 @@ Set fog intensity. by default this value is 0.0 0.0 means no fog and 1.0 - high ") SetFogginess; void SetFogginess(Standard_ShortReal theFogginess); - /****************** SetSize ******************/ - /**** md5 signature: 5a379cce6c2fb68b87bbdd7ae6575397 ****/ + /****** Aspect_SkydomeBackground::SetSize ******/ + /****** md5 signature: 5a379cce6c2fb68b87bbdd7ae6575397 ******/ %feature("compactdefaultargs") SetSize; %feature("autodoc", " Parameters @@ -2140,8 +2140,8 @@ Set size of cubemap. by default this value is 512. ") SetSize; void SetSize(Standard_Integer theSize); - /****************** SetSunDirection ******************/ - /**** md5 signature: d85bbe95c7e3d45dd1408af0a7346203 ****/ + /****** Aspect_SkydomeBackground::SetSunDirection ******/ + /****** md5 signature: d85bbe95c7e3d45dd1408af0a7346203 ******/ %feature("compactdefaultargs") SetSunDirection; %feature("autodoc", " Parameters @@ -2158,8 +2158,8 @@ Set sun direction. by default this value is (0, 1, 0) sun direction with negativ ") SetSunDirection; void SetSunDirection(const gp_Dir & theSunDirection); - /****************** SetTimeParameter ******************/ - /**** md5 signature: a44786d752ad3eaf0c2cb124be7e0294 ****/ + /****** Aspect_SkydomeBackground::SetTimeParameter ******/ + /****** md5 signature: a44786d752ad3eaf0c2cb124be7e0294 ******/ %feature("compactdefaultargs") SetTimeParameter; %feature("autodoc", " Parameters @@ -2176,8 +2176,8 @@ Set time of cloud simulation. by default this value is 0.0 this value might be t ") SetTimeParameter; void SetTimeParameter(Standard_ShortReal theTime); - /****************** Size ******************/ - /**** md5 signature: fe6e16e0f1e86558dd017c7384c76cd6 ****/ + /****** Aspect_SkydomeBackground::Size ******/ + /****** md5 signature: fe6e16e0f1e86558dd017c7384c76cd6 ******/ %feature("compactdefaultargs") Size; %feature("autodoc", "Return ------- @@ -2189,8 +2189,8 @@ Get size of cubemap. by default this value is 512. ") Size; Standard_Integer Size(); - /****************** SunDirection ******************/ - /**** md5 signature: 468ebca31659264b29a8630921783c51 ****/ + /****** Aspect_SkydomeBackground::SunDirection ******/ + /****** md5 signature: 468ebca31659264b29a8630921783c51 ******/ %feature("compactdefaultargs") SunDirection; %feature("autodoc", "Return ------- @@ -2202,8 +2202,8 @@ Get sun direction. by default this value is (0, 1, 0) sun direction with negativ ") SunDirection; const gp_Dir SunDirection(); - /****************** TimeParameter ******************/ - /**** md5 signature: cab33c32ebd5264ea67ec9d3936a9232 ****/ + /****** Aspect_SkydomeBackground::TimeParameter ******/ + /****** md5 signature: cab33c32ebd5264ea67ec9d3936a9232 ******/ %feature("compactdefaultargs") TimeParameter; %feature("autodoc", "Return ------- @@ -2230,8 +2230,8 @@ Get time of cloud simulation. by default this value is 0.0 this value might be t class Aspect_Touch { public: bool IsPreciseDevice; - /****************** Aspect_Touch ******************/ - /**** md5 signature: a51d1277d944673675b62a1916b1d065 ****/ + /****** Aspect_Touch::Aspect_Touch ******/ + /****** md5 signature: a51d1277d944673675b62a1916b1d065 ******/ %feature("compactdefaultargs") Aspect_Touch; %feature("autodoc", "Return ------- @@ -2243,8 +2243,8 @@ Empty constructor. ") Aspect_Touch; Aspect_Touch(); - /****************** Aspect_Touch ******************/ - /**** md5 signature: f577ccd3298bca230729e387e7c8ee22 ****/ + /****** Aspect_Touch::Aspect_Touch ******/ + /****** md5 signature: f577ccd3298bca230729e387e7c8ee22 ******/ %feature("compactdefaultargs") Aspect_Touch; %feature("autodoc", " Parameters @@ -2262,8 +2262,8 @@ Constructor with initialization. ") Aspect_Touch; Aspect_Touch(const NCollection_Vec2 & thePnt, Standard_Boolean theIsPreciseDevice); - /****************** Aspect_Touch ******************/ - /**** md5 signature: d7a9f77f97f217469aa14c1453a5ec71 ****/ + /****** Aspect_Touch::Aspect_Touch ******/ + /****** md5 signature: d7a9f77f97f217469aa14c1453a5ec71 ******/ %feature("compactdefaultargs") Aspect_Touch; %feature("autodoc", " Parameters @@ -2282,8 +2282,8 @@ Constructor with initialization. ") Aspect_Touch; Aspect_Touch(Standard_Real theX, Standard_Real theY, Standard_Boolean theIsPreciseDevice); - /****************** Delta ******************/ - /**** md5 signature: 633ea93d8b8f65b7d72a9eb7e3592640 ****/ + /****** Aspect_Touch::Delta ******/ + /****** md5 signature: 633ea93d8b8f65b7d72a9eb7e3592640 ******/ %feature("compactdefaultargs") Delta; %feature("autodoc", "Return ------- @@ -2314,8 +2314,8 @@ class Aspect_TrackedDevicePose { gp_Vec AngularVelocity; bool IsValidPose; bool IsConnectedDevice; - /****************** Aspect_TrackedDevicePose ******************/ - /**** md5 signature: 02737e00df27ee4bc5574676177782f9 ****/ + /****** Aspect_TrackedDevicePose::Aspect_TrackedDevicePose ******/ + /****** md5 signature: 02737e00df27ee4bc5574676177782f9 ******/ %feature("compactdefaultargs") Aspect_TrackedDevicePose; %feature("autodoc", "Return ------- @@ -2342,8 +2342,8 @@ Empty constructor. class Aspect_VKeySet : public Standard_Transient { public: class KeyState {}; - /****************** Aspect_VKeySet ******************/ - /**** md5 signature: 8566e8fc57970db201c78c2232c80056 ****/ + /****** Aspect_VKeySet::Aspect_VKeySet ******/ + /****** md5 signature: 8566e8fc57970db201c78c2232c80056 ******/ %feature("compactdefaultargs") Aspect_VKeySet; %feature("autodoc", "Return ------- @@ -2355,8 +2355,8 @@ Main constructor. ") Aspect_VKeySet; Aspect_VKeySet(); - /****************** DownTime ******************/ - /**** md5 signature: 3ce4407cc0d1bbc0d6555aa3d5a3e2b0 ****/ + /****** Aspect_VKeySet::DownTime ******/ + /****** md5 signature: 3ce4407cc0d1bbc0d6555aa3d5a3e2b0 ******/ %feature("compactdefaultargs") DownTime; %feature("autodoc", " Parameters @@ -2373,8 +2373,8 @@ Return timestamp of press event. ") DownTime; double DownTime(Aspect_VKey theKey); - /****************** HoldDuration ******************/ - /**** md5 signature: d3a6b36f0626be624be57b5a073be7fd ****/ + /****** Aspect_VKeySet::HoldDuration ******/ + /****** md5 signature: d3a6b36f0626be624be57b5a073be7fd ******/ %feature("compactdefaultargs") HoldDuration; %feature("autodoc", " Parameters @@ -2392,8 +2392,8 @@ Return duration of the button in pressed state. @param thekey key to check @para ") HoldDuration; bool HoldDuration(Aspect_VKey theKey, double theTime, Standard_Real &OutValue); - /****************** HoldDuration ******************/ - /**** md5 signature: c1573ef0fa9ba2fd5946552e14276981 ****/ + /****** Aspect_VKeySet::HoldDuration ******/ + /****** md5 signature: c1573ef0fa9ba2fd5946552e14276981 ******/ %feature("compactdefaultargs") HoldDuration; %feature("autodoc", " Parameters @@ -2412,8 +2412,8 @@ Return duration of the button in pressed state. @param thekey key to check @para ") HoldDuration; bool HoldDuration(Aspect_VKey theKey, double theTime, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** IsFreeKey ******************/ - /**** md5 signature: bbd218ecf93898ecf459b9331a00f136 ****/ + /****** Aspect_VKeySet::IsFreeKey ******/ + /****** md5 signature: bbd218ecf93898ecf459b9331a00f136 ******/ %feature("compactdefaultargs") IsFreeKey; %feature("autodoc", " Parameters @@ -2430,8 +2430,8 @@ Return true if key is in free state. ") IsFreeKey; bool IsFreeKey(Aspect_VKey theKey); - /****************** IsKeyDown ******************/ - /**** md5 signature: 1c60f9b4e5ebb4fb8f0fb2113d64b286 ****/ + /****** Aspect_VKeySet::IsKeyDown ******/ + /****** md5 signature: 1c60f9b4e5ebb4fb8f0fb2113d64b286 ******/ %feature("compactdefaultargs") IsKeyDown; %feature("autodoc", " Parameters @@ -2448,8 +2448,8 @@ Return true if key is in pressed state. ") IsKeyDown; bool IsKeyDown(Aspect_VKey theKey); - /****************** KeyDown ******************/ - /**** md5 signature: 3009abb37f57f319280f9ae379b163aa ****/ + /****** Aspect_VKeySet::KeyDown ******/ + /****** md5 signature: 3009abb37f57f319280f9ae379b163aa ******/ %feature("compactdefaultargs") KeyDown; %feature("autodoc", " Parameters @@ -2468,8 +2468,8 @@ Press key. @param thekey key pressed @param thetime event timestamp. ") KeyDown; void KeyDown(Aspect_VKey theKey, double theTime, double thePressure = 1.0); - /****************** KeyFromAxis ******************/ - /**** md5 signature: 3db941cede9d9409a6324a91a2be5069 ****/ + /****** Aspect_VKeySet::KeyFromAxis ******/ + /****** md5 signature: 3db941cede9d9409a6324a91a2be5069 ******/ %feature("compactdefaultargs") KeyFromAxis; %feature("autodoc", " Parameters @@ -2489,8 +2489,8 @@ Simulate key up/down events from axis value. ") KeyFromAxis; void KeyFromAxis(Aspect_VKey theNegative, Aspect_VKey thePositive, double theTime, double thePressure); - /****************** KeyUp ******************/ - /**** md5 signature: d12e8a77599562d728d7ebfb35b14614 ****/ + /****** Aspect_VKeySet::KeyUp ******/ + /****** md5 signature: d12e8a77599562d728d7ebfb35b14614 ******/ %feature("compactdefaultargs") KeyUp; %feature("autodoc", " Parameters @@ -2508,8 +2508,8 @@ Release key. @param thekey key pressed @param thetime event timestamp. ") KeyUp; void KeyUp(Aspect_VKey theKey, double theTime); - /****************** Modifiers ******************/ - /**** md5 signature: a988577c8f2d9e201ff486761a6a056b ****/ + /****** Aspect_VKeySet::Modifiers ******/ + /****** md5 signature: a988577c8f2d9e201ff486761a6a056b ******/ %feature("compactdefaultargs") Modifiers; %feature("autodoc", "Return ------- @@ -2521,8 +2521,8 @@ Return active modifiers. ") Modifiers; Aspect_VKeyFlags Modifiers(); - /****************** Mutex ******************/ - /**** md5 signature: 902e13b2343e132a88f2b4c5433ad6d8 ****/ + /****** Aspect_VKeySet::Mutex ******/ + /****** md5 signature: 902e13b2343e132a88f2b4c5433ad6d8 ******/ %feature("compactdefaultargs") Mutex; %feature("autodoc", "Return ------- @@ -2534,8 +2534,8 @@ Return mutex for thread-safe updates. all operations in class implicitly locks t ") Mutex; Standard_Mutex & Mutex(); - /****************** Reset ******************/ - /**** md5 signature: 7beb446fe26b948f797f8de87e46c23d ****/ + /****** Aspect_VKeySet::Reset ******/ + /****** md5 signature: 7beb446fe26b948f797f8de87e46c23d ******/ %feature("compactdefaultargs") Reset; %feature("autodoc", "Return ------- @@ -2547,8 +2547,8 @@ Reset the key state into unpressed state. ") Reset; void Reset(); - /****************** TimeUp ******************/ - /**** md5 signature: 4131ea8db309e72b20edf20cb930f105 ****/ + /****** Aspect_VKeySet::TimeUp ******/ + /****** md5 signature: 4131ea8db309e72b20edf20cb930f105 ******/ %feature("compactdefaultargs") TimeUp; %feature("autodoc", " Parameters @@ -2582,8 +2582,8 @@ Return timestamp of release event. %nodefaultctor Aspect_Window; class Aspect_Window : public Standard_Transient { public: - /****************** Background ******************/ - /**** md5 signature: c745ba92fb6d5e6544856c59b201a620 ****/ + /****** Aspect_Window::Background ******/ + /****** md5 signature: c745ba92fb6d5e6544856c59b201a620 ******/ %feature("compactdefaultargs") Background; %feature("autodoc", "Return ------- @@ -2595,8 +2595,8 @@ Returns the window background. ") Background; Aspect_Background Background(); - /****************** BackgroundFillMethod ******************/ - /**** md5 signature: 3dc602ad8e5026afe96d15088c7b9833 ****/ + /****** Aspect_Window::BackgroundFillMethod ******/ + /****** md5 signature: 3dc602ad8e5026afe96d15088c7b9833 ******/ %feature("compactdefaultargs") BackgroundFillMethod; %feature("autodoc", "Return ------- @@ -2608,8 +2608,8 @@ Returns the current image background fill mode. ") BackgroundFillMethod; Aspect_FillMethod BackgroundFillMethod(); - /****************** ConvertPointFromBacking ******************/ - /**** md5 signature: 621f59446c2c34234eba0b43cd724552 ****/ + /****** Aspect_Window::ConvertPointFromBacking ******/ + /****** md5 signature: 621f59446c2c34234eba0b43cd724552 ******/ %feature("compactdefaultargs") ConvertPointFromBacking; %feature("autodoc", " Parameters @@ -2626,8 +2626,8 @@ Convert point from backing store units to logical units. ") ConvertPointFromBacking; virtual Graphic3d_Vec2d ConvertPointFromBacking(const Graphic3d_Vec2d & thePnt); - /****************** ConvertPointToBacking ******************/ - /**** md5 signature: 37a4876c01cca0dee435e17d82ae73d5 ****/ + /****** Aspect_Window::ConvertPointToBacking ******/ + /****** md5 signature: 37a4876c01cca0dee435e17d82ae73d5 ******/ %feature("compactdefaultargs") ConvertPointToBacking; %feature("autodoc", " Parameters @@ -2644,8 +2644,8 @@ Convert point from logical units into backing store units. ") ConvertPointToBacking; virtual Graphic3d_Vec2d ConvertPointToBacking(const Graphic3d_Vec2d & thePnt); - /****************** DevicePixelRatio ******************/ - /**** md5 signature: 6492ff955dcc6243b26fa4c3bdea7bf0 ****/ + /****** Aspect_Window::DevicePixelRatio ******/ + /****** md5 signature: 6492ff955dcc6243b26fa4c3bdea7bf0 ******/ %feature("compactdefaultargs") DevicePixelRatio; %feature("autodoc", "Return ------- @@ -2657,8 +2657,8 @@ Return device pixel ratio (logical to backing store scale factor). ") DevicePixelRatio; virtual Standard_Real DevicePixelRatio(); - /****************** Dimensions ******************/ - /**** md5 signature: 7e270212c8ea0579f85528495512097b ****/ + /****** Aspect_Window::Dimensions ******/ + /****** md5 signature: 7e270212c8ea0579f85528495512097b ******/ %feature("compactdefaultargs") Dimensions; %feature("autodoc", "Return ------- @@ -2670,8 +2670,8 @@ Returns window dimensions. ") Dimensions; Graphic3d_Vec2i Dimensions(); - /****************** DisplayConnection ******************/ - /**** md5 signature: 411dcd7f318927d5a5c6c027eda3726a ****/ + /****** Aspect_Window::DisplayConnection ******/ + /****** md5 signature: 411dcd7f318927d5a5c6c027eda3726a ******/ %feature("compactdefaultargs") DisplayConnection; %feature("autodoc", "Return ------- @@ -2683,8 +2683,8 @@ Returns connection to display or null. ") DisplayConnection; const opencascade::handle & DisplayConnection(); - /****************** DoMapping ******************/ - /**** md5 signature: bccedbb13c087bbcb0fdc2dc4be5fafa ****/ + /****** Aspect_Window::DoMapping ******/ + /****** md5 signature: bccedbb13c087bbcb0fdc2dc4be5fafa ******/ %feature("compactdefaultargs") DoMapping; %feature("autodoc", "Return ------- @@ -2696,8 +2696,8 @@ Apply the mapping change to the window . and returns true if the window is ") DoMapping; virtual Standard_Boolean DoMapping(); - /****************** DoResize ******************/ - /**** md5 signature: 53e251c7364926b7f0881bdd95b8bb10 ****/ + /****** Aspect_Window::DoResize ******/ + /****** md5 signature: 53e251c7364926b7f0881bdd95b8bb10 ******/ %feature("compactdefaultargs") DoResize; %feature("autodoc", "Return ------- @@ -2730,8 +2730,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** GradientBackground ******************/ - /**** md5 signature: d48840592ec4f12118e8b8d065c33698 ****/ + /****** Aspect_Window::GradientBackground ******/ + /****** md5 signature: d48840592ec4f12118e8b8d065c33698 ******/ %feature("compactdefaultargs") GradientBackground; %feature("autodoc", "Return ------- @@ -2743,8 +2743,8 @@ Returns the window gradient background. ") GradientBackground; Aspect_GradientBackground GradientBackground(); - /****************** InvalidateContent ******************/ - /**** md5 signature: c3842a52e192571bdc8176fffa5e2159 ****/ + /****** Aspect_Window::InvalidateContent ******/ + /****** md5 signature: c3842a52e192571bdc8176fffa5e2159 ******/ %feature("compactdefaultargs") InvalidateContent; %feature("autodoc", " Parameters @@ -2761,8 +2761,8 @@ Invalidate entire window content. //! implementation is expected to allow callin ") InvalidateContent; virtual void InvalidateContent(const opencascade::handle & theDisp); - /****************** IsMapped ******************/ - /**** md5 signature: 4d5cfb66280177c9e63a17b79e45005f ****/ + /****** Aspect_Window::IsMapped ******/ + /****** md5 signature: 4d5cfb66280177c9e63a17b79e45005f ******/ %feature("compactdefaultargs") IsMapped; %feature("autodoc", "Return ------- @@ -2774,8 +2774,8 @@ Returns true if the window is opened and false if the window is closed. ") IsMapped; virtual Standard_Boolean IsMapped(); - /****************** IsVirtual ******************/ - /**** md5 signature: 6b108b5483133abeb2e67cd521931989 ****/ + /****** Aspect_Window::IsVirtual ******/ + /****** md5 signature: 6b108b5483133abeb2e67cd521931989 ******/ %feature("compactdefaultargs") IsVirtual; %feature("autodoc", "Return ------- @@ -2787,8 +2787,8 @@ Returns true if the window is virtual. ") IsVirtual; Standard_Boolean IsVirtual(); - /****************** Map ******************/ - /**** md5 signature: 0e63cf65e00294792f8d62b1c43bea62 ****/ + /****** Aspect_Window::Map ******/ + /****** md5 signature: 0e63cf65e00294792f8d62b1c43bea62 ******/ %feature("compactdefaultargs") Map; %feature("autodoc", "Return ------- @@ -2800,8 +2800,8 @@ Opens the window . ") Map; virtual void Map(); - /****************** NativeFBConfig ******************/ - /**** md5 signature: 4c353bf7a84ef94261f833f6d54eaa5e ****/ + /****** Aspect_Window::NativeFBConfig ******/ + /****** md5 signature: 4c353bf7a84ef94261f833f6d54eaa5e ******/ %feature("compactdefaultargs") NativeFBConfig; %feature("autodoc", "Return ------- @@ -2813,8 +2813,8 @@ Returns native window fb config (glxfbconfig on xlib). ") NativeFBConfig; virtual Aspect_FBConfig NativeFBConfig(); - /****************** Position ******************/ - /**** md5 signature: 30fa6ef63eb4cfa1d4d0a6a072935a04 ****/ + /****** Aspect_Window::Position ******/ + /****** md5 signature: 30fa6ef63eb4cfa1d4d0a6a072935a04 ******/ %feature("compactdefaultargs") Position; %feature("autodoc", " Parameters @@ -2833,8 +2833,8 @@ Returns the window position in pixel. ") Position; virtual void Position(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** Ratio ******************/ - /**** md5 signature: d40ca1d2627bbb87a34e5c89b2c7db06 ****/ + /****** Aspect_Window::Ratio ******/ + /****** md5 signature: d40ca1d2627bbb87a34e5c89b2c7db06 ******/ %feature("compactdefaultargs") Ratio; %feature("autodoc", "Return ------- @@ -2846,8 +2846,8 @@ Returns the window ratio equal to the physical width/height dimensions. ") Ratio; virtual Standard_Real Ratio(); - /****************** SetBackground ******************/ - /**** md5 signature: 1060a0f428ba58a6057f242d39040d7b ****/ + /****** Aspect_Window::SetBackground ******/ + /****** md5 signature: 1060a0f428ba58a6057f242d39040d7b ******/ %feature("compactdefaultargs") SetBackground; %feature("autodoc", " Parameters @@ -2864,8 +2864,8 @@ Modifies the window background. ") SetBackground; void SetBackground(const Aspect_Background & theBack); - /****************** SetBackground ******************/ - /**** md5 signature: cbe59d034bfe68360b6e7b8aeecdb1e1 ****/ + /****** Aspect_Window::SetBackground ******/ + /****** md5 signature: cbe59d034bfe68360b6e7b8aeecdb1e1 ******/ %feature("compactdefaultargs") SetBackground; %feature("autodoc", " Parameters @@ -2882,8 +2882,8 @@ Modifies the window background. ") SetBackground; void SetBackground(const Quantity_Color & theColor); - /****************** SetBackground ******************/ - /**** md5 signature: f4e2412715795dcef62591ecfa331106 ****/ + /****** Aspect_Window::SetBackground ******/ + /****** md5 signature: f4e2412715795dcef62591ecfa331106 ******/ %feature("compactdefaultargs") SetBackground; %feature("autodoc", " Parameters @@ -2900,8 +2900,8 @@ Modifies the window gradient background. ") SetBackground; void SetBackground(const Aspect_GradientBackground & theBackground); - /****************** SetBackground ******************/ - /**** md5 signature: 333d66c15042163afcf370e304fa7b6a ****/ + /****** Aspect_Window::SetBackground ******/ + /****** md5 signature: 333d66c15042163afcf370e304fa7b6a ******/ %feature("compactdefaultargs") SetBackground; %feature("autodoc", " Parameters @@ -2920,8 +2920,8 @@ Modifies the window gradient background. ") SetBackground; void SetBackground(const Quantity_Color & theFirstColor, const Quantity_Color & theSecondColor, const Aspect_GradientFillMethod theFillMethod); - /****************** SetTitle ******************/ - /**** md5 signature: e6432d7e27226322b8262b3f3f4d5a28 ****/ + /****** Aspect_Window::SetTitle ******/ + /****** md5 signature: e6432d7e27226322b8262b3f3f4d5a28 ******/ %feature("compactdefaultargs") SetTitle; %feature("autodoc", " Parameters @@ -2938,8 +2938,8 @@ Sets window title. ") SetTitle; virtual void SetTitle(TCollection_AsciiString theTitle); - /****************** SetVirtual ******************/ - /**** md5 signature: f013b7099e5195f3ad8ac5f9c350083a ****/ + /****** Aspect_Window::SetVirtual ******/ + /****** md5 signature: f013b7099e5195f3ad8ac5f9c350083a ******/ %feature("compactdefaultargs") SetVirtual; %feature("autodoc", " Parameters @@ -2956,8 +2956,8 @@ Setup the virtual state. ") SetVirtual; void SetVirtual(const Standard_Boolean theVirtual); - /****************** Size ******************/ - /**** md5 signature: 5ff69e0e67e54ec54de4bd366eb3aa6a ****/ + /****** Aspect_Window::Size ******/ + /****** md5 signature: 5ff69e0e67e54ec54de4bd366eb3aa6a ******/ %feature("compactdefaultargs") Size; %feature("autodoc", " Parameters @@ -2974,8 +2974,8 @@ Returns the window size in pixel. ") Size; virtual void Size(Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** TopLeft ******************/ - /**** md5 signature: 3da1646606e47f0bfb9b901a144b8b7a ****/ + /****** Aspect_Window::TopLeft ******/ + /****** md5 signature: 3da1646606e47f0bfb9b901a144b8b7a ******/ %feature("compactdefaultargs") TopLeft; %feature("autodoc", "Return ------- @@ -2987,8 +2987,8 @@ Returns window top-left corner. ") TopLeft; Graphic3d_Vec2i TopLeft(); - /****************** Unmap ******************/ - /**** md5 signature: 2681daf3d4beece6a894fb54cb645818 ****/ + /****** Aspect_Window::Unmap ******/ + /****** md5 signature: 2681daf3d4beece6a894fb54cb645818 ******/ %feature("compactdefaultargs") Unmap; %feature("autodoc", "Return ------- @@ -3025,8 +3025,8 @@ Closes the window . %nodefaultctor Aspect_WindowInputListener; class Aspect_WindowInputListener { public: - /****************** AddTouchPoint ******************/ - /**** md5 signature: 93b82d6d34eb813c208bc4163ef671c4 ****/ + /****** Aspect_WindowInputListener::AddTouchPoint ******/ + /****** md5 signature: 93b82d6d34eb813c208bc4163ef671c4 ******/ %feature("compactdefaultargs") AddTouchPoint; %feature("autodoc", " Parameters @@ -3045,8 +3045,8 @@ Add touch point with the given id. this method is expected to be called from ui ") AddTouchPoint; virtual void AddTouchPoint(Standard_Size theId, const Graphic3d_Vec2d & thePnt, Standard_Boolean theClearBefore = false); - /****************** Change3dMouseIsNoRotate ******************/ - /**** md5 signature: b2ff1af628a01e66606ed582c146ef69 ****/ + /****** Aspect_WindowInputListener::Change3dMouseIsNoRotate ******/ + /****** md5 signature: b2ff1af628a01e66606ed582c146ef69 ******/ %feature("compactdefaultargs") Change3dMouseIsNoRotate; %feature("autodoc", "Return ------- @@ -3058,8 +3058,8 @@ Return 3d mouse rotation axes (tilt/roll/spin) ignore flag; (false, false, false ") Change3dMouseIsNoRotate; NCollection_Vec3 & Change3dMouseIsNoRotate(); - /****************** Change3dMouseToReverse ******************/ - /**** md5 signature: 74994d53f8199fd2049bc1854acbcdb2 ****/ + /****** Aspect_WindowInputListener::Change3dMouseToReverse ******/ + /****** md5 signature: 74994d53f8199fd2049bc1854acbcdb2 ******/ %feature("compactdefaultargs") Change3dMouseToReverse; %feature("autodoc", "Return ------- @@ -3071,8 +3071,8 @@ Return 3d mouse rotation axes (tilt/roll/spin) reverse flag; (true, false, false ") Change3dMouseToReverse; NCollection_Vec3 & Change3dMouseToReverse(); - /****************** ChangeKeys ******************/ - /**** md5 signature: 5ba331e57bcd00b6539ab5d9145324ac ****/ + /****** Aspect_WindowInputListener::ChangeKeys ******/ + /****** md5 signature: 5ba331e57bcd00b6539ab5d9145324ac ******/ %feature("compactdefaultargs") ChangeKeys; %feature("autodoc", "Return ------- @@ -3084,8 +3084,8 @@ Return keyboard state. ") ChangeKeys; Aspect_VKeySet & ChangeKeys(); - /****************** EventTime ******************/ - /**** md5 signature: 6bdc5b17561b5be0e9e4dbdd76a72ace ****/ + /****** Aspect_WindowInputListener::EventTime ******/ + /****** md5 signature: 6bdc5b17561b5be0e9e4dbdd76a72ace ******/ %feature("compactdefaultargs") EventTime; %feature("autodoc", "Return ------- @@ -3097,8 +3097,8 @@ Return event time (e.g. current time). ") EventTime; double EventTime(); - /****************** Get3dMouseIsNoRotate ******************/ - /**** md5 signature: ae14b65261c4d2a6b12679cc1f5c5ed4 ****/ + /****** Aspect_WindowInputListener::Get3dMouseIsNoRotate ******/ + /****** md5 signature: ae14b65261c4d2a6b12679cc1f5c5ed4 ******/ %feature("compactdefaultargs") Get3dMouseIsNoRotate; %feature("autodoc", "Return ------- @@ -3110,8 +3110,8 @@ Return 3d mouse rotation axes (tilt/roll/spin) ignore flag; (false, false, false ") Get3dMouseIsNoRotate; const NCollection_Vec3 & Get3dMouseIsNoRotate(); - /****************** Get3dMouseRotationScale ******************/ - /**** md5 signature: 6e7927184907412546b0e3bf5c131f00 ****/ + /****** Aspect_WindowInputListener::Get3dMouseRotationScale ******/ + /****** md5 signature: 6e7927184907412546b0e3bf5c131f00 ******/ %feature("compactdefaultargs") Get3dMouseRotationScale; %feature("autodoc", "Return ------- @@ -3123,8 +3123,8 @@ Return acceleration ratio for rotation event; 4.0 by default. ") Get3dMouseRotationScale; float Get3dMouseRotationScale(); - /****************** Get3dMouseToReverse ******************/ - /**** md5 signature: a365f1e9e4397aece1eb44aa7383f6d5 ****/ + /****** Aspect_WindowInputListener::Get3dMouseToReverse ******/ + /****** md5 signature: a365f1e9e4397aece1eb44aa7383f6d5 ******/ %feature("compactdefaultargs") Get3dMouseToReverse; %feature("autodoc", "Return ------- @@ -3136,8 +3136,8 @@ Return 3d mouse rotation axes (tilt/roll/spin) reverse flag; (true, false, false ") Get3dMouseToReverse; const NCollection_Vec3 & Get3dMouseToReverse(); - /****************** Get3dMouseTranslationScale ******************/ - /**** md5 signature: f426a4558b5227de61530d9d20b93e7e ****/ + /****** Aspect_WindowInputListener::Get3dMouseTranslationScale ******/ + /****** md5 signature: f426a4558b5227de61530d9d20b93e7e ******/ %feature("compactdefaultargs") Get3dMouseTranslationScale; %feature("autodoc", "Return ------- @@ -3149,8 +3149,8 @@ Return acceleration ratio for translation event; 2.0 by default. ") Get3dMouseTranslationScale; float Get3dMouseTranslationScale(); - /****************** HasTouchPoints ******************/ - /**** md5 signature: f6532233e79841283a6d00ea2e7477d5 ****/ + /****** Aspect_WindowInputListener::HasTouchPoints ******/ + /****** md5 signature: f6532233e79841283a6d00ea2e7477d5 ******/ %feature("compactdefaultargs") HasTouchPoints; %feature("autodoc", "Return ------- @@ -3162,8 +3162,8 @@ Return true if touches map is not empty. ") HasTouchPoints; bool HasTouchPoints(); - /****************** KeyDown ******************/ - /**** md5 signature: 5192d78be0f66dc0b2cf998103ed19af ****/ + /****** Aspect_WindowInputListener::KeyDown ******/ + /****** md5 signature: 5192d78be0f66dc0b2cf998103ed19af ******/ %feature("compactdefaultargs") KeyDown; %feature("autodoc", " Parameters @@ -3182,8 +3182,8 @@ Press key. default implementation updates internal cache. @param thekey key pres ") KeyDown; virtual void KeyDown(Aspect_VKey theKey, double theTime, double thePressure = 1.0); - /****************** KeyFromAxis ******************/ - /**** md5 signature: a8592c856484d5ea635556005b4dbf66 ****/ + /****** Aspect_WindowInputListener::KeyFromAxis ******/ + /****** md5 signature: a8592c856484d5ea635556005b4dbf66 ******/ %feature("compactdefaultargs") KeyFromAxis; %feature("autodoc", " Parameters @@ -3203,8 +3203,8 @@ Simulate key up/down events from axis value. default implementation updates inte ") KeyFromAxis; virtual void KeyFromAxis(Aspect_VKey theNegative, Aspect_VKey thePositive, double theTime, double thePressure); - /****************** KeyUp ******************/ - /**** md5 signature: facf026fe52d5d68e622d779a08b26c3 ****/ + /****** Aspect_WindowInputListener::KeyUp ******/ + /****** md5 signature: facf026fe52d5d68e622d779a08b26c3 ******/ %feature("compactdefaultargs") KeyUp; %feature("autodoc", " Parameters @@ -3222,8 +3222,8 @@ Release key. default implementation updates internal cache. @param thekey key pr ") KeyUp; virtual void KeyUp(Aspect_VKey theKey, double theTime); - /****************** Keys ******************/ - /**** md5 signature: 71088904ae13bced99cf6e1155c58478 ****/ + /****** Aspect_WindowInputListener::Keys ******/ + /****** md5 signature: 71088904ae13bced99cf6e1155c58478 ******/ %feature("compactdefaultargs") Keys; %feature("autodoc", "Return ------- @@ -3235,8 +3235,8 @@ Return keyboard state. ") Keys; const Aspect_VKeySet & Keys(); - /****************** LastMouseFlags ******************/ - /**** md5 signature: 891e38e0b645d78e87ef09c802ac2d63 ****/ + /****** Aspect_WindowInputListener::LastMouseFlags ******/ + /****** md5 signature: 891e38e0b645d78e87ef09c802ac2d63 ******/ %feature("compactdefaultargs") LastMouseFlags; %feature("autodoc", "Return ------- @@ -3248,8 +3248,8 @@ Return active key modifiers passed with last mouse event. ") LastMouseFlags; Aspect_VKeyFlags LastMouseFlags(); - /****************** LastMousePosition ******************/ - /**** md5 signature: 69040771a57339f922c8a0c6021122bb ****/ + /****** Aspect_WindowInputListener::LastMousePosition ******/ + /****** md5 signature: 69040771a57339f922c8a0c6021122bb ******/ %feature("compactdefaultargs") LastMousePosition; %feature("autodoc", "Return ------- @@ -3261,8 +3261,8 @@ Return last mouse position. ") LastMousePosition; const Graphic3d_Vec2i & LastMousePosition(); - /****************** PressMouseButton ******************/ - /**** md5 signature: 3011ceaa0add6213ae689425180a9aab ****/ + /****** Aspect_WindowInputListener::PressMouseButton ******/ + /****** md5 signature: 3011ceaa0add6213ae689425180a9aab ******/ %feature("compactdefaultargs") PressMouseButton; %feature("autodoc", " Parameters @@ -3282,8 +3282,8 @@ Handle mouse button press event. this method is expected to be called from ui th ") PressMouseButton; bool PressMouseButton(const Graphic3d_Vec2i & thePoint, Aspect_VKeyMouse theButton, Aspect_VKeyFlags theModifiers, bool theIsEmulated); - /****************** PressedMouseButtons ******************/ - /**** md5 signature: 28ea733557be0052235dc8a7fe3ed119 ****/ + /****** Aspect_WindowInputListener::PressedMouseButtons ******/ + /****** md5 signature: 28ea733557be0052235dc8a7fe3ed119 ******/ %feature("compactdefaultargs") PressedMouseButtons; %feature("autodoc", "Return ------- @@ -3295,8 +3295,8 @@ Return currently pressed mouse buttons. ") PressedMouseButtons; Aspect_VKeyMouse PressedMouseButtons(); - /****************** ProcessClose ******************/ - /**** md5 signature: 59654ad0d3a6816d4daa90e13a580cde ****/ + /****** Aspect_WindowInputListener::ProcessClose ******/ + /****** md5 signature: 59654ad0d3a6816d4daa90e13a580cde ******/ %feature("compactdefaultargs") ProcessClose; %feature("autodoc", "Return ------- @@ -3308,8 +3308,8 @@ Handle window close event. ") ProcessClose; virtual void ProcessClose(); - /****************** ProcessConfigure ******************/ - /**** md5 signature: ca30e387334b4284a619ea054d2c8c75 ****/ + /****** Aspect_WindowInputListener::ProcessConfigure ******/ + /****** md5 signature: ca30e387334b4284a619ea054d2c8c75 ******/ %feature("compactdefaultargs") ProcessConfigure; %feature("autodoc", " Parameters @@ -3326,8 +3326,8 @@ Handle window resize event. ") ProcessConfigure; virtual void ProcessConfigure(bool theIsResized); - /****************** ProcessExpose ******************/ - /**** md5 signature: f597030918979508d41a1535a55a52da ****/ + /****** Aspect_WindowInputListener::ProcessExpose ******/ + /****** md5 signature: f597030918979508d41a1535a55a52da ******/ %feature("compactdefaultargs") ProcessExpose; %feature("autodoc", "Return ------- @@ -3339,8 +3339,8 @@ Handle expose event (window content has been invalidation and should be redrawn) ") ProcessExpose; virtual void ProcessExpose(); - /****************** ProcessFocus ******************/ - /**** md5 signature: 62ed591bdb7901b7386a340b9d7b2f9b ****/ + /****** Aspect_WindowInputListener::ProcessFocus ******/ + /****** md5 signature: 62ed591bdb7901b7386a340b9d7b2f9b ******/ %feature("compactdefaultargs") ProcessFocus; %feature("autodoc", " Parameters @@ -3357,8 +3357,8 @@ Handle focus event. ") ProcessFocus; virtual void ProcessFocus(bool theIsActivated); - /****************** ProcessInput ******************/ - /**** md5 signature: 25eccaa30cc27b2a88e167899d319730 ****/ + /****** Aspect_WindowInputListener::ProcessInput ******/ + /****** md5 signature: 25eccaa30cc27b2a88e167899d319730 ******/ %feature("compactdefaultargs") ProcessInput; %feature("autodoc", "Return ------- @@ -3370,8 +3370,8 @@ Handle window input event immediately (flush input buffer or ignore). ") ProcessInput; virtual void ProcessInput(); - /****************** ReleaseMouseButton ******************/ - /**** md5 signature: a9b43da8768564266828a78fde53802f ****/ + /****** Aspect_WindowInputListener::ReleaseMouseButton ******/ + /****** md5 signature: a9b43da8768564266828a78fde53802f ******/ %feature("compactdefaultargs") ReleaseMouseButton; %feature("autodoc", " Parameters @@ -3391,8 +3391,8 @@ Handle mouse button release event. this method is expected to be called from ui ") ReleaseMouseButton; bool ReleaseMouseButton(const Graphic3d_Vec2i & thePoint, Aspect_VKeyMouse theButton, Aspect_VKeyFlags theModifiers, bool theIsEmulated); - /****************** RemoveTouchPoint ******************/ - /**** md5 signature: 45c3401339716ca58b815f7e44a3d196 ****/ + /****** Aspect_WindowInputListener::RemoveTouchPoint ******/ + /****** md5 signature: 45c3401339716ca58b815f7e44a3d196 ******/ %feature("compactdefaultargs") RemoveTouchPoint; %feature("autodoc", " Parameters @@ -3410,8 +3410,8 @@ Remove touch point with the given id. this method is expected to be called from ") RemoveTouchPoint; virtual bool RemoveTouchPoint(Standard_Size theId, Standard_Boolean theClearSelectPnts = false); - /****************** Set3dMousePreciseInput ******************/ - /**** md5 signature: 0ff4172c7dce21c124fb3941d21634cd ****/ + /****** Aspect_WindowInputListener::Set3dMousePreciseInput ******/ + /****** md5 signature: 0ff4172c7dce21c124fb3941d21634cd ******/ %feature("compactdefaultargs") Set3dMousePreciseInput; %feature("autodoc", " Parameters @@ -3428,8 +3428,8 @@ Set quadric acceleration flag. ") Set3dMousePreciseInput; void Set3dMousePreciseInput(bool theIsQuadric); - /****************** Set3dMouseRotationScale ******************/ - /**** md5 signature: 26cc1d3413bc1ed0806210cb74503bf8 ****/ + /****** Aspect_WindowInputListener::Set3dMouseRotationScale ******/ + /****** md5 signature: 26cc1d3413bc1ed0806210cb74503bf8 ******/ %feature("compactdefaultargs") Set3dMouseRotationScale; %feature("autodoc", " Parameters @@ -3446,8 +3446,8 @@ Set acceleration ratio for rotation event. ") Set3dMouseRotationScale; void Set3dMouseRotationScale(float theScale); - /****************** Set3dMouseTranslationScale ******************/ - /**** md5 signature: d66cf6c87510f4cf28118e77235f6dc1 ****/ + /****** Aspect_WindowInputListener::Set3dMouseTranslationScale ******/ + /****** md5 signature: d66cf6c87510f4cf28118e77235f6dc1 ******/ %feature("compactdefaultargs") Set3dMouseTranslationScale; %feature("autodoc", " Parameters @@ -3464,8 +3464,8 @@ Set acceleration ratio for translation event. ") Set3dMouseTranslationScale; void Set3dMouseTranslationScale(float theScale); - /****************** To3dMousePreciseInput ******************/ - /**** md5 signature: e7d1cbbce6f739652fb2dcffebfdc574 ****/ + /****** Aspect_WindowInputListener::To3dMousePreciseInput ******/ + /****** md5 signature: e7d1cbbce6f739652fb2dcffebfdc574 ******/ %feature("compactdefaultargs") To3dMousePreciseInput; %feature("autodoc", "Return ------- @@ -3477,8 +3477,8 @@ Return quadric acceleration flag; true by default. ") To3dMousePreciseInput; bool To3dMousePreciseInput(); - /****************** TouchPoints ******************/ - /**** md5 signature: aae5a0777c45c41be0cc42d98cb8d6a5 ****/ + /****** Aspect_WindowInputListener::TouchPoints ******/ + /****** md5 signature: aae5a0777c45c41be0cc42d98cb8d6a5 ******/ %feature("compactdefaultargs") TouchPoints; %feature("autodoc", "Return ------- @@ -3490,8 +3490,8 @@ Return map of active touches. ") TouchPoints; const Aspect_TouchMap & TouchPoints(); - /****************** Update3dMouse ******************/ - /**** md5 signature: 989c941c2b66167e2e5fa84999e81fe3 ****/ + /****** Aspect_WindowInputListener::Update3dMouse ******/ + /****** md5 signature: 989c941c2b66167e2e5fa84999e81fe3 ******/ %feature("compactdefaultargs") Update3dMouse; %feature("autodoc", " Parameters @@ -3508,8 +3508,8 @@ Process 3d mouse input event (redirects to translation, rotation and keys). ") Update3dMouse; virtual bool Update3dMouse(const WNT_HIDSpaceMouse & theEvent); - /****************** UpdateMouseButtons ******************/ - /**** md5 signature: 344a32c08e48df63d66f82e75f14f4ac ****/ + /****** Aspect_WindowInputListener::UpdateMouseButtons ******/ + /****** md5 signature: 344a32c08e48df63d66f82e75f14f4ac ******/ %feature("compactdefaultargs") UpdateMouseButtons; %feature("autodoc", " Parameters @@ -3529,8 +3529,8 @@ Handle mouse button press/release event. this method is expected to be called fr ") UpdateMouseButtons; virtual bool UpdateMouseButtons(const Graphic3d_Vec2i & thePoint, Aspect_VKeyMouse theButtons, Aspect_VKeyFlags theModifiers, bool theIsEmulated); - /****************** UpdateMousePosition ******************/ - /**** md5 signature: 217f410d7de77f6f79b905cc2f67eaf4 ****/ + /****** Aspect_WindowInputListener::UpdateMousePosition ******/ + /****** md5 signature: 217f410d7de77f6f79b905cc2f67eaf4 ******/ %feature("compactdefaultargs") UpdateMousePosition; %feature("autodoc", " Parameters @@ -3550,8 +3550,8 @@ Handle mouse cursor movement event. this method is expected to be called from ui ") UpdateMousePosition; virtual bool UpdateMousePosition(const Graphic3d_Vec2i & thePoint, Aspect_VKeyMouse theButtons, Aspect_VKeyFlags theModifiers, bool theIsEmulated); - /****************** UpdateMouseScroll ******************/ - /**** md5 signature: 33a1d2af16e7dcdaa2ec2c0ec68a7748 ****/ + /****** Aspect_WindowInputListener::UpdateMouseScroll ******/ + /****** md5 signature: 33a1d2af16e7dcdaa2ec2c0ec68a7748 ******/ %feature("compactdefaultargs") UpdateMouseScroll; %feature("autodoc", " Parameters @@ -3568,8 +3568,8 @@ Update mouse scroll event. this method is expected to be called from ui thread. ") UpdateMouseScroll; virtual bool UpdateMouseScroll(const Aspect_ScrollDelta & theDelta); - /****************** UpdateTouchPoint ******************/ - /**** md5 signature: 32b5b3a5782487b44b49157cf52c6e04 ****/ + /****** Aspect_WindowInputListener::UpdateTouchPoint ******/ + /****** md5 signature: 32b5b3a5782487b44b49157cf52c6e04 ******/ %feature("compactdefaultargs") UpdateTouchPoint; %feature("autodoc", " Parameters @@ -3587,8 +3587,8 @@ Update touch point with the given id. if point with specified id was not registe ") UpdateTouchPoint; virtual void UpdateTouchPoint(Standard_Size theId, const Graphic3d_Vec2d & thePnt); - /****************** update3dMouseKeys ******************/ - /**** md5 signature: 7068d4e0858b2659de00f111094ecc7f ****/ + /****** Aspect_WindowInputListener::update3dMouseKeys ******/ + /****** md5 signature: 7068d4e0858b2659de00f111094ecc7f ******/ %feature("compactdefaultargs") update3dMouseKeys; %feature("autodoc", " Parameters @@ -3605,8 +3605,8 @@ Process 3d mouse input keys event. ") update3dMouseKeys; virtual bool update3dMouseKeys(const WNT_HIDSpaceMouse & theEvent); - /****************** update3dMouseRotation ******************/ - /**** md5 signature: 0e88dd09859b6f02e48c9b73ec73f69b ****/ + /****** Aspect_WindowInputListener::update3dMouseRotation ******/ + /****** md5 signature: 0e88dd09859b6f02e48c9b73ec73f69b ******/ %feature("compactdefaultargs") update3dMouseRotation; %feature("autodoc", " Parameters @@ -3623,8 +3623,8 @@ Process 3d mouse input rotation event. ") update3dMouseRotation; virtual bool update3dMouseRotation(const WNT_HIDSpaceMouse & theEvent); - /****************** update3dMouseTranslation ******************/ - /**** md5 signature: c826319c70a567fbe2c3401c0a5c2471 ****/ + /****** Aspect_WindowInputListener::update3dMouseTranslation ******/ + /****** md5 signature: c826319c70a567fbe2c3401c0a5c2471 ******/ %feature("compactdefaultargs") update3dMouseTranslation; %feature("autodoc", " Parameters @@ -3655,8 +3655,8 @@ Process 3d mouse input translation event. ************************/ class Aspect_XRAction : public Standard_Transient { public: - /****************** Aspect_XRAction ******************/ - /**** md5 signature: 40a266a780195e2fd6ebc2e8b13a5281 ****/ + /****** Aspect_XRAction::Aspect_XRAction ******/ + /****** md5 signature: 40a266a780195e2fd6ebc2e8b13a5281 ******/ %feature("compactdefaultargs") Aspect_XRAction; %feature("autodoc", " Parameters @@ -3674,8 +3674,8 @@ Main constructor. ") Aspect_XRAction; Aspect_XRAction(TCollection_AsciiString theId, const Aspect_XRActionType theType); - /****************** Id ******************/ - /**** md5 signature: 932272b78b9184cc2485436a72cc2df4 ****/ + /****** Aspect_XRAction::Id ******/ + /****** md5 signature: 932272b78b9184cc2485436a72cc2df4 ******/ %feature("compactdefaultargs") Id; %feature("autodoc", "Return ------- @@ -3687,8 +3687,8 @@ Return action id. ") Id; const TCollection_AsciiString & Id(); - /****************** IsValid ******************/ - /**** md5 signature: 735088818cf24ebe0ebc7005a507da69 ****/ + /****** Aspect_XRAction::IsValid ******/ + /****** md5 signature: 735088818cf24ebe0ebc7005a507da69 ******/ %feature("compactdefaultargs") IsValid; %feature("autodoc", "Return ------- @@ -3700,8 +3700,8 @@ Return true if action is defined. ") IsValid; bool IsValid(); - /****************** RawHandle ******************/ - /**** md5 signature: 9d20e0a6fff437dc17426cf4e026b189 ****/ + /****** Aspect_XRAction::RawHandle ******/ + /****** md5 signature: 9d20e0a6fff437dc17426cf4e026b189 ******/ %feature("compactdefaultargs") RawHandle; %feature("autodoc", "Return ------- @@ -3713,8 +3713,8 @@ Return action handle. ") RawHandle; uint64_t RawHandle(); - /****************** SetRawHandle ******************/ - /**** md5 signature: deb51d9baa50e7628d1bd2ab92c27b11 ****/ + /****** Aspect_XRAction::SetRawHandle ******/ + /****** md5 signature: deb51d9baa50e7628d1bd2ab92c27b11 ******/ %feature("compactdefaultargs") SetRawHandle; %feature("autodoc", " Parameters @@ -3731,8 +3731,8 @@ Set action handle. ") SetRawHandle; void SetRawHandle(uint64_t theHande); - /****************** Type ******************/ - /**** md5 signature: 0d72e5323e44404dea40a38f3ba7d11c ****/ + /****** Aspect_XRAction::Type ******/ + /****** md5 signature: 0d72e5323e44404dea40a38f3ba7d11c ******/ %feature("compactdefaultargs") Type; %feature("autodoc", "Return ------- @@ -3760,8 +3760,8 @@ Return action type. ***************************/ class Aspect_XRActionSet : public Standard_Transient { public: - /****************** Aspect_XRActionSet ******************/ - /**** md5 signature: d45a5ec20e38bdb339eb2ee8d975e996 ****/ + /****** Aspect_XRActionSet::Aspect_XRActionSet ******/ + /****** md5 signature: d45a5ec20e38bdb339eb2ee8d975e996 ******/ %feature("compactdefaultargs") Aspect_XRActionSet; %feature("autodoc", " Parameters @@ -3778,8 +3778,8 @@ Main constructor. ") Aspect_XRActionSet; Aspect_XRActionSet(TCollection_AsciiString theId); - /****************** Actions ******************/ - /**** md5 signature: 8711ba344778f38c5ecdfeccb1ff6133 ****/ + /****** Aspect_XRActionSet::Actions ******/ + /****** md5 signature: 8711ba344778f38c5ecdfeccb1ff6133 ******/ %feature("compactdefaultargs") Actions; %feature("autodoc", "Return ------- @@ -3791,8 +3791,8 @@ Return map of actions. ") Actions; const Aspect_XRActionMap & Actions(); - /****************** AddAction ******************/ - /**** md5 signature: 41c9367a03de48c635cea24270f2015a ****/ + /****** Aspect_XRActionSet::AddAction ******/ + /****** md5 signature: 41c9367a03de48c635cea24270f2015a ******/ %feature("compactdefaultargs") AddAction; %feature("autodoc", " Parameters @@ -3809,8 +3809,8 @@ Add action. ") AddAction; void AddAction(const opencascade::handle & theAction); - /****************** Id ******************/ - /**** md5 signature: 932272b78b9184cc2485436a72cc2df4 ****/ + /****** Aspect_XRActionSet::Id ******/ + /****** md5 signature: 932272b78b9184cc2485436a72cc2df4 ******/ %feature("compactdefaultargs") Id; %feature("autodoc", "Return ------- @@ -3822,8 +3822,8 @@ Return action id. ") Id; const TCollection_AsciiString & Id(); - /****************** RawHandle ******************/ - /**** md5 signature: 9d20e0a6fff437dc17426cf4e026b189 ****/ + /****** Aspect_XRActionSet::RawHandle ******/ + /****** md5 signature: 9d20e0a6fff437dc17426cf4e026b189 ******/ %feature("compactdefaultargs") RawHandle; %feature("autodoc", "Return ------- @@ -3835,8 +3835,8 @@ Return action handle. ") RawHandle; uint64_t RawHandle(); - /****************** SetRawHandle ******************/ - /**** md5 signature: deb51d9baa50e7628d1bd2ab92c27b11 ****/ + /****** Aspect_XRActionSet::SetRawHandle ******/ + /****** md5 signature: deb51d9baa50e7628d1bd2ab92c27b11 ******/ %feature("compactdefaultargs") SetRawHandle; %feature("autodoc", " Parameters @@ -3874,8 +3874,8 @@ class Aspect_XRAnalogActionData { NCollection_Vec3 VecXYZ; NCollection_Vec3 DeltaXYZ; bool IsActive; - /****************** Aspect_XRAnalogActionData ******************/ - /**** md5 signature: 2f2cb24f7e51cc622f48142c162305a9 ****/ + /****** Aspect_XRAnalogActionData::Aspect_XRAnalogActionData ******/ + /****** md5 signature: 2f2cb24f7e51cc622f48142c162305a9 ******/ %feature("compactdefaultargs") Aspect_XRAnalogActionData; %feature("autodoc", "Return ------- @@ -3887,8 +3887,8 @@ Empty constructor. ") Aspect_XRAnalogActionData; Aspect_XRAnalogActionData(); - /****************** IsChanged ******************/ - /**** md5 signature: 6d97ce9bcd3b0740efa5aa99476487a7 ****/ + /****** Aspect_XRAnalogActionData::IsChanged ******/ + /****** md5 signature: 6d97ce9bcd3b0740efa5aa99476487a7 ******/ %feature("compactdefaultargs") IsChanged; %feature("autodoc", "Return ------- @@ -3919,8 +3919,8 @@ class Aspect_XRDigitalActionData { bool IsActive; bool IsPressed; bool IsChanged; - /****************** Aspect_XRDigitalActionData ******************/ - /**** md5 signature: 11e9cfb288833ee07981b262b013a14e ****/ + /****** Aspect_XRDigitalActionData::Aspect_XRDigitalActionData ******/ + /****** md5 signature: 11e9cfb288833ee07981b262b013a14e ******/ %feature("compactdefaultargs") Aspect_XRDigitalActionData; %feature("autodoc", "Return ------- @@ -3950,8 +3950,8 @@ class Aspect_XRHapticActionData { float Duration; float Frequency; float Amplitude; - /****************** Aspect_XRHapticActionData ******************/ - /**** md5 signature: c42f3b26d235df1234aa3b319bd587d7 ****/ + /****** Aspect_XRHapticActionData::Aspect_XRHapticActionData ******/ + /****** md5 signature: c42f3b26d235df1234aa3b319bd587d7 ******/ %feature("compactdefaultargs") Aspect_XRHapticActionData; %feature("autodoc", "Return ------- @@ -3963,8 +3963,8 @@ Empty constructor. ") Aspect_XRHapticActionData; Aspect_XRHapticActionData(); - /****************** IsValid ******************/ - /**** md5 signature: 735088818cf24ebe0ebc7005a507da69 ****/ + /****** Aspect_XRHapticActionData::IsValid ******/ + /****** md5 signature: 735088818cf24ebe0ebc7005a507da69 ******/ %feature("compactdefaultargs") IsValid; %feature("autodoc", "Return ------- @@ -3993,8 +3993,8 @@ class Aspect_XRPoseActionData { Aspect_TrackedDevicePose Pose; uint64_t ActiveOrigin; bool IsActive; - /****************** Aspect_XRPoseActionData ******************/ - /**** md5 signature: 37cbeeeffeaedd7d742097ec767fe262 ****/ + /****** Aspect_XRPoseActionData::Aspect_XRPoseActionData ******/ + /****** md5 signature: 37cbeeeffeaedd7d742097ec767fe262 ******/ %feature("compactdefaultargs") Aspect_XRPoseActionData; %feature("autodoc", "Return ------- @@ -4057,8 +4057,8 @@ TrackingUniverseOrigin_Standing = TrackingUniverseOrigin.TrackingUniverseOrigin_ }; /* end python proxy for enums */ - /****************** AbortHapticVibrationAction ******************/ - /**** md5 signature: 2c091ce7d5b95edbd8b37ef2a7d5033f ****/ + /****** Aspect_XRSession::AbortHapticVibrationAction ******/ + /****** md5 signature: 2c091ce7d5b95edbd8b37ef2a7d5033f ******/ %feature("compactdefaultargs") AbortHapticVibrationAction; %feature("autodoc", " Parameters @@ -4075,8 +4075,8 @@ Abort vibration. ") AbortHapticVibrationAction; void AbortHapticVibrationAction(const opencascade::handle & theAction); - /****************** Aspect ******************/ - /**** md5 signature: 2e31d5d4e9d98682a1043fbc438ab30a ****/ + /****** Aspect_XRSession::Aspect ******/ + /****** md5 signature: 2e31d5d4e9d98682a1043fbc438ab30a ******/ %feature("compactdefaultargs") Aspect; %feature("autodoc", "Return ------- @@ -4088,8 +4088,8 @@ Return aspect ratio. ") Aspect; Standard_Real Aspect(); - /****************** Close ******************/ - /**** md5 signature: 1b03fb860325770bc6fb04462ecfd6fe ****/ + /****** Aspect_XRSession::Close ******/ + /****** md5 signature: 1b03fb860325770bc6fb04462ecfd6fe ******/ %feature("compactdefaultargs") Close; %feature("autodoc", "Return ------- @@ -4101,8 +4101,8 @@ Release session. ") Close; virtual void Close(); - /****************** DisplayFrequency ******************/ - /**** md5 signature: 7bc433f33163de75c917820a29539856 ****/ + /****** Aspect_XRSession::DisplayFrequency ******/ + /****** md5 signature: 7bc433f33163de75c917820a29539856 ******/ %feature("compactdefaultargs") DisplayFrequency; %feature("autodoc", "Return ------- @@ -4114,8 +4114,8 @@ Return display frequency or 0 if unknown. ") DisplayFrequency; Standard_ShortReal DisplayFrequency(); - /****************** EyeToHeadTransform ******************/ - /**** md5 signature: f29783bde9cca028ac265ae76bdafba8 ****/ + /****** Aspect_XRSession::EyeToHeadTransform ******/ + /****** md5 signature: f29783bde9cca028ac265ae76bdafba8 ******/ %feature("compactdefaultargs") EyeToHeadTransform; %feature("autodoc", " Parameters @@ -4132,8 +4132,8 @@ Return transformation from eye to head. ") EyeToHeadTransform; virtual NCollection_Mat4 EyeToHeadTransform(Aspect_Eye theEye); - /****************** FieldOfView ******************/ - /**** md5 signature: db3c9855b4bf6bb7c82f4c6a1b35efb3 ****/ + /****** Aspect_XRSession::FieldOfView ******/ + /****** md5 signature: db3c9855b4bf6bb7c82f4c6a1b35efb3 ******/ %feature("compactdefaultargs") FieldOfView; %feature("autodoc", "Return ------- @@ -4145,8 +4145,8 @@ Return field of view. ") FieldOfView; Standard_Real FieldOfView(); - /****************** GenericAction ******************/ - /**** md5 signature: 7b32709a9882affc64e34a4979e4522d ****/ + /****** Aspect_XRSession::GenericAction ******/ + /****** md5 signature: 7b32709a9882affc64e34a4979e4522d ******/ %feature("compactdefaultargs") GenericAction; %feature("autodoc", " Parameters @@ -4164,8 +4164,8 @@ Return generic action for specific hand or null if undefined. ") GenericAction; const opencascade::handle & GenericAction(Aspect_XRTrackedDeviceRole theDevice, Aspect_XRGenericAction theAction); - /****************** GetAnalogActionData ******************/ - /**** md5 signature: 8ba907292e43d1a641030bff3bf5b326 ****/ + /****** Aspect_XRSession::GetAnalogActionData ******/ + /****** md5 signature: 8ba907292e43d1a641030bff3bf5b326 ******/ %feature("compactdefaultargs") GetAnalogActionData; %feature("autodoc", " Parameters @@ -4182,8 +4182,8 @@ Fetch data for digital input action (like axis). @param theaction [in] action of ") GetAnalogActionData; virtual Aspect_XRAnalogActionData GetAnalogActionData(const opencascade::handle & theAction); - /****************** GetDigitalActionData ******************/ - /**** md5 signature: 481010d4545a367f4cd3dfec52bd745b ****/ + /****** Aspect_XRSession::GetDigitalActionData ******/ + /****** md5 signature: 481010d4545a367f4cd3dfec52bd745b ******/ %feature("compactdefaultargs") GetDigitalActionData; %feature("autodoc", " Parameters @@ -4200,8 +4200,8 @@ Fetch data for digital input action (like button). @param theaction [in] action ") GetDigitalActionData; virtual Aspect_XRDigitalActionData GetDigitalActionData(const opencascade::handle & theAction); - /****************** GetPoseActionDataForNextFrame ******************/ - /**** md5 signature: 98eeea2ec9abd109afa8aea11fadf00d ****/ + /****** Aspect_XRSession::GetPoseActionDataForNextFrame ******/ + /****** md5 signature: 98eeea2ec9abd109afa8aea11fadf00d ******/ %feature("compactdefaultargs") GetPoseActionDataForNextFrame; %feature("autodoc", " Parameters @@ -4218,8 +4218,8 @@ Fetch data for pose input action (like fingertip position). the returned values ") GetPoseActionDataForNextFrame; virtual Aspect_XRPoseActionData GetPoseActionDataForNextFrame(const opencascade::handle & theAction); - /****************** GetString ******************/ - /**** md5 signature: 995a5d10180a3ba1d11d529669c70c62 ****/ + /****** Aspect_XRSession::GetString ******/ + /****** md5 signature: 995a5d10180a3ba1d11d529669c70c62 ******/ %feature("compactdefaultargs") GetString; %feature("autodoc", " Parameters @@ -4236,8 +4236,8 @@ Query information. ") GetString; virtual TCollection_AsciiString GetString(InfoString theInfo); - /****************** HasProjectionFrustums ******************/ - /**** md5 signature: b21c3c98901bb0d2fe751c0f535b874e ****/ + /****** Aspect_XRSession::HasProjectionFrustums ******/ + /****** md5 signature: b21c3c98901bb0d2fe751c0f535b874e ******/ %feature("compactdefaultargs") HasProjectionFrustums; %feature("autodoc", "Return ------- @@ -4249,8 +4249,8 @@ Return false if projection frustums are unsupported and general 4x4 projection m ") HasProjectionFrustums; virtual bool HasProjectionFrustums(); - /****************** HasTrackedPose ******************/ - /**** md5 signature: dcd15c00cc4b480b4c1512a9d69b0c35 ****/ + /****** Aspect_XRSession::HasTrackedPose ******/ + /****** md5 signature: dcd15c00cc4b480b4c1512a9d69b0c35 ******/ %feature("compactdefaultargs") HasTrackedPose; %feature("autodoc", " Parameters @@ -4267,8 +4267,8 @@ Return true if device orientation is defined. ") HasTrackedPose; bool HasTrackedPose(Standard_Integer theDevice); - /****************** HeadPose ******************/ - /**** md5 signature: d492f7441f83aa8c0f430cdab6e86f73 ****/ + /****** Aspect_XRSession::HeadPose ******/ + /****** md5 signature: d492f7441f83aa8c0f430cdab6e86f73 ******/ %feature("compactdefaultargs") HeadPose; %feature("autodoc", "Return ------- @@ -4280,8 +4280,8 @@ Return head orientation in right-handed system: +y is up +x is to the right -z i ") HeadPose; const gp_Trsf HeadPose(); - /****************** HeadToEyeTransform ******************/ - /**** md5 signature: eefc127028406cfe34b43880dc164bed ****/ + /****** Aspect_XRSession::HeadToEyeTransform ******/ + /****** md5 signature: eefc127028406cfe34b43880dc164bed ******/ %feature("compactdefaultargs") HeadToEyeTransform; %feature("autodoc", " Parameters @@ -4298,8 +4298,8 @@ Return transformation from head to eye. ") HeadToEyeTransform; NCollection_Mat4 HeadToEyeTransform(Aspect_Eye theEye); - /****************** IOD ******************/ - /**** md5 signature: 0cc7208beeec9544d745fd8edb710bd8 ****/ + /****** Aspect_XRSession::IOD ******/ + /****** md5 signature: 0cc7208beeec9544d745fd8edb710bd8 ******/ %feature("compactdefaultargs") IOD; %feature("autodoc", "Return ------- @@ -4311,8 +4311,8 @@ Return intra-ocular distance (iod); also known as interpupillary distance (ipd). ") IOD; Standard_Real IOD(); - /****************** IsOpen ******************/ - /**** md5 signature: cbb165b1058ff52986668925b81dfa08 ****/ + /****** Aspect_XRSession::IsOpen ******/ + /****** md5 signature: cbb165b1058ff52986668925b81dfa08 ******/ %feature("compactdefaultargs") IsOpen; %feature("autodoc", "Return ------- @@ -4324,8 +4324,8 @@ Return true if session is opened. ") IsOpen; virtual bool IsOpen(); - /****************** LeftHandPose ******************/ - /**** md5 signature: ff3b4ff1b6e9278d95fc3d221947728e ****/ + /****** Aspect_XRSession::LeftHandPose ******/ + /****** md5 signature: ff3b4ff1b6e9278d95fc3d221947728e ******/ %feature("compactdefaultargs") LeftHandPose; %feature("autodoc", "Return ------- @@ -4337,8 +4337,8 @@ Return left hand orientation. ") LeftHandPose; gp_Trsf LeftHandPose(); - /****************** LoadRenderModel ******************/ - /**** md5 signature: bff61e6a6656e5eb23f9e9b72f8fdb71 ****/ + /****** Aspect_XRSession::LoadRenderModel ******/ + /****** md5 signature: bff61e6a6656e5eb23f9e9b72f8fdb71 ******/ %feature("compactdefaultargs") LoadRenderModel; %feature("autodoc", " Parameters @@ -4356,8 +4356,8 @@ Load model for displaying device. @param thedevice [in] device index @param thet ") LoadRenderModel; opencascade::handle LoadRenderModel(Standard_Integer theDevice, opencascade::handle & theTexture); - /****************** LoadRenderModel ******************/ - /**** md5 signature: c440d49a8c5ac84455fadd4495c2ab80 ****/ + /****** Aspect_XRSession::LoadRenderModel ******/ + /****** md5 signature: c440d49a8c5ac84455fadd4495c2ab80 ******/ %feature("compactdefaultargs") LoadRenderModel; %feature("autodoc", " Parameters @@ -4376,8 +4376,8 @@ Load model for displaying device. @param thedevice [in] device index @param thet ") LoadRenderModel; opencascade::handle LoadRenderModel(Standard_Integer theDevice, Standard_Boolean theToApplyUnitFactor, opencascade::handle & theTexture); - /****************** NamedTrackedDevice ******************/ - /**** md5 signature: 6224d7e8e485715e872fc28cc2afe1f0 ****/ + /****** Aspect_XRSession::NamedTrackedDevice ******/ + /****** md5 signature: 6224d7e8e485715e872fc28cc2afe1f0 ******/ %feature("compactdefaultargs") NamedTrackedDevice; %feature("autodoc", " Parameters @@ -4394,8 +4394,8 @@ Return index of tracked device of known role, or -1 if undefined. ") NamedTrackedDevice; virtual Standard_Integer NamedTrackedDevice(Aspect_XRTrackedDeviceRole theDevice); - /****************** Open ******************/ - /**** md5 signature: d00ec1bf018b5e93ac2a5d97d9dde636 ****/ + /****** Aspect_XRSession::Open ******/ + /****** md5 signature: d00ec1bf018b5e93ac2a5d97d9dde636 ******/ %feature("compactdefaultargs") Open; %feature("autodoc", "Return ------- @@ -4407,8 +4407,8 @@ Initialize session. ") Open; virtual bool Open(); - /****************** ProcessEvents ******************/ - /**** md5 signature: 240ee1d1e4a0e42cba1c56aac9611f29 ****/ + /****** Aspect_XRSession::ProcessEvents ******/ + /****** md5 signature: 240ee1d1e4a0e42cba1c56aac9611f29 ******/ %feature("compactdefaultargs") ProcessEvents; %feature("autodoc", "Return ------- @@ -4420,8 +4420,8 @@ Receive xr events. ") ProcessEvents; virtual void ProcessEvents(); - /****************** ProjectionFrustum ******************/ - /**** md5 signature: 9dc4ecde0b8d7e55944cdeade4e5bbf9 ****/ + /****** Aspect_XRSession::ProjectionFrustum ******/ + /****** md5 signature: 9dc4ecde0b8d7e55944cdeade4e5bbf9 ******/ %feature("compactdefaultargs") ProjectionFrustum; %feature("autodoc", " Parameters @@ -4438,8 +4438,8 @@ Return projection frustum. @sa hasprojectionfrustums(). ") ProjectionFrustum; const Aspect_FrustumLRBT & ProjectionFrustum(Aspect_Eye theEye); - /****************** ProjectionMatrix ******************/ - /**** md5 signature: 5da23c248f3062bca81dea5a0b78608f ****/ + /****** Aspect_XRSession::ProjectionMatrix ******/ + /****** md5 signature: 5da23c248f3062bca81dea5a0b78608f ******/ %feature("compactdefaultargs") ProjectionMatrix; %feature("autodoc", " Parameters @@ -4458,8 +4458,8 @@ Return projection matrix. ") ProjectionMatrix; virtual NCollection_Mat4 ProjectionMatrix(Aspect_Eye theEye, double theZNear, double theZFar); - /****************** RecommendedViewport ******************/ - /**** md5 signature: 1072307c44dc5ac0c775b17e1c89ea5c ****/ + /****** Aspect_XRSession::RecommendedViewport ******/ + /****** md5 signature: 1072307c44dc5ac0c775b17e1c89ea5c ******/ %feature("compactdefaultargs") RecommendedViewport; %feature("autodoc", "Return ------- @@ -4471,8 +4471,8 @@ Return recommended viewport width x height for rendering into vr. ") RecommendedViewport; virtual NCollection_Vec2 RecommendedViewport(); - /****************** RightHandPose ******************/ - /**** md5 signature: b997db6d22c5309fef58aaa7a85929a9 ****/ + /****** Aspect_XRSession::RightHandPose ******/ + /****** md5 signature: b997db6d22c5309fef58aaa7a85929a9 ******/ %feature("compactdefaultargs") RightHandPose; %feature("autodoc", "Return ------- @@ -4484,8 +4484,8 @@ Return right hand orientation. ") RightHandPose; gp_Trsf RightHandPose(); - /****************** SetTrackingOrigin ******************/ - /**** md5 signature: c5848a9d52580d64afea846e587f5e68 ****/ + /****** Aspect_XRSession::SetTrackingOrigin ******/ + /****** md5 signature: c5848a9d52580d64afea846e587f5e68 ******/ %feature("compactdefaultargs") SetTrackingOrigin; %feature("autodoc", " Parameters @@ -4502,8 +4502,8 @@ Set tracking origin. ") SetTrackingOrigin; virtual void SetTrackingOrigin(TrackingUniverseOrigin theOrigin); - /****************** SetUnitFactor ******************/ - /**** md5 signature: 7440cb148f828c471e5d9b5248eb7c9b ****/ + /****** Aspect_XRSession::SetUnitFactor ******/ + /****** md5 signature: 7440cb148f828c471e5d9b5248eb7c9b ******/ %feature("compactdefaultargs") SetUnitFactor; %feature("autodoc", " Parameters @@ -4520,8 +4520,8 @@ Set unit scale factor. ") SetUnitFactor; void SetUnitFactor(Standard_Real theFactor); - /****************** SubmitEye ******************/ - /**** md5 signature: e715d68400865ca08b80b6b4be7a6117 ****/ + /****** Aspect_XRSession::SubmitEye ******/ + /****** md5 signature: e715d68400865ca08b80b6b4be7a6117 ******/ %feature("compactdefaultargs") SubmitEye; %feature("autodoc", " Parameters @@ -4541,8 +4541,8 @@ Submit texture eye to xr composer. @param thetexture [in] texture handle @param ") SubmitEye; virtual bool SubmitEye(void * theTexture, Aspect_GraphicsLibrary theGraphicsLib, Aspect_ColorSpace theColorSpace, Aspect_Eye theEye); - /****************** TrackedPoses ******************/ - /**** md5 signature: 1e6c5e707589403f73daf6e2bdd7bf60 ****/ + /****** Aspect_XRSession::TrackedPoses ******/ + /****** md5 signature: 1e6c5e707589403f73daf6e2bdd7bf60 ******/ %feature("compactdefaultargs") TrackedPoses; %feature("autodoc", "Return ------- @@ -4554,8 +4554,8 @@ Return number of tracked poses array. ") TrackedPoses; const Aspect_TrackedDevicePoseArray & TrackedPoses(); - /****************** TrackingOrigin ******************/ - /**** md5 signature: db35db8c9365604e0d9a180025f9d9da ****/ + /****** Aspect_XRSession::TrackingOrigin ******/ + /****** md5 signature: db35db8c9365604e0d9a180025f9d9da ******/ %feature("compactdefaultargs") TrackingOrigin; %feature("autodoc", "Return ------- @@ -4567,8 +4567,8 @@ Return tracking origin. ") TrackingOrigin; Aspect_XRSession::TrackingUniverseOrigin TrackingOrigin(); - /****************** TriggerHapticVibrationAction ******************/ - /**** md5 signature: 039fc9219b24c9a39bd343511f01b47b ****/ + /****** Aspect_XRSession::TriggerHapticVibrationAction ******/ + /****** md5 signature: 039fc9219b24c9a39bd343511f01b47b ******/ %feature("compactdefaultargs") TriggerHapticVibrationAction; %feature("autodoc", " Parameters @@ -4586,8 +4586,8 @@ Trigger vibration. ") TriggerHapticVibrationAction; void TriggerHapticVibrationAction(const opencascade::handle & theAction, const Aspect_XRHapticActionData & theParams); - /****************** UnitFactor ******************/ - /**** md5 signature: ef896b413f2d707283340a4407bd979a ****/ + /****** Aspect_XRSession::UnitFactor ******/ + /****** md5 signature: ef896b413f2d707283340a4407bd979a ******/ %feature("compactdefaultargs") UnitFactor; %feature("autodoc", "Return ------- @@ -4599,8 +4599,8 @@ Return unit scale factor defined as scale factor for m (meters); 1.0 by default. ") UnitFactor; Standard_Real UnitFactor(); - /****************** WaitPoses ******************/ - /**** md5 signature: 2cd6ece8094e306806174f976e95a323 ****/ + /****** Aspect_XRSession::WaitPoses ******/ + /****** md5 signature: 2cd6ece8094e306806174f976e95a323 ******/ %feature("compactdefaultargs") WaitPoses; %feature("autodoc", "Return ------- @@ -4631,8 +4631,8 @@ Fetch actual poses of tracked devices. **********************************/ class Aspect_GradientBackground : public Aspect_Background { public: - /****************** Aspect_GradientBackground ******************/ - /**** md5 signature: 2a3b12e3984621a36868307403d00696 ****/ + /****** Aspect_GradientBackground::Aspect_GradientBackground ******/ + /****** md5 signature: 2a3b12e3984621a36868307403d00696 ******/ %feature("compactdefaultargs") Aspect_GradientBackground; %feature("autodoc", "Return ------- @@ -4644,8 +4644,8 @@ Creates a window gradient background. default color is quantity_noc_black. defau ") Aspect_GradientBackground; Aspect_GradientBackground(); - /****************** Aspect_GradientBackground ******************/ - /**** md5 signature: 85f06b5f3ce72c2ed98cd0a1aa2d2a99 ****/ + /****** Aspect_GradientBackground::Aspect_GradientBackground ******/ + /****** md5 signature: 85f06b5f3ce72c2ed98cd0a1aa2d2a99 ******/ %feature("compactdefaultargs") Aspect_GradientBackground; %feature("autodoc", " Parameters @@ -4664,8 +4664,8 @@ Creates a window gradient background with two colours. ") Aspect_GradientBackground; Aspect_GradientBackground(const Quantity_Color & theColor1, const Quantity_Color & theColor2, const Aspect_GradientFillMethod theMethod = Aspect_GradientFillMethod_Horizontal); - /****************** BgGradientFillMethod ******************/ - /**** md5 signature: 7ed50907542306114d5e90acbea724cc ****/ + /****** Aspect_GradientBackground::BgGradientFillMethod ******/ + /****** md5 signature: 7ed50907542306114d5e90acbea724cc ******/ %feature("compactdefaultargs") BgGradientFillMethod; %feature("autodoc", "Return ------- @@ -4677,8 +4677,8 @@ Returns the current gradient background fill mode. ") BgGradientFillMethod; Aspect_GradientFillMethod BgGradientFillMethod(); - /****************** Colors ******************/ - /**** md5 signature: 2e3f4d55b92b83e682d47f9e5901fc34 ****/ + /****** Aspect_GradientBackground::Colors ******/ + /****** md5 signature: 2e3f4d55b92b83e682d47f9e5901fc34 ******/ %feature("compactdefaultargs") Colors; %feature("autodoc", " Parameters @@ -4717,8 +4717,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** SetColors ******************/ - /**** md5 signature: ca78c9c4d4c2f941b5264058f8f3157f ****/ + /****** Aspect_GradientBackground::SetColors ******/ + /****** md5 signature: ca78c9c4d4c2f941b5264058f8f3157f ******/ %feature("compactdefaultargs") SetColors; %feature("autodoc", " Parameters @@ -4754,8 +4754,8 @@ Modifies the colours of the window gradient background. *****************************/ class Aspect_OpenVRSession : public Aspect_XRSession { public: - /****************** Aspect_OpenVRSession ******************/ - /**** md5 signature: 8b3b2149154ace218f7a658179bb9520 ****/ + /****** Aspect_OpenVRSession::Aspect_OpenVRSession ******/ + /****** md5 signature: 8b3b2149154ace218f7a658179bb9520 ******/ %feature("compactdefaultargs") Aspect_OpenVRSession; %feature("autodoc", "Return ------- @@ -4767,8 +4767,8 @@ Empty constructor. ") Aspect_OpenVRSession; Aspect_OpenVRSession(); - /****************** Close ******************/ - /**** md5 signature: af3f9495fd31a183ccb17c90b08cd92c ****/ + /****** Aspect_OpenVRSession::Close ******/ + /****** md5 signature: af3f9495fd31a183ccb17c90b08cd92c ******/ %feature("compactdefaultargs") Close; %feature("autodoc", "Return ------- @@ -4780,8 +4780,8 @@ Release session. ") Close; virtual void Close(); - /****************** EyeToHeadTransform ******************/ - /**** md5 signature: 4415cbfdc523c9bc0033cf691701a27a ****/ + /****** Aspect_OpenVRSession::EyeToHeadTransform ******/ + /****** md5 signature: 4415cbfdc523c9bc0033cf691701a27a ******/ %feature("compactdefaultargs") EyeToHeadTransform; %feature("autodoc", " Parameters @@ -4798,8 +4798,8 @@ Return transformation from eye to head. vr::geteyetoheadtransform() wrapper. ") EyeToHeadTransform; virtual NCollection_Mat4 EyeToHeadTransform(Aspect_Eye theEye); - /****************** GetAnalogActionData ******************/ - /**** md5 signature: 7774d891f52d1f379e2c6300ddcfa99c ****/ + /****** Aspect_OpenVRSession::GetAnalogActionData ******/ + /****** md5 signature: 7774d891f52d1f379e2c6300ddcfa99c ******/ %feature("compactdefaultargs") GetAnalogActionData; %feature("autodoc", " Parameters @@ -4816,8 +4816,8 @@ Fetch data for analog input action (like axis). ") GetAnalogActionData; virtual Aspect_XRAnalogActionData GetAnalogActionData(const opencascade::handle & theAction); - /****************** GetDigitalActionData ******************/ - /**** md5 signature: 62087c046bab5d0c5cfd257afcb1772b ****/ + /****** Aspect_OpenVRSession::GetDigitalActionData ******/ + /****** md5 signature: 62087c046bab5d0c5cfd257afcb1772b ******/ %feature("compactdefaultargs") GetDigitalActionData; %feature("autodoc", " Parameters @@ -4834,8 +4834,8 @@ Fetch data for digital input action (like button). ") GetDigitalActionData; virtual Aspect_XRDigitalActionData GetDigitalActionData(const opencascade::handle & theAction); - /****************** GetPoseActionDataForNextFrame ******************/ - /**** md5 signature: 94b2429e28b3df982111ec7a8efde11d ****/ + /****** Aspect_OpenVRSession::GetPoseActionDataForNextFrame ******/ + /****** md5 signature: 94b2429e28b3df982111ec7a8efde11d ******/ %feature("compactdefaultargs") GetPoseActionDataForNextFrame; %feature("autodoc", " Parameters @@ -4852,8 +4852,8 @@ Fetch data for pose input action (like fingertip position). ") GetPoseActionDataForNextFrame; virtual Aspect_XRPoseActionData GetPoseActionDataForNextFrame(const opencascade::handle & theAction); - /****************** GetString ******************/ - /**** md5 signature: 3a5fdf2eb740dfbb9e9ab8002cc6ed4f ****/ + /****** Aspect_OpenVRSession::GetString ******/ + /****** md5 signature: 3a5fdf2eb740dfbb9e9ab8002cc6ed4f ******/ %feature("compactdefaultargs") GetString; %feature("autodoc", " Parameters @@ -4870,8 +4870,8 @@ Query information. ") GetString; virtual TCollection_AsciiString GetString(InfoString theInfo); - /****************** HasProjectionFrustums ******************/ - /**** md5 signature: b05b67863b5b65463aa7504a39e5d4ea ****/ + /****** Aspect_OpenVRSession::HasProjectionFrustums ******/ + /****** md5 signature: b05b67863b5b65463aa7504a39e5d4ea ******/ %feature("compactdefaultargs") HasProjectionFrustums; %feature("autodoc", "Return ------- @@ -4883,8 +4883,8 @@ Return true. ") HasProjectionFrustums; virtual bool HasProjectionFrustums(); - /****************** IsHmdPresent ******************/ - /**** md5 signature: 4d92006ecb61453020c0338ef46db688 ****/ + /****** Aspect_OpenVRSession::IsHmdPresent ******/ + /****** md5 signature: 4d92006ecb61453020c0338ef46db688 ******/ %feature("compactdefaultargs") IsHmdPresent; %feature("autodoc", "Return ------- @@ -4896,8 +4896,8 @@ Return true if an hmd may be presented on the system (e.g. to show vr checkbox i ") IsHmdPresent; static bool IsHmdPresent(); - /****************** IsOpen ******************/ - /**** md5 signature: 207917360702df01f95e48cf1c178d3d ****/ + /****** Aspect_OpenVRSession::IsOpen ******/ + /****** md5 signature: 207917360702df01f95e48cf1c178d3d ******/ %feature("compactdefaultargs") IsOpen; %feature("autodoc", "Return ------- @@ -4909,8 +4909,8 @@ Return true if session is opened. ") IsOpen; virtual bool IsOpen(); - /****************** NamedTrackedDevice ******************/ - /**** md5 signature: fd01aebe7b7d48f130828b68b0d31a8b ****/ + /****** Aspect_OpenVRSession::NamedTrackedDevice ******/ + /****** md5 signature: fd01aebe7b7d48f130828b68b0d31a8b ******/ %feature("compactdefaultargs") NamedTrackedDevice; %feature("autodoc", " Parameters @@ -4927,8 +4927,8 @@ Return index of tracked device of known role. ") NamedTrackedDevice; virtual Standard_Integer NamedTrackedDevice(Aspect_XRTrackedDeviceRole theDevice); - /****************** Open ******************/ - /**** md5 signature: 46feeb1ae37ec453aafb34d187389cb4 ****/ + /****** Aspect_OpenVRSession::Open ******/ + /****** md5 signature: 46feeb1ae37ec453aafb34d187389cb4 ******/ %feature("compactdefaultargs") Open; %feature("autodoc", "Return ------- @@ -4940,8 +4940,8 @@ Initialize session. ") Open; virtual bool Open(); - /****************** ProcessEvents ******************/ - /**** md5 signature: 2a27463c633ed52dfa06a85b1bab9a97 ****/ + /****** Aspect_OpenVRSession::ProcessEvents ******/ + /****** md5 signature: 2a27463c633ed52dfa06a85b1bab9a97 ******/ %feature("compactdefaultargs") ProcessEvents; %feature("autodoc", "Return ------- @@ -4953,8 +4953,8 @@ Receive xr events. ") ProcessEvents; virtual void ProcessEvents(); - /****************** ProjectionMatrix ******************/ - /**** md5 signature: 1e7c67acc983090242ecfc7d738f648b ****/ + /****** Aspect_OpenVRSession::ProjectionMatrix ******/ + /****** md5 signature: 1e7c67acc983090242ecfc7d738f648b ******/ %feature("compactdefaultargs") ProjectionMatrix; %feature("autodoc", " Parameters @@ -4973,8 +4973,8 @@ Return projection matrix. ") ProjectionMatrix; virtual NCollection_Mat4 ProjectionMatrix(Aspect_Eye theEye, double theZNear, double theZFar); - /****************** RecommendedViewport ******************/ - /**** md5 signature: 67fa46d4104407c65ef24f06d7830ce5 ****/ + /****** Aspect_OpenVRSession::RecommendedViewport ******/ + /****** md5 signature: 67fa46d4104407c65ef24f06d7830ce5 ******/ %feature("compactdefaultargs") RecommendedViewport; %feature("autodoc", "Return ------- @@ -4986,8 +4986,8 @@ Return recommended viewport width x height for rendering into vr. ") RecommendedViewport; virtual NCollection_Vec2 RecommendedViewport(); - /****************** SetTrackingOrigin ******************/ - /**** md5 signature: 76cb2a6b6235da6e0398fa78d9f5cc46 ****/ + /****** Aspect_OpenVRSession::SetTrackingOrigin ******/ + /****** md5 signature: 76cb2a6b6235da6e0398fa78d9f5cc46 ******/ %feature("compactdefaultargs") SetTrackingOrigin; %feature("autodoc", " Parameters @@ -5004,8 +5004,8 @@ Set tracking origin. ") SetTrackingOrigin; virtual void SetTrackingOrigin(TrackingUniverseOrigin theOrigin); - /****************** SubmitEye ******************/ - /**** md5 signature: 7a622ff719a9418d497f3caffcac0d80 ****/ + /****** Aspect_OpenVRSession::SubmitEye ******/ + /****** md5 signature: 7a622ff719a9418d497f3caffcac0d80 ******/ %feature("compactdefaultargs") SubmitEye; %feature("autodoc", " Parameters @@ -5025,8 +5025,8 @@ Submit texture eye to xr composer. @param thetexture [in] texture handle @param ") SubmitEye; virtual bool SubmitEye(void * theTexture, Aspect_GraphicsLibrary theGraphicsLib, Aspect_ColorSpace theColorSpace, Aspect_Eye theEye); - /****************** WaitPoses ******************/ - /**** md5 signature: 5922daa4301bb4074ae95962b4f8d15b ****/ + /****** Aspect_OpenVRSession::WaitPoses ******/ + /****** md5 signature: 5922daa4301bb4074ae95962b4f8d15b ******/ %feature("compactdefaultargs") WaitPoses; %feature("autodoc", "Return ------- diff --git a/src/SWIG_files/wrapper/BOPAlgo.i b/src/SWIG_files/wrapper/BOPAlgo.i index 3e6501fa4..7b55cf264 100644 --- a/src/SWIG_files/wrapper/BOPAlgo.i +++ b/src/SWIG_files/wrapper/BOPAlgo.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BOPALGODOCSTRING "BOPAlgo module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_bopalgo.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_bopalgo.html" %enddef %module (package="OCC.Core", docstring=BOPALGODOCSTRING) BOPAlgo @@ -213,8 +213,8 @@ typedef BOPAlgo_WireEdgeSet * BOPAlgo_PWireEdgeSet; ****************************/ class BOPAlgo_CheckResult { public: - /****************** BOPAlgo_CheckResult ******************/ - /**** md5 signature: dea769d54f4bd763585ebd4034c98353 ****/ + /****** BOPAlgo_CheckResult::BOPAlgo_CheckResult ******/ + /****** md5 signature: dea769d54f4bd763585ebd4034c98353 ******/ %feature("compactdefaultargs") BOPAlgo_CheckResult; %feature("autodoc", "Return ------- @@ -226,8 +226,8 @@ Empty constructor. ") BOPAlgo_CheckResult; BOPAlgo_CheckResult(); - /****************** AddFaultyShape1 ******************/ - /**** md5 signature: f4fc4348e7f32438e74e5bc925fb83c5 ****/ + /****** BOPAlgo_CheckResult::AddFaultyShape1 ******/ + /****** md5 signature: f4fc4348e7f32438e74e5bc925fb83c5 ******/ %feature("compactdefaultargs") AddFaultyShape1; %feature("autodoc", " Parameters @@ -244,8 +244,8 @@ Adds faulty sub-shapes from object to a list. ") AddFaultyShape1; void AddFaultyShape1(const TopoDS_Shape & TheShape); - /****************** AddFaultyShape2 ******************/ - /**** md5 signature: 08dbc2a8aeed47639b770ec0ac24b612 ****/ + /****** BOPAlgo_CheckResult::AddFaultyShape2 ******/ + /****** md5 signature: 08dbc2a8aeed47639b770ec0ac24b612 ******/ %feature("compactdefaultargs") AddFaultyShape2; %feature("autodoc", " Parameters @@ -262,8 +262,8 @@ Adds faulty sub-shapes from tool to a list. ") AddFaultyShape2; void AddFaultyShape2(const TopoDS_Shape & TheShape); - /****************** GetCheckStatus ******************/ - /**** md5 signature: 89e09e6d4b68f3aacbd1de7dc2d4e2f8 ****/ + /****** BOPAlgo_CheckResult::GetCheckStatus ******/ + /****** md5 signature: 89e09e6d4b68f3aacbd1de7dc2d4e2f8 ******/ %feature("compactdefaultargs") GetCheckStatus; %feature("autodoc", "Return ------- @@ -275,8 +275,8 @@ Gets status of faulty. ") GetCheckStatus; BOPAlgo_CheckStatus GetCheckStatus(); - /****************** GetFaultyShapes1 ******************/ - /**** md5 signature: f728fddcc353c4062194134e5bf43fd5 ****/ + /****** BOPAlgo_CheckResult::GetFaultyShapes1 ******/ + /****** md5 signature: f728fddcc353c4062194134e5bf43fd5 ******/ %feature("compactdefaultargs") GetFaultyShapes1; %feature("autodoc", "Return ------- @@ -288,8 +288,8 @@ Returns list of faulty shapes for object. ") GetFaultyShapes1; const TopTools_ListOfShape & GetFaultyShapes1(); - /****************** GetFaultyShapes2 ******************/ - /**** md5 signature: 547a4a2e3a84bbf43143e6bb8c0f757f ****/ + /****** BOPAlgo_CheckResult::GetFaultyShapes2 ******/ + /****** md5 signature: 547a4a2e3a84bbf43143e6bb8c0f757f ******/ %feature("compactdefaultargs") GetFaultyShapes2; %feature("autodoc", "Return ------- @@ -301,8 +301,8 @@ Returns list of faulty shapes for tool. ") GetFaultyShapes2; const TopTools_ListOfShape & GetFaultyShapes2(); - /****************** GetMaxDistance1 ******************/ - /**** md5 signature: a08934026a64239752b614e124fd393f ****/ + /****** BOPAlgo_CheckResult::GetMaxDistance1 ******/ + /****** md5 signature: a08934026a64239752b614e124fd393f ******/ %feature("compactdefaultargs") GetMaxDistance1; %feature("autodoc", "Return ------- @@ -314,8 +314,8 @@ Returns the distance for the first shape. ") GetMaxDistance1; Standard_Real GetMaxDistance1(); - /****************** GetMaxDistance2 ******************/ - /**** md5 signature: 635ed89e8c069eba76d435dbbab735c2 ****/ + /****** BOPAlgo_CheckResult::GetMaxDistance2 ******/ + /****** md5 signature: 635ed89e8c069eba76d435dbbab735c2 ******/ %feature("compactdefaultargs") GetMaxDistance2; %feature("autodoc", "Return ------- @@ -327,8 +327,8 @@ Returns the distance for the second shape. ") GetMaxDistance2; Standard_Real GetMaxDistance2(); - /****************** GetMaxParameter1 ******************/ - /**** md5 signature: 2d7b754d07c9650db3d770a6a970655c ****/ + /****** BOPAlgo_CheckResult::GetMaxParameter1 ******/ + /****** md5 signature: 2d7b754d07c9650db3d770a6a970655c ******/ %feature("compactdefaultargs") GetMaxParameter1; %feature("autodoc", "Return ------- @@ -340,8 +340,8 @@ Returns the parameter for the fircst shape. ") GetMaxParameter1; Standard_Real GetMaxParameter1(); - /****************** GetMaxParameter2 ******************/ - /**** md5 signature: 339892b104483047abe995771a167705 ****/ + /****** BOPAlgo_CheckResult::GetMaxParameter2 ******/ + /****** md5 signature: 339892b104483047abe995771a167705 ******/ %feature("compactdefaultargs") GetMaxParameter2; %feature("autodoc", "Return ------- @@ -353,8 +353,8 @@ Returns the parameter for the second shape. ") GetMaxParameter2; Standard_Real GetMaxParameter2(); - /****************** GetShape1 ******************/ - /**** md5 signature: da65271fea68f494586b07012e23b4bb ****/ + /****** BOPAlgo_CheckResult::GetShape1 ******/ + /****** md5 signature: da65271fea68f494586b07012e23b4bb ******/ %feature("compactdefaultargs") GetShape1; %feature("autodoc", "Return ------- @@ -366,8 +366,8 @@ Returns ancestor shape (object) for faulties. ") GetShape1; const TopoDS_Shape GetShape1(); - /****************** GetShape2 ******************/ - /**** md5 signature: ad646522ebe6de8820d9424e4f21edb9 ****/ + /****** BOPAlgo_CheckResult::GetShape2 ******/ + /****** md5 signature: ad646522ebe6de8820d9424e4f21edb9 ******/ %feature("compactdefaultargs") GetShape2; %feature("autodoc", "Return ------- @@ -379,8 +379,8 @@ Returns ancestor shape (tool) for faulties. ") GetShape2; const TopoDS_Shape GetShape2(); - /****************** SetCheckStatus ******************/ - /**** md5 signature: f3c122c6cb39ad6a91e7b859c005e322 ****/ + /****** BOPAlgo_CheckResult::SetCheckStatus ******/ + /****** md5 signature: f3c122c6cb39ad6a91e7b859c005e322 ******/ %feature("compactdefaultargs") SetCheckStatus; %feature("autodoc", " Parameters @@ -397,8 +397,8 @@ Set status of faulty. ") SetCheckStatus; void SetCheckStatus(const BOPAlgo_CheckStatus TheStatus); - /****************** SetMaxDistance1 ******************/ - /**** md5 signature: f3f7c583b2244f7a9a07fbaa143b9f22 ****/ + /****** BOPAlgo_CheckResult::SetMaxDistance1 ******/ + /****** md5 signature: f3f7c583b2244f7a9a07fbaa143b9f22 ******/ %feature("compactdefaultargs") SetMaxDistance1; %feature("autodoc", " Parameters @@ -415,8 +415,8 @@ Sets max distance for the first shape. ") SetMaxDistance1; void SetMaxDistance1(const Standard_Real theDist); - /****************** SetMaxDistance2 ******************/ - /**** md5 signature: 26e9a5acae152632933809ad11c56749 ****/ + /****** BOPAlgo_CheckResult::SetMaxDistance2 ******/ + /****** md5 signature: 26e9a5acae152632933809ad11c56749 ******/ %feature("compactdefaultargs") SetMaxDistance2; %feature("autodoc", " Parameters @@ -433,8 +433,8 @@ Sets max distance for the second shape. ") SetMaxDistance2; void SetMaxDistance2(const Standard_Real theDist); - /****************** SetMaxParameter1 ******************/ - /**** md5 signature: 5df07c2f24ee4c4939cb016c85dc1437 ****/ + /****** BOPAlgo_CheckResult::SetMaxParameter1 ******/ + /****** md5 signature: 5df07c2f24ee4c4939cb016c85dc1437 ******/ %feature("compactdefaultargs") SetMaxParameter1; %feature("autodoc", " Parameters @@ -451,8 +451,8 @@ Sets the parameter for the first shape. ") SetMaxParameter1; void SetMaxParameter1(const Standard_Real thePar); - /****************** SetMaxParameter2 ******************/ - /**** md5 signature: ebcf38f33cf83375bcefa3a54a26e5ba ****/ + /****** BOPAlgo_CheckResult::SetMaxParameter2 ******/ + /****** md5 signature: ebcf38f33cf83375bcefa3a54a26e5ba ******/ %feature("compactdefaultargs") SetMaxParameter2; %feature("autodoc", " Parameters @@ -469,8 +469,8 @@ Sets the parameter for the second shape. ") SetMaxParameter2; void SetMaxParameter2(const Standard_Real thePar); - /****************** SetShape1 ******************/ - /**** md5 signature: 32d06bb8d221a179d322a30597a4d6c8 ****/ + /****** BOPAlgo_CheckResult::SetShape1 ******/ + /****** md5 signature: 32d06bb8d221a179d322a30597a4d6c8 ******/ %feature("compactdefaultargs") SetShape1; %feature("autodoc", " Parameters @@ -487,8 +487,8 @@ Sets ancestor shape (object) for faulty sub-shapes. ") SetShape1; void SetShape1(const TopoDS_Shape & TheShape); - /****************** SetShape2 ******************/ - /**** md5 signature: 872074f224a41d220ff8f15ed451c9ac ****/ + /****** BOPAlgo_CheckResult::SetShape2 ******/ + /****** md5 signature: 872074f224a41d220ff8f15ed451c9ac ******/ %feature("compactdefaultargs") SetShape2; %feature("autodoc", " Parameters @@ -519,8 +519,8 @@ Sets ancestor shape (tool) for faulty sub-shapes. ************************/ class BOPAlgo_Options { public: - /****************** BOPAlgo_Options ******************/ - /**** md5 signature: 1d3be438f8467a9d42a76784f9e361b9 ****/ + /****** BOPAlgo_Options::BOPAlgo_Options ******/ + /****** md5 signature: 1d3be438f8467a9d42a76784f9e361b9 ******/ %feature("compactdefaultargs") BOPAlgo_Options; %feature("autodoc", "Return ------- @@ -532,8 +532,8 @@ Empty constructor. ") BOPAlgo_Options; BOPAlgo_Options(); - /****************** BOPAlgo_Options ******************/ - /**** md5 signature: 1e4b6fcd71a6eff1c7af075708751619 ****/ + /****** BOPAlgo_Options::BOPAlgo_Options ******/ + /****** md5 signature: 1e4b6fcd71a6eff1c7af075708751619 ******/ %feature("compactdefaultargs") BOPAlgo_Options; %feature("autodoc", " Parameters @@ -550,8 +550,8 @@ Constructor with allocator. ") BOPAlgo_Options; BOPAlgo_Options(const opencascade::handle & theAllocator); - /****************** AddError ******************/ - /**** md5 signature: f00155f55c673f9e74c0f0dd7c25fadd ****/ + /****** BOPAlgo_Options::AddError ******/ + /****** md5 signature: f00155f55c673f9e74c0f0dd7c25fadd ******/ %feature("compactdefaultargs") AddError; %feature("autodoc", " Parameters @@ -568,8 +568,8 @@ Adds the alert as error (fail). ") AddError; void AddError(const opencascade::handle & theAlert); - /****************** AddWarning ******************/ - /**** md5 signature: 53094085790ca6daea4eb2a4ce8de10e ****/ + /****** BOPAlgo_Options::AddWarning ******/ + /****** md5 signature: 53094085790ca6daea4eb2a4ce8de10e ******/ %feature("compactdefaultargs") AddWarning; %feature("autodoc", " Parameters @@ -586,8 +586,8 @@ Adds the alert as warning. ") AddWarning; void AddWarning(const opencascade::handle & theAlert); - /****************** Allocator ******************/ - /**** md5 signature: c2190efebec564fb34d6c8e52682605e ****/ + /****** BOPAlgo_Options::Allocator ******/ + /****** md5 signature: c2190efebec564fb34d6c8e52682605e ******/ %feature("compactdefaultargs") Allocator; %feature("autodoc", "Return ------- @@ -599,8 +599,8 @@ Returns allocator. ") Allocator; const opencascade::handle & Allocator(); - /****************** Clear ******************/ - /**** md5 signature: ee228ed41450ea46d6b542478ce426ba ****/ + /****** BOPAlgo_Options::Clear ******/ + /****** md5 signature: ee228ed41450ea46d6b542478ce426ba ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -612,8 +612,8 @@ Clears all warnings and errors, and any data cached by the algorithm. user defin ") Clear; virtual void Clear(); - /****************** ClearWarnings ******************/ - /**** md5 signature: 73c3b8280143bf02663ce560b2171c2b ****/ + /****** BOPAlgo_Options::ClearWarnings ******/ + /****** md5 signature: 73c3b8280143bf02663ce560b2171c2b ******/ %feature("compactdefaultargs") ClearWarnings; %feature("autodoc", "Return ------- @@ -625,8 +625,8 @@ Clears the warnings of the algorithm. ") ClearWarnings; void ClearWarnings(); - /****************** DumpErrors ******************/ - /**** md5 signature: 90a98b1a0d228edd0b78f11fc13715d9 ****/ + /****** BOPAlgo_Options::DumpErrors ******/ + /****** md5 signature: 90a98b1a0d228edd0b78f11fc13715d9 ******/ %feature("compactdefaultargs") DumpErrors; %feature("autodoc", " Parameters @@ -642,8 +642,8 @@ Dumps the error status into the given stream. ") DumpErrors; void DumpErrors(std::ostream &OutValue); - /****************** DumpWarnings ******************/ - /**** md5 signature: b7a54acbfda1ad785ffbd552beb749fd ****/ + /****** BOPAlgo_Options::DumpWarnings ******/ + /****** md5 signature: b7a54acbfda1ad785ffbd552beb749fd ******/ %feature("compactdefaultargs") DumpWarnings; %feature("autodoc", " Parameters @@ -659,8 +659,8 @@ Dumps the warning statuses into the given stream. ") DumpWarnings; void DumpWarnings(std::ostream &OutValue); - /****************** FuzzyValue ******************/ - /**** md5 signature: c7081d612ee5325e18733e215807d19f ****/ + /****** BOPAlgo_Options::FuzzyValue ******/ + /****** md5 signature: c7081d612ee5325e18733e215807d19f ******/ %feature("compactdefaultargs") FuzzyValue; %feature("autodoc", "Return ------- @@ -672,8 +672,8 @@ Returns the additional tolerance. ") FuzzyValue; Standard_Real FuzzyValue(); - /****************** GetParallelMode ******************/ - /**** md5 signature: feaeebd94ff83efc7e77e3c0da668764 ****/ + /****** BOPAlgo_Options::GetParallelMode ******/ + /****** md5 signature: feaeebd94ff83efc7e77e3c0da668764 ******/ %feature("compactdefaultargs") GetParallelMode; %feature("autodoc", "Return ------- @@ -685,8 +685,8 @@ Gets the global parallel mode. ") GetParallelMode; static Standard_Boolean GetParallelMode(); - /****************** GetReport ******************/ - /**** md5 signature: 58a2006fc09eb4744f2647f5bb6aa259 ****/ + /****** BOPAlgo_Options::GetReport ******/ + /****** md5 signature: 58a2006fc09eb4744f2647f5bb6aa259 ******/ %feature("compactdefaultargs") GetReport; %feature("autodoc", "Return ------- @@ -698,8 +698,8 @@ Returns report collecting all errors and warnings. ") GetReport; const opencascade::handle & GetReport(); - /****************** HasError ******************/ - /**** md5 signature: 16c1e1370b1b00520fec769582a88f3a ****/ + /****** BOPAlgo_Options::HasError ******/ + /****** md5 signature: 16c1e1370b1b00520fec769582a88f3a ******/ %feature("compactdefaultargs") HasError; %feature("autodoc", " Parameters @@ -716,8 +716,8 @@ Returns true if algorithm has generated error of specified type. ") HasError; Standard_Boolean HasError(const opencascade::handle & theType); - /****************** HasErrors ******************/ - /**** md5 signature: bf718c128e76868673dd300f349b7f68 ****/ + /****** BOPAlgo_Options::HasErrors ******/ + /****** md5 signature: bf718c128e76868673dd300f349b7f68 ******/ %feature("compactdefaultargs") HasErrors; %feature("autodoc", "Return ------- @@ -729,8 +729,8 @@ Returns true if algorithm has failed. ") HasErrors; Standard_Boolean HasErrors(); - /****************** HasWarning ******************/ - /**** md5 signature: f643e1ca521c66e8183b395e733ed0da ****/ + /****** BOPAlgo_Options::HasWarning ******/ + /****** md5 signature: f643e1ca521c66e8183b395e733ed0da ******/ %feature("compactdefaultargs") HasWarning; %feature("autodoc", " Parameters @@ -747,8 +747,8 @@ Returns true if algorithm has generated warning of specified type. ") HasWarning; Standard_Boolean HasWarning(const opencascade::handle & theType); - /****************** HasWarnings ******************/ - /**** md5 signature: 0d7f1d0092f1dca69e861f3bce5f0267 ****/ + /****** BOPAlgo_Options::HasWarnings ******/ + /****** md5 signature: 0d7f1d0092f1dca69e861f3bce5f0267 ******/ %feature("compactdefaultargs") HasWarnings; %feature("autodoc", "Return ------- @@ -760,8 +760,8 @@ Returns true if algorithm has generated some warning alerts. ") HasWarnings; Standard_Boolean HasWarnings(); - /****************** RunParallel ******************/ - /**** md5 signature: 53cb29f6811f4f276d6c103cc8a9e7e1 ****/ + /****** BOPAlgo_Options::RunParallel ******/ + /****** md5 signature: 53cb29f6811f4f276d6c103cc8a9e7e1 ******/ %feature("compactdefaultargs") RunParallel; %feature("autodoc", "Return ------- @@ -773,8 +773,8 @@ Returns the flag of parallel processing. ") RunParallel; Standard_Boolean RunParallel(); - /****************** SetFuzzyValue ******************/ - /**** md5 signature: a6e52c994eeddfce238b90491de5f35c ****/ + /****** BOPAlgo_Options::SetFuzzyValue ******/ + /****** md5 signature: a6e52c994eeddfce238b90491de5f35c ******/ %feature("compactdefaultargs") SetFuzzyValue; %feature("autodoc", " Parameters @@ -791,8 +791,8 @@ Sets the additional tolerance. ") SetFuzzyValue; void SetFuzzyValue(const Standard_Real theFuzz); - /****************** SetParallelMode ******************/ - /**** md5 signature: b461eee387cc9df4779b32f144c1de40 ****/ + /****** BOPAlgo_Options::SetParallelMode ******/ + /****** md5 signature: b461eee387cc9df4779b32f144c1de40 ******/ %feature("compactdefaultargs") SetParallelMode; %feature("autodoc", " Parameters @@ -809,8 +809,8 @@ Sets the global parallel mode. ") SetParallelMode; static void SetParallelMode(const Standard_Boolean theNewMode); - /****************** SetRunParallel ******************/ - /**** md5 signature: bf7fbc3e9b126cd865579ef58026ce14 ****/ + /****** BOPAlgo_Options::SetRunParallel ******/ + /****** md5 signature: bf7fbc3e9b126cd865579ef58026ce14 ******/ %feature("compactdefaultargs") SetRunParallel; %feature("autodoc", " Parameters @@ -827,8 +827,8 @@ Set the flag of parallel processing if is true the parallel processing ") SetRunParallel; void SetRunParallel(const Standard_Boolean theFlag); - /****************** SetUseOBB ******************/ - /**** md5 signature: 6d40fa7ee94de6963b0a47968b0c2b35 ****/ + /****** BOPAlgo_Options::SetUseOBB ******/ + /****** md5 signature: 6d40fa7ee94de6963b0a47968b0c2b35 ******/ %feature("compactdefaultargs") SetUseOBB; %feature("autodoc", " Parameters @@ -845,8 +845,8 @@ Enables/disables the usage of obb. ") SetUseOBB; void SetUseOBB(const Standard_Boolean theUseOBB); - /****************** UseOBB ******************/ - /**** md5 signature: 439d685e26e7394528c125780fc412da ****/ + /****** BOPAlgo_Options::UseOBB ******/ + /****** md5 signature: 439d685e26e7394528c125780fc412da ******/ %feature("compactdefaultargs") UseOBB; %feature("autodoc", "Return ------- @@ -872,8 +872,8 @@ Returns the flag defining usage of obb. ************************/ class BOPAlgo_PISteps { public: - /****************** BOPAlgo_PISteps ******************/ - /**** md5 signature: 678f847738ab187532af2fc55a728601 ****/ + /****** BOPAlgo_PISteps::BOPAlgo_PISteps ******/ + /****** md5 signature: 678f847738ab187532af2fc55a728601 ******/ %feature("compactdefaultargs") BOPAlgo_PISteps; %feature("autodoc", " Parameters @@ -890,8 +890,8 @@ Constructor. ") BOPAlgo_PISteps; BOPAlgo_PISteps(const Standard_Integer theNbOp); - /****************** ChangeSteps ******************/ - /**** md5 signature: 6afaf1bdd0c07a7da0643b663ae7e1bf ****/ + /****** BOPAlgo_PISteps::ChangeSteps ******/ + /****** md5 signature: 6afaf1bdd0c07a7da0643b663ae7e1bf ******/ %feature("compactdefaultargs") ChangeSteps; %feature("autodoc", "Return ------- @@ -903,8 +903,8 @@ Returns modifiable steps. ") ChangeSteps; TColStd_Array1OfReal & ChangeSteps(); - /****************** GetStep ******************/ - /**** md5 signature: 085c03e320fb55492a498c74030ef52d ****/ + /****** BOPAlgo_PISteps::GetStep ******/ + /****** md5 signature: 085c03e320fb55492a498c74030ef52d ******/ %feature("compactdefaultargs") GetStep; %feature("autodoc", " Parameters @@ -921,8 +921,8 @@ Returns the step assigned to the operation. ") GetStep; Standard_Real GetStep(const Standard_Integer theOperation); - /****************** SetStep ******************/ - /**** md5 signature: 0ecefcccd3c3f72bac80ecf106cf7705 ****/ + /****** BOPAlgo_PISteps::SetStep ******/ + /****** md5 signature: 0ecefcccd3c3f72bac80ecf106cf7705 ******/ %feature("compactdefaultargs") SetStep; %feature("autodoc", " Parameters @@ -940,8 +940,8 @@ Assign the value thestep to theoperation. ") SetStep; void SetStep(const Standard_Integer theOperation, const Standard_Real theStep); - /****************** Steps ******************/ - /**** md5 signature: 5fc38fb11ebee5e2c132b891668077b8 ****/ + /****** BOPAlgo_PISteps::Steps ******/ + /****** md5 signature: 5fc38fb11ebee5e2c132b891668077b8 ******/ %feature("compactdefaultargs") Steps; %feature("autodoc", "Return ------- @@ -967,8 +967,8 @@ Returns the steps. *********************************/ class BOPAlgo_SectionAttribute { public: - /****************** BOPAlgo_SectionAttribute ******************/ - /**** md5 signature: d009c63d3a8a919760589f1003ae4986 ****/ + /****** BOPAlgo_SectionAttribute::BOPAlgo_SectionAttribute ******/ + /****** md5 signature: d009c63d3a8a919760589f1003ae4986 ******/ %feature("compactdefaultargs") BOPAlgo_SectionAttribute; %feature("autodoc", "Return ------- @@ -980,8 +980,8 @@ Default constructor. ") BOPAlgo_SectionAttribute; BOPAlgo_SectionAttribute(); - /****************** BOPAlgo_SectionAttribute ******************/ - /**** md5 signature: 3d85e8151b6f1576f015e50486ffbe64 ****/ + /****** BOPAlgo_SectionAttribute::BOPAlgo_SectionAttribute ******/ + /****** md5 signature: 3d85e8151b6f1576f015e50486ffbe64 ******/ %feature("compactdefaultargs") BOPAlgo_SectionAttribute; %feature("autodoc", " Parameters @@ -1000,8 +1000,8 @@ Constructor. ") BOPAlgo_SectionAttribute; BOPAlgo_SectionAttribute(const Standard_Boolean theAproximation, const Standard_Boolean thePCurveOnS1, const Standard_Boolean thePCurveOnS2); - /****************** Approximation ******************/ - /**** md5 signature: 0dc0c40b42d72f7fa0d8967d76779a9f ****/ + /****** BOPAlgo_SectionAttribute::Approximation ******/ + /****** md5 signature: 0dc0c40b42d72f7fa0d8967d76779a9f ******/ %feature("compactdefaultargs") Approximation; %feature("autodoc", " Parameters @@ -1018,8 +1018,8 @@ Sets the approximation flag. ") Approximation; void Approximation(const Standard_Boolean theApprox); - /****************** Approximation ******************/ - /**** md5 signature: 56d3eec8cfa6eef2526f5faec043653f ****/ + /****** BOPAlgo_SectionAttribute::Approximation ******/ + /****** md5 signature: 56d3eec8cfa6eef2526f5faec043653f ******/ %feature("compactdefaultargs") Approximation; %feature("autodoc", "Return ------- @@ -1031,8 +1031,8 @@ Returns the approximation flag. ") Approximation; Standard_Boolean Approximation(); - /****************** PCurveOnS1 ******************/ - /**** md5 signature: ecc19b7110b044c15c461a8b82ccb0f6 ****/ + /****** BOPAlgo_SectionAttribute::PCurveOnS1 ******/ + /****** md5 signature: ecc19b7110b044c15c461a8b82ccb0f6 ******/ %feature("compactdefaultargs") PCurveOnS1; %feature("autodoc", " Parameters @@ -1049,8 +1049,8 @@ Sets the pcurveons1 flag. ") PCurveOnS1; void PCurveOnS1(const Standard_Boolean thePCurveOnS1); - /****************** PCurveOnS1 ******************/ - /**** md5 signature: 9a1e47121e59cd144b5b6675616ace9c ****/ + /****** BOPAlgo_SectionAttribute::PCurveOnS1 ******/ + /****** md5 signature: 9a1e47121e59cd144b5b6675616ace9c ******/ %feature("compactdefaultargs") PCurveOnS1; %feature("autodoc", "Return ------- @@ -1062,8 +1062,8 @@ Returns the pcurveons1 flag. ") PCurveOnS1; Standard_Boolean PCurveOnS1(); - /****************** PCurveOnS2 ******************/ - /**** md5 signature: ff2501955a1d5673be11ed993fee2b79 ****/ + /****** BOPAlgo_SectionAttribute::PCurveOnS2 ******/ + /****** md5 signature: ff2501955a1d5673be11ed993fee2b79 ******/ %feature("compactdefaultargs") PCurveOnS2; %feature("autodoc", " Parameters @@ -1080,8 +1080,8 @@ Sets the pcurveons2 flag. ") PCurveOnS2; void PCurveOnS2(const Standard_Boolean thePCurveOnS2); - /****************** PCurveOnS2 ******************/ - /**** md5 signature: 5b774e4d6136cf12a4b36814eaa92d44 ****/ + /****** BOPAlgo_SectionAttribute::PCurveOnS2 ******/ + /****** md5 signature: 5b774e4d6136cf12a4b36814eaa92d44 ******/ %feature("compactdefaultargs") PCurveOnS2; %feature("autodoc", "Return ------- @@ -1107,8 +1107,8 @@ Returns the pcurveons2 flag. **********************/ class BOPAlgo_Tools { public: - /****************** ClassifyFaces ******************/ - /**** md5 signature: aecd30a1f788074add579e534de83f3d ****/ + /****** BOPAlgo_Tools::ClassifyFaces ******/ + /****** md5 signature: aecd30a1f788074add579e534de83f3d ******/ %feature("compactdefaultargs") ClassifyFaces; %feature("autodoc", " Parameters @@ -1132,8 +1132,8 @@ Classifies the faces relatively solids . the in faces for ") ClassifyFaces; static void ClassifyFaces(const TopTools_ListOfShape & theFaces, const TopTools_ListOfShape & theSolids, const Standard_Boolean theRunParallel, opencascade::handle & theContext, TopTools_IndexedDataMapOfShapeListOfShape & theInParts, const TopTools_DataMapOfShapeBox & theShapeBoxMap = TopTools_DataMapOfShapeBox(), const TopTools_DataMapOfShapeListOfShape & theSolidsIF = TopTools_DataMapOfShapeListOfShape(), const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** ComputeToleranceOfCB ******************/ - /**** md5 signature: e685c89cf11769ed8a1377be0947b846 ****/ + /****** BOPAlgo_Tools::ComputeToleranceOfCB ******/ + /****** md5 signature: e685c89cf11769ed8a1377be0947b846 ******/ %feature("compactdefaultargs") ComputeToleranceOfCB; %feature("autodoc", " Parameters @@ -1152,8 +1152,8 @@ No available documentation. ") ComputeToleranceOfCB; static Standard_Real ComputeToleranceOfCB(const opencascade::handle & theCB, const BOPDS_PDS theDS, const opencascade::handle & theContext); - /****************** EdgesToWires ******************/ - /**** md5 signature: e795d71da8d102674043cf89e2807135 ****/ + /****** BOPAlgo_Tools::EdgesToWires ******/ + /****** md5 signature: e795d71da8d102674043cf89e2807135 ******/ %feature("compactdefaultargs") EdgesToWires; %feature("autodoc", " Parameters @@ -1173,8 +1173,8 @@ Creates planar wires from the given edges. the input edges are expected to be pl ") EdgesToWires; static Standard_Integer EdgesToWires(const TopoDS_Shape & theEdges, TopoDS_Shape & theWires, const Standard_Boolean theShared = Standard_False, const Standard_Real theAngTol = 1e-8); - /****************** FillInternals ******************/ - /**** md5 signature: 114b79f8adcd1665a2acbeeb894b98bb ****/ + /****** BOPAlgo_Tools::FillInternals ******/ + /****** md5 signature: 114b79f8adcd1665a2acbeeb894b98bb ******/ %feature("compactdefaultargs") FillInternals; %feature("autodoc", " Parameters @@ -1194,8 +1194,8 @@ Classifies the given parts relatively the given solids and fills the solids with ") FillInternals; static void FillInternals(const TopTools_ListOfShape & theSolids, const TopTools_ListOfShape & theParts, const TopTools_DataMapOfShapeListOfShape & theImages, const opencascade::handle & theContext); - /****************** IntersectVertices ******************/ - /**** md5 signature: d4914d07780a11972f73f6bbf3116baa ****/ + /****** BOPAlgo_Tools::IntersectVertices ******/ + /****** md5 signature: d4914d07780a11972f73f6bbf3116baa ******/ %feature("compactdefaultargs") IntersectVertices; %feature("autodoc", " Parameters @@ -1214,8 +1214,8 @@ Finds chains of intersecting vertices. ") IntersectVertices; static void IntersectVertices(const TopTools_IndexedDataMapOfShapeReal & theVertices, const Standard_Real theFuzzyValue, TopTools_ListOfListOfShape & theChains); - /****************** PerformCommonBlocks ******************/ - /**** md5 signature: 399b23698e9567012367f4351d1a8f04 ****/ + /****** BOPAlgo_Tools::PerformCommonBlocks ******/ + /****** md5 signature: 399b23698e9567012367f4351d1a8f04 ******/ %feature("compactdefaultargs") PerformCommonBlocks; %feature("autodoc", " Parameters @@ -1235,8 +1235,8 @@ Create common blocks from the groups of pave blocks of connection m ") PerformCommonBlocks; static void PerformCommonBlocks(BOPDS_IndexedDataMapOfPaveBlockListOfPaveBlock & theMBlocks, const opencascade::handle & theAllocator, BOPDS_PDS & theDS, const opencascade::handle & theContext = opencascade::handle()); - /****************** PerformCommonBlocks ******************/ - /**** md5 signature: b795477e345159b0ed6f4ffbbc4c6f74 ****/ + /****** BOPAlgo_Tools::PerformCommonBlocks ******/ + /****** md5 signature: b795477e345159b0ed6f4ffbbc4c6f74 ******/ %feature("compactdefaultargs") PerformCommonBlocks; %feature("autodoc", " Parameters @@ -1256,8 +1256,8 @@ Create common blocks on faces using the pb->faces connection map . ") PerformCommonBlocks; static void PerformCommonBlocks(const BOPDS_IndexedDataMapOfPaveBlockListOfInteger & theMBlocks, const opencascade::handle & theAllocator, BOPDS_PDS & pDS, const opencascade::handle & theContext = opencascade::handle()); - /****************** TrsfToPoint ******************/ - /**** md5 signature: 836e5f67ee22544085d9d2fab2016425 ****/ + /****** BOPAlgo_Tools::TrsfToPoint ******/ + /****** md5 signature: 836e5f67ee22544085d9d2fab2016425 ******/ %feature("compactdefaultargs") TrsfToPoint; %feature("autodoc", " Parameters @@ -1278,8 +1278,8 @@ Computes the transformation needed to move the objects to the given point to inc ") TrsfToPoint; static Standard_Boolean TrsfToPoint(const Bnd_Box & theBox1, const Bnd_Box & theBox2, gp_Trsf & theTrsf, const gp_Pnt & thePoint = gp_Pnt(0.0,0.0,0.0), const Standard_Real theCriteria = 1e+5); - /****************** WiresToFaces ******************/ - /**** md5 signature: 16dc9996c77bddaa892446101a7cb4b5 ****/ + /****** BOPAlgo_Tools::WiresToFaces ******/ + /****** md5 signature: 16dc9996c77bddaa892446101a7cb4b5 ******/ %feature("compactdefaultargs") WiresToFaces; %feature("autodoc", " Parameters @@ -1324,8 +1324,8 @@ Creates planar faces from given planar wires. the method does not check if the w ****************************/ class BOPAlgo_WireEdgeSet { public: - /****************** BOPAlgo_WireEdgeSet ******************/ - /**** md5 signature: ea26cbe6076f94b3b025b7fe930fa557 ****/ + /****** BOPAlgo_WireEdgeSet::BOPAlgo_WireEdgeSet ******/ + /****** md5 signature: ea26cbe6076f94b3b025b7fe930fa557 ******/ %feature("compactdefaultargs") BOPAlgo_WireEdgeSet; %feature("autodoc", "Return ------- @@ -1337,8 +1337,8 @@ No available documentation. ") BOPAlgo_WireEdgeSet; BOPAlgo_WireEdgeSet(); - /****************** BOPAlgo_WireEdgeSet ******************/ - /**** md5 signature: d5706b19a4e41f85b2410340b2a1f3b4 ****/ + /****** BOPAlgo_WireEdgeSet::BOPAlgo_WireEdgeSet ******/ + /****** md5 signature: d5706b19a4e41f85b2410340b2a1f3b4 ******/ %feature("compactdefaultargs") BOPAlgo_WireEdgeSet; %feature("autodoc", " Parameters @@ -1355,8 +1355,8 @@ No available documentation. ") BOPAlgo_WireEdgeSet; BOPAlgo_WireEdgeSet(const opencascade::handle & theAllocator); - /****************** AddShape ******************/ - /**** md5 signature: e2f1c05bc83d83e844b57971adeb089a ****/ + /****** BOPAlgo_WireEdgeSet::AddShape ******/ + /****** md5 signature: e2f1c05bc83d83e844b57971adeb089a ******/ %feature("compactdefaultargs") AddShape; %feature("autodoc", " Parameters @@ -1373,8 +1373,8 @@ No available documentation. ") AddShape; void AddShape(const TopoDS_Shape & sS); - /****************** AddStartElement ******************/ - /**** md5 signature: c6623538c007f9731413da5cb7eb7f1b ****/ + /****** BOPAlgo_WireEdgeSet::AddStartElement ******/ + /****** md5 signature: c6623538c007f9731413da5cb7eb7f1b ******/ %feature("compactdefaultargs") AddStartElement; %feature("autodoc", " Parameters @@ -1391,8 +1391,8 @@ No available documentation. ") AddStartElement; void AddStartElement(const TopoDS_Shape & sS); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** BOPAlgo_WireEdgeSet::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -1404,8 +1404,8 @@ No available documentation. ") Clear; void Clear(); - /****************** Face ******************/ - /**** md5 signature: 91e216ebeb76e55c73eb9e179241a6ff ****/ + /****** BOPAlgo_WireEdgeSet::Face ******/ + /****** md5 signature: 91e216ebeb76e55c73eb9e179241a6ff ******/ %feature("compactdefaultargs") Face; %feature("autodoc", "Return ------- @@ -1417,8 +1417,8 @@ No available documentation. ") Face; const TopoDS_Face Face(); - /****************** SetFace ******************/ - /**** md5 signature: b689a8f4d5c8b24783cd7ff1ee539b06 ****/ + /****** BOPAlgo_WireEdgeSet::SetFace ******/ + /****** md5 signature: b689a8f4d5c8b24783cd7ff1ee539b06 ******/ %feature("compactdefaultargs") SetFace; %feature("autodoc", " Parameters @@ -1435,8 +1435,8 @@ No available documentation. ") SetFace; void SetFace(const TopoDS_Face & aF); - /****************** Shapes ******************/ - /**** md5 signature: bd11cb23d06c39c15707d62c9b6c054e ****/ + /****** BOPAlgo_WireEdgeSet::Shapes ******/ + /****** md5 signature: bd11cb23d06c39c15707d62c9b6c054e ******/ %feature("compactdefaultargs") Shapes; %feature("autodoc", "Return ------- @@ -1448,8 +1448,8 @@ No available documentation. ") Shapes; const TopTools_ListOfShape & Shapes(); - /****************** StartElements ******************/ - /**** md5 signature: 4df71127781e1f235af21a1e6e23cfbe ****/ + /****** BOPAlgo_WireEdgeSet::StartElements ******/ + /****** md5 signature: 4df71127781e1f235af21a1e6e23cfbe ******/ %feature("compactdefaultargs") StartElements; %feature("autodoc", "Return ------- @@ -1477,8 +1477,8 @@ No available documentation. %ignore BOPAlgo_Algo::~BOPAlgo_Algo(); class BOPAlgo_Algo : public BOPAlgo_Options { public: - /****************** Perform ******************/ - /**** md5 signature: 398f71859219956837273801c6ed1f07 ****/ + /****** BOPAlgo_Algo::Perform ******/ + /****** md5 signature: 398f71859219956837273801c6ed1f07 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1509,8 +1509,8 @@ The main method to implement the operation providing the range allows to enable ******************************/ class BOPAlgo_MakeConnected : public BOPAlgo_Options { public: - /****************** BOPAlgo_MakeConnected ******************/ - /**** md5 signature: b6b80e8925410141807a3d11286b03bf ****/ + /****** BOPAlgo_MakeConnected::BOPAlgo_MakeConnected ******/ + /****** md5 signature: b6b80e8925410141807a3d11286b03bf ******/ %feature("compactdefaultargs") BOPAlgo_MakeConnected; %feature("autodoc", "Return ------- @@ -1522,8 +1522,8 @@ Empty constructor. ") BOPAlgo_MakeConnected; BOPAlgo_MakeConnected(); - /****************** AddArgument ******************/ - /**** md5 signature: 11101b8c38f2080ebb6a92f924c1e316 ****/ + /****** BOPAlgo_MakeConnected::AddArgument ******/ + /****** md5 signature: 11101b8c38f2080ebb6a92f924c1e316 ******/ %feature("compactdefaultargs") AddArgument; %feature("autodoc", " Parameters @@ -1540,8 +1540,8 @@ Adds the shape to the arguments. @param thes [in] one of the argument shapes. ") AddArgument; void AddArgument(const TopoDS_Shape & theS); - /****************** Arguments ******************/ - /**** md5 signature: 5c44416d889811943ccde89673d3c270 ****/ + /****** BOPAlgo_MakeConnected::Arguments ******/ + /****** md5 signature: 5c44416d889811943ccde89673d3c270 ******/ %feature("compactdefaultargs") Arguments; %feature("autodoc", "Return ------- @@ -1553,8 +1553,8 @@ Returns the list of arguments of the operation. ") Arguments; const TopTools_ListOfShape & Arguments(); - /****************** Clear ******************/ - /**** md5 signature: 75abd67f132413fc11c19201aabf1126 ****/ + /****** BOPAlgo_MakeConnected::Clear ******/ + /****** md5 signature: 75abd67f132413fc11c19201aabf1126 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -1566,8 +1566,8 @@ Clears the contents of the algorithm. ") Clear; void Clear(); - /****************** ClearRepetitions ******************/ - /**** md5 signature: 1c0185ac8e9e0e24db025dcc70e76ee3 ****/ + /****** BOPAlgo_MakeConnected::ClearRepetitions ******/ + /****** md5 signature: 1c0185ac8e9e0e24db025dcc70e76ee3 ******/ %feature("compactdefaultargs") ClearRepetitions; %feature("autodoc", "Return ------- @@ -1579,8 +1579,8 @@ Clears the repetitions performed on the periodic shape, keeping the shape period ") ClearRepetitions; void ClearRepetitions(); - /****************** GetModified ******************/ - /**** md5 signature: 67b726d6ad41609c9d81facb302563d9 ****/ + /****** BOPAlgo_MakeConnected::GetModified ******/ + /****** md5 signature: 67b726d6ad41609c9d81facb302563d9 ******/ %feature("compactdefaultargs") GetModified; %feature("autodoc", " Parameters @@ -1597,8 +1597,8 @@ Returns the list of shapes modified from the given shape. @param thes [in] the s ") GetModified; const TopTools_ListOfShape & GetModified(const TopoDS_Shape & theS); - /****************** GetOrigins ******************/ - /**** md5 signature: 7db29e58de3213ff94b819ac6e61a362 ****/ + /****** BOPAlgo_MakeConnected::GetOrigins ******/ + /****** md5 signature: 7db29e58de3213ff94b819ac6e61a362 ******/ %feature("compactdefaultargs") GetOrigins; %feature("autodoc", " Parameters @@ -1615,8 +1615,8 @@ Returns the list of original shapes from which the current shape has been create ") GetOrigins; const TopTools_ListOfShape & GetOrigins(const TopoDS_Shape & theS); - /****************** History ******************/ - /**** md5 signature: 773151b712351341bc4cedd074c69f00 ****/ + /****** BOPAlgo_MakeConnected::History ******/ + /****** md5 signature: 773151b712351341bc4cedd074c69f00 ******/ %feature("compactdefaultargs") History; %feature("autodoc", "Return ------- @@ -1628,8 +1628,8 @@ Returns the history of operations. ") History; const opencascade::handle & History(); - /****************** MakePeriodic ******************/ - /**** md5 signature: fa6a1689dfb3f4346cf8892a55e9eab9 ****/ + /****** BOPAlgo_MakeConnected::MakePeriodic ******/ + /****** md5 signature: fa6a1689dfb3f4346cf8892a55e9eab9 ******/ %feature("compactdefaultargs") MakePeriodic; %feature("autodoc", " Parameters @@ -1646,8 +1646,8 @@ Makes the connected shape periodic. repeated calls of this method overwrite the ") MakePeriodic; void MakePeriodic(const BOPAlgo_MakePeriodic::PeriodicityParams & theParams); - /****************** MaterialsOnNegativeSide ******************/ - /**** md5 signature: 5f6193d727b8ebf6a2769408a4b22a5c ****/ + /****** BOPAlgo_MakeConnected::MaterialsOnNegativeSide ******/ + /****** md5 signature: 5f6193d727b8ebf6a2769408a4b22a5c ******/ %feature("compactdefaultargs") MaterialsOnNegativeSide; %feature("autodoc", " Parameters @@ -1664,8 +1664,8 @@ Returns the original shapes which images contain the the given shape with revers ") MaterialsOnNegativeSide; const TopTools_ListOfShape & MaterialsOnNegativeSide(const TopoDS_Shape & theS); - /****************** MaterialsOnPositiveSide ******************/ - /**** md5 signature: 08f98025f671410be24c9e1ce19c2d94 ****/ + /****** BOPAlgo_MakeConnected::MaterialsOnPositiveSide ******/ + /****** md5 signature: 08f98025f671410be24c9e1ce19c2d94 ******/ %feature("compactdefaultargs") MaterialsOnPositiveSide; %feature("autodoc", " Parameters @@ -1682,8 +1682,8 @@ Returns the original shapes which images contain the the given shape with forwar ") MaterialsOnPositiveSide; const TopTools_ListOfShape & MaterialsOnPositiveSide(const TopoDS_Shape & theS); - /****************** Perform ******************/ - /**** md5 signature: c04b01412cba7220c024b5eb4532697f ****/ + /****** BOPAlgo_MakeConnected::Perform ******/ + /****** md5 signature: c04b01412cba7220c024b5eb4532697f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", "Return ------- @@ -1695,8 +1695,8 @@ Performs the operation, i.e. makes the input shapes connected. ") Perform; void Perform(); - /****************** PeriodicShape ******************/ - /**** md5 signature: 0cadd972cbc9b05f82bfa5506c7cee42 ****/ + /****** BOPAlgo_MakeConnected::PeriodicShape ******/ + /****** md5 signature: 0cadd972cbc9b05f82bfa5506c7cee42 ******/ %feature("compactdefaultargs") PeriodicShape; %feature("autodoc", "Return ------- @@ -1708,8 +1708,8 @@ Returns the resulting periodic & repeated shape. ") PeriodicShape; const TopoDS_Shape PeriodicShape(); - /****************** PeriodicityTool ******************/ - /**** md5 signature: 73b35be00edb65bd2ce0a4bea38ba204 ****/ + /****** BOPAlgo_MakeConnected::PeriodicityTool ******/ + /****** md5 signature: 73b35be00edb65bd2ce0a4bea38ba204 ******/ %feature("compactdefaultargs") PeriodicityTool; %feature("autodoc", "Return ------- @@ -1721,8 +1721,8 @@ Returns the periodicity tool. ") PeriodicityTool; const BOPAlgo_MakePeriodic & PeriodicityTool(); - /****************** RepeatShape ******************/ - /**** md5 signature: c36e05cb1b309b9ad4d6a379dec723ed ****/ + /****** BOPAlgo_MakeConnected::RepeatShape ******/ + /****** md5 signature: c36e05cb1b309b9ad4d6a379dec723ed ******/ %feature("compactdefaultargs") RepeatShape; %feature("autodoc", " Parameters @@ -1740,8 +1740,8 @@ Performs repetition of the periodic shape in specified direction required number ") RepeatShape; void RepeatShape(const Standard_Integer theDirectionID, const Standard_Integer theTimes); - /****************** SetArguments ******************/ - /**** md5 signature: c11327ccf7873847aaf3c9f2c70f6eeb ****/ + /****** BOPAlgo_MakeConnected::SetArguments ******/ + /****** md5 signature: c11327ccf7873847aaf3c9f2c70f6eeb ******/ %feature("compactdefaultargs") SetArguments; %feature("autodoc", " Parameters @@ -1758,8 +1758,8 @@ Sets the shape for making them connected. @param theargs [in] the arguments for ") SetArguments; void SetArguments(const TopTools_ListOfShape & theArgs); - /****************** Shape ******************/ - /**** md5 signature: 1058569f5d639354fedf11e73741b7df ****/ + /****** BOPAlgo_MakeConnected::Shape ******/ + /****** md5 signature: 1058569f5d639354fedf11e73741b7df ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -1786,8 +1786,8 @@ Returns the resulting connected shape. class BOPAlgo_MakePeriodic : public BOPAlgo_Options { public: class PeriodicityParams {}; - /****************** BOPAlgo_MakePeriodic ******************/ - /**** md5 signature: 4d5c6c6476f6d1dac6cdff8dacf51577 ****/ + /****** BOPAlgo_MakePeriodic::BOPAlgo_MakePeriodic ******/ + /****** md5 signature: 4d5c6c6476f6d1dac6cdff8dacf51577 ******/ %feature("compactdefaultargs") BOPAlgo_MakePeriodic; %feature("autodoc", "Return ------- @@ -1799,8 +1799,8 @@ Empty constructor. ") BOPAlgo_MakePeriodic; BOPAlgo_MakePeriodic(); - /****************** Clear ******************/ - /**** md5 signature: 75abd67f132413fc11c19201aabf1126 ****/ + /****** BOPAlgo_MakePeriodic::Clear ******/ + /****** md5 signature: 75abd67f132413fc11c19201aabf1126 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -1812,8 +1812,8 @@ Clears the algorithm from previous runs. ") Clear; void Clear(); - /****************** ClearRepetitions ******************/ - /**** md5 signature: edf6e1354024889c605c1f3c39cbe513 ****/ + /****** BOPAlgo_MakePeriodic::ClearRepetitions ******/ + /****** md5 signature: edf6e1354024889c605c1f3c39cbe513 ******/ %feature("compactdefaultargs") ClearRepetitions; %feature("autodoc", "Return ------- @@ -1825,8 +1825,8 @@ Clears all performed repetitions. the next repetition will be performed on the b ") ClearRepetitions; void ClearRepetitions(); - /****************** GetTwins ******************/ - /**** md5 signature: 7acec2f72b7c127c74cb7b8ac498de87 ****/ + /****** BOPAlgo_MakePeriodic::GetTwins ******/ + /****** md5 signature: 7acec2f72b7c127c74cb7b8ac498de87 ******/ %feature("compactdefaultargs") GetTwins; %feature("autodoc", " Parameters @@ -1843,8 +1843,8 @@ Returns the identical shapes for the given shape located on the opposite periodi ") GetTwins; const TopTools_ListOfShape & GetTwins(const TopoDS_Shape & theS); - /****************** History ******************/ - /**** md5 signature: 773151b712351341bc4cedd074c69f00 ****/ + /****** BOPAlgo_MakePeriodic::History ******/ + /****** md5 signature: 773151b712351341bc4cedd074c69f00 ******/ %feature("compactdefaultargs") History; %feature("autodoc", "Return ------- @@ -1856,8 +1856,8 @@ Returns the history of the algorithm. ") History; const opencascade::handle & History(); - /****************** IsInputTrimmed ******************/ - /**** md5 signature: 11de85435b7b5fa036606d9ce3973d08 ****/ + /****** BOPAlgo_MakePeriodic::IsInputTrimmed ******/ + /****** md5 signature: 11de85435b7b5fa036606d9ce3973d08 ******/ %feature("compactdefaultargs") IsInputTrimmed; %feature("autodoc", " Parameters @@ -1874,8 +1874,8 @@ Returns whether the input shape was trimmed in the specified direction. @param t ") IsInputTrimmed; Standard_Boolean IsInputTrimmed(const Standard_Integer theDirectionID); - /****************** IsInputXTrimmed ******************/ - /**** md5 signature: 51fa4172f8e0eb40911b355e9680f28b ****/ + /****** BOPAlgo_MakePeriodic::IsInputXTrimmed ******/ + /****** md5 signature: 51fa4172f8e0eb40911b355e9680f28b ******/ %feature("compactdefaultargs") IsInputXTrimmed; %feature("autodoc", "Return ------- @@ -1887,8 +1887,8 @@ Returns whether the input shape was already trimmed for x period. ") IsInputXTrimmed; Standard_Boolean IsInputXTrimmed(); - /****************** IsInputYTrimmed ******************/ - /**** md5 signature: 60b80ff8725cbf223315f7aff8a660dc ****/ + /****** BOPAlgo_MakePeriodic::IsInputYTrimmed ******/ + /****** md5 signature: 60b80ff8725cbf223315f7aff8a660dc ******/ %feature("compactdefaultargs") IsInputYTrimmed; %feature("autodoc", "Return ------- @@ -1900,8 +1900,8 @@ Returns whether the input shape was already trimmed for y period. ") IsInputYTrimmed; Standard_Boolean IsInputYTrimmed(); - /****************** IsInputZTrimmed ******************/ - /**** md5 signature: 1685b26b2863b1acec7025e907e61ef4 ****/ + /****** BOPAlgo_MakePeriodic::IsInputZTrimmed ******/ + /****** md5 signature: 1685b26b2863b1acec7025e907e61ef4 ******/ %feature("compactdefaultargs") IsInputZTrimmed; %feature("autodoc", "Return ------- @@ -1913,8 +1913,8 @@ Returns whether the input shape was already trimmed for z period. ") IsInputZTrimmed; Standard_Boolean IsInputZTrimmed(); - /****************** IsPeriodic ******************/ - /**** md5 signature: bb8156b1e5d3c79256f3967acd61f561 ****/ + /****** BOPAlgo_MakePeriodic::IsPeriodic ******/ + /****** md5 signature: bb8156b1e5d3c79256f3967acd61f561 ******/ %feature("compactdefaultargs") IsPeriodic; %feature("autodoc", " Parameters @@ -1931,8 +1931,8 @@ Returns the info about periodicity of the shape in specified direction. @param t ") IsPeriodic; Standard_Boolean IsPeriodic(const Standard_Integer theDirectionID); - /****************** IsXPeriodic ******************/ - /**** md5 signature: 825125bcd6f4a4228724ba85e488f68a ****/ + /****** BOPAlgo_MakePeriodic::IsXPeriodic ******/ + /****** md5 signature: 825125bcd6f4a4228724ba85e488f68a ******/ %feature("compactdefaultargs") IsXPeriodic; %feature("autodoc", "Return ------- @@ -1944,8 +1944,8 @@ Returns the info about periodicity of the shape in x direction. ") IsXPeriodic; Standard_Boolean IsXPeriodic(); - /****************** IsYPeriodic ******************/ - /**** md5 signature: bdf89adf6728f519216976b7f49a9c82 ****/ + /****** BOPAlgo_MakePeriodic::IsYPeriodic ******/ + /****** md5 signature: bdf89adf6728f519216976b7f49a9c82 ******/ %feature("compactdefaultargs") IsYPeriodic; %feature("autodoc", "Return ------- @@ -1957,8 +1957,8 @@ Returns the info about periodicity of the shape in y direction. ") IsYPeriodic; Standard_Boolean IsYPeriodic(); - /****************** IsZPeriodic ******************/ - /**** md5 signature: 733ec7d6f8ce6b2035b30a926ed50f26 ****/ + /****** BOPAlgo_MakePeriodic::IsZPeriodic ******/ + /****** md5 signature: 733ec7d6f8ce6b2035b30a926ed50f26 ******/ %feature("compactdefaultargs") IsZPeriodic; %feature("autodoc", "Return ------- @@ -1970,8 +1970,8 @@ Returns the info about periodicity of the shape in z direction. ") IsZPeriodic; Standard_Boolean IsZPeriodic(); - /****************** MakePeriodic ******************/ - /**** md5 signature: c4286c9a3e55c3953b69faa375b6e1b3 ****/ + /****** BOPAlgo_MakePeriodic::MakePeriodic ******/ + /****** md5 signature: c4286c9a3e55c3953b69faa375b6e1b3 ******/ %feature("compactdefaultargs") MakePeriodic; %feature("autodoc", " Parameters @@ -1990,8 +1990,8 @@ Sets the flag to make the shape periodic in specified direction: - 0 - x directi ") MakePeriodic; void MakePeriodic(const Standard_Integer theDirectionID, const Standard_Boolean theIsPeriodic, const Standard_Real thePeriod = 0.0); - /****************** MakeXPeriodic ******************/ - /**** md5 signature: df3376e9d459c637fa867e10c13236ef ****/ + /****** BOPAlgo_MakePeriodic::MakeXPeriodic ******/ + /****** md5 signature: df3376e9d459c637fa867e10c13236ef ******/ %feature("compactdefaultargs") MakeXPeriodic; %feature("autodoc", " Parameters @@ -2009,8 +2009,8 @@ Sets the flag to make the shape periodic in x direction. @param theisperiodic [i ") MakeXPeriodic; void MakeXPeriodic(const Standard_Boolean theIsPeriodic, const Standard_Real thePeriod = 0.0); - /****************** MakeYPeriodic ******************/ - /**** md5 signature: 8e8ca05d15522a37581c6613d7770566 ****/ + /****** BOPAlgo_MakePeriodic::MakeYPeriodic ******/ + /****** md5 signature: 8e8ca05d15522a37581c6613d7770566 ******/ %feature("compactdefaultargs") MakeYPeriodic; %feature("autodoc", " Parameters @@ -2028,8 +2028,8 @@ Sets the flag to make the shape periodic in y direction. @param theisperiodic [i ") MakeYPeriodic; void MakeYPeriodic(const Standard_Boolean theIsPeriodic, const Standard_Real thePeriod = 0.0); - /****************** MakeZPeriodic ******************/ - /**** md5 signature: 6c09987fe2927a09f6f4d0ae3f02d323 ****/ + /****** BOPAlgo_MakePeriodic::MakeZPeriodic ******/ + /****** md5 signature: 6c09987fe2927a09f6f4d0ae3f02d323 ******/ %feature("compactdefaultargs") MakeZPeriodic; %feature("autodoc", " Parameters @@ -2047,8 +2047,8 @@ Sets the flag to make the shape periodic in z direction. @param theisperiodic [i ") MakeZPeriodic; void MakeZPeriodic(const Standard_Boolean theIsPeriodic, const Standard_Real thePeriod = 0.0); - /****************** Perform ******************/ - /**** md5 signature: c04b01412cba7220c024b5eb4532697f ****/ + /****** BOPAlgo_MakePeriodic::Perform ******/ + /****** md5 signature: c04b01412cba7220c024b5eb4532697f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", "Return ------- @@ -2060,8 +2060,8 @@ Makes the shape periodic in necessary directions. ") Perform; void Perform(); - /****************** Period ******************/ - /**** md5 signature: 905dfc700c6784284a2257479c7ec087 ****/ + /****** BOPAlgo_MakePeriodic::Period ******/ + /****** md5 signature: 905dfc700c6784284a2257479c7ec087 ******/ %feature("compactdefaultargs") Period; %feature("autodoc", " Parameters @@ -2078,8 +2078,8 @@ Returns the period of the shape in specified direction. @param thedirectionid [i ") Period; Standard_Real Period(const Standard_Integer theDirectionID); - /****************** PeriodFirst ******************/ - /**** md5 signature: 65b281fb9f7dc9e2c35e5feaad2bfddf ****/ + /****** BOPAlgo_MakePeriodic::PeriodFirst ******/ + /****** md5 signature: 65b281fb9f7dc9e2c35e5feaad2bfddf ******/ %feature("compactdefaultargs") PeriodFirst; %feature("autodoc", " Parameters @@ -2096,8 +2096,8 @@ Returns the first periodic parameter in the specified direction. @param thedirec ") PeriodFirst; Standard_Real PeriodFirst(const Standard_Integer theDirectionID); - /****************** PeriodicityParameters ******************/ - /**** md5 signature: 056ef0516517eb60320d576453827503 ****/ + /****** BOPAlgo_MakePeriodic::PeriodicityParameters ******/ + /****** md5 signature: 056ef0516517eb60320d576453827503 ******/ %feature("compactdefaultargs") PeriodicityParameters; %feature("autodoc", "Return ------- @@ -2109,8 +2109,8 @@ No available documentation. ") PeriodicityParameters; BOPAlgo_MakePeriodic::PeriodicityParams PeriodicityParameters(); - /****************** RepeatShape ******************/ - /**** md5 signature: 498d51ce623dcf5bdb9974585637d231 ****/ + /****** BOPAlgo_MakePeriodic::RepeatShape ******/ + /****** md5 signature: 498d51ce623dcf5bdb9974585637d231 ******/ %feature("compactdefaultargs") RepeatShape; %feature("autodoc", " Parameters @@ -2128,8 +2128,8 @@ Performs repetition of the shape in specified direction required number of times ") RepeatShape; const TopoDS_Shape RepeatShape(const Standard_Integer theDirectionID, const Standard_Integer theTimes); - /****************** RepeatedShape ******************/ - /**** md5 signature: bc344bbb89766dbca655721d874cfcd6 ****/ + /****** BOPAlgo_MakePeriodic::RepeatedShape ******/ + /****** md5 signature: bc344bbb89766dbca655721d874cfcd6 ******/ %feature("compactdefaultargs") RepeatedShape; %feature("autodoc", "Return ------- @@ -2141,8 +2141,8 @@ Returns the repeated shape. ") RepeatedShape; const TopoDS_Shape RepeatedShape(); - /****************** SetPeriodicityParameters ******************/ - /**** md5 signature: 0952cf9752b01bf7cfc1d3d1baacf266 ****/ + /****** BOPAlgo_MakePeriodic::SetPeriodicityParameters ******/ + /****** md5 signature: 0952cf9752b01bf7cfc1d3d1baacf266 ******/ %feature("compactdefaultargs") SetPeriodicityParameters; %feature("autodoc", " Parameters @@ -2159,8 +2159,8 @@ Sets the periodicity parameters. @param theparams [in] periodicity parameters. ") SetPeriodicityParameters; void SetPeriodicityParameters(PeriodicityParams theParams); - /****************** SetShape ******************/ - /**** md5 signature: 927e2ebe2fb5354dfb3da3c53e512cad ****/ + /****** BOPAlgo_MakePeriodic::SetShape ******/ + /****** md5 signature: 927e2ebe2fb5354dfb3da3c53e512cad ******/ %feature("compactdefaultargs") SetShape; %feature("autodoc", " Parameters @@ -2177,8 +2177,8 @@ Sets the shape to make it periodic. @param theshape [in] the shape to make perio ") SetShape; void SetShape(const TopoDS_Shape & theShape); - /****************** SetTrimmed ******************/ - /**** md5 signature: 36ad2721a8f03216522c13264ed2d5ec ****/ + /****** BOPAlgo_MakePeriodic::SetTrimmed ******/ + /****** md5 signature: 36ad2721a8f03216522c13264ed2d5ec ******/ %feature("compactdefaultargs") SetTrimmed; %feature("autodoc", " Parameters @@ -2197,8 +2197,8 @@ Defines whether the input shape is already trimmed in specified direction to fit ") SetTrimmed; void SetTrimmed(const Standard_Integer theDirectionID, const Standard_Boolean theIsTrimmed, const Standard_Real theFirst = 0.0); - /****************** SetXTrimmed ******************/ - /**** md5 signature: 81bbfd4b7a5f26b85a82d52dc5af0149 ****/ + /****** BOPAlgo_MakePeriodic::SetXTrimmed ******/ + /****** md5 signature: 81bbfd4b7a5f26b85a82d52dc5af0149 ******/ %feature("compactdefaultargs") SetXTrimmed; %feature("autodoc", " Parameters @@ -2216,8 +2216,8 @@ Defines whether the input shape is already trimmed in x direction to fit the x p ") SetXTrimmed; void SetXTrimmed(const Standard_Boolean theIsTrimmed, const Standard_Boolean theFirst = 0.0); - /****************** SetYTrimmed ******************/ - /**** md5 signature: 93fc3f210273049407ff8a8e1e7c3166 ****/ + /****** BOPAlgo_MakePeriodic::SetYTrimmed ******/ + /****** md5 signature: 93fc3f210273049407ff8a8e1e7c3166 ******/ %feature("compactdefaultargs") SetYTrimmed; %feature("autodoc", " Parameters @@ -2235,8 +2235,8 @@ Defines whether the input shape is already trimmed in y direction to fit the y p ") SetYTrimmed; void SetYTrimmed(const Standard_Boolean theIsTrimmed, const Standard_Boolean theFirst = 0.0); - /****************** SetZTrimmed ******************/ - /**** md5 signature: 45d195d98801cadb6112962160157fe8 ****/ + /****** BOPAlgo_MakePeriodic::SetZTrimmed ******/ + /****** md5 signature: 45d195d98801cadb6112962160157fe8 ******/ %feature("compactdefaultargs") SetZTrimmed; %feature("autodoc", " Parameters @@ -2254,8 +2254,8 @@ Defines whether the input shape is already trimmed in z direction to fit the z p ") SetZTrimmed; void SetZTrimmed(const Standard_Boolean theIsTrimmed, const Standard_Boolean theFirst = 0.0); - /****************** Shape ******************/ - /**** md5 signature: 1058569f5d639354fedf11e73741b7df ****/ + /****** BOPAlgo_MakePeriodic::Shape ******/ + /****** md5 signature: 1058569f5d639354fedf11e73741b7df ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -2267,8 +2267,8 @@ Returns the resulting periodic shape. ") Shape; const TopoDS_Shape Shape(); - /****************** ToDirectionID ******************/ - /**** md5 signature: 93eb37961bf75f72a1ed4293ff2f6860 ****/ + /****** BOPAlgo_MakePeriodic::ToDirectionID ******/ + /****** md5 signature: 93eb37961bf75f72a1ed4293ff2f6860 ******/ %feature("compactdefaultargs") ToDirectionID; %feature("autodoc", " Parameters @@ -2285,8 +2285,8 @@ Converts the integer to id of periodic direction. ") ToDirectionID; static Standard_Integer ToDirectionID(const Standard_Integer theDirectionID); - /****************** XPeriod ******************/ - /**** md5 signature: 6dd89ec7e807f05a40688e7c6a838896 ****/ + /****** BOPAlgo_MakePeriodic::XPeriod ******/ + /****** md5 signature: 6dd89ec7e807f05a40688e7c6a838896 ******/ %feature("compactdefaultargs") XPeriod; %feature("autodoc", "Return ------- @@ -2298,8 +2298,8 @@ Returns the xperiod of the shape. ") XPeriod; Standard_Real XPeriod(); - /****************** XPeriodFirst ******************/ - /**** md5 signature: a02688bedcf5f9cc9871b6ab26e1dbae ****/ + /****** BOPAlgo_MakePeriodic::XPeriodFirst ******/ + /****** md5 signature: a02688bedcf5f9cc9871b6ab26e1dbae ******/ %feature("compactdefaultargs") XPeriodFirst; %feature("autodoc", "Return ------- @@ -2311,8 +2311,8 @@ Returns the first parameter for the x period. ") XPeriodFirst; Standard_Real XPeriodFirst(); - /****************** XRepeat ******************/ - /**** md5 signature: 703940b883cbd562fdffcc37a48373f9 ****/ + /****** BOPAlgo_MakePeriodic::XRepeat ******/ + /****** md5 signature: 703940b883cbd562fdffcc37a48373f9 ******/ %feature("compactdefaultargs") XRepeat; %feature("autodoc", " Parameters @@ -2329,8 +2329,8 @@ Repeats the shape in x direction specified number of times. negative value of ti ") XRepeat; const TopoDS_Shape XRepeat(const Standard_Integer theTimes); - /****************** YPeriod ******************/ - /**** md5 signature: 52af3073f75d0fcc2884913777c9c0c1 ****/ + /****** BOPAlgo_MakePeriodic::YPeriod ******/ + /****** md5 signature: 52af3073f75d0fcc2884913777c9c0c1 ******/ %feature("compactdefaultargs") YPeriod; %feature("autodoc", "Return ------- @@ -2342,8 +2342,8 @@ Returns the yperiod of the shape. ") YPeriod; Standard_Real YPeriod(); - /****************** YPeriodFirst ******************/ - /**** md5 signature: 793e8a60b882882c47265a4c35326e0e ****/ + /****** BOPAlgo_MakePeriodic::YPeriodFirst ******/ + /****** md5 signature: 793e8a60b882882c47265a4c35326e0e ******/ %feature("compactdefaultargs") YPeriodFirst; %feature("autodoc", "Return ------- @@ -2355,8 +2355,8 @@ Returns the first parameter for the y period. ") YPeriodFirst; Standard_Real YPeriodFirst(); - /****************** YRepeat ******************/ - /**** md5 signature: ad506731f1c56bec1f509d4f39f93df1 ****/ + /****** BOPAlgo_MakePeriodic::YRepeat ******/ + /****** md5 signature: ad506731f1c56bec1f509d4f39f93df1 ******/ %feature("compactdefaultargs") YRepeat; %feature("autodoc", " Parameters @@ -2373,8 +2373,8 @@ Repeats the shape in y direction specified number of times. negative value of ti ") YRepeat; const TopoDS_Shape YRepeat(const Standard_Integer theTimes); - /****************** ZPeriod ******************/ - /**** md5 signature: ea552fd4bc539be2e22f25f495cc2938 ****/ + /****** BOPAlgo_MakePeriodic::ZPeriod ******/ + /****** md5 signature: ea552fd4bc539be2e22f25f495cc2938 ******/ %feature("compactdefaultargs") ZPeriod; %feature("autodoc", "Return ------- @@ -2386,8 +2386,8 @@ Returns the zperiod of the shape. ") ZPeriod; Standard_Real ZPeriod(); - /****************** ZPeriodFirst ******************/ - /**** md5 signature: 75ea8dea98ac01ca4dd73841cb16f368 ****/ + /****** BOPAlgo_MakePeriodic::ZPeriodFirst ******/ + /****** md5 signature: 75ea8dea98ac01ca4dd73841cb16f368 ******/ %feature("compactdefaultargs") ZPeriodFirst; %feature("autodoc", "Return ------- @@ -2399,8 +2399,8 @@ Returns the first parameter for the z period. ") ZPeriodFirst; Standard_Real ZPeriodFirst(); - /****************** ZRepeat ******************/ - /**** md5 signature: 1b9e96904de0881a1a4d7b9b6fd78839 ****/ + /****** BOPAlgo_MakePeriodic::ZRepeat ******/ + /****** md5 signature: 1b9e96904de0881a1a4d7b9b6fd78839 ******/ %feature("compactdefaultargs") ZRepeat; %feature("autodoc", " Parameters @@ -2431,8 +2431,8 @@ Repeats the shape in z direction specified number of times. negative value of ti *********************************/ class BOPAlgo_ArgumentAnalyzer : public BOPAlgo_Algo { public: - /****************** BOPAlgo_ArgumentAnalyzer ******************/ - /**** md5 signature: 9f14477a10a2e7722471042579c763b6 ****/ + /****** BOPAlgo_ArgumentAnalyzer::BOPAlgo_ArgumentAnalyzer ******/ + /****** md5 signature: 9f14477a10a2e7722471042579c763b6 ******/ %feature("compactdefaultargs") BOPAlgo_ArgumentAnalyzer; %feature("autodoc", "Return ------- @@ -2483,8 +2483,8 @@ Empty constructor. $self->CurveOnSurfaceMode()=value; } }; - /****************** GetCheckResult ******************/ - /**** md5 signature: ab448040cd97688d236e23189cee34b9 ****/ + /****** BOPAlgo_ArgumentAnalyzer::GetCheckResult ******/ + /****** md5 signature: ab448040cd97688d236e23189cee34b9 ******/ %feature("compactdefaultargs") GetCheckResult; %feature("autodoc", "Return ------- @@ -2496,8 +2496,8 @@ Returns a result of test. ") GetCheckResult; const BOPAlgo_ListOfCheckResult & GetCheckResult(); - /****************** GetShape1 ******************/ - /**** md5 signature: da65271fea68f494586b07012e23b4bb ****/ + /****** BOPAlgo_ArgumentAnalyzer::GetShape1 ******/ + /****** md5 signature: da65271fea68f494586b07012e23b4bb ******/ %feature("compactdefaultargs") GetShape1; %feature("autodoc", "Return ------- @@ -2509,8 +2509,8 @@ Returns object shape;. ") GetShape1; const TopoDS_Shape GetShape1(); - /****************** GetShape2 ******************/ - /**** md5 signature: ad646522ebe6de8820d9424e4f21edb9 ****/ + /****** BOPAlgo_ArgumentAnalyzer::GetShape2 ******/ + /****** md5 signature: ad646522ebe6de8820d9424e4f21edb9 ******/ %feature("compactdefaultargs") GetShape2; %feature("autodoc", "Return ------- @@ -2522,8 +2522,8 @@ Returns tool shape. ") GetShape2; const TopoDS_Shape GetShape2(); - /****************** HasFaulty ******************/ - /**** md5 signature: 4e2d963ca1680b1be6c5917993c51870 ****/ + /****** BOPAlgo_ArgumentAnalyzer::HasFaulty ******/ + /****** md5 signature: 4e2d963ca1680b1be6c5917993c51870 ******/ %feature("compactdefaultargs") HasFaulty; %feature("autodoc", "Return ------- @@ -2561,8 +2561,8 @@ Result of test. $self->MergeVertexMode()=value; } }; - /****************** OperationType ******************/ - /**** md5 signature: 738397fdac6453814ea85c4462f40440 ****/ + /****** BOPAlgo_ArgumentAnalyzer::OperationType ******/ + /****** md5 signature: 738397fdac6453814ea85c4462f40440 ******/ %feature("compactdefaultargs") OperationType; %feature("autodoc", "Return ------- @@ -2574,8 +2574,8 @@ Returns ref. ") OperationType; BOPAlgo_Operation OperationType(); - /****************** Perform ******************/ - /**** md5 signature: 237808a6b51056c9f8e292d343f26d7d ****/ + /****** BOPAlgo_ArgumentAnalyzer::Perform ******/ + /****** md5 signature: 237808a6b51056c9f8e292d343f26d7d ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2618,8 +2618,8 @@ Performs analysis. $self->SelfInterMode()=value; } }; - /****************** SetShape1 ******************/ - /**** md5 signature: 32d06bb8d221a179d322a30597a4d6c8 ****/ + /****** BOPAlgo_ArgumentAnalyzer::SetShape1 ******/ + /****** md5 signature: 32d06bb8d221a179d322a30597a4d6c8 ******/ %feature("compactdefaultargs") SetShape1; %feature("autodoc", " Parameters @@ -2636,8 +2636,8 @@ Sets object shape. ") SetShape1; void SetShape1(const TopoDS_Shape & TheShape); - /****************** SetShape2 ******************/ - /**** md5 signature: 872074f224a41d220ff8f15ed451c9ac ****/ + /****** BOPAlgo_ArgumentAnalyzer::SetShape2 ******/ + /****** md5 signature: 872074f224a41d220ff8f15ed451c9ac ******/ %feature("compactdefaultargs") SetShape2; %feature("autodoc", " Parameters @@ -2709,8 +2709,8 @@ Sets tool shape. %ignore BOPAlgo_BuilderArea::~BOPAlgo_BuilderArea(); class BOPAlgo_BuilderArea : public BOPAlgo_Algo { public: - /****************** Areas ******************/ - /**** md5 signature: 25d90180c64c3e47d9200443b7a9d0e2 ****/ + /****** BOPAlgo_BuilderArea::Areas ******/ + /****** md5 signature: 25d90180c64c3e47d9200443b7a9d0e2 ******/ %feature("compactdefaultargs") Areas; %feature("autodoc", "Return ------- @@ -2722,8 +2722,8 @@ Returns the found areas. ") Areas; const TopTools_ListOfShape & Areas(); - /****************** IsAvoidInternalShapes ******************/ - /**** md5 signature: 8a7b9501581d682ae84b1516b6d067be ****/ + /****** BOPAlgo_BuilderArea::IsAvoidInternalShapes ******/ + /****** md5 signature: 8a7b9501581d682ae84b1516b6d067be ******/ %feature("compactdefaultargs") IsAvoidInternalShapes; %feature("autodoc", "Return ------- @@ -2735,8 +2735,8 @@ Returns the avoidinternalshapes flag. ") IsAvoidInternalShapes; Standard_Boolean IsAvoidInternalShapes(); - /****************** Loops ******************/ - /**** md5 signature: 28c8d70c5f0b2679616b2e020052a004 ****/ + /****** BOPAlgo_BuilderArea::Loops ******/ + /****** md5 signature: 28c8d70c5f0b2679616b2e020052a004 ******/ %feature("compactdefaultargs") Loops; %feature("autodoc", "Return ------- @@ -2748,8 +2748,8 @@ Returns the found loops. ") Loops; const TopTools_ListOfShape & Loops(); - /****************** SetAvoidInternalShapes ******************/ - /**** md5 signature: d4ee80659b0195413556579790baf956 ****/ + /****** BOPAlgo_BuilderArea::SetAvoidInternalShapes ******/ + /****** md5 signature: d4ee80659b0195413556579790baf956 ******/ %feature("compactdefaultargs") SetAvoidInternalShapes; %feature("autodoc", " Parameters @@ -2766,8 +2766,8 @@ Defines the preventing of addition of internal parts into result. the default va ") SetAvoidInternalShapes; void SetAvoidInternalShapes(const Standard_Boolean theAvoidInternal); - /****************** SetContext ******************/ - /**** md5 signature: 45a35eea8f4e3016f544e19c60ac3b92 ****/ + /****** BOPAlgo_BuilderArea::SetContext ******/ + /****** md5 signature: 45a35eea8f4e3016f544e19c60ac3b92 ******/ %feature("compactdefaultargs") SetContext; %feature("autodoc", " Parameters @@ -2784,8 +2784,8 @@ Sets the context for the algorithms. ") SetContext; void SetContext(const opencascade::handle & theContext); - /****************** SetShapes ******************/ - /**** md5 signature: 7e1ffc178f673e4a1bd556c32957daf6 ****/ + /****** BOPAlgo_BuilderArea::SetShapes ******/ + /****** md5 signature: 7e1ffc178f673e4a1bd556c32957daf6 ******/ %feature("compactdefaultargs") SetShapes; %feature("autodoc", " Parameters @@ -2802,8 +2802,8 @@ Sets the shapes for building areas. ") SetShapes; void SetShapes(const TopTools_ListOfShape & theLS); - /****************** Shapes ******************/ - /**** md5 signature: 2884193c58152e0cda5e99b2900fdc8e ****/ + /****** BOPAlgo_BuilderArea::Shapes ******/ + /****** md5 signature: 2884193c58152e0cda5e99b2900fdc8e ******/ %feature("compactdefaultargs") Shapes; %feature("autodoc", "Return ------- @@ -2830,8 +2830,8 @@ Returns the input shapes. %nodefaultctor BOPAlgo_BuilderShape; class BOPAlgo_BuilderShape : public BOPAlgo_Algo { public: - /****************** Generated ******************/ - /**** md5 signature: 7ef86753d8f2afb4fbf4e1d513ada706 ****/ + /****** BOPAlgo_BuilderShape::Generated ******/ + /****** md5 signature: 7ef86753d8f2afb4fbf4e1d513ada706 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -2848,8 +2848,8 @@ Returns the list of shapes generated from the shape thes. ") Generated; const TopTools_ListOfShape & Generated(const TopoDS_Shape & theS); - /****************** HasDeleted ******************/ - /**** md5 signature: d1376e4451370e5ff6d8e8d03d766bcb ****/ + /****** BOPAlgo_BuilderShape::HasDeleted ******/ + /****** md5 signature: d1376e4451370e5ff6d8e8d03d766bcb ******/ %feature("compactdefaultargs") HasDeleted; %feature("autodoc", "Return ------- @@ -2861,8 +2861,8 @@ Returns true if any of the input shapes has been deleted during operation. ") HasDeleted; Standard_Boolean HasDeleted(); - /****************** HasGenerated ******************/ - /**** md5 signature: ff1185ae4caf1307e4399403e704df0a ****/ + /****** BOPAlgo_BuilderShape::HasGenerated ******/ + /****** md5 signature: ff1185ae4caf1307e4399403e704df0a ******/ %feature("compactdefaultargs") HasGenerated; %feature("autodoc", "Return ------- @@ -2874,8 +2874,8 @@ Returns true if any of the input shapes has generated shapes during operation. ") HasGenerated; Standard_Boolean HasGenerated(); - /****************** HasHistory ******************/ - /**** md5 signature: 707ba290c9cd0157e12b7038a0944657 ****/ + /****** BOPAlgo_BuilderShape::HasHistory ******/ + /****** md5 signature: 707ba290c9cd0157e12b7038a0944657 ******/ %feature("compactdefaultargs") HasHistory; %feature("autodoc", "Return ------- @@ -2887,8 +2887,8 @@ Returns flag of history availability. ") HasHistory; Standard_Boolean HasHistory(); - /****************** HasModified ******************/ - /**** md5 signature: 5aa09ad744ac71dd47a6ec381a33bc9b ****/ + /****** BOPAlgo_BuilderShape::HasModified ******/ + /****** md5 signature: 5aa09ad744ac71dd47a6ec381a33bc9b ******/ %feature("compactdefaultargs") HasModified; %feature("autodoc", "Return ------- @@ -2900,8 +2900,8 @@ Returns true if any of the input shapes has been modified during operation. ") HasModified; Standard_Boolean HasModified(); - /****************** History ******************/ - /**** md5 signature: 1926fba5b3ef6c8825eef7dc63e4c382 ****/ + /****** BOPAlgo_BuilderShape::History ******/ + /****** md5 signature: 1926fba5b3ef6c8825eef7dc63e4c382 ******/ %feature("compactdefaultargs") History; %feature("autodoc", "Return ------- @@ -2913,8 +2913,8 @@ History tool. ") History; opencascade::handle History(); - /****************** IsDeleted ******************/ - /**** md5 signature: c9a78c4cfde40b7040a0809bf3392d0a ****/ + /****** BOPAlgo_BuilderShape::IsDeleted ******/ + /****** md5 signature: c9a78c4cfde40b7040a0809bf3392d0a ******/ %feature("compactdefaultargs") IsDeleted; %feature("autodoc", " Parameters @@ -2931,8 +2931,8 @@ Returns true if the shape thes has been deleted. in this case the shape will hav ") IsDeleted; Standard_Boolean IsDeleted(const TopoDS_Shape & theS); - /****************** Modified ******************/ - /**** md5 signature: 3627cf8d69b07cd5db7ba10195303d15 ****/ + /****** BOPAlgo_BuilderShape::Modified ******/ + /****** md5 signature: 3627cf8d69b07cd5db7ba10195303d15 ******/ %feature("compactdefaultargs") Modified; %feature("autodoc", " Parameters @@ -2949,8 +2949,8 @@ Returns the list of shapes modified from the shape thes. ") Modified; const TopTools_ListOfShape & Modified(const TopoDS_Shape & theS); - /****************** SetToFillHistory ******************/ - /**** md5 signature: 0645816549ab38af8118c8f63f46c0ea ****/ + /****** BOPAlgo_BuilderShape::SetToFillHistory ******/ + /****** md5 signature: 0645816549ab38af8118c8f63f46c0ea ******/ %feature("compactdefaultargs") SetToFillHistory; %feature("autodoc", " Parameters @@ -2967,8 +2967,8 @@ Allows disabling the history collection. ") SetToFillHistory; void SetToFillHistory(const Standard_Boolean theHistFlag); - /****************** Shape ******************/ - /**** md5 signature: 1058569f5d639354fedf11e73741b7df ****/ + /****** BOPAlgo_BuilderShape::Shape ******/ + /****** md5 signature: 1058569f5d639354fedf11e73741b7df ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -2995,8 +2995,8 @@ Returns the result of algorithm. %nodefaultctor BOPAlgo_ParallelAlgo; class BOPAlgo_ParallelAlgo : public BOPAlgo_Algo { public: - /****************** SetProgressRange ******************/ - /**** md5 signature: e46fe49a703ffe9531bdc8614884d302 ****/ + /****** BOPAlgo_ParallelAlgo::SetProgressRange ******/ + /****** md5 signature: e46fe49a703ffe9531bdc8614884d302 ******/ %feature("compactdefaultargs") SetProgressRange; %feature("autodoc", " Parameters @@ -3032,8 +3032,8 @@ Sets the range for a single run. class BOPAlgo_PaveFiller : public BOPAlgo_Algo { public: class EdgeRangeDistance {}; - /****************** BOPAlgo_PaveFiller ******************/ - /**** md5 signature: 695e98dd6d964c29b51abadeedf2b1c7 ****/ + /****** BOPAlgo_PaveFiller::BOPAlgo_PaveFiller ******/ + /****** md5 signature: 695e98dd6d964c29b51abadeedf2b1c7 ******/ %feature("compactdefaultargs") BOPAlgo_PaveFiller; %feature("autodoc", "Return ------- @@ -3045,8 +3045,8 @@ No available documentation. ") BOPAlgo_PaveFiller; BOPAlgo_PaveFiller(); - /****************** BOPAlgo_PaveFiller ******************/ - /**** md5 signature: 44433ddc985c762a918888031b5c5257 ****/ + /****** BOPAlgo_PaveFiller::BOPAlgo_PaveFiller ******/ + /****** md5 signature: 44433ddc985c762a918888031b5c5257 ******/ %feature("compactdefaultargs") BOPAlgo_PaveFiller; %feature("autodoc", " Parameters @@ -3063,8 +3063,8 @@ No available documentation. ") BOPAlgo_PaveFiller; BOPAlgo_PaveFiller(const opencascade::handle & theAllocator); - /****************** AddArgument ******************/ - /**** md5 signature: 0ff8514ebea7960acbeb6ec826621ca9 ****/ + /****** BOPAlgo_PaveFiller::AddArgument ******/ + /****** md5 signature: 0ff8514ebea7960acbeb6ec826621ca9 ******/ %feature("compactdefaultargs") AddArgument; %feature("autodoc", " Parameters @@ -3081,8 +3081,8 @@ Adds the argument for operation. ") AddArgument; void AddArgument(const TopoDS_Shape & theShape); - /****************** Arguments ******************/ - /**** md5 signature: 5c44416d889811943ccde89673d3c270 ****/ + /****** BOPAlgo_PaveFiller::Arguments ******/ + /****** md5 signature: 5c44416d889811943ccde89673d3c270 ******/ %feature("compactdefaultargs") Arguments; %feature("autodoc", "Return ------- @@ -3094,8 +3094,8 @@ Returns the list of arguments. ") Arguments; const TopTools_ListOfShape & Arguments(); - /****************** Context ******************/ - /**** md5 signature: 61a08d8ec3c36cb7537272ccd635f363 ****/ + /****** BOPAlgo_PaveFiller::Context ******/ + /****** md5 signature: 61a08d8ec3c36cb7537272ccd635f363 ******/ %feature("compactdefaultargs") Context; %feature("autodoc", "Return ------- @@ -3107,8 +3107,8 @@ No available documentation. ") Context; const opencascade::handle & Context(); - /****************** DS ******************/ - /**** md5 signature: 87987374a37a857a957303627823fdb1 ****/ + /****** BOPAlgo_PaveFiller::DS ******/ + /****** md5 signature: 87987374a37a857a957303627823fdb1 ******/ %feature("compactdefaultargs") DS; %feature("autodoc", "Return ------- @@ -3120,8 +3120,8 @@ No available documentation. ") DS; const BOPDS_DS & DS(); - /****************** Glue ******************/ - /**** md5 signature: 19ce0746754d61539c274454d7b6b9dd ****/ + /****** BOPAlgo_PaveFiller::Glue ******/ + /****** md5 signature: 19ce0746754d61539c274454d7b6b9dd ******/ %feature("compactdefaultargs") Glue; %feature("autodoc", "Return ------- @@ -3133,8 +3133,8 @@ Returns the glue option of the algorithm. ") Glue; BOPAlgo_GlueEnum Glue(); - /****************** IsAvoidBuildPCurve ******************/ - /**** md5 signature: 99defd1abf1a714ec45f36a73ab8e479 ****/ + /****** BOPAlgo_PaveFiller::IsAvoidBuildPCurve ******/ + /****** md5 signature: 99defd1abf1a714ec45f36a73ab8e479 ******/ %feature("compactdefaultargs") IsAvoidBuildPCurve; %feature("autodoc", "Return ------- @@ -3146,8 +3146,8 @@ Returns the flag to avoid building of p-curves of edges on faces. ") IsAvoidBuildPCurve; Standard_Boolean IsAvoidBuildPCurve(); - /****************** NonDestructive ******************/ - /**** md5 signature: a86af6798e7fda924d6a75c2fa9ebb4e ****/ + /****** BOPAlgo_PaveFiller::NonDestructive ******/ + /****** md5 signature: a86af6798e7fda924d6a75c2fa9ebb4e ******/ %feature("compactdefaultargs") NonDestructive; %feature("autodoc", "Return ------- @@ -3159,8 +3159,8 @@ Returns the flag that defines the mode of treatment. in non-destructive mode the ") NonDestructive; Standard_Boolean NonDestructive(); - /****************** PDS ******************/ - /**** md5 signature: 420dd37c2c265b3b9f0a2eefd4b48c5a ****/ + /****** BOPAlgo_PaveFiller::PDS ******/ + /****** md5 signature: 420dd37c2c265b3b9f0a2eefd4b48c5a ******/ %feature("compactdefaultargs") PDS; %feature("autodoc", "Return ------- @@ -3172,8 +3172,8 @@ No available documentation. ") PDS; BOPDS_PDS PDS(); - /****************** Perform ******************/ - /**** md5 signature: 0c284a2ff880da6562c1121fb4e216b7 ****/ + /****** BOPAlgo_PaveFiller::Perform ******/ + /****** md5 signature: 0c284a2ff880da6562c1121fb4e216b7 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -3190,8 +3190,8 @@ No available documentation. ") Perform; virtual void Perform(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** SetArguments ******************/ - /**** md5 signature: c8050caf960534f7d5c8a2cd210eb861 ****/ + /****** BOPAlgo_PaveFiller::SetArguments ******/ + /****** md5 signature: c8050caf960534f7d5c8a2cd210eb861 ******/ %feature("compactdefaultargs") SetArguments; %feature("autodoc", " Parameters @@ -3208,8 +3208,8 @@ Sets the arguments for operation. ") SetArguments; void SetArguments(const TopTools_ListOfShape & theLS); - /****************** SetAvoidBuildPCurve ******************/ - /**** md5 signature: c3a78bac52d326c32b1cabef045578ae ****/ + /****** BOPAlgo_PaveFiller::SetAvoidBuildPCurve ******/ + /****** md5 signature: c3a78bac52d326c32b1cabef045578ae ******/ %feature("compactdefaultargs") SetAvoidBuildPCurve; %feature("autodoc", " Parameters @@ -3226,8 +3226,8 @@ Sets the flag to avoid building of p-curves of edges on faces. ") SetAvoidBuildPCurve; void SetAvoidBuildPCurve(const Standard_Boolean theValue); - /****************** SetGlue ******************/ - /**** md5 signature: 772d2dee7d8b078f8e12daf13dc476d6 ****/ + /****** BOPAlgo_PaveFiller::SetGlue ******/ + /****** md5 signature: 772d2dee7d8b078f8e12daf13dc476d6 ******/ %feature("compactdefaultargs") SetGlue; %feature("autodoc", " Parameters @@ -3244,8 +3244,8 @@ Sets the glue option for the algorithm. ") SetGlue; void SetGlue(const BOPAlgo_GlueEnum theGlue); - /****************** SetNonDestructive ******************/ - /**** md5 signature: a1a916959b0fbc23c0d8bd3935bb1670 ****/ + /****** BOPAlgo_PaveFiller::SetNonDestructive ******/ + /****** md5 signature: a1a916959b0fbc23c0d8bd3935bb1670 ******/ %feature("compactdefaultargs") SetNonDestructive; %feature("autodoc", " Parameters @@ -3262,8 +3262,8 @@ Sets the flag that defines the mode of treatment. in non-destructive mode the ar ") SetNonDestructive; void SetNonDestructive(const Standard_Boolean theFlag); - /****************** SetSectionAttribute ******************/ - /**** md5 signature: 2e1a6df4e17fe92b14ed2db288f2bebf ****/ + /****** BOPAlgo_PaveFiller::SetSectionAttribute ******/ + /****** md5 signature: 2e1a6df4e17fe92b14ed2db288f2bebf ******/ %feature("compactdefaultargs") SetSectionAttribute; %feature("autodoc", " Parameters @@ -3298,8 +3298,8 @@ No available documentation. ******************************/ class BOPAlgo_ShellSplitter : public BOPAlgo_Algo { public: - /****************** BOPAlgo_ShellSplitter ******************/ - /**** md5 signature: 1a413937e5bc85276cd970f7bd17f0e2 ****/ + /****** BOPAlgo_ShellSplitter::BOPAlgo_ShellSplitter ******/ + /****** md5 signature: 1a413937e5bc85276cd970f7bd17f0e2 ******/ %feature("compactdefaultargs") BOPAlgo_ShellSplitter; %feature("autodoc", "Return ------- @@ -3311,8 +3311,8 @@ Empty constructor. ") BOPAlgo_ShellSplitter; BOPAlgo_ShellSplitter(); - /****************** BOPAlgo_ShellSplitter ******************/ - /**** md5 signature: e293806183c127a6994ca543539a4ca7 ****/ + /****** BOPAlgo_ShellSplitter::BOPAlgo_ShellSplitter ******/ + /****** md5 signature: e293806183c127a6994ca543539a4ca7 ******/ %feature("compactdefaultargs") BOPAlgo_ShellSplitter; %feature("autodoc", " Parameters @@ -3329,8 +3329,8 @@ Constructor. ") BOPAlgo_ShellSplitter; BOPAlgo_ShellSplitter(const opencascade::handle & theAllocator); - /****************** AddStartElement ******************/ - /**** md5 signature: 1f9a6cd0dc44399d66b6c1516e84d023 ****/ + /****** BOPAlgo_ShellSplitter::AddStartElement ******/ + /****** md5 signature: 1f9a6cd0dc44399d66b6c1516e84d023 ******/ %feature("compactdefaultargs") AddStartElement; %feature("autodoc", " Parameters @@ -3347,8 +3347,8 @@ Adds a face to process. ") AddStartElement; void AddStartElement(const TopoDS_Shape & theS); - /****************** Perform ******************/ - /**** md5 signature: 0c284a2ff880da6562c1121fb4e216b7 ****/ + /****** BOPAlgo_ShellSplitter::Perform ******/ + /****** md5 signature: 0c284a2ff880da6562c1121fb4e216b7 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -3365,8 +3365,8 @@ Performs the algorithm. ") Perform; virtual void Perform(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Shells ******************/ - /**** md5 signature: 253534f051afc8c1348ee153669d53c1 ****/ + /****** BOPAlgo_ShellSplitter::Shells ******/ + /****** md5 signature: 253534f051afc8c1348ee153669d53c1 ******/ %feature("compactdefaultargs") Shells; %feature("autodoc", "Return ------- @@ -3378,8 +3378,8 @@ Returns the loops. ") Shells; const TopTools_ListOfShape & Shells(); - /****************** SplitBlock ******************/ - /**** md5 signature: b4a3a42e521935db4e11e49c5e4189a8 ****/ + /****** BOPAlgo_ShellSplitter::SplitBlock ******/ + /****** md5 signature: b4a3a42e521935db4e11e49c5e4189a8 ******/ %feature("compactdefaultargs") SplitBlock; %feature("autodoc", " Parameters @@ -3396,8 +3396,8 @@ No available documentation. ") SplitBlock; static void SplitBlock(BOPTools_ConnexityBlock & theCB); - /****************** StartElements ******************/ - /**** md5 signature: 4df71127781e1f235af21a1e6e23cfbe ****/ + /****** BOPAlgo_ShellSplitter::StartElements ******/ + /****** md5 signature: 4df71127781e1f235af21a1e6e23cfbe ******/ %feature("compactdefaultargs") StartElements; %feature("autodoc", "Return ------- @@ -3423,8 +3423,8 @@ Return the faces to process. *****************************/ class BOPAlgo_WireSplitter : public BOPAlgo_Algo { public: - /****************** BOPAlgo_WireSplitter ******************/ - /**** md5 signature: 94705b115e84b6538c1dd87e9bd7d242 ****/ + /****** BOPAlgo_WireSplitter::BOPAlgo_WireSplitter ******/ + /****** md5 signature: 94705b115e84b6538c1dd87e9bd7d242 ******/ %feature("compactdefaultargs") BOPAlgo_WireSplitter; %feature("autodoc", "Return ------- @@ -3436,8 +3436,8 @@ No available documentation. ") BOPAlgo_WireSplitter; BOPAlgo_WireSplitter(); - /****************** BOPAlgo_WireSplitter ******************/ - /**** md5 signature: 7507f32d0dff651fc083ad87f3b26067 ****/ + /****** BOPAlgo_WireSplitter::BOPAlgo_WireSplitter ******/ + /****** md5 signature: 7507f32d0dff651fc083ad87f3b26067 ******/ %feature("compactdefaultargs") BOPAlgo_WireSplitter; %feature("autodoc", " Parameters @@ -3454,8 +3454,8 @@ No available documentation. ") BOPAlgo_WireSplitter; BOPAlgo_WireSplitter(const opencascade::handle & theAllocator); - /****************** Context ******************/ - /**** md5 signature: 61a08d8ec3c36cb7537272ccd635f363 ****/ + /****** BOPAlgo_WireSplitter::Context ******/ + /****** md5 signature: 61a08d8ec3c36cb7537272ccd635f363 ******/ %feature("compactdefaultargs") Context; %feature("autodoc", "Return ------- @@ -3467,8 +3467,8 @@ Returns the context. ") Context; const opencascade::handle & Context(); - /****************** MakeWire ******************/ - /**** md5 signature: 1f818413cf336ccce6872fc306458e7d ****/ + /****** BOPAlgo_WireSplitter::MakeWire ******/ + /****** md5 signature: 1f818413cf336ccce6872fc306458e7d ******/ %feature("compactdefaultargs") MakeWire; %feature("autodoc", " Parameters @@ -3486,8 +3486,8 @@ No available documentation. ") MakeWire; static void MakeWire(TopTools_ListOfShape & theLE, TopoDS_Wire & theW); - /****************** Perform ******************/ - /**** md5 signature: 0c284a2ff880da6562c1121fb4e216b7 ****/ + /****** BOPAlgo_WireSplitter::Perform ******/ + /****** md5 signature: 0c284a2ff880da6562c1121fb4e216b7 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -3504,8 +3504,8 @@ No available documentation. ") Perform; virtual void Perform(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** SetContext ******************/ - /**** md5 signature: e78608a6b667b26dfbb5221975ad17a2 ****/ + /****** BOPAlgo_WireSplitter::SetContext ******/ + /****** md5 signature: e78608a6b667b26dfbb5221975ad17a2 ******/ %feature("compactdefaultargs") SetContext; %feature("autodoc", " Parameters @@ -3522,8 +3522,8 @@ Sets the context for the algorithm. ") SetContext; void SetContext(const opencascade::handle & theContext); - /****************** SetWES ******************/ - /**** md5 signature: 8b89b7efde21e917d2d2fc92a5fcb271 ****/ + /****** BOPAlgo_WireSplitter::SetWES ******/ + /****** md5 signature: 8b89b7efde21e917d2d2fc92a5fcb271 ******/ %feature("compactdefaultargs") SetWES; %feature("autodoc", " Parameters @@ -3540,8 +3540,8 @@ No available documentation. ") SetWES; void SetWES(const BOPAlgo_WireEdgeSet & theWES); - /****************** SplitBlock ******************/ - /**** md5 signature: de0aea84749b1e20f54d75f31ecf8114 ****/ + /****** BOPAlgo_WireSplitter::SplitBlock ******/ + /****** md5 signature: de0aea84749b1e20f54d75f31ecf8114 ******/ %feature("compactdefaultargs") SplitBlock; %feature("autodoc", " Parameters @@ -3560,8 +3560,8 @@ No available documentation. ") SplitBlock; static void SplitBlock(const TopoDS_Face & theF, BOPTools_ConnexityBlock & theCB, const opencascade::handle & theContext); - /****************** WES ******************/ - /**** md5 signature: 58e5fd1cf4257111802b170e6fd95635 ****/ + /****** BOPAlgo_WireSplitter::WES ******/ + /****** md5 signature: 58e5fd1cf4257111802b170e6fd95635 ******/ %feature("compactdefaultargs") WES; %feature("autodoc", "Return ------- @@ -3588,8 +3588,8 @@ No available documentation. class BOPAlgo_Builder : public BOPAlgo_BuilderShape { public: class NbShapes {}; - /****************** BOPAlgo_Builder ******************/ - /**** md5 signature: 1f86d9941e9ea86a4622ff7ec326d7fc ****/ + /****** BOPAlgo_Builder::BOPAlgo_Builder ******/ + /****** md5 signature: 1f86d9941e9ea86a4622ff7ec326d7fc ******/ %feature("compactdefaultargs") BOPAlgo_Builder; %feature("autodoc", "Return ------- @@ -3601,8 +3601,8 @@ Empty constructor. ") BOPAlgo_Builder; BOPAlgo_Builder(); - /****************** BOPAlgo_Builder ******************/ - /**** md5 signature: f3353a4fea36ad4c50e43eda587bd535 ****/ + /****** BOPAlgo_Builder::BOPAlgo_Builder ******/ + /****** md5 signature: f3353a4fea36ad4c50e43eda587bd535 ******/ %feature("compactdefaultargs") BOPAlgo_Builder; %feature("autodoc", " Parameters @@ -3619,8 +3619,8 @@ No available documentation. ") BOPAlgo_Builder; BOPAlgo_Builder(const opencascade::handle & theAllocator); - /****************** AddArgument ******************/ - /**** md5 signature: 60c2b0316a67e93c3535a28f84d56231 ****/ + /****** BOPAlgo_Builder::AddArgument ******/ + /****** md5 signature: 60c2b0316a67e93c3535a28f84d56231 ******/ %feature("compactdefaultargs") AddArgument; %feature("autodoc", " Parameters @@ -3637,8 +3637,8 @@ Adds the argument to the operation. ") AddArgument; virtual void AddArgument(const TopoDS_Shape & theShape); - /****************** Arguments ******************/ - /**** md5 signature: 5c44416d889811943ccde89673d3c270 ****/ + /****** BOPAlgo_Builder::Arguments ******/ + /****** md5 signature: 5c44416d889811943ccde89673d3c270 ******/ %feature("compactdefaultargs") Arguments; %feature("autodoc", "Return ------- @@ -3650,8 +3650,8 @@ Returns the list of arguments. ") Arguments; const TopTools_ListOfShape & Arguments(); - /****************** BuildBOP ******************/ - /**** md5 signature: 2e1b9ea27d66f788b2416af1e795c40a ****/ + /****** BOPAlgo_Builder::BuildBOP ******/ + /****** md5 signature: 2e1b9ea27d66f788b2416af1e795c40a ******/ %feature("compactdefaultargs") BuildBOP; %feature("autodoc", " Parameters @@ -3673,8 +3673,8 @@ Builds the result shape according to the given states for the objects and tools. ") BuildBOP; virtual void BuildBOP(const TopTools_ListOfShape & theObjects, const TopAbs_State theObjState, const TopTools_ListOfShape & theTools, const TopAbs_State theToolsState, const Message_ProgressRange & theRange, opencascade::handle theReport = NULL); - /****************** BuildBOP ******************/ - /**** md5 signature: 18c5ea0ce9eb413167db72fc87c235d6 ****/ + /****** BOPAlgo_Builder::BuildBOP ******/ + /****** md5 signature: 18c5ea0ce9eb413167db72fc87c235d6 ******/ %feature("compactdefaultargs") BuildBOP; %feature("autodoc", " Parameters @@ -3695,8 +3695,8 @@ Builds the result of boolean operation of given type basing on the result of bui ") BuildBOP; void BuildBOP(const TopTools_ListOfShape & theObjects, const TopTools_ListOfShape & theTools, const BOPAlgo_Operation theOperation, const Message_ProgressRange & theRange, opencascade::handle theReport = NULL); - /****************** CheckInverted ******************/ - /**** md5 signature: ce3c18df15bc3282101b99ee82f78b47 ****/ + /****** BOPAlgo_Builder::CheckInverted ******/ + /****** md5 signature: ce3c18df15bc3282101b99ee82f78b47 ******/ %feature("compactdefaultargs") CheckInverted; %feature("autodoc", "Return ------- @@ -3708,8 +3708,8 @@ Returns the flag defining whether the check for input solids on inverted status ") CheckInverted; Standard_Boolean CheckInverted(); - /****************** Clear ******************/ - /**** md5 signature: f671931d03948860d0ead34afbe920aa ****/ + /****** BOPAlgo_Builder::Clear ******/ + /****** md5 signature: f671931d03948860d0ead34afbe920aa ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -3721,8 +3721,8 @@ Clears the content of the algorithm. ") Clear; virtual void Clear(); - /****************** Context ******************/ - /**** md5 signature: 74fb770c962675c4ccf80c755850043b ****/ + /****** BOPAlgo_Builder::Context ******/ + /****** md5 signature: 74fb770c962675c4ccf80c755850043b ******/ %feature("compactdefaultargs") Context; %feature("autodoc", "Return ------- @@ -3734,8 +3734,8 @@ Returns the context, tool for cashing heavy algorithms. ") Context; opencascade::handle Context(); - /****************** Glue ******************/ - /**** md5 signature: 2a0ac34b43f154dd0238ac1408d9079b ****/ + /****** BOPAlgo_Builder::Glue ******/ + /****** md5 signature: 2a0ac34b43f154dd0238ac1408d9079b ******/ %feature("compactdefaultargs") Glue; %feature("autodoc", "Return ------- @@ -3747,8 +3747,8 @@ Returns the glue option of the algorithm. ") Glue; BOPAlgo_GlueEnum Glue(); - /****************** Images ******************/ - /**** md5 signature: b5e41f40108249a88217f4fca2899406 ****/ + /****** BOPAlgo_Builder::Images ******/ + /****** md5 signature: b5e41f40108249a88217f4fca2899406 ******/ %feature("compactdefaultargs") Images; %feature("autodoc", "Return ------- @@ -3760,8 +3760,8 @@ Returns the map of images. ") Images; const TopTools_DataMapOfShapeListOfShape & Images(); - /****************** NonDestructive ******************/ - /**** md5 signature: debf4165891df54bd9a565d235f0d378 ****/ + /****** BOPAlgo_Builder::NonDestructive ******/ + /****** md5 signature: debf4165891df54bd9a565d235f0d378 ******/ %feature("compactdefaultargs") NonDestructive; %feature("autodoc", "Return ------- @@ -3773,8 +3773,8 @@ Returns the flag that defines the mode of treatment. in non-destructive mode the ") NonDestructive; Standard_Boolean NonDestructive(); - /****************** Origins ******************/ - /**** md5 signature: af47018f396466f88e1f40a1e0dda823 ****/ + /****** BOPAlgo_Builder::Origins ******/ + /****** md5 signature: af47018f396466f88e1f40a1e0dda823 ******/ %feature("compactdefaultargs") Origins; %feature("autodoc", "Return ------- @@ -3786,8 +3786,8 @@ Returns the map of origins. ") Origins; const TopTools_DataMapOfShapeListOfShape & Origins(); - /****************** PDS ******************/ - /**** md5 signature: a30b9b6ee088c51b53e93ae172dde611 ****/ + /****** BOPAlgo_Builder::PDS ******/ + /****** md5 signature: a30b9b6ee088c51b53e93ae172dde611 ******/ %feature("compactdefaultargs") PDS; %feature("autodoc", "Return ------- @@ -3799,8 +3799,8 @@ Returns the data structure, holder of intersection information. ") PDS; BOPDS_PDS PDS(); - /****************** PPaveFiller ******************/ - /**** md5 signature: b4431f105883f2fda078ca3da828ad49 ****/ + /****** BOPAlgo_Builder::PPaveFiller ******/ + /****** md5 signature: b4431f105883f2fda078ca3da828ad49 ******/ %feature("compactdefaultargs") PPaveFiller; %feature("autodoc", "Return ------- @@ -3812,8 +3812,8 @@ Returns the pavefiller, algorithm for sub-shapes intersection. ") PPaveFiller; BOPAlgo_PPaveFiller PPaveFiller(); - /****************** Perform ******************/ - /**** md5 signature: 0c284a2ff880da6562c1121fb4e216b7 ****/ + /****** BOPAlgo_Builder::Perform ******/ + /****** md5 signature: 0c284a2ff880da6562c1121fb4e216b7 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -3830,8 +3830,8 @@ Performs the operation. the intersection will be performed also. ") Perform; virtual void Perform(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** PerformWithFiller ******************/ - /**** md5 signature: dcd0b26cc1d80352d6565f05cc10fd51 ****/ + /****** BOPAlgo_Builder::PerformWithFiller ******/ + /****** md5 signature: dcd0b26cc1d80352d6565f05cc10fd51 ******/ %feature("compactdefaultargs") PerformWithFiller; %feature("autodoc", " Parameters @@ -3849,8 +3849,8 @@ Performs the operation with the prepared filler. the intersection will not be pe ") PerformWithFiller; virtual void PerformWithFiller(const BOPAlgo_PaveFiller & theFiller, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** SetArguments ******************/ - /**** md5 signature: 52d846757af37684f5519c7b7f1b4940 ****/ + /****** BOPAlgo_Builder::SetArguments ******/ + /****** md5 signature: 52d846757af37684f5519c7b7f1b4940 ******/ %feature("compactdefaultargs") SetArguments; %feature("autodoc", " Parameters @@ -3867,8 +3867,8 @@ Sets the list of arguments for the operation. ") SetArguments; virtual void SetArguments(const TopTools_ListOfShape & theLS); - /****************** SetCheckInverted ******************/ - /**** md5 signature: 9645001f4ab756df382f60cfc76654bc ****/ + /****** BOPAlgo_Builder::SetCheckInverted ******/ + /****** md5 signature: 9645001f4ab756df382f60cfc76654bc ******/ %feature("compactdefaultargs") SetCheckInverted; %feature("autodoc", " Parameters @@ -3885,8 +3885,8 @@ Enables/disables the check of the input solids for inverted status. ") SetCheckInverted; void SetCheckInverted(const Standard_Boolean theCheck); - /****************** SetGlue ******************/ - /**** md5 signature: bae09c43d6b988a5d7d19b6376a5aa05 ****/ + /****** BOPAlgo_Builder::SetGlue ******/ + /****** md5 signature: bae09c43d6b988a5d7d19b6376a5aa05 ******/ %feature("compactdefaultargs") SetGlue; %feature("autodoc", " Parameters @@ -3903,8 +3903,8 @@ Sets the glue option for the algorithm. ") SetGlue; void SetGlue(const BOPAlgo_GlueEnum theGlue); - /****************** SetNonDestructive ******************/ - /**** md5 signature: 0a29c6536a8337536ce71b892337fbbb ****/ + /****** BOPAlgo_Builder::SetNonDestructive ******/ + /****** md5 signature: 0a29c6536a8337536ce71b892337fbbb ******/ %feature("compactdefaultargs") SetNonDestructive; %feature("autodoc", " Parameters @@ -3921,8 +3921,8 @@ Sets the flag that defines the mode of treatment. in non-destructive mode the ar ") SetNonDestructive; void SetNonDestructive(const Standard_Boolean theFlag); - /****************** ShapesSD ******************/ - /**** md5 signature: b1456fb65b85afaf3fe4896e268be23e ****/ + /****** BOPAlgo_Builder::ShapesSD ******/ + /****** md5 signature: b1456fb65b85afaf3fe4896e268be23e ******/ %feature("compactdefaultargs") ShapesSD; %feature("autodoc", "Return ------- @@ -3948,8 +3948,8 @@ Returns the map of same domain (sd) shapes - coinciding shapes from different ar ****************************/ class BOPAlgo_BuilderFace : public BOPAlgo_BuilderArea { public: - /****************** BOPAlgo_BuilderFace ******************/ - /**** md5 signature: 55fb0e9f8f896e5e2f0cad2dee0ad4b9 ****/ + /****** BOPAlgo_BuilderFace::BOPAlgo_BuilderFace ******/ + /****** md5 signature: 55fb0e9f8f896e5e2f0cad2dee0ad4b9 ******/ %feature("compactdefaultargs") BOPAlgo_BuilderFace; %feature("autodoc", "Return ------- @@ -3961,8 +3961,8 @@ No available documentation. ") BOPAlgo_BuilderFace; BOPAlgo_BuilderFace(); - /****************** BOPAlgo_BuilderFace ******************/ - /**** md5 signature: b5c457f566a0d6c73144f78202d49cab ****/ + /****** BOPAlgo_BuilderFace::BOPAlgo_BuilderFace ******/ + /****** md5 signature: b5c457f566a0d6c73144f78202d49cab ******/ %feature("compactdefaultargs") BOPAlgo_BuilderFace; %feature("autodoc", " Parameters @@ -3979,8 +3979,8 @@ No available documentation. ") BOPAlgo_BuilderFace; BOPAlgo_BuilderFace(const opencascade::handle & theAllocator); - /****************** Face ******************/ - /**** md5 signature: 91e216ebeb76e55c73eb9e179241a6ff ****/ + /****** BOPAlgo_BuilderFace::Face ******/ + /****** md5 signature: 91e216ebeb76e55c73eb9e179241a6ff ******/ %feature("compactdefaultargs") Face; %feature("autodoc", "Return ------- @@ -3992,8 +3992,8 @@ Returns the face generatix. ") Face; const TopoDS_Face Face(); - /****************** Orientation ******************/ - /**** md5 signature: 328242fe19b1f80489d8169681ebc029 ****/ + /****** BOPAlgo_BuilderFace::Orientation ******/ + /****** md5 signature: 328242fe19b1f80489d8169681ebc029 ******/ %feature("compactdefaultargs") Orientation; %feature("autodoc", "Return ------- @@ -4005,8 +4005,8 @@ No available documentation. ") Orientation; TopAbs_Orientation Orientation(); - /****************** Perform ******************/ - /**** md5 signature: 0c284a2ff880da6562c1121fb4e216b7 ****/ + /****** BOPAlgo_BuilderFace::Perform ******/ + /****** md5 signature: 0c284a2ff880da6562c1121fb4e216b7 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -4023,8 +4023,8 @@ Performs the algorithm. ") Perform; virtual void Perform(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** SetFace ******************/ - /**** md5 signature: 5b74a256c8032110740067b9210114f8 ****/ + /****** BOPAlgo_BuilderFace::SetFace ******/ + /****** md5 signature: 5b74a256c8032110740067b9210114f8 ******/ %feature("compactdefaultargs") SetFace; %feature("autodoc", " Parameters @@ -4055,8 +4055,8 @@ Sets the face generatix. *****************************/ class BOPAlgo_BuilderSolid : public BOPAlgo_BuilderArea { public: - /****************** BOPAlgo_BuilderSolid ******************/ - /**** md5 signature: 3207f4476326a857182303f4e535631e ****/ + /****** BOPAlgo_BuilderSolid::BOPAlgo_BuilderSolid ******/ + /****** md5 signature: 3207f4476326a857182303f4e535631e ******/ %feature("compactdefaultargs") BOPAlgo_BuilderSolid; %feature("autodoc", "Return ------- @@ -4068,8 +4068,8 @@ Empty constructor. ") BOPAlgo_BuilderSolid; BOPAlgo_BuilderSolid(); - /****************** BOPAlgo_BuilderSolid ******************/ - /**** md5 signature: ffc0a313e87b14e1192559b5a26c6ac8 ****/ + /****** BOPAlgo_BuilderSolid::BOPAlgo_BuilderSolid ******/ + /****** md5 signature: ffc0a313e87b14e1192559b5a26c6ac8 ******/ %feature("compactdefaultargs") BOPAlgo_BuilderSolid; %feature("autodoc", " Parameters @@ -4086,8 +4086,8 @@ Constructor with allocator. ") BOPAlgo_BuilderSolid; BOPAlgo_BuilderSolid(const opencascade::handle & theAllocator); - /****************** GetBoxesMap ******************/ - /**** md5 signature: a5a9e80370b6f3886c3433f1fcf548da ****/ + /****** BOPAlgo_BuilderSolid::GetBoxesMap ******/ + /****** md5 signature: a5a9e80370b6f3886c3433f1fcf548da ******/ %feature("compactdefaultargs") GetBoxesMap; %feature("autodoc", "Return ------- @@ -4099,8 +4099,8 @@ For classification purposes the algorithm builds the bounding boxes for all crea ") GetBoxesMap; const TopTools_DataMapOfShapeBox & GetBoxesMap(); - /****************** Perform ******************/ - /**** md5 signature: 0c284a2ff880da6562c1121fb4e216b7 ****/ + /****** BOPAlgo_BuilderSolid::Perform ******/ + /****** md5 signature: 0c284a2ff880da6562c1121fb4e216b7 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -4131,8 +4131,8 @@ Performs the construction of the solids from the given faces. **************************/ class BOPAlgo_CheckerSI : public BOPAlgo_PaveFiller { public: - /****************** BOPAlgo_CheckerSI ******************/ - /**** md5 signature: 4509a2dedfaae61b75002e38bf4839ca ****/ + /****** BOPAlgo_CheckerSI::BOPAlgo_CheckerSI ******/ + /****** md5 signature: 4509a2dedfaae61b75002e38bf4839ca ******/ %feature("compactdefaultargs") BOPAlgo_CheckerSI; %feature("autodoc", "Return ------- @@ -4144,8 +4144,8 @@ No available documentation. ") BOPAlgo_CheckerSI; BOPAlgo_CheckerSI(); - /****************** Perform ******************/ - /**** md5 signature: 0c284a2ff880da6562c1121fb4e216b7 ****/ + /****** BOPAlgo_CheckerSI::Perform ******/ + /****** md5 signature: 0c284a2ff880da6562c1121fb4e216b7 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -4162,8 +4162,8 @@ No available documentation. ") Perform; virtual void Perform(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** SetLevelOfCheck ******************/ - /**** md5 signature: 8b368cd9515ac3e41d12f4691644e2cf ****/ + /****** BOPAlgo_CheckerSI::SetLevelOfCheck ******/ + /****** md5 signature: 8b368cd9515ac3e41d12f4691644e2cf ******/ %feature("compactdefaultargs") SetLevelOfCheck; %feature("autodoc", " Parameters @@ -4194,8 +4194,8 @@ Sets the level of checking shape on self-interference. it defines which interfer *******************************/ class BOPAlgo_RemoveFeatures : public BOPAlgo_BuilderShape { public: - /****************** BOPAlgo_RemoveFeatures ******************/ - /**** md5 signature: 7b50bf592dac62efc3164c9eb9f4d77d ****/ + /****** BOPAlgo_RemoveFeatures::BOPAlgo_RemoveFeatures ******/ + /****** md5 signature: 7b50bf592dac62efc3164c9eb9f4d77d ******/ %feature("compactdefaultargs") BOPAlgo_RemoveFeatures; %feature("autodoc", "Return ------- @@ -4207,8 +4207,8 @@ Empty constructor. ") BOPAlgo_RemoveFeatures; BOPAlgo_RemoveFeatures(); - /****************** AddFaceToRemove ******************/ - /**** md5 signature: 26c9409a587f43491552f28dbeb97ed4 ****/ + /****** BOPAlgo_RemoveFeatures::AddFaceToRemove ******/ + /****** md5 signature: 26c9409a587f43491552f28dbeb97ed4 ******/ %feature("compactdefaultargs") AddFaceToRemove; %feature("autodoc", " Parameters @@ -4225,8 +4225,8 @@ Adds the face to remove from the input shape. @param theface [in] the shape to e ") AddFaceToRemove; void AddFaceToRemove(const TopoDS_Shape & theFace); - /****************** AddFacesToRemove ******************/ - /**** md5 signature: de6da71dc89a49bec36f3c8a28a2c6dd ****/ + /****** BOPAlgo_RemoveFeatures::AddFacesToRemove ******/ + /****** md5 signature: de6da71dc89a49bec36f3c8a28a2c6dd ******/ %feature("compactdefaultargs") AddFacesToRemove; %feature("autodoc", " Parameters @@ -4243,8 +4243,8 @@ Adds the faces to remove from the input shape. @param thefaces [in] the list of ") AddFacesToRemove; void AddFacesToRemove(const TopTools_ListOfShape & theFaces); - /****************** Clear ******************/ - /**** md5 signature: aed78bc7ea4fdcb55502fff982e7b775 ****/ + /****** BOPAlgo_RemoveFeatures::Clear ******/ + /****** md5 signature: aed78bc7ea4fdcb55502fff982e7b775 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -4256,8 +4256,8 @@ Clears the contents of the algorithm from previous run, allowing reusing it for ") Clear; virtual void Clear(); - /****************** FacesToRemove ******************/ - /**** md5 signature: 947971dfb74df8135dc7f7ce60eaaa90 ****/ + /****** BOPAlgo_RemoveFeatures::FacesToRemove ******/ + /****** md5 signature: 947971dfb74df8135dc7f7ce60eaaa90 ******/ %feature("compactdefaultargs") FacesToRemove; %feature("autodoc", "Return ------- @@ -4269,8 +4269,8 @@ Returns the list of faces which have been requested for removal from the input s ") FacesToRemove; const TopTools_ListOfShape & FacesToRemove(); - /****************** InputShape ******************/ - /**** md5 signature: c0c04276bd1d5989adf5070d423aadb7 ****/ + /****** BOPAlgo_RemoveFeatures::InputShape ******/ + /****** md5 signature: c0c04276bd1d5989adf5070d423aadb7 ******/ %feature("compactdefaultargs") InputShape; %feature("autodoc", "Return ------- @@ -4282,8 +4282,8 @@ Returns the input shape. ") InputShape; const TopoDS_Shape InputShape(); - /****************** Perform ******************/ - /**** md5 signature: 0c284a2ff880da6562c1121fb4e216b7 ****/ + /****** BOPAlgo_RemoveFeatures::Perform ******/ + /****** md5 signature: 0c284a2ff880da6562c1121fb4e216b7 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -4300,8 +4300,8 @@ Performs the operation. ") Perform; virtual void Perform(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** SetShape ******************/ - /**** md5 signature: 927e2ebe2fb5354dfb3da3c53e512cad ****/ + /****** BOPAlgo_RemoveFeatures::SetShape ******/ + /****** md5 signature: 927e2ebe2fb5354dfb3da3c53e512cad ******/ %feature("compactdefaultargs") SetShape; %feature("autodoc", " Parameters @@ -4332,8 +4332,8 @@ Sets the shape for processing. @param theshape [in] the shape to remove the face *****************************/ class BOPAlgo_CellsBuilder : public BOPAlgo_Builder { public: - /****************** BOPAlgo_CellsBuilder ******************/ - /**** md5 signature: 283c387ed79b57aa716daf623c73a380 ****/ + /****** BOPAlgo_CellsBuilder::BOPAlgo_CellsBuilder ******/ + /****** md5 signature: 283c387ed79b57aa716daf623c73a380 ******/ %feature("compactdefaultargs") BOPAlgo_CellsBuilder; %feature("autodoc", "Return ------- @@ -4345,8 +4345,8 @@ No available documentation. ") BOPAlgo_CellsBuilder; BOPAlgo_CellsBuilder(); - /****************** BOPAlgo_CellsBuilder ******************/ - /**** md5 signature: 0c9a50e5a44f35e9ea990d6dd2e2c069 ****/ + /****** BOPAlgo_CellsBuilder::BOPAlgo_CellsBuilder ******/ + /****** md5 signature: 0c9a50e5a44f35e9ea990d6dd2e2c069 ******/ %feature("compactdefaultargs") BOPAlgo_CellsBuilder; %feature("autodoc", " Parameters @@ -4363,8 +4363,8 @@ No available documentation. ") BOPAlgo_CellsBuilder; BOPAlgo_CellsBuilder(const opencascade::handle & theAllocator); - /****************** AddAllToResult ******************/ - /**** md5 signature: 58f1f9632579501c71d617e8b3be70df ****/ + /****** BOPAlgo_CellsBuilder::AddAllToResult ******/ + /****** md5 signature: 58f1f9632579501c71d617e8b3be70df ******/ %feature("compactdefaultargs") AddAllToResult; %feature("autodoc", " Parameters @@ -4382,8 +4382,8 @@ Add all split parts to result. defines the removal of internal bou ") AddAllToResult; void AddAllToResult(const Standard_Integer theMaterial = 0, const Standard_Boolean theUpdate = Standard_False); - /****************** AddToResult ******************/ - /**** md5 signature: 078f78bbeb3b4b698240216e4af3918a ****/ + /****** BOPAlgo_CellsBuilder::AddToResult ******/ + /****** md5 signature: 078f78bbeb3b4b698240216e4af3918a ******/ %feature("compactdefaultargs") AddToResult; %feature("autodoc", " Parameters @@ -4403,8 +4403,8 @@ Adding the parts to result. the parts are defined by two lists of shapes: & theAllocator); - /****************** Box ******************/ - /**** md5 signature: 3ac56b24f6371ebc9df716c917fc390f ****/ + /****** BOPAlgo_MakerVolume::Box ******/ + /****** md5 signature: 3ac56b24f6371ebc9df716c917fc390f ******/ %feature("compactdefaultargs") Box; %feature("autodoc", "Return ------- @@ -4545,8 +4545,8 @@ Returns the solid box . ") Box; const TopoDS_Solid Box(); - /****************** Clear ******************/ - /**** md5 signature: f671931d03948860d0ead34afbe920aa ****/ + /****** BOPAlgo_MakerVolume::Clear ******/ + /****** md5 signature: f671931d03948860d0ead34afbe920aa ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -4558,8 +4558,8 @@ Clears the data. ") Clear; virtual void Clear(); - /****************** Faces ******************/ - /**** md5 signature: 9c2557bb3fea1d1ff5791937fe36a2f5 ****/ + /****** BOPAlgo_MakerVolume::Faces ******/ + /****** md5 signature: 9c2557bb3fea1d1ff5791937fe36a2f5 ******/ %feature("compactdefaultargs") Faces; %feature("autodoc", "Return ------- @@ -4571,8 +4571,8 @@ Returns the processed faces . ") Faces; const TopTools_ListOfShape & Faces(); - /****************** IsAvoidInternalShapes ******************/ - /**** md5 signature: 8a7b9501581d682ae84b1516b6d067be ****/ + /****** BOPAlgo_MakerVolume::IsAvoidInternalShapes ******/ + /****** md5 signature: 8a7b9501581d682ae84b1516b6d067be ******/ %feature("compactdefaultargs") IsAvoidInternalShapes; %feature("autodoc", "Return ------- @@ -4584,8 +4584,8 @@ Returns the avoidinternalshapes flag. ") IsAvoidInternalShapes; Standard_Boolean IsAvoidInternalShapes(); - /****************** IsIntersect ******************/ - /**** md5 signature: 83079d7138bb957f3b50f76e715d483c ****/ + /****** BOPAlgo_MakerVolume::IsIntersect ******/ + /****** md5 signature: 83079d7138bb957f3b50f76e715d483c ******/ %feature("compactdefaultargs") IsIntersect; %feature("autodoc", "Return ------- @@ -4597,8 +4597,8 @@ Returns the flag . ") IsIntersect; Standard_Boolean IsIntersect(); - /****************** Perform ******************/ - /**** md5 signature: 0c284a2ff880da6562c1121fb4e216b7 ****/ + /****** BOPAlgo_MakerVolume::Perform ******/ + /****** md5 signature: 0c284a2ff880da6562c1121fb4e216b7 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -4615,8 +4615,8 @@ Performs the operation. ") Perform; virtual void Perform(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** SetAvoidInternalShapes ******************/ - /**** md5 signature: d4ee80659b0195413556579790baf956 ****/ + /****** BOPAlgo_MakerVolume::SetAvoidInternalShapes ******/ + /****** md5 signature: d4ee80659b0195413556579790baf956 ******/ %feature("compactdefaultargs") SetAvoidInternalShapes; %feature("autodoc", " Parameters @@ -4633,8 +4633,8 @@ Defines the preventing of addition of internal for solid parts into the result. ") SetAvoidInternalShapes; void SetAvoidInternalShapes(const Standard_Boolean theAvoidInternal); - /****************** SetIntersect ******************/ - /**** md5 signature: 91f9f86d3d941824ec34eddc9329ee23 ****/ + /****** BOPAlgo_MakerVolume::SetIntersect ******/ + /****** md5 signature: 91f9f86d3d941824ec34eddc9329ee23 ******/ %feature("compactdefaultargs") SetIntersect; %feature("autodoc", " Parameters @@ -4665,8 +4665,8 @@ Sets the flag myintersect: if is true the shapes from ************************/ class BOPAlgo_Section : public BOPAlgo_Builder { public: - /****************** BOPAlgo_Section ******************/ - /**** md5 signature: a6ca4919a6cd1765268a1adceee00250 ****/ + /****** BOPAlgo_Section::BOPAlgo_Section ******/ + /****** md5 signature: a6ca4919a6cd1765268a1adceee00250 ******/ %feature("compactdefaultargs") BOPAlgo_Section; %feature("autodoc", "Return ------- @@ -4678,8 +4678,8 @@ Empty constructor. ") BOPAlgo_Section; BOPAlgo_Section(); - /****************** BOPAlgo_Section ******************/ - /**** md5 signature: 7d326de6218833e290f0512fe0e4cc7f ****/ + /****** BOPAlgo_Section::BOPAlgo_Section ******/ + /****** md5 signature: 7d326de6218833e290f0512fe0e4cc7f ******/ %feature("compactdefaultargs") BOPAlgo_Section; %feature("autodoc", " Parameters @@ -4710,8 +4710,8 @@ Constructor with allocator. ******************************/ class BOPAlgo_ToolsProvider : public BOPAlgo_Builder { public: - /****************** BOPAlgo_ToolsProvider ******************/ - /**** md5 signature: 6126476d277f9865fd5dc964255f5ab2 ****/ + /****** BOPAlgo_ToolsProvider::BOPAlgo_ToolsProvider ******/ + /****** md5 signature: 6126476d277f9865fd5dc964255f5ab2 ******/ %feature("compactdefaultargs") BOPAlgo_ToolsProvider; %feature("autodoc", "Return ------- @@ -4723,8 +4723,8 @@ Empty constructor. ") BOPAlgo_ToolsProvider; BOPAlgo_ToolsProvider(); - /****************** BOPAlgo_ToolsProvider ******************/ - /**** md5 signature: 6bb0db70c66244e0cce5fe43bf078d78 ****/ + /****** BOPAlgo_ToolsProvider::BOPAlgo_ToolsProvider ******/ + /****** md5 signature: 6bb0db70c66244e0cce5fe43bf078d78 ******/ %feature("compactdefaultargs") BOPAlgo_ToolsProvider; %feature("autodoc", " Parameters @@ -4741,8 +4741,8 @@ No available documentation. ") BOPAlgo_ToolsProvider; BOPAlgo_ToolsProvider(const opencascade::handle & theAllocator); - /****************** AddTool ******************/ - /**** md5 signature: 81f0977d7c049de98cc27f2491835535 ****/ + /****** BOPAlgo_ToolsProvider::AddTool ******/ + /****** md5 signature: 81f0977d7c049de98cc27f2491835535 ******/ %feature("compactdefaultargs") AddTool; %feature("autodoc", " Parameters @@ -4759,8 +4759,8 @@ Adds tool argument of the operation. ") AddTool; virtual void AddTool(const TopoDS_Shape & theShape); - /****************** Clear ******************/ - /**** md5 signature: f671931d03948860d0ead34afbe920aa ****/ + /****** BOPAlgo_ToolsProvider::Clear ******/ + /****** md5 signature: f671931d03948860d0ead34afbe920aa ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -4772,8 +4772,8 @@ Clears internal fields and arguments. ") Clear; virtual void Clear(); - /****************** SetTools ******************/ - /**** md5 signature: da6d08fc771172834027c4c3bf810697 ****/ + /****** BOPAlgo_ToolsProvider::SetTools ******/ + /****** md5 signature: da6d08fc771172834027c4c3bf810697 ******/ %feature("compactdefaultargs") SetTools; %feature("autodoc", " Parameters @@ -4790,8 +4790,8 @@ Adds the tool arguments of the operation. ") SetTools; virtual void SetTools(const TopTools_ListOfShape & theShapes); - /****************** Tools ******************/ - /**** md5 signature: 0471973aac274d4f863776957a65fd19 ****/ + /****** BOPAlgo_ToolsProvider::Tools ******/ + /****** md5 signature: 0471973aac274d4f863776957a65fd19 ******/ %feature("compactdefaultargs") Tools; %feature("autodoc", "Return ------- @@ -4817,8 +4817,8 @@ Returns the tool arguments of the operation. ********************/ class BOPAlgo_BOP : public BOPAlgo_ToolsProvider { public: - /****************** BOPAlgo_BOP ******************/ - /**** md5 signature: 4d357b2740befe8a8d360cc2e02f478c ****/ + /****** BOPAlgo_BOP::BOPAlgo_BOP ******/ + /****** md5 signature: 4d357b2740befe8a8d360cc2e02f478c ******/ %feature("compactdefaultargs") BOPAlgo_BOP; %feature("autodoc", "Return ------- @@ -4830,8 +4830,8 @@ Empty constructor. ") BOPAlgo_BOP; BOPAlgo_BOP(); - /****************** BOPAlgo_BOP ******************/ - /**** md5 signature: feb1029ccc5153f535a54dcb035cb288 ****/ + /****** BOPAlgo_BOP::BOPAlgo_BOP ******/ + /****** md5 signature: feb1029ccc5153f535a54dcb035cb288 ******/ %feature("compactdefaultargs") BOPAlgo_BOP; %feature("autodoc", " Parameters @@ -4848,8 +4848,8 @@ No available documentation. ") BOPAlgo_BOP; BOPAlgo_BOP(const opencascade::handle & theAllocator); - /****************** Clear ******************/ - /**** md5 signature: f671931d03948860d0ead34afbe920aa ****/ + /****** BOPAlgo_BOP::Clear ******/ + /****** md5 signature: f671931d03948860d0ead34afbe920aa ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -4861,8 +4861,8 @@ Clears internal fields and arguments. ") Clear; virtual void Clear(); - /****************** Operation ******************/ - /**** md5 signature: 53685d2081d3d3f1f66792b3367f7ed4 ****/ + /****** BOPAlgo_BOP::Operation ******/ + /****** md5 signature: 53685d2081d3d3f1f66792b3367f7ed4 ******/ %feature("compactdefaultargs") Operation; %feature("autodoc", "Return ------- @@ -4874,8 +4874,8 @@ No available documentation. ") Operation; BOPAlgo_Operation Operation(); - /****************** Perform ******************/ - /**** md5 signature: 0c284a2ff880da6562c1121fb4e216b7 ****/ + /****** BOPAlgo_BOP::Perform ******/ + /****** md5 signature: 0c284a2ff880da6562c1121fb4e216b7 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -4892,8 +4892,8 @@ No available documentation. ") Perform; virtual void Perform(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** SetOperation ******************/ - /**** md5 signature: 315e93f5dc046c73744bab20d8a0d13f ****/ + /****** BOPAlgo_BOP::SetOperation ******/ + /****** md5 signature: 315e93f5dc046c73744bab20d8a0d13f ******/ %feature("compactdefaultargs") SetOperation; %feature("autodoc", " Parameters @@ -4924,8 +4924,8 @@ No available documentation. *************************/ class BOPAlgo_Splitter : public BOPAlgo_ToolsProvider { public: - /****************** BOPAlgo_Splitter ******************/ - /**** md5 signature: 41a4c344ea1bf552096cf49314155d42 ****/ + /****** BOPAlgo_Splitter::BOPAlgo_Splitter ******/ + /****** md5 signature: 41a4c344ea1bf552096cf49314155d42 ******/ %feature("compactdefaultargs") BOPAlgo_Splitter; %feature("autodoc", "Return ------- @@ -4937,8 +4937,8 @@ Empty constructor. ") BOPAlgo_Splitter; BOPAlgo_Splitter(); - /****************** BOPAlgo_Splitter ******************/ - /**** md5 signature: 2c9575836a616bbcbb946e2ef6ad3a7a ****/ + /****** BOPAlgo_Splitter::BOPAlgo_Splitter ******/ + /****** md5 signature: 2c9575836a616bbcbb946e2ef6ad3a7a ******/ %feature("compactdefaultargs") BOPAlgo_Splitter; %feature("autodoc", " Parameters @@ -4955,8 +4955,8 @@ No available documentation. ") BOPAlgo_Splitter; BOPAlgo_Splitter(const opencascade::handle & theAllocator); - /****************** Perform ******************/ - /**** md5 signature: 0c284a2ff880da6562c1121fb4e216b7 ****/ + /****** BOPAlgo_Splitter::Perform ******/ + /****** md5 signature: 0c284a2ff880da6562c1121fb4e216b7 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BOPDS.i b/src/SWIG_files/wrapper/BOPDS.i index 901387031..22a01bc58 100644 --- a/src/SWIG_files/wrapper/BOPDS.i +++ b/src/SWIG_files/wrapper/BOPDS.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BOPDSDOCSTRING "BOPDS module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_bopds.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_bopds.html" %enddef %module (package="OCC.Core", docstring=BOPDSDOCSTRING) BOPDS @@ -228,8 +228,8 @@ typedef NCollection_Vector BOPDS_VectorOfVectorOfPair; **************************/ class BOPDS_CommonBlock : public Standard_Transient { public: - /****************** BOPDS_CommonBlock ******************/ - /**** md5 signature: 92a8163598663f388a0cc06d557c3d62 ****/ + /****** BOPDS_CommonBlock::BOPDS_CommonBlock ******/ + /****** md5 signature: 92a8163598663f388a0cc06d557c3d62 ******/ %feature("compactdefaultargs") BOPDS_CommonBlock; %feature("autodoc", "Return ------- @@ -241,8 +241,8 @@ Empty constructor. ") BOPDS_CommonBlock; BOPDS_CommonBlock(); - /****************** BOPDS_CommonBlock ******************/ - /**** md5 signature: df854f8c56258e94a4fa5e1297ec0b70 ****/ + /****** BOPDS_CommonBlock::BOPDS_CommonBlock ******/ + /****** md5 signature: df854f8c56258e94a4fa5e1297ec0b70 ******/ %feature("compactdefaultargs") BOPDS_CommonBlock; %feature("autodoc", " Parameters @@ -259,8 +259,8 @@ Constructor @param theallocator the allocator to manage the memory. ") BOPDS_CommonBlock; BOPDS_CommonBlock(const opencascade::handle & theAllocator); - /****************** AddFace ******************/ - /**** md5 signature: 714848e0da983a50147a1a6fe5cc137f ****/ + /****** BOPDS_CommonBlock::AddFace ******/ + /****** md5 signature: 714848e0da983a50147a1a6fe5cc137f ******/ %feature("compactdefaultargs") AddFace; %feature("autodoc", " Parameters @@ -277,8 +277,8 @@ Modifier adds the index of the face to the list of indices of faces of the ") AddFace; void AddFace(const Standard_Integer aF); - /****************** AddPaveBlock ******************/ - /**** md5 signature: 40476ddb9e36cdbcc5eee8010b97ab4c ****/ + /****** BOPDS_CommonBlock::AddPaveBlock ******/ + /****** md5 signature: 40476ddb9e36cdbcc5eee8010b97ab4c ******/ %feature("compactdefaultargs") AddPaveBlock; %feature("autodoc", " Parameters @@ -295,8 +295,8 @@ Modifier adds the pave block to the list of pave blocks of the common bloc ") AddPaveBlock; void AddPaveBlock(const opencascade::handle & aPB); - /****************** AppendFaces ******************/ - /**** md5 signature: 5ce63b846074664c228a675dcb45a458 ****/ + /****** BOPDS_CommonBlock::AppendFaces ******/ + /****** md5 signature: 5ce63b846074664c228a675dcb45a458 ******/ %feature("compactdefaultargs") AppendFaces; %feature("autodoc", " Parameters @@ -313,8 +313,8 @@ Modifier appends the list of indices of faces to the list of indices of fa ") AppendFaces; void AppendFaces(TColStd_ListOfInteger & aLF); - /****************** Contains ******************/ - /**** md5 signature: 5b22a1e11ec5b4dc5629d25b7250f464 ****/ + /****** BOPDS_CommonBlock::Contains ******/ + /****** md5 signature: 5b22a1e11ec5b4dc5629d25b7250f464 ******/ %feature("compactdefaultargs") Contains; %feature("autodoc", " Parameters @@ -331,8 +331,8 @@ Query returns true if the common block contains a pave block that is equal to & thePB); - /****************** Contains ******************/ - /**** md5 signature: e176c1347c329fce1ef7d92975a35938 ****/ + /****** BOPDS_CommonBlock::Contains ******/ + /****** md5 signature: e176c1347c329fce1ef7d92975a35938 ******/ %feature("compactdefaultargs") Contains; %feature("autodoc", " Parameters @@ -349,8 +349,8 @@ Query returns true if the common block contains the face with index equal to & PaveBlock1(); - /****************** PaveBlockOnEdge ******************/ - /**** md5 signature: f3596403b9d0aac976dafd133944bfec ****/ + /****** BOPDS_CommonBlock::PaveBlockOnEdge ******/ + /****** md5 signature: f3596403b9d0aac976dafd133944bfec ******/ %feature("compactdefaultargs") PaveBlockOnEdge; %feature("autodoc", " Parameters @@ -455,8 +455,8 @@ Selector returns the pave block that belongs to the edge with index . ") PaveBlockOnEdge; opencascade::handle & PaveBlockOnEdge(const Standard_Integer theIndex); - /****************** PaveBlocks ******************/ - /**** md5 signature: 7d51c8e06f45b23721dd9a87453d2391 ****/ + /****** BOPDS_CommonBlock::PaveBlocks ******/ + /****** md5 signature: 7d51c8e06f45b23721dd9a87453d2391 ******/ %feature("compactdefaultargs") PaveBlocks; %feature("autodoc", "Return ------- @@ -468,8 +468,8 @@ Selector returns the list of pave blocks of the common block. ") PaveBlocks; const BOPDS_ListOfPaveBlock & PaveBlocks(); - /****************** SetEdge ******************/ - /**** md5 signature: e5f0cb270588385f5c43b443c7a3911e ****/ + /****** BOPDS_CommonBlock::SetEdge ******/ + /****** md5 signature: e5f0cb270588385f5c43b443c7a3911e ******/ %feature("compactdefaultargs") SetEdge; %feature("autodoc", " Parameters @@ -486,8 +486,8 @@ Modifier assign the index as the edge index to all pave blocks of the ") SetEdge; void SetEdge(const Standard_Integer theEdge); - /****************** SetFaces ******************/ - /**** md5 signature: df9d7d397e0a70d489fa65f29e832130 ****/ + /****** BOPDS_CommonBlock::SetFaces ******/ + /****** md5 signature: df9d7d397e0a70d489fa65f29e832130 ******/ %feature("compactdefaultargs") SetFaces; %feature("autodoc", " Parameters @@ -504,8 +504,8 @@ Modifier sets the list of indices of faces of the common block. ") SetFaces; void SetFaces(const TColStd_ListOfInteger & aLF); - /****************** SetPaveBlocks ******************/ - /**** md5 signature: 1b0483dad806e671b173313df9ef53b7 ****/ + /****** BOPDS_CommonBlock::SetPaveBlocks ******/ + /****** md5 signature: 1b0483dad806e671b173313df9ef53b7 ******/ %feature("compactdefaultargs") SetPaveBlocks; %feature("autodoc", " Parameters @@ -522,8 +522,8 @@ Modifier sets the list of pave blocks for the common block. ") SetPaveBlocks; void SetPaveBlocks(const BOPDS_ListOfPaveBlock & aLPB); - /****************** SetRealPaveBlock ******************/ - /**** md5 signature: bd90910404bf474e53d2306cbe0b543b ****/ + /****** BOPDS_CommonBlock::SetRealPaveBlock ******/ + /****** md5 signature: bd90910404bf474e53d2306cbe0b543b ******/ %feature("compactdefaultargs") SetRealPaveBlock; %feature("autodoc", " Parameters @@ -540,8 +540,8 @@ Moves the pave blocks in the list to make the given pave block to be the first. ") SetRealPaveBlock; void SetRealPaveBlock(const opencascade::handle & thePB); - /****************** SetTolerance ******************/ - /**** md5 signature: 3d7576e44e771b252fc1783601ea4631 ****/ + /****** BOPDS_CommonBlock::SetTolerance ******/ + /****** md5 signature: 3d7576e44e771b252fc1783601ea4631 ******/ %feature("compactdefaultargs") SetTolerance; %feature("autodoc", " Parameters @@ -558,8 +558,8 @@ Sets the tolerance for the common block. ") SetTolerance; void SetTolerance(const Standard_Real theTol); - /****************** Tolerance ******************/ - /**** md5 signature: 327dcbe220ae5ba3e0203f32c61c38db ****/ + /****** BOPDS_CommonBlock::Tolerance ******/ + /****** md5 signature: 327dcbe220ae5ba3e0203f32c61c38db ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", "Return ------- @@ -587,8 +587,8 @@ Return the tolerance of common block. *********************************/ class BOPDS_CoupleOfPaveBlocks { public: - /****************** BOPDS_CoupleOfPaveBlocks ******************/ - /**** md5 signature: 4da52fdebc0ef3b3fa5901784d78a411 ****/ + /****** BOPDS_CoupleOfPaveBlocks::BOPDS_CoupleOfPaveBlocks ******/ + /****** md5 signature: 4da52fdebc0ef3b3fa5901784d78a411 ******/ %feature("compactdefaultargs") BOPDS_CoupleOfPaveBlocks; %feature("autodoc", "Return ------- @@ -600,8 +600,8 @@ Description ") BOPDS_CoupleOfPaveBlocks; BOPDS_CoupleOfPaveBlocks(); - /****************** BOPDS_CoupleOfPaveBlocks ******************/ - /**** md5 signature: 172b7f8f41b35e1ec971579ff5740616 ****/ + /****** BOPDS_CoupleOfPaveBlocks::BOPDS_CoupleOfPaveBlocks ******/ + /****** md5 signature: 172b7f8f41b35e1ec971579ff5740616 ******/ %feature("compactdefaultargs") BOPDS_CoupleOfPaveBlocks; %feature("autodoc", " Parameters @@ -619,8 +619,8 @@ Description ") BOPDS_CoupleOfPaveBlocks; BOPDS_CoupleOfPaveBlocks(const opencascade::handle & thePB1, const opencascade::handle & thePB2); - /****************** Index ******************/ - /**** md5 signature: 0be2d384cf83d16771bb3f9c857c6326 ****/ + /****** BOPDS_CoupleOfPaveBlocks::Index ******/ + /****** md5 signature: 0be2d384cf83d16771bb3f9c857c6326 ******/ %feature("compactdefaultargs") Index; %feature("autodoc", "Return ------- @@ -632,8 +632,8 @@ Description ") Index; Standard_Integer Index(); - /****************** IndexInterf ******************/ - /**** md5 signature: f53221f131b48fa86a70c5cca779b235 ****/ + /****** BOPDS_CoupleOfPaveBlocks::IndexInterf ******/ + /****** md5 signature: f53221f131b48fa86a70c5cca779b235 ******/ %feature("compactdefaultargs") IndexInterf; %feature("autodoc", "Return ------- @@ -645,8 +645,8 @@ Description ") IndexInterf; Standard_Integer IndexInterf(); - /****************** PaveBlock1 ******************/ - /**** md5 signature: fbed016ee3e75bed6bbdc5dc7e5b9e3f ****/ + /****** BOPDS_CoupleOfPaveBlocks::PaveBlock1 ******/ + /****** md5 signature: fbed016ee3e75bed6bbdc5dc7e5b9e3f ******/ %feature("compactdefaultargs") PaveBlock1; %feature("autodoc", "Return ------- @@ -658,8 +658,8 @@ No available documentation. ") PaveBlock1; const opencascade::handle & PaveBlock1(); - /****************** PaveBlock2 ******************/ - /**** md5 signature: c11c5d7da97830f552326c1f5060abd7 ****/ + /****** BOPDS_CoupleOfPaveBlocks::PaveBlock2 ******/ + /****** md5 signature: c11c5d7da97830f552326c1f5060abd7 ******/ %feature("compactdefaultargs") PaveBlock2; %feature("autodoc", "Return ------- @@ -671,8 +671,8 @@ No available documentation. ") PaveBlock2; const opencascade::handle & PaveBlock2(); - /****************** PaveBlocks ******************/ - /**** md5 signature: 742498916321e6fa2c60c1c2fa641fb7 ****/ + /****** BOPDS_CoupleOfPaveBlocks::PaveBlocks ******/ + /****** md5 signature: 742498916321e6fa2c60c1c2fa641fb7 ******/ %feature("compactdefaultargs") PaveBlocks; %feature("autodoc", " Parameters @@ -690,8 +690,8 @@ No available documentation. ") PaveBlocks; void PaveBlocks(opencascade::handle & thePB1, opencascade::handle & thePB2); - /****************** SetIndex ******************/ - /**** md5 signature: 5d636b968374ec848f4cd1fad9815499 ****/ + /****** BOPDS_CoupleOfPaveBlocks::SetIndex ******/ + /****** md5 signature: 5d636b968374ec848f4cd1fad9815499 ******/ %feature("compactdefaultargs") SetIndex; %feature("autodoc", " Parameters @@ -708,8 +708,8 @@ Description ") SetIndex; void SetIndex(const Standard_Integer theIndex); - /****************** SetIndexInterf ******************/ - /**** md5 signature: d82912a5e6070d14fdaa4e4b53bfbf16 ****/ + /****** BOPDS_CoupleOfPaveBlocks::SetIndexInterf ******/ + /****** md5 signature: d82912a5e6070d14fdaa4e4b53bfbf16 ******/ %feature("compactdefaultargs") SetIndexInterf; %feature("autodoc", " Parameters @@ -726,8 +726,8 @@ No available documentation. ") SetIndexInterf; void SetIndexInterf(const Standard_Integer theIndex); - /****************** SetPaveBlock1 ******************/ - /**** md5 signature: acf4bc4664fb826b50250c087925e0d4 ****/ + /****** BOPDS_CoupleOfPaveBlocks::SetPaveBlock1 ******/ + /****** md5 signature: acf4bc4664fb826b50250c087925e0d4 ******/ %feature("compactdefaultargs") SetPaveBlock1; %feature("autodoc", " Parameters @@ -744,8 +744,8 @@ No available documentation. ") SetPaveBlock1; void SetPaveBlock1(const opencascade::handle & thePB); - /****************** SetPaveBlock2 ******************/ - /**** md5 signature: d8fe450c6b6529f87a18a0ffa11e9323 ****/ + /****** BOPDS_CoupleOfPaveBlocks::SetPaveBlock2 ******/ + /****** md5 signature: d8fe450c6b6529f87a18a0ffa11e9323 ******/ %feature("compactdefaultargs") SetPaveBlock2; %feature("autodoc", " Parameters @@ -762,8 +762,8 @@ No available documentation. ") SetPaveBlock2; void SetPaveBlock2(const opencascade::handle & thePB); - /****************** SetPaveBlocks ******************/ - /**** md5 signature: 718ca1b486bee0d326da69a80a6c9984 ****/ + /****** BOPDS_CoupleOfPaveBlocks::SetPaveBlocks ******/ + /****** md5 signature: 718ca1b486bee0d326da69a80a6c9984 ******/ %feature("compactdefaultargs") SetPaveBlocks; %feature("autodoc", " Parameters @@ -781,8 +781,8 @@ No available documentation. ") SetPaveBlocks; void SetPaveBlocks(const opencascade::handle & thePB1, const opencascade::handle & thePB2); - /****************** SetTolerance ******************/ - /**** md5 signature: 3d7576e44e771b252fc1783601ea4631 ****/ + /****** BOPDS_CoupleOfPaveBlocks::SetTolerance ******/ + /****** md5 signature: 3d7576e44e771b252fc1783601ea4631 ******/ %feature("compactdefaultargs") SetTolerance; %feature("autodoc", " Parameters @@ -799,8 +799,8 @@ Description ") SetTolerance; void SetTolerance(const Standard_Real theTol); - /****************** Tolerance ******************/ - /**** md5 signature: 327dcbe220ae5ba3e0203f32c61c38db ****/ + /****** BOPDS_CoupleOfPaveBlocks::Tolerance ******/ + /****** md5 signature: 327dcbe220ae5ba3e0203f32c61c38db ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", "Return ------- @@ -826,8 +826,8 @@ Description ********************/ class BOPDS_Curve { public: - /****************** BOPDS_Curve ******************/ - /**** md5 signature: b72e3545eb213b0dc6aafa98d0055770 ****/ + /****** BOPDS_Curve::BOPDS_Curve ******/ + /****** md5 signature: b72e3545eb213b0dc6aafa98d0055770 ******/ %feature("compactdefaultargs") BOPDS_Curve; %feature("autodoc", "Return ------- @@ -839,8 +839,8 @@ Empty constructor. ") BOPDS_Curve; BOPDS_Curve(); - /****************** BOPDS_Curve ******************/ - /**** md5 signature: f93e5d7b27c0f12229424fa02dc011ee ****/ + /****** BOPDS_Curve::BOPDS_Curve ******/ + /****** md5 signature: f93e5d7b27c0f12229424fa02dc011ee ******/ %feature("compactdefaultargs") BOPDS_Curve; %feature("autodoc", " Parameters @@ -857,8 +857,8 @@ Constructor @param theallocator the allocator to manage the memory. ") BOPDS_Curve; BOPDS_Curve(const opencascade::handle & theAllocator); - /****************** Box ******************/ - /**** md5 signature: 7c4ea237507e51916495e768089f878e ****/ + /****** BOPDS_Curve::Box ******/ + /****** md5 signature: 7c4ea237507e51916495e768089f878e ******/ %feature("compactdefaultargs") Box; %feature("autodoc", "Return ------- @@ -870,8 +870,8 @@ Selector returns the bounding box of the curve. ") Box; const Bnd_Box & Box(); - /****************** ChangeBox ******************/ - /**** md5 signature: 5631b4e4d9ba9acf6c3e62a29ae5b2c2 ****/ + /****** BOPDS_Curve::ChangeBox ******/ + /****** md5 signature: 5631b4e4d9ba9acf6c3e62a29ae5b2c2 ******/ %feature("compactdefaultargs") ChangeBox; %feature("autodoc", "Return ------- @@ -883,8 +883,8 @@ Selector/modifier returns the bounding box of the curve. ") ChangeBox; Bnd_Box & ChangeBox(); - /****************** ChangePaveBlock1 ******************/ - /**** md5 signature: 33ecf769dcc3de2a931c764889747312 ****/ + /****** BOPDS_Curve::ChangePaveBlock1 ******/ + /****** md5 signature: 33ecf769dcc3de2a931c764889747312 ******/ %feature("compactdefaultargs") ChangePaveBlock1; %feature("autodoc", "Return ------- @@ -896,8 +896,8 @@ Selector/modifier returns initial pave block of the curve. ") ChangePaveBlock1; opencascade::handle & ChangePaveBlock1(); - /****************** ChangePaveBlocks ******************/ - /**** md5 signature: 5a68e5768876becb3226e5b71004feeb ****/ + /****** BOPDS_Curve::ChangePaveBlocks ******/ + /****** md5 signature: 5a68e5768876becb3226e5b71004feeb ******/ %feature("compactdefaultargs") ChangePaveBlocks; %feature("autodoc", "Return ------- @@ -909,8 +909,8 @@ Selector/modifier returns the list of pave blocks of the curve. ") ChangePaveBlocks; BOPDS_ListOfPaveBlock & ChangePaveBlocks(); - /****************** ChangeTechnoVertices ******************/ - /**** md5 signature: 4c2d6c6a355395f1703c558e7a77e79f ****/ + /****** BOPDS_Curve::ChangeTechnoVertices ******/ + /****** md5 signature: 4c2d6c6a355395f1703c558e7a77e79f ******/ %feature("compactdefaultargs") ChangeTechnoVertices; %feature("autodoc", "Return ------- @@ -922,8 +922,8 @@ Selector/modifier returns list of indices of technologic vertices of the curve. ") ChangeTechnoVertices; TColStd_ListOfInteger & ChangeTechnoVertices(); - /****************** Curve ******************/ - /**** md5 signature: f601887c73fa6c5311bace5eeee9b758 ****/ + /****** BOPDS_Curve::Curve ******/ + /****** md5 signature: f601887c73fa6c5311bace5eeee9b758 ******/ %feature("compactdefaultargs") Curve; %feature("autodoc", "Return ------- @@ -935,8 +935,8 @@ Selector returns the curve. ") Curve; IntTools_Curve Curve(); - /****************** HasEdge ******************/ - /**** md5 signature: b29d7c6fb0d75a5501e02d3f7002ad41 ****/ + /****** BOPDS_Curve::HasEdge ******/ + /****** md5 signature: b29d7c6fb0d75a5501e02d3f7002ad41 ******/ %feature("compactdefaultargs") HasEdge; %feature("autodoc", "Return ------- @@ -948,8 +948,8 @@ Query returns true if at least one pave block of the curve has edge. ") HasEdge; Standard_Boolean HasEdge(); - /****************** InitPaveBlock1 ******************/ - /**** md5 signature: 9029705f3ca329328cf1b75de1922c4e ****/ + /****** BOPDS_Curve::InitPaveBlock1 ******/ + /****** md5 signature: 9029705f3ca329328cf1b75de1922c4e ******/ %feature("compactdefaultargs") InitPaveBlock1; %feature("autodoc", "Return ------- @@ -961,8 +961,8 @@ Creates initial pave block of the curve. ") InitPaveBlock1; void InitPaveBlock1(); - /****************** PaveBlocks ******************/ - /**** md5 signature: 7d51c8e06f45b23721dd9a87453d2391 ****/ + /****** BOPDS_Curve::PaveBlocks ******/ + /****** md5 signature: 7d51c8e06f45b23721dd9a87453d2391 ******/ %feature("compactdefaultargs") PaveBlocks; %feature("autodoc", "Return ------- @@ -974,8 +974,8 @@ Selector returns the list of pave blocks of the curve. ") PaveBlocks; const BOPDS_ListOfPaveBlock & PaveBlocks(); - /****************** SetBox ******************/ - /**** md5 signature: 08b5255d733c5c76b81013bedaa4c32d ****/ + /****** BOPDS_Curve::SetBox ******/ + /****** md5 signature: 08b5255d733c5c76b81013bedaa4c32d ******/ %feature("compactdefaultargs") SetBox; %feature("autodoc", " Parameters @@ -992,8 +992,8 @@ Modifier sets the bounding box of the curve. ") SetBox; void SetBox(const Bnd_Box & theBox); - /****************** SetCurve ******************/ - /**** md5 signature: 7ef354f0cb8480e0895b05ee41111bd2 ****/ + /****** BOPDS_Curve::SetCurve ******/ + /****** md5 signature: 7ef354f0cb8480e0895b05ee41111bd2 ******/ %feature("compactdefaultargs") SetCurve; %feature("autodoc", " Parameters @@ -1010,8 +1010,8 @@ Modifier sets the curve . ") SetCurve; void SetCurve(const IntTools_Curve & theC); - /****************** SetPaveBlocks ******************/ - /**** md5 signature: 396db1816ffe1d8df6fee2dd320f1385 ****/ + /****** BOPDS_Curve::SetPaveBlocks ******/ + /****** md5 signature: 396db1816ffe1d8df6fee2dd320f1385 ******/ %feature("compactdefaultargs") SetPaveBlocks; %feature("autodoc", " Parameters @@ -1028,8 +1028,8 @@ No available documentation. ") SetPaveBlocks; void SetPaveBlocks(const BOPDS_ListOfPaveBlock & theLPB); - /****************** SetTolerance ******************/ - /**** md5 signature: 3d7576e44e771b252fc1783601ea4631 ****/ + /****** BOPDS_Curve::SetTolerance ******/ + /****** md5 signature: 3d7576e44e771b252fc1783601ea4631 ******/ %feature("compactdefaultargs") SetTolerance; %feature("autodoc", " Parameters @@ -1046,8 +1046,8 @@ Sets the tolerance for the curve. ") SetTolerance; void SetTolerance(const Standard_Real theTol); - /****************** TangentialTolerance ******************/ - /**** md5 signature: c1e785de724669f2f929496d8c904a9c ****/ + /****** BOPDS_Curve::TangentialTolerance ******/ + /****** md5 signature: c1e785de724669f2f929496d8c904a9c ******/ %feature("compactdefaultargs") TangentialTolerance; %feature("autodoc", "Return ------- @@ -1059,8 +1059,8 @@ Returns the tangential tolerance of the curve. ") TangentialTolerance; Standard_Real TangentialTolerance(); - /****************** TechnoVertices ******************/ - /**** md5 signature: 9266b29efc3610cc962a9ba1b2063c66 ****/ + /****** BOPDS_Curve::TechnoVertices ******/ + /****** md5 signature: 9266b29efc3610cc962a9ba1b2063c66 ******/ %feature("compactdefaultargs") TechnoVertices; %feature("autodoc", "Return ------- @@ -1072,8 +1072,8 @@ Selector returns list of indices of technologic vertices of the curve. ") TechnoVertices; const TColStd_ListOfInteger & TechnoVertices(); - /****************** Tolerance ******************/ - /**** md5 signature: 327dcbe220ae5ba3e0203f32c61c38db ****/ + /****** BOPDS_Curve::Tolerance ******/ + /****** md5 signature: 327dcbe220ae5ba3e0203f32c61c38db ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", "Return ------- @@ -1099,8 +1099,8 @@ Returns the tolerance of the curve. *****************/ class BOPDS_DS { public: - /****************** BOPDS_DS ******************/ - /**** md5 signature: f9a3d2b6ab77d6d06736fd633088137f ****/ + /****** BOPDS_DS::BOPDS_DS ******/ + /****** md5 signature: f9a3d2b6ab77d6d06736fd633088137f ******/ %feature("compactdefaultargs") BOPDS_DS; %feature("autodoc", "Return ------- @@ -1112,8 +1112,8 @@ Empty constructor. ") BOPDS_DS; BOPDS_DS(); - /****************** BOPDS_DS ******************/ - /**** md5 signature: 7ddac47ec4a184be023ac2ada301162c ****/ + /****** BOPDS_DS::BOPDS_DS ******/ + /****** md5 signature: 7ddac47ec4a184be023ac2ada301162c ******/ %feature("compactdefaultargs") BOPDS_DS; %feature("autodoc", " Parameters @@ -1130,8 +1130,8 @@ Constructor @param theallocator the allocator to manage the memory. ") BOPDS_DS; BOPDS_DS(const opencascade::handle & theAllocator); - /****************** AddInterf ******************/ - /**** md5 signature: e208a2d1807b943e21900bd1a1bea9d8 ****/ + /****** BOPDS_DS::AddInterf ******/ + /****** md5 signature: e208a2d1807b943e21900bd1a1bea9d8 ******/ %feature("compactdefaultargs") AddInterf; %feature("autodoc", " Parameters @@ -1149,8 +1149,8 @@ Modifier adds the information about an interference between shapes with indices ") AddInterf; Standard_Boolean AddInterf(const Standard_Integer theI1, const Standard_Integer theI2); - /****************** AddShapeSD ******************/ - /**** md5 signature: 72049a70b73d8f79599bac8aa8fdfd13 ****/ + /****** BOPDS_DS::AddShapeSD ******/ + /****** md5 signature: 72049a70b73d8f79599bac8aa8fdfd13 ******/ %feature("compactdefaultargs") AddShapeSD; %feature("autodoc", " Parameters @@ -1168,8 +1168,8 @@ Modifier adds the information about same domain shapes with indices theindex, th ") AddShapeSD; void AddShapeSD(const Standard_Integer theIndex, const Standard_Integer theIndexSD); - /****************** Allocator ******************/ - /**** md5 signature: 16ec5fa9c8407823fdb0339c9f1d453e ****/ + /****** BOPDS_DS::Allocator ******/ + /****** md5 signature: 16ec5fa9c8407823fdb0339c9f1d453e ******/ %feature("compactdefaultargs") Allocator; %feature("autodoc", "Return ------- @@ -1181,8 +1181,8 @@ Selector. ") Allocator; const opencascade::handle & Allocator(); - /****************** AloneVertices ******************/ - /**** md5 signature: c93385a5f28b91fac106100deb86f0d3 ****/ + /****** BOPDS_DS::AloneVertices ******/ + /****** md5 signature: c93385a5f28b91fac106100deb86f0d3 ******/ %feature("compactdefaultargs") AloneVertices; %feature("autodoc", " Parameters @@ -1200,8 +1200,8 @@ Selector returns the indices of alone vertices for the face with index theindex. ") AloneVertices; void AloneVertices(const Standard_Integer theF, TColStd_ListOfInteger & theLI); - /****************** Append ******************/ - /**** md5 signature: 3e13f4e60ccb6615e6df53170490f097 ****/ + /****** BOPDS_DS::Append ******/ + /****** md5 signature: 3e13f4e60ccb6615e6df53170490f097 ******/ %feature("compactdefaultargs") Append; %feature("autodoc", " Parameters @@ -1218,8 +1218,8 @@ Modifier appends the information about the shape [thesi] to the data structure r ") Append; Standard_Integer Append(const BOPDS_ShapeInfo & theSI); - /****************** Append ******************/ - /**** md5 signature: 59ffffc8522871f8f1bfab4c318f3466 ****/ + /****** BOPDS_DS::Append ******/ + /****** md5 signature: 59ffffc8522871f8f1bfab4c318f3466 ******/ %feature("compactdefaultargs") Append; %feature("autodoc", " Parameters @@ -1236,8 +1236,8 @@ Modifier appends the default information about the shape [thes] to the data stru ") Append; Standard_Integer Append(const TopoDS_Shape & theS); - /****************** Arguments ******************/ - /**** md5 signature: 80309a121493a4f5d1f74be6db70eb2e ****/ + /****** BOPDS_DS::Arguments ******/ + /****** md5 signature: 80309a121493a4f5d1f74be6db70eb2e ******/ %feature("compactdefaultargs") Arguments; %feature("autodoc", "Return ------- @@ -1249,8 +1249,8 @@ Selector returns the arguments of an operation. ") Arguments; const TopTools_ListOfShape & Arguments(); - /****************** BuildBndBoxSolid ******************/ - /**** md5 signature: ffe165738dd3059a8eebdf7686b24a4d ****/ + /****** BOPDS_DS::BuildBndBoxSolid ******/ + /****** md5 signature: ffe165738dd3059a8eebdf7686b24a4d ******/ %feature("compactdefaultargs") BuildBndBoxSolid; %feature("autodoc", " Parameters @@ -1269,8 +1269,8 @@ Computes bounding box for the solid with ds-index . the flag ") BuildBndBoxSolid; void BuildBndBoxSolid(const Standard_Integer theIndex, Bnd_Box & theBox, const Standard_Boolean theCheckInverted = Standard_True); - /****************** ChangeFaceInfo ******************/ - /**** md5 signature: 7172f9c4cd39086795416172658da4ba ****/ + /****** BOPDS_DS::ChangeFaceInfo ******/ + /****** md5 signature: 7172f9c4cd39086795416172658da4ba ******/ %feature("compactdefaultargs") ChangeFaceInfo; %feature("autodoc", " Parameters @@ -1287,8 +1287,8 @@ Selector/modifier returns the state of face with index theindex. ") ChangeFaceInfo; BOPDS_FaceInfo & ChangeFaceInfo(const Standard_Integer theIndex); - /****************** ChangePaveBlocks ******************/ - /**** md5 signature: 7299e5e8bc16bab9a322647e20d61b33 ****/ + /****** BOPDS_DS::ChangePaveBlocks ******/ + /****** md5 signature: 7299e5e8bc16bab9a322647e20d61b33 ******/ %feature("compactdefaultargs") ChangePaveBlocks; %feature("autodoc", " Parameters @@ -1305,8 +1305,8 @@ Selector/modifier returns the pave blocks for the shape with index theindex. ") ChangePaveBlocks; BOPDS_ListOfPaveBlock & ChangePaveBlocks(const Standard_Integer theIndex); - /****************** ChangePaveBlocksPool ******************/ - /**** md5 signature: 399ec244864e962bdc9de51c041427ce ****/ + /****** BOPDS_DS::ChangePaveBlocksPool ******/ + /****** md5 signature: 399ec244864e962bdc9de51c041427ce ******/ %feature("compactdefaultargs") ChangePaveBlocksPool; %feature("autodoc", "Return ------- @@ -1318,8 +1318,8 @@ Selector/modifier returns the information about pave blocks on source edges. ") ChangePaveBlocksPool; BOPDS_VectorOfListOfPaveBlock & ChangePaveBlocksPool(); - /****************** ChangeShapeInfo ******************/ - /**** md5 signature: 69ac6739f4453660035cfffcfae56704 ****/ + /****** BOPDS_DS::ChangeShapeInfo ******/ + /****** md5 signature: 69ac6739f4453660035cfffcfae56704 ******/ %feature("compactdefaultargs") ChangeShapeInfo; %feature("autodoc", " Parameters @@ -1336,8 +1336,8 @@ Selector/modifier returns the information about the shape with index theindex. ") ChangeShapeInfo; BOPDS_ShapeInfo & ChangeShapeInfo(const Standard_Integer theIndex); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** BOPDS_DS::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -1349,8 +1349,8 @@ Clears the contents. ") Clear; void Clear(); - /****************** CommonBlock ******************/ - /**** md5 signature: d35c8087f25db24045441a719b2b5866 ****/ + /****** BOPDS_DS::CommonBlock ******/ + /****** md5 signature: d35c8087f25db24045441a719b2b5866 ******/ %feature("compactdefaultargs") CommonBlock; %feature("autodoc", " Parameters @@ -1367,8 +1367,8 @@ Selector returns the common block. ") CommonBlock; opencascade::handle CommonBlock(const opencascade::handle & thePB); - /****************** Dump ******************/ - /**** md5 signature: 15b4b2e195645aebb43170ff7f15952a ****/ + /****** BOPDS_DS::Dump ******/ + /****** md5 signature: 15b4b2e195645aebb43170ff7f15952a ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", "Return ------- @@ -1380,8 +1380,8 @@ No available documentation. ") Dump; void Dump(); - /****************** FaceInfo ******************/ - /**** md5 signature: 6ec8ca3eb06b147f5132a85deff896dd ****/ + /****** BOPDS_DS::FaceInfo ******/ + /****** md5 signature: 6ec8ca3eb06b147f5132a85deff896dd ******/ %feature("compactdefaultargs") FaceInfo; %feature("autodoc", " Parameters @@ -1398,8 +1398,8 @@ Selector returns the state of face with index theindex. ") FaceInfo; const BOPDS_FaceInfo & FaceInfo(const Standard_Integer theIndex); - /****************** FaceInfoIn ******************/ - /**** md5 signature: 1a244a93e8dfd09c6dfd80799a243c8c ****/ + /****** BOPDS_DS::FaceInfoIn ******/ + /****** md5 signature: 1a244a93e8dfd09c6dfd80799a243c8c ******/ %feature("compactdefaultargs") FaceInfoIn; %feature("autodoc", " Parameters @@ -1418,8 +1418,8 @@ Selector returns the state in [thempb,themvp] of face with index theindex. ") FaceInfoIn; void FaceInfoIn(const Standard_Integer theIndex, BOPDS_IndexedMapOfPaveBlock & theMPB, TColStd_MapOfInteger & theMVP); - /****************** FaceInfoOn ******************/ - /**** md5 signature: 8476cfdb28e35410fbccff7d3fea188c ****/ + /****** BOPDS_DS::FaceInfoOn ******/ + /****** md5 signature: 8476cfdb28e35410fbccff7d3fea188c ******/ %feature("compactdefaultargs") FaceInfoOn; %feature("autodoc", " Parameters @@ -1438,8 +1438,8 @@ Selector returns the state on [thempb,themvp] of face with index theindex. ") FaceInfoOn; void FaceInfoOn(const Standard_Integer theIndex, BOPDS_IndexedMapOfPaveBlock & theMPB, TColStd_MapOfInteger & theMVP); - /****************** FaceInfoPool ******************/ - /**** md5 signature: a6655407c6289d3016f98639683edc48 ****/ + /****** BOPDS_DS::FaceInfoPool ******/ + /****** md5 signature: a6655407c6289d3016f98639683edc48 ******/ %feature("compactdefaultargs") FaceInfoPool; %feature("autodoc", "Return ------- @@ -1451,8 +1451,8 @@ Selector returns the information about state of faces. ") FaceInfoPool; const BOPDS_VectorOfFaceInfo & FaceInfoPool(); - /****************** HasFaceInfo ******************/ - /**** md5 signature: 028f8f8ab3e7f0f2ed26c8c06cf455c2 ****/ + /****** BOPDS_DS::HasFaceInfo ******/ + /****** md5 signature: 028f8f8ab3e7f0f2ed26c8c06cf455c2 ******/ %feature("compactdefaultargs") HasFaceInfo; %feature("autodoc", " Parameters @@ -1469,8 +1469,8 @@ Query returns true if the shape with index theindex has the information about st ") HasFaceInfo; Standard_Boolean HasFaceInfo(const Standard_Integer theIndex); - /****************** HasInterf ******************/ - /**** md5 signature: 49283712d76e913ced59d7cd0e4cc6bf ****/ + /****** BOPDS_DS::HasInterf ******/ + /****** md5 signature: 49283712d76e913ced59d7cd0e4cc6bf ******/ %feature("compactdefaultargs") HasInterf; %feature("autodoc", " Parameters @@ -1487,8 +1487,8 @@ Query returns true if the shape with index thei is interferred. ") HasInterf; Standard_Boolean HasInterf(const Standard_Integer theI); - /****************** HasInterf ******************/ - /**** md5 signature: 1d80e545b7d9a7723da7460ab8fc21ef ****/ + /****** BOPDS_DS::HasInterf ******/ + /****** md5 signature: 1d80e545b7d9a7723da7460ab8fc21ef ******/ %feature("compactdefaultargs") HasInterf; %feature("autodoc", " Parameters @@ -1506,8 +1506,8 @@ Query returns true if the shapes with indices thei1, thei2 are interferred. ") HasInterf; Standard_Boolean HasInterf(const Standard_Integer theI1, const Standard_Integer theI2); - /****************** HasInterfShapeSubShapes ******************/ - /**** md5 signature: 0aa0734f4d409aa68bbb45efdedf95f0 ****/ + /****** BOPDS_DS::HasInterfShapeSubShapes ******/ + /****** md5 signature: 0aa0734f4d409aa68bbb45efdedf95f0 ******/ %feature("compactdefaultargs") HasInterfShapeSubShapes; %feature("autodoc", " Parameters @@ -1526,8 +1526,8 @@ Query returns true if the shape with index thei1 is interfered with any sub-shap ") HasInterfShapeSubShapes; Standard_Boolean HasInterfShapeSubShapes(const Standard_Integer theI1, const Standard_Integer theI2, const Standard_Boolean theFlag = Standard_True); - /****************** HasInterfSubShapes ******************/ - /**** md5 signature: 2ae27af80945e532df7c2bbd58f11cd7 ****/ + /****** BOPDS_DS::HasInterfSubShapes ******/ + /****** md5 signature: 2ae27af80945e532df7c2bbd58f11cd7 ******/ %feature("compactdefaultargs") HasInterfSubShapes; %feature("autodoc", " Parameters @@ -1545,8 +1545,8 @@ Query returns true if the shapes with indices thei1, thei2 have interferred sub- ") HasInterfSubShapes; Standard_Boolean HasInterfSubShapes(const Standard_Integer theI1, const Standard_Integer theI2); - /****************** HasPaveBlocks ******************/ - /**** md5 signature: c7343602d13620a44b73bbe33d4d439a ****/ + /****** BOPDS_DS::HasPaveBlocks ******/ + /****** md5 signature: c7343602d13620a44b73bbe33d4d439a ******/ %feature("compactdefaultargs") HasPaveBlocks; %feature("autodoc", " Parameters @@ -1563,8 +1563,8 @@ Query returns true if the shape with index theindex has the information about pa ") HasPaveBlocks; Standard_Boolean HasPaveBlocks(const Standard_Integer theIndex); - /****************** HasShapeSD ******************/ - /**** md5 signature: ae014300fee852ffc3e8e610f3a33ffb ****/ + /****** BOPDS_DS::HasShapeSD ******/ + /****** md5 signature: ae014300fee852ffc3e8e610f3a33ffb ******/ %feature("compactdefaultargs") HasShapeSD; %feature("autodoc", " Parameters @@ -1581,8 +1581,8 @@ Query returns true if the shape with index theindex has the same domain shape. i ") HasShapeSD; Standard_Boolean HasShapeSD(const Standard_Integer theIndex, Standard_Integer &OutValue); - /****************** Index ******************/ - /**** md5 signature: be10b23bfcf45be693e1699539996e8e ****/ + /****** BOPDS_DS::Index ******/ + /****** md5 signature: be10b23bfcf45be693e1699539996e8e ******/ %feature("compactdefaultargs") Index; %feature("autodoc", " Parameters @@ -1599,8 +1599,8 @@ Selector returns the index of the shape thes. ") Index; Standard_Integer Index(const TopoDS_Shape & theS); - /****************** Init ******************/ - /**** md5 signature: 119c8bca63b257c5cda6219fd077dd01 ****/ + /****** BOPDS_DS::Init ******/ + /****** md5 signature: 119c8bca63b257c5cda6219fd077dd01 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -1617,8 +1617,8 @@ Initializes the data structure for the arguments. ") Init; void Init(const Standard_Real theFuzz = Precision::Confusion()); - /****************** InitPaveBlocksForVertex ******************/ - /**** md5 signature: 15347613c57581b43dc354442cd1623d ****/ + /****** BOPDS_DS::InitPaveBlocksForVertex ******/ + /****** md5 signature: 15347613c57581b43dc354442cd1623d ******/ %feature("compactdefaultargs") InitPaveBlocksForVertex; %feature("autodoc", " Parameters @@ -1635,8 +1635,8 @@ No available documentation. ") InitPaveBlocksForVertex; void InitPaveBlocksForVertex(const Standard_Integer theNV); - /****************** InterfEE ******************/ - /**** md5 signature: 72fd0c4ed5824128f64e718d30ed306a ****/ + /****** BOPDS_DS::InterfEE ******/ + /****** md5 signature: 72fd0c4ed5824128f64e718d30ed306a ******/ %feature("compactdefaultargs") InterfEE; %feature("autodoc", "Return ------- @@ -1648,8 +1648,8 @@ Selector/modifier returns the collection of interferences edge/edge. ") InterfEE; BOPDS_VectorOfInterfEE & InterfEE(); - /****************** InterfEF ******************/ - /**** md5 signature: 2c6d8233f65184e1dc6b78c515553cdb ****/ + /****** BOPDS_DS::InterfEF ******/ + /****** md5 signature: 2c6d8233f65184e1dc6b78c515553cdb ******/ %feature("compactdefaultargs") InterfEF; %feature("autodoc", "Return ------- @@ -1661,8 +1661,8 @@ Selector/modifier returns the collection of interferences edge/face. ") InterfEF; BOPDS_VectorOfInterfEF & InterfEF(); - /****************** InterfEZ ******************/ - /**** md5 signature: b1d903cb21c241d05a7f78f0d0f825d4 ****/ + /****** BOPDS_DS::InterfEZ ******/ + /****** md5 signature: b1d903cb21c241d05a7f78f0d0f825d4 ******/ %feature("compactdefaultargs") InterfEZ; %feature("autodoc", "Return ------- @@ -1674,8 +1674,8 @@ Selector/modifier returns the collection of interferences edge/solid. ") InterfEZ; BOPDS_VectorOfInterfEZ & InterfEZ(); - /****************** InterfFF ******************/ - /**** md5 signature: e0c2ceb6e3b7331819f3629b48f57e95 ****/ + /****** BOPDS_DS::InterfFF ******/ + /****** md5 signature: e0c2ceb6e3b7331819f3629b48f57e95 ******/ %feature("compactdefaultargs") InterfFF; %feature("autodoc", "Return ------- @@ -1687,8 +1687,8 @@ Selector/modifier returns the collection of interferences face/face. ") InterfFF; BOPDS_VectorOfInterfFF & InterfFF(); - /****************** InterfFZ ******************/ - /**** md5 signature: ed8406a231822c7e94c8e25d1c71b4a1 ****/ + /****** BOPDS_DS::InterfFZ ******/ + /****** md5 signature: ed8406a231822c7e94c8e25d1c71b4a1 ******/ %feature("compactdefaultargs") InterfFZ; %feature("autodoc", "Return ------- @@ -1700,8 +1700,8 @@ Selector/modifier returns the collection of interferences face/solid. ") InterfFZ; BOPDS_VectorOfInterfFZ & InterfFZ(); - /****************** InterfVE ******************/ - /**** md5 signature: 1e8c1351166b78cd57dfd6252f8095fd ****/ + /****** BOPDS_DS::InterfVE ******/ + /****** md5 signature: 1e8c1351166b78cd57dfd6252f8095fd ******/ %feature("compactdefaultargs") InterfVE; %feature("autodoc", "Return ------- @@ -1713,8 +1713,8 @@ Selector/modifier returns the collection of interferences vertex/edge. ") InterfVE; BOPDS_VectorOfInterfVE & InterfVE(); - /****************** InterfVF ******************/ - /**** md5 signature: a740dfccca2947945870f2853010ff59 ****/ + /****** BOPDS_DS::InterfVF ******/ + /****** md5 signature: a740dfccca2947945870f2853010ff59 ******/ %feature("compactdefaultargs") InterfVF; %feature("autodoc", "Return ------- @@ -1726,8 +1726,8 @@ Selector/modifier returns the collection of interferences vertex/face. ") InterfVF; BOPDS_VectorOfInterfVF & InterfVF(); - /****************** InterfVV ******************/ - /**** md5 signature: de6bd3601d77ef5be33cc83e8c5b53f5 ****/ + /****** BOPDS_DS::InterfVV ******/ + /****** md5 signature: de6bd3601d77ef5be33cc83e8c5b53f5 ******/ %feature("compactdefaultargs") InterfVV; %feature("autodoc", "Return ------- @@ -1739,8 +1739,8 @@ Selector/modifier returns the collection of interferences vertex/vertex. ") InterfVV; BOPDS_VectorOfInterfVV & InterfVV(); - /****************** InterfVZ ******************/ - /**** md5 signature: 582789694d5f35487a86689d97253193 ****/ + /****** BOPDS_DS::InterfVZ ******/ + /****** md5 signature: 582789694d5f35487a86689d97253193 ******/ %feature("compactdefaultargs") InterfVZ; %feature("autodoc", "Return ------- @@ -1752,8 +1752,8 @@ Selector/modifier returns the collection of interferences vertex/solid. ") InterfVZ; BOPDS_VectorOfInterfVZ & InterfVZ(); - /****************** InterfZZ ******************/ - /**** md5 signature: 6c404f4d7b0d8d898ff2b617987d701a ****/ + /****** BOPDS_DS::InterfZZ ******/ + /****** md5 signature: 6c404f4d7b0d8d898ff2b617987d701a ******/ %feature("compactdefaultargs") InterfZZ; %feature("autodoc", "Return ------- @@ -1765,8 +1765,8 @@ Selector/modifier returns the collection of interferences solid/solid. ") InterfZZ; BOPDS_VectorOfInterfZZ & InterfZZ(); - /****************** Interferences ******************/ - /**** md5 signature: 44bcb4cfcbd2e70afdb7ecdc2eb03075 ****/ + /****** BOPDS_DS::Interferences ******/ + /****** md5 signature: 44bcb4cfcbd2e70afdb7ecdc2eb03075 ******/ %feature("compactdefaultargs") Interferences; %feature("autodoc", "Return ------- @@ -1778,8 +1778,8 @@ Selector returns the table of interferences //! debug. ") Interferences; const BOPDS_MapOfPair & Interferences(); - /****************** IsCommonBlock ******************/ - /**** md5 signature: b0dc02e6b02caac0c57f5134435bd806 ****/ + /****** BOPDS_DS::IsCommonBlock ******/ + /****** md5 signature: b0dc02e6b02caac0c57f5134435bd806 ******/ %feature("compactdefaultargs") IsCommonBlock; %feature("autodoc", " Parameters @@ -1796,8 +1796,8 @@ Query returns true if the pave block is common block. ") IsCommonBlock; Standard_Boolean IsCommonBlock(const opencascade::handle & thePB); - /****************** IsCommonBlockOnEdge ******************/ - /**** md5 signature: 4275bd033086ef1a680a1b23c40e6cf9 ****/ + /****** BOPDS_DS::IsCommonBlockOnEdge ******/ + /****** md5 signature: 4275bd033086ef1a680a1b23c40e6cf9 ******/ %feature("compactdefaultargs") IsCommonBlockOnEdge; %feature("autodoc", " Parameters @@ -1814,8 +1814,8 @@ Query returns true if common block contains more then one pave block. ") IsCommonBlockOnEdge; Standard_Boolean IsCommonBlockOnEdge(const opencascade::handle & thePB); - /****************** IsNewShape ******************/ - /**** md5 signature: 328a388f60ec661bb87b8eea2904a15a ****/ + /****** BOPDS_DS::IsNewShape ******/ + /****** md5 signature: 328a388f60ec661bb87b8eea2904a15a ******/ %feature("compactdefaultargs") IsNewShape; %feature("autodoc", " Parameters @@ -1832,8 +1832,8 @@ Returns true if the shape of index 'i' is not the source shape/sub-shape. ") IsNewShape; Standard_Boolean IsNewShape(const Standard_Integer theIndex); - /****************** IsSubShape ******************/ - /**** md5 signature: 456551f926d05108170c1f9b73a108c8 ****/ + /****** BOPDS_DS::IsSubShape ******/ + /****** md5 signature: 456551f926d05108170c1f9b73a108c8 ******/ %feature("compactdefaultargs") IsSubShape; %feature("autodoc", " Parameters @@ -1851,8 +1851,8 @@ No available documentation. ") IsSubShape; Standard_Boolean IsSubShape(const Standard_Integer theI1, const Standard_Integer theI2); - /****************** IsValidShrunkData ******************/ - /**** md5 signature: 673a61f557de33779fc6f80e66567e0b ****/ + /****** BOPDS_DS::IsValidShrunkData ******/ + /****** md5 signature: 673a61f557de33779fc6f80e66567e0b ******/ %feature("compactdefaultargs") IsValidShrunkData; %feature("autodoc", " Parameters @@ -1869,8 +1869,8 @@ Checks if the existing shrunk data of the pave block is still valid. the shrunk ") IsValidShrunkData; Standard_Boolean IsValidShrunkData(const opencascade::handle & thePB); - /****************** NbInterfTypes ******************/ - /**** md5 signature: b5f8cfff2549c73ab79b5d69be986141 ****/ + /****** BOPDS_DS::NbInterfTypes ******/ + /****** md5 signature: b5f8cfff2549c73ab79b5d69be986141 ******/ %feature("compactdefaultargs") NbInterfTypes; %feature("autodoc", "Return ------- @@ -1882,8 +1882,8 @@ Returns the number of types of the interferences. ") NbInterfTypes; static Standard_Integer NbInterfTypes(); - /****************** NbRanges ******************/ - /**** md5 signature: ab3e782a06903e5d503c4a552710a462 ****/ + /****** BOPDS_DS::NbRanges ******/ + /****** md5 signature: ab3e782a06903e5d503c4a552710a462 ******/ %feature("compactdefaultargs") NbRanges; %feature("autodoc", "Return ------- @@ -1895,8 +1895,8 @@ Selector returns the number of index ranges. ") NbRanges; Standard_Integer NbRanges(); - /****************** NbShapes ******************/ - /**** md5 signature: ea90d1514db96ad18becf0e04a33abf6 ****/ + /****** BOPDS_DS::NbShapes ******/ + /****** md5 signature: ea90d1514db96ad18becf0e04a33abf6 ******/ %feature("compactdefaultargs") NbShapes; %feature("autodoc", "Return ------- @@ -1908,8 +1908,8 @@ Selector returns the total number of shapes stored. ") NbShapes; Standard_Integer NbShapes(); - /****************** NbSourceShapes ******************/ - /**** md5 signature: 491dd42a7738616c75f8107b1175e48f ****/ + /****** BOPDS_DS::NbSourceShapes ******/ + /****** md5 signature: 491dd42a7738616c75f8107b1175e48f ******/ %feature("compactdefaultargs") NbSourceShapes; %feature("autodoc", "Return ------- @@ -1921,8 +1921,8 @@ Selector returns the total number of source shapes stored. ") NbSourceShapes; Standard_Integer NbSourceShapes(); - /****************** PaveBlocks ******************/ - /**** md5 signature: 68dcf40aab903429d067a486b7121001 ****/ + /****** BOPDS_DS::PaveBlocks ******/ + /****** md5 signature: 68dcf40aab903429d067a486b7121001 ******/ %feature("compactdefaultargs") PaveBlocks; %feature("autodoc", " Parameters @@ -1939,8 +1939,8 @@ Selector returns the pave blocks for the shape with index theindex. ") PaveBlocks; const BOPDS_ListOfPaveBlock & PaveBlocks(const Standard_Integer theIndex); - /****************** PaveBlocksPool ******************/ - /**** md5 signature: 50b4ea760186198ca75f077153c0fbc8 ****/ + /****** BOPDS_DS::PaveBlocksPool ******/ + /****** md5 signature: 50b4ea760186198ca75f077153c0fbc8 ******/ %feature("compactdefaultargs") PaveBlocksPool; %feature("autodoc", "Return ------- @@ -1952,8 +1952,8 @@ Selector returns the information about pave blocks on source edges. ") PaveBlocksPool; const BOPDS_VectorOfListOfPaveBlock & PaveBlocksPool(); - /****************** Paves ******************/ - /**** md5 signature: 21e9e50b8600c1f1dae7bda888c3e95f ****/ + /****** BOPDS_DS::Paves ******/ + /****** md5 signature: 21e9e50b8600c1f1dae7bda888c3e95f ******/ %feature("compactdefaultargs") Paves; %feature("autodoc", " Parameters @@ -1971,8 +1971,8 @@ Fills thelp with sorted paves of the shape with index theindex. ") Paves; void Paves(const Standard_Integer theIndex, BOPDS_ListOfPave & theLP); - /****************** Range ******************/ - /**** md5 signature: 5ca271758ebb00dc0b21c53b042f5bf2 ****/ + /****** BOPDS_DS::Range ******/ + /****** md5 signature: 5ca271758ebb00dc0b21c53b042f5bf2 ******/ %feature("compactdefaultargs") Range; %feature("autodoc", " Parameters @@ -1989,8 +1989,8 @@ Selector returns the index range 'i'. ") Range; const BOPDS_IndexRange & Range(const Standard_Integer theIndex); - /****************** Rank ******************/ - /**** md5 signature: 9e6a20c7b89086372aecea71b8c88749 ****/ + /****** BOPDS_DS::Rank ******/ + /****** md5 signature: 9e6a20c7b89086372aecea71b8c88749 ******/ %feature("compactdefaultargs") Rank; %feature("autodoc", " Parameters @@ -2007,8 +2007,8 @@ Selector returns the rank of the shape of index 'i'. ") Rank; Standard_Integer Rank(const Standard_Integer theIndex); - /****************** RealPaveBlock ******************/ - /**** md5 signature: 4469a9d9a26892d7c107422010da714b ****/ + /****** BOPDS_DS::RealPaveBlock ******/ + /****** md5 signature: 4469a9d9a26892d7c107422010da714b ******/ %feature("compactdefaultargs") RealPaveBlock; %feature("autodoc", " Parameters @@ -2025,8 +2025,8 @@ Selector returns the real first pave block. ") RealPaveBlock; opencascade::handle RealPaveBlock(const opencascade::handle & thePB); - /****************** RefineFaceInfoIn ******************/ - /**** md5 signature: 4994c1dd02d9f8a4743cc519d32b7898 ****/ + /****** BOPDS_DS::RefineFaceInfoIn ******/ + /****** md5 signature: 4994c1dd02d9f8a4743cc519d32b7898 ******/ %feature("compactdefaultargs") RefineFaceInfoIn; %feature("autodoc", "Return ------- @@ -2038,8 +2038,8 @@ Removes any pave block from list of having in state if it has also the state on. ") RefineFaceInfoIn; void RefineFaceInfoIn(); - /****************** RefineFaceInfoOn ******************/ - /**** md5 signature: 7bba131ff2176723c8ccc01dd9cde80a ****/ + /****** BOPDS_DS::RefineFaceInfoOn ******/ + /****** md5 signature: 7bba131ff2176723c8ccc01dd9cde80a ******/ %feature("compactdefaultargs") RefineFaceInfoOn; %feature("autodoc", "Return ------- @@ -2051,8 +2051,8 @@ Refine the state on for the all faces having state information //! ++. ") RefineFaceInfoOn; void RefineFaceInfoOn(); - /****************** ReleasePaveBlocks ******************/ - /**** md5 signature: 0a9c849d65b6a4cf95be6f2d718156ae ****/ + /****** BOPDS_DS::ReleasePaveBlocks ******/ + /****** md5 signature: 0a9c849d65b6a4cf95be6f2d718156ae ******/ %feature("compactdefaultargs") ReleasePaveBlocks; %feature("autodoc", "Return ------- @@ -2064,8 +2064,8 @@ Clears information about paveblocks for the untouched edges. ") ReleasePaveBlocks; void ReleasePaveBlocks(); - /****************** SetArguments ******************/ - /**** md5 signature: b894d6130aeeacff1dc8ed5150d56866 ****/ + /****** BOPDS_DS::SetArguments ******/ + /****** md5 signature: b894d6130aeeacff1dc8ed5150d56866 ******/ %feature("compactdefaultargs") SetArguments; %feature("autodoc", " Parameters @@ -2082,8 +2082,8 @@ Modifier sets the arguments [thels] of an operation. ") SetArguments; void SetArguments(const TopTools_ListOfShape & theLS); - /****************** SetCommonBlock ******************/ - /**** md5 signature: e4c808b4502142fd887ea0b4a1ee2d11 ****/ + /****** BOPDS_DS::SetCommonBlock ******/ + /****** md5 signature: e4c808b4502142fd887ea0b4a1ee2d11 ******/ %feature("compactdefaultargs") SetCommonBlock; %feature("autodoc", " Parameters @@ -2101,8 +2101,8 @@ Modifier sets the common block . ") SetCommonBlock; void SetCommonBlock(const opencascade::handle & thePB, const opencascade::handle & theCB); - /****************** Shape ******************/ - /**** md5 signature: 517eeba390a4935f1b8879270532daf0 ****/ + /****** BOPDS_DS::Shape ******/ + /****** md5 signature: 517eeba390a4935f1b8879270532daf0 ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", " Parameters @@ -2119,8 +2119,8 @@ Selector returns the shape with index theindex. ") Shape; const TopoDS_Shape Shape(const Standard_Integer theIndex); - /****************** ShapeInfo ******************/ - /**** md5 signature: b283e86f09404b14ce48003218b1d95f ****/ + /****** BOPDS_DS::ShapeInfo ******/ + /****** md5 signature: b283e86f09404b14ce48003218b1d95f ******/ %feature("compactdefaultargs") ShapeInfo; %feature("autodoc", " Parameters @@ -2137,8 +2137,8 @@ Selector returns the information about the shape with index theindex. ") ShapeInfo; const BOPDS_ShapeInfo & ShapeInfo(const Standard_Integer theIndex); - /****************** ShapesSD ******************/ - /**** md5 signature: 527952a375cb69af338de9d02af00c94 ****/ + /****** BOPDS_DS::ShapesSD ******/ + /****** md5 signature: 527952a375cb69af338de9d02af00c94 ******/ %feature("compactdefaultargs") ShapesSD; %feature("autodoc", "Return ------- @@ -2150,8 +2150,8 @@ Selector returns the collection same domain shapes. ") ShapesSD; TColStd_DataMapOfIntegerInteger & ShapesSD(); - /****************** SharedEdges ******************/ - /**** md5 signature: 6bad9f50cf160f185b7036f3c972c789 ****/ + /****** BOPDS_DS::SharedEdges ******/ + /****** md5 signature: 6bad9f50cf160f185b7036f3c972c789 ******/ %feature("compactdefaultargs") SharedEdges; %feature("autodoc", " Parameters @@ -2171,8 +2171,8 @@ Returns the indices of edges that are shared for the faces with indices thef1, t ") SharedEdges; void SharedEdges(const Standard_Integer theF1, const Standard_Integer theF2, TColStd_ListOfInteger & theLI, const opencascade::handle & theAllocator); - /****************** SubShapesOnIn ******************/ - /**** md5 signature: cece8015c92cb291b215b2d9d9ca7c48 ****/ + /****** BOPDS_DS::SubShapesOnIn ******/ + /****** md5 signature: cece8015c92cb291b215b2d9d9ca7c48 ******/ %feature("compactdefaultargs") SubShapesOnIn; %feature("autodoc", " Parameters @@ -2194,8 +2194,8 @@ Returns information about on/in sub-shapes of the given faces. @param themvonin ") SubShapesOnIn; void SubShapesOnIn(const Standard_Integer theNF1, const Standard_Integer theNF2, TColStd_MapOfInteger & theMVOnIn, TColStd_MapOfInteger & theMVCommon, BOPDS_IndexedMapOfPaveBlock & thePBOnIn, BOPDS_MapOfPaveBlock & theCommonPB); - /****************** UpdateCommonBlock ******************/ - /**** md5 signature: b32849b579faa453d3ab01dfeb9151dc ****/ + /****** BOPDS_DS::UpdateCommonBlock ******/ + /****** md5 signature: b32849b579faa453d3ab01dfeb9151dc ******/ %feature("compactdefaultargs") UpdateCommonBlock; %feature("autodoc", " Parameters @@ -2213,8 +2213,8 @@ Update the common block thecb. ") UpdateCommonBlock; void UpdateCommonBlock(const opencascade::handle & theCB, const Standard_Real theFuzz); - /****************** UpdateCommonBlockWithSDVertices ******************/ - /**** md5 signature: 7866c8568fa9b10af99ea0d52a1e7bd6 ****/ + /****** BOPDS_DS::UpdateCommonBlockWithSDVertices ******/ + /****** md5 signature: 7866c8568fa9b10af99ea0d52a1e7bd6 ******/ %feature("compactdefaultargs") UpdateCommonBlockWithSDVertices; %feature("autodoc", " Parameters @@ -2231,8 +2231,8 @@ Update the pave block of the common block for all shapes in data structure. ") UpdateCommonBlockWithSDVertices; void UpdateCommonBlockWithSDVertices(const opencascade::handle & theCB); - /****************** UpdateFaceInfoIn ******************/ - /**** md5 signature: d1f6faa8a56b9e04059de53cd23a3d3e ****/ + /****** BOPDS_DS::UpdateFaceInfoIn ******/ + /****** md5 signature: d1f6faa8a56b9e04059de53cd23a3d3e ******/ %feature("compactdefaultargs") UpdateFaceInfoIn; %feature("autodoc", " Parameters @@ -2249,8 +2249,8 @@ Update the state in of face with index theindex. ") UpdateFaceInfoIn; void UpdateFaceInfoIn(const Standard_Integer theIndex); - /****************** UpdateFaceInfoIn ******************/ - /**** md5 signature: 47926fbf15ea8dcc9ce09be605c96f01 ****/ + /****** BOPDS_DS::UpdateFaceInfoIn ******/ + /****** md5 signature: 47926fbf15ea8dcc9ce09be605c96f01 ******/ %feature("compactdefaultargs") UpdateFaceInfoIn; %feature("autodoc", " Parameters @@ -2267,8 +2267,8 @@ Update the state in for all faces in the given map. ") UpdateFaceInfoIn; void UpdateFaceInfoIn(const TColStd_MapOfInteger & theFaces); - /****************** UpdateFaceInfoOn ******************/ - /**** md5 signature: 22cf949c85b68e28fd0defaaa4cce57e ****/ + /****** BOPDS_DS::UpdateFaceInfoOn ******/ + /****** md5 signature: 22cf949c85b68e28fd0defaaa4cce57e ******/ %feature("compactdefaultargs") UpdateFaceInfoOn; %feature("autodoc", " Parameters @@ -2285,8 +2285,8 @@ Update the state on of face with index theindex. ") UpdateFaceInfoOn; void UpdateFaceInfoOn(const Standard_Integer theIndex); - /****************** UpdateFaceInfoOn ******************/ - /**** md5 signature: 6da1f3a5aca4bb07a6f21a02a641463c ****/ + /****** BOPDS_DS::UpdateFaceInfoOn ******/ + /****** md5 signature: 6da1f3a5aca4bb07a6f21a02a641463c ******/ %feature("compactdefaultargs") UpdateFaceInfoOn; %feature("autodoc", " Parameters @@ -2303,8 +2303,8 @@ Update the state on for all faces in the given map. ") UpdateFaceInfoOn; void UpdateFaceInfoOn(const TColStd_MapOfInteger & theFaces); - /****************** UpdatePaveBlock ******************/ - /**** md5 signature: 973c8bac7cd25e5ce96fdadcf00095b9 ****/ + /****** BOPDS_DS::UpdatePaveBlock ******/ + /****** md5 signature: 973c8bac7cd25e5ce96fdadcf00095b9 ******/ %feature("compactdefaultargs") UpdatePaveBlock; %feature("autodoc", " Parameters @@ -2321,8 +2321,8 @@ Update the pave block thepb. ") UpdatePaveBlock; void UpdatePaveBlock(const opencascade::handle & thePB); - /****************** UpdatePaveBlockWithSDVertices ******************/ - /**** md5 signature: 031de64d1777b53b8baf2f1e7686ac1a ****/ + /****** BOPDS_DS::UpdatePaveBlockWithSDVertices ******/ + /****** md5 signature: 031de64d1777b53b8baf2f1e7686ac1a ******/ %feature("compactdefaultargs") UpdatePaveBlockWithSDVertices; %feature("autodoc", " Parameters @@ -2339,8 +2339,8 @@ Update the pave block for all shapes in data structure. ") UpdatePaveBlockWithSDVertices; void UpdatePaveBlockWithSDVertices(const opencascade::handle & thePB); - /****************** UpdatePaveBlocks ******************/ - /**** md5 signature: bb1d4d78bee9eea0b8a56f12f0f8e45e ****/ + /****** BOPDS_DS::UpdatePaveBlocks ******/ + /****** md5 signature: bb1d4d78bee9eea0b8a56f12f0f8e45e ******/ %feature("compactdefaultargs") UpdatePaveBlocks; %feature("autodoc", "Return ------- @@ -2352,8 +2352,8 @@ Update the pave blocks for the all shapes in data structure. ") UpdatePaveBlocks; void UpdatePaveBlocks(); - /****************** UpdatePaveBlocksWithSDVertices ******************/ - /**** md5 signature: b4f70b32e3469c14b16be36928c1fe26 ****/ + /****** BOPDS_DS::UpdatePaveBlocksWithSDVertices ******/ + /****** md5 signature: b4f70b32e3469c14b16be36928c1fe26 ******/ %feature("compactdefaultargs") UpdatePaveBlocksWithSDVertices; %feature("autodoc", "Return ------- @@ -2379,8 +2379,8 @@ Update the pave blocks for all shapes in data structure. ***********************/ class BOPDS_FaceInfo { public: - /****************** BOPDS_FaceInfo ******************/ - /**** md5 signature: dbf881bcf2d92c472cd8524dc1a94d79 ****/ + /****** BOPDS_FaceInfo::BOPDS_FaceInfo ******/ + /****** md5 signature: dbf881bcf2d92c472cd8524dc1a94d79 ******/ %feature("compactdefaultargs") BOPDS_FaceInfo; %feature("autodoc", "Return ------- @@ -2392,8 +2392,8 @@ Empty constructor. ") BOPDS_FaceInfo; BOPDS_FaceInfo(); - /****************** BOPDS_FaceInfo ******************/ - /**** md5 signature: 58156401c00b9ebd5196c21ce568756b ****/ + /****** BOPDS_FaceInfo::BOPDS_FaceInfo ******/ + /****** md5 signature: 58156401c00b9ebd5196c21ce568756b ******/ %feature("compactdefaultargs") BOPDS_FaceInfo; %feature("autodoc", " Parameters @@ -2410,8 +2410,8 @@ Constructor @param theallocator the allocator to manage the memory. ") BOPDS_FaceInfo; BOPDS_FaceInfo(const opencascade::handle & theAllocator); - /****************** ChangePaveBlocksIn ******************/ - /**** md5 signature: d4ec18f81c144198dbecd960b589646d ****/ + /****** BOPDS_FaceInfo::ChangePaveBlocksIn ******/ + /****** md5 signature: d4ec18f81c144198dbecd960b589646d ******/ %feature("compactdefaultargs") ChangePaveBlocksIn; %feature("autodoc", "Return ------- @@ -2423,8 +2423,8 @@ Selector/modifier returns the pave blocks of the face that have state in. ") ChangePaveBlocksIn; BOPDS_IndexedMapOfPaveBlock & ChangePaveBlocksIn(); - /****************** ChangePaveBlocksOn ******************/ - /**** md5 signature: 90def9e02fcda3b9ebf87cebe3c18fe1 ****/ + /****** BOPDS_FaceInfo::ChangePaveBlocksOn ******/ + /****** md5 signature: 90def9e02fcda3b9ebf87cebe3c18fe1 ******/ %feature("compactdefaultargs") ChangePaveBlocksOn; %feature("autodoc", "Return ------- @@ -2436,8 +2436,8 @@ Selector/modifier returns the pave blocks of the face that have state on. ") ChangePaveBlocksOn; BOPDS_IndexedMapOfPaveBlock & ChangePaveBlocksOn(); - /****************** ChangePaveBlocksSc ******************/ - /**** md5 signature: aa60dacd7c757139c1caac5022fd9507 ****/ + /****** BOPDS_FaceInfo::ChangePaveBlocksSc ******/ + /****** md5 signature: aa60dacd7c757139c1caac5022fd9507 ******/ %feature("compactdefaultargs") ChangePaveBlocksSc; %feature("autodoc", "Return ------- @@ -2449,8 +2449,8 @@ No available documentation. ") ChangePaveBlocksSc; BOPDS_IndexedMapOfPaveBlock & ChangePaveBlocksSc(); - /****************** ChangeVerticesIn ******************/ - /**** md5 signature: a1f733653d918c0dfda07b61761078cd ****/ + /****** BOPDS_FaceInfo::ChangeVerticesIn ******/ + /****** md5 signature: a1f733653d918c0dfda07b61761078cd ******/ %feature("compactdefaultargs") ChangeVerticesIn; %feature("autodoc", "Return ------- @@ -2462,8 +2462,8 @@ Selector/modifier returns the list of indices for vertices of the face that have ") ChangeVerticesIn; TColStd_MapOfInteger & ChangeVerticesIn(); - /****************** ChangeVerticesOn ******************/ - /**** md5 signature: 0a12e27e688f637bedea8ad74c0e05d2 ****/ + /****** BOPDS_FaceInfo::ChangeVerticesOn ******/ + /****** md5 signature: 0a12e27e688f637bedea8ad74c0e05d2 ******/ %feature("compactdefaultargs") ChangeVerticesOn; %feature("autodoc", "Return ------- @@ -2475,8 +2475,8 @@ Selector/modifier returns the list of indices for vertices of the face that have ") ChangeVerticesOn; TColStd_MapOfInteger & ChangeVerticesOn(); - /****************** ChangeVerticesSc ******************/ - /**** md5 signature: 1f58d37b0d25660e9e7d3f4bf9d48ecb ****/ + /****** BOPDS_FaceInfo::ChangeVerticesSc ******/ + /****** md5 signature: 1f58d37b0d25660e9e7d3f4bf9d48ecb ******/ %feature("compactdefaultargs") ChangeVerticesSc; %feature("autodoc", "Return ------- @@ -2488,8 +2488,8 @@ Selector/modifier returns the list of indices for section vertices of the face / ") ChangeVerticesSc; TColStd_MapOfInteger & ChangeVerticesSc(); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** BOPDS_FaceInfo::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -2501,8 +2501,8 @@ Clears the contents. ") Clear; void Clear(); - /****************** Index ******************/ - /**** md5 signature: 407d80ef3037d55996765198adea3908 ****/ + /****** BOPDS_FaceInfo::Index ******/ + /****** md5 signature: 407d80ef3037d55996765198adea3908 ******/ %feature("compactdefaultargs") Index; %feature("autodoc", "Return ------- @@ -2514,8 +2514,8 @@ Selector returns the index of the face //! in. ") Index; Standard_Integer Index(); - /****************** PaveBlocksIn ******************/ - /**** md5 signature: 61287d2aeb3dd1d9dbce972f7cebee70 ****/ + /****** BOPDS_FaceInfo::PaveBlocksIn ******/ + /****** md5 signature: 61287d2aeb3dd1d9dbce972f7cebee70 ******/ %feature("compactdefaultargs") PaveBlocksIn; %feature("autodoc", "Return ------- @@ -2527,8 +2527,8 @@ Selector returns the pave blocks of the face that have state in. ") PaveBlocksIn; const BOPDS_IndexedMapOfPaveBlock & PaveBlocksIn(); - /****************** PaveBlocksOn ******************/ - /**** md5 signature: 17bd7d43663bc3af7acd3e789afb9726 ****/ + /****** BOPDS_FaceInfo::PaveBlocksOn ******/ + /****** md5 signature: 17bd7d43663bc3af7acd3e789afb9726 ******/ %feature("compactdefaultargs") PaveBlocksOn; %feature("autodoc", "Return ------- @@ -2540,8 +2540,8 @@ Selector returns the pave blocks of the face that have state on. ") PaveBlocksOn; const BOPDS_IndexedMapOfPaveBlock & PaveBlocksOn(); - /****************** PaveBlocksSc ******************/ - /**** md5 signature: 8832f11b747d5c9394d12acc32cbe3b2 ****/ + /****** BOPDS_FaceInfo::PaveBlocksSc ******/ + /****** md5 signature: 8832f11b747d5c9394d12acc32cbe3b2 ******/ %feature("compactdefaultargs") PaveBlocksSc; %feature("autodoc", "Return ------- @@ -2553,8 +2553,8 @@ Selector returns the pave blocks of the face that are pave blocks of section edg ") PaveBlocksSc; const BOPDS_IndexedMapOfPaveBlock & PaveBlocksSc(); - /****************** SetIndex ******************/ - /**** md5 signature: 4dd534b2ead8c5c1524ec783c183f5c4 ****/ + /****** BOPDS_FaceInfo::SetIndex ******/ + /****** md5 signature: 4dd534b2ead8c5c1524ec783c183f5c4 ******/ %feature("compactdefaultargs") SetIndex; %feature("autodoc", " Parameters @@ -2571,8 +2571,8 @@ Modifier sets the index of the face . ") SetIndex; void SetIndex(const Standard_Integer theI); - /****************** VerticesIn ******************/ - /**** md5 signature: 362e2d28d22b892a3738b9c7a690e95a ****/ + /****** BOPDS_FaceInfo::VerticesIn ******/ + /****** md5 signature: 362e2d28d22b892a3738b9c7a690e95a ******/ %feature("compactdefaultargs") VerticesIn; %feature("autodoc", "Return ------- @@ -2584,8 +2584,8 @@ Selector returns the list of indices for vertices of the face that have state in ") VerticesIn; const TColStd_MapOfInteger & VerticesIn(); - /****************** VerticesOn ******************/ - /**** md5 signature: c771e20b61ac134ac88806946a87ed16 ****/ + /****** BOPDS_FaceInfo::VerticesOn ******/ + /****** md5 signature: c771e20b61ac134ac88806946a87ed16 ******/ %feature("compactdefaultargs") VerticesOn; %feature("autodoc", "Return ------- @@ -2597,8 +2597,8 @@ Selector returns the list of indices for vertices of the face that have state on ") VerticesOn; const TColStd_MapOfInteger & VerticesOn(); - /****************** VerticesSc ******************/ - /**** md5 signature: 38fefd7c99e35fc9b840686df0e2c151 ****/ + /****** BOPDS_FaceInfo::VerticesSc ******/ + /****** md5 signature: 38fefd7c99e35fc9b840686df0e2c151 ******/ %feature("compactdefaultargs") VerticesSc; %feature("autodoc", "Return ------- @@ -2624,8 +2624,8 @@ Selector returns the list of indices for section vertices of the face. *************************/ class BOPDS_IndexRange { public: - /****************** BOPDS_IndexRange ******************/ - /**** md5 signature: 99ee5feaa0f5f2e8071f8ec605997513 ****/ + /****** BOPDS_IndexRange::BOPDS_IndexRange ******/ + /****** md5 signature: 99ee5feaa0f5f2e8071f8ec605997513 ******/ %feature("compactdefaultargs") BOPDS_IndexRange; %feature("autodoc", "Return ------- @@ -2637,8 +2637,8 @@ Empty constructor. ") BOPDS_IndexRange; BOPDS_IndexRange(); - /****************** Contains ******************/ - /**** md5 signature: de9f24e21b92884020c7cb857ce850c9 ****/ + /****** BOPDS_IndexRange::Contains ******/ + /****** md5 signature: de9f24e21b92884020c7cb857ce850c9 ******/ %feature("compactdefaultargs") Contains; %feature("autodoc", " Parameters @@ -2655,8 +2655,8 @@ Query returns true if the range contains . ") Contains; Standard_Boolean Contains(const Standard_Integer theIndex); - /****************** Dump ******************/ - /**** md5 signature: 15b4b2e195645aebb43170ff7f15952a ****/ + /****** BOPDS_IndexRange::Dump ******/ + /****** md5 signature: 15b4b2e195645aebb43170ff7f15952a ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", "Return ------- @@ -2668,8 +2668,8 @@ No available documentation. ") Dump; void Dump(); - /****************** First ******************/ - /**** md5 signature: e9b9b55d0f95896826fc1a7c7b3fdf28 ****/ + /****** BOPDS_IndexRange::First ******/ + /****** md5 signature: e9b9b55d0f95896826fc1a7c7b3fdf28 ******/ %feature("compactdefaultargs") First; %feature("autodoc", "Return ------- @@ -2681,8 +2681,8 @@ Selector returns the first index of the range. ") First; Standard_Integer First(); - /****************** Indices ******************/ - /**** md5 signature: 1aace53eafd7d667008f722852898b9a ****/ + /****** BOPDS_IndexRange::Indices ******/ + /****** md5 signature: 1aace53eafd7d667008f722852898b9a ******/ %feature("compactdefaultargs") Indices; %feature("autodoc", " Parameters @@ -2699,8 +2699,8 @@ Selector returns the first index of the range returns the second index o ") Indices; void Indices(Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** Last ******************/ - /**** md5 signature: b34ffc707f6352bb6f1f4c928c84e251 ****/ + /****** BOPDS_IndexRange::Last ******/ + /****** md5 signature: b34ffc707f6352bb6f1f4c928c84e251 ******/ %feature("compactdefaultargs") Last; %feature("autodoc", "Return ------- @@ -2712,8 +2712,8 @@ Selector returns the second index of the range. ") Last; Standard_Integer Last(); - /****************** SetFirst ******************/ - /**** md5 signature: c94ec2556faffb224a51e9a98299f9b0 ****/ + /****** BOPDS_IndexRange::SetFirst ******/ + /****** md5 signature: c94ec2556faffb224a51e9a98299f9b0 ******/ %feature("compactdefaultargs") SetFirst; %feature("autodoc", " Parameters @@ -2730,8 +2730,8 @@ Modifier sets the first index of the range. ") SetFirst; void SetFirst(const Standard_Integer theI1); - /****************** SetIndices ******************/ - /**** md5 signature: 17bcbf84f32630b3982706ad9985593d ****/ + /****** BOPDS_IndexRange::SetIndices ******/ + /****** md5 signature: 17bcbf84f32630b3982706ad9985593d ******/ %feature("compactdefaultargs") SetIndices; %feature("autodoc", " Parameters @@ -2749,8 +2749,8 @@ Modifier sets the first index of the range sets the second index of the ") SetIndices; void SetIndices(const Standard_Integer theI1, const Standard_Integer theI2); - /****************** SetLast ******************/ - /**** md5 signature: d221889926836d6791218229fbe20e40 ****/ + /****** BOPDS_IndexRange::SetLast ******/ + /****** md5 signature: d221889926836d6791218229fbe20e40 ******/ %feature("compactdefaultargs") SetLast; %feature("autodoc", " Parameters @@ -2784,8 +2784,8 @@ Modifier sets the second index of the range. ***********************/ class BOPDS_Iterator { public: - /****************** BOPDS_Iterator ******************/ - /**** md5 signature: e39e9f80c57e8765bf71893ec4fb5f63 ****/ + /****** BOPDS_Iterator::BOPDS_Iterator ******/ + /****** md5 signature: e39e9f80c57e8765bf71893ec4fb5f63 ******/ %feature("compactdefaultargs") BOPDS_Iterator; %feature("autodoc", "Return ------- @@ -2797,8 +2797,8 @@ Empty constructor. ") BOPDS_Iterator; BOPDS_Iterator(); - /****************** BOPDS_Iterator ******************/ - /**** md5 signature: bd9e216d5b71b4ba1d9bd6a1bf309cd2 ****/ + /****** BOPDS_Iterator::BOPDS_Iterator ******/ + /****** md5 signature: bd9e216d5b71b4ba1d9bd6a1bf309cd2 ******/ %feature("compactdefaultargs") BOPDS_Iterator; %feature("autodoc", " Parameters @@ -2815,8 +2815,8 @@ Constructor @param theallocator the allocator to manage the memory. ") BOPDS_Iterator; BOPDS_Iterator(const opencascade::handle & theAllocator); - /****************** BlockLength ******************/ - /**** md5 signature: c48a9343cc3ae4a238042d11b275a008 ****/ + /****** BOPDS_Iterator::BlockLength ******/ + /****** md5 signature: c48a9343cc3ae4a238042d11b275a008 ******/ %feature("compactdefaultargs") BlockLength; %feature("autodoc", "Return ------- @@ -2828,8 +2828,8 @@ Returns the block length. ") BlockLength; Standard_Integer BlockLength(); - /****************** DS ******************/ - /**** md5 signature: 276afbb7db8ff236fa734c0f56c3dcb8 ****/ + /****** BOPDS_Iterator::DS ******/ + /****** md5 signature: 276afbb7db8ff236fa734c0f56c3dcb8 ******/ %feature("compactdefaultargs") DS; %feature("autodoc", "Return ------- @@ -2841,8 +2841,8 @@ Selector returns the data structure. ") DS; const BOPDS_DS & DS(); - /****************** ExpectedLength ******************/ - /**** md5 signature: a3e8f5f279b8e7d7a447257012becee5 ****/ + /****** BOPDS_Iterator::ExpectedLength ******/ + /****** md5 signature: a3e8f5f279b8e7d7a447257012becee5 ******/ %feature("compactdefaultargs") ExpectedLength; %feature("autodoc", "Return ------- @@ -2854,8 +2854,8 @@ Returns the number of intersections founded. ") ExpectedLength; Standard_Integer ExpectedLength(); - /****************** Initialize ******************/ - /**** md5 signature: 7fb13a93a2b1f54b2e5a8d53cbc8474e ****/ + /****** BOPDS_Iterator::Initialize ******/ + /****** md5 signature: 7fb13a93a2b1f54b2e5a8d53cbc8474e ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -2873,8 +2873,8 @@ Initializes the iterator thetype1 - the first type of shape thetype2 - the secon ") Initialize; void Initialize(const TopAbs_ShapeEnum theType1, const TopAbs_ShapeEnum theType2); - /****************** IntersectExt ******************/ - /**** md5 signature: 9d4c97d64751f482efc17b0e0a1e1b4e ****/ + /****** BOPDS_Iterator::IntersectExt ******/ + /****** md5 signature: 9d4c97d64751f482efc17b0e0a1e1b4e ******/ %feature("compactdefaultargs") IntersectExt; %feature("autodoc", " Parameters @@ -2891,8 +2891,8 @@ Updates the tree of bounding boxes with increased boxes and intersects such elem ") IntersectExt; void IntersectExt(const TColStd_MapOfInteger & theIndicies); - /****************** More ******************/ - /**** md5 signature: 6f6e915c9a3dca758c059d9e8af02dff ****/ + /****** BOPDS_Iterator::More ******/ + /****** md5 signature: 6f6e915c9a3dca758c059d9e8af02dff ******/ %feature("compactdefaultargs") More; %feature("autodoc", "Return ------- @@ -2904,8 +2904,8 @@ Returns true if still there are pairs of intersected shapes. ") More; Standard_Boolean More(); - /****************** NbExtInterfs ******************/ - /**** md5 signature: dfeacf68558221c9d70c06d649e6cdeb ****/ + /****** BOPDS_Iterator::NbExtInterfs ******/ + /****** md5 signature: dfeacf68558221c9d70c06d649e6cdeb ******/ %feature("compactdefaultargs") NbExtInterfs; %feature("autodoc", "Return ------- @@ -2917,8 +2917,8 @@ No available documentation. ") NbExtInterfs; static Standard_Integer NbExtInterfs(); - /****************** Next ******************/ - /**** md5 signature: f35c0df5f1d7c877986db18081404532 ****/ + /****** BOPDS_Iterator::Next ******/ + /****** md5 signature: f35c0df5f1d7c877986db18081404532 ******/ %feature("compactdefaultargs") Next; %feature("autodoc", "Return ------- @@ -2930,8 +2930,8 @@ Moves iterations ahead. ") Next; void Next(); - /****************** Prepare ******************/ - /**** md5 signature: 26ccd55174924d4ca54bbaad1979b27a ****/ + /****** BOPDS_Iterator::Prepare ******/ + /****** md5 signature: 26ccd55174924d4ca54bbaad1979b27a ******/ %feature("compactdefaultargs") Prepare; %feature("autodoc", " Parameters @@ -2950,8 +2950,8 @@ Perform the intersection algorithm and prepare the results to be used. ") Prepare; virtual void Prepare(const opencascade::handle & theCtx = opencascade::handle(), const Standard_Boolean theCheckOBB = Standard_False, const Standard_Real theFuzzyValue = Precision::Confusion()); - /****************** RunParallel ******************/ - /**** md5 signature: f5c0831f57ee3d1a6d238da5afdb5132 ****/ + /****** BOPDS_Iterator::RunParallel ******/ + /****** md5 signature: f5c0831f57ee3d1a6d238da5afdb5132 ******/ %feature("compactdefaultargs") RunParallel; %feature("autodoc", "Return ------- @@ -2963,8 +2963,8 @@ Returns the flag of parallel processing. ") RunParallel; Standard_Boolean RunParallel(); - /****************** SetDS ******************/ - /**** md5 signature: 7bd5ab1492cdf0ff6021812020f58396 ****/ + /****** BOPDS_Iterator::SetDS ******/ + /****** md5 signature: 7bd5ab1492cdf0ff6021812020f58396 ******/ %feature("compactdefaultargs") SetDS; %feature("autodoc", " Parameters @@ -2981,8 +2981,8 @@ Modifier sets the data structure to process. ") SetDS; void SetDS(const BOPDS_PDS & pDS); - /****************** SetRunParallel ******************/ - /**** md5 signature: 0a82d8fce1725e61203aa8606820455a ****/ + /****** BOPDS_Iterator::SetRunParallel ******/ + /****** md5 signature: 0a82d8fce1725e61203aa8606820455a ******/ %feature("compactdefaultargs") SetRunParallel; %feature("autodoc", " Parameters @@ -2999,8 +2999,8 @@ Set the flag of parallel processing if is true the parallel processing ") SetRunParallel; void SetRunParallel(const Standard_Boolean theFlag); - /****************** Value ******************/ - /**** md5 signature: e158a5c3b0133290b10886e826c5728a ****/ + /****** BOPDS_Iterator::Value ******/ + /****** md5 signature: e158a5c3b0133290b10886e826c5728a ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -3031,8 +3031,8 @@ Returns indices (ds) of intersected shapes theindex1 - the index of the first sh *******************/ class BOPDS_Pair { public: - /****************** BOPDS_Pair ******************/ - /**** md5 signature: 5718626f84016ecf34e58bc5be00bee7 ****/ + /****** BOPDS_Pair::BOPDS_Pair ******/ + /****** md5 signature: 5718626f84016ecf34e58bc5be00bee7 ******/ %feature("compactdefaultargs") BOPDS_Pair; %feature("autodoc", "Return ------- @@ -3044,8 +3044,8 @@ No available documentation. ") BOPDS_Pair; BOPDS_Pair(); - /****************** BOPDS_Pair ******************/ - /**** md5 signature: a80bf875fa78b42adb2f59e1eefedf94 ****/ + /****** BOPDS_Pair::BOPDS_Pair ******/ + /****** md5 signature: a80bf875fa78b42adb2f59e1eefedf94 ******/ %feature("compactdefaultargs") BOPDS_Pair; %feature("autodoc", " Parameters @@ -3063,8 +3063,8 @@ No available documentation. ") BOPDS_Pair; BOPDS_Pair(const Standard_Integer theIndex1, const Standard_Integer theIndex2); - /****************** Indices ******************/ - /**** md5 signature: fc670924ecc87d0f1a8c9d00f037ebe4 ****/ + /****** BOPDS_Pair::Indices ******/ + /****** md5 signature: fc670924ecc87d0f1a8c9d00f037ebe4 ******/ %feature("compactdefaultargs") Indices; %feature("autodoc", " Parameters @@ -3081,8 +3081,8 @@ Gets the indices. ") Indices; void Indices(Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** IsEqual ******************/ - /**** md5 signature: 2a26c85591699ee3a4cd3636721cf551 ****/ + /****** BOPDS_Pair::IsEqual ******/ + /****** md5 signature: 2a26c85591699ee3a4cd3636721cf551 ******/ %feature("compactdefaultargs") IsEqual; %feature("autodoc", " Parameters @@ -3099,8 +3099,8 @@ Returns true if the pair is equal to . ") IsEqual; Standard_Boolean IsEqual(const BOPDS_Pair & theOther); - /****************** SetIndices ******************/ - /**** md5 signature: 4a99b9589d6dfa574dfdd1dec8b330c1 ****/ + /****** BOPDS_Pair::SetIndices ******/ + /****** md5 signature: 4a99b9589d6dfa574dfdd1dec8b330c1 ******/ %feature("compactdefaultargs") SetIndices; %feature("autodoc", " Parameters @@ -3146,8 +3146,8 @@ def __eq__(self, right): *******************/ class BOPDS_Pave { public: - /****************** BOPDS_Pave ******************/ - /**** md5 signature: 479b452478ff7c0152e5ce58231932e9 ****/ + /****** BOPDS_Pave::BOPDS_Pave ******/ + /****** md5 signature: 479b452478ff7c0152e5ce58231932e9 ******/ %feature("compactdefaultargs") BOPDS_Pave; %feature("autodoc", "Return ------- @@ -3159,8 +3159,8 @@ Empty constructor. ") BOPDS_Pave; BOPDS_Pave(); - /****************** Contents ******************/ - /**** md5 signature: 8d6c165389fbe2212946ff8887dce0d9 ****/ + /****** BOPDS_Pave::Contents ******/ + /****** md5 signature: 8d6c165389fbe2212946ff8887dce0d9 ******/ %feature("compactdefaultargs") Contents; %feature("autodoc", " Parameters @@ -3177,8 +3177,8 @@ Selector returns the index of vertex returns the parameter of vertex ") Contents; void Contents(Standard_Integer &OutValue, Standard_Real &OutValue); - /****************** Dump ******************/ - /**** md5 signature: 15b4b2e195645aebb43170ff7f15952a ****/ + /****** BOPDS_Pave::Dump ******/ + /****** md5 signature: 15b4b2e195645aebb43170ff7f15952a ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", "Return ------- @@ -3190,8 +3190,8 @@ No available documentation. ") Dump; void Dump(); - /****************** Index ******************/ - /**** md5 signature: 407d80ef3037d55996765198adea3908 ****/ + /****** BOPDS_Pave::Index ******/ + /****** md5 signature: 407d80ef3037d55996765198adea3908 ******/ %feature("compactdefaultargs") Index; %feature("autodoc", "Return ------- @@ -3203,8 +3203,8 @@ Selector returns the index of vertex. ") Index; Standard_Integer Index(); - /****************** IsEqual ******************/ - /**** md5 signature: 0b129306f2f26156fa7470e2a273ce31 ****/ + /****** BOPDS_Pave::IsEqual ******/ + /****** md5 signature: 0b129306f2f26156fa7470e2a273ce31 ******/ %feature("compactdefaultargs") IsEqual; %feature("autodoc", " Parameters @@ -3221,8 +3221,8 @@ Query returns true if thr parameter od this is equal to the parameter of . ") SetIndex; void SetIndex(const Standard_Integer theIndex); - /****************** SetParameter ******************/ - /**** md5 signature: ddedd9344e341801e5774c5b9b817896 ****/ + /****** BOPDS_Pave::SetParameter ******/ + /****** md5 signature: ddedd9344e341801e5774c5b9b817896 ******/ %feature("compactdefaultargs") SetParameter; %feature("autodoc", " Parameters @@ -3316,8 +3316,8 @@ def __eq__(self, right): ************************/ class BOPDS_PaveBlock : public Standard_Transient { public: - /****************** BOPDS_PaveBlock ******************/ - /**** md5 signature: 23cb6ec47b2be25244db20ee836f5557 ****/ + /****** BOPDS_PaveBlock::BOPDS_PaveBlock ******/ + /****** md5 signature: 23cb6ec47b2be25244db20ee836f5557 ******/ %feature("compactdefaultargs") BOPDS_PaveBlock; %feature("autodoc", "Return ------- @@ -3329,8 +3329,8 @@ Empty constructor. ") BOPDS_PaveBlock; BOPDS_PaveBlock(); - /****************** BOPDS_PaveBlock ******************/ - /**** md5 signature: 4e7cca86dd9c859a976d2a5e52959273 ****/ + /****** BOPDS_PaveBlock::BOPDS_PaveBlock ******/ + /****** md5 signature: 4e7cca86dd9c859a976d2a5e52959273 ******/ %feature("compactdefaultargs") BOPDS_PaveBlock; %feature("autodoc", " Parameters @@ -3347,8 +3347,8 @@ Constructor @param theallocator the allocator to manage the memory. ") BOPDS_PaveBlock; BOPDS_PaveBlock(const opencascade::handle & theAllocator); - /****************** AppendExtPave ******************/ - /**** md5 signature: 3fb63f2f1bbdb3deb3be97a142c1f2bc ****/ + /****** BOPDS_PaveBlock::AppendExtPave ******/ + /****** md5 signature: 3fb63f2f1bbdb3deb3be97a142c1f2bc ******/ %feature("compactdefaultargs") AppendExtPave; %feature("autodoc", " Parameters @@ -3365,8 +3365,8 @@ Modifier appends extra paves . ") AppendExtPave; void AppendExtPave(const BOPDS_Pave & thePave); - /****************** AppendExtPave1 ******************/ - /**** md5 signature: a34cb6cef949ac8e2550982959c6a8c4 ****/ + /****** BOPDS_PaveBlock::AppendExtPave1 ******/ + /****** md5 signature: a34cb6cef949ac8e2550982959c6a8c4 ******/ %feature("compactdefaultargs") AppendExtPave1; %feature("autodoc", " Parameters @@ -3383,8 +3383,8 @@ Modifier appends extra pave . ") AppendExtPave1; void AppendExtPave1(const BOPDS_Pave & thePave); - /****************** ChangeExtPaves ******************/ - /**** md5 signature: 0c4d0169ffc2ec36903d959a070780f8 ****/ + /****** BOPDS_PaveBlock::ChangeExtPaves ******/ + /****** md5 signature: 0c4d0169ffc2ec36903d959a070780f8 ******/ %feature("compactdefaultargs") ChangeExtPaves; %feature("autodoc", "Return ------- @@ -3396,8 +3396,8 @@ Selector / modifier returns the extra paves. ") ChangeExtPaves; BOPDS_ListOfPave & ChangeExtPaves(); - /****************** ContainsParameter ******************/ - /**** md5 signature: 41f6f8b947fed753bba44380a63f845a ****/ + /****** BOPDS_PaveBlock::ContainsParameter ******/ + /****** md5 signature: 41f6f8b947fed753bba44380a63f845a ******/ %feature("compactdefaultargs") ContainsParameter; %feature("autodoc", " Parameters @@ -3415,8 +3415,8 @@ Query returns true if the extra paves contain the pave with given value of the p ") ContainsParameter; Standard_Boolean ContainsParameter(const Standard_Real thePrm, const Standard_Real theTol, Standard_Integer &OutValue); - /****************** Dump ******************/ - /**** md5 signature: 15b4b2e195645aebb43170ff7f15952a ****/ + /****** BOPDS_PaveBlock::Dump ******/ + /****** md5 signature: 15b4b2e195645aebb43170ff7f15952a ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", "Return ------- @@ -3428,8 +3428,8 @@ No available documentation. ") Dump; void Dump(); - /****************** Edge ******************/ - /**** md5 signature: 76748ffd591f786c44105943fcd6acd5 ****/ + /****** BOPDS_PaveBlock::Edge ******/ + /****** md5 signature: 76748ffd591f786c44105943fcd6acd5 ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", "Return ------- @@ -3441,8 +3441,8 @@ Selector returns the index of edge of pave block. ") Edge; Standard_Integer Edge(); - /****************** ExtPaves ******************/ - /**** md5 signature: fa9428f7fcc4dc023ae946ab5a79308f ****/ + /****** BOPDS_PaveBlock::ExtPaves ******/ + /****** md5 signature: fa9428f7fcc4dc023ae946ab5a79308f ******/ %feature("compactdefaultargs") ExtPaves; %feature("autodoc", "Return ------- @@ -3454,8 +3454,8 @@ Selector returns the extra paves. ") ExtPaves; const BOPDS_ListOfPave & ExtPaves(); - /****************** HasEdge ******************/ - /**** md5 signature: b29d7c6fb0d75a5501e02d3f7002ad41 ****/ + /****** BOPDS_PaveBlock::HasEdge ******/ + /****** md5 signature: b29d7c6fb0d75a5501e02d3f7002ad41 ******/ %feature("compactdefaultargs") HasEdge; %feature("autodoc", "Return ------- @@ -3467,8 +3467,8 @@ Query returns true if the pave block has edge. ") HasEdge; Standard_Boolean HasEdge(); - /****************** HasEdge ******************/ - /**** md5 signature: 67f2d989d5efe4b20f4f791ce92927e3 ****/ + /****** BOPDS_PaveBlock::HasEdge ******/ + /****** md5 signature: 67f2d989d5efe4b20f4f791ce92927e3 ******/ %feature("compactdefaultargs") HasEdge; %feature("autodoc", " Parameters @@ -3484,8 +3484,8 @@ Query returns true if the pave block has edge returns the index of edge & theOther); - /****************** HasShrunkData ******************/ - /**** md5 signature: f5e0c4ec7e5718ef2f5bf9a86199c6ea ****/ + /****** BOPDS_PaveBlock::HasShrunkData ******/ + /****** md5 signature: f5e0c4ec7e5718ef2f5bf9a86199c6ea ******/ %feature("compactdefaultargs") HasShrunkData; %feature("autodoc", "Return ------- @@ -3515,8 +3515,8 @@ Query returns true if the pave block contains the shrunk data. ") HasShrunkData; Standard_Boolean HasShrunkData(); - /****************** Indices ******************/ - /**** md5 signature: 7ef0b06999c91021b91c1bdc4088cff4 ****/ + /****** BOPDS_PaveBlock::Indices ******/ + /****** md5 signature: 7ef0b06999c91021b91c1bdc4088cff4 ******/ %feature("compactdefaultargs") Indices; %feature("autodoc", " Parameters @@ -3533,8 +3533,8 @@ Selector returns the pave indices of the pave block. ") Indices; void Indices(Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** IsSplitEdge ******************/ - /**** md5 signature: 07c70c92ad2a4b75b8028068f876898b ****/ + /****** BOPDS_PaveBlock::IsSplitEdge ******/ + /****** md5 signature: 07c70c92ad2a4b75b8028068f876898b ******/ %feature("compactdefaultargs") IsSplitEdge; %feature("autodoc", "Return ------- @@ -3546,8 +3546,8 @@ Query returns true if the edge is equal to the original edge of the pave block. ") IsSplitEdge; Standard_Boolean IsSplitEdge(); - /****************** IsSplittable ******************/ - /**** md5 signature: 4b9dd74e2aa42018fe83fe5063aa511b ****/ + /****** BOPDS_PaveBlock::IsSplittable ******/ + /****** md5 signature: 4b9dd74e2aa42018fe83fe5063aa511b ******/ %feature("compactdefaultargs") IsSplittable; %feature("autodoc", "Return ------- @@ -3559,8 +3559,8 @@ Query returns false if the pave block has a too short shrunk range and cannot be ") IsSplittable; Standard_Boolean IsSplittable(); - /****************** IsToUpdate ******************/ - /**** md5 signature: c5adb7d93c3efa0160d1d2d2f63f8b65 ****/ + /****** BOPDS_PaveBlock::IsToUpdate ******/ + /****** md5 signature: c5adb7d93c3efa0160d1d2d2f63f8b65 ******/ %feature("compactdefaultargs") IsToUpdate; %feature("autodoc", "Return ------- @@ -3572,8 +3572,8 @@ Query returns true if the pave block contains extra paves. ") IsToUpdate; Standard_Boolean IsToUpdate(); - /****************** OriginalEdge ******************/ - /**** md5 signature: db9c8a87977e4eabaf100d8c65531a7f ****/ + /****** BOPDS_PaveBlock::OriginalEdge ******/ + /****** md5 signature: db9c8a87977e4eabaf100d8c65531a7f ******/ %feature("compactdefaultargs") OriginalEdge; %feature("autodoc", "Return ------- @@ -3585,8 +3585,8 @@ Selector returns the index of original edge of pave block. ") OriginalEdge; Standard_Integer OriginalEdge(); - /****************** Pave1 ******************/ - /**** md5 signature: c069a811d2db1154789a8c26ef94db8d ****/ + /****** BOPDS_PaveBlock::Pave1 ******/ + /****** md5 signature: c069a811d2db1154789a8c26ef94db8d ******/ %feature("compactdefaultargs") Pave1; %feature("autodoc", "Return ------- @@ -3598,8 +3598,8 @@ Selector returns the first pave. ") Pave1; const BOPDS_Pave & Pave1(); - /****************** Pave2 ******************/ - /**** md5 signature: 5cb0f045be87975a3e4e0fb36f4561b0 ****/ + /****** BOPDS_PaveBlock::Pave2 ******/ + /****** md5 signature: 5cb0f045be87975a3e4e0fb36f4561b0 ******/ %feature("compactdefaultargs") Pave2; %feature("autodoc", "Return ------- @@ -3611,8 +3611,8 @@ Selector returns the second pave. ") Pave2; const BOPDS_Pave & Pave2(); - /****************** Range ******************/ - /**** md5 signature: 8ddfe2340263927f7a7249797228e7e9 ****/ + /****** BOPDS_PaveBlock::Range ******/ + /****** md5 signature: 8ddfe2340263927f7a7249797228e7e9 ******/ %feature("compactdefaultargs") Range; %feature("autodoc", " Parameters @@ -3629,8 +3629,8 @@ Selector returns the parametric range of the pave block. ") Range; void Range(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** RemoveExtPave ******************/ - /**** md5 signature: 1912180e16de8e42d4618dd6241a8eee ****/ + /****** BOPDS_PaveBlock::RemoveExtPave ******/ + /****** md5 signature: 1912180e16de8e42d4618dd6241a8eee ******/ %feature("compactdefaultargs") RemoveExtPave; %feature("autodoc", " Parameters @@ -3647,8 +3647,8 @@ Modifier removes a pave with the given vertex number from extra paves. ") RemoveExtPave; void RemoveExtPave(const Standard_Integer theVertNum); - /****************** SetEdge ******************/ - /**** md5 signature: e5f0cb270588385f5c43b443c7a3911e ****/ + /****** BOPDS_PaveBlock::SetEdge ******/ + /****** md5 signature: e5f0cb270588385f5c43b443c7a3911e ******/ %feature("compactdefaultargs") SetEdge; %feature("autodoc", " Parameters @@ -3665,8 +3665,8 @@ Modifier sets the index of edge of pave block . ") SetEdge; void SetEdge(const Standard_Integer theEdge); - /****************** SetOriginalEdge ******************/ - /**** md5 signature: 3cf310bce40a48b55779ed2e0ae00c2b ****/ + /****** BOPDS_PaveBlock::SetOriginalEdge ******/ + /****** md5 signature: 3cf310bce40a48b55779ed2e0ae00c2b ******/ %feature("compactdefaultargs") SetOriginalEdge; %feature("autodoc", " Parameters @@ -3683,8 +3683,8 @@ Modifier sets the index of original edge of the pave block . ") SetOriginalEdge; void SetOriginalEdge(const Standard_Integer theEdge); - /****************** SetPave1 ******************/ - /**** md5 signature: 0d77581426baec39e7889318dd23befc ****/ + /****** BOPDS_PaveBlock::SetPave1 ******/ + /****** md5 signature: 0d77581426baec39e7889318dd23befc ******/ %feature("compactdefaultargs") SetPave1; %feature("autodoc", " Parameters @@ -3701,8 +3701,8 @@ Modifier sets the first pave . ") SetPave1; void SetPave1(const BOPDS_Pave & thePave); - /****************** SetPave2 ******************/ - /**** md5 signature: 54001b905c67664104f00a04f5a1a447 ****/ + /****** BOPDS_PaveBlock::SetPave2 ******/ + /****** md5 signature: 54001b905c67664104f00a04f5a1a447 ******/ %feature("compactdefaultargs") SetPave2; %feature("autodoc", " Parameters @@ -3719,8 +3719,8 @@ Modifier sets the second pave . ") SetPave2; void SetPave2(const BOPDS_Pave & thePave); - /****************** SetShrunkData ******************/ - /**** md5 signature: 88b6ec09d6f99c638baa1bd4a5aad644 ****/ + /****** BOPDS_PaveBlock::SetShrunkData ******/ + /****** md5 signature: 88b6ec09d6f99c638baa1bd4a5aad644 ******/ %feature("compactdefaultargs") SetShrunkData; %feature("autodoc", " Parameters @@ -3740,8 +3740,8 @@ Modifier sets the shrunk data for the pave block , - shrunk ran ") SetShrunkData; void SetShrunkData(const Standard_Real theTS1, const Standard_Real theTS2, const Bnd_Box & theBox, const Standard_Boolean theIsSplittable); - /****************** ShrunkData ******************/ - /**** md5 signature: 6c493466ad5bb4913f72330dcfd83ff3 ****/ + /****** BOPDS_PaveBlock::ShrunkData ******/ + /****** md5 signature: 6c493466ad5bb4913f72330dcfd83ff3 ******/ %feature("compactdefaultargs") ShrunkData; %feature("autodoc", " Parameters @@ -3760,8 +3760,8 @@ Selector returns the shrunk data for the pave block , - shrunk ") ShrunkData; void ShrunkData(Standard_Real &OutValue, Standard_Real &OutValue, Bnd_Box & theBox, Standard_Boolean &OutValue); - /****************** Update ******************/ - /**** md5 signature: 475ca3e15ec8cd26334eaa1c94f1d708 ****/ + /****** BOPDS_PaveBlock::Update ******/ + /****** md5 signature: 475ca3e15ec8cd26334eaa1c94f1d708 ******/ %feature("compactdefaultargs") Update; %feature("autodoc", " Parameters @@ -3795,8 +3795,8 @@ Modifier updates the pave block. the extra paves are used to create new pave blo ********************/ class BOPDS_Point { public: - /****************** BOPDS_Point ******************/ - /**** md5 signature: 006772e0c3a6ee0ca4e888773b24cd13 ****/ + /****** BOPDS_Point::BOPDS_Point ******/ + /****** md5 signature: 006772e0c3a6ee0ca4e888773b24cd13 ******/ %feature("compactdefaultargs") BOPDS_Point; %feature("autodoc", "Return ------- @@ -3808,8 +3808,8 @@ Empty constructor. ") BOPDS_Point; BOPDS_Point(); - /****************** Index ******************/ - /**** md5 signature: 407d80ef3037d55996765198adea3908 ****/ + /****** BOPDS_Point::Index ******/ + /****** md5 signature: 407d80ef3037d55996765198adea3908 ******/ %feature("compactdefaultargs") Index; %feature("autodoc", "Return ------- @@ -3821,8 +3821,8 @@ Selector returns index of the vertex. ") Index; Standard_Integer Index(); - /****************** Pnt ******************/ - /**** md5 signature: c0bafeed50f4eebb5964e2bf8520bf90 ****/ + /****** BOPDS_Point::Pnt ******/ + /****** md5 signature: c0bafeed50f4eebb5964e2bf8520bf90 ******/ %feature("compactdefaultargs") Pnt; %feature("autodoc", "Return ------- @@ -3834,8 +3834,8 @@ Selector returns 3d point. ") Pnt; const gp_Pnt Pnt(); - /****************** Pnt2D1 ******************/ - /**** md5 signature: 03938184fe4b834525188dedf6bafc0b ****/ + /****** BOPDS_Point::Pnt2D1 ******/ + /****** md5 signature: 03938184fe4b834525188dedf6bafc0b ******/ %feature("compactdefaultargs") Pnt2D1; %feature("autodoc", "Return ------- @@ -3847,8 +3847,8 @@ Selector returns 2d point on the first face . ") Pnt2D1; const gp_Pnt2d Pnt2D1(); - /****************** Pnt2D2 ******************/ - /**** md5 signature: 138377232adca24cd39eb6dbfc8e5337 ****/ + /****** BOPDS_Point::Pnt2D2 ******/ + /****** md5 signature: 138377232adca24cd39eb6dbfc8e5337 ******/ %feature("compactdefaultargs") Pnt2D2; %feature("autodoc", "Return ------- @@ -3860,8 +3860,8 @@ Selector returns 2d point on the second face . ") Pnt2D2; const gp_Pnt2d Pnt2D2(); - /****************** SetIndex ******************/ - /**** md5 signature: 8837cdd415a0f5c290f45964b1b4e33b ****/ + /****** BOPDS_Point::SetIndex ******/ + /****** md5 signature: 8837cdd415a0f5c290f45964b1b4e33b ******/ %feature("compactdefaultargs") SetIndex; %feature("autodoc", " Parameters @@ -3878,8 +3878,8 @@ Modifier sets the index of the vertex . ") SetIndex; void SetIndex(const Standard_Integer theIndex); - /****************** SetPnt ******************/ - /**** md5 signature: 492367fdc36391270c6513bf1a403636 ****/ + /****** BOPDS_Point::SetPnt ******/ + /****** md5 signature: 492367fdc36391270c6513bf1a403636 ******/ %feature("compactdefaultargs") SetPnt; %feature("autodoc", " Parameters @@ -3896,8 +3896,8 @@ Modifier sets 3d point . ") SetPnt; void SetPnt(const gp_Pnt & thePnt); - /****************** SetPnt2D1 ******************/ - /**** md5 signature: 7cf3a0394468ed5656c3a88ab27aca39 ****/ + /****** BOPDS_Point::SetPnt2D1 ******/ + /****** md5 signature: 7cf3a0394468ed5656c3a88ab27aca39 ******/ %feature("compactdefaultargs") SetPnt2D1; %feature("autodoc", " Parameters @@ -3914,8 +3914,8 @@ Modifier sets 2d point on the first face . ") SetPnt2D1; void SetPnt2D1(const gp_Pnt2d & thePnt); - /****************** SetPnt2D2 ******************/ - /**** md5 signature: d6affd6a44a57ee1fa22a2399b87fc3a ****/ + /****** BOPDS_Point::SetPnt2D2 ******/ + /****** md5 signature: d6affd6a44a57ee1fa22a2399b87fc3a ******/ %feature("compactdefaultargs") SetPnt2D2; %feature("autodoc", " Parameters @@ -3946,8 +3946,8 @@ Modifier sets 2d point on the second face . ************************/ class BOPDS_ShapeInfo { public: - /****************** BOPDS_ShapeInfo ******************/ - /**** md5 signature: 8d0a572bef2463ea9fbdd5e7fd05e081 ****/ + /****** BOPDS_ShapeInfo::BOPDS_ShapeInfo ******/ + /****** md5 signature: 8d0a572bef2463ea9fbdd5e7fd05e081 ******/ %feature("compactdefaultargs") BOPDS_ShapeInfo; %feature("autodoc", "Return ------- @@ -3959,8 +3959,8 @@ Empty constructor. ") BOPDS_ShapeInfo; BOPDS_ShapeInfo(); - /****************** BOPDS_ShapeInfo ******************/ - /**** md5 signature: 7dfadbc51e9908962dbc2d4d564f5aee ****/ + /****** BOPDS_ShapeInfo::BOPDS_ShapeInfo ******/ + /****** md5 signature: 7dfadbc51e9908962dbc2d4d564f5aee ******/ %feature("compactdefaultargs") BOPDS_ShapeInfo; %feature("autodoc", " Parameters @@ -3977,8 +3977,8 @@ Constructor @param theallocator the allocator to manage the memory. ") BOPDS_ShapeInfo; BOPDS_ShapeInfo(const opencascade::handle & theAllocator); - /****************** Box ******************/ - /**** md5 signature: 7c4ea237507e51916495e768089f878e ****/ + /****** BOPDS_ShapeInfo::Box ******/ + /****** md5 signature: 7c4ea237507e51916495e768089f878e ******/ %feature("compactdefaultargs") Box; %feature("autodoc", "Return ------- @@ -3990,8 +3990,8 @@ Selector returns the boundung box of the shape. ") Box; const Bnd_Box & Box(); - /****************** ChangeBox ******************/ - /**** md5 signature: 5631b4e4d9ba9acf6c3e62a29ae5b2c2 ****/ + /****** BOPDS_ShapeInfo::ChangeBox ******/ + /****** md5 signature: 5631b4e4d9ba9acf6c3e62a29ae5b2c2 ******/ %feature("compactdefaultargs") ChangeBox; %feature("autodoc", "Return ------- @@ -4003,8 +4003,8 @@ Selector/modifier returns the boundung box of the shape. ") ChangeBox; Bnd_Box & ChangeBox(); - /****************** ChangeSubShapes ******************/ - /**** md5 signature: cce46b8afe21405c1741f5b05cc2d1a2 ****/ + /****** BOPDS_ShapeInfo::ChangeSubShapes ******/ + /****** md5 signature: cce46b8afe21405c1741f5b05cc2d1a2 ******/ %feature("compactdefaultargs") ChangeSubShapes; %feature("autodoc", "Return ------- @@ -4016,8 +4016,8 @@ Selector/ modifier returns the list of indices of sub-shapes. ") ChangeSubShapes; TColStd_ListOfInteger & ChangeSubShapes(); - /****************** Dump ******************/ - /**** md5 signature: 15b4b2e195645aebb43170ff7f15952a ****/ + /****** BOPDS_ShapeInfo::Dump ******/ + /****** md5 signature: 15b4b2e195645aebb43170ff7f15952a ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", "Return ------- @@ -4029,8 +4029,8 @@ No available documentation. ") Dump; void Dump(); - /****************** Flag ******************/ - /**** md5 signature: a1e7ee9e0f6e3b4294449387a5faac0a ****/ + /****** BOPDS_ShapeInfo::Flag ******/ + /****** md5 signature: a1e7ee9e0f6e3b4294449387a5faac0a ******/ %feature("compactdefaultargs") Flag; %feature("autodoc", "Return ------- @@ -4042,8 +4042,8 @@ Returns the flag. ") Flag; Standard_Integer Flag(); - /****************** HasBRep ******************/ - /**** md5 signature: 85aa9303d8033ef239112f1da1286317 ****/ + /****** BOPDS_ShapeInfo::HasBRep ******/ + /****** md5 signature: 85aa9303d8033ef239112f1da1286317 ******/ %feature("compactdefaultargs") HasBRep; %feature("autodoc", "Return ------- @@ -4055,8 +4055,8 @@ Query returns true if the shape has boundary representation. ") HasBRep; Standard_Boolean HasBRep(); - /****************** HasFlag ******************/ - /**** md5 signature: bf337e3732a94daa45cff0e55a817078 ****/ + /****** BOPDS_ShapeInfo::HasFlag ******/ + /****** md5 signature: bf337e3732a94daa45cff0e55a817078 ******/ %feature("compactdefaultargs") HasFlag; %feature("autodoc", "Return ------- @@ -4068,8 +4068,8 @@ Query returns true if there is flag. ") HasFlag; Standard_Boolean HasFlag(); - /****************** HasFlag ******************/ - /**** md5 signature: d05bf372703d8850d2889fd2855f632f ****/ + /****** BOPDS_ShapeInfo::HasFlag ******/ + /****** md5 signature: d05bf372703d8850d2889fd2855f632f ******/ %feature("compactdefaultargs") HasFlag; %feature("autodoc", " Parameters @@ -4085,8 +4085,8 @@ Query returns true if there is flag. returns the flag theflag. ") HasFlag; Standard_Boolean HasFlag(Standard_Integer &OutValue); - /****************** HasReference ******************/ - /**** md5 signature: 9bac2006ec6742c943cf0d6ba833da5a ****/ + /****** BOPDS_ShapeInfo::HasReference ******/ + /****** md5 signature: 9bac2006ec6742c943cf0d6ba833da5a ******/ %feature("compactdefaultargs") HasReference; %feature("autodoc", "Return ------- @@ -4098,8 +4098,8 @@ No available documentation. ") HasReference; Standard_Boolean HasReference(); - /****************** HasSubShape ******************/ - /**** md5 signature: 8c06b342a7f049675b14c3d60a4d3398 ****/ + /****** BOPDS_ShapeInfo::HasSubShape ******/ + /****** md5 signature: 8c06b342a7f049675b14c3d60a4d3398 ******/ %feature("compactdefaultargs") HasSubShape; %feature("autodoc", " Parameters @@ -4116,8 +4116,8 @@ Query returns true if the shape has sub-shape with index thei. ") HasSubShape; Standard_Boolean HasSubShape(const Standard_Integer theI); - /****************** IsInterfering ******************/ - /**** md5 signature: f2f0c5e2ad949621ff90565dc251f8c6 ****/ + /****** BOPDS_ShapeInfo::IsInterfering ******/ + /****** md5 signature: f2f0c5e2ad949621ff90565dc251f8c6 ******/ %feature("compactdefaultargs") IsInterfering; %feature("autodoc", "Return ------- @@ -4129,8 +4129,8 @@ Returns true if the shape can be participant of an interference //! flag. ") IsInterfering; Standard_Boolean IsInterfering(); - /****************** Reference ******************/ - /**** md5 signature: a49ae0cd48bab924bed904d2db0964c3 ****/ + /****** BOPDS_ShapeInfo::Reference ******/ + /****** md5 signature: a49ae0cd48bab924bed904d2db0964c3 ******/ %feature("compactdefaultargs") Reference; %feature("autodoc", "Return ------- @@ -4142,8 +4142,8 @@ Selector returns the index of a reference information. ") Reference; Standard_Integer Reference(); - /****************** SetBox ******************/ - /**** md5 signature: 08b5255d733c5c76b81013bedaa4c32d ****/ + /****** BOPDS_ShapeInfo::SetBox ******/ + /****** md5 signature: 08b5255d733c5c76b81013bedaa4c32d ******/ %feature("compactdefaultargs") SetBox; %feature("autodoc", " Parameters @@ -4160,8 +4160,8 @@ Modifier sets the boundung box of the shape thebox. ") SetBox; void SetBox(const Bnd_Box & theBox); - /****************** SetFlag ******************/ - /**** md5 signature: 356ab305ce6bb1c1a5cd5f8623e00c78 ****/ + /****** BOPDS_ShapeInfo::SetFlag ******/ + /****** md5 signature: 356ab305ce6bb1c1a5cd5f8623e00c78 ******/ %feature("compactdefaultargs") SetFlag; %feature("autodoc", " Parameters @@ -4178,8 +4178,8 @@ Modifier sets the flag. ") SetFlag; void SetFlag(const Standard_Integer theI); - /****************** SetReference ******************/ - /**** md5 signature: ead7289c6453b0e4a306c996b2f2eac6 ****/ + /****** BOPDS_ShapeInfo::SetReference ******/ + /****** md5 signature: ead7289c6453b0e4a306c996b2f2eac6 ******/ %feature("compactdefaultargs") SetReference; %feature("autodoc", " Parameters @@ -4196,8 +4196,8 @@ Modifier sets the index of a reference information. ") SetReference; void SetReference(const Standard_Integer theI); - /****************** SetShape ******************/ - /**** md5 signature: ea8cd69f1842315314882342f4f38762 ****/ + /****** BOPDS_ShapeInfo::SetShape ******/ + /****** md5 signature: ea8cd69f1842315314882342f4f38762 ******/ %feature("compactdefaultargs") SetShape; %feature("autodoc", " Parameters @@ -4214,8 +4214,8 @@ Modifier sets the shape . ") SetShape; void SetShape(const TopoDS_Shape & theS); - /****************** SetShapeType ******************/ - /**** md5 signature: 4979c0c071d6cc77b255ba651052d5f6 ****/ + /****** BOPDS_ShapeInfo::SetShapeType ******/ + /****** md5 signature: 4979c0c071d6cc77b255ba651052d5f6 ******/ %feature("compactdefaultargs") SetShapeType; %feature("autodoc", " Parameters @@ -4232,8 +4232,8 @@ Modifier sets the type of shape thetype. ") SetShapeType; void SetShapeType(const TopAbs_ShapeEnum theType); - /****************** Shape ******************/ - /**** md5 signature: e2e979bbf0e2f5cedfc0e482bf183e08 ****/ + /****** BOPDS_ShapeInfo::Shape ******/ + /****** md5 signature: e2e979bbf0e2f5cedfc0e482bf183e08 ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -4245,8 +4245,8 @@ Selector returns the shape. ") Shape; const TopoDS_Shape Shape(); - /****************** ShapeType ******************/ - /**** md5 signature: fdb6bbab82f138b7eb96684b837c482d ****/ + /****** BOPDS_ShapeInfo::ShapeType ******/ + /****** md5 signature: fdb6bbab82f138b7eb96684b837c482d ******/ %feature("compactdefaultargs") ShapeType; %feature("autodoc", "Return ------- @@ -4258,8 +4258,8 @@ Selector returns the type of shape. ") ShapeType; TopAbs_ShapeEnum ShapeType(); - /****************** SubShapes ******************/ - /**** md5 signature: 014e993425abfc99dfc2d8c0874fb974 ****/ + /****** BOPDS_ShapeInfo::SubShapes ******/ + /****** md5 signature: 014e993425abfc99dfc2d8c0874fb974 ******/ %feature("compactdefaultargs") SubShapes; %feature("autodoc", "Return ------- @@ -4285,8 +4285,8 @@ Selector returns the list of indices of sub-shapes. **************************/ class BOPDS_SubIterator { public: - /****************** BOPDS_SubIterator ******************/ - /**** md5 signature: b0326185bc073be786446564b2e63bc7 ****/ + /****** BOPDS_SubIterator::BOPDS_SubIterator ******/ + /****** md5 signature: b0326185bc073be786446564b2e63bc7 ******/ %feature("compactdefaultargs") BOPDS_SubIterator; %feature("autodoc", "Return ------- @@ -4298,8 +4298,8 @@ Empty constructor. ") BOPDS_SubIterator; BOPDS_SubIterator(); - /****************** BOPDS_SubIterator ******************/ - /**** md5 signature: 7d7f53a37df32fe2c4a454ccb46756a2 ****/ + /****** BOPDS_SubIterator::BOPDS_SubIterator ******/ + /****** md5 signature: 7d7f53a37df32fe2c4a454ccb46756a2 ******/ %feature("compactdefaultargs") BOPDS_SubIterator; %feature("autodoc", " Parameters @@ -4316,8 +4316,8 @@ Constructor theallocator - the allocator to manage the memory. ") BOPDS_SubIterator; BOPDS_SubIterator(const opencascade::handle & theAllocator); - /****************** DS ******************/ - /**** md5 signature: e2b7a95332d83a907322867b207b5f91 ****/ + /****** BOPDS_SubIterator::DS ******/ + /****** md5 signature: e2b7a95332d83a907322867b207b5f91 ******/ %feature("compactdefaultargs") DS; %feature("autodoc", "Return ------- @@ -4329,8 +4329,8 @@ Returns the data structure. ") DS; const BOPDS_DS & DS(); - /****************** ExpectedLength ******************/ - /**** md5 signature: fbd2b330f0e8a94b7bcf73bf50ddb532 ****/ + /****** BOPDS_SubIterator::ExpectedLength ******/ + /****** md5 signature: fbd2b330f0e8a94b7bcf73bf50ddb532 ******/ %feature("compactdefaultargs") ExpectedLength; %feature("autodoc", "Return ------- @@ -4342,8 +4342,8 @@ Returns the number of interfering pairs. ") ExpectedLength; Standard_Integer ExpectedLength(); - /****************** Initialize ******************/ - /**** md5 signature: 4c9930c75acb9044902a1f8388d68e73 ****/ + /****** BOPDS_SubIterator::Initialize ******/ + /****** md5 signature: 4c9930c75acb9044902a1f8388d68e73 ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", "Return ------- @@ -4355,8 +4355,8 @@ Initializes the iterator. ") Initialize; void Initialize(); - /****************** More ******************/ - /**** md5 signature: cff271d3b32940da94bada40648f9096 ****/ + /****** BOPDS_SubIterator::More ******/ + /****** md5 signature: cff271d3b32940da94bada40648f9096 ******/ %feature("compactdefaultargs") More; %feature("autodoc", "Return ------- @@ -4368,8 +4368,8 @@ Returns true if there are more pairs of intersected shapes. ") More; Standard_Boolean More(); - /****************** Next ******************/ - /**** md5 signature: 1201a55f750036045cd397a65f07fc7d ****/ + /****** BOPDS_SubIterator::Next ******/ + /****** md5 signature: 1201a55f750036045cd397a65f07fc7d ******/ %feature("compactdefaultargs") Next; %feature("autodoc", "Return ------- @@ -4381,8 +4381,8 @@ Moves iterations ahead. ") Next; void Next(); - /****************** Prepare ******************/ - /**** md5 signature: f9b9a1436567a44993f3d07dbecfab30 ****/ + /****** BOPDS_SubIterator::Prepare ******/ + /****** md5 signature: f9b9a1436567a44993f3d07dbecfab30 ******/ %feature("compactdefaultargs") Prepare; %feature("autodoc", "Return ------- @@ -4394,8 +4394,8 @@ Perform the intersection algorithm and prepare the results to be used. ") Prepare; virtual void Prepare(); - /****************** SetDS ******************/ - /**** md5 signature: 3dd088536031061a899dbea11ade121b ****/ + /****** BOPDS_SubIterator::SetDS ******/ + /****** md5 signature: 3dd088536031061a899dbea11ade121b ******/ %feature("compactdefaultargs") SetDS; %feature("autodoc", " Parameters @@ -4412,8 +4412,8 @@ Sets the data structure to process. it is used to access the shapes and th ") SetDS; void SetDS(const BOPDS_PDS & pDS); - /****************** SetSubSet1 ******************/ - /**** md5 signature: 252136206a8ce77d68387c3e946bb471 ****/ + /****** BOPDS_SubIterator::SetSubSet1 ******/ + /****** md5 signature: 252136206a8ce77d68387c3e946bb471 ******/ %feature("compactdefaultargs") SetSubSet1; %feature("autodoc", " Parameters @@ -4430,8 +4430,8 @@ Sets the first set of indices to process. ") SetSubSet1; void SetSubSet1(const TColStd_ListOfInteger & theLI); - /****************** SetSubSet2 ******************/ - /**** md5 signature: 4f4e0b922e12e3fe4c09fa2634bef460 ****/ + /****** BOPDS_SubIterator::SetSubSet2 ******/ + /****** md5 signature: 4f4e0b922e12e3fe4c09fa2634bef460 ******/ %feature("compactdefaultargs") SetSubSet2; %feature("autodoc", " Parameters @@ -4448,8 +4448,8 @@ Sets the second set of indices to process. ") SetSubSet2; void SetSubSet2(const TColStd_ListOfInteger & theLI); - /****************** SubSet1 ******************/ - /**** md5 signature: ab0c061163652bd3c7576cf1e5393ed8 ****/ + /****** BOPDS_SubIterator::SubSet1 ******/ + /****** md5 signature: ab0c061163652bd3c7576cf1e5393ed8 ******/ %feature("compactdefaultargs") SubSet1; %feature("autodoc", "Return ------- @@ -4461,8 +4461,8 @@ Returns the first set of indices to process. ") SubSet1; const TColStd_ListOfInteger & SubSet1(); - /****************** SubSet2 ******************/ - /**** md5 signature: acf1124456fc41a861be31a0aee3df0b ****/ + /****** BOPDS_SubIterator::SubSet2 ******/ + /****** md5 signature: acf1124456fc41a861be31a0aee3df0b ******/ %feature("compactdefaultargs") SubSet2; %feature("autodoc", "Return ------- @@ -4474,8 +4474,8 @@ Returns the second set of indices to process. ") SubSet2; const TColStd_ListOfInteger & SubSet2(); - /****************** Value ******************/ - /**** md5 signature: e158a5c3b0133290b10886e826c5728a ****/ + /****** BOPDS_SubIterator::Value ******/ + /****** md5 signature: e158a5c3b0133290b10886e826c5728a ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -4506,8 +4506,8 @@ Returns indices (ds) of intersected shapes theindex1 - the index of the first sh ********************/ class BOPDS_Tools { public: - /****************** HasBRep ******************/ - /**** md5 signature: dc27ba68aac28e872e646f6627a870af ****/ + /****** BOPDS_Tools::HasBRep ******/ + /****** md5 signature: dc27ba68aac28e872e646f6627a870af ******/ %feature("compactdefaultargs") HasBRep; %feature("autodoc", " Parameters @@ -4524,8 +4524,8 @@ Returns true if the type correspond to a shape having boundary representa ") HasBRep; static Standard_Boolean HasBRep(const TopAbs_ShapeEnum theT); - /****************** IsInterfering ******************/ - /**** md5 signature: 114855a12e7685dc30b197df785d635d ****/ + /****** BOPDS_Tools::IsInterfering ******/ + /****** md5 signature: 114855a12e7685dc30b197df785d635d ******/ %feature("compactdefaultargs") IsInterfering; %feature("autodoc", " Parameters @@ -4542,8 +4542,8 @@ Returns true if the type can be participant of an interference. ") IsInterfering; static Standard_Boolean IsInterfering(const TopAbs_ShapeEnum theT); - /****************** TypeToInteger ******************/ - /**** md5 signature: 0ae15761533503a6aa960b1cf71c8fcd ****/ + /****** BOPDS_Tools::TypeToInteger ******/ + /****** md5 signature: 0ae15761533503a6aa960b1cf71c8fcd ******/ %feature("compactdefaultargs") TypeToInteger; %feature("autodoc", " Parameters @@ -4561,8 +4561,8 @@ Converts the conmbination of two types of shape , to the one integ ") TypeToInteger; static Standard_Integer TypeToInteger(const TopAbs_ShapeEnum theT1, const TopAbs_ShapeEnum theT2); - /****************** TypeToInteger ******************/ - /**** md5 signature: 2ff94d4866c6c71e2ceb7a5e855100f3 ****/ + /****** BOPDS_Tools::TypeToInteger ******/ + /****** md5 signature: 2ff94d4866c6c71e2ceb7a5e855100f3 ******/ %feature("compactdefaultargs") TypeToInteger; %feature("autodoc", " Parameters @@ -4599,8 +4599,8 @@ Converts the type of shape , to integer value, that is returned. ***********************/ class BOPDS_InterfEE : public BOPDS_Interf { public: - /****************** BOPDS_InterfEE ******************/ - /**** md5 signature: 3a56ee86c80ca876a599958dcbb93de2 ****/ + /****** BOPDS_InterfEE::BOPDS_InterfEE ******/ + /****** md5 signature: 3a56ee86c80ca876a599958dcbb93de2 ******/ %feature("compactdefaultargs") BOPDS_InterfEE; %feature("autodoc", "Return ------- @@ -4612,8 +4612,8 @@ Description ") BOPDS_InterfEE; BOPDS_InterfEE(); - /****************** BOPDS_InterfEE ******************/ - /**** md5 signature: 66f80f94fd23238be82f83cc36f1acf0 ****/ + /****** BOPDS_InterfEE::BOPDS_InterfEE ******/ + /****** md5 signature: 66f80f94fd23238be82f83cc36f1acf0 ******/ %feature("compactdefaultargs") BOPDS_InterfEE; %feature("autodoc", " Parameters @@ -4630,8 +4630,8 @@ Description ") BOPDS_InterfEE; BOPDS_InterfEE(const opencascade::handle & theAllocator); - /****************** CommonPart ******************/ - /**** md5 signature: 158eea49db3781300d62b63a4c3d0e83 ****/ + /****** BOPDS_InterfEE::CommonPart ******/ + /****** md5 signature: 158eea49db3781300d62b63a4c3d0e83 ******/ %feature("compactdefaultargs") CommonPart; %feature("autodoc", "Return ------- @@ -4643,8 +4643,8 @@ Description ") CommonPart; const IntTools_CommonPrt & CommonPart(); - /****************** SetCommonPart ******************/ - /**** md5 signature: 76e27597c4757830473369f47aa42860 ****/ + /****** BOPDS_InterfEE::SetCommonPart ******/ + /****** md5 signature: 76e27597c4757830473369f47aa42860 ******/ %feature("compactdefaultargs") SetCommonPart; %feature("autodoc", " Parameters @@ -4675,8 +4675,8 @@ Description ***********************/ class BOPDS_InterfEF : public BOPDS_Interf { public: - /****************** BOPDS_InterfEF ******************/ - /**** md5 signature: db7b1db9510fdcd08228116450854f56 ****/ + /****** BOPDS_InterfEF::BOPDS_InterfEF ******/ + /****** md5 signature: db7b1db9510fdcd08228116450854f56 ******/ %feature("compactdefaultargs") BOPDS_InterfEF; %feature("autodoc", "Return ------- @@ -4688,8 +4688,8 @@ Description ") BOPDS_InterfEF; BOPDS_InterfEF(); - /****************** BOPDS_InterfEF ******************/ - /**** md5 signature: 0888789645a47ab19ec98d181244c93e ****/ + /****** BOPDS_InterfEF::BOPDS_InterfEF ******/ + /****** md5 signature: 0888789645a47ab19ec98d181244c93e ******/ %feature("compactdefaultargs") BOPDS_InterfEF; %feature("autodoc", " Parameters @@ -4706,8 +4706,8 @@ Description ") BOPDS_InterfEF; BOPDS_InterfEF(const opencascade::handle & theAllocator); - /****************** CommonPart ******************/ - /**** md5 signature: 158eea49db3781300d62b63a4c3d0e83 ****/ + /****** BOPDS_InterfEF::CommonPart ******/ + /****** md5 signature: 158eea49db3781300d62b63a4c3d0e83 ******/ %feature("compactdefaultargs") CommonPart; %feature("autodoc", "Return ------- @@ -4719,8 +4719,8 @@ Description ") CommonPart; const IntTools_CommonPrt & CommonPart(); - /****************** SetCommonPart ******************/ - /**** md5 signature: 76e27597c4757830473369f47aa42860 ****/ + /****** BOPDS_InterfEF::SetCommonPart ******/ + /****** md5 signature: 76e27597c4757830473369f47aa42860 ******/ %feature("compactdefaultargs") SetCommonPart; %feature("autodoc", " Parameters @@ -4751,8 +4751,8 @@ Description ***********************/ class BOPDS_InterfEZ : public BOPDS_Interf { public: - /****************** BOPDS_InterfEZ ******************/ - /**** md5 signature: 68a3e3081232b079fb3aa95b06499417 ****/ + /****** BOPDS_InterfEZ::BOPDS_InterfEZ ******/ + /****** md5 signature: 68a3e3081232b079fb3aa95b06499417 ******/ %feature("compactdefaultargs") BOPDS_InterfEZ; %feature("autodoc", "Return ------- @@ -4764,8 +4764,8 @@ Description ") BOPDS_InterfEZ; BOPDS_InterfEZ(); - /****************** BOPDS_InterfEZ ******************/ - /**** md5 signature: 324a547e187942b91af368889f5e90b3 ****/ + /****** BOPDS_InterfEZ::BOPDS_InterfEZ ******/ + /****** md5 signature: 324a547e187942b91af368889f5e90b3 ******/ %feature("compactdefaultargs") BOPDS_InterfEZ; %feature("autodoc", " Parameters @@ -4796,8 +4796,8 @@ Description ***********************/ class BOPDS_InterfFF : public BOPDS_Interf { public: - /****************** BOPDS_InterfFF ******************/ - /**** md5 signature: e9636cf1028f0ee0277b9b2d95fd34bf ****/ + /****** BOPDS_InterfFF::BOPDS_InterfFF ******/ + /****** md5 signature: e9636cf1028f0ee0277b9b2d95fd34bf ******/ %feature("compactdefaultargs") BOPDS_InterfFF; %feature("autodoc", "Return ------- @@ -4809,8 +4809,8 @@ Description ") BOPDS_InterfFF; BOPDS_InterfFF(); - /****************** ChangeCurves ******************/ - /**** md5 signature: a137ee1b8aca0e0cd4aa63ad1bf53ac5 ****/ + /****** BOPDS_InterfFF::ChangeCurves ******/ + /****** md5 signature: a137ee1b8aca0e0cd4aa63ad1bf53ac5 ******/ %feature("compactdefaultargs") ChangeCurves; %feature("autodoc", "Return ------- @@ -4822,8 +4822,8 @@ Description ") ChangeCurves; BOPDS_VectorOfCurve & ChangeCurves(); - /****************** ChangePoints ******************/ - /**** md5 signature: 6d7e21a9831c13acb16202b5eb5069c2 ****/ + /****** BOPDS_InterfFF::ChangePoints ******/ + /****** md5 signature: 6d7e21a9831c13acb16202b5eb5069c2 ******/ %feature("compactdefaultargs") ChangePoints; %feature("autodoc", "Return ------- @@ -4835,8 +4835,8 @@ Description ") ChangePoints; BOPDS_VectorOfPoint & ChangePoints(); - /****************** Curves ******************/ - /**** md5 signature: a51a404fc40e0761a1ef97d4ce4eb86a ****/ + /****** BOPDS_InterfFF::Curves ******/ + /****** md5 signature: a51a404fc40e0761a1ef97d4ce4eb86a ******/ %feature("compactdefaultargs") Curves; %feature("autodoc", "Return ------- @@ -4848,8 +4848,8 @@ Description ") Curves; BOPDS_VectorOfCurve Curves(); - /****************** Init ******************/ - /**** md5 signature: 4ef383c666596f906f9ce4d66071677d ****/ + /****** BOPDS_InterfFF::Init ******/ + /****** md5 signature: 4ef383c666596f906f9ce4d66071677d ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -4867,8 +4867,8 @@ No available documentation. ") Init; void Init(const Standard_Integer theNbCurves, const Standard_Integer theNbPoints); - /****************** Points ******************/ - /**** md5 signature: af3d274ccfb32eab08bf5e3c85cb2291 ****/ + /****** BOPDS_InterfFF::Points ******/ + /****** md5 signature: af3d274ccfb32eab08bf5e3c85cb2291 ******/ %feature("compactdefaultargs") Points; %feature("autodoc", "Return ------- @@ -4880,8 +4880,8 @@ Description ") Points; const BOPDS_VectorOfPoint & Points(); - /****************** SetTangentFaces ******************/ - /**** md5 signature: f40c479ada59173a3110087e189d0488 ****/ + /****** BOPDS_InterfFF::SetTangentFaces ******/ + /****** md5 signature: f40c479ada59173a3110087e189d0488 ******/ %feature("compactdefaultargs") SetTangentFaces; %feature("autodoc", " Parameters @@ -4898,8 +4898,8 @@ Description ") SetTangentFaces; void SetTangentFaces(const Standard_Boolean theFlag); - /****************** TangentFaces ******************/ - /**** md5 signature: 44e511afda93e8aadb10ba4db293bb02 ****/ + /****** BOPDS_InterfFF::TangentFaces ******/ + /****** md5 signature: 44e511afda93e8aadb10ba4db293bb02 ******/ %feature("compactdefaultargs") TangentFaces; %feature("autodoc", "Return ------- @@ -4925,8 +4925,8 @@ Description ***********************/ class BOPDS_InterfFZ : public BOPDS_Interf { public: - /****************** BOPDS_InterfFZ ******************/ - /**** md5 signature: e5c202a4fb5b68fc49a5668dc1d5fc67 ****/ + /****** BOPDS_InterfFZ::BOPDS_InterfFZ ******/ + /****** md5 signature: e5c202a4fb5b68fc49a5668dc1d5fc67 ******/ %feature("compactdefaultargs") BOPDS_InterfFZ; %feature("autodoc", "Return ------- @@ -4938,8 +4938,8 @@ Description ") BOPDS_InterfFZ; BOPDS_InterfFZ(); - /****************** BOPDS_InterfFZ ******************/ - /**** md5 signature: fe1676b3d8f89dc728bd691b5be673f3 ****/ + /****** BOPDS_InterfFZ::BOPDS_InterfFZ ******/ + /****** md5 signature: fe1676b3d8f89dc728bd691b5be673f3 ******/ %feature("compactdefaultargs") BOPDS_InterfFZ; %feature("autodoc", " Parameters @@ -4970,8 +4970,8 @@ Description ***********************/ class BOPDS_InterfVE : public BOPDS_Interf { public: - /****************** BOPDS_InterfVE ******************/ - /**** md5 signature: 6271df0bb8ec22b4b5d2f12a131e2ae8 ****/ + /****** BOPDS_InterfVE::BOPDS_InterfVE ******/ + /****** md5 signature: 6271df0bb8ec22b4b5d2f12a131e2ae8 ******/ %feature("compactdefaultargs") BOPDS_InterfVE; %feature("autodoc", "Return ------- @@ -4983,8 +4983,8 @@ Description ") BOPDS_InterfVE; BOPDS_InterfVE(); - /****************** BOPDS_InterfVE ******************/ - /**** md5 signature: 0517f3ece389f8cd8f4272e4ce15ca4d ****/ + /****** BOPDS_InterfVE::BOPDS_InterfVE ******/ + /****** md5 signature: 0517f3ece389f8cd8f4272e4ce15ca4d ******/ %feature("compactdefaultargs") BOPDS_InterfVE; %feature("autodoc", " Parameters @@ -5001,8 +5001,8 @@ Description ") BOPDS_InterfVE; BOPDS_InterfVE(const opencascade::handle & theAllocator); - /****************** Parameter ******************/ - /**** md5 signature: a1c30d1196ee452cd8e422f1e25a0fbc ****/ + /****** BOPDS_InterfVE::Parameter ******/ + /****** md5 signature: a1c30d1196ee452cd8e422f1e25a0fbc ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", "Return ------- @@ -5014,8 +5014,8 @@ Description ") Parameter; Standard_Real Parameter(); - /****************** SetParameter ******************/ - /**** md5 signature: d089f68e9d85c0cc9947cf1853be9ad0 ****/ + /****** BOPDS_InterfVE::SetParameter ******/ + /****** md5 signature: d089f68e9d85c0cc9947cf1853be9ad0 ******/ %feature("compactdefaultargs") SetParameter; %feature("autodoc", " Parameters @@ -5046,8 +5046,8 @@ Description ***********************/ class BOPDS_InterfVF : public BOPDS_Interf { public: - /****************** BOPDS_InterfVF ******************/ - /**** md5 signature: 4f904beb865fa4a8a7b6ce31b90e31ce ****/ + /****** BOPDS_InterfVF::BOPDS_InterfVF ******/ + /****** md5 signature: 4f904beb865fa4a8a7b6ce31b90e31ce ******/ %feature("compactdefaultargs") BOPDS_InterfVF; %feature("autodoc", "Return ------- @@ -5059,8 +5059,8 @@ Description ") BOPDS_InterfVF; BOPDS_InterfVF(); - /****************** BOPDS_InterfVF ******************/ - /**** md5 signature: 845ad13694dca1bb6664247530187612 ****/ + /****** BOPDS_InterfVF::BOPDS_InterfVF ******/ + /****** md5 signature: 845ad13694dca1bb6664247530187612 ******/ %feature("compactdefaultargs") BOPDS_InterfVF; %feature("autodoc", " Parameters @@ -5077,8 +5077,8 @@ Description ") BOPDS_InterfVF; BOPDS_InterfVF(const opencascade::handle & theAllocator); - /****************** SetUV ******************/ - /**** md5 signature: f05410086525668d6e7335c85692e807 ****/ + /****** BOPDS_InterfVF::SetUV ******/ + /****** md5 signature: f05410086525668d6e7335c85692e807 ******/ %feature("compactdefaultargs") SetUV; %feature("autodoc", " Parameters @@ -5096,8 +5096,8 @@ Description ") SetUV; void SetUV(const Standard_Real theU, const Standard_Real theV); - /****************** UV ******************/ - /**** md5 signature: d5aee13da276e476ef2e46c0c4691734 ****/ + /****** BOPDS_InterfVF::UV ******/ + /****** md5 signature: d5aee13da276e476ef2e46c0c4691734 ******/ %feature("compactdefaultargs") UV; %feature("autodoc", " Parameters @@ -5128,8 +5128,8 @@ Description ***********************/ class BOPDS_InterfVV : public BOPDS_Interf { public: - /****************** BOPDS_InterfVV ******************/ - /**** md5 signature: e630b4eef92ce00d9ba3c276b244a9d9 ****/ + /****** BOPDS_InterfVV::BOPDS_InterfVV ******/ + /****** md5 signature: e630b4eef92ce00d9ba3c276b244a9d9 ******/ %feature("compactdefaultargs") BOPDS_InterfVV; %feature("autodoc", "Return ------- @@ -5141,8 +5141,8 @@ Description ") BOPDS_InterfVV; BOPDS_InterfVV(); - /****************** BOPDS_InterfVV ******************/ - /**** md5 signature: b8d96d83bfe94f647252a7f68f684680 ****/ + /****** BOPDS_InterfVV::BOPDS_InterfVV ******/ + /****** md5 signature: b8d96d83bfe94f647252a7f68f684680 ******/ %feature("compactdefaultargs") BOPDS_InterfVV; %feature("autodoc", " Parameters @@ -5173,8 +5173,8 @@ Description ***********************/ class BOPDS_InterfVZ : public BOPDS_Interf { public: - /****************** BOPDS_InterfVZ ******************/ - /**** md5 signature: 96ec00ba8d018a2dbf0e43b26f1e2583 ****/ + /****** BOPDS_InterfVZ::BOPDS_InterfVZ ******/ + /****** md5 signature: 96ec00ba8d018a2dbf0e43b26f1e2583 ******/ %feature("compactdefaultargs") BOPDS_InterfVZ; %feature("autodoc", "Return ------- @@ -5186,8 +5186,8 @@ Description ") BOPDS_InterfVZ; BOPDS_InterfVZ(); - /****************** BOPDS_InterfVZ ******************/ - /**** md5 signature: 5c02cc4070faaca682e63bf98e24be8d ****/ + /****** BOPDS_InterfVZ::BOPDS_InterfVZ ******/ + /****** md5 signature: 5c02cc4070faaca682e63bf98e24be8d ******/ %feature("compactdefaultargs") BOPDS_InterfVZ; %feature("autodoc", " Parameters @@ -5218,8 +5218,8 @@ Description ***********************/ class BOPDS_InterfZZ : public BOPDS_Interf { public: - /****************** BOPDS_InterfZZ ******************/ - /**** md5 signature: 113ab70d063043dabdc7028349eeea00 ****/ + /****** BOPDS_InterfZZ::BOPDS_InterfZZ ******/ + /****** md5 signature: 113ab70d063043dabdc7028349eeea00 ******/ %feature("compactdefaultargs") BOPDS_InterfZZ; %feature("autodoc", "Return ------- @@ -5231,8 +5231,8 @@ Description ") BOPDS_InterfZZ; BOPDS_InterfZZ(); - /****************** BOPDS_InterfZZ ******************/ - /**** md5 signature: 5f74a14b8c05998299025f2f1bc01f77 ****/ + /****** BOPDS_InterfZZ::BOPDS_InterfZZ ******/ + /****** md5 signature: 5f74a14b8c05998299025f2f1bc01f77 ******/ %feature("compactdefaultargs") BOPDS_InterfZZ; %feature("autodoc", " Parameters @@ -5263,8 +5263,8 @@ Description *************************/ class BOPDS_IteratorSI : public BOPDS_Iterator { public: - /****************** BOPDS_IteratorSI ******************/ - /**** md5 signature: c5b0dd22646c1e2457a62b94390f85aa ****/ + /****** BOPDS_IteratorSI::BOPDS_IteratorSI ******/ + /****** md5 signature: c5b0dd22646c1e2457a62b94390f85aa ******/ %feature("compactdefaultargs") BOPDS_IteratorSI; %feature("autodoc", "Return ------- @@ -5276,8 +5276,8 @@ Empty constructor. ") BOPDS_IteratorSI; BOPDS_IteratorSI(); - /****************** BOPDS_IteratorSI ******************/ - /**** md5 signature: 802d1e4e61c51785f102169bd02bad90 ****/ + /****** BOPDS_IteratorSI::BOPDS_IteratorSI ******/ + /****** md5 signature: 802d1e4e61c51785f102169bd02bad90 ******/ %feature("compactdefaultargs") BOPDS_IteratorSI; %feature("autodoc", " Parameters @@ -5294,8 +5294,8 @@ Constructor @param theallocator the allocator to manage the memory. ") BOPDS_IteratorSI; BOPDS_IteratorSI(const opencascade::handle & theAllocator); - /****************** UpdateByLevelOfCheck ******************/ - /**** md5 signature: da43b78370a700502adc2b5b947016f3 ****/ + /****** BOPDS_IteratorSI::UpdateByLevelOfCheck ******/ + /****** md5 signature: da43b78370a700502adc2b5b947016f3 ******/ %feature("compactdefaultargs") UpdateByLevelOfCheck; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BOPTools.i b/src/SWIG_files/wrapper/BOPTools.i index af6301702..dfc8237f6 100644 --- a/src/SWIG_files/wrapper/BOPTools.i +++ b/src/SWIG_files/wrapper/BOPTools.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BOPTOOLSDOCSTRING "BOPTools module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_boptools.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_boptools.html" %enddef %module (package="OCC.Core", docstring=BOPTOOLSDOCSTRING) BOPTools @@ -142,8 +142,8 @@ typedef NCollection_Map BOPTools_MapOfSet; ***************************/ class BOPTools_AlgoTools { public: - /****************** AreFacesSameDomain ******************/ - /**** md5 signature: f19a161cde21c66b6d9731224fae68c3 ****/ + /****** BOPTools_AlgoTools::AreFacesSameDomain ******/ + /****** md5 signature: f19a161cde21c66b6d9731224fae68c3 ******/ %feature("compactdefaultargs") AreFacesSameDomain; %feature("autodoc", " Parameters @@ -163,8 +163,8 @@ Checks if the given faces are same-domain, i.e. coincide. ") AreFacesSameDomain; static Standard_Boolean AreFacesSameDomain(const TopoDS_Face & theF1, const TopoDS_Face & theF2, const opencascade::handle & theContext, const Standard_Real theFuzz = Precision::Confusion()); - /****************** ComputeState ******************/ - /**** md5 signature: e1da6e0dddf6168f52e3a834aad1830a ****/ + /****** BOPTools_AlgoTools::ComputeState ******/ + /****** md5 signature: e1da6e0dddf6168f52e3a834aad1830a ******/ %feature("compactdefaultargs") ComputeState; %feature("autodoc", " Parameters @@ -184,8 +184,8 @@ Computes the 3-d state of the point thepoint toward solid thesolid. thetol - val ") ComputeState; static TopAbs_State ComputeState(const gp_Pnt & thePoint, const TopoDS_Solid & theSolid, const Standard_Real theTol, const opencascade::handle & theContext); - /****************** ComputeState ******************/ - /**** md5 signature: 0e8d68857685f81b632e860a849d408b ****/ + /****** BOPTools_AlgoTools::ComputeState ******/ + /****** md5 signature: 0e8d68857685f81b632e860a849d408b ******/ %feature("compactdefaultargs") ComputeState; %feature("autodoc", " Parameters @@ -205,8 +205,8 @@ Computes the 3-d state of the vertex thevertex toward solid thesolid. thetol - v ") ComputeState; static TopAbs_State ComputeState(const TopoDS_Vertex & theVertex, const TopoDS_Solid & theSolid, const Standard_Real theTol, const opencascade::handle & theContext); - /****************** ComputeState ******************/ - /**** md5 signature: 07abb3cbea99ca44435f7dfed83dfdd6 ****/ + /****** BOPTools_AlgoTools::ComputeState ******/ + /****** md5 signature: 07abb3cbea99ca44435f7dfed83dfdd6 ******/ %feature("compactdefaultargs") ComputeState; %feature("autodoc", " Parameters @@ -226,8 +226,8 @@ Computes the 3-d state of the edge theedge toward solid thesolid. thetol - value ") ComputeState; static TopAbs_State ComputeState(const TopoDS_Edge & theEdge, const TopoDS_Solid & theSolid, const Standard_Real theTol, const opencascade::handle & theContext); - /****************** ComputeState ******************/ - /**** md5 signature: 613ab8d336b931c1067e3f19202d5361 ****/ + /****** BOPTools_AlgoTools::ComputeState ******/ + /****** md5 signature: 613ab8d336b931c1067e3f19202d5361 ******/ %feature("compactdefaultargs") ComputeState; %feature("autodoc", " Parameters @@ -248,8 +248,8 @@ Computes the 3-d state of the face theface toward solid thesolid. thetol - value ") ComputeState; static TopAbs_State ComputeState(const TopoDS_Face & theFace, const TopoDS_Solid & theSolid, const Standard_Real theTol, const TopTools_IndexedMapOfShape & theBounds, const opencascade::handle & theContext); - /****************** ComputeStateByOnePoint ******************/ - /**** md5 signature: b025f56a823a8059eb68e2b7f182fd84 ****/ + /****** BOPTools_AlgoTools::ComputeStateByOnePoint ******/ + /****** md5 signature: b025f56a823a8059eb68e2b7f182fd84 ******/ %feature("compactdefaultargs") ComputeStateByOnePoint; %feature("autodoc", " Parameters @@ -269,8 +269,8 @@ Computes the 3-d state of the shape theshape toward solid thesolid. thetol - val ") ComputeStateByOnePoint; static TopAbs_State ComputeStateByOnePoint(const TopoDS_Shape & theShape, const TopoDS_Solid & theSolid, const Standard_Real theTol, const opencascade::handle & theContext); - /****************** ComputeTolerance ******************/ - /**** md5 signature: 4fdfb1ebaaf4b76d31630b511de1fb0d ****/ + /****** BOPTools_AlgoTools::ComputeTolerance ******/ + /****** md5 signature: 4fdfb1ebaaf4b76d31630b511de1fb0d ******/ %feature("compactdefaultargs") ComputeTolerance; %feature("autodoc", " Parameters @@ -289,8 +289,8 @@ Computes the necessary value of the tolerance for the edge. ") ComputeTolerance; static Standard_Boolean ComputeTolerance(const TopoDS_Face & theFace, const TopoDS_Edge & theEdge, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** ComputeVV ******************/ - /**** md5 signature: ce3c2889c3813a71551b7079a9adab2b ****/ + /****** BOPTools_AlgoTools::ComputeVV ******/ + /****** md5 signature: ce3c2889c3813a71551b7079a9adab2b ******/ %feature("compactdefaultargs") ComputeVV; %feature("autodoc", " Parameters @@ -309,8 +309,8 @@ Intersects the vertex with the point with tolerance . re ") ComputeVV; static Standard_Integer ComputeVV(const TopoDS_Vertex & theV, const gp_Pnt & theP, const Standard_Real theTolP); - /****************** ComputeVV ******************/ - /**** md5 signature: 1152c272803dc704f9b84852434b26e2 ****/ + /****** BOPTools_AlgoTools::ComputeVV ******/ + /****** md5 signature: 1152c272803dc704f9b84852434b26e2 ******/ %feature("compactdefaultargs") ComputeVV; %feature("autodoc", " Parameters @@ -329,8 +329,8 @@ Intersects the given vertices with given fuzzy value. returns the error status: ") ComputeVV; static Standard_Integer ComputeVV(const TopoDS_Vertex & theV1, const TopoDS_Vertex & theV2, const Standard_Real theFuzz = Precision::Confusion()); - /****************** CopyEdge ******************/ - /**** md5 signature: cb546e2ef298c5840b3996d97aa2246f ****/ + /****** BOPTools_AlgoTools::CopyEdge ******/ + /****** md5 signature: cb546e2ef298c5840b3996d97aa2246f ******/ %feature("compactdefaultargs") CopyEdge; %feature("autodoc", " Parameters @@ -347,8 +347,8 @@ Makes a copy of with vertices. ") CopyEdge; static TopoDS_Edge CopyEdge(const TopoDS_Edge & theEdge); - /****************** CorrectCurveOnSurface ******************/ - /**** md5 signature: 10e6eb9f4a96224371686f6c20ae90c0 ****/ + /****** BOPTools_AlgoTools::CorrectCurveOnSurface ******/ + /****** md5 signature: 10e6eb9f4a96224371686f6c20ae90c0 ******/ %feature("compactdefaultargs") CorrectCurveOnSurface; %feature("autodoc", " Parameters @@ -368,8 +368,8 @@ Provides valid values of tolerances for the shape in terms of brepcheck_i ") CorrectCurveOnSurface; static void CorrectCurveOnSurface(const TopoDS_Shape & theS, const TopTools_IndexedMapOfShape & theMapToAvoid, const Standard_Real theTolMax = 0.0001, const Standard_Boolean theRunParallel = Standard_False); - /****************** CorrectPointOnCurve ******************/ - /**** md5 signature: dd25a290a42192e5b7e5e25d15a694ee ****/ + /****** BOPTools_AlgoTools::CorrectPointOnCurve ******/ + /****** md5 signature: dd25a290a42192e5b7e5e25d15a694ee ******/ %feature("compactdefaultargs") CorrectPointOnCurve; %feature("autodoc", " Parameters @@ -389,8 +389,8 @@ Provides valid values of tolerances for the shape in terms of brepcheck_i ") CorrectPointOnCurve; static void CorrectPointOnCurve(const TopoDS_Shape & theS, const TopTools_IndexedMapOfShape & theMapToAvoid, const Standard_Real theTolMax = 0.0001, const Standard_Boolean theRunParallel = Standard_False); - /****************** CorrectRange ******************/ - /**** md5 signature: 1d43794148dcee778ea6198feb9555eb ****/ + /****** BOPTools_AlgoTools::CorrectRange ******/ + /****** md5 signature: 1d43794148dcee778ea6198feb9555eb ******/ %feature("compactdefaultargs") CorrectRange; %feature("autodoc", " Parameters @@ -410,8 +410,8 @@ Correct shrunk range taking into account 3d-curve resolution and correspon ") CorrectRange; static void CorrectRange(const TopoDS_Edge & aE1, const TopoDS_Edge & aE2, const IntTools_Range & aSR, IntTools_Range & aNewSR); - /****************** CorrectRange ******************/ - /**** md5 signature: b869bcda69d543a929cd0189038ab247 ****/ + /****** BOPTools_AlgoTools::CorrectRange ******/ + /****** md5 signature: b869bcda69d543a929cd0189038ab247 ******/ %feature("compactdefaultargs") CorrectRange; %feature("autodoc", " Parameters @@ -431,8 +431,8 @@ Correct shrunk range taking into account 3d-curve resolution and correspon ") CorrectRange; static void CorrectRange(const TopoDS_Edge & aE, const TopoDS_Face & aF, const IntTools_Range & aSR, IntTools_Range & aNewSR); - /****************** CorrectShapeTolerances ******************/ - /**** md5 signature: 779ed39723dda01baad62e4986778cba ****/ + /****** BOPTools_AlgoTools::CorrectShapeTolerances ******/ + /****** md5 signature: 779ed39723dda01baad62e4986778cba ******/ %feature("compactdefaultargs") CorrectShapeTolerances; %feature("autodoc", " Parameters @@ -451,8 +451,8 @@ Corrects tolerance values of the sub-shapes of the shape if needed. ") CorrectShapeTolerances; static void CorrectShapeTolerances(const TopoDS_Shape & theS, const TopTools_IndexedMapOfShape & theMapToAvoid, const Standard_Boolean theRunParallel = Standard_False); - /****************** CorrectTolerances ******************/ - /**** md5 signature: 2fa2989532a10025b0282c9f0792a848 ****/ + /****** BOPTools_AlgoTools::CorrectTolerances ******/ + /****** md5 signature: 2fa2989532a10025b0282c9f0792a848 ******/ %feature("compactdefaultargs") CorrectTolerances; %feature("autodoc", " Parameters @@ -472,8 +472,8 @@ Provides valid values of tolerances for the shape is max valu ") CorrectTolerances; static void CorrectTolerances(const TopoDS_Shape & theS, const TopTools_IndexedMapOfShape & theMapToAvoid, const Standard_Real theTolMax = 0.0001, const Standard_Boolean theRunParallel = Standard_False); - /****************** DTolerance ******************/ - /**** md5 signature: 075ca2e9d4910a8f1018c8adbac7e64d ****/ + /****** BOPTools_AlgoTools::DTolerance ******/ + /****** md5 signature: 075ca2e9d4910a8f1018c8adbac7e64d ******/ %feature("compactdefaultargs") DTolerance; %feature("autodoc", "Return ------- @@ -485,8 +485,8 @@ Additional tolerance (delta tolerance) is used in boolean operations to ensure t ") DTolerance; static Standard_Real DTolerance(); - /****************** Dimension ******************/ - /**** md5 signature: 348038e7dc0c04e091d0a280a71bd60d ****/ + /****** BOPTools_AlgoTools::Dimension ******/ + /****** md5 signature: 348038e7dc0c04e091d0a280a71bd60d ******/ %feature("compactdefaultargs") Dimension; %feature("autodoc", " Parameters @@ -503,8 +503,8 @@ Returns dimension of the shape . if the shape contains elements of differe ") Dimension; static Standard_Integer Dimension(const TopoDS_Shape & theS); - /****************** Dimensions ******************/ - /**** md5 signature: 485029a60f5198c2ef6a429c06efcd81 ****/ + /****** BOPTools_AlgoTools::Dimensions ******/ + /****** md5 signature: 485029a60f5198c2ef6a429c06efcd81 ******/ %feature("compactdefaultargs") Dimensions; %feature("autodoc", " Parameters @@ -522,8 +522,8 @@ Returns the min and max dimensions of the shape . ") Dimensions; static void Dimensions(const TopoDS_Shape & theS, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** GetEdgeOff ******************/ - /**** md5 signature: f9ff0abb00c2f2593eff9881311221cd ****/ + /****** BOPTools_AlgoTools::GetEdgeOff ******/ + /****** md5 signature: f9ff0abb00c2f2593eff9881311221cd ******/ %feature("compactdefaultargs") GetEdgeOff; %feature("autodoc", " Parameters @@ -542,8 +542,8 @@ Returns true if the face theface contains the edge theedge but with opposite ori ") GetEdgeOff; static Standard_Boolean GetEdgeOff(const TopoDS_Edge & theEdge, const TopoDS_Face & theFace, TopoDS_Edge & theEdgeOff); - /****************** GetEdgeOnFace ******************/ - /**** md5 signature: 0e11d8dc0b657d498bdb441974222906 ****/ + /****** BOPTools_AlgoTools::GetEdgeOnFace ******/ + /****** md5 signature: 0e11d8dc0b657d498bdb441974222906 ******/ %feature("compactdefaultargs") GetEdgeOnFace; %feature("autodoc", " Parameters @@ -562,8 +562,8 @@ For the face theface gets the edge theedgeonf that is the same as theedge return ") GetEdgeOnFace; static Standard_Boolean GetEdgeOnFace(const TopoDS_Edge & theEdge, const TopoDS_Face & theFace, TopoDS_Edge & theEdgeOnF); - /****************** GetFaceOff ******************/ - /**** md5 signature: 64851eed7f9e8632025e1105ca710a20 ****/ + /****** BOPTools_AlgoTools::GetFaceOff ******/ + /****** md5 signature: 64851eed7f9e8632025e1105ca710a20 ******/ %feature("compactdefaultargs") GetFaceOff; %feature("autodoc", " Parameters @@ -584,8 +584,8 @@ For the face theface and its edge theedge finds the face suitable to produce she ") GetFaceOff; static Standard_Boolean GetFaceOff(const TopoDS_Edge & theEdge, const TopoDS_Face & theFace, BOPTools_ListOfCoupleOfShape & theLCEF, TopoDS_Face & theFaceOff, const opencascade::handle & theContext); - /****************** IsBlockInOnFace ******************/ - /**** md5 signature: 0a530195aed4f2f6869b608c9e8dbd2d ****/ + /****** BOPTools_AlgoTools::IsBlockInOnFace ******/ + /****** md5 signature: 0a530195aed4f2f6869b608c9e8dbd2d ******/ %feature("compactdefaultargs") IsBlockInOnFace; %feature("autodoc", " Parameters @@ -605,8 +605,8 @@ Returns true if paveblock lays on the face , i.e the is in or on ") IsBlockInOnFace; static Standard_Boolean IsBlockInOnFace(const IntTools_Range & aShR, const TopoDS_Face & aF, const TopoDS_Edge & aE, const opencascade::handle & aContext); - /****************** IsHole ******************/ - /**** md5 signature: 16350fb929e278089d74b09ce926512b ****/ + /****** BOPTools_AlgoTools::IsHole ******/ + /****** md5 signature: 16350fb929e278089d74b09ce926512b ******/ %feature("compactdefaultargs") IsHole; %feature("autodoc", " Parameters @@ -624,8 +624,8 @@ Checks if the wire is a hole for the face. ") IsHole; static Standard_Boolean IsHole(const TopoDS_Shape & theW, const TopoDS_Shape & theF); - /****************** IsInternalFace ******************/ - /**** md5 signature: 158ceb98611c9190a402b54fc4233804 ****/ + /****** BOPTools_AlgoTools::IsInternalFace ******/ + /****** md5 signature: 158ceb98611c9190a402b54fc4233804 ******/ %feature("compactdefaultargs") IsInternalFace; %feature("autodoc", " Parameters @@ -646,8 +646,8 @@ Returns true if the face theface is inside of the couple of faces theface1, thef ") IsInternalFace; static Standard_Integer IsInternalFace(const TopoDS_Face & theFace, const TopoDS_Edge & theEdge, const TopoDS_Face & theFace1, const TopoDS_Face & theFace2, const opencascade::handle & theContext); - /****************** IsInternalFace ******************/ - /**** md5 signature: ef3d71c29b8862372e271068609aff5d ****/ + /****** BOPTools_AlgoTools::IsInternalFace ******/ + /****** md5 signature: ef3d71c29b8862372e271068609aff5d ******/ %feature("compactdefaultargs") IsInternalFace; %feature("autodoc", " Parameters @@ -667,8 +667,8 @@ Returns true if the face theface is inside of the appropriate couple of faces (f ") IsInternalFace; static Standard_Integer IsInternalFace(const TopoDS_Face & theFace, const TopoDS_Edge & theEdge, TopTools_ListOfShape & theLF, const opencascade::handle & theContext); - /****************** IsInternalFace ******************/ - /**** md5 signature: d0cf743dc3c8deca3bd05e2d6d3d3021 ****/ + /****** BOPTools_AlgoTools::IsInternalFace ******/ + /****** md5 signature: d0cf743dc3c8deca3bd05e2d6d3d3021 ******/ %feature("compactdefaultargs") IsInternalFace; %feature("autodoc", " Parameters @@ -689,8 +689,8 @@ Returns true if the face theface is inside the solid thesolid. themef - map edge ") IsInternalFace; static Standard_Boolean IsInternalFace(const TopoDS_Face & theFace, const TopoDS_Solid & theSolid, TopTools_IndexedDataMapOfShapeListOfShape & theMEF, const Standard_Real theTol, const opencascade::handle & theContext); - /****************** IsInvertedSolid ******************/ - /**** md5 signature: 1452a0a79b70e8f5fe2cd3c3e8f9b78a ****/ + /****** BOPTools_AlgoTools::IsInvertedSolid ******/ + /****** md5 signature: 1452a0a79b70e8f5fe2cd3c3e8f9b78a ******/ %feature("compactdefaultargs") IsInvertedSolid; %feature("autodoc", " Parameters @@ -707,8 +707,8 @@ Returns true if the solid is inverted. ") IsInvertedSolid; static Standard_Boolean IsInvertedSolid(const TopoDS_Solid & theSolid); - /****************** IsMicroEdge ******************/ - /**** md5 signature: d73c5d5d7a5e25bd1a97838d4b7775dc ****/ + /****** BOPTools_AlgoTools::IsMicroEdge ******/ + /****** md5 signature: d73c5d5d7a5e25bd1a97838d4b7775dc ******/ %feature("compactdefaultargs") IsMicroEdge; %feature("autodoc", " Parameters @@ -727,8 +727,8 @@ Checks if it is possible to compute shrunk range for the edge flag & theContext, const Standard_Boolean theCheckSplittable = Standard_True); - /****************** IsOpenShell ******************/ - /**** md5 signature: a5c32af687e24a03aee16645b11f6a05 ****/ + /****** BOPTools_AlgoTools::IsOpenShell ******/ + /****** md5 signature: a5c32af687e24a03aee16645b11f6a05 ******/ %feature("compactdefaultargs") IsOpenShell; %feature("autodoc", " Parameters @@ -745,8 +745,8 @@ Returns true if the shell is open. ") IsOpenShell; static Standard_Boolean IsOpenShell(const TopoDS_Shell & theShell); - /****************** IsSplitToReverse ******************/ - /**** md5 signature: 6dca305aeb7fd21e742843dd4184640f ****/ + /****** BOPTools_AlgoTools::IsSplitToReverse ******/ + /****** md5 signature: 6dca305aeb7fd21e742843dd4184640f ******/ %feature("compactdefaultargs") IsSplitToReverse; %feature("autodoc", " Parameters @@ -766,8 +766,8 @@ Checks if the direction of the split shape is opposite to the direction of the o ") IsSplitToReverse; static Standard_Boolean IsSplitToReverse(const TopoDS_Shape & theSplit, const TopoDS_Shape & theShape, const opencascade::handle & theContext, Standard_Integer * theError = NULL); - /****************** IsSplitToReverse ******************/ - /**** md5 signature: a442a1278308b2eef20ed84d8ecc93fd ****/ + /****** BOPTools_AlgoTools::IsSplitToReverse ******/ + /****** md5 signature: a442a1278308b2eef20ed84d8ecc93fd ******/ %feature("compactdefaultargs") IsSplitToReverse; %feature("autodoc", " Parameters @@ -787,8 +787,8 @@ Checks if the normal direction of the split face is opposite to the normal direc ") IsSplitToReverse; static Standard_Boolean IsSplitToReverse(const TopoDS_Face & theSplit, const TopoDS_Face & theShape, const opencascade::handle & theContext, Standard_Integer * theError = NULL); - /****************** IsSplitToReverse ******************/ - /**** md5 signature: db1c9d5e59695f6d3bb15e0065a0cb7c ****/ + /****** BOPTools_AlgoTools::IsSplitToReverse ******/ + /****** md5 signature: db1c9d5e59695f6d3bb15e0065a0cb7c ******/ %feature("compactdefaultargs") IsSplitToReverse; %feature("autodoc", " Parameters @@ -808,8 +808,8 @@ Checks if the tangent vector of the split edge is opposite to the tangent vector ") IsSplitToReverse; static Standard_Boolean IsSplitToReverse(const TopoDS_Edge & theSplit, const TopoDS_Edge & theShape, const opencascade::handle & theContext, Standard_Integer * theError = NULL); - /****************** IsSplitToReverseWithWarn ******************/ - /**** md5 signature: fbda1a9b6060691a6d3b9849776e0dd2 ****/ + /****** BOPTools_AlgoTools::IsSplitToReverseWithWarn ******/ + /****** md5 signature: fbda1a9b6060691a6d3b9849776e0dd2 ******/ %feature("compactdefaultargs") IsSplitToReverseWithWarn; %feature("autodoc", " Parameters @@ -829,8 +829,8 @@ Add-on for the *issplittoreverse()* to check for its errors and in case of any a ") IsSplitToReverseWithWarn; static Standard_Boolean IsSplitToReverseWithWarn(const TopoDS_Shape & theSplit, const TopoDS_Shape & theShape, const opencascade::handle & theContext, const opencascade::handle & theReport = NULL); - /****************** MakeConnexityBlock ******************/ - /**** md5 signature: b7df8e82e607190cf7b0d31cdf0e2e3f ****/ + /****** BOPTools_AlgoTools::MakeConnexityBlock ******/ + /****** md5 signature: b7df8e82e607190cf7b0d31cdf0e2e3f ******/ %feature("compactdefaultargs") MakeConnexityBlock; %feature("autodoc", " Parameters @@ -850,8 +850,8 @@ For the list of faces thels build block thelscb in terms of connexity by edges t ") MakeConnexityBlock; static void MakeConnexityBlock(TopTools_ListOfShape & theLS, TopTools_IndexedMapOfShape & theMapAvoid, TopTools_ListOfShape & theLSCB, const opencascade::handle & theAllocator); - /****************** MakeConnexityBlocks ******************/ - /**** md5 signature: 1d845647893fe0ad8b655563e0e2896c ****/ + /****** BOPTools_AlgoTools::MakeConnexityBlocks ******/ + /****** md5 signature: 1d845647893fe0ad8b655563e0e2896c ******/ %feature("compactdefaultargs") MakeConnexityBlocks; %feature("autodoc", " Parameters @@ -871,8 +871,8 @@ For the compound builds the blocks (compounds) of elements of type builds the blocks (compounds) of elements of type and 3d-tolerance value . ") MakeNewVertex; static void MakeNewVertex(const gp_Pnt & aP1, const Standard_Real aTol, TopoDS_Vertex & aNewVertex); - /****************** MakeNewVertex ******************/ - /**** md5 signature: e8f9b3aed21c857920517234e2cb3d4c ****/ + /****** BOPTools_AlgoTools::MakeNewVertex ******/ + /****** md5 signature: e8f9b3aed21c857920517234e2cb3d4c ******/ %feature("compactdefaultargs") MakeNewVertex; %feature("autodoc", " Parameters @@ -997,8 +997,8 @@ Make a vertex using couple of vertices . ") MakeNewVertex; static void MakeNewVertex(const TopoDS_Vertex & aV1, const TopoDS_Vertex & aV2, TopoDS_Vertex & aNewVertex); - /****************** MakeNewVertex ******************/ - /**** md5 signature: 8b8a909912cc829455275d8c562e22a4 ****/ + /****** BOPTools_AlgoTools::MakeNewVertex ******/ + /****** md5 signature: 8b8a909912cc829455275d8c562e22a4 ******/ %feature("compactdefaultargs") MakeNewVertex; %feature("autodoc", " Parameters @@ -1019,8 +1019,8 @@ Make a vertex in place of intersection between two edges with paramet ") MakeNewVertex; static void MakeNewVertex(const TopoDS_Edge & aE1, const Standard_Real aP1, const TopoDS_Edge & aE2, const Standard_Real aP2, TopoDS_Vertex & aNewVertex); - /****************** MakeNewVertex ******************/ - /**** md5 signature: 12c18f3b7c437a6229e434be5765471e ****/ + /****** BOPTools_AlgoTools::MakeNewVertex ******/ + /****** md5 signature: 12c18f3b7c437a6229e434be5765471e ******/ %feature("compactdefaultargs") MakeNewVertex; %feature("autodoc", " Parameters @@ -1040,8 +1040,8 @@ Make a vertex in place of intersection between the edge with parameter on the faces and . ") MakePCurve; static void MakePCurve(const TopoDS_Edge & theE, const TopoDS_Face & theF1, const TopoDS_Face & theF2, const IntTools_Curve & theCurve, const Standard_Boolean thePC1, const Standard_Boolean thePC2, const opencascade::handle & theContext = opencascade::handle()); - /****************** MakeSectEdge ******************/ - /**** md5 signature: c8c6abde60f8f50c47ff89728e6814bd ****/ + /****** BOPTools_AlgoTools::MakeSectEdge ******/ + /****** md5 signature: c8c6abde60f8f50c47ff89728e6814bd ******/ %feature("compactdefaultargs") MakeSectEdge; %feature("autodoc", " Parameters @@ -1087,8 +1087,8 @@ Make the edge from 3d-curve and two vertices at parameters and two vertices at parameters at parameter . ") PointOnEdge; static void PointOnEdge(const TopoDS_Edge & aEdge, const Standard_Real aPrm, gp_Pnt & aP); - /****************** Sense ******************/ - /**** md5 signature: 76462cc1a9fbb8274cf2ed746aa1a8f5 ****/ + /****** BOPTools_AlgoTools::Sense ******/ + /****** md5 signature: 76462cc1a9fbb8274cf2ed746aa1a8f5 ******/ %feature("compactdefaultargs") Sense; %feature("autodoc", " Parameters @@ -1205,8 +1205,8 @@ Checks if the normals direction of the given faces computed near the shared edge ") Sense; static Standard_Integer Sense(const TopoDS_Face & theF1, const TopoDS_Face & theF2, const opencascade::handle & theContext); - /****************** TreatCompound ******************/ - /**** md5 signature: de5d3c86660c5bbcc7b54c5705952878 ****/ + /****** BOPTools_AlgoTools::TreatCompound ******/ + /****** md5 signature: de5d3c86660c5bbcc7b54c5705952878 ******/ %feature("compactdefaultargs") TreatCompound; %feature("autodoc", " Parameters @@ -1225,8 +1225,8 @@ Collects in the output list recursively all non-compound sub-shapes of the first ") TreatCompound; static void TreatCompound(const TopoDS_Shape & theS, TopTools_ListOfShape & theList, TopTools_MapOfShape * theMap = NULL); - /****************** UpdateVertex ******************/ - /**** md5 signature: 5e037b5f776c89b9ff812aeeecab575f ****/ + /****** BOPTools_AlgoTools::UpdateVertex ******/ + /****** md5 signature: 5e037b5f776c89b9ff812aeeecab575f ******/ %feature("compactdefaultargs") UpdateVertex; %feature("autodoc", " Parameters @@ -1245,8 +1245,8 @@ Update the tolerance value for vertex taking into account the fact that taking into account the fact that taking into account the fact that (3d-curve ) on surface of the face . & theC3D, const opencascade::handle & theC2D, opencascade::handle & theC2DA, const opencascade::handle & theContext = opencascade::handle()); - /****************** AdjustPCurveOnFace ******************/ - /**** md5 signature: 73b4d6c2d8ce8f742911e4b1bd3424f5 ****/ + /****** BOPTools_AlgoTools2D::AdjustPCurveOnFace ******/ + /****** md5 signature: 73b4d6c2d8ce8f742911e4b1bd3424f5 ******/ %feature("compactdefaultargs") AdjustPCurveOnFace; %feature("autodoc", " Parameters @@ -1343,8 +1343,8 @@ Adjust p-curve (3d-curve ) on surface . [at1, at2] - range to a ") AdjustPCurveOnFace; static void AdjustPCurveOnFace(const TopoDS_Face & theF, const Standard_Real theFirst, const Standard_Real theLast, const opencascade::handle & theC2D, opencascade::handle & theC2DA, const opencascade::handle & theContext = opencascade::handle()); - /****************** AdjustPCurveOnSurf ******************/ - /**** md5 signature: 9f66aa04ccc5fe5ab7f76a83eca55926 ****/ + /****** BOPTools_AlgoTools2D::AdjustPCurveOnSurf ******/ + /****** md5 signature: 9f66aa04ccc5fe5ab7f76a83eca55926 ******/ %feature("compactdefaultargs") AdjustPCurveOnSurf; %feature("autodoc", " Parameters @@ -1365,8 +1365,8 @@ Adjust p-curve (3d-curve ) on surface . [at1, at2] - range to a ") AdjustPCurveOnSurf; static void AdjustPCurveOnSurf(const BRepAdaptor_Surface & aF, const Standard_Real aT1, const Standard_Real aT2, const opencascade::handle & aC2D, opencascade::handle & aC2DA); - /****************** AttachExistingPCurve ******************/ - /**** md5 signature: d2c950c6e7103dd55a431f337bd524de ****/ + /****** BOPTools_AlgoTools2D::AttachExistingPCurve ******/ + /****** md5 signature: d2c950c6e7103dd55a431f337bd524de ******/ %feature("compactdefaultargs") AttachExistingPCurve; %feature("autodoc", " Parameters @@ -1386,8 +1386,8 @@ Attach p-curve from the edge on surface to the edge returns ") AttachExistingPCurve; static Standard_Integer AttachExistingPCurve(const TopoDS_Edge & aEold, const TopoDS_Edge & aEnew, const TopoDS_Face & aF, const opencascade::handle & aCtx); - /****************** BuildPCurveForEdgeOnFace ******************/ - /**** md5 signature: 9d16532ebffa946107d9612c7596ff2e ****/ + /****** BOPTools_AlgoTools2D::BuildPCurveForEdgeOnFace ******/ + /****** md5 signature: 9d16532ebffa946107d9612c7596ff2e ******/ %feature("compactdefaultargs") BuildPCurveForEdgeOnFace; %feature("autodoc", " Parameters @@ -1406,8 +1406,8 @@ Compute p-curve for the edge on the face . raises exception standard_co ") BuildPCurveForEdgeOnFace; static void BuildPCurveForEdgeOnFace(const TopoDS_Edge & aE, const TopoDS_Face & aF, const opencascade::handle & theContext = opencascade::handle()); - /****************** CurveOnSurface ******************/ - /**** md5 signature: df3a833e56d9d7562127ad18d8051975 ****/ + /****** BOPTools_AlgoTools2D::CurveOnSurface ******/ + /****** md5 signature: df3a833e56d9d7562127ad18d8051975 ******/ %feature("compactdefaultargs") CurveOnSurface; %feature("autodoc", " Parameters @@ -1427,8 +1427,8 @@ Get p-curve for the edge on surface . if the p-curve does not exi ") CurveOnSurface; static void CurveOnSurface(const TopoDS_Edge & aE, const TopoDS_Face & aF, opencascade::handle & aC, Standard_Real &OutValue, const opencascade::handle & theContext = opencascade::handle()); - /****************** CurveOnSurface ******************/ - /**** md5 signature: e2898c58b122e827bd654617de4aca96 ****/ + /****** BOPTools_AlgoTools2D::CurveOnSurface ******/ + /****** md5 signature: e2898c58b122e827bd654617de4aca96 ******/ %feature("compactdefaultargs") CurveOnSurface; %feature("autodoc", " Parameters @@ -1450,8 +1450,8 @@ Get p-curve for the edge on surface . if the p-curve does not exi ") CurveOnSurface; static void CurveOnSurface(const TopoDS_Edge & aE, const TopoDS_Face & aF, opencascade::handle & aC, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue, const opencascade::handle & theContext = opencascade::handle()); - /****************** EdgeTangent ******************/ - /**** md5 signature: 5761815d648dad69375685b041b42424 ****/ + /****** BOPTools_AlgoTools2D::EdgeTangent ******/ + /****** md5 signature: 5761815d648dad69375685b041b42424 ******/ %feature("compactdefaultargs") EdgeTangent; %feature("autodoc", " Parameters @@ -1470,8 +1470,8 @@ Compute tangent for the edge [in 3d] at parameter . ") EdgeTangent; static Standard_Boolean EdgeTangent(const TopoDS_Edge & anE, const Standard_Real aT, gp_Vec & Tau); - /****************** HasCurveOnSurface ******************/ - /**** md5 signature: 8b08ee63182b04e9348ee1f48c35a9f2 ****/ + /****** BOPTools_AlgoTools2D::HasCurveOnSurface ******/ + /****** md5 signature: 8b08ee63182b04e9348ee1f48c35a9f2 ******/ %feature("compactdefaultargs") HasCurveOnSurface; %feature("autodoc", " Parameters @@ -1492,8 +1492,8 @@ Returns true if the edge has p-curve on surface . [afirst, alast] ") HasCurveOnSurface; static Standard_Boolean HasCurveOnSurface(const TopoDS_Edge & aE, const TopoDS_Face & aF, opencascade::handle & aC, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** HasCurveOnSurface ******************/ - /**** md5 signature: ed0b1e2b2daee6cab07c579768d15a31 ****/ + /****** BOPTools_AlgoTools2D::HasCurveOnSurface ******/ + /****** md5 signature: ed0b1e2b2daee6cab07c579768d15a31 ******/ %feature("compactdefaultargs") HasCurveOnSurface; %feature("autodoc", " Parameters @@ -1511,8 +1511,8 @@ Returns true if the edge has p-curve on surface . if the p-curve ") HasCurveOnSurface; static Standard_Boolean HasCurveOnSurface(const TopoDS_Edge & aE, const TopoDS_Face & aF); - /****************** IntermediatePoint ******************/ - /**** md5 signature: 8663f92679b0dc5e2760d0cb00974303 ****/ + /****** BOPTools_AlgoTools2D::IntermediatePoint ******/ + /****** md5 signature: 8663f92679b0dc5e2760d0cb00974303 ******/ %feature("compactdefaultargs") IntermediatePoint; %feature("autodoc", " Parameters @@ -1530,8 +1530,8 @@ Compute intermediate value in between [afirst, alast] . ") IntermediatePoint; static Standard_Real IntermediatePoint(const Standard_Real aFirst, const Standard_Real aLast); - /****************** IntermediatePoint ******************/ - /**** md5 signature: ff96e71d7875046d3368a83dabf4302a ****/ + /****** BOPTools_AlgoTools2D::IntermediatePoint ******/ + /****** md5 signature: ff96e71d7875046d3368a83dabf4302a ******/ %feature("compactdefaultargs") IntermediatePoint; %feature("autodoc", " Parameters @@ -1548,8 +1548,8 @@ Compute intermediate value of parameter for the edge . ") IntermediatePoint; static Standard_Real IntermediatePoint(const TopoDS_Edge & anE); - /****************** IsEdgeIsoline ******************/ - /**** md5 signature: f327241ed8b7983321061c77e81b5e58 ****/ + /****** BOPTools_AlgoTools2D::IsEdgeIsoline ******/ + /****** md5 signature: f327241ed8b7983321061c77e81b5e58 ******/ %feature("compactdefaultargs") IsEdgeIsoline; %feature("autodoc", " Parameters @@ -1568,8 +1568,8 @@ Checks if curveonsurface of thee on thef matches with isoline of thef surface. s ") IsEdgeIsoline; static void IsEdgeIsoline(const TopoDS_Edge & theE, const TopoDS_Face & theF, Standard_Boolean &OutValue, Standard_Boolean &OutValue); - /****************** Make2D ******************/ - /**** md5 signature: 1cafd6dad2a417f7794802f509a42258 ****/ + /****** BOPTools_AlgoTools2D::Make2D ******/ + /****** md5 signature: 1cafd6dad2a417f7794802f509a42258 ******/ %feature("compactdefaultargs") Make2D; %feature("autodoc", " Parameters @@ -1591,8 +1591,8 @@ Make p-curve for the edge on surface . [afirst, alast] - range of ") Make2D; static void Make2D(const TopoDS_Edge & aE, const TopoDS_Face & aF, opencascade::handle & aC, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue, const opencascade::handle & theContext = opencascade::handle()); - /****************** MakePCurveOnFace ******************/ - /**** md5 signature: 83df2e5770a0a1e9e3908f45b8c8dd41 ****/ + /****** BOPTools_AlgoTools2D::MakePCurveOnFace ******/ + /****** md5 signature: 83df2e5770a0a1e9e3908f45b8c8dd41 ******/ %feature("compactdefaultargs") MakePCurveOnFace; %feature("autodoc", " Parameters @@ -1612,8 +1612,8 @@ Make p-curve for the 3d-curve on surface . [atoler] - reached to ") MakePCurveOnFace; static void MakePCurveOnFace(const TopoDS_Face & aF, const opencascade::handle & C3D, opencascade::handle & aC, Standard_Real &OutValue, const opencascade::handle & theContext = opencascade::handle()); - /****************** MakePCurveOnFace ******************/ - /**** md5 signature: b2a78a17fdd321c29302db9d7ddcc9b0 ****/ + /****** BOPTools_AlgoTools2D::MakePCurveOnFace ******/ + /****** md5 signature: b2a78a17fdd321c29302db9d7ddcc9b0 ******/ %feature("compactdefaultargs") MakePCurveOnFace; %feature("autodoc", " Parameters @@ -1635,8 +1635,8 @@ Make p-curve for the 3d-curve on surface . [at1, at2] - range to ") MakePCurveOnFace; static void MakePCurveOnFace(const TopoDS_Face & aF, const opencascade::handle & C3D, const Standard_Real aT1, const Standard_Real aT2, opencascade::handle & aC, Standard_Real &OutValue, const opencascade::handle & theContext = opencascade::handle()); - /****************** PointOnSurface ******************/ - /**** md5 signature: 610be3c3edd48240bdf3e793d5503e5a ****/ + /****** BOPTools_AlgoTools2D::PointOnSurface ******/ + /****** md5 signature: 610be3c3edd48240bdf3e793d5503e5a ******/ %feature("compactdefaultargs") PointOnSurface; %feature("autodoc", " Parameters @@ -1675,8 +1675,8 @@ Compute surface parameters of the face for the point from the edge seam edge for the face basing on the surfac ") DoSplitSEAMOnFace; static Standard_Boolean DoSplitSEAMOnFace(const TopoDS_Edge & theESplit, const TopoDS_Face & theFace); - /****************** DoSplitSEAMOnFace ******************/ - /**** md5 signature: 9b4cff8cc35f1c3b3a0c4ca69663cf34 ****/ + /****** BOPTools_AlgoTools3D::DoSplitSEAMOnFace ******/ + /****** md5 signature: 9b4cff8cc35f1c3b3a0c4ca69663cf34 ******/ %feature("compactdefaultargs") DoSplitSEAMOnFace; %feature("autodoc", " Parameters @@ -1714,8 +1714,8 @@ Makes the split edge seam edge for the face basing on the ") DoSplitSEAMOnFace; static Standard_Boolean DoSplitSEAMOnFace(const TopoDS_Edge & theEOrigin, const TopoDS_Edge & theESplit, const TopoDS_Face & theFace); - /****************** GetApproxNormalToFaceOnEdge ******************/ - /**** md5 signature: 662a57a2b13e5b445fecdd7a9db5ba05 ****/ + /****** BOPTools_AlgoTools3D::GetApproxNormalToFaceOnEdge ******/ + /****** md5 signature: 662a57a2b13e5b445fecdd7a9db5ba05 ******/ %feature("compactdefaultargs") GetApproxNormalToFaceOnEdge; %feature("autodoc", " Parameters @@ -1737,8 +1737,8 @@ Computes normal to the face for the 3d-point that belongs to the edge ") GetApproxNormalToFaceOnEdge; static Standard_Boolean GetApproxNormalToFaceOnEdge(const TopoDS_Edge & aE, const TopoDS_Face & aF, const Standard_Real aT, gp_Pnt & aPx, gp_Dir & aD, const opencascade::handle & theContext); - /****************** GetApproxNormalToFaceOnEdge ******************/ - /**** md5 signature: 432a5d217f2c92976bd3836d59ae3126 ****/ + /****** BOPTools_AlgoTools3D::GetApproxNormalToFaceOnEdge ******/ + /****** md5 signature: 432a5d217f2c92976bd3836d59ae3126 ******/ %feature("compactdefaultargs") GetApproxNormalToFaceOnEdge; %feature("autodoc", " Parameters @@ -1760,8 +1760,8 @@ Computes normal to the face for the 3d-point that belongs to the edge ") GetApproxNormalToFaceOnEdge; static Standard_Boolean GetApproxNormalToFaceOnEdge(const TopoDS_Edge & theE, const TopoDS_Face & theF, const Standard_Real aT, gp_Pnt & aP, gp_Dir & aDNF, const Standard_Real aDt2D); - /****************** GetApproxNormalToFaceOnEdge ******************/ - /**** md5 signature: 0d7e453d668ffaef04017e672ebf7cd8 ****/ + /****** BOPTools_AlgoTools3D::GetApproxNormalToFaceOnEdge ******/ + /****** md5 signature: 0d7e453d668ffaef04017e672ebf7cd8 ******/ %feature("compactdefaultargs") GetApproxNormalToFaceOnEdge; %feature("autodoc", " Parameters @@ -1784,8 +1784,8 @@ Computes normal to the face for the 3d-point that belongs to the edge ") GetApproxNormalToFaceOnEdge; static Standard_Boolean GetApproxNormalToFaceOnEdge(const TopoDS_Edge & theE, const TopoDS_Face & theF, const Standard_Real aT, const Standard_Real aDt2D, gp_Pnt & aP, gp_Dir & aDNF, const opencascade::handle & theContext); - /****************** GetNormalToFaceOnEdge ******************/ - /**** md5 signature: bf95002b59a88f422052872860bf9ba3 ****/ + /****** BOPTools_AlgoTools3D::GetNormalToFaceOnEdge ******/ + /****** md5 signature: bf95002b59a88f422052872860bf9ba3 ******/ %feature("compactdefaultargs") GetNormalToFaceOnEdge; %feature("autodoc", " Parameters @@ -1806,8 +1806,8 @@ Computes normal to the face for the point on the edge at parameter & theContext = opencascade::handle()); - /****************** GetNormalToFaceOnEdge ******************/ - /**** md5 signature: caac691e172913bbc6951d237d25e02e ****/ + /****** BOPTools_AlgoTools3D::GetNormalToFaceOnEdge ******/ + /****** md5 signature: caac691e172913bbc6951d237d25e02e ******/ %feature("compactdefaultargs") GetNormalToFaceOnEdge; %feature("autodoc", " Parameters @@ -1827,8 +1827,8 @@ Computes normal to the face for the point on the edge at arbitrary int ") GetNormalToFaceOnEdge; static void GetNormalToFaceOnEdge(const TopoDS_Edge & aE, const TopoDS_Face & aF, gp_Dir & aD, const opencascade::handle & theContext = opencascade::handle()); - /****************** GetNormalToSurface ******************/ - /**** md5 signature: fadf018537fa0db50dedc46448844d75 ****/ + /****** BOPTools_AlgoTools3D::GetNormalToSurface ******/ + /****** md5 signature: fadf018537fa0db50dedc46448844d75 ******/ %feature("compactdefaultargs") GetNormalToSurface; %feature("autodoc", " Parameters @@ -1848,8 +1848,8 @@ Compute normal to surface in point (u,v) returns true if directions ad ") GetNormalToSurface; static Standard_Boolean GetNormalToSurface(const opencascade::handle & aS, const Standard_Real U, const Standard_Real V, gp_Dir & aD); - /****************** IsEmptyShape ******************/ - /**** md5 signature: 705d0cbf3a767fb030ed3d0273652728 ****/ + /****** BOPTools_AlgoTools3D::IsEmptyShape ******/ + /****** md5 signature: 705d0cbf3a767fb030ed3d0273652728 ******/ %feature("compactdefaultargs") IsEmptyShape; %feature("autodoc", " Parameters @@ -1866,8 +1866,8 @@ Returns true if the shape does not contain geometry information (e.g. empty ") IsEmptyShape; static Standard_Boolean IsEmptyShape(const TopoDS_Shape & aS); - /****************** MinStepIn2d ******************/ - /**** md5 signature: 55bfd12f091895ccbedf8983db301515 ****/ + /****** BOPTools_AlgoTools3D::MinStepIn2d ******/ + /****** md5 signature: 55bfd12f091895ccbedf8983db301515 ******/ %feature("compactdefaultargs") MinStepIn2d; %feature("autodoc", "Return ------- @@ -1879,8 +1879,8 @@ Returns simple step value that is used in 2d-computations = 1.e-5. ") MinStepIn2d; static Standard_Real MinStepIn2d(); - /****************** OrientEdgeOnFace ******************/ - /**** md5 signature: c79b989ebff1b81ac9c1c0872fb48dd0 ****/ + /****** BOPTools_AlgoTools3D::OrientEdgeOnFace ******/ + /****** md5 signature: c79b989ebff1b81ac9c1c0872fb48dd0 ******/ %feature("compactdefaultargs") OrientEdgeOnFace; %feature("autodoc", " Parameters @@ -1899,8 +1899,8 @@ Get the edge from the face that is the same as the edge . ") OrientEdgeOnFace; static void OrientEdgeOnFace(const TopoDS_Edge & aE, const TopoDS_Face & aF, TopoDS_Edge & aER); - /****************** PointInFace ******************/ - /**** md5 signature: fb4d80b0c5e7b54dd7e9e3700bdd62ef ****/ + /****** BOPTools_AlgoTools3D::PointInFace ******/ + /****** md5 signature: fb4d80b0c5e7b54dd7e9e3700bdd62ef ******/ %feature("compactdefaultargs") PointInFace; %feature("autodoc", " Parameters @@ -1920,8 +1920,8 @@ Computes arbitrary point inside the face . - 2d representa ") PointInFace; static Standard_Integer PointInFace(const TopoDS_Face & theF, gp_Pnt & theP, gp_Pnt2d & theP2D, const opencascade::handle & theContext); - /****************** PointInFace ******************/ - /**** md5 signature: d8a07bb3206e54319a435f003dc62fb0 ****/ + /****** BOPTools_AlgoTools3D::PointInFace ******/ + /****** md5 signature: d8a07bb3206e54319a435f003dc62fb0 ******/ %feature("compactdefaultargs") PointInFace; %feature("autodoc", " Parameters @@ -1944,8 +1944,8 @@ Computes a point inside the face using starting point taken by the ") PointInFace; static Standard_Integer PointInFace(const TopoDS_Face & theF, const TopoDS_Edge & theE, const Standard_Real theT, const Standard_Real theDt2D, gp_Pnt & theP, gp_Pnt2d & theP2D, const opencascade::handle & theContext); - /****************** PointInFace ******************/ - /**** md5 signature: 37f6b0b13b751b088ca1668abf11cab7 ****/ + /****** BOPTools_AlgoTools3D::PointInFace ******/ + /****** md5 signature: 37f6b0b13b751b088ca1668abf11cab7 ******/ %feature("compactdefaultargs") PointInFace; %feature("autodoc", " Parameters @@ -1967,8 +1967,8 @@ Computes a point inside the face using the line so that 2d ") PointInFace; static Standard_Integer PointInFace(const TopoDS_Face & theF, const opencascade::handle & theL, gp_Pnt & theP, gp_Pnt2d & theP2D, const opencascade::handle & theContext, const Standard_Real theDt2D = 0.0); - /****************** PointNearEdge ******************/ - /**** md5 signature: 28ea360f1c859e12be4170d223ae64b7 ****/ + /****** BOPTools_AlgoTools3D::PointNearEdge ******/ + /****** md5 signature: 28ea360f1c859e12be4170d223ae64b7 ******/ %feature("compactdefaultargs") PointNearEdge; %feature("autodoc", " Parameters @@ -1991,8 +1991,8 @@ Compute the point , () that is near to the edge at parameter & theContext); - /****************** PointNearEdge ******************/ - /**** md5 signature: 8c4c6748c97e44ce957c2b8614e0029f ****/ + /****** BOPTools_AlgoTools3D::PointNearEdge ******/ + /****** md5 signature: 8c4c6748c97e44ce957c2b8614e0029f ******/ %feature("compactdefaultargs") PointNearEdge; %feature("autodoc", " Parameters @@ -2014,8 +2014,8 @@ Compute the point , () that is near to the edge at parameter , () that is near to the edge at parameter & theContext); - /****************** PointNearEdge ******************/ - /**** md5 signature: 35029e745729034983dcaed868cd05a8 ****/ + /****** BOPTools_AlgoTools3D::PointNearEdge ******/ + /****** md5 signature: 35029e745729034983dcaed868cd05a8 ******/ %feature("compactdefaultargs") PointNearEdge; %feature("autodoc", " Parameters @@ -2059,8 +2059,8 @@ Compute the point , () that is near to the edge at arbitrary par ") PointNearEdge; static Standard_Integer PointNearEdge(const TopoDS_Edge & aE, const TopoDS_Face & aF, gp_Pnt2d & aP2D, gp_Pnt & aPx, const opencascade::handle & theContext); - /****************** SenseFlag ******************/ - /**** md5 signature: 6c19a30f29c48dda7851cfdc81d48708 ****/ + /****** BOPTools_AlgoTools3D::SenseFlag ******/ + /****** md5 signature: 6c19a30f29c48dda7851cfdc81d48708 ******/ %feature("compactdefaultargs") SenseFlag; %feature("autodoc", " Parameters @@ -2098,8 +2098,8 @@ Returns 1 if scalar product anf1* anf2>0. returns 0 if directions anf1 anf2 coin ********************************/ class BOPTools_ConnexityBlock { public: - /****************** BOPTools_ConnexityBlock ******************/ - /**** md5 signature: 324aa99e61f940627fecd050de98e960 ****/ + /****** BOPTools_ConnexityBlock::BOPTools_ConnexityBlock ******/ + /****** md5 signature: 324aa99e61f940627fecd050de98e960 ******/ %feature("compactdefaultargs") BOPTools_ConnexityBlock; %feature("autodoc", "Return ------- @@ -2111,8 +2111,8 @@ No available documentation. ") BOPTools_ConnexityBlock; BOPTools_ConnexityBlock(); - /****************** BOPTools_ConnexityBlock ******************/ - /**** md5 signature: 848312be9796e7a157ffbf546c9820e0 ****/ + /****** BOPTools_ConnexityBlock::BOPTools_ConnexityBlock ******/ + /****** md5 signature: 848312be9796e7a157ffbf546c9820e0 ******/ %feature("compactdefaultargs") BOPTools_ConnexityBlock; %feature("autodoc", " Parameters @@ -2129,8 +2129,8 @@ No available documentation. ") BOPTools_ConnexityBlock; BOPTools_ConnexityBlock(const opencascade::handle & theAllocator); - /****************** ChangeLoops ******************/ - /**** md5 signature: 97af80f62f92c5a560ebfd3d94268f4c ****/ + /****** BOPTools_ConnexityBlock::ChangeLoops ******/ + /****** md5 signature: 97af80f62f92c5a560ebfd3d94268f4c ******/ %feature("compactdefaultargs") ChangeLoops; %feature("autodoc", "Return ------- @@ -2142,8 +2142,8 @@ No available documentation. ") ChangeLoops; TopTools_ListOfShape & ChangeLoops(); - /****************** ChangeShapes ******************/ - /**** md5 signature: 47d36ad0f18ffdedc957b231f37208f9 ****/ + /****** BOPTools_ConnexityBlock::ChangeShapes ******/ + /****** md5 signature: 47d36ad0f18ffdedc957b231f37208f9 ******/ %feature("compactdefaultargs") ChangeShapes; %feature("autodoc", "Return ------- @@ -2155,8 +2155,8 @@ No available documentation. ") ChangeShapes; TopTools_ListOfShape & ChangeShapes(); - /****************** IsRegular ******************/ - /**** md5 signature: 3d038b1e31cde956ec93c56a127b2088 ****/ + /****** BOPTools_ConnexityBlock::IsRegular ******/ + /****** md5 signature: 3d038b1e31cde956ec93c56a127b2088 ******/ %feature("compactdefaultargs") IsRegular; %feature("autodoc", "Return ------- @@ -2168,8 +2168,8 @@ No available documentation. ") IsRegular; Standard_Boolean IsRegular(); - /****************** Loops ******************/ - /**** md5 signature: 28c8d70c5f0b2679616b2e020052a004 ****/ + /****** BOPTools_ConnexityBlock::Loops ******/ + /****** md5 signature: 28c8d70c5f0b2679616b2e020052a004 ******/ %feature("compactdefaultargs") Loops; %feature("autodoc", "Return ------- @@ -2181,8 +2181,8 @@ No available documentation. ") Loops; const TopTools_ListOfShape & Loops(); - /****************** SetRegular ******************/ - /**** md5 signature: 2164d1b536b9c0958859434dc620596f ****/ + /****** BOPTools_ConnexityBlock::SetRegular ******/ + /****** md5 signature: 2164d1b536b9c0958859434dc620596f ******/ %feature("compactdefaultargs") SetRegular; %feature("autodoc", " Parameters @@ -2199,8 +2199,8 @@ No available documentation. ") SetRegular; void SetRegular(const Standard_Boolean theFlag); - /****************** Shapes ******************/ - /**** md5 signature: 2884193c58152e0cda5e99b2900fdc8e ****/ + /****** BOPTools_ConnexityBlock::Shapes ******/ + /****** md5 signature: 2884193c58152e0cda5e99b2900fdc8e ******/ %feature("compactdefaultargs") Shapes; %feature("autodoc", "Return ------- @@ -2226,8 +2226,8 @@ No available documentation. *******************************/ class BOPTools_CoupleOfShape { public: - /****************** BOPTools_CoupleOfShape ******************/ - /**** md5 signature: a463423d837c3e973864801ded1eb0ed ****/ + /****** BOPTools_CoupleOfShape::BOPTools_CoupleOfShape ******/ + /****** md5 signature: a463423d837c3e973864801ded1eb0ed ******/ %feature("compactdefaultargs") BOPTools_CoupleOfShape; %feature("autodoc", "Return ------- @@ -2239,8 +2239,8 @@ No available documentation. ") BOPTools_CoupleOfShape; BOPTools_CoupleOfShape(); - /****************** SetShape1 ******************/ - /**** md5 signature: 7c06cdd673405cb80d7e01e8b123dae3 ****/ + /****** BOPTools_CoupleOfShape::SetShape1 ******/ + /****** md5 signature: 7c06cdd673405cb80d7e01e8b123dae3 ******/ %feature("compactdefaultargs") SetShape1; %feature("autodoc", " Parameters @@ -2257,8 +2257,8 @@ No available documentation. ") SetShape1; void SetShape1(const TopoDS_Shape & theShape); - /****************** SetShape2 ******************/ - /**** md5 signature: 004248e6b3471f78e02542f4252af7ef ****/ + /****** BOPTools_CoupleOfShape::SetShape2 ******/ + /****** md5 signature: 004248e6b3471f78e02542f4252af7ef ******/ %feature("compactdefaultargs") SetShape2; %feature("autodoc", " Parameters @@ -2275,8 +2275,8 @@ No available documentation. ") SetShape2; void SetShape2(const TopoDS_Shape & theShape); - /****************** Shape1 ******************/ - /**** md5 signature: 8981b86985f46147f6d78d0ef2565c6e ****/ + /****** BOPTools_CoupleOfShape::Shape1 ******/ + /****** md5 signature: 8981b86985f46147f6d78d0ef2565c6e ******/ %feature("compactdefaultargs") Shape1; %feature("autodoc", "Return ------- @@ -2288,8 +2288,8 @@ No available documentation. ") Shape1; const TopoDS_Shape Shape1(); - /****************** Shape2 ******************/ - /**** md5 signature: 2c54bae91519136523ed62dc1f27ae72 ****/ + /****** BOPTools_CoupleOfShape::Shape2 ******/ + /****** md5 signature: 2c54bae91519136523ed62dc1f27ae72 ******/ %feature("compactdefaultargs") Shape2; %feature("autodoc", "Return ------- @@ -2321,8 +2321,8 @@ No available documentation. *********************/ class BOPTools_Set { public: - /****************** BOPTools_Set ******************/ - /**** md5 signature: 251058268e0ffaca9bd9102e20650099 ****/ + /****** BOPTools_Set::BOPTools_Set ******/ + /****** md5 signature: 251058268e0ffaca9bd9102e20650099 ******/ %feature("compactdefaultargs") BOPTools_Set; %feature("autodoc", "Return ------- @@ -2334,8 +2334,8 @@ No available documentation. ") BOPTools_Set; BOPTools_Set(); - /****************** BOPTools_Set ******************/ - /**** md5 signature: 4850b6916cc2c1a8a2157f59bb217d27 ****/ + /****** BOPTools_Set::BOPTools_Set ******/ + /****** md5 signature: 4850b6916cc2c1a8a2157f59bb217d27 ******/ %feature("compactdefaultargs") BOPTools_Set; %feature("autodoc", " Parameters @@ -2352,8 +2352,8 @@ No available documentation. ") BOPTools_Set; BOPTools_Set(const opencascade::handle & theAllocator); - /****************** BOPTools_Set ******************/ - /**** md5 signature: 7348c096189fc94262374b8cbb0ee264 ****/ + /****** BOPTools_Set::BOPTools_Set ******/ + /****** md5 signature: 7348c096189fc94262374b8cbb0ee264 ******/ %feature("compactdefaultargs") BOPTools_Set; %feature("autodoc", " Parameters @@ -2370,8 +2370,8 @@ Copy constructor. ") BOPTools_Set; BOPTools_Set(const BOPTools_Set & theOther); - /****************** Add ******************/ - /**** md5 signature: 1f2b35071de7c8625d2e5b7b7b1a38f7 ****/ + /****** BOPTools_Set::Add ******/ + /****** md5 signature: 1f2b35071de7c8625d2e5b7b7b1a38f7 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -2389,8 +2389,8 @@ No available documentation. ") Add; void Add(const TopoDS_Shape & theS, const TopAbs_ShapeEnum theType); - /****************** Assign ******************/ - /**** md5 signature: 928626bc3ceb859906184486d169fe7b ****/ + /****** BOPTools_Set::Assign ******/ + /****** md5 signature: 928626bc3ceb859906184486d169fe7b ******/ %feature("compactdefaultargs") Assign; %feature("autodoc", " Parameters @@ -2407,8 +2407,8 @@ No available documentation. ") Assign; BOPTools_Set & Assign(const BOPTools_Set & Other); - /****************** GetSum ******************/ - /**** md5 signature: 527ff5550a99b698021be9c8afb7a809 ****/ + /****** BOPTools_Set::GetSum ******/ + /****** md5 signature: 527ff5550a99b698021be9c8afb7a809 ******/ %feature("compactdefaultargs") GetSum; %feature("autodoc", "Return ------- @@ -2420,8 +2420,8 @@ No available documentation. ") GetSum; size_t GetSum(); - /****************** IsEqual ******************/ - /**** md5 signature: 474281f165027d105331737daa2a5ea2 ****/ + /****** BOPTools_Set::IsEqual ******/ + /****** md5 signature: 474281f165027d105331737daa2a5ea2 ******/ %feature("compactdefaultargs") IsEqual; %feature("autodoc", " Parameters @@ -2438,8 +2438,8 @@ No available documentation. ") IsEqual; Standard_Boolean IsEqual(const BOPTools_Set & aOther); - /****************** NbShapes ******************/ - /**** md5 signature: ea90d1514db96ad18becf0e04a33abf6 ****/ + /****** BOPTools_Set::NbShapes ******/ + /****** md5 signature: ea90d1514db96ad18becf0e04a33abf6 ******/ %feature("compactdefaultargs") NbShapes; %feature("autodoc", "Return ------- @@ -2451,8 +2451,8 @@ No available documentation. ") NbShapes; Standard_Integer NbShapes(); - /****************** Shape ******************/ - /**** md5 signature: e2e979bbf0e2f5cedfc0e482bf183e08 ****/ + /****** BOPTools_Set::Shape ******/ + /****** md5 signature: e2e979bbf0e2f5cedfc0e482bf183e08 ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- diff --git a/src/SWIG_files/wrapper/BRep.i b/src/SWIG_files/wrapper/BRep.i index 7d0582bb3..2250ee5bc 100644 --- a/src/SWIG_files/wrapper/BRep.i +++ b/src/SWIG_files/wrapper/BRep.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPDOCSTRING "BRep module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brep.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brep.html" %enddef %module (package="OCC.Core", docstring=BREPDOCSTRING) BRep @@ -139,8 +139,8 @@ typedef NCollection_List> BRep_Lis *********************/ class BRep_Builder : public TopoDS_Builder { public: - /****************** Continuity ******************/ - /**** md5 signature: ad510666139039f52608a143ce53cdd7 ****/ + /****** BRep_Builder::Continuity ******/ + /****** md5 signature: ad510666139039f52608a143ce53cdd7 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", " Parameters @@ -160,8 +160,8 @@ Sets the geometric continuity on the edge. ") Continuity; void Continuity(const TopoDS_Edge & E, const TopoDS_Face & F1, const TopoDS_Face & F2, const GeomAbs_Shape C); - /****************** Continuity ******************/ - /**** md5 signature: feff2af26f83833fcfbdc2257209ef12 ****/ + /****** BRep_Builder::Continuity ******/ + /****** md5 signature: feff2af26f83833fcfbdc2257209ef12 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", " Parameters @@ -183,8 +183,8 @@ Sets the geometric continuity on the edge. ") Continuity; void Continuity(const TopoDS_Edge & E, const opencascade::handle & S1, const opencascade::handle & S2, const TopLoc_Location & L1, const TopLoc_Location & L2, const GeomAbs_Shape C); - /****************** Degenerated ******************/ - /**** md5 signature: 85fb0e4fff22a970366aebab9413a0a0 ****/ + /****** BRep_Builder::Degenerated ******/ + /****** md5 signature: 85fb0e4fff22a970366aebab9413a0a0 ******/ %feature("compactdefaultargs") Degenerated; %feature("autodoc", " Parameters @@ -202,8 +202,8 @@ Sets the degenerated flag for the edge . ") Degenerated; void Degenerated(const TopoDS_Edge & E, const Standard_Boolean D); - /****************** MakeEdge ******************/ - /**** md5 signature: b674f239b626d44dda9dada9ca8f29f4 ****/ + /****** BRep_Builder::MakeEdge ******/ + /****** md5 signature: b674f239b626d44dda9dada9ca8f29f4 ******/ %feature("compactdefaultargs") MakeEdge; %feature("autodoc", " Parameters @@ -220,8 +220,8 @@ Makes an undefined edge (no geometry). ") MakeEdge; void MakeEdge(TopoDS_Edge & E); - /****************** MakeEdge ******************/ - /**** md5 signature: f0f2d5e71e37e4d20e9feffc9c1d3b2d ****/ + /****** BRep_Builder::MakeEdge ******/ + /****** md5 signature: f0f2d5e71e37e4d20e9feffc9c1d3b2d ******/ %feature("compactdefaultargs") MakeEdge; %feature("autodoc", " Parameters @@ -240,8 +240,8 @@ Makes an edge with a curve. ") MakeEdge; void MakeEdge(TopoDS_Edge & E, const opencascade::handle & C, const Standard_Real Tol); - /****************** MakeEdge ******************/ - /**** md5 signature: eadfa705523a213a6ec77659a57a54ff ****/ + /****** BRep_Builder::MakeEdge ******/ + /****** md5 signature: eadfa705523a213a6ec77659a57a54ff ******/ %feature("compactdefaultargs") MakeEdge; %feature("autodoc", " Parameters @@ -261,8 +261,8 @@ Makes an edge with a curve and a location. ") MakeEdge; void MakeEdge(TopoDS_Edge & E, const opencascade::handle & C, const TopLoc_Location & L, const Standard_Real Tol); - /****************** MakeEdge ******************/ - /**** md5 signature: 1d75b5022ed1df63600c7bc1fc939182 ****/ + /****** BRep_Builder::MakeEdge ******/ + /****** md5 signature: 1d75b5022ed1df63600c7bc1fc939182 ******/ %feature("compactdefaultargs") MakeEdge; %feature("autodoc", " Parameters @@ -280,8 +280,8 @@ Makes an edge with a polygon 3d. ") MakeEdge; void MakeEdge(TopoDS_Edge & E, const opencascade::handle & P); - /****************** MakeEdge ******************/ - /**** md5 signature: ff614951ea63361125c2261b4c2628c2 ****/ + /****** BRep_Builder::MakeEdge ******/ + /****** md5 signature: ff614951ea63361125c2261b4c2628c2 ******/ %feature("compactdefaultargs") MakeEdge; %feature("autodoc", " Parameters @@ -300,8 +300,8 @@ Makes an edge polygon on triangulation. ") MakeEdge; void MakeEdge(TopoDS_Edge & E, const opencascade::handle & N, const opencascade::handle & T); - /****************** MakeEdge ******************/ - /**** md5 signature: f33683631bfbf43b74881c51e3c77a67 ****/ + /****** BRep_Builder::MakeEdge ******/ + /****** md5 signature: f33683631bfbf43b74881c51e3c77a67 ******/ %feature("compactdefaultargs") MakeEdge; %feature("autodoc", " Parameters @@ -321,8 +321,8 @@ Makes an edge polygon on triangulation. ") MakeEdge; void MakeEdge(TopoDS_Edge & E, const opencascade::handle & N, const opencascade::handle & T, const TopLoc_Location & L); - /****************** MakeFace ******************/ - /**** md5 signature: c71240caa9bb39e7508c010ada76421f ****/ + /****** BRep_Builder::MakeFace ******/ + /****** md5 signature: c71240caa9bb39e7508c010ada76421f ******/ %feature("compactdefaultargs") MakeFace; %feature("autodoc", " Parameters @@ -339,8 +339,8 @@ Makes an undefined face. ") MakeFace; void MakeFace(TopoDS_Face & F); - /****************** MakeFace ******************/ - /**** md5 signature: 21344df19ec72586cd876f667d9215d4 ****/ + /****** BRep_Builder::MakeFace ******/ + /****** md5 signature: 21344df19ec72586cd876f667d9215d4 ******/ %feature("compactdefaultargs") MakeFace; %feature("autodoc", " Parameters @@ -359,8 +359,8 @@ Makes a face with a surface. ") MakeFace; void MakeFace(TopoDS_Face & F, const opencascade::handle & S, const Standard_Real Tol); - /****************** MakeFace ******************/ - /**** md5 signature: 4cc7cf2c0bdd48e757b5571ce63016a9 ****/ + /****** BRep_Builder::MakeFace ******/ + /****** md5 signature: 4cc7cf2c0bdd48e757b5571ce63016a9 ******/ %feature("compactdefaultargs") MakeFace; %feature("autodoc", " Parameters @@ -380,8 +380,8 @@ Makes a face with a surface and a location. ") MakeFace; void MakeFace(TopoDS_Face & F, const opencascade::handle & S, const TopLoc_Location & L, const Standard_Real Tol); - /****************** MakeFace ******************/ - /**** md5 signature: 82f593bb6499b901c0087602e0a5b4bc ****/ + /****** BRep_Builder::MakeFace ******/ + /****** md5 signature: 82f593bb6499b901c0087602e0a5b4bc ******/ %feature("compactdefaultargs") MakeFace; %feature("autodoc", " Parameters @@ -399,8 +399,8 @@ Makes a theface with a single triangulation. the triangulation is in the same re ") MakeFace; void MakeFace(TopoDS_Face & theFace, const opencascade::handle & theTriangulation); - /****************** MakeFace ******************/ - /**** md5 signature: ca97f699b84f43b2b5cae440dbda0a60 ****/ + /****** BRep_Builder::MakeFace ******/ + /****** md5 signature: ca97f699b84f43b2b5cae440dbda0a60 ******/ %feature("compactdefaultargs") MakeFace; %feature("autodoc", " Parameters @@ -419,8 +419,8 @@ Makes a face with a list of triangulations and active one. use null active trian ") MakeFace; void MakeFace(TopoDS_Face & theFace, const Poly_ListOfTriangulation & theTriangulations, const opencascade::handle & theActiveTriangulation = opencascade::handle()); - /****************** MakeVertex ******************/ - /**** md5 signature: 31d0795e1ce56b9f1ec86c08a180b99b ****/ + /****** BRep_Builder::MakeVertex ******/ + /****** md5 signature: 31d0795e1ce56b9f1ec86c08a180b99b ******/ %feature("compactdefaultargs") MakeVertex; %feature("autodoc", " Parameters @@ -437,8 +437,8 @@ Makes an udefined vertex without geometry. ") MakeVertex; void MakeVertex(TopoDS_Vertex & V); - /****************** MakeVertex ******************/ - /**** md5 signature: 29bb0db6ab919b38d8ce3d1198ea2b37 ****/ + /****** BRep_Builder::MakeVertex ******/ + /****** md5 signature: 29bb0db6ab919b38d8ce3d1198ea2b37 ******/ %feature("compactdefaultargs") MakeVertex; %feature("autodoc", " Parameters @@ -457,8 +457,8 @@ Makes a vertex from a 3d point. ") MakeVertex; void MakeVertex(TopoDS_Vertex & V, const gp_Pnt & P, const Standard_Real Tol); - /****************** NaturalRestriction ******************/ - /**** md5 signature: 9318ef19df3d36cddca0d86181d9235e ****/ + /****** BRep_Builder::NaturalRestriction ******/ + /****** md5 signature: 9318ef19df3d36cddca0d86181d9235e ******/ %feature("compactdefaultargs") NaturalRestriction; %feature("autodoc", " Parameters @@ -476,8 +476,8 @@ Sets the naturalrestriction flag of the face. ") NaturalRestriction; void NaturalRestriction(const TopoDS_Face & F, const Standard_Boolean N); - /****************** Range ******************/ - /**** md5 signature: 4e181430c6418a692d54b7f2eb20b471 ****/ + /****** BRep_Builder::Range ******/ + /****** md5 signature: 4e181430c6418a692d54b7f2eb20b471 ******/ %feature("compactdefaultargs") Range; %feature("autodoc", " Parameters @@ -497,8 +497,8 @@ Sets the range of the 3d curve if only3d=true, otherwise sets the range to all t ") Range; void Range(const TopoDS_Edge & E, const Standard_Real First, const Standard_Real Last, const Standard_Boolean Only3d = Standard_False); - /****************** Range ******************/ - /**** md5 signature: 8f140227716f210489934adf729eb0ac ****/ + /****** BRep_Builder::Range ******/ + /****** md5 signature: 8f140227716f210489934adf729eb0ac ******/ %feature("compactdefaultargs") Range; %feature("autodoc", " Parameters @@ -519,8 +519,8 @@ Sets the range of the edge on the pcurve on the surface. ") Range; void Range(const TopoDS_Edge & E, const opencascade::handle & S, const TopLoc_Location & L, const Standard_Real First, const Standard_Real Last); - /****************** Range ******************/ - /**** md5 signature: de1a40468c91090d0ec62f6a5752ec87 ****/ + /****** BRep_Builder::Range ******/ + /****** md5 signature: de1a40468c91090d0ec62f6a5752ec87 ******/ %feature("compactdefaultargs") Range; %feature("autodoc", " Parameters @@ -540,8 +540,8 @@ Sets the range of the edge on the pcurve on the face. ") Range; void Range(const TopoDS_Edge & E, const TopoDS_Face & F, const Standard_Real First, const Standard_Real Last); - /****************** SameParameter ******************/ - /**** md5 signature: 637dd7757cdbbc36944a71eb51f0c647 ****/ + /****** BRep_Builder::SameParameter ******/ + /****** md5 signature: 637dd7757cdbbc36944a71eb51f0c647 ******/ %feature("compactdefaultargs") SameParameter; %feature("autodoc", " Parameters @@ -559,8 +559,8 @@ Sets the same parameter flag for the edge . ") SameParameter; void SameParameter(const TopoDS_Edge & E, const Standard_Boolean S); - /****************** SameRange ******************/ - /**** md5 signature: e83a6e0df8791ada8869fddc2738519b ****/ + /****** BRep_Builder::SameRange ******/ + /****** md5 signature: e83a6e0df8791ada8869fddc2738519b ******/ %feature("compactdefaultargs") SameRange; %feature("autodoc", " Parameters @@ -578,8 +578,8 @@ Sets the same range flag for the edge . ") SameRange; void SameRange(const TopoDS_Edge & E, const Standard_Boolean S); - /****************** Transfert ******************/ - /**** md5 signature: b171f0753a7014dc7505df77b53c2539 ****/ + /****** BRep_Builder::Transfert ******/ + /****** md5 signature: b171f0753a7014dc7505df77b53c2539 ******/ %feature("compactdefaultargs") Transfert; %feature("autodoc", " Parameters @@ -597,8 +597,8 @@ Add to the geometric representations of . ") Transfert; void Transfert(const TopoDS_Edge & Ein, const TopoDS_Edge & Eout); - /****************** Transfert ******************/ - /**** md5 signature: 6d7e283a0289d8207e491ceb01681950 ****/ + /****** BRep_Builder::Transfert ******/ + /****** md5 signature: 6d7e283a0289d8207e491ceb01681950 ******/ %feature("compactdefaultargs") Transfert; %feature("autodoc", " Parameters @@ -618,8 +618,8 @@ Transfert the parameters of vin on ein as the parameter of vout on eout. ") Transfert; void Transfert(const TopoDS_Edge & Ein, const TopoDS_Edge & Eout, const TopoDS_Vertex & Vin, const TopoDS_Vertex & Vout); - /****************** UpdateEdge ******************/ - /**** md5 signature: 461de5bb3bcace2fe64ffd833ab805f0 ****/ + /****** BRep_Builder::UpdateEdge ******/ + /****** md5 signature: 461de5bb3bcace2fe64ffd833ab805f0 ******/ %feature("compactdefaultargs") UpdateEdge; %feature("autodoc", " Parameters @@ -638,8 +638,8 @@ Sets a 3d curve for the edge. if is a null handle, remove any existing 3d cu ") UpdateEdge; void UpdateEdge(const TopoDS_Edge & E, const opencascade::handle & C, const Standard_Real Tol); - /****************** UpdateEdge ******************/ - /**** md5 signature: 8cfdbb2d500a89a88a4a76a7386f8aa9 ****/ + /****** BRep_Builder::UpdateEdge ******/ + /****** md5 signature: 8cfdbb2d500a89a88a4a76a7386f8aa9 ******/ %feature("compactdefaultargs") UpdateEdge; %feature("autodoc", " Parameters @@ -659,8 +659,8 @@ Sets a 3d curve for the edge. if is a null handle, remove any existing 3d cu ") UpdateEdge; void UpdateEdge(const TopoDS_Edge & E, const opencascade::handle & C, const TopLoc_Location & L, const Standard_Real Tol); - /****************** UpdateEdge ******************/ - /**** md5 signature: 3bfa8179919e96725c4915bd3d329649 ****/ + /****** BRep_Builder::UpdateEdge ******/ + /****** md5 signature: 3bfa8179919e96725c4915bd3d329649 ******/ %feature("compactdefaultargs") UpdateEdge; %feature("autodoc", " Parameters @@ -680,8 +680,8 @@ Sets a pcurve for the edge on the face. if is a null handle, remove any exis ") UpdateEdge; void UpdateEdge(const TopoDS_Edge & E, const opencascade::handle & C, const TopoDS_Face & F, const Standard_Real Tol); - /****************** UpdateEdge ******************/ - /**** md5 signature: 7d528612c919b79d92fd249803e88c61 ****/ + /****** BRep_Builder::UpdateEdge ******/ + /****** md5 signature: 7d528612c919b79d92fd249803e88c61 ******/ %feature("compactdefaultargs") UpdateEdge; %feature("autodoc", " Parameters @@ -702,8 +702,8 @@ Sets pcurves for the edge on the closed face. if or is a null handle, ") UpdateEdge; void UpdateEdge(const TopoDS_Edge & E, const opencascade::handle & C1, const opencascade::handle & C2, const TopoDS_Face & F, const Standard_Real Tol); - /****************** UpdateEdge ******************/ - /**** md5 signature: 6cb83f897044ec0b34ebd0ae7baacd44 ****/ + /****** BRep_Builder::UpdateEdge ******/ + /****** md5 signature: 6cb83f897044ec0b34ebd0ae7baacd44 ******/ %feature("compactdefaultargs") UpdateEdge; %feature("autodoc", " Parameters @@ -724,8 +724,8 @@ Sets a pcurve for the edge on the face. if is a null handle, remove any exis ") UpdateEdge; void UpdateEdge(const TopoDS_Edge & E, const opencascade::handle & C, const opencascade::handle & S, const TopLoc_Location & L, const Standard_Real Tol); - /****************** UpdateEdge ******************/ - /**** md5 signature: c3858584a511426e079bc628910ddb2e ****/ + /****** BRep_Builder::UpdateEdge ******/ + /****** md5 signature: c3858584a511426e079bc628910ddb2e ******/ %feature("compactdefaultargs") UpdateEdge; %feature("autodoc", " Parameters @@ -748,8 +748,8 @@ Sets a pcurve for the edge on the face. if is a null handle, remove any exis ") UpdateEdge; void UpdateEdge(const TopoDS_Edge & E, const opencascade::handle & C, const opencascade::handle & S, const TopLoc_Location & L, const Standard_Real Tol, const gp_Pnt2d & Pf, const gp_Pnt2d & Pl); - /****************** UpdateEdge ******************/ - /**** md5 signature: 414706636faf49609b66c5859100856d ****/ + /****** BRep_Builder::UpdateEdge ******/ + /****** md5 signature: 414706636faf49609b66c5859100856d ******/ %feature("compactdefaultargs") UpdateEdge; %feature("autodoc", " Parameters @@ -771,8 +771,8 @@ Sets pcurves for the edge on the closed surface. or is a null handle, ") UpdateEdge; void UpdateEdge(const TopoDS_Edge & E, const opencascade::handle & C1, const opencascade::handle & C2, const opencascade::handle & S, const TopLoc_Location & L, const Standard_Real Tol); - /****************** UpdateEdge ******************/ - /**** md5 signature: ecbe3e2c2db95e8527d500b1933fc18a ****/ + /****** BRep_Builder::UpdateEdge ******/ + /****** md5 signature: ecbe3e2c2db95e8527d500b1933fc18a ******/ %feature("compactdefaultargs") UpdateEdge; %feature("autodoc", " Parameters @@ -796,8 +796,8 @@ Sets pcurves for the edge on the closed surface. or is a null handle, ") UpdateEdge; void UpdateEdge(const TopoDS_Edge & E, const opencascade::handle & C1, const opencascade::handle & C2, const opencascade::handle & S, const TopLoc_Location & L, const Standard_Real Tol, const gp_Pnt2d & Pf, const gp_Pnt2d & Pl); - /****************** UpdateEdge ******************/ - /**** md5 signature: 0fafa05abb68b0aedaead3c83b8ef0fe ****/ + /****** BRep_Builder::UpdateEdge ******/ + /****** md5 signature: 0fafa05abb68b0aedaead3c83b8ef0fe ******/ %feature("compactdefaultargs") UpdateEdge; %feature("autodoc", " Parameters @@ -815,8 +815,8 @@ Changes an edge 3d polygon. a null polygon removes the 3d polygon. ") UpdateEdge; void UpdateEdge(const TopoDS_Edge & E, const opencascade::handle & P); - /****************** UpdateEdge ******************/ - /**** md5 signature: 18cdfe39bc36e28a79112a208855f95e ****/ + /****** BRep_Builder::UpdateEdge ******/ + /****** md5 signature: 18cdfe39bc36e28a79112a208855f95e ******/ %feature("compactdefaultargs") UpdateEdge; %feature("autodoc", " Parameters @@ -835,8 +835,8 @@ Changes an edge 3d polygon. a null polygon removes the 3d polygon. ") UpdateEdge; void UpdateEdge(const TopoDS_Edge & E, const opencascade::handle & P, const TopLoc_Location & L); - /****************** UpdateEdge ******************/ - /**** md5 signature: d270f40afd5ef59a6c3fdca0b12bf491 ****/ + /****** BRep_Builder::UpdateEdge ******/ + /****** md5 signature: d270f40afd5ef59a6c3fdca0b12bf491 ******/ %feature("compactdefaultargs") UpdateEdge; %feature("autodoc", " Parameters @@ -855,8 +855,8 @@ Changes an edge polygon on triangulation. ") UpdateEdge; void UpdateEdge(const TopoDS_Edge & E, const opencascade::handle & N, const opencascade::handle & T); - /****************** UpdateEdge ******************/ - /**** md5 signature: 33c1fd32e831b203fa0d899281a253af ****/ + /****** BRep_Builder::UpdateEdge ******/ + /****** md5 signature: 33c1fd32e831b203fa0d899281a253af ******/ %feature("compactdefaultargs") UpdateEdge; %feature("autodoc", " Parameters @@ -876,8 +876,8 @@ Changes an edge polygon on triangulation. ") UpdateEdge; void UpdateEdge(const TopoDS_Edge & E, const opencascade::handle & N, const opencascade::handle & T, const TopLoc_Location & L); - /****************** UpdateEdge ******************/ - /**** md5 signature: 164a2998d0b4e92982ecc230cd19f259 ****/ + /****** BRep_Builder::UpdateEdge ******/ + /****** md5 signature: 164a2998d0b4e92982ecc230cd19f259 ******/ %feature("compactdefaultargs") UpdateEdge; %feature("autodoc", " Parameters @@ -897,8 +897,8 @@ Changes an edge polygon on triangulation. ") UpdateEdge; void UpdateEdge(const TopoDS_Edge & E, const opencascade::handle & N1, const opencascade::handle & N2, const opencascade::handle & T); - /****************** UpdateEdge ******************/ - /**** md5 signature: c4fc0bba87beaabc83a7a01212438010 ****/ + /****** BRep_Builder::UpdateEdge ******/ + /****** md5 signature: c4fc0bba87beaabc83a7a01212438010 ******/ %feature("compactdefaultargs") UpdateEdge; %feature("autodoc", " Parameters @@ -919,8 +919,8 @@ Changes an edge polygon on triangulation. ") UpdateEdge; void UpdateEdge(const TopoDS_Edge & E, const opencascade::handle & N1, const opencascade::handle & N2, const opencascade::handle & T, const TopLoc_Location & L); - /****************** UpdateEdge ******************/ - /**** md5 signature: c23ab2e3d4ab82a884c4a4e5e435a01c ****/ + /****** BRep_Builder::UpdateEdge ******/ + /****** md5 signature: c23ab2e3d4ab82a884c4a4e5e435a01c ******/ %feature("compactdefaultargs") UpdateEdge; %feature("autodoc", " Parameters @@ -939,8 +939,8 @@ Changes edge polygon on a face. ") UpdateEdge; void UpdateEdge(const TopoDS_Edge & E, const opencascade::handle & P, const TopoDS_Face & S); - /****************** UpdateEdge ******************/ - /**** md5 signature: 07b9e715d7ba688ac49e475242e13358 ****/ + /****** BRep_Builder::UpdateEdge ******/ + /****** md5 signature: 07b9e715d7ba688ac49e475242e13358 ******/ %feature("compactdefaultargs") UpdateEdge; %feature("autodoc", " Parameters @@ -960,8 +960,8 @@ Changes edge polygon on a face. ") UpdateEdge; void UpdateEdge(const TopoDS_Edge & E, const opencascade::handle & P, const opencascade::handle & S, const TopLoc_Location & T); - /****************** UpdateEdge ******************/ - /**** md5 signature: 29e9574f15e8cd550ab1232427457506 ****/ + /****** BRep_Builder::UpdateEdge ******/ + /****** md5 signature: 29e9574f15e8cd550ab1232427457506 ******/ %feature("compactdefaultargs") UpdateEdge; %feature("autodoc", " Parameters @@ -981,8 +981,8 @@ Changes edge polygons on a face. //! a null polygon removes the 2d polygon. ") UpdateEdge; void UpdateEdge(const TopoDS_Edge & E, const opencascade::handle & P1, const opencascade::handle & P2, const TopoDS_Face & S); - /****************** UpdateEdge ******************/ - /**** md5 signature: 7cfe9fc63da93eb8832d2459ca6eadde ****/ + /****** BRep_Builder::UpdateEdge ******/ + /****** md5 signature: 7cfe9fc63da93eb8832d2459ca6eadde ******/ %feature("compactdefaultargs") UpdateEdge; %feature("autodoc", " Parameters @@ -1003,8 +1003,8 @@ Changes edge polygons on a face. //! a null polygon removes the 2d polygon. ") UpdateEdge; void UpdateEdge(const TopoDS_Edge & E, const opencascade::handle & P1, const opencascade::handle & P2, const opencascade::handle & S, const TopLoc_Location & L); - /****************** UpdateEdge ******************/ - /**** md5 signature: 4ddfe00e32907cf6333c0e22b0b43935 ****/ + /****** BRep_Builder::UpdateEdge ******/ + /****** md5 signature: 4ddfe00e32907cf6333c0e22b0b43935 ******/ %feature("compactdefaultargs") UpdateEdge; %feature("autodoc", " Parameters @@ -1022,8 +1022,8 @@ Updates the edge tolerance. ") UpdateEdge; void UpdateEdge(const TopoDS_Edge & E, const Standard_Real Tol); - /****************** UpdateFace ******************/ - /**** md5 signature: 6fe40548ebb7a146acb2655ee1db5cd8 ****/ + /****** BRep_Builder::UpdateFace ******/ + /****** md5 signature: 6fe40548ebb7a146acb2655ee1db5cd8 ******/ %feature("compactdefaultargs") UpdateFace; %feature("autodoc", " Parameters @@ -1043,8 +1043,8 @@ Updates the face f using the tolerance value tol, surface s and location locatio ") UpdateFace; void UpdateFace(const TopoDS_Face & F, const opencascade::handle & S, const TopLoc_Location & L, const Standard_Real Tol); - /****************** UpdateFace ******************/ - /**** md5 signature: 46068466603e30f2f620c3de44d08407 ****/ + /****** BRep_Builder::UpdateFace ******/ + /****** md5 signature: 46068466603e30f2f620c3de44d08407 ******/ %feature("compactdefaultargs") UpdateFace; %feature("autodoc", " Parameters @@ -1063,8 +1063,8 @@ Changes a face triangulation. a null thetriangulation removes face triangulation ") UpdateFace; void UpdateFace(const TopoDS_Face & theFace, const opencascade::handle & theTriangulation, const Standard_Boolean theToReset = true); - /****************** UpdateFace ******************/ - /**** md5 signature: cfff4752b2b664eb9ba94b81dbc0aea1 ****/ + /****** BRep_Builder::UpdateFace ******/ + /****** md5 signature: cfff4752b2b664eb9ba94b81dbc0aea1 ******/ %feature("compactdefaultargs") UpdateFace; %feature("autodoc", " Parameters @@ -1082,8 +1082,8 @@ Updates the face tolerance. ") UpdateFace; void UpdateFace(const TopoDS_Face & F, const Standard_Real Tol); - /****************** UpdateVertex ******************/ - /**** md5 signature: 6ed16c5d2b630479bdda164fcceffbab ****/ + /****** BRep_Builder::UpdateVertex ******/ + /****** md5 signature: 6ed16c5d2b630479bdda164fcceffbab ******/ %feature("compactdefaultargs") UpdateVertex; %feature("autodoc", " Parameters @@ -1102,8 +1102,8 @@ Sets a 3d point on the vertex. ") UpdateVertex; void UpdateVertex(const TopoDS_Vertex & V, const gp_Pnt & P, const Standard_Real Tol); - /****************** UpdateVertex ******************/ - /**** md5 signature: b52feaaa4502df1d7f3cae6d3e9d7801 ****/ + /****** BRep_Builder::UpdateVertex ******/ + /****** md5 signature: b52feaaa4502df1d7f3cae6d3e9d7801 ******/ %feature("compactdefaultargs") UpdateVertex; %feature("autodoc", " Parameters @@ -1123,8 +1123,8 @@ Sets the parameter for the vertex on the edge curves. ") UpdateVertex; void UpdateVertex(const TopoDS_Vertex & V, const Standard_Real P, const TopoDS_Edge & E, const Standard_Real Tol); - /****************** UpdateVertex ******************/ - /**** md5 signature: 5ad0bcf5af45a22a108943f1afb114c0 ****/ + /****** BRep_Builder::UpdateVertex ******/ + /****** md5 signature: 5ad0bcf5af45a22a108943f1afb114c0 ******/ %feature("compactdefaultargs") UpdateVertex; %feature("autodoc", " Parameters @@ -1145,8 +1145,8 @@ Sets the parameter for the vertex on the edge pcurve on the face. ") UpdateVertex; void UpdateVertex(const TopoDS_Vertex & V, const Standard_Real P, const TopoDS_Edge & E, const TopoDS_Face & F, const Standard_Real Tol); - /****************** UpdateVertex ******************/ - /**** md5 signature: 47f9ee35ce872e21e298db1be568b800 ****/ + /****** BRep_Builder::UpdateVertex ******/ + /****** md5 signature: 47f9ee35ce872e21e298db1be568b800 ******/ %feature("compactdefaultargs") UpdateVertex; %feature("autodoc", " Parameters @@ -1168,8 +1168,8 @@ Sets the parameter for the vertex on the edge pcurve on the surface. ") UpdateVertex; void UpdateVertex(const TopoDS_Vertex & V, const Standard_Real P, const TopoDS_Edge & E, const opencascade::handle & S, const TopLoc_Location & L, const Standard_Real Tol); - /****************** UpdateVertex ******************/ - /**** md5 signature: a4b2ad0dca279b29c6bdaf4e40d9c7ab ****/ + /****** BRep_Builder::UpdateVertex ******/ + /****** md5 signature: a4b2ad0dca279b29c6bdaf4e40d9c7ab ******/ %feature("compactdefaultargs") UpdateVertex; %feature("autodoc", " Parameters @@ -1190,8 +1190,8 @@ Sets the parameters for the vertex on the face. ") UpdateVertex; void UpdateVertex(const TopoDS_Vertex & Ve, const Standard_Real U, const Standard_Real V, const TopoDS_Face & F, const Standard_Real Tol); - /****************** UpdateVertex ******************/ - /**** md5 signature: cb6a93aeb2b020c8e41bd38b5d870c6d ****/ + /****** BRep_Builder::UpdateVertex ******/ + /****** md5 signature: cb6a93aeb2b020c8e41bd38b5d870c6d ******/ %feature("compactdefaultargs") UpdateVertex; %feature("autodoc", " Parameters @@ -1224,8 +1224,8 @@ Updates the vertex tolerance. %nodefaultctor BRep_CurveRepresentation; class BRep_CurveRepresentation : public Standard_Transient { public: - /****************** Continuity ******************/ - /**** md5 signature: 1ba066d280ca3c071eb1064dd6b783fc ****/ + /****** BRep_CurveRepresentation::Continuity ******/ + /****** md5 signature: 1ba066d280ca3c071eb1064dd6b783fc ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", "Return ------- @@ -1237,8 +1237,8 @@ No available documentation. ") Continuity; virtual const GeomAbs_Shape & Continuity(); - /****************** Continuity ******************/ - /**** md5 signature: 78d8ca8e106bd2f55e42d4dc5945fc32 ****/ + /****** BRep_CurveRepresentation::Continuity ******/ + /****** md5 signature: 78d8ca8e106bd2f55e42d4dc5945fc32 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", " Parameters @@ -1255,8 +1255,8 @@ No available documentation. ") Continuity; virtual void Continuity(const GeomAbs_Shape C); - /****************** Copy ******************/ - /**** md5 signature: 2b4cb601b45011a74ab9e5426b2deaa9 ****/ + /****** BRep_CurveRepresentation::Copy ******/ + /****** md5 signature: 2b4cb601b45011a74ab9e5426b2deaa9 ******/ %feature("compactdefaultargs") Copy; %feature("autodoc", "Return ------- @@ -1268,8 +1268,8 @@ Return a copy of this representation. ") Copy; virtual opencascade::handle Copy(); - /****************** Curve3D ******************/ - /**** md5 signature: d279ed7bfc4c5a1c9d25cce3ea782276 ****/ + /****** BRep_CurveRepresentation::Curve3D ******/ + /****** md5 signature: d279ed7bfc4c5a1c9d25cce3ea782276 ******/ %feature("compactdefaultargs") Curve3D; %feature("autodoc", "Return ------- @@ -1281,8 +1281,8 @@ No available documentation. ") Curve3D; virtual const opencascade::handle & Curve3D(); - /****************** Curve3D ******************/ - /**** md5 signature: d87953b26144d002be0a7e64301c0a6a ****/ + /****** BRep_CurveRepresentation::Curve3D ******/ + /****** md5 signature: d87953b26144d002be0a7e64301c0a6a ******/ %feature("compactdefaultargs") Curve3D; %feature("autodoc", " Parameters @@ -1320,8 +1320,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** IsCurve3D ******************/ - /**** md5 signature: 3eb9a6a272d02b06294d6182a9677766 ****/ + /****** BRep_CurveRepresentation::IsCurve3D ******/ + /****** md5 signature: 3eb9a6a272d02b06294d6182a9677766 ******/ %feature("compactdefaultargs") IsCurve3D; %feature("autodoc", "Return ------- @@ -1333,8 +1333,8 @@ A 3d curve representation. ") IsCurve3D; virtual Standard_Boolean IsCurve3D(); - /****************** IsCurveOnClosedSurface ******************/ - /**** md5 signature: 72c88b632fff4ad75d6d297a2a2f7f9b ****/ + /****** BRep_CurveRepresentation::IsCurveOnClosedSurface ******/ + /****** md5 signature: 72c88b632fff4ad75d6d297a2a2f7f9b ******/ %feature("compactdefaultargs") IsCurveOnClosedSurface; %feature("autodoc", "Return ------- @@ -1346,8 +1346,8 @@ A curve with two parametric curves on the same surface. ") IsCurveOnClosedSurface; virtual Standard_Boolean IsCurveOnClosedSurface(); - /****************** IsCurveOnSurface ******************/ - /**** md5 signature: 99c67b3aceff7d9bd0bedc4586bbdb9c ****/ + /****** BRep_CurveRepresentation::IsCurveOnSurface ******/ + /****** md5 signature: 99c67b3aceff7d9bd0bedc4586bbdb9c ******/ %feature("compactdefaultargs") IsCurveOnSurface; %feature("autodoc", "Return ------- @@ -1359,8 +1359,8 @@ A curve in the parametric space of a surface. ") IsCurveOnSurface; virtual Standard_Boolean IsCurveOnSurface(); - /****************** IsCurveOnSurface ******************/ - /**** md5 signature: c2f5aa58d459c2124c584d9822dbcfa8 ****/ + /****** BRep_CurveRepresentation::IsCurveOnSurface ******/ + /****** md5 signature: c2f5aa58d459c2124c584d9822dbcfa8 ******/ %feature("compactdefaultargs") IsCurveOnSurface; %feature("autodoc", " Parameters @@ -1378,8 +1378,8 @@ Is it a curve in the parametric space of with location . ") IsCurveOnSurface; virtual Standard_Boolean IsCurveOnSurface(const opencascade::handle & S, const TopLoc_Location & L); - /****************** IsPolygon3D ******************/ - /**** md5 signature: c82064ea4b47db0a2fc9f12440050f5f ****/ + /****** BRep_CurveRepresentation::IsPolygon3D ******/ + /****** md5 signature: c82064ea4b47db0a2fc9f12440050f5f ******/ %feature("compactdefaultargs") IsPolygon3D; %feature("autodoc", "Return ------- @@ -1391,8 +1391,8 @@ A 3d polygon representation. ") IsPolygon3D; virtual Standard_Boolean IsPolygon3D(); - /****************** IsPolygonOnClosedSurface ******************/ - /**** md5 signature: 08d24e672be6cac52e1cb77c8b36c07a ****/ + /****** BRep_CurveRepresentation::IsPolygonOnClosedSurface ******/ + /****** md5 signature: 08d24e672be6cac52e1cb77c8b36c07a ******/ %feature("compactdefaultargs") IsPolygonOnClosedSurface; %feature("autodoc", "Return ------- @@ -1404,8 +1404,8 @@ Two 2d polygon representations in the parametric space of a surface. ") IsPolygonOnClosedSurface; virtual Standard_Boolean IsPolygonOnClosedSurface(); - /****************** IsPolygonOnClosedTriangulation ******************/ - /**** md5 signature: b2c0e94e579bb49cddc711ef17a8417e ****/ + /****** BRep_CurveRepresentation::IsPolygonOnClosedTriangulation ******/ + /****** md5 signature: b2c0e94e579bb49cddc711ef17a8417e ******/ %feature("compactdefaultargs") IsPolygonOnClosedTriangulation; %feature("autodoc", "Return ------- @@ -1417,8 +1417,8 @@ A representation by two arrays of nodes on a triangulation. ") IsPolygonOnClosedTriangulation; virtual Standard_Boolean IsPolygonOnClosedTriangulation(); - /****************** IsPolygonOnSurface ******************/ - /**** md5 signature: 9e125f1682674ed70fec0c3b43b556e2 ****/ + /****** BRep_CurveRepresentation::IsPolygonOnSurface ******/ + /****** md5 signature: 9e125f1682674ed70fec0c3b43b556e2 ******/ %feature("compactdefaultargs") IsPolygonOnSurface; %feature("autodoc", "Return ------- @@ -1430,8 +1430,8 @@ A polygon in the parametric space of a surface. ") IsPolygonOnSurface; virtual Standard_Boolean IsPolygonOnSurface(); - /****************** IsPolygonOnSurface ******************/ - /**** md5 signature: 1c1f7b90498b125990ff9382d42d93c7 ****/ + /****** BRep_CurveRepresentation::IsPolygonOnSurface ******/ + /****** md5 signature: 1c1f7b90498b125990ff9382d42d93c7 ******/ %feature("compactdefaultargs") IsPolygonOnSurface; %feature("autodoc", " Parameters @@ -1449,8 +1449,8 @@ Is it a polygon in the parametric space of with location . ") IsPolygonOnSurface; virtual Standard_Boolean IsPolygonOnSurface(const opencascade::handle & S, const TopLoc_Location & L); - /****************** IsPolygonOnTriangulation ******************/ - /**** md5 signature: f046a82ed644d4b2694291b4a32158de ****/ + /****** BRep_CurveRepresentation::IsPolygonOnTriangulation ******/ + /****** md5 signature: f046a82ed644d4b2694291b4a32158de ******/ %feature("compactdefaultargs") IsPolygonOnTriangulation; %feature("autodoc", "Return ------- @@ -1462,8 +1462,8 @@ A representation by an array of nodes on a triangulation. ") IsPolygonOnTriangulation; virtual Standard_Boolean IsPolygonOnTriangulation(); - /****************** IsPolygonOnTriangulation ******************/ - /**** md5 signature: 97eed3382962bceb72e11a7487b53ae0 ****/ + /****** BRep_CurveRepresentation::IsPolygonOnTriangulation ******/ + /****** md5 signature: 97eed3382962bceb72e11a7487b53ae0 ******/ %feature("compactdefaultargs") IsPolygonOnTriangulation; %feature("autodoc", " Parameters @@ -1481,8 +1481,8 @@ Is it a polygon in the definition of with location . ") IsPolygonOnTriangulation; virtual Standard_Boolean IsPolygonOnTriangulation(const opencascade::handle & T, const TopLoc_Location & L); - /****************** IsRegularity ******************/ - /**** md5 signature: b3ade1c3f35fca3622ae410d91171b9b ****/ + /****** BRep_CurveRepresentation::IsRegularity ******/ + /****** md5 signature: b3ade1c3f35fca3622ae410d91171b9b ******/ %feature("compactdefaultargs") IsRegularity; %feature("autodoc", "Return ------- @@ -1494,8 +1494,8 @@ A continuity between two surfaces. ") IsRegularity; virtual Standard_Boolean IsRegularity(); - /****************** IsRegularity ******************/ - /**** md5 signature: 76619362955f541a58be5b044aa8bfcd ****/ + /****** BRep_CurveRepresentation::IsRegularity ******/ + /****** md5 signature: 76619362955f541a58be5b044aa8bfcd ******/ %feature("compactdefaultargs") IsRegularity; %feature("autodoc", " Parameters @@ -1515,8 +1515,8 @@ Is it a regularity between and with location and . ") IsRegularity; virtual Standard_Boolean IsRegularity(const opencascade::handle & S1, const opencascade::handle & S2, const TopLoc_Location & L1, const TopLoc_Location & L2); - /****************** Location ******************/ - /**** md5 signature: 1006fdd3bdd7eb59ebf6a6359a702a4f ****/ + /****** BRep_CurveRepresentation::Location ******/ + /****** md5 signature: 1006fdd3bdd7eb59ebf6a6359a702a4f ******/ %feature("compactdefaultargs") Location; %feature("autodoc", "Return ------- @@ -1528,8 +1528,8 @@ No available documentation. ") Location; const TopLoc_Location & Location(); - /****************** Location ******************/ - /**** md5 signature: a2c9495044664128886ca4ae6644e853 ****/ + /****** BRep_CurveRepresentation::Location ******/ + /****** md5 signature: a2c9495044664128886ca4ae6644e853 ******/ %feature("compactdefaultargs") Location; %feature("autodoc", " Parameters @@ -1546,8 +1546,8 @@ No available documentation. ") Location; void Location(const TopLoc_Location & L); - /****************** Location2 ******************/ - /**** md5 signature: a1ad6449a6ecb57b13b1f729a62f966c ****/ + /****** BRep_CurveRepresentation::Location2 ******/ + /****** md5 signature: a1ad6449a6ecb57b13b1f729a62f966c ******/ %feature("compactdefaultargs") Location2; %feature("autodoc", "Return ------- @@ -1559,8 +1559,8 @@ No available documentation. ") Location2; virtual const TopLoc_Location & Location2(); - /****************** PCurve ******************/ - /**** md5 signature: 43048aaabc4361e78597bb73f5eacb84 ****/ + /****** BRep_CurveRepresentation::PCurve ******/ + /****** md5 signature: 43048aaabc4361e78597bb73f5eacb84 ******/ %feature("compactdefaultargs") PCurve; %feature("autodoc", "Return ------- @@ -1572,8 +1572,8 @@ No available documentation. ") PCurve; virtual const opencascade::handle & PCurve(); - /****************** PCurve ******************/ - /**** md5 signature: 4167f86bc8643b2c1f384c75757d828a ****/ + /****** BRep_CurveRepresentation::PCurve ******/ + /****** md5 signature: 4167f86bc8643b2c1f384c75757d828a ******/ %feature("compactdefaultargs") PCurve; %feature("autodoc", " Parameters @@ -1590,8 +1590,8 @@ No available documentation. ") PCurve; virtual void PCurve(const opencascade::handle & C); - /****************** PCurve2 ******************/ - /**** md5 signature: 1ec87e5e62d4cf52996d939d5f6c998c ****/ + /****** BRep_CurveRepresentation::PCurve2 ******/ + /****** md5 signature: 1ec87e5e62d4cf52996d939d5f6c998c ******/ %feature("compactdefaultargs") PCurve2; %feature("autodoc", "Return ------- @@ -1603,8 +1603,8 @@ No available documentation. ") PCurve2; virtual const opencascade::handle & PCurve2(); - /****************** PCurve2 ******************/ - /**** md5 signature: d62e9c14e6c8bb4586bc7d40c0050500 ****/ + /****** BRep_CurveRepresentation::PCurve2 ******/ + /****** md5 signature: d62e9c14e6c8bb4586bc7d40c0050500 ******/ %feature("compactdefaultargs") PCurve2; %feature("autodoc", " Parameters @@ -1621,8 +1621,8 @@ No available documentation. ") PCurve2; virtual void PCurve2(const opencascade::handle & C); - /****************** Polygon ******************/ - /**** md5 signature: 7c83b4d9dd60de23db90d02f4823b0b7 ****/ + /****** BRep_CurveRepresentation::Polygon ******/ + /****** md5 signature: 7c83b4d9dd60de23db90d02f4823b0b7 ******/ %feature("compactdefaultargs") Polygon; %feature("autodoc", "Return ------- @@ -1634,8 +1634,8 @@ No available documentation. ") Polygon; virtual const opencascade::handle & Polygon(); - /****************** Polygon ******************/ - /**** md5 signature: 5a10418dc1d6401316bf3351b1ece99b ****/ + /****** BRep_CurveRepresentation::Polygon ******/ + /****** md5 signature: 5a10418dc1d6401316bf3351b1ece99b ******/ %feature("compactdefaultargs") Polygon; %feature("autodoc", " Parameters @@ -1652,8 +1652,8 @@ No available documentation. ") Polygon; virtual void Polygon(const opencascade::handle & P); - /****************** Polygon2 ******************/ - /**** md5 signature: 7e67f4343ce0293f3c0d87fba7d3ad77 ****/ + /****** BRep_CurveRepresentation::Polygon2 ******/ + /****** md5 signature: 7e67f4343ce0293f3c0d87fba7d3ad77 ******/ %feature("compactdefaultargs") Polygon2; %feature("autodoc", "Return ------- @@ -1665,8 +1665,8 @@ No available documentation. ") Polygon2; virtual const opencascade::handle & Polygon2(); - /****************** Polygon2 ******************/ - /**** md5 signature: 94e0a95d8b52abc29812d43e1fdcb012 ****/ + /****** BRep_CurveRepresentation::Polygon2 ******/ + /****** md5 signature: 94e0a95d8b52abc29812d43e1fdcb012 ******/ %feature("compactdefaultargs") Polygon2; %feature("autodoc", " Parameters @@ -1683,8 +1683,8 @@ No available documentation. ") Polygon2; virtual void Polygon2(const opencascade::handle & P); - /****************** Polygon3D ******************/ - /**** md5 signature: c03b6e6dd649921e41357d84e4afa929 ****/ + /****** BRep_CurveRepresentation::Polygon3D ******/ + /****** md5 signature: c03b6e6dd649921e41357d84e4afa929 ******/ %feature("compactdefaultargs") Polygon3D; %feature("autodoc", "Return ------- @@ -1696,8 +1696,8 @@ No available documentation. ") Polygon3D; virtual const opencascade::handle & Polygon3D(); - /****************** Polygon3D ******************/ - /**** md5 signature: d69b9ed42bdfdbbfea3e22f152a9af2f ****/ + /****** BRep_CurveRepresentation::Polygon3D ******/ + /****** md5 signature: d69b9ed42bdfdbbfea3e22f152a9af2f ******/ %feature("compactdefaultargs") Polygon3D; %feature("autodoc", " Parameters @@ -1714,8 +1714,8 @@ No available documentation. ") Polygon3D; virtual void Polygon3D(const opencascade::handle & P); - /****************** PolygonOnTriangulation ******************/ - /**** md5 signature: 3513ff8f648f9dff9767d9bb2ff49a30 ****/ + /****** BRep_CurveRepresentation::PolygonOnTriangulation ******/ + /****** md5 signature: 3513ff8f648f9dff9767d9bb2ff49a30 ******/ %feature("compactdefaultargs") PolygonOnTriangulation; %feature("autodoc", "Return ------- @@ -1727,8 +1727,8 @@ No available documentation. ") PolygonOnTriangulation; virtual const opencascade::handle & PolygonOnTriangulation(); - /****************** PolygonOnTriangulation ******************/ - /**** md5 signature: 50379d303554a02ec54f999e1d2c6e8c ****/ + /****** BRep_CurveRepresentation::PolygonOnTriangulation ******/ + /****** md5 signature: 50379d303554a02ec54f999e1d2c6e8c ******/ %feature("compactdefaultargs") PolygonOnTriangulation; %feature("autodoc", " Parameters @@ -1745,8 +1745,8 @@ No available documentation. ") PolygonOnTriangulation; virtual void PolygonOnTriangulation(const opencascade::handle & P); - /****************** PolygonOnTriangulation2 ******************/ - /**** md5 signature: bacac44468a1a9ac9b9bc4e0db96fc56 ****/ + /****** BRep_CurveRepresentation::PolygonOnTriangulation2 ******/ + /****** md5 signature: bacac44468a1a9ac9b9bc4e0db96fc56 ******/ %feature("compactdefaultargs") PolygonOnTriangulation2; %feature("autodoc", "Return ------- @@ -1758,8 +1758,8 @@ No available documentation. ") PolygonOnTriangulation2; virtual const opencascade::handle & PolygonOnTriangulation2(); - /****************** PolygonOnTriangulation2 ******************/ - /**** md5 signature: ba9816f8223ae3766e6abe18498c8f50 ****/ + /****** BRep_CurveRepresentation::PolygonOnTriangulation2 ******/ + /****** md5 signature: ba9816f8223ae3766e6abe18498c8f50 ******/ %feature("compactdefaultargs") PolygonOnTriangulation2; %feature("autodoc", " Parameters @@ -1776,8 +1776,8 @@ No available documentation. ") PolygonOnTriangulation2; virtual void PolygonOnTriangulation2(const opencascade::handle & P2); - /****************** Surface ******************/ - /**** md5 signature: caeaacb2504e4ba5658f6438ad005605 ****/ + /****** BRep_CurveRepresentation::Surface ******/ + /****** md5 signature: caeaacb2504e4ba5658f6438ad005605 ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", "Return ------- @@ -1789,8 +1789,8 @@ No available documentation. ") Surface; virtual const opencascade::handle & Surface(); - /****************** Surface2 ******************/ - /**** md5 signature: 469feb6c8dcb44ee50dfdedab0d8c3b9 ****/ + /****** BRep_CurveRepresentation::Surface2 ******/ + /****** md5 signature: 469feb6c8dcb44ee50dfdedab0d8c3b9 ******/ %feature("compactdefaultargs") Surface2; %feature("autodoc", "Return ------- @@ -1802,8 +1802,8 @@ No available documentation. ") Surface2; virtual const opencascade::handle & Surface2(); - /****************** Triangulation ******************/ - /**** md5 signature: 9c932a243ba3dce74eece1156590ffa4 ****/ + /****** BRep_CurveRepresentation::Triangulation ******/ + /****** md5 signature: 9c932a243ba3dce74eece1156590ffa4 ******/ %feature("compactdefaultargs") Triangulation; %feature("autodoc", "Return ------- @@ -1832,8 +1832,8 @@ No available documentation. %nodefaultctor BRep_PointRepresentation; class BRep_PointRepresentation : public Standard_Transient { public: - /****************** Curve ******************/ - /**** md5 signature: 0b527860f975af99bae0f38157e0b434 ****/ + /****** BRep_PointRepresentation::Curve ******/ + /****** md5 signature: 0b527860f975af99bae0f38157e0b434 ******/ %feature("compactdefaultargs") Curve; %feature("autodoc", "Return ------- @@ -1845,8 +1845,8 @@ No available documentation. ") Curve; virtual const opencascade::handle & Curve(); - /****************** Curve ******************/ - /**** md5 signature: e7a526b0c2503e9af23a4b0971e6b198 ****/ + /****** BRep_PointRepresentation::Curve ******/ + /****** md5 signature: e7a526b0c2503e9af23a4b0971e6b198 ******/ %feature("compactdefaultargs") Curve; %feature("autodoc", " Parameters @@ -1884,8 +1884,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** IsPointOnCurve ******************/ - /**** md5 signature: 7c324f51cb2ffeabf00df42f8c95d4fa ****/ + /****** BRep_PointRepresentation::IsPointOnCurve ******/ + /****** md5 signature: 7c324f51cb2ffeabf00df42f8c95d4fa ******/ %feature("compactdefaultargs") IsPointOnCurve; %feature("autodoc", "Return ------- @@ -1897,8 +1897,8 @@ A point on a 3d curve. ") IsPointOnCurve; virtual Standard_Boolean IsPointOnCurve(); - /****************** IsPointOnCurve ******************/ - /**** md5 signature: df3f830e1372e8a85aa278368212b7a0 ****/ + /****** BRep_PointRepresentation::IsPointOnCurve ******/ + /****** md5 signature: df3f830e1372e8a85aa278368212b7a0 ******/ %feature("compactdefaultargs") IsPointOnCurve; %feature("autodoc", " Parameters @@ -1916,8 +1916,8 @@ A point on the curve . ") IsPointOnCurve; virtual Standard_Boolean IsPointOnCurve(const opencascade::handle & C, const TopLoc_Location & L); - /****************** IsPointOnCurveOnSurface ******************/ - /**** md5 signature: 10495de40839fdd3337c523f5cd30d3f ****/ + /****** BRep_PointRepresentation::IsPointOnCurveOnSurface ******/ + /****** md5 signature: 10495de40839fdd3337c523f5cd30d3f ******/ %feature("compactdefaultargs") IsPointOnCurveOnSurface; %feature("autodoc", "Return ------- @@ -1929,8 +1929,8 @@ A point on a 2d curve on a surface. ") IsPointOnCurveOnSurface; virtual Standard_Boolean IsPointOnCurveOnSurface(); - /****************** IsPointOnCurveOnSurface ******************/ - /**** md5 signature: 80624704f58b4028b17e9c7e2ade123c ****/ + /****** BRep_PointRepresentation::IsPointOnCurveOnSurface ******/ + /****** md5 signature: 80624704f58b4028b17e9c7e2ade123c ******/ %feature("compactdefaultargs") IsPointOnCurveOnSurface; %feature("autodoc", " Parameters @@ -1949,8 +1949,8 @@ A point on the 2d curve on the surface . ") IsPointOnCurveOnSurface; virtual Standard_Boolean IsPointOnCurveOnSurface(const opencascade::handle & PC, const opencascade::handle & S, const TopLoc_Location & L); - /****************** IsPointOnSurface ******************/ - /**** md5 signature: 9f06ea5cc25d99745a00c53dd1c6ad46 ****/ + /****** BRep_PointRepresentation::IsPointOnSurface ******/ + /****** md5 signature: 9f06ea5cc25d99745a00c53dd1c6ad46 ******/ %feature("compactdefaultargs") IsPointOnSurface; %feature("autodoc", "Return ------- @@ -1962,8 +1962,8 @@ A point on a surface. ") IsPointOnSurface; virtual Standard_Boolean IsPointOnSurface(); - /****************** IsPointOnSurface ******************/ - /**** md5 signature: 0cda33b49cc335d68473d388862051a2 ****/ + /****** BRep_PointRepresentation::IsPointOnSurface ******/ + /****** md5 signature: 0cda33b49cc335d68473d388862051a2 ******/ %feature("compactdefaultargs") IsPointOnSurface; %feature("autodoc", " Parameters @@ -1981,8 +1981,8 @@ A point on the surface . ") IsPointOnSurface; virtual Standard_Boolean IsPointOnSurface(const opencascade::handle & S, const TopLoc_Location & L); - /****************** Location ******************/ - /**** md5 signature: 1006fdd3bdd7eb59ebf6a6359a702a4f ****/ + /****** BRep_PointRepresentation::Location ******/ + /****** md5 signature: 1006fdd3bdd7eb59ebf6a6359a702a4f ******/ %feature("compactdefaultargs") Location; %feature("autodoc", "Return ------- @@ -1994,8 +1994,8 @@ No available documentation. ") Location; const TopLoc_Location & Location(); - /****************** Location ******************/ - /**** md5 signature: a2c9495044664128886ca4ae6644e853 ****/ + /****** BRep_PointRepresentation::Location ******/ + /****** md5 signature: a2c9495044664128886ca4ae6644e853 ******/ %feature("compactdefaultargs") Location; %feature("autodoc", " Parameters @@ -2012,8 +2012,8 @@ No available documentation. ") Location; void Location(const TopLoc_Location & L); - /****************** PCurve ******************/ - /**** md5 signature: 43048aaabc4361e78597bb73f5eacb84 ****/ + /****** BRep_PointRepresentation::PCurve ******/ + /****** md5 signature: 43048aaabc4361e78597bb73f5eacb84 ******/ %feature("compactdefaultargs") PCurve; %feature("autodoc", "Return ------- @@ -2025,8 +2025,8 @@ No available documentation. ") PCurve; virtual const opencascade::handle & PCurve(); - /****************** PCurve ******************/ - /**** md5 signature: 4167f86bc8643b2c1f384c75757d828a ****/ + /****** BRep_PointRepresentation::PCurve ******/ + /****** md5 signature: 4167f86bc8643b2c1f384c75757d828a ******/ %feature("compactdefaultargs") PCurve; %feature("autodoc", " Parameters @@ -2043,8 +2043,8 @@ No available documentation. ") PCurve; virtual void PCurve(const opencascade::handle & C); - /****************** Parameter ******************/ - /**** md5 signature: ecccdeaeaa0deed24f47e61ad75d24f1 ****/ + /****** BRep_PointRepresentation::Parameter ******/ + /****** md5 signature: ecccdeaeaa0deed24f47e61ad75d24f1 ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", "Return ------- @@ -2056,8 +2056,8 @@ No available documentation. ") Parameter; Standard_Real Parameter(); - /****************** Parameter ******************/ - /**** md5 signature: 26acaf0b4677a7a04af978de63424b8a ****/ + /****** BRep_PointRepresentation::Parameter ******/ + /****** md5 signature: 26acaf0b4677a7a04af978de63424b8a ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", " Parameters @@ -2074,8 +2074,8 @@ No available documentation. ") Parameter; void Parameter(const Standard_Real P); - /****************** Parameter2 ******************/ - /**** md5 signature: ebec675141eed0afeab9cec9239b82fd ****/ + /****** BRep_PointRepresentation::Parameter2 ******/ + /****** md5 signature: ebec675141eed0afeab9cec9239b82fd ******/ %feature("compactdefaultargs") Parameter2; %feature("autodoc", "Return ------- @@ -2087,8 +2087,8 @@ No available documentation. ") Parameter2; virtual Standard_Real Parameter2(); - /****************** Parameter2 ******************/ - /**** md5 signature: ba1ce084d93aa3fbbf8109406ec28c85 ****/ + /****** BRep_PointRepresentation::Parameter2 ******/ + /****** md5 signature: ba1ce084d93aa3fbbf8109406ec28c85 ******/ %feature("compactdefaultargs") Parameter2; %feature("autodoc", " Parameters @@ -2105,8 +2105,8 @@ No available documentation. ") Parameter2; virtual void Parameter2(const Standard_Real P); - /****************** Surface ******************/ - /**** md5 signature: caeaacb2504e4ba5658f6438ad005605 ****/ + /****** BRep_PointRepresentation::Surface ******/ + /****** md5 signature: caeaacb2504e4ba5658f6438ad005605 ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", "Return ------- @@ -2118,8 +2118,8 @@ No available documentation. ") Surface; virtual const opencascade::handle & Surface(); - /****************** Surface ******************/ - /**** md5 signature: 2d28bc979e4349a8444df575f31f8c69 ****/ + /****** BRep_PointRepresentation::Surface ******/ + /****** md5 signature: 2d28bc979e4349a8444df575f31f8c69 ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", " Parameters @@ -2152,8 +2152,8 @@ No available documentation. *******************/ class BRep_TEdge : public TopoDS_TEdge { public: - /****************** BRep_TEdge ******************/ - /**** md5 signature: dc5e73bb712d71a9e89a159289621391 ****/ + /****** BRep_TEdge::BRep_TEdge ******/ + /****** md5 signature: dc5e73bb712d71a9e89a159289621391 ******/ %feature("compactdefaultargs") BRep_TEdge; %feature("autodoc", "Return ------- @@ -2165,8 +2165,8 @@ Creates an empty tedge. ") BRep_TEdge; BRep_TEdge(); - /****************** ChangeCurves ******************/ - /**** md5 signature: c7093778d271363c43221185b70772c2 ****/ + /****** BRep_TEdge::ChangeCurves ******/ + /****** md5 signature: c7093778d271363c43221185b70772c2 ******/ %feature("compactdefaultargs") ChangeCurves; %feature("autodoc", "Return ------- @@ -2178,8 +2178,8 @@ No available documentation. ") ChangeCurves; BRep_ListOfCurveRepresentation & ChangeCurves(); - /****************** Curves ******************/ - /**** md5 signature: 380c29c54228acfb467d87ab2aa82789 ****/ + /****** BRep_TEdge::Curves ******/ + /****** md5 signature: 380c29c54228acfb467d87ab2aa82789 ******/ %feature("compactdefaultargs") Curves; %feature("autodoc", "Return ------- @@ -2191,8 +2191,8 @@ No available documentation. ") Curves; BRep_ListOfCurveRepresentation Curves(); - /****************** Degenerated ******************/ - /**** md5 signature: ecd3f4abf547c73285489df59f09d893 ****/ + /****** BRep_TEdge::Degenerated ******/ + /****** md5 signature: ecd3f4abf547c73285489df59f09d893 ******/ %feature("compactdefaultargs") Degenerated; %feature("autodoc", "Return ------- @@ -2204,8 +2204,8 @@ No available documentation. ") Degenerated; Standard_Boolean Degenerated(); - /****************** Degenerated ******************/ - /**** md5 signature: 060f5e58625d202b0cc508497a97f999 ****/ + /****** BRep_TEdge::Degenerated ******/ + /****** md5 signature: 060f5e58625d202b0cc508497a97f999 ******/ %feature("compactdefaultargs") Degenerated; %feature("autodoc", " Parameters @@ -2243,8 +2243,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** EmptyCopy ******************/ - /**** md5 signature: 8ab9f2aeb90e3da510c24152dd199206 ****/ + /****** BRep_TEdge::EmptyCopy ******/ + /****** md5 signature: 8ab9f2aeb90e3da510c24152dd199206 ******/ %feature("compactdefaultargs") EmptyCopy; %feature("autodoc", "Return ------- @@ -2256,8 +2256,8 @@ Returns a copy of the tshape with no sub-shapes. ") EmptyCopy; opencascade::handle EmptyCopy(); - /****************** SameParameter ******************/ - /**** md5 signature: f4740c56ff2fddf1fa0cf5af61044630 ****/ + /****** BRep_TEdge::SameParameter ******/ + /****** md5 signature: f4740c56ff2fddf1fa0cf5af61044630 ******/ %feature("compactdefaultargs") SameParameter; %feature("autodoc", "Return ------- @@ -2269,8 +2269,8 @@ No available documentation. ") SameParameter; Standard_Boolean SameParameter(); - /****************** SameParameter ******************/ - /**** md5 signature: 971f1e388de91e0974c1ea559734a641 ****/ + /****** BRep_TEdge::SameParameter ******/ + /****** md5 signature: 971f1e388de91e0974c1ea559734a641 ******/ %feature("compactdefaultargs") SameParameter; %feature("autodoc", " Parameters @@ -2287,8 +2287,8 @@ No available documentation. ") SameParameter; void SameParameter(const Standard_Boolean S); - /****************** SameRange ******************/ - /**** md5 signature: f0165c4a9606e03adad27f73c14db766 ****/ + /****** BRep_TEdge::SameRange ******/ + /****** md5 signature: f0165c4a9606e03adad27f73c14db766 ******/ %feature("compactdefaultargs") SameRange; %feature("autodoc", "Return ------- @@ -2300,8 +2300,8 @@ No available documentation. ") SameRange; Standard_Boolean SameRange(); - /****************** SameRange ******************/ - /**** md5 signature: 776576a6b34833f7e7ff608a4ed6cb28 ****/ + /****** BRep_TEdge::SameRange ******/ + /****** md5 signature: 776576a6b34833f7e7ff608a4ed6cb28 ******/ %feature("compactdefaultargs") SameRange; %feature("autodoc", " Parameters @@ -2318,8 +2318,8 @@ No available documentation. ") SameRange; void SameRange(const Standard_Boolean S); - /****************** Tolerance ******************/ - /**** md5 signature: 9e5775014410d884d1a1adc1cd47930b ****/ + /****** BRep_TEdge::Tolerance ******/ + /****** md5 signature: 9e5775014410d884d1a1adc1cd47930b ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", "Return ------- @@ -2331,8 +2331,8 @@ No available documentation. ") Tolerance; Standard_Real Tolerance(); - /****************** Tolerance ******************/ - /**** md5 signature: 36bec8dcfdb7e7f4f4edb2eeca6bf06a ****/ + /****** BRep_TEdge::Tolerance ******/ + /****** md5 signature: 36bec8dcfdb7e7f4f4edb2eeca6bf06a ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", " Parameters @@ -2349,8 +2349,8 @@ No available documentation. ") Tolerance; void Tolerance(const Standard_Real T); - /****************** UpdateTolerance ******************/ - /**** md5 signature: d815779cec8f7136f7f9e7c3e47cab9e ****/ + /****** BRep_TEdge::UpdateTolerance ******/ + /****** md5 signature: d815779cec8f7136f7f9e7c3e47cab9e ******/ %feature("compactdefaultargs") UpdateTolerance; %feature("autodoc", " Parameters @@ -2383,8 +2383,8 @@ Sets the tolerance to the max of and the current tolerance. *******************/ class BRep_TFace : public TopoDS_TFace { public: - /****************** BRep_TFace ******************/ - /**** md5 signature: 48097eeafa59b1363f7b8916a9b44f72 ****/ + /****** BRep_TFace::BRep_TFace ******/ + /****** md5 signature: 48097eeafa59b1363f7b8916a9b44f72 ******/ %feature("compactdefaultargs") BRep_TFace; %feature("autodoc", "Return ------- @@ -2396,8 +2396,8 @@ Creates an empty tface. ") BRep_TFace; BRep_TFace(); - /****************** ActiveTriangulation ******************/ - /**** md5 signature: 700e23716c69d5b67f3f27b14bf22b4f ****/ + /****** BRep_TFace::ActiveTriangulation ******/ + /****** md5 signature: 700e23716c69d5b67f3f27b14bf22b4f ******/ %feature("compactdefaultargs") ActiveTriangulation; %feature("autodoc", "Return ------- @@ -2430,8 +2430,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** EmptyCopy ******************/ - /**** md5 signature: 3d9756f12a98e8eef17d86b0c132771f ****/ + /****** BRep_TFace::EmptyCopy ******/ + /****** md5 signature: 3d9756f12a98e8eef17d86b0c132771f ******/ %feature("compactdefaultargs") EmptyCopy; %feature("autodoc", "Return ------- @@ -2443,8 +2443,8 @@ Returns a copy of the tshape with no sub-shapes. the new face has no triangulati ") EmptyCopy; virtual opencascade::handle EmptyCopy(); - /****************** Location ******************/ - /**** md5 signature: 57e4db9c8a7a08cffc827dc50be227c9 ****/ + /****** BRep_TFace::Location ******/ + /****** md5 signature: 57e4db9c8a7a08cffc827dc50be227c9 ******/ %feature("compactdefaultargs") Location; %feature("autodoc", "Return ------- @@ -2456,8 +2456,8 @@ Returns the face location. ") Location; const TopLoc_Location & Location(); - /****************** Location ******************/ - /**** md5 signature: bb857ae8889d5b33371c407b0c54d0cb ****/ + /****** BRep_TFace::Location ******/ + /****** md5 signature: bb857ae8889d5b33371c407b0c54d0cb ******/ %feature("compactdefaultargs") Location; %feature("autodoc", " Parameters @@ -2474,8 +2474,8 @@ Sets the location for this face. ") Location; void Location(const TopLoc_Location & theLocation); - /****************** NaturalRestriction ******************/ - /**** md5 signature: 73f4cd683852501cbdb851a873e3006e ****/ + /****** BRep_TFace::NaturalRestriction ******/ + /****** md5 signature: 73f4cd683852501cbdb851a873e3006e ******/ %feature("compactdefaultargs") NaturalRestriction; %feature("autodoc", "Return ------- @@ -2487,8 +2487,8 @@ Returns true if the boundary of this face is known to be the parametric space (u ") NaturalRestriction; Standard_Boolean NaturalRestriction(); - /****************** NaturalRestriction ******************/ - /**** md5 signature: 3dc8b4a5fc00fb6b99650b6f24e2c30a ****/ + /****** BRep_TFace::NaturalRestriction ******/ + /****** md5 signature: 3dc8b4a5fc00fb6b99650b6f24e2c30a ******/ %feature("compactdefaultargs") NaturalRestriction; %feature("autodoc", " Parameters @@ -2505,8 +2505,8 @@ Sets the flag that is true if the boundary of this face is known to be the param ") NaturalRestriction; void NaturalRestriction(const Standard_Boolean theRestriction); - /****************** NbTriangulations ******************/ - /**** md5 signature: 19c79cd06fe3039a67f78fa6226f6d24 ****/ + /****** BRep_TFace::NbTriangulations ******/ + /****** md5 signature: 19c79cd06fe3039a67f78fa6226f6d24 ******/ %feature("compactdefaultargs") NbTriangulations; %feature("autodoc", "Return ------- @@ -2518,8 +2518,8 @@ Returns number of available face triangulations. ") NbTriangulations; Standard_Integer NbTriangulations(); - /****************** Surface ******************/ - /**** md5 signature: 3aa31a6d63da8a25f018cf96599c0928 ****/ + /****** BRep_TFace::Surface ******/ + /****** md5 signature: 3aa31a6d63da8a25f018cf96599c0928 ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", "Return ------- @@ -2531,8 +2531,8 @@ Returns face surface. ") Surface; const opencascade::handle & Surface(); - /****************** Surface ******************/ - /**** md5 signature: 277744bd75ecf30c3537bd170d0e688b ****/ + /****** BRep_TFace::Surface ******/ + /****** md5 signature: 277744bd75ecf30c3537bd170d0e688b ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", " Parameters @@ -2549,8 +2549,8 @@ Sets surface for this face. ") Surface; void Surface(const opencascade::handle & theSurface); - /****************** Tolerance ******************/ - /**** md5 signature: 327dcbe220ae5ba3e0203f32c61c38db ****/ + /****** BRep_TFace::Tolerance ******/ + /****** md5 signature: 327dcbe220ae5ba3e0203f32c61c38db ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", "Return ------- @@ -2562,8 +2562,8 @@ Returns the face tolerance. ") Tolerance; Standard_Real Tolerance(); - /****************** Tolerance ******************/ - /**** md5 signature: 87220829eafedab2b5ef265dd6be1ecf ****/ + /****** BRep_TFace::Tolerance ******/ + /****** md5 signature: 87220829eafedab2b5ef265dd6be1ecf ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", " Parameters @@ -2580,8 +2580,8 @@ Sets the tolerance for this face. ") Tolerance; void Tolerance(const Standard_Real theTolerance); - /****************** Triangulation ******************/ - /**** md5 signature: 031b83aac32b0db8569fa3861a62e31f ****/ + /****** BRep_TFace::Triangulation ******/ + /****** md5 signature: 031b83aac32b0db8569fa3861a62e31f ******/ %feature("compactdefaultargs") Triangulation; %feature("autodoc", " Parameters @@ -2598,8 +2598,8 @@ Returns the triangulation of this face according to the mesh purpose. @param[in] ") Triangulation; const opencascade::handle & Triangulation(const Poly_MeshPurpose thePurpose = Poly_MeshPurpose_NONE); - /****************** Triangulation ******************/ - /**** md5 signature: ec7f735385ed0e818ad3a3ad3c13b876 ****/ + /****** BRep_TFace::Triangulation ******/ + /****** md5 signature: ec7f735385ed0e818ad3a3ad3c13b876 ******/ %feature("compactdefaultargs") Triangulation; %feature("autodoc", " Parameters @@ -2617,8 +2617,8 @@ Sets input triangulation for this face. @param thetriangulation [in] triangulati ") Triangulation; void Triangulation(const opencascade::handle & theTriangulation, const Standard_Boolean theToReset = true); - /****************** Triangulations ******************/ - /**** md5 signature: ff9482874654ec6c8f82dbd05f8b62aa ****/ + /****** BRep_TFace::Triangulations ******/ + /****** md5 signature: ff9482874654ec6c8f82dbd05f8b62aa ******/ %feature("compactdefaultargs") Triangulations; %feature("autodoc", "Return ------- @@ -2630,8 +2630,8 @@ Returns the list of available face triangulations. ") Triangulations; const Poly_ListOfTriangulation & Triangulations(); - /****************** Triangulations ******************/ - /**** md5 signature: 9aea5c4c84dd41a6b79e5dc9a6ea0806 ****/ + /****** BRep_TFace::Triangulations ******/ + /****** md5 signature: 9aea5c4c84dd41a6b79e5dc9a6ea0806 ******/ %feature("compactdefaultargs") Triangulations; %feature("autodoc", " Parameters @@ -2665,8 +2665,8 @@ Sets input list of triangulations and currently active triangulation for this fa *********************/ class BRep_TVertex : public TopoDS_TVertex { public: - /****************** BRep_TVertex ******************/ - /**** md5 signature: 3922795a238613ee8bf7ad992e0d7900 ****/ + /****** BRep_TVertex::BRep_TVertex ******/ + /****** md5 signature: 3922795a238613ee8bf7ad992e0d7900 ******/ %feature("compactdefaultargs") BRep_TVertex; %feature("autodoc", "Return ------- @@ -2678,8 +2678,8 @@ No available documentation. ") BRep_TVertex; BRep_TVertex(); - /****************** ChangePoints ******************/ - /**** md5 signature: 9c8aaec6ac35930ce290f4893d0d1dad ****/ + /****** BRep_TVertex::ChangePoints ******/ + /****** md5 signature: 9c8aaec6ac35930ce290f4893d0d1dad ******/ %feature("compactdefaultargs") ChangePoints; %feature("autodoc", "Return ------- @@ -2712,8 +2712,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** EmptyCopy ******************/ - /**** md5 signature: 8ab9f2aeb90e3da510c24152dd199206 ****/ + /****** BRep_TVertex::EmptyCopy ******/ + /****** md5 signature: 8ab9f2aeb90e3da510c24152dd199206 ******/ %feature("compactdefaultargs") EmptyCopy; %feature("autodoc", "Return ------- @@ -2725,8 +2725,8 @@ Returns a copy of the tshape with no sub-shapes. ") EmptyCopy; opencascade::handle EmptyCopy(); - /****************** Pnt ******************/ - /**** md5 signature: c0bafeed50f4eebb5964e2bf8520bf90 ****/ + /****** BRep_TVertex::Pnt ******/ + /****** md5 signature: c0bafeed50f4eebb5964e2bf8520bf90 ******/ %feature("compactdefaultargs") Pnt; %feature("autodoc", "Return ------- @@ -2738,8 +2738,8 @@ No available documentation. ") Pnt; const gp_Pnt Pnt(); - /****************** Pnt ******************/ - /**** md5 signature: 5c63e7382eafc56383cc46ade985ccff ****/ + /****** BRep_TVertex::Pnt ******/ + /****** md5 signature: 5c63e7382eafc56383cc46ade985ccff ******/ %feature("compactdefaultargs") Pnt; %feature("autodoc", " Parameters @@ -2756,8 +2756,8 @@ No available documentation. ") Pnt; void Pnt(const gp_Pnt & P); - /****************** Points ******************/ - /**** md5 signature: 94f0b490436a51d49c7e2367d3c7bbb0 ****/ + /****** BRep_TVertex::Points ******/ + /****** md5 signature: 94f0b490436a51d49c7e2367d3c7bbb0 ******/ %feature("compactdefaultargs") Points; %feature("autodoc", "Return ------- @@ -2769,8 +2769,8 @@ No available documentation. ") Points; const BRep_ListOfPointRepresentation & Points(); - /****************** Tolerance ******************/ - /**** md5 signature: 9e5775014410d884d1a1adc1cd47930b ****/ + /****** BRep_TVertex::Tolerance ******/ + /****** md5 signature: 9e5775014410d884d1a1adc1cd47930b ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", "Return ------- @@ -2782,8 +2782,8 @@ No available documentation. ") Tolerance; Standard_Real Tolerance(); - /****************** Tolerance ******************/ - /**** md5 signature: 36bec8dcfdb7e7f4f4edb2eeca6bf06a ****/ + /****** BRep_TVertex::Tolerance ******/ + /****** md5 signature: 36bec8dcfdb7e7f4f4edb2eeca6bf06a ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", " Parameters @@ -2800,8 +2800,8 @@ No available documentation. ") Tolerance; void Tolerance(const Standard_Real T); - /****************** UpdateTolerance ******************/ - /**** md5 signature: d815779cec8f7136f7f9e7c3e47cab9e ****/ + /****** BRep_TVertex::UpdateTolerance ******/ + /****** md5 signature: d815779cec8f7136f7f9e7c3e47cab9e ******/ %feature("compactdefaultargs") UpdateTolerance; %feature("autodoc", " Parameters @@ -2834,8 +2834,8 @@ Sets the tolerance to the max of and the current tolerance. ******************/ class BRep_Tool { public: - /****************** Continuity ******************/ - /**** md5 signature: db1e3396b84a7e307be8da87ce7551cd ****/ + /****** BRep_Tool::Continuity ******/ + /****** md5 signature: db1e3396b84a7e307be8da87ce7551cd ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", " Parameters @@ -2854,8 +2854,8 @@ Returns the continuity. ") Continuity; static GeomAbs_Shape Continuity(const TopoDS_Edge & E, const TopoDS_Face & F1, const TopoDS_Face & F2); - /****************** Continuity ******************/ - /**** md5 signature: 05bc8a9a3f4893b42026ee0c78170ca1 ****/ + /****** BRep_Tool::Continuity ******/ + /****** md5 signature: 05bc8a9a3f4893b42026ee0c78170ca1 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", " Parameters @@ -2876,8 +2876,8 @@ Returns the continuity. ") Continuity; static GeomAbs_Shape Continuity(const TopoDS_Edge & E, const opencascade::handle & S1, const opencascade::handle & S2, const TopLoc_Location & L1, const TopLoc_Location & L2); - /****************** Curve ******************/ - /**** md5 signature: 41bbd3916c9a4b8e71d76a77fd142236 ****/ + /****** BRep_Tool::Curve ******/ + /****** md5 signature: 41bbd3916c9a4b8e71d76a77fd142236 ******/ %feature("compactdefaultargs") Curve; %feature("autodoc", " Parameters @@ -2896,8 +2896,8 @@ Returns the 3d curve of the edge. may be a null handle. returns in the locat ") Curve; static const opencascade::handle & Curve(const TopoDS_Edge & E, TopLoc_Location & L, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Curve ******************/ - /**** md5 signature: 25054d3585c70f9581241c1f399ea5e7 ****/ + /****** BRep_Tool::Curve ******/ + /****** md5 signature: 25054d3585c70f9581241c1f399ea5e7 ******/ %feature("compactdefaultargs") Curve; %feature("autodoc", " Parameters @@ -2915,8 +2915,8 @@ Returns the 3d curve of the edge. may be a null handle. in and th ") Curve; static opencascade::handle Curve(const TopoDS_Edge & E, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** CurveOnPlane ******************/ - /**** md5 signature: f92505101b8372fadb2e63ec301d6980 ****/ + /****** BRep_Tool::CurveOnPlane ******/ + /****** md5 signature: f92505101b8372fadb2e63ec301d6980 ******/ %feature("compactdefaultargs") CurveOnPlane; %feature("autodoc", " Parameters @@ -2936,8 +2936,8 @@ For the planar surface builds the 2d curve for the edge by projection of the edg ") CurveOnPlane; static opencascade::handle CurveOnPlane(const TopoDS_Edge & E, const opencascade::handle & S, const TopLoc_Location & L, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** CurveOnSurface ******************/ - /**** md5 signature: 1490e00c62d6d2093296a244d8baa466 ****/ + /****** BRep_Tool::CurveOnSurface ******/ + /****** md5 signature: 1490e00c62d6d2093296a244d8baa466 ******/ %feature("compactdefaultargs") CurveOnSurface; %feature("autodoc", " Parameters @@ -2957,8 +2957,8 @@ Returns the curve associated to the edge in the parametric space of the face. re ") CurveOnSurface; static opencascade::handle CurveOnSurface(const TopoDS_Edge & E, const TopoDS_Face & F, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Boolean * theIsStored = NULL); - /****************** CurveOnSurface ******************/ - /**** md5 signature: 3a442b1530d9c81bbff3fadea605743e ****/ + /****** BRep_Tool::CurveOnSurface ******/ + /****** md5 signature: 3a442b1530d9c81bbff3fadea605743e ******/ %feature("compactdefaultargs") CurveOnSurface; %feature("autodoc", " Parameters @@ -2979,8 +2979,8 @@ Returns the curve associated to the edge in the parametric space of the surface. ") CurveOnSurface; static opencascade::handle CurveOnSurface(const TopoDS_Edge & E, const opencascade::handle & S, const TopLoc_Location & L, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Boolean * theIsStored = NULL); - /****************** CurveOnSurface ******************/ - /**** md5 signature: fb9b1fbc5f5e3312c1bd64ab586fa88f ****/ + /****** BRep_Tool::CurveOnSurface ******/ + /****** md5 signature: fb9b1fbc5f5e3312c1bd64ab586fa88f ******/ %feature("compactdefaultargs") CurveOnSurface; %feature("autodoc", " Parameters @@ -3001,8 +3001,8 @@ Returns in , , a 2d curve, a surface and a location for the edge . ") CurveOnSurface; static void CurveOnSurface(const TopoDS_Edge & E, opencascade::handle & C, opencascade::handle & S, TopLoc_Location & L, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** CurveOnSurface ******************/ - /**** md5 signature: 6f4f3f522500fc969face4c6451b085e ****/ + /****** BRep_Tool::CurveOnSurface ******/ + /****** md5 signature: 6f4f3f522500fc969face4c6451b085e ******/ %feature("compactdefaultargs") CurveOnSurface; %feature("autodoc", " Parameters @@ -3024,8 +3024,8 @@ Returns in , , the 2d curve, the surface and the location for the edge ") CurveOnSurface; static void CurveOnSurface(const TopoDS_Edge & E, opencascade::handle & C, opencascade::handle & S, TopLoc_Location & L, Standard_Real &OutValue, Standard_Real &OutValue, const Standard_Integer Index); - /****************** Degenerated ******************/ - /**** md5 signature: 065e91ab65eebb04f4157f99dfb61a5f ****/ + /****** BRep_Tool::Degenerated ******/ + /****** md5 signature: 065e91ab65eebb04f4157f99dfb61a5f ******/ %feature("compactdefaultargs") Degenerated; %feature("autodoc", " Parameters @@ -3042,8 +3042,8 @@ Returns true if the edge is degenerated. ") Degenerated; static Standard_Boolean Degenerated(const TopoDS_Edge & E); - /****************** HasContinuity ******************/ - /**** md5 signature: 28de7d368e6753102bc97f842c0bbc34 ****/ + /****** BRep_Tool::HasContinuity ******/ + /****** md5 signature: 28de7d368e6753102bc97f842c0bbc34 ******/ %feature("compactdefaultargs") HasContinuity; %feature("autodoc", " Parameters @@ -3062,8 +3062,8 @@ Returns true if the edge is on the surfaces of the two faces. ") HasContinuity; static Standard_Boolean HasContinuity(const TopoDS_Edge & E, const TopoDS_Face & F1, const TopoDS_Face & F2); - /****************** HasContinuity ******************/ - /**** md5 signature: 4e914e4f0ffad7c5e4ad1bbcbb49f9db ****/ + /****** BRep_Tool::HasContinuity ******/ + /****** md5 signature: 4e914e4f0ffad7c5e4ad1bbcbb49f9db ******/ %feature("compactdefaultargs") HasContinuity; %feature("autodoc", " Parameters @@ -3084,8 +3084,8 @@ Returns true if the edge is on the surfaces. ") HasContinuity; static Standard_Boolean HasContinuity(const TopoDS_Edge & E, const opencascade::handle & S1, const opencascade::handle & S2, const TopLoc_Location & L1, const TopLoc_Location & L2); - /****************** HasContinuity ******************/ - /**** md5 signature: 590c0c5ffdf73c7bc74af7efff8daacc ****/ + /****** BRep_Tool::HasContinuity ******/ + /****** md5 signature: 590c0c5ffdf73c7bc74af7efff8daacc ******/ %feature("compactdefaultargs") HasContinuity; %feature("autodoc", " Parameters @@ -3102,8 +3102,8 @@ Returns true if the edge has regularity on some two surfaces. ") HasContinuity; static Standard_Boolean HasContinuity(const TopoDS_Edge & E); - /****************** IsClosed ******************/ - /**** md5 signature: f8e1bed2f4c39eb2e90687cebc873cc7 ****/ + /****** BRep_Tool::IsClosed ******/ + /****** md5 signature: f8e1bed2f4c39eb2e90687cebc873cc7 ******/ %feature("compactdefaultargs") IsClosed; %feature("autodoc", " Parameters @@ -3120,8 +3120,8 @@ If s is shell, returns true if it has no free boundaries (edges). if s is wire, ") IsClosed; static Standard_Boolean IsClosed(const TopoDS_Shape & S); - /****************** IsClosed ******************/ - /**** md5 signature: fe1173e15d5c0fa9a4dc0e4bdc10019d ****/ + /****** BRep_Tool::IsClosed ******/ + /****** md5 signature: fe1173e15d5c0fa9a4dc0e4bdc10019d ******/ %feature("compactdefaultargs") IsClosed; %feature("autodoc", " Parameters @@ -3139,8 +3139,8 @@ Returns true if has two pcurves in the parametric space of . i.e. is ") IsClosed; static Standard_Boolean IsClosed(const TopoDS_Edge & E, const TopoDS_Face & F); - /****************** IsClosed ******************/ - /**** md5 signature: 5d71976e343bf12f49f22891aaedbbd4 ****/ + /****** BRep_Tool::IsClosed ******/ + /****** md5 signature: 5d71976e343bf12f49f22891aaedbbd4 ******/ %feature("compactdefaultargs") IsClosed; %feature("autodoc", " Parameters @@ -3159,8 +3159,8 @@ Returns true if has two pcurves in the parametric space of . i.e. is ") IsClosed; static Standard_Boolean IsClosed(const TopoDS_Edge & E, const opencascade::handle & S, const TopLoc_Location & L); - /****************** IsClosed ******************/ - /**** md5 signature: 0fb623443621ae6a98b532d96fdea052 ****/ + /****** BRep_Tool::IsClosed ******/ + /****** md5 signature: 0fb623443621ae6a98b532d96fdea052 ******/ %feature("compactdefaultargs") IsClosed; %feature("autodoc", " Parameters @@ -3179,8 +3179,8 @@ Returns true if has two arrays of indices in the triangulation . ") IsClosed; static Standard_Boolean IsClosed(const TopoDS_Edge & E, const opencascade::handle & T, const TopLoc_Location & L); - /****************** IsGeometric ******************/ - /**** md5 signature: a3ffa305b3ca35ee4bb109dae046e742 ****/ + /****** BRep_Tool::IsGeometric ******/ + /****** md5 signature: a3ffa305b3ca35ee4bb109dae046e742 ******/ %feature("compactdefaultargs") IsGeometric; %feature("autodoc", " Parameters @@ -3197,8 +3197,8 @@ Returns true if has a surface, false otherwise. ") IsGeometric; static Standard_Boolean IsGeometric(const TopoDS_Face & F); - /****************** IsGeometric ******************/ - /**** md5 signature: a117bc77f4eeb666df610e8aa8cf72d3 ****/ + /****** BRep_Tool::IsGeometric ******/ + /****** md5 signature: a117bc77f4eeb666df610e8aa8cf72d3 ******/ %feature("compactdefaultargs") IsGeometric; %feature("autodoc", " Parameters @@ -3215,8 +3215,8 @@ Returns true if is a 3d curve or a curve on surface. ") IsGeometric; static Standard_Boolean IsGeometric(const TopoDS_Edge & E); - /****************** MaxContinuity ******************/ - /**** md5 signature: 43a8d131c797f0a5a3836d8b844dd91d ****/ + /****** BRep_Tool::MaxContinuity ******/ + /****** md5 signature: 43a8d131c797f0a5a3836d8b844dd91d ******/ %feature("compactdefaultargs") MaxContinuity; %feature("autodoc", " Parameters @@ -3233,8 +3233,8 @@ Returns the max continuity of edge between some surfaces or geomabs_c0 if there ") MaxContinuity; static GeomAbs_Shape MaxContinuity(const TopoDS_Edge & theEdge); - /****************** MaxTolerance ******************/ - /**** md5 signature: 2e9b716a612aac14e6a93a8b379ae457 ****/ + /****** BRep_Tool::MaxTolerance ******/ + /****** md5 signature: 2e9b716a612aac14e6a93a8b379ae457 ******/ %feature("compactdefaultargs") MaxTolerance; %feature("autodoc", " Parameters @@ -3252,8 +3252,8 @@ Returns the maximum tolerance of input shape subshapes. ") MaxTolerance; static Standard_Real MaxTolerance(const TopoDS_Shape & theShape, const TopAbs_ShapeEnum theSubShape); - /****************** NaturalRestriction ******************/ - /**** md5 signature: 45722e9079a6a7d1eaf45dd458585b4b ****/ + /****** BRep_Tool::NaturalRestriction ******/ + /****** md5 signature: 45722e9079a6a7d1eaf45dd458585b4b ******/ %feature("compactdefaultargs") NaturalRestriction; %feature("autodoc", " Parameters @@ -3270,8 +3270,8 @@ Returns the naturalrestriction flag of the face. ") NaturalRestriction; static Standard_Boolean NaturalRestriction(const TopoDS_Face & F); - /****************** Parameter ******************/ - /**** md5 signature: c56b7997627b41e5c85381896332b42c ****/ + /****** BRep_Tool::Parameter ******/ + /****** md5 signature: c56b7997627b41e5c85381896332b42c ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", " Parameters @@ -3289,8 +3289,8 @@ Finds the parameter of on . @param thev [in] input vertex @param th ") Parameter; static Standard_Boolean Parameter(const TopoDS_Vertex & theV, const TopoDS_Edge & theE, Standard_Real &OutValue); - /****************** Parameter ******************/ - /**** md5 signature: acf610e0d04db95f94cbf8cee69452ec ****/ + /****** BRep_Tool::Parameter ******/ + /****** md5 signature: acf610e0d04db95f94cbf8cee69452ec ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", " Parameters @@ -3308,8 +3308,8 @@ Returns the parameter of on . throws standard_nosuchobject if no paramete ") Parameter; static Standard_Real Parameter(const TopoDS_Vertex & V, const TopoDS_Edge & E); - /****************** Parameter ******************/ - /**** md5 signature: 4ab7069dc8aa92aba4d9bc115fe6539e ****/ + /****** BRep_Tool::Parameter ******/ + /****** md5 signature: 4ab7069dc8aa92aba4d9bc115fe6539e ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", " Parameters @@ -3328,8 +3328,8 @@ Returns the parameters of the vertex on the pcurve of the edge on the face. ") Parameter; static Standard_Real Parameter(const TopoDS_Vertex & V, const TopoDS_Edge & E, const TopoDS_Face & F); - /****************** Parameter ******************/ - /**** md5 signature: 9607ea6c17746b94862cf9a0fd3d4098 ****/ + /****** BRep_Tool::Parameter ******/ + /****** md5 signature: 9607ea6c17746b94862cf9a0fd3d4098 ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", " Parameters @@ -3349,8 +3349,8 @@ Returns the parameters of the vertex on the pcurve of the edge on the surface. ") Parameter; static Standard_Real Parameter(const TopoDS_Vertex & V, const TopoDS_Edge & E, const opencascade::handle & S, const TopLoc_Location & L); - /****************** Parameters ******************/ - /**** md5 signature: 2dc7c67673575d16337453d698ba351f ****/ + /****** BRep_Tool::Parameters ******/ + /****** md5 signature: 2dc7c67673575d16337453d698ba351f ******/ %feature("compactdefaultargs") Parameters; %feature("autodoc", " Parameters @@ -3368,8 +3368,8 @@ Returns the parameters of the vertex on the face. ") Parameters; static gp_Pnt2d Parameters(const TopoDS_Vertex & V, const TopoDS_Face & F); - /****************** Pnt ******************/ - /**** md5 signature: b95aeb40cfca21ad6dd9a569b19bd30a ****/ + /****** BRep_Tool::Pnt ******/ + /****** md5 signature: b95aeb40cfca21ad6dd9a569b19bd30a ******/ %feature("compactdefaultargs") Pnt; %feature("autodoc", " Parameters @@ -3386,8 +3386,8 @@ Returns the 3d point. ") Pnt; static gp_Pnt Pnt(const TopoDS_Vertex & V); - /****************** Polygon3D ******************/ - /**** md5 signature: a86c387c6a4ceee0e0a5a44087861c1f ****/ + /****** BRep_Tool::Polygon3D ******/ + /****** md5 signature: a86c387c6a4ceee0e0a5a44087861c1f ******/ %feature("compactdefaultargs") Polygon3D; %feature("autodoc", " Parameters @@ -3405,8 +3405,8 @@ Returns the 3d polygon of the edge. may be a null handle. returns in the loc ") Polygon3D; static const opencascade::handle & Polygon3D(const TopoDS_Edge & E, TopLoc_Location & L); - /****************** PolygonOnSurface ******************/ - /**** md5 signature: 0df44917fdba720095985a99c6679ef1 ****/ + /****** BRep_Tool::PolygonOnSurface ******/ + /****** md5 signature: 0df44917fdba720095985a99c6679ef1 ******/ %feature("compactdefaultargs") PolygonOnSurface; %feature("autodoc", " Parameters @@ -3424,8 +3424,8 @@ Returns the polygon associated to the edge in the parametric space of the face. ") PolygonOnSurface; static opencascade::handle PolygonOnSurface(const TopoDS_Edge & E, const TopoDS_Face & F); - /****************** PolygonOnSurface ******************/ - /**** md5 signature: 425f4961b1c3163ca433c2718b7f10a1 ****/ + /****** BRep_Tool::PolygonOnSurface ******/ + /****** md5 signature: 425f4961b1c3163ca433c2718b7f10a1 ******/ %feature("compactdefaultargs") PolygonOnSurface; %feature("autodoc", " Parameters @@ -3444,8 +3444,8 @@ Returns the polygon associated to the edge in the parametric space of the surfac ") PolygonOnSurface; static opencascade::handle PolygonOnSurface(const TopoDS_Edge & E, const opencascade::handle & S, const TopLoc_Location & L); - /****************** PolygonOnSurface ******************/ - /**** md5 signature: 6b8c2f4b25acb070680e0688d6abbb4c ****/ + /****** BRep_Tool::PolygonOnSurface ******/ + /****** md5 signature: 6b8c2f4b25acb070680e0688d6abbb4c ******/ %feature("compactdefaultargs") PolygonOnSurface; %feature("autodoc", " Parameters @@ -3465,8 +3465,8 @@ Returns in , , a 2d curve, a surface and a location for the edge . ") PolygonOnSurface; static void PolygonOnSurface(const TopoDS_Edge & E, opencascade::handle & C, opencascade::handle & S, TopLoc_Location & L); - /****************** PolygonOnSurface ******************/ - /**** md5 signature: 4df2c84b232daf9288ee42d27cadc4ed ****/ + /****** BRep_Tool::PolygonOnSurface ******/ + /****** md5 signature: 4df2c84b232daf9288ee42d27cadc4ed ******/ %feature("compactdefaultargs") PolygonOnSurface; %feature("autodoc", " Parameters @@ -3487,8 +3487,8 @@ Returns in , , the 2d curve, the surface and the location for the edge ") PolygonOnSurface; static void PolygonOnSurface(const TopoDS_Edge & E, opencascade::handle & C, opencascade::handle & S, TopLoc_Location & L, const Standard_Integer Index); - /****************** PolygonOnTriangulation ******************/ - /**** md5 signature: 1f26c2d3f60238b6104180cbdf9d62fc ****/ + /****** BRep_Tool::PolygonOnTriangulation ******/ + /****** md5 signature: 1f26c2d3f60238b6104180cbdf9d62fc ******/ %feature("compactdefaultargs") PolygonOnTriangulation; %feature("autodoc", " Parameters @@ -3507,8 +3507,8 @@ Returns the polygon associated to the edge in the parametric space of the face. ") PolygonOnTriangulation; static const opencascade::handle & PolygonOnTriangulation(const TopoDS_Edge & E, const opencascade::handle & T, const TopLoc_Location & L); - /****************** PolygonOnTriangulation ******************/ - /**** md5 signature: f1dccc0f56c6f5715c5a85be9e491eab ****/ + /****** BRep_Tool::PolygonOnTriangulation ******/ + /****** md5 signature: f1dccc0f56c6f5715c5a85be9e491eab ******/ %feature("compactdefaultargs") PolygonOnTriangulation; %feature("autodoc", " Parameters @@ -3528,8 +3528,8 @@ Returns in

, , a polygon on triangulation, a triangulation and a locat ") PolygonOnTriangulation; static void PolygonOnTriangulation(const TopoDS_Edge & E, opencascade::handle & P, opencascade::handle & T, TopLoc_Location & L); - /****************** PolygonOnTriangulation ******************/ - /**** md5 signature: 8444cc17c9207c4de0356c44279d980f ****/ + /****** BRep_Tool::PolygonOnTriangulation ******/ + /****** md5 signature: 8444cc17c9207c4de0356c44279d980f ******/ %feature("compactdefaultargs") PolygonOnTriangulation; %feature("autodoc", " Parameters @@ -3550,8 +3550,8 @@ Returns in

, , a polygon on triangulation, a triangulation and a locat ") PolygonOnTriangulation; static void PolygonOnTriangulation(const TopoDS_Edge & E, opencascade::handle & P, opencascade::handle & T, TopLoc_Location & L, const Standard_Integer Index); - /****************** Range ******************/ - /**** md5 signature: 452dcf373fd2428c9869849dc564036a ****/ + /****** BRep_Tool::Range ******/ + /****** md5 signature: 452dcf373fd2428c9869849dc564036a ******/ %feature("compactdefaultargs") Range; %feature("autodoc", " Parameters @@ -3569,8 +3569,8 @@ Gets the range of the 3d curve. ") Range; static void Range(const TopoDS_Edge & E, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Range ******************/ - /**** md5 signature: 771b7c184556dfadb4f144600e6dcd6b ****/ + /****** BRep_Tool::Range ******/ + /****** md5 signature: 771b7c184556dfadb4f144600e6dcd6b ******/ %feature("compactdefaultargs") Range; %feature("autodoc", " Parameters @@ -3590,8 +3590,8 @@ Gets the range of the edge on the pcurve on the surface. ") Range; static void Range(const TopoDS_Edge & E, const opencascade::handle & S, const TopLoc_Location & L, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Range ******************/ - /**** md5 signature: 884c3290ec68254a8384b7c25b18df19 ****/ + /****** BRep_Tool::Range ******/ + /****** md5 signature: 884c3290ec68254a8384b7c25b18df19 ******/ %feature("compactdefaultargs") Range; %feature("autodoc", " Parameters @@ -3610,8 +3610,8 @@ Gets the range of the edge on the pcurve on the face. ") Range; static void Range(const TopoDS_Edge & E, const TopoDS_Face & F, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** SameParameter ******************/ - /**** md5 signature: 98c3f7693a7b54bd16cfa7b435716dd7 ****/ + /****** BRep_Tool::SameParameter ******/ + /****** md5 signature: 98c3f7693a7b54bd16cfa7b435716dd7 ******/ %feature("compactdefaultargs") SameParameter; %feature("autodoc", " Parameters @@ -3628,8 +3628,8 @@ Returns the sameparameter flag for the edge. ") SameParameter; static Standard_Boolean SameParameter(const TopoDS_Edge & E); - /****************** SameRange ******************/ - /**** md5 signature: e3ec20a22b9a7152ad26ab214fe505a1 ****/ + /****** BRep_Tool::SameRange ******/ + /****** md5 signature: e3ec20a22b9a7152ad26ab214fe505a1 ******/ %feature("compactdefaultargs") SameRange; %feature("autodoc", " Parameters @@ -3646,8 +3646,8 @@ Returns the samerange flag for the edge. ") SameRange; static Standard_Boolean SameRange(const TopoDS_Edge & E); - /****************** SetUVPoints ******************/ - /**** md5 signature: 673580e1d187fc89706cf9183100d91c ****/ + /****** BRep_Tool::SetUVPoints ******/ + /****** md5 signature: 673580e1d187fc89706cf9183100d91c ******/ %feature("compactdefaultargs") SetUVPoints; %feature("autodoc", " Parameters @@ -3668,8 +3668,8 @@ Sets the uv locations of the extremities of the edge. ") SetUVPoints; static void SetUVPoints(const TopoDS_Edge & E, const opencascade::handle & S, const TopLoc_Location & L, const gp_Pnt2d & PFirst, const gp_Pnt2d & PLast); - /****************** SetUVPoints ******************/ - /**** md5 signature: 2c4224463481424caa511d48bb2bb170 ****/ + /****** BRep_Tool::SetUVPoints ******/ + /****** md5 signature: 2c4224463481424caa511d48bb2bb170 ******/ %feature("compactdefaultargs") SetUVPoints; %feature("autodoc", " Parameters @@ -3689,8 +3689,8 @@ Sets the uv locations of the extremities of the edge. ") SetUVPoints; static void SetUVPoints(const TopoDS_Edge & E, const TopoDS_Face & F, const gp_Pnt2d & PFirst, const gp_Pnt2d & PLast); - /****************** Surface ******************/ - /**** md5 signature: df6db1093e3aea92a533703bc33e1bf1 ****/ + /****** BRep_Tool::Surface ******/ + /****** md5 signature: df6db1093e3aea92a533703bc33e1bf1 ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", " Parameters @@ -3708,8 +3708,8 @@ Returns the geometric surface of the face. returns in the location for the s ") Surface; static const opencascade::handle & Surface(const TopoDS_Face & F, TopLoc_Location & L); - /****************** Surface ******************/ - /**** md5 signature: 124bc3370b2c6ae0e621bca8b5f8d5ae ****/ + /****** BRep_Tool::Surface ******/ + /****** md5 signature: 124bc3370b2c6ae0e621bca8b5f8d5ae ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", " Parameters @@ -3726,8 +3726,8 @@ Returns the geometric surface of the face. it can be a copy if there is a locati ") Surface; static opencascade::handle Surface(const TopoDS_Face & F); - /****************** Tolerance ******************/ - /**** md5 signature: 856ae390a9a6947e76374ae65840fa78 ****/ + /****** BRep_Tool::Tolerance ******/ + /****** md5 signature: 856ae390a9a6947e76374ae65840fa78 ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", " Parameters @@ -3744,8 +3744,8 @@ Returns the tolerance of the face. ") Tolerance; static Standard_Real Tolerance(const TopoDS_Face & F); - /****************** Tolerance ******************/ - /**** md5 signature: fd914160aaa2a77dd68f63b0d2a1ac5e ****/ + /****** BRep_Tool::Tolerance ******/ + /****** md5 signature: fd914160aaa2a77dd68f63b0d2a1ac5e ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", " Parameters @@ -3762,8 +3762,8 @@ Returns the tolerance for . ") Tolerance; static Standard_Real Tolerance(const TopoDS_Edge & E); - /****************** Tolerance ******************/ - /**** md5 signature: dfdd613eb3da93aeb47e457dcbb5de3d ****/ + /****** BRep_Tool::Tolerance ******/ + /****** md5 signature: dfdd613eb3da93aeb47e457dcbb5de3d ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", " Parameters @@ -3780,8 +3780,8 @@ Returns the tolerance. ") Tolerance; static Standard_Real Tolerance(const TopoDS_Vertex & V); - /****************** Triangulation ******************/ - /**** md5 signature: d68c07d5a1ca2d4b4e577d7fa4cf54e1 ****/ + /****** BRep_Tool::Triangulation ******/ + /****** md5 signature: d68c07d5a1ca2d4b4e577d7fa4cf54e1 ******/ %feature("compactdefaultargs") Triangulation; %feature("autodoc", " Parameters @@ -3800,8 +3800,8 @@ Returns the triangulation of the face according to the mesh purpose. @param thef ") Triangulation; static const opencascade::handle & Triangulation(const TopoDS_Face & theFace, TopLoc_Location & theLocation, const Poly_MeshPurpose theMeshPurpose = Poly_MeshPurpose_NONE); - /****************** Triangulations ******************/ - /**** md5 signature: ac6d632b25937da86177ac5f5087cf51 ****/ + /****** BRep_Tool::Triangulations ******/ + /****** md5 signature: ac6d632b25937da86177ac5f5087cf51 ******/ %feature("compactdefaultargs") Triangulations; %feature("autodoc", " Parameters @@ -3819,8 +3819,8 @@ Returns all triangulations of the face. @param theface [in] the input face. @par ") Triangulations; static const Poly_ListOfTriangulation & Triangulations(const TopoDS_Face & theFace, TopLoc_Location & theLocation); - /****************** UVPoints ******************/ - /**** md5 signature: 739ea64a3ca04f61d1659b66cfc128ff ****/ + /****** BRep_Tool::UVPoints ******/ + /****** md5 signature: 739ea64a3ca04f61d1659b66cfc128ff ******/ %feature("compactdefaultargs") UVPoints; %feature("autodoc", " Parameters @@ -3841,8 +3841,8 @@ Gets the uv locations of the extremities of the edge. ") UVPoints; static void UVPoints(const TopoDS_Edge & E, const opencascade::handle & S, const TopLoc_Location & L, gp_Pnt2d & PFirst, gp_Pnt2d & PLast); - /****************** UVPoints ******************/ - /**** md5 signature: 65131528005ae1e7ebb2aaf4488fe3b1 ****/ + /****** BRep_Tool::UVPoints ******/ + /****** md5 signature: 65131528005ae1e7ebb2aaf4488fe3b1 ******/ %feature("compactdefaultargs") UVPoints; %feature("autodoc", " Parameters @@ -3876,8 +3876,8 @@ Gets the uv locations of the extremities of the edge. ******************************/ class BRep_CurveOn2Surfaces : public BRep_CurveRepresentation { public: - /****************** BRep_CurveOn2Surfaces ******************/ - /**** md5 signature: 1b89b178cf238eb747d177b75dc964eb ****/ + /****** BRep_CurveOn2Surfaces::BRep_CurveOn2Surfaces ******/ + /****** md5 signature: 1b89b178cf238eb747d177b75dc964eb ******/ %feature("compactdefaultargs") BRep_CurveOn2Surfaces; %feature("autodoc", " Parameters @@ -3898,8 +3898,8 @@ No available documentation. ") BRep_CurveOn2Surfaces; BRep_CurveOn2Surfaces(const opencascade::handle & S1, const opencascade::handle & S2, const TopLoc_Location & L1, const TopLoc_Location & L2, const GeomAbs_Shape C); - /****************** Continuity ******************/ - /**** md5 signature: 67f71f7e1008e6ff605877f145944f2b ****/ + /****** BRep_CurveOn2Surfaces::Continuity ******/ + /****** md5 signature: 67f71f7e1008e6ff605877f145944f2b ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", "Return ------- @@ -3911,8 +3911,8 @@ No available documentation. ") Continuity; virtual const GeomAbs_Shape & Continuity(); - /****************** Continuity ******************/ - /**** md5 signature: 7efede569c5d15316e14f5232ee3a296 ****/ + /****** BRep_CurveOn2Surfaces::Continuity ******/ + /****** md5 signature: 7efede569c5d15316e14f5232ee3a296 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", " Parameters @@ -3929,8 +3929,8 @@ No available documentation. ") Continuity; virtual void Continuity(const GeomAbs_Shape C); - /****************** Copy ******************/ - /**** md5 signature: 5ae8a834b37d0441b91b744e5b050c6d ****/ + /****** BRep_CurveOn2Surfaces::Copy ******/ + /****** md5 signature: 5ae8a834b37d0441b91b744e5b050c6d ******/ %feature("compactdefaultargs") Copy; %feature("autodoc", "Return ------- @@ -3942,8 +3942,8 @@ Return a copy of this representation. ") Copy; opencascade::handle Copy(); - /****************** D0 ******************/ - /**** md5 signature: c5111ce8ff4abb74b6c4ba34040c62bb ****/ + /****** BRep_CurveOn2Surfaces::D0 ******/ + /****** md5 signature: c5111ce8ff4abb74b6c4ba34040c62bb ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -3982,8 +3982,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** IsRegularity ******************/ - /**** md5 signature: fc2d0c9ac93b7bd44a0b1730043df993 ****/ + /****** BRep_CurveOn2Surfaces::IsRegularity ******/ + /****** md5 signature: fc2d0c9ac93b7bd44a0b1730043df993 ******/ %feature("compactdefaultargs") IsRegularity; %feature("autodoc", "Return ------- @@ -3995,8 +3995,8 @@ Returns true. ") IsRegularity; virtual Standard_Boolean IsRegularity(); - /****************** IsRegularity ******************/ - /**** md5 signature: d342137f91cebeb239140ef772bbae74 ****/ + /****** BRep_CurveOn2Surfaces::IsRegularity ******/ + /****** md5 signature: d342137f91cebeb239140ef772bbae74 ******/ %feature("compactdefaultargs") IsRegularity; %feature("autodoc", " Parameters @@ -4016,8 +4016,8 @@ A curve on two surfaces (continuity). ") IsRegularity; virtual Standard_Boolean IsRegularity(const opencascade::handle & S1, const opencascade::handle & S2, const TopLoc_Location & L1, const TopLoc_Location & L2); - /****************** Location2 ******************/ - /**** md5 signature: 35a20609403ba9e885d7f5ec0a54a126 ****/ + /****** BRep_CurveOn2Surfaces::Location2 ******/ + /****** md5 signature: 35a20609403ba9e885d7f5ec0a54a126 ******/ %feature("compactdefaultargs") Location2; %feature("autodoc", "Return ------- @@ -4029,8 +4029,8 @@ No available documentation. ") Location2; virtual const TopLoc_Location & Location2(); - /****************** Surface ******************/ - /**** md5 signature: 15e9ea02ca588f3610ae3d0618d607d8 ****/ + /****** BRep_CurveOn2Surfaces::Surface ******/ + /****** md5 signature: 15e9ea02ca588f3610ae3d0618d607d8 ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", "Return ------- @@ -4042,8 +4042,8 @@ No available documentation. ") Surface; virtual const opencascade::handle & Surface(); - /****************** Surface2 ******************/ - /**** md5 signature: 839f1c1ff057d92a50c65c26a6c27dd5 ****/ + /****** BRep_CurveOn2Surfaces::Surface2 ******/ + /****** md5 signature: 839f1c1ff057d92a50c65c26a6c27dd5 ******/ %feature("compactdefaultargs") Surface2; %feature("autodoc", "Return ------- @@ -4072,8 +4072,8 @@ No available documentation. %nodefaultctor BRep_GCurve; class BRep_GCurve : public BRep_CurveRepresentation { public: - /****************** D0 ******************/ - /**** md5 signature: 3375707864bca566a2f8c23866c10a67 ****/ + /****** BRep_GCurve::D0 ******/ + /****** md5 signature: 3375707864bca566a2f8c23866c10a67 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -4112,8 +4112,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** First ******************/ - /**** md5 signature: 009dd98af15e46b2da286731f40e1839 ****/ + /****** BRep_GCurve::First ******/ + /****** md5 signature: 009dd98af15e46b2da286731f40e1839 ******/ %feature("compactdefaultargs") First; %feature("autodoc", "Return ------- @@ -4125,8 +4125,8 @@ No available documentation. ") First; Standard_Real First(); - /****************** First ******************/ - /**** md5 signature: 058d922daacc28980343d7871c7a22e5 ****/ + /****** BRep_GCurve::First ******/ + /****** md5 signature: 058d922daacc28980343d7871c7a22e5 ******/ %feature("compactdefaultargs") First; %feature("autodoc", " Parameters @@ -4143,8 +4143,8 @@ No available documentation. ") First; void First(const Standard_Real F); - /****************** Last ******************/ - /**** md5 signature: 4c8063c237a4f73018a7949da8aef9fb ****/ + /****** BRep_GCurve::Last ******/ + /****** md5 signature: 4c8063c237a4f73018a7949da8aef9fb ******/ %feature("compactdefaultargs") Last; %feature("autodoc", "Return ------- @@ -4156,8 +4156,8 @@ No available documentation. ") Last; Standard_Real Last(); - /****************** Last ******************/ - /**** md5 signature: c3340e5e5f9f21c952d6c5f41e315294 ****/ + /****** BRep_GCurve::Last ******/ + /****** md5 signature: c3340e5e5f9f21c952d6c5f41e315294 ******/ %feature("compactdefaultargs") Last; %feature("autodoc", " Parameters @@ -4174,8 +4174,8 @@ No available documentation. ") Last; void Last(const Standard_Real L); - /****************** Range ******************/ - /**** md5 signature: 7a1384b2dd1c0480bcaa08b2116f0e9a ****/ + /****** BRep_GCurve::Range ******/ + /****** md5 signature: 7a1384b2dd1c0480bcaa08b2116f0e9a ******/ %feature("compactdefaultargs") Range; %feature("autodoc", " Parameters @@ -4192,8 +4192,8 @@ No available documentation. ") Range; void Range(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** SetRange ******************/ - /**** md5 signature: 4a19c7b6bd2369f897cb3fd2e6cdf6dd ****/ + /****** BRep_GCurve::SetRange ******/ + /****** md5 signature: 4a19c7b6bd2369f897cb3fd2e6cdf6dd ******/ %feature("compactdefaultargs") SetRange; %feature("autodoc", " Parameters @@ -4211,8 +4211,8 @@ No available documentation. ") SetRange; void SetRange(const Standard_Real First, const Standard_Real Last); - /****************** Update ******************/ - /**** md5 signature: 39b31f53ec35285afdd1d13bf1b04e26 ****/ + /****** BRep_GCurve::Update ******/ + /****** md5 signature: 39b31f53ec35285afdd1d13bf1b04e26 ******/ %feature("compactdefaultargs") Update; %feature("autodoc", "Return ------- @@ -4240,8 +4240,8 @@ Recomputes any derived data after a modification. this is called when the range **************************/ class BRep_PointOnCurve : public BRep_PointRepresentation { public: - /****************** BRep_PointOnCurve ******************/ - /**** md5 signature: e833506021dac13fc08babefacd0adc1 ****/ + /****** BRep_PointOnCurve::BRep_PointOnCurve ******/ + /****** md5 signature: e833506021dac13fc08babefacd0adc1 ******/ %feature("compactdefaultargs") BRep_PointOnCurve; %feature("autodoc", " Parameters @@ -4260,8 +4260,8 @@ No available documentation. ") BRep_PointOnCurve; BRep_PointOnCurve(const Standard_Real P, const opencascade::handle & C, const TopLoc_Location & L); - /****************** Curve ******************/ - /**** md5 signature: 7564dfeb906ea842191d6c8e9aa21fb2 ****/ + /****** BRep_PointOnCurve::Curve ******/ + /****** md5 signature: 7564dfeb906ea842191d6c8e9aa21fb2 ******/ %feature("compactdefaultargs") Curve; %feature("autodoc", "Return ------- @@ -4273,8 +4273,8 @@ No available documentation. ") Curve; virtual const opencascade::handle & Curve(); - /****************** Curve ******************/ - /**** md5 signature: 7935cf5261f3f51e5d7edaf832f76e01 ****/ + /****** BRep_PointOnCurve::Curve ******/ + /****** md5 signature: 7935cf5261f3f51e5d7edaf832f76e01 ******/ %feature("compactdefaultargs") Curve; %feature("autodoc", " Parameters @@ -4312,8 +4312,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** IsPointOnCurve ******************/ - /**** md5 signature: afd14cc038cef12d5da511ac1ad22904 ****/ + /****** BRep_PointOnCurve::IsPointOnCurve ******/ + /****** md5 signature: afd14cc038cef12d5da511ac1ad22904 ******/ %feature("compactdefaultargs") IsPointOnCurve; %feature("autodoc", "Return ------- @@ -4325,8 +4325,8 @@ Returns true. ") IsPointOnCurve; virtual Standard_Boolean IsPointOnCurve(); - /****************** IsPointOnCurve ******************/ - /**** md5 signature: 0a0e9cdfd37665e4d43b20820fd84e9b ****/ + /****** BRep_PointOnCurve::IsPointOnCurve ******/ + /****** md5 signature: 0a0e9cdfd37665e4d43b20820fd84e9b ******/ %feature("compactdefaultargs") IsPointOnCurve; %feature("autodoc", " Parameters @@ -4382,8 +4382,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** Surface ******************/ - /**** md5 signature: 15e9ea02ca588f3610ae3d0618d607d8 ****/ + /****** BRep_PointsOnSurface::Surface ******/ + /****** md5 signature: 15e9ea02ca588f3610ae3d0618d607d8 ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", "Return ------- @@ -4395,8 +4395,8 @@ No available documentation. ") Surface; virtual const opencascade::handle & Surface(); - /****************** Surface ******************/ - /**** md5 signature: 0ec0e10c27c82394399de7b386032405 ****/ + /****** BRep_PointsOnSurface::Surface ******/ + /****** md5 signature: 0ec0e10c27c82394399de7b386032405 ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", " Parameters @@ -4429,8 +4429,8 @@ No available documentation. ***********************/ class BRep_Polygon3D : public BRep_CurveRepresentation { public: - /****************** BRep_Polygon3D ******************/ - /**** md5 signature: 13da97d656a6270590ac3f77034b0519 ****/ + /****** BRep_Polygon3D::BRep_Polygon3D ******/ + /****** md5 signature: 13da97d656a6270590ac3f77034b0519 ******/ %feature("compactdefaultargs") BRep_Polygon3D; %feature("autodoc", " Parameters @@ -4448,8 +4448,8 @@ No available documentation. ") BRep_Polygon3D; BRep_Polygon3D(const opencascade::handle & P, const TopLoc_Location & L); - /****************** Copy ******************/ - /**** md5 signature: 5ae8a834b37d0441b91b744e5b050c6d ****/ + /****** BRep_Polygon3D::Copy ******/ + /****** md5 signature: 5ae8a834b37d0441b91b744e5b050c6d ******/ %feature("compactdefaultargs") Copy; %feature("autodoc", "Return ------- @@ -4482,8 +4482,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** IsPolygon3D ******************/ - /**** md5 signature: 9c97e39fb1a5808feb35966ed93c6297 ****/ + /****** BRep_Polygon3D::IsPolygon3D ******/ + /****** md5 signature: 9c97e39fb1a5808feb35966ed93c6297 ******/ %feature("compactdefaultargs") IsPolygon3D; %feature("autodoc", "Return ------- @@ -4495,8 +4495,8 @@ Returns true. ") IsPolygon3D; virtual Standard_Boolean IsPolygon3D(); - /****************** Polygon3D ******************/ - /**** md5 signature: 1090ff267a4843b01559975989b64a28 ****/ + /****** BRep_Polygon3D::Polygon3D ******/ + /****** md5 signature: 1090ff267a4843b01559975989b64a28 ******/ %feature("compactdefaultargs") Polygon3D; %feature("autodoc", "Return ------- @@ -4508,8 +4508,8 @@ No available documentation. ") Polygon3D; virtual const opencascade::handle & Polygon3D(); - /****************** Polygon3D ******************/ - /**** md5 signature: 031241be9d7be389029c88d7a07457da ****/ + /****** BRep_Polygon3D::Polygon3D ******/ + /****** md5 signature: 031241be9d7be389029c88d7a07457da ******/ %feature("compactdefaultargs") Polygon3D; %feature("autodoc", " Parameters @@ -4542,8 +4542,8 @@ No available documentation. ******************************/ class BRep_PolygonOnSurface : public BRep_CurveRepresentation { public: - /****************** BRep_PolygonOnSurface ******************/ - /**** md5 signature: c1b50f5f4d521e9aa7829b5e90a0286b ****/ + /****** BRep_PolygonOnSurface::BRep_PolygonOnSurface ******/ + /****** md5 signature: c1b50f5f4d521e9aa7829b5e90a0286b ******/ %feature("compactdefaultargs") BRep_PolygonOnSurface; %feature("autodoc", " Parameters @@ -4562,8 +4562,8 @@ No available documentation. ") BRep_PolygonOnSurface; BRep_PolygonOnSurface(const opencascade::handle & P, const opencascade::handle & S, const TopLoc_Location & L); - /****************** Copy ******************/ - /**** md5 signature: 51f97eb612b00599d2d5b762223f64b3 ****/ + /****** BRep_PolygonOnSurface::Copy ******/ + /****** md5 signature: 51f97eb612b00599d2d5b762223f64b3 ******/ %feature("compactdefaultargs") Copy; %feature("autodoc", "Return ------- @@ -4596,8 +4596,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** IsPolygonOnSurface ******************/ - /**** md5 signature: 395f6d0696758a9ea0fc539532c7bf1c ****/ + /****** BRep_PolygonOnSurface::IsPolygonOnSurface ******/ + /****** md5 signature: 395f6d0696758a9ea0fc539532c7bf1c ******/ %feature("compactdefaultargs") IsPolygonOnSurface; %feature("autodoc", "Return ------- @@ -4609,8 +4609,8 @@ A 2d polygon representation in the parametric space of a surface. ") IsPolygonOnSurface; virtual Standard_Boolean IsPolygonOnSurface(); - /****************** IsPolygonOnSurface ******************/ - /**** md5 signature: c9250f078741a571290c03ae2f08a8fa ****/ + /****** BRep_PolygonOnSurface::IsPolygonOnSurface ******/ + /****** md5 signature: c9250f078741a571290c03ae2f08a8fa ******/ %feature("compactdefaultargs") IsPolygonOnSurface; %feature("autodoc", " Parameters @@ -4628,8 +4628,8 @@ A 2d polygon representation in the parametric space of a surface. ") IsPolygonOnSurface; virtual Standard_Boolean IsPolygonOnSurface(const opencascade::handle & S, const TopLoc_Location & L); - /****************** Polygon ******************/ - /**** md5 signature: 4f46d9d28803083bcdcdd10bba734397 ****/ + /****** BRep_PolygonOnSurface::Polygon ******/ + /****** md5 signature: 4f46d9d28803083bcdcdd10bba734397 ******/ %feature("compactdefaultargs") Polygon; %feature("autodoc", "Return ------- @@ -4641,8 +4641,8 @@ No available documentation. ") Polygon; virtual const opencascade::handle & Polygon(); - /****************** Polygon ******************/ - /**** md5 signature: 14cb08b6625770c2b2a4cecc383369e7 ****/ + /****** BRep_PolygonOnSurface::Polygon ******/ + /****** md5 signature: 14cb08b6625770c2b2a4cecc383369e7 ******/ %feature("compactdefaultargs") Polygon; %feature("autodoc", " Parameters @@ -4659,8 +4659,8 @@ No available documentation. ") Polygon; virtual void Polygon(const opencascade::handle & P); - /****************** Surface ******************/ - /**** md5 signature: 15e9ea02ca588f3610ae3d0618d607d8 ****/ + /****** BRep_PolygonOnSurface::Surface ******/ + /****** md5 signature: 15e9ea02ca588f3610ae3d0618d607d8 ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", "Return ------- @@ -4688,8 +4688,8 @@ No available documentation. ************************************/ class BRep_PolygonOnTriangulation : public BRep_CurveRepresentation { public: - /****************** BRep_PolygonOnTriangulation ******************/ - /**** md5 signature: 483b70ddea0cb2c06f36d731647487b2 ****/ + /****** BRep_PolygonOnTriangulation::BRep_PolygonOnTriangulation ******/ + /****** md5 signature: 483b70ddea0cb2c06f36d731647487b2 ******/ %feature("compactdefaultargs") BRep_PolygonOnTriangulation; %feature("autodoc", " Parameters @@ -4708,8 +4708,8 @@ No available documentation. ") BRep_PolygonOnTriangulation; BRep_PolygonOnTriangulation(const opencascade::handle & P, const opencascade::handle & T, const TopLoc_Location & L); - /****************** Copy ******************/ - /**** md5 signature: 51f97eb612b00599d2d5b762223f64b3 ****/ + /****** BRep_PolygonOnTriangulation::Copy ******/ + /****** md5 signature: 51f97eb612b00599d2d5b762223f64b3 ******/ %feature("compactdefaultargs") Copy; %feature("autodoc", "Return ------- @@ -4742,8 +4742,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** IsPolygonOnTriangulation ******************/ - /**** md5 signature: bc0acafa3cf68973589be66217bfe604 ****/ + /****** BRep_PolygonOnTriangulation::IsPolygonOnTriangulation ******/ + /****** md5 signature: bc0acafa3cf68973589be66217bfe604 ******/ %feature("compactdefaultargs") IsPolygonOnTriangulation; %feature("autodoc", "Return ------- @@ -4755,8 +4755,8 @@ Returns true. ") IsPolygonOnTriangulation; virtual Standard_Boolean IsPolygonOnTriangulation(); - /****************** IsPolygonOnTriangulation ******************/ - /**** md5 signature: e6cb71a9982f4593b1d939a57798d3be ****/ + /****** BRep_PolygonOnTriangulation::IsPolygonOnTriangulation ******/ + /****** md5 signature: e6cb71a9982f4593b1d939a57798d3be ******/ %feature("compactdefaultargs") IsPolygonOnTriangulation; %feature("autodoc", " Parameters @@ -4774,8 +4774,8 @@ Is it a polygon in the definition of with location . ") IsPolygonOnTriangulation; virtual Standard_Boolean IsPolygonOnTriangulation(const opencascade::handle & T, const TopLoc_Location & L); - /****************** PolygonOnTriangulation ******************/ - /**** md5 signature: aeb65ee54d25f07c5b13b545be27eb94 ****/ + /****** BRep_PolygonOnTriangulation::PolygonOnTriangulation ******/ + /****** md5 signature: aeb65ee54d25f07c5b13b545be27eb94 ******/ %feature("compactdefaultargs") PolygonOnTriangulation; %feature("autodoc", " Parameters @@ -4792,8 +4792,8 @@ Returns true. ") PolygonOnTriangulation; virtual void PolygonOnTriangulation(const opencascade::handle & P); - /****************** PolygonOnTriangulation ******************/ - /**** md5 signature: cb14d47541b37689658847e4d993e5b5 ****/ + /****** BRep_PolygonOnTriangulation::PolygonOnTriangulation ******/ + /****** md5 signature: cb14d47541b37689658847e4d993e5b5 ******/ %feature("compactdefaultargs") PolygonOnTriangulation; %feature("autodoc", "Return ------- @@ -4805,8 +4805,8 @@ No available documentation. ") PolygonOnTriangulation; virtual const opencascade::handle & PolygonOnTriangulation(); - /****************** Triangulation ******************/ - /**** md5 signature: 8f80953fc5ab6ffc304eb150b661d5c2 ****/ + /****** BRep_PolygonOnTriangulation::Triangulation ******/ + /****** md5 signature: 8f80953fc5ab6ffc304eb150b661d5c2 ******/ %feature("compactdefaultargs") Triangulation; %feature("autodoc", "Return ------- @@ -4834,8 +4834,8 @@ No available documentation. *********************/ class BRep_Curve3D : public BRep_GCurve { public: - /****************** BRep_Curve3D ******************/ - /**** md5 signature: 6f4db40c99a104c8d4ad18496b868b9e ****/ + /****** BRep_Curve3D::BRep_Curve3D ******/ + /****** md5 signature: 6f4db40c99a104c8d4ad18496b868b9e ******/ %feature("compactdefaultargs") BRep_Curve3D; %feature("autodoc", " Parameters @@ -4853,8 +4853,8 @@ No available documentation. ") BRep_Curve3D; BRep_Curve3D(const opencascade::handle & C, const TopLoc_Location & L); - /****************** Copy ******************/ - /**** md5 signature: 5ae8a834b37d0441b91b744e5b050c6d ****/ + /****** BRep_Curve3D::Copy ******/ + /****** md5 signature: 5ae8a834b37d0441b91b744e5b050c6d ******/ %feature("compactdefaultargs") Copy; %feature("autodoc", "Return ------- @@ -4866,8 +4866,8 @@ Return a copy of this representation. ") Copy; opencascade::handle Copy(); - /****************** Curve3D ******************/ - /**** md5 signature: 4ad19464b6e2a334416af7923e8c568c ****/ + /****** BRep_Curve3D::Curve3D ******/ + /****** md5 signature: 4ad19464b6e2a334416af7923e8c568c ******/ %feature("compactdefaultargs") Curve3D; %feature("autodoc", "Return ------- @@ -4879,8 +4879,8 @@ No available documentation. ") Curve3D; virtual const opencascade::handle & Curve3D(); - /****************** Curve3D ******************/ - /**** md5 signature: 9fa24c50aeac5346e9a2f04499dfce3d ****/ + /****** BRep_Curve3D::Curve3D ******/ + /****** md5 signature: 9fa24c50aeac5346e9a2f04499dfce3d ******/ %feature("compactdefaultargs") Curve3D; %feature("autodoc", " Parameters @@ -4897,8 +4897,8 @@ No available documentation. ") Curve3D; virtual void Curve3D(const opencascade::handle & C); - /****************** D0 ******************/ - /**** md5 signature: 5f7d08d8d17afc516aac9ef64bf9711f ****/ + /****** BRep_Curve3D::D0 ******/ + /****** md5 signature: 5f7d08d8d17afc516aac9ef64bf9711f ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -4937,8 +4937,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** IsCurve3D ******************/ - /**** md5 signature: 6f953c114af47442e681e23b67fa28ca ****/ + /****** BRep_Curve3D::IsCurve3D ******/ + /****** md5 signature: 6f953c114af47442e681e23b67fa28ca ******/ %feature("compactdefaultargs") IsCurve3D; %feature("autodoc", "Return ------- @@ -4966,8 +4966,8 @@ Returns true. ****************************/ class BRep_CurveOnSurface : public BRep_GCurve { public: - /****************** BRep_CurveOnSurface ******************/ - /**** md5 signature: 59273eae1970ce9ffdcf78e73cc3d381 ****/ + /****** BRep_CurveOnSurface::BRep_CurveOnSurface ******/ + /****** md5 signature: 59273eae1970ce9ffdcf78e73cc3d381 ******/ %feature("compactdefaultargs") BRep_CurveOnSurface; %feature("autodoc", " Parameters @@ -4986,8 +4986,8 @@ No available documentation. ") BRep_CurveOnSurface; BRep_CurveOnSurface(const opencascade::handle & PC, const opencascade::handle & S, const TopLoc_Location & L); - /****************** Copy ******************/ - /**** md5 signature: 51f97eb612b00599d2d5b762223f64b3 ****/ + /****** BRep_CurveOnSurface::Copy ******/ + /****** md5 signature: 51f97eb612b00599d2d5b762223f64b3 ******/ %feature("compactdefaultargs") Copy; %feature("autodoc", "Return ------- @@ -4999,8 +4999,8 @@ Return a copy of this representation. ") Copy; virtual opencascade::handle Copy(); - /****************** D0 ******************/ - /**** md5 signature: 5f7d08d8d17afc516aac9ef64bf9711f ****/ + /****** BRep_CurveOnSurface::D0 ******/ + /****** md5 signature: 5f7d08d8d17afc516aac9ef64bf9711f ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -5039,8 +5039,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** IsCurveOnSurface ******************/ - /**** md5 signature: 210e38c8bb961e7c47fbbde36d037c35 ****/ + /****** BRep_CurveOnSurface::IsCurveOnSurface ******/ + /****** md5 signature: 210e38c8bb961e7c47fbbde36d037c35 ******/ %feature("compactdefaultargs") IsCurveOnSurface; %feature("autodoc", "Return ------- @@ -5052,8 +5052,8 @@ Returns true. ") IsCurveOnSurface; virtual Standard_Boolean IsCurveOnSurface(); - /****************** IsCurveOnSurface ******************/ - /**** md5 signature: c4de9cee4f5ff1a1acbfc71cdf8caad2 ****/ + /****** BRep_CurveOnSurface::IsCurveOnSurface ******/ + /****** md5 signature: c4de9cee4f5ff1a1acbfc71cdf8caad2 ******/ %feature("compactdefaultargs") IsCurveOnSurface; %feature("autodoc", " Parameters @@ -5071,8 +5071,8 @@ A curve in the parametric space of a surface. ") IsCurveOnSurface; virtual Standard_Boolean IsCurveOnSurface(const opencascade::handle & S, const TopLoc_Location & L); - /****************** PCurve ******************/ - /**** md5 signature: 9eebae17493f49c309610142e6619ca8 ****/ + /****** BRep_CurveOnSurface::PCurve ******/ + /****** md5 signature: 9eebae17493f49c309610142e6619ca8 ******/ %feature("compactdefaultargs") PCurve; %feature("autodoc", "Return ------- @@ -5084,8 +5084,8 @@ No available documentation. ") PCurve; virtual const opencascade::handle & PCurve(); - /****************** PCurve ******************/ - /**** md5 signature: c4807c5709eff8d53531d97e5607b176 ****/ + /****** BRep_CurveOnSurface::PCurve ******/ + /****** md5 signature: c4807c5709eff8d53531d97e5607b176 ******/ %feature("compactdefaultargs") PCurve; %feature("autodoc", " Parameters @@ -5102,8 +5102,8 @@ No available documentation. ") PCurve; virtual void PCurve(const opencascade::handle & C); - /****************** SetUVPoints ******************/ - /**** md5 signature: 104bbdba35a986d957cf4a721e9b5cc6 ****/ + /****** BRep_CurveOnSurface::SetUVPoints ******/ + /****** md5 signature: 104bbdba35a986d957cf4a721e9b5cc6 ******/ %feature("compactdefaultargs") SetUVPoints; %feature("autodoc", " Parameters @@ -5121,8 +5121,8 @@ No available documentation. ") SetUVPoints; void SetUVPoints(const gp_Pnt2d & P1, const gp_Pnt2d & P2); - /****************** Surface ******************/ - /**** md5 signature: 15e9ea02ca588f3610ae3d0618d607d8 ****/ + /****** BRep_CurveOnSurface::Surface ******/ + /****** md5 signature: 15e9ea02ca588f3610ae3d0618d607d8 ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", "Return ------- @@ -5134,8 +5134,8 @@ No available documentation. ") Surface; virtual const opencascade::handle & Surface(); - /****************** UVPoints ******************/ - /**** md5 signature: cd877f540e3e3c3a8721175d218d5d8b ****/ + /****** BRep_CurveOnSurface::UVPoints ******/ + /****** md5 signature: cd877f540e3e3c3a8721175d218d5d8b ******/ %feature("compactdefaultargs") UVPoints; %feature("autodoc", " Parameters @@ -5153,8 +5153,8 @@ No available documentation. ") UVPoints; void UVPoints(gp_Pnt2d & P1, gp_Pnt2d & P2); - /****************** Update ******************/ - /**** md5 signature: ee9219b845487d888d5a30df8b526357 ****/ + /****** BRep_CurveOnSurface::Update ******/ + /****** md5 signature: ee9219b845487d888d5a30df8b526357 ******/ %feature("compactdefaultargs") Update; %feature("autodoc", "Return ------- @@ -5182,8 +5182,8 @@ Recomputes any derived data after a modification. this is called when the range ***********************************/ class BRep_PointOnCurveOnSurface : public BRep_PointsOnSurface { public: - /****************** BRep_PointOnCurveOnSurface ******************/ - /**** md5 signature: e93dfc821caf33fd5ca4ee23cbe7e57d ****/ + /****** BRep_PointOnCurveOnSurface::BRep_PointOnCurveOnSurface ******/ + /****** md5 signature: e93dfc821caf33fd5ca4ee23cbe7e57d ******/ %feature("compactdefaultargs") BRep_PointOnCurveOnSurface; %feature("autodoc", " Parameters @@ -5224,8 +5224,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** IsPointOnCurveOnSurface ******************/ - /**** md5 signature: 092d698478e6d62f4961b5532d2a7e6a ****/ + /****** BRep_PointOnCurveOnSurface::IsPointOnCurveOnSurface ******/ + /****** md5 signature: 092d698478e6d62f4961b5532d2a7e6a ******/ %feature("compactdefaultargs") IsPointOnCurveOnSurface; %feature("autodoc", "Return ------- @@ -5237,8 +5237,8 @@ Returns true. ") IsPointOnCurveOnSurface; virtual Standard_Boolean IsPointOnCurveOnSurface(); - /****************** IsPointOnCurveOnSurface ******************/ - /**** md5 signature: 55b5bb312fb131280144e3b9026be1c1 ****/ + /****** BRep_PointOnCurveOnSurface::IsPointOnCurveOnSurface ******/ + /****** md5 signature: 55b5bb312fb131280144e3b9026be1c1 ******/ %feature("compactdefaultargs") IsPointOnCurveOnSurface; %feature("autodoc", " Parameters @@ -5257,8 +5257,8 @@ No available documentation. ") IsPointOnCurveOnSurface; virtual Standard_Boolean IsPointOnCurveOnSurface(const opencascade::handle & PC, const opencascade::handle & S, const TopLoc_Location & L); - /****************** PCurve ******************/ - /**** md5 signature: 9eebae17493f49c309610142e6619ca8 ****/ + /****** BRep_PointOnCurveOnSurface::PCurve ******/ + /****** md5 signature: 9eebae17493f49c309610142e6619ca8 ******/ %feature("compactdefaultargs") PCurve; %feature("autodoc", "Return ------- @@ -5270,8 +5270,8 @@ No available documentation. ") PCurve; virtual const opencascade::handle & PCurve(); - /****************** PCurve ******************/ - /**** md5 signature: c4807c5709eff8d53531d97e5607b176 ****/ + /****** BRep_PointOnCurveOnSurface::PCurve ******/ + /****** md5 signature: c4807c5709eff8d53531d97e5607b176 ******/ %feature("compactdefaultargs") PCurve; %feature("autodoc", " Parameters @@ -5304,8 +5304,8 @@ No available documentation. ****************************/ class BRep_PointOnSurface : public BRep_PointsOnSurface { public: - /****************** BRep_PointOnSurface ******************/ - /**** md5 signature: 60272da688749be0222b20d59cb0ac08 ****/ + /****** BRep_PointOnSurface::BRep_PointOnSurface ******/ + /****** md5 signature: 60272da688749be0222b20d59cb0ac08 ******/ %feature("compactdefaultargs") BRep_PointOnSurface; %feature("autodoc", " Parameters @@ -5325,8 +5325,8 @@ No available documentation. ") BRep_PointOnSurface; BRep_PointOnSurface(const Standard_Real P1, const Standard_Real P2, const opencascade::handle & S, const TopLoc_Location & L); - /****************** IsPointOnSurface ******************/ - /**** md5 signature: 44c0910cf7013a21d92b11818dc5b8a3 ****/ + /****** BRep_PointOnSurface::IsPointOnSurface ******/ + /****** md5 signature: 44c0910cf7013a21d92b11818dc5b8a3 ******/ %feature("compactdefaultargs") IsPointOnSurface; %feature("autodoc", "Return ------- @@ -5338,8 +5338,8 @@ No available documentation. ") IsPointOnSurface; virtual Standard_Boolean IsPointOnSurface(); - /****************** IsPointOnSurface ******************/ - /**** md5 signature: f3ce16cf5210f544c5b5896a8ea5a83a ****/ + /****** BRep_PointOnSurface::IsPointOnSurface ******/ + /****** md5 signature: f3ce16cf5210f544c5b5896a8ea5a83a ******/ %feature("compactdefaultargs") IsPointOnSurface; %feature("autodoc", " Parameters @@ -5357,8 +5357,8 @@ No available documentation. ") IsPointOnSurface; virtual Standard_Boolean IsPointOnSurface(const opencascade::handle & S, const TopLoc_Location & L); - /****************** Parameter2 ******************/ - /**** md5 signature: 4f32a1edb12e9ae972dce28ff068e1f9 ****/ + /****** BRep_PointOnSurface::Parameter2 ******/ + /****** md5 signature: 4f32a1edb12e9ae972dce28ff068e1f9 ******/ %feature("compactdefaultargs") Parameter2; %feature("autodoc", "Return ------- @@ -5370,8 +5370,8 @@ No available documentation. ") Parameter2; virtual Standard_Real Parameter2(); - /****************** Parameter2 ******************/ - /**** md5 signature: b708a4a4c1d3b711f897a056c2332b20 ****/ + /****** BRep_PointOnSurface::Parameter2 ******/ + /****** md5 signature: b708a4a4c1d3b711f897a056c2332b20 ******/ %feature("compactdefaultargs") Parameter2; %feature("autodoc", " Parameters @@ -5404,8 +5404,8 @@ No available documentation. ************************************/ class BRep_PolygonOnClosedSurface : public BRep_PolygonOnSurface { public: - /****************** BRep_PolygonOnClosedSurface ******************/ - /**** md5 signature: e9ddffbb8250345ed95293e459416abf ****/ + /****** BRep_PolygonOnClosedSurface::BRep_PolygonOnClosedSurface ******/ + /****** md5 signature: e9ddffbb8250345ed95293e459416abf ******/ %feature("compactdefaultargs") BRep_PolygonOnClosedSurface; %feature("autodoc", " Parameters @@ -5425,8 +5425,8 @@ No available documentation. ") BRep_PolygonOnClosedSurface; BRep_PolygonOnClosedSurface(const opencascade::handle & P1, const opencascade::handle & P2, const opencascade::handle & S, const TopLoc_Location & L); - /****************** Copy ******************/ - /**** md5 signature: 51f97eb612b00599d2d5b762223f64b3 ****/ + /****** BRep_PolygonOnClosedSurface::Copy ******/ + /****** md5 signature: 51f97eb612b00599d2d5b762223f64b3 ******/ %feature("compactdefaultargs") Copy; %feature("autodoc", "Return ------- @@ -5459,8 +5459,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** IsPolygonOnClosedSurface ******************/ - /**** md5 signature: 411040a5cb708182d4445a5125b84a85 ****/ + /****** BRep_PolygonOnClosedSurface::IsPolygonOnClosedSurface ******/ + /****** md5 signature: 411040a5cb708182d4445a5125b84a85 ******/ %feature("compactdefaultargs") IsPolygonOnClosedSurface; %feature("autodoc", "Return ------- @@ -5472,8 +5472,8 @@ Returns true. ") IsPolygonOnClosedSurface; virtual Standard_Boolean IsPolygonOnClosedSurface(); - /****************** Polygon2 ******************/ - /**** md5 signature: c307e8ebb624c2764bfb13d6f321c03f ****/ + /****** BRep_PolygonOnClosedSurface::Polygon2 ******/ + /****** md5 signature: c307e8ebb624c2764bfb13d6f321c03f ******/ %feature("compactdefaultargs") Polygon2; %feature("autodoc", "Return ------- @@ -5485,8 +5485,8 @@ No available documentation. ") Polygon2; virtual const opencascade::handle & Polygon2(); - /****************** Polygon2 ******************/ - /**** md5 signature: aa9cd6dbf402bfda961114b161fa8333 ****/ + /****** BRep_PolygonOnClosedSurface::Polygon2 ******/ + /****** md5 signature: aa9cd6dbf402bfda961114b161fa8333 ******/ %feature("compactdefaultargs") Polygon2; %feature("autodoc", " Parameters @@ -5519,8 +5519,8 @@ No available documentation. ******************************************/ class BRep_PolygonOnClosedTriangulation : public BRep_PolygonOnTriangulation { public: - /****************** BRep_PolygonOnClosedTriangulation ******************/ - /**** md5 signature: 9f8d780a4647186d27acb4c47dd6b93e ****/ + /****** BRep_PolygonOnClosedTriangulation::BRep_PolygonOnClosedTriangulation ******/ + /****** md5 signature: 9f8d780a4647186d27acb4c47dd6b93e ******/ %feature("compactdefaultargs") BRep_PolygonOnClosedTriangulation; %feature("autodoc", " Parameters @@ -5540,8 +5540,8 @@ No available documentation. ") BRep_PolygonOnClosedTriangulation; BRep_PolygonOnClosedTriangulation(const opencascade::handle & P1, const opencascade::handle & P2, const opencascade::handle & Tr, const TopLoc_Location & L); - /****************** Copy ******************/ - /**** md5 signature: 51f97eb612b00599d2d5b762223f64b3 ****/ + /****** BRep_PolygonOnClosedTriangulation::Copy ******/ + /****** md5 signature: 51f97eb612b00599d2d5b762223f64b3 ******/ %feature("compactdefaultargs") Copy; %feature("autodoc", "Return ------- @@ -5574,8 +5574,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** IsPolygonOnClosedTriangulation ******************/ - /**** md5 signature: 7402c9a74e47f727da04da14988b5819 ****/ + /****** BRep_PolygonOnClosedTriangulation::IsPolygonOnClosedTriangulation ******/ + /****** md5 signature: 7402c9a74e47f727da04da14988b5819 ******/ %feature("compactdefaultargs") IsPolygonOnClosedTriangulation; %feature("autodoc", "Return ------- @@ -5587,8 +5587,8 @@ Returns true. ") IsPolygonOnClosedTriangulation; virtual Standard_Boolean IsPolygonOnClosedTriangulation(); - /****************** PolygonOnTriangulation2 ******************/ - /**** md5 signature: f6eda594ab3c0f7d7e1508fe7826f971 ****/ + /****** BRep_PolygonOnClosedTriangulation::PolygonOnTriangulation2 ******/ + /****** md5 signature: f6eda594ab3c0f7d7e1508fe7826f971 ******/ %feature("compactdefaultargs") PolygonOnTriangulation2; %feature("autodoc", " Parameters @@ -5605,8 +5605,8 @@ No available documentation. ") PolygonOnTriangulation2; virtual void PolygonOnTriangulation2(const opencascade::handle & P2); - /****************** PolygonOnTriangulation2 ******************/ - /**** md5 signature: 1a6454953aa9e78b14e72ba9aebf1711 ****/ + /****** BRep_PolygonOnClosedTriangulation::PolygonOnTriangulation2 ******/ + /****** md5 signature: 1a6454953aa9e78b14e72ba9aebf1711 ******/ %feature("compactdefaultargs") PolygonOnTriangulation2; %feature("autodoc", "Return ------- @@ -5634,8 +5634,8 @@ No available documentation. **********************************/ class BRep_CurveOnClosedSurface : public BRep_CurveOnSurface { public: - /****************** BRep_CurveOnClosedSurface ******************/ - /**** md5 signature: bd39ef3bd765f2ef4d84c061706a0fa1 ****/ + /****** BRep_CurveOnClosedSurface::BRep_CurveOnClosedSurface ******/ + /****** md5 signature: bd39ef3bd765f2ef4d84c061706a0fa1 ******/ %feature("compactdefaultargs") BRep_CurveOnClosedSurface; %feature("autodoc", " Parameters @@ -5656,8 +5656,8 @@ No available documentation. ") BRep_CurveOnClosedSurface; BRep_CurveOnClosedSurface(const opencascade::handle & PC1, const opencascade::handle & PC2, const opencascade::handle & S, const TopLoc_Location & L, const GeomAbs_Shape C); - /****************** Continuity ******************/ - /**** md5 signature: 67f71f7e1008e6ff605877f145944f2b ****/ + /****** BRep_CurveOnClosedSurface::Continuity ******/ + /****** md5 signature: 67f71f7e1008e6ff605877f145944f2b ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", "Return ------- @@ -5669,8 +5669,8 @@ No available documentation. ") Continuity; virtual const GeomAbs_Shape & Continuity(); - /****************** Continuity ******************/ - /**** md5 signature: 7efede569c5d15316e14f5232ee3a296 ****/ + /****** BRep_CurveOnClosedSurface::Continuity ******/ + /****** md5 signature: 7efede569c5d15316e14f5232ee3a296 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", " Parameters @@ -5687,8 +5687,8 @@ No available documentation. ") Continuity; virtual void Continuity(const GeomAbs_Shape C); - /****************** Copy ******************/ - /**** md5 signature: 51f97eb612b00599d2d5b762223f64b3 ****/ + /****** BRep_CurveOnClosedSurface::Copy ******/ + /****** md5 signature: 51f97eb612b00599d2d5b762223f64b3 ******/ %feature("compactdefaultargs") Copy; %feature("autodoc", "Return ------- @@ -5721,8 +5721,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** IsCurveOnClosedSurface ******************/ - /**** md5 signature: bec88248a793536f6c3cf9265d01178c ****/ + /****** BRep_CurveOnClosedSurface::IsCurveOnClosedSurface ******/ + /****** md5 signature: bec88248a793536f6c3cf9265d01178c ******/ %feature("compactdefaultargs") IsCurveOnClosedSurface; %feature("autodoc", "Return ------- @@ -5734,8 +5734,8 @@ Returns true. ") IsCurveOnClosedSurface; virtual Standard_Boolean IsCurveOnClosedSurface(); - /****************** IsRegularity ******************/ - /**** md5 signature: fc2d0c9ac93b7bd44a0b1730043df993 ****/ + /****** BRep_CurveOnClosedSurface::IsRegularity ******/ + /****** md5 signature: fc2d0c9ac93b7bd44a0b1730043df993 ******/ %feature("compactdefaultargs") IsRegularity; %feature("autodoc", "Return ------- @@ -5747,8 +5747,8 @@ Returns true. ") IsRegularity; virtual Standard_Boolean IsRegularity(); - /****************** IsRegularity ******************/ - /**** md5 signature: d342137f91cebeb239140ef772bbae74 ****/ + /****** BRep_CurveOnClosedSurface::IsRegularity ******/ + /****** md5 signature: d342137f91cebeb239140ef772bbae74 ******/ %feature("compactdefaultargs") IsRegularity; %feature("autodoc", " Parameters @@ -5768,8 +5768,8 @@ A curve on two surfaces (continuity). ") IsRegularity; virtual Standard_Boolean IsRegularity(const opencascade::handle & S1, const opencascade::handle & S2, const TopLoc_Location & L1, const TopLoc_Location & L2); - /****************** Location2 ******************/ - /**** md5 signature: 35a20609403ba9e885d7f5ec0a54a126 ****/ + /****** BRep_CurveOnClosedSurface::Location2 ******/ + /****** md5 signature: 35a20609403ba9e885d7f5ec0a54a126 ******/ %feature("compactdefaultargs") Location2; %feature("autodoc", "Return ------- @@ -5781,8 +5781,8 @@ Returns location(). ") Location2; virtual const TopLoc_Location & Location2(); - /****************** PCurve2 ******************/ - /**** md5 signature: 48968d988acdaee69dcf1ac4f2402272 ****/ + /****** BRep_CurveOnClosedSurface::PCurve2 ******/ + /****** md5 signature: 48968d988acdaee69dcf1ac4f2402272 ******/ %feature("compactdefaultargs") PCurve2; %feature("autodoc", "Return ------- @@ -5794,8 +5794,8 @@ No available documentation. ") PCurve2; virtual const opencascade::handle & PCurve2(); - /****************** PCurve2 ******************/ - /**** md5 signature: 303604ea4f669013435b6e0712793764 ****/ + /****** BRep_CurveOnClosedSurface::PCurve2 ******/ + /****** md5 signature: 303604ea4f669013435b6e0712793764 ******/ %feature("compactdefaultargs") PCurve2; %feature("autodoc", " Parameters @@ -5812,8 +5812,8 @@ No available documentation. ") PCurve2; virtual void PCurve2(const opencascade::handle & C); - /****************** SetUVPoints2 ******************/ - /**** md5 signature: 07669b38a7f71653c011c2f5b054db10 ****/ + /****** BRep_CurveOnClosedSurface::SetUVPoints2 ******/ + /****** md5 signature: 07669b38a7f71653c011c2f5b054db10 ******/ %feature("compactdefaultargs") SetUVPoints2; %feature("autodoc", " Parameters @@ -5831,8 +5831,8 @@ No available documentation. ") SetUVPoints2; void SetUVPoints2(const gp_Pnt2d & P1, const gp_Pnt2d & P2); - /****************** Surface2 ******************/ - /**** md5 signature: 839f1c1ff057d92a50c65c26a6c27dd5 ****/ + /****** BRep_CurveOnClosedSurface::Surface2 ******/ + /****** md5 signature: 839f1c1ff057d92a50c65c26a6c27dd5 ******/ %feature("compactdefaultargs") Surface2; %feature("autodoc", "Return ------- @@ -5844,8 +5844,8 @@ Returns surface(). ") Surface2; virtual const opencascade::handle & Surface2(); - /****************** UVPoints2 ******************/ - /**** md5 signature: 3ec595626a689f480a664aa42f0f31ba ****/ + /****** BRep_CurveOnClosedSurface::UVPoints2 ******/ + /****** md5 signature: 3ec595626a689f480a664aa42f0f31ba ******/ %feature("compactdefaultargs") UVPoints2; %feature("autodoc", " Parameters @@ -5863,8 +5863,8 @@ No available documentation. ") UVPoints2; void UVPoints2(gp_Pnt2d & P1, gp_Pnt2d & P2); - /****************** Update ******************/ - /**** md5 signature: ee9219b845487d888d5a30df8b526357 ****/ + /****** BRep_CurveOnClosedSurface::Update ******/ + /****** md5 signature: ee9219b845487d888d5a30df8b526357 ******/ %feature("compactdefaultargs") Update; %feature("autodoc", "Return ------- diff --git a/src/SWIG_files/wrapper/BRepAdaptor.i b/src/SWIG_files/wrapper/BRepAdaptor.i index 5b79d3640..2ad20ccb0 100644 --- a/src/SWIG_files/wrapper/BRepAdaptor.i +++ b/src/SWIG_files/wrapper/BRepAdaptor.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPADAPTORDOCSTRING "BRepAdaptor module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepadaptor.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepadaptor.html" %enddef %module (package="OCC.Core", docstring=BREPADAPTORDOCSTRING) BRepAdaptor @@ -110,8 +110,8 @@ typedef NCollection_Array1 BRepAdaptor_Array1OfCurve; ******************************/ class BRepAdaptor_CompCurve : public Adaptor3d_Curve { public: - /****************** BRepAdaptor_CompCurve ******************/ - /**** md5 signature: c1152ba591cae8b160ace1ba10d270dc ****/ + /****** BRepAdaptor_CompCurve::BRepAdaptor_CompCurve ******/ + /****** md5 signature: c1152ba591cae8b160ace1ba10d270dc ******/ %feature("compactdefaultargs") BRepAdaptor_CompCurve; %feature("autodoc", "Return ------- @@ -123,8 +123,8 @@ Creates an undefined curve with no wire loaded. ") BRepAdaptor_CompCurve; BRepAdaptor_CompCurve(); - /****************** BRepAdaptor_CompCurve ******************/ - /**** md5 signature: 536f827323fa633aa2cdc2b24e992a20 ****/ + /****** BRepAdaptor_CompCurve::BRepAdaptor_CompCurve ******/ + /****** md5 signature: 536f827323fa633aa2cdc2b24e992a20 ******/ %feature("compactdefaultargs") BRepAdaptor_CompCurve; %feature("autodoc", " Parameters @@ -142,8 +142,8 @@ No available documentation. ") BRepAdaptor_CompCurve; BRepAdaptor_CompCurve(const TopoDS_Wire & W, const Standard_Boolean KnotByCurvilinearAbcissa = Standard_False); - /****************** BRepAdaptor_CompCurve ******************/ - /**** md5 signature: d6d730d5ed59cc103614b39691bdbfd1 ****/ + /****** BRepAdaptor_CompCurve::BRepAdaptor_CompCurve ******/ + /****** md5 signature: d6d730d5ed59cc103614b39691bdbfd1 ******/ %feature("compactdefaultargs") BRepAdaptor_CompCurve; %feature("autodoc", " Parameters @@ -164,8 +164,8 @@ Creates a curve to access the geometry of edge . ") BRepAdaptor_CompCurve; BRepAdaptor_CompCurve(const TopoDS_Wire & W, const Standard_Boolean KnotByCurvilinearAbcissa, const Standard_Real First, const Standard_Real Last, const Standard_Real Tol); - /****************** BSpline ******************/ - /**** md5 signature: 3ccc0d851302bffb5de6344e3eb3e58d ****/ + /****** BRepAdaptor_CompCurve::BSpline ******/ + /****** md5 signature: 3ccc0d851302bffb5de6344e3eb3e58d ******/ %feature("compactdefaultargs") BSpline; %feature("autodoc", "Return ------- @@ -177,8 +177,8 @@ No available documentation. ") BSpline; opencascade::handle BSpline(); - /****************** Bezier ******************/ - /**** md5 signature: 092280fc6ee0e7104fbbe3460d73e83c ****/ + /****** BRepAdaptor_CompCurve::Bezier ******/ + /****** md5 signature: 092280fc6ee0e7104fbbe3460d73e83c ******/ %feature("compactdefaultargs") Bezier; %feature("autodoc", "Return ------- @@ -190,8 +190,8 @@ No available documentation. ") Bezier; opencascade::handle Bezier(); - /****************** Circle ******************/ - /**** md5 signature: 5f382e7a6af009845ea6e16d54814298 ****/ + /****** BRepAdaptor_CompCurve::Circle ******/ + /****** md5 signature: 5f382e7a6af009845ea6e16d54814298 ******/ %feature("compactdefaultargs") Circle; %feature("autodoc", "Return ------- @@ -203,8 +203,8 @@ No available documentation. ") Circle; gp_Circ Circle(); - /****************** Continuity ******************/ - /**** md5 signature: 9381b370dfdd50af7f1b79ce202f0c6f ****/ + /****** BRepAdaptor_CompCurve::Continuity ******/ + /****** md5 signature: 9381b370dfdd50af7f1b79ce202f0c6f ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", "Return ------- @@ -216,8 +216,8 @@ No available documentation. ") Continuity; GeomAbs_Shape Continuity(); - /****************** D0 ******************/ - /**** md5 signature: 5f7d08d8d17afc516aac9ef64bf9711f ****/ + /****** BRepAdaptor_CompCurve::D0 ******/ + /****** md5 signature: 5f7d08d8d17afc516aac9ef64bf9711f ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -235,8 +235,8 @@ Computes the point of parameter u. ") D0; void D0(const Standard_Real U, gp_Pnt & P); - /****************** D1 ******************/ - /**** md5 signature: 1dc830ec49a945a61cde5e5c027b78d7 ****/ + /****** BRepAdaptor_CompCurve::D1 ******/ + /****** md5 signature: 1dc830ec49a945a61cde5e5c027b78d7 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -255,8 +255,8 @@ Computes the point of parameter u on the curve with its first derivative. raised ") D1; void D1(const Standard_Real U, gp_Pnt & P, gp_Vec & V); - /****************** D2 ******************/ - /**** md5 signature: a694b4ba68c0fd83fbac79f945cb5d8c ****/ + /****** BRepAdaptor_CompCurve::D2 ******/ + /****** md5 signature: a694b4ba68c0fd83fbac79f945cb5d8c ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -276,8 +276,8 @@ Returns the point p of parameter u, the first and second derivatives v1 and v2. ") D2; void D2(const Standard_Real U, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2); - /****************** D3 ******************/ - /**** md5 signature: cf1c3b5fe7af9d5c183c1b16b21c43f1 ****/ + /****** BRepAdaptor_CompCurve::D3 ******/ + /****** md5 signature: cf1c3b5fe7af9d5c183c1b16b21c43f1 ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -298,8 +298,8 @@ Returns the point p of parameter u, the first, the second and the third derivati ") D3; void D3(const Standard_Real U, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2, gp_Vec & V3); - /****************** DN ******************/ - /**** md5 signature: 0d4a3e2fc2b4b03d2a49e0796a487efb ****/ + /****** BRepAdaptor_CompCurve::DN ******/ + /****** md5 signature: 0d4a3e2fc2b4b03d2a49e0796a487efb ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -317,8 +317,8 @@ The returned vector gives the value of the derivative for the order of derivatio ") DN; gp_Vec DN(const Standard_Real U, const Standard_Integer N); - /****************** Degree ******************/ - /**** md5 signature: 5ce473e72cc7bb935a667f4c839dab09 ****/ + /****** BRepAdaptor_CompCurve::Degree ******/ + /****** md5 signature: 5ce473e72cc7bb935a667f4c839dab09 ******/ %feature("compactdefaultargs") Degree; %feature("autodoc", "Return ------- @@ -330,8 +330,8 @@ No available documentation. ") Degree; Standard_Integer Degree(); - /****************** Edge ******************/ - /**** md5 signature: f73dfc9c9040a29acf2262eb8cd9a8ea ****/ + /****** BRepAdaptor_CompCurve::Edge ******/ + /****** md5 signature: f73dfc9c9040a29acf2262eb8cd9a8ea ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", " Parameters @@ -349,8 +349,8 @@ Returns an edge and one parameter on them corresponding to the parameter u. ") Edge; void Edge(const Standard_Real U, TopoDS_Edge & E, Standard_Real &OutValue); - /****************** Ellipse ******************/ - /**** md5 signature: e9a77f14e9bbca29370202de404ea9c1 ****/ + /****** BRepAdaptor_CompCurve::Ellipse ******/ + /****** md5 signature: e9a77f14e9bbca29370202de404ea9c1 ******/ %feature("compactdefaultargs") Ellipse; %feature("autodoc", "Return ------- @@ -362,8 +362,8 @@ No available documentation. ") Ellipse; gp_Elips Ellipse(); - /****************** FirstParameter ******************/ - /**** md5 signature: eb9ebe94572bd67588fe8811eac261fb ****/ + /****** BRepAdaptor_CompCurve::FirstParameter ******/ + /****** md5 signature: eb9ebe94572bd67588fe8811eac261fb ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", "Return ------- @@ -375,8 +375,8 @@ No available documentation. ") FirstParameter; Standard_Real FirstParameter(); - /****************** GetType ******************/ - /**** md5 signature: 0ad61dcbb5497908c1b536e766f0fcb9 ****/ + /****** BRepAdaptor_CompCurve::GetType ******/ + /****** md5 signature: 0ad61dcbb5497908c1b536e766f0fcb9 ******/ %feature("compactdefaultargs") GetType; %feature("autodoc", "Return ------- @@ -388,8 +388,8 @@ No available documentation. ") GetType; GeomAbs_CurveType GetType(); - /****************** Hyperbola ******************/ - /**** md5 signature: a96ca49b2ad017b35bb09d0b86cb690d ****/ + /****** BRepAdaptor_CompCurve::Hyperbola ******/ + /****** md5 signature: a96ca49b2ad017b35bb09d0b86cb690d ******/ %feature("compactdefaultargs") Hyperbola; %feature("autodoc", "Return ------- @@ -401,8 +401,8 @@ No available documentation. ") Hyperbola; gp_Hypr Hyperbola(); - /****************** Initialize ******************/ - /**** md5 signature: 084e04b2711058308ee9c6ffc8589f6f ****/ + /****** BRepAdaptor_CompCurve::Initialize ******/ + /****** md5 signature: 084e04b2711058308ee9c6ffc8589f6f ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -420,8 +420,8 @@ Sets the wire . ") Initialize; void Initialize(const TopoDS_Wire & W, const Standard_Boolean KnotByCurvilinearAbcissa); - /****************** Initialize ******************/ - /**** md5 signature: 3f7ce5fd6aa0f7b3bdaf45694f156692 ****/ + /****** BRepAdaptor_CompCurve::Initialize ******/ + /****** md5 signature: 3f7ce5fd6aa0f7b3bdaf45694f156692 ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -442,8 +442,8 @@ Sets wire and trimmed parameter. ") Initialize; void Initialize(const TopoDS_Wire & W, const Standard_Boolean KnotByCurvilinearAbcissa, const Standard_Real First, const Standard_Real Last, const Standard_Real Tol); - /****************** Intervals ******************/ - /**** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ****/ + /****** BRepAdaptor_CompCurve::Intervals ******/ + /****** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -461,8 +461,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsClosed ******************/ - /**** md5 signature: 00978070ec4cb5f00d1d002a8d5d3763 ****/ + /****** BRepAdaptor_CompCurve::IsClosed ******/ + /****** md5 signature: 00978070ec4cb5f00d1d002a8d5d3763 ******/ %feature("compactdefaultargs") IsClosed; %feature("autodoc", "Return ------- @@ -474,8 +474,8 @@ No available documentation. ") IsClosed; Standard_Boolean IsClosed(); - /****************** IsPeriodic ******************/ - /**** md5 signature: 15e3ccfd3ad4ae42959489f7f64aa8ca ****/ + /****** BRepAdaptor_CompCurve::IsPeriodic ******/ + /****** md5 signature: 15e3ccfd3ad4ae42959489f7f64aa8ca ******/ %feature("compactdefaultargs") IsPeriodic; %feature("autodoc", "Return ------- @@ -487,8 +487,8 @@ No available documentation. ") IsPeriodic; Standard_Boolean IsPeriodic(); - /****************** IsRational ******************/ - /**** md5 signature: 82ca56fad113156125f40128b25c0d8e ****/ + /****** BRepAdaptor_CompCurve::IsRational ******/ + /****** md5 signature: 82ca56fad113156125f40128b25c0d8e ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -500,8 +500,8 @@ No available documentation. ") IsRational; Standard_Boolean IsRational(); - /****************** LastParameter ******************/ - /**** md5 signature: cb4925a2d4a451ceec8f6ad486530f9c ****/ + /****** BRepAdaptor_CompCurve::LastParameter ******/ + /****** md5 signature: cb4925a2d4a451ceec8f6ad486530f9c ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", "Return ------- @@ -513,8 +513,8 @@ No available documentation. ") LastParameter; Standard_Real LastParameter(); - /****************** Line ******************/ - /**** md5 signature: cf28f5541e4e744dd8038e2a9ac75a8f ****/ + /****** BRepAdaptor_CompCurve::Line ******/ + /****** md5 signature: cf28f5541e4e744dd8038e2a9ac75a8f ******/ %feature("compactdefaultargs") Line; %feature("autodoc", "Return ------- @@ -526,8 +526,8 @@ No available documentation. ") Line; gp_Lin Line(); - /****************** NbIntervals ******************/ - /**** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ****/ + /****** BRepAdaptor_CompCurve::NbIntervals ******/ + /****** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -544,8 +544,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** NbKnots ******************/ - /**** md5 signature: 841663cbf96bec3b939f307c52df6c7c ****/ + /****** BRepAdaptor_CompCurve::NbKnots ******/ + /****** md5 signature: 841663cbf96bec3b939f307c52df6c7c ******/ %feature("compactdefaultargs") NbKnots; %feature("autodoc", "Return ------- @@ -557,8 +557,8 @@ No available documentation. ") NbKnots; Standard_Integer NbKnots(); - /****************** NbPoles ******************/ - /**** md5 signature: 52e5fadf897540545847ef59cc0ba942 ****/ + /****** BRepAdaptor_CompCurve::NbPoles ******/ + /****** md5 signature: 52e5fadf897540545847ef59cc0ba942 ******/ %feature("compactdefaultargs") NbPoles; %feature("autodoc", "Return ------- @@ -570,8 +570,8 @@ No available documentation. ") NbPoles; Standard_Integer NbPoles(); - /****************** Parabola ******************/ - /**** md5 signature: 68860abab63fd184ea5c7eb97f0762c1 ****/ + /****** BRepAdaptor_CompCurve::Parabola ******/ + /****** md5 signature: 68860abab63fd184ea5c7eb97f0762c1 ******/ %feature("compactdefaultargs") Parabola; %feature("autodoc", "Return ------- @@ -583,8 +583,8 @@ No available documentation. ") Parabola; gp_Parab Parabola(); - /****************** Period ******************/ - /**** md5 signature: 88909a321398632744c0d6841580c626 ****/ + /****** BRepAdaptor_CompCurve::Period ******/ + /****** md5 signature: 88909a321398632744c0d6841580c626 ******/ %feature("compactdefaultargs") Period; %feature("autodoc", "Return ------- @@ -596,8 +596,8 @@ No available documentation. ") Period; Standard_Real Period(); - /****************** Resolution ******************/ - /**** md5 signature: cc4a4d9111fadd20ad48e62bc4df1579 ****/ + /****** BRepAdaptor_CompCurve::Resolution ******/ + /****** md5 signature: cc4a4d9111fadd20ad48e62bc4df1579 ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -614,8 +614,8 @@ Returns the parametric resolution. ") Resolution; Standard_Real Resolution(const Standard_Real R3d); - /****************** ShallowCopy ******************/ - /**** md5 signature: 1b6b0927543eab9d05e2c875c0c3efb6 ****/ + /****** BRepAdaptor_CompCurve::ShallowCopy ******/ + /****** md5 signature: 1b6b0927543eab9d05e2c875c0c3efb6 ******/ %feature("compactdefaultargs") ShallowCopy; %feature("autodoc", "Return ------- @@ -627,8 +627,8 @@ Shallow copy of adaptor. ") ShallowCopy; virtual opencascade::handle ShallowCopy(); - /****************** Trim ******************/ - /**** md5 signature: 40a46ffe7379c6d919968b501b8343a5 ****/ + /****** BRepAdaptor_CompCurve::Trim ******/ + /****** md5 signature: 40a46ffe7379c6d919968b501b8343a5 ******/ %feature("compactdefaultargs") Trim; %feature("autodoc", " Parameters @@ -647,8 +647,8 @@ Returns a curve equivalent of between parameters and . Trim(const Standard_Real First, const Standard_Real Last, const Standard_Real Tol); - /****************** Value ******************/ - /**** md5 signature: d7f310c73762cbaa285ace0a141bc7bf ****/ + /****** BRepAdaptor_CompCurve::Value ******/ + /****** md5 signature: d7f310c73762cbaa285ace0a141bc7bf ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -665,8 +665,8 @@ Computes the point of parameter u on the curve. ") Value; gp_Pnt Value(const Standard_Real U); - /****************** Wire ******************/ - /**** md5 signature: 066765b94f5225dad05ab95ae3f8b503 ****/ + /****** BRepAdaptor_CompCurve::Wire ******/ + /****** md5 signature: 066765b94f5225dad05ab95ae3f8b503 ******/ %feature("compactdefaultargs") Wire; %feature("autodoc", "Return ------- @@ -694,8 +694,8 @@ Returns the wire. **************************/ class BRepAdaptor_Curve : public Adaptor3d_Curve { public: - /****************** BRepAdaptor_Curve ******************/ - /**** md5 signature: 36916a7ac88f4dc1e560c43c25da0671 ****/ + /****** BRepAdaptor_Curve::BRepAdaptor_Curve ******/ + /****** md5 signature: 36916a7ac88f4dc1e560c43c25da0671 ******/ %feature("compactdefaultargs") BRepAdaptor_Curve; %feature("autodoc", "Return ------- @@ -707,8 +707,8 @@ Creates an undefined curve with no edge loaded. ") BRepAdaptor_Curve; BRepAdaptor_Curve(); - /****************** BRepAdaptor_Curve ******************/ - /**** md5 signature: 740e451b59f60726263aab98ec1f1316 ****/ + /****** BRepAdaptor_Curve::BRepAdaptor_Curve ******/ + /****** md5 signature: 740e451b59f60726263aab98ec1f1316 ******/ %feature("compactdefaultargs") BRepAdaptor_Curve; %feature("autodoc", " Parameters @@ -725,8 +725,8 @@ Creates a curve to access the geometry of edge . ") BRepAdaptor_Curve; BRepAdaptor_Curve(const TopoDS_Edge & E); - /****************** BRepAdaptor_Curve ******************/ - /**** md5 signature: c4ad88c445ddb172d9a61b5a673cf024 ****/ + /****** BRepAdaptor_Curve::BRepAdaptor_Curve ******/ + /****** md5 signature: c4ad88c445ddb172d9a61b5a673cf024 ******/ %feature("compactdefaultargs") BRepAdaptor_Curve; %feature("autodoc", " Parameters @@ -744,8 +744,8 @@ Creates a curve to access the geometry of edge . the geometry will be compute ") BRepAdaptor_Curve; BRepAdaptor_Curve(const TopoDS_Edge & E, const TopoDS_Face & F); - /****************** BSpline ******************/ - /**** md5 signature: 3ccc0d851302bffb5de6344e3eb3e58d ****/ + /****** BRepAdaptor_Curve::BSpline ******/ + /****** md5 signature: 3ccc0d851302bffb5de6344e3eb3e58d ******/ %feature("compactdefaultargs") BSpline; %feature("autodoc", "Return ------- @@ -757,8 +757,8 @@ Warning: this will make a copy of the bspline curve since it applies to it mytsr ") BSpline; opencascade::handle BSpline(); - /****************** Bezier ******************/ - /**** md5 signature: 092280fc6ee0e7104fbbe3460d73e83c ****/ + /****** BRepAdaptor_Curve::Bezier ******/ + /****** md5 signature: 092280fc6ee0e7104fbbe3460d73e83c ******/ %feature("compactdefaultargs") Bezier; %feature("autodoc", "Return ------- @@ -770,8 +770,8 @@ Warning: this will make a copy of the bezier curve since it applies to it mytsrf ") Bezier; opencascade::handle Bezier(); - /****************** Circle ******************/ - /**** md5 signature: 5f382e7a6af009845ea6e16d54814298 ****/ + /****** BRepAdaptor_Curve::Circle ******/ + /****** md5 signature: 5f382e7a6af009845ea6e16d54814298 ******/ %feature("compactdefaultargs") Circle; %feature("autodoc", "Return ------- @@ -783,8 +783,8 @@ No available documentation. ") Circle; gp_Circ Circle(); - /****************** Continuity ******************/ - /**** md5 signature: 9381b370dfdd50af7f1b79ce202f0c6f ****/ + /****** BRepAdaptor_Curve::Continuity ******/ + /****** md5 signature: 9381b370dfdd50af7f1b79ce202f0c6f ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", "Return ------- @@ -796,8 +796,8 @@ No available documentation. ") Continuity; GeomAbs_Shape Continuity(); - /****************** Curve ******************/ - /**** md5 signature: f572f2bd5ed01577163560ac880dd538 ****/ + /****** BRepAdaptor_Curve::Curve ******/ + /****** md5 signature: f572f2bd5ed01577163560ac880dd538 ******/ %feature("compactdefaultargs") Curve; %feature("autodoc", "Return ------- @@ -809,8 +809,8 @@ Returns the curve of the edge. ") Curve; GeomAdaptor_Curve Curve(); - /****************** CurveOnSurface ******************/ - /**** md5 signature: f06c54ea203f128f90114fb7bd684518 ****/ + /****** BRepAdaptor_Curve::CurveOnSurface ******/ + /****** md5 signature: f06c54ea203f128f90114fb7bd684518 ******/ %feature("compactdefaultargs") CurveOnSurface; %feature("autodoc", "Return ------- @@ -822,8 +822,8 @@ Returns the curveonsurface of the edge. ") CurveOnSurface; Adaptor3d_CurveOnSurface CurveOnSurface(); - /****************** D0 ******************/ - /**** md5 signature: 5f7d08d8d17afc516aac9ef64bf9711f ****/ + /****** BRepAdaptor_Curve::D0 ******/ + /****** md5 signature: 5f7d08d8d17afc516aac9ef64bf9711f ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -841,8 +841,8 @@ Computes the point of parameter u. ") D0; void D0(const Standard_Real U, gp_Pnt & P); - /****************** D1 ******************/ - /**** md5 signature: 1dc830ec49a945a61cde5e5c027b78d7 ****/ + /****** BRepAdaptor_Curve::D1 ******/ + /****** md5 signature: 1dc830ec49a945a61cde5e5c027b78d7 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -861,8 +861,8 @@ Computes the point of parameter u on the curve with its first derivative. raised ") D1; void D1(const Standard_Real U, gp_Pnt & P, gp_Vec & V); - /****************** D2 ******************/ - /**** md5 signature: a694b4ba68c0fd83fbac79f945cb5d8c ****/ + /****** BRepAdaptor_Curve::D2 ******/ + /****** md5 signature: a694b4ba68c0fd83fbac79f945cb5d8c ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -882,8 +882,8 @@ Returns the point p of parameter u, the first and second derivatives v1 and v2. ") D2; void D2(const Standard_Real U, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2); - /****************** D3 ******************/ - /**** md5 signature: cf1c3b5fe7af9d5c183c1b16b21c43f1 ****/ + /****** BRepAdaptor_Curve::D3 ******/ + /****** md5 signature: cf1c3b5fe7af9d5c183c1b16b21c43f1 ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -904,8 +904,8 @@ Returns the point p of parameter u, the first, the second and the third derivati ") D3; void D3(const Standard_Real U, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2, gp_Vec & V3); - /****************** DN ******************/ - /**** md5 signature: 0d4a3e2fc2b4b03d2a49e0796a487efb ****/ + /****** BRepAdaptor_Curve::DN ******/ + /****** md5 signature: 0d4a3e2fc2b4b03d2a49e0796a487efb ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -923,8 +923,8 @@ The returned vector gives the value of the derivative for the order of derivatio ") DN; gp_Vec DN(const Standard_Real U, const Standard_Integer N); - /****************** Degree ******************/ - /**** md5 signature: 5ce473e72cc7bb935a667f4c839dab09 ****/ + /****** BRepAdaptor_Curve::Degree ******/ + /****** md5 signature: 5ce473e72cc7bb935a667f4c839dab09 ******/ %feature("compactdefaultargs") Degree; %feature("autodoc", "Return ------- @@ -936,8 +936,8 @@ No available documentation. ") Degree; Standard_Integer Degree(); - /****************** Edge ******************/ - /**** md5 signature: be590cff987799d8b7c28083399d0e9f ****/ + /****** BRepAdaptor_Curve::Edge ******/ + /****** md5 signature: be590cff987799d8b7c28083399d0e9f ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", "Return ------- @@ -949,8 +949,8 @@ Returns the edge. ") Edge; const TopoDS_Edge Edge(); - /****************** Ellipse ******************/ - /**** md5 signature: e9a77f14e9bbca29370202de404ea9c1 ****/ + /****** BRepAdaptor_Curve::Ellipse ******/ + /****** md5 signature: e9a77f14e9bbca29370202de404ea9c1 ******/ %feature("compactdefaultargs") Ellipse; %feature("autodoc", "Return ------- @@ -962,8 +962,8 @@ No available documentation. ") Ellipse; gp_Elips Ellipse(); - /****************** FirstParameter ******************/ - /**** md5 signature: eb9ebe94572bd67588fe8811eac261fb ****/ + /****** BRepAdaptor_Curve::FirstParameter ******/ + /****** md5 signature: eb9ebe94572bd67588fe8811eac261fb ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", "Return ------- @@ -975,8 +975,8 @@ No available documentation. ") FirstParameter; Standard_Real FirstParameter(); - /****************** GetType ******************/ - /**** md5 signature: 0ad61dcbb5497908c1b536e766f0fcb9 ****/ + /****** BRepAdaptor_Curve::GetType ******/ + /****** md5 signature: 0ad61dcbb5497908c1b536e766f0fcb9 ******/ %feature("compactdefaultargs") GetType; %feature("autodoc", "Return ------- @@ -988,8 +988,8 @@ No available documentation. ") GetType; GeomAbs_CurveType GetType(); - /****************** Hyperbola ******************/ - /**** md5 signature: a96ca49b2ad017b35bb09d0b86cb690d ****/ + /****** BRepAdaptor_Curve::Hyperbola ******/ + /****** md5 signature: a96ca49b2ad017b35bb09d0b86cb690d ******/ %feature("compactdefaultargs") Hyperbola; %feature("autodoc", "Return ------- @@ -1001,8 +1001,8 @@ No available documentation. ") Hyperbola; gp_Hypr Hyperbola(); - /****************** Initialize ******************/ - /**** md5 signature: b0b8cb0790e5e63c5a8b3b133b757731 ****/ + /****** BRepAdaptor_Curve::Initialize ******/ + /****** md5 signature: b0b8cb0790e5e63c5a8b3b133b757731 ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -1019,8 +1019,8 @@ Sets the curve to access the geometry of edge . ") Initialize; void Initialize(const TopoDS_Edge & E); - /****************** Initialize ******************/ - /**** md5 signature: cf258179577adbc75b4efbc5847934f6 ****/ + /****** BRepAdaptor_Curve::Initialize ******/ + /****** md5 signature: cf258179577adbc75b4efbc5847934f6 ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -1038,8 +1038,8 @@ Sets the curve to access the geometry of edge . the geometry will be c ") Initialize; void Initialize(const TopoDS_Edge & E, const TopoDS_Face & F); - /****************** Intervals ******************/ - /**** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ****/ + /****** BRepAdaptor_Curve::Intervals ******/ + /****** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -1057,8 +1057,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** Is3DCurve ******************/ - /**** md5 signature: f5d6aa26c69fccbb40636aa757b15284 ****/ + /****** BRepAdaptor_Curve::Is3DCurve ******/ + /****** md5 signature: f5d6aa26c69fccbb40636aa757b15284 ******/ %feature("compactdefaultargs") Is3DCurve; %feature("autodoc", "Return ------- @@ -1070,8 +1070,8 @@ Returns true if the edge geometry is computed from a 3d curve. ") Is3DCurve; Standard_Boolean Is3DCurve(); - /****************** IsClosed ******************/ - /**** md5 signature: 00978070ec4cb5f00d1d002a8d5d3763 ****/ + /****** BRepAdaptor_Curve::IsClosed ******/ + /****** md5 signature: 00978070ec4cb5f00d1d002a8d5d3763 ******/ %feature("compactdefaultargs") IsClosed; %feature("autodoc", "Return ------- @@ -1083,8 +1083,8 @@ No available documentation. ") IsClosed; Standard_Boolean IsClosed(); - /****************** IsCurveOnSurface ******************/ - /**** md5 signature: 3910efc6129939aa50e8be5bbd9c78d4 ****/ + /****** BRepAdaptor_Curve::IsCurveOnSurface ******/ + /****** md5 signature: 3910efc6129939aa50e8be5bbd9c78d4 ******/ %feature("compactdefaultargs") IsCurveOnSurface; %feature("autodoc", "Return ------- @@ -1096,8 +1096,8 @@ Returns true if the edge geometry is computed from a pcurve on a surface. ") IsCurveOnSurface; Standard_Boolean IsCurveOnSurface(); - /****************** IsPeriodic ******************/ - /**** md5 signature: 15e3ccfd3ad4ae42959489f7f64aa8ca ****/ + /****** BRepAdaptor_Curve::IsPeriodic ******/ + /****** md5 signature: 15e3ccfd3ad4ae42959489f7f64aa8ca ******/ %feature("compactdefaultargs") IsPeriodic; %feature("autodoc", "Return ------- @@ -1109,8 +1109,8 @@ No available documentation. ") IsPeriodic; Standard_Boolean IsPeriodic(); - /****************** IsRational ******************/ - /**** md5 signature: 82ca56fad113156125f40128b25c0d8e ****/ + /****** BRepAdaptor_Curve::IsRational ******/ + /****** md5 signature: 82ca56fad113156125f40128b25c0d8e ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -1122,8 +1122,8 @@ No available documentation. ") IsRational; Standard_Boolean IsRational(); - /****************** LastParameter ******************/ - /**** md5 signature: cb4925a2d4a451ceec8f6ad486530f9c ****/ + /****** BRepAdaptor_Curve::LastParameter ******/ + /****** md5 signature: cb4925a2d4a451ceec8f6ad486530f9c ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", "Return ------- @@ -1135,8 +1135,8 @@ No available documentation. ") LastParameter; Standard_Real LastParameter(); - /****************** Line ******************/ - /**** md5 signature: cf28f5541e4e744dd8038e2a9ac75a8f ****/ + /****** BRepAdaptor_Curve::Line ******/ + /****** md5 signature: cf28f5541e4e744dd8038e2a9ac75a8f ******/ %feature("compactdefaultargs") Line; %feature("autodoc", "Return ------- @@ -1148,8 +1148,8 @@ No available documentation. ") Line; gp_Lin Line(); - /****************** NbIntervals ******************/ - /**** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ****/ + /****** BRepAdaptor_Curve::NbIntervals ******/ + /****** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -1166,8 +1166,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** NbKnots ******************/ - /**** md5 signature: 841663cbf96bec3b939f307c52df6c7c ****/ + /****** BRepAdaptor_Curve::NbKnots ******/ + /****** md5 signature: 841663cbf96bec3b939f307c52df6c7c ******/ %feature("compactdefaultargs") NbKnots; %feature("autodoc", "Return ------- @@ -1179,8 +1179,8 @@ No available documentation. ") NbKnots; Standard_Integer NbKnots(); - /****************** NbPoles ******************/ - /**** md5 signature: 52e5fadf897540545847ef59cc0ba942 ****/ + /****** BRepAdaptor_Curve::NbPoles ******/ + /****** md5 signature: 52e5fadf897540545847ef59cc0ba942 ******/ %feature("compactdefaultargs") NbPoles; %feature("autodoc", "Return ------- @@ -1192,8 +1192,8 @@ No available documentation. ") NbPoles; Standard_Integer NbPoles(); - /****************** OffsetCurve ******************/ - /**** md5 signature: c9712770a031ed315e762ca33ff3eddd ****/ + /****** BRepAdaptor_Curve::OffsetCurve ******/ + /****** md5 signature: c9712770a031ed315e762ca33ff3eddd ******/ %feature("compactdefaultargs") OffsetCurve; %feature("autodoc", "Return ------- @@ -1205,8 +1205,8 @@ No available documentation. ") OffsetCurve; opencascade::handle OffsetCurve(); - /****************** Parabola ******************/ - /**** md5 signature: 68860abab63fd184ea5c7eb97f0762c1 ****/ + /****** BRepAdaptor_Curve::Parabola ******/ + /****** md5 signature: 68860abab63fd184ea5c7eb97f0762c1 ******/ %feature("compactdefaultargs") Parabola; %feature("autodoc", "Return ------- @@ -1218,8 +1218,8 @@ No available documentation. ") Parabola; gp_Parab Parabola(); - /****************** Period ******************/ - /**** md5 signature: 88909a321398632744c0d6841580c626 ****/ + /****** BRepAdaptor_Curve::Period ******/ + /****** md5 signature: 88909a321398632744c0d6841580c626 ******/ %feature("compactdefaultargs") Period; %feature("autodoc", "Return ------- @@ -1231,8 +1231,8 @@ No available documentation. ") Period; Standard_Real Period(); - /****************** Reset ******************/ - /**** md5 signature: 7beb446fe26b948f797f8de87e46c23d ****/ + /****** BRepAdaptor_Curve::Reset ******/ + /****** md5 signature: 7beb446fe26b948f797f8de87e46c23d ******/ %feature("compactdefaultargs") Reset; %feature("autodoc", "Return ------- @@ -1244,8 +1244,8 @@ Reset currently loaded curve (undone load()). ") Reset; void Reset(); - /****************** Resolution ******************/ - /**** md5 signature: cc4a4d9111fadd20ad48e62bc4df1579 ****/ + /****** BRepAdaptor_Curve::Resolution ******/ + /****** md5 signature: cc4a4d9111fadd20ad48e62bc4df1579 ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -1262,8 +1262,8 @@ Returns the parametric resolution. ") Resolution; Standard_Real Resolution(const Standard_Real R3d); - /****************** ShallowCopy ******************/ - /**** md5 signature: 1b6b0927543eab9d05e2c875c0c3efb6 ****/ + /****** BRepAdaptor_Curve::ShallowCopy ******/ + /****** md5 signature: 1b6b0927543eab9d05e2c875c0c3efb6 ******/ %feature("compactdefaultargs") ShallowCopy; %feature("autodoc", "Return ------- @@ -1275,8 +1275,8 @@ Shallow copy of adaptor. ") ShallowCopy; virtual opencascade::handle ShallowCopy(); - /****************** Tolerance ******************/ - /**** md5 signature: 9e5775014410d884d1a1adc1cd47930b ****/ + /****** BRepAdaptor_Curve::Tolerance ******/ + /****** md5 signature: 9e5775014410d884d1a1adc1cd47930b ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", "Return ------- @@ -1288,8 +1288,8 @@ Returns the edge tolerance. ") Tolerance; Standard_Real Tolerance(); - /****************** Trim ******************/ - /**** md5 signature: 40a46ffe7379c6d919968b501b8343a5 ****/ + /****** BRepAdaptor_Curve::Trim ******/ + /****** md5 signature: 40a46ffe7379c6d919968b501b8343a5 ******/ %feature("compactdefaultargs") Trim; %feature("autodoc", " Parameters @@ -1308,8 +1308,8 @@ Returns a curve equivalent of between parameters and . Trim(const Standard_Real First, const Standard_Real Last, const Standard_Real Tol); - /****************** Trsf ******************/ - /**** md5 signature: 97ab79d36bbfac916eee88e8b5acb351 ****/ + /****** BRepAdaptor_Curve::Trsf ******/ + /****** md5 signature: 97ab79d36bbfac916eee88e8b5acb351 ******/ %feature("compactdefaultargs") Trsf; %feature("autodoc", "Return ------- @@ -1321,8 +1321,8 @@ Returns the coordinate system of the curve. ") Trsf; const gp_Trsf Trsf(); - /****************** Value ******************/ - /**** md5 signature: d7f310c73762cbaa285ace0a141bc7bf ****/ + /****** BRepAdaptor_Curve::Value ******/ + /****** md5 signature: d7f310c73762cbaa285ace0a141bc7bf ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -1355,8 +1355,8 @@ Computes the point of parameter u on the curve. ****************************/ class BRepAdaptor_Curve2d : public Geom2dAdaptor_Curve { public: - /****************** BRepAdaptor_Curve2d ******************/ - /**** md5 signature: b7ed47cccfb977bc356e474765ba5816 ****/ + /****** BRepAdaptor_Curve2d::BRepAdaptor_Curve2d ******/ + /****** md5 signature: b7ed47cccfb977bc356e474765ba5816 ******/ %feature("compactdefaultargs") BRepAdaptor_Curve2d; %feature("autodoc", "Return ------- @@ -1368,8 +1368,8 @@ Creates an uninitialized curve2d. ") BRepAdaptor_Curve2d; BRepAdaptor_Curve2d(); - /****************** BRepAdaptor_Curve2d ******************/ - /**** md5 signature: e386e29ae63edd3b069e2ac2448ce78a ****/ + /****** BRepAdaptor_Curve2d::BRepAdaptor_Curve2d ******/ + /****** md5 signature: e386e29ae63edd3b069e2ac2448ce78a ******/ %feature("compactdefaultargs") BRepAdaptor_Curve2d; %feature("autodoc", " Parameters @@ -1387,8 +1387,8 @@ Creates with the pcurve of on . ") BRepAdaptor_Curve2d; BRepAdaptor_Curve2d(const TopoDS_Edge & E, const TopoDS_Face & F); - /****************** Edge ******************/ - /**** md5 signature: be590cff987799d8b7c28083399d0e9f ****/ + /****** BRepAdaptor_Curve2d::Edge ******/ + /****** md5 signature: be590cff987799d8b7c28083399d0e9f ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", "Return ------- @@ -1400,8 +1400,8 @@ Returns the edge. ") Edge; const TopoDS_Edge Edge(); - /****************** Face ******************/ - /**** md5 signature: 91e216ebeb76e55c73eb9e179241a6ff ****/ + /****** BRepAdaptor_Curve2d::Face ******/ + /****** md5 signature: 91e216ebeb76e55c73eb9e179241a6ff ******/ %feature("compactdefaultargs") Face; %feature("autodoc", "Return ------- @@ -1413,8 +1413,8 @@ Returns the face. ") Face; const TopoDS_Face Face(); - /****************** Initialize ******************/ - /**** md5 signature: cf258179577adbc75b4efbc5847934f6 ****/ + /****** BRepAdaptor_Curve2d::Initialize ******/ + /****** md5 signature: cf258179577adbc75b4efbc5847934f6 ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -1432,8 +1432,8 @@ Initialize with the pcurve of on . ") Initialize; void Initialize(const TopoDS_Edge & E, const TopoDS_Face & F); - /****************** ShallowCopy ******************/ - /**** md5 signature: 7526aff3b770b4e3b1eb3cc08adfb4b0 ****/ + /****** BRepAdaptor_Curve2d::ShallowCopy ******/ + /****** md5 signature: 7526aff3b770b4e3b1eb3cc08adfb4b0 ******/ %feature("compactdefaultargs") ShallowCopy; %feature("autodoc", "Return ------- @@ -1461,8 +1461,8 @@ Shallow copy of adaptor. ****************************/ class BRepAdaptor_Surface : public Adaptor3d_Surface { public: - /****************** BRepAdaptor_Surface ******************/ - /**** md5 signature: fd2163b01d125040a3f6f06ce9213655 ****/ + /****** BRepAdaptor_Surface::BRepAdaptor_Surface ******/ + /****** md5 signature: fd2163b01d125040a3f6f06ce9213655 ******/ %feature("compactdefaultargs") BRepAdaptor_Surface; %feature("autodoc", "Return ------- @@ -1474,8 +1474,8 @@ Creates an undefined surface with no face loaded. ") BRepAdaptor_Surface; BRepAdaptor_Surface(); - /****************** BRepAdaptor_Surface ******************/ - /**** md5 signature: 0cf16f4fea8b7b02de8e7d0a77cdc16a ****/ + /****** BRepAdaptor_Surface::BRepAdaptor_Surface ******/ + /****** md5 signature: 0cf16f4fea8b7b02de8e7d0a77cdc16a ******/ %feature("compactdefaultargs") BRepAdaptor_Surface; %feature("autodoc", " Parameters @@ -1493,8 +1493,8 @@ Creates a surface to access the geometry of . if is true the pa ") BRepAdaptor_Surface; BRepAdaptor_Surface(const TopoDS_Face & F, const Standard_Boolean R = Standard_True); - /****************** AxeOfRevolution ******************/ - /**** md5 signature: ba4a8d5fbd6cead47ee1b295e5469d5d ****/ + /****** BRepAdaptor_Surface::AxeOfRevolution ******/ + /****** md5 signature: ba4a8d5fbd6cead47ee1b295e5469d5d ******/ %feature("compactdefaultargs") AxeOfRevolution; %feature("autodoc", "Return ------- @@ -1506,8 +1506,8 @@ No available documentation. ") AxeOfRevolution; gp_Ax1 AxeOfRevolution(); - /****************** BSpline ******************/ - /**** md5 signature: 7edfedec29b3e090d1dbb1c560f9218f ****/ + /****** BRepAdaptor_Surface::BSpline ******/ + /****** md5 signature: 7edfedec29b3e090d1dbb1c560f9218f ******/ %feature("compactdefaultargs") BSpline; %feature("autodoc", "Return ------- @@ -1519,8 +1519,8 @@ Warning: this will make a copy of the bspline surface since it applies to it the ") BSpline; opencascade::handle BSpline(); - /****************** BasisCurve ******************/ - /**** md5 signature: 3da13dd15bd6f8a74a4a076b13266260 ****/ + /****** BRepAdaptor_Surface::BasisCurve ******/ + /****** md5 signature: 3da13dd15bd6f8a74a4a076b13266260 ******/ %feature("compactdefaultargs") BasisCurve; %feature("autodoc", "Return ------- @@ -1532,8 +1532,8 @@ Only for surfaceofextrusion and surfaceofrevolution warning: this will make a co ") BasisCurve; opencascade::handle BasisCurve(); - /****************** BasisSurface ******************/ - /**** md5 signature: de63a8a43356a45f5d395e828ec0014c ****/ + /****** BRepAdaptor_Surface::BasisSurface ******/ + /****** md5 signature: de63a8a43356a45f5d395e828ec0014c ******/ %feature("compactdefaultargs") BasisSurface; %feature("autodoc", "Return ------- @@ -1545,8 +1545,8 @@ No available documentation. ") BasisSurface; opencascade::handle BasisSurface(); - /****************** Bezier ******************/ - /**** md5 signature: 98b7293dc91af28a1a57c0bfbd1e467a ****/ + /****** BRepAdaptor_Surface::Bezier ******/ + /****** md5 signature: 98b7293dc91af28a1a57c0bfbd1e467a ******/ %feature("compactdefaultargs") Bezier; %feature("autodoc", "Return ------- @@ -1558,8 +1558,8 @@ No available documentation. ") Bezier; opencascade::handle Bezier(); - /****************** ChangeSurface ******************/ - /**** md5 signature: ead718e69fe53e8fd677c1b9c64ff5a3 ****/ + /****** BRepAdaptor_Surface::ChangeSurface ******/ + /****** md5 signature: ead718e69fe53e8fd677c1b9c64ff5a3 ******/ %feature("compactdefaultargs") ChangeSurface; %feature("autodoc", "Return ------- @@ -1571,8 +1571,8 @@ Returns the surface. ") ChangeSurface; GeomAdaptor_Surface & ChangeSurface(); - /****************** Cone ******************/ - /**** md5 signature: 3ce87f79e83a129f74e88ef746e3e34b ****/ + /****** BRepAdaptor_Surface::Cone ******/ + /****** md5 signature: 3ce87f79e83a129f74e88ef746e3e34b ******/ %feature("compactdefaultargs") Cone; %feature("autodoc", "Return ------- @@ -1584,8 +1584,8 @@ No available documentation. ") Cone; gp_Cone Cone(); - /****************** Cylinder ******************/ - /**** md5 signature: fdc0e133b47b8d299b834e1b65638963 ****/ + /****** BRepAdaptor_Surface::Cylinder ******/ + /****** md5 signature: fdc0e133b47b8d299b834e1b65638963 ******/ %feature("compactdefaultargs") Cylinder; %feature("autodoc", "Return ------- @@ -1597,8 +1597,8 @@ No available documentation. ") Cylinder; gp_Cylinder Cylinder(); - /****************** D0 ******************/ - /**** md5 signature: 909f7ecc223d561155c9c3ba4b8e7b64 ****/ + /****** BRepAdaptor_Surface::D0 ******/ + /****** md5 signature: 909f7ecc223d561155c9c3ba4b8e7b64 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -1617,8 +1617,8 @@ Computes the point of parameters u,v on the surface. ") D0; void D0(const Standard_Real U, const Standard_Real V, gp_Pnt & P); - /****************** D1 ******************/ - /**** md5 signature: 0868b105367e01c443402a5728aa3395 ****/ + /****** BRepAdaptor_Surface::D1 ******/ + /****** md5 signature: 0868b105367e01c443402a5728aa3395 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -1639,8 +1639,8 @@ Computes the point and the first derivatives on the surface. raised if the conti ") D1; void D1(const Standard_Real U, const Standard_Real V, gp_Pnt & P, gp_Vec & D1U, gp_Vec & D1V); - /****************** D2 ******************/ - /**** md5 signature: 5bdb029d3f1561c55d7ab1d1b0b0282a ****/ + /****** BRepAdaptor_Surface::D2 ******/ + /****** md5 signature: 5bdb029d3f1561c55d7ab1d1b0b0282a ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -1664,8 +1664,8 @@ Computes the point, the first and second derivatives on the surface. raised if t ") D2; void D2(const Standard_Real U, const Standard_Real V, gp_Pnt & P, gp_Vec & D1U, gp_Vec & D1V, gp_Vec & D2U, gp_Vec & D2V, gp_Vec & D2UV); - /****************** D3 ******************/ - /**** md5 signature: 2fbd4d1b6bb5f19034b05b5a6e0ddec0 ****/ + /****** BRepAdaptor_Surface::D3 ******/ + /****** md5 signature: 2fbd4d1b6bb5f19034b05b5a6e0ddec0 ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -1693,8 +1693,8 @@ Computes the point, the first, second and third derivatives on the surface. rais ") D3; void D3(const Standard_Real U, const Standard_Real V, gp_Pnt & P, gp_Vec & D1U, gp_Vec & D1V, gp_Vec & D2U, gp_Vec & D2V, gp_Vec & D2UV, gp_Vec & D3U, gp_Vec & D3V, gp_Vec & D3UUV, gp_Vec & D3UVV); - /****************** DN ******************/ - /**** md5 signature: 78200f5fa5a4060f4022c2e3d9d8ac0e ****/ + /****** BRepAdaptor_Surface::DN ******/ + /****** md5 signature: 78200f5fa5a4060f4022c2e3d9d8ac0e ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -1714,8 +1714,8 @@ Computes the derivative of order nu in the direction u and nv in the direction v ") DN; gp_Vec DN(const Standard_Real U, const Standard_Real V, const Standard_Integer Nu, const Standard_Integer Nv); - /****************** Direction ******************/ - /**** md5 signature: 701909e88752dfbf540944de6bad9f3a ****/ + /****** BRepAdaptor_Surface::Direction ******/ + /****** md5 signature: 701909e88752dfbf540944de6bad9f3a ******/ %feature("compactdefaultargs") Direction; %feature("autodoc", "Return ------- @@ -1727,8 +1727,8 @@ No available documentation. ") Direction; gp_Dir Direction(); - /****************** Face ******************/ - /**** md5 signature: 91e216ebeb76e55c73eb9e179241a6ff ****/ + /****** BRepAdaptor_Surface::Face ******/ + /****** md5 signature: 91e216ebeb76e55c73eb9e179241a6ff ******/ %feature("compactdefaultargs") Face; %feature("autodoc", "Return ------- @@ -1740,8 +1740,8 @@ Returns the face. ") Face; const TopoDS_Face Face(); - /****************** FirstUParameter ******************/ - /**** md5 signature: 9f6a318ef39f30d9051cc243f6edc9ac ****/ + /****** BRepAdaptor_Surface::FirstUParameter ******/ + /****** md5 signature: 9f6a318ef39f30d9051cc243f6edc9ac ******/ %feature("compactdefaultargs") FirstUParameter; %feature("autodoc", "Return ------- @@ -1753,8 +1753,8 @@ No available documentation. ") FirstUParameter; virtual Standard_Real FirstUParameter(); - /****************** FirstVParameter ******************/ - /**** md5 signature: 026c8b687e22be56263a275efcb1a191 ****/ + /****** BRepAdaptor_Surface::FirstVParameter ******/ + /****** md5 signature: 026c8b687e22be56263a275efcb1a191 ******/ %feature("compactdefaultargs") FirstVParameter; %feature("autodoc", "Return ------- @@ -1766,8 +1766,8 @@ No available documentation. ") FirstVParameter; virtual Standard_Real FirstVParameter(); - /****************** GetType ******************/ - /**** md5 signature: 936170b269276a5a12605a71a86272c0 ****/ + /****** BRepAdaptor_Surface::GetType ******/ + /****** md5 signature: 936170b269276a5a12605a71a86272c0 ******/ %feature("compactdefaultargs") GetType; %feature("autodoc", "Return ------- @@ -1779,8 +1779,8 @@ Returns the type of the surface: plane, cylinder, cone, sphere, torus, beziersur ") GetType; virtual GeomAbs_SurfaceType GetType(); - /****************** Initialize ******************/ - /**** md5 signature: f3aeecb0e2fbd866889f168f070cf082 ****/ + /****** BRepAdaptor_Surface::Initialize ******/ + /****** md5 signature: f3aeecb0e2fbd866889f168f070cf082 ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -1798,8 +1798,8 @@ Sets the surface to the geometry of . ") Initialize; void Initialize(const TopoDS_Face & F, const Standard_Boolean Restriction = Standard_True); - /****************** IsUClosed ******************/ - /**** md5 signature: 3889881a8bccaf01bdc63482d847fec7 ****/ + /****** BRepAdaptor_Surface::IsUClosed ******/ + /****** md5 signature: 3889881a8bccaf01bdc63482d847fec7 ******/ %feature("compactdefaultargs") IsUClosed; %feature("autodoc", "Return ------- @@ -1811,8 +1811,8 @@ No available documentation. ") IsUClosed; virtual Standard_Boolean IsUClosed(); - /****************** IsUPeriodic ******************/ - /**** md5 signature: baaa80f0fba4fab1ff0458c41067535b ****/ + /****** BRepAdaptor_Surface::IsUPeriodic ******/ + /****** md5 signature: baaa80f0fba4fab1ff0458c41067535b ******/ %feature("compactdefaultargs") IsUPeriodic; %feature("autodoc", "Return ------- @@ -1824,8 +1824,8 @@ No available documentation. ") IsUPeriodic; virtual Standard_Boolean IsUPeriodic(); - /****************** IsURational ******************/ - /**** md5 signature: 972bde55bb1931ba89cfd38a75b346b4 ****/ + /****** BRepAdaptor_Surface::IsURational ******/ + /****** md5 signature: 972bde55bb1931ba89cfd38a75b346b4 ******/ %feature("compactdefaultargs") IsURational; %feature("autodoc", "Return ------- @@ -1837,8 +1837,8 @@ No available documentation. ") IsURational; virtual Standard_Boolean IsURational(); - /****************** IsVClosed ******************/ - /**** md5 signature: f5d8b2178f14695d158c648b5d67e50b ****/ + /****** BRepAdaptor_Surface::IsVClosed ******/ + /****** md5 signature: f5d8b2178f14695d158c648b5d67e50b ******/ %feature("compactdefaultargs") IsVClosed; %feature("autodoc", "Return ------- @@ -1850,8 +1850,8 @@ No available documentation. ") IsVClosed; virtual Standard_Boolean IsVClosed(); - /****************** IsVPeriodic ******************/ - /**** md5 signature: a7b7752f1716f49329b3486241deda0e ****/ + /****** BRepAdaptor_Surface::IsVPeriodic ******/ + /****** md5 signature: a7b7752f1716f49329b3486241deda0e ******/ %feature("compactdefaultargs") IsVPeriodic; %feature("autodoc", "Return ------- @@ -1863,8 +1863,8 @@ No available documentation. ") IsVPeriodic; virtual Standard_Boolean IsVPeriodic(); - /****************** IsVRational ******************/ - /**** md5 signature: bfc5bd774a4b38bf6259615a711f8ed2 ****/ + /****** BRepAdaptor_Surface::IsVRational ******/ + /****** md5 signature: bfc5bd774a4b38bf6259615a711f8ed2 ******/ %feature("compactdefaultargs") IsVRational; %feature("autodoc", "Return ------- @@ -1876,8 +1876,8 @@ No available documentation. ") IsVRational; virtual Standard_Boolean IsVRational(); - /****************** LastUParameter ******************/ - /**** md5 signature: 3133997e2ee3ea09c0b46a884e833ca4 ****/ + /****** BRepAdaptor_Surface::LastUParameter ******/ + /****** md5 signature: 3133997e2ee3ea09c0b46a884e833ca4 ******/ %feature("compactdefaultargs") LastUParameter; %feature("autodoc", "Return ------- @@ -1889,8 +1889,8 @@ No available documentation. ") LastUParameter; virtual Standard_Real LastUParameter(); - /****************** LastVParameter ******************/ - /**** md5 signature: f1f64233932dd0768276d78ffb537717 ****/ + /****** BRepAdaptor_Surface::LastVParameter ******/ + /****** md5 signature: f1f64233932dd0768276d78ffb537717 ******/ %feature("compactdefaultargs") LastVParameter; %feature("autodoc", "Return ------- @@ -1902,8 +1902,8 @@ No available documentation. ") LastVParameter; virtual Standard_Real LastVParameter(); - /****************** NbUIntervals ******************/ - /**** md5 signature: ae4875076949dd10d5b3e8aa53673562 ****/ + /****** BRepAdaptor_Surface::NbUIntervals ******/ + /****** md5 signature: ae4875076949dd10d5b3e8aa53673562 ******/ %feature("compactdefaultargs") NbUIntervals; %feature("autodoc", " Parameters @@ -1920,8 +1920,8 @@ If necessary, breaks the surface in u intervals of continuity . and returns t ") NbUIntervals; virtual Standard_Integer NbUIntervals(const GeomAbs_Shape theSh); - /****************** NbUKnots ******************/ - /**** md5 signature: 9c52bcf67cce67b26f246c3aa4ea551f ****/ + /****** BRepAdaptor_Surface::NbUKnots ******/ + /****** md5 signature: 9c52bcf67cce67b26f246c3aa4ea551f ******/ %feature("compactdefaultargs") NbUKnots; %feature("autodoc", "Return ------- @@ -1933,8 +1933,8 @@ No available documentation. ") NbUKnots; virtual Standard_Integer NbUKnots(); - /****************** NbUPoles ******************/ - /**** md5 signature: 8d31152e70dd85bb21fb36dbd5b33693 ****/ + /****** BRepAdaptor_Surface::NbUPoles ******/ + /****** md5 signature: 8d31152e70dd85bb21fb36dbd5b33693 ******/ %feature("compactdefaultargs") NbUPoles; %feature("autodoc", "Return ------- @@ -1946,8 +1946,8 @@ No available documentation. ") NbUPoles; virtual Standard_Integer NbUPoles(); - /****************** NbVIntervals ******************/ - /**** md5 signature: f8d85deebab1e39694985284c6a9f17e ****/ + /****** BRepAdaptor_Surface::NbVIntervals ******/ + /****** md5 signature: f8d85deebab1e39694985284c6a9f17e ******/ %feature("compactdefaultargs") NbVIntervals; %feature("autodoc", " Parameters @@ -1964,8 +1964,8 @@ If necessary, breaks the surface in v intervals of continuity . and returns t ") NbVIntervals; virtual Standard_Integer NbVIntervals(const GeomAbs_Shape theSh); - /****************** NbVKnots ******************/ - /**** md5 signature: 6aef7952062b9c9994e4e5162b5eecc2 ****/ + /****** BRepAdaptor_Surface::NbVKnots ******/ + /****** md5 signature: 6aef7952062b9c9994e4e5162b5eecc2 ******/ %feature("compactdefaultargs") NbVKnots; %feature("autodoc", "Return ------- @@ -1977,8 +1977,8 @@ No available documentation. ") NbVKnots; virtual Standard_Integer NbVKnots(); - /****************** NbVPoles ******************/ - /**** md5 signature: c198f9b4e351d69009dae4cc79544fc2 ****/ + /****** BRepAdaptor_Surface::NbVPoles ******/ + /****** md5 signature: c198f9b4e351d69009dae4cc79544fc2 ******/ %feature("compactdefaultargs") NbVPoles; %feature("autodoc", "Return ------- @@ -1990,8 +1990,8 @@ No available documentation. ") NbVPoles; virtual Standard_Integer NbVPoles(); - /****************** OffsetValue ******************/ - /**** md5 signature: ae23f5f41fc62b65137ff41b8ee27c47 ****/ + /****** BRepAdaptor_Surface::OffsetValue ******/ + /****** md5 signature: ae23f5f41fc62b65137ff41b8ee27c47 ******/ %feature("compactdefaultargs") OffsetValue; %feature("autodoc", "Return ------- @@ -2003,8 +2003,8 @@ No available documentation. ") OffsetValue; Standard_Real OffsetValue(); - /****************** Plane ******************/ - /**** md5 signature: 38bd3e56cdca70a78cd998154292a430 ****/ + /****** BRepAdaptor_Surface::Plane ******/ + /****** md5 signature: 38bd3e56cdca70a78cd998154292a430 ******/ %feature("compactdefaultargs") Plane; %feature("autodoc", "Return ------- @@ -2016,8 +2016,8 @@ No available documentation. ") Plane; gp_Pln Plane(); - /****************** ShallowCopy ******************/ - /**** md5 signature: 0f1e5e5cc4137678a63b6cdf38f07462 ****/ + /****** BRepAdaptor_Surface::ShallowCopy ******/ + /****** md5 signature: 0f1e5e5cc4137678a63b6cdf38f07462 ******/ %feature("compactdefaultargs") ShallowCopy; %feature("autodoc", "Return ------- @@ -2029,8 +2029,8 @@ Shallow copy of adaptor. ") ShallowCopy; virtual opencascade::handle ShallowCopy(); - /****************** Sphere ******************/ - /**** md5 signature: d13f3935ec312564a2f8ef1b299ecf9a ****/ + /****** BRepAdaptor_Surface::Sphere ******/ + /****** md5 signature: d13f3935ec312564a2f8ef1b299ecf9a ******/ %feature("compactdefaultargs") Sphere; %feature("autodoc", "Return ------- @@ -2042,8 +2042,8 @@ No available documentation. ") Sphere; gp_Sphere Sphere(); - /****************** Surface ******************/ - /**** md5 signature: e09b6aa0166ca76f2672af1ac0cf0ae2 ****/ + /****** BRepAdaptor_Surface::Surface ******/ + /****** md5 signature: e09b6aa0166ca76f2672af1ac0cf0ae2 ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", "Return ------- @@ -2055,8 +2055,8 @@ Returns the surface. ") Surface; GeomAdaptor_Surface Surface(); - /****************** Tolerance ******************/ - /**** md5 signature: 9e5775014410d884d1a1adc1cd47930b ****/ + /****** BRepAdaptor_Surface::Tolerance ******/ + /****** md5 signature: 9e5775014410d884d1a1adc1cd47930b ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", "Return ------- @@ -2068,8 +2068,8 @@ Returns the face tolerance. ") Tolerance; Standard_Real Tolerance(); - /****************** Torus ******************/ - /**** md5 signature: 13ce946397b0f1bcfd3f38f215bbadac ****/ + /****** BRepAdaptor_Surface::Torus ******/ + /****** md5 signature: 13ce946397b0f1bcfd3f38f215bbadac ******/ %feature("compactdefaultargs") Torus; %feature("autodoc", "Return ------- @@ -2081,8 +2081,8 @@ No available documentation. ") Torus; gp_Torus Torus(); - /****************** Trsf ******************/ - /**** md5 signature: 97ab79d36bbfac916eee88e8b5acb351 ****/ + /****** BRepAdaptor_Surface::Trsf ******/ + /****** md5 signature: 97ab79d36bbfac916eee88e8b5acb351 ******/ %feature("compactdefaultargs") Trsf; %feature("autodoc", "Return ------- @@ -2094,8 +2094,8 @@ Returns the surface coordinate system. ") Trsf; const gp_Trsf Trsf(); - /****************** UContinuity ******************/ - /**** md5 signature: 3d5af3bf8bc22c7a70f14bdb9e75696a ****/ + /****** BRepAdaptor_Surface::UContinuity ******/ + /****** md5 signature: 3d5af3bf8bc22c7a70f14bdb9e75696a ******/ %feature("compactdefaultargs") UContinuity; %feature("autodoc", "Return ------- @@ -2107,8 +2107,8 @@ No available documentation. ") UContinuity; virtual GeomAbs_Shape UContinuity(); - /****************** UDegree ******************/ - /**** md5 signature: 2acc7b7f865332e05b9779cd0a953da6 ****/ + /****** BRepAdaptor_Surface::UDegree ******/ + /****** md5 signature: 2acc7b7f865332e05b9779cd0a953da6 ******/ %feature("compactdefaultargs") UDegree; %feature("autodoc", "Return ------- @@ -2120,8 +2120,8 @@ No available documentation. ") UDegree; virtual Standard_Integer UDegree(); - /****************** UIntervals ******************/ - /**** md5 signature: 5a653f364681c4a5c1065b7e92c5d659 ****/ + /****** BRepAdaptor_Surface::UIntervals ******/ + /****** md5 signature: 5a653f364681c4a5c1065b7e92c5d659 ******/ %feature("compactdefaultargs") UIntervals; %feature("autodoc", " Parameters @@ -2139,8 +2139,8 @@ Returns the intervals with the requested continuity in the u direction. ") UIntervals; void UIntervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** UPeriod ******************/ - /**** md5 signature: 9816370c908f909f6185bf5b607b6ed4 ****/ + /****** BRepAdaptor_Surface::UPeriod ******/ + /****** md5 signature: 9816370c908f909f6185bf5b607b6ed4 ******/ %feature("compactdefaultargs") UPeriod; %feature("autodoc", "Return ------- @@ -2152,8 +2152,8 @@ No available documentation. ") UPeriod; virtual Standard_Real UPeriod(); - /****************** UResolution ******************/ - /**** md5 signature: c908970ed85794b4b55fe21095a41df4 ****/ + /****** BRepAdaptor_Surface::UResolution ******/ + /****** md5 signature: c908970ed85794b4b55fe21095a41df4 ******/ %feature("compactdefaultargs") UResolution; %feature("autodoc", " Parameters @@ -2170,8 +2170,8 @@ Returns the parametric u resolution corresponding to the real space resolution < ") UResolution; virtual Standard_Real UResolution(const Standard_Real theR3d); - /****************** UTrim ******************/ - /**** md5 signature: 3604326125cf753b2a6722a946fb54be ****/ + /****** BRepAdaptor_Surface::UTrim ******/ + /****** md5 signature: 3604326125cf753b2a6722a946fb54be ******/ %feature("compactdefaultargs") UTrim; %feature("autodoc", " Parameters @@ -2190,8 +2190,8 @@ Returns a surface trimmed in the u direction equivalent of between parame ") UTrim; opencascade::handle UTrim(const Standard_Real First, const Standard_Real Last, const Standard_Real Tol); - /****************** VContinuity ******************/ - /**** md5 signature: a992dce85d001ed1cf99e1672e6d07ff ****/ + /****** BRepAdaptor_Surface::VContinuity ******/ + /****** md5 signature: a992dce85d001ed1cf99e1672e6d07ff ******/ %feature("compactdefaultargs") VContinuity; %feature("autodoc", "Return ------- @@ -2203,8 +2203,8 @@ No available documentation. ") VContinuity; virtual GeomAbs_Shape VContinuity(); - /****************** VDegree ******************/ - /**** md5 signature: 40f217d7a0d71a97880e9ed212ed6f4e ****/ + /****** BRepAdaptor_Surface::VDegree ******/ + /****** md5 signature: 40f217d7a0d71a97880e9ed212ed6f4e ******/ %feature("compactdefaultargs") VDegree; %feature("autodoc", "Return ------- @@ -2216,8 +2216,8 @@ No available documentation. ") VDegree; virtual Standard_Integer VDegree(); - /****************** VIntervals ******************/ - /**** md5 signature: bf8bef8286fec18f81beea299dd5cb6d ****/ + /****** BRepAdaptor_Surface::VIntervals ******/ + /****** md5 signature: bf8bef8286fec18f81beea299dd5cb6d ******/ %feature("compactdefaultargs") VIntervals; %feature("autodoc", " Parameters @@ -2235,8 +2235,8 @@ Returns the intervals with the requested continuity in the v direction. ") VIntervals; void VIntervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** VPeriod ******************/ - /**** md5 signature: 72036cc062bfffc50fc8cd70671f4f03 ****/ + /****** BRepAdaptor_Surface::VPeriod ******/ + /****** md5 signature: 72036cc062bfffc50fc8cd70671f4f03 ******/ %feature("compactdefaultargs") VPeriod; %feature("autodoc", "Return ------- @@ -2248,8 +2248,8 @@ No available documentation. ") VPeriod; virtual Standard_Real VPeriod(); - /****************** VResolution ******************/ - /**** md5 signature: 6834713e8a40b99362514d586f78d876 ****/ + /****** BRepAdaptor_Surface::VResolution ******/ + /****** md5 signature: 6834713e8a40b99362514d586f78d876 ******/ %feature("compactdefaultargs") VResolution; %feature("autodoc", " Parameters @@ -2266,8 +2266,8 @@ Returns the parametric v resolution corresponding to the real space resolution < ") VResolution; virtual Standard_Real VResolution(const Standard_Real theR3d); - /****************** VTrim ******************/ - /**** md5 signature: d094345261a4439c6edc98b200ea4e3d ****/ + /****** BRepAdaptor_Surface::VTrim ******/ + /****** md5 signature: d094345261a4439c6edc98b200ea4e3d ******/ %feature("compactdefaultargs") VTrim; %feature("autodoc", " Parameters @@ -2286,8 +2286,8 @@ Returns a surface trimmed in the v direction between parameters and VTrim(const Standard_Real First, const Standard_Real Last, const Standard_Real Tol); - /****************** Value ******************/ - /**** md5 signature: bc01a119296408176c75cc0dfb0636ae ****/ + /****** BRepAdaptor_Surface::Value ******/ + /****** md5 signature: bc01a119296408176c75cc0dfb0636ae ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BRepAlgo.i b/src/SWIG_files/wrapper/BRepAlgo.i index e945af730..59ff6287a 100644 --- a/src/SWIG_files/wrapper/BRepAlgo.i +++ b/src/SWIG_files/wrapper/BRepAlgo.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPALGODOCSTRING "BRepAlgo module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepalgo.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepalgo.html" %enddef %module (package="OCC.Core", docstring=BREPALGODOCSTRING) BRepAlgo @@ -111,8 +111,8 @@ from OCC.Core.Exception import * %rename(brepalgo) BRepAlgo; class BRepAlgo { public: - /****************** ConcatenateWire ******************/ - /**** md5 signature: 1a32b306b59aab7db7f1be46215b37ef ****/ + /****** BRepAlgo::ConcatenateWire ******/ + /****** md5 signature: 1a32b306b59aab7db7f1be46215b37ef ******/ %feature("compactdefaultargs") ConcatenateWire; %feature("autodoc", " Parameters @@ -131,8 +131,8 @@ This method makes a wire whose edges are c1 from a wire whose edges could be g1. ") ConcatenateWire; static TopoDS_Wire ConcatenateWire(const TopoDS_Wire & Wire, const GeomAbs_Shape Option, const Standard_Real AngularTolerance = 1.0e-4); - /****************** ConcatenateWireC0 ******************/ - /**** md5 signature: 80cfe190357e01a0436f222bec60fa13 ****/ + /****** BRepAlgo::ConcatenateWireC0 ******/ + /****** md5 signature: 80cfe190357e01a0436f222bec60fa13 ******/ %feature("compactdefaultargs") ConcatenateWireC0; %feature("autodoc", " Parameters @@ -149,8 +149,8 @@ This method makes an edge from a wire. junction points between edges of wire may ") ConcatenateWireC0; static TopoDS_Edge ConcatenateWireC0(const TopoDS_Wire & Wire); - /****************** ConvertFace ******************/ - /**** md5 signature: 4995d6c46f75b841a5ec1eeddfe269b6 ****/ + /****** BRepAlgo::ConvertFace ******/ + /****** md5 signature: 4995d6c46f75b841a5ec1eeddfe269b6 ******/ %feature("compactdefaultargs") ConvertFace; %feature("autodoc", " Parameters @@ -168,8 +168,8 @@ Method of face conversion. the api corresponds to the method convertwire. this i ") ConvertFace; static TopoDS_Face ConvertFace(const TopoDS_Face & theFace, const Standard_Real theAngleTolerance); - /****************** ConvertWire ******************/ - /**** md5 signature: 803ac9affea1e0a7a42b271f20e61001 ****/ + /****** BRepAlgo::ConvertWire ******/ + /****** md5 signature: 803ac9affea1e0a7a42b271f20e61001 ******/ %feature("compactdefaultargs") ConvertWire; %feature("autodoc", " Parameters @@ -188,8 +188,8 @@ Method of wire conversion, calls brepalgo_approx internally. @param thewire inpu ") ConvertWire; static TopoDS_Wire ConvertWire(const TopoDS_Wire & theWire, const Standard_Real theAngleTolerance, const TopoDS_Face & theFace); - /****************** IsTopologicallyValid ******************/ - /**** md5 signature: 862e9687e6641e5b5520e1bc35a7dd50 ****/ + /****** BRepAlgo::IsTopologicallyValid ******/ + /****** md5 signature: 862e9687e6641e5b5520e1bc35a7dd50 ******/ %feature("compactdefaultargs") IsTopologicallyValid; %feature("autodoc", " Parameters @@ -206,8 +206,8 @@ Checks if the shape is 'correct'. if not, returns false, else returns true. this ") IsTopologicallyValid; static Standard_Boolean IsTopologicallyValid(const TopoDS_Shape & S); - /****************** IsValid ******************/ - /**** md5 signature: f6c51d6a17d819532ca2912c3fc6a304 ****/ + /****** BRepAlgo::IsValid ******/ + /****** md5 signature: f6c51d6a17d819532ca2912c3fc6a304 ******/ %feature("compactdefaultargs") IsValid; %feature("autodoc", " Parameters @@ -224,8 +224,8 @@ Checks if the shape is 'correct'. if not, returns , else returns ") IsValid; static Standard_Boolean IsValid(const TopoDS_Shape & S); - /****************** IsValid ******************/ - /**** md5 signature: a6a7c5ea6808afc2c6c282f452e359df ****/ + /****** BRepAlgo::IsValid ******/ + /****** md5 signature: a6a7c5ea6808afc2c6c282f452e359df ******/ %feature("compactdefaultargs") IsValid; %feature("autodoc", " Parameters @@ -259,8 +259,8 @@ Checks if the generated and modified faces from the shapes in the sh ***********************/ class BRepAlgo_AsDes : public Standard_Transient { public: - /****************** BRepAlgo_AsDes ******************/ - /**** md5 signature: c38ef1363f12544146fc23652e8830a6 ****/ + /****** BRepAlgo_AsDes::BRepAlgo_AsDes ******/ + /****** md5 signature: c38ef1363f12544146fc23652e8830a6 ******/ %feature("compactdefaultargs") BRepAlgo_AsDes; %feature("autodoc", "Return ------- @@ -272,8 +272,8 @@ Creates an empty asdes. ") BRepAlgo_AsDes; BRepAlgo_AsDes(); - /****************** Add ******************/ - /**** md5 signature: 21aba0cbf9c8c8c11e064d9e2e6a5fc5 ****/ + /****** BRepAlgo_AsDes::Add ******/ + /****** md5 signature: 21aba0cbf9c8c8c11e064d9e2e6a5fc5 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -291,8 +291,8 @@ Stores as a futur subshape of . ") Add; void Add(const TopoDS_Shape & S, const TopoDS_Shape & SS); - /****************** Add ******************/ - /**** md5 signature: daedb93f45ca97af04bcfee2319db368 ****/ + /****** BRepAlgo_AsDes::Add ******/ + /****** md5 signature: daedb93f45ca97af04bcfee2319db368 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -310,8 +310,8 @@ Stores as futurs subshapes of . ") Add; void Add(const TopoDS_Shape & S, const TopTools_ListOfShape & SS); - /****************** Ascendant ******************/ - /**** md5 signature: 0f9934446c2b983d1dfe0f2d9e5cbbab ****/ + /****** BRepAlgo_AsDes::Ascendant ******/ + /****** md5 signature: 0f9934446c2b983d1dfe0f2d9e5cbbab ******/ %feature("compactdefaultargs") Ascendant; %feature("autodoc", " Parameters @@ -328,8 +328,8 @@ Returns the shape containing . ") Ascendant; const TopTools_ListOfShape & Ascendant(const TopoDS_Shape & S); - /****************** ChangeDescendant ******************/ - /**** md5 signature: 4e3d115ec5f7066ca927facb2b62a0bd ****/ + /****** BRepAlgo_AsDes::ChangeDescendant ******/ + /****** md5 signature: 4e3d115ec5f7066ca927facb2b62a0bd ******/ %feature("compactdefaultargs") ChangeDescendant; %feature("autodoc", " Parameters @@ -346,8 +346,8 @@ Returns futur subhapes of . ") ChangeDescendant; TopTools_ListOfShape & ChangeDescendant(const TopoDS_Shape & S); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** BRepAlgo_AsDes::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -359,8 +359,8 @@ No available documentation. ") Clear; void Clear(); - /****************** Descendant ******************/ - /**** md5 signature: d8b2fd69d6ffe678b09cae4efb7ca892 ****/ + /****** BRepAlgo_AsDes::Descendant ******/ + /****** md5 signature: d8b2fd69d6ffe678b09cae4efb7ca892 ******/ %feature("compactdefaultargs") Descendant; %feature("autodoc", " Parameters @@ -377,8 +377,8 @@ Returns futur subhapes of . ") Descendant; const TopTools_ListOfShape & Descendant(const TopoDS_Shape & S); - /****************** HasAscendant ******************/ - /**** md5 signature: 0061ff91c4aff940f5e0352c160d969d ****/ + /****** BRepAlgo_AsDes::HasAscendant ******/ + /****** md5 signature: 0061ff91c4aff940f5e0352c160d969d ******/ %feature("compactdefaultargs") HasAscendant; %feature("autodoc", " Parameters @@ -395,8 +395,8 @@ No available documentation. ") HasAscendant; Standard_Boolean HasAscendant(const TopoDS_Shape & S); - /****************** HasCommonDescendant ******************/ - /**** md5 signature: 05dfab339e3899f1fa3e137bc970f96e ****/ + /****** BRepAlgo_AsDes::HasCommonDescendant ******/ + /****** md5 signature: 05dfab339e3899f1fa3e137bc970f96e ******/ %feature("compactdefaultargs") HasCommonDescendant; %feature("autodoc", " Parameters @@ -415,8 +415,8 @@ Returns true if (s1> and has common descendants. stores in the commons ") HasCommonDescendant; Standard_Boolean HasCommonDescendant(const TopoDS_Shape & S1, const TopoDS_Shape & S2, TopTools_ListOfShape & LC); - /****************** HasDescendant ******************/ - /**** md5 signature: 33b990046a91014730d870870286c8bc ****/ + /****** BRepAlgo_AsDes::HasDescendant ******/ + /****** md5 signature: 33b990046a91014730d870870286c8bc ******/ %feature("compactdefaultargs") HasDescendant; %feature("autodoc", " Parameters @@ -433,8 +433,8 @@ No available documentation. ") HasDescendant; Standard_Boolean HasDescendant(const TopoDS_Shape & S); - /****************** Remove ******************/ - /**** md5 signature: add61cba503919d35888054f3de3699f ****/ + /****** BRepAlgo_AsDes::Remove ******/ + /****** md5 signature: add61cba503919d35888054f3de3699f ******/ %feature("compactdefaultargs") Remove; %feature("autodoc", " Parameters @@ -451,8 +451,8 @@ Remove thes from me. ") Remove; void Remove(const TopoDS_Shape & theS); - /****************** Replace ******************/ - /**** md5 signature: 7efbf7d2833396fcda557293d6dcc3ee ****/ + /****** BRepAlgo_AsDes::Replace ******/ + /****** md5 signature: 7efbf7d2833396fcda557293d6dcc3ee ******/ %feature("compactdefaultargs") Replace; %feature("autodoc", " Parameters @@ -486,8 +486,8 @@ Replace theolds by thenews. theolds disappear from this. ********************************/ class BRepAlgo_FaceRestrictor { public: - /****************** BRepAlgo_FaceRestrictor ******************/ - /**** md5 signature: 82683998c51ff8824cac4f9f6d46eb4a ****/ + /****** BRepAlgo_FaceRestrictor::BRepAlgo_FaceRestrictor ******/ + /****** md5 signature: 82683998c51ff8824cac4f9f6d46eb4a ******/ %feature("compactdefaultargs") BRepAlgo_FaceRestrictor; %feature("autodoc", "Return ------- @@ -499,8 +499,8 @@ No available documentation. ") BRepAlgo_FaceRestrictor; BRepAlgo_FaceRestrictor(); - /****************** Add ******************/ - /**** md5 signature: a6ce79dcf272de14f2ac11be8579ec3c ****/ + /****** BRepAlgo_FaceRestrictor::Add ******/ + /****** md5 signature: a6ce79dcf272de14f2ac11be8579ec3c ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -517,8 +517,8 @@ Add the wire to the set of wires. //! warning: the wires must be closed. //! ") Add; void Add(TopoDS_Wire & W); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** BRepAlgo_FaceRestrictor::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -530,8 +530,8 @@ Removes all the wires. ") Clear; void Clear(); - /****************** Current ******************/ - /**** md5 signature: 9fb8c8be97ea707acffa5681bd8041e7 ****/ + /****** BRepAlgo_FaceRestrictor::Current ******/ + /****** md5 signature: 9fb8c8be97ea707acffa5681bd8041e7 ******/ %feature("compactdefaultargs") Current; %feature("autodoc", "Return ------- @@ -543,8 +543,8 @@ No available documentation. ") Current; TopoDS_Face Current(); - /****************** Init ******************/ - /**** md5 signature: 8a340284dcc52534c4ed6303f8706321 ****/ + /****** BRepAlgo_FaceRestrictor::Init ******/ + /****** md5 signature: 8a340284dcc52534c4ed6303f8706321 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -563,8 +563,8 @@ The surface of will be the surface of each new faces built. is used t ") Init; void Init(const TopoDS_Face & F, const Standard_Boolean Proj = Standard_False, const Standard_Boolean ControlOrientation = Standard_False); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepAlgo_FaceRestrictor::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -576,8 +576,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** More ******************/ - /**** md5 signature: 6f6e915c9a3dca758c059d9e8af02dff ****/ + /****** BRepAlgo_FaceRestrictor::More ******/ + /****** md5 signature: 6f6e915c9a3dca758c059d9e8af02dff ******/ %feature("compactdefaultargs") More; %feature("autodoc", "Return ------- @@ -589,8 +589,8 @@ No available documentation. ") More; Standard_Boolean More(); - /****************** Next ******************/ - /**** md5 signature: f35c0df5f1d7c877986db18081404532 ****/ + /****** BRepAlgo_FaceRestrictor::Next ******/ + /****** md5 signature: f35c0df5f1d7c877986db18081404532 ******/ %feature("compactdefaultargs") Next; %feature("autodoc", "Return ------- @@ -602,8 +602,8 @@ No available documentation. ") Next; void Next(); - /****************** Perform ******************/ - /**** md5 signature: c04b01412cba7220c024b5eb4532697f ****/ + /****** BRepAlgo_FaceRestrictor::Perform ******/ + /****** md5 signature: c04b01412cba7220c024b5eb4532697f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", "Return ------- @@ -629,8 +629,8 @@ Evaluate all the faces limited by the set of wires. ***********************/ class BRepAlgo_Image { public: - /****************** BRepAlgo_Image ******************/ - /**** md5 signature: 565a5b0a190c69489d75a611c64badca ****/ + /****** BRepAlgo_Image::BRepAlgo_Image ******/ + /****** md5 signature: 565a5b0a190c69489d75a611c64badca ******/ %feature("compactdefaultargs") BRepAlgo_Image; %feature("autodoc", "Return ------- @@ -642,8 +642,8 @@ No available documentation. ") BRepAlgo_Image; BRepAlgo_Image(); - /****************** Add ******************/ - /**** md5 signature: b8225f975bf15fd818dbd9e49f0d729d ****/ + /****** BRepAlgo_Image::Add ******/ + /****** md5 signature: b8225f975bf15fd818dbd9e49f0d729d ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -661,8 +661,8 @@ Add to the image of . ") Add; void Add(const TopoDS_Shape & OldS, const TopoDS_Shape & NewS); - /****************** Add ******************/ - /**** md5 signature: 1f4f782b77630d9c71cd4cdce8e3437f ****/ + /****** BRepAlgo_Image::Add ******/ + /****** md5 signature: 1f4f782b77630d9c71cd4cdce8e3437f ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -680,8 +680,8 @@ Add to the image of . ") Add; void Add(const TopoDS_Shape & OldS, const TopTools_ListOfShape & NewS); - /****************** Bind ******************/ - /**** md5 signature: 94395a7acc1c19970a6c18429f703cbd ****/ + /****** BRepAlgo_Image::Bind ******/ + /****** md5 signature: 94395a7acc1c19970a6c18429f703cbd ******/ %feature("compactdefaultargs") Bind; %feature("autodoc", " Parameters @@ -699,8 +699,8 @@ Links as image of . ") Bind; void Bind(const TopoDS_Shape & OldS, const TopoDS_Shape & NewS); - /****************** Bind ******************/ - /**** md5 signature: e46b9362344bef9a466680c15824c045 ****/ + /****** BRepAlgo_Image::Bind ******/ + /****** md5 signature: e46b9362344bef9a466680c15824c045 ******/ %feature("compactdefaultargs") Bind; %feature("autodoc", " Parameters @@ -718,8 +718,8 @@ Links as image of . ") Bind; void Bind(const TopoDS_Shape & OldS, const TopTools_ListOfShape & NewS); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** BRepAlgo_Image::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -731,8 +731,8 @@ No available documentation. ") Clear; void Clear(); - /****************** Compact ******************/ - /**** md5 signature: 9a98bd4200c1c286e12857cb2eb1f23a ****/ + /****** BRepAlgo_Image::Compact ******/ + /****** md5 signature: 9a98bd4200c1c286e12857cb2eb1f23a ******/ %feature("compactdefaultargs") Compact; %feature("autodoc", "Return ------- @@ -744,8 +744,8 @@ Keeps only the link between roots and lastimage. ") Compact; void Compact(); - /****************** Filter ******************/ - /**** md5 signature: e4937792550998c8721aa07df5c84e90 ****/ + /****** BRepAlgo_Image::Filter ******/ + /****** md5 signature: e4937792550998c8721aa07df5c84e90 ******/ %feature("compactdefaultargs") Filter; %feature("autodoc", " Parameters @@ -763,8 +763,8 @@ Deletes in the images the shape of type which are not in . warnin ") Filter; void Filter(const TopoDS_Shape & S, const TopAbs_ShapeEnum ShapeType); - /****************** HasImage ******************/ - /**** md5 signature: b3bc7608851b977522a41dfadb246e5f ****/ + /****** BRepAlgo_Image::HasImage ******/ + /****** md5 signature: b3bc7608851b977522a41dfadb246e5f ******/ %feature("compactdefaultargs") HasImage; %feature("autodoc", " Parameters @@ -781,8 +781,8 @@ No available documentation. ") HasImage; Standard_Boolean HasImage(const TopoDS_Shape & S); - /****************** Image ******************/ - /**** md5 signature: a0b14766d744925d80794ae4914acb1c ****/ + /****** BRepAlgo_Image::Image ******/ + /****** md5 signature: a0b14766d744925d80794ae4914acb1c ******/ %feature("compactdefaultargs") Image; %feature("autodoc", " Parameters @@ -799,8 +799,8 @@ Returns the image of . returns in the list if hasimage(s) is false. ") Image; const TopTools_ListOfShape & Image(const TopoDS_Shape & S); - /****************** ImageFrom ******************/ - /**** md5 signature: 2290fb99e58edb77e8d51c7bee3ddaa5 ****/ + /****** BRepAlgo_Image::ImageFrom ******/ + /****** md5 signature: 2290fb99e58edb77e8d51c7bee3ddaa5 ******/ %feature("compactdefaultargs") ImageFrom; %feature("autodoc", " Parameters @@ -817,8 +817,8 @@ Returns the generator of . ") ImageFrom; const TopoDS_Shape ImageFrom(const TopoDS_Shape & S); - /****************** IsImage ******************/ - /**** md5 signature: 5d4abe9bfc888b8046977ea97f0d29c3 ****/ + /****** BRepAlgo_Image::IsImage ******/ + /****** md5 signature: 5d4abe9bfc888b8046977ea97f0d29c3 ******/ %feature("compactdefaultargs") IsImage; %feature("autodoc", " Parameters @@ -835,8 +835,8 @@ No available documentation. ") IsImage; Standard_Boolean IsImage(const TopoDS_Shape & S); - /****************** LastImage ******************/ - /**** md5 signature: f49808c3101a3f0962d4a981cc2e0fa3 ****/ + /****** BRepAlgo_Image::LastImage ******/ + /****** md5 signature: f49808c3101a3f0962d4a981cc2e0fa3 ******/ %feature("compactdefaultargs") LastImage; %feature("autodoc", " Parameters @@ -854,8 +854,8 @@ Stores in the images of images of...images of . contains only if ") LastImage; void LastImage(const TopoDS_Shape & S, TopTools_ListOfShape & L); - /****************** Remove ******************/ - /**** md5 signature: 05a88c75d9ea5ff51b2f8c0a39e09679 ****/ + /****** BRepAlgo_Image::Remove ******/ + /****** md5 signature: 05a88c75d9ea5ff51b2f8c0a39e09679 ******/ %feature("compactdefaultargs") Remove; %feature("autodoc", " Parameters @@ -872,8 +872,8 @@ Remove to set of images. ") Remove; void Remove(const TopoDS_Shape & S); - /****************** RemoveRoot ******************/ - /**** md5 signature: 690c4fd21a18576f149a066c30568867 ****/ + /****** BRepAlgo_Image::RemoveRoot ******/ + /****** md5 signature: 690c4fd21a18576f149a066c30568867 ******/ %feature("compactdefaultargs") RemoveRoot; %feature("autodoc", " Parameters @@ -890,8 +890,8 @@ Removes the root from the list of roots and up and down maps. ") RemoveRoot; void RemoveRoot(const TopoDS_Shape & Root); - /****************** ReplaceRoot ******************/ - /**** md5 signature: 285b3a580e43af49c3fb24e085a66aef ****/ + /****** BRepAlgo_Image::ReplaceRoot ******/ + /****** md5 signature: 285b3a580e43af49c3fb24e085a66aef ******/ %feature("compactdefaultargs") ReplaceRoot; %feature("autodoc", " Parameters @@ -909,8 +909,8 @@ Replaces the with the , so all images of the become ") ReplaceRoot; void ReplaceRoot(const TopoDS_Shape & OldRoot, const TopoDS_Shape & NewRoot); - /****************** Root ******************/ - /**** md5 signature: b928b7ce7a4d68875a739516be55eb7c ****/ + /****** BRepAlgo_Image::Root ******/ + /****** md5 signature: b928b7ce7a4d68875a739516be55eb7c ******/ %feature("compactdefaultargs") Root; %feature("autodoc", " Parameters @@ -927,8 +927,8 @@ Returns the upper generator of . ") Root; const TopoDS_Shape Root(const TopoDS_Shape & S); - /****************** Roots ******************/ - /**** md5 signature: 82f242faa3e008b8cefc3123c93c72c8 ****/ + /****** BRepAlgo_Image::Roots ******/ + /****** md5 signature: 82f242faa3e008b8cefc3123c93c72c8 ******/ %feature("compactdefaultargs") Roots; %feature("autodoc", "Return ------- @@ -940,8 +940,8 @@ No available documentation. ") Roots; const TopTools_ListOfShape & Roots(); - /****************** SetRoot ******************/ - /**** md5 signature: 81eb99d7d9d22432167b234cf063481a ****/ + /****** BRepAlgo_Image::SetRoot ******/ + /****** md5 signature: 81eb99d7d9d22432167b234cf063481a ******/ %feature("compactdefaultargs") SetRoot; %feature("autodoc", " Parameters @@ -972,8 +972,8 @@ No available documentation. **********************/ class BRepAlgo_Loop { public: - /****************** BRepAlgo_Loop ******************/ - /**** md5 signature: 25f06f5c44068f0a3075667be6a6a58b ****/ + /****** BRepAlgo_Loop::BRepAlgo_Loop ******/ + /****** md5 signature: 25f06f5c44068f0a3075667be6a6a58b ******/ %feature("compactdefaultargs") BRepAlgo_Loop; %feature("autodoc", "Return ------- @@ -985,8 +985,8 @@ No available documentation. ") BRepAlgo_Loop; BRepAlgo_Loop(); - /****************** AddConstEdge ******************/ - /**** md5 signature: c7f7273f1289f10b479203d0e90b817d ****/ + /****** BRepAlgo_Loop::AddConstEdge ******/ + /****** md5 signature: c7f7273f1289f10b479203d0e90b817d ******/ %feature("compactdefaultargs") AddConstEdge; %feature("autodoc", " Parameters @@ -1003,8 +1003,8 @@ Add as const edge, e can be in the result. ") AddConstEdge; void AddConstEdge(const TopoDS_Edge & E); - /****************** AddConstEdges ******************/ - /**** md5 signature: bb5e3e5bda091bc51538ebc7c94a845d ****/ + /****** BRepAlgo_Loop::AddConstEdges ******/ + /****** md5 signature: bb5e3e5bda091bc51538ebc7c94a845d ******/ %feature("compactdefaultargs") AddConstEdges; %feature("autodoc", " Parameters @@ -1021,8 +1021,8 @@ Add as a set of const edges. ") AddConstEdges; void AddConstEdges(const TopTools_ListOfShape & LE); - /****************** AddEdge ******************/ - /**** md5 signature: 1d4fc83e654194c8544ee17710aa8d90 ****/ + /****** BRepAlgo_Loop::AddEdge ******/ + /****** md5 signature: 1d4fc83e654194c8544ee17710aa8d90 ******/ %feature("compactdefaultargs") AddEdge; %feature("autodoc", " Parameters @@ -1040,8 +1040,8 @@ Add e with . will be copied and trim by vertices in . ") AddEdge; void AddEdge(TopoDS_Edge & E, const TopTools_ListOfShape & LV); - /****************** CutEdge ******************/ - /**** md5 signature: c3ea87f98f6a4b2923c6235d7b903c58 ****/ + /****** BRepAlgo_Loop::CutEdge ******/ + /****** md5 signature: c3ea87f98f6a4b2923c6235d7b903c58 ******/ %feature("compactdefaultargs") CutEdge; %feature("autodoc", " Parameters @@ -1060,8 +1060,8 @@ Cut the edge in several edges on the vertices. ") CutEdge; void CutEdge(const TopoDS_Edge & E, const TopTools_ListOfShape & VonE, TopTools_ListOfShape & NE); - /****************** GetTolConf ******************/ - /**** md5 signature: 7e9f7b87eb3b20edee9e3a86157928cd ****/ + /****** BRepAlgo_Loop::GetTolConf ******/ + /****** md5 signature: 7e9f7b87eb3b20edee9e3a86157928cd ******/ %feature("compactdefaultargs") GetTolConf; %feature("autodoc", "Return ------- @@ -1073,8 +1073,8 @@ Get maximal tolerance used for comparing distaces between vertices. . ") GetTolConf; Standard_Real GetTolConf(); - /****************** GetVerticesForSubstitute ******************/ - /**** md5 signature: 3b0ea732ecf076dde3f931f0997c07aa ****/ + /****** BRepAlgo_Loop::GetVerticesForSubstitute ******/ + /****** md5 signature: 3b0ea732ecf076dde3f931f0997c07aa ******/ %feature("compactdefaultargs") GetVerticesForSubstitute; %feature("autodoc", " Parameters @@ -1091,8 +1091,8 @@ Returns the datamap of vertices with their substitutes. ") GetVerticesForSubstitute; void GetVerticesForSubstitute(TopTools_DataMapOfShapeShape & VerVerMap); - /****************** Init ******************/ - /**** md5 signature: a8dfaa68079e743e08190fe58d950a9a ****/ + /****** BRepAlgo_Loop::Init ******/ + /****** md5 signature: a8dfaa68079e743e08190fe58d950a9a ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -1109,8 +1109,8 @@ Init with the set of edges must have pcurves on . ") Init; void Init(const TopoDS_Face & F); - /****************** NewEdges ******************/ - /**** md5 signature: ca2bf0bfae43c579574670d69e837949 ****/ + /****** BRepAlgo_Loop::NewEdges ******/ + /****** md5 signature: ca2bf0bfae43c579574670d69e837949 ******/ %feature("compactdefaultargs") NewEdges; %feature("autodoc", " Parameters @@ -1127,8 +1127,8 @@ Returns the list of new edges built from an edge it can be an empty list. ") NewEdges; const TopTools_ListOfShape & NewEdges(const TopoDS_Edge & E); - /****************** NewFaces ******************/ - /**** md5 signature: 1760fdb1c9e5525f7aa9e149d10051e7 ****/ + /****** BRepAlgo_Loop::NewFaces ******/ + /****** md5 signature: 1760fdb1c9e5525f7aa9e149d10051e7 ******/ %feature("compactdefaultargs") NewFaces; %feature("autodoc", "Return ------- @@ -1140,8 +1140,8 @@ Returns the list of faces. warning: the method as to be called be ") NewFaces; const TopTools_ListOfShape & NewFaces(); - /****************** NewWires ******************/ - /**** md5 signature: e3fe3b335b8953ae48d1acc70c50f835 ****/ + /****** BRepAlgo_Loop::NewWires ******/ + /****** md5 signature: e3fe3b335b8953ae48d1acc70c50f835 ******/ %feature("compactdefaultargs") NewWires; %feature("autodoc", "Return ------- @@ -1153,8 +1153,8 @@ Returns the list of wires performed. can be an empty list. ") NewWires; const TopTools_ListOfShape & NewWires(); - /****************** Perform ******************/ - /**** md5 signature: c04b01412cba7220c024b5eb4532697f ****/ + /****** BRepAlgo_Loop::Perform ******/ + /****** md5 signature: c04b01412cba7220c024b5eb4532697f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", "Return ------- @@ -1166,8 +1166,8 @@ Make loops. ") Perform; void Perform(); - /****************** SetImageVV ******************/ - /**** md5 signature: e4e1ed7e9cd079a003f1ab409e87973e ****/ + /****** BRepAlgo_Loop::SetImageVV ******/ + /****** md5 signature: e4e1ed7e9cd079a003f1ab409e87973e ******/ %feature("compactdefaultargs") SetImageVV; %feature("autodoc", " Parameters @@ -1184,8 +1184,8 @@ Sets the image vertex - vertex. ") SetImageVV; void SetImageVV(const BRepAlgo_Image & theImageVV); - /****************** SetTolConf ******************/ - /**** md5 signature: 1c312d5c00a3d856c91eb31857ae32c6 ****/ + /****** BRepAlgo_Loop::SetTolConf ******/ + /****** md5 signature: 1c312d5c00a3d856c91eb31857ae32c6 ******/ %feature("compactdefaultargs") SetTolConf; %feature("autodoc", " Parameters @@ -1202,8 +1202,8 @@ Set maximal tolerance used for comparing distaces between vertices. . ") SetTolConf; void SetTolConf(const Standard_Real theTolConf); - /****************** UpdateVEmap ******************/ - /**** md5 signature: 491681c63af221fbd7247e01d389bbc0 ****/ + /****** BRepAlgo_Loop::UpdateVEmap ******/ + /****** md5 signature: 491681c63af221fbd7247e01d389bbc0 ******/ %feature("compactdefaultargs") UpdateVEmap; %feature("autodoc", " Parameters @@ -1220,8 +1220,8 @@ Update ve map according to image vertex - vertex. ") UpdateVEmap; void UpdateVEmap(TopTools_IndexedDataMapOfShapeListOfShape & theVEmap); - /****************** VerticesForSubstitute ******************/ - /**** md5 signature: b26ff2366762048c84c096651ba2d80c ****/ + /****** BRepAlgo_Loop::VerticesForSubstitute ******/ + /****** md5 signature: b26ff2366762048c84c096651ba2d80c ******/ %feature("compactdefaultargs") VerticesForSubstitute; %feature("autodoc", " Parameters @@ -1238,8 +1238,8 @@ No available documentation. ") VerticesForSubstitute; void VerticesForSubstitute(TopTools_DataMapOfShapeShape & VerVerMap); - /****************** WiresToFaces ******************/ - /**** md5 signature: ba4d21c35d79af050089e2828b0fc192 ****/ + /****** BRepAlgo_Loop::WiresToFaces ******/ + /****** md5 signature: ba4d21c35d79af050089e2828b0fc192 ******/ %feature("compactdefaultargs") WiresToFaces; %feature("autodoc", "Return ------- @@ -1265,8 +1265,8 @@ Build faces from the wires result. **********************************/ class BRepAlgo_NormalProjection { public: - /****************** BRepAlgo_NormalProjection ******************/ - /**** md5 signature: 9701a9046a8430d62899e04270a74739 ****/ + /****** BRepAlgo_NormalProjection::BRepAlgo_NormalProjection ******/ + /****** md5 signature: 9701a9046a8430d62899e04270a74739 ******/ %feature("compactdefaultargs") BRepAlgo_NormalProjection; %feature("autodoc", "Return ------- @@ -1278,8 +1278,8 @@ No available documentation. ") BRepAlgo_NormalProjection; BRepAlgo_NormalProjection(); - /****************** BRepAlgo_NormalProjection ******************/ - /**** md5 signature: 420e8a2be230db44d7bc7c2631e1f8fe ****/ + /****** BRepAlgo_NormalProjection::BRepAlgo_NormalProjection ******/ + /****** md5 signature: 420e8a2be230db44d7bc7c2631e1f8fe ******/ %feature("compactdefaultargs") BRepAlgo_NormalProjection; %feature("autodoc", " Parameters @@ -1296,8 +1296,8 @@ No available documentation. ") BRepAlgo_NormalProjection; BRepAlgo_NormalProjection(const TopoDS_Shape & S); - /****************** Add ******************/ - /**** md5 signature: 819f71062dd96e4b529bccdf1bb50cf1 ****/ + /****** BRepAlgo_NormalProjection::Add ******/ + /****** md5 signature: 819f71062dd96e4b529bccdf1bb50cf1 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1314,8 +1314,8 @@ Add an edge or a wire to the list of shape to project. ") Add; void Add(const TopoDS_Shape & ToProj); - /****************** Ancestor ******************/ - /**** md5 signature: 551c6ce85c529cb60615765a58d47215 ****/ + /****** BRepAlgo_NormalProjection::Ancestor ******/ + /****** md5 signature: 551c6ce85c529cb60615765a58d47215 ******/ %feature("compactdefaultargs") Ancestor; %feature("autodoc", " Parameters @@ -1332,8 +1332,8 @@ For a resulting edge, returns the corresponding initial edge. ") Ancestor; const TopoDS_Shape Ancestor(const TopoDS_Edge & E); - /****************** Build ******************/ - /**** md5 signature: 634d88e5c99c5ce236c07b337243d591 ****/ + /****** BRepAlgo_NormalProjection::Build ******/ + /****** md5 signature: 634d88e5c99c5ce236c07b337243d591 ******/ %feature("compactdefaultargs") Build; %feature("autodoc", "Return ------- @@ -1345,8 +1345,8 @@ Builds the result as a compound. ") Build; void Build(); - /****************** BuildWire ******************/ - /**** md5 signature: e5fb4f3952649b872b4fb3c469f5b161 ****/ + /****** BRepAlgo_NormalProjection::BuildWire ******/ + /****** md5 signature: e5fb4f3952649b872b4fb3c469f5b161 ******/ %feature("compactdefaultargs") BuildWire; %feature("autodoc", " Parameters @@ -1363,8 +1363,8 @@ Build the result as a list of wire if possible in -- a first returns a wire only ") BuildWire; Standard_Boolean BuildWire(TopTools_ListOfShape & Liste); - /****************** Compute3d ******************/ - /**** md5 signature: a18b9a3fc4a7d346645e19e03d893102 ****/ + /****** BRepAlgo_NormalProjection::Compute3d ******/ + /****** md5 signature: a18b9a3fc4a7d346645e19e03d893102 ******/ %feature("compactdefaultargs") Compute3d; %feature("autodoc", " Parameters @@ -1381,8 +1381,8 @@ If with3d = standard_false the 3dcurve is not computed the initial 3dcurve is ke ") Compute3d; void Compute3d(const Standard_Boolean With3d = Standard_True); - /****************** Couple ******************/ - /**** md5 signature: cbe6db4e25bf42b45544f6235fc33773 ****/ + /****** BRepAlgo_NormalProjection::Couple ******/ + /****** md5 signature: cbe6db4e25bf42b45544f6235fc33773 ******/ %feature("compactdefaultargs") Couple; %feature("autodoc", " Parameters @@ -1399,8 +1399,8 @@ For a projected edge, returns the corresponding initial face. ") Couple; const TopoDS_Shape Couple(const TopoDS_Edge & E); - /****************** Generated ******************/ - /**** md5 signature: 20432e4d7ffc2a154be36ff0a467a19b ****/ + /****** BRepAlgo_NormalProjection::Generated ******/ + /****** md5 signature: 20432e4d7ffc2a154be36ff0a467a19b ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -1417,8 +1417,8 @@ Returns the list of shapes generated from the shape . ") Generated; const TopTools_ListOfShape & Generated(const TopoDS_Shape & S); - /****************** Init ******************/ - /**** md5 signature: 5b69b32485b3d9f82ae4abb9c853c3c7 ****/ + /****** BRepAlgo_NormalProjection::Init ******/ + /****** md5 signature: 5b69b32485b3d9f82ae4abb9c853c3c7 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -1435,8 +1435,8 @@ No available documentation. ") Init; void Init(const TopoDS_Shape & S); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepAlgo_NormalProjection::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -1448,8 +1448,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** IsElementary ******************/ - /**** md5 signature: 946351933089b0d0f29c01807aef61fe ****/ + /****** BRepAlgo_NormalProjection::IsElementary ******/ + /****** md5 signature: 946351933089b0d0f29c01807aef61fe ******/ %feature("compactdefaultargs") IsElementary; %feature("autodoc", " Parameters @@ -1466,8 +1466,8 @@ No available documentation. ") IsElementary; Standard_Boolean IsElementary(const Adaptor3d_Curve & C); - /****************** Projection ******************/ - /**** md5 signature: d96e6638e8d3c59fa6809c83eda77a82 ****/ + /****** BRepAlgo_NormalProjection::Projection ******/ + /****** md5 signature: d96e6638e8d3c59fa6809c83eda77a82 ******/ %feature("compactdefaultargs") Projection; %feature("autodoc", "Return ------- @@ -1479,8 +1479,8 @@ Returns the result. ") Projection; const TopoDS_Shape Projection(); - /****************** SetDefaultParams ******************/ - /**** md5 signature: 41db5be74abe064c4ef67334ff98774d ****/ + /****** BRepAlgo_NormalProjection::SetDefaultParams ******/ + /****** md5 signature: 41db5be74abe064c4ef67334ff98774d ******/ %feature("compactdefaultargs") SetDefaultParams; %feature("autodoc", "Return ------- @@ -1492,8 +1492,8 @@ Set the parameters used for computation in their default values. ") SetDefaultParams; void SetDefaultParams(); - /****************** SetLimit ******************/ - /**** md5 signature: 2affba7d2b02ca0d9a96522f0a57d409 ****/ + /****** BRepAlgo_NormalProjection::SetLimit ******/ + /****** md5 signature: 2affba7d2b02ca0d9a96522f0a57d409 ******/ %feature("compactdefaultargs") SetLimit; %feature("autodoc", " Parameters @@ -1510,8 +1510,8 @@ Manage limitation of projected edges. ") SetLimit; void SetLimit(const Standard_Boolean FaceBoundaries = Standard_True); - /****************** SetMaxDistance ******************/ - /**** md5 signature: 7c596903416448c58cc2576fe5ca8153 ****/ + /****** BRepAlgo_NormalProjection::SetMaxDistance ******/ + /****** md5 signature: 7c596903416448c58cc2576fe5ca8153 ******/ %feature("compactdefaultargs") SetMaxDistance; %feature("autodoc", " Parameters @@ -1528,8 +1528,8 @@ Sets the maximum distance between target shape and shape to project. if this con ") SetMaxDistance; void SetMaxDistance(const Standard_Real MaxDist); - /****************** SetParams ******************/ - /**** md5 signature: 145439fe62b19bd0fd3e24e9c7dd4c4d ****/ + /****** BRepAlgo_NormalProjection::SetParams ******/ + /****** md5 signature: 145439fe62b19bd0fd3e24e9c7dd4c4d ******/ %feature("compactdefaultargs") SetParams; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BRepAlgoAPI.i b/src/SWIG_files/wrapper/BRepAlgoAPI.i index eda58d076..22a8b0907 100644 --- a/src/SWIG_files/wrapper/BRepAlgoAPI.i +++ b/src/SWIG_files/wrapper/BRepAlgoAPI.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPALGOAPIDOCSTRING "BRepAlgoAPI module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepalgoapi.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepalgoapi.html" %enddef %module (package="OCC.Core", docstring=BREPALGOAPIDOCSTRING) BRepAlgoAPI @@ -117,8 +117,8 @@ from OCC.Core.Exception import * **************************/ class BRepAlgoAPI_Check : public BOPAlgo_Options { public: - /****************** BRepAlgoAPI_Check ******************/ - /**** md5 signature: 411402657614d45c8444ed8f583c4d89 ****/ + /****** BRepAlgoAPI_Check::BRepAlgoAPI_Check ******/ + /****** md5 signature: 411402657614d45c8444ed8f583c4d89 ******/ %feature("compactdefaultargs") BRepAlgoAPI_Check; %feature("autodoc", "Return ------- @@ -130,8 +130,8 @@ Empty constructor. ") BRepAlgoAPI_Check; BRepAlgoAPI_Check(); - /****************** BRepAlgoAPI_Check ******************/ - /**** md5 signature: 4c7f74c0b1475c6354942a65d5c7e394 ****/ + /****** BRepAlgoAPI_Check::BRepAlgoAPI_Check ******/ + /****** md5 signature: 4c7f74c0b1475c6354942a65d5c7e394 ******/ %feature("compactdefaultargs") BRepAlgoAPI_Check; %feature("autodoc", " Parameters @@ -151,8 +151,8 @@ Constructor for checking single shape. //! @param thes [in] - the shape to check ") BRepAlgoAPI_Check; BRepAlgoAPI_Check(const TopoDS_Shape & theS, const Standard_Boolean bTestSE = Standard_True, const Standard_Boolean bTestSI = Standard_True, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** BRepAlgoAPI_Check ******************/ - /**** md5 signature: 6d8665f00fc74c35f58fdcae0bcdc4ea ****/ + /****** BRepAlgoAPI_Check::BRepAlgoAPI_Check ******/ + /****** md5 signature: 6d8665f00fc74c35f58fdcae0bcdc4ea ******/ %feature("compactdefaultargs") BRepAlgoAPI_Check; %feature("autodoc", " Parameters @@ -174,8 +174,8 @@ Constructor for checking the couple of shapes. additionally to the validity chec ") BRepAlgoAPI_Check; BRepAlgoAPI_Check(const TopoDS_Shape & theS1, const TopoDS_Shape & theS2, const BOPAlgo_Operation theOp = BOPAlgo_UNKNOWN, const Standard_Boolean bTestSE = Standard_True, const Standard_Boolean bTestSI = Standard_True, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** IsValid ******************/ - /**** md5 signature: c1993b3b31d320b598a9a9b27c56914e ****/ + /****** BRepAlgoAPI_Check::IsValid ******/ + /****** md5 signature: c1993b3b31d320b598a9a9b27c56914e ******/ %feature("compactdefaultargs") IsValid; %feature("autodoc", "Return ------- @@ -187,8 +187,8 @@ Shows whether shape(s) valid or not. ") IsValid; Standard_Boolean IsValid(); - /****************** Perform ******************/ - /**** md5 signature: 237808a6b51056c9f8e292d343f26d7d ****/ + /****** BRepAlgoAPI_Check::Perform ******/ + /****** md5 signature: 237808a6b51056c9f8e292d343f26d7d ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -205,8 +205,8 @@ Performs the check. ") Perform; void Perform(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Result ******************/ - /**** md5 signature: 7cf3309b46dab6da497e78cfc1a9af75 ****/ + /****** BRepAlgoAPI_Check::Result ******/ + /****** md5 signature: 7cf3309b46dab6da497e78cfc1a9af75 ******/ %feature("compactdefaultargs") Result; %feature("autodoc", "Return ------- @@ -218,8 +218,8 @@ Returns faulty shapes. ") Result; const BOPAlgo_ListOfCheckResult & Result(); - /****************** SetData ******************/ - /**** md5 signature: c1fd665a073df98354476ae857f43c48 ****/ + /****** BRepAlgoAPI_Check::SetData ******/ + /****** md5 signature: c1fd665a073df98354476ae857f43c48 ******/ %feature("compactdefaultargs") SetData; %feature("autodoc", " Parameters @@ -238,8 +238,8 @@ Initializes the algorithm with single shape. //! @param thes [in] - the shape to ") SetData; void SetData(const TopoDS_Shape & theS, const Standard_Boolean bTestSE = Standard_True, const Standard_Boolean bTestSI = Standard_True); - /****************** SetData ******************/ - /**** md5 signature: 80850e26186481dcc7772de06de5db11 ****/ + /****** BRepAlgoAPI_Check::SetData ******/ + /****** md5 signature: 80850e26186481dcc7772de06de5db11 ******/ %feature("compactdefaultargs") SetData; %feature("autodoc", " Parameters @@ -276,8 +276,8 @@ Initializes the algorithm with couple of shapes. additionally to the validity ch %ignore BRepAlgoAPI_Algo::~BRepAlgoAPI_Algo(); class BRepAlgoAPI_Algo : public BRepBuilderAPI_MakeShape, protected BOPAlgo_Options { public: - /****************** Shape ******************/ - /**** md5 signature: b8642bc5a50083ee24c608b46f5bf1c8 ****/ + /****** BRepAlgoAPI_Algo::Shape ******/ + /****** md5 signature: b8642bc5a50083ee24c608b46f5bf1c8 ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -303,8 +303,8 @@ Returns a shape built by the shape construction algorithm. does not check if the ********************************/ class BRepAlgoAPI_BuilderAlgo : public BRepAlgoAPI_Algo { public: - /****************** BRepAlgoAPI_BuilderAlgo ******************/ - /**** md5 signature: f034b0ea83263b0b12a5034e2ab03c28 ****/ + /****** BRepAlgoAPI_BuilderAlgo::BRepAlgoAPI_BuilderAlgo ******/ + /****** md5 signature: f034b0ea83263b0b12a5034e2ab03c28 ******/ %feature("compactdefaultargs") BRepAlgoAPI_BuilderAlgo; %feature("autodoc", "Return ------- @@ -316,8 +316,8 @@ Empty constructor. ") BRepAlgoAPI_BuilderAlgo; BRepAlgoAPI_BuilderAlgo(); - /****************** BRepAlgoAPI_BuilderAlgo ******************/ - /**** md5 signature: 87f0646930c224a38e316c8395128e53 ****/ + /****** BRepAlgoAPI_BuilderAlgo::BRepAlgoAPI_BuilderAlgo ******/ + /****** md5 signature: 87f0646930c224a38e316c8395128e53 ******/ %feature("compactdefaultargs") BRepAlgoAPI_BuilderAlgo; %feature("autodoc", " Parameters @@ -334,8 +334,8 @@ Constructor with prepared filler object. ") BRepAlgoAPI_BuilderAlgo; BRepAlgoAPI_BuilderAlgo(const BOPAlgo_PaveFiller & thePF); - /****************** Arguments ******************/ - /**** md5 signature: 5c44416d889811943ccde89673d3c270 ****/ + /****** BRepAlgoAPI_BuilderAlgo::Arguments ******/ + /****** md5 signature: 5c44416d889811943ccde89673d3c270 ******/ %feature("compactdefaultargs") Arguments; %feature("autodoc", "Return ------- @@ -347,8 +347,8 @@ Gets the arguments. ") Arguments; const TopTools_ListOfShape & Arguments(); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepAlgoAPI_BuilderAlgo::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -365,8 +365,8 @@ Performs the algorithm. ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Builder ******************/ - /**** md5 signature: 8b185d6cf1a66c51174428861a33b6c7 ****/ + /****** BRepAlgoAPI_BuilderAlgo::Builder ******/ + /****** md5 signature: 8b185d6cf1a66c51174428861a33b6c7 ******/ %feature("compactdefaultargs") Builder; %feature("autodoc", "Return ------- @@ -378,8 +378,8 @@ Returns the building tool. ") Builder; const BOPAlgo_PBuilder & Builder(); - /****************** CheckInverted ******************/ - /**** md5 signature: ce3c18df15bc3282101b99ee82f78b47 ****/ + /****** BRepAlgoAPI_BuilderAlgo::CheckInverted ******/ + /****** md5 signature: ce3c18df15bc3282101b99ee82f78b47 ******/ %feature("compactdefaultargs") CheckInverted; %feature("autodoc", "Return ------- @@ -391,8 +391,8 @@ Returns the flag defining whether the check for input solids on inverted status ") CheckInverted; Standard_Boolean CheckInverted(); - /****************** DSFiller ******************/ - /**** md5 signature: eacda80fa3f8437b06bd46026236195a ****/ + /****** BRepAlgoAPI_BuilderAlgo::DSFiller ******/ + /****** md5 signature: eacda80fa3f8437b06bd46026236195a ******/ %feature("compactdefaultargs") DSFiller; %feature("autodoc", "Return ------- @@ -404,8 +404,8 @@ Returns the intersection tool. ") DSFiller; const BOPAlgo_PPaveFiller & DSFiller(); - /****************** Generated ******************/ - /**** md5 signature: 6765eaeea6b04c9e5e12d95bf0d36ae9 ****/ + /****** BRepAlgoAPI_BuilderAlgo::Generated ******/ + /****** md5 signature: 6765eaeea6b04c9e5e12d95bf0d36ae9 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -422,8 +422,8 @@ Returns the list of shapes generated from the shape . in frames of boolean ") Generated; virtual const TopTools_ListOfShape & Generated(const TopoDS_Shape & theS); - /****************** Glue ******************/ - /**** md5 signature: 2a0ac34b43f154dd0238ac1408d9079b ****/ + /****** BRepAlgoAPI_BuilderAlgo::Glue ******/ + /****** md5 signature: 2a0ac34b43f154dd0238ac1408d9079b ******/ %feature("compactdefaultargs") Glue; %feature("autodoc", "Return ------- @@ -435,8 +435,8 @@ Returns the glue option of the algorithm. ") Glue; BOPAlgo_GlueEnum Glue(); - /****************** HasDeleted ******************/ - /**** md5 signature: 62e1a47bba6730979f45045197c457ad ****/ + /****** BRepAlgoAPI_BuilderAlgo::HasDeleted ******/ + /****** md5 signature: 62e1a47bba6730979f45045197c457ad ******/ %feature("compactdefaultargs") HasDeleted; %feature("autodoc", "Return ------- @@ -448,8 +448,8 @@ Returns true if any of the input shapes has been deleted during operation. norma ") HasDeleted; virtual Standard_Boolean HasDeleted(); - /****************** HasGenerated ******************/ - /**** md5 signature: 41e62931be9792b7588a37969bdd21d8 ****/ + /****** BRepAlgoAPI_BuilderAlgo::HasGenerated ******/ + /****** md5 signature: 41e62931be9792b7588a37969bdd21d8 ******/ %feature("compactdefaultargs") HasGenerated; %feature("autodoc", "Return ------- @@ -461,8 +461,8 @@ Returns true if any of the input shapes has generated shapes during operation. ") HasGenerated; virtual Standard_Boolean HasGenerated(); - /****************** HasHistory ******************/ - /**** md5 signature: 707ba290c9cd0157e12b7038a0944657 ****/ + /****** BRepAlgoAPI_BuilderAlgo::HasHistory ******/ + /****** md5 signature: 707ba290c9cd0157e12b7038a0944657 ******/ %feature("compactdefaultargs") HasHistory; %feature("autodoc", "Return ------- @@ -474,8 +474,8 @@ Returns flag of history availability. ") HasHistory; Standard_Boolean HasHistory(); - /****************** HasModified ******************/ - /**** md5 signature: 33dead3a6879f4d3e05d3f85aabe6d13 ****/ + /****** BRepAlgoAPI_BuilderAlgo::HasModified ******/ + /****** md5 signature: 33dead3a6879f4d3e05d3f85aabe6d13 ******/ %feature("compactdefaultargs") HasModified; %feature("autodoc", "Return ------- @@ -487,8 +487,8 @@ Returns true if any of the input shapes has been modified during operation. ") HasModified; virtual Standard_Boolean HasModified(); - /****************** History ******************/ - /**** md5 signature: a47770f1ee9d6f229a149d416a698dc5 ****/ + /****** BRepAlgoAPI_BuilderAlgo::History ******/ + /****** md5 signature: a47770f1ee9d6f229a149d416a698dc5 ******/ %feature("compactdefaultargs") History; %feature("autodoc", "Return ------- @@ -500,8 +500,8 @@ History tool. ") History; opencascade::handle History(); - /****************** IsDeleted ******************/ - /**** md5 signature: 431a14f43afb5fe71090f69dcb3e4037 ****/ + /****** BRepAlgoAPI_BuilderAlgo::IsDeleted ******/ + /****** md5 signature: 431a14f43afb5fe71090f69dcb3e4037 ******/ %feature("compactdefaultargs") IsDeleted; %feature("autodoc", " Parameters @@ -518,8 +518,8 @@ Checks if the shape has been completely removed from the result, i.e. the ") IsDeleted; virtual Standard_Boolean IsDeleted(const TopoDS_Shape & aS); - /****************** Modified ******************/ - /**** md5 signature: 4e20601bbc1c3aead85ab39355caf9fd ****/ + /****** BRepAlgoAPI_BuilderAlgo::Modified ******/ + /****** md5 signature: 4e20601bbc1c3aead85ab39355caf9fd ******/ %feature("compactdefaultargs") Modified; %feature("autodoc", " Parameters @@ -536,8 +536,8 @@ Returns the shapes modified from the shape . if any, the list will contain ") Modified; virtual const TopTools_ListOfShape & Modified(const TopoDS_Shape & theS); - /****************** NonDestructive ******************/ - /**** md5 signature: debf4165891df54bd9a565d235f0d378 ****/ + /****** BRepAlgoAPI_BuilderAlgo::NonDestructive ******/ + /****** md5 signature: debf4165891df54bd9a565d235f0d378 ******/ %feature("compactdefaultargs") NonDestructive; %feature("autodoc", "Return ------- @@ -549,8 +549,8 @@ Returns the flag that defines the mode of treatment. in non-destructive mode the ") NonDestructive; Standard_Boolean NonDestructive(); - /****************** SectionEdges ******************/ - /**** md5 signature: 8d1d78adb60588ec6c6d9bac5ddb95cb ****/ + /****** BRepAlgoAPI_BuilderAlgo::SectionEdges ******/ + /****** md5 signature: 8d1d78adb60588ec6c6d9bac5ddb95cb ******/ %feature("compactdefaultargs") SectionEdges; %feature("autodoc", "Return ------- @@ -562,8 +562,8 @@ Returns a list of section edges. the edges represent the result of intersection ") SectionEdges; const TopTools_ListOfShape & SectionEdges(); - /****************** SetArguments ******************/ - /**** md5 signature: c8050caf960534f7d5c8a2cd210eb861 ****/ + /****** BRepAlgoAPI_BuilderAlgo::SetArguments ******/ + /****** md5 signature: c8050caf960534f7d5c8a2cd210eb861 ******/ %feature("compactdefaultargs") SetArguments; %feature("autodoc", " Parameters @@ -580,8 +580,8 @@ Sets the arguments. ") SetArguments; void SetArguments(const TopTools_ListOfShape & theLS); - /****************** SetCheckInverted ******************/ - /**** md5 signature: 9645001f4ab756df382f60cfc76654bc ****/ + /****** BRepAlgoAPI_BuilderAlgo::SetCheckInverted ******/ + /****** md5 signature: 9645001f4ab756df382f60cfc76654bc ******/ %feature("compactdefaultargs") SetCheckInverted; %feature("autodoc", " Parameters @@ -598,8 +598,8 @@ Enables/disables the check of the input solids for inverted status. ") SetCheckInverted; void SetCheckInverted(const Standard_Boolean theCheck); - /****************** SetGlue ******************/ - /**** md5 signature: bae09c43d6b988a5d7d19b6376a5aa05 ****/ + /****** BRepAlgoAPI_BuilderAlgo::SetGlue ******/ + /****** md5 signature: bae09c43d6b988a5d7d19b6376a5aa05 ******/ %feature("compactdefaultargs") SetGlue; %feature("autodoc", " Parameters @@ -616,8 +616,8 @@ Sets the glue option for the algorithm, which allows increasing performance of t ") SetGlue; void SetGlue(const BOPAlgo_GlueEnum theGlue); - /****************** SetNonDestructive ******************/ - /**** md5 signature: 0a29c6536a8337536ce71b892337fbbb ****/ + /****** BRepAlgoAPI_BuilderAlgo::SetNonDestructive ******/ + /****** md5 signature: 0a29c6536a8337536ce71b892337fbbb ******/ %feature("compactdefaultargs") SetNonDestructive; %feature("autodoc", " Parameters @@ -634,8 +634,8 @@ Sets the flag that defines the mode of treatment. in non-destructive mode the ar ") SetNonDestructive; void SetNonDestructive(const Standard_Boolean theFlag); - /****************** SetToFillHistory ******************/ - /**** md5 signature: 0645816549ab38af8118c8f63f46c0ea ****/ + /****** BRepAlgoAPI_BuilderAlgo::SetToFillHistory ******/ + /****** md5 signature: 0645816549ab38af8118c8f63f46c0ea ******/ %feature("compactdefaultargs") SetToFillHistory; %feature("autodoc", " Parameters @@ -652,8 +652,8 @@ Allows disabling the history collection. ") SetToFillHistory; void SetToFillHistory(const Standard_Boolean theHistFlag); - /****************** SimplifyResult ******************/ - /**** md5 signature: 88e0cdcd55300620756ca014f3c6371d ****/ + /****** BRepAlgoAPI_BuilderAlgo::SimplifyResult ******/ + /****** md5 signature: 88e0cdcd55300620756ca014f3c6371d ******/ %feature("compactdefaultargs") SimplifyResult; %feature("autodoc", " Parameters @@ -686,8 +686,8 @@ Simplification of the result shape is performed by the means of *shapeupgrade_un ********************************/ class BRepAlgoAPI_Defeaturing : public BRepAlgoAPI_Algo { public: - /****************** BRepAlgoAPI_Defeaturing ******************/ - /**** md5 signature: c00608d9bba8810c82a05b46e3e4f871 ****/ + /****** BRepAlgoAPI_Defeaturing::BRepAlgoAPI_Defeaturing ******/ + /****** md5 signature: c00608d9bba8810c82a05b46e3e4f871 ******/ %feature("compactdefaultargs") BRepAlgoAPI_Defeaturing; %feature("autodoc", "Return ------- @@ -699,8 +699,8 @@ Empty constructor. ") BRepAlgoAPI_Defeaturing; BRepAlgoAPI_Defeaturing(); - /****************** AddFaceToRemove ******************/ - /**** md5 signature: 26c9409a587f43491552f28dbeb97ed4 ****/ + /****** BRepAlgoAPI_Defeaturing::AddFaceToRemove ******/ + /****** md5 signature: 26c9409a587f43491552f28dbeb97ed4 ******/ %feature("compactdefaultargs") AddFaceToRemove; %feature("autodoc", " Parameters @@ -717,8 +717,8 @@ Adds the features to remove from the input shape. @param theface [in] the shape ") AddFaceToRemove; void AddFaceToRemove(const TopoDS_Shape & theFace); - /****************** AddFacesToRemove ******************/ - /**** md5 signature: de6da71dc89a49bec36f3c8a28a2c6dd ****/ + /****** BRepAlgoAPI_Defeaturing::AddFacesToRemove ******/ + /****** md5 signature: de6da71dc89a49bec36f3c8a28a2c6dd ******/ %feature("compactdefaultargs") AddFacesToRemove; %feature("autodoc", " Parameters @@ -735,8 +735,8 @@ Adds the faces to remove from the input shape. @param thefaces [in] the list of ") AddFacesToRemove; void AddFacesToRemove(const TopTools_ListOfShape & theFaces); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepAlgoAPI_Defeaturing::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -753,8 +753,8 @@ Performs the operation. ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** FacesToRemove ******************/ - /**** md5 signature: 947971dfb74df8135dc7f7ce60eaaa90 ****/ + /****** BRepAlgoAPI_Defeaturing::FacesToRemove ******/ + /****** md5 signature: 947971dfb74df8135dc7f7ce60eaaa90 ******/ %feature("compactdefaultargs") FacesToRemove; %feature("autodoc", "Return ------- @@ -766,8 +766,8 @@ Returns the list of faces which have been requested for removal from the input s ") FacesToRemove; const TopTools_ListOfShape & FacesToRemove(); - /****************** Generated ******************/ - /**** md5 signature: 6765eaeea6b04c9e5e12d95bf0d36ae9 ****/ + /****** BRepAlgoAPI_Defeaturing::Generated ******/ + /****** md5 signature: 6765eaeea6b04c9e5e12d95bf0d36ae9 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -784,8 +784,8 @@ Returns the list of shapes generated from the shape during the operation. ") Generated; virtual const TopTools_ListOfShape & Generated(const TopoDS_Shape & theS); - /****************** HasDeleted ******************/ - /**** md5 signature: 62e1a47bba6730979f45045197c457ad ****/ + /****** BRepAlgoAPI_Defeaturing::HasDeleted ******/ + /****** md5 signature: 62e1a47bba6730979f45045197c457ad ******/ %feature("compactdefaultargs") HasDeleted; %feature("autodoc", "Return ------- @@ -797,8 +797,8 @@ Returns true if any of the input shapes has been deleted during operation. ") HasDeleted; virtual Standard_Boolean HasDeleted(); - /****************** HasGenerated ******************/ - /**** md5 signature: 41e62931be9792b7588a37969bdd21d8 ****/ + /****** BRepAlgoAPI_Defeaturing::HasGenerated ******/ + /****** md5 signature: 41e62931be9792b7588a37969bdd21d8 ******/ %feature("compactdefaultargs") HasGenerated; %feature("autodoc", "Return ------- @@ -810,8 +810,8 @@ Returns true if any of the input shapes has generated shapes during operation. ") HasGenerated; virtual Standard_Boolean HasGenerated(); - /****************** HasHistory ******************/ - /**** md5 signature: 707ba290c9cd0157e12b7038a0944657 ****/ + /****** BRepAlgoAPI_Defeaturing::HasHistory ******/ + /****** md5 signature: 707ba290c9cd0157e12b7038a0944657 ******/ %feature("compactdefaultargs") HasHistory; %feature("autodoc", "Return ------- @@ -823,8 +823,8 @@ Returns whether the history was requested or not. ") HasHistory; Standard_Boolean HasHistory(); - /****************** HasModified ******************/ - /**** md5 signature: 33dead3a6879f4d3e05d3f85aabe6d13 ****/ + /****** BRepAlgoAPI_Defeaturing::HasModified ******/ + /****** md5 signature: 33dead3a6879f4d3e05d3f85aabe6d13 ******/ %feature("compactdefaultargs") HasModified; %feature("autodoc", "Return ------- @@ -836,8 +836,8 @@ Returns true if any of the input shapes has been modified during operation. ") HasModified; virtual Standard_Boolean HasModified(); - /****************** History ******************/ - /**** md5 signature: 1926fba5b3ef6c8825eef7dc63e4c382 ****/ + /****** BRepAlgoAPI_Defeaturing::History ******/ + /****** md5 signature: 1926fba5b3ef6c8825eef7dc63e4c382 ******/ %feature("compactdefaultargs") History; %feature("autodoc", "Return ------- @@ -849,8 +849,8 @@ Returns the history of shapes modifications. ") History; opencascade::handle History(); - /****************** InputShape ******************/ - /**** md5 signature: c0c04276bd1d5989adf5070d423aadb7 ****/ + /****** BRepAlgoAPI_Defeaturing::InputShape ******/ + /****** md5 signature: c0c04276bd1d5989adf5070d423aadb7 ******/ %feature("compactdefaultargs") InputShape; %feature("autodoc", "Return ------- @@ -862,8 +862,8 @@ Returns the input shape. ") InputShape; const TopoDS_Shape InputShape(); - /****************** IsDeleted ******************/ - /**** md5 signature: e03e7b54c17bc7f23491a2c633b6e283 ****/ + /****** BRepAlgoAPI_Defeaturing::IsDeleted ******/ + /****** md5 signature: e03e7b54c17bc7f23491a2c633b6e283 ******/ %feature("compactdefaultargs") IsDeleted; %feature("autodoc", " Parameters @@ -880,8 +880,8 @@ Returns true if the shape has been deleted during the operation. it means ") IsDeleted; virtual Standard_Boolean IsDeleted(const TopoDS_Shape & theS); - /****************** Modified ******************/ - /**** md5 signature: 4e20601bbc1c3aead85ab39355caf9fd ****/ + /****** BRepAlgoAPI_Defeaturing::Modified ******/ + /****** md5 signature: 4e20601bbc1c3aead85ab39355caf9fd ******/ %feature("compactdefaultargs") Modified; %feature("autodoc", " Parameters @@ -898,8 +898,8 @@ Returns the list of shapes modified from the shape during the operation. ") Modified; virtual const TopTools_ListOfShape & Modified(const TopoDS_Shape & theS); - /****************** SetShape ******************/ - /**** md5 signature: 927e2ebe2fb5354dfb3da3c53e512cad ****/ + /****** BRepAlgoAPI_Defeaturing::SetShape ******/ + /****** md5 signature: 927e2ebe2fb5354dfb3da3c53e512cad ******/ %feature("compactdefaultargs") SetShape; %feature("autodoc", " Parameters @@ -916,8 +916,8 @@ Sets the shape for processing. @param theshape [in] the shape to remove the feat ") SetShape; void SetShape(const TopoDS_Shape & theShape); - /****************** SetToFillHistory ******************/ - /**** md5 signature: 74ee5996560ad06ab737a4c8f4c7350d ****/ + /****** BRepAlgoAPI_Defeaturing::SetToFillHistory ******/ + /****** md5 signature: 74ee5996560ad06ab737a4c8f4c7350d ******/ %feature("compactdefaultargs") SetToFillHistory; %feature("autodoc", " Parameters @@ -948,8 +948,8 @@ Defines whether to track the modification of the shapes or not. *************************************/ class BRepAlgoAPI_BooleanOperation : public BRepAlgoAPI_BuilderAlgo { public: - /****************** BRepAlgoAPI_BooleanOperation ******************/ - /**** md5 signature: ecd6042de04813653a64f217d81e1a57 ****/ + /****** BRepAlgoAPI_BooleanOperation::BRepAlgoAPI_BooleanOperation ******/ + /****** md5 signature: ecd6042de04813653a64f217d81e1a57 ******/ %feature("compactdefaultargs") BRepAlgoAPI_BooleanOperation; %feature("autodoc", "Return ------- @@ -961,8 +961,8 @@ Empty constructor. ") BRepAlgoAPI_BooleanOperation; BRepAlgoAPI_BooleanOperation(); - /****************** BRepAlgoAPI_BooleanOperation ******************/ - /**** md5 signature: 911dfe6e6653bd69280d3f5c21f112f5 ****/ + /****** BRepAlgoAPI_BooleanOperation::BRepAlgoAPI_BooleanOperation ******/ + /****** md5 signature: 911dfe6e6653bd69280d3f5c21f112f5 ******/ %feature("compactdefaultargs") BRepAlgoAPI_BooleanOperation; %feature("autodoc", " Parameters @@ -979,8 +979,8 @@ Constructor with precomputed intersections of arguments. ") BRepAlgoAPI_BooleanOperation; BRepAlgoAPI_BooleanOperation(const BOPAlgo_PaveFiller & thePF); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepAlgoAPI_BooleanOperation::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -997,8 +997,8 @@ Performs the boolean operation. ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Operation ******************/ - /**** md5 signature: 3fe7ad033306b813a524bc39f03a5e6e ****/ + /****** BRepAlgoAPI_BooleanOperation::Operation ******/ + /****** md5 signature: 3fe7ad033306b813a524bc39f03a5e6e ******/ %feature("compactdefaultargs") Operation; %feature("autodoc", "Return ------- @@ -1010,8 +1010,8 @@ Returns the type of boolean operation. ") Operation; BOPAlgo_Operation Operation(); - /****************** SetOperation ******************/ - /**** md5 signature: cef1e63b0452d16e7996e89724a77c38 ****/ + /****** BRepAlgoAPI_BooleanOperation::SetOperation ******/ + /****** md5 signature: cef1e63b0452d16e7996e89724a77c38 ******/ %feature("compactdefaultargs") SetOperation; %feature("autodoc", " Parameters @@ -1028,8 +1028,8 @@ Sets the type of boolean operation. ") SetOperation; void SetOperation(const BOPAlgo_Operation theBOP); - /****************** SetTools ******************/ - /**** md5 signature: 3be2cbb7f8439cb12462b3704230f424 ****/ + /****** BRepAlgoAPI_BooleanOperation::SetTools ******/ + /****** md5 signature: 3be2cbb7f8439cb12462b3704230f424 ******/ %feature("compactdefaultargs") SetTools; %feature("autodoc", " Parameters @@ -1046,8 +1046,8 @@ Sets the tool arguments. ") SetTools; void SetTools(const TopTools_ListOfShape & theLS); - /****************** Shape1 ******************/ - /**** md5 signature: 8981b86985f46147f6d78d0ef2565c6e ****/ + /****** BRepAlgoAPI_BooleanOperation::Shape1 ******/ + /****** md5 signature: 8981b86985f46147f6d78d0ef2565c6e ******/ %feature("compactdefaultargs") Shape1; %feature("autodoc", "Return ------- @@ -1059,8 +1059,8 @@ Returns the first argument involved in this boolean operation. obsolete. ") Shape1; const TopoDS_Shape Shape1(); - /****************** Shape2 ******************/ - /**** md5 signature: 2c54bae91519136523ed62dc1f27ae72 ****/ + /****** BRepAlgoAPI_BooleanOperation::Shape2 ******/ + /****** md5 signature: 2c54bae91519136523ed62dc1f27ae72 ******/ %feature("compactdefaultargs") Shape2; %feature("autodoc", "Return ------- @@ -1072,8 +1072,8 @@ Returns the second argument involved in this boolean operation. obsolete. ") Shape2; const TopoDS_Shape Shape2(); - /****************** Tools ******************/ - /**** md5 signature: 0471973aac274d4f863776957a65fd19 ****/ + /****** BRepAlgoAPI_BooleanOperation::Tools ******/ + /****** md5 signature: 0471973aac274d4f863776957a65fd19 ******/ %feature("compactdefaultargs") Tools; %feature("autodoc", "Return ------- @@ -1099,8 +1099,8 @@ Returns the tools arguments. *****************************/ class BRepAlgoAPI_Splitter : public BRepAlgoAPI_BuilderAlgo { public: - /****************** BRepAlgoAPI_Splitter ******************/ - /**** md5 signature: 9ef21f13bc074dc22af2512d12d68538 ****/ + /****** BRepAlgoAPI_Splitter::BRepAlgoAPI_Splitter ******/ + /****** md5 signature: 9ef21f13bc074dc22af2512d12d68538 ******/ %feature("compactdefaultargs") BRepAlgoAPI_Splitter; %feature("autodoc", "Return ------- @@ -1112,8 +1112,8 @@ Empty constructor. ") BRepAlgoAPI_Splitter; BRepAlgoAPI_Splitter(); - /****************** BRepAlgoAPI_Splitter ******************/ - /**** md5 signature: 7e6131d308f84171e35c6eadd0d40875 ****/ + /****** BRepAlgoAPI_Splitter::BRepAlgoAPI_Splitter ******/ + /****** md5 signature: 7e6131d308f84171e35c6eadd0d40875 ******/ %feature("compactdefaultargs") BRepAlgoAPI_Splitter; %feature("autodoc", " Parameters @@ -1130,8 +1130,8 @@ Constructor with already prepared intersection tool - pavefiller. ") BRepAlgoAPI_Splitter; BRepAlgoAPI_Splitter(const BOPAlgo_PaveFiller & thePF); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepAlgoAPI_Splitter::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -1148,8 +1148,8 @@ Performs the split operation. performs the intersection of the argument shapes ( ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** SetTools ******************/ - /**** md5 signature: 3be2cbb7f8439cb12462b3704230f424 ****/ + /****** BRepAlgoAPI_Splitter::SetTools ******/ + /****** md5 signature: 3be2cbb7f8439cb12462b3704230f424 ******/ %feature("compactdefaultargs") SetTools; %feature("autodoc", " Parameters @@ -1166,8 +1166,8 @@ Sets the tool arguments. ") SetTools; void SetTools(const TopTools_ListOfShape & theLS); - /****************** Tools ******************/ - /**** md5 signature: 0471973aac274d4f863776957a65fd19 ****/ + /****** BRepAlgoAPI_Splitter::Tools ******/ + /****** md5 signature: 0471973aac274d4f863776957a65fd19 ******/ %feature("compactdefaultargs") Tools; %feature("autodoc", "Return ------- @@ -1193,8 +1193,8 @@ Returns the tool arguments. ***************************/ class BRepAlgoAPI_Common : public BRepAlgoAPI_BooleanOperation { public: - /****************** BRepAlgoAPI_Common ******************/ - /**** md5 signature: f91369cacf90268e3d29941c629e6143 ****/ + /****** BRepAlgoAPI_Common::BRepAlgoAPI_Common ******/ + /****** md5 signature: f91369cacf90268e3d29941c629e6143 ******/ %feature("compactdefaultargs") BRepAlgoAPI_Common; %feature("autodoc", "Return ------- @@ -1206,8 +1206,8 @@ Empty constructor. ") BRepAlgoAPI_Common; BRepAlgoAPI_Common(); - /****************** BRepAlgoAPI_Common ******************/ - /**** md5 signature: 221ea98268ab300eec5e97d97aab1008 ****/ + /****** BRepAlgoAPI_Common::BRepAlgoAPI_Common ******/ + /****** md5 signature: 221ea98268ab300eec5e97d97aab1008 ******/ %feature("compactdefaultargs") BRepAlgoAPI_Common; %feature("autodoc", " Parameters @@ -1224,8 +1224,8 @@ Empty constructor - pavefiller object that is carried out. ") BRepAlgoAPI_Common; BRepAlgoAPI_Common(const BOPAlgo_PaveFiller & PF); - /****************** BRepAlgoAPI_Common ******************/ - /**** md5 signature: 281aea6470a4b9efa44abd92f03bd429 ****/ + /****** BRepAlgoAPI_Common::BRepAlgoAPI_Common ******/ + /****** md5 signature: 281aea6470a4b9efa44abd92f03bd429 ******/ %feature("compactdefaultargs") BRepAlgoAPI_Common; %feature("autodoc", " Parameters @@ -1244,8 +1244,8 @@ Constructor with two shapes -argument -tool - the type o ") BRepAlgoAPI_Common; BRepAlgoAPI_Common(const TopoDS_Shape & S1, const TopoDS_Shape & S2, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** BRepAlgoAPI_Common ******************/ - /**** md5 signature: 435fb55f2697ff39118c51724120f6f5 ****/ + /****** BRepAlgoAPI_Common::BRepAlgoAPI_Common ******/ + /****** md5 signature: 435fb55f2697ff39118c51724120f6f5 ******/ %feature("compactdefaultargs") BRepAlgoAPI_Common; %feature("autodoc", " Parameters @@ -1279,8 +1279,8 @@ Constructor with two shapes -argument -tool - the type o ************************/ class BRepAlgoAPI_Cut : public BRepAlgoAPI_BooleanOperation { public: - /****************** BRepAlgoAPI_Cut ******************/ - /**** md5 signature: 629dc45f6ac54a1d0dd3eb613bb25729 ****/ + /****** BRepAlgoAPI_Cut::BRepAlgoAPI_Cut ******/ + /****** md5 signature: 629dc45f6ac54a1d0dd3eb613bb25729 ******/ %feature("compactdefaultargs") BRepAlgoAPI_Cut; %feature("autodoc", "Return ------- @@ -1292,8 +1292,8 @@ Empty constructor. ") BRepAlgoAPI_Cut; BRepAlgoAPI_Cut(); - /****************** BRepAlgoAPI_Cut ******************/ - /**** md5 signature: d1f642f339e236fdb33a884982f2791a ****/ + /****** BRepAlgoAPI_Cut::BRepAlgoAPI_Cut ******/ + /****** md5 signature: d1f642f339e236fdb33a884982f2791a ******/ %feature("compactdefaultargs") BRepAlgoAPI_Cut; %feature("autodoc", " Parameters @@ -1310,8 +1310,8 @@ Empty constructor - pavefiller object that is carried out. ") BRepAlgoAPI_Cut; BRepAlgoAPI_Cut(const BOPAlgo_PaveFiller & PF); - /****************** BRepAlgoAPI_Cut ******************/ - /**** md5 signature: aa1da534b9c66c537779d74c3ab72d96 ****/ + /****** BRepAlgoAPI_Cut::BRepAlgoAPI_Cut ******/ + /****** md5 signature: aa1da534b9c66c537779d74c3ab72d96 ******/ %feature("compactdefaultargs") BRepAlgoAPI_Cut; %feature("autodoc", " Parameters @@ -1330,8 +1330,8 @@ Constructor with two shapes -argument -tool - the type o ") BRepAlgoAPI_Cut; BRepAlgoAPI_Cut(const TopoDS_Shape & S1, const TopoDS_Shape & S2, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** BRepAlgoAPI_Cut ******************/ - /**** md5 signature: ac4b1606254f036b586cca6028e78c28 ****/ + /****** BRepAlgoAPI_Cut::BRepAlgoAPI_Cut ******/ + /****** md5 signature: ac4b1606254f036b586cca6028e78c28 ******/ %feature("compactdefaultargs") BRepAlgoAPI_Cut; %feature("autodoc", " Parameters @@ -1366,8 +1366,8 @@ Constructor with two shapes -argument -tool - the type o *************************/ class BRepAlgoAPI_Fuse : public BRepAlgoAPI_BooleanOperation { public: - /****************** BRepAlgoAPI_Fuse ******************/ - /**** md5 signature: ba31d780d01f5752b12d845f4446df0f ****/ + /****** BRepAlgoAPI_Fuse::BRepAlgoAPI_Fuse ******/ + /****** md5 signature: ba31d780d01f5752b12d845f4446df0f ******/ %feature("compactdefaultargs") BRepAlgoAPI_Fuse; %feature("autodoc", "Return ------- @@ -1379,8 +1379,8 @@ Empty constructor. ") BRepAlgoAPI_Fuse; BRepAlgoAPI_Fuse(); - /****************** BRepAlgoAPI_Fuse ******************/ - /**** md5 signature: 7689d836e2615ec52255c3ee260ddb69 ****/ + /****** BRepAlgoAPI_Fuse::BRepAlgoAPI_Fuse ******/ + /****** md5 signature: 7689d836e2615ec52255c3ee260ddb69 ******/ %feature("compactdefaultargs") BRepAlgoAPI_Fuse; %feature("autodoc", " Parameters @@ -1397,8 +1397,8 @@ Empty constructor - pavefiller object that is carried out. ") BRepAlgoAPI_Fuse; BRepAlgoAPI_Fuse(const BOPAlgo_PaveFiller & PF); - /****************** BRepAlgoAPI_Fuse ******************/ - /**** md5 signature: 997b51870f06f995a1de922a1d169097 ****/ + /****** BRepAlgoAPI_Fuse::BRepAlgoAPI_Fuse ******/ + /****** md5 signature: 997b51870f06f995a1de922a1d169097 ******/ %feature("compactdefaultargs") BRepAlgoAPI_Fuse; %feature("autodoc", " Parameters @@ -1417,8 +1417,8 @@ Constructor with two shapes -argument -tool - the type o ") BRepAlgoAPI_Fuse; BRepAlgoAPI_Fuse(const TopoDS_Shape & S1, const TopoDS_Shape & S2, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** BRepAlgoAPI_Fuse ******************/ - /**** md5 signature: 0619d132bb7d5cd901bfe7d534a8a34b ****/ + /****** BRepAlgoAPI_Fuse::BRepAlgoAPI_Fuse ******/ + /****** md5 signature: 0619d132bb7d5cd901bfe7d534a8a34b ******/ %feature("compactdefaultargs") BRepAlgoAPI_Fuse; %feature("autodoc", " Parameters @@ -1452,8 +1452,8 @@ Constructor with two shapes -argument -tool - the type o ****************************/ class BRepAlgoAPI_Section : public BRepAlgoAPI_BooleanOperation { public: - /****************** BRepAlgoAPI_Section ******************/ - /**** md5 signature: a47f0ceb741798857db55d2032f40092 ****/ + /****** BRepAlgoAPI_Section::BRepAlgoAPI_Section ******/ + /****** md5 signature: a47f0ceb741798857db55d2032f40092 ******/ %feature("compactdefaultargs") BRepAlgoAPI_Section; %feature("autodoc", "Return ------- @@ -1465,8 +1465,8 @@ Empty constructor. ") BRepAlgoAPI_Section; BRepAlgoAPI_Section(); - /****************** BRepAlgoAPI_Section ******************/ - /**** md5 signature: bda2ec08baeb2e74ab6cb69daaf2c885 ****/ + /****** BRepAlgoAPI_Section::BRepAlgoAPI_Section ******/ + /****** md5 signature: bda2ec08baeb2e74ab6cb69daaf2c885 ******/ %feature("compactdefaultargs") BRepAlgoAPI_Section; %feature("autodoc", " Parameters @@ -1483,8 +1483,8 @@ Empty constructor - pavefiller object that is carried out. ") BRepAlgoAPI_Section; BRepAlgoAPI_Section(const BOPAlgo_PaveFiller & PF); - /****************** BRepAlgoAPI_Section ******************/ - /**** md5 signature: cb5bfbec844bcec9b0cb0f6e222e3512 ****/ + /****** BRepAlgoAPI_Section::BRepAlgoAPI_Section ******/ + /****** md5 signature: cb5bfbec844bcec9b0cb0f6e222e3512 ******/ %feature("compactdefaultargs") BRepAlgoAPI_Section; %feature("autodoc", " Parameters @@ -1503,8 +1503,8 @@ Constructor with two shapes -argument -tool - the flag: i ") BRepAlgoAPI_Section; BRepAlgoAPI_Section(const TopoDS_Shape & S1, const TopoDS_Shape & S2, const Standard_Boolean PerformNow = Standard_True); - /****************** BRepAlgoAPI_Section ******************/ - /**** md5 signature: 6f2f6902a99b64288c481b6cad474b59 ****/ + /****** BRepAlgoAPI_Section::BRepAlgoAPI_Section ******/ + /****** md5 signature: 6f2f6902a99b64288c481b6cad474b59 ******/ %feature("compactdefaultargs") BRepAlgoAPI_Section; %feature("autodoc", " Parameters @@ -1524,8 +1524,8 @@ Constructor with two shapes -argument -tool - pavefiller object t ") BRepAlgoAPI_Section; BRepAlgoAPI_Section(const TopoDS_Shape & S1, const TopoDS_Shape & S2, const BOPAlgo_PaveFiller & aDSF, const Standard_Boolean PerformNow = Standard_True); - /****************** BRepAlgoAPI_Section ******************/ - /**** md5 signature: 30e774e5a1508f5dd6195bbba8028bdd ****/ + /****** BRepAlgoAPI_Section::BRepAlgoAPI_Section ******/ + /****** md5 signature: 30e774e5a1508f5dd6195bbba8028bdd ******/ %feature("compactdefaultargs") BRepAlgoAPI_Section; %feature("autodoc", " Parameters @@ -1544,8 +1544,8 @@ Constructor with two shapes - argument - tool - the flag: ") BRepAlgoAPI_Section; BRepAlgoAPI_Section(const TopoDS_Shape & S1, const gp_Pln & Pl, const Standard_Boolean PerformNow = Standard_True); - /****************** BRepAlgoAPI_Section ******************/ - /**** md5 signature: c287bb4bc888ac88d0cb0da777c82aa7 ****/ + /****** BRepAlgoAPI_Section::BRepAlgoAPI_Section ******/ + /****** md5 signature: c287bb4bc888ac88d0cb0da777c82aa7 ******/ %feature("compactdefaultargs") BRepAlgoAPI_Section; %feature("autodoc", " Parameters @@ -1564,8 +1564,8 @@ Constructor with two shapes - argument - tool - the flag: ") BRepAlgoAPI_Section; BRepAlgoAPI_Section(const TopoDS_Shape & S1, const opencascade::handle & Sf, const Standard_Boolean PerformNow = Standard_True); - /****************** BRepAlgoAPI_Section ******************/ - /**** md5 signature: 672281bf6f9f679b4d466fb17e60f6c9 ****/ + /****** BRepAlgoAPI_Section::BRepAlgoAPI_Section ******/ + /****** md5 signature: 672281bf6f9f679b4d466fb17e60f6c9 ******/ %feature("compactdefaultargs") BRepAlgoAPI_Section; %feature("autodoc", " Parameters @@ -1584,8 +1584,8 @@ Constructor with two shapes - argument - tool - the flag: ") BRepAlgoAPI_Section; BRepAlgoAPI_Section(const opencascade::handle & Sf, const TopoDS_Shape & S2, const Standard_Boolean PerformNow = Standard_True); - /****************** BRepAlgoAPI_Section ******************/ - /**** md5 signature: b272770396cfbca61affc5a095f04dbc ****/ + /****** BRepAlgoAPI_Section::BRepAlgoAPI_Section ******/ + /****** md5 signature: b272770396cfbca61affc5a095f04dbc ******/ %feature("compactdefaultargs") BRepAlgoAPI_Section; %feature("autodoc", " Parameters @@ -1604,8 +1604,8 @@ Constructor with two shapes - argument - tool - the fla ") BRepAlgoAPI_Section; BRepAlgoAPI_Section(const opencascade::handle & Sf1, const opencascade::handle & Sf2, const Standard_Boolean PerformNow = Standard_True); - /****************** Approximation ******************/ - /**** md5 signature: f599ca30fa002b2a3dc329decde6ce74 ****/ + /****** BRepAlgoAPI_Section::Approximation ******/ + /****** md5 signature: f599ca30fa002b2a3dc329decde6ce74 ******/ %feature("compactdefaultargs") Approximation; %feature("autodoc", " Parameters @@ -1622,8 +1622,8 @@ No available documentation. ") Approximation; void Approximation(const Standard_Boolean B); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepAlgoAPI_Section::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -1640,8 +1640,8 @@ Performs the algorithm filling interference data structure (if it is necessary) ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** ComputePCurveOn1 ******************/ - /**** md5 signature: e4a8add7cd0d8f532479132026321808 ****/ + /****** BRepAlgoAPI_Section::ComputePCurveOn1 ******/ + /****** md5 signature: e4a8add7cd0d8f532479132026321808 ******/ %feature("compactdefaultargs") ComputePCurveOn1; %feature("autodoc", " Parameters @@ -1658,8 +1658,8 @@ Indicates whether the p-curve should be (or not) performed on the argument. by d ") ComputePCurveOn1; void ComputePCurveOn1(const Standard_Boolean B); - /****************** ComputePCurveOn2 ******************/ - /**** md5 signature: 69d49dff388a83191da02eb8e1945b69 ****/ + /****** BRepAlgoAPI_Section::ComputePCurveOn2 ******/ + /****** md5 signature: 69d49dff388a83191da02eb8e1945b69 ******/ %feature("compactdefaultargs") ComputePCurveOn2; %feature("autodoc", " Parameters @@ -1676,8 +1676,8 @@ Indicates whether the p-curve should be (or not) performed on the tool. by defau ") ComputePCurveOn2; void ComputePCurveOn2(const Standard_Boolean B); - /****************** HasAncestorFaceOn1 ******************/ - /**** md5 signature: 36605047037cbfa30f9efcc59b149e44 ****/ + /****** BRepAlgoAPI_Section::HasAncestorFaceOn1 ******/ + /****** md5 signature: 36605047037cbfa30f9efcc59b149e44 ******/ %feature("compactdefaultargs") HasAncestorFaceOn1; %feature("autodoc", " Parameters @@ -1695,8 +1695,8 @@ Get the face of the first part giving section edge . returns true on the 3 fo ") HasAncestorFaceOn1; Standard_Boolean HasAncestorFaceOn1(const TopoDS_Shape & E, TopoDS_Shape & F); - /****************** HasAncestorFaceOn2 ******************/ - /**** md5 signature: 0642a4fb4df5a635412bd18e5f65e916 ****/ + /****** BRepAlgoAPI_Section::HasAncestorFaceOn2 ******/ + /****** md5 signature: 0642a4fb4df5a635412bd18e5f65e916 ******/ %feature("compactdefaultargs") HasAncestorFaceOn2; %feature("autodoc", " Parameters @@ -1714,8 +1714,8 @@ Identifies the ancestor faces of the intersection edge e resulting from the last ") HasAncestorFaceOn2; Standard_Boolean HasAncestorFaceOn2(const TopoDS_Shape & E, TopoDS_Shape & F); - /****************** Init1 ******************/ - /**** md5 signature: 7fa686f55d72920afc50e65b8a84a805 ****/ + /****** BRepAlgoAPI_Section::Init1 ******/ + /****** md5 signature: 7fa686f55d72920afc50e65b8a84a805 ******/ %feature("compactdefaultargs") Init1; %feature("autodoc", " Parameters @@ -1732,8 +1732,8 @@ Initialize the argument - argument obsolete. ") Init1; void Init1(const TopoDS_Shape & S1); - /****************** Init1 ******************/ - /**** md5 signature: 1e834e5b66aacf2f588a792cb0edcd57 ****/ + /****** BRepAlgoAPI_Section::Init1 ******/ + /****** md5 signature: 1e834e5b66aacf2f588a792cb0edcd57 ******/ %feature("compactdefaultargs") Init1; %feature("autodoc", " Parameters @@ -1750,8 +1750,8 @@ Initialize the argument - argument obsolete. ") Init1; void Init1(const gp_Pln & Pl); - /****************** Init1 ******************/ - /**** md5 signature: a94f1a0649d28cfd679dcbe46833b484 ****/ + /****** BRepAlgoAPI_Section::Init1 ******/ + /****** md5 signature: a94f1a0649d28cfd679dcbe46833b484 ******/ %feature("compactdefaultargs") Init1; %feature("autodoc", " Parameters @@ -1768,8 +1768,8 @@ Initialize the argument - argument obsolete. ") Init1; void Init1(const opencascade::handle & Sf); - /****************** Init2 ******************/ - /**** md5 signature: 8a35dc2983e205023df1fac2afbf3b01 ****/ + /****** BRepAlgoAPI_Section::Init2 ******/ + /****** md5 signature: 8a35dc2983e205023df1fac2afbf3b01 ******/ %feature("compactdefaultargs") Init2; %feature("autodoc", " Parameters @@ -1786,8 +1786,8 @@ Initialize the tool - tool obsolete. ") Init2; void Init2(const TopoDS_Shape & S2); - /****************** Init2 ******************/ - /**** md5 signature: 1fb6fdb5216fde3b15724409206adcfe ****/ + /****** BRepAlgoAPI_Section::Init2 ******/ + /****** md5 signature: 1fb6fdb5216fde3b15724409206adcfe ******/ %feature("compactdefaultargs") Init2; %feature("autodoc", " Parameters @@ -1804,8 +1804,8 @@ Initialize the tool - tool obsolete. ") Init2; void Init2(const gp_Pln & Pl); - /****************** Init2 ******************/ - /**** md5 signature: 86865e03b7bd5eecac0d55746d523771 ****/ + /****** BRepAlgoAPI_Section::Init2 ******/ + /****** md5 signature: 86865e03b7bd5eecac0d55746d523771 ******/ %feature("compactdefaultargs") Init2; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BRepApprox.i b/src/SWIG_files/wrapper/BRepApprox.i index fedda20aa..12d2fea1e 100644 --- a/src/SWIG_files/wrapper/BRepApprox.i +++ b/src/SWIG_files/wrapper/BRepApprox.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPAPPROXDOCSTRING "BRepApprox module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepapprox.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepapprox.html" %enddef %module (package="OCC.Core", docstring=BREPAPPROXDOCSTRING) BRepApprox @@ -119,8 +119,8 @@ from OCC.Core.Exception import * class BRepApprox_Approx { public: class Approx_Data {}; - /****************** BRepApprox_Approx ******************/ - /**** md5 signature: bd97e4db4f73bdf01c7574bc6f9beca1 ****/ + /****** BRepApprox_Approx::BRepApprox_Approx ******/ + /****** md5 signature: bd97e4db4f73bdf01c7574bc6f9beca1 ******/ %feature("compactdefaultargs") BRepApprox_Approx; %feature("autodoc", "Return ------- @@ -132,8 +132,8 @@ No available documentation. ") BRepApprox_Approx; BRepApprox_Approx(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepApprox_Approx::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -145,8 +145,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** NbMultiCurves ******************/ - /**** md5 signature: 944d4af40d93d46a8a3a888df2d8b388 ****/ + /****** BRepApprox_Approx::NbMultiCurves ******/ + /****** md5 signature: 944d4af40d93d46a8a3a888df2d8b388 ******/ %feature("compactdefaultargs") NbMultiCurves; %feature("autodoc", "Return ------- @@ -158,8 +158,8 @@ No available documentation. ") NbMultiCurves; Standard_Integer NbMultiCurves(); - /****************** Parameters ******************/ - /**** md5 signature: 81d60914d3a71865160546b151d21f82 ****/ + /****** BRepApprox_Approx::Parameters ******/ + /****** md5 signature: 81d60914d3a71865160546b151d21f82 ******/ %feature("compactdefaultargs") Parameters; %feature("autodoc", " Parameters @@ -180,8 +180,8 @@ No available documentation. ") Parameters; static void Parameters(const BRepApprox_TheMultiLineOfApprox & Line, const Standard_Integer firstP, const Standard_Integer lastP, const Approx_ParametrizationType Par, math_Vector & TheParameters); - /****************** SetParameters ******************/ - /**** md5 signature: 224b0c0bb8f1208adc055cd27769623b ****/ + /****** BRepApprox_Approx::SetParameters ******/ + /****** md5 signature: 224b0c0bb8f1208adc055cd27769623b ******/ %feature("compactdefaultargs") SetParameters; %feature("autodoc", " Parameters @@ -205,8 +205,8 @@ No available documentation. ") SetParameters; void SetParameters(const Standard_Real Tol3d, const Standard_Real Tol2d, const Standard_Integer DegMin, const Standard_Integer DegMax, const Standard_Integer NbIterMax, const Standard_Integer NbPntMax = 30, const Standard_Boolean ApproxWithTangency = Standard_True, const Approx_ParametrizationType Parametrization = Approx_ChordLength); - /****************** TolReached2d ******************/ - /**** md5 signature: fec1cf227c913f78bf2cca534817572e ****/ + /****** BRepApprox_Approx::TolReached2d ******/ + /****** md5 signature: fec1cf227c913f78bf2cca534817572e ******/ %feature("compactdefaultargs") TolReached2d; %feature("autodoc", "Return ------- @@ -218,8 +218,8 @@ No available documentation. ") TolReached2d; Standard_Real TolReached2d(); - /****************** TolReached3d ******************/ - /**** md5 signature: 683925467818325187b2612f3df211fb ****/ + /****** BRepApprox_Approx::TolReached3d ******/ + /****** md5 signature: 683925467818325187b2612f3df211fb ******/ %feature("compactdefaultargs") TolReached3d; %feature("autodoc", "Return ------- @@ -231,8 +231,8 @@ No available documentation. ") TolReached3d; Standard_Real TolReached3d(); - /****************** Value ******************/ - /**** md5 signature: 9d6e77e44b72348ce39d94f7175b467c ****/ + /****** BRepApprox_Approx::Value ******/ + /****** md5 signature: 9d6e77e44b72348ce39d94f7175b467c ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -267,8 +267,8 @@ No available documentation. ******************************/ class BRepApprox_ApproxLine : public Standard_Transient { public: - /****************** BRepApprox_ApproxLine ******************/ - /**** md5 signature: 06463c2cf339616f1188d08a9cedb916 ****/ + /****** BRepApprox_ApproxLine::BRepApprox_ApproxLine ******/ + /****** md5 signature: 06463c2cf339616f1188d08a9cedb916 ******/ %feature("compactdefaultargs") BRepApprox_ApproxLine; %feature("autodoc", " Parameters @@ -287,8 +287,8 @@ No available documentation. ") BRepApprox_ApproxLine; BRepApprox_ApproxLine(const opencascade::handle & CurveXYZ, const opencascade::handle & CurveUV1, const opencascade::handle & CurveUV2); - /****************** BRepApprox_ApproxLine ******************/ - /**** md5 signature: fc95bda6dedd235ff09c9509eeb57ba6 ****/ + /****** BRepApprox_ApproxLine::BRepApprox_ApproxLine ******/ + /****** md5 signature: fc95bda6dedd235ff09c9509eeb57ba6 ******/ %feature("compactdefaultargs") BRepApprox_ApproxLine; %feature("autodoc", " Parameters @@ -306,8 +306,8 @@ Thetang variable has been entered only for compatibility with the alias intpatch ") BRepApprox_ApproxLine; BRepApprox_ApproxLine(const opencascade::handle & lin, const Standard_Boolean theTang = Standard_False); - /****************** NbPnts ******************/ - /**** md5 signature: 11421df812eef5f47a644a70b75ab60a ****/ + /****** BRepApprox_ApproxLine::NbPnts ******/ + /****** md5 signature: 11421df812eef5f47a644a70b75ab60a ******/ %feature("compactdefaultargs") NbPnts; %feature("autodoc", "Return ------- @@ -319,8 +319,8 @@ No available documentation. ") NbPnts; Standard_Integer NbPnts(); - /****************** Point ******************/ - /**** md5 signature: 3f7bb7239d0d53fe95063c8fac27999e ****/ + /****** BRepApprox_ApproxLine::Point ******/ + /****** md5 signature: 3f7bb7239d0d53fe95063c8fac27999e ******/ %feature("compactdefaultargs") Point; %feature("autodoc", " Parameters @@ -353,8 +353,8 @@ No available documentation. ****************************************************************************/ class BRepApprox_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfApprox : public math_BFGS { public: - /****************** BRepApprox_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfApprox ******************/ - /**** md5 signature: 63a0f87512cd1e6b43564af60dd18905 ****/ + /****** BRepApprox_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfApprox::BRepApprox_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfApprox ******/ + /****** md5 signature: 63a0f87512cd1e6b43564af60dd18905 ******/ %feature("compactdefaultargs") BRepApprox_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfApprox; %feature("autodoc", " Parameters @@ -376,8 +376,8 @@ No available documentation. ") BRepApprox_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfApprox; BRepApprox_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfApprox(math_MultipleVarFunctionWithGradient & F, const math_Vector & StartingPoint, const Standard_Real Tolerance3d, const Standard_Real Tolerance2d, const Standard_Real Eps, const Standard_Integer NbIterations = 200); - /****************** IsSolutionReached ******************/ - /**** md5 signature: a6c0da888a257bf852b40b8daf6526dc ****/ + /****** BRepApprox_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfApprox::IsSolutionReached ******/ + /****** md5 signature: a6c0da888a257bf852b40b8daf6526dc ******/ %feature("compactdefaultargs") IsSolutionReached; %feature("autodoc", " Parameters @@ -408,8 +408,8 @@ No available documentation. **************************************************************************/ class BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox : public math_MultipleVarFunctionWithGradient { public: - /****************** BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox ******************/ - /**** md5 signature: 0371b3e981bd07f22a62b26d7304786b ****/ + /****** BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox::BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox ******/ + /****** md5 signature: 0371b3e981bd07f22a62b26d7304786b ******/ %feature("compactdefaultargs") BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox; %feature("autodoc", " Parameters @@ -433,8 +433,8 @@ Initializes the fields of the function. the approximating curve has cont ") BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox; BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox(const BRepApprox_TheMultiLineOfApprox & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const opencascade::handle & TheConstraints, const math_Vector & Parameters, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Integer NbPol); - /****************** CurveValue ******************/ - /**** md5 signature: c83ed6c1c3091309bccd8d719a30ec54 ****/ + /****** BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox::CurveValue ******/ + /****** md5 signature: c83ed6c1c3091309bccd8d719a30ec54 ******/ %feature("compactdefaultargs") CurveValue; %feature("autodoc", "Return ------- @@ -446,8 +446,8 @@ Returns the multibspcurve approximating the set after computing the value f or g ") CurveValue; AppParCurves_MultiBSpCurve CurveValue(); - /****************** DerivativeFunctionMatrix ******************/ - /**** md5 signature: c2dbca1da1c1c1aaf2ff7895be813eaf ****/ + /****** BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox::DerivativeFunctionMatrix ******/ + /****** md5 signature: c2dbca1da1c1c1aaf2ff7895be813eaf ******/ %feature("compactdefaultargs") DerivativeFunctionMatrix; %feature("autodoc", "Return ------- @@ -459,8 +459,8 @@ Returns the derivative function matrix used to approximate the multiline. ") DerivativeFunctionMatrix; const math_Matrix & DerivativeFunctionMatrix(); - /****************** Error ******************/ - /**** md5 signature: 540c96711689798ec6a7d515d5e5e1c7 ****/ + /****** BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox::Error ******/ + /****** md5 signature: 540c96711689798ec6a7d515d5e5e1c7 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -478,8 +478,8 @@ Returns the distance between the multipoint of range ipoint and the curve curvei ") Error; Standard_Real Error(const Standard_Integer IPoint, const Standard_Integer CurveIndex); - /****************** FirstConstraint ******************/ - /**** md5 signature: 6814c8615ee3f59417c740c77d2ce795 ****/ + /****** BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox::FirstConstraint ******/ + /****** md5 signature: 6814c8615ee3f59417c740c77d2ce795 ******/ %feature("compactdefaultargs") FirstConstraint; %feature("autodoc", " Parameters @@ -497,8 +497,8 @@ No available documentation. ") FirstConstraint; AppParCurves_Constraint FirstConstraint(const opencascade::handle & TheConstraints, const Standard_Integer FirstPoint); - /****************** FunctionMatrix ******************/ - /**** md5 signature: aec90dd003c289db9092eb79712677e1 ****/ + /****** BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox::FunctionMatrix ******/ + /****** md5 signature: aec90dd003c289db9092eb79712677e1 ******/ %feature("compactdefaultargs") FunctionMatrix; %feature("autodoc", "Return ------- @@ -510,8 +510,8 @@ Returns the function matrix used to approximate the multiline. ") FunctionMatrix; const math_Matrix & FunctionMatrix(); - /****************** Gradient ******************/ - /**** md5 signature: 5ee531ceab07ab216991e3bf02edf0f7 ****/ + /****** BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox::Gradient ******/ + /****** md5 signature: 5ee531ceab07ab216991e3bf02edf0f7 ******/ %feature("compactdefaultargs") Gradient; %feature("autodoc", " Parameters @@ -529,8 +529,8 @@ Returns the gradient g of the sum above for the parameters xi. ") Gradient; Standard_Boolean Gradient(const math_Vector & X, math_Vector & G); - /****************** Index ******************/ - /**** md5 signature: c11a6982042d7a2c5bf9fb50324ac971 ****/ + /****** BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox::Index ******/ + /****** md5 signature: c11a6982042d7a2c5bf9fb50324ac971 ******/ %feature("compactdefaultargs") Index; %feature("autodoc", "Return ------- @@ -542,8 +542,8 @@ Returns the indexes of the first non null values of a and da. the values are non ") Index; const math_IntegerVector & Index(); - /****************** LastConstraint ******************/ - /**** md5 signature: f3572ad2cc7e299a1f7b6cb9d14677cf ****/ + /****** BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox::LastConstraint ******/ + /****** md5 signature: f3572ad2cc7e299a1f7b6cb9d14677cf ******/ %feature("compactdefaultargs") LastConstraint; %feature("autodoc", " Parameters @@ -561,8 +561,8 @@ No available documentation. ") LastConstraint; AppParCurves_Constraint LastConstraint(const opencascade::handle & TheConstraints, const Standard_Integer LastPoint); - /****************** MaxError2d ******************/ - /**** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ****/ + /****** BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox::MaxError2d ******/ + /****** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ******/ %feature("compactdefaultargs") MaxError2d; %feature("autodoc", "Return ------- @@ -574,8 +574,8 @@ Returns the maximum distance between the points and the multibspcurve. ") MaxError2d; Standard_Real MaxError2d(); - /****************** MaxError3d ******************/ - /**** md5 signature: c6ba463cdf4a0e426329b589363186b7 ****/ + /****** BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox::MaxError3d ******/ + /****** md5 signature: c6ba463cdf4a0e426329b589363186b7 ******/ %feature("compactdefaultargs") MaxError3d; %feature("autodoc", "Return ------- @@ -587,8 +587,8 @@ Returns the maximum distance between the points and the multibspcurve. ") MaxError3d; Standard_Real MaxError3d(); - /****************** NbVariables ******************/ - /**** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ****/ + /****** BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox::NbVariables ******/ + /****** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -600,8 +600,8 @@ Returns the number of variables of the function. it corresponds to the number of ") NbVariables; Standard_Integer NbVariables(); - /****************** NewParameters ******************/ - /**** md5 signature: 1d606e7b2aa9813a84f6984ebdf52bb7 ****/ + /****** BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox::NewParameters ******/ + /****** md5 signature: 1d606e7b2aa9813a84f6984ebdf52bb7 ******/ %feature("compactdefaultargs") NewParameters; %feature("autodoc", "Return ------- @@ -613,8 +613,8 @@ Returns the new parameters of the multiline. ") NewParameters; const math_Vector & NewParameters(); - /****************** SetFirstLambda ******************/ - /**** md5 signature: 819efdb8532bd01857d5e29b79901d19 ****/ + /****** BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox::SetFirstLambda ******/ + /****** md5 signature: 819efdb8532bd01857d5e29b79901d19 ******/ %feature("compactdefaultargs") SetFirstLambda; %feature("autodoc", " Parameters @@ -631,8 +631,8 @@ No available documentation. ") SetFirstLambda; void SetFirstLambda(const Standard_Real l1); - /****************** SetLastLambda ******************/ - /**** md5 signature: b34d15f9505b8355ba362a879a836d1a ****/ + /****** BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox::SetLastLambda ******/ + /****** md5 signature: b34d15f9505b8355ba362a879a836d1a ******/ %feature("compactdefaultargs") SetLastLambda; %feature("autodoc", " Parameters @@ -649,8 +649,8 @@ No available documentation. ") SetLastLambda; void SetLastLambda(const Standard_Real l2); - /****************** Value ******************/ - /**** md5 signature: 33f8b9f75d238865cc320f57ac729801 ****/ + /****** BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox::Value ******/ + /****** md5 signature: 33f8b9f75d238865cc320f57ac729801 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -667,8 +667,8 @@ This method computes the new approximation of the multiline ssp and calculates f ") Value; Standard_Boolean Value(const math_Vector & X, Standard_Real &OutValue); - /****************** Values ******************/ - /**** md5 signature: 66c7c08f6bec2933f700c6f45cf14285 ****/ + /****** BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox::Values ******/ + /****** md5 signature: 66c7c08f6bec2933f700c6f45cf14285 ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -700,8 +700,8 @@ Returns the value f=sum(||pui - bi*pi||)2. returns the value g = grad(f) for the *****************************************************************************/ class BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox { public: - /****************** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox ******************/ - /**** md5 signature: 7d9f95650b38892d69ea383796b7ac06 ****/ + /****** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox::BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox ******/ + /****** md5 signature: 7d9f95650b38892d69ea383796b7ac06 ******/ %feature("compactdefaultargs") BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox; %feature("autodoc", " Parameters @@ -724,8 +724,8 @@ Given a multiline, this algorithm computes the least square resolution using the ") BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox; BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox(const BRepApprox_TheMultiLineOfApprox & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const math_Vector & Parameters, const Standard_Integer NbPol); - /****************** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox ******************/ - /**** md5 signature: ed896d992fcd6877f972dd893988b683 ****/ + /****** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox::BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox ******/ + /****** md5 signature: ed896d992fcd6877f972dd893988b683 ******/ %feature("compactdefaultargs") BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox; %feature("autodoc", " Parameters @@ -747,8 +747,8 @@ Initializes the fields of the object. ") BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox; BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox(const BRepApprox_TheMultiLineOfApprox & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const Standard_Integer NbPol); - /****************** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox ******************/ - /**** md5 signature: 54d7cb68618ead710433102a8be8682a ****/ + /****** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox::BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox ******/ + /****** md5 signature: 54d7cb68618ead710433102a8be8682a ******/ %feature("compactdefaultargs") BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox; %feature("autodoc", " Parameters @@ -773,8 +773,8 @@ Given a multiline, this algorithm computes the least square resolution using the ") BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox; BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox(const BRepApprox_TheMultiLineOfApprox & SSP, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const math_Vector & Parameters, const Standard_Integer NbPol); - /****************** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox ******************/ - /**** md5 signature: 1daf31a668cb0e28d1e3be57fca0e751 ****/ + /****** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox::BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox ******/ + /****** md5 signature: 1daf31a668cb0e28d1e3be57fca0e751 ******/ %feature("compactdefaultargs") BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox; %feature("autodoc", " Parameters @@ -798,8 +798,8 @@ Initializes the fields of the object. ") BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox; BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox(const BRepApprox_TheMultiLineOfApprox & SSP, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const Standard_Integer NbPol); - /****************** BSplineValue ******************/ - /**** md5 signature: a38863f7c9b6fa566ee9fea09f971d5c ****/ + /****** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox::BSplineValue ******/ + /****** md5 signature: a38863f7c9b6fa566ee9fea09f971d5c ******/ %feature("compactdefaultargs") BSplineValue; %feature("autodoc", "Return ------- @@ -811,8 +811,8 @@ Returns the result of the approximation, i.e. all the curves. an exception is ra ") BSplineValue; AppParCurves_MultiBSpCurve BSplineValue(); - /****************** BezierValue ******************/ - /**** md5 signature: 2bbd29cb039e6bcdcdf61afe82651ac1 ****/ + /****** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox::BezierValue ******/ + /****** md5 signature: 2bbd29cb039e6bcdcdf61afe82651ac1 ******/ %feature("compactdefaultargs") BezierValue; %feature("autodoc", "Return ------- @@ -824,8 +824,8 @@ Returns the result of the approximation, i.e. all the curves. an exception is ra ") BezierValue; AppParCurves_MultiCurve BezierValue(); - /****************** DerivativeFunctionMatrix ******************/ - /**** md5 signature: c2dbca1da1c1c1aaf2ff7895be813eaf ****/ + /****** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox::DerivativeFunctionMatrix ******/ + /****** md5 signature: c2dbca1da1c1c1aaf2ff7895be813eaf ******/ %feature("compactdefaultargs") DerivativeFunctionMatrix; %feature("autodoc", "Return ------- @@ -837,8 +837,8 @@ Returns the derivative function matrix used to approximate the set. ") DerivativeFunctionMatrix; const math_Matrix & DerivativeFunctionMatrix(); - /****************** Distance ******************/ - /**** md5 signature: 608fad06f540e822f2b9f4d329c097b6 ****/ + /****** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox::Distance ******/ + /****** md5 signature: 608fad06f540e822f2b9f4d329c097b6 ******/ %feature("compactdefaultargs") Distance; %feature("autodoc", "Return ------- @@ -850,8 +850,8 @@ Returns the distances between the points of the multiline and the approximation ") Distance; const math_Matrix & Distance(); - /****************** Error ******************/ - /**** md5 signature: 7c05c0164fc88dbacc4d90d301fe7f12 ****/ + /****** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox::Error ******/ + /****** md5 signature: 7c05c0164fc88dbacc4d90d301fe7f12 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -869,8 +869,8 @@ Returns the maximum errors between the multiline and the approximation curves. f ") Error; void Error(Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** ErrorGradient ******************/ - /**** md5 signature: 3e5c3757aad8d0f394eda590c0bc62e3 ****/ + /****** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox::ErrorGradient ******/ + /****** md5 signature: 3e5c3757aad8d0f394eda590c0bc62e3 ******/ %feature("compactdefaultargs") ErrorGradient; %feature("autodoc", " Parameters @@ -889,8 +889,8 @@ Returns the maximum errors between the multiline and the approximation curves. f ") ErrorGradient; void ErrorGradient(math_Vector & Grad, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** FirstLambda ******************/ - /**** md5 signature: 87ad21cc13708c47c81704b38426d999 ****/ + /****** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox::FirstLambda ******/ + /****** md5 signature: 87ad21cc13708c47c81704b38426d999 ******/ %feature("compactdefaultargs") FirstLambda; %feature("autodoc", "Return ------- @@ -902,8 +902,8 @@ Returns the value (p2 - p1)/ v1 if the first point was a tangency point. ") FirstLambda; Standard_Real FirstLambda(); - /****************** FunctionMatrix ******************/ - /**** md5 signature: aec90dd003c289db9092eb79712677e1 ****/ + /****** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox::FunctionMatrix ******/ + /****** md5 signature: aec90dd003c289db9092eb79712677e1 ******/ %feature("compactdefaultargs") FunctionMatrix; %feature("autodoc", "Return ------- @@ -915,8 +915,8 @@ Returns the function matrix used to approximate the set. ") FunctionMatrix; const math_Matrix & FunctionMatrix(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -928,8 +928,8 @@ Returns true if all has been correctly done. ") IsDone; Standard_Boolean IsDone(); - /****************** KIndex ******************/ - /**** md5 signature: 2821052a9bfe72ec4f531ccb52a80ffb ****/ + /****** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox::KIndex ******/ + /****** md5 signature: 2821052a9bfe72ec4f531ccb52a80ffb ******/ %feature("compactdefaultargs") KIndex; %feature("autodoc", "Return ------- @@ -941,8 +941,8 @@ Returns the indexes of the first non null values of a and da. the values are non ") KIndex; const math_IntegerVector & KIndex(); - /****************** LastLambda ******************/ - /**** md5 signature: f7e26790258c4ab513bae9dd1a5955e1 ****/ + /****** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox::LastLambda ******/ + /****** md5 signature: f7e26790258c4ab513bae9dd1a5955e1 ******/ %feature("compactdefaultargs") LastLambda; %feature("autodoc", "Return ------- @@ -954,8 +954,8 @@ Returns the value (pn - pn-1)/ vn if the last point was a tangency point. ") LastLambda; Standard_Real LastLambda(); - /****************** Perform ******************/ - /**** md5 signature: 5b8f20d810ea57d5223b42dfd01410ad ****/ + /****** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox::Perform ******/ + /****** md5 signature: 5b8f20d810ea57d5223b42dfd01410ad ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -972,8 +972,8 @@ Is used after having initialized the fields. the case 'curvaturepoint' is not tr ") Perform; void Perform(const math_Vector & Parameters); - /****************** Perform ******************/ - /**** md5 signature: cbf083f2b8329680dc5a52f482f436ad ****/ + /****** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox::Perform ******/ + /****** md5 signature: cbf083f2b8329680dc5a52f482f436ad ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -992,8 +992,8 @@ Is used after having initialized the fields. ") Perform; void Perform(const math_Vector & Parameters, const Standard_Real l1, const Standard_Real l2); - /****************** Perform ******************/ - /**** md5 signature: 380f2440b07e3b3805c4eda2da2e8c6e ****/ + /****** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox::Perform ******/ + /****** md5 signature: 380f2440b07e3b3805c4eda2da2e8c6e ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1014,8 +1014,8 @@ Is used after having initialized the fields. is the tangent vector at the ") Perform; void Perform(const math_Vector & Parameters, const math_Vector & V1t, const math_Vector & V2t, const Standard_Real l1, const Standard_Real l2); - /****************** Perform ******************/ - /**** md5 signature: 5f7ecae6d947ca76138d939cdd616b0f ****/ + /****** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox::Perform ******/ + /****** md5 signature: 5f7ecae6d947ca76138d939cdd616b0f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1038,8 +1038,8 @@ Is used after having initialized the fields. is the tangent vector at the ") Perform; void Perform(const math_Vector & Parameters, const math_Vector & V1t, const math_Vector & V2t, const math_Vector & V1c, const math_Vector & V2c, const Standard_Real l1, const Standard_Real l2); - /****************** Points ******************/ - /**** md5 signature: 8a77545526c5096bca80b9c07f882412 ****/ + /****** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox::Points ******/ + /****** md5 signature: 8a77545526c5096bca80b9c07f882412 ******/ %feature("compactdefaultargs") Points; %feature("autodoc", "Return ------- @@ -1051,8 +1051,8 @@ Returns the matrix of points value. ") Points; const math_Matrix & Points(); - /****************** Poles ******************/ - /**** md5 signature: 1437a652beb857bd22c16de65cb18857 ****/ + /****** BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox::Poles ******/ + /****** md5 signature: 1437a652beb857bd22c16de65cb18857 ******/ %feature("compactdefaultargs") Poles; %feature("autodoc", "Return ------- @@ -1078,8 +1078,8 @@ Returns the matrix of resulting control points value. ***************************************************************************/ class BRepApprox_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfApprox : public math_BFGS { public: - /****************** BRepApprox_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfApprox ******************/ - /**** md5 signature: a882919bf6f4818f7c85495cfc3ed0e3 ****/ + /****** BRepApprox_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfApprox::BRepApprox_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfApprox ******/ + /****** md5 signature: a882919bf6f4818f7c85495cfc3ed0e3 ******/ %feature("compactdefaultargs") BRepApprox_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfApprox; %feature("autodoc", " Parameters @@ -1101,8 +1101,8 @@ No available documentation. ") BRepApprox_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfApprox; BRepApprox_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfApprox(math_MultipleVarFunctionWithGradient & F, const math_Vector & StartingPoint, const Standard_Real Tolerance3d, const Standard_Real Tolerance2d, const Standard_Real Eps, const Standard_Integer NbIterations = 200); - /****************** IsSolutionReached ******************/ - /**** md5 signature: a6c0da888a257bf852b40b8daf6526dc ****/ + /****** BRepApprox_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfApprox::IsSolutionReached ******/ + /****** md5 signature: a6c0da888a257bf852b40b8daf6526dc ******/ %feature("compactdefaultargs") IsSolutionReached; %feature("autodoc", " Parameters @@ -1133,8 +1133,8 @@ No available documentation. ************************************************************************/ class BRepApprox_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfApprox : public math_BFGS { public: - /****************** BRepApprox_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfApprox ******************/ - /**** md5 signature: 546c0cbcdb8b46db6c5066bcf0c3b9d4 ****/ + /****** BRepApprox_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfApprox::BRepApprox_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfApprox ******/ + /****** md5 signature: 546c0cbcdb8b46db6c5066bcf0c3b9d4 ******/ %feature("compactdefaultargs") BRepApprox_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfApprox; %feature("autodoc", " Parameters @@ -1156,8 +1156,8 @@ No available documentation. ") BRepApprox_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfApprox; BRepApprox_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfApprox(math_MultipleVarFunctionWithGradient & F, const math_Vector & StartingPoint, const Standard_Real Tolerance3d, const Standard_Real Tolerance2d, const Standard_Real Eps, const Standard_Integer NbIterations = 200); - /****************** IsSolutionReached ******************/ - /**** md5 signature: a6c0da888a257bf852b40b8daf6526dc ****/ + /****** BRepApprox_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfApprox::IsSolutionReached ******/ + /****** md5 signature: a6c0da888a257bf852b40b8daf6526dc ******/ %feature("compactdefaultargs") IsSolutionReached; %feature("autodoc", " Parameters @@ -1188,8 +1188,8 @@ No available documentation. **********************************************************/ class BRepApprox_MyBSplGradientOfTheComputeLineOfApprox { public: - /****************** BRepApprox_MyBSplGradientOfTheComputeLineOfApprox ******************/ - /**** md5 signature: 74aae5255d1c464d98317338f1ddd977 ****/ + /****** BRepApprox_MyBSplGradientOfTheComputeLineOfApprox::BRepApprox_MyBSplGradientOfTheComputeLineOfApprox ******/ + /****** md5 signature: 74aae5255d1c464d98317338f1ddd977 ******/ %feature("compactdefaultargs") BRepApprox_MyBSplGradientOfTheComputeLineOfApprox; %feature("autodoc", " Parameters @@ -1216,8 +1216,8 @@ Tries to minimize the sum (square(||qui - bi*pi||)) where pui describe the appro ") BRepApprox_MyBSplGradientOfTheComputeLineOfApprox; BRepApprox_MyBSplGradientOfTheComputeLineOfApprox(const BRepApprox_TheMultiLineOfApprox & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const opencascade::handle & TheConstraints, math_Vector & Parameters, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Integer Deg, const Standard_Real Tol3d, const Standard_Real Tol2d, const Standard_Integer NbIterations = 1); - /****************** BRepApprox_MyBSplGradientOfTheComputeLineOfApprox ******************/ - /**** md5 signature: 4460f494a9f34dc845cd63bbb5e64be2 ****/ + /****** BRepApprox_MyBSplGradientOfTheComputeLineOfApprox::BRepApprox_MyBSplGradientOfTheComputeLineOfApprox ******/ + /****** md5 signature: 4460f494a9f34dc845cd63bbb5e64be2 ******/ %feature("compactdefaultargs") BRepApprox_MyBSplGradientOfTheComputeLineOfApprox; %feature("autodoc", " Parameters @@ -1246,8 +1246,8 @@ Tries to minimize the sum (square(||qui - bi*pi||)) where pui describe the appro ") BRepApprox_MyBSplGradientOfTheComputeLineOfApprox; BRepApprox_MyBSplGradientOfTheComputeLineOfApprox(const BRepApprox_TheMultiLineOfApprox & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const opencascade::handle & TheConstraints, math_Vector & Parameters, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Integer Deg, const Standard_Real Tol3d, const Standard_Real Tol2d, const Standard_Integer NbIterations, const Standard_Real lambda1, const Standard_Real lambda2); - /****************** AverageError ******************/ - /**** md5 signature: 420f3b7884af8c019ac24a5fe5ae6ff8 ****/ + /****** BRepApprox_MyBSplGradientOfTheComputeLineOfApprox::AverageError ******/ + /****** md5 signature: 420f3b7884af8c019ac24a5fe5ae6ff8 ******/ %feature("compactdefaultargs") AverageError; %feature("autodoc", "Return ------- @@ -1259,8 +1259,8 @@ Returns the average error between the old and the new approximation. ") AverageError; Standard_Real AverageError(); - /****************** Error ******************/ - /**** md5 signature: 94d11b0fe58daf5df892c75e38905cde ****/ + /****** BRepApprox_MyBSplGradientOfTheComputeLineOfApprox::Error ******/ + /****** md5 signature: 94d11b0fe58daf5df892c75e38905cde ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -1277,8 +1277,8 @@ Returns the difference between the old and the new approximation. an exception i ") Error; Standard_Real Error(const Standard_Integer Index); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepApprox_MyBSplGradientOfTheComputeLineOfApprox::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -1290,8 +1290,8 @@ Returns true if all has been correctly done. ") IsDone; Standard_Boolean IsDone(); - /****************** MaxError2d ******************/ - /**** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ****/ + /****** BRepApprox_MyBSplGradientOfTheComputeLineOfApprox::MaxError2d ******/ + /****** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ******/ %feature("compactdefaultargs") MaxError2d; %feature("autodoc", "Return ------- @@ -1303,8 +1303,8 @@ Returns the maximum difference between the old and the new approximation. ") MaxError2d; Standard_Real MaxError2d(); - /****************** MaxError3d ******************/ - /**** md5 signature: c6ba463cdf4a0e426329b589363186b7 ****/ + /****** BRepApprox_MyBSplGradientOfTheComputeLineOfApprox::MaxError3d ******/ + /****** md5 signature: c6ba463cdf4a0e426329b589363186b7 ******/ %feature("compactdefaultargs") MaxError3d; %feature("autodoc", "Return ------- @@ -1316,8 +1316,8 @@ Returns the maximum difference between the old and the new approximation. ") MaxError3d; Standard_Real MaxError3d(); - /****************** Value ******************/ - /**** md5 signature: 35d2ee100f1a9fc11f00b074d7d3553e ****/ + /****** BRepApprox_MyBSplGradientOfTheComputeLineOfApprox::Value ******/ + /****** md5 signature: 35d2ee100f1a9fc11f00b074d7d3553e ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -1343,8 +1343,8 @@ Returns all the bspline curves approximating the multiline ssp after minimizatio ************************************************************/ class BRepApprox_MyGradientOfTheComputeLineBezierOfApprox { public: - /****************** BRepApprox_MyGradientOfTheComputeLineBezierOfApprox ******************/ - /**** md5 signature: 8693996965e51eac054b6488ab22bbc9 ****/ + /****** BRepApprox_MyGradientOfTheComputeLineBezierOfApprox::BRepApprox_MyGradientOfTheComputeLineBezierOfApprox ******/ + /****** md5 signature: 8693996965e51eac054b6488ab22bbc9 ******/ %feature("compactdefaultargs") BRepApprox_MyGradientOfTheComputeLineBezierOfApprox; %feature("autodoc", " Parameters @@ -1369,8 +1369,8 @@ Tries to minimize the sum (square(||qui - bi*pi||)) where pui describe the appro ") BRepApprox_MyGradientOfTheComputeLineBezierOfApprox; BRepApprox_MyGradientOfTheComputeLineBezierOfApprox(const BRepApprox_TheMultiLineOfApprox & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const opencascade::handle & TheConstraints, math_Vector & Parameters, const Standard_Integer Deg, const Standard_Real Tol3d, const Standard_Real Tol2d, const Standard_Integer NbIterations = 200); - /****************** AverageError ******************/ - /**** md5 signature: 420f3b7884af8c019ac24a5fe5ae6ff8 ****/ + /****** BRepApprox_MyGradientOfTheComputeLineBezierOfApprox::AverageError ******/ + /****** md5 signature: 420f3b7884af8c019ac24a5fe5ae6ff8 ******/ %feature("compactdefaultargs") AverageError; %feature("autodoc", "Return ------- @@ -1382,8 +1382,8 @@ Returns the average error between the old and the new approximation. ") AverageError; Standard_Real AverageError(); - /****************** Error ******************/ - /**** md5 signature: 94d11b0fe58daf5df892c75e38905cde ****/ + /****** BRepApprox_MyGradientOfTheComputeLineBezierOfApprox::Error ******/ + /****** md5 signature: 94d11b0fe58daf5df892c75e38905cde ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -1400,8 +1400,8 @@ Returns the difference between the old and the new approximation. an exception i ") Error; Standard_Real Error(const Standard_Integer Index); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepApprox_MyGradientOfTheComputeLineBezierOfApprox::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -1413,8 +1413,8 @@ Returns true if all has been correctly done. ") IsDone; Standard_Boolean IsDone(); - /****************** MaxError2d ******************/ - /**** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ****/ + /****** BRepApprox_MyGradientOfTheComputeLineBezierOfApprox::MaxError2d ******/ + /****** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ******/ %feature("compactdefaultargs") MaxError2d; %feature("autodoc", "Return ------- @@ -1426,8 +1426,8 @@ Returns the maximum difference between the old and the new approximation. ") MaxError2d; Standard_Real MaxError2d(); - /****************** MaxError3d ******************/ - /**** md5 signature: c6ba463cdf4a0e426329b589363186b7 ****/ + /****** BRepApprox_MyGradientOfTheComputeLineBezierOfApprox::MaxError3d ******/ + /****** md5 signature: c6ba463cdf4a0e426329b589363186b7 ******/ %feature("compactdefaultargs") MaxError3d; %feature("autodoc", "Return ------- @@ -1439,8 +1439,8 @@ Returns the maximum difference between the old and the new approximation. ") MaxError3d; Standard_Real MaxError3d(); - /****************** Value ******************/ - /**** md5 signature: dac7e49320bc0e9a268aeb92592734dc ****/ + /****** BRepApprox_MyGradientOfTheComputeLineBezierOfApprox::Value ******/ + /****** md5 signature: dac7e49320bc0e9a268aeb92592734dc ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -1466,8 +1466,8 @@ Returns all the bezier curves approximating the multiline ssp after minimization *********************************************************/ class BRepApprox_MyGradientbisOfTheComputeLineOfApprox { public: - /****************** BRepApprox_MyGradientbisOfTheComputeLineOfApprox ******************/ - /**** md5 signature: 10fa2f46a78f50fbbd545ab4bed91a1e ****/ + /****** BRepApprox_MyGradientbisOfTheComputeLineOfApprox::BRepApprox_MyGradientbisOfTheComputeLineOfApprox ******/ + /****** md5 signature: 10fa2f46a78f50fbbd545ab4bed91a1e ******/ %feature("compactdefaultargs") BRepApprox_MyGradientbisOfTheComputeLineOfApprox; %feature("autodoc", " Parameters @@ -1492,8 +1492,8 @@ Tries to minimize the sum (square(||qui - bi*pi||)) where pui describe the appro ") BRepApprox_MyGradientbisOfTheComputeLineOfApprox; BRepApprox_MyGradientbisOfTheComputeLineOfApprox(const BRepApprox_TheMultiLineOfApprox & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const opencascade::handle & TheConstraints, math_Vector & Parameters, const Standard_Integer Deg, const Standard_Real Tol3d, const Standard_Real Tol2d, const Standard_Integer NbIterations = 200); - /****************** AverageError ******************/ - /**** md5 signature: 420f3b7884af8c019ac24a5fe5ae6ff8 ****/ + /****** BRepApprox_MyGradientbisOfTheComputeLineOfApprox::AverageError ******/ + /****** md5 signature: 420f3b7884af8c019ac24a5fe5ae6ff8 ******/ %feature("compactdefaultargs") AverageError; %feature("autodoc", "Return ------- @@ -1505,8 +1505,8 @@ Returns the average error between the old and the new approximation. ") AverageError; Standard_Real AverageError(); - /****************** Error ******************/ - /**** md5 signature: 94d11b0fe58daf5df892c75e38905cde ****/ + /****** BRepApprox_MyGradientbisOfTheComputeLineOfApprox::Error ******/ + /****** md5 signature: 94d11b0fe58daf5df892c75e38905cde ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -1523,8 +1523,8 @@ Returns the difference between the old and the new approximation. an exception i ") Error; Standard_Real Error(const Standard_Integer Index); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepApprox_MyGradientbisOfTheComputeLineOfApprox::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -1536,8 +1536,8 @@ Returns true if all has been correctly done. ") IsDone; Standard_Boolean IsDone(); - /****************** MaxError2d ******************/ - /**** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ****/ + /****** BRepApprox_MyGradientbisOfTheComputeLineOfApprox::MaxError2d ******/ + /****** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ******/ %feature("compactdefaultargs") MaxError2d; %feature("autodoc", "Return ------- @@ -1549,8 +1549,8 @@ Returns the maximum difference between the old and the new approximation. ") MaxError2d; Standard_Real MaxError2d(); - /****************** MaxError3d ******************/ - /**** md5 signature: c6ba463cdf4a0e426329b589363186b7 ****/ + /****** BRepApprox_MyGradientbisOfTheComputeLineOfApprox::MaxError3d ******/ + /****** md5 signature: c6ba463cdf4a0e426329b589363186b7 ******/ %feature("compactdefaultargs") MaxError3d; %feature("autodoc", "Return ------- @@ -1562,8 +1562,8 @@ Returns the maximum difference between the old and the new approximation. ") MaxError3d; Standard_Real MaxError3d(); - /****************** Value ******************/ - /**** md5 signature: dac7e49320bc0e9a268aeb92592734dc ****/ + /****** BRepApprox_MyGradientbisOfTheComputeLineOfApprox::Value ******/ + /****** md5 signature: dac7e49320bc0e9a268aeb92592734dc ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -1589,8 +1589,8 @@ Returns all the bezier curves approximating the multiline ssp after minimization *************************************************************************/ class BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox : public math_MultipleVarFunctionWithGradient { public: - /****************** BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox ******************/ - /**** md5 signature: bff681b6be5a6a4e25fa90b5bd01acfb ****/ + /****** BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox::BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox ******/ + /****** md5 signature: bff681b6be5a6a4e25fa90b5bd01acfb ******/ %feature("compactdefaultargs") BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox; %feature("autodoc", " Parameters @@ -1612,8 +1612,8 @@ Initializes the fields of the function. the approximating curve has the desired ") BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox; BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox(const BRepApprox_TheMultiLineOfApprox & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const opencascade::handle & TheConstraints, const math_Vector & Parameters, const Standard_Integer Deg); - /****************** CurveValue ******************/ - /**** md5 signature: c2e2cb976554936214bdfe3487b0362c ****/ + /****** BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox::CurveValue ******/ + /****** md5 signature: c2e2cb976554936214bdfe3487b0362c ******/ %feature("compactdefaultargs") CurveValue; %feature("autodoc", "Return ------- @@ -1625,8 +1625,8 @@ Returns the multicurve approximating the set after computing the value f or grad ") CurveValue; AppParCurves_MultiCurve CurveValue(); - /****************** Error ******************/ - /**** md5 signature: 59bc36aa259ae04fcbc9c2a60fae6dfb ****/ + /****** BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox::Error ******/ + /****** md5 signature: 59bc36aa259ae04fcbc9c2a60fae6dfb ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -1644,8 +1644,8 @@ Returns the distance between the multipoint of range ipoint and the curve curvei ") Error; Standard_Real Error(const Standard_Integer IPoint, const Standard_Integer CurveIndex); - /****************** FirstConstraint ******************/ - /**** md5 signature: 6814c8615ee3f59417c740c77d2ce795 ****/ + /****** BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox::FirstConstraint ******/ + /****** md5 signature: 6814c8615ee3f59417c740c77d2ce795 ******/ %feature("compactdefaultargs") FirstConstraint; %feature("autodoc", " Parameters @@ -1663,8 +1663,8 @@ No available documentation. ") FirstConstraint; AppParCurves_Constraint FirstConstraint(const opencascade::handle & TheConstraints, const Standard_Integer FirstPoint); - /****************** Gradient ******************/ - /**** md5 signature: 5ee531ceab07ab216991e3bf02edf0f7 ****/ + /****** BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox::Gradient ******/ + /****** md5 signature: 5ee531ceab07ab216991e3bf02edf0f7 ******/ %feature("compactdefaultargs") Gradient; %feature("autodoc", " Parameters @@ -1682,8 +1682,8 @@ Returns the gradient g of the sum above for the parameters xi. ") Gradient; Standard_Boolean Gradient(const math_Vector & X, math_Vector & G); - /****************** LastConstraint ******************/ - /**** md5 signature: f3572ad2cc7e299a1f7b6cb9d14677cf ****/ + /****** BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox::LastConstraint ******/ + /****** md5 signature: f3572ad2cc7e299a1f7b6cb9d14677cf ******/ %feature("compactdefaultargs") LastConstraint; %feature("autodoc", " Parameters @@ -1701,8 +1701,8 @@ No available documentation. ") LastConstraint; AppParCurves_Constraint LastConstraint(const opencascade::handle & TheConstraints, const Standard_Integer LastPoint); - /****************** MaxError2d ******************/ - /**** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ****/ + /****** BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox::MaxError2d ******/ + /****** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ******/ %feature("compactdefaultargs") MaxError2d; %feature("autodoc", "Return ------- @@ -1714,8 +1714,8 @@ Returns the maximum distance between the points and the multicurve. ") MaxError2d; Standard_Real MaxError2d(); - /****************** MaxError3d ******************/ - /**** md5 signature: c6ba463cdf4a0e426329b589363186b7 ****/ + /****** BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox::MaxError3d ******/ + /****** md5 signature: c6ba463cdf4a0e426329b589363186b7 ******/ %feature("compactdefaultargs") MaxError3d; %feature("autodoc", "Return ------- @@ -1727,8 +1727,8 @@ Returns the maximum distance between the points and the multicurve. ") MaxError3d; Standard_Real MaxError3d(); - /****************** NbVariables ******************/ - /**** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ****/ + /****** BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox::NbVariables ******/ + /****** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -1740,8 +1740,8 @@ Returns the number of variables of the function. it corresponds to the number of ") NbVariables; Standard_Integer NbVariables(); - /****************** NewParameters ******************/ - /**** md5 signature: 1d606e7b2aa9813a84f6984ebdf52bb7 ****/ + /****** BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox::NewParameters ******/ + /****** md5 signature: 1d606e7b2aa9813a84f6984ebdf52bb7 ******/ %feature("compactdefaultargs") NewParameters; %feature("autodoc", "Return ------- @@ -1753,8 +1753,8 @@ Returns the new parameters of the multiline. ") NewParameters; const math_Vector & NewParameters(); - /****************** Value ******************/ - /**** md5 signature: 33f8b9f75d238865cc320f57ac729801 ****/ + /****** BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox::Value ******/ + /****** md5 signature: 33f8b9f75d238865cc320f57ac729801 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -1771,8 +1771,8 @@ This method computes the new approximation of the multiline ssp and calculates f ") Value; Standard_Boolean Value(const math_Vector & X, Standard_Real &OutValue); - /****************** Values ******************/ - /**** md5 signature: 66c7c08f6bec2933f700c6f45cf14285 ****/ + /****** BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox::Values ******/ + /****** md5 signature: 66c7c08f6bec2933f700c6f45cf14285 ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -1804,8 +1804,8 @@ Returns the value f=sum(||pui - bi*pi||)2. returns the value g = grad(f) for the **********************************************************************/ class BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox : public math_MultipleVarFunctionWithGradient { public: - /****************** BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox ******************/ - /**** md5 signature: 8b57a9539a2a4df5112bf9db1c1bdd18 ****/ + /****** BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox::BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox ******/ + /****** md5 signature: 8b57a9539a2a4df5112bf9db1c1bdd18 ******/ %feature("compactdefaultargs") BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox; %feature("autodoc", " Parameters @@ -1827,8 +1827,8 @@ Initializes the fields of the function. the approximating curve has the desired ") BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox; BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox(const BRepApprox_TheMultiLineOfApprox & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const opencascade::handle & TheConstraints, const math_Vector & Parameters, const Standard_Integer Deg); - /****************** CurveValue ******************/ - /**** md5 signature: c2e2cb976554936214bdfe3487b0362c ****/ + /****** BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox::CurveValue ******/ + /****** md5 signature: c2e2cb976554936214bdfe3487b0362c ******/ %feature("compactdefaultargs") CurveValue; %feature("autodoc", "Return ------- @@ -1840,8 +1840,8 @@ Returns the multicurve approximating the set after computing the value f or grad ") CurveValue; AppParCurves_MultiCurve CurveValue(); - /****************** Error ******************/ - /**** md5 signature: 59bc36aa259ae04fcbc9c2a60fae6dfb ****/ + /****** BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox::Error ******/ + /****** md5 signature: 59bc36aa259ae04fcbc9c2a60fae6dfb ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -1859,8 +1859,8 @@ Returns the distance between the multipoint of range ipoint and the curve curvei ") Error; Standard_Real Error(const Standard_Integer IPoint, const Standard_Integer CurveIndex); - /****************** FirstConstraint ******************/ - /**** md5 signature: 6814c8615ee3f59417c740c77d2ce795 ****/ + /****** BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox::FirstConstraint ******/ + /****** md5 signature: 6814c8615ee3f59417c740c77d2ce795 ******/ %feature("compactdefaultargs") FirstConstraint; %feature("autodoc", " Parameters @@ -1878,8 +1878,8 @@ No available documentation. ") FirstConstraint; AppParCurves_Constraint FirstConstraint(const opencascade::handle & TheConstraints, const Standard_Integer FirstPoint); - /****************** Gradient ******************/ - /**** md5 signature: 5ee531ceab07ab216991e3bf02edf0f7 ****/ + /****** BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox::Gradient ******/ + /****** md5 signature: 5ee531ceab07ab216991e3bf02edf0f7 ******/ %feature("compactdefaultargs") Gradient; %feature("autodoc", " Parameters @@ -1897,8 +1897,8 @@ Returns the gradient g of the sum above for the parameters xi. ") Gradient; Standard_Boolean Gradient(const math_Vector & X, math_Vector & G); - /****************** LastConstraint ******************/ - /**** md5 signature: f3572ad2cc7e299a1f7b6cb9d14677cf ****/ + /****** BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox::LastConstraint ******/ + /****** md5 signature: f3572ad2cc7e299a1f7b6cb9d14677cf ******/ %feature("compactdefaultargs") LastConstraint; %feature("autodoc", " Parameters @@ -1916,8 +1916,8 @@ No available documentation. ") LastConstraint; AppParCurves_Constraint LastConstraint(const opencascade::handle & TheConstraints, const Standard_Integer LastPoint); - /****************** MaxError2d ******************/ - /**** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ****/ + /****** BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox::MaxError2d ******/ + /****** md5 signature: 2590e15e02ab7eeda39345ef64189e30 ******/ %feature("compactdefaultargs") MaxError2d; %feature("autodoc", "Return ------- @@ -1929,8 +1929,8 @@ Returns the maximum distance between the points and the multicurve. ") MaxError2d; Standard_Real MaxError2d(); - /****************** MaxError3d ******************/ - /**** md5 signature: c6ba463cdf4a0e426329b589363186b7 ****/ + /****** BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox::MaxError3d ******/ + /****** md5 signature: c6ba463cdf4a0e426329b589363186b7 ******/ %feature("compactdefaultargs") MaxError3d; %feature("autodoc", "Return ------- @@ -1942,8 +1942,8 @@ Returns the maximum distance between the points and the multicurve. ") MaxError3d; Standard_Real MaxError3d(); - /****************** NbVariables ******************/ - /**** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ****/ + /****** BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox::NbVariables ******/ + /****** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -1955,8 +1955,8 @@ Returns the number of variables of the function. it corresponds to the number of ") NbVariables; Standard_Integer NbVariables(); - /****************** NewParameters ******************/ - /**** md5 signature: 1d606e7b2aa9813a84f6984ebdf52bb7 ****/ + /****** BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox::NewParameters ******/ + /****** md5 signature: 1d606e7b2aa9813a84f6984ebdf52bb7 ******/ %feature("compactdefaultargs") NewParameters; %feature("autodoc", "Return ------- @@ -1968,8 +1968,8 @@ Returns the new parameters of the multiline. ") NewParameters; const math_Vector & NewParameters(); - /****************** Value ******************/ - /**** md5 signature: 33f8b9f75d238865cc320f57ac729801 ****/ + /****** BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox::Value ******/ + /****** md5 signature: 33f8b9f75d238865cc320f57ac729801 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -1986,8 +1986,8 @@ This method computes the new approximation of the multiline ssp and calculates f ") Value; Standard_Boolean Value(const math_Vector & X, Standard_Real &OutValue); - /****************** Values ******************/ - /**** md5 signature: 66c7c08f6bec2933f700c6f45cf14285 ****/ + /****** BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox::Values ******/ + /****** md5 signature: 66c7c08f6bec2933f700c6f45cf14285 ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -2019,8 +2019,8 @@ Returns the value f=sum(||pui - bi*pi||)2. returns the value g = grad(f) for the ****************************************************************************/ class BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox { public: - /****************** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox ******************/ - /**** md5 signature: 63854fa8eaf1a59d1f6521f47cb949f4 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox::BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox ******/ + /****** md5 signature: 63854fa8eaf1a59d1f6521f47cb949f4 ******/ %feature("compactdefaultargs") BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox; %feature("autodoc", " Parameters @@ -2043,8 +2043,8 @@ Given a multiline, this algorithm computes the least square resolution using the ") BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox; BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox(const BRepApprox_TheMultiLineOfApprox & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const math_Vector & Parameters, const Standard_Integer NbPol); - /****************** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox ******************/ - /**** md5 signature: 13862a104259244c7e66c3cf257e5f13 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox::BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox ******/ + /****** md5 signature: 13862a104259244c7e66c3cf257e5f13 ******/ %feature("compactdefaultargs") BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox; %feature("autodoc", " Parameters @@ -2066,8 +2066,8 @@ Initializes the fields of the object. ") BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox; BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox(const BRepApprox_TheMultiLineOfApprox & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const Standard_Integer NbPol); - /****************** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox ******************/ - /**** md5 signature: 111e73f87885e55b085cf3e991ef150e ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox::BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox ******/ + /****** md5 signature: 111e73f87885e55b085cf3e991ef150e ******/ %feature("compactdefaultargs") BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox; %feature("autodoc", " Parameters @@ -2092,8 +2092,8 @@ Given a multiline, this algorithm computes the least square resolution using the ") BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox; BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox(const BRepApprox_TheMultiLineOfApprox & SSP, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const math_Vector & Parameters, const Standard_Integer NbPol); - /****************** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox ******************/ - /**** md5 signature: 0c7b493715ad0c1a97b3332bbc089cbb ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox::BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox ******/ + /****** md5 signature: 0c7b493715ad0c1a97b3332bbc089cbb ******/ %feature("compactdefaultargs") BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox; %feature("autodoc", " Parameters @@ -2117,8 +2117,8 @@ Initializes the fields of the object. ") BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox; BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox(const BRepApprox_TheMultiLineOfApprox & SSP, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const Standard_Integer NbPol); - /****************** BSplineValue ******************/ - /**** md5 signature: a38863f7c9b6fa566ee9fea09f971d5c ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox::BSplineValue ******/ + /****** md5 signature: a38863f7c9b6fa566ee9fea09f971d5c ******/ %feature("compactdefaultargs") BSplineValue; %feature("autodoc", "Return ------- @@ -2130,8 +2130,8 @@ Returns the result of the approximation, i.e. all the curves. an exception is ra ") BSplineValue; AppParCurves_MultiBSpCurve BSplineValue(); - /****************** BezierValue ******************/ - /**** md5 signature: 2bbd29cb039e6bcdcdf61afe82651ac1 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox::BezierValue ******/ + /****** md5 signature: 2bbd29cb039e6bcdcdf61afe82651ac1 ******/ %feature("compactdefaultargs") BezierValue; %feature("autodoc", "Return ------- @@ -2143,8 +2143,8 @@ Returns the result of the approximation, i.e. all the curves. an exception is ra ") BezierValue; AppParCurves_MultiCurve BezierValue(); - /****************** DerivativeFunctionMatrix ******************/ - /**** md5 signature: c2dbca1da1c1c1aaf2ff7895be813eaf ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox::DerivativeFunctionMatrix ******/ + /****** md5 signature: c2dbca1da1c1c1aaf2ff7895be813eaf ******/ %feature("compactdefaultargs") DerivativeFunctionMatrix; %feature("autodoc", "Return ------- @@ -2156,8 +2156,8 @@ Returns the derivative function matrix used to approximate the set. ") DerivativeFunctionMatrix; const math_Matrix & DerivativeFunctionMatrix(); - /****************** Distance ******************/ - /**** md5 signature: 608fad06f540e822f2b9f4d329c097b6 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox::Distance ******/ + /****** md5 signature: 608fad06f540e822f2b9f4d329c097b6 ******/ %feature("compactdefaultargs") Distance; %feature("autodoc", "Return ------- @@ -2169,8 +2169,8 @@ Returns the distances between the points of the multiline and the approximation ") Distance; const math_Matrix & Distance(); - /****************** Error ******************/ - /**** md5 signature: 7c05c0164fc88dbacc4d90d301fe7f12 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox::Error ******/ + /****** md5 signature: 7c05c0164fc88dbacc4d90d301fe7f12 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -2188,8 +2188,8 @@ Returns the maximum errors between the multiline and the approximation curves. f ") Error; void Error(Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** ErrorGradient ******************/ - /**** md5 signature: 3e5c3757aad8d0f394eda590c0bc62e3 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox::ErrorGradient ******/ + /****** md5 signature: 3e5c3757aad8d0f394eda590c0bc62e3 ******/ %feature("compactdefaultargs") ErrorGradient; %feature("autodoc", " Parameters @@ -2208,8 +2208,8 @@ Returns the maximum errors between the multiline and the approximation curves. f ") ErrorGradient; void ErrorGradient(math_Vector & Grad, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** FirstLambda ******************/ - /**** md5 signature: 87ad21cc13708c47c81704b38426d999 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox::FirstLambda ******/ + /****** md5 signature: 87ad21cc13708c47c81704b38426d999 ******/ %feature("compactdefaultargs") FirstLambda; %feature("autodoc", "Return ------- @@ -2221,8 +2221,8 @@ Returns the value (p2 - p1)/ v1 if the first point was a tangency point. ") FirstLambda; Standard_Real FirstLambda(); - /****************** FunctionMatrix ******************/ - /**** md5 signature: aec90dd003c289db9092eb79712677e1 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox::FunctionMatrix ******/ + /****** md5 signature: aec90dd003c289db9092eb79712677e1 ******/ %feature("compactdefaultargs") FunctionMatrix; %feature("autodoc", "Return ------- @@ -2234,8 +2234,8 @@ Returns the function matrix used to approximate the set. ") FunctionMatrix; const math_Matrix & FunctionMatrix(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -2247,8 +2247,8 @@ Returns true if all has been correctly done. ") IsDone; Standard_Boolean IsDone(); - /****************** KIndex ******************/ - /**** md5 signature: 2821052a9bfe72ec4f531ccb52a80ffb ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox::KIndex ******/ + /****** md5 signature: 2821052a9bfe72ec4f531ccb52a80ffb ******/ %feature("compactdefaultargs") KIndex; %feature("autodoc", "Return ------- @@ -2260,8 +2260,8 @@ Returns the indexes of the first non null values of a and da. the values are non ") KIndex; const math_IntegerVector & KIndex(); - /****************** LastLambda ******************/ - /**** md5 signature: f7e26790258c4ab513bae9dd1a5955e1 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox::LastLambda ******/ + /****** md5 signature: f7e26790258c4ab513bae9dd1a5955e1 ******/ %feature("compactdefaultargs") LastLambda; %feature("autodoc", "Return ------- @@ -2273,8 +2273,8 @@ Returns the value (pn - pn-1)/ vn if the last point was a tangency point. ") LastLambda; Standard_Real LastLambda(); - /****************** Perform ******************/ - /**** md5 signature: 5b8f20d810ea57d5223b42dfd01410ad ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox::Perform ******/ + /****** md5 signature: 5b8f20d810ea57d5223b42dfd01410ad ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2291,8 +2291,8 @@ Is used after having initialized the fields. the case 'curvaturepoint' is not tr ") Perform; void Perform(const math_Vector & Parameters); - /****************** Perform ******************/ - /**** md5 signature: cbf083f2b8329680dc5a52f482f436ad ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox::Perform ******/ + /****** md5 signature: cbf083f2b8329680dc5a52f482f436ad ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2311,8 +2311,8 @@ Is used after having initialized the fields. ") Perform; void Perform(const math_Vector & Parameters, const Standard_Real l1, const Standard_Real l2); - /****************** Perform ******************/ - /**** md5 signature: 380f2440b07e3b3805c4eda2da2e8c6e ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox::Perform ******/ + /****** md5 signature: 380f2440b07e3b3805c4eda2da2e8c6e ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2333,8 +2333,8 @@ Is used after having initialized the fields. is the tangent vector at the ") Perform; void Perform(const math_Vector & Parameters, const math_Vector & V1t, const math_Vector & V2t, const Standard_Real l1, const Standard_Real l2); - /****************** Perform ******************/ - /**** md5 signature: 5f7ecae6d947ca76138d939cdd616b0f ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox::Perform ******/ + /****** md5 signature: 5f7ecae6d947ca76138d939cdd616b0f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2357,8 +2357,8 @@ Is used after having initialized the fields. is the tangent vector at the ") Perform; void Perform(const math_Vector & Parameters, const math_Vector & V1t, const math_Vector & V2t, const math_Vector & V1c, const math_Vector & V2c, const Standard_Real l1, const Standard_Real l2); - /****************** Points ******************/ - /**** md5 signature: 8a77545526c5096bca80b9c07f882412 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox::Points ******/ + /****** md5 signature: 8a77545526c5096bca80b9c07f882412 ******/ %feature("compactdefaultargs") Points; %feature("autodoc", "Return ------- @@ -2370,8 +2370,8 @@ Returns the matrix of points value. ") Points; const math_Matrix & Points(); - /****************** Poles ******************/ - /**** md5 signature: 1437a652beb857bd22c16de65cb18857 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox::Poles ******/ + /****** md5 signature: 1437a652beb857bd22c16de65cb18857 ******/ %feature("compactdefaultargs") Poles; %feature("autodoc", "Return ------- @@ -2397,8 +2397,8 @@ Returns the matrix of resulting control points value. *************************************************************************/ class BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox { public: - /****************** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox ******************/ - /**** md5 signature: 3ac00deeb526d442bc1969e7ff78b1c3 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox::BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox ******/ + /****** md5 signature: 3ac00deeb526d442bc1969e7ff78b1c3 ******/ %feature("compactdefaultargs") BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox; %feature("autodoc", " Parameters @@ -2421,8 +2421,8 @@ Given a multiline, this algorithm computes the least square resolution using the ") BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox; BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox(const BRepApprox_TheMultiLineOfApprox & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const math_Vector & Parameters, const Standard_Integer NbPol); - /****************** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox ******************/ - /**** md5 signature: 76f12d56ace7dfc439e7e0354cf1bd1c ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox::BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox ******/ + /****** md5 signature: 76f12d56ace7dfc439e7e0354cf1bd1c ******/ %feature("compactdefaultargs") BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox; %feature("autodoc", " Parameters @@ -2444,8 +2444,8 @@ Initializes the fields of the object. ") BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox; BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox(const BRepApprox_TheMultiLineOfApprox & SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const Standard_Integer NbPol); - /****************** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox ******************/ - /**** md5 signature: 29e7f98ecf848591af511976103e0377 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox::BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox ******/ + /****** md5 signature: 29e7f98ecf848591af511976103e0377 ******/ %feature("compactdefaultargs") BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox; %feature("autodoc", " Parameters @@ -2470,8 +2470,8 @@ Given a multiline, this algorithm computes the least square resolution using the ") BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox; BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox(const BRepApprox_TheMultiLineOfApprox & SSP, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const math_Vector & Parameters, const Standard_Integer NbPol); - /****************** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox ******************/ - /**** md5 signature: d4db96f964b7c67c71af6a1ce55ab129 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox::BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox ******/ + /****** md5 signature: d4db96f964b7c67c71af6a1ce55ab129 ******/ %feature("compactdefaultargs") BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox; %feature("autodoc", " Parameters @@ -2495,8 +2495,8 @@ Initializes the fields of the object. ") BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox; BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox(const BRepApprox_TheMultiLineOfApprox & SSP, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const AppParCurves_Constraint FirstCons, const AppParCurves_Constraint LastCons, const Standard_Integer NbPol); - /****************** BSplineValue ******************/ - /**** md5 signature: a38863f7c9b6fa566ee9fea09f971d5c ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox::BSplineValue ******/ + /****** md5 signature: a38863f7c9b6fa566ee9fea09f971d5c ******/ %feature("compactdefaultargs") BSplineValue; %feature("autodoc", "Return ------- @@ -2508,8 +2508,8 @@ Returns the result of the approximation, i.e. all the curves. an exception is ra ") BSplineValue; AppParCurves_MultiBSpCurve BSplineValue(); - /****************** BezierValue ******************/ - /**** md5 signature: 2bbd29cb039e6bcdcdf61afe82651ac1 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox::BezierValue ******/ + /****** md5 signature: 2bbd29cb039e6bcdcdf61afe82651ac1 ******/ %feature("compactdefaultargs") BezierValue; %feature("autodoc", "Return ------- @@ -2521,8 +2521,8 @@ Returns the result of the approximation, i.e. all the curves. an exception is ra ") BezierValue; AppParCurves_MultiCurve BezierValue(); - /****************** DerivativeFunctionMatrix ******************/ - /**** md5 signature: c2dbca1da1c1c1aaf2ff7895be813eaf ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox::DerivativeFunctionMatrix ******/ + /****** md5 signature: c2dbca1da1c1c1aaf2ff7895be813eaf ******/ %feature("compactdefaultargs") DerivativeFunctionMatrix; %feature("autodoc", "Return ------- @@ -2534,8 +2534,8 @@ Returns the derivative function matrix used to approximate the set. ") DerivativeFunctionMatrix; const math_Matrix & DerivativeFunctionMatrix(); - /****************** Distance ******************/ - /**** md5 signature: 608fad06f540e822f2b9f4d329c097b6 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox::Distance ******/ + /****** md5 signature: 608fad06f540e822f2b9f4d329c097b6 ******/ %feature("compactdefaultargs") Distance; %feature("autodoc", "Return ------- @@ -2547,8 +2547,8 @@ Returns the distances between the points of the multiline and the approximation ") Distance; const math_Matrix & Distance(); - /****************** Error ******************/ - /**** md5 signature: 7c05c0164fc88dbacc4d90d301fe7f12 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox::Error ******/ + /****** md5 signature: 7c05c0164fc88dbacc4d90d301fe7f12 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -2566,8 +2566,8 @@ Returns the maximum errors between the multiline and the approximation curves. f ") Error; void Error(Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** ErrorGradient ******************/ - /**** md5 signature: 3e5c3757aad8d0f394eda590c0bc62e3 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox::ErrorGradient ******/ + /****** md5 signature: 3e5c3757aad8d0f394eda590c0bc62e3 ******/ %feature("compactdefaultargs") ErrorGradient; %feature("autodoc", " Parameters @@ -2586,8 +2586,8 @@ Returns the maximum errors between the multiline and the approximation curves. f ") ErrorGradient; void ErrorGradient(math_Vector & Grad, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** FirstLambda ******************/ - /**** md5 signature: 87ad21cc13708c47c81704b38426d999 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox::FirstLambda ******/ + /****** md5 signature: 87ad21cc13708c47c81704b38426d999 ******/ %feature("compactdefaultargs") FirstLambda; %feature("autodoc", "Return ------- @@ -2599,8 +2599,8 @@ Returns the value (p2 - p1)/ v1 if the first point was a tangency point. ") FirstLambda; Standard_Real FirstLambda(); - /****************** FunctionMatrix ******************/ - /**** md5 signature: aec90dd003c289db9092eb79712677e1 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox::FunctionMatrix ******/ + /****** md5 signature: aec90dd003c289db9092eb79712677e1 ******/ %feature("compactdefaultargs") FunctionMatrix; %feature("autodoc", "Return ------- @@ -2612,8 +2612,8 @@ Returns the function matrix used to approximate the set. ") FunctionMatrix; const math_Matrix & FunctionMatrix(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -2625,8 +2625,8 @@ Returns true if all has been correctly done. ") IsDone; Standard_Boolean IsDone(); - /****************** KIndex ******************/ - /**** md5 signature: 2821052a9bfe72ec4f531ccb52a80ffb ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox::KIndex ******/ + /****** md5 signature: 2821052a9bfe72ec4f531ccb52a80ffb ******/ %feature("compactdefaultargs") KIndex; %feature("autodoc", "Return ------- @@ -2638,8 +2638,8 @@ Returns the indexes of the first non null values of a and da. the values are non ") KIndex; const math_IntegerVector & KIndex(); - /****************** LastLambda ******************/ - /**** md5 signature: f7e26790258c4ab513bae9dd1a5955e1 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox::LastLambda ******/ + /****** md5 signature: f7e26790258c4ab513bae9dd1a5955e1 ******/ %feature("compactdefaultargs") LastLambda; %feature("autodoc", "Return ------- @@ -2651,8 +2651,8 @@ Returns the value (pn - pn-1)/ vn if the last point was a tangency point. ") LastLambda; Standard_Real LastLambda(); - /****************** Perform ******************/ - /**** md5 signature: 5b8f20d810ea57d5223b42dfd01410ad ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox::Perform ******/ + /****** md5 signature: 5b8f20d810ea57d5223b42dfd01410ad ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2669,8 +2669,8 @@ Is used after having initialized the fields. the case 'curvaturepoint' is not tr ") Perform; void Perform(const math_Vector & Parameters); - /****************** Perform ******************/ - /**** md5 signature: cbf083f2b8329680dc5a52f482f436ad ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox::Perform ******/ + /****** md5 signature: cbf083f2b8329680dc5a52f482f436ad ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2689,8 +2689,8 @@ Is used after having initialized the fields. ") Perform; void Perform(const math_Vector & Parameters, const Standard_Real l1, const Standard_Real l2); - /****************** Perform ******************/ - /**** md5 signature: 380f2440b07e3b3805c4eda2da2e8c6e ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox::Perform ******/ + /****** md5 signature: 380f2440b07e3b3805c4eda2da2e8c6e ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2711,8 +2711,8 @@ Is used after having initialized the fields. is the tangent vector at the ") Perform; void Perform(const math_Vector & Parameters, const math_Vector & V1t, const math_Vector & V2t, const Standard_Real l1, const Standard_Real l2); - /****************** Perform ******************/ - /**** md5 signature: 5f7ecae6d947ca76138d939cdd616b0f ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox::Perform ******/ + /****** md5 signature: 5f7ecae6d947ca76138d939cdd616b0f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2735,8 +2735,8 @@ Is used after having initialized the fields. is the tangent vector at the ") Perform; void Perform(const math_Vector & Parameters, const math_Vector & V1t, const math_Vector & V2t, const math_Vector & V1c, const math_Vector & V2c, const Standard_Real l1, const Standard_Real l2); - /****************** Points ******************/ - /**** md5 signature: 8a77545526c5096bca80b9c07f882412 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox::Points ******/ + /****** md5 signature: 8a77545526c5096bca80b9c07f882412 ******/ %feature("compactdefaultargs") Points; %feature("autodoc", "Return ------- @@ -2748,8 +2748,8 @@ Returns the matrix of points value. ") Points; const math_Matrix & Points(); - /****************** Poles ******************/ - /**** md5 signature: 1437a652beb857bd22c16de65cb18857 ****/ + /****** BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox::Poles ******/ + /****** md5 signature: 1437a652beb857bd22c16de65cb18857 ******/ %feature("compactdefaultargs") Poles; %feature("autodoc", "Return ------- @@ -2775,8 +2775,8 @@ Returns the matrix of resulting control points value. ***************************************************************************/ class BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox { public: - /****************** BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox ******************/ - /**** md5 signature: 99259d6924dc08d39374b51f073bcefa ****/ + /****** BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox::BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox ******/ + /****** md5 signature: 99259d6924dc08d39374b51f073bcefa ******/ %feature("compactdefaultargs") BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox; %feature("autodoc", " Parameters @@ -2800,8 +2800,8 @@ Given a multiline ssp with constraints points, this algorithm finds the best cur ") BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox; BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox(const BRepApprox_TheMultiLineOfApprox & SSP, AppParCurves_MultiCurve & SCurv, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const opencascade::handle & Constraints, const math_Matrix & Bern, const math_Matrix & DerivativeBern, const Standard_Real Tolerance = 1.0e-10); - /****************** ConstraintDerivative ******************/ - /**** md5 signature: e6efe1da7f8bd48fafb9318a027deeea ****/ + /****** BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox::ConstraintDerivative ******/ + /****** md5 signature: e6efe1da7f8bd48fafb9318a027deeea ******/ %feature("compactdefaultargs") ConstraintDerivative; %feature("autodoc", " Parameters @@ -2821,8 +2821,8 @@ Returns the derivative of the constraint matrix. ") ConstraintDerivative; const math_Matrix & ConstraintDerivative(const BRepApprox_TheMultiLineOfApprox & SSP, const math_Vector & Parameters, const Standard_Integer Deg, const math_Matrix & DA); - /****************** ConstraintMatrix ******************/ - /**** md5 signature: 22481357cd3fa297d87302ab5bf68ab7 ****/ + /****** BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox::ConstraintMatrix ******/ + /****** md5 signature: 22481357cd3fa297d87302ab5bf68ab7 ******/ %feature("compactdefaultargs") ConstraintMatrix; %feature("autodoc", "Return ------- @@ -2834,8 +2834,8 @@ No available documentation. ") ConstraintMatrix; const math_Matrix & ConstraintMatrix(); - /****************** Duale ******************/ - /**** md5 signature: fa2d61bba97045a52b936ca097de9f1b ****/ + /****** BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox::Duale ******/ + /****** md5 signature: fa2d61bba97045a52b936ca097de9f1b ******/ %feature("compactdefaultargs") Duale; %feature("autodoc", "Return ------- @@ -2847,8 +2847,8 @@ Returns the duale variables of the system. ") Duale; const math_Vector & Duale(); - /****************** InverseMatrix ******************/ - /**** md5 signature: 6c593c2bc8580243a5ff315f7f6a1f0e ****/ + /****** BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox::InverseMatrix ******/ + /****** md5 signature: 6c593c2bc8580243a5ff315f7f6a1f0e ******/ %feature("compactdefaultargs") InverseMatrix; %feature("autodoc", "Return ------- @@ -2860,8 +2860,8 @@ Returns the inverse of cont*transposed(cont), where cont is the constraint matri ") InverseMatrix; const math_Matrix & InverseMatrix(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -2891,8 +2891,8 @@ Returns true if all has been correctly done. ************************************************************************/ class BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox { public: - /****************** BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox ******************/ - /**** md5 signature: fb3d32286bcfc0e8b2a0d9780cdbeefd ****/ + /****** BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox::BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox ******/ + /****** md5 signature: fb3d32286bcfc0e8b2a0d9780cdbeefd ******/ %feature("compactdefaultargs") BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox; %feature("autodoc", " Parameters @@ -2916,8 +2916,8 @@ Given a multiline ssp with constraints points, this algorithm finds the best cur ") BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox; BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox(const BRepApprox_TheMultiLineOfApprox & SSP, AppParCurves_MultiCurve & SCurv, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const opencascade::handle & Constraints, const math_Matrix & Bern, const math_Matrix & DerivativeBern, const Standard_Real Tolerance = 1.0e-10); - /****************** ConstraintDerivative ******************/ - /**** md5 signature: e6efe1da7f8bd48fafb9318a027deeea ****/ + /****** BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox::ConstraintDerivative ******/ + /****** md5 signature: e6efe1da7f8bd48fafb9318a027deeea ******/ %feature("compactdefaultargs") ConstraintDerivative; %feature("autodoc", " Parameters @@ -2937,8 +2937,8 @@ Returns the derivative of the constraint matrix. ") ConstraintDerivative; const math_Matrix & ConstraintDerivative(const BRepApprox_TheMultiLineOfApprox & SSP, const math_Vector & Parameters, const Standard_Integer Deg, const math_Matrix & DA); - /****************** ConstraintMatrix ******************/ - /**** md5 signature: 22481357cd3fa297d87302ab5bf68ab7 ****/ + /****** BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox::ConstraintMatrix ******/ + /****** md5 signature: 22481357cd3fa297d87302ab5bf68ab7 ******/ %feature("compactdefaultargs") ConstraintMatrix; %feature("autodoc", "Return ------- @@ -2950,8 +2950,8 @@ No available documentation. ") ConstraintMatrix; const math_Matrix & ConstraintMatrix(); - /****************** Duale ******************/ - /**** md5 signature: fa2d61bba97045a52b936ca097de9f1b ****/ + /****** BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox::Duale ******/ + /****** md5 signature: fa2d61bba97045a52b936ca097de9f1b ******/ %feature("compactdefaultargs") Duale; %feature("autodoc", "Return ------- @@ -2963,8 +2963,8 @@ Returns the duale variables of the system. ") Duale; const math_Vector & Duale(); - /****************** InverseMatrix ******************/ - /**** md5 signature: 6c593c2bc8580243a5ff315f7f6a1f0e ****/ + /****** BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox::InverseMatrix ******/ + /****** md5 signature: 6c593c2bc8580243a5ff315f7f6a1f0e ******/ %feature("compactdefaultargs") InverseMatrix; %feature("autodoc", "Return ------- @@ -2976,8 +2976,8 @@ Returns the inverse of cont*transposed(cont), where cont is the constraint matri ") InverseMatrix; const math_Matrix & InverseMatrix(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -3007,8 +3007,8 @@ Returns true if all has been correctly done. *******************************/ class BRepApprox_SurfaceTool { public: - /****************** AxeOfRevolution ******************/ - /**** md5 signature: e74ddc82b514035b2ffd7f88d2b60038 ****/ + /****** BRepApprox_SurfaceTool::AxeOfRevolution ******/ + /****** md5 signature: e74ddc82b514035b2ffd7f88d2b60038 ******/ %feature("compactdefaultargs") AxeOfRevolution; %feature("autodoc", " Parameters @@ -3025,8 +3025,8 @@ No available documentation. ") AxeOfRevolution; static gp_Ax1 AxeOfRevolution(const BRepAdaptor_Surface & S); - /****************** BSpline ******************/ - /**** md5 signature: 8823cc18f3c251d3ffceeccbb2153a6e ****/ + /****** BRepApprox_SurfaceTool::BSpline ******/ + /****** md5 signature: 8823cc18f3c251d3ffceeccbb2153a6e ******/ %feature("compactdefaultargs") BSpline; %feature("autodoc", " Parameters @@ -3043,8 +3043,8 @@ No available documentation. ") BSpline; static opencascade::handle BSpline(const BRepAdaptor_Surface & S); - /****************** BasisCurve ******************/ - /**** md5 signature: e478db15ad97826612a335af3f6203d4 ****/ + /****** BRepApprox_SurfaceTool::BasisCurve ******/ + /****** md5 signature: e478db15ad97826612a335af3f6203d4 ******/ %feature("compactdefaultargs") BasisCurve; %feature("autodoc", " Parameters @@ -3061,8 +3061,8 @@ No available documentation. ") BasisCurve; static opencascade::handle BasisCurve(const BRepAdaptor_Surface & S); - /****************** Bezier ******************/ - /**** md5 signature: 62f42b64dcf4c9aa24777b580455fde2 ****/ + /****** BRepApprox_SurfaceTool::Bezier ******/ + /****** md5 signature: 62f42b64dcf4c9aa24777b580455fde2 ******/ %feature("compactdefaultargs") Bezier; %feature("autodoc", " Parameters @@ -3079,8 +3079,8 @@ No available documentation. ") Bezier; static opencascade::handle Bezier(const BRepAdaptor_Surface & S); - /****************** Cone ******************/ - /**** md5 signature: 60e200b1f39d35dabc589ba60baa4aca ****/ + /****** BRepApprox_SurfaceTool::Cone ******/ + /****** md5 signature: 60e200b1f39d35dabc589ba60baa4aca ******/ %feature("compactdefaultargs") Cone; %feature("autodoc", " Parameters @@ -3097,8 +3097,8 @@ No available documentation. ") Cone; static gp_Cone Cone(const BRepAdaptor_Surface & S); - /****************** Cylinder ******************/ - /**** md5 signature: bfaaa184a2452948fdd6ce69925769c3 ****/ + /****** BRepApprox_SurfaceTool::Cylinder ******/ + /****** md5 signature: bfaaa184a2452948fdd6ce69925769c3 ******/ %feature("compactdefaultargs") Cylinder; %feature("autodoc", " Parameters @@ -3115,8 +3115,8 @@ No available documentation. ") Cylinder; static gp_Cylinder Cylinder(const BRepAdaptor_Surface & S); - /****************** D0 ******************/ - /**** md5 signature: f6727a78f574aa9b66c39e1e96c68942 ****/ + /****** BRepApprox_SurfaceTool::D0 ******/ + /****** md5 signature: f6727a78f574aa9b66c39e1e96c68942 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -3136,8 +3136,8 @@ No available documentation. ") D0; static void D0(const BRepAdaptor_Surface & S, const Standard_Real u, const Standard_Real v, gp_Pnt & P); - /****************** D1 ******************/ - /**** md5 signature: 592559bc5aad46ba1e187df1e73ad838 ****/ + /****** BRepApprox_SurfaceTool::D1 ******/ + /****** md5 signature: 592559bc5aad46ba1e187df1e73ad838 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -3159,8 +3159,8 @@ No available documentation. ") D1; static void D1(const BRepAdaptor_Surface & S, const Standard_Real u, const Standard_Real v, gp_Pnt & P, gp_Vec & D1u, gp_Vec & D1v); - /****************** D2 ******************/ - /**** md5 signature: a71fc6f6361481ce024985ac00c43f2e ****/ + /****** BRepApprox_SurfaceTool::D2 ******/ + /****** md5 signature: a71fc6f6361481ce024985ac00c43f2e ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -3185,8 +3185,8 @@ No available documentation. ") D2; static void D2(const BRepAdaptor_Surface & S, const Standard_Real u, const Standard_Real v, gp_Pnt & P, gp_Vec & D1U, gp_Vec & D1V, gp_Vec & D2U, gp_Vec & D2V, gp_Vec & D2UV); - /****************** D3 ******************/ - /**** md5 signature: 93d118ed99ecd1fad00e03761b8d27f7 ****/ + /****** BRepApprox_SurfaceTool::D3 ******/ + /****** md5 signature: 93d118ed99ecd1fad00e03761b8d27f7 ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -3215,8 +3215,8 @@ No available documentation. ") D3; static void D3(const BRepAdaptor_Surface & S, const Standard_Real u, const Standard_Real v, gp_Pnt & P, gp_Vec & D1U, gp_Vec & D1V, gp_Vec & D2U, gp_Vec & D2V, gp_Vec & D2UV, gp_Vec & D3U, gp_Vec & D3V, gp_Vec & D3UUV, gp_Vec & D3UVV); - /****************** DN ******************/ - /**** md5 signature: d1b963467520172ef209df0b307bcadc ****/ + /****** BRepApprox_SurfaceTool::DN ******/ + /****** md5 signature: d1b963467520172ef209df0b307bcadc ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -3237,8 +3237,8 @@ No available documentation. ") DN; static gp_Vec DN(const BRepAdaptor_Surface & S, const Standard_Real u, const Standard_Real v, const Standard_Integer Nu, const Standard_Integer Nv); - /****************** Direction ******************/ - /**** md5 signature: fd02ced937782132e0e4554d6bbe3252 ****/ + /****** BRepApprox_SurfaceTool::Direction ******/ + /****** md5 signature: fd02ced937782132e0e4554d6bbe3252 ******/ %feature("compactdefaultargs") Direction; %feature("autodoc", " Parameters @@ -3255,8 +3255,8 @@ No available documentation. ") Direction; static gp_Dir Direction(const BRepAdaptor_Surface & S); - /****************** FirstUParameter ******************/ - /**** md5 signature: 215eefdde5b80a72e0c8d839d2b57409 ****/ + /****** BRepApprox_SurfaceTool::FirstUParameter ******/ + /****** md5 signature: 215eefdde5b80a72e0c8d839d2b57409 ******/ %feature("compactdefaultargs") FirstUParameter; %feature("autodoc", " Parameters @@ -3273,8 +3273,8 @@ No available documentation. ") FirstUParameter; static Standard_Real FirstUParameter(const BRepAdaptor_Surface & S); - /****************** FirstVParameter ******************/ - /**** md5 signature: 1f862d65413056d08b9c3704b06a0163 ****/ + /****** BRepApprox_SurfaceTool::FirstVParameter ******/ + /****** md5 signature: 1f862d65413056d08b9c3704b06a0163 ******/ %feature("compactdefaultargs") FirstVParameter; %feature("autodoc", " Parameters @@ -3291,8 +3291,8 @@ No available documentation. ") FirstVParameter; static Standard_Real FirstVParameter(const BRepAdaptor_Surface & S); - /****************** GetType ******************/ - /**** md5 signature: a6cd815bc857179031573432757ec63b ****/ + /****** BRepApprox_SurfaceTool::GetType ******/ + /****** md5 signature: a6cd815bc857179031573432757ec63b ******/ %feature("compactdefaultargs") GetType; %feature("autodoc", " Parameters @@ -3309,8 +3309,8 @@ No available documentation. ") GetType; static GeomAbs_SurfaceType GetType(const BRepAdaptor_Surface & S); - /****************** IsUClosed ******************/ - /**** md5 signature: 6352112928c9c27caadc94909335e74d ****/ + /****** BRepApprox_SurfaceTool::IsUClosed ******/ + /****** md5 signature: 6352112928c9c27caadc94909335e74d ******/ %feature("compactdefaultargs") IsUClosed; %feature("autodoc", " Parameters @@ -3327,8 +3327,8 @@ No available documentation. ") IsUClosed; static Standard_Boolean IsUClosed(const BRepAdaptor_Surface & S); - /****************** IsUPeriodic ******************/ - /**** md5 signature: f5b175e4f6dd57d65b7aa72c2941467e ****/ + /****** BRepApprox_SurfaceTool::IsUPeriodic ******/ + /****** md5 signature: f5b175e4f6dd57d65b7aa72c2941467e ******/ %feature("compactdefaultargs") IsUPeriodic; %feature("autodoc", " Parameters @@ -3345,8 +3345,8 @@ No available documentation. ") IsUPeriodic; static Standard_Boolean IsUPeriodic(const BRepAdaptor_Surface & S); - /****************** IsVClosed ******************/ - /**** md5 signature: d9c119797cf9f8b013e890abad3502ab ****/ + /****** BRepApprox_SurfaceTool::IsVClosed ******/ + /****** md5 signature: d9c119797cf9f8b013e890abad3502ab ******/ %feature("compactdefaultargs") IsVClosed; %feature("autodoc", " Parameters @@ -3363,8 +3363,8 @@ No available documentation. ") IsVClosed; static Standard_Boolean IsVClosed(const BRepAdaptor_Surface & S); - /****************** IsVPeriodic ******************/ - /**** md5 signature: 1e0af70e4e59762e37b38845553d100d ****/ + /****** BRepApprox_SurfaceTool::IsVPeriodic ******/ + /****** md5 signature: 1e0af70e4e59762e37b38845553d100d ******/ %feature("compactdefaultargs") IsVPeriodic; %feature("autodoc", " Parameters @@ -3381,8 +3381,8 @@ No available documentation. ") IsVPeriodic; static Standard_Boolean IsVPeriodic(const BRepAdaptor_Surface & S); - /****************** LastUParameter ******************/ - /**** md5 signature: 29020e982d52766d727d8ac302b0c02e ****/ + /****** BRepApprox_SurfaceTool::LastUParameter ******/ + /****** md5 signature: 29020e982d52766d727d8ac302b0c02e ******/ %feature("compactdefaultargs") LastUParameter; %feature("autodoc", " Parameters @@ -3399,8 +3399,8 @@ No available documentation. ") LastUParameter; static Standard_Real LastUParameter(const BRepAdaptor_Surface & S); - /****************** LastVParameter ******************/ - /**** md5 signature: c3df7f5e21991452c33bf232ce7d9562 ****/ + /****** BRepApprox_SurfaceTool::LastVParameter ******/ + /****** md5 signature: c3df7f5e21991452c33bf232ce7d9562 ******/ %feature("compactdefaultargs") LastVParameter; %feature("autodoc", " Parameters @@ -3417,8 +3417,8 @@ No available documentation. ") LastVParameter; static Standard_Real LastVParameter(const BRepAdaptor_Surface & S); - /****************** NbSamplesU ******************/ - /**** md5 signature: 9164ce7f9a16f7530e1e9750e637940d ****/ + /****** BRepApprox_SurfaceTool::NbSamplesU ******/ + /****** md5 signature: 9164ce7f9a16f7530e1e9750e637940d ******/ %feature("compactdefaultargs") NbSamplesU; %feature("autodoc", " Parameters @@ -3435,8 +3435,8 @@ No available documentation. ") NbSamplesU; static Standard_Integer NbSamplesU(const BRepAdaptor_Surface & S); - /****************** NbSamplesU ******************/ - /**** md5 signature: 8e4fac5817077b00af0164eaa2215b8b ****/ + /****** BRepApprox_SurfaceTool::NbSamplesU ******/ + /****** md5 signature: 8e4fac5817077b00af0164eaa2215b8b ******/ %feature("compactdefaultargs") NbSamplesU; %feature("autodoc", " Parameters @@ -3455,8 +3455,8 @@ No available documentation. ") NbSamplesU; static Standard_Integer NbSamplesU(const BRepAdaptor_Surface & S, const Standard_Real u1, const Standard_Real u2); - /****************** NbSamplesV ******************/ - /**** md5 signature: 86d363ec0f4f7e93676b703a15088c2d ****/ + /****** BRepApprox_SurfaceTool::NbSamplesV ******/ + /****** md5 signature: 86d363ec0f4f7e93676b703a15088c2d ******/ %feature("compactdefaultargs") NbSamplesV; %feature("autodoc", " Parameters @@ -3473,8 +3473,8 @@ No available documentation. ") NbSamplesV; static Standard_Integer NbSamplesV(const BRepAdaptor_Surface & S); - /****************** NbSamplesV ******************/ - /**** md5 signature: 54516aa4669245c8ce78f61e9ac5d717 ****/ + /****** BRepApprox_SurfaceTool::NbSamplesV ******/ + /****** md5 signature: 54516aa4669245c8ce78f61e9ac5d717 ******/ %feature("compactdefaultargs") NbSamplesV; %feature("autodoc", " Parameters @@ -3493,8 +3493,8 @@ No available documentation. ") NbSamplesV; static Standard_Integer NbSamplesV(const BRepAdaptor_Surface & S, const Standard_Real v1, const Standard_Real v2); - /****************** NbUIntervals ******************/ - /**** md5 signature: b5e43427d66fa95d633f0ee4dac920ea ****/ + /****** BRepApprox_SurfaceTool::NbUIntervals ******/ + /****** md5 signature: b5e43427d66fa95d633f0ee4dac920ea ******/ %feature("compactdefaultargs") NbUIntervals; %feature("autodoc", " Parameters @@ -3512,8 +3512,8 @@ No available documentation. ") NbUIntervals; static Standard_Integer NbUIntervals(const BRepAdaptor_Surface & S, const GeomAbs_Shape Sh); - /****************** NbVIntervals ******************/ - /**** md5 signature: 71031702e09c8708c0d4c82d81aa774c ****/ + /****** BRepApprox_SurfaceTool::NbVIntervals ******/ + /****** md5 signature: 71031702e09c8708c0d4c82d81aa774c ******/ %feature("compactdefaultargs") NbVIntervals; %feature("autodoc", " Parameters @@ -3531,8 +3531,8 @@ No available documentation. ") NbVIntervals; static Standard_Integer NbVIntervals(const BRepAdaptor_Surface & S, const GeomAbs_Shape Sh); - /****************** Plane ******************/ - /**** md5 signature: d0190f93fe1c317fbab00796fd96a8dc ****/ + /****** BRepApprox_SurfaceTool::Plane ******/ + /****** md5 signature: d0190f93fe1c317fbab00796fd96a8dc ******/ %feature("compactdefaultargs") Plane; %feature("autodoc", " Parameters @@ -3549,8 +3549,8 @@ No available documentation. ") Plane; static gp_Pln Plane(const BRepAdaptor_Surface & S); - /****************** Sphere ******************/ - /**** md5 signature: 7ea900cd4234a848efc1dc920aae1ebf ****/ + /****** BRepApprox_SurfaceTool::Sphere ******/ + /****** md5 signature: 7ea900cd4234a848efc1dc920aae1ebf ******/ %feature("compactdefaultargs") Sphere; %feature("autodoc", " Parameters @@ -3567,8 +3567,8 @@ No available documentation. ") Sphere; static gp_Sphere Sphere(const BRepAdaptor_Surface & S); - /****************** Torus ******************/ - /**** md5 signature: 2b2cfc6e29aa0d6a184ce0e0783a8465 ****/ + /****** BRepApprox_SurfaceTool::Torus ******/ + /****** md5 signature: 2b2cfc6e29aa0d6a184ce0e0783a8465 ******/ %feature("compactdefaultargs") Torus; %feature("autodoc", " Parameters @@ -3585,8 +3585,8 @@ No available documentation. ") Torus; static gp_Torus Torus(const BRepAdaptor_Surface & S); - /****************** UIntervals ******************/ - /**** md5 signature: fbe812da680c850950d7ed23300ce95c ****/ + /****** BRepApprox_SurfaceTool::UIntervals ******/ + /****** md5 signature: fbe812da680c850950d7ed23300ce95c ******/ %feature("compactdefaultargs") UIntervals; %feature("autodoc", " Parameters @@ -3605,8 +3605,8 @@ No available documentation. ") UIntervals; static void UIntervals(const BRepAdaptor_Surface & S, TColStd_Array1OfReal & T, const GeomAbs_Shape Sh); - /****************** UPeriod ******************/ - /**** md5 signature: 1426e6a3ff241c573f4f523c672fd425 ****/ + /****** BRepApprox_SurfaceTool::UPeriod ******/ + /****** md5 signature: 1426e6a3ff241c573f4f523c672fd425 ******/ %feature("compactdefaultargs") UPeriod; %feature("autodoc", " Parameters @@ -3623,8 +3623,8 @@ No available documentation. ") UPeriod; static Standard_Real UPeriod(const BRepAdaptor_Surface & S); - /****************** UResolution ******************/ - /**** md5 signature: d2dc7ef7ab08f98e32e14a9c42fc67d4 ****/ + /****** BRepApprox_SurfaceTool::UResolution ******/ + /****** md5 signature: d2dc7ef7ab08f98e32e14a9c42fc67d4 ******/ %feature("compactdefaultargs") UResolution; %feature("autodoc", " Parameters @@ -3642,8 +3642,8 @@ No available documentation. ") UResolution; static Standard_Real UResolution(const BRepAdaptor_Surface & S, const Standard_Real R3d); - /****************** UTrim ******************/ - /**** md5 signature: bdf57f0192f6ba6a046f6fd4b1f37b23 ****/ + /****** BRepApprox_SurfaceTool::UTrim ******/ + /****** md5 signature: bdf57f0192f6ba6a046f6fd4b1f37b23 ******/ %feature("compactdefaultargs") UTrim; %feature("autodoc", " Parameters @@ -3663,8 +3663,8 @@ If >= . ") UTrim; static opencascade::handle UTrim(const BRepAdaptor_Surface & S, const Standard_Real First, const Standard_Real Last, const Standard_Real Tol); - /****************** VIntervals ******************/ - /**** md5 signature: f8f1b75e1a214b4246fee76165c9ced2 ****/ + /****** BRepApprox_SurfaceTool::VIntervals ******/ + /****** md5 signature: f8f1b75e1a214b4246fee76165c9ced2 ******/ %feature("compactdefaultargs") VIntervals; %feature("autodoc", " Parameters @@ -3683,8 +3683,8 @@ No available documentation. ") VIntervals; static void VIntervals(const BRepAdaptor_Surface & S, TColStd_Array1OfReal & T, const GeomAbs_Shape Sh); - /****************** VPeriod ******************/ - /**** md5 signature: 76e1f053e14f3e5f4a44e609df017849 ****/ + /****** BRepApprox_SurfaceTool::VPeriod ******/ + /****** md5 signature: 76e1f053e14f3e5f4a44e609df017849 ******/ %feature("compactdefaultargs") VPeriod; %feature("autodoc", " Parameters @@ -3701,8 +3701,8 @@ No available documentation. ") VPeriod; static Standard_Real VPeriod(const BRepAdaptor_Surface & S); - /****************** VResolution ******************/ - /**** md5 signature: 774befbab33949449d55bbb78eb82b14 ****/ + /****** BRepApprox_SurfaceTool::VResolution ******/ + /****** md5 signature: 774befbab33949449d55bbb78eb82b14 ******/ %feature("compactdefaultargs") VResolution; %feature("autodoc", " Parameters @@ -3720,8 +3720,8 @@ No available documentation. ") VResolution; static Standard_Real VResolution(const BRepAdaptor_Surface & S, const Standard_Real R3d); - /****************** VTrim ******************/ - /**** md5 signature: 5d6a8558cceb08dff23363d72161ae0a ****/ + /****** BRepApprox_SurfaceTool::VTrim ******/ + /****** md5 signature: 5d6a8558cceb08dff23363d72161ae0a ******/ %feature("compactdefaultargs") VTrim; %feature("autodoc", " Parameters @@ -3741,8 +3741,8 @@ If >= . ") VTrim; static opencascade::handle VTrim(const BRepAdaptor_Surface & S, const Standard_Real First, const Standard_Real Last, const Standard_Real Tol); - /****************** Value ******************/ - /**** md5 signature: 99956c15b75117616c431d8c98ec8815 ****/ + /****** BRepApprox_SurfaceTool::Value ******/ + /****** md5 signature: 99956c15b75117616c431d8c98ec8815 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -3775,8 +3775,8 @@ No available documentation. ************************************************/ class BRepApprox_TheComputeLineBezierOfApprox { public: - /****************** BRepApprox_TheComputeLineBezierOfApprox ******************/ - /**** md5 signature: d31d365e1d6f25c58216a527367f35f3 ****/ + /****** BRepApprox_TheComputeLineBezierOfApprox::BRepApprox_TheComputeLineBezierOfApprox ******/ + /****** md5 signature: d31d365e1d6f25c58216a527367f35f3 ******/ %feature("compactdefaultargs") BRepApprox_TheComputeLineBezierOfApprox; %feature("autodoc", " Parameters @@ -3801,8 +3801,8 @@ The multiline will be approximated until tolerances will be reached. the ") BRepApprox_TheComputeLineBezierOfApprox; BRepApprox_TheComputeLineBezierOfApprox(const BRepApprox_TheMultiLineOfApprox & Line, const Standard_Integer degreemin = 4, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-3, const Standard_Real Tolerance2d = 1.0e-6, const Standard_Integer NbIterations = 5, const Standard_Boolean cutting = Standard_True, const Approx_ParametrizationType parametrization = Approx_ChordLength, const Standard_Boolean Squares = Standard_False); - /****************** BRepApprox_TheComputeLineBezierOfApprox ******************/ - /**** md5 signature: 5ce81f24eed0e783537a046f76c5aa51 ****/ + /****** BRepApprox_TheComputeLineBezierOfApprox::BRepApprox_TheComputeLineBezierOfApprox ******/ + /****** md5 signature: 5ce81f24eed0e783537a046f76c5aa51 ******/ %feature("compactdefaultargs") BRepApprox_TheComputeLineBezierOfApprox; %feature("autodoc", " Parameters @@ -3827,8 +3827,8 @@ The multiline will be approximated until tolerances will be reached. the ") BRepApprox_TheComputeLineBezierOfApprox; BRepApprox_TheComputeLineBezierOfApprox(const BRepApprox_TheMultiLineOfApprox & Line, const math_Vector & Parameters, const Standard_Integer degreemin = 4, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-03, const Standard_Real Tolerance2d = 1.0e-06, const Standard_Integer NbIterations = 5, const Standard_Boolean cutting = Standard_True, const Standard_Boolean Squares = Standard_False); - /****************** BRepApprox_TheComputeLineBezierOfApprox ******************/ - /**** md5 signature: e6393cd2ed1ebcee8edef58897732a18 ****/ + /****** BRepApprox_TheComputeLineBezierOfApprox::BRepApprox_TheComputeLineBezierOfApprox ******/ + /****** md5 signature: e6393cd2ed1ebcee8edef58897732a18 ******/ %feature("compactdefaultargs") BRepApprox_TheComputeLineBezierOfApprox; %feature("autodoc", " Parameters @@ -3852,8 +3852,8 @@ Initializes the fields of the algorithm. ") BRepApprox_TheComputeLineBezierOfApprox; BRepApprox_TheComputeLineBezierOfApprox(const math_Vector & Parameters, const Standard_Integer degreemin = 4, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-03, const Standard_Real Tolerance2d = 1.0e-06, const Standard_Integer NbIterations = 5, const Standard_Boolean cutting = Standard_True, const Standard_Boolean Squares = Standard_False); - /****************** BRepApprox_TheComputeLineBezierOfApprox ******************/ - /**** md5 signature: 26c9b30b638a7f29b682161b89c9230c ****/ + /****** BRepApprox_TheComputeLineBezierOfApprox::BRepApprox_TheComputeLineBezierOfApprox ******/ + /****** md5 signature: 26c9b30b638a7f29b682161b89c9230c ******/ %feature("compactdefaultargs") BRepApprox_TheComputeLineBezierOfApprox; %feature("autodoc", " Parameters @@ -3877,8 +3877,8 @@ Initializes the fields of the algorithm. ") BRepApprox_TheComputeLineBezierOfApprox; BRepApprox_TheComputeLineBezierOfApprox(const Standard_Integer degreemin = 4, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-03, const Standard_Real Tolerance2d = 1.0e-06, const Standard_Integer NbIterations = 5, const Standard_Boolean cutting = Standard_True, const Approx_ParametrizationType parametrization = Approx_ChordLength, const Standard_Boolean Squares = Standard_False); - /****************** ChangeValue ******************/ - /**** md5 signature: 141696e747a4846a7446e394b31644d5 ****/ + /****** BRepApprox_TheComputeLineBezierOfApprox::ChangeValue ******/ + /****** md5 signature: 141696e747a4846a7446e394b31644d5 ******/ %feature("compactdefaultargs") ChangeValue; %feature("autodoc", " Parameters @@ -3895,8 +3895,8 @@ Returns the result of the approximation. ") ChangeValue; AppParCurves_MultiCurve & ChangeValue(const Standard_Integer Index = 1); - /****************** Error ******************/ - /**** md5 signature: 6a8061230005ba951097d8b73e7dbec6 ****/ + /****** BRepApprox_TheComputeLineBezierOfApprox::Error ******/ + /****** md5 signature: 6a8061230005ba951097d8b73e7dbec6 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -3914,8 +3914,8 @@ Returns the tolerances 2d and 3d of the multicurve. ") Error; void Error(const Standard_Integer Index, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Init ******************/ - /**** md5 signature: 10f7f80e213a93740574c45700071b76 ****/ + /****** BRepApprox_TheComputeLineBezierOfApprox::Init ******/ + /****** md5 signature: 10f7f80e213a93740574c45700071b76 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -3939,8 +3939,8 @@ Initializes the fields of the algorithm. ") Init; void Init(const Standard_Integer degreemin = 4, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-03, const Standard_Real Tolerance2d = 1.0e-06, const Standard_Integer NbIterations = 5, const Standard_Boolean cutting = Standard_True, const Approx_ParametrizationType parametrization = Approx_ChordLength, const Standard_Boolean Squares = Standard_False); - /****************** IsAllApproximated ******************/ - /**** md5 signature: bf42a9f9ee3a867655d96a0c1fdcd853 ****/ + /****** BRepApprox_TheComputeLineBezierOfApprox::IsAllApproximated ******/ + /****** md5 signature: bf42a9f9ee3a867655d96a0c1fdcd853 ******/ %feature("compactdefaultargs") IsAllApproximated; %feature("autodoc", "Return ------- @@ -3952,8 +3952,8 @@ Returns false if at a moment of the approximation, the status noapproximation ha ") IsAllApproximated; Standard_Boolean IsAllApproximated(); - /****************** IsToleranceReached ******************/ - /**** md5 signature: cbd7380250e74c96655b10c8025eb873 ****/ + /****** BRepApprox_TheComputeLineBezierOfApprox::IsToleranceReached ******/ + /****** md5 signature: cbd7380250e74c96655b10c8025eb873 ******/ %feature("compactdefaultargs") IsToleranceReached; %feature("autodoc", "Return ------- @@ -3965,8 +3965,8 @@ Returns false if the status nopointsadded has been sent. ") IsToleranceReached; Standard_Boolean IsToleranceReached(); - /****************** NbMultiCurves ******************/ - /**** md5 signature: 944d4af40d93d46a8a3a888df2d8b388 ****/ + /****** BRepApprox_TheComputeLineBezierOfApprox::NbMultiCurves ******/ + /****** md5 signature: 944d4af40d93d46a8a3a888df2d8b388 ******/ %feature("compactdefaultargs") NbMultiCurves; %feature("autodoc", "Return ------- @@ -3978,8 +3978,8 @@ Returns the number of multicurve doing the approximation of the multiline. ") NbMultiCurves; Standard_Integer NbMultiCurves(); - /****************** Parameters ******************/ - /**** md5 signature: 457fc00b4795a877d025353e491bb905 ****/ + /****** BRepApprox_TheComputeLineBezierOfApprox::Parameters ******/ + /****** md5 signature: 457fc00b4795a877d025353e491bb905 ******/ %feature("compactdefaultargs") Parameters; %feature("autodoc", " Parameters @@ -3996,8 +3996,8 @@ Returns the new parameters of the approximation corresponding to the points of t ") Parameters; const TColStd_Array1OfReal & Parameters(const Standard_Integer Index = 1); - /****************** Parametrization ******************/ - /**** md5 signature: 28de4bdef662891658a0d7c12417a76f ****/ + /****** BRepApprox_TheComputeLineBezierOfApprox::Parametrization ******/ + /****** md5 signature: 28de4bdef662891658a0d7c12417a76f ******/ %feature("compactdefaultargs") Parametrization; %feature("autodoc", "Return ------- @@ -4009,8 +4009,8 @@ Returns the type of parametrization. ") Parametrization; Approx_ParametrizationType Parametrization(); - /****************** Perform ******************/ - /**** md5 signature: cc979eff0e4e2337b1fcdd453d833794 ****/ + /****** BRepApprox_TheComputeLineBezierOfApprox::Perform ******/ + /****** md5 signature: cc979eff0e4e2337b1fcdd453d833794 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -4027,8 +4027,8 @@ Runs the algorithm after having initialized the fields. ") Perform; void Perform(const BRepApprox_TheMultiLineOfApprox & Line); - /****************** SetConstraints ******************/ - /**** md5 signature: 99b92dc193142adf44568f800cd394dc ****/ + /****** BRepApprox_TheComputeLineBezierOfApprox::SetConstraints ******/ + /****** md5 signature: 99b92dc193142adf44568f800cd394dc ******/ %feature("compactdefaultargs") SetConstraints; %feature("autodoc", " Parameters @@ -4046,8 +4046,8 @@ Changes the first and the last constraint points. ") SetConstraints; void SetConstraints(const AppParCurves_Constraint firstC, const AppParCurves_Constraint lastC); - /****************** SetDegrees ******************/ - /**** md5 signature: 545fdd7d739fa58cc970e73d0413f8ef ****/ + /****** BRepApprox_TheComputeLineBezierOfApprox::SetDegrees ******/ + /****** md5 signature: 545fdd7d739fa58cc970e73d0413f8ef ******/ %feature("compactdefaultargs") SetDegrees; %feature("autodoc", " Parameters @@ -4065,8 +4065,8 @@ Changes the degrees of the approximation. ") SetDegrees; void SetDegrees(const Standard_Integer degreemin, const Standard_Integer degreemax); - /****************** SetTolerances ******************/ - /**** md5 signature: ce7879738ace848f7a3a27c56467be10 ****/ + /****** BRepApprox_TheComputeLineBezierOfApprox::SetTolerances ******/ + /****** md5 signature: ce7879738ace848f7a3a27c56467be10 ******/ %feature("compactdefaultargs") SetTolerances; %feature("autodoc", " Parameters @@ -4084,8 +4084,8 @@ Changes the tolerances of the approximation. ") SetTolerances; void SetTolerances(const Standard_Real Tolerance3d, const Standard_Real Tolerance2d); - /****************** SplineValue ******************/ - /**** md5 signature: 8abd3bdfb130cc23332c1960701072a6 ****/ + /****** BRepApprox_TheComputeLineBezierOfApprox::SplineValue ******/ + /****** md5 signature: 8abd3bdfb130cc23332c1960701072a6 ******/ %feature("compactdefaultargs") SplineValue; %feature("autodoc", "Return ------- @@ -4097,8 +4097,8 @@ Returns the result of the approximation. ") SplineValue; AppParCurves_MultiBSpCurve SplineValue(); - /****************** Value ******************/ - /**** md5 signature: ce9a9d43a5aa1f3754abfba817bb7838 ****/ + /****** BRepApprox_TheComputeLineBezierOfApprox::Value ******/ + /****** md5 signature: ce9a9d43a5aa1f3754abfba817bb7838 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -4129,8 +4129,8 @@ Returns the result of the approximation. ******************************************/ class BRepApprox_TheComputeLineOfApprox { public: - /****************** BRepApprox_TheComputeLineOfApprox ******************/ - /**** md5 signature: 9a6d3c8c47cf418e6f4f046d4cf9f79d ****/ + /****** BRepApprox_TheComputeLineOfApprox::BRepApprox_TheComputeLineOfApprox ******/ + /****** md5 signature: 9a6d3c8c47cf418e6f4f046d4cf9f79d ******/ %feature("compactdefaultargs") BRepApprox_TheComputeLineOfApprox; %feature("autodoc", " Parameters @@ -4155,8 +4155,8 @@ The multiline will be approximated until tolerances will be reached. the ") BRepApprox_TheComputeLineOfApprox; BRepApprox_TheComputeLineOfApprox(const BRepApprox_TheMultiLineOfApprox & Line, const Standard_Integer degreemin = 4, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-3, const Standard_Real Tolerance2d = 1.0e-6, const Standard_Integer NbIterations = 5, const Standard_Boolean cutting = Standard_True, const Approx_ParametrizationType parametrization = Approx_ChordLength, const Standard_Boolean Squares = Standard_False); - /****************** BRepApprox_TheComputeLineOfApprox ******************/ - /**** md5 signature: f9a03ed8ef6cd6bf796c5329d942956b ****/ + /****** BRepApprox_TheComputeLineOfApprox::BRepApprox_TheComputeLineOfApprox ******/ + /****** md5 signature: f9a03ed8ef6cd6bf796c5329d942956b ******/ %feature("compactdefaultargs") BRepApprox_TheComputeLineOfApprox; %feature("autodoc", " Parameters @@ -4181,8 +4181,8 @@ The multiline will be approximated until tolerances will be reached. the ") BRepApprox_TheComputeLineOfApprox; BRepApprox_TheComputeLineOfApprox(const BRepApprox_TheMultiLineOfApprox & Line, const math_Vector & Parameters, const Standard_Integer degreemin = 4, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-03, const Standard_Real Tolerance2d = 1.0e-06, const Standard_Integer NbIterations = 5, const Standard_Boolean cutting = Standard_True, const Standard_Boolean Squares = Standard_False); - /****************** BRepApprox_TheComputeLineOfApprox ******************/ - /**** md5 signature: 3f471de7553798c720ada1908a2f8324 ****/ + /****** BRepApprox_TheComputeLineOfApprox::BRepApprox_TheComputeLineOfApprox ******/ + /****** md5 signature: 3f471de7553798c720ada1908a2f8324 ******/ %feature("compactdefaultargs") BRepApprox_TheComputeLineOfApprox; %feature("autodoc", " Parameters @@ -4206,8 +4206,8 @@ Initializes the fields of the algorithm. ") BRepApprox_TheComputeLineOfApprox; BRepApprox_TheComputeLineOfApprox(const math_Vector & Parameters, const Standard_Integer degreemin = 4, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-03, const Standard_Real Tolerance2d = 1.0e-06, const Standard_Integer NbIterations = 5, const Standard_Boolean cutting = Standard_True, const Standard_Boolean Squares = Standard_False); - /****************** BRepApprox_TheComputeLineOfApprox ******************/ - /**** md5 signature: d8f49093a0f2f316909086b8720f3947 ****/ + /****** BRepApprox_TheComputeLineOfApprox::BRepApprox_TheComputeLineOfApprox ******/ + /****** md5 signature: d8f49093a0f2f316909086b8720f3947 ******/ %feature("compactdefaultargs") BRepApprox_TheComputeLineOfApprox; %feature("autodoc", " Parameters @@ -4231,8 +4231,8 @@ Initializes the fields of the algorithm. ") BRepApprox_TheComputeLineOfApprox; BRepApprox_TheComputeLineOfApprox(const Standard_Integer degreemin = 4, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-03, const Standard_Real Tolerance2d = 1.0e-06, const Standard_Integer NbIterations = 5, const Standard_Boolean cutting = Standard_True, const Approx_ParametrizationType parametrization = Approx_ChordLength, const Standard_Boolean Squares = Standard_False); - /****************** ChangeValue ******************/ - /**** md5 signature: afc5e23129509014348d63bb72db41ec ****/ + /****** BRepApprox_TheComputeLineOfApprox::ChangeValue ******/ + /****** md5 signature: afc5e23129509014348d63bb72db41ec ******/ %feature("compactdefaultargs") ChangeValue; %feature("autodoc", "Return ------- @@ -4244,8 +4244,8 @@ Returns the result of the approximation. ") ChangeValue; AppParCurves_MultiBSpCurve & ChangeValue(); - /****************** Error ******************/ - /**** md5 signature: cda70ea4f3f90e8bdc1d9692db9c77b8 ****/ + /****** BRepApprox_TheComputeLineOfApprox::Error ******/ + /****** md5 signature: cda70ea4f3f90e8bdc1d9692db9c77b8 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -4262,8 +4262,8 @@ Returns the tolerances 2d and 3d of the multibspcurve. ") Error; void Error(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Init ******************/ - /**** md5 signature: 10f7f80e213a93740574c45700071b76 ****/ + /****** BRepApprox_TheComputeLineOfApprox::Init ******/ + /****** md5 signature: 10f7f80e213a93740574c45700071b76 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -4287,8 +4287,8 @@ Initializes the fields of the algorithm. ") Init; void Init(const Standard_Integer degreemin = 4, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-03, const Standard_Real Tolerance2d = 1.0e-06, const Standard_Integer NbIterations = 5, const Standard_Boolean cutting = Standard_True, const Approx_ParametrizationType parametrization = Approx_ChordLength, const Standard_Boolean Squares = Standard_False); - /****************** Interpol ******************/ - /**** md5 signature: dedf9a1871046c1f521092aee0a9a8a9 ****/ + /****** BRepApprox_TheComputeLineOfApprox::Interpol ******/ + /****** md5 signature: dedf9a1871046c1f521092aee0a9a8a9 ******/ %feature("compactdefaultargs") Interpol; %feature("autodoc", " Parameters @@ -4305,8 +4305,8 @@ Constructs an interpolation of the multiline the result will be a c2 curv ") Interpol; void Interpol(const BRepApprox_TheMultiLineOfApprox & Line); - /****************** IsAllApproximated ******************/ - /**** md5 signature: bf42a9f9ee3a867655d96a0c1fdcd853 ****/ + /****** BRepApprox_TheComputeLineOfApprox::IsAllApproximated ******/ + /****** md5 signature: bf42a9f9ee3a867655d96a0c1fdcd853 ******/ %feature("compactdefaultargs") IsAllApproximated; %feature("autodoc", "Return ------- @@ -4318,8 +4318,8 @@ Returns false if at a moment of the approximation, the status noapproximation ha ") IsAllApproximated; Standard_Boolean IsAllApproximated(); - /****************** IsToleranceReached ******************/ - /**** md5 signature: cbd7380250e74c96655b10c8025eb873 ****/ + /****** BRepApprox_TheComputeLineOfApprox::IsToleranceReached ******/ + /****** md5 signature: cbd7380250e74c96655b10c8025eb873 ******/ %feature("compactdefaultargs") IsToleranceReached; %feature("autodoc", "Return ------- @@ -4331,8 +4331,8 @@ Returns false if the status nopointsadded has been sent. ") IsToleranceReached; Standard_Boolean IsToleranceReached(); - /****************** Parameters ******************/ - /**** md5 signature: 7c84e53bc11f80fb0f3c0e787e4b026e ****/ + /****** BRepApprox_TheComputeLineOfApprox::Parameters ******/ + /****** md5 signature: 7c84e53bc11f80fb0f3c0e787e4b026e ******/ %feature("compactdefaultargs") Parameters; %feature("autodoc", "Return ------- @@ -4344,8 +4344,8 @@ Returns the new parameters of the approximation corresponding to the points of t ") Parameters; const TColStd_Array1OfReal & Parameters(); - /****************** Perform ******************/ - /**** md5 signature: cc979eff0e4e2337b1fcdd453d833794 ****/ + /****** BRepApprox_TheComputeLineOfApprox::Perform ******/ + /****** md5 signature: cc979eff0e4e2337b1fcdd453d833794 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -4362,8 +4362,8 @@ Runs the algorithm after having initialized the fields. ") Perform; void Perform(const BRepApprox_TheMultiLineOfApprox & Line); - /****************** SetConstraints ******************/ - /**** md5 signature: 99b92dc193142adf44568f800cd394dc ****/ + /****** BRepApprox_TheComputeLineOfApprox::SetConstraints ******/ + /****** md5 signature: 99b92dc193142adf44568f800cd394dc ******/ %feature("compactdefaultargs") SetConstraints; %feature("autodoc", " Parameters @@ -4381,8 +4381,8 @@ Changes the first and the last constraint points. ") SetConstraints; void SetConstraints(const AppParCurves_Constraint firstC, const AppParCurves_Constraint lastC); - /****************** SetContinuity ******************/ - /**** md5 signature: 004921b69180f9ee5c70f476a9b25f44 ****/ + /****** BRepApprox_TheComputeLineOfApprox::SetContinuity ******/ + /****** md5 signature: 004921b69180f9ee5c70f476a9b25f44 ******/ %feature("compactdefaultargs") SetContinuity; %feature("autodoc", " Parameters @@ -4399,8 +4399,8 @@ Sets the continuity of the spline. if c = 2, the spline will be c2. ") SetContinuity; void SetContinuity(const Standard_Integer C); - /****************** SetDegrees ******************/ - /**** md5 signature: 545fdd7d739fa58cc970e73d0413f8ef ****/ + /****** BRepApprox_TheComputeLineOfApprox::SetDegrees ******/ + /****** md5 signature: 545fdd7d739fa58cc970e73d0413f8ef ******/ %feature("compactdefaultargs") SetDegrees; %feature("autodoc", " Parameters @@ -4418,8 +4418,8 @@ Changes the degrees of the approximation. ") SetDegrees; void SetDegrees(const Standard_Integer degreemin, const Standard_Integer degreemax); - /****************** SetKnots ******************/ - /**** md5 signature: 81377d2824af79de90394b654e5ac494 ****/ + /****** BRepApprox_TheComputeLineOfApprox::SetKnots ******/ + /****** md5 signature: 81377d2824af79de90394b654e5ac494 ******/ %feature("compactdefaultargs") SetKnots; %feature("autodoc", " Parameters @@ -4436,8 +4436,8 @@ The approximation will be done with the set of knots . the multiplicities ") SetKnots; void SetKnots(const TColStd_Array1OfReal & Knots); - /****************** SetKnotsAndMultiplicities ******************/ - /**** md5 signature: 78291c57c68644dfe7114ee9a585b271 ****/ + /****** BRepApprox_TheComputeLineOfApprox::SetKnotsAndMultiplicities ******/ + /****** md5 signature: 78291c57c68644dfe7114ee9a585b271 ******/ %feature("compactdefaultargs") SetKnotsAndMultiplicities; %feature("autodoc", " Parameters @@ -4455,8 +4455,8 @@ The approximation will be done with the set of knots and the multiplicit ") SetKnotsAndMultiplicities; void SetKnotsAndMultiplicities(const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults); - /****************** SetParameters ******************/ - /**** md5 signature: b1eab3f1f1c8f0892e7a87810e5892e3 ****/ + /****** BRepApprox_TheComputeLineOfApprox::SetParameters ******/ + /****** md5 signature: b1eab3f1f1c8f0892e7a87810e5892e3 ******/ %feature("compactdefaultargs") SetParameters; %feature("autodoc", " Parameters @@ -4473,8 +4473,8 @@ The approximation will begin with the set of parameters . ") SetParameters; void SetParameters(const math_Vector & ThePar); - /****************** SetPeriodic ******************/ - /**** md5 signature: 3109823bbe448d62437b44b39b4d9b19 ****/ + /****** BRepApprox_TheComputeLineOfApprox::SetPeriodic ******/ + /****** md5 signature: 3109823bbe448d62437b44b39b4d9b19 ******/ %feature("compactdefaultargs") SetPeriodic; %feature("autodoc", " Parameters @@ -4491,8 +4491,8 @@ Sets periodic flag. if theperiodic = standard_true, algorithm tries to build per ") SetPeriodic; void SetPeriodic(const Standard_Boolean thePeriodic); - /****************** SetTolerances ******************/ - /**** md5 signature: ce7879738ace848f7a3a27c56467be10 ****/ + /****** BRepApprox_TheComputeLineOfApprox::SetTolerances ******/ + /****** md5 signature: ce7879738ace848f7a3a27c56467be10 ******/ %feature("compactdefaultargs") SetTolerances; %feature("autodoc", " Parameters @@ -4510,8 +4510,8 @@ Changes the tolerances of the approximation. ") SetTolerances; void SetTolerances(const Standard_Real Tolerance3d, const Standard_Real Tolerance2d); - /****************** Value ******************/ - /**** md5 signature: c818c96a9a832640b6267a997c4dbd3b ****/ + /****** BRepApprox_TheComputeLineOfApprox::Value ******/ + /****** md5 signature: c818c96a9a832640b6267a997c4dbd3b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -4537,8 +4537,8 @@ Returns the result of the approximation. **********************************************************************/ class BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox : public math_FunctionSetWithDerivatives { public: - /****************** BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox ******************/ - /**** md5 signature: fd1150e117774d6c220dfd74355e5440 ****/ + /****** BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox::BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox ******/ + /****** md5 signature: fd1150e117774d6c220dfd74355e5440 ******/ %feature("compactdefaultargs") BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox; %feature("autodoc", " Parameters @@ -4556,8 +4556,8 @@ No available documentation. ") BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox; BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox(const BRepAdaptor_Surface & S1, const BRepAdaptor_Surface & S2); - /****************** AuxillarSurface1 ******************/ - /**** md5 signature: 35d4a58811ea11f385418cfaab72d7ba ****/ + /****** BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox::AuxillarSurface1 ******/ + /****** md5 signature: 35d4a58811ea11f385418cfaab72d7ba ******/ %feature("compactdefaultargs") AuxillarSurface1; %feature("autodoc", "Return ------- @@ -4569,8 +4569,8 @@ No available documentation. ") AuxillarSurface1; BRepAdaptor_Surface AuxillarSurface1(); - /****************** AuxillarSurface2 ******************/ - /**** md5 signature: 6195097157048ebf7856e69ebf2099cb ****/ + /****** BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox::AuxillarSurface2 ******/ + /****** md5 signature: 6195097157048ebf7856e69ebf2099cb ******/ %feature("compactdefaultargs") AuxillarSurface2; %feature("autodoc", "Return ------- @@ -4582,8 +4582,8 @@ No available documentation. ") AuxillarSurface2; BRepAdaptor_Surface AuxillarSurface2(); - /****************** ComputeParameters ******************/ - /**** md5 signature: 5686d6c4ca7c470ce5a820727bd25544 ****/ + /****** BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox::ComputeParameters ******/ + /****** md5 signature: 5686d6c4ca7c470ce5a820727bd25544 ******/ %feature("compactdefaultargs") ComputeParameters; %feature("autodoc", " Parameters @@ -4605,8 +4605,8 @@ No available documentation. ") ComputeParameters; void ComputeParameters(const IntImp_ConstIsoparametric ChoixIso, const TColStd_Array1OfReal & Param, math_Vector & UVap, math_Vector & BornInf, math_Vector & BornSup, math_Vector & Tolerance); - /****************** Derivatives ******************/ - /**** md5 signature: 80ee5f16e62731c095910ad60228848b ****/ + /****** BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox::Derivatives ******/ + /****** md5 signature: 80ee5f16e62731c095910ad60228848b ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -4624,8 +4624,8 @@ No available documentation. ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** Direction ******************/ - /**** md5 signature: 7db1622a0b370b4453af0886bb5f840c ****/ + /****** BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox::Direction ******/ + /****** md5 signature: 7db1622a0b370b4453af0886bb5f840c ******/ %feature("compactdefaultargs") Direction; %feature("autodoc", "Return ------- @@ -4637,8 +4637,8 @@ No available documentation. ") Direction; gp_Dir Direction(); - /****************** DirectionOnS1 ******************/ - /**** md5 signature: bc5dc0d8303d35b67ad8c11b04c94ec5 ****/ + /****** BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox::DirectionOnS1 ******/ + /****** md5 signature: bc5dc0d8303d35b67ad8c11b04c94ec5 ******/ %feature("compactdefaultargs") DirectionOnS1; %feature("autodoc", "Return ------- @@ -4650,8 +4650,8 @@ No available documentation. ") DirectionOnS1; gp_Dir2d DirectionOnS1(); - /****************** DirectionOnS2 ******************/ - /**** md5 signature: caea60e56e0b7869c8e3533543115136 ****/ + /****** BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox::DirectionOnS2 ******/ + /****** md5 signature: caea60e56e0b7869c8e3533543115136 ******/ %feature("compactdefaultargs") DirectionOnS2; %feature("autodoc", "Return ------- @@ -4663,8 +4663,8 @@ No available documentation. ") DirectionOnS2; gp_Dir2d DirectionOnS2(); - /****************** IsTangent ******************/ - /**** md5 signature: 9e73991f5144c0e218a14c453bc89c5f ****/ + /****** BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox::IsTangent ******/ + /****** md5 signature: 9e73991f5144c0e218a14c453bc89c5f ******/ %feature("compactdefaultargs") IsTangent; %feature("autodoc", " Parameters @@ -4682,8 +4682,8 @@ No available documentation. ") IsTangent; Standard_Boolean IsTangent(const math_Vector & UVap, TColStd_Array1OfReal & Param, IntImp_ConstIsoparametric &OutValue); - /****************** NbEquations ******************/ - /**** md5 signature: 42be0dc2e32c8e563393e8490171707e ****/ + /****** BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox::NbEquations ******/ + /****** md5 signature: 42be0dc2e32c8e563393e8490171707e ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -4695,8 +4695,8 @@ No available documentation. ") NbEquations; Standard_Integer NbEquations(); - /****************** NbVariables ******************/ - /**** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ****/ + /****** BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox::NbVariables ******/ + /****** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -4708,8 +4708,8 @@ No available documentation. ") NbVariables; Standard_Integer NbVariables(); - /****************** Point ******************/ - /**** md5 signature: aacd847206090cc43a493e5072f97000 ****/ + /****** BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox::Point ******/ + /****** md5 signature: aacd847206090cc43a493e5072f97000 ******/ %feature("compactdefaultargs") Point; %feature("autodoc", "Return ------- @@ -4721,8 +4721,8 @@ No available documentation. ") Point; gp_Pnt Point(); - /****************** Root ******************/ - /**** md5 signature: 1f1a437be6bd034392962de6cf04ded1 ****/ + /****** BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox::Root ******/ + /****** md5 signature: 1f1a437be6bd034392962de6cf04ded1 ******/ %feature("compactdefaultargs") Root; %feature("autodoc", "Return ------- @@ -4734,8 +4734,8 @@ Returns somme des fi*fi. ") Root; Standard_Real Root(); - /****************** Value ******************/ - /**** md5 signature: 31f6ba581b8fae503400d98976418349 ****/ + /****** BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox::Value ******/ + /****** md5 signature: 31f6ba581b8fae503400d98976418349 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -4753,8 +4753,8 @@ No available documentation. ") Value; Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: 17c41f2c2b925e9ddfe2f61a9052313c ****/ + /****** BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox::Values ******/ + /****** md5 signature: 17c41f2c2b925e9ddfe2f61a9052313c ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -4787,8 +4787,8 @@ No available documentation. ***********************************************/ class BRepApprox_TheImpPrmSvSurfacesOfApprox : public ApproxInt_SvSurfaces { public: - /****************** BRepApprox_TheImpPrmSvSurfacesOfApprox ******************/ - /**** md5 signature: 351f816713979fa454a2d27963cc84ed ****/ + /****** BRepApprox_TheImpPrmSvSurfacesOfApprox::BRepApprox_TheImpPrmSvSurfacesOfApprox ******/ + /****** md5 signature: 351f816713979fa454a2d27963cc84ed ******/ %feature("compactdefaultargs") BRepApprox_TheImpPrmSvSurfacesOfApprox; %feature("autodoc", " Parameters @@ -4806,8 +4806,8 @@ No available documentation. ") BRepApprox_TheImpPrmSvSurfacesOfApprox; BRepApprox_TheImpPrmSvSurfacesOfApprox(const BRepAdaptor_Surface & Surf1, const IntSurf_Quadric & Surf2); - /****************** BRepApprox_TheImpPrmSvSurfacesOfApprox ******************/ - /**** md5 signature: 07325ab325390fd9130b8085a321a96c ****/ + /****** BRepApprox_TheImpPrmSvSurfacesOfApprox::BRepApprox_TheImpPrmSvSurfacesOfApprox ******/ + /****** md5 signature: 07325ab325390fd9130b8085a321a96c ******/ %feature("compactdefaultargs") BRepApprox_TheImpPrmSvSurfacesOfApprox; %feature("autodoc", " Parameters @@ -4825,8 +4825,8 @@ No available documentation. ") BRepApprox_TheImpPrmSvSurfacesOfApprox; BRepApprox_TheImpPrmSvSurfacesOfApprox(const IntSurf_Quadric & Surf1, const BRepAdaptor_Surface & Surf2); - /****************** Compute ******************/ - /**** md5 signature: 1b6699512251d1cde0fa87fb6fb9f2bf ****/ + /****** BRepApprox_TheImpPrmSvSurfacesOfApprox::Compute ******/ + /****** md5 signature: 1b6699512251d1cde0fa87fb6fb9f2bf ******/ %feature("compactdefaultargs") Compute; %feature("autodoc", " Parameters @@ -4849,8 +4849,8 @@ Returns true if tg,tguv1 tguv2 can be computed. ") Compute; Standard_Boolean Compute(Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue, gp_Pnt & Pt, gp_Vec & Tg, gp_Vec2d & Tguv1, gp_Vec2d & Tguv2); - /****************** Pnt ******************/ - /**** md5 signature: 9b8bce66add52a246baf1e5f56b41c57 ****/ + /****** BRepApprox_TheImpPrmSvSurfacesOfApprox::Pnt ******/ + /****** md5 signature: 9b8bce66add52a246baf1e5f56b41c57 ******/ %feature("compactdefaultargs") Pnt; %feature("autodoc", " Parameters @@ -4871,8 +4871,8 @@ No available documentation. ") Pnt; void Pnt(const Standard_Real u1, const Standard_Real v1, const Standard_Real u2, const Standard_Real v2, gp_Pnt & P); - /****************** SeekPoint ******************/ - /**** md5 signature: 1cbe34841922a959c2a9bca52603cce9 ****/ + /****** BRepApprox_TheImpPrmSvSurfacesOfApprox::SeekPoint ******/ + /****** md5 signature: 1cbe34841922a959c2a9bca52603cce9 ******/ %feature("compactdefaultargs") SeekPoint; %feature("autodoc", " Parameters @@ -4893,8 +4893,8 @@ No available documentation. ") SeekPoint; Standard_Boolean SeekPoint(const Standard_Real u1, const Standard_Real v1, const Standard_Real u2, const Standard_Real v2, IntSurf_PntOn2S & Point); - /****************** Tangency ******************/ - /**** md5 signature: c0c9891902a6459b409f1a9c52228000 ****/ + /****** BRepApprox_TheImpPrmSvSurfacesOfApprox::Tangency ******/ + /****** md5 signature: c0c9891902a6459b409f1a9c52228000 ******/ %feature("compactdefaultargs") Tangency; %feature("autodoc", " Parameters @@ -4915,8 +4915,8 @@ No available documentation. ") Tangency; Standard_Boolean Tangency(const Standard_Real u1, const Standard_Real v1, const Standard_Real u2, const Standard_Real v2, gp_Vec & Tg); - /****************** TangencyOnSurf1 ******************/ - /**** md5 signature: 92ffba31e07343330c44d9dee4123c55 ****/ + /****** BRepApprox_TheImpPrmSvSurfacesOfApprox::TangencyOnSurf1 ******/ + /****** md5 signature: 92ffba31e07343330c44d9dee4123c55 ******/ %feature("compactdefaultargs") TangencyOnSurf1; %feature("autodoc", " Parameters @@ -4937,8 +4937,8 @@ No available documentation. ") TangencyOnSurf1; Standard_Boolean TangencyOnSurf1(const Standard_Real u1, const Standard_Real v1, const Standard_Real u2, const Standard_Real v2, gp_Vec2d & Tg); - /****************** TangencyOnSurf2 ******************/ - /**** md5 signature: 0c3b4c57afa7cd03a0f9030ecd47326b ****/ + /****** BRepApprox_TheImpPrmSvSurfacesOfApprox::TangencyOnSurf2 ******/ + /****** md5 signature: 0c3b4c57afa7cd03a0f9030ecd47326b ******/ %feature("compactdefaultargs") TangencyOnSurf2; %feature("autodoc", " Parameters @@ -4977,8 +4977,8 @@ No available documentation. *********************************************************/ class BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox { public: - /****************** BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox ******************/ - /**** md5 signature: d3ed7255941cd2b0a551739eda53debc ****/ + /****** BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox::BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox ******/ + /****** md5 signature: d3ed7255941cd2b0a551739eda53debc ******/ %feature("compactdefaultargs") BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox; %feature("autodoc", " Parameters @@ -4998,8 +4998,8 @@ Compute the solution point with the close point. ") BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox; BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox(const TColStd_Array1OfReal & Param, const BRepAdaptor_Surface & S1, const BRepAdaptor_Surface & S2, const Standard_Real TolTangency); - /****************** BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox ******************/ - /**** md5 signature: fb5174c3acb3fe83c13bf6c1aa515267 ****/ + /****** BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox::BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox ******/ + /****** md5 signature: fb5174c3acb3fe83c13bf6c1aa515267 ******/ %feature("compactdefaultargs") BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox; %feature("autodoc", " Parameters @@ -5018,8 +5018,8 @@ Initialize the parameters to compute the solution point it 's possible to write ") BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox; BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox(const BRepAdaptor_Surface & S1, const BRepAdaptor_Surface & S2, const Standard_Real TolTangency); - /****************** ChangePoint ******************/ - /**** md5 signature: 1b1852ae04e18b1e3ae0c1ea8c1f6773 ****/ + /****** BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox::ChangePoint ******/ + /****** md5 signature: 1b1852ae04e18b1e3ae0c1ea8c1f6773 ******/ %feature("compactdefaultargs") ChangePoint; %feature("autodoc", "Return ------- @@ -5031,8 +5031,8 @@ Return the intersection point which is enable for changing. ") ChangePoint; IntSurf_PntOn2S & ChangePoint(); - /****************** Direction ******************/ - /**** md5 signature: 6107c9113155a9ae9007c5c8e526a738 ****/ + /****** BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox::Direction ******/ + /****** md5 signature: 6107c9113155a9ae9007c5c8e526a738 ******/ %feature("compactdefaultargs") Direction; %feature("autodoc", "Return ------- @@ -5044,8 +5044,8 @@ Returns the tangent at the intersection line. ") Direction; const gp_Dir Direction(); - /****************** DirectionOnS1 ******************/ - /**** md5 signature: 0ea23aedfa0d65293f06d50c4f4fd61f ****/ + /****** BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox::DirectionOnS1 ******/ + /****** md5 signature: 0ea23aedfa0d65293f06d50c4f4fd61f ******/ %feature("compactdefaultargs") DirectionOnS1; %feature("autodoc", "Return ------- @@ -5057,8 +5057,8 @@ Returns the tangent at the intersection line in the parametric space of the firs ") DirectionOnS1; const gp_Dir2d DirectionOnS1(); - /****************** DirectionOnS2 ******************/ - /**** md5 signature: 9fe51e029e5ffcecf563550ef1c567fd ****/ + /****** BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox::DirectionOnS2 ******/ + /****** md5 signature: 9fe51e029e5ffcecf563550ef1c567fd ******/ %feature("compactdefaultargs") DirectionOnS2; %feature("autodoc", "Return ------- @@ -5070,8 +5070,8 @@ Returns the tangent at the intersection line in the parametric space of the seco ") DirectionOnS2; const gp_Dir2d DirectionOnS2(); - /****************** Function ******************/ - /**** md5 signature: 5929136760b661f9c0d7a509de29d340 ****/ + /****** BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox::Function ******/ + /****** md5 signature: 5929136760b661f9c0d7a509de29d340 ******/ %feature("compactdefaultargs") Function; %feature("autodoc", "Return ------- @@ -5083,8 +5083,8 @@ Return the math function which is used to compute the intersection. ") Function; BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox & Function(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -5096,8 +5096,8 @@ Returns true if the creation completed without failure. ") IsDone; Standard_Boolean IsDone(); - /****************** IsEmpty ******************/ - /**** md5 signature: 6ab5e1ad63f93168856ab126dd374b81 ****/ + /****** BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox::IsEmpty ******/ + /****** md5 signature: 6ab5e1ad63f93168856ab126dd374b81 ******/ %feature("compactdefaultargs") IsEmpty; %feature("autodoc", "Return ------- @@ -5109,8 +5109,8 @@ Returns true when there is no solution to the problem. ") IsEmpty; Standard_Boolean IsEmpty(); - /****************** IsTangent ******************/ - /**** md5 signature: 16a7964bb24e34f80fabc93e5a65aedc ****/ + /****** BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox::IsTangent ******/ + /****** md5 signature: 16a7964bb24e34f80fabc93e5a65aedc ******/ %feature("compactdefaultargs") IsTangent; %feature("autodoc", "Return ------- @@ -5122,8 +5122,8 @@ Returns true if the surfaces are tangent at the intersection point. ") IsTangent; Standard_Boolean IsTangent(); - /****************** Perform ******************/ - /**** md5 signature: ba19d26576d52e0e2824307d3171f0bf ****/ + /****** BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox::Perform ******/ + /****** md5 signature: ba19d26576d52e0e2824307d3171f0bf ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -5141,8 +5141,8 @@ Returns the best constant isoparametric to find the next intersection's point +s ") Perform; IntImp_ConstIsoparametric Perform(const TColStd_Array1OfReal & Param, math_FunctionSetRoot & Rsnld); - /****************** Perform ******************/ - /**** md5 signature: 01d0aa4ed60a8ef13ed05d29863bed35 ****/ + /****** BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox::Perform ******/ + /****** md5 signature: 01d0aa4ed60a8ef13ed05d29863bed35 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -5161,8 +5161,8 @@ Returns the best constant isoparametric to find the next intersection's point +s ") Perform; IntImp_ConstIsoparametric Perform(const TColStd_Array1OfReal & Param, math_FunctionSetRoot & Rsnld, const IntImp_ConstIsoparametric ChoixIso); - /****************** Point ******************/ - /**** md5 signature: be121892232ab68ab537f33c0dca8dfd ****/ + /****** BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox::Point ******/ + /****** md5 signature: be121892232ab68ab537f33c0dca8dfd ******/ %feature("compactdefaultargs") Point; %feature("autodoc", "Return ------- @@ -5188,8 +5188,8 @@ Returns the intersection point. ****************************************/ class BRepApprox_TheMultiLineOfApprox { public: - /****************** BRepApprox_TheMultiLineOfApprox ******************/ - /**** md5 signature: 61f3332ae94879b6a2710bda28eece83 ****/ + /****** BRepApprox_TheMultiLineOfApprox::BRepApprox_TheMultiLineOfApprox ******/ + /****** md5 signature: 61f3332ae94879b6a2710bda28eece83 ******/ %feature("compactdefaultargs") BRepApprox_TheMultiLineOfApprox; %feature("autodoc", "Return ------- @@ -5201,8 +5201,8 @@ No available documentation. ") BRepApprox_TheMultiLineOfApprox; BRepApprox_TheMultiLineOfApprox(); - /****************** BRepApprox_TheMultiLineOfApprox ******************/ - /**** md5 signature: ad07dd28d2fb52ddfeff00bc4f3b39c1 ****/ + /****** BRepApprox_TheMultiLineOfApprox::BRepApprox_TheMultiLineOfApprox ******/ + /****** md5 signature: ad07dd28d2fb52ddfeff00bc4f3b39c1 ******/ %feature("compactdefaultargs") BRepApprox_TheMultiLineOfApprox; %feature("autodoc", " Parameters @@ -5234,8 +5234,8 @@ The class svsurfaces is used when the approximation algorithm needs some extra p ") BRepApprox_TheMultiLineOfApprox; BRepApprox_TheMultiLineOfApprox(const opencascade::handle & line, const Standard_Address PtrSvSurfaces, const Standard_Integer NbP3d, const Standard_Integer NbP2d, const Standard_Boolean ApproxU1V1, const Standard_Boolean ApproxU2V2, const Standard_Real xo, const Standard_Real yo, const Standard_Real zo, const Standard_Real u1o, const Standard_Real v1o, const Standard_Real u2o, const Standard_Real v2o, const Standard_Boolean P2DOnFirst, const Standard_Integer IndMin = 0, const Standard_Integer IndMax = 0); - /****************** BRepApprox_TheMultiLineOfApprox ******************/ - /**** md5 signature: 2c60ef9b4d8ce91c87f55b4589e84dcd ****/ + /****** BRepApprox_TheMultiLineOfApprox::BRepApprox_TheMultiLineOfApprox ******/ + /****** md5 signature: 2c60ef9b4d8ce91c87f55b4589e84dcd ******/ %feature("compactdefaultargs") BRepApprox_TheMultiLineOfApprox; %feature("autodoc", " Parameters @@ -5266,8 +5266,8 @@ No extra points will be added on the current line. ") BRepApprox_TheMultiLineOfApprox; BRepApprox_TheMultiLineOfApprox(const opencascade::handle & line, const Standard_Integer NbP3d, const Standard_Integer NbP2d, const Standard_Boolean ApproxU1V1, const Standard_Boolean ApproxU2V2, const Standard_Real xo, const Standard_Real yo, const Standard_Real zo, const Standard_Real u1o, const Standard_Real v1o, const Standard_Real u2o, const Standard_Real v2o, const Standard_Boolean P2DOnFirst, const Standard_Integer IndMin = 0, const Standard_Integer IndMax = 0); - /****************** Dump ******************/ - /**** md5 signature: 15b4b2e195645aebb43170ff7f15952a ****/ + /****** BRepApprox_TheMultiLineOfApprox::Dump ******/ + /****** md5 signature: 15b4b2e195645aebb43170ff7f15952a ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", "Return ------- @@ -5279,8 +5279,8 @@ Dump of the current multi-line. ") Dump; void Dump(); - /****************** FirstPoint ******************/ - /**** md5 signature: 6036aa5f9c36e4ed29b55026423af997 ****/ + /****** BRepApprox_TheMultiLineOfApprox::FirstPoint ******/ + /****** md5 signature: 6036aa5f9c36e4ed29b55026423af997 ******/ %feature("compactdefaultargs") FirstPoint; %feature("autodoc", "Return ------- @@ -5292,8 +5292,8 @@ No available documentation. ") FirstPoint; Standard_Integer FirstPoint(); - /****************** LastPoint ******************/ - /**** md5 signature: e2615285c6676dba4ad25275a0d452ca ****/ + /****** BRepApprox_TheMultiLineOfApprox::LastPoint ******/ + /****** md5 signature: e2615285c6676dba4ad25275a0d452ca ******/ %feature("compactdefaultargs") LastPoint; %feature("autodoc", "Return ------- @@ -5305,8 +5305,8 @@ No available documentation. ") LastPoint; Standard_Integer LastPoint(); - /****************** MakeMLBetween ******************/ - /**** md5 signature: 87c3b2149dab9604268e6c6bc4f0c906 ****/ + /****** BRepApprox_TheMultiLineOfApprox::MakeMLBetween ******/ + /****** md5 signature: 87c3b2149dab9604268e6c6bc4f0c906 ******/ %feature("compactdefaultargs") MakeMLBetween; %feature("autodoc", " Parameters @@ -5325,8 +5325,8 @@ Tries to make a sub-line between and points of this line by adding ") MakeMLBetween; BRepApprox_TheMultiLineOfApprox MakeMLBetween(const Standard_Integer Low, const Standard_Integer High, const Standard_Integer NbPointsToInsert); - /****************** MakeMLOneMorePoint ******************/ - /**** md5 signature: 421c45436bad3eda04a112bcb72d86ce ****/ + /****** BRepApprox_TheMultiLineOfApprox::MakeMLOneMorePoint ******/ + /****** md5 signature: 421c45436bad3eda04a112bcb72d86ce ******/ %feature("compactdefaultargs") MakeMLOneMorePoint; %feature("autodoc", " Parameters @@ -5346,8 +5346,8 @@ Tries to make a sub-line between and points of this line by adding ") MakeMLOneMorePoint; Standard_Boolean MakeMLOneMorePoint(const Standard_Integer Low, const Standard_Integer High, const Standard_Integer indbad, BRepApprox_TheMultiLineOfApprox & OtherLine); - /****************** NbP2d ******************/ - /**** md5 signature: 9ba8c102bdeba2dda342e0db8269bbf5 ****/ + /****** BRepApprox_TheMultiLineOfApprox::NbP2d ******/ + /****** md5 signature: 9ba8c102bdeba2dda342e0db8269bbf5 ******/ %feature("compactdefaultargs") NbP2d; %feature("autodoc", "Return ------- @@ -5359,8 +5359,8 @@ Returns the number of 2d points of a theline. ") NbP2d; Standard_Integer NbP2d(); - /****************** NbP3d ******************/ - /**** md5 signature: 89b8d7613eeb2675b9641bf825abe487 ****/ + /****** BRepApprox_TheMultiLineOfApprox::NbP3d ******/ + /****** md5 signature: 89b8d7613eeb2675b9641bf825abe487 ******/ %feature("compactdefaultargs") NbP3d; %feature("autodoc", "Return ------- @@ -5372,8 +5372,8 @@ Returns the number of 3d points of a theline. ") NbP3d; Standard_Integer NbP3d(); - /****************** Tangency ******************/ - /**** md5 signature: c6cbaf0059f48e429c903570a14ee737 ****/ + /****** BRepApprox_TheMultiLineOfApprox::Tangency ******/ + /****** md5 signature: c6cbaf0059f48e429c903570a14ee737 ******/ %feature("compactdefaultargs") Tangency; %feature("autodoc", " Parameters @@ -5391,8 +5391,8 @@ Returns the 3d tangency points of the multipoint only when 3d poin ") Tangency; Standard_Boolean Tangency(const Standard_Integer MPointIndex, TColgp_Array1OfVec & tabV); - /****************** Tangency ******************/ - /**** md5 signature: e9d5611508aa120465fde3464ad5ef52 ****/ + /****** BRepApprox_TheMultiLineOfApprox::Tangency ******/ + /****** md5 signature: e9d5611508aa120465fde3464ad5ef52 ******/ %feature("compactdefaultargs") Tangency; %feature("autodoc", " Parameters @@ -5410,8 +5410,8 @@ Returns the 2d tangency points of the multipoint only when 2d poin ") Tangency; Standard_Boolean Tangency(const Standard_Integer MPointIndex, TColgp_Array1OfVec2d & tabV2d); - /****************** Tangency ******************/ - /**** md5 signature: c8caf611c9dc97dd9b8842534059cab9 ****/ + /****** BRepApprox_TheMultiLineOfApprox::Tangency ******/ + /****** md5 signature: c8caf611c9dc97dd9b8842534059cab9 ******/ %feature("compactdefaultargs") Tangency; %feature("autodoc", " Parameters @@ -5430,8 +5430,8 @@ Returns the 3d and 2d points of the multipoint . ") Tangency; Standard_Boolean Tangency(const Standard_Integer MPointIndex, TColgp_Array1OfVec & tabV, TColgp_Array1OfVec2d & tabV2d); - /****************** Value ******************/ - /**** md5 signature: 511d3e7ebcd62cd9cfde5bca091161ea ****/ + /****** BRepApprox_TheMultiLineOfApprox::Value ******/ + /****** md5 signature: 511d3e7ebcd62cd9cfde5bca091161ea ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -5449,8 +5449,8 @@ Returns the 3d points of the multipoint when only 3d points exist. ") Value; void Value(const Standard_Integer MPointIndex, TColgp_Array1OfPnt & tabPt); - /****************** Value ******************/ - /**** md5 signature: 6626a2a082c59909a2d396794f2d2a4e ****/ + /****** BRepApprox_TheMultiLineOfApprox::Value ******/ + /****** md5 signature: 6626a2a082c59909a2d396794f2d2a4e ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -5468,8 +5468,8 @@ Returns the 2d points of the multipoint when only 2d points exist. ") Value; void Value(const Standard_Integer MPointIndex, TColgp_Array1OfPnt2d & tabPt2d); - /****************** Value ******************/ - /**** md5 signature: 9ace448e14090fa28f4ee0cbe190ed29 ****/ + /****** BRepApprox_TheMultiLineOfApprox::Value ******/ + /****** md5 signature: 9ace448e14090fa28f4ee0cbe190ed29 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -5488,8 +5488,8 @@ Returns the 3d and 2d points of the multipoint . ") Value; void Value(const Standard_Integer MPointIndex, TColgp_Array1OfPnt & tabPt, TColgp_Array1OfPnt2d & tabPt2d); - /****************** WhatStatus ******************/ - /**** md5 signature: 76f55e4a417176afbc003868c157efc5 ****/ + /****** BRepApprox_TheMultiLineOfApprox::WhatStatus ******/ + /****** md5 signature: 76f55e4a417176afbc003868c157efc5 ******/ %feature("compactdefaultargs") WhatStatus; %feature("autodoc", "Return ------- @@ -5515,8 +5515,8 @@ No available documentation. ********************************************/ class BRepApprox_TheMultiLineToolOfApprox { public: - /****************** Curvature ******************/ - /**** md5 signature: bf7ee67527922d9913db5a4fbf2e4afb ****/ + /****** BRepApprox_TheMultiLineToolOfApprox::Curvature ******/ + /****** md5 signature: bf7ee67527922d9913db5a4fbf2e4afb ******/ %feature("compactdefaultargs") Curvature; %feature("autodoc", " Parameters @@ -5535,8 +5535,8 @@ Returns the 3d curvature of the multipoint when only 3d points exi ") Curvature; static Standard_Boolean Curvature(const BRepApprox_TheMultiLineOfApprox & ML, const Standard_Integer MPointIndex, TColgp_Array1OfVec & tabV); - /****************** Curvature ******************/ - /**** md5 signature: febf4f9f7956f4982c5221e66708df55 ****/ + /****** BRepApprox_TheMultiLineToolOfApprox::Curvature ******/ + /****** md5 signature: febf4f9f7956f4982c5221e66708df55 ******/ %feature("compactdefaultargs") Curvature; %feature("autodoc", " Parameters @@ -5555,8 +5555,8 @@ Returns the 2d curvature points of the multipoint only when 2d poi ") Curvature; static Standard_Boolean Curvature(const BRepApprox_TheMultiLineOfApprox & ML, const Standard_Integer MPointIndex, TColgp_Array1OfVec2d & tabV2d); - /****************** Curvature ******************/ - /**** md5 signature: ac0a699a5da9a476fb76822ea024d997 ****/ + /****** BRepApprox_TheMultiLineToolOfApprox::Curvature ******/ + /****** md5 signature: ac0a699a5da9a476fb76822ea024d997 ******/ %feature("compactdefaultargs") Curvature; %feature("autodoc", " Parameters @@ -5576,8 +5576,8 @@ Returns the 3d and 2d curvature of the multipoint . ") Curvature; static Standard_Boolean Curvature(const BRepApprox_TheMultiLineOfApprox & ML, const Standard_Integer MPointIndex, TColgp_Array1OfVec & tabV, TColgp_Array1OfVec2d & tabV2d); - /****************** Dump ******************/ - /**** md5 signature: b9cdb0fd704d7adbd581eb92bfcc2528 ****/ + /****** BRepApprox_TheMultiLineToolOfApprox::Dump ******/ + /****** md5 signature: b9cdb0fd704d7adbd581eb92bfcc2528 ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", " Parameters @@ -5594,8 +5594,8 @@ Dump of the current multi-line. ") Dump; static void Dump(const BRepApprox_TheMultiLineOfApprox & ML); - /****************** FirstPoint ******************/ - /**** md5 signature: 85a33a9acd8ba8a4e3e2371ddd20fc7c ****/ + /****** BRepApprox_TheMultiLineToolOfApprox::FirstPoint ******/ + /****** md5 signature: 85a33a9acd8ba8a4e3e2371ddd20fc7c ******/ %feature("compactdefaultargs") FirstPoint; %feature("autodoc", " Parameters @@ -5612,8 +5612,8 @@ Returns the number of multipoints of the themultiline. ") FirstPoint; static Standard_Integer FirstPoint(const BRepApprox_TheMultiLineOfApprox & ML); - /****************** LastPoint ******************/ - /**** md5 signature: 47721ef9a832798de7a827f5fa93cc6a ****/ + /****** BRepApprox_TheMultiLineToolOfApprox::LastPoint ******/ + /****** md5 signature: 47721ef9a832798de7a827f5fa93cc6a ******/ %feature("compactdefaultargs") LastPoint; %feature("autodoc", " Parameters @@ -5630,8 +5630,8 @@ Returns the number of multipoints of the themultiline. ") LastPoint; static Standard_Integer LastPoint(const BRepApprox_TheMultiLineOfApprox & ML); - /****************** MakeMLBetween ******************/ - /**** md5 signature: 0f95b389697bc413dc72ff9ef97cc6a8 ****/ + /****** BRepApprox_TheMultiLineToolOfApprox::MakeMLBetween ******/ + /****** md5 signature: 0f95b389697bc413dc72ff9ef97cc6a8 ******/ %feature("compactdefaultargs") MakeMLBetween; %feature("autodoc", " Parameters @@ -5651,8 +5651,8 @@ Is called if whatstatus returned 'pointsadded'. ") MakeMLBetween; static BRepApprox_TheMultiLineOfApprox MakeMLBetween(const BRepApprox_TheMultiLineOfApprox & ML, const Standard_Integer I1, const Standard_Integer I2, const Standard_Integer NbPMin); - /****************** MakeMLOneMorePoint ******************/ - /**** md5 signature: 4d363a38e0089ecaa07a9e81dab44599 ****/ + /****** BRepApprox_TheMultiLineToolOfApprox::MakeMLOneMorePoint ******/ + /****** md5 signature: 4d363a38e0089ecaa07a9e81dab44599 ******/ %feature("compactdefaultargs") MakeMLOneMorePoint; %feature("autodoc", " Parameters @@ -5673,8 +5673,8 @@ Is called when the bezier curve contains a loop. ") MakeMLOneMorePoint; static Standard_Boolean MakeMLOneMorePoint(const BRepApprox_TheMultiLineOfApprox & ML, const Standard_Integer I1, const Standard_Integer I2, const Standard_Integer indbad, BRepApprox_TheMultiLineOfApprox & OtherLine); - /****************** NbP2d ******************/ - /**** md5 signature: 4dbf4c9efe98f097e7d61fb3638a07d9 ****/ + /****** BRepApprox_TheMultiLineToolOfApprox::NbP2d ******/ + /****** md5 signature: 4dbf4c9efe98f097e7d61fb3638a07d9 ******/ %feature("compactdefaultargs") NbP2d; %feature("autodoc", " Parameters @@ -5691,8 +5691,8 @@ Returns the number of 2d points of a themultiline. ") NbP2d; static Standard_Integer NbP2d(const BRepApprox_TheMultiLineOfApprox & ML); - /****************** NbP3d ******************/ - /**** md5 signature: cf55a696ef970abbf2e8f74b4a0daed1 ****/ + /****** BRepApprox_TheMultiLineToolOfApprox::NbP3d ******/ + /****** md5 signature: cf55a696ef970abbf2e8f74b4a0daed1 ******/ %feature("compactdefaultargs") NbP3d; %feature("autodoc", " Parameters @@ -5709,8 +5709,8 @@ Returns the number of 3d points of a themultiline. ") NbP3d; static Standard_Integer NbP3d(const BRepApprox_TheMultiLineOfApprox & ML); - /****************** Tangency ******************/ - /**** md5 signature: b7b561fe15855fef28260b26ee552e4b ****/ + /****** BRepApprox_TheMultiLineToolOfApprox::Tangency ******/ + /****** md5 signature: b7b561fe15855fef28260b26ee552e4b ******/ %feature("compactdefaultargs") Tangency; %feature("autodoc", " Parameters @@ -5729,8 +5729,8 @@ Returns the 3d points of the multipoint when only 3d points exist. ") Tangency; static Standard_Boolean Tangency(const BRepApprox_TheMultiLineOfApprox & ML, const Standard_Integer MPointIndex, TColgp_Array1OfVec & tabV); - /****************** Tangency ******************/ - /**** md5 signature: 8152094c428170ba0f2f1fd17292c27c ****/ + /****** BRepApprox_TheMultiLineToolOfApprox::Tangency ******/ + /****** md5 signature: 8152094c428170ba0f2f1fd17292c27c ******/ %feature("compactdefaultargs") Tangency; %feature("autodoc", " Parameters @@ -5749,8 +5749,8 @@ Returns the 2d tangency points of the multipoint only when 2d poin ") Tangency; static Standard_Boolean Tangency(const BRepApprox_TheMultiLineOfApprox & ML, const Standard_Integer MPointIndex, TColgp_Array1OfVec2d & tabV2d); - /****************** Tangency ******************/ - /**** md5 signature: 6aef83009c20ac70bd1b04ba431473d4 ****/ + /****** BRepApprox_TheMultiLineToolOfApprox::Tangency ******/ + /****** md5 signature: 6aef83009c20ac70bd1b04ba431473d4 ******/ %feature("compactdefaultargs") Tangency; %feature("autodoc", " Parameters @@ -5770,8 +5770,8 @@ Returns the 3d and 2d points of the multipoint . ") Tangency; static Standard_Boolean Tangency(const BRepApprox_TheMultiLineOfApprox & ML, const Standard_Integer MPointIndex, TColgp_Array1OfVec & tabV, TColgp_Array1OfVec2d & tabV2d); - /****************** Value ******************/ - /**** md5 signature: ecc7784256b44d7c12f30c0b086997a2 ****/ + /****** BRepApprox_TheMultiLineToolOfApprox::Value ******/ + /****** md5 signature: ecc7784256b44d7c12f30c0b086997a2 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -5790,8 +5790,8 @@ Returns the 3d points of the multipoint when only 3d points exist. ") Value; static void Value(const BRepApprox_TheMultiLineOfApprox & ML, const Standard_Integer MPointIndex, TColgp_Array1OfPnt & tabPt); - /****************** Value ******************/ - /**** md5 signature: f04c8e8e6745056be43d70d16c74dcf5 ****/ + /****** BRepApprox_TheMultiLineToolOfApprox::Value ******/ + /****** md5 signature: f04c8e8e6745056be43d70d16c74dcf5 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -5810,8 +5810,8 @@ Returns the 2d points of the multipoint when only 2d points exist. ") Value; static void Value(const BRepApprox_TheMultiLineOfApprox & ML, const Standard_Integer MPointIndex, TColgp_Array1OfPnt2d & tabPt2d); - /****************** Value ******************/ - /**** md5 signature: a95dafe6ca3a1d888726e591cc020148 ****/ + /****** BRepApprox_TheMultiLineToolOfApprox::Value ******/ + /****** md5 signature: a95dafe6ca3a1d888726e591cc020148 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -5831,8 +5831,8 @@ Returns the 3d and 2d points of the multipoint . ") Value; static void Value(const BRepApprox_TheMultiLineOfApprox & ML, const Standard_Integer MPointIndex, TColgp_Array1OfPnt & tabPt, TColgp_Array1OfPnt2d & tabPt2d); - /****************** WhatStatus ******************/ - /**** md5 signature: d2b8e2cdf30a632e4776399c404b4817 ****/ + /****** BRepApprox_TheMultiLineToolOfApprox::WhatStatus ******/ + /****** md5 signature: d2b8e2cdf30a632e4776399c404b4817 ******/ %feature("compactdefaultargs") WhatStatus; %feature("autodoc", " Parameters @@ -5865,8 +5865,8 @@ No available documentation. ***********************************************/ class BRepApprox_ThePrmPrmSvSurfacesOfApprox : public ApproxInt_SvSurfaces { public: - /****************** BRepApprox_ThePrmPrmSvSurfacesOfApprox ******************/ - /**** md5 signature: e65d1da54b125e00ef167affcb368a96 ****/ + /****** BRepApprox_ThePrmPrmSvSurfacesOfApprox::BRepApprox_ThePrmPrmSvSurfacesOfApprox ******/ + /****** md5 signature: e65d1da54b125e00ef167affcb368a96 ******/ %feature("compactdefaultargs") BRepApprox_ThePrmPrmSvSurfacesOfApprox; %feature("autodoc", " Parameters @@ -5884,8 +5884,8 @@ No available documentation. ") BRepApprox_ThePrmPrmSvSurfacesOfApprox; BRepApprox_ThePrmPrmSvSurfacesOfApprox(const BRepAdaptor_Surface & Surf1, const BRepAdaptor_Surface & Surf2); - /****************** Compute ******************/ - /**** md5 signature: 1b6699512251d1cde0fa87fb6fb9f2bf ****/ + /****** BRepApprox_ThePrmPrmSvSurfacesOfApprox::Compute ******/ + /****** md5 signature: 1b6699512251d1cde0fa87fb6fb9f2bf ******/ %feature("compactdefaultargs") Compute; %feature("autodoc", " Parameters @@ -5908,8 +5908,8 @@ Returns true if tg,tguv1 tguv2 can be computed. ") Compute; Standard_Boolean Compute(Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue, gp_Pnt & Pt, gp_Vec & Tg, gp_Vec2d & Tguv1, gp_Vec2d & Tguv2); - /****************** Pnt ******************/ - /**** md5 signature: 9b8bce66add52a246baf1e5f56b41c57 ****/ + /****** BRepApprox_ThePrmPrmSvSurfacesOfApprox::Pnt ******/ + /****** md5 signature: 9b8bce66add52a246baf1e5f56b41c57 ******/ %feature("compactdefaultargs") Pnt; %feature("autodoc", " Parameters @@ -5930,8 +5930,8 @@ No available documentation. ") Pnt; void Pnt(const Standard_Real u1, const Standard_Real v1, const Standard_Real u2, const Standard_Real v2, gp_Pnt & P); - /****************** SeekPoint ******************/ - /**** md5 signature: 1cbe34841922a959c2a9bca52603cce9 ****/ + /****** BRepApprox_ThePrmPrmSvSurfacesOfApprox::SeekPoint ******/ + /****** md5 signature: 1cbe34841922a959c2a9bca52603cce9 ******/ %feature("compactdefaultargs") SeekPoint; %feature("autodoc", " Parameters @@ -5952,8 +5952,8 @@ No available documentation. ") SeekPoint; Standard_Boolean SeekPoint(const Standard_Real u1, const Standard_Real v1, const Standard_Real u2, const Standard_Real v2, IntSurf_PntOn2S & Point); - /****************** Tangency ******************/ - /**** md5 signature: c0c9891902a6459b409f1a9c52228000 ****/ + /****** BRepApprox_ThePrmPrmSvSurfacesOfApprox::Tangency ******/ + /****** md5 signature: c0c9891902a6459b409f1a9c52228000 ******/ %feature("compactdefaultargs") Tangency; %feature("autodoc", " Parameters @@ -5974,8 +5974,8 @@ No available documentation. ") Tangency; Standard_Boolean Tangency(const Standard_Real u1, const Standard_Real v1, const Standard_Real u2, const Standard_Real v2, gp_Vec & Tg); - /****************** TangencyOnSurf1 ******************/ - /**** md5 signature: 92ffba31e07343330c44d9dee4123c55 ****/ + /****** BRepApprox_ThePrmPrmSvSurfacesOfApprox::TangencyOnSurf1 ******/ + /****** md5 signature: 92ffba31e07343330c44d9dee4123c55 ******/ %feature("compactdefaultargs") TangencyOnSurf1; %feature("autodoc", " Parameters @@ -5996,8 +5996,8 @@ No available documentation. ") TangencyOnSurf1; Standard_Boolean TangencyOnSurf1(const Standard_Real u1, const Standard_Real v1, const Standard_Real u2, const Standard_Real v2, gp_Vec2d & Tg); - /****************** TangencyOnSurf2 ******************/ - /**** md5 signature: 0c3b4c57afa7cd03a0f9030ecd47326b ****/ + /****** BRepApprox_ThePrmPrmSvSurfacesOfApprox::TangencyOnSurf2 ******/ + /****** md5 signature: 0c3b4c57afa7cd03a0f9030ecd47326b ******/ %feature("compactdefaultargs") TangencyOnSurf2; %feature("autodoc", " Parameters @@ -6032,8 +6032,8 @@ No available documentation. **************************************************************/ class BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox : public math_FunctionSetWithDerivatives { public: - /****************** BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox ******************/ - /**** md5 signature: b9ba9fb685c01d3cdaa6f5530485bceb ****/ + /****** BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox::BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox ******/ + /****** md5 signature: b9ba9fb685c01d3cdaa6f5530485bceb ******/ %feature("compactdefaultargs") BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox; %feature("autodoc", "Return ------- @@ -6045,8 +6045,8 @@ No available documentation. ") BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox; BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox(); - /****************** BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox ******************/ - /**** md5 signature: a24c282cf420ee670be218df4f94a5f5 ****/ + /****** BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox::BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox ******/ + /****** md5 signature: a24c282cf420ee670be218df4f94a5f5 ******/ %feature("compactdefaultargs") BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox; %feature("autodoc", " Parameters @@ -6064,8 +6064,8 @@ No available documentation. ") BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox; BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox(const BRepAdaptor_Surface & PS, const IntSurf_Quadric & IS); - /****************** BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox ******************/ - /**** md5 signature: 0dbcc591454534ee61d1672b023e50ce ****/ + /****** BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox::BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox ******/ + /****** md5 signature: 0dbcc591454534ee61d1672b023e50ce ******/ %feature("compactdefaultargs") BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox; %feature("autodoc", " Parameters @@ -6082,8 +6082,8 @@ No available documentation. ") BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox; BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox(const IntSurf_Quadric & IS); - /****************** Derivatives ******************/ - /**** md5 signature: 80ee5f16e62731c095910ad60228848b ****/ + /****** BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox::Derivatives ******/ + /****** md5 signature: 80ee5f16e62731c095910ad60228848b ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -6101,8 +6101,8 @@ No available documentation. ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** Direction2d ******************/ - /**** md5 signature: e46e583c3b745511fb8654831bfa19d7 ****/ + /****** BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox::Direction2d ******/ + /****** md5 signature: e46e583c3b745511fb8654831bfa19d7 ******/ %feature("compactdefaultargs") Direction2d; %feature("autodoc", "Return ------- @@ -6114,8 +6114,8 @@ No available documentation. ") Direction2d; const gp_Dir2d Direction2d(); - /****************** Direction3d ******************/ - /**** md5 signature: ceda05eba57d20f6f3ce262f42faf157 ****/ + /****** BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox::Direction3d ******/ + /****** md5 signature: ceda05eba57d20f6f3ce262f42faf157 ******/ %feature("compactdefaultargs") Direction3d; %feature("autodoc", "Return ------- @@ -6127,8 +6127,8 @@ No available documentation. ") Direction3d; const gp_Vec Direction3d(); - /****************** ISurface ******************/ - /**** md5 signature: 0401f703cbd4484a6014535602bb165f ****/ + /****** BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox::ISurface ******/ + /****** md5 signature: 0401f703cbd4484a6014535602bb165f ******/ %feature("compactdefaultargs") ISurface; %feature("autodoc", "Return ------- @@ -6140,8 +6140,8 @@ No available documentation. ") ISurface; const IntSurf_Quadric & ISurface(); - /****************** IsTangent ******************/ - /**** md5 signature: 52337431677eb50512a9391c1db95a81 ****/ + /****** BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox::IsTangent ******/ + /****** md5 signature: 52337431677eb50512a9391c1db95a81 ******/ %feature("compactdefaultargs") IsTangent; %feature("autodoc", "Return ------- @@ -6153,8 +6153,8 @@ No available documentation. ") IsTangent; Standard_Boolean IsTangent(); - /****************** NbEquations ******************/ - /**** md5 signature: 42be0dc2e32c8e563393e8490171707e ****/ + /****** BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox::NbEquations ******/ + /****** md5 signature: 42be0dc2e32c8e563393e8490171707e ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -6166,8 +6166,8 @@ No available documentation. ") NbEquations; Standard_Integer NbEquations(); - /****************** NbVariables ******************/ - /**** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ****/ + /****** BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox::NbVariables ******/ + /****** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -6179,8 +6179,8 @@ No available documentation. ") NbVariables; Standard_Integer NbVariables(); - /****************** PSurface ******************/ - /**** md5 signature: 6400b2748022787da79a4e57d03a7e1a ****/ + /****** BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox::PSurface ******/ + /****** md5 signature: 6400b2748022787da79a4e57d03a7e1a ******/ %feature("compactdefaultargs") PSurface; %feature("autodoc", "Return ------- @@ -6192,8 +6192,8 @@ No available documentation. ") PSurface; BRepAdaptor_Surface PSurface(); - /****************** Point ******************/ - /**** md5 signature: 177e376cc11d1fedb2819bac56591ea8 ****/ + /****** BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox::Point ******/ + /****** md5 signature: 177e376cc11d1fedb2819bac56591ea8 ******/ %feature("compactdefaultargs") Point; %feature("autodoc", "Return ------- @@ -6205,8 +6205,8 @@ No available documentation. ") Point; const gp_Pnt Point(); - /****************** Root ******************/ - /**** md5 signature: 1f1a437be6bd034392962de6cf04ded1 ****/ + /****** BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox::Root ******/ + /****** md5 signature: 1f1a437be6bd034392962de6cf04ded1 ******/ %feature("compactdefaultargs") Root; %feature("autodoc", "Return ------- @@ -6218,8 +6218,8 @@ No available documentation. ") Root; Standard_Real Root(); - /****************** Set ******************/ - /**** md5 signature: 9058e7788b2e34d9884944da3a219e67 ****/ + /****** BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox::Set ******/ + /****** md5 signature: 9058e7788b2e34d9884944da3a219e67 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -6236,8 +6236,8 @@ No available documentation. ") Set; void Set(const BRepAdaptor_Surface & PS); - /****************** Set ******************/ - /**** md5 signature: 7e3e1092ebe5da1f71e965a1091893e3 ****/ + /****** BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox::Set ******/ + /****** md5 signature: 7e3e1092ebe5da1f71e965a1091893e3 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -6254,8 +6254,8 @@ No available documentation. ") Set; void Set(const Standard_Real Tolerance); - /****************** SetImplicitSurface ******************/ - /**** md5 signature: 0ad3b55688a2be8e3aa7ec9c9bcbd283 ****/ + /****** BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox::SetImplicitSurface ******/ + /****** md5 signature: 0ad3b55688a2be8e3aa7ec9c9bcbd283 ******/ %feature("compactdefaultargs") SetImplicitSurface; %feature("autodoc", " Parameters @@ -6272,8 +6272,8 @@ No available documentation. ") SetImplicitSurface; void SetImplicitSurface(const IntSurf_Quadric & IS); - /****************** Tolerance ******************/ - /**** md5 signature: 9e5775014410d884d1a1adc1cd47930b ****/ + /****** BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox::Tolerance ******/ + /****** md5 signature: 9e5775014410d884d1a1adc1cd47930b ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", "Return ------- @@ -6285,8 +6285,8 @@ Returns the value tol so that if abs(func.root()). */ %define BREPBLENDDOCSTRING "BRepBlend module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepblend.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepblend.html" %enddef %module (package="OCC.Core", docstring=BREPBLENDDOCSTRING) BRepBlend @@ -169,8 +169,8 @@ typedef NCollection_Sequence BRepBlend_SequenceOfPointOnRs %nodefaultctor BRepBlend_AppFuncRoot; class BRepBlend_AppFuncRoot : public Approx_SweepFunction { public: - /****************** BarycentreOfSurf ******************/ - /**** md5 signature: a691940df52b45c198f3414d0790e091 ****/ + /****** BRepBlend_AppFuncRoot::BarycentreOfSurf ******/ + /****** md5 signature: a691940df52b45c198f3414d0790e091 ******/ %feature("compactdefaultargs") BarycentreOfSurf; %feature("autodoc", "Return ------- @@ -182,8 +182,8 @@ Get the barycentre of surface. an very poor estimation is sufficient. this infor ") BarycentreOfSurf; virtual gp_Pnt BarycentreOfSurf(); - /****************** D0 ******************/ - /**** md5 signature: 6e91f38f7b850db44626fcacae37aa41 ****/ + /****** BRepBlend_AppFuncRoot::D0 ******/ + /****** md5 signature: 6e91f38f7b850db44626fcacae37aa41 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -205,8 +205,8 @@ Compute the section for v = param. ") D0; virtual Standard_Boolean D0(const Standard_Real Param, const Standard_Real First, const Standard_Real Last, TColgp_Array1OfPnt & Poles, TColgp_Array1OfPnt2d & Poles2d, TColStd_Array1OfReal & Weigths); - /****************** D1 ******************/ - /**** md5 signature: 2393309f0bc419006f62cbad28865129 ****/ + /****** BRepBlend_AppFuncRoot::D1 ******/ + /****** md5 signature: 2393309f0bc419006f62cbad28865129 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -231,8 +231,8 @@ Compute the first derivative in v direction of the section for v = param. ") D1; virtual Standard_Boolean D1(const Standard_Real Param, const Standard_Real First, const Standard_Real Last, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths); - /****************** D2 ******************/ - /**** md5 signature: 4cdf4be928174877f3da59b3bf48c192 ****/ + /****** BRepBlend_AppFuncRoot::D2 ******/ + /****** md5 signature: 4cdf4be928174877f3da59b3bf48c192 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -260,8 +260,8 @@ Compute the second derivative in v direction of the section for v = param. ") D2; virtual Standard_Boolean D2(const Standard_Real Param, const Standard_Real First, const Standard_Real Last, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfVec & D2Poles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColgp_Array1OfVec2d & D2Poles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths, TColStd_Array1OfReal & D2Weigths); - /****************** GetMinimalWeight ******************/ - /**** md5 signature: 36fb20110448cba55b750bc7db93d222 ****/ + /****** BRepBlend_AppFuncRoot::GetMinimalWeight ******/ + /****** md5 signature: 36fb20110448cba55b750bc7db93d222 ******/ %feature("compactdefaultargs") GetMinimalWeight; %feature("autodoc", " Parameters @@ -278,8 +278,8 @@ Compute the minimal value of weight for each poles of all sections. this informa ") GetMinimalWeight; virtual void GetMinimalWeight(TColStd_Array1OfReal & Weigths); - /****************** GetTolerance ******************/ - /**** md5 signature: 3f6ec4398981d416a51435f14d7cee22 ****/ + /****** BRepBlend_AppFuncRoot::GetTolerance ******/ + /****** md5 signature: 3f6ec4398981d416a51435f14d7cee22 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -299,8 +299,8 @@ Returns the tolerance to reach in approximation to respecte boundtol error at th ") GetTolerance; virtual void GetTolerance(const Standard_Real BoundTol, const Standard_Real SurfTol, const Standard_Real AngleTol, TColStd_Array1OfReal & Tol3d); - /****************** Intervals ******************/ - /**** md5 signature: 89fb47d5d3721d82826a17cc788156e4 ****/ + /****** BRepBlend_AppFuncRoot::Intervals ******/ + /****** md5 signature: 89fb47d5d3721d82826a17cc788156e4 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -318,8 +318,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; virtual void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsRational ******************/ - /**** md5 signature: 2a6f0ec7e4a129780b654d163e7e3b1c ****/ + /****** BRepBlend_AppFuncRoot::IsRational ******/ + /****** md5 signature: 2a6f0ec7e4a129780b654d163e7e3b1c ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -331,8 +331,8 @@ Returns if the section is rationnal or not. ") IsRational; virtual Standard_Boolean IsRational(); - /****************** Knots ******************/ - /**** md5 signature: 25dbe24e24c953c2c68b0d008e63e5d6 ****/ + /****** BRepBlend_AppFuncRoot::Knots ******/ + /****** md5 signature: 25dbe24e24c953c2c68b0d008e63e5d6 ******/ %feature("compactdefaultargs") Knots; %feature("autodoc", " Parameters @@ -349,8 +349,8 @@ Get the knots of the section. ") Knots; virtual void Knots(TColStd_Array1OfReal & TKnots); - /****************** MaximalSection ******************/ - /**** md5 signature: b8f0d759fcd21b95d400b3aae3c12cfc ****/ + /****** BRepBlend_AppFuncRoot::MaximalSection ******/ + /****** md5 signature: b8f0d759fcd21b95d400b3aae3c12cfc ******/ %feature("compactdefaultargs") MaximalSection; %feature("autodoc", "Return ------- @@ -362,8 +362,8 @@ Returns the length of the maximum section. this information is useful to perform ") MaximalSection; virtual Standard_Real MaximalSection(); - /****************** Mults ******************/ - /**** md5 signature: 033dc1fab9e10e705c796ffc1e03a44d ****/ + /****** BRepBlend_AppFuncRoot::Mults ******/ + /****** md5 signature: 033dc1fab9e10e705c796ffc1e03a44d ******/ %feature("compactdefaultargs") Mults; %feature("autodoc", " Parameters @@ -380,8 +380,8 @@ Get the multplicities of the section. ") Mults; virtual void Mults(TColStd_Array1OfInteger & TMults); - /****************** Nb2dCurves ******************/ - /**** md5 signature: a7d69b59dcf4f7a28533481bfba32ffb ****/ + /****** BRepBlend_AppFuncRoot::Nb2dCurves ******/ + /****** md5 signature: a7d69b59dcf4f7a28533481bfba32ffb ******/ %feature("compactdefaultargs") Nb2dCurves; %feature("autodoc", "Return ------- @@ -393,8 +393,8 @@ Get the number of 2d curves to approximate. ") Nb2dCurves; virtual Standard_Integer Nb2dCurves(); - /****************** NbIntervals ******************/ - /**** md5 signature: f69f597bd42e14bdc81d20aa650b3d54 ****/ + /****** BRepBlend_AppFuncRoot::NbIntervals ******/ + /****** md5 signature: f69f597bd42e14bdc81d20aa650b3d54 ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -411,8 +411,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; virtual Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** Point ******************/ - /**** md5 signature: afc5d5ba96bac3b7421329782521d7aa ****/ + /****** BRepBlend_AppFuncRoot::Point ******/ + /****** md5 signature: afc5d5ba96bac3b7421329782521d7aa ******/ %feature("compactdefaultargs") Point; %feature("autodoc", " Parameters @@ -432,8 +432,8 @@ No available documentation. ") Point; virtual void Point(const Blend_AppFunction & Func, const Standard_Real Param, const math_Vector & Sol, Blend_Point & Pnt); - /****************** Resolution ******************/ - /**** md5 signature: ed5d1e3e2211bf035576b0c56d934522 ****/ + /****** BRepBlend_AppFuncRoot::Resolution ******/ + /****** md5 signature: ed5d1e3e2211bf035576b0c56d934522 ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -452,8 +452,8 @@ Returns the resolutions in the sub-space 2d -- this information is usful ") Resolution; virtual void Resolution(const Standard_Integer Index, const Standard_Real Tol, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** SectionShape ******************/ - /**** md5 signature: 4b057291e9e338f8d299ce252e7fb36b ****/ + /****** BRepBlend_AppFuncRoot::SectionShape ******/ + /****** md5 signature: 4b057291e9e338f8d299ce252e7fb36b ******/ %feature("compactdefaultargs") SectionShape; %feature("autodoc", " Parameters @@ -471,8 +471,8 @@ Get the format of an section. ") SectionShape; virtual void SectionShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** SetInterval ******************/ - /**** md5 signature: 09d00fda8057705f50d4a0bf656696ed ****/ + /****** BRepBlend_AppFuncRoot::SetInterval ******/ + /****** md5 signature: 09d00fda8057705f50d4a0bf656696ed ******/ %feature("compactdefaultargs") SetInterval; %feature("autodoc", " Parameters @@ -490,8 +490,8 @@ Sets the bounds of the parametric interval on the fonction this determines the d ") SetInterval; virtual void SetInterval(const Standard_Real First, const Standard_Real Last); - /****************** SetTolerance ******************/ - /**** md5 signature: bf0b5b1b4d35ebad7b1b81b0b9b8ba2c ****/ + /****** BRepBlend_AppFuncRoot::SetTolerance ******/ + /****** md5 signature: bf0b5b1b4d35ebad7b1b81b0b9b8ba2c ******/ %feature("compactdefaultargs") SetTolerance; %feature("autodoc", " Parameters @@ -509,8 +509,8 @@ Is usfull, if (me) have to be run numerical algorithme to perform d0, d1 or d2. ") SetTolerance; virtual void SetTolerance(const Standard_Real Tol3d, const Standard_Real Tol2d); - /****************** Vec ******************/ - /**** md5 signature: 8e423ef956801f23a2aa4f8ca11e9907 ****/ + /****** BRepBlend_AppFuncRoot::Vec ******/ + /****** md5 signature: 8e423ef956801f23a2aa4f8ca11e9907 ******/ %feature("compactdefaultargs") Vec; %feature("autodoc", " Parameters @@ -544,8 +544,8 @@ No available documentation. **************************/ class BRepBlend_AppSurf : public AppBlend_Approx { public: - /****************** BRepBlend_AppSurf ******************/ - /**** md5 signature: 3d853e22ecc3f684cf3f625ffa444684 ****/ + /****** BRepBlend_AppSurf::BRepBlend_AppSurf ******/ + /****** md5 signature: 3d853e22ecc3f684cf3f625ffa444684 ******/ %feature("compactdefaultargs") BRepBlend_AppSurf; %feature("autodoc", "Return ------- @@ -557,8 +557,8 @@ No available documentation. ") BRepBlend_AppSurf; BRepBlend_AppSurf(); - /****************** BRepBlend_AppSurf ******************/ - /**** md5 signature: f90d822c69ef6411865bdcb2388b117c ****/ + /****** BRepBlend_AppSurf::BRepBlend_AppSurf ******/ + /****** md5 signature: f90d822c69ef6411865bdcb2388b117c ******/ %feature("compactdefaultargs") BRepBlend_AppSurf; %feature("autodoc", " Parameters @@ -580,8 +580,8 @@ No available documentation. ") BRepBlend_AppSurf; BRepBlend_AppSurf(const Standard_Integer Degmin, const Standard_Integer Degmax, const Standard_Real Tol3d, const Standard_Real Tol2d, const Standard_Integer NbIt, const Standard_Boolean KnownParameters = Standard_False); - /****************** Continuity ******************/ - /**** md5 signature: 4cc571878c66d538aeaf8b0affec3574 ****/ + /****** BRepBlend_AppSurf::Continuity ******/ + /****** md5 signature: 4cc571878c66d538aeaf8b0affec3574 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", "Return ------- @@ -593,8 +593,8 @@ Returns the continuity used in the approximation. ") Continuity; GeomAbs_Shape Continuity(); - /****************** CriteriumWeight ******************/ - /**** md5 signature: 4b68323f3c03d233f69e27404a58a42c ****/ + /****** BRepBlend_AppSurf::CriteriumWeight ******/ + /****** md5 signature: 4b68323f3c03d233f69e27404a58a42c ******/ %feature("compactdefaultargs") CriteriumWeight; %feature("autodoc", " Parameters @@ -612,8 +612,8 @@ Returns the weights (as percent) associed to the criterium used in the optimizat ") CriteriumWeight; void CriteriumWeight(Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Curve2d ******************/ - /**** md5 signature: 45f5fb41b7daba7a20d1fb56ead05f0f ****/ + /****** BRepBlend_AppSurf::Curve2d ******/ + /****** md5 signature: 45f5fb41b7daba7a20d1fb56ead05f0f ******/ %feature("compactdefaultargs") Curve2d; %feature("autodoc", " Parameters @@ -633,8 +633,8 @@ No available documentation. ") Curve2d; void Curve2d(const Standard_Integer Index, TColgp_Array1OfPnt2d & TPoles, TColStd_Array1OfReal & TKnots, TColStd_Array1OfInteger & TMults); - /****************** Curve2dPoles ******************/ - /**** md5 signature: 8df321abd16a4651f96229eab1c5f048 ****/ + /****** BRepBlend_AppSurf::Curve2dPoles ******/ + /****** md5 signature: 8df321abd16a4651f96229eab1c5f048 ******/ %feature("compactdefaultargs") Curve2dPoles; %feature("autodoc", " Parameters @@ -651,8 +651,8 @@ No available documentation. ") Curve2dPoles; const TColgp_Array1OfPnt2d & Curve2dPoles(const Standard_Integer Index); - /****************** Curves2dDegree ******************/ - /**** md5 signature: 85ba31033da623d05ad75c9b051842b3 ****/ + /****** BRepBlend_AppSurf::Curves2dDegree ******/ + /****** md5 signature: 85ba31033da623d05ad75c9b051842b3 ******/ %feature("compactdefaultargs") Curves2dDegree; %feature("autodoc", "Return ------- @@ -664,8 +664,8 @@ No available documentation. ") Curves2dDegree; Standard_Integer Curves2dDegree(); - /****************** Curves2dKnots ******************/ - /**** md5 signature: cd12725d88c425f3fe1ebccf9467256f ****/ + /****** BRepBlend_AppSurf::Curves2dKnots ******/ + /****** md5 signature: cd12725d88c425f3fe1ebccf9467256f ******/ %feature("compactdefaultargs") Curves2dKnots; %feature("autodoc", "Return ------- @@ -677,8 +677,8 @@ No available documentation. ") Curves2dKnots; const TColStd_Array1OfReal & Curves2dKnots(); - /****************** Curves2dMults ******************/ - /**** md5 signature: d4f1ca5a39a589bb289460010c5bbf39 ****/ + /****** BRepBlend_AppSurf::Curves2dMults ******/ + /****** md5 signature: d4f1ca5a39a589bb289460010c5bbf39 ******/ %feature("compactdefaultargs") Curves2dMults; %feature("autodoc", "Return ------- @@ -690,8 +690,8 @@ No available documentation. ") Curves2dMults; const TColStd_Array1OfInteger & Curves2dMults(); - /****************** Curves2dShape ******************/ - /**** md5 signature: 28bf2faa4b8e811f12223cb99d1721ea ****/ + /****** BRepBlend_AppSurf::Curves2dShape ******/ + /****** md5 signature: 28bf2faa4b8e811f12223cb99d1721ea ******/ %feature("compactdefaultargs") Curves2dShape; %feature("autodoc", " Parameters @@ -709,8 +709,8 @@ No available documentation. ") Curves2dShape; void Curves2dShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** Init ******************/ - /**** md5 signature: 44a81349dbd1c40eccbaf3f763903054 ****/ + /****** BRepBlend_AppSurf::Init ******/ + /****** md5 signature: 44a81349dbd1c40eccbaf3f763903054 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -732,8 +732,8 @@ No available documentation. ") Init; void Init(const Standard_Integer Degmin, const Standard_Integer Degmax, const Standard_Real Tol3d, const Standard_Real Tol2d, const Standard_Integer NbIt, const Standard_Boolean KnownParameters = Standard_False); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepBlend_AppSurf::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -745,8 +745,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** NbCurves2d ******************/ - /**** md5 signature: 91ae967daa54efe7d38afad4a5698e5b ****/ + /****** BRepBlend_AppSurf::NbCurves2d ******/ + /****** md5 signature: 91ae967daa54efe7d38afad4a5698e5b ******/ %feature("compactdefaultargs") NbCurves2d; %feature("autodoc", "Return ------- @@ -758,8 +758,8 @@ No available documentation. ") NbCurves2d; Standard_Integer NbCurves2d(); - /****************** ParType ******************/ - /**** md5 signature: 97fa11d31bc8075ba4a84bf8b926a855 ****/ + /****** BRepBlend_AppSurf::ParType ******/ + /****** md5 signature: 97fa11d31bc8075ba4a84bf8b926a855 ******/ %feature("compactdefaultargs") ParType; %feature("autodoc", "Return ------- @@ -771,8 +771,8 @@ Returns the type of parametrization used in the approximation. ") ParType; Approx_ParametrizationType ParType(); - /****************** Perform ******************/ - /**** md5 signature: a9a9e9c5bf9d1337764cca2e172749d2 ****/ + /****** BRepBlend_AppSurf::Perform ******/ + /****** md5 signature: a9a9e9c5bf9d1337764cca2e172749d2 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -791,8 +791,8 @@ No available documentation. ") Perform; void Perform(const opencascade::handle & Lin, Blend_AppFunction & SecGen, const Standard_Boolean SpApprox = Standard_False); - /****************** Perform ******************/ - /**** md5 signature: 7a55171e878a876862465555307e6bd3 ****/ + /****** BRepBlend_AppSurf::Perform ******/ + /****** md5 signature: 7a55171e878a876862465555307e6bd3 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -811,8 +811,8 @@ No available documentation. ") Perform; void Perform(const opencascade::handle & Lin, Blend_AppFunction & SecGen, const Standard_Integer NbMaxP); - /****************** PerformSmoothing ******************/ - /**** md5 signature: 7cb77d9dda0f081d8efd1da8d7d4b09d ****/ + /****** BRepBlend_AppSurf::PerformSmoothing ******/ + /****** md5 signature: 7cb77d9dda0f081d8efd1da8d7d4b09d ******/ %feature("compactdefaultargs") PerformSmoothing; %feature("autodoc", " Parameters @@ -830,8 +830,8 @@ No available documentation. ") PerformSmoothing; void PerformSmoothing(const opencascade::handle & Lin, Blend_AppFunction & SecGen); - /****************** SetContinuity ******************/ - /**** md5 signature: 41a91b0ea6e9b248a1b48c05882f4281 ****/ + /****** BRepBlend_AppSurf::SetContinuity ******/ + /****** md5 signature: 41a91b0ea6e9b248a1b48c05882f4281 ******/ %feature("compactdefaultargs") SetContinuity; %feature("autodoc", " Parameters @@ -848,8 +848,8 @@ Define the continuity used in the approximation. ") SetContinuity; void SetContinuity(const GeomAbs_Shape C); - /****************** SetCriteriumWeight ******************/ - /**** md5 signature: f8c7045bd0e7f781a0984d023e8b1268 ****/ + /****** BRepBlend_AppSurf::SetCriteriumWeight ******/ + /****** md5 signature: f8c7045bd0e7f781a0984d023e8b1268 ******/ %feature("compactdefaultargs") SetCriteriumWeight; %feature("autodoc", " Parameters @@ -868,8 +868,8 @@ Define the weights associed to the criterium used in the optimization. //! if wi ") SetCriteriumWeight; void SetCriteriumWeight(const Standard_Real W1, const Standard_Real W2, const Standard_Real W3); - /****************** SetParType ******************/ - /**** md5 signature: ff343d7833ad3cc796439eb5cefa88ba ****/ + /****** BRepBlend_AppSurf::SetParType ******/ + /****** md5 signature: ff343d7833ad3cc796439eb5cefa88ba ******/ %feature("compactdefaultargs") SetParType; %feature("autodoc", " Parameters @@ -886,8 +886,8 @@ Define the type of parametrization used in the approximation. ") SetParType; void SetParType(const Approx_ParametrizationType ParType); - /****************** SurfPoles ******************/ - /**** md5 signature: 33be5d08621b237fcd73b5b9accd2338 ****/ + /****** BRepBlend_AppSurf::SurfPoles ******/ + /****** md5 signature: 33be5d08621b237fcd73b5b9accd2338 ******/ %feature("compactdefaultargs") SurfPoles; %feature("autodoc", "Return ------- @@ -899,8 +899,8 @@ No available documentation. ") SurfPoles; const TColgp_Array2OfPnt & SurfPoles(); - /****************** SurfShape ******************/ - /**** md5 signature: 6dbc9c018a92aabb9f9d1988ac20cb43 ****/ + /****** BRepBlend_AppSurf::SurfShape ******/ + /****** md5 signature: 6dbc9c018a92aabb9f9d1988ac20cb43 ******/ %feature("compactdefaultargs") SurfShape; %feature("autodoc", " Parameters @@ -921,8 +921,8 @@ No available documentation. ") SurfShape; void SurfShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** SurfUKnots ******************/ - /**** md5 signature: 30cf4dd9deaf04a1c77052e14ae7392b ****/ + /****** BRepBlend_AppSurf::SurfUKnots ******/ + /****** md5 signature: 30cf4dd9deaf04a1c77052e14ae7392b ******/ %feature("compactdefaultargs") SurfUKnots; %feature("autodoc", "Return ------- @@ -934,8 +934,8 @@ No available documentation. ") SurfUKnots; const TColStd_Array1OfReal & SurfUKnots(); - /****************** SurfUMults ******************/ - /**** md5 signature: ef046447df8e4b2931da90e1475e731f ****/ + /****** BRepBlend_AppSurf::SurfUMults ******/ + /****** md5 signature: ef046447df8e4b2931da90e1475e731f ******/ %feature("compactdefaultargs") SurfUMults; %feature("autodoc", "Return ------- @@ -947,8 +947,8 @@ No available documentation. ") SurfUMults; const TColStd_Array1OfInteger & SurfUMults(); - /****************** SurfVKnots ******************/ - /**** md5 signature: 52c9dafc43c5e3713c77d7aa4381da5c ****/ + /****** BRepBlend_AppSurf::SurfVKnots ******/ + /****** md5 signature: 52c9dafc43c5e3713c77d7aa4381da5c ******/ %feature("compactdefaultargs") SurfVKnots; %feature("autodoc", "Return ------- @@ -960,8 +960,8 @@ No available documentation. ") SurfVKnots; const TColStd_Array1OfReal & SurfVKnots(); - /****************** SurfVMults ******************/ - /**** md5 signature: 589e6536c77c512e7a37f99faf0fa21c ****/ + /****** BRepBlend_AppSurf::SurfVMults ******/ + /****** md5 signature: 589e6536c77c512e7a37f99faf0fa21c ******/ %feature("compactdefaultargs") SurfVMults; %feature("autodoc", "Return ------- @@ -973,8 +973,8 @@ No available documentation. ") SurfVMults; const TColStd_Array1OfInteger & SurfVMults(); - /****************** SurfWeights ******************/ - /**** md5 signature: 894d2a3f2c33f7d641aef9c7f9e3fa57 ****/ + /****** BRepBlend_AppSurf::SurfWeights ******/ + /****** md5 signature: 894d2a3f2c33f7d641aef9c7f9e3fa57 ******/ %feature("compactdefaultargs") SurfWeights; %feature("autodoc", "Return ------- @@ -986,8 +986,8 @@ No available documentation. ") SurfWeights; const TColStd_Array2OfReal & SurfWeights(); - /****************** Surface ******************/ - /**** md5 signature: 49bb9dd6da49966f0010e14dd0ffef04 ****/ + /****** BRepBlend_AppSurf::Surface ******/ + /****** md5 signature: 49bb9dd6da49966f0010e14dd0ffef04 ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", " Parameters @@ -1009,8 +1009,8 @@ No available documentation. ") Surface; void Surface(TColgp_Array2OfPnt & TPoles, TColStd_Array2OfReal & TWeights, TColStd_Array1OfReal & TUKnots, TColStd_Array1OfReal & TVKnots, TColStd_Array1OfInteger & TUMults, TColStd_Array1OfInteger & TVMults); - /****************** TolCurveOnSurf ******************/ - /**** md5 signature: f21f0f877b35cf67581fa59260f72857 ****/ + /****** BRepBlend_AppSurf::TolCurveOnSurf ******/ + /****** md5 signature: f21f0f877b35cf67581fa59260f72857 ******/ %feature("compactdefaultargs") TolCurveOnSurf; %feature("autodoc", " Parameters @@ -1027,8 +1027,8 @@ No available documentation. ") TolCurveOnSurf; Standard_Real TolCurveOnSurf(const Standard_Integer Index); - /****************** TolReached ******************/ - /**** md5 signature: c8d3e7f26c4ee8a50f4eca5274d79e63 ****/ + /****** BRepBlend_AppSurf::TolReached ******/ + /****** md5 signature: c8d3e7f26c4ee8a50f4eca5274d79e63 ******/ %feature("compactdefaultargs") TolReached; %feature("autodoc", " Parameters @@ -1045,8 +1045,8 @@ No available documentation. ") TolReached; void TolReached(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** UDegree ******************/ - /**** md5 signature: f204e5fbf1c49e3d9e4889dfead5a190 ****/ + /****** BRepBlend_AppSurf::UDegree ******/ + /****** md5 signature: f204e5fbf1c49e3d9e4889dfead5a190 ******/ %feature("compactdefaultargs") UDegree; %feature("autodoc", "Return ------- @@ -1058,8 +1058,8 @@ No available documentation. ") UDegree; Standard_Integer UDegree(); - /****************** VDegree ******************/ - /**** md5 signature: 4901bdb3b29a5c2410ca93d6a7816f06 ****/ + /****** BRepBlend_AppSurf::VDegree ******/ + /****** md5 signature: 4901bdb3b29a5c2410ca93d6a7816f06 ******/ %feature("compactdefaultargs") VDegree; %feature("autodoc", "Return ------- @@ -1085,8 +1085,8 @@ No available documentation. *****************************/ class BRepBlend_AppSurface : public AppBlend_Approx { public: - /****************** BRepBlend_AppSurface ******************/ - /**** md5 signature: 4c9fa38ef52401b9399050fa7e75f465 ****/ + /****** BRepBlend_AppSurface::BRepBlend_AppSurface ******/ + /****** md5 signature: 4c9fa38ef52401b9399050fa7e75f465 ******/ %feature("compactdefaultargs") BRepBlend_AppSurface; %feature("autodoc", " Parameters @@ -1111,8 +1111,8 @@ Approximation of the new surface (and eventually the 2d curves on the support su ") BRepBlend_AppSurface; BRepBlend_AppSurface(const opencascade::handle & Funct, const Standard_Real First, const Standard_Real Last, const Standard_Real Tol3d, const Standard_Real Tol2d, const Standard_Real TolAngular, const GeomAbs_Shape Continuity = GeomAbs_C0, const Standard_Integer Degmax = 11, const Standard_Integer Segmax = 50); - /****************** Curve2d ******************/ - /**** md5 signature: 45f5fb41b7daba7a20d1fb56ead05f0f ****/ + /****** BRepBlend_AppSurface::Curve2d ******/ + /****** md5 signature: 45f5fb41b7daba7a20d1fb56ead05f0f ******/ %feature("compactdefaultargs") Curve2d; %feature("autodoc", " Parameters @@ -1132,8 +1132,8 @@ No available documentation. ") Curve2d; void Curve2d(const Standard_Integer Index, TColgp_Array1OfPnt2d & TPoles, TColStd_Array1OfReal & TKnots, TColStd_Array1OfInteger & TMults); - /****************** Curve2dPoles ******************/ - /**** md5 signature: 8df321abd16a4651f96229eab1c5f048 ****/ + /****** BRepBlend_AppSurface::Curve2dPoles ******/ + /****** md5 signature: 8df321abd16a4651f96229eab1c5f048 ******/ %feature("compactdefaultargs") Curve2dPoles; %feature("autodoc", " Parameters @@ -1150,8 +1150,8 @@ No available documentation. ") Curve2dPoles; const TColgp_Array1OfPnt2d & Curve2dPoles(const Standard_Integer Index); - /****************** Curves2dDegree ******************/ - /**** md5 signature: 85ba31033da623d05ad75c9b051842b3 ****/ + /****** BRepBlend_AppSurface::Curves2dDegree ******/ + /****** md5 signature: 85ba31033da623d05ad75c9b051842b3 ******/ %feature("compactdefaultargs") Curves2dDegree; %feature("autodoc", "Return ------- @@ -1163,8 +1163,8 @@ No available documentation. ") Curves2dDegree; Standard_Integer Curves2dDegree(); - /****************** Curves2dKnots ******************/ - /**** md5 signature: cd12725d88c425f3fe1ebccf9467256f ****/ + /****** BRepBlend_AppSurface::Curves2dKnots ******/ + /****** md5 signature: cd12725d88c425f3fe1ebccf9467256f ******/ %feature("compactdefaultargs") Curves2dKnots; %feature("autodoc", "Return ------- @@ -1176,8 +1176,8 @@ No available documentation. ") Curves2dKnots; const TColStd_Array1OfReal & Curves2dKnots(); - /****************** Curves2dMults ******************/ - /**** md5 signature: d4f1ca5a39a589bb289460010c5bbf39 ****/ + /****** BRepBlend_AppSurface::Curves2dMults ******/ + /****** md5 signature: d4f1ca5a39a589bb289460010c5bbf39 ******/ %feature("compactdefaultargs") Curves2dMults; %feature("autodoc", "Return ------- @@ -1189,8 +1189,8 @@ No available documentation. ") Curves2dMults; const TColStd_Array1OfInteger & Curves2dMults(); - /****************** Curves2dShape ******************/ - /**** md5 signature: 28bf2faa4b8e811f12223cb99d1721ea ****/ + /****** BRepBlend_AppSurface::Curves2dShape ******/ + /****** md5 signature: 28bf2faa4b8e811f12223cb99d1721ea ******/ %feature("compactdefaultargs") Curves2dShape; %feature("autodoc", " Parameters @@ -1208,8 +1208,8 @@ No available documentation. ") Curves2dShape; void Curves2dShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** Dump ******************/ - /**** md5 signature: d37b43e0b2386dc096d5d707876db157 ****/ + /****** BRepBlend_AppSurface::Dump ******/ + /****** md5 signature: d37b43e0b2386dc096d5d707876db157 ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", " Parameters @@ -1225,8 +1225,8 @@ Display information on approximation. ") Dump; void Dump(std::ostream &OutValue); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepBlend_AppSurface::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -1238,8 +1238,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** Max2dError ******************/ - /**** md5 signature: bb3f56b4b55e0d91b8620b3ad4fad758 ****/ + /****** BRepBlend_AppSurface::Max2dError ******/ + /****** md5 signature: bb3f56b4b55e0d91b8620b3ad4fad758 ******/ %feature("compactdefaultargs") Max2dError; %feature("autodoc", " Parameters @@ -1256,8 +1256,8 @@ Returns the maximum error in the 2d curve approximation. ") Max2dError; Standard_Real Max2dError(const Standard_Integer Index); - /****************** MaxErrorOnSurf ******************/ - /**** md5 signature: e42290da593c42adaac24f68c51ecbda ****/ + /****** BRepBlend_AppSurface::MaxErrorOnSurf ******/ + /****** md5 signature: e42290da593c42adaac24f68c51ecbda ******/ %feature("compactdefaultargs") MaxErrorOnSurf; %feature("autodoc", "Return ------- @@ -1269,8 +1269,8 @@ Returns the maximum error in the surface approximation. ") MaxErrorOnSurf; Standard_Real MaxErrorOnSurf(); - /****************** NbCurves2d ******************/ - /**** md5 signature: 91ae967daa54efe7d38afad4a5698e5b ****/ + /****** BRepBlend_AppSurface::NbCurves2d ******/ + /****** md5 signature: 91ae967daa54efe7d38afad4a5698e5b ******/ %feature("compactdefaultargs") NbCurves2d; %feature("autodoc", "Return ------- @@ -1282,8 +1282,8 @@ No available documentation. ") NbCurves2d; Standard_Integer NbCurves2d(); - /****************** SurfPoles ******************/ - /**** md5 signature: 33be5d08621b237fcd73b5b9accd2338 ****/ + /****** BRepBlend_AppSurface::SurfPoles ******/ + /****** md5 signature: 33be5d08621b237fcd73b5b9accd2338 ******/ %feature("compactdefaultargs") SurfPoles; %feature("autodoc", "Return ------- @@ -1295,8 +1295,8 @@ No available documentation. ") SurfPoles; const TColgp_Array2OfPnt & SurfPoles(); - /****************** SurfShape ******************/ - /**** md5 signature: 6dbc9c018a92aabb9f9d1988ac20cb43 ****/ + /****** BRepBlend_AppSurface::SurfShape ******/ + /****** md5 signature: 6dbc9c018a92aabb9f9d1988ac20cb43 ******/ %feature("compactdefaultargs") SurfShape; %feature("autodoc", " Parameters @@ -1317,8 +1317,8 @@ No available documentation. ") SurfShape; void SurfShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** SurfUKnots ******************/ - /**** md5 signature: 30cf4dd9deaf04a1c77052e14ae7392b ****/ + /****** BRepBlend_AppSurface::SurfUKnots ******/ + /****** md5 signature: 30cf4dd9deaf04a1c77052e14ae7392b ******/ %feature("compactdefaultargs") SurfUKnots; %feature("autodoc", "Return ------- @@ -1330,8 +1330,8 @@ No available documentation. ") SurfUKnots; const TColStd_Array1OfReal & SurfUKnots(); - /****************** SurfUMults ******************/ - /**** md5 signature: ef046447df8e4b2931da90e1475e731f ****/ + /****** BRepBlend_AppSurface::SurfUMults ******/ + /****** md5 signature: ef046447df8e4b2931da90e1475e731f ******/ %feature("compactdefaultargs") SurfUMults; %feature("autodoc", "Return ------- @@ -1343,8 +1343,8 @@ No available documentation. ") SurfUMults; const TColStd_Array1OfInteger & SurfUMults(); - /****************** SurfVKnots ******************/ - /**** md5 signature: 52c9dafc43c5e3713c77d7aa4381da5c ****/ + /****** BRepBlend_AppSurface::SurfVKnots ******/ + /****** md5 signature: 52c9dafc43c5e3713c77d7aa4381da5c ******/ %feature("compactdefaultargs") SurfVKnots; %feature("autodoc", "Return ------- @@ -1356,8 +1356,8 @@ No available documentation. ") SurfVKnots; const TColStd_Array1OfReal & SurfVKnots(); - /****************** SurfVMults ******************/ - /**** md5 signature: 589e6536c77c512e7a37f99faf0fa21c ****/ + /****** BRepBlend_AppSurface::SurfVMults ******/ + /****** md5 signature: 589e6536c77c512e7a37f99faf0fa21c ******/ %feature("compactdefaultargs") SurfVMults; %feature("autodoc", "Return ------- @@ -1369,8 +1369,8 @@ No available documentation. ") SurfVMults; const TColStd_Array1OfInteger & SurfVMults(); - /****************** SurfWeights ******************/ - /**** md5 signature: 894d2a3f2c33f7d641aef9c7f9e3fa57 ****/ + /****** BRepBlend_AppSurface::SurfWeights ******/ + /****** md5 signature: 894d2a3f2c33f7d641aef9c7f9e3fa57 ******/ %feature("compactdefaultargs") SurfWeights; %feature("autodoc", "Return ------- @@ -1382,8 +1382,8 @@ No available documentation. ") SurfWeights; const TColStd_Array2OfReal & SurfWeights(); - /****************** Surface ******************/ - /**** md5 signature: 49bb9dd6da49966f0010e14dd0ffef04 ****/ + /****** BRepBlend_AppSurface::Surface ******/ + /****** md5 signature: 49bb9dd6da49966f0010e14dd0ffef04 ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", " Parameters @@ -1405,8 +1405,8 @@ No available documentation. ") Surface; void Surface(TColgp_Array2OfPnt & TPoles, TColStd_Array2OfReal & TWeights, TColStd_Array1OfReal & TUKnots, TColStd_Array1OfReal & TVKnots, TColStd_Array1OfInteger & TUMults, TColStd_Array1OfInteger & TVMults); - /****************** TolCurveOnSurf ******************/ - /**** md5 signature: f21f0f877b35cf67581fa59260f72857 ****/ + /****** BRepBlend_AppSurface::TolCurveOnSurf ******/ + /****** md5 signature: f21f0f877b35cf67581fa59260f72857 ******/ %feature("compactdefaultargs") TolCurveOnSurf; %feature("autodoc", " Parameters @@ -1423,8 +1423,8 @@ No available documentation. ") TolCurveOnSurf; Standard_Real TolCurveOnSurf(const Standard_Integer Index); - /****************** UDegree ******************/ - /**** md5 signature: f204e5fbf1c49e3d9e4889dfead5a190 ****/ + /****** BRepBlend_AppSurface::UDegree ******/ + /****** md5 signature: f204e5fbf1c49e3d9e4889dfead5a190 ******/ %feature("compactdefaultargs") UDegree; %feature("autodoc", "Return ------- @@ -1436,8 +1436,8 @@ No available documentation. ") UDegree; Standard_Integer UDegree(); - /****************** VDegree ******************/ - /**** md5 signature: 4901bdb3b29a5c2410ca93d6a7816f06 ****/ + /****** BRepBlend_AppSurface::VDegree ******/ + /****** md5 signature: 4901bdb3b29a5c2410ca93d6a7816f06 ******/ %feature("compactdefaultargs") VDegree; %feature("autodoc", "Return ------- @@ -1467,8 +1467,8 @@ No available documentation. ****************************/ class BRepBlend_BlendTool { public: - /****************** Bounds ******************/ - /**** md5 signature: 14979ddc3175e995d5548477ac5bcd4b ****/ + /****** BRepBlend_BlendTool::Bounds ******/ + /****** md5 signature: 14979ddc3175e995d5548477ac5bcd4b ******/ %feature("compactdefaultargs") Bounds; %feature("autodoc", " Parameters @@ -1486,8 +1486,8 @@ Returns the parametric limits on the arc c. these limits must be finite: they ar ") Bounds; static void Bounds(const opencascade::handle & C, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** CurveOnSurf ******************/ - /**** md5 signature: 42ed509a86edeb73002d5f1d07860770 ****/ + /****** BRepBlend_BlendTool::CurveOnSurf ******/ + /****** md5 signature: 42ed509a86edeb73002d5f1d07860770 ******/ %feature("compactdefaultargs") CurveOnSurf; %feature("autodoc", " Parameters @@ -1505,8 +1505,8 @@ No available documentation. ") CurveOnSurf; static opencascade::handle CurveOnSurf(const opencascade::handle & C, const opencascade::handle & S); - /****************** Inters ******************/ - /**** md5 signature: 170d1a316434301ae883f401f1afc1a5 ****/ + /****** BRepBlend_BlendTool::Inters ******/ + /****** md5 signature: 170d1a316434301ae883f401f1afc1a5 ******/ %feature("compactdefaultargs") Inters; %feature("autodoc", " Parameters @@ -1527,8 +1527,8 @@ No available documentation. ") Inters; static Standard_Boolean Inters(const gp_Pnt2d & P1, const gp_Pnt2d & P2, const opencascade::handle & S, const opencascade::handle & C, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** NbSamplesU ******************/ - /**** md5 signature: 7ffe816252db97bdbf2950cea2ca2037 ****/ + /****** BRepBlend_BlendTool::NbSamplesU ******/ + /****** md5 signature: 7ffe816252db97bdbf2950cea2ca2037 ******/ %feature("compactdefaultargs") NbSamplesU; %feature("autodoc", " Parameters @@ -1547,8 +1547,8 @@ No available documentation. ") NbSamplesU; static Standard_Integer NbSamplesU(const opencascade::handle & S, const Standard_Real u1, const Standard_Real u2); - /****************** NbSamplesV ******************/ - /**** md5 signature: 183861bdb84cb1597bd3a1324a097e8e ****/ + /****** BRepBlend_BlendTool::NbSamplesV ******/ + /****** md5 signature: 183861bdb84cb1597bd3a1324a097e8e ******/ %feature("compactdefaultargs") NbSamplesV; %feature("autodoc", " Parameters @@ -1567,8 +1567,8 @@ No available documentation. ") NbSamplesV; static Standard_Integer NbSamplesV(const opencascade::handle & S, const Standard_Real v1, const Standard_Real v2); - /****************** Parameter ******************/ - /**** md5 signature: 7ae5064afa9b94fba3ac6ba29690d05a ****/ + /****** BRepBlend_BlendTool::Parameter ******/ + /****** md5 signature: 7ae5064afa9b94fba3ac6ba29690d05a ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", " Parameters @@ -1586,8 +1586,8 @@ Returns the parameter of the vertex v on the edge a. ") Parameter; static Standard_Real Parameter(const opencascade::handle & V, const opencascade::handle & A); - /****************** Project ******************/ - /**** md5 signature: dd03f29497bf175b89cbdb0eb69337ae ****/ + /****** BRepBlend_BlendTool::Project ******/ + /****** md5 signature: dd03f29497bf175b89cbdb0eb69337ae ******/ %feature("compactdefaultargs") Project; %feature("autodoc", " Parameters @@ -1607,8 +1607,8 @@ Projects the point p on the arc c. if the methods returns standard_true, the pro ") Project; static Standard_Boolean Project(const gp_Pnt2d & P, const opencascade::handle & S, const opencascade::handle & C, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** SingularOnUMax ******************/ - /**** md5 signature: d3ce7701aebe6c17d8a630ca024b7a67 ****/ + /****** BRepBlend_BlendTool::SingularOnUMax ******/ + /****** md5 signature: d3ce7701aebe6c17d8a630ca024b7a67 ******/ %feature("compactdefaultargs") SingularOnUMax; %feature("autodoc", " Parameters @@ -1625,8 +1625,8 @@ No available documentation. ") SingularOnUMax; static Standard_Boolean SingularOnUMax(const opencascade::handle & S); - /****************** SingularOnUMin ******************/ - /**** md5 signature: d59a1ea9f83cedfe3b3c10bf7d368a33 ****/ + /****** BRepBlend_BlendTool::SingularOnUMin ******/ + /****** md5 signature: d59a1ea9f83cedfe3b3c10bf7d368a33 ******/ %feature("compactdefaultargs") SingularOnUMin; %feature("autodoc", " Parameters @@ -1643,8 +1643,8 @@ No available documentation. ") SingularOnUMin; static Standard_Boolean SingularOnUMin(const opencascade::handle & S); - /****************** SingularOnVMax ******************/ - /**** md5 signature: 5f37482ceddffdf31349f166be64affd ****/ + /****** BRepBlend_BlendTool::SingularOnVMax ******/ + /****** md5 signature: 5f37482ceddffdf31349f166be64affd ******/ %feature("compactdefaultargs") SingularOnVMax; %feature("autodoc", " Parameters @@ -1661,8 +1661,8 @@ No available documentation. ") SingularOnVMax; static Standard_Boolean SingularOnVMax(const opencascade::handle & S); - /****************** SingularOnVMin ******************/ - /**** md5 signature: 25ae497959e941075dff65a069de3c75 ****/ + /****** BRepBlend_BlendTool::SingularOnVMin ******/ + /****** md5 signature: 25ae497959e941075dff65a069de3c75 ******/ %feature("compactdefaultargs") SingularOnVMin; %feature("autodoc", " Parameters @@ -1679,8 +1679,8 @@ No available documentation. ") SingularOnVMin; static Standard_Boolean SingularOnVMin(const opencascade::handle & S); - /****************** Tolerance ******************/ - /**** md5 signature: d0ef038126a2ceb42adeb04bacf780f0 ****/ + /****** BRepBlend_BlendTool::Tolerance ******/ + /****** md5 signature: d0ef038126a2ceb42adeb04bacf780f0 ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", " Parameters @@ -1715,8 +1715,8 @@ Returns the parametric tolerance on the arc a used to consider that the vertex a **********************************/ class BRepBlend_CurvPointRadInv : public Blend_CurvPointFuncInv { public: - /****************** BRepBlend_CurvPointRadInv ******************/ - /**** md5 signature: 07adfa2c83f449c99a58faec4122a065 ****/ + /****** BRepBlend_CurvPointRadInv::BRepBlend_CurvPointRadInv ******/ + /****** md5 signature: 07adfa2c83f449c99a58faec4122a065 ******/ %feature("compactdefaultargs") BRepBlend_CurvPointRadInv; %feature("autodoc", " Parameters @@ -1734,8 +1734,8 @@ No available documentation. ") BRepBlend_CurvPointRadInv; BRepBlend_CurvPointRadInv(const opencascade::handle & C1, const opencascade::handle & C2); - /****************** Derivatives ******************/ - /**** md5 signature: 80ee5f16e62731c095910ad60228848b ****/ + /****** BRepBlend_CurvPointRadInv::Derivatives ******/ + /****** md5 signature: 80ee5f16e62731c095910ad60228848b ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -1753,8 +1753,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: 73d101c74e718085b2fc8de28383bce3 ****/ + /****** BRepBlend_CurvPointRadInv::GetBounds ******/ + /****** md5 signature: 73d101c74e718085b2fc8de28383bce3 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -1772,8 +1772,8 @@ Returns in the vector infbound the lowest values allowed for each of the 3 varia ") GetBounds; void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetTolerance ******************/ - /**** md5 signature: 463e2084f8f6e4a4f87c36de6e9fd9c6 ****/ + /****** BRepBlend_CurvPointRadInv::GetTolerance ******/ + /****** md5 signature: 463e2084f8f6e4a4f87c36de6e9fd9c6 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -1791,8 +1791,8 @@ Returns in the vector tolerance the parametric tolerance for each of the 3 varia ") GetTolerance; void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** IsSolution ******************/ - /**** md5 signature: 0884df902635922234b529dc88a260b5 ****/ + /****** BRepBlend_CurvPointRadInv::IsSolution ******/ + /****** md5 signature: 0884df902635922234b529dc88a260b5 ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -1810,8 +1810,8 @@ Returns standard_true if sol is a zero of the function. tol is the tolerance use ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** NbEquations ******************/ - /**** md5 signature: 42be0dc2e32c8e563393e8490171707e ****/ + /****** BRepBlend_CurvPointRadInv::NbEquations ******/ + /****** md5 signature: 42be0dc2e32c8e563393e8490171707e ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -1823,8 +1823,8 @@ Returns 2. ") NbEquations; Standard_Integer NbEquations(); - /****************** Set ******************/ - /**** md5 signature: d73c9c4058c0955fc8cd59888660f750 ****/ + /****** BRepBlend_CurvPointRadInv::Set ******/ + /****** md5 signature: d73c9c4058c0955fc8cd59888660f750 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -1841,8 +1841,8 @@ No available documentation. ") Set; void Set(const Standard_Integer Choix); - /****************** Set ******************/ - /**** md5 signature: db883cf63ff497749765a1588d5f0509 ****/ + /****** BRepBlend_CurvPointRadInv::Set ******/ + /****** md5 signature: db883cf63ff497749765a1588d5f0509 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -1859,8 +1859,8 @@ Set the point on which a solution has to be found. ") Set; void Set(const gp_Pnt & P); - /****************** Value ******************/ - /**** md5 signature: 31f6ba581b8fae503400d98976418349 ****/ + /****** BRepBlend_CurvPointRadInv::Value ******/ + /****** md5 signature: 31f6ba581b8fae503400d98976418349 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -1878,8 +1878,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: 17c41f2c2b925e9ddfe2f61a9052313c ****/ + /****** BRepBlend_CurvPointRadInv::Values ******/ + /****** md5 signature: 17c41f2c2b925e9ddfe2f61a9052313c ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -1912,8 +1912,8 @@ Returns the values of the functions and the derivatives for the variable ****************************/ class BRepBlend_Extremity { public: - /****************** BRepBlend_Extremity ******************/ - /**** md5 signature: 2f152b6238552d4eda1d4eae96bb18d4 ****/ + /****** BRepBlend_Extremity::BRepBlend_Extremity ******/ + /****** md5 signature: 2f152b6238552d4eda1d4eae96bb18d4 ******/ %feature("compactdefaultargs") BRepBlend_Extremity; %feature("autodoc", "Return ------- @@ -1925,8 +1925,8 @@ No available documentation. ") BRepBlend_Extremity; BRepBlend_Extremity(); - /****************** BRepBlend_Extremity ******************/ - /**** md5 signature: ee5708baa54062a6870f496f8287be89 ****/ + /****** BRepBlend_Extremity::BRepBlend_Extremity ******/ + /****** md5 signature: ee5708baa54062a6870f496f8287be89 ******/ %feature("compactdefaultargs") BRepBlend_Extremity; %feature("autodoc", " Parameters @@ -1947,8 +1947,8 @@ Creates an extremity on a surface. ") BRepBlend_Extremity; BRepBlend_Extremity(const gp_Pnt & P, const Standard_Real U, const Standard_Real V, const Standard_Real Param, const Standard_Real Tol); - /****************** BRepBlend_Extremity ******************/ - /**** md5 signature: f530cc4b46ea55af8e69fe6333e2fe76 ****/ + /****** BRepBlend_Extremity::BRepBlend_Extremity ******/ + /****** md5 signature: f530cc4b46ea55af8e69fe6333e2fe76 ******/ %feature("compactdefaultargs") BRepBlend_Extremity; %feature("autodoc", " Parameters @@ -1970,8 +1970,8 @@ Creates an extremity on a surface. this extremity matches the vertex . ") BRepBlend_Extremity; BRepBlend_Extremity(const gp_Pnt & P, const Standard_Real U, const Standard_Real V, const Standard_Real Param, const Standard_Real Tol, const opencascade::handle & Vtx); - /****************** BRepBlend_Extremity ******************/ - /**** md5 signature: ede94a8bfb71acf447a0bfd63c98b8eb ****/ + /****** BRepBlend_Extremity::BRepBlend_Extremity ******/ + /****** md5 signature: ede94a8bfb71acf447a0bfd63c98b8eb ******/ %feature("compactdefaultargs") BRepBlend_Extremity; %feature("autodoc", " Parameters @@ -1991,8 +1991,8 @@ Creates an extremity on a curve. ") BRepBlend_Extremity; BRepBlend_Extremity(const gp_Pnt & P, const Standard_Real W, const Standard_Real Param, const Standard_Real Tol); - /****************** AddArc ******************/ - /**** md5 signature: 1bd1958509e7b4b472a6df84023e3729 ****/ + /****** BRepBlend_Extremity::AddArc ******/ + /****** md5 signature: 1bd1958509e7b4b472a6df84023e3729 ******/ %feature("compactdefaultargs") AddArc; %feature("autodoc", " Parameters @@ -2012,8 +2012,8 @@ Sets the values of a point which is on the arc a, at parameter param. ") AddArc; void AddArc(const opencascade::handle & A, const Standard_Real Param, const IntSurf_Transition & TLine, const IntSurf_Transition & TArc); - /****************** HasTangent ******************/ - /**** md5 signature: 8ce1fe7a81869f6f1baf5bc37a4f78bd ****/ + /****** BRepBlend_Extremity::HasTangent ******/ + /****** md5 signature: 8ce1fe7a81869f6f1baf5bc37a4f78bd ******/ %feature("compactdefaultargs") HasTangent; %feature("autodoc", "Return ------- @@ -2025,8 +2025,8 @@ Returns true if the tangent is stored. ") HasTangent; Standard_Boolean HasTangent(); - /****************** IsVertex ******************/ - /**** md5 signature: 7dbb6189450b7f2ae76146c6d5d6e875 ****/ + /****** BRepBlend_Extremity::IsVertex ******/ + /****** md5 signature: 7dbb6189450b7f2ae76146c6d5d6e875 ******/ %feature("compactdefaultargs") IsVertex; %feature("autodoc", "Return ------- @@ -2038,8 +2038,8 @@ Returns standard_true when the point coincide with an existing vertex. ") IsVertex; Standard_Boolean IsVertex(); - /****************** NbPointOnRst ******************/ - /**** md5 signature: 6b0e2365804848717d5b6d7f5c1786eb ****/ + /****** BRepBlend_Extremity::NbPointOnRst ******/ + /****** md5 signature: 6b0e2365804848717d5b6d7f5c1786eb ******/ %feature("compactdefaultargs") NbPointOnRst; %feature("autodoc", "Return ------- @@ -2051,8 +2051,8 @@ Returns the number of arc containing the extremity. if the method returns 0, the ") NbPointOnRst; Standard_Integer NbPointOnRst(); - /****************** Parameter ******************/ - /**** md5 signature: ecccdeaeaa0deed24f47e61ad75d24f1 ****/ + /****** BRepBlend_Extremity::Parameter ******/ + /****** md5 signature: ecccdeaeaa0deed24f47e61ad75d24f1 ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", "Return ------- @@ -2064,8 +2064,8 @@ No available documentation. ") Parameter; Standard_Real Parameter(); - /****************** ParameterOnGuide ******************/ - /**** md5 signature: ce20260292837a847e6ed56fcbdde050 ****/ + /****** BRepBlend_Extremity::ParameterOnGuide ******/ + /****** md5 signature: ce20260292837a847e6ed56fcbdde050 ******/ %feature("compactdefaultargs") ParameterOnGuide; %feature("autodoc", "Return ------- @@ -2077,8 +2077,8 @@ No available documentation. ") ParameterOnGuide; Standard_Real ParameterOnGuide(); - /****************** Parameters ******************/ - /**** md5 signature: 24a2c71191423d4e30ed72f58cb5de87 ****/ + /****** BRepBlend_Extremity::Parameters ******/ + /****** md5 signature: 24a2c71191423d4e30ed72f58cb5de87 ******/ %feature("compactdefaultargs") Parameters; %feature("autodoc", " Parameters @@ -2095,8 +2095,8 @@ This method returns the parameters of the point on the concerned surface. ") Parameters; void Parameters(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** PointOnRst ******************/ - /**** md5 signature: d16a6b22823a7de41836e454c6562498 ****/ + /****** BRepBlend_Extremity::PointOnRst ******/ + /****** md5 signature: d16a6b22823a7de41836e454c6562498 ******/ %feature("compactdefaultargs") PointOnRst; %feature("autodoc", " Parameters @@ -2113,8 +2113,8 @@ No available documentation. ") PointOnRst; const BRepBlend_PointOnRst & PointOnRst(const Standard_Integer Index); - /****************** SetTangent ******************/ - /**** md5 signature: fe6479f29924454154642419383f0e06 ****/ + /****** BRepBlend_Extremity::SetTangent ******/ + /****** md5 signature: fe6479f29924454154642419383f0e06 ******/ %feature("compactdefaultargs") SetTangent; %feature("autodoc", " Parameters @@ -2131,8 +2131,8 @@ Set the tangent vector for an extremity on a surface. ") SetTangent; void SetTangent(const gp_Vec & Tangent); - /****************** SetValue ******************/ - /**** md5 signature: df27ebf7b09becfcab08bed6af474b36 ****/ + /****** BRepBlend_Extremity::SetValue ******/ + /****** md5 signature: df27ebf7b09becfcab08bed6af474b36 ******/ %feature("compactdefaultargs") SetValue; %feature("autodoc", " Parameters @@ -2153,8 +2153,8 @@ Set the values for an extremity on a surface. ") SetValue; void SetValue(const gp_Pnt & P, const Standard_Real U, const Standard_Real V, const Standard_Real Param, const Standard_Real Tol); - /****************** SetValue ******************/ - /**** md5 signature: 2f52a225a20b1c127cd792dc347f9deb ****/ + /****** BRepBlend_Extremity::SetValue ******/ + /****** md5 signature: 2f52a225a20b1c127cd792dc347f9deb ******/ %feature("compactdefaultargs") SetValue; %feature("autodoc", " Parameters @@ -2176,8 +2176,8 @@ Set the values for an extremity on a surface.this extremity matches the vertex < ") SetValue; void SetValue(const gp_Pnt & P, const Standard_Real U, const Standard_Real V, const Standard_Real Param, const Standard_Real Tol, const opencascade::handle & Vtx); - /****************** SetValue ******************/ - /**** md5 signature: 20935a61f170d6589ea40791f00aa5f3 ****/ + /****** BRepBlend_Extremity::SetValue ******/ + /****** md5 signature: 20935a61f170d6589ea40791f00aa5f3 ******/ %feature("compactdefaultargs") SetValue; %feature("autodoc", " Parameters @@ -2197,8 +2197,8 @@ Set the values for an extremity on curve. ") SetValue; void SetValue(const gp_Pnt & P, const Standard_Real W, const Standard_Real Param, const Standard_Real Tol); - /****************** SetVertex ******************/ - /**** md5 signature: 1c2d847f9895dadcabe6f5a142550e35 ****/ + /****** BRepBlend_Extremity::SetVertex ******/ + /****** md5 signature: 1c2d847f9895dadcabe6f5a142550e35 ******/ %feature("compactdefaultargs") SetVertex; %feature("autodoc", " Parameters @@ -2215,8 +2215,8 @@ Set the values for an extremity on a curve. ") SetVertex; void SetVertex(const opencascade::handle & V); - /****************** Tangent ******************/ - /**** md5 signature: 00df3077d87c39a1282b20005486cd6f ****/ + /****** BRepBlend_Extremity::Tangent ******/ + /****** md5 signature: 00df3077d87c39a1282b20005486cd6f ******/ %feature("compactdefaultargs") Tangent; %feature("autodoc", "Return ------- @@ -2228,8 +2228,8 @@ This method returns the value of tangent in 3d space. ") Tangent; const gp_Vec Tangent(); - /****************** Tolerance ******************/ - /**** md5 signature: 9e5775014410d884d1a1adc1cd47930b ****/ + /****** BRepBlend_Extremity::Tolerance ******/ + /****** md5 signature: 9e5775014410d884d1a1adc1cd47930b ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", "Return ------- @@ -2241,8 +2241,8 @@ This method returns the fuzziness on the point in 3d space. ") Tolerance; Standard_Real Tolerance(); - /****************** Value ******************/ - /**** md5 signature: eddd2908948849b73f6d8aacab318652 ****/ + /****** BRepBlend_Extremity::Value ******/ + /****** md5 signature: eddd2908948849b73f6d8aacab318652 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -2254,8 +2254,8 @@ This method returns the value of the point in 3d space. ") Value; const gp_Pnt Value(); - /****************** Vertex ******************/ - /**** md5 signature: 7213fb18dc3be1f48818ab739bb98dfa ****/ + /****** BRepBlend_Extremity::Vertex ******/ + /****** md5 signature: 7213fb18dc3be1f48818ab739bb98dfa ******/ %feature("compactdefaultargs") Vertex; %feature("autodoc", "Return ------- @@ -2281,8 +2281,8 @@ Returns the vertex when isvertex returns standard_true. *******************************/ class BRepBlend_HCurve2dTool { public: - /****************** BSpline ******************/ - /**** md5 signature: 1151b84776305bc0a5c8aaee6f50252d ****/ + /****** BRepBlend_HCurve2dTool::BSpline ******/ + /****** md5 signature: 1151b84776305bc0a5c8aaee6f50252d ******/ %feature("compactdefaultargs") BSpline; %feature("autodoc", " Parameters @@ -2299,8 +2299,8 @@ No available documentation. ") BSpline; static opencascade::handle BSpline(const opencascade::handle & C); - /****************** Bezier ******************/ - /**** md5 signature: 55afc4c0fc79e07de6077214558af461 ****/ + /****** BRepBlend_HCurve2dTool::Bezier ******/ + /****** md5 signature: 55afc4c0fc79e07de6077214558af461 ******/ %feature("compactdefaultargs") Bezier; %feature("autodoc", " Parameters @@ -2317,8 +2317,8 @@ No available documentation. ") Bezier; static opencascade::handle Bezier(const opencascade::handle & C); - /****************** Circle ******************/ - /**** md5 signature: 3e4b216e090c5747e712418f4fa66d2c ****/ + /****** BRepBlend_HCurve2dTool::Circle ******/ + /****** md5 signature: 3e4b216e090c5747e712418f4fa66d2c ******/ %feature("compactdefaultargs") Circle; %feature("autodoc", " Parameters @@ -2335,8 +2335,8 @@ No available documentation. ") Circle; static gp_Circ2d Circle(const opencascade::handle & C); - /****************** Continuity ******************/ - /**** md5 signature: 93cd5f75c1ce867aba7a7f12421275f0 ****/ + /****** BRepBlend_HCurve2dTool::Continuity ******/ + /****** md5 signature: 93cd5f75c1ce867aba7a7f12421275f0 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", " Parameters @@ -2353,8 +2353,8 @@ No available documentation. ") Continuity; static GeomAbs_Shape Continuity(const opencascade::handle & C); - /****************** D0 ******************/ - /**** md5 signature: 54c6bd0c456279db2610c0ff0808eb84 ****/ + /****** BRepBlend_HCurve2dTool::D0 ******/ + /****** md5 signature: 54c6bd0c456279db2610c0ff0808eb84 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -2373,8 +2373,8 @@ Computes the point of parameter u on the curve. ") D0; static void D0(const opencascade::handle & C, const Standard_Real U, gp_Pnt2d & P); - /****************** D1 ******************/ - /**** md5 signature: 918bee38d3c31b02180315ab8bd4beb7 ****/ + /****** BRepBlend_HCurve2dTool::D1 ******/ + /****** md5 signature: 918bee38d3c31b02180315ab8bd4beb7 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -2394,8 +2394,8 @@ Computes the point of parameter u on the curve with its first derivative. raised ") D1; static void D1(const opencascade::handle & C, const Standard_Real U, gp_Pnt2d & P, gp_Vec2d & V); - /****************** D2 ******************/ - /**** md5 signature: d9e326efa98865a213fce49a3626a678 ****/ + /****** BRepBlend_HCurve2dTool::D2 ******/ + /****** md5 signature: d9e326efa98865a213fce49a3626a678 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -2416,8 +2416,8 @@ Returns the point p of parameter u, the first and second derivatives v1 and v2. ") D2; static void D2(const opencascade::handle & C, const Standard_Real U, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2); - /****************** D3 ******************/ - /**** md5 signature: 4951d7379750f8dbc9e426361fa2b365 ****/ + /****** BRepBlend_HCurve2dTool::D3 ******/ + /****** md5 signature: 4951d7379750f8dbc9e426361fa2b365 ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -2439,8 +2439,8 @@ Returns the point p of parameter u, the first, the second and the third derivati ") D3; static void D3(const opencascade::handle & C, const Standard_Real U, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2, gp_Vec2d & V3); - /****************** DN ******************/ - /**** md5 signature: edb6f0f7cc5bdd7864a248db788f4d84 ****/ + /****** BRepBlend_HCurve2dTool::DN ******/ + /****** md5 signature: edb6f0f7cc5bdd7864a248db788f4d84 ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -2459,8 +2459,8 @@ The returned vector gives the value of the derivative for the order of derivatio ") DN; static gp_Vec2d DN(const opencascade::handle & C, const Standard_Real U, const Standard_Integer N); - /****************** Ellipse ******************/ - /**** md5 signature: 9ddecf68838c4598b17a43e7ee186e6e ****/ + /****** BRepBlend_HCurve2dTool::Ellipse ******/ + /****** md5 signature: 9ddecf68838c4598b17a43e7ee186e6e ******/ %feature("compactdefaultargs") Ellipse; %feature("autodoc", " Parameters @@ -2477,8 +2477,8 @@ No available documentation. ") Ellipse; static gp_Elips2d Ellipse(const opencascade::handle & C); - /****************** FirstParameter ******************/ - /**** md5 signature: a4d9a6241f0c3cafc57f60a68d9c9127 ****/ + /****** BRepBlend_HCurve2dTool::FirstParameter ******/ + /****** md5 signature: a4d9a6241f0c3cafc57f60a68d9c9127 ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", " Parameters @@ -2495,8 +2495,8 @@ No available documentation. ") FirstParameter; static Standard_Real FirstParameter(const opencascade::handle & C); - /****************** GetType ******************/ - /**** md5 signature: 29ec5067d7e913f214c553444ec99b6a ****/ + /****** BRepBlend_HCurve2dTool::GetType ******/ + /****** md5 signature: 29ec5067d7e913f214c553444ec99b6a ******/ %feature("compactdefaultargs") GetType; %feature("autodoc", " Parameters @@ -2513,8 +2513,8 @@ Returns the type of the curve in the current interval: line, circle, ellipse, hy ") GetType; static GeomAbs_CurveType GetType(const opencascade::handle & C); - /****************** Hyperbola ******************/ - /**** md5 signature: d710d90c07a9bd6c6e8e1ba3fc1c92bf ****/ + /****** BRepBlend_HCurve2dTool::Hyperbola ******/ + /****** md5 signature: d710d90c07a9bd6c6e8e1ba3fc1c92bf ******/ %feature("compactdefaultargs") Hyperbola; %feature("autodoc", " Parameters @@ -2531,8 +2531,8 @@ No available documentation. ") Hyperbola; static gp_Hypr2d Hyperbola(const opencascade::handle & C); - /****************** Intervals ******************/ - /**** md5 signature: 7f25b6c48f712ccc9ec416d83eb97ef8 ****/ + /****** BRepBlend_HCurve2dTool::Intervals ******/ + /****** md5 signature: 7f25b6c48f712ccc9ec416d83eb97ef8 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -2551,8 +2551,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; static void Intervals(const opencascade::handle & C, TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsClosed ******************/ - /**** md5 signature: e2e4c5d0ae21ac59c815ef761d7e7eb0 ****/ + /****** BRepBlend_HCurve2dTool::IsClosed ******/ + /****** md5 signature: e2e4c5d0ae21ac59c815ef761d7e7eb0 ******/ %feature("compactdefaultargs") IsClosed; %feature("autodoc", " Parameters @@ -2569,8 +2569,8 @@ No available documentation. ") IsClosed; static Standard_Boolean IsClosed(const opencascade::handle & C); - /****************** IsPeriodic ******************/ - /**** md5 signature: 343c2522f84a0271d505fb5a7b6123ee ****/ + /****** BRepBlend_HCurve2dTool::IsPeriodic ******/ + /****** md5 signature: 343c2522f84a0271d505fb5a7b6123ee ******/ %feature("compactdefaultargs") IsPeriodic; %feature("autodoc", " Parameters @@ -2587,8 +2587,8 @@ No available documentation. ") IsPeriodic; static Standard_Boolean IsPeriodic(const opencascade::handle & C); - /****************** LastParameter ******************/ - /**** md5 signature: a84c73d5efee27b935b3bc64eba5e8ab ****/ + /****** BRepBlend_HCurve2dTool::LastParameter ******/ + /****** md5 signature: a84c73d5efee27b935b3bc64eba5e8ab ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", " Parameters @@ -2605,8 +2605,8 @@ No available documentation. ") LastParameter; static Standard_Real LastParameter(const opencascade::handle & C); - /****************** Line ******************/ - /**** md5 signature: cc50bf5bbcfff1340d1951ad804f481d ****/ + /****** BRepBlend_HCurve2dTool::Line ******/ + /****** md5 signature: cc50bf5bbcfff1340d1951ad804f481d ******/ %feature("compactdefaultargs") Line; %feature("autodoc", " Parameters @@ -2623,8 +2623,8 @@ No available documentation. ") Line; static gp_Lin2d Line(const opencascade::handle & C); - /****************** NbIntervals ******************/ - /**** md5 signature: 296d2d406ae6365ab4187665e47f6beb ****/ + /****** BRepBlend_HCurve2dTool::NbIntervals ******/ + /****** md5 signature: 296d2d406ae6365ab4187665e47f6beb ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -2642,8 +2642,8 @@ Returns the number of intervals for continuity . may be one if continuity(myc ") NbIntervals; static Standard_Integer NbIntervals(const opencascade::handle & C, const GeomAbs_Shape S); - /****************** NbSamples ******************/ - /**** md5 signature: 4846c46ec026f7e5cf2080eb1601445a ****/ + /****** BRepBlend_HCurve2dTool::NbSamples ******/ + /****** md5 signature: 4846c46ec026f7e5cf2080eb1601445a ******/ %feature("compactdefaultargs") NbSamples; %feature("autodoc", " Parameters @@ -2662,8 +2662,8 @@ No available documentation. ") NbSamples; static Standard_Integer NbSamples(const opencascade::handle & C, const Standard_Real U0, const Standard_Real U1); - /****************** Parabola ******************/ - /**** md5 signature: 638d7ecde6dd9f67180eadf45347f22e ****/ + /****** BRepBlend_HCurve2dTool::Parabola ******/ + /****** md5 signature: 638d7ecde6dd9f67180eadf45347f22e ******/ %feature("compactdefaultargs") Parabola; %feature("autodoc", " Parameters @@ -2680,8 +2680,8 @@ No available documentation. ") Parabola; static gp_Parab2d Parabola(const opencascade::handle & C); - /****************** Period ******************/ - /**** md5 signature: 2a78d8fc20cccabaa0fb7d52397ae7ba ****/ + /****** BRepBlend_HCurve2dTool::Period ******/ + /****** md5 signature: 2a78d8fc20cccabaa0fb7d52397ae7ba ******/ %feature("compactdefaultargs") Period; %feature("autodoc", " Parameters @@ -2698,8 +2698,8 @@ No available documentation. ") Period; static Standard_Real Period(const opencascade::handle & C); - /****************** Resolution ******************/ - /**** md5 signature: 1567f92dacdcdb24e1f4d21710c525e2 ****/ + /****** BRepBlend_HCurve2dTool::Resolution ******/ + /****** md5 signature: 1567f92dacdcdb24e1f4d21710c525e2 ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -2717,8 +2717,8 @@ Returns the parametric resolution corresponding to the real space resolution & C, const Standard_Real R3d); - /****************** Value ******************/ - /**** md5 signature: f88e121e984f9cbec46065eb86a1e379 ****/ + /****** BRepBlend_HCurve2dTool::Value ******/ + /****** md5 signature: f88e121e984f9cbec46065eb86a1e379 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -2750,8 +2750,8 @@ Computes the point of parameter u on the curve. *****************************/ class BRepBlend_HCurveTool { public: - /****************** BSpline ******************/ - /**** md5 signature: 73295d8773f31004aa0bf55b549ab48f ****/ + /****** BRepBlend_HCurveTool::BSpline ******/ + /****** md5 signature: 73295d8773f31004aa0bf55b549ab48f ******/ %feature("compactdefaultargs") BSpline; %feature("autodoc", " Parameters @@ -2768,8 +2768,8 @@ No available documentation. ") BSpline; static opencascade::handle BSpline(const opencascade::handle & C); - /****************** Bezier ******************/ - /**** md5 signature: f306f8462315905af8e276236266123d ****/ + /****** BRepBlend_HCurveTool::Bezier ******/ + /****** md5 signature: f306f8462315905af8e276236266123d ******/ %feature("compactdefaultargs") Bezier; %feature("autodoc", " Parameters @@ -2786,8 +2786,8 @@ No available documentation. ") Bezier; static opencascade::handle Bezier(const opencascade::handle & C); - /****************** Circle ******************/ - /**** md5 signature: 7b6731a5a54fc11dc51059ac04fa7d96 ****/ + /****** BRepBlend_HCurveTool::Circle ******/ + /****** md5 signature: 7b6731a5a54fc11dc51059ac04fa7d96 ******/ %feature("compactdefaultargs") Circle; %feature("autodoc", " Parameters @@ -2804,8 +2804,8 @@ No available documentation. ") Circle; static gp_Circ Circle(const opencascade::handle & C); - /****************** Continuity ******************/ - /**** md5 signature: 36a22861c63402bce70a44cade7cd4e2 ****/ + /****** BRepBlend_HCurveTool::Continuity ******/ + /****** md5 signature: 36a22861c63402bce70a44cade7cd4e2 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", " Parameters @@ -2822,8 +2822,8 @@ No available documentation. ") Continuity; static GeomAbs_Shape Continuity(const opencascade::handle & C); - /****************** D0 ******************/ - /**** md5 signature: 8132d18251425c9a08facd1890d4dc14 ****/ + /****** BRepBlend_HCurveTool::D0 ******/ + /****** md5 signature: 8132d18251425c9a08facd1890d4dc14 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -2842,8 +2842,8 @@ Computes the point of parameter u on the curve. ") D0; static void D0(const opencascade::handle & C, const Standard_Real U, gp_Pnt & P); - /****************** D1 ******************/ - /**** md5 signature: e2eff93238cd61643a22155760ca87e7 ****/ + /****** BRepBlend_HCurveTool::D1 ******/ + /****** md5 signature: e2eff93238cd61643a22155760ca87e7 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -2863,8 +2863,8 @@ Computes the point of parameter u on the curve with its first derivative. raised ") D1; static void D1(const opencascade::handle & C, const Standard_Real U, gp_Pnt & P, gp_Vec & V); - /****************** D2 ******************/ - /**** md5 signature: a03fec54dc9fb384b49128be1eeb6ab5 ****/ + /****** BRepBlend_HCurveTool::D2 ******/ + /****** md5 signature: a03fec54dc9fb384b49128be1eeb6ab5 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -2885,8 +2885,8 @@ Returns the point p of parameter u, the first and second derivatives v1 and v2. ") D2; static void D2(const opencascade::handle & C, const Standard_Real U, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2); - /****************** D3 ******************/ - /**** md5 signature: daf7fd27ce53952002a95005add4c7db ****/ + /****** BRepBlend_HCurveTool::D3 ******/ + /****** md5 signature: daf7fd27ce53952002a95005add4c7db ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -2908,8 +2908,8 @@ Returns the point p of parameter u, the first, the second and the third derivati ") D3; static void D3(const opencascade::handle & C, const Standard_Real U, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2, gp_Vec & V3); - /****************** DN ******************/ - /**** md5 signature: 19abd9a6442d6a3469d8f9590507387e ****/ + /****** BRepBlend_HCurveTool::DN ******/ + /****** md5 signature: 19abd9a6442d6a3469d8f9590507387e ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -2928,8 +2928,8 @@ The returned vector gives the value of the derivative for the order of derivatio ") DN; static gp_Vec DN(const opencascade::handle & C, const Standard_Real U, const Standard_Integer N); - /****************** Ellipse ******************/ - /**** md5 signature: c32c615877d264a7d9a959c38c10dac5 ****/ + /****** BRepBlend_HCurveTool::Ellipse ******/ + /****** md5 signature: c32c615877d264a7d9a959c38c10dac5 ******/ %feature("compactdefaultargs") Ellipse; %feature("autodoc", " Parameters @@ -2946,8 +2946,8 @@ No available documentation. ") Ellipse; static gp_Elips Ellipse(const opencascade::handle & C); - /****************** FirstParameter ******************/ - /**** md5 signature: 25c42492a02c6ff0b57c4cf91fb40f86 ****/ + /****** BRepBlend_HCurveTool::FirstParameter ******/ + /****** md5 signature: 25c42492a02c6ff0b57c4cf91fb40f86 ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", " Parameters @@ -2964,8 +2964,8 @@ No available documentation. ") FirstParameter; static Standard_Real FirstParameter(const opencascade::handle & C); - /****************** GetType ******************/ - /**** md5 signature: a686bd836352e7b0b82151881246c5a7 ****/ + /****** BRepBlend_HCurveTool::GetType ******/ + /****** md5 signature: a686bd836352e7b0b82151881246c5a7 ******/ %feature("compactdefaultargs") GetType; %feature("autodoc", " Parameters @@ -2982,8 +2982,8 @@ Returns the type of the curve in the current interval: line, circle, ellipse, hy ") GetType; static GeomAbs_CurveType GetType(const opencascade::handle & C); - /****************** Hyperbola ******************/ - /**** md5 signature: d833c49b900f354e019cfd82c1b21d0e ****/ + /****** BRepBlend_HCurveTool::Hyperbola ******/ + /****** md5 signature: d833c49b900f354e019cfd82c1b21d0e ******/ %feature("compactdefaultargs") Hyperbola; %feature("autodoc", " Parameters @@ -3000,8 +3000,8 @@ No available documentation. ") Hyperbola; static gp_Hypr Hyperbola(const opencascade::handle & C); - /****************** Intervals ******************/ - /**** md5 signature: ba9ef7becad6f3e6ee434061971db40d ****/ + /****** BRepBlend_HCurveTool::Intervals ******/ + /****** md5 signature: ba9ef7becad6f3e6ee434061971db40d ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -3020,8 +3020,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; static void Intervals(const opencascade::handle & C, TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsClosed ******************/ - /**** md5 signature: 178cf2cfae4002c04a5499797f8bd656 ****/ + /****** BRepBlend_HCurveTool::IsClosed ******/ + /****** md5 signature: 178cf2cfae4002c04a5499797f8bd656 ******/ %feature("compactdefaultargs") IsClosed; %feature("autodoc", " Parameters @@ -3038,8 +3038,8 @@ No available documentation. ") IsClosed; static Standard_Boolean IsClosed(const opencascade::handle & C); - /****************** IsPeriodic ******************/ - /**** md5 signature: d48777dd4aacf834a3350873acc52ff6 ****/ + /****** BRepBlend_HCurveTool::IsPeriodic ******/ + /****** md5 signature: d48777dd4aacf834a3350873acc52ff6 ******/ %feature("compactdefaultargs") IsPeriodic; %feature("autodoc", " Parameters @@ -3056,8 +3056,8 @@ No available documentation. ") IsPeriodic; static Standard_Boolean IsPeriodic(const opencascade::handle & C); - /****************** LastParameter ******************/ - /**** md5 signature: c00409255c9efae31d007ea0f35327b6 ****/ + /****** BRepBlend_HCurveTool::LastParameter ******/ + /****** md5 signature: c00409255c9efae31d007ea0f35327b6 ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", " Parameters @@ -3074,8 +3074,8 @@ No available documentation. ") LastParameter; static Standard_Real LastParameter(const opencascade::handle & C); - /****************** Line ******************/ - /**** md5 signature: 5d669526ea2c83636bcd5abea25c7993 ****/ + /****** BRepBlend_HCurveTool::Line ******/ + /****** md5 signature: 5d669526ea2c83636bcd5abea25c7993 ******/ %feature("compactdefaultargs") Line; %feature("autodoc", " Parameters @@ -3092,8 +3092,8 @@ No available documentation. ") Line; static gp_Lin Line(const opencascade::handle & C); - /****************** NbIntervals ******************/ - /**** md5 signature: 14a07173bd3c33d26deeb9707ee34cb3 ****/ + /****** BRepBlend_HCurveTool::NbIntervals ******/ + /****** md5 signature: 14a07173bd3c33d26deeb9707ee34cb3 ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -3111,8 +3111,8 @@ Returns the number of intervals for continuity . may be one if continuity(myc ") NbIntervals; static Standard_Integer NbIntervals(const opencascade::handle & C, const GeomAbs_Shape S); - /****************** NbSamples ******************/ - /**** md5 signature: b050222a5e2dbdd07a79f2aec3a93db5 ****/ + /****** BRepBlend_HCurveTool::NbSamples ******/ + /****** md5 signature: b050222a5e2dbdd07a79f2aec3a93db5 ******/ %feature("compactdefaultargs") NbSamples; %feature("autodoc", " Parameters @@ -3131,8 +3131,8 @@ No available documentation. ") NbSamples; static Standard_Integer NbSamples(const opencascade::handle & C, const Standard_Real U0, const Standard_Real U1); - /****************** Parabola ******************/ - /**** md5 signature: cc30b6b7d2e5eb272de9d92bc65e5ba5 ****/ + /****** BRepBlend_HCurveTool::Parabola ******/ + /****** md5 signature: cc30b6b7d2e5eb272de9d92bc65e5ba5 ******/ %feature("compactdefaultargs") Parabola; %feature("autodoc", " Parameters @@ -3149,8 +3149,8 @@ No available documentation. ") Parabola; static gp_Parab Parabola(const opencascade::handle & C); - /****************** Period ******************/ - /**** md5 signature: f7986452fbb7b824f9223306a3748bb0 ****/ + /****** BRepBlend_HCurveTool::Period ******/ + /****** md5 signature: f7986452fbb7b824f9223306a3748bb0 ******/ %feature("compactdefaultargs") Period; %feature("autodoc", " Parameters @@ -3167,8 +3167,8 @@ No available documentation. ") Period; static Standard_Real Period(const opencascade::handle & C); - /****************** Resolution ******************/ - /**** md5 signature: 5b1954ce6b6bbeec3732ad23161bfe7f ****/ + /****** BRepBlend_HCurveTool::Resolution ******/ + /****** md5 signature: 5b1954ce6b6bbeec3732ad23161bfe7f ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -3186,8 +3186,8 @@ Returns the parametric resolution corresponding to the real space resolution & C, const Standard_Real R3d); - /****************** Value ******************/ - /**** md5 signature: 2a733041fbe29fa56e33746589b73c76 ****/ + /****** BRepBlend_HCurveTool::Value ******/ + /****** md5 signature: 2a733041fbe29fa56e33746589b73c76 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -3219,8 +3219,8 @@ Computes the point of parameter u on the curve. ***********************/ class BRepBlend_Line : public Standard_Transient { public: - /****************** BRepBlend_Line ******************/ - /**** md5 signature: 57590f6f2b26126cc4d3122e12289624 ****/ + /****** BRepBlend_Line::BRepBlend_Line ******/ + /****** md5 signature: 57590f6f2b26126cc4d3122e12289624 ******/ %feature("compactdefaultargs") BRepBlend_Line; %feature("autodoc", "Return ------- @@ -3232,8 +3232,8 @@ No available documentation. ") BRepBlend_Line; BRepBlend_Line(); - /****************** Append ******************/ - /**** md5 signature: 112809d39d79c49d6bb13a4922e5b5f5 ****/ + /****** BRepBlend_Line::Append ******/ + /****** md5 signature: 112809d39d79c49d6bb13a4922e5b5f5 ******/ %feature("compactdefaultargs") Append; %feature("autodoc", " Parameters @@ -3250,8 +3250,8 @@ Adds a point in the line. ") Append; void Append(const Blend_Point & P); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** BRepBlend_Line::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -3263,8 +3263,8 @@ Clears the content of the line. ") Clear; void Clear(); - /****************** EndPointOnFirst ******************/ - /**** md5 signature: c529fd184b9e50e1b6ee45bff61b3c9b ****/ + /****** BRepBlend_Line::EndPointOnFirst ******/ + /****** md5 signature: c529fd184b9e50e1b6ee45bff61b3c9b ******/ %feature("compactdefaultargs") EndPointOnFirst; %feature("autodoc", "Return ------- @@ -3276,8 +3276,8 @@ Returns the end point on s1. ") EndPointOnFirst; const BRepBlend_Extremity & EndPointOnFirst(); - /****************** EndPointOnSecond ******************/ - /**** md5 signature: f1a00edceae5b932c1068ab023d5ec57 ****/ + /****** BRepBlend_Line::EndPointOnSecond ******/ + /****** md5 signature: f1a00edceae5b932c1068ab023d5ec57 ******/ %feature("compactdefaultargs") EndPointOnSecond; %feature("autodoc", "Return ------- @@ -3289,8 +3289,8 @@ Returns the point on s2. ") EndPointOnSecond; const BRepBlend_Extremity & EndPointOnSecond(); - /****************** InsertBefore ******************/ - /**** md5 signature: d3fd33dd9ac7a98f0ee2bf360431c1c4 ****/ + /****** BRepBlend_Line::InsertBefore ******/ + /****** md5 signature: d3fd33dd9ac7a98f0ee2bf360431c1c4 ******/ %feature("compactdefaultargs") InsertBefore; %feature("autodoc", " Parameters @@ -3308,8 +3308,8 @@ Adds a point in the line at the first place. ") InsertBefore; void InsertBefore(const Standard_Integer Index, const Blend_Point & P); - /****************** NbPoints ******************/ - /**** md5 signature: 1d4bbbd7c4dda4f1e56c00ae994bedbe ****/ + /****** BRepBlend_Line::NbPoints ******/ + /****** md5 signature: 1d4bbbd7c4dda4f1e56c00ae994bedbe ******/ %feature("compactdefaultargs") NbPoints; %feature("autodoc", "Return ------- @@ -3321,8 +3321,8 @@ Returns the number of points in the line. ") NbPoints; Standard_Integer NbPoints(); - /****************** Point ******************/ - /**** md5 signature: f9ecb741c9f8196ebb5c0c795ecf9f95 ****/ + /****** BRepBlend_Line::Point ******/ + /****** md5 signature: f9ecb741c9f8196ebb5c0c795ecf9f95 ******/ %feature("compactdefaultargs") Point; %feature("autodoc", " Parameters @@ -3339,8 +3339,8 @@ Returns the point of range index. ") Point; const Blend_Point & Point(const Standard_Integer Index); - /****************** Prepend ******************/ - /**** md5 signature: 8ea9df6ce05089f4fae42845b69291ef ****/ + /****** BRepBlend_Line::Prepend ******/ + /****** md5 signature: 8ea9df6ce05089f4fae42845b69291ef ******/ %feature("compactdefaultargs") Prepend; %feature("autodoc", " Parameters @@ -3357,8 +3357,8 @@ Adds a point in the line at the first place. ") Prepend; void Prepend(const Blend_Point & P); - /****************** Remove ******************/ - /**** md5 signature: af46d5b5d8f27ae951629b321df10b36 ****/ + /****** BRepBlend_Line::Remove ******/ + /****** md5 signature: af46d5b5d8f27ae951629b321df10b36 ******/ %feature("compactdefaultargs") Remove; %feature("autodoc", " Parameters @@ -3376,8 +3376,8 @@ Removes from all the items of positions between and ") Remove; void Remove(const Standard_Integer FromIndex, const Standard_Integer ToIndex); - /****************** Set ******************/ - /**** md5 signature: 467e8a8ca95b56d13e0b5d0ef5daa15d ****/ + /****** BRepBlend_Line::Set ******/ + /****** md5 signature: 467e8a8ca95b56d13e0b5d0ef5daa15d ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -3395,8 +3395,8 @@ Sets the value of the transition of the line on s1 and the line on s2. ") Set; void Set(const IntSurf_TypeTrans TranS1, const IntSurf_TypeTrans TranS2); - /****************** Set ******************/ - /**** md5 signature: 02e3bdb87daf70bb37bf9aaefbeafc93 ****/ + /****** BRepBlend_Line::Set ******/ + /****** md5 signature: 02e3bdb87daf70bb37bf9aaefbeafc93 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -3413,8 +3413,8 @@ Sets the value of the transition of the line on a surface. ") Set; void Set(const IntSurf_TypeTrans Trans); - /****************** SetEndPoints ******************/ - /**** md5 signature: 65a8d0dfaf022584d756eabf06874704 ****/ + /****** BRepBlend_Line::SetEndPoints ******/ + /****** md5 signature: 65a8d0dfaf022584d756eabf06874704 ******/ %feature("compactdefaultargs") SetEndPoints; %feature("autodoc", " Parameters @@ -3432,8 +3432,8 @@ Sets tne values of the end points for the line. ") SetEndPoints; void SetEndPoints(const BRepBlend_Extremity & EndPt1, const BRepBlend_Extremity & EndPt2); - /****************** SetStartPoints ******************/ - /**** md5 signature: 855f4d4c44344953d7a9de9123e71157 ****/ + /****** BRepBlend_Line::SetStartPoints ******/ + /****** md5 signature: 855f4d4c44344953d7a9de9123e71157 ******/ %feature("compactdefaultargs") SetStartPoints; %feature("autodoc", " Parameters @@ -3451,8 +3451,8 @@ Sets the values of the start points for the line. ") SetStartPoints; void SetStartPoints(const BRepBlend_Extremity & StartPt1, const BRepBlend_Extremity & StartPt2); - /****************** StartPointOnFirst ******************/ - /**** md5 signature: eb6cbb694252afa50c3045ff6839418c ****/ + /****** BRepBlend_Line::StartPointOnFirst ******/ + /****** md5 signature: eb6cbb694252afa50c3045ff6839418c ******/ %feature("compactdefaultargs") StartPointOnFirst; %feature("autodoc", "Return ------- @@ -3464,8 +3464,8 @@ Returns the start point on s1. ") StartPointOnFirst; const BRepBlend_Extremity & StartPointOnFirst(); - /****************** StartPointOnSecond ******************/ - /**** md5 signature: 152e6eaee5b76910bd5605ccb0d2a63a ****/ + /****** BRepBlend_Line::StartPointOnSecond ******/ + /****** md5 signature: 152e6eaee5b76910bd5605ccb0d2a63a ******/ %feature("compactdefaultargs") StartPointOnSecond; %feature("autodoc", "Return ------- @@ -3477,8 +3477,8 @@ Returns the start point on s2. ") StartPointOnSecond; const BRepBlend_Extremity & StartPointOnSecond(); - /****************** TransitionOnS ******************/ - /**** md5 signature: ac2f27afdd16ab93ea1f959cb2bf6e33 ****/ + /****** BRepBlend_Line::TransitionOnS ******/ + /****** md5 signature: ac2f27afdd16ab93ea1f959cb2bf6e33 ******/ %feature("compactdefaultargs") TransitionOnS; %feature("autodoc", "Return ------- @@ -3490,8 +3490,8 @@ Returns the type of the transition of the line defined on the surface. ") TransitionOnS; IntSurf_TypeTrans TransitionOnS(); - /****************** TransitionOnS1 ******************/ - /**** md5 signature: 9de184f3b47c2902be7de5eb10743898 ****/ + /****** BRepBlend_Line::TransitionOnS1 ******/ + /****** md5 signature: 9de184f3b47c2902be7de5eb10743898 ******/ %feature("compactdefaultargs") TransitionOnS1; %feature("autodoc", "Return ------- @@ -3503,8 +3503,8 @@ Returns the type of the transition of the line defined on the first surface. the ") TransitionOnS1; IntSurf_TypeTrans TransitionOnS1(); - /****************** TransitionOnS2 ******************/ - /**** md5 signature: aafa064949332278d0d49be3da4c6df2 ****/ + /****** BRepBlend_Line::TransitionOnS2 ******/ + /****** md5 signature: aafa064949332278d0d49be3da4c6df2 ******/ %feature("compactdefaultargs") TransitionOnS2; %feature("autodoc", "Return ------- @@ -3532,8 +3532,8 @@ Returns the type of the transition of the line defined on the second surface. th *****************************/ class BRepBlend_PointOnRst { public: - /****************** BRepBlend_PointOnRst ******************/ - /**** md5 signature: 090e4894ad074e2741323f5dc694aebc ****/ + /****** BRepBlend_PointOnRst::BRepBlend_PointOnRst ******/ + /****** md5 signature: 090e4894ad074e2741323f5dc694aebc ******/ %feature("compactdefaultargs") BRepBlend_PointOnRst; %feature("autodoc", "Return ------- @@ -3545,8 +3545,8 @@ Empty constructor. ") BRepBlend_PointOnRst; BRepBlend_PointOnRst(); - /****************** BRepBlend_PointOnRst ******************/ - /**** md5 signature: 8111ef27057565050ebf55e9c0cf6987 ****/ + /****** BRepBlend_PointOnRst::BRepBlend_PointOnRst ******/ + /****** md5 signature: 8111ef27057565050ebf55e9c0cf6987 ******/ %feature("compactdefaultargs") BRepBlend_PointOnRst; %feature("autodoc", " Parameters @@ -3566,8 +3566,8 @@ Creates the pointonrst on the arc a, at parameter param, with the transition tli ") BRepBlend_PointOnRst; BRepBlend_PointOnRst(const opencascade::handle & A, const Standard_Real Param, const IntSurf_Transition & TLine, const IntSurf_Transition & TArc); - /****************** Arc ******************/ - /**** md5 signature: de8e47510fc50811ee5a3e0bc98029e6 ****/ + /****** BRepBlend_PointOnRst::Arc ******/ + /****** md5 signature: de8e47510fc50811ee5a3e0bc98029e6 ******/ %feature("compactdefaultargs") Arc; %feature("autodoc", "Return ------- @@ -3579,8 +3579,8 @@ Returns the arc of restriction containing the vertex. ") Arc; const opencascade::handle & Arc(); - /****************** ParameterOnArc ******************/ - /**** md5 signature: 53d2051734836b1f3c7d9edd7c3c1884 ****/ + /****** BRepBlend_PointOnRst::ParameterOnArc ******/ + /****** md5 signature: 53d2051734836b1f3c7d9edd7c3c1884 ******/ %feature("compactdefaultargs") ParameterOnArc; %feature("autodoc", "Return ------- @@ -3592,8 +3592,8 @@ Returns the parameter of the point on the arc returned by the method arc(). ") ParameterOnArc; Standard_Real ParameterOnArc(); - /****************** SetArc ******************/ - /**** md5 signature: ceabf78102f113c25de4b4f678682f05 ****/ + /****** BRepBlend_PointOnRst::SetArc ******/ + /****** md5 signature: ceabf78102f113c25de4b4f678682f05 ******/ %feature("compactdefaultargs") SetArc; %feature("autodoc", " Parameters @@ -3613,8 +3613,8 @@ Sets the values of a point which is on the arc a, at parameter param. ") SetArc; void SetArc(const opencascade::handle & A, const Standard_Real Param, const IntSurf_Transition & TLine, const IntSurf_Transition & TArc); - /****************** TransitionOnArc ******************/ - /**** md5 signature: adc9ee508ec8cbe59ce8b05248cd454a ****/ + /****** BRepBlend_PointOnRst::TransitionOnArc ******/ + /****** md5 signature: adc9ee508ec8cbe59ce8b05248cd454a ******/ %feature("compactdefaultargs") TransitionOnArc; %feature("autodoc", "Return ------- @@ -3626,8 +3626,8 @@ Returns the transition of the point on the arc returned by arc(). ") TransitionOnArc; const IntSurf_Transition & TransitionOnArc(); - /****************** TransitionOnLine ******************/ - /**** md5 signature: 1ffbcf064eb110daaac7ceebff0fcde5 ****/ + /****** BRepBlend_PointOnRst::TransitionOnLine ******/ + /****** md5 signature: 1ffbcf064eb110daaac7ceebff0fcde5 ******/ %feature("compactdefaultargs") TransitionOnLine; %feature("autodoc", "Return ------- @@ -3653,8 +3653,8 @@ Returns the transition of the point on the line on surface. *********************************/ class BRepBlend_RstRstConstRad : public Blend_RstRstFunction { public: - /****************** BRepBlend_RstRstConstRad ******************/ - /**** md5 signature: 074ead157514803251d86880fa21933a ****/ + /****** BRepBlend_RstRstConstRad::BRepBlend_RstRstConstRad ******/ + /****** md5 signature: 074ead157514803251d86880fa21933a ******/ %feature("compactdefaultargs") BRepBlend_RstRstConstRad; %feature("autodoc", " Parameters @@ -3675,8 +3675,8 @@ No available documentation. ") BRepBlend_RstRstConstRad; BRepBlend_RstRstConstRad(const opencascade::handle & Surf1, const opencascade::handle & Rst1, const opencascade::handle & Surf2, const opencascade::handle & Rst2, const opencascade::handle & CGuide); - /****************** CenterCircleRst1Rst2 ******************/ - /**** md5 signature: 78a3b5ae21381e7c60ec45458e50cd49 ****/ + /****** BRepBlend_RstRstConstRad::CenterCircleRst1Rst2 ******/ + /****** md5 signature: 78a3b5ae21381e7c60ec45458e50cd49 ******/ %feature("compactdefaultargs") CenterCircleRst1Rst2; %feature("autodoc", " Parameters @@ -3697,8 +3697,8 @@ Give the center of circle define by ptrst1, ptrst2 and radius ray. ") CenterCircleRst1Rst2; Standard_Boolean CenterCircleRst1Rst2(const gp_Pnt & PtRst1, const gp_Pnt & PtRst2, const gp_Vec & np, gp_Pnt & Center, gp_Vec & VdMed); - /****************** Decroch ******************/ - /**** md5 signature: 4fb28916dc7b56fca32714bd732ca6a6 ****/ + /****** BRepBlend_RstRstConstRad::Decroch ******/ + /****** md5 signature: 4fb28916dc7b56fca32714bd732ca6a6 ******/ %feature("compactdefaultargs") Decroch; %feature("autodoc", " Parameters @@ -3719,8 +3719,8 @@ Permet d ' implementer un critere de decrochage specifique a la fonction. ") Decroch; Blend_DecrochStatus Decroch(const math_Vector & Sol, gp_Vec & NRst1, gp_Vec & TgRst1, gp_Vec & NRst2, gp_Vec & TgRst2); - /****************** Derivatives ******************/ - /**** md5 signature: 940fde1549012c9025c437a16f7d8c18 ****/ + /****** BRepBlend_RstRstConstRad::Derivatives ******/ + /****** md5 signature: 940fde1549012c9025c437a16f7d8c18 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -3738,8 +3738,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: 7f39b43072461a3f70a63d3178e97743 ****/ + /****** BRepBlend_RstRstConstRad::GetBounds ******/ + /****** md5 signature: 7f39b43072461a3f70a63d3178e97743 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -3757,8 +3757,8 @@ No available documentation. ") GetBounds; void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetMinimalDistance ******************/ - /**** md5 signature: b7112b2680da59932f7cc20412f85fda ****/ + /****** BRepBlend_RstRstConstRad::GetMinimalDistance ******/ + /****** md5 signature: b7112b2680da59932f7cc20412f85fda ******/ %feature("compactdefaultargs") GetMinimalDistance; %feature("autodoc", "Return ------- @@ -3770,8 +3770,8 @@ Returns the minimal distance between two extremities of calculated sections. ") GetMinimalDistance; virtual Standard_Real GetMinimalDistance(); - /****************** GetMinimalWeight ******************/ - /**** md5 signature: f84aaf80601cfa818dfe6e9dd3bec152 ****/ + /****** BRepBlend_RstRstConstRad::GetMinimalWeight ******/ + /****** md5 signature: f84aaf80601cfa818dfe6e9dd3bec152 ******/ %feature("compactdefaultargs") GetMinimalWeight; %feature("autodoc", " Parameters @@ -3788,8 +3788,8 @@ Compute the minimal value of weight for each poles of all sections. ") GetMinimalWeight; void GetMinimalWeight(TColStd_Array1OfReal & Weigths); - /****************** GetSectionSize ******************/ - /**** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ****/ + /****** BRepBlend_RstRstConstRad::GetSectionSize ******/ + /****** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ******/ %feature("compactdefaultargs") GetSectionSize; %feature("autodoc", "Return ------- @@ -3801,8 +3801,8 @@ Returns the length of the maximum section. ") GetSectionSize; Standard_Real GetSectionSize(); - /****************** GetShape ******************/ - /**** md5 signature: 6b9d3e113e9e6721b2abf4c094cdd226 ****/ + /****** BRepBlend_RstRstConstRad::GetShape ******/ + /****** md5 signature: 6b9d3e113e9e6721b2abf4c094cdd226 ******/ %feature("compactdefaultargs") GetShape; %feature("autodoc", " Parameters @@ -3821,8 +3821,8 @@ No available documentation. ") GetShape; void GetShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** GetTolerance ******************/ - /**** md5 signature: db57a1b1119c0b1280472660909013c2 ****/ + /****** BRepBlend_RstRstConstRad::GetTolerance ******/ + /****** md5 signature: db57a1b1119c0b1280472660909013c2 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -3840,8 +3840,8 @@ No available documentation. ") GetTolerance; void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** GetTolerance ******************/ - /**** md5 signature: be5e2f2cb95c7dbdff402ed78245d7d7 ****/ + /****** BRepBlend_RstRstConstRad::GetTolerance ******/ + /****** md5 signature: be5e2f2cb95c7dbdff402ed78245d7d7 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -3862,8 +3862,8 @@ Returns the tolerance to reach in approximation to respecte boundtol error at th ") GetTolerance; void GetTolerance(const Standard_Real BoundTol, const Standard_Real SurfTol, const Standard_Real AngleTol, math_Vector & Tol3d, math_Vector & Tol1D); - /****************** Intervals ******************/ - /**** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ****/ + /****** BRepBlend_RstRstConstRad::Intervals ******/ + /****** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -3881,8 +3881,8 @@ Stores in the parameters bounding the intervals of continuity . the array ") Intervals; void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsRational ******************/ - /**** md5 signature: 82ca56fad113156125f40128b25c0d8e ****/ + /****** BRepBlend_RstRstConstRad::IsRational ******/ + /****** md5 signature: 82ca56fad113156125f40128b25c0d8e ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -3894,8 +3894,8 @@ Returns if the section is rationnal. ") IsRational; Standard_Boolean IsRational(); - /****************** IsSolution ******************/ - /**** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ****/ + /****** BRepBlend_RstRstConstRad::IsSolution ******/ + /****** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -3913,8 +3913,8 @@ No available documentation. ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** IsTangencyPoint ******************/ - /**** md5 signature: 6f3e518ba9796f381f39631e22124ef0 ****/ + /****** BRepBlend_RstRstConstRad::IsTangencyPoint ******/ + /****** md5 signature: 6f3e518ba9796f381f39631e22124ef0 ******/ %feature("compactdefaultargs") IsTangencyPoint; %feature("autodoc", "Return ------- @@ -3926,8 +3926,8 @@ No available documentation. ") IsTangencyPoint; Standard_Boolean IsTangencyPoint(); - /****************** Knots ******************/ - /**** md5 signature: a226854cd9eac08cbe4282feaa46c20d ****/ + /****** BRepBlend_RstRstConstRad::Knots ******/ + /****** md5 signature: a226854cd9eac08cbe4282feaa46c20d ******/ %feature("compactdefaultargs") Knots; %feature("autodoc", " Parameters @@ -3944,8 +3944,8 @@ No available documentation. ") Knots; void Knots(TColStd_Array1OfReal & TKnots); - /****************** Mults ******************/ - /**** md5 signature: 36c77711e4160fb27b24b90b8fa7c6de ****/ + /****** BRepBlend_RstRstConstRad::Mults ******/ + /****** md5 signature: 36c77711e4160fb27b24b90b8fa7c6de ******/ %feature("compactdefaultargs") Mults; %feature("autodoc", " Parameters @@ -3962,8 +3962,8 @@ No available documentation. ") Mults; void Mults(TColStd_Array1OfInteger & TMults); - /****************** NbEquations ******************/ - /**** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ****/ + /****** BRepBlend_RstRstConstRad::NbEquations ******/ + /****** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -3975,8 +3975,8 @@ Returns 2. ") NbEquations; Standard_Integer NbEquations(); - /****************** NbIntervals ******************/ - /**** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ****/ + /****** BRepBlend_RstRstConstRad::NbIntervals ******/ + /****** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -3993,8 +3993,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** NbVariables ******************/ - /**** md5 signature: c99b0d96b9b2c7c3fd7890618502162b ****/ + /****** BRepBlend_RstRstConstRad::NbVariables ******/ + /****** md5 signature: c99b0d96b9b2c7c3fd7890618502162b ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -4006,8 +4006,8 @@ Returns 2. ") NbVariables; Standard_Integer NbVariables(); - /****************** ParameterOnRst1 ******************/ - /**** md5 signature: 284ae0a0f8af30bf10c1a23ce2f6a2b9 ****/ + /****** BRepBlend_RstRstConstRad::ParameterOnRst1 ******/ + /****** md5 signature: 284ae0a0f8af30bf10c1a23ce2f6a2b9 ******/ %feature("compactdefaultargs") ParameterOnRst1; %feature("autodoc", "Return ------- @@ -4019,8 +4019,8 @@ Returns parameter of the point on the curve. ") ParameterOnRst1; Standard_Real ParameterOnRst1(); - /****************** ParameterOnRst2 ******************/ - /**** md5 signature: 9bf0d1865174810cd35d339e1b11149f ****/ + /****** BRepBlend_RstRstConstRad::ParameterOnRst2 ******/ + /****** md5 signature: 9bf0d1865174810cd35d339e1b11149f ******/ %feature("compactdefaultargs") ParameterOnRst2; %feature("autodoc", "Return ------- @@ -4032,8 +4032,8 @@ Returns parameter of the point on the curve. ") ParameterOnRst2; Standard_Real ParameterOnRst2(); - /****************** Pnt2dOnRst1 ******************/ - /**** md5 signature: 8af792b525778d9f7163716d45fcb20c ****/ + /****** BRepBlend_RstRstConstRad::Pnt2dOnRst1 ******/ + /****** md5 signature: 8af792b525778d9f7163716d45fcb20c ******/ %feature("compactdefaultargs") Pnt2dOnRst1; %feature("autodoc", "Return ------- @@ -4045,8 +4045,8 @@ Returns u,v coordinates of the point on the surface. ") Pnt2dOnRst1; const gp_Pnt2d Pnt2dOnRst1(); - /****************** Pnt2dOnRst2 ******************/ - /**** md5 signature: b5f740f46476c4024b7987481feaf13c ****/ + /****** BRepBlend_RstRstConstRad::Pnt2dOnRst2 ******/ + /****** md5 signature: b5f740f46476c4024b7987481feaf13c ******/ %feature("compactdefaultargs") Pnt2dOnRst2; %feature("autodoc", "Return ------- @@ -4058,8 +4058,8 @@ Returns u,v coordinates of the point on the curve on surface. ") Pnt2dOnRst2; const gp_Pnt2d Pnt2dOnRst2(); - /****************** PointOnRst1 ******************/ - /**** md5 signature: 762cc38df03d874429dc79602cf45538 ****/ + /****** BRepBlend_RstRstConstRad::PointOnRst1 ******/ + /****** md5 signature: 762cc38df03d874429dc79602cf45538 ******/ %feature("compactdefaultargs") PointOnRst1; %feature("autodoc", "Return ------- @@ -4071,8 +4071,8 @@ No available documentation. ") PointOnRst1; const gp_Pnt PointOnRst1(); - /****************** PointOnRst2 ******************/ - /**** md5 signature: 2b807e562845e47d1e518bf057be180a ****/ + /****** BRepBlend_RstRstConstRad::PointOnRst2 ******/ + /****** md5 signature: 2b807e562845e47d1e518bf057be180a ******/ %feature("compactdefaultargs") PointOnRst2; %feature("autodoc", "Return ------- @@ -4084,8 +4084,8 @@ No available documentation. ") PointOnRst2; const gp_Pnt PointOnRst2(); - /****************** Resolution ******************/ - /**** md5 signature: 1f885646df74c72ec13d37a113377aaa ****/ + /****** BRepBlend_RstRstConstRad::Resolution ******/ + /****** md5 signature: 1f885646df74c72ec13d37a113377aaa ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -4104,8 +4104,8 @@ No available documentation. ") Resolution; void Resolution(const Standard_Integer IC2d, const Standard_Real Tol, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Section ******************/ - /**** md5 signature: 5902809a8ef9b0367b5849f8615d68f9 ****/ + /****** BRepBlend_RstRstConstRad::Section ******/ + /****** md5 signature: 5902809a8ef9b0367b5849f8615d68f9 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -4126,8 +4126,8 @@ No available documentation. ") Section; void Section(const Standard_Real Param, const Standard_Real U, const Standard_Real V, Standard_Real &OutValue, Standard_Real &OutValue, gp_Circ & C); - /****************** Section ******************/ - /**** md5 signature: 906e6a4bef3056546e496b945ff8d788 ****/ + /****** BRepBlend_RstRstConstRad::Section ******/ + /****** md5 signature: 906e6a4bef3056546e496b945ff8d788 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -4150,8 +4150,8 @@ Used for the first and last section. ") Section; Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths); - /****************** Section ******************/ - /**** md5 signature: 50af689ba5abf11bb271a06ac70b2d69 ****/ + /****** BRepBlend_RstRstConstRad::Section ******/ + /****** md5 signature: 50af689ba5abf11bb271a06ac70b2d69 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -4171,8 +4171,8 @@ No available documentation. ") Section; void Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfPnt2d & Poles2d, TColStd_Array1OfReal & Weigths); - /****************** Section ******************/ - /**** md5 signature: b6f1107f21a9bc6524bdd8152abaed5f ****/ + /****** BRepBlend_RstRstConstRad::Section ******/ + /****** md5 signature: b6f1107f21a9bc6524bdd8152abaed5f ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -4198,8 +4198,8 @@ Used for the first and last section the method returns standard_true if the deri ") Section; Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfVec & D2Poles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColgp_Array1OfVec2d & D2Poles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths, TColStd_Array1OfReal & D2Weigths); - /****************** Set ******************/ - /**** md5 signature: 1d39a94f99a01338cb8afa4a49c68510 ****/ + /****** BRepBlend_RstRstConstRad::Set ******/ + /****** md5 signature: 1d39a94f99a01338cb8afa4a49c68510 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -4219,8 +4219,8 @@ No available documentation. ") Set; void Set(const opencascade::handle & SurfRef1, const opencascade::handle & RstRef1, const opencascade::handle & SurfRef2, const opencascade::handle & RstRef2); - /****************** Set ******************/ - /**** md5 signature: a955f35e9076d1c844b9a2aa89b226bf ****/ + /****** BRepBlend_RstRstConstRad::Set ******/ + /****** md5 signature: a955f35e9076d1c844b9a2aa89b226bf ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -4237,8 +4237,8 @@ No available documentation. ") Set; void Set(const Standard_Real Param); - /****************** Set ******************/ - /**** md5 signature: 7d0982b9e2ba9cb3c696f620150f4f9c ****/ + /****** BRepBlend_RstRstConstRad::Set ******/ + /****** md5 signature: 7d0982b9e2ba9cb3c696f620150f4f9c ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -4256,8 +4256,8 @@ Sets the bounds of the parametric interval on the guide line. this determines th ") Set; void Set(const Standard_Real First, const Standard_Real Last); - /****************** Set ******************/ - /**** md5 signature: 99fe75aea7947575eb6b646d1797f9da ****/ + /****** BRepBlend_RstRstConstRad::Set ******/ + /****** md5 signature: 99fe75aea7947575eb6b646d1797f9da ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -4275,8 +4275,8 @@ No available documentation. ") Set; void Set(const Standard_Real Radius, const Standard_Integer Choix); - /****************** Set ******************/ - /**** md5 signature: 94cfe331c662a2ba190837b24fee3b95 ****/ + /****** BRepBlend_RstRstConstRad::Set ******/ + /****** md5 signature: 94cfe331c662a2ba190837b24fee3b95 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -4293,8 +4293,8 @@ Sets the type of section generation for the approximations. ") Set; void Set(const BlendFunc_SectionShape TypeSection); - /****************** Tangent2dOnRst1 ******************/ - /**** md5 signature: 8853e0bdcfc4c7ae918b4ce4afe10bf7 ****/ + /****** BRepBlend_RstRstConstRad::Tangent2dOnRst1 ******/ + /****** md5 signature: 8853e0bdcfc4c7ae918b4ce4afe10bf7 ******/ %feature("compactdefaultargs") Tangent2dOnRst1; %feature("autodoc", "Return ------- @@ -4306,8 +4306,8 @@ No available documentation. ") Tangent2dOnRst1; const gp_Vec2d Tangent2dOnRst1(); - /****************** Tangent2dOnRst2 ******************/ - /**** md5 signature: 7efc7e62e5cd2cb55222b8f92787707b ****/ + /****** BRepBlend_RstRstConstRad::Tangent2dOnRst2 ******/ + /****** md5 signature: 7efc7e62e5cd2cb55222b8f92787707b ******/ %feature("compactdefaultargs") Tangent2dOnRst2; %feature("autodoc", "Return ------- @@ -4319,8 +4319,8 @@ No available documentation. ") Tangent2dOnRst2; const gp_Vec2d Tangent2dOnRst2(); - /****************** TangentOnRst1 ******************/ - /**** md5 signature: 1e84fceeab2344ba6b579f62eddd47b2 ****/ + /****** BRepBlend_RstRstConstRad::TangentOnRst1 ******/ + /****** md5 signature: 1e84fceeab2344ba6b579f62eddd47b2 ******/ %feature("compactdefaultargs") TangentOnRst1; %feature("autodoc", "Return ------- @@ -4332,8 +4332,8 @@ No available documentation. ") TangentOnRst1; const gp_Vec TangentOnRst1(); - /****************** TangentOnRst2 ******************/ - /**** md5 signature: 3441edf62ea8bd65204990029d82b25d ****/ + /****** BRepBlend_RstRstConstRad::TangentOnRst2 ******/ + /****** md5 signature: 3441edf62ea8bd65204990029d82b25d ******/ %feature("compactdefaultargs") TangentOnRst2; %feature("autodoc", "Return ------- @@ -4345,8 +4345,8 @@ No available documentation. ") TangentOnRst2; const gp_Vec TangentOnRst2(); - /****************** Value ******************/ - /**** md5 signature: 1b689850305d8b13f289849027f0887b ****/ + /****** BRepBlend_RstRstConstRad::Value ******/ + /****** md5 signature: 1b689850305d8b13f289849027f0887b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -4364,8 +4364,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: cb66193525cc0a7235a2cde2a228308b ****/ + /****** BRepBlend_RstRstConstRad::Values ******/ + /****** md5 signature: cb66193525cc0a7235a2cde2a228308b ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -4398,8 +4398,8 @@ Returns the values of the functions and the derivatives for the variable ********************************/ class BRepBlend_RstRstEvolRad : public Blend_RstRstFunction { public: - /****************** BRepBlend_RstRstEvolRad ******************/ - /**** md5 signature: d79d517ef0e965cc32a0fc12487d3855 ****/ + /****** BRepBlend_RstRstEvolRad::BRepBlend_RstRstEvolRad ******/ + /****** md5 signature: d79d517ef0e965cc32a0fc12487d3855 ******/ %feature("compactdefaultargs") BRepBlend_RstRstEvolRad; %feature("autodoc", " Parameters @@ -4421,8 +4421,8 @@ No available documentation. ") BRepBlend_RstRstEvolRad; BRepBlend_RstRstEvolRad(const opencascade::handle & Surf1, const opencascade::handle & Rst1, const opencascade::handle & Surf2, const opencascade::handle & Rst2, const opencascade::handle & CGuide, const opencascade::handle & Evol); - /****************** CenterCircleRst1Rst2 ******************/ - /**** md5 signature: 78a3b5ae21381e7c60ec45458e50cd49 ****/ + /****** BRepBlend_RstRstEvolRad::CenterCircleRst1Rst2 ******/ + /****** md5 signature: 78a3b5ae21381e7c60ec45458e50cd49 ******/ %feature("compactdefaultargs") CenterCircleRst1Rst2; %feature("autodoc", " Parameters @@ -4443,8 +4443,8 @@ Gives the center of circle defined by ptrst1, ptrst2 and radius ray. ") CenterCircleRst1Rst2; Standard_Boolean CenterCircleRst1Rst2(const gp_Pnt & PtRst1, const gp_Pnt & PtRst2, const gp_Vec & np, gp_Pnt & Center, gp_Vec & VdMed); - /****************** Decroch ******************/ - /**** md5 signature: 4fb28916dc7b56fca32714bd732ca6a6 ****/ + /****** BRepBlend_RstRstEvolRad::Decroch ******/ + /****** md5 signature: 4fb28916dc7b56fca32714bd732ca6a6 ******/ %feature("compactdefaultargs") Decroch; %feature("autodoc", " Parameters @@ -4465,8 +4465,8 @@ Enables implementation of a criterion of decrochage specific to the function. ") Decroch; Blend_DecrochStatus Decroch(const math_Vector & Sol, gp_Vec & NRst1, gp_Vec & TgRst1, gp_Vec & NRst2, gp_Vec & TgRst2); - /****************** Derivatives ******************/ - /**** md5 signature: 940fde1549012c9025c437a16f7d8c18 ****/ + /****** BRepBlend_RstRstEvolRad::Derivatives ******/ + /****** md5 signature: 940fde1549012c9025c437a16f7d8c18 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -4484,8 +4484,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: 7f39b43072461a3f70a63d3178e97743 ****/ + /****** BRepBlend_RstRstEvolRad::GetBounds ******/ + /****** md5 signature: 7f39b43072461a3f70a63d3178e97743 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -4503,8 +4503,8 @@ No available documentation. ") GetBounds; void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetMinimalDistance ******************/ - /**** md5 signature: b7112b2680da59932f7cc20412f85fda ****/ + /****** BRepBlend_RstRstEvolRad::GetMinimalDistance ******/ + /****** md5 signature: b7112b2680da59932f7cc20412f85fda ******/ %feature("compactdefaultargs") GetMinimalDistance; %feature("autodoc", "Return ------- @@ -4516,8 +4516,8 @@ Returns the minimal distance between two extremities of calculated sections. ") GetMinimalDistance; virtual Standard_Real GetMinimalDistance(); - /****************** GetMinimalWeight ******************/ - /**** md5 signature: f84aaf80601cfa818dfe6e9dd3bec152 ****/ + /****** BRepBlend_RstRstEvolRad::GetMinimalWeight ******/ + /****** md5 signature: f84aaf80601cfa818dfe6e9dd3bec152 ******/ %feature("compactdefaultargs") GetMinimalWeight; %feature("autodoc", " Parameters @@ -4534,8 +4534,8 @@ Compute the minimal value of weight for each poles of all sections. ") GetMinimalWeight; void GetMinimalWeight(TColStd_Array1OfReal & Weigths); - /****************** GetSectionSize ******************/ - /**** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ****/ + /****** BRepBlend_RstRstEvolRad::GetSectionSize ******/ + /****** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ******/ %feature("compactdefaultargs") GetSectionSize; %feature("autodoc", "Return ------- @@ -4547,8 +4547,8 @@ Returns the length of the maximum section. ") GetSectionSize; Standard_Real GetSectionSize(); - /****************** GetShape ******************/ - /**** md5 signature: 6b9d3e113e9e6721b2abf4c094cdd226 ****/ + /****** BRepBlend_RstRstEvolRad::GetShape ******/ + /****** md5 signature: 6b9d3e113e9e6721b2abf4c094cdd226 ******/ %feature("compactdefaultargs") GetShape; %feature("autodoc", " Parameters @@ -4567,8 +4567,8 @@ No available documentation. ") GetShape; void GetShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** GetTolerance ******************/ - /**** md5 signature: db57a1b1119c0b1280472660909013c2 ****/ + /****** BRepBlend_RstRstEvolRad::GetTolerance ******/ + /****** md5 signature: db57a1b1119c0b1280472660909013c2 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -4586,8 +4586,8 @@ No available documentation. ") GetTolerance; void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** GetTolerance ******************/ - /**** md5 signature: be5e2f2cb95c7dbdff402ed78245d7d7 ****/ + /****** BRepBlend_RstRstEvolRad::GetTolerance ******/ + /****** md5 signature: be5e2f2cb95c7dbdff402ed78245d7d7 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -4608,8 +4608,8 @@ Returns the tolerance to reach in approximation to respecte boundtol error at th ") GetTolerance; void GetTolerance(const Standard_Real BoundTol, const Standard_Real SurfTol, const Standard_Real AngleTol, math_Vector & Tol3d, math_Vector & Tol1D); - /****************** Intervals ******************/ - /**** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ****/ + /****** BRepBlend_RstRstEvolRad::Intervals ******/ + /****** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -4627,8 +4627,8 @@ Stores in the parameters bounding the intervals of continuity . the array ") Intervals; void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsRational ******************/ - /**** md5 signature: 82ca56fad113156125f40128b25c0d8e ****/ + /****** BRepBlend_RstRstEvolRad::IsRational ******/ + /****** md5 signature: 82ca56fad113156125f40128b25c0d8e ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -4640,8 +4640,8 @@ Returns if the section is rationnal. ") IsRational; Standard_Boolean IsRational(); - /****************** IsSolution ******************/ - /**** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ****/ + /****** BRepBlend_RstRstEvolRad::IsSolution ******/ + /****** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -4659,8 +4659,8 @@ No available documentation. ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** IsTangencyPoint ******************/ - /**** md5 signature: 6f3e518ba9796f381f39631e22124ef0 ****/ + /****** BRepBlend_RstRstEvolRad::IsTangencyPoint ******/ + /****** md5 signature: 6f3e518ba9796f381f39631e22124ef0 ******/ %feature("compactdefaultargs") IsTangencyPoint; %feature("autodoc", "Return ------- @@ -4672,8 +4672,8 @@ No available documentation. ") IsTangencyPoint; Standard_Boolean IsTangencyPoint(); - /****************** Knots ******************/ - /**** md5 signature: a226854cd9eac08cbe4282feaa46c20d ****/ + /****** BRepBlend_RstRstEvolRad::Knots ******/ + /****** md5 signature: a226854cd9eac08cbe4282feaa46c20d ******/ %feature("compactdefaultargs") Knots; %feature("autodoc", " Parameters @@ -4690,8 +4690,8 @@ No available documentation. ") Knots; void Knots(TColStd_Array1OfReal & TKnots); - /****************** Mults ******************/ - /**** md5 signature: 36c77711e4160fb27b24b90b8fa7c6de ****/ + /****** BRepBlend_RstRstEvolRad::Mults ******/ + /****** md5 signature: 36c77711e4160fb27b24b90b8fa7c6de ******/ %feature("compactdefaultargs") Mults; %feature("autodoc", " Parameters @@ -4708,8 +4708,8 @@ No available documentation. ") Mults; void Mults(TColStd_Array1OfInteger & TMults); - /****************** NbEquations ******************/ - /**** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ****/ + /****** BRepBlend_RstRstEvolRad::NbEquations ******/ + /****** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -4721,8 +4721,8 @@ Returns 2. ") NbEquations; Standard_Integer NbEquations(); - /****************** NbIntervals ******************/ - /**** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ****/ + /****** BRepBlend_RstRstEvolRad::NbIntervals ******/ + /****** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -4739,8 +4739,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** NbVariables ******************/ - /**** md5 signature: c99b0d96b9b2c7c3fd7890618502162b ****/ + /****** BRepBlend_RstRstEvolRad::NbVariables ******/ + /****** md5 signature: c99b0d96b9b2c7c3fd7890618502162b ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -4752,8 +4752,8 @@ Returns 2. ") NbVariables; Standard_Integer NbVariables(); - /****************** ParameterOnRst1 ******************/ - /**** md5 signature: 284ae0a0f8af30bf10c1a23ce2f6a2b9 ****/ + /****** BRepBlend_RstRstEvolRad::ParameterOnRst1 ******/ + /****** md5 signature: 284ae0a0f8af30bf10c1a23ce2f6a2b9 ******/ %feature("compactdefaultargs") ParameterOnRst1; %feature("autodoc", "Return ------- @@ -4765,8 +4765,8 @@ Returns parameter of the point on the curve. ") ParameterOnRst1; Standard_Real ParameterOnRst1(); - /****************** ParameterOnRst2 ******************/ - /**** md5 signature: 9bf0d1865174810cd35d339e1b11149f ****/ + /****** BRepBlend_RstRstEvolRad::ParameterOnRst2 ******/ + /****** md5 signature: 9bf0d1865174810cd35d339e1b11149f ******/ %feature("compactdefaultargs") ParameterOnRst2; %feature("autodoc", "Return ------- @@ -4778,8 +4778,8 @@ Returns parameter of the point on the curve. ") ParameterOnRst2; Standard_Real ParameterOnRst2(); - /****************** Pnt2dOnRst1 ******************/ - /**** md5 signature: 8af792b525778d9f7163716d45fcb20c ****/ + /****** BRepBlend_RstRstEvolRad::Pnt2dOnRst1 ******/ + /****** md5 signature: 8af792b525778d9f7163716d45fcb20c ******/ %feature("compactdefaultargs") Pnt2dOnRst1; %feature("autodoc", "Return ------- @@ -4791,8 +4791,8 @@ Returns u,v coordinates of the point on the surface. ") Pnt2dOnRst1; const gp_Pnt2d Pnt2dOnRst1(); - /****************** Pnt2dOnRst2 ******************/ - /**** md5 signature: b5f740f46476c4024b7987481feaf13c ****/ + /****** BRepBlend_RstRstEvolRad::Pnt2dOnRst2 ******/ + /****** md5 signature: b5f740f46476c4024b7987481feaf13c ******/ %feature("compactdefaultargs") Pnt2dOnRst2; %feature("autodoc", "Return ------- @@ -4804,8 +4804,8 @@ Returns u,v coordinates of the point on the curve on surface. ") Pnt2dOnRst2; const gp_Pnt2d Pnt2dOnRst2(); - /****************** PointOnRst1 ******************/ - /**** md5 signature: 762cc38df03d874429dc79602cf45538 ****/ + /****** BRepBlend_RstRstEvolRad::PointOnRst1 ******/ + /****** md5 signature: 762cc38df03d874429dc79602cf45538 ******/ %feature("compactdefaultargs") PointOnRst1; %feature("autodoc", "Return ------- @@ -4817,8 +4817,8 @@ No available documentation. ") PointOnRst1; const gp_Pnt PointOnRst1(); - /****************** PointOnRst2 ******************/ - /**** md5 signature: 2b807e562845e47d1e518bf057be180a ****/ + /****** BRepBlend_RstRstEvolRad::PointOnRst2 ******/ + /****** md5 signature: 2b807e562845e47d1e518bf057be180a ******/ %feature("compactdefaultargs") PointOnRst2; %feature("autodoc", "Return ------- @@ -4830,8 +4830,8 @@ No available documentation. ") PointOnRst2; const gp_Pnt PointOnRst2(); - /****************** Resolution ******************/ - /**** md5 signature: 1f885646df74c72ec13d37a113377aaa ****/ + /****** BRepBlend_RstRstEvolRad::Resolution ******/ + /****** md5 signature: 1f885646df74c72ec13d37a113377aaa ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -4850,8 +4850,8 @@ No available documentation. ") Resolution; void Resolution(const Standard_Integer IC2d, const Standard_Real Tol, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Section ******************/ - /**** md5 signature: 5902809a8ef9b0367b5849f8615d68f9 ****/ + /****** BRepBlend_RstRstEvolRad::Section ******/ + /****** md5 signature: 5902809a8ef9b0367b5849f8615d68f9 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -4872,8 +4872,8 @@ No available documentation. ") Section; void Section(const Standard_Real Param, const Standard_Real U, const Standard_Real V, Standard_Real &OutValue, Standard_Real &OutValue, gp_Circ & C); - /****************** Section ******************/ - /**** md5 signature: 906e6a4bef3056546e496b945ff8d788 ****/ + /****** BRepBlend_RstRstEvolRad::Section ******/ + /****** md5 signature: 906e6a4bef3056546e496b945ff8d788 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -4896,8 +4896,8 @@ Used for the first and last section. ") Section; Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths); - /****************** Section ******************/ - /**** md5 signature: 50af689ba5abf11bb271a06ac70b2d69 ****/ + /****** BRepBlend_RstRstEvolRad::Section ******/ + /****** md5 signature: 50af689ba5abf11bb271a06ac70b2d69 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -4917,8 +4917,8 @@ No available documentation. ") Section; void Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfPnt2d & Poles2d, TColStd_Array1OfReal & Weigths); - /****************** Section ******************/ - /**** md5 signature: b6f1107f21a9bc6524bdd8152abaed5f ****/ + /****** BRepBlend_RstRstEvolRad::Section ******/ + /****** md5 signature: b6f1107f21a9bc6524bdd8152abaed5f ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -4944,8 +4944,8 @@ Used for the first and last section the method returns standard_true if the deri ") Section; Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfVec & D2Poles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColgp_Array1OfVec2d & D2Poles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths, TColStd_Array1OfReal & D2Weigths); - /****************** Set ******************/ - /**** md5 signature: 1d39a94f99a01338cb8afa4a49c68510 ****/ + /****** BRepBlend_RstRstEvolRad::Set ******/ + /****** md5 signature: 1d39a94f99a01338cb8afa4a49c68510 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -4965,8 +4965,8 @@ No available documentation. ") Set; void Set(const opencascade::handle & SurfRef1, const opencascade::handle & RstRef1, const opencascade::handle & SurfRef2, const opencascade::handle & RstRef2); - /****************** Set ******************/ - /**** md5 signature: a955f35e9076d1c844b9a2aa89b226bf ****/ + /****** BRepBlend_RstRstEvolRad::Set ******/ + /****** md5 signature: a955f35e9076d1c844b9a2aa89b226bf ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -4983,8 +4983,8 @@ No available documentation. ") Set; void Set(const Standard_Real Param); - /****************** Set ******************/ - /**** md5 signature: 7d0982b9e2ba9cb3c696f620150f4f9c ****/ + /****** BRepBlend_RstRstEvolRad::Set ******/ + /****** md5 signature: 7d0982b9e2ba9cb3c696f620150f4f9c ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -5002,8 +5002,8 @@ Sets the bounds of the parametric interval on the guide line. this determines th ") Set; void Set(const Standard_Real First, const Standard_Real Last); - /****************** Set ******************/ - /**** md5 signature: d73c9c4058c0955fc8cd59888660f750 ****/ + /****** BRepBlend_RstRstEvolRad::Set ******/ + /****** md5 signature: d73c9c4058c0955fc8cd59888660f750 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -5020,8 +5020,8 @@ No available documentation. ") Set; void Set(const Standard_Integer Choix); - /****************** Set ******************/ - /**** md5 signature: 94cfe331c662a2ba190837b24fee3b95 ****/ + /****** BRepBlend_RstRstEvolRad::Set ******/ + /****** md5 signature: 94cfe331c662a2ba190837b24fee3b95 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -5038,8 +5038,8 @@ Sets the type of section generation for the approximations. ") Set; void Set(const BlendFunc_SectionShape TypeSection); - /****************** Tangent2dOnRst1 ******************/ - /**** md5 signature: 8853e0bdcfc4c7ae918b4ce4afe10bf7 ****/ + /****** BRepBlend_RstRstEvolRad::Tangent2dOnRst1 ******/ + /****** md5 signature: 8853e0bdcfc4c7ae918b4ce4afe10bf7 ******/ %feature("compactdefaultargs") Tangent2dOnRst1; %feature("autodoc", "Return ------- @@ -5051,8 +5051,8 @@ No available documentation. ") Tangent2dOnRst1; const gp_Vec2d Tangent2dOnRst1(); - /****************** Tangent2dOnRst2 ******************/ - /**** md5 signature: 7efc7e62e5cd2cb55222b8f92787707b ****/ + /****** BRepBlend_RstRstEvolRad::Tangent2dOnRst2 ******/ + /****** md5 signature: 7efc7e62e5cd2cb55222b8f92787707b ******/ %feature("compactdefaultargs") Tangent2dOnRst2; %feature("autodoc", "Return ------- @@ -5064,8 +5064,8 @@ No available documentation. ") Tangent2dOnRst2; const gp_Vec2d Tangent2dOnRst2(); - /****************** TangentOnRst1 ******************/ - /**** md5 signature: 1e84fceeab2344ba6b579f62eddd47b2 ****/ + /****** BRepBlend_RstRstEvolRad::TangentOnRst1 ******/ + /****** md5 signature: 1e84fceeab2344ba6b579f62eddd47b2 ******/ %feature("compactdefaultargs") TangentOnRst1; %feature("autodoc", "Return ------- @@ -5077,8 +5077,8 @@ No available documentation. ") TangentOnRst1; const gp_Vec TangentOnRst1(); - /****************** TangentOnRst2 ******************/ - /**** md5 signature: 3441edf62ea8bd65204990029d82b25d ****/ + /****** BRepBlend_RstRstEvolRad::TangentOnRst2 ******/ + /****** md5 signature: 3441edf62ea8bd65204990029d82b25d ******/ %feature("compactdefaultargs") TangentOnRst2; %feature("autodoc", "Return ------- @@ -5090,8 +5090,8 @@ No available documentation. ") TangentOnRst2; const gp_Vec TangentOnRst2(); - /****************** Value ******************/ - /**** md5 signature: 1b689850305d8b13f289849027f0887b ****/ + /****** BRepBlend_RstRstEvolRad::Value ******/ + /****** md5 signature: 1b689850305d8b13f289849027f0887b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -5109,8 +5109,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: cb66193525cc0a7235a2cde2a228308b ****/ + /****** BRepBlend_RstRstEvolRad::Values ******/ + /****** md5 signature: cb66193525cc0a7235a2cde2a228308b ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -5143,8 +5143,8 @@ Returns the values of the functions and the derivatives for the variable ************************************/ class BRepBlend_RstRstLineBuilder { public: - /****************** BRepBlend_RstRstLineBuilder ******************/ - /**** md5 signature: 0fa89a48d67b7f761c8ed2cee361f92f ****/ + /****** BRepBlend_RstRstLineBuilder::BRepBlend_RstRstLineBuilder ******/ + /****** md5 signature: 0fa89a48d67b7f761c8ed2cee361f92f ******/ %feature("compactdefaultargs") BRepBlend_RstRstLineBuilder; %feature("autodoc", " Parameters @@ -5166,8 +5166,8 @@ No available documentation. ") BRepBlend_RstRstLineBuilder; BRepBlend_RstRstLineBuilder(const opencascade::handle & Surf1, const opencascade::handle & Rst1, const opencascade::handle & Domain1, const opencascade::handle & Surf2, const opencascade::handle & Rst2, const opencascade::handle & Domain2); - /****************** Complete ******************/ - /**** md5 signature: 826dcd81a620ed85f35c4d4dbd7bd8a7 ****/ + /****** BRepBlend_RstRstLineBuilder::Complete ******/ + /****** md5 signature: 826dcd81a620ed85f35c4d4dbd7bd8a7 ******/ %feature("compactdefaultargs") Complete; %feature("autodoc", " Parameters @@ -5189,8 +5189,8 @@ No available documentation. ") Complete; Standard_Boolean Complete(Blend_RstRstFunction & Func, Blend_SurfCurvFuncInv & Finv1, Blend_CurvPointFuncInv & FinvP1, Blend_SurfCurvFuncInv & Finv2, Blend_CurvPointFuncInv & FinvP2, const Standard_Real Pmin); - /****************** Decroch1End ******************/ - /**** md5 signature: f6913d316d5accdf3a84bcfda7bb27e1 ****/ + /****** BRepBlend_RstRstLineBuilder::Decroch1End ******/ + /****** md5 signature: f6913d316d5accdf3a84bcfda7bb27e1 ******/ %feature("compactdefaultargs") Decroch1End; %feature("autodoc", "Return ------- @@ -5202,8 +5202,8 @@ No available documentation. ") Decroch1End; Standard_Boolean Decroch1End(); - /****************** Decroch1Start ******************/ - /**** md5 signature: 85d7bc2d23e235ee8c224332022e89d2 ****/ + /****** BRepBlend_RstRstLineBuilder::Decroch1Start ******/ + /****** md5 signature: 85d7bc2d23e235ee8c224332022e89d2 ******/ %feature("compactdefaultargs") Decroch1Start; %feature("autodoc", "Return ------- @@ -5215,8 +5215,8 @@ No available documentation. ") Decroch1Start; Standard_Boolean Decroch1Start(); - /****************** Decroch2End ******************/ - /**** md5 signature: 598323a82cc53d7940e82a44b6268b22 ****/ + /****** BRepBlend_RstRstLineBuilder::Decroch2End ******/ + /****** md5 signature: 598323a82cc53d7940e82a44b6268b22 ******/ %feature("compactdefaultargs") Decroch2End; %feature("autodoc", "Return ------- @@ -5228,8 +5228,8 @@ No available documentation. ") Decroch2End; Standard_Boolean Decroch2End(); - /****************** Decroch2Start ******************/ - /**** md5 signature: 933f9277fcaba02302f7dbc9d24a34c4 ****/ + /****** BRepBlend_RstRstLineBuilder::Decroch2Start ******/ + /****** md5 signature: 933f9277fcaba02302f7dbc9d24a34c4 ******/ %feature("compactdefaultargs") Decroch2Start; %feature("autodoc", "Return ------- @@ -5241,8 +5241,8 @@ No available documentation. ") Decroch2Start; Standard_Boolean Decroch2Start(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepBlend_RstRstLineBuilder::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -5254,8 +5254,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** Line ******************/ - /**** md5 signature: 9bbdb2164431d955d7a3a08a37fd239f ****/ + /****** BRepBlend_RstRstLineBuilder::Line ******/ + /****** md5 signature: 9bbdb2164431d955d7a3a08a37fd239f ******/ %feature("compactdefaultargs") Line; %feature("autodoc", "Return ------- @@ -5267,8 +5267,8 @@ No available documentation. ") Line; const opencascade::handle & Line(); - /****************** Perform ******************/ - /**** md5 signature: 5c6445d58f45808f7c3defd1db894a35 ****/ + /****** BRepBlend_RstRstLineBuilder::Perform ******/ + /****** md5 signature: 5c6445d58f45808f7c3defd1db894a35 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -5297,8 +5297,8 @@ No available documentation. ") Perform; void Perform(Blend_RstRstFunction & Func, Blend_SurfCurvFuncInv & Finv1, Blend_CurvPointFuncInv & FinvP1, Blend_SurfCurvFuncInv & Finv2, Blend_CurvPointFuncInv & FinvP2, const Standard_Real Pdep, const Standard_Real Pmax, const Standard_Real MaxStep, const Standard_Real Tol3d, const Standard_Real TolGuide, const math_Vector & Soldep, const Standard_Real Fleche, const Standard_Boolean Appro = Standard_False); - /****************** PerformFirstSection ******************/ - /**** md5 signature: 452fb9b79df54fb801f2f70d066f611b ****/ + /****** BRepBlend_RstRstLineBuilder::PerformFirstSection ******/ + /****** md5 signature: 452fb9b79df54fb801f2f70d066f611b ******/ %feature("compactdefaultargs") PerformFirstSection; %feature("autodoc", " Parameters @@ -5343,8 +5343,8 @@ No available documentation. **************************************/ class BRepBlend_SurfCurvConstRadInv : public Blend_SurfCurvFuncInv { public: - /****************** BRepBlend_SurfCurvConstRadInv ******************/ - /**** md5 signature: 413667a5e3be555bb1567d000f5c37ac ****/ + /****** BRepBlend_SurfCurvConstRadInv::BRepBlend_SurfCurvConstRadInv ******/ + /****** md5 signature: 413667a5e3be555bb1567d000f5c37ac ******/ %feature("compactdefaultargs") BRepBlend_SurfCurvConstRadInv; %feature("autodoc", " Parameters @@ -5363,8 +5363,8 @@ No available documentation. ") BRepBlend_SurfCurvConstRadInv; BRepBlend_SurfCurvConstRadInv(const opencascade::handle & S, const opencascade::handle & C, const opencascade::handle & Cg); - /****************** Derivatives ******************/ - /**** md5 signature: 80ee5f16e62731c095910ad60228848b ****/ + /****** BRepBlend_SurfCurvConstRadInv::Derivatives ******/ + /****** md5 signature: 80ee5f16e62731c095910ad60228848b ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -5382,8 +5382,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: 73d101c74e718085b2fc8de28383bce3 ****/ + /****** BRepBlend_SurfCurvConstRadInv::GetBounds ******/ + /****** md5 signature: 73d101c74e718085b2fc8de28383bce3 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -5401,8 +5401,8 @@ Returns in the vector infbound the lowest values allowed for each of the 3 varia ") GetBounds; void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetTolerance ******************/ - /**** md5 signature: 463e2084f8f6e4a4f87c36de6e9fd9c6 ****/ + /****** BRepBlend_SurfCurvConstRadInv::GetTolerance ******/ + /****** md5 signature: 463e2084f8f6e4a4f87c36de6e9fd9c6 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -5420,8 +5420,8 @@ Returns in the vector tolerance the parametric tolerance for each of the 3 varia ") GetTolerance; void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** IsSolution ******************/ - /**** md5 signature: 0884df902635922234b529dc88a260b5 ****/ + /****** BRepBlend_SurfCurvConstRadInv::IsSolution ******/ + /****** md5 signature: 0884df902635922234b529dc88a260b5 ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -5439,8 +5439,8 @@ Returns standard_true if sol is a zero of the function. tol is the tolerance use ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** NbEquations ******************/ - /**** md5 signature: 42be0dc2e32c8e563393e8490171707e ****/ + /****** BRepBlend_SurfCurvConstRadInv::NbEquations ******/ + /****** md5 signature: 42be0dc2e32c8e563393e8490171707e ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -5452,8 +5452,8 @@ Returns 3. ") NbEquations; Standard_Integer NbEquations(); - /****************** Set ******************/ - /**** md5 signature: 941166ee1a941569b8be371b05e6b601 ****/ + /****** BRepBlend_SurfCurvConstRadInv::Set ******/ + /****** md5 signature: 941166ee1a941569b8be371b05e6b601 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -5471,8 +5471,8 @@ No available documentation. ") Set; void Set(const Standard_Real R, const Standard_Integer Choix); - /****************** Set ******************/ - /**** md5 signature: 1568bac490950a9b21e695223201919a ****/ + /****** BRepBlend_SurfCurvConstRadInv::Set ******/ + /****** md5 signature: 1568bac490950a9b21e695223201919a ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -5489,8 +5489,8 @@ Set the restriction on which a solution has to be found. ") Set; void Set(const opencascade::handle & Rst); - /****************** Value ******************/ - /**** md5 signature: 31f6ba581b8fae503400d98976418349 ****/ + /****** BRepBlend_SurfCurvConstRadInv::Value ******/ + /****** md5 signature: 31f6ba581b8fae503400d98976418349 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -5508,8 +5508,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: 17c41f2c2b925e9ddfe2f61a9052313c ****/ + /****** BRepBlend_SurfCurvConstRadInv::Values ******/ + /****** md5 signature: 17c41f2c2b925e9ddfe2f61a9052313c ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -5542,8 +5542,8 @@ Returns the values of the functions and the derivatives for the variable *************************************/ class BRepBlend_SurfCurvEvolRadInv : public Blend_SurfCurvFuncInv { public: - /****************** BRepBlend_SurfCurvEvolRadInv ******************/ - /**** md5 signature: f4c992f2047ba724a04cb63a1497cb15 ****/ + /****** BRepBlend_SurfCurvEvolRadInv::BRepBlend_SurfCurvEvolRadInv ******/ + /****** md5 signature: f4c992f2047ba724a04cb63a1497cb15 ******/ %feature("compactdefaultargs") BRepBlend_SurfCurvEvolRadInv; %feature("autodoc", " Parameters @@ -5563,8 +5563,8 @@ No available documentation. ") BRepBlend_SurfCurvEvolRadInv; BRepBlend_SurfCurvEvolRadInv(const opencascade::handle & S, const opencascade::handle & C, const opencascade::handle & Cg, const opencascade::handle & Evol); - /****************** Derivatives ******************/ - /**** md5 signature: 80ee5f16e62731c095910ad60228848b ****/ + /****** BRepBlend_SurfCurvEvolRadInv::Derivatives ******/ + /****** md5 signature: 80ee5f16e62731c095910ad60228848b ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -5582,8 +5582,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: 73d101c74e718085b2fc8de28383bce3 ****/ + /****** BRepBlend_SurfCurvEvolRadInv::GetBounds ******/ + /****** md5 signature: 73d101c74e718085b2fc8de28383bce3 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -5601,8 +5601,8 @@ Returns in the vector infbound the lowest values allowed for each of the 3 varia ") GetBounds; void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetTolerance ******************/ - /**** md5 signature: 463e2084f8f6e4a4f87c36de6e9fd9c6 ****/ + /****** BRepBlend_SurfCurvEvolRadInv::GetTolerance ******/ + /****** md5 signature: 463e2084f8f6e4a4f87c36de6e9fd9c6 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -5620,8 +5620,8 @@ Returns in the vector tolerance the parametric tolerance for each of the 3 varia ") GetTolerance; void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** IsSolution ******************/ - /**** md5 signature: 0884df902635922234b529dc88a260b5 ****/ + /****** BRepBlend_SurfCurvEvolRadInv::IsSolution ******/ + /****** md5 signature: 0884df902635922234b529dc88a260b5 ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -5639,8 +5639,8 @@ Returns standard_true if sol is a zero of the function. tol is the tolerance use ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** NbEquations ******************/ - /**** md5 signature: 42be0dc2e32c8e563393e8490171707e ****/ + /****** BRepBlend_SurfCurvEvolRadInv::NbEquations ******/ + /****** md5 signature: 42be0dc2e32c8e563393e8490171707e ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -5652,8 +5652,8 @@ Returns 3. ") NbEquations; Standard_Integer NbEquations(); - /****************** Set ******************/ - /**** md5 signature: d73c9c4058c0955fc8cd59888660f750 ****/ + /****** BRepBlend_SurfCurvEvolRadInv::Set ******/ + /****** md5 signature: d73c9c4058c0955fc8cd59888660f750 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -5670,8 +5670,8 @@ No available documentation. ") Set; void Set(const Standard_Integer Choix); - /****************** Set ******************/ - /**** md5 signature: 1568bac490950a9b21e695223201919a ****/ + /****** BRepBlend_SurfCurvEvolRadInv::Set ******/ + /****** md5 signature: 1568bac490950a9b21e695223201919a ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -5688,8 +5688,8 @@ Set the restriction on which a solution has to be found. ") Set; void Set(const opencascade::handle & Rst); - /****************** Value ******************/ - /**** md5 signature: 31f6ba581b8fae503400d98976418349 ****/ + /****** BRepBlend_SurfCurvEvolRadInv::Value ******/ + /****** md5 signature: 31f6ba581b8fae503400d98976418349 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -5707,8 +5707,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: 17c41f2c2b925e9ddfe2f61a9052313c ****/ + /****** BRepBlend_SurfCurvEvolRadInv::Values ******/ + /****** md5 signature: 17c41f2c2b925e9ddfe2f61a9052313c ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -5741,8 +5741,8 @@ Returns the values of the functions and the derivatives for the variable ***************************************/ class BRepBlend_SurfPointConstRadInv : public Blend_SurfPointFuncInv { public: - /****************** BRepBlend_SurfPointConstRadInv ******************/ - /**** md5 signature: 993f0d82d4c56cde29f6ef73aee3531d ****/ + /****** BRepBlend_SurfPointConstRadInv::BRepBlend_SurfPointConstRadInv ******/ + /****** md5 signature: 993f0d82d4c56cde29f6ef73aee3531d ******/ %feature("compactdefaultargs") BRepBlend_SurfPointConstRadInv; %feature("autodoc", " Parameters @@ -5760,8 +5760,8 @@ No available documentation. ") BRepBlend_SurfPointConstRadInv; BRepBlend_SurfPointConstRadInv(const opencascade::handle & S, const opencascade::handle & C); - /****************** Derivatives ******************/ - /**** md5 signature: 80ee5f16e62731c095910ad60228848b ****/ + /****** BRepBlend_SurfPointConstRadInv::Derivatives ******/ + /****** md5 signature: 80ee5f16e62731c095910ad60228848b ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -5779,8 +5779,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: 73d101c74e718085b2fc8de28383bce3 ****/ + /****** BRepBlend_SurfPointConstRadInv::GetBounds ******/ + /****** md5 signature: 73d101c74e718085b2fc8de28383bce3 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -5798,8 +5798,8 @@ Returns in the vector infbound the lowest values allowed for each of the 3 varia ") GetBounds; void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetTolerance ******************/ - /**** md5 signature: 463e2084f8f6e4a4f87c36de6e9fd9c6 ****/ + /****** BRepBlend_SurfPointConstRadInv::GetTolerance ******/ + /****** md5 signature: 463e2084f8f6e4a4f87c36de6e9fd9c6 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -5817,8 +5817,8 @@ Returns in the vector tolerance the parametric tolerance for each of the 3 varia ") GetTolerance; void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** IsSolution ******************/ - /**** md5 signature: 0884df902635922234b529dc88a260b5 ****/ + /****** BRepBlend_SurfPointConstRadInv::IsSolution ******/ + /****** md5 signature: 0884df902635922234b529dc88a260b5 ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -5836,8 +5836,8 @@ Returns standard_true if sol is a zero of the function. tol is the tolerance use ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** NbEquations ******************/ - /**** md5 signature: 42be0dc2e32c8e563393e8490171707e ****/ + /****** BRepBlend_SurfPointConstRadInv::NbEquations ******/ + /****** md5 signature: 42be0dc2e32c8e563393e8490171707e ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -5849,8 +5849,8 @@ Returns 3. ") NbEquations; Standard_Integer NbEquations(); - /****************** Set ******************/ - /**** md5 signature: 941166ee1a941569b8be371b05e6b601 ****/ + /****** BRepBlend_SurfPointConstRadInv::Set ******/ + /****** md5 signature: 941166ee1a941569b8be371b05e6b601 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -5868,8 +5868,8 @@ No available documentation. ") Set; void Set(const Standard_Real R, const Standard_Integer Choix); - /****************** Set ******************/ - /**** md5 signature: db883cf63ff497749765a1588d5f0509 ****/ + /****** BRepBlend_SurfPointConstRadInv::Set ******/ + /****** md5 signature: db883cf63ff497749765a1588d5f0509 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -5886,8 +5886,8 @@ Set the point on which a solution has to be found. ") Set; void Set(const gp_Pnt & P); - /****************** Value ******************/ - /**** md5 signature: 31f6ba581b8fae503400d98976418349 ****/ + /****** BRepBlend_SurfPointConstRadInv::Value ******/ + /****** md5 signature: 31f6ba581b8fae503400d98976418349 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -5905,8 +5905,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: 17c41f2c2b925e9ddfe2f61a9052313c ****/ + /****** BRepBlend_SurfPointConstRadInv::Values ******/ + /****** md5 signature: 17c41f2c2b925e9ddfe2f61a9052313c ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -5939,8 +5939,8 @@ Returns the values of the functions and the derivatives for the variable **************************************/ class BRepBlend_SurfPointEvolRadInv : public Blend_SurfPointFuncInv { public: - /****************** BRepBlend_SurfPointEvolRadInv ******************/ - /**** md5 signature: f3eea577ae1852a9a7135e6772c85ac4 ****/ + /****** BRepBlend_SurfPointEvolRadInv::BRepBlend_SurfPointEvolRadInv ******/ + /****** md5 signature: f3eea577ae1852a9a7135e6772c85ac4 ******/ %feature("compactdefaultargs") BRepBlend_SurfPointEvolRadInv; %feature("autodoc", " Parameters @@ -5959,8 +5959,8 @@ No available documentation. ") BRepBlend_SurfPointEvolRadInv; BRepBlend_SurfPointEvolRadInv(const opencascade::handle & S, const opencascade::handle & C, const opencascade::handle & Evol); - /****************** Derivatives ******************/ - /**** md5 signature: 80ee5f16e62731c095910ad60228848b ****/ + /****** BRepBlend_SurfPointEvolRadInv::Derivatives ******/ + /****** md5 signature: 80ee5f16e62731c095910ad60228848b ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -5978,8 +5978,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: 73d101c74e718085b2fc8de28383bce3 ****/ + /****** BRepBlend_SurfPointEvolRadInv::GetBounds ******/ + /****** md5 signature: 73d101c74e718085b2fc8de28383bce3 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -5997,8 +5997,8 @@ Returns in the vector infbound the lowest values allowed for each of the 3 varia ") GetBounds; void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetTolerance ******************/ - /**** md5 signature: 463e2084f8f6e4a4f87c36de6e9fd9c6 ****/ + /****** BRepBlend_SurfPointEvolRadInv::GetTolerance ******/ + /****** md5 signature: 463e2084f8f6e4a4f87c36de6e9fd9c6 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -6016,8 +6016,8 @@ Returns in the vector tolerance the parametric tolerance for each of the 3 varia ") GetTolerance; void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** IsSolution ******************/ - /**** md5 signature: 0884df902635922234b529dc88a260b5 ****/ + /****** BRepBlend_SurfPointEvolRadInv::IsSolution ******/ + /****** md5 signature: 0884df902635922234b529dc88a260b5 ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -6035,8 +6035,8 @@ Returns standard_true if sol is a zero of the function. tol is the tolerance use ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** NbEquations ******************/ - /**** md5 signature: 42be0dc2e32c8e563393e8490171707e ****/ + /****** BRepBlend_SurfPointEvolRadInv::NbEquations ******/ + /****** md5 signature: 42be0dc2e32c8e563393e8490171707e ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -6048,8 +6048,8 @@ Returns 3. ") NbEquations; Standard_Integer NbEquations(); - /****************** Set ******************/ - /**** md5 signature: d73c9c4058c0955fc8cd59888660f750 ****/ + /****** BRepBlend_SurfPointEvolRadInv::Set ******/ + /****** md5 signature: d73c9c4058c0955fc8cd59888660f750 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -6066,8 +6066,8 @@ No available documentation. ") Set; void Set(const Standard_Integer Choix); - /****************** Set ******************/ - /**** md5 signature: db883cf63ff497749765a1588d5f0509 ****/ + /****** BRepBlend_SurfPointEvolRadInv::Set ******/ + /****** md5 signature: db883cf63ff497749765a1588d5f0509 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -6084,8 +6084,8 @@ Set the point on which a solution has to be found. ") Set; void Set(const gp_Pnt & P); - /****************** Value ******************/ - /**** md5 signature: 31f6ba581b8fae503400d98976418349 ****/ + /****** BRepBlend_SurfPointEvolRadInv::Value ******/ + /****** md5 signature: 31f6ba581b8fae503400d98976418349 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -6103,8 +6103,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: 17c41f2c2b925e9ddfe2f61a9052313c ****/ + /****** BRepBlend_SurfPointEvolRadInv::Values ******/ + /****** md5 signature: 17c41f2c2b925e9ddfe2f61a9052313c ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -6137,8 +6137,8 @@ Returns the values of the functions and the derivatives for the variable **********************************/ class BRepBlend_SurfRstConstRad : public Blend_SurfRstFunction { public: - /****************** BRepBlend_SurfRstConstRad ******************/ - /**** md5 signature: 61178a969de9578c5b02b8a945a3f459 ****/ + /****** BRepBlend_SurfRstConstRad::BRepBlend_SurfRstConstRad ******/ + /****** md5 signature: 61178a969de9578c5b02b8a945a3f459 ******/ %feature("compactdefaultargs") BRepBlend_SurfRstConstRad; %feature("autodoc", " Parameters @@ -6158,8 +6158,8 @@ No available documentation. ") BRepBlend_SurfRstConstRad; BRepBlend_SurfRstConstRad(const opencascade::handle & Surf, const opencascade::handle & SurfRst, const opencascade::handle & Rst, const opencascade::handle & CGuide); - /****************** Decroch ******************/ - /**** md5 signature: 7b97fab9290fe599257ab8ce84870242 ****/ + /****** BRepBlend_SurfRstConstRad::Decroch ******/ + /****** md5 signature: 7b97fab9290fe599257ab8ce84870242 ******/ %feature("compactdefaultargs") Decroch; %feature("autodoc", " Parameters @@ -6178,8 +6178,8 @@ Enables implementation of a criterion of decrochage specific to the function. wa ") Decroch; Standard_Boolean Decroch(const math_Vector & Sol, gp_Vec & NS, gp_Vec & TgS); - /****************** Derivatives ******************/ - /**** md5 signature: 940fde1549012c9025c437a16f7d8c18 ****/ + /****** BRepBlend_SurfRstConstRad::Derivatives ******/ + /****** md5 signature: 940fde1549012c9025c437a16f7d8c18 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -6197,8 +6197,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: 7f39b43072461a3f70a63d3178e97743 ****/ + /****** BRepBlend_SurfRstConstRad::GetBounds ******/ + /****** md5 signature: 7f39b43072461a3f70a63d3178e97743 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -6216,8 +6216,8 @@ No available documentation. ") GetBounds; void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetMinimalDistance ******************/ - /**** md5 signature: b7112b2680da59932f7cc20412f85fda ****/ + /****** BRepBlend_SurfRstConstRad::GetMinimalDistance ******/ + /****** md5 signature: b7112b2680da59932f7cc20412f85fda ******/ %feature("compactdefaultargs") GetMinimalDistance; %feature("autodoc", "Return ------- @@ -6229,8 +6229,8 @@ Returns the minimal distance between two extremities of calculated sections. ") GetMinimalDistance; virtual Standard_Real GetMinimalDistance(); - /****************** GetMinimalWeight ******************/ - /**** md5 signature: f84aaf80601cfa818dfe6e9dd3bec152 ****/ + /****** BRepBlend_SurfRstConstRad::GetMinimalWeight ******/ + /****** md5 signature: f84aaf80601cfa818dfe6e9dd3bec152 ******/ %feature("compactdefaultargs") GetMinimalWeight; %feature("autodoc", " Parameters @@ -6247,8 +6247,8 @@ Compute the minimal value of weight for each poles of all sections. ") GetMinimalWeight; void GetMinimalWeight(TColStd_Array1OfReal & Weigths); - /****************** GetSectionSize ******************/ - /**** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ****/ + /****** BRepBlend_SurfRstConstRad::GetSectionSize ******/ + /****** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ******/ %feature("compactdefaultargs") GetSectionSize; %feature("autodoc", "Return ------- @@ -6260,8 +6260,8 @@ Returns the length of the maximum section. ") GetSectionSize; Standard_Real GetSectionSize(); - /****************** GetShape ******************/ - /**** md5 signature: 6b9d3e113e9e6721b2abf4c094cdd226 ****/ + /****** BRepBlend_SurfRstConstRad::GetShape ******/ + /****** md5 signature: 6b9d3e113e9e6721b2abf4c094cdd226 ******/ %feature("compactdefaultargs") GetShape; %feature("autodoc", " Parameters @@ -6280,8 +6280,8 @@ No available documentation. ") GetShape; void GetShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** GetTolerance ******************/ - /**** md5 signature: db57a1b1119c0b1280472660909013c2 ****/ + /****** BRepBlend_SurfRstConstRad::GetTolerance ******/ + /****** md5 signature: db57a1b1119c0b1280472660909013c2 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -6299,8 +6299,8 @@ No available documentation. ") GetTolerance; void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** GetTolerance ******************/ - /**** md5 signature: be5e2f2cb95c7dbdff402ed78245d7d7 ****/ + /****** BRepBlend_SurfRstConstRad::GetTolerance ******/ + /****** md5 signature: be5e2f2cb95c7dbdff402ed78245d7d7 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -6321,8 +6321,8 @@ Returns the tolerance to reach in approximation to respecte boundtol error at th ") GetTolerance; void GetTolerance(const Standard_Real BoundTol, const Standard_Real SurfTol, const Standard_Real AngleTol, math_Vector & Tol3d, math_Vector & Tol1D); - /****************** Intervals ******************/ - /**** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ****/ + /****** BRepBlend_SurfRstConstRad::Intervals ******/ + /****** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -6340,8 +6340,8 @@ Stores in the parameters bounding the intervals of continuity . the array ") Intervals; void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsRational ******************/ - /**** md5 signature: 82ca56fad113156125f40128b25c0d8e ****/ + /****** BRepBlend_SurfRstConstRad::IsRational ******/ + /****** md5 signature: 82ca56fad113156125f40128b25c0d8e ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -6353,8 +6353,8 @@ Returns if the section is rationnal. ") IsRational; Standard_Boolean IsRational(); - /****************** IsSolution ******************/ - /**** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ****/ + /****** BRepBlend_SurfRstConstRad::IsSolution ******/ + /****** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -6372,8 +6372,8 @@ No available documentation. ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** IsTangencyPoint ******************/ - /**** md5 signature: 6f3e518ba9796f381f39631e22124ef0 ****/ + /****** BRepBlend_SurfRstConstRad::IsTangencyPoint ******/ + /****** md5 signature: 6f3e518ba9796f381f39631e22124ef0 ******/ %feature("compactdefaultargs") IsTangencyPoint; %feature("autodoc", "Return ------- @@ -6385,8 +6385,8 @@ No available documentation. ") IsTangencyPoint; Standard_Boolean IsTangencyPoint(); - /****************** Knots ******************/ - /**** md5 signature: a226854cd9eac08cbe4282feaa46c20d ****/ + /****** BRepBlend_SurfRstConstRad::Knots ******/ + /****** md5 signature: a226854cd9eac08cbe4282feaa46c20d ******/ %feature("compactdefaultargs") Knots; %feature("autodoc", " Parameters @@ -6403,8 +6403,8 @@ No available documentation. ") Knots; void Knots(TColStd_Array1OfReal & TKnots); - /****************** Mults ******************/ - /**** md5 signature: 36c77711e4160fb27b24b90b8fa7c6de ****/ + /****** BRepBlend_SurfRstConstRad::Mults ******/ + /****** md5 signature: 36c77711e4160fb27b24b90b8fa7c6de ******/ %feature("compactdefaultargs") Mults; %feature("autodoc", " Parameters @@ -6421,8 +6421,8 @@ No available documentation. ") Mults; void Mults(TColStd_Array1OfInteger & TMults); - /****************** NbEquations ******************/ - /**** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ****/ + /****** BRepBlend_SurfRstConstRad::NbEquations ******/ + /****** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -6434,8 +6434,8 @@ Returns 3. ") NbEquations; Standard_Integer NbEquations(); - /****************** NbIntervals ******************/ - /**** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ****/ + /****** BRepBlend_SurfRstConstRad::NbIntervals ******/ + /****** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -6452,8 +6452,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** NbVariables ******************/ - /**** md5 signature: c99b0d96b9b2c7c3fd7890618502162b ****/ + /****** BRepBlend_SurfRstConstRad::NbVariables ******/ + /****** md5 signature: c99b0d96b9b2c7c3fd7890618502162b ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -6465,8 +6465,8 @@ Returns 3. ") NbVariables; Standard_Integer NbVariables(); - /****************** ParameterOnRst ******************/ - /**** md5 signature: 7e31a9a50b0e16d757ff5e9a2545014c ****/ + /****** BRepBlend_SurfRstConstRad::ParameterOnRst ******/ + /****** md5 signature: 7e31a9a50b0e16d757ff5e9a2545014c ******/ %feature("compactdefaultargs") ParameterOnRst; %feature("autodoc", "Return ------- @@ -6478,8 +6478,8 @@ Returns parameter of the point on the curve. ") ParameterOnRst; Standard_Real ParameterOnRst(); - /****************** Pnt2dOnRst ******************/ - /**** md5 signature: be6301599a2805e86c2f189218545e8d ****/ + /****** BRepBlend_SurfRstConstRad::Pnt2dOnRst ******/ + /****** md5 signature: be6301599a2805e86c2f189218545e8d ******/ %feature("compactdefaultargs") Pnt2dOnRst; %feature("autodoc", "Return ------- @@ -6491,8 +6491,8 @@ Returns u,v coordinates of the point on the curve on surface. ") Pnt2dOnRst; const gp_Pnt2d Pnt2dOnRst(); - /****************** Pnt2dOnS ******************/ - /**** md5 signature: 17442813aa59649b001e1e639324e582 ****/ + /****** BRepBlend_SurfRstConstRad::Pnt2dOnS ******/ + /****** md5 signature: 17442813aa59649b001e1e639324e582 ******/ %feature("compactdefaultargs") Pnt2dOnS; %feature("autodoc", "Return ------- @@ -6504,8 +6504,8 @@ Returns u,v coordinates of the point on the surface. ") Pnt2dOnS; const gp_Pnt2d Pnt2dOnS(); - /****************** PointOnRst ******************/ - /**** md5 signature: 8bca30b1c57a5ca26f02cdaf7dbf609a ****/ + /****** BRepBlend_SurfRstConstRad::PointOnRst ******/ + /****** md5 signature: 8bca30b1c57a5ca26f02cdaf7dbf609a ******/ %feature("compactdefaultargs") PointOnRst; %feature("autodoc", "Return ------- @@ -6517,8 +6517,8 @@ No available documentation. ") PointOnRst; const gp_Pnt PointOnRst(); - /****************** PointOnS ******************/ - /**** md5 signature: d0ce1246a72267935632a60d95848390 ****/ + /****** BRepBlend_SurfRstConstRad::PointOnS ******/ + /****** md5 signature: d0ce1246a72267935632a60d95848390 ******/ %feature("compactdefaultargs") PointOnS; %feature("autodoc", "Return ------- @@ -6530,8 +6530,8 @@ No available documentation. ") PointOnS; const gp_Pnt PointOnS(); - /****************** Resolution ******************/ - /**** md5 signature: 1f885646df74c72ec13d37a113377aaa ****/ + /****** BRepBlend_SurfRstConstRad::Resolution ******/ + /****** md5 signature: 1f885646df74c72ec13d37a113377aaa ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -6550,8 +6550,8 @@ No available documentation. ") Resolution; void Resolution(const Standard_Integer IC2d, const Standard_Real Tol, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Section ******************/ - /**** md5 signature: c6f45fdc6c5dce2cea7b90328e5e99d9 ****/ + /****** BRepBlend_SurfRstConstRad::Section ******/ + /****** md5 signature: c6f45fdc6c5dce2cea7b90328e5e99d9 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -6573,8 +6573,8 @@ No available documentation. ") Section; void Section(const Standard_Real Param, const Standard_Real U, const Standard_Real V, const Standard_Real W, Standard_Real &OutValue, Standard_Real &OutValue, gp_Circ & C); - /****************** Section ******************/ - /**** md5 signature: 906e6a4bef3056546e496b945ff8d788 ****/ + /****** BRepBlend_SurfRstConstRad::Section ******/ + /****** md5 signature: 906e6a4bef3056546e496b945ff8d788 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -6597,8 +6597,8 @@ Used for the first and last section. ") Section; Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths); - /****************** Section ******************/ - /**** md5 signature: b6f1107f21a9bc6524bdd8152abaed5f ****/ + /****** BRepBlend_SurfRstConstRad::Section ******/ + /****** md5 signature: b6f1107f21a9bc6524bdd8152abaed5f ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -6624,8 +6624,8 @@ Used for the first and last section the method returns standard_true if the deri ") Section; Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfVec & D2Poles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColgp_Array1OfVec2d & D2Poles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths, TColStd_Array1OfReal & D2Weigths); - /****************** Section ******************/ - /**** md5 signature: 50af689ba5abf11bb271a06ac70b2d69 ****/ + /****** BRepBlend_SurfRstConstRad::Section ******/ + /****** md5 signature: 50af689ba5abf11bb271a06ac70b2d69 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -6645,8 +6645,8 @@ No available documentation. ") Section; void Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfPnt2d & Poles2d, TColStd_Array1OfReal & Weigths); - /****************** Set ******************/ - /**** md5 signature: 51edc1a46f9014e3188bd66241af17c6 ****/ + /****** BRepBlend_SurfRstConstRad::Set ******/ + /****** md5 signature: 51edc1a46f9014e3188bd66241af17c6 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -6664,8 +6664,8 @@ No available documentation. ") Set; void Set(const opencascade::handle & SurfRef, const opencascade::handle & RstRef); - /****************** Set ******************/ - /**** md5 signature: a955f35e9076d1c844b9a2aa89b226bf ****/ + /****** BRepBlend_SurfRstConstRad::Set ******/ + /****** md5 signature: a955f35e9076d1c844b9a2aa89b226bf ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -6682,8 +6682,8 @@ No available documentation. ") Set; void Set(const Standard_Real Param); - /****************** Set ******************/ - /**** md5 signature: 7d0982b9e2ba9cb3c696f620150f4f9c ****/ + /****** BRepBlend_SurfRstConstRad::Set ******/ + /****** md5 signature: 7d0982b9e2ba9cb3c696f620150f4f9c ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -6701,8 +6701,8 @@ Sets the bounds of the parametric interval on the guide line. this determines th ") Set; void Set(const Standard_Real First, const Standard_Real Last); - /****************** Set ******************/ - /**** md5 signature: 99fe75aea7947575eb6b646d1797f9da ****/ + /****** BRepBlend_SurfRstConstRad::Set ******/ + /****** md5 signature: 99fe75aea7947575eb6b646d1797f9da ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -6720,8 +6720,8 @@ No available documentation. ") Set; void Set(const Standard_Real Radius, const Standard_Integer Choix); - /****************** Set ******************/ - /**** md5 signature: 94cfe331c662a2ba190837b24fee3b95 ****/ + /****** BRepBlend_SurfRstConstRad::Set ******/ + /****** md5 signature: 94cfe331c662a2ba190837b24fee3b95 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -6738,8 +6738,8 @@ Sets the type of section generation for the approximations. ") Set; void Set(const BlendFunc_SectionShape TypeSection); - /****************** Tangent2dOnRst ******************/ - /**** md5 signature: a67df95e06afdcf2e410ba7d891bdc53 ****/ + /****** BRepBlend_SurfRstConstRad::Tangent2dOnRst ******/ + /****** md5 signature: a67df95e06afdcf2e410ba7d891bdc53 ******/ %feature("compactdefaultargs") Tangent2dOnRst; %feature("autodoc", "Return ------- @@ -6751,8 +6751,8 @@ No available documentation. ") Tangent2dOnRst; const gp_Vec2d Tangent2dOnRst(); - /****************** Tangent2dOnS ******************/ - /**** md5 signature: e102a4d332cc3b92c9252bebc7ca2a2f ****/ + /****** BRepBlend_SurfRstConstRad::Tangent2dOnS ******/ + /****** md5 signature: e102a4d332cc3b92c9252bebc7ca2a2f ******/ %feature("compactdefaultargs") Tangent2dOnS; %feature("autodoc", "Return ------- @@ -6764,8 +6764,8 @@ No available documentation. ") Tangent2dOnS; const gp_Vec2d Tangent2dOnS(); - /****************** TangentOnRst ******************/ - /**** md5 signature: ee94795e8a03889a76a13b1b2ac6b614 ****/ + /****** BRepBlend_SurfRstConstRad::TangentOnRst ******/ + /****** md5 signature: ee94795e8a03889a76a13b1b2ac6b614 ******/ %feature("compactdefaultargs") TangentOnRst; %feature("autodoc", "Return ------- @@ -6777,8 +6777,8 @@ No available documentation. ") TangentOnRst; const gp_Vec TangentOnRst(); - /****************** TangentOnS ******************/ - /**** md5 signature: 48a27063e2cf1be2b2c56ad8f774bd84 ****/ + /****** BRepBlend_SurfRstConstRad::TangentOnS ******/ + /****** md5 signature: 48a27063e2cf1be2b2c56ad8f774bd84 ******/ %feature("compactdefaultargs") TangentOnS; %feature("autodoc", "Return ------- @@ -6790,8 +6790,8 @@ No available documentation. ") TangentOnS; const gp_Vec TangentOnS(); - /****************** Value ******************/ - /**** md5 signature: 1b689850305d8b13f289849027f0887b ****/ + /****** BRepBlend_SurfRstConstRad::Value ******/ + /****** md5 signature: 1b689850305d8b13f289849027f0887b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -6809,8 +6809,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: cb66193525cc0a7235a2cde2a228308b ****/ + /****** BRepBlend_SurfRstConstRad::Values ******/ + /****** md5 signature: cb66193525cc0a7235a2cde2a228308b ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -6843,8 +6843,8 @@ Returns the values of the functions and the derivatives for the variable *********************************/ class BRepBlend_SurfRstEvolRad : public Blend_SurfRstFunction { public: - /****************** BRepBlend_SurfRstEvolRad ******************/ - /**** md5 signature: 06cb46291f703c140349a3b88ec0c690 ****/ + /****** BRepBlend_SurfRstEvolRad::BRepBlend_SurfRstEvolRad ******/ + /****** md5 signature: 06cb46291f703c140349a3b88ec0c690 ******/ %feature("compactdefaultargs") BRepBlend_SurfRstEvolRad; %feature("autodoc", " Parameters @@ -6865,8 +6865,8 @@ No available documentation. ") BRepBlend_SurfRstEvolRad; BRepBlend_SurfRstEvolRad(const opencascade::handle & Surf, const opencascade::handle & SurfRst, const opencascade::handle & Rst, const opencascade::handle & CGuide, const opencascade::handle & Evol); - /****************** Decroch ******************/ - /**** md5 signature: 7b97fab9290fe599257ab8ce84870242 ****/ + /****** BRepBlend_SurfRstEvolRad::Decroch ******/ + /****** md5 signature: 7b97fab9290fe599257ab8ce84870242 ******/ %feature("compactdefaultargs") Decroch; %feature("autodoc", " Parameters @@ -6885,8 +6885,8 @@ Permet d ' implementer un critere de decrochage specifique a la fonction. ") Decroch; Standard_Boolean Decroch(const math_Vector & Sol, gp_Vec & NS, gp_Vec & TgS); - /****************** Derivatives ******************/ - /**** md5 signature: 940fde1549012c9025c437a16f7d8c18 ****/ + /****** BRepBlend_SurfRstEvolRad::Derivatives ******/ + /****** md5 signature: 940fde1549012c9025c437a16f7d8c18 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -6904,8 +6904,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: 7f39b43072461a3f70a63d3178e97743 ****/ + /****** BRepBlend_SurfRstEvolRad::GetBounds ******/ + /****** md5 signature: 7f39b43072461a3f70a63d3178e97743 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -6923,8 +6923,8 @@ No available documentation. ") GetBounds; void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetMinimalDistance ******************/ - /**** md5 signature: b7112b2680da59932f7cc20412f85fda ****/ + /****** BRepBlend_SurfRstEvolRad::GetMinimalDistance ******/ + /****** md5 signature: b7112b2680da59932f7cc20412f85fda ******/ %feature("compactdefaultargs") GetMinimalDistance; %feature("autodoc", "Return ------- @@ -6936,8 +6936,8 @@ Returns the minimal distance between two extremities of calculated sections. ") GetMinimalDistance; virtual Standard_Real GetMinimalDistance(); - /****************** GetMinimalWeight ******************/ - /**** md5 signature: f84aaf80601cfa818dfe6e9dd3bec152 ****/ + /****** BRepBlend_SurfRstEvolRad::GetMinimalWeight ******/ + /****** md5 signature: f84aaf80601cfa818dfe6e9dd3bec152 ******/ %feature("compactdefaultargs") GetMinimalWeight; %feature("autodoc", " Parameters @@ -6954,8 +6954,8 @@ Compute the minimal value of weight for each poles of all sections. ") GetMinimalWeight; void GetMinimalWeight(TColStd_Array1OfReal & Weigths); - /****************** GetSectionSize ******************/ - /**** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ****/ + /****** BRepBlend_SurfRstEvolRad::GetSectionSize ******/ + /****** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ******/ %feature("compactdefaultargs") GetSectionSize; %feature("autodoc", "Return ------- @@ -6967,8 +6967,8 @@ Returns the length of the maximum section. ") GetSectionSize; Standard_Real GetSectionSize(); - /****************** GetShape ******************/ - /**** md5 signature: 6b9d3e113e9e6721b2abf4c094cdd226 ****/ + /****** BRepBlend_SurfRstEvolRad::GetShape ******/ + /****** md5 signature: 6b9d3e113e9e6721b2abf4c094cdd226 ******/ %feature("compactdefaultargs") GetShape; %feature("autodoc", " Parameters @@ -6987,8 +6987,8 @@ No available documentation. ") GetShape; void GetShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** GetTolerance ******************/ - /**** md5 signature: db57a1b1119c0b1280472660909013c2 ****/ + /****** BRepBlend_SurfRstEvolRad::GetTolerance ******/ + /****** md5 signature: db57a1b1119c0b1280472660909013c2 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -7006,8 +7006,8 @@ No available documentation. ") GetTolerance; void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** GetTolerance ******************/ - /**** md5 signature: be5e2f2cb95c7dbdff402ed78245d7d7 ****/ + /****** BRepBlend_SurfRstEvolRad::GetTolerance ******/ + /****** md5 signature: be5e2f2cb95c7dbdff402ed78245d7d7 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -7028,8 +7028,8 @@ Returns the tolerance to reach in approximation to respecte boundtol error at th ") GetTolerance; void GetTolerance(const Standard_Real BoundTol, const Standard_Real SurfTol, const Standard_Real AngleTol, math_Vector & Tol3d, math_Vector & Tol1D); - /****************** Intervals ******************/ - /**** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ****/ + /****** BRepBlend_SurfRstEvolRad::Intervals ******/ + /****** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -7047,8 +7047,8 @@ Stores in the parameters bounding the intervals of continuity . the array ") Intervals; void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsRational ******************/ - /**** md5 signature: 82ca56fad113156125f40128b25c0d8e ****/ + /****** BRepBlend_SurfRstEvolRad::IsRational ******/ + /****** md5 signature: 82ca56fad113156125f40128b25c0d8e ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -7060,8 +7060,8 @@ Returns if the section is rationnal. ") IsRational; Standard_Boolean IsRational(); - /****************** IsSolution ******************/ - /**** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ****/ + /****** BRepBlend_SurfRstEvolRad::IsSolution ******/ + /****** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -7079,8 +7079,8 @@ No available documentation. ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** IsTangencyPoint ******************/ - /**** md5 signature: 6f3e518ba9796f381f39631e22124ef0 ****/ + /****** BRepBlend_SurfRstEvolRad::IsTangencyPoint ******/ + /****** md5 signature: 6f3e518ba9796f381f39631e22124ef0 ******/ %feature("compactdefaultargs") IsTangencyPoint; %feature("autodoc", "Return ------- @@ -7092,8 +7092,8 @@ No available documentation. ") IsTangencyPoint; Standard_Boolean IsTangencyPoint(); - /****************** Knots ******************/ - /**** md5 signature: a226854cd9eac08cbe4282feaa46c20d ****/ + /****** BRepBlend_SurfRstEvolRad::Knots ******/ + /****** md5 signature: a226854cd9eac08cbe4282feaa46c20d ******/ %feature("compactdefaultargs") Knots; %feature("autodoc", " Parameters @@ -7110,8 +7110,8 @@ No available documentation. ") Knots; void Knots(TColStd_Array1OfReal & TKnots); - /****************** Mults ******************/ - /**** md5 signature: 36c77711e4160fb27b24b90b8fa7c6de ****/ + /****** BRepBlend_SurfRstEvolRad::Mults ******/ + /****** md5 signature: 36c77711e4160fb27b24b90b8fa7c6de ******/ %feature("compactdefaultargs") Mults; %feature("autodoc", " Parameters @@ -7128,8 +7128,8 @@ No available documentation. ") Mults; void Mults(TColStd_Array1OfInteger & TMults); - /****************** NbEquations ******************/ - /**** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ****/ + /****** BRepBlend_SurfRstEvolRad::NbEquations ******/ + /****** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -7141,8 +7141,8 @@ Returns 3. ") NbEquations; Standard_Integer NbEquations(); - /****************** NbIntervals ******************/ - /**** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ****/ + /****** BRepBlend_SurfRstEvolRad::NbIntervals ******/ + /****** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -7159,8 +7159,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** NbVariables ******************/ - /**** md5 signature: c99b0d96b9b2c7c3fd7890618502162b ****/ + /****** BRepBlend_SurfRstEvolRad::NbVariables ******/ + /****** md5 signature: c99b0d96b9b2c7c3fd7890618502162b ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -7172,8 +7172,8 @@ Returns 3. ") NbVariables; Standard_Integer NbVariables(); - /****************** ParameterOnRst ******************/ - /**** md5 signature: 7e31a9a50b0e16d757ff5e9a2545014c ****/ + /****** BRepBlend_SurfRstEvolRad::ParameterOnRst ******/ + /****** md5 signature: 7e31a9a50b0e16d757ff5e9a2545014c ******/ %feature("compactdefaultargs") ParameterOnRst; %feature("autodoc", "Return ------- @@ -7185,8 +7185,8 @@ Returns parameter of the point on the curve. ") ParameterOnRst; Standard_Real ParameterOnRst(); - /****************** Pnt2dOnRst ******************/ - /**** md5 signature: be6301599a2805e86c2f189218545e8d ****/ + /****** BRepBlend_SurfRstEvolRad::Pnt2dOnRst ******/ + /****** md5 signature: be6301599a2805e86c2f189218545e8d ******/ %feature("compactdefaultargs") Pnt2dOnRst; %feature("autodoc", "Return ------- @@ -7198,8 +7198,8 @@ Returns u,v coordinates of the point on the curve on surface. ") Pnt2dOnRst; const gp_Pnt2d Pnt2dOnRst(); - /****************** Pnt2dOnS ******************/ - /**** md5 signature: 17442813aa59649b001e1e639324e582 ****/ + /****** BRepBlend_SurfRstEvolRad::Pnt2dOnS ******/ + /****** md5 signature: 17442813aa59649b001e1e639324e582 ******/ %feature("compactdefaultargs") Pnt2dOnS; %feature("autodoc", "Return ------- @@ -7211,8 +7211,8 @@ Returns u,v coordinates of the point on the surface. ") Pnt2dOnS; const gp_Pnt2d Pnt2dOnS(); - /****************** PointOnRst ******************/ - /**** md5 signature: 8bca30b1c57a5ca26f02cdaf7dbf609a ****/ + /****** BRepBlend_SurfRstEvolRad::PointOnRst ******/ + /****** md5 signature: 8bca30b1c57a5ca26f02cdaf7dbf609a ******/ %feature("compactdefaultargs") PointOnRst; %feature("autodoc", "Return ------- @@ -7224,8 +7224,8 @@ No available documentation. ") PointOnRst; const gp_Pnt PointOnRst(); - /****************** PointOnS ******************/ - /**** md5 signature: d0ce1246a72267935632a60d95848390 ****/ + /****** BRepBlend_SurfRstEvolRad::PointOnS ******/ + /****** md5 signature: d0ce1246a72267935632a60d95848390 ******/ %feature("compactdefaultargs") PointOnS; %feature("autodoc", "Return ------- @@ -7237,8 +7237,8 @@ No available documentation. ") PointOnS; const gp_Pnt PointOnS(); - /****************** Resolution ******************/ - /**** md5 signature: 1f885646df74c72ec13d37a113377aaa ****/ + /****** BRepBlend_SurfRstEvolRad::Resolution ******/ + /****** md5 signature: 1f885646df74c72ec13d37a113377aaa ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -7257,8 +7257,8 @@ No available documentation. ") Resolution; void Resolution(const Standard_Integer IC2d, const Standard_Real Tol, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Section ******************/ - /**** md5 signature: c6f45fdc6c5dce2cea7b90328e5e99d9 ****/ + /****** BRepBlend_SurfRstEvolRad::Section ******/ + /****** md5 signature: c6f45fdc6c5dce2cea7b90328e5e99d9 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -7280,8 +7280,8 @@ No available documentation. ") Section; void Section(const Standard_Real Param, const Standard_Real U, const Standard_Real V, const Standard_Real W, Standard_Real &OutValue, Standard_Real &OutValue, gp_Circ & C); - /****************** Section ******************/ - /**** md5 signature: 906e6a4bef3056546e496b945ff8d788 ****/ + /****** BRepBlend_SurfRstEvolRad::Section ******/ + /****** md5 signature: 906e6a4bef3056546e496b945ff8d788 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -7304,8 +7304,8 @@ Used for the first and last section. ") Section; Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths); - /****************** Section ******************/ - /**** md5 signature: b6f1107f21a9bc6524bdd8152abaed5f ****/ + /****** BRepBlend_SurfRstEvolRad::Section ******/ + /****** md5 signature: b6f1107f21a9bc6524bdd8152abaed5f ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -7331,8 +7331,8 @@ Used for the first and last section the method returns standard_true if the deri ") Section; Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfVec & D2Poles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColgp_Array1OfVec2d & D2Poles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths, TColStd_Array1OfReal & D2Weigths); - /****************** Section ******************/ - /**** md5 signature: 50af689ba5abf11bb271a06ac70b2d69 ****/ + /****** BRepBlend_SurfRstEvolRad::Section ******/ + /****** md5 signature: 50af689ba5abf11bb271a06ac70b2d69 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -7352,8 +7352,8 @@ No available documentation. ") Section; void Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfPnt2d & Poles2d, TColStd_Array1OfReal & Weigths); - /****************** Set ******************/ - /**** md5 signature: 51edc1a46f9014e3188bd66241af17c6 ****/ + /****** BRepBlend_SurfRstEvolRad::Set ******/ + /****** md5 signature: 51edc1a46f9014e3188bd66241af17c6 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -7371,8 +7371,8 @@ No available documentation. ") Set; void Set(const opencascade::handle & SurfRef, const opencascade::handle & RstRef); - /****************** Set ******************/ - /**** md5 signature: a955f35e9076d1c844b9a2aa89b226bf ****/ + /****** BRepBlend_SurfRstEvolRad::Set ******/ + /****** md5 signature: a955f35e9076d1c844b9a2aa89b226bf ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -7389,8 +7389,8 @@ No available documentation. ") Set; void Set(const Standard_Real Param); - /****************** Set ******************/ - /**** md5 signature: 7d0982b9e2ba9cb3c696f620150f4f9c ****/ + /****** BRepBlend_SurfRstEvolRad::Set ******/ + /****** md5 signature: 7d0982b9e2ba9cb3c696f620150f4f9c ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -7408,8 +7408,8 @@ Sets the bounds of the parametric interval on the guide line. this determines th ") Set; void Set(const Standard_Real First, const Standard_Real Last); - /****************** Set ******************/ - /**** md5 signature: d73c9c4058c0955fc8cd59888660f750 ****/ + /****** BRepBlend_SurfRstEvolRad::Set ******/ + /****** md5 signature: d73c9c4058c0955fc8cd59888660f750 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -7426,8 +7426,8 @@ No available documentation. ") Set; void Set(const Standard_Integer Choix); - /****************** Set ******************/ - /**** md5 signature: 94cfe331c662a2ba190837b24fee3b95 ****/ + /****** BRepBlend_SurfRstEvolRad::Set ******/ + /****** md5 signature: 94cfe331c662a2ba190837b24fee3b95 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -7444,8 +7444,8 @@ Sets the type of section generation for the approximations. ") Set; void Set(const BlendFunc_SectionShape TypeSection); - /****************** Tangent2dOnRst ******************/ - /**** md5 signature: a67df95e06afdcf2e410ba7d891bdc53 ****/ + /****** BRepBlend_SurfRstEvolRad::Tangent2dOnRst ******/ + /****** md5 signature: a67df95e06afdcf2e410ba7d891bdc53 ******/ %feature("compactdefaultargs") Tangent2dOnRst; %feature("autodoc", "Return ------- @@ -7457,8 +7457,8 @@ No available documentation. ") Tangent2dOnRst; const gp_Vec2d Tangent2dOnRst(); - /****************** Tangent2dOnS ******************/ - /**** md5 signature: e102a4d332cc3b92c9252bebc7ca2a2f ****/ + /****** BRepBlend_SurfRstEvolRad::Tangent2dOnS ******/ + /****** md5 signature: e102a4d332cc3b92c9252bebc7ca2a2f ******/ %feature("compactdefaultargs") Tangent2dOnS; %feature("autodoc", "Return ------- @@ -7470,8 +7470,8 @@ No available documentation. ") Tangent2dOnS; const gp_Vec2d Tangent2dOnS(); - /****************** TangentOnRst ******************/ - /**** md5 signature: ee94795e8a03889a76a13b1b2ac6b614 ****/ + /****** BRepBlend_SurfRstEvolRad::TangentOnRst ******/ + /****** md5 signature: ee94795e8a03889a76a13b1b2ac6b614 ******/ %feature("compactdefaultargs") TangentOnRst; %feature("autodoc", "Return ------- @@ -7483,8 +7483,8 @@ No available documentation. ") TangentOnRst; const gp_Vec TangentOnRst(); - /****************** TangentOnS ******************/ - /**** md5 signature: 48a27063e2cf1be2b2c56ad8f774bd84 ****/ + /****** BRepBlend_SurfRstEvolRad::TangentOnS ******/ + /****** md5 signature: 48a27063e2cf1be2b2c56ad8f774bd84 ******/ %feature("compactdefaultargs") TangentOnS; %feature("autodoc", "Return ------- @@ -7496,8 +7496,8 @@ No available documentation. ") TangentOnS; const gp_Vec TangentOnS(); - /****************** Value ******************/ - /**** md5 signature: 1b689850305d8b13f289849027f0887b ****/ + /****** BRepBlend_SurfRstEvolRad::Value ******/ + /****** md5 signature: 1b689850305d8b13f289849027f0887b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -7515,8 +7515,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: cb66193525cc0a7235a2cde2a228308b ****/ + /****** BRepBlend_SurfRstEvolRad::Values ******/ + /****** md5 signature: cb66193525cc0a7235a2cde2a228308b ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -7549,8 +7549,8 @@ Returns the values of the functions and the derivatives for the variable *************************************/ class BRepBlend_SurfRstLineBuilder { public: - /****************** BRepBlend_SurfRstLineBuilder ******************/ - /**** md5 signature: d6a0ad1ce9ef95abcda88a808971a42f ****/ + /****** BRepBlend_SurfRstLineBuilder::BRepBlend_SurfRstLineBuilder ******/ + /****** md5 signature: d6a0ad1ce9ef95abcda88a808971a42f ******/ %feature("compactdefaultargs") BRepBlend_SurfRstLineBuilder; %feature("autodoc", " Parameters @@ -7571,8 +7571,8 @@ No available documentation. ") BRepBlend_SurfRstLineBuilder; BRepBlend_SurfRstLineBuilder(const opencascade::handle & Surf1, const opencascade::handle & Domain1, const opencascade::handle & Surf2, const opencascade::handle & Rst, const opencascade::handle & Domain2); - /****************** ArcToRecadre ******************/ - /**** md5 signature: f9d5cffa9a03b0a3c58f32741f4a8c9a ****/ + /****** BRepBlend_SurfRstLineBuilder::ArcToRecadre ******/ + /****** md5 signature: f9d5cffa9a03b0a3c58f32741f4a8c9a ******/ %feature("compactdefaultargs") ArcToRecadre; %feature("autodoc", " Parameters @@ -7592,8 +7592,8 @@ No available documentation. ") ArcToRecadre; Standard_Integer ArcToRecadre(const math_Vector & Sol, const Standard_Integer PrevIndex, gp_Pnt2d & pt2d, gp_Pnt2d & lastpt2d, Standard_Real &OutValue); - /****************** Complete ******************/ - /**** md5 signature: 8afbad6ca438fb5bf221347cf65278f9 ****/ + /****** BRepBlend_SurfRstLineBuilder::Complete ******/ + /****** md5 signature: 8afbad6ca438fb5bf221347cf65278f9 ******/ %feature("compactdefaultargs") Complete; %feature("autodoc", " Parameters @@ -7614,8 +7614,8 @@ No available documentation. ") Complete; Standard_Boolean Complete(Blend_SurfRstFunction & Func, Blend_FuncInv & Finv, Blend_SurfPointFuncInv & FinvP, Blend_SurfCurvFuncInv & FinvC, const Standard_Real Pmin); - /****************** DecrochEnd ******************/ - /**** md5 signature: 9670fa97a635898b96c8e6af24b5f104 ****/ + /****** BRepBlend_SurfRstLineBuilder::DecrochEnd ******/ + /****** md5 signature: 9670fa97a635898b96c8e6af24b5f104 ******/ %feature("compactdefaultargs") DecrochEnd; %feature("autodoc", "Return ------- @@ -7627,8 +7627,8 @@ No available documentation. ") DecrochEnd; Standard_Boolean DecrochEnd(); - /****************** DecrochStart ******************/ - /**** md5 signature: 223f9062baf694444e41dd2120766443 ****/ + /****** BRepBlend_SurfRstLineBuilder::DecrochStart ******/ + /****** md5 signature: 223f9062baf694444e41dd2120766443 ******/ %feature("compactdefaultargs") DecrochStart; %feature("autodoc", "Return ------- @@ -7640,8 +7640,8 @@ No available documentation. ") DecrochStart; Standard_Boolean DecrochStart(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepBlend_SurfRstLineBuilder::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -7653,8 +7653,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** Line ******************/ - /**** md5 signature: 9bbdb2164431d955d7a3a08a37fd239f ****/ + /****** BRepBlend_SurfRstLineBuilder::Line ******/ + /****** md5 signature: 9bbdb2164431d955d7a3a08a37fd239f ******/ %feature("compactdefaultargs") Line; %feature("autodoc", "Return ------- @@ -7666,8 +7666,8 @@ No available documentation. ") Line; const opencascade::handle & Line(); - /****************** Perform ******************/ - /**** md5 signature: 86cf3650fa597d7655c244c1866126f2 ****/ + /****** BRepBlend_SurfRstLineBuilder::Perform ******/ + /****** md5 signature: 86cf3650fa597d7655c244c1866126f2 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -7696,8 +7696,8 @@ No available documentation. ") Perform; void Perform(Blend_SurfRstFunction & Func, Blend_FuncInv & Finv, Blend_SurfPointFuncInv & FinvP, Blend_SurfCurvFuncInv & FinvC, const Standard_Real Pdep, const Standard_Real Pmax, const Standard_Real MaxStep, const Standard_Real Tol3d, const Standard_Real Tol2d, const Standard_Real TolGuide, const math_Vector & Soldep, const Standard_Real Fleche, const Standard_Boolean Appro = Standard_False); - /****************** PerformFirstSection ******************/ - /**** md5 signature: 429fbdc03f84a4a14fbebef94ad27ee5 ****/ + /****** BRepBlend_SurfRstLineBuilder::PerformFirstSection ******/ + /****** md5 signature: 429fbdc03f84a4a14fbebef94ad27ee5 ******/ %feature("compactdefaultargs") PerformFirstSection; %feature("autodoc", " Parameters @@ -7741,8 +7741,8 @@ No available documentation. **************************/ class BRepBlend_Walking { public: - /****************** BRepBlend_Walking ******************/ - /**** md5 signature: 3e60e6b4956db8469ccd4414f4eddcf1 ****/ + /****** BRepBlend_Walking::BRepBlend_Walking ******/ + /****** md5 signature: 3e60e6b4956db8469ccd4414f4eddcf1 ******/ %feature("compactdefaultargs") BRepBlend_Walking; %feature("autodoc", " Parameters @@ -7763,8 +7763,8 @@ No available documentation. ") BRepBlend_Walking; BRepBlend_Walking(const opencascade::handle & Surf1, const opencascade::handle & Surf2, const opencascade::handle & Domain1, const opencascade::handle & Domain2, const opencascade::handle & HGuide); - /****************** AddSingularPoint ******************/ - /**** md5 signature: 0ea0295b6724aa8af8ca3b784b4bc60a ****/ + /****** BRepBlend_Walking::AddSingularPoint ******/ + /****** md5 signature: 0ea0295b6724aa8af8ca3b784b4bc60a ******/ %feature("compactdefaultargs") AddSingularPoint; %feature("autodoc", " Parameters @@ -7781,8 +7781,8 @@ To define singular points computed before walking. ") AddSingularPoint; void AddSingularPoint(const Blend_Point & P); - /****************** Check ******************/ - /**** md5 signature: 7d8efb01ff65c2d30fe479ee5510d837 ****/ + /****** BRepBlend_Walking::Check ******/ + /****** md5 signature: 7d8efb01ff65c2d30fe479ee5510d837 ******/ %feature("compactdefaultargs") Check; %feature("autodoc", " Parameters @@ -7799,8 +7799,8 @@ No available documentation. ") Check; void Check(const Standard_Boolean C); - /****************** Check2d ******************/ - /**** md5 signature: 71403ff4a3ccda5a85656094466d7bab ****/ + /****** BRepBlend_Walking::Check2d ******/ + /****** md5 signature: 71403ff4a3ccda5a85656094466d7bab ******/ %feature("compactdefaultargs") Check2d; %feature("autodoc", " Parameters @@ -7817,8 +7817,8 @@ No available documentation. ") Check2d; void Check2d(const Standard_Boolean C); - /****************** ClassificationOnS1 ******************/ - /**** md5 signature: 2b2955a3ba803ab46041189579530527 ****/ + /****** BRepBlend_Walking::ClassificationOnS1 ******/ + /****** md5 signature: 2b2955a3ba803ab46041189579530527 ******/ %feature("compactdefaultargs") ClassificationOnS1; %feature("autodoc", " Parameters @@ -7835,8 +7835,8 @@ No available documentation. ") ClassificationOnS1; void ClassificationOnS1(const Standard_Boolean C); - /****************** ClassificationOnS2 ******************/ - /**** md5 signature: bc20933ea1d896b847c2a86545020181 ****/ + /****** BRepBlend_Walking::ClassificationOnS2 ******/ + /****** md5 signature: bc20933ea1d896b847c2a86545020181 ******/ %feature("compactdefaultargs") ClassificationOnS2; %feature("autodoc", " Parameters @@ -7853,8 +7853,8 @@ No available documentation. ") ClassificationOnS2; void ClassificationOnS2(const Standard_Boolean C); - /****************** Complete ******************/ - /**** md5 signature: 5885fcb1eae17266768e978b25dda475 ****/ + /****** BRepBlend_Walking::Complete ******/ + /****** md5 signature: 5885fcb1eae17266768e978b25dda475 ******/ %feature("compactdefaultargs") Complete; %feature("autodoc", " Parameters @@ -7873,8 +7873,8 @@ No available documentation. ") Complete; Standard_Boolean Complete(Blend_Function & F, Blend_FuncInv & FInv, const Standard_Real Pmin); - /****************** Continu ******************/ - /**** md5 signature: e1fb178a0cc6b5d457359b43b1a7c823 ****/ + /****** BRepBlend_Walking::Continu ******/ + /****** md5 signature: e1fb178a0cc6b5d457359b43b1a7c823 ******/ %feature("compactdefaultargs") Continu; %feature("autodoc", " Parameters @@ -7893,8 +7893,8 @@ No available documentation. ") Continu; Standard_Boolean Continu(Blend_Function & F, Blend_FuncInv & FInv, const Standard_Real P); - /****************** Continu ******************/ - /**** md5 signature: 02a9e3404b651f5bcee39d40728c4c7b ****/ + /****** BRepBlend_Walking::Continu ******/ + /****** md5 signature: 02a9e3404b651f5bcee39d40728c4c7b ******/ %feature("compactdefaultargs") Continu; %feature("autodoc", " Parameters @@ -7914,8 +7914,8 @@ No available documentation. ") Continu; Standard_Boolean Continu(Blend_Function & F, Blend_FuncInv & FInv, const Standard_Real P, const Standard_Boolean OnS1); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepBlend_Walking::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -7927,8 +7927,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** Line ******************/ - /**** md5 signature: 9bbdb2164431d955d7a3a08a37fd239f ****/ + /****** BRepBlend_Walking::Line ******/ + /****** md5 signature: 9bbdb2164431d955d7a3a08a37fd239f ******/ %feature("compactdefaultargs") Line; %feature("autodoc", "Return ------- @@ -7940,8 +7940,8 @@ No available documentation. ") Line; const opencascade::handle & Line(); - /****************** Perform ******************/ - /**** md5 signature: 6d94e3dcc7c71857d2c24ced3358703f ****/ + /****** BRepBlend_Walking::Perform ******/ + /****** md5 signature: 6d94e3dcc7c71857d2c24ced3358703f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -7967,8 +7967,8 @@ No available documentation. ") Perform; void Perform(Blend_Function & F, Blend_FuncInv & FInv, const Standard_Real Pdep, const Standard_Real Pmax, const Standard_Real MaxStep, const Standard_Real Tol3d, const Standard_Real TolGuide, const math_Vector & Soldep, const Standard_Real Fleche, const Standard_Boolean Appro = Standard_False); - /****************** PerformFirstSection ******************/ - /**** md5 signature: 92db8d0914da0712dd54b302697b3aa3 ****/ + /****** BRepBlend_Walking::PerformFirstSection ******/ + /****** md5 signature: 92db8d0914da0712dd54b302697b3aa3 ******/ %feature("compactdefaultargs") PerformFirstSection; %feature("autodoc", " Parameters @@ -7991,8 +7991,8 @@ No available documentation. ") PerformFirstSection; Standard_Boolean PerformFirstSection(Blend_Function & F, const Standard_Real Pdep, math_Vector & ParDep, const Standard_Real Tol3d, const Standard_Real TolGuide, TopAbs_State & Pos1, TopAbs_State & Pos2); - /****************** PerformFirstSection ******************/ - /**** md5 signature: 7464aaa5cedcb060541546a3a1ff5540 ****/ + /****** BRepBlend_Walking::PerformFirstSection ******/ + /****** md5 signature: 7464aaa5cedcb060541546a3a1ff5540 ******/ %feature("compactdefaultargs") PerformFirstSection; %feature("autodoc", " Parameters @@ -8018,8 +8018,8 @@ No available documentation. ") PerformFirstSection; Standard_Boolean PerformFirstSection(Blend_Function & F, Blend_FuncInv & FInv, const Standard_Real Pdep, const Standard_Real Pmax, const math_Vector & ParDep, const Standard_Real Tol3d, const Standard_Real TolGuide, const Standard_Boolean RecOnS1, const Standard_Boolean RecOnS2, Standard_Real &OutValue, math_Vector & ParSol); - /****************** SetDomainsToRecadre ******************/ - /**** md5 signature: 10664ebffbd6ed784502d7d4acfa5a93 ****/ + /****** BRepBlend_Walking::SetDomainsToRecadre ******/ + /****** md5 signature: 10664ebffbd6ed784502d7d4acfa5a93 ******/ %feature("compactdefaultargs") SetDomainsToRecadre; %feature("autodoc", " Parameters @@ -8037,8 +8037,8 @@ To define different domains for control and clipping. ") SetDomainsToRecadre; void SetDomainsToRecadre(const opencascade::handle & RecDomain1, const opencascade::handle & RecDomain2); - /****************** TwistOnS1 ******************/ - /**** md5 signature: 9e7cba134041c48814f8e911bc7ceb7d ****/ + /****** BRepBlend_Walking::TwistOnS1 ******/ + /****** md5 signature: 9e7cba134041c48814f8e911bc7ceb7d ******/ %feature("compactdefaultargs") TwistOnS1; %feature("autodoc", "Return ------- @@ -8050,8 +8050,8 @@ No available documentation. ") TwistOnS1; Standard_Boolean TwistOnS1(); - /****************** TwistOnS2 ******************/ - /**** md5 signature: d09d14bd26a5c6922f795ecb44cf2f66 ****/ + /****** BRepBlend_Walking::TwistOnS2 ******/ + /****** md5 signature: d09d14bd26a5c6922f795ecb44cf2f66 ******/ %feature("compactdefaultargs") TwistOnS2; %feature("autodoc", "Return ------- @@ -8077,8 +8077,8 @@ No available documentation. **************************/ class BRepBlend_AppFunc : public BRepBlend_AppFuncRoot { public: - /****************** BRepBlend_AppFunc ******************/ - /**** md5 signature: e8bf5d422d7c3522897eff28c0d69e41 ****/ + /****** BRepBlend_AppFunc::BRepBlend_AppFunc ******/ + /****** md5 signature: e8bf5d422d7c3522897eff28c0d69e41 ******/ %feature("compactdefaultargs") BRepBlend_AppFunc; %feature("autodoc", " Parameters @@ -8098,8 +8098,8 @@ No available documentation. ") BRepBlend_AppFunc; BRepBlend_AppFunc(opencascade::handle & Line, Blend_Function & Func, const Standard_Real Tol3d, const Standard_Real Tol2d); - /****************** Point ******************/ - /**** md5 signature: 1f64768686e0fd1268e07e05fcaa4c86 ****/ + /****** BRepBlend_AppFunc::Point ******/ + /****** md5 signature: 1f64768686e0fd1268e07e05fcaa4c86 ******/ %feature("compactdefaultargs") Point; %feature("autodoc", " Parameters @@ -8119,8 +8119,8 @@ No available documentation. ") Point; void Point(const Blend_AppFunction & Func, const Standard_Real Param, const math_Vector & Sol, Blend_Point & Pnt); - /****************** Vec ******************/ - /**** md5 signature: f98635405dfb2bd7c7d7c0586657d180 ****/ + /****** BRepBlend_AppFunc::Vec ******/ + /****** md5 signature: f98635405dfb2bd7c7d7c0586657d180 ******/ %feature("compactdefaultargs") Vec; %feature("autodoc", " Parameters @@ -8154,8 +8154,8 @@ No available documentation. *****************************/ class BRepBlend_AppFuncRst : public BRepBlend_AppFuncRoot { public: - /****************** BRepBlend_AppFuncRst ******************/ - /**** md5 signature: 3afb1cfb110bf596041a7a577f7e1ef2 ****/ + /****** BRepBlend_AppFuncRst::BRepBlend_AppFuncRst ******/ + /****** md5 signature: 3afb1cfb110bf596041a7a577f7e1ef2 ******/ %feature("compactdefaultargs") BRepBlend_AppFuncRst; %feature("autodoc", " Parameters @@ -8175,8 +8175,8 @@ No available documentation. ") BRepBlend_AppFuncRst; BRepBlend_AppFuncRst(opencascade::handle & Line, Blend_SurfRstFunction & Func, const Standard_Real Tol3d, const Standard_Real Tol2d); - /****************** Point ******************/ - /**** md5 signature: 1f64768686e0fd1268e07e05fcaa4c86 ****/ + /****** BRepBlend_AppFuncRst::Point ******/ + /****** md5 signature: 1f64768686e0fd1268e07e05fcaa4c86 ******/ %feature("compactdefaultargs") Point; %feature("autodoc", " Parameters @@ -8196,8 +8196,8 @@ No available documentation. ") Point; void Point(const Blend_AppFunction & Func, const Standard_Real Param, const math_Vector & Sol, Blend_Point & Pnt); - /****************** Vec ******************/ - /**** md5 signature: f98635405dfb2bd7c7d7c0586657d180 ****/ + /****** BRepBlend_AppFuncRst::Vec ******/ + /****** md5 signature: f98635405dfb2bd7c7d7c0586657d180 ******/ %feature("compactdefaultargs") Vec; %feature("autodoc", " Parameters @@ -8231,8 +8231,8 @@ No available documentation. ********************************/ class BRepBlend_AppFuncRstRst : public BRepBlend_AppFuncRoot { public: - /****************** BRepBlend_AppFuncRstRst ******************/ - /**** md5 signature: f07240c831038948a4079ef9673c5be0 ****/ + /****** BRepBlend_AppFuncRstRst::BRepBlend_AppFuncRstRst ******/ + /****** md5 signature: f07240c831038948a4079ef9673c5be0 ******/ %feature("compactdefaultargs") BRepBlend_AppFuncRstRst; %feature("autodoc", " Parameters @@ -8252,8 +8252,8 @@ No available documentation. ") BRepBlend_AppFuncRstRst; BRepBlend_AppFuncRstRst(opencascade::handle & Line, Blend_RstRstFunction & Func, const Standard_Real Tol3d, const Standard_Real Tol2d); - /****************** Point ******************/ - /**** md5 signature: 1f64768686e0fd1268e07e05fcaa4c86 ****/ + /****** BRepBlend_AppFuncRstRst::Point ******/ + /****** md5 signature: 1f64768686e0fd1268e07e05fcaa4c86 ******/ %feature("compactdefaultargs") Point; %feature("autodoc", " Parameters @@ -8273,8 +8273,8 @@ No available documentation. ") Point; void Point(const Blend_AppFunction & Func, const Standard_Real Param, const math_Vector & Sol, Blend_Point & Pnt); - /****************** Vec ******************/ - /**** md5 signature: f98635405dfb2bd7c7d7c0586657d180 ****/ + /****** BRepBlend_AppFuncRstRst::Vec ******/ + /****** md5 signature: f98635405dfb2bd7c7d7c0586657d180 ******/ %feature("compactdefaultargs") Vec; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BRepBndLib.i b/src/SWIG_files/wrapper/BRepBndLib.i index 158702726..8f6eef451 100644 --- a/src/SWIG_files/wrapper/BRepBndLib.i +++ b/src/SWIG_files/wrapper/BRepBndLib.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPBNDLIBDOCSTRING "BRepBndLib module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepbndlib.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepbndlib.html" %enddef %module (package="OCC.Core", docstring=BREPBNDLIBDOCSTRING) BRepBndLib @@ -86,8 +86,8 @@ from OCC.Core.Exception import * %rename(brepbndlib) BRepBndLib; class BRepBndLib { public: - /****************** Add ******************/ - /**** md5 signature: 9c3545c9b1c2df3d52fed48b98ad0a1a ****/ + /****** BRepBndLib::Add ******/ + /****** md5 signature: 9c3545c9b1c2df3d52fed48b98ad0a1a ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -106,8 +106,8 @@ Adds the shape s to the bounding box b. more precisely are successively added to ") Add; static void Add(const TopoDS_Shape & S, Bnd_Box & B, const Standard_Boolean useTriangulation = Standard_True); - /****************** AddClose ******************/ - /**** md5 signature: 5b4c3dd1c546b82ab92a38e981573fb5 ****/ + /****** BRepBndLib::AddClose ******/ + /****** md5 signature: 5b4c3dd1c546b82ab92a38e981573fb5 ******/ %feature("compactdefaultargs") AddClose; %feature("autodoc", " Parameters @@ -125,8 +125,8 @@ Adds the shape s to the bounding box b. this is a quick algorithm but only works ") AddClose; static void AddClose(const TopoDS_Shape & S, Bnd_Box & B); - /****************** AddOBB ******************/ - /**** md5 signature: 4475957a182d53ac4344f17f5720d203 ****/ + /****** BRepBndLib::AddOBB ******/ + /****** md5 signature: 4475957a182d53ac4344f17f5720d203 ******/ %feature("compactdefaultargs") AddOBB; %feature("autodoc", " Parameters @@ -147,8 +147,8 @@ Computes the oriented bounding box for the shape . two independent methods ") AddOBB; static void AddOBB(const TopoDS_Shape & theS, Bnd_OBB & theOBB, const Standard_Boolean theIsTriangulationUsed = Standard_True, const Standard_Boolean theIsOptimal = Standard_False, const Standard_Boolean theIsShapeToleranceUsed = Standard_True); - /****************** AddOptimal ******************/ - /**** md5 signature: bd6c1029fd07d68da48862cc70fd6a39 ****/ + /****** BRepBndLib::AddOptimal ******/ + /****** md5 signature: bd6c1029fd07d68da48862cc70fd6a39 ******/ %feature("compactdefaultargs") AddOptimal; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BRepBuilderAPI.i b/src/SWIG_files/wrapper/BRepBuilderAPI.i index 50e4fd89d..06e3ad51a 100644 --- a/src/SWIG_files/wrapper/BRepBuilderAPI.i +++ b/src/SWIG_files/wrapper/BRepBuilderAPI.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPBUILDERAPIDOCSTRING "BRepBuilderAPI module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepbuilderapi.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepbuilderapi.html" %enddef %module (package="OCC.Core", docstring=BREPBUILDERAPIDOCSTRING) BRepBuilderAPI @@ -241,8 +241,8 @@ typedef NCollection_Vector VectorOfPoint; %rename(brepbuilderapi) BRepBuilderAPI; class BRepBuilderAPI { public: - /****************** Plane ******************/ - /**** md5 signature: 215779db6a724a03f9f8ce477370cef4 ****/ + /****** BRepBuilderAPI::Plane ******/ + /****** md5 signature: 215779db6a724a03f9f8ce477370cef4 ******/ %feature("compactdefaultargs") Plane; %feature("autodoc", " Parameters @@ -259,8 +259,8 @@ Sets the current plane. ") Plane; static void Plane(const opencascade::handle & P); - /****************** Plane ******************/ - /**** md5 signature: 6d27cd1f706ac4d5f7ea5e003d1302b0 ****/ + /****** BRepBuilderAPI::Plane ******/ + /****** md5 signature: 6d27cd1f706ac4d5f7ea5e003d1302b0 ******/ %feature("compactdefaultargs") Plane; %feature("autodoc", "Return ------- @@ -272,8 +272,8 @@ Returns the current plane. ") Plane; static const opencascade::handle & Plane(); - /****************** Precision ******************/ - /**** md5 signature: ced9db4ac4e8a407df5972bac5488688 ****/ + /****** BRepBuilderAPI::Precision ******/ + /****** md5 signature: ced9db4ac4e8a407df5972bac5488688 ******/ %feature("compactdefaultargs") Precision; %feature("autodoc", " Parameters @@ -290,8 +290,8 @@ Sets the default precision. the current precision is returned. ") Precision; static void Precision(const Standard_Real P); - /****************** Precision ******************/ - /**** md5 signature: 5a0c763be80263f1e28f9182713f12dc ****/ + /****** BRepBuilderAPI::Precision ******/ + /****** md5 signature: 5a0c763be80263f1e28f9182713f12dc ******/ %feature("compactdefaultargs") Precision; %feature("autodoc", "Return ------- @@ -317,8 +317,8 @@ Returns the default precision. *******************************/ class BRepBuilderAPI_Collect { public: - /****************** BRepBuilderAPI_Collect ******************/ - /**** md5 signature: 389c61cabe5e3b0cdaed5ff1824ab60c ****/ + /****** BRepBuilderAPI_Collect::BRepBuilderAPI_Collect ******/ + /****** md5 signature: 389c61cabe5e3b0cdaed5ff1824ab60c ******/ %feature("compactdefaultargs") BRepBuilderAPI_Collect; %feature("autodoc", "Return ------- @@ -330,8 +330,8 @@ No available documentation. ") BRepBuilderAPI_Collect; BRepBuilderAPI_Collect(); - /****************** Add ******************/ - /**** md5 signature: a5c5cb395419acc4c81c2fc73ccd4b50 ****/ + /****** BRepBuilderAPI_Collect::Add ******/ + /****** md5 signature: a5c5cb395419acc4c81c2fc73ccd4b50 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -349,8 +349,8 @@ No available documentation. ") Add; void Add(const TopoDS_Shape & SI, BRepBuilderAPI_MakeShape & MKS); - /****************** AddGenerated ******************/ - /**** md5 signature: 24d2f071681238ae41ddf97ad14ec2c3 ****/ + /****** BRepBuilderAPI_Collect::AddGenerated ******/ + /****** md5 signature: 24d2f071681238ae41ddf97ad14ec2c3 ******/ %feature("compactdefaultargs") AddGenerated; %feature("autodoc", " Parameters @@ -368,8 +368,8 @@ No available documentation. ") AddGenerated; void AddGenerated(const TopoDS_Shape & S, const TopoDS_Shape & Gen); - /****************** AddModif ******************/ - /**** md5 signature: d42b5cf3b841c945de9d3d65afeede81 ****/ + /****** BRepBuilderAPI_Collect::AddModif ******/ + /****** md5 signature: d42b5cf3b841c945de9d3d65afeede81 ******/ %feature("compactdefaultargs") AddModif; %feature("autodoc", " Parameters @@ -387,8 +387,8 @@ No available documentation. ") AddModif; void AddModif(const TopoDS_Shape & S, const TopoDS_Shape & Mod); - /****************** Filter ******************/ - /**** md5 signature: 0a1acafd79b78748618f690fbfb61533 ****/ + /****** BRepBuilderAPI_Collect::Filter ******/ + /****** md5 signature: 0a1acafd79b78748618f690fbfb61533 ******/ %feature("compactdefaultargs") Filter; %feature("autodoc", " Parameters @@ -405,8 +405,8 @@ No available documentation. ") Filter; void Filter(const TopoDS_Shape & SF); - /****************** Generated ******************/ - /**** md5 signature: 176507b5ffd0100ab7a88bdc3ba1ff71 ****/ + /****** BRepBuilderAPI_Collect::Generated ******/ + /****** md5 signature: 176507b5ffd0100ab7a88bdc3ba1ff71 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", "Return ------- @@ -418,8 +418,8 @@ No available documentation. ") Generated; const TopTools_DataMapOfShapeListOfShape & Generated(); - /****************** Modification ******************/ - /**** md5 signature: 8146072a56cfb726ec8891f6d418e953 ****/ + /****** BRepBuilderAPI_Collect::Modification ******/ + /****** md5 signature: 8146072a56cfb726ec8891f6d418e953 ******/ %feature("compactdefaultargs") Modification; %feature("autodoc", "Return ------- @@ -446,8 +446,8 @@ No available documentation. %nodefaultctor BRepBuilderAPI_Command; class BRepBuilderAPI_Command { public: - /****************** Check ******************/ - /**** md5 signature: f34c3545e20ecd4b70f0028e921e213b ****/ + /****** BRepBuilderAPI_Command::Check ******/ + /****** md5 signature: f34c3545e20ecd4b70f0028e921e213b ******/ %feature("compactdefaultargs") Check; %feature("autodoc", "Return ------- @@ -459,8 +459,8 @@ Raises notdone if done is false. ") Check; void Check(); - /****************** IsDone ******************/ - /**** md5 signature: 1dfe5875b8bc7f7b11380fb4ab8a9eb0 ****/ + /****** BRepBuilderAPI_Command::IsDone ******/ + /****** md5 signature: 1dfe5875b8bc7f7b11380fb4ab8a9eb0 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -531,8 +531,8 @@ FS_Exception = FS_Statuses.FS_Exception }; /* end python proxy for enums */ - /****************** BRepBuilderAPI_FastSewing ******************/ - /**** md5 signature: 5cdf281365d4a008fe89ed2644d07eef ****/ + /****** BRepBuilderAPI_FastSewing::BRepBuilderAPI_FastSewing ******/ + /****** md5 signature: 5cdf281365d4a008fe89ed2644d07eef ******/ %feature("compactdefaultargs") BRepBuilderAPI_FastSewing; %feature("autodoc", " Parameters @@ -549,8 +549,8 @@ Creates an object with tolerance of connexity. ") BRepBuilderAPI_FastSewing; BRepBuilderAPI_FastSewing(const Standard_Real theTolerance = 1.0e-06); - /****************** Add ******************/ - /**** md5 signature: 68dfa588b1680a2069907b2bf05e1c65 ****/ + /****** BRepBuilderAPI_FastSewing::Add ******/ + /****** md5 signature: 68dfa588b1680a2069907b2bf05e1c65 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -567,8 +567,8 @@ Adds faces of a shape. ") Add; Standard_Boolean Add(const TopoDS_Shape & theShape); - /****************** Add ******************/ - /**** md5 signature: 5c877fb8c71029cef3b4fa5692a20197 ****/ + /****** BRepBuilderAPI_FastSewing::Add ******/ + /****** md5 signature: 5c877fb8c71029cef3b4fa5692a20197 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -585,8 +585,8 @@ Adds a surface. ") Add; Standard_Boolean Add(const opencascade::handle & theSurface); - /****************** GetResult ******************/ - /**** md5 signature: 9bb8729ba64a056c1d3bbe9695c34e70 ****/ + /****** BRepBuilderAPI_FastSewing::GetResult ******/ + /****** md5 signature: 9bb8729ba64a056c1d3bbe9695c34e70 ******/ %feature("compactdefaultargs") GetResult; %feature("autodoc", "Return ------- @@ -598,8 +598,8 @@ Returns resulted shape. ") GetResult; const TopoDS_Shape GetResult(); - /****************** GetTolerance ******************/ - /**** md5 signature: 08094ae040a166d1b252ee02000bca27 ****/ + /****** BRepBuilderAPI_FastSewing::GetTolerance ******/ + /****** md5 signature: 08094ae040a166d1b252ee02000bca27 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", "Return ------- @@ -611,8 +611,8 @@ Returns tolerance. ") GetTolerance; Standard_Real GetTolerance(); - /****************** Perform ******************/ - /**** md5 signature: edb59e2ca9c97ae6c4d9ce2566330337 ****/ + /****** BRepBuilderAPI_FastSewing::Perform ******/ + /****** md5 signature: edb59e2ca9c97ae6c4d9ce2566330337 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", "Return ------- @@ -624,8 +624,8 @@ Compute resulted shape. ") Perform; void Perform(); - /****************** SetTolerance ******************/ - /**** md5 signature: 4181eb50f502c475b9b01c03a6a70db9 ****/ + /****** BRepBuilderAPI_FastSewing::SetTolerance ******/ + /****** md5 signature: 4181eb50f502c475b9b01c03a6a70db9 ******/ %feature("compactdefaultargs") SetTolerance; %feature("autodoc", " Parameters @@ -662,8 +662,8 @@ Sets tolerance. *********************************/ class BRepBuilderAPI_FindPlane { public: - /****************** BRepBuilderAPI_FindPlane ******************/ - /**** md5 signature: ef4ea376286fb1ede698f0b19cc4f429 ****/ + /****** BRepBuilderAPI_FindPlane::BRepBuilderAPI_FindPlane ******/ + /****** md5 signature: ef4ea376286fb1ede698f0b19cc4f429 ******/ %feature("compactdefaultargs") BRepBuilderAPI_FindPlane; %feature("autodoc", "Return ------- @@ -675,8 +675,8 @@ Initializes an empty algorithm. the function init is then used to define the sha ") BRepBuilderAPI_FindPlane; BRepBuilderAPI_FindPlane(); - /****************** BRepBuilderAPI_FindPlane ******************/ - /**** md5 signature: 763aa4ae1a7235c1609845cf21bc92e2 ****/ + /****** BRepBuilderAPI_FindPlane::BRepBuilderAPI_FindPlane ******/ + /****** md5 signature: 763aa4ae1a7235c1609845cf21bc92e2 ******/ %feature("compactdefaultargs") BRepBuilderAPI_FindPlane; %feature("autodoc", " Parameters @@ -694,8 +694,8 @@ Constructs the plane containing the edges of the shape s. a plane is built only ") BRepBuilderAPI_FindPlane; BRepBuilderAPI_FindPlane(const TopoDS_Shape & S, const Standard_Real Tol = -1); - /****************** Found ******************/ - /**** md5 signature: f98a87b5981b48fa74222eaa5aa8feb6 ****/ + /****** BRepBuilderAPI_FindPlane::Found ******/ + /****** md5 signature: f98a87b5981b48fa74222eaa5aa8feb6 ******/ %feature("compactdefaultargs") Found; %feature("autodoc", "Return ------- @@ -707,8 +707,8 @@ Returns true if a plane containing the edges of the shape is found and built. us ") Found; Standard_Boolean Found(); - /****************** Init ******************/ - /**** md5 signature: 4d646163f720cb1bdaa4671839b00b98 ****/ + /****** BRepBuilderAPI_FindPlane::Init ******/ + /****** md5 signature: 4d646163f720cb1bdaa4671839b00b98 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -726,8 +726,8 @@ Constructs the plane containing the edges of the shape s. a plane is built only ") Init; void Init(const TopoDS_Shape & S, const Standard_Real Tol = -1); - /****************** Plane ******************/ - /**** md5 signature: 5c94d426c8cb0ea718d9147a0f1d68f5 ****/ + /****** BRepBuilderAPI_FindPlane::Plane ******/ + /****** md5 signature: 5c94d426c8cb0ea718d9147a0f1d68f5 ******/ %feature("compactdefaultargs") Plane; %feature("autodoc", "Return ------- @@ -753,8 +753,8 @@ Returns the plane containing the edges of the shape. warning use the function fo ******************************/ class BRepBuilderAPI_Sewing : public Standard_Transient { public: - /****************** BRepBuilderAPI_Sewing ******************/ - /**** md5 signature: e18a1d19a8b6425820c30aa95cb1c4b9 ****/ + /****** BRepBuilderAPI_Sewing::BRepBuilderAPI_Sewing ******/ + /****** md5 signature: e18a1d19a8b6425820c30aa95cb1c4b9 ******/ %feature("compactdefaultargs") BRepBuilderAPI_Sewing; %feature("autodoc", " Parameters @@ -775,8 +775,8 @@ Creates an object with tolerance of connexity option for sewing (if false only c ") BRepBuilderAPI_Sewing; BRepBuilderAPI_Sewing(const Standard_Real tolerance = 1.0e-06, const Standard_Boolean option1 = Standard_True, const Standard_Boolean option2 = Standard_True, const Standard_Boolean option3 = Standard_True, const Standard_Boolean option4 = Standard_False); - /****************** Add ******************/ - /**** md5 signature: e2be6f2074943772e403ebcbe671347a ****/ + /****** BRepBuilderAPI_Sewing::Add ******/ + /****** md5 signature: e2be6f2074943772e403ebcbe671347a ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -793,8 +793,8 @@ Defines the shapes to be sewed or controlled. ") Add; void Add(const TopoDS_Shape & shape); - /****************** ContigousEdge ******************/ - /**** md5 signature: 528f0ebefe61a096548f88451970603d ****/ + /****** BRepBuilderAPI_Sewing::ContigousEdge ******/ + /****** md5 signature: 528f0ebefe61a096548f88451970603d ******/ %feature("compactdefaultargs") ContigousEdge; %feature("autodoc", " Parameters @@ -811,8 +811,8 @@ Gives each contiguous edge. ") ContigousEdge; const TopoDS_Edge ContigousEdge(const Standard_Integer index); - /****************** ContigousEdgeCouple ******************/ - /**** md5 signature: 783b24657c04ecf4547ffd8cfddcc368 ****/ + /****** BRepBuilderAPI_Sewing::ContigousEdgeCouple ******/ + /****** md5 signature: 783b24657c04ecf4547ffd8cfddcc368 ******/ %feature("compactdefaultargs") ContigousEdgeCouple; %feature("autodoc", " Parameters @@ -829,8 +829,8 @@ Gives the sections (edge) belonging to a contiguous edge. ") ContigousEdgeCouple; const TopTools_ListOfShape & ContigousEdgeCouple(const Standard_Integer index); - /****************** DegeneratedShape ******************/ - /**** md5 signature: e6eb24cfb41ed6276abbd22e81382ad4 ****/ + /****** BRepBuilderAPI_Sewing::DegeneratedShape ******/ + /****** md5 signature: e6eb24cfb41ed6276abbd22e81382ad4 ******/ %feature("compactdefaultargs") DegeneratedShape; %feature("autodoc", " Parameters @@ -847,8 +847,8 @@ Gives each degenerated shape. ") DegeneratedShape; const TopoDS_Shape DegeneratedShape(const Standard_Integer index); - /****************** DeletedFace ******************/ - /**** md5 signature: e964b07feb42f72561b85423c8033fca ****/ + /****** BRepBuilderAPI_Sewing::DeletedFace ******/ + /****** md5 signature: e964b07feb42f72561b85423c8033fca ******/ %feature("compactdefaultargs") DeletedFace; %feature("autodoc", " Parameters @@ -865,8 +865,8 @@ Gives each deleted face. ") DeletedFace; const TopoDS_Face DeletedFace(const Standard_Integer index); - /****************** Dump ******************/ - /**** md5 signature: 15b4b2e195645aebb43170ff7f15952a ****/ + /****** BRepBuilderAPI_Sewing::Dump ******/ + /****** md5 signature: 15b4b2e195645aebb43170ff7f15952a ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", "Return ------- @@ -878,8 +878,8 @@ Print the information. ") Dump; void Dump(); - /****************** FaceMode ******************/ - /**** md5 signature: 21661531f4beeda56376b9777120d25d ****/ + /****** BRepBuilderAPI_Sewing::FaceMode ******/ + /****** md5 signature: 21661531f4beeda56376b9777120d25d ******/ %feature("compactdefaultargs") FaceMode; %feature("autodoc", "Return ------- @@ -891,8 +891,8 @@ Returns mode for sewing faces by default - true. ") FaceMode; Standard_Boolean FaceMode(); - /****************** FloatingEdgesMode ******************/ - /**** md5 signature: 4a5c8040ae5369a46adc16bfcec4bd53 ****/ + /****** BRepBuilderAPI_Sewing::FloatingEdgesMode ******/ + /****** md5 signature: 4a5c8040ae5369a46adc16bfcec4bd53 ******/ %feature("compactdefaultargs") FloatingEdgesMode; %feature("autodoc", "Return ------- @@ -904,8 +904,8 @@ Returns mode for sewing floating edges by default - false. ") FloatingEdgesMode; Standard_Boolean FloatingEdgesMode(); - /****************** FreeEdge ******************/ - /**** md5 signature: d7877d5632d059ec28a98ec8914a60d4 ****/ + /****** BRepBuilderAPI_Sewing::FreeEdge ******/ + /****** md5 signature: d7877d5632d059ec28a98ec8914a60d4 ******/ %feature("compactdefaultargs") FreeEdge; %feature("autodoc", " Parameters @@ -922,8 +922,8 @@ Gives each free edge. ") FreeEdge; const TopoDS_Edge FreeEdge(const Standard_Integer index); - /****************** GetContext ******************/ - /**** md5 signature: 4fb4f0ef4e8072c0449192799698250c ****/ + /****** BRepBuilderAPI_Sewing::GetContext ******/ + /****** md5 signature: 4fb4f0ef4e8072c0449192799698250c ******/ %feature("compactdefaultargs") GetContext; %feature("autodoc", "Return ------- @@ -935,8 +935,8 @@ Return context. ") GetContext; const opencascade::handle & GetContext(); - /****************** Init ******************/ - /**** md5 signature: 9a7c36413c1eb2ae42b6435c1c7d2e86 ****/ + /****** BRepBuilderAPI_Sewing::Init ******/ + /****** md5 signature: 9a7c36413c1eb2ae42b6435c1c7d2e86 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -957,8 +957,8 @@ Initialize the parameters if necessary. ") Init; void Init(const Standard_Real tolerance = 1.0e-06, const Standard_Boolean option1 = Standard_True, const Standard_Boolean option2 = Standard_True, const Standard_Boolean option3 = Standard_True, const Standard_Boolean option4 = Standard_False); - /****************** IsDegenerated ******************/ - /**** md5 signature: 84979167278e746e62a21a790a7cd87e ****/ + /****** BRepBuilderAPI_Sewing::IsDegenerated ******/ + /****** md5 signature: 84979167278e746e62a21a790a7cd87e ******/ %feature("compactdefaultargs") IsDegenerated; %feature("autodoc", " Parameters @@ -975,8 +975,8 @@ Indicates if a input shape is degenerated. ") IsDegenerated; Standard_Boolean IsDegenerated(const TopoDS_Shape & shape); - /****************** IsModified ******************/ - /**** md5 signature: 1d5d4f025b62ca0ccc6672d39cdf22fc ****/ + /****** BRepBuilderAPI_Sewing::IsModified ******/ + /****** md5 signature: 1d5d4f025b62ca0ccc6672d39cdf22fc ******/ %feature("compactdefaultargs") IsModified; %feature("autodoc", " Parameters @@ -993,8 +993,8 @@ Indicates if a input shape has been modified. ") IsModified; Standard_Boolean IsModified(const TopoDS_Shape & shape); - /****************** IsModifiedSubShape ******************/ - /**** md5 signature: 7a0857a507d3c4158ac7100a028d6a23 ****/ + /****** BRepBuilderAPI_Sewing::IsModifiedSubShape ******/ + /****** md5 signature: 7a0857a507d3c4158ac7100a028d6a23 ******/ %feature("compactdefaultargs") IsModifiedSubShape; %feature("autodoc", " Parameters @@ -1011,8 +1011,8 @@ Indicates if a input subshape has been modified. ") IsModifiedSubShape; Standard_Boolean IsModifiedSubShape(const TopoDS_Shape & shape); - /****************** IsSectionBound ******************/ - /**** md5 signature: cd9153a526df9f57af17b95cfb016aa1 ****/ + /****** BRepBuilderAPI_Sewing::IsSectionBound ******/ + /****** md5 signature: cd9153a526df9f57af17b95cfb016aa1 ******/ %feature("compactdefaultargs") IsSectionBound; %feature("autodoc", " Parameters @@ -1029,8 +1029,8 @@ Indicates if a section is bound (before use sectiontoboundary). ") IsSectionBound; Standard_Boolean IsSectionBound(const TopoDS_Edge & section); - /****************** Load ******************/ - /**** md5 signature: 5e48307a99195c8c9f614df4cf55663d ****/ + /****** BRepBuilderAPI_Sewing::Load ******/ + /****** md5 signature: 5e48307a99195c8c9f614df4cf55663d ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -1047,8 +1047,8 @@ Loades the context shape. ") Load; void Load(const TopoDS_Shape & shape); - /****************** LocalTolerancesMode ******************/ - /**** md5 signature: d909e2ebc0fc932438ad29d4934d9840 ****/ + /****** BRepBuilderAPI_Sewing::LocalTolerancesMode ******/ + /****** md5 signature: d909e2ebc0fc932438ad29d4934d9840 ******/ %feature("compactdefaultargs") LocalTolerancesMode; %feature("autodoc", "Return ------- @@ -1060,8 +1060,8 @@ Returns mode for accounting of local tolerances of edges and vertices during of ") LocalTolerancesMode; Standard_Boolean LocalTolerancesMode(); - /****************** MaxTolerance ******************/ - /**** md5 signature: b0c09a40965fea8fc4d63c52a795d7fd ****/ + /****** BRepBuilderAPI_Sewing::MaxTolerance ******/ + /****** md5 signature: b0c09a40965fea8fc4d63c52a795d7fd ******/ %feature("compactdefaultargs") MaxTolerance; %feature("autodoc", "Return ------- @@ -1073,8 +1073,8 @@ Gives set max tolerance. ") MaxTolerance; Standard_Real MaxTolerance(); - /****************** MinTolerance ******************/ - /**** md5 signature: 2629547ec2afd3a7a2edaa268cbc0366 ****/ + /****** BRepBuilderAPI_Sewing::MinTolerance ******/ + /****** md5 signature: 2629547ec2afd3a7a2edaa268cbc0366 ******/ %feature("compactdefaultargs") MinTolerance; %feature("autodoc", "Return ------- @@ -1086,8 +1086,8 @@ Gives set min tolerance. ") MinTolerance; Standard_Real MinTolerance(); - /****************** Modified ******************/ - /**** md5 signature: 8eae36e55014fa2f45331a4af35cda4c ****/ + /****** BRepBuilderAPI_Sewing::Modified ******/ + /****** md5 signature: 8eae36e55014fa2f45331a4af35cda4c ******/ %feature("compactdefaultargs") Modified; %feature("autodoc", " Parameters @@ -1104,8 +1104,8 @@ Gives a modifieded shape. ") Modified; const TopoDS_Shape Modified(const TopoDS_Shape & shape); - /****************** ModifiedSubShape ******************/ - /**** md5 signature: 73e3082562f6dcafa13952269a08c5fa ****/ + /****** BRepBuilderAPI_Sewing::ModifiedSubShape ******/ + /****** md5 signature: 73e3082562f6dcafa13952269a08c5fa ******/ %feature("compactdefaultargs") ModifiedSubShape; %feature("autodoc", " Parameters @@ -1122,8 +1122,8 @@ Gives a modifieded subshape. ") ModifiedSubShape; TopoDS_Shape ModifiedSubShape(const TopoDS_Shape & shape); - /****************** MultipleEdge ******************/ - /**** md5 signature: 128ede0c8440ddd28a067c7bb024d295 ****/ + /****** BRepBuilderAPI_Sewing::MultipleEdge ******/ + /****** md5 signature: 128ede0c8440ddd28a067c7bb024d295 ******/ %feature("compactdefaultargs") MultipleEdge; %feature("autodoc", " Parameters @@ -1140,8 +1140,8 @@ Gives each multiple edge. ") MultipleEdge; const TopoDS_Edge MultipleEdge(const Standard_Integer index); - /****************** NbContigousEdges ******************/ - /**** md5 signature: c293fac1d421e2d1f7207054b4a45923 ****/ + /****** BRepBuilderAPI_Sewing::NbContigousEdges ******/ + /****** md5 signature: c293fac1d421e2d1f7207054b4a45923 ******/ %feature("compactdefaultargs") NbContigousEdges; %feature("autodoc", "Return ------- @@ -1153,8 +1153,8 @@ Gives the number of contiguous edges (edge shared by two faces). ") NbContigousEdges; Standard_Integer NbContigousEdges(); - /****************** NbDegeneratedShapes ******************/ - /**** md5 signature: 002576d80bfb4575f6cdfeeff5b81a1e ****/ + /****** BRepBuilderAPI_Sewing::NbDegeneratedShapes ******/ + /****** md5 signature: 002576d80bfb4575f6cdfeeff5b81a1e ******/ %feature("compactdefaultargs") NbDegeneratedShapes; %feature("autodoc", "Return ------- @@ -1166,8 +1166,8 @@ Gives the number of degenerated shapes. ") NbDegeneratedShapes; Standard_Integer NbDegeneratedShapes(); - /****************** NbDeletedFaces ******************/ - /**** md5 signature: 4ba093eaaa12ab2808b2529553c686f1 ****/ + /****** BRepBuilderAPI_Sewing::NbDeletedFaces ******/ + /****** md5 signature: 4ba093eaaa12ab2808b2529553c686f1 ******/ %feature("compactdefaultargs") NbDeletedFaces; %feature("autodoc", "Return ------- @@ -1179,8 +1179,8 @@ Gives the number of deleted faces (faces smallest than tolerance). ") NbDeletedFaces; Standard_Integer NbDeletedFaces(); - /****************** NbFreeEdges ******************/ - /**** md5 signature: 601078396c3dc97b2847707250e5a03a ****/ + /****** BRepBuilderAPI_Sewing::NbFreeEdges ******/ + /****** md5 signature: 601078396c3dc97b2847707250e5a03a ******/ %feature("compactdefaultargs") NbFreeEdges; %feature("autodoc", "Return ------- @@ -1192,8 +1192,8 @@ Gives the number of free edges (edge shared by one face). ") NbFreeEdges; Standard_Integer NbFreeEdges(); - /****************** NbMultipleEdges ******************/ - /**** md5 signature: 656b6af0bb5cea1fea2a3c70157e30b5 ****/ + /****** BRepBuilderAPI_Sewing::NbMultipleEdges ******/ + /****** md5 signature: 656b6af0bb5cea1fea2a3c70157e30b5 ******/ %feature("compactdefaultargs") NbMultipleEdges; %feature("autodoc", "Return ------- @@ -1205,8 +1205,8 @@ Gives the number of multiple edges (edge shared by more than two faces). ") NbMultipleEdges; Standard_Integer NbMultipleEdges(); - /****************** NonManifoldMode ******************/ - /**** md5 signature: 34f87de0adb2c358ab80ad641118c76e ****/ + /****** BRepBuilderAPI_Sewing::NonManifoldMode ******/ + /****** md5 signature: 34f87de0adb2c358ab80ad641118c76e ******/ %feature("compactdefaultargs") NonManifoldMode; %feature("autodoc", "Return ------- @@ -1218,8 +1218,8 @@ Gets mode for non-manifold sewing. //! internal functions ---. ") NonManifoldMode; Standard_Boolean NonManifoldMode(); - /****************** Perform ******************/ - /**** md5 signature: d7fed22833997c4a8f7923f6a29bd664 ****/ + /****** BRepBuilderAPI_Sewing::Perform ******/ + /****** md5 signature: d7fed22833997c4a8f7923f6a29bd664 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1236,8 +1236,8 @@ Computing theprogress - progress indicator of algorithm. ") Perform; void Perform(const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** SameParameterMode ******************/ - /**** md5 signature: 7e498208ee59dfaf63264199ca1716c8 ****/ + /****** BRepBuilderAPI_Sewing::SameParameterMode ******/ + /****** md5 signature: 7e498208ee59dfaf63264199ca1716c8 ******/ %feature("compactdefaultargs") SameParameterMode; %feature("autodoc", "Return ------- @@ -1249,8 +1249,8 @@ Gets same parameter mode. ") SameParameterMode; Standard_Boolean SameParameterMode(); - /****************** SectionToBoundary ******************/ - /**** md5 signature: 8753cd22e70a557633e4602d07baeefe ****/ + /****** BRepBuilderAPI_Sewing::SectionToBoundary ******/ + /****** md5 signature: 8753cd22e70a557633e4602d07baeefe ******/ %feature("compactdefaultargs") SectionToBoundary; %feature("autodoc", " Parameters @@ -1267,8 +1267,8 @@ Gives the original edge (free boundary) which becomes the the section. remember ") SectionToBoundary; const TopoDS_Edge SectionToBoundary(const TopoDS_Edge & section); - /****************** SetContext ******************/ - /**** md5 signature: d164363977e75e7eed55b6d2c433f4ef ****/ + /****** BRepBuilderAPI_Sewing::SetContext ******/ + /****** md5 signature: d164363977e75e7eed55b6d2c433f4ef ******/ %feature("compactdefaultargs") SetContext; %feature("autodoc", " Parameters @@ -1285,8 +1285,8 @@ Set context. ") SetContext; void SetContext(const opencascade::handle & theContext); - /****************** SetFaceMode ******************/ - /**** md5 signature: be33d5623b757a136bdeb5a9404588b8 ****/ + /****** BRepBuilderAPI_Sewing::SetFaceMode ******/ + /****** md5 signature: be33d5623b757a136bdeb5a9404588b8 ******/ %feature("compactdefaultargs") SetFaceMode; %feature("autodoc", " Parameters @@ -1303,8 +1303,8 @@ Sets mode for sewing faces by default - true. ") SetFaceMode; void SetFaceMode(const Standard_Boolean theFaceMode); - /****************** SetFloatingEdgesMode ******************/ - /**** md5 signature: 9e535d43ee813c0bb3f60089705740ad ****/ + /****** BRepBuilderAPI_Sewing::SetFloatingEdgesMode ******/ + /****** md5 signature: 9e535d43ee813c0bb3f60089705740ad ******/ %feature("compactdefaultargs") SetFloatingEdgesMode; %feature("autodoc", " Parameters @@ -1321,8 +1321,8 @@ Sets mode for sewing floating edges by default - false. returns mode for cutting ") SetFloatingEdgesMode; void SetFloatingEdgesMode(const Standard_Boolean theFloatingEdgesMode); - /****************** SetLocalTolerancesMode ******************/ - /**** md5 signature: 11968066a6abf7bbfe86e1caa2d4682f ****/ + /****** BRepBuilderAPI_Sewing::SetLocalTolerancesMode ******/ + /****** md5 signature: 11968066a6abf7bbfe86e1caa2d4682f ******/ %feature("compactdefaultargs") SetLocalTolerancesMode; %feature("autodoc", " Parameters @@ -1339,8 +1339,8 @@ Sets mode for accounting of local tolerances of edges and vertices during of mer ") SetLocalTolerancesMode; void SetLocalTolerancesMode(const Standard_Boolean theLocalTolerancesMode); - /****************** SetMaxTolerance ******************/ - /**** md5 signature: 4b5771be6c78dcae85f644f87aad2350 ****/ + /****** BRepBuilderAPI_Sewing::SetMaxTolerance ******/ + /****** md5 signature: 4b5771be6c78dcae85f644f87aad2350 ******/ %feature("compactdefaultargs") SetMaxTolerance; %feature("autodoc", " Parameters @@ -1357,8 +1357,8 @@ Sets max tolerance. ") SetMaxTolerance; void SetMaxTolerance(const Standard_Real theMaxToler); - /****************** SetMinTolerance ******************/ - /**** md5 signature: 7ba51e2f5c5991bb95f9e3c8a5d6f1f3 ****/ + /****** BRepBuilderAPI_Sewing::SetMinTolerance ******/ + /****** md5 signature: 7ba51e2f5c5991bb95f9e3c8a5d6f1f3 ******/ %feature("compactdefaultargs") SetMinTolerance; %feature("autodoc", " Parameters @@ -1375,8 +1375,8 @@ Sets min tolerance. ") SetMinTolerance; void SetMinTolerance(const Standard_Real theMinToler); - /****************** SetNonManifoldMode ******************/ - /**** md5 signature: 5d218b8a6549d6b81b32f7e6532da86f ****/ + /****** BRepBuilderAPI_Sewing::SetNonManifoldMode ******/ + /****** md5 signature: 5d218b8a6549d6b81b32f7e6532da86f ******/ %feature("compactdefaultargs") SetNonManifoldMode; %feature("autodoc", " Parameters @@ -1393,8 +1393,8 @@ Sets mode for non-manifold sewing. ") SetNonManifoldMode; void SetNonManifoldMode(const Standard_Boolean theNonManifoldMode); - /****************** SetSameParameterMode ******************/ - /**** md5 signature: 31ed69081c7788c7c8d7bac985fad0fb ****/ + /****** BRepBuilderAPI_Sewing::SetSameParameterMode ******/ + /****** md5 signature: 31ed69081c7788c7c8d7bac985fad0fb ******/ %feature("compactdefaultargs") SetSameParameterMode; %feature("autodoc", " Parameters @@ -1411,8 +1411,8 @@ Sets same parameter mode. ") SetSameParameterMode; void SetSameParameterMode(const Standard_Boolean SameParameterMode); - /****************** SetTolerance ******************/ - /**** md5 signature: 6adfe96b6feba352d7526961c84ccdab ****/ + /****** BRepBuilderAPI_Sewing::SetTolerance ******/ + /****** md5 signature: 6adfe96b6feba352d7526961c84ccdab ******/ %feature("compactdefaultargs") SetTolerance; %feature("autodoc", " Parameters @@ -1429,8 +1429,8 @@ Sets tolerance. ") SetTolerance; void SetTolerance(const Standard_Real theToler); - /****************** SewedShape ******************/ - /**** md5 signature: 15c4b701ec45daeb64ce5999149305ef ****/ + /****** BRepBuilderAPI_Sewing::SewedShape ******/ + /****** md5 signature: 15c4b701ec45daeb64ce5999149305ef ******/ %feature("compactdefaultargs") SewedShape; %feature("autodoc", "Return ------- @@ -1442,8 +1442,8 @@ Gives the sewed shape a null shape if nothing constructed may be a face, a shell ") SewedShape; const TopoDS_Shape SewedShape(); - /****************** Tolerance ******************/ - /**** md5 signature: 9e5775014410d884d1a1adc1cd47930b ****/ + /****** BRepBuilderAPI_Sewing::Tolerance ******/ + /****** md5 signature: 9e5775014410d884d1a1adc1cd47930b ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", "Return ------- @@ -1455,8 +1455,8 @@ Gives set tolerance. ") Tolerance; Standard_Real Tolerance(); - /****************** WhichFace ******************/ - /**** md5 signature: 3e589a12446d56482439b5fd7cbfa5d8 ****/ + /****** BRepBuilderAPI_Sewing::WhichFace ******/ + /****** md5 signature: 3e589a12446d56482439b5fd7cbfa5d8 ******/ %feature("compactdefaultargs") WhichFace; %feature("autodoc", " Parameters @@ -1491,8 +1491,8 @@ Gives a modified shape. class BRepBuilderAPI_VertexInspector : public NCollection_CellFilter_InspectorXYZ { public: typedef Standard_Integer Target; - /****************** BRepBuilderAPI_VertexInspector ******************/ - /**** md5 signature: 0eeefa290e63d77a3860d0886de050c7 ****/ + /****** BRepBuilderAPI_VertexInspector::BRepBuilderAPI_VertexInspector ******/ + /****** md5 signature: 0eeefa290e63d77a3860d0886de050c7 ******/ %feature("compactdefaultargs") BRepBuilderAPI_VertexInspector; %feature("autodoc", " Parameters @@ -1509,8 +1509,8 @@ Constructor; remembers the tolerance. ") BRepBuilderAPI_VertexInspector; BRepBuilderAPI_VertexInspector(const Standard_Real theTol); - /****************** Add ******************/ - /**** md5 signature: 674df0f2056599deaae173500780a92d ****/ + /****** BRepBuilderAPI_VertexInspector::Add ******/ + /****** md5 signature: 674df0f2056599deaae173500780a92d ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1527,8 +1527,8 @@ Keep the points used for comparison. ") Add; void Add(const gp_XYZ & thePnt); - /****************** ClearResList ******************/ - /**** md5 signature: 437c3c9842327f69417ece821777001d ****/ + /****** BRepBuilderAPI_VertexInspector::ClearResList ******/ + /****** md5 signature: 437c3c9842327f69417ece821777001d ******/ %feature("compactdefaultargs") ClearResList; %feature("autodoc", "Return ------- @@ -1540,8 +1540,8 @@ Clear the list of adjacent points. ") ClearResList; void ClearResList(); - /****************** Inspect ******************/ - /**** md5 signature: 261093865d6e31515b7e7f70c791b792 ****/ + /****** BRepBuilderAPI_VertexInspector::Inspect ******/ + /****** md5 signature: 261093865d6e31515b7e7f70c791b792 ******/ %feature("compactdefaultargs") Inspect; %feature("autodoc", " Parameters @@ -1558,8 +1558,8 @@ Implementation of inspection method. ") Inspect; NCollection_CellFilter_Action Inspect(const Standard_Integer theTarget); - /****************** ResInd ******************/ - /**** md5 signature: 06a54f141487331d8d67cc5507fd93fe ****/ + /****** BRepBuilderAPI_VertexInspector::ResInd ******/ + /****** md5 signature: 06a54f141487331d8d67cc5507fd93fe ******/ %feature("compactdefaultargs") ResInd; %feature("autodoc", "Return ------- @@ -1571,8 +1571,8 @@ Get list of indexes of points adjacent with the current. ") ResInd; const TColStd_ListOfInteger & ResInd(); - /****************** SetCurrent ******************/ - /**** md5 signature: 52c7652c9c3b17a93e1b9f74b55265ec ****/ + /****** BRepBuilderAPI_VertexInspector::SetCurrent ******/ + /****** md5 signature: 52c7652c9c3b17a93e1b9f74b55265ec ******/ %feature("compactdefaultargs") SetCurrent; %feature("autodoc", " Parameters @@ -1603,8 +1603,8 @@ Set current point to search for coincidence. ******************************************/ class BRepBuilderAPI_BndBoxTreeSelector : public BRepBuilderAPI_BndBoxTree::Selector { public: - /****************** BRepBuilderAPI_BndBoxTreeSelector ******************/ - /**** md5 signature: 701377c6f5b5b4ad360057f52164f1cc ****/ + /****** BRepBuilderAPI_BndBoxTreeSelector::BRepBuilderAPI_BndBoxTreeSelector ******/ + /****** md5 signature: 701377c6f5b5b4ad360057f52164f1cc ******/ %feature("compactdefaultargs") BRepBuilderAPI_BndBoxTreeSelector; %feature("autodoc", "Return ------- @@ -1616,8 +1616,8 @@ Constructor; calls the base class constructor. ") BRepBuilderAPI_BndBoxTreeSelector; BRepBuilderAPI_BndBoxTreeSelector(); - /****************** Accept ******************/ - /**** md5 signature: 5815dd7c853dd2ee8117fbcdf8728805 ****/ + /****** BRepBuilderAPI_BndBoxTreeSelector::Accept ******/ + /****** md5 signature: 5815dd7c853dd2ee8117fbcdf8728805 ******/ %feature("compactdefaultargs") Accept; %feature("autodoc", " Parameters @@ -1634,8 +1634,8 @@ Implementation of acceptance method this method is called when the bounding box ") Accept; Standard_Boolean Accept(const Standard_Integer & theObj); - /****************** ClearResList ******************/ - /**** md5 signature: 437c3c9842327f69417ece821777001d ****/ + /****** BRepBuilderAPI_BndBoxTreeSelector::ClearResList ******/ + /****** md5 signature: 437c3c9842327f69417ece821777001d ******/ %feature("compactdefaultargs") ClearResList; %feature("autodoc", "Return ------- @@ -1647,8 +1647,8 @@ Clear the list of intersecting boxes. ") ClearResList; void ClearResList(); - /****************** Reject ******************/ - /**** md5 signature: d86ca564c619503e8a9e9a9dd035781a ****/ + /****** BRepBuilderAPI_BndBoxTreeSelector::Reject ******/ + /****** md5 signature: d86ca564c619503e8a9e9a9dd035781a ******/ %feature("compactdefaultargs") Reject; %feature("autodoc", " Parameters @@ -1665,8 +1665,8 @@ Implementation of rejection method return true if the bounding box does not inte ") Reject; Standard_Boolean Reject(const Bnd_Box & theBox); - /****************** ResInd ******************/ - /**** md5 signature: 06a54f141487331d8d67cc5507fd93fe ****/ + /****** BRepBuilderAPI_BndBoxTreeSelector::ResInd ******/ + /****** md5 signature: 06a54f141487331d8d67cc5507fd93fe ******/ %feature("compactdefaultargs") ResInd; %feature("autodoc", "Return ------- @@ -1678,8 +1678,8 @@ Get list of indexes of boxes intersecting with the current box. ") ResInd; const TColStd_ListOfInteger & ResInd(); - /****************** SetCurrent ******************/ - /**** md5 signature: f630ad6cec547ab81dd1ff7942351413 ****/ + /****** BRepBuilderAPI_BndBoxTreeSelector::SetCurrent ******/ + /****** md5 signature: f630ad6cec547ab81dd1ff7942351413 ******/ %feature("compactdefaultargs") SetCurrent; %feature("autodoc", " Parameters @@ -1711,8 +1711,8 @@ Set current box to search for overlapping with him. %nodefaultctor BRepBuilderAPI_MakeShape; class BRepBuilderAPI_MakeShape : public BRepBuilderAPI_Command { public: - /****************** Build ******************/ - /**** md5 signature: d39f8b7cbf799a16c2e10ed4575e82fe ****/ + /****** BRepBuilderAPI_MakeShape::Build ******/ + /****** md5 signature: d39f8b7cbf799a16c2e10ed4575e82fe ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -1729,8 +1729,8 @@ This is called by shape(). it does nothing but may be redefined. ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Generated ******************/ - /**** md5 signature: ec0cc02a1efd6cf2ce3c0b78f26c1d07 ****/ + /****** BRepBuilderAPI_MakeShape::Generated ******/ + /****** md5 signature: ec0cc02a1efd6cf2ce3c0b78f26c1d07 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -1747,8 +1747,8 @@ Returns the list of shapes generated from the shape . ") Generated; virtual const TopTools_ListOfShape & Generated(const TopoDS_Shape & S); - /****************** IsDeleted ******************/ - /**** md5 signature: eb6924b9523d7e4f22d23c7c973700db ****/ + /****** BRepBuilderAPI_MakeShape::IsDeleted ******/ + /****** md5 signature: eb6924b9523d7e4f22d23c7c973700db ******/ %feature("compactdefaultargs") IsDeleted; %feature("autodoc", " Parameters @@ -1765,8 +1765,8 @@ Returns true if the shape s has been deleted. ") IsDeleted; virtual Standard_Boolean IsDeleted(const TopoDS_Shape & S); - /****************** Modified ******************/ - /**** md5 signature: a806cf91fce8bea1007aadababd10388 ****/ + /****** BRepBuilderAPI_MakeShape::Modified ******/ + /****** md5 signature: a806cf91fce8bea1007aadababd10388 ******/ %feature("compactdefaultargs") Modified; %feature("autodoc", " Parameters @@ -1783,8 +1783,8 @@ Returns the list of shapes modified from the shape . ") Modified; virtual const TopTools_ListOfShape & Modified(const TopoDS_Shape & S); - /****************** Shape ******************/ - /**** md5 signature: 2d17c0c46a6272e892d56c2b4312553d ****/ + /****** BRepBuilderAPI_MakeShape::Shape ******/ + /****** md5 signature: 2d17c0c46a6272e892d56c2b4312553d ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -1810,8 +1810,8 @@ Returns a shape built by the shape construction algorithm. raises exception stdf ********************************/ class BRepBuilderAPI_MakeEdge : public BRepBuilderAPI_MakeShape { public: - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: 0f4dfcd8f012cf307355479d4f35ebf8 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: 0f4dfcd8f012cf307355479d4f35ebf8 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", "Return ------- @@ -1823,8 +1823,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: 03760e464316327715c9f60169e5c353 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: 03760e464316327715c9f60169e5c353 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -1842,8 +1842,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: 1d9c138e8ad8dac88bf15ba61ca8eeea ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: 1d9c138e8ad8dac88bf15ba61ca8eeea ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -1861,8 +1861,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const gp_Pnt & P1, const gp_Pnt & P2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: a5bad4ad36582766f329b2997750bd64 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: a5bad4ad36582766f329b2997750bd64 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -1879,8 +1879,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const gp_Lin & L); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: cab45d250f4e44f193c7ef6ad550c658 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: cab45d250f4e44f193c7ef6ad550c658 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -1899,8 +1899,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const gp_Lin & L, const Standard_Real p1, const Standard_Real p2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: f2a39fbc1a11abf4d5ee9cb892172a65 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: f2a39fbc1a11abf4d5ee9cb892172a65 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -1919,8 +1919,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const gp_Lin & L, const gp_Pnt & P1, const gp_Pnt & P2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: 180771a5e26f55185893bfbc74200e26 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: 180771a5e26f55185893bfbc74200e26 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -1939,8 +1939,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const gp_Lin & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: 01f9144f68791c93ea0b77b16ae7f738 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: 01f9144f68791c93ea0b77b16ae7f738 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -1957,8 +1957,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const gp_Circ & L); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: 9c413b91f4f43dbb36a6be7b3575c890 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: 9c413b91f4f43dbb36a6be7b3575c890 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -1977,8 +1977,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const gp_Circ & L, const Standard_Real p1, const Standard_Real p2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: 3dfc053e7499ca226c956c4bd26ed85d ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: 3dfc053e7499ca226c956c4bd26ed85d ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -1997,8 +1997,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const gp_Circ & L, const gp_Pnt & P1, const gp_Pnt & P2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: ffe72e79252ec3798fe6ad30ff8a9d8c ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: ffe72e79252ec3798fe6ad30ff8a9d8c ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2017,8 +2017,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const gp_Circ & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: f0af09a1e0509e61e8f46e9b99a5f265 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: f0af09a1e0509e61e8f46e9b99a5f265 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2035,8 +2035,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const gp_Elips & L); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: 4ee630b3a076bf0e9dad64f944eba049 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: 4ee630b3a076bf0e9dad64f944eba049 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2055,8 +2055,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const gp_Elips & L, const Standard_Real p1, const Standard_Real p2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: 2ef92171d9092a0e8f3c7bf0b7d90e0f ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: 2ef92171d9092a0e8f3c7bf0b7d90e0f ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2075,8 +2075,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const gp_Elips & L, const gp_Pnt & P1, const gp_Pnt & P2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: 5df7d682759ac8fa2d83101a9ae6744a ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: 5df7d682759ac8fa2d83101a9ae6744a ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2095,8 +2095,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const gp_Elips & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: 13812eb3449432a1961fdc8707025659 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: 13812eb3449432a1961fdc8707025659 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2113,8 +2113,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const gp_Hypr & L); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: fc8c25337ccae7524af5016c0558529d ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: fc8c25337ccae7524af5016c0558529d ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2133,8 +2133,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const gp_Hypr & L, const Standard_Real p1, const Standard_Real p2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: 125132cc5b68b71332321fdb8ed75aef ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: 125132cc5b68b71332321fdb8ed75aef ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2153,8 +2153,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const gp_Hypr & L, const gp_Pnt & P1, const gp_Pnt & P2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: 5c1bf3d6aaa00d737afd406d3c012341 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: 5c1bf3d6aaa00d737afd406d3c012341 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2173,8 +2173,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const gp_Hypr & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: d97ef5d901ee9aab613ae11dba6cb537 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: d97ef5d901ee9aab613ae11dba6cb537 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2191,8 +2191,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const gp_Parab & L); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: 9bdd925165b2ff5d5abb2947ee8d711a ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: 9bdd925165b2ff5d5abb2947ee8d711a ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2211,8 +2211,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const gp_Parab & L, const Standard_Real p1, const Standard_Real p2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: 3b344cb2d8419d529ee9d54d2f6cc669 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: 3b344cb2d8419d529ee9d54d2f6cc669 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2231,8 +2231,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const gp_Parab & L, const gp_Pnt & P1, const gp_Pnt & P2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: 5f6deb41b0ccadcc0541de06b4588820 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: 5f6deb41b0ccadcc0541de06b4588820 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2251,8 +2251,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const gp_Parab & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: 230e0e9c29476df7018fb49aef783237 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: 230e0e9c29476df7018fb49aef783237 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2269,8 +2269,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const opencascade::handle & L); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: d49aaa94a0b6680c60d31379455f3068 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: d49aaa94a0b6680c60d31379455f3068 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2289,8 +2289,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const opencascade::handle & L, const Standard_Real p1, const Standard_Real p2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: 9add2febba648d64ba90e4afe104291e ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: 9add2febba648d64ba90e4afe104291e ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2309,8 +2309,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const opencascade::handle & L, const gp_Pnt & P1, const gp_Pnt & P2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: 45ce7c9f95893c06e5e00995284ecf21 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: 45ce7c9f95893c06e5e00995284ecf21 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2329,8 +2329,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const opencascade::handle & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: 72e4841e5d7e7c2edb5bc8aa27592395 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: 72e4841e5d7e7c2edb5bc8aa27592395 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2351,8 +2351,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const opencascade::handle & L, const gp_Pnt & P1, const gp_Pnt & P2, const Standard_Real p1, const Standard_Real p2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: 07688a814bb54bebc945f45067aefbe5 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: 07688a814bb54bebc945f45067aefbe5 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2373,8 +2373,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const opencascade::handle & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2, const Standard_Real p1, const Standard_Real p2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: a4782af46daf51d670da12ea4e8c9988 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: a4782af46daf51d670da12ea4e8c9988 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2392,8 +2392,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const opencascade::handle & L, const opencascade::handle & S); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: b8076f60fd8e4e00baf4eb4e6d15d226 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: b8076f60fd8e4e00baf4eb4e6d15d226 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2413,8 +2413,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const opencascade::handle & L, const opencascade::handle & S, const Standard_Real p1, const Standard_Real p2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: 8695836e69885815046f06b0ae0bc482 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: 8695836e69885815046f06b0ae0bc482 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2434,8 +2434,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const opencascade::handle & L, const opencascade::handle & S, const gp_Pnt & P1, const gp_Pnt & P2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: 03da4358eb0602d842c54753b709c010 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: 03da4358eb0602d842c54753b709c010 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2455,8 +2455,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const opencascade::handle & L, const opencascade::handle & S, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: 1129d1ac8dade951df00631adc5bd7eb ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: 1129d1ac8dade951df00631adc5bd7eb ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2478,8 +2478,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const opencascade::handle & L, const opencascade::handle & S, const gp_Pnt & P1, const gp_Pnt & P2, const Standard_Real p1, const Standard_Real p2); - /****************** BRepBuilderAPI_MakeEdge ******************/ - /**** md5 signature: acd21d73401432f2c365942d82c1fc03 ****/ + /****** BRepBuilderAPI_MakeEdge::BRepBuilderAPI_MakeEdge ******/ + /****** md5 signature: acd21d73401432f2c365942d82c1fc03 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge; %feature("autodoc", " Parameters @@ -2501,8 +2501,8 @@ The general method to directly create an edge is to give - a 3d curve c as the s ") BRepBuilderAPI_MakeEdge; BRepBuilderAPI_MakeEdge(const opencascade::handle & L, const opencascade::handle & S, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2, const Standard_Real p1, const Standard_Real p2); - /****************** Edge ******************/ - /**** md5 signature: 768a18012e715670ae29301e23e2cf8b ****/ + /****** BRepBuilderAPI_MakeEdge::Edge ******/ + /****** md5 signature: 768a18012e715670ae29301e23e2cf8b ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", "Return ------- @@ -2514,8 +2514,8 @@ Returns the constructed edge. exceptions stdfail_notdone if the edge is not buil ") Edge; const TopoDS_Edge Edge(); - /****************** Error ******************/ - /**** md5 signature: eed0e2d16bc922bda6437a7e6e62f61b ****/ + /****** BRepBuilderAPI_MakeEdge::Error ******/ + /****** md5 signature: eed0e2d16bc922bda6437a7e6e62f61b ******/ %feature("compactdefaultargs") Error; %feature("autodoc", "Return ------- @@ -2527,8 +2527,8 @@ Returns the construction status - brepbuilderapi_edgedone if the edge is built, ") Error; BRepBuilderAPI_EdgeError Error(); - /****************** Init ******************/ - /**** md5 signature: 3a7fb0adde1a97c68f435539513bba2c ****/ + /****** BRepBuilderAPI_MakeEdge::Init ******/ + /****** md5 signature: 3a7fb0adde1a97c68f435539513bba2c ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2545,8 +2545,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C); - /****************** Init ******************/ - /**** md5 signature: 69ab6deacb22a5a946bd084862db1233 ****/ + /****** BRepBuilderAPI_MakeEdge::Init ******/ + /****** md5 signature: 69ab6deacb22a5a946bd084862db1233 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2565,8 +2565,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const Standard_Real p1, const Standard_Real p2); - /****************** Init ******************/ - /**** md5 signature: 235ac27b5a022827b7d54091e2111592 ****/ + /****** BRepBuilderAPI_MakeEdge::Init ******/ + /****** md5 signature: 235ac27b5a022827b7d54091e2111592 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2585,8 +2585,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const gp_Pnt & P1, const gp_Pnt & P2); - /****************** Init ******************/ - /**** md5 signature: 9b236210e3d8f5b8c0ae08f9ff665d2d ****/ + /****** BRepBuilderAPI_MakeEdge::Init ******/ + /****** md5 signature: 9b236210e3d8f5b8c0ae08f9ff665d2d ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2605,8 +2605,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** Init ******************/ - /**** md5 signature: b7311420b3eb1ee66bd9b3232f6bbf14 ****/ + /****** BRepBuilderAPI_MakeEdge::Init ******/ + /****** md5 signature: b7311420b3eb1ee66bd9b3232f6bbf14 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2627,8 +2627,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const gp_Pnt & P1, const gp_Pnt & P2, const Standard_Real p1, const Standard_Real p2); - /****************** Init ******************/ - /**** md5 signature: f0ddd1dcd6baa38ff9d6ad052ec8cf95 ****/ + /****** BRepBuilderAPI_MakeEdge::Init ******/ + /****** md5 signature: f0ddd1dcd6baa38ff9d6ad052ec8cf95 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2649,8 +2649,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2, const Standard_Real p1, const Standard_Real p2); - /****************** Init ******************/ - /**** md5 signature: 2207b24682fbbcefc3a70c5dcfc79e41 ****/ + /****** BRepBuilderAPI_MakeEdge::Init ******/ + /****** md5 signature: 2207b24682fbbcefc3a70c5dcfc79e41 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2668,8 +2668,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const opencascade::handle & S); - /****************** Init ******************/ - /**** md5 signature: 46ba1cf0906b7383d025da040ff8be26 ****/ + /****** BRepBuilderAPI_MakeEdge::Init ******/ + /****** md5 signature: 46ba1cf0906b7383d025da040ff8be26 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2689,8 +2689,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const opencascade::handle & S, const Standard_Real p1, const Standard_Real p2); - /****************** Init ******************/ - /**** md5 signature: 0b0c938b079b5bfdc1085e8f8a945803 ****/ + /****** BRepBuilderAPI_MakeEdge::Init ******/ + /****** md5 signature: 0b0c938b079b5bfdc1085e8f8a945803 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2710,8 +2710,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const opencascade::handle & S, const gp_Pnt & P1, const gp_Pnt & P2); - /****************** Init ******************/ - /**** md5 signature: cc30f692d59f3ba69b1c4b104a9aba38 ****/ + /****** BRepBuilderAPI_MakeEdge::Init ******/ + /****** md5 signature: cc30f692d59f3ba69b1c4b104a9aba38 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2731,8 +2731,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const opencascade::handle & S, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** Init ******************/ - /**** md5 signature: 13f84c1b43401d2a23e02820d3c88735 ****/ + /****** BRepBuilderAPI_MakeEdge::Init ******/ + /****** md5 signature: 13f84c1b43401d2a23e02820d3c88735 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2754,8 +2754,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const opencascade::handle & S, const gp_Pnt & P1, const gp_Pnt & P2, const Standard_Real p1, const Standard_Real p2); - /****************** Init ******************/ - /**** md5 signature: 59918a63418830ecee317dd35f9016cc ****/ + /****** BRepBuilderAPI_MakeEdge::Init ******/ + /****** md5 signature: 59918a63418830ecee317dd35f9016cc ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2777,8 +2777,8 @@ Defines or redefines the arguments for the construction of an edge. this functio ") Init; void Init(const opencascade::handle & C, const opencascade::handle & S, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2, const Standard_Real p1, const Standard_Real p2); - /****************** IsDone ******************/ - /**** md5 signature: e2af43c18fdd9d21f5f5de9eae7fc9de ****/ + /****** BRepBuilderAPI_MakeEdge::IsDone ******/ + /****** md5 signature: e2af43c18fdd9d21f5f5de9eae7fc9de ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -2790,8 +2790,8 @@ Returns true if the edge is built. ") IsDone; virtual Standard_Boolean IsDone(); - /****************** Vertex1 ******************/ - /**** md5 signature: 3013872331c1fad0ef9330909eb27447 ****/ + /****** BRepBuilderAPI_MakeEdge::Vertex1 ******/ + /****** md5 signature: 3013872331c1fad0ef9330909eb27447 ******/ %feature("compactdefaultargs") Vertex1; %feature("autodoc", "Return ------- @@ -2803,8 +2803,8 @@ Returns the first vertex of the edge. may be null. ") Vertex1; const TopoDS_Vertex Vertex1(); - /****************** Vertex2 ******************/ - /**** md5 signature: ce52ea817fb1fca460491831377f3811 ****/ + /****** BRepBuilderAPI_MakeEdge::Vertex2 ******/ + /****** md5 signature: ce52ea817fb1fca460491831377f3811 ******/ %feature("compactdefaultargs") Vertex2; %feature("autodoc", "Return ------- @@ -2830,8 +2830,8 @@ Returns the second vertex of the edge. may be null. //! warning the returned ver **********************************/ class BRepBuilderAPI_MakeEdge2d : public BRepBuilderAPI_MakeShape { public: - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: bfcf05f03d1155d3e3138fd904ebec30 ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: bfcf05f03d1155d3e3138fd904ebec30 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -2849,8 +2849,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: 005fbf9b30edf45cd1d556cd57449b52 ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: 005fbf9b30edf45cd1d556cd57449b52 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -2868,8 +2868,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const gp_Pnt2d & P1, const gp_Pnt2d & P2); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: f90665f57f4d23d3332cedf8ded3559b ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: f90665f57f4d23d3332cedf8ded3559b ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -2886,8 +2886,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const gp_Lin2d & L); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: 517f958b659e1ac3a0ae753bf31ac3db ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: 517f958b659e1ac3a0ae753bf31ac3db ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -2906,8 +2906,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const gp_Lin2d & L, const Standard_Real p1, const Standard_Real p2); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: 645572569e68cc969305ed87c8785980 ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: 645572569e68cc969305ed87c8785980 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -2926,8 +2926,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const gp_Lin2d & L, const gp_Pnt2d & P1, const gp_Pnt2d & P2); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: 9e194e6799c2033512dfc9a79fac26a8 ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: 9e194e6799c2033512dfc9a79fac26a8 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -2946,8 +2946,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const gp_Lin2d & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: 9b27412010f85348ad711cccbd4623c7 ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: 9b27412010f85348ad711cccbd4623c7 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -2964,8 +2964,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const gp_Circ2d & L); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: 18039721aab72cd4872f8a52d0333539 ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: 18039721aab72cd4872f8a52d0333539 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -2984,8 +2984,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const gp_Circ2d & L, const Standard_Real p1, const Standard_Real p2); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: 3f6e055266559e7e5feb71876b03cebb ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: 3f6e055266559e7e5feb71876b03cebb ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -3004,8 +3004,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const gp_Circ2d & L, const gp_Pnt2d & P1, const gp_Pnt2d & P2); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: 90e59e52a38ceac1b93d35076ac4b470 ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: 90e59e52a38ceac1b93d35076ac4b470 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -3024,8 +3024,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const gp_Circ2d & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: dec7d4c0169150a2e86b3ee1b6fd23d0 ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: dec7d4c0169150a2e86b3ee1b6fd23d0 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -3042,8 +3042,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const gp_Elips2d & L); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: ac65cdde53679ed90ba1f3521c9a3285 ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: ac65cdde53679ed90ba1f3521c9a3285 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -3062,8 +3062,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const gp_Elips2d & L, const Standard_Real p1, const Standard_Real p2); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: 1c65a339c0b972e42e9c595f9c5b6f4d ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: 1c65a339c0b972e42e9c595f9c5b6f4d ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -3082,8 +3082,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const gp_Elips2d & L, const gp_Pnt2d & P1, const gp_Pnt2d & P2); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: 0fae436d0a0a9fe9d4eeb533df3f44eb ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: 0fae436d0a0a9fe9d4eeb533df3f44eb ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -3102,8 +3102,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const gp_Elips2d & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: 2811ce4e0a900a196d2b1018f783f418 ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: 2811ce4e0a900a196d2b1018f783f418 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -3120,8 +3120,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const gp_Hypr2d & L); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: 646a459c3c2f033deab8f144a96e5357 ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: 646a459c3c2f033deab8f144a96e5357 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -3140,8 +3140,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const gp_Hypr2d & L, const Standard_Real p1, const Standard_Real p2); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: 6c97acd26146d4579544d00e0b8754b4 ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: 6c97acd26146d4579544d00e0b8754b4 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -3160,8 +3160,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const gp_Hypr2d & L, const gp_Pnt2d & P1, const gp_Pnt2d & P2); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: e685718a19517adce0bcf4152dbab516 ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: e685718a19517adce0bcf4152dbab516 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -3180,8 +3180,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const gp_Hypr2d & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: 3be5ea6bf0eccd78bd66cc84a44a1315 ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: 3be5ea6bf0eccd78bd66cc84a44a1315 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -3198,8 +3198,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const gp_Parab2d & L); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: ab84070f23b486412154603704adccd1 ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: ab84070f23b486412154603704adccd1 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -3218,8 +3218,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const gp_Parab2d & L, const Standard_Real p1, const Standard_Real p2); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: e0927bb381df58d6b09770a3a3a2eb6b ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: e0927bb381df58d6b09770a3a3a2eb6b ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -3238,8 +3238,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const gp_Parab2d & L, const gp_Pnt2d & P1, const gp_Pnt2d & P2); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: 92f0a714ee22f0a05ae1cc70b4cc3960 ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: 92f0a714ee22f0a05ae1cc70b4cc3960 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -3258,8 +3258,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const gp_Parab2d & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: 4f70f767c647552694ba5cb2a0398a22 ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: 4f70f767c647552694ba5cb2a0398a22 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -3276,8 +3276,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const opencascade::handle & L); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: 347d8e971dc03f71d278f01c11915918 ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: 347d8e971dc03f71d278f01c11915918 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -3296,8 +3296,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const opencascade::handle & L, const Standard_Real p1, const Standard_Real p2); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: 523fe18ae6edb34b5d4509345437720d ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: 523fe18ae6edb34b5d4509345437720d ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -3316,8 +3316,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const opencascade::handle & L, const gp_Pnt2d & P1, const gp_Pnt2d & P2); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: 02288724f7a44b2381d52b1c08ffb0db ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: 02288724f7a44b2381d52b1c08ffb0db ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -3336,8 +3336,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const opencascade::handle & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: 26d33d19f47440e8800d85f2d5408a0e ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: 26d33d19f47440e8800d85f2d5408a0e ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -3358,8 +3358,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const opencascade::handle & L, const gp_Pnt2d & P1, const gp_Pnt2d & P2, const Standard_Real p1, const Standard_Real p2); - /****************** BRepBuilderAPI_MakeEdge2d ******************/ - /**** md5 signature: 56473d16c2838587271d3f4ea5327365 ****/ + /****** BRepBuilderAPI_MakeEdge2d::BRepBuilderAPI_MakeEdge2d ******/ + /****** md5 signature: 56473d16c2838587271d3f4ea5327365 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeEdge2d; %feature("autodoc", " Parameters @@ -3380,8 +3380,8 @@ No available documentation. ") BRepBuilderAPI_MakeEdge2d; BRepBuilderAPI_MakeEdge2d(const opencascade::handle & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2, const Standard_Real p1, const Standard_Real p2); - /****************** Edge ******************/ - /**** md5 signature: 768a18012e715670ae29301e23e2cf8b ****/ + /****** BRepBuilderAPI_MakeEdge2d::Edge ******/ + /****** md5 signature: 768a18012e715670ae29301e23e2cf8b ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", "Return ------- @@ -3393,8 +3393,8 @@ No available documentation. ") Edge; const TopoDS_Edge Edge(); - /****************** Error ******************/ - /**** md5 signature: eed0e2d16bc922bda6437a7e6e62f61b ****/ + /****** BRepBuilderAPI_MakeEdge2d::Error ******/ + /****** md5 signature: eed0e2d16bc922bda6437a7e6e62f61b ******/ %feature("compactdefaultargs") Error; %feature("autodoc", "Return ------- @@ -3406,8 +3406,8 @@ Returns the error description when notdone. ") Error; BRepBuilderAPI_EdgeError Error(); - /****************** Init ******************/ - /**** md5 signature: 9265e5f0d4ffc1952c67390e1e4fa21c ****/ + /****** BRepBuilderAPI_MakeEdge2d::Init ******/ + /****** md5 signature: 9265e5f0d4ffc1952c67390e1e4fa21c ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -3424,8 +3424,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C); - /****************** Init ******************/ - /**** md5 signature: 0961809b47e34c89a735be9bbe4cd201 ****/ + /****** BRepBuilderAPI_MakeEdge2d::Init ******/ + /****** md5 signature: 0961809b47e34c89a735be9bbe4cd201 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -3444,8 +3444,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const Standard_Real p1, const Standard_Real p2); - /****************** Init ******************/ - /**** md5 signature: 3aebe7beccd2278aab8e691a1202290a ****/ + /****** BRepBuilderAPI_MakeEdge2d::Init ******/ + /****** md5 signature: 3aebe7beccd2278aab8e691a1202290a ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -3464,8 +3464,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const gp_Pnt2d & P1, const gp_Pnt2d & P2); - /****************** Init ******************/ - /**** md5 signature: 9ea2122c0b47e1c54f550895e77a510a ****/ + /****** BRepBuilderAPI_MakeEdge2d::Init ******/ + /****** md5 signature: 9ea2122c0b47e1c54f550895e77a510a ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -3484,8 +3484,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** Init ******************/ - /**** md5 signature: 909c5b62ad2dddf89a9e7ed6c45abf2e ****/ + /****** BRepBuilderAPI_MakeEdge2d::Init ******/ + /****** md5 signature: 909c5b62ad2dddf89a9e7ed6c45abf2e ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -3506,8 +3506,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const gp_Pnt2d & P1, const gp_Pnt2d & P2, const Standard_Real p1, const Standard_Real p2); - /****************** Init ******************/ - /**** md5 signature: c6a6dc0247fd8deba360e5bd07dc5e73 ****/ + /****** BRepBuilderAPI_MakeEdge2d::Init ******/ + /****** md5 signature: c6a6dc0247fd8deba360e5bd07dc5e73 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -3528,8 +3528,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2, const Standard_Real p1, const Standard_Real p2); - /****************** IsDone ******************/ - /**** md5 signature: e2af43c18fdd9d21f5f5de9eae7fc9de ****/ + /****** BRepBuilderAPI_MakeEdge2d::IsDone ******/ + /****** md5 signature: e2af43c18fdd9d21f5f5de9eae7fc9de ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -3541,8 +3541,8 @@ No available documentation. ") IsDone; virtual Standard_Boolean IsDone(); - /****************** Vertex1 ******************/ - /**** md5 signature: 3013872331c1fad0ef9330909eb27447 ****/ + /****** BRepBuilderAPI_MakeEdge2d::Vertex1 ******/ + /****** md5 signature: 3013872331c1fad0ef9330909eb27447 ******/ %feature("compactdefaultargs") Vertex1; %feature("autodoc", "Return ------- @@ -3554,8 +3554,8 @@ Returns the first vertex of the edge. may be null. ") Vertex1; const TopoDS_Vertex Vertex1(); - /****************** Vertex2 ******************/ - /**** md5 signature: ce52ea817fb1fca460491831377f3811 ****/ + /****** BRepBuilderAPI_MakeEdge2d::Vertex2 ******/ + /****** md5 signature: ce52ea817fb1fca460491831377f3811 ******/ %feature("compactdefaultargs") Vertex2; %feature("autodoc", "Return ------- @@ -3581,8 +3581,8 @@ Returns the second vertex of the edge. may be null. ********************************/ class BRepBuilderAPI_MakeFace : public BRepBuilderAPI_MakeShape { public: - /****************** BRepBuilderAPI_MakeFace ******************/ - /**** md5 signature: 541fc4c7355d3a6bfcb60a10e43cf520 ****/ + /****** BRepBuilderAPI_MakeFace::BRepBuilderAPI_MakeFace ******/ + /****** md5 signature: 541fc4c7355d3a6bfcb60a10e43cf520 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeFace; %feature("autodoc", "Return ------- @@ -3594,8 +3594,8 @@ Not done. ") BRepBuilderAPI_MakeFace; BRepBuilderAPI_MakeFace(); - /****************** BRepBuilderAPI_MakeFace ******************/ - /**** md5 signature: ac0ecdd4e8a721d62679f96f7f91809d ****/ + /****** BRepBuilderAPI_MakeFace::BRepBuilderAPI_MakeFace ******/ + /****** md5 signature: ac0ecdd4e8a721d62679f96f7f91809d ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeFace; %feature("autodoc", " Parameters @@ -3612,8 +3612,8 @@ Load a face. useful to add wires. ") BRepBuilderAPI_MakeFace; BRepBuilderAPI_MakeFace(const TopoDS_Face & F); - /****************** BRepBuilderAPI_MakeFace ******************/ - /**** md5 signature: 09cbbdd333649801fb329dbe37136e63 ****/ + /****** BRepBuilderAPI_MakeFace::BRepBuilderAPI_MakeFace ******/ + /****** md5 signature: 09cbbdd333649801fb329dbe37136e63 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeFace; %feature("autodoc", " Parameters @@ -3630,8 +3630,8 @@ Make a face from a plane. ") BRepBuilderAPI_MakeFace; BRepBuilderAPI_MakeFace(const gp_Pln & P); - /****************** BRepBuilderAPI_MakeFace ******************/ - /**** md5 signature: 32764c05c024544669d521c68d438194 ****/ + /****** BRepBuilderAPI_MakeFace::BRepBuilderAPI_MakeFace ******/ + /****** md5 signature: 32764c05c024544669d521c68d438194 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeFace; %feature("autodoc", " Parameters @@ -3648,8 +3648,8 @@ Make a face from a cylinder. ") BRepBuilderAPI_MakeFace; BRepBuilderAPI_MakeFace(const gp_Cylinder & C); - /****************** BRepBuilderAPI_MakeFace ******************/ - /**** md5 signature: a8014928898748a8afd97b723642bfde ****/ + /****** BRepBuilderAPI_MakeFace::BRepBuilderAPI_MakeFace ******/ + /****** md5 signature: a8014928898748a8afd97b723642bfde ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeFace; %feature("autodoc", " Parameters @@ -3666,8 +3666,8 @@ Make a face from a cone. ") BRepBuilderAPI_MakeFace; BRepBuilderAPI_MakeFace(const gp_Cone & C); - /****************** BRepBuilderAPI_MakeFace ******************/ - /**** md5 signature: 601ec600164793fe1616d7fb2ccbac9c ****/ + /****** BRepBuilderAPI_MakeFace::BRepBuilderAPI_MakeFace ******/ + /****** md5 signature: 601ec600164793fe1616d7fb2ccbac9c ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeFace; %feature("autodoc", " Parameters @@ -3684,8 +3684,8 @@ Make a face from a sphere. ") BRepBuilderAPI_MakeFace; BRepBuilderAPI_MakeFace(const gp_Sphere & S); - /****************** BRepBuilderAPI_MakeFace ******************/ - /**** md5 signature: b49168111fb28a9fbfcf81267cbe8113 ****/ + /****** BRepBuilderAPI_MakeFace::BRepBuilderAPI_MakeFace ******/ + /****** md5 signature: b49168111fb28a9fbfcf81267cbe8113 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeFace; %feature("autodoc", " Parameters @@ -3702,8 +3702,8 @@ Make a face from a torus. ") BRepBuilderAPI_MakeFace; BRepBuilderAPI_MakeFace(const gp_Torus & C); - /****************** BRepBuilderAPI_MakeFace ******************/ - /**** md5 signature: 19698edbc93d15eb12e95d38e52b3f6c ****/ + /****** BRepBuilderAPI_MakeFace::BRepBuilderAPI_MakeFace ******/ + /****** md5 signature: 19698edbc93d15eb12e95d38e52b3f6c ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeFace; %feature("autodoc", " Parameters @@ -3721,8 +3721,8 @@ Make a face from a surface. accepts tolerance value (toldegen) for resolution of ") BRepBuilderAPI_MakeFace; BRepBuilderAPI_MakeFace(const opencascade::handle & S, const Standard_Real TolDegen); - /****************** BRepBuilderAPI_MakeFace ******************/ - /**** md5 signature: 7d4d076aa11a1d86947f3f83700ec90a ****/ + /****** BRepBuilderAPI_MakeFace::BRepBuilderAPI_MakeFace ******/ + /****** md5 signature: 7d4d076aa11a1d86947f3f83700ec90a ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeFace; %feature("autodoc", " Parameters @@ -3743,8 +3743,8 @@ Make a face from a plane. ") BRepBuilderAPI_MakeFace; BRepBuilderAPI_MakeFace(const gp_Pln & P, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax); - /****************** BRepBuilderAPI_MakeFace ******************/ - /**** md5 signature: 86ebae58c5c914174876b10e55d9ff25 ****/ + /****** BRepBuilderAPI_MakeFace::BRepBuilderAPI_MakeFace ******/ + /****** md5 signature: 86ebae58c5c914174876b10e55d9ff25 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeFace; %feature("autodoc", " Parameters @@ -3765,8 +3765,8 @@ Make a face from a cylinder. ") BRepBuilderAPI_MakeFace; BRepBuilderAPI_MakeFace(const gp_Cylinder & C, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax); - /****************** BRepBuilderAPI_MakeFace ******************/ - /**** md5 signature: 267ce5594216afaf1147e246c8b90396 ****/ + /****** BRepBuilderAPI_MakeFace::BRepBuilderAPI_MakeFace ******/ + /****** md5 signature: 267ce5594216afaf1147e246c8b90396 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeFace; %feature("autodoc", " Parameters @@ -3787,8 +3787,8 @@ Make a face from a cone. ") BRepBuilderAPI_MakeFace; BRepBuilderAPI_MakeFace(const gp_Cone & C, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax); - /****************** BRepBuilderAPI_MakeFace ******************/ - /**** md5 signature: 730d0df0fe03cbb16abd38a38bf6a663 ****/ + /****** BRepBuilderAPI_MakeFace::BRepBuilderAPI_MakeFace ******/ + /****** md5 signature: 730d0df0fe03cbb16abd38a38bf6a663 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeFace; %feature("autodoc", " Parameters @@ -3809,8 +3809,8 @@ Make a face from a sphere. ") BRepBuilderAPI_MakeFace; BRepBuilderAPI_MakeFace(const gp_Sphere & S, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax); - /****************** BRepBuilderAPI_MakeFace ******************/ - /**** md5 signature: 70893c6c780557b1c1313442260a61b5 ****/ + /****** BRepBuilderAPI_MakeFace::BRepBuilderAPI_MakeFace ******/ + /****** md5 signature: 70893c6c780557b1c1313442260a61b5 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeFace; %feature("autodoc", " Parameters @@ -3831,8 +3831,8 @@ Make a face from a torus. ") BRepBuilderAPI_MakeFace; BRepBuilderAPI_MakeFace(const gp_Torus & C, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax); - /****************** BRepBuilderAPI_MakeFace ******************/ - /**** md5 signature: e23dfaea01284f0f537f62f6d18ac86e ****/ + /****** BRepBuilderAPI_MakeFace::BRepBuilderAPI_MakeFace ******/ + /****** md5 signature: e23dfaea01284f0f537f62f6d18ac86e ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeFace; %feature("autodoc", " Parameters @@ -3854,8 +3854,8 @@ Make a face from a surface. accepts tolerance value (toldegen) for resolution of ") BRepBuilderAPI_MakeFace; BRepBuilderAPI_MakeFace(const opencascade::handle & S, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax, const Standard_Real TolDegen); - /****************** BRepBuilderAPI_MakeFace ******************/ - /**** md5 signature: 445f7f291f4fd9242a0baacb4a8f70b7 ****/ + /****** BRepBuilderAPI_MakeFace::BRepBuilderAPI_MakeFace ******/ + /****** md5 signature: 445f7f291f4fd9242a0baacb4a8f70b7 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeFace; %feature("autodoc", " Parameters @@ -3873,8 +3873,8 @@ Find a surface from the wire and make a face. if is true, the comput ") BRepBuilderAPI_MakeFace; BRepBuilderAPI_MakeFace(const TopoDS_Wire & W, const Standard_Boolean OnlyPlane = Standard_False); - /****************** BRepBuilderAPI_MakeFace ******************/ - /**** md5 signature: c51c2e33e6a98cb7fbfd33a45d8d698e ****/ + /****** BRepBuilderAPI_MakeFace::BRepBuilderAPI_MakeFace ******/ + /****** md5 signature: c51c2e33e6a98cb7fbfd33a45d8d698e ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeFace; %feature("autodoc", " Parameters @@ -3893,8 +3893,8 @@ Make a face from a plane and a wire. ") BRepBuilderAPI_MakeFace; BRepBuilderAPI_MakeFace(const gp_Pln & P, const TopoDS_Wire & W, const Standard_Boolean Inside = Standard_True); - /****************** BRepBuilderAPI_MakeFace ******************/ - /**** md5 signature: 0472770e0d262b823eb560efae3e6e5c ****/ + /****** BRepBuilderAPI_MakeFace::BRepBuilderAPI_MakeFace ******/ + /****** md5 signature: 0472770e0d262b823eb560efae3e6e5c ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeFace; %feature("autodoc", " Parameters @@ -3913,8 +3913,8 @@ Make a face from a cylinder and a wire. ") BRepBuilderAPI_MakeFace; BRepBuilderAPI_MakeFace(const gp_Cylinder & C, const TopoDS_Wire & W, const Standard_Boolean Inside = Standard_True); - /****************** BRepBuilderAPI_MakeFace ******************/ - /**** md5 signature: 462af6579232e59b54ec8e3d75b73582 ****/ + /****** BRepBuilderAPI_MakeFace::BRepBuilderAPI_MakeFace ******/ + /****** md5 signature: 462af6579232e59b54ec8e3d75b73582 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeFace; %feature("autodoc", " Parameters @@ -3933,8 +3933,8 @@ Make a face from a cone and a wire. ") BRepBuilderAPI_MakeFace; BRepBuilderAPI_MakeFace(const gp_Cone & C, const TopoDS_Wire & W, const Standard_Boolean Inside = Standard_True); - /****************** BRepBuilderAPI_MakeFace ******************/ - /**** md5 signature: 99a77f7d6e2680966ddcd548f37f569b ****/ + /****** BRepBuilderAPI_MakeFace::BRepBuilderAPI_MakeFace ******/ + /****** md5 signature: 99a77f7d6e2680966ddcd548f37f569b ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeFace; %feature("autodoc", " Parameters @@ -3953,8 +3953,8 @@ Make a face from a sphere and a wire. ") BRepBuilderAPI_MakeFace; BRepBuilderAPI_MakeFace(const gp_Sphere & S, const TopoDS_Wire & W, const Standard_Boolean Inside = Standard_True); - /****************** BRepBuilderAPI_MakeFace ******************/ - /**** md5 signature: 63a33d76e4d34c48ee138e308eb1db38 ****/ + /****** BRepBuilderAPI_MakeFace::BRepBuilderAPI_MakeFace ******/ + /****** md5 signature: 63a33d76e4d34c48ee138e308eb1db38 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeFace; %feature("autodoc", " Parameters @@ -3973,8 +3973,8 @@ Make a face from a torus and a wire. ") BRepBuilderAPI_MakeFace; BRepBuilderAPI_MakeFace(const gp_Torus & C, const TopoDS_Wire & W, const Standard_Boolean Inside = Standard_True); - /****************** BRepBuilderAPI_MakeFace ******************/ - /**** md5 signature: a23085932fa89afc65030dc882efe010 ****/ + /****** BRepBuilderAPI_MakeFace::BRepBuilderAPI_MakeFace ******/ + /****** md5 signature: a23085932fa89afc65030dc882efe010 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeFace; %feature("autodoc", " Parameters @@ -3993,8 +3993,8 @@ Make a face from a surface and a wire. if the surface s is not plane, it must co ") BRepBuilderAPI_MakeFace; BRepBuilderAPI_MakeFace(const opencascade::handle & S, const TopoDS_Wire & W, const Standard_Boolean Inside = Standard_True); - /****************** BRepBuilderAPI_MakeFace ******************/ - /**** md5 signature: 7f01fc7c4e918e13e23cec82d2e59e87 ****/ + /****** BRepBuilderAPI_MakeFace::BRepBuilderAPI_MakeFace ******/ + /****** md5 signature: 7f01fc7c4e918e13e23cec82d2e59e87 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeFace; %feature("autodoc", " Parameters @@ -4012,8 +4012,8 @@ Adds the wire in the face a general method to create a face is to give - ") BRepBuilderAPI_MakeFace; BRepBuilderAPI_MakeFace(const TopoDS_Face & F, const TopoDS_Wire & W); - /****************** Add ******************/ - /**** md5 signature: 3257e47f30128eb5440b1eab5065e724 ****/ + /****** BRepBuilderAPI_MakeFace::Add ******/ + /****** md5 signature: 3257e47f30128eb5440b1eab5065e724 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -4030,8 +4030,8 @@ Adds the wire w to the constructed face as a hole. warning w must not cross the ") Add; void Add(const TopoDS_Wire & W); - /****************** Error ******************/ - /**** md5 signature: eb6c34bb46d70357b5b10c7d3da472d1 ****/ + /****** BRepBuilderAPI_MakeFace::Error ******/ + /****** md5 signature: eb6c34bb46d70357b5b10c7d3da472d1 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", "Return ------- @@ -4043,8 +4043,8 @@ Returns the construction status brepbuilderapi_facedone if the face is built, or ") Error; BRepBuilderAPI_FaceError Error(); - /****************** Face ******************/ - /**** md5 signature: 91e216ebeb76e55c73eb9e179241a6ff ****/ + /****** BRepBuilderAPI_MakeFace::Face ******/ + /****** md5 signature: 91e216ebeb76e55c73eb9e179241a6ff ******/ %feature("compactdefaultargs") Face; %feature("autodoc", "Return ------- @@ -4056,8 +4056,8 @@ Returns the constructed face. exceptions stdfail_notdone if no face is built. ") Face; const TopoDS_Face Face(); - /****************** Init ******************/ - /**** md5 signature: a8dfaa68079e743e08190fe58d950a9a ****/ + /****** BRepBuilderAPI_MakeFace::Init ******/ + /****** md5 signature: a8dfaa68079e743e08190fe58d950a9a ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -4074,8 +4074,8 @@ Initializes (or reinitializes) the construction of a face by creating a new obje ") Init; void Init(const TopoDS_Face & F); - /****************** Init ******************/ - /**** md5 signature: 4537ccbc32157e9ea035d63999e8cd22 ****/ + /****** BRepBuilderAPI_MakeFace::Init ******/ + /****** md5 signature: 4537ccbc32157e9ea035d63999e8cd22 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -4094,8 +4094,8 @@ Initializes (or reinitializes) the construction of a face on the surface s. if b ") Init; void Init(const opencascade::handle & S, const Standard_Boolean Bound, const Standard_Real TolDegen); - /****************** Init ******************/ - /**** md5 signature: 1577db0535b260fa5404a98f8fa219d8 ****/ + /****** BRepBuilderAPI_MakeFace::Init ******/ + /****** md5 signature: 1577db0535b260fa5404a98f8fa219d8 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -4117,8 +4117,8 @@ Initializes (or reinitializes) the construction of a face on the surface s, limi ") Init; void Init(const opencascade::handle & S, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax, const Standard_Real TolDegen); - /****************** IsDone ******************/ - /**** md5 signature: e2af43c18fdd9d21f5f5de9eae7fc9de ****/ + /****** BRepBuilderAPI_MakeFace::IsDone ******/ + /****** md5 signature: e2af43c18fdd9d21f5f5de9eae7fc9de ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -4144,8 +4144,8 @@ Returns true if this algorithm has a valid face. ***********************************/ class BRepBuilderAPI_MakePolygon : public BRepBuilderAPI_MakeShape { public: - /****************** BRepBuilderAPI_MakePolygon ******************/ - /**** md5 signature: 76b9dec7e7af466015f22b4541dcf01f ****/ + /****** BRepBuilderAPI_MakePolygon::BRepBuilderAPI_MakePolygon ******/ + /****** md5 signature: 76b9dec7e7af466015f22b4541dcf01f ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakePolygon; %feature("autodoc", "Return ------- @@ -4157,8 +4157,8 @@ Initializes an empty polygonal wire, to which points or vertices are added using ") BRepBuilderAPI_MakePolygon; BRepBuilderAPI_MakePolygon(); - /****************** BRepBuilderAPI_MakePolygon ******************/ - /**** md5 signature: 098299ba5eb88578080ae78ecfe81e1f ****/ + /****** BRepBuilderAPI_MakePolygon::BRepBuilderAPI_MakePolygon ******/ + /****** md5 signature: 098299ba5eb88578080ae78ecfe81e1f ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakePolygon; %feature("autodoc", " Parameters @@ -4176,8 +4176,8 @@ No available documentation. ") BRepBuilderAPI_MakePolygon; BRepBuilderAPI_MakePolygon(const gp_Pnt & P1, const gp_Pnt & P2); - /****************** BRepBuilderAPI_MakePolygon ******************/ - /**** md5 signature: c6858b7d36146f5d63c0fd944672bfba ****/ + /****** BRepBuilderAPI_MakePolygon::BRepBuilderAPI_MakePolygon ******/ + /****** md5 signature: c6858b7d36146f5d63c0fd944672bfba ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakePolygon; %feature("autodoc", " Parameters @@ -4197,8 +4197,8 @@ No available documentation. ") BRepBuilderAPI_MakePolygon; BRepBuilderAPI_MakePolygon(const gp_Pnt & P1, const gp_Pnt & P2, const gp_Pnt & P3, const Standard_Boolean Close = Standard_False); - /****************** BRepBuilderAPI_MakePolygon ******************/ - /**** md5 signature: ff8e512f1837d0f4a96f00091a06e596 ****/ + /****** BRepBuilderAPI_MakePolygon::BRepBuilderAPI_MakePolygon ******/ + /****** md5 signature: ff8e512f1837d0f4a96f00091a06e596 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakePolygon; %feature("autodoc", " Parameters @@ -4219,8 +4219,8 @@ Constructs a polygonal wire from 2, 3 or 4 points. vertices are automatically cr ") BRepBuilderAPI_MakePolygon; BRepBuilderAPI_MakePolygon(const gp_Pnt & P1, const gp_Pnt & P2, const gp_Pnt & P3, const gp_Pnt & P4, const Standard_Boolean Close = Standard_False); - /****************** BRepBuilderAPI_MakePolygon ******************/ - /**** md5 signature: db14a595777414d9224a0d464b0087f4 ****/ + /****** BRepBuilderAPI_MakePolygon::BRepBuilderAPI_MakePolygon ******/ + /****** md5 signature: db14a595777414d9224a0d464b0087f4 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakePolygon; %feature("autodoc", " Parameters @@ -4238,8 +4238,8 @@ No available documentation. ") BRepBuilderAPI_MakePolygon; BRepBuilderAPI_MakePolygon(const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepBuilderAPI_MakePolygon ******************/ - /**** md5 signature: 14bb91facda291b2240bb410e1aa87ac ****/ + /****** BRepBuilderAPI_MakePolygon::BRepBuilderAPI_MakePolygon ******/ + /****** md5 signature: 14bb91facda291b2240bb410e1aa87ac ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakePolygon; %feature("autodoc", " Parameters @@ -4259,8 +4259,8 @@ No available documentation. ") BRepBuilderAPI_MakePolygon; BRepBuilderAPI_MakePolygon(const TopoDS_Vertex & V1, const TopoDS_Vertex & V2, const TopoDS_Vertex & V3, const Standard_Boolean Close = Standard_False); - /****************** BRepBuilderAPI_MakePolygon ******************/ - /**** md5 signature: 09e12386b8a6639bf1930f50b100b12f ****/ + /****** BRepBuilderAPI_MakePolygon::BRepBuilderAPI_MakePolygon ******/ + /****** md5 signature: 09e12386b8a6639bf1930f50b100b12f ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakePolygon; %feature("autodoc", " Parameters @@ -4281,8 +4281,8 @@ Constructs a polygonal wire from 2, 3 or 4 vertices. the polygonal wire is close ") BRepBuilderAPI_MakePolygon; BRepBuilderAPI_MakePolygon(const TopoDS_Vertex & V1, const TopoDS_Vertex & V2, const TopoDS_Vertex & V3, const TopoDS_Vertex & V4, const Standard_Boolean Close = Standard_False); - /****************** Add ******************/ - /**** md5 signature: b714bfb888eecda75b87221b873365bd ****/ + /****** BRepBuilderAPI_MakePolygon::Add ******/ + /****** md5 signature: b714bfb888eecda75b87221b873365bd ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -4299,8 +4299,8 @@ No available documentation. ") Add; void Add(const gp_Pnt & P); - /****************** Add ******************/ - /**** md5 signature: 50c25a05b9135c3510f0a532439b09c2 ****/ + /****** BRepBuilderAPI_MakePolygon::Add ******/ + /****** md5 signature: 50c25a05b9135c3510f0a532439b09c2 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -4317,8 +4317,8 @@ Adds the point p or the vertex v at the end of the polygonal wire under construc ") Add; void Add(const TopoDS_Vertex & V); - /****************** Added ******************/ - /**** md5 signature: ae76eff202ef54dd186494f9fb9a5cb0 ****/ + /****** BRepBuilderAPI_MakePolygon::Added ******/ + /****** md5 signature: ae76eff202ef54dd186494f9fb9a5cb0 ******/ %feature("compactdefaultargs") Added; %feature("autodoc", "Return ------- @@ -4330,8 +4330,8 @@ Returns true if the last vertex added to the constructed polygonal wire is not c ") Added; Standard_Boolean Added(); - /****************** Close ******************/ - /**** md5 signature: d50d7ba65c2beb3eb436584b5735f108 ****/ + /****** BRepBuilderAPI_MakePolygon::Close ******/ + /****** md5 signature: d50d7ba65c2beb3eb436584b5735f108 ******/ %feature("compactdefaultargs") Close; %feature("autodoc", "Return ------- @@ -4343,8 +4343,8 @@ Closes the polygonal wire under construction. note - this is equivalent to addin ") Close; void Close(); - /****************** Edge ******************/ - /**** md5 signature: be590cff987799d8b7c28083399d0e9f ****/ + /****** BRepBuilderAPI_MakePolygon::Edge ******/ + /****** md5 signature: be590cff987799d8b7c28083399d0e9f ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", "Return ------- @@ -4356,8 +4356,8 @@ Returns the edge built between the last two points or vertices added to the cons ") Edge; const TopoDS_Edge Edge(); - /****************** FirstVertex ******************/ - /**** md5 signature: 4e5c0d56a66d88d33c820ea69fb94d01 ****/ + /****** BRepBuilderAPI_MakePolygon::FirstVertex ******/ + /****** md5 signature: 4e5c0d56a66d88d33c820ea69fb94d01 ******/ %feature("compactdefaultargs") FirstVertex; %feature("autodoc", "Return ------- @@ -4369,8 +4369,8 @@ No available documentation. ") FirstVertex; const TopoDS_Vertex FirstVertex(); - /****************** IsDone ******************/ - /**** md5 signature: e2af43c18fdd9d21f5f5de9eae7fc9de ****/ + /****** BRepBuilderAPI_MakePolygon::IsDone ******/ + /****** md5 signature: e2af43c18fdd9d21f5f5de9eae7fc9de ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -4382,8 +4382,8 @@ Returns true if this algorithm contains a valid polygonal wire (i.e. if there is ") IsDone; virtual Standard_Boolean IsDone(); - /****************** LastVertex ******************/ - /**** md5 signature: 00579001fbfcdaa6b9840a736dc9243f ****/ + /****** BRepBuilderAPI_MakePolygon::LastVertex ******/ + /****** md5 signature: 00579001fbfcdaa6b9840a736dc9243f ******/ %feature("compactdefaultargs") LastVertex; %feature("autodoc", "Return ------- @@ -4395,8 +4395,8 @@ Returns the first or the last vertex of the polygonal wire under construction. i ") LastVertex; const TopoDS_Vertex LastVertex(); - /****************** Wire ******************/ - /**** md5 signature: 1a80266ab027407949727610f03160e2 ****/ + /****** BRepBuilderAPI_MakePolygon::Wire ******/ + /****** md5 signature: 1a80266ab027407949727610f03160e2 ******/ %feature("compactdefaultargs") Wire; %feature("autodoc", "Return ------- @@ -4422,8 +4422,8 @@ Returns the constructed polygonal wire, or the already built part of the polygon ***************************************/ class BRepBuilderAPI_MakeShapeOnMesh : public BRepBuilderAPI_MakeShape { public: - /****************** BRepBuilderAPI_MakeShapeOnMesh ******************/ - /**** md5 signature: d9775140ece54795f4552a05eb93688b ****/ + /****** BRepBuilderAPI_MakeShapeOnMesh::BRepBuilderAPI_MakeShapeOnMesh ******/ + /****** md5 signature: d9775140ece54795f4552a05eb93688b ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeShapeOnMesh; %feature("autodoc", " Parameters @@ -4440,8 +4440,8 @@ Ctor. sets mesh to process. @param themesh [in] - mesh to construct shape for. ") BRepBuilderAPI_MakeShapeOnMesh; BRepBuilderAPI_MakeShapeOnMesh(const opencascade::handle & theMesh); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepBuilderAPI_MakeShapeOnMesh::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -4472,8 +4472,8 @@ Builds shape on mesh. *********************************/ class BRepBuilderAPI_MakeShell : public BRepBuilderAPI_MakeShape { public: - /****************** BRepBuilderAPI_MakeShell ******************/ - /**** md5 signature: f66e5150c2a308218c8635771a238ba1 ****/ + /****** BRepBuilderAPI_MakeShell::BRepBuilderAPI_MakeShell ******/ + /****** md5 signature: f66e5150c2a308218c8635771a238ba1 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeShell; %feature("autodoc", "Return ------- @@ -4485,8 +4485,8 @@ Constructs an empty shell framework. the init function is used to define the con ") BRepBuilderAPI_MakeShell; BRepBuilderAPI_MakeShell(); - /****************** BRepBuilderAPI_MakeShell ******************/ - /**** md5 signature: 87884626f1f7fdf07d62fe74f501184a ****/ + /****** BRepBuilderAPI_MakeShell::BRepBuilderAPI_MakeShell ******/ + /****** md5 signature: 87884626f1f7fdf07d62fe74f501184a ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeShell; %feature("autodoc", " Parameters @@ -4504,8 +4504,8 @@ Constructs a shell from the surface s. ") BRepBuilderAPI_MakeShell; BRepBuilderAPI_MakeShell(const opencascade::handle & S, const Standard_Boolean Segment = Standard_False); - /****************** BRepBuilderAPI_MakeShell ******************/ - /**** md5 signature: 62bc5e6495312d5200397401e6149645 ****/ + /****** BRepBuilderAPI_MakeShell::BRepBuilderAPI_MakeShell ******/ + /****** md5 signature: 62bc5e6495312d5200397401e6149645 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeShell; %feature("autodoc", " Parameters @@ -4527,8 +4527,8 @@ Constructs a shell from the surface s, limited in the u parametric direction by ") BRepBuilderAPI_MakeShell; BRepBuilderAPI_MakeShell(const opencascade::handle & S, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax, const Standard_Boolean Segment = Standard_False); - /****************** Error ******************/ - /**** md5 signature: 0aa62273be80712ad65930b43e4dfd23 ****/ + /****** BRepBuilderAPI_MakeShell::Error ******/ + /****** md5 signature: 0aa62273be80712ad65930b43e4dfd23 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", "Return ------- @@ -4540,8 +4540,8 @@ Returns the construction status: - brepbuilderapi_shelldone if the shell is buil ") Error; BRepBuilderAPI_ShellError Error(); - /****************** Init ******************/ - /**** md5 signature: ee785ff5defa7d18e86d0ad913d864fa ****/ + /****** BRepBuilderAPI_MakeShell::Init ******/ + /****** md5 signature: ee785ff5defa7d18e86d0ad913d864fa ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -4563,8 +4563,8 @@ Defines or redefines the arguments for the construction of a shell. the construc ") Init; void Init(const opencascade::handle & S, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax, const Standard_Boolean Segment = Standard_False); - /****************** IsDone ******************/ - /**** md5 signature: e2af43c18fdd9d21f5f5de9eae7fc9de ****/ + /****** BRepBuilderAPI_MakeShell::IsDone ******/ + /****** md5 signature: e2af43c18fdd9d21f5f5de9eae7fc9de ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -4576,8 +4576,8 @@ Returns true if the shell is built. ") IsDone; virtual Standard_Boolean IsDone(); - /****************** Shell ******************/ - /**** md5 signature: c581862d26a0a34b15cf9dd6d442e65d ****/ + /****** BRepBuilderAPI_MakeShell::Shell ******/ + /****** md5 signature: c581862d26a0a34b15cf9dd6d442e65d ******/ %feature("compactdefaultargs") Shell; %feature("autodoc", "Return ------- @@ -4603,8 +4603,8 @@ Returns the new shell. *********************************/ class BRepBuilderAPI_MakeSolid : public BRepBuilderAPI_MakeShape { public: - /****************** BRepBuilderAPI_MakeSolid ******************/ - /**** md5 signature: a5b7a0bcf7177389d2c0fbff22c20022 ****/ + /****** BRepBuilderAPI_MakeSolid::BRepBuilderAPI_MakeSolid ******/ + /****** md5 signature: a5b7a0bcf7177389d2c0fbff22c20022 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeSolid; %feature("autodoc", "Return ------- @@ -4616,8 +4616,8 @@ Initializes the construction of a solid. an empty solid is considered to cover t ") BRepBuilderAPI_MakeSolid; BRepBuilderAPI_MakeSolid(); - /****************** BRepBuilderAPI_MakeSolid ******************/ - /**** md5 signature: d3b423f1106df0dc0090ff23b3ee24ef ****/ + /****** BRepBuilderAPI_MakeSolid::BRepBuilderAPI_MakeSolid ******/ + /****** md5 signature: d3b423f1106df0dc0090ff23b3ee24ef ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeSolid; %feature("autodoc", " Parameters @@ -4634,8 +4634,8 @@ Make a solid from a compsolid. ") BRepBuilderAPI_MakeSolid; BRepBuilderAPI_MakeSolid(const TopoDS_CompSolid & S); - /****************** BRepBuilderAPI_MakeSolid ******************/ - /**** md5 signature: b45624aedbdaace00f5a4fd4cf1bc27e ****/ + /****** BRepBuilderAPI_MakeSolid::BRepBuilderAPI_MakeSolid ******/ + /****** md5 signature: b45624aedbdaace00f5a4fd4cf1bc27e ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeSolid; %feature("autodoc", " Parameters @@ -4652,8 +4652,8 @@ Make a solid from a shell. ") BRepBuilderAPI_MakeSolid; BRepBuilderAPI_MakeSolid(const TopoDS_Shell & S); - /****************** BRepBuilderAPI_MakeSolid ******************/ - /**** md5 signature: 0f9a5bc9bb6cb89c67cea5b1bc4d5b2a ****/ + /****** BRepBuilderAPI_MakeSolid::BRepBuilderAPI_MakeSolid ******/ + /****** md5 signature: 0f9a5bc9bb6cb89c67cea5b1bc4d5b2a ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeSolid; %feature("autodoc", " Parameters @@ -4671,8 +4671,8 @@ Make a solid from two shells. ") BRepBuilderAPI_MakeSolid; BRepBuilderAPI_MakeSolid(const TopoDS_Shell & S1, const TopoDS_Shell & S2); - /****************** BRepBuilderAPI_MakeSolid ******************/ - /**** md5 signature: d3948f38236bf5b8c03aeea98dbc39e8 ****/ + /****** BRepBuilderAPI_MakeSolid::BRepBuilderAPI_MakeSolid ******/ + /****** md5 signature: d3948f38236bf5b8c03aeea98dbc39e8 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeSolid; %feature("autodoc", " Parameters @@ -4691,8 +4691,8 @@ Make a solid from three shells. constructs a solid - covering the whole space, o ") BRepBuilderAPI_MakeSolid; BRepBuilderAPI_MakeSolid(const TopoDS_Shell & S1, const TopoDS_Shell & S2, const TopoDS_Shell & S3); - /****************** BRepBuilderAPI_MakeSolid ******************/ - /**** md5 signature: d269b933200bdc54c7639ac73cae0e58 ****/ + /****** BRepBuilderAPI_MakeSolid::BRepBuilderAPI_MakeSolid ******/ + /****** md5 signature: d269b933200bdc54c7639ac73cae0e58 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeSolid; %feature("autodoc", " Parameters @@ -4709,8 +4709,8 @@ Make a solid from a solid. useful for adding later. ") BRepBuilderAPI_MakeSolid; BRepBuilderAPI_MakeSolid(const TopoDS_Solid & So); - /****************** BRepBuilderAPI_MakeSolid ******************/ - /**** md5 signature: d8eb662f7f3e18001233ce551b0f73d9 ****/ + /****** BRepBuilderAPI_MakeSolid::BRepBuilderAPI_MakeSolid ******/ + /****** md5 signature: d8eb662f7f3e18001233ce551b0f73d9 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeSolid; %feature("autodoc", " Parameters @@ -4728,8 +4728,8 @@ Add a shell to a solid. //! constructs a solid: - from the solid so, to which sh ") BRepBuilderAPI_MakeSolid; BRepBuilderAPI_MakeSolid(const TopoDS_Solid & So, const TopoDS_Shell & S); - /****************** Add ******************/ - /**** md5 signature: 755d393a8f453c7309ea9f34b76a9857 ****/ + /****** BRepBuilderAPI_MakeSolid::Add ******/ + /****** md5 signature: 755d393a8f453c7309ea9f34b76a9857 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -4746,8 +4746,8 @@ Adds the shell to the current solid. warning no check is done to verify the cond ") Add; void Add(const TopoDS_Shell & S); - /****************** IsDeleted ******************/ - /**** md5 signature: 28be7c17a3b2776f59567554f488bbf5 ****/ + /****** BRepBuilderAPI_MakeSolid::IsDeleted ******/ + /****** md5 signature: 28be7c17a3b2776f59567554f488bbf5 ******/ %feature("compactdefaultargs") IsDeleted; %feature("autodoc", " Parameters @@ -4764,8 +4764,8 @@ No available documentation. ") IsDeleted; virtual Standard_Boolean IsDeleted(const TopoDS_Shape & S); - /****************** IsDone ******************/ - /**** md5 signature: e2af43c18fdd9d21f5f5de9eae7fc9de ****/ + /****** BRepBuilderAPI_MakeSolid::IsDone ******/ + /****** md5 signature: e2af43c18fdd9d21f5f5de9eae7fc9de ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -4777,8 +4777,8 @@ Returns true if the solid is built. for this class, a solid under construction i ") IsDone; virtual Standard_Boolean IsDone(); - /****************** Solid ******************/ - /**** md5 signature: 2538cb0f3104aa1b86470e63b7cc116d ****/ + /****** BRepBuilderAPI_MakeSolid::Solid ******/ + /****** md5 signature: 2538cb0f3104aa1b86470e63b7cc116d ******/ %feature("compactdefaultargs") Solid; %feature("autodoc", "Return ------- @@ -4804,8 +4804,8 @@ Returns the new solid. **********************************/ class BRepBuilderAPI_MakeVertex : public BRepBuilderAPI_MakeShape { public: - /****************** BRepBuilderAPI_MakeVertex ******************/ - /**** md5 signature: 76b4a67f4a0d412d52fe80f15569e02f ****/ + /****** BRepBuilderAPI_MakeVertex::BRepBuilderAPI_MakeVertex ******/ + /****** md5 signature: 76b4a67f4a0d412d52fe80f15569e02f ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeVertex; %feature("autodoc", " Parameters @@ -4822,8 +4822,8 @@ Constructs a vertex from point p. example create a vertex from a 3d point. gp_pn ") BRepBuilderAPI_MakeVertex; BRepBuilderAPI_MakeVertex(const gp_Pnt & P); - /****************** Vertex ******************/ - /**** md5 signature: c8025d701d2a4994ffc4b119d7279582 ****/ + /****** BRepBuilderAPI_MakeVertex::Vertex ******/ + /****** md5 signature: c8025d701d2a4994ffc4b119d7279582 ******/ %feature("compactdefaultargs") Vertex; %feature("autodoc", "Return ------- @@ -4849,8 +4849,8 @@ Returns the constructed vertex. ********************************/ class BRepBuilderAPI_MakeWire : public BRepBuilderAPI_MakeShape { public: - /****************** BRepBuilderAPI_MakeWire ******************/ - /**** md5 signature: a01271fd9c59f1930aae350997331097 ****/ + /****** BRepBuilderAPI_MakeWire::BRepBuilderAPI_MakeWire ******/ + /****** md5 signature: a01271fd9c59f1930aae350997331097 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeWire; %feature("autodoc", "Return ------- @@ -4862,8 +4862,8 @@ Constructs an empty wire framework, to which edges are added using the add funct ") BRepBuilderAPI_MakeWire; BRepBuilderAPI_MakeWire(); - /****************** BRepBuilderAPI_MakeWire ******************/ - /**** md5 signature: 35268938f48dfb41e577c864ce8837b0 ****/ + /****** BRepBuilderAPI_MakeWire::BRepBuilderAPI_MakeWire ******/ + /****** md5 signature: 35268938f48dfb41e577c864ce8837b0 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeWire; %feature("autodoc", " Parameters @@ -4880,8 +4880,8 @@ Make a wire from an edge. ") BRepBuilderAPI_MakeWire; BRepBuilderAPI_MakeWire(const TopoDS_Edge & E); - /****************** BRepBuilderAPI_MakeWire ******************/ - /**** md5 signature: 6fbd8669e7f97e678d8f6fe0553aab2c ****/ + /****** BRepBuilderAPI_MakeWire::BRepBuilderAPI_MakeWire ******/ + /****** md5 signature: 6fbd8669e7f97e678d8f6fe0553aab2c ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeWire; %feature("autodoc", " Parameters @@ -4899,8 +4899,8 @@ Make a wire from two edges. ") BRepBuilderAPI_MakeWire; BRepBuilderAPI_MakeWire(const TopoDS_Edge & E1, const TopoDS_Edge & E2); - /****************** BRepBuilderAPI_MakeWire ******************/ - /**** md5 signature: 6b399cddd86d79169964ba26015dd934 ****/ + /****** BRepBuilderAPI_MakeWire::BRepBuilderAPI_MakeWire ******/ + /****** md5 signature: 6b399cddd86d79169964ba26015dd934 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeWire; %feature("autodoc", " Parameters @@ -4919,8 +4919,8 @@ Make a wire from three edges. ") BRepBuilderAPI_MakeWire; BRepBuilderAPI_MakeWire(const TopoDS_Edge & E1, const TopoDS_Edge & E2, const TopoDS_Edge & E3); - /****************** BRepBuilderAPI_MakeWire ******************/ - /**** md5 signature: c0179625e4bc4e90d4f0be5171bf6b0e ****/ + /****** BRepBuilderAPI_MakeWire::BRepBuilderAPI_MakeWire ******/ + /****** md5 signature: c0179625e4bc4e90d4f0be5171bf6b0e ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeWire; %feature("autodoc", " Parameters @@ -4940,8 +4940,8 @@ Make a wire from four edges. constructs a wire - from the topods_wire w composed ") BRepBuilderAPI_MakeWire; BRepBuilderAPI_MakeWire(const TopoDS_Edge & E1, const TopoDS_Edge & E2, const TopoDS_Edge & E3, const TopoDS_Edge & E4); - /****************** BRepBuilderAPI_MakeWire ******************/ - /**** md5 signature: 307db2e099310281146759f5119b202b ****/ + /****** BRepBuilderAPI_MakeWire::BRepBuilderAPI_MakeWire ******/ + /****** md5 signature: 307db2e099310281146759f5119b202b ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeWire; %feature("autodoc", " Parameters @@ -4958,8 +4958,8 @@ Make a wire from a wire. useful for adding later. ") BRepBuilderAPI_MakeWire; BRepBuilderAPI_MakeWire(const TopoDS_Wire & W); - /****************** BRepBuilderAPI_MakeWire ******************/ - /**** md5 signature: 01bfeedca98a0748591c3cfaec81cb52 ****/ + /****** BRepBuilderAPI_MakeWire::BRepBuilderAPI_MakeWire ******/ + /****** md5 signature: 01bfeedca98a0748591c3cfaec81cb52 ******/ %feature("compactdefaultargs") BRepBuilderAPI_MakeWire; %feature("autodoc", " Parameters @@ -4977,8 +4977,8 @@ Add an edge to a wire. ") BRepBuilderAPI_MakeWire; BRepBuilderAPI_MakeWire(const TopoDS_Wire & W, const TopoDS_Edge & E); - /****************** Add ******************/ - /**** md5 signature: 2689ece383041802da1cd80a0167e44a ****/ + /****** BRepBuilderAPI_MakeWire::Add ******/ + /****** md5 signature: 2689ece383041802da1cd80a0167e44a ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -4995,8 +4995,8 @@ Adds the edge e to the wire under construction. e must be connectable to the wir ") Add; void Add(const TopoDS_Edge & E); - /****************** Add ******************/ - /**** md5 signature: 3257e47f30128eb5440b1eab5065e724 ****/ + /****** BRepBuilderAPI_MakeWire::Add ******/ + /****** md5 signature: 3257e47f30128eb5440b1eab5065e724 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -5013,8 +5013,8 @@ Add the edges of to the current wire. ") Add; void Add(const TopoDS_Wire & W); - /****************** Add ******************/ - /**** md5 signature: acaf1f40b8e0173007b2aad5fa46572c ****/ + /****** BRepBuilderAPI_MakeWire::Add ******/ + /****** md5 signature: acaf1f40b8e0173007b2aad5fa46572c ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -5031,8 +5031,8 @@ Adds the edges of to the current wire. the edges are not to be consecutive. ") Add; void Add(const TopTools_ListOfShape & L); - /****************** Edge ******************/ - /**** md5 signature: be590cff987799d8b7c28083399d0e9f ****/ + /****** BRepBuilderAPI_MakeWire::Edge ******/ + /****** md5 signature: be590cff987799d8b7c28083399d0e9f ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", "Return ------- @@ -5044,8 +5044,8 @@ Returns the last edge added to the wire under construction. warning - this edge ") Edge; const TopoDS_Edge Edge(); - /****************** Error ******************/ - /**** md5 signature: c54fcbd964e19f731ce241d941c68253 ****/ + /****** BRepBuilderAPI_MakeWire::Error ******/ + /****** md5 signature: c54fcbd964e19f731ce241d941c68253 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", "Return ------- @@ -5057,8 +5057,8 @@ Returns the construction status - brepbuilderapi_wiredone if the wire is built, ") Error; BRepBuilderAPI_WireError Error(); - /****************** IsDone ******************/ - /**** md5 signature: e2af43c18fdd9d21f5f5de9eae7fc9de ****/ + /****** BRepBuilderAPI_MakeWire::IsDone ******/ + /****** md5 signature: e2af43c18fdd9d21f5f5de9eae7fc9de ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -5070,8 +5070,8 @@ Returns true if this algorithm contains a valid wire. isdone returns false if: - ") IsDone; virtual Standard_Boolean IsDone(); - /****************** Vertex ******************/ - /**** md5 signature: 84212ff79cd7d64cd0ebfa6f17214e90 ****/ + /****** BRepBuilderAPI_MakeWire::Vertex ******/ + /****** md5 signature: 84212ff79cd7d64cd0ebfa6f17214e90 ******/ %feature("compactdefaultargs") Vertex; %feature("autodoc", "Return ------- @@ -5083,8 +5083,8 @@ Returns the last vertex of the last edge added to the wire under construction. w ") Vertex; const TopoDS_Vertex Vertex(); - /****************** Wire ******************/ - /**** md5 signature: 1a80266ab027407949727610f03160e2 ****/ + /****** BRepBuilderAPI_MakeWire::Wire ******/ + /****** md5 signature: 1a80266ab027407949727610f03160e2 ******/ %feature("compactdefaultargs") Wire; %feature("autodoc", "Return ------- @@ -5111,8 +5111,8 @@ Returns the constructed wire; or the part of the wire under construction already %nodefaultctor BRepBuilderAPI_ModifyShape; class BRepBuilderAPI_ModifyShape : public BRepBuilderAPI_MakeShape { public: - /****************** Modified ******************/ - /**** md5 signature: 73ccfe97b4ed94547a190332224ffe23 ****/ + /****** BRepBuilderAPI_ModifyShape::Modified ******/ + /****** md5 signature: 73ccfe97b4ed94547a190332224ffe23 ******/ %feature("compactdefaultargs") Modified; %feature("autodoc", " Parameters @@ -5129,8 +5129,8 @@ Returns the list of shapes modified from the shape . ") Modified; virtual const TopTools_ListOfShape & Modified(const TopoDS_Shape & S); - /****************** ModifiedShape ******************/ - /**** md5 signature: 2b7ee5e0dcc7da5f7f19b64339c05803 ****/ + /****** BRepBuilderAPI_ModifyShape::ModifiedShape ******/ + /****** md5 signature: 2b7ee5e0dcc7da5f7f19b64339c05803 ******/ %feature("compactdefaultargs") ModifiedShape; %feature("autodoc", " Parameters @@ -5161,8 +5161,8 @@ Returns the modified shape corresponding to . s can correspond to the entire ****************************/ class BRepBuilderAPI_Copy : public BRepBuilderAPI_ModifyShape { public: - /****************** BRepBuilderAPI_Copy ******************/ - /**** md5 signature: f814be791462311b9bd70700b07a803c ****/ + /****** BRepBuilderAPI_Copy::BRepBuilderAPI_Copy ******/ + /****** md5 signature: f814be791462311b9bd70700b07a803c ******/ %feature("compactdefaultargs") BRepBuilderAPI_Copy; %feature("autodoc", "Return ------- @@ -5174,8 +5174,8 @@ Constructs an empty copy framework. use the function perform to copy shapes. ") BRepBuilderAPI_Copy; BRepBuilderAPI_Copy(); - /****************** BRepBuilderAPI_Copy ******************/ - /**** md5 signature: 3cb4979fa2e75d4803c748d02780b980 ****/ + /****** BRepBuilderAPI_Copy::BRepBuilderAPI_Copy ******/ + /****** md5 signature: 3cb4979fa2e75d4803c748d02780b980 ******/ %feature("compactdefaultargs") BRepBuilderAPI_Copy; %feature("autodoc", " Parameters @@ -5194,8 +5194,8 @@ Constructs a copy framework and copies the shape s. use the function shape to ac ") BRepBuilderAPI_Copy; BRepBuilderAPI_Copy(const TopoDS_Shape & S, const Standard_Boolean copyGeom = Standard_True, const Standard_Boolean copyMesh = Standard_False); - /****************** Perform ******************/ - /**** md5 signature: fd7a196bf04e4d1c7c8c422daf764262 ****/ + /****** BRepBuilderAPI_Copy::Perform ******/ + /****** md5 signature: fd7a196bf04e4d1c7c8c422daf764262 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -5228,8 +5228,8 @@ Copies the shape s. use the function shape to access the result. if copymesh is **********************************/ class BRepBuilderAPI_GTransform : public BRepBuilderAPI_ModifyShape { public: - /****************** BRepBuilderAPI_GTransform ******************/ - /**** md5 signature: e9a10c3514cc17ff8ed09aec00d8cb93 ****/ + /****** BRepBuilderAPI_GTransform::BRepBuilderAPI_GTransform ******/ + /****** md5 signature: e9a10c3514cc17ff8ed09aec00d8cb93 ******/ %feature("compactdefaultargs") BRepBuilderAPI_GTransform; %feature("autodoc", " Parameters @@ -5246,8 +5246,8 @@ Constructs a framework for applying the geometric transformation t to a shape. u ") BRepBuilderAPI_GTransform; BRepBuilderAPI_GTransform(const gp_GTrsf & T); - /****************** BRepBuilderAPI_GTransform ******************/ - /**** md5 signature: 802e107723be9776d843f3a4e2d6fab3 ****/ + /****** BRepBuilderAPI_GTransform::BRepBuilderAPI_GTransform ******/ + /****** md5 signature: 802e107723be9776d843f3a4e2d6fab3 ******/ %feature("compactdefaultargs") BRepBuilderAPI_GTransform; %feature("autodoc", " Parameters @@ -5266,8 +5266,8 @@ Constructs a framework for applying the geometric transformation t to a shape, a ") BRepBuilderAPI_GTransform; BRepBuilderAPI_GTransform(const TopoDS_Shape & S, const gp_GTrsf & T, const Standard_Boolean Copy = Standard_False); - /****************** Modified ******************/ - /**** md5 signature: 73ccfe97b4ed94547a190332224ffe23 ****/ + /****** BRepBuilderAPI_GTransform::Modified ******/ + /****** md5 signature: 73ccfe97b4ed94547a190332224ffe23 ******/ %feature("compactdefaultargs") Modified; %feature("autodoc", " Parameters @@ -5284,8 +5284,8 @@ Returns the list of shapes modified from the shape . ") Modified; virtual const TopTools_ListOfShape & Modified(const TopoDS_Shape & S); - /****************** ModifiedShape ******************/ - /**** md5 signature: 52b70a5b01905688e2ddbc00ab060e3c ****/ + /****** BRepBuilderAPI_GTransform::ModifiedShape ******/ + /****** md5 signature: 52b70a5b01905688e2ddbc00ab060e3c ******/ %feature("compactdefaultargs") ModifiedShape; %feature("autodoc", " Parameters @@ -5302,8 +5302,8 @@ Returns the modified shape corresponding to . ") ModifiedShape; virtual TopoDS_Shape ModifiedShape(const TopoDS_Shape & S); - /****************** Perform ******************/ - /**** md5 signature: 18b546559b34b40c9a50445613009c29 ****/ + /****** BRepBuilderAPI_GTransform::Perform ******/ + /****** md5 signature: 18b546559b34b40c9a50445613009c29 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -5335,8 +5335,8 @@ Applies the geometric transformation defined at the time of construction of this ************************************/ class BRepBuilderAPI_NurbsConvert : public BRepBuilderAPI_ModifyShape { public: - /****************** BRepBuilderAPI_NurbsConvert ******************/ - /**** md5 signature: cb8a8d7eea9b92ec4e01dce2e0e52c7d ****/ + /****** BRepBuilderAPI_NurbsConvert::BRepBuilderAPI_NurbsConvert ******/ + /****** md5 signature: cb8a8d7eea9b92ec4e01dce2e0e52c7d ******/ %feature("compactdefaultargs") BRepBuilderAPI_NurbsConvert; %feature("autodoc", "Return ------- @@ -5348,8 +5348,8 @@ Constructs a framework for converting the geometry of a shape into nurbs geometr ") BRepBuilderAPI_NurbsConvert; BRepBuilderAPI_NurbsConvert(); - /****************** BRepBuilderAPI_NurbsConvert ******************/ - /**** md5 signature: 97b829c018fc2c7268806ac155e1b4cf ****/ + /****** BRepBuilderAPI_NurbsConvert::BRepBuilderAPI_NurbsConvert ******/ + /****** md5 signature: 97b829c018fc2c7268806ac155e1b4cf ******/ %feature("compactdefaultargs") BRepBuilderAPI_NurbsConvert; %feature("autodoc", " Parameters @@ -5367,8 +5367,8 @@ Builds a new shape by converting the geometry of the shape s into nurbs geometry ") BRepBuilderAPI_NurbsConvert; BRepBuilderAPI_NurbsConvert(const TopoDS_Shape & S, const Standard_Boolean Copy = Standard_False); - /****************** Modified ******************/ - /**** md5 signature: a806cf91fce8bea1007aadababd10388 ****/ + /****** BRepBuilderAPI_NurbsConvert::Modified ******/ + /****** md5 signature: a806cf91fce8bea1007aadababd10388 ******/ %feature("compactdefaultargs") Modified; %feature("autodoc", " Parameters @@ -5385,8 +5385,8 @@ Returns the list of shapes modified from the shape . ") Modified; virtual const TopTools_ListOfShape & Modified(const TopoDS_Shape & S); - /****************** ModifiedShape ******************/ - /**** md5 signature: 2b7ee5e0dcc7da5f7f19b64339c05803 ****/ + /****** BRepBuilderAPI_NurbsConvert::ModifiedShape ******/ + /****** md5 signature: 2b7ee5e0dcc7da5f7f19b64339c05803 ******/ %feature("compactdefaultargs") ModifiedShape; %feature("autodoc", " Parameters @@ -5403,8 +5403,8 @@ Returns the modified shape corresponding to . s can correspond to the entire ") ModifiedShape; virtual TopoDS_Shape ModifiedShape(const TopoDS_Shape & S); - /****************** Perform ******************/ - /**** md5 signature: 18b546559b34b40c9a50445613009c29 ****/ + /****** BRepBuilderAPI_NurbsConvert::Perform ******/ + /****** md5 signature: 18b546559b34b40c9a50445613009c29 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -5436,8 +5436,8 @@ Builds a new shape by converting the geometry of the shape s into nurbs geometry *********************************/ class BRepBuilderAPI_Transform : public BRepBuilderAPI_ModifyShape { public: - /****************** BRepBuilderAPI_Transform ******************/ - /**** md5 signature: cbdf3e6dd6a17d83bfe43442a75e4924 ****/ + /****** BRepBuilderAPI_Transform::BRepBuilderAPI_Transform ******/ + /****** md5 signature: cbdf3e6dd6a17d83bfe43442a75e4924 ******/ %feature("compactdefaultargs") BRepBuilderAPI_Transform; %feature("autodoc", " Parameters @@ -5454,8 +5454,8 @@ Constructs a framework for applying the geometric transformation t to a shape. u ") BRepBuilderAPI_Transform; BRepBuilderAPI_Transform(const gp_Trsf & T); - /****************** BRepBuilderAPI_Transform ******************/ - /**** md5 signature: 0ab1a7312e9d2fe5b40a55da4604dabf ****/ + /****** BRepBuilderAPI_Transform::BRepBuilderAPI_Transform ******/ + /****** md5 signature: 0ab1a7312e9d2fe5b40a55da4604dabf ******/ %feature("compactdefaultargs") BRepBuilderAPI_Transform; %feature("autodoc", " Parameters @@ -5475,8 +5475,8 @@ Creates a transformation from the gp_trsf , and applies it to the shape ") BRepBuilderAPI_Transform; BRepBuilderAPI_Transform(const TopoDS_Shape & theShape, const gp_Trsf & theTrsf, const Standard_Boolean theCopyGeom = Standard_False, const Standard_Boolean theCopyMesh = Standard_False); - /****************** Modified ******************/ - /**** md5 signature: 73ccfe97b4ed94547a190332224ffe23 ****/ + /****** BRepBuilderAPI_Transform::Modified ******/ + /****** md5 signature: 73ccfe97b4ed94547a190332224ffe23 ******/ %feature("compactdefaultargs") Modified; %feature("autodoc", " Parameters @@ -5493,8 +5493,8 @@ Returns the list of shapes modified from the shape . ") Modified; virtual const TopTools_ListOfShape & Modified(const TopoDS_Shape & S); - /****************** ModifiedShape ******************/ - /**** md5 signature: 52b70a5b01905688e2ddbc00ab060e3c ****/ + /****** BRepBuilderAPI_Transform::ModifiedShape ******/ + /****** md5 signature: 52b70a5b01905688e2ddbc00ab060e3c ******/ %feature("compactdefaultargs") ModifiedShape; %feature("autodoc", " Parameters @@ -5511,8 +5511,8 @@ Returns the modified shape corresponding to . ") ModifiedShape; virtual TopoDS_Shape ModifiedShape(const TopoDS_Shape & S); - /****************** Perform ******************/ - /**** md5 signature: 373b1849db31ffa26c084b85e421ba70 ****/ + /****** BRepBuilderAPI_Transform::Perform ******/ + /****** md5 signature: 373b1849db31ffa26c084b85e421ba70 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BRepCheck.i b/src/SWIG_files/wrapper/BRepCheck.i index 755c840d0..adf9cfa92 100644 --- a/src/SWIG_files/wrapper/BRepCheck.i +++ b/src/SWIG_files/wrapper/BRepCheck.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPCHECKDOCSTRING "BRepCheck module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepcheck.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepcheck.html" %enddef %module (package="OCC.Core", docstring=BREPCHECKDOCSTRING) BRepCheck @@ -231,8 +231,8 @@ typedef NCollection_List BRepCheck_ListOfStatus; %rename(brepcheck) BRepCheck; class BRepCheck { public: - /****************** Add ******************/ - /**** md5 signature: bedfa5bf84f03f430e2a976318bd4d44 ****/ + /****** BRepCheck::Add ******/ + /****** md5 signature: bedfa5bf84f03f430e2a976318bd4d44 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -250,8 +250,8 @@ No available documentation. ") Add; static void Add(BRepCheck_ListOfStatus & List, const BRepCheck_Status Stat); - /****************** PrecCurve ******************/ - /**** md5 signature: ca69acd06fec0c99014d9a2e8efe98cf ****/ + /****** BRepCheck::PrecCurve ******/ + /****** md5 signature: ca69acd06fec0c99014d9a2e8efe98cf ******/ %feature("compactdefaultargs") PrecCurve; %feature("autodoc", " Parameters @@ -268,8 +268,8 @@ Returns the resolution on the 3d curve. ") PrecCurve; static Standard_Real PrecCurve(const Adaptor3d_Curve & aAC3D); - /****************** PrecSurface ******************/ - /**** md5 signature: 6f4c623dddf91472dbeeff8461bbbbf9 ****/ + /****** BRepCheck::PrecSurface ******/ + /****** md5 signature: 6f4c623dddf91472dbeeff8461bbbbf9 ******/ %feature("compactdefaultargs") PrecSurface; %feature("autodoc", " Parameters @@ -286,8 +286,8 @@ Returns the resolution on the surface. ") PrecSurface; static Standard_Real PrecSurface(const opencascade::handle & aAHSurf); - /****************** Print ******************/ - /**** md5 signature: 0f4f5589255e0cda18fd387e5d4e5b49 ****/ + /****** BRepCheck::Print ******/ + /****** md5 signature: 0f4f5589255e0cda18fd387e5d4e5b49 ******/ %feature("compactdefaultargs") Print; %feature("autodoc", " Parameters @@ -304,8 +304,8 @@ No available documentation. ") Print; static void Print(const BRepCheck_Status Stat, std::ostream &OutValue); - /****************** SelfIntersection ******************/ - /**** md5 signature: bb04b20d19bd60ec83e4525199c06c3b ****/ + /****** BRepCheck::SelfIntersection ******/ + /****** md5 signature: bb04b20d19bd60ec83e4525199c06c3b ******/ %feature("compactdefaultargs") SelfIntersection; %feature("autodoc", " Parameters @@ -339,8 +339,8 @@ No available documentation. ***************************/ class BRepCheck_Analyzer { public: - /****************** BRepCheck_Analyzer ******************/ - /**** md5 signature: c4951524e7a1ce44dddda94aa6e9d260 ****/ + /****** BRepCheck_Analyzer::BRepCheck_Analyzer ******/ + /****** md5 signature: c4951524e7a1ce44dddda94aa6e9d260 ******/ %feature("compactdefaultargs") BRepCheck_Analyzer; %feature("autodoc", " Parameters @@ -360,8 +360,8 @@ Constructs a shape validation object defined by the shape s. is the shape to ") BRepCheck_Analyzer; BRepCheck_Analyzer(const TopoDS_Shape & S, const Standard_Boolean GeomControls = Standard_True, const Standard_Boolean theIsParallel = Standard_False, const Standard_Boolean theIsExact = Standard_False); - /****************** Init ******************/ - /**** md5 signature: 5196c4939ad07fcdde4186169aa9d21c ****/ + /****** BRepCheck_Analyzer::Init ******/ + /****** md5 signature: 5196c4939ad07fcdde4186169aa9d21c ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -379,8 +379,8 @@ Description ") Init; void Init(const TopoDS_Shape & S, const Standard_Boolean GeomControls = Standard_True); - /****************** IsExactMethod ******************/ - /**** md5 signature: 5e4b019881aa7aa6b5765966d6b467ca ****/ + /****** BRepCheck_Analyzer::IsExactMethod ******/ + /****** md5 signature: 5e4b019881aa7aa6b5765966d6b467ca ******/ %feature("compactdefaultargs") IsExactMethod; %feature("autodoc", "Return ------- @@ -392,8 +392,8 @@ Returns true if exact method selected. ") IsExactMethod; Standard_Boolean IsExactMethod(); - /****************** IsParallel ******************/ - /**** md5 signature: fc1de18a583c6aa3b3d9897c80aa553e ****/ + /****** BRepCheck_Analyzer::IsParallel ******/ + /****** md5 signature: fc1de18a583c6aa3b3d9897c80aa553e ******/ %feature("compactdefaultargs") IsParallel; %feature("autodoc", "Return ------- @@ -405,8 +405,8 @@ Returns true if parallel flag is set. ") IsParallel; Standard_Boolean IsParallel(); - /****************** IsValid ******************/ - /**** md5 signature: 067e002b3bd9e0362264cfada4f4eeac ****/ + /****** BRepCheck_Analyzer::IsValid ******/ + /****** md5 signature: 067e002b3bd9e0362264cfada4f4eeac ******/ %feature("compactdefaultargs") IsValid; %feature("autodoc", " Parameters @@ -423,8 +423,8 @@ Description ") IsValid; Standard_Boolean IsValid(const TopoDS_Shape & S); - /****************** IsValid ******************/ - /**** md5 signature: 7d115ff85bb657b98ab8790006673845 ****/ + /****** BRepCheck_Analyzer::IsValid ******/ + /****** md5 signature: 7d115ff85bb657b98ab8790006673845 ******/ %feature("compactdefaultargs") IsValid; %feature("autodoc", "Return ------- @@ -436,8 +436,8 @@ Returns true if no defect is detected on the shape s or any of its subshapes. re ") IsValid; Standard_Boolean IsValid(); - /****************** Result ******************/ - /**** md5 signature: 4d39ddda3bce0424b01a6b2fbba14ad2 ****/ + /****** BRepCheck_Analyzer::Result ******/ + /****** md5 signature: 4d39ddda3bce0424b01a6b2fbba14ad2 ******/ %feature("compactdefaultargs") Result; %feature("autodoc", " Parameters @@ -454,8 +454,8 @@ No available documentation. ") Result; const opencascade::handle & Result(const TopoDS_Shape & theSubS); - /****************** SetExactMethod ******************/ - /**** md5 signature: 7e9fb7a39514337474c163d15b041f18 ****/ + /****** BRepCheck_Analyzer::SetExactMethod ******/ + /****** md5 signature: 7e9fb7a39514337474c163d15b041f18 ******/ %feature("compactdefaultargs") SetExactMethod; %feature("autodoc", " Parameters @@ -472,8 +472,8 @@ Sets method to calculate distance: calculating in finite number of points (if th ") SetExactMethod; void SetExactMethod(const Standard_Boolean theIsExact); - /****************** SetParallel ******************/ - /**** md5 signature: 91c6328a8c6135d4f1f1da7db8aee28f ****/ + /****** BRepCheck_Analyzer::SetParallel ******/ + /****** md5 signature: 91c6328a8c6135d4f1f1da7db8aee28f ******/ %feature("compactdefaultargs") SetParallel; %feature("autodoc", " Parameters @@ -505,8 +505,8 @@ Sets parallel flag. %nodefaultctor BRepCheck_Result; class BRepCheck_Result : public Standard_Transient { public: - /****************** Blind ******************/ - /**** md5 signature: a1ab049e14b32de120dd2ea19807b88d ****/ + /****** BRepCheck_Result::Blind ******/ + /****** md5 signature: a1ab049e14b32de120dd2ea19807b88d ******/ %feature("compactdefaultargs") Blind; %feature("autodoc", "Return ------- @@ -518,8 +518,8 @@ No available documentation. ") Blind; virtual void Blind(); - /****************** ContextualShape ******************/ - /**** md5 signature: eb8bd6cde885ea4f72b149425281ff43 ****/ + /****** BRepCheck_Result::ContextualShape ******/ + /****** md5 signature: eb8bd6cde885ea4f72b149425281ff43 ******/ %feature("compactdefaultargs") ContextualShape; %feature("autodoc", "Return ------- @@ -531,8 +531,8 @@ No available documentation. ") ContextualShape; const TopoDS_Shape ContextualShape(); - /****************** InContext ******************/ - /**** md5 signature: 0fa7f35fe7112fd6ac32ee69a7cd8f93 ****/ + /****** BRepCheck_Result::InContext ******/ + /****** md5 signature: 0fa7f35fe7112fd6ac32ee69a7cd8f93 ******/ %feature("compactdefaultargs") InContext; %feature("autodoc", " Parameters @@ -549,8 +549,8 @@ No available documentation. ") InContext; virtual void InContext(const TopoDS_Shape & ContextShape); - /****************** Init ******************/ - /**** md5 signature: 5b69b32485b3d9f82ae4abb9c853c3c7 ****/ + /****** BRepCheck_Result::Init ******/ + /****** md5 signature: 5b69b32485b3d9f82ae4abb9c853c3c7 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -567,8 +567,8 @@ No available documentation. ") Init; void Init(const TopoDS_Shape & S); - /****************** InitContextIterator ******************/ - /**** md5 signature: 055b8946b118029a0bda6f11c38e1af0 ****/ + /****** BRepCheck_Result::InitContextIterator ******/ + /****** md5 signature: 055b8946b118029a0bda6f11c38e1af0 ******/ %feature("compactdefaultargs") InitContextIterator; %feature("autodoc", "Return ------- @@ -580,8 +580,8 @@ No available documentation. ") InitContextIterator; void InitContextIterator(); - /****************** IsBlind ******************/ - /**** md5 signature: 7bdfbaa9abb88d00524ebffdd69f140b ****/ + /****** BRepCheck_Result::IsBlind ******/ + /****** md5 signature: 7bdfbaa9abb88d00524ebffdd69f140b ******/ %feature("compactdefaultargs") IsBlind; %feature("autodoc", "Return ------- @@ -593,8 +593,8 @@ No available documentation. ") IsBlind; Standard_Boolean IsBlind(); - /****************** IsMinimum ******************/ - /**** md5 signature: a6bf8651a71b5ace0b26012ddb26bfd5 ****/ + /****** BRepCheck_Result::IsMinimum ******/ + /****** md5 signature: a6bf8651a71b5ace0b26012ddb26bfd5 ******/ %feature("compactdefaultargs") IsMinimum; %feature("autodoc", "Return ------- @@ -606,8 +606,8 @@ No available documentation. ") IsMinimum; Standard_Boolean IsMinimum(); - /****************** IsStatusOnShape ******************/ - /**** md5 signature: 7a9b88e66fff4774274cebabd6b916eb ****/ + /****** BRepCheck_Result::IsStatusOnShape ******/ + /****** md5 signature: 7a9b88e66fff4774274cebabd6b916eb ******/ %feature("compactdefaultargs") IsStatusOnShape; %feature("autodoc", " Parameters @@ -624,8 +624,8 @@ No available documentation. ") IsStatusOnShape; Standard_Boolean IsStatusOnShape(const TopoDS_Shape & theShape); - /****************** Minimum ******************/ - /**** md5 signature: 567db75783723918a8acfdd7121b3ae4 ****/ + /****** BRepCheck_Result::Minimum ******/ + /****** md5 signature: 567db75783723918a8acfdd7121b3ae4 ******/ %feature("compactdefaultargs") Minimum; %feature("autodoc", "Return ------- @@ -637,8 +637,8 @@ No available documentation. ") Minimum; virtual void Minimum(); - /****************** MoreShapeInContext ******************/ - /**** md5 signature: aaff979dbb1ba3d73332a5aa219d6b33 ****/ + /****** BRepCheck_Result::MoreShapeInContext ******/ + /****** md5 signature: aaff979dbb1ba3d73332a5aa219d6b33 ******/ %feature("compactdefaultargs") MoreShapeInContext; %feature("autodoc", "Return ------- @@ -650,8 +650,8 @@ No available documentation. ") MoreShapeInContext; Standard_Boolean MoreShapeInContext(); - /****************** NextShapeInContext ******************/ - /**** md5 signature: 279884531473bc64fc375fb134c53593 ****/ + /****** BRepCheck_Result::NextShapeInContext ******/ + /****** md5 signature: 279884531473bc64fc375fb134c53593 ******/ %feature("compactdefaultargs") NextShapeInContext; %feature("autodoc", "Return ------- @@ -663,8 +663,8 @@ No available documentation. ") NextShapeInContext; void NextShapeInContext(); - /****************** SetFailStatus ******************/ - /**** md5 signature: 258e6542a6a15f2fae38c3b9476b7210 ****/ + /****** BRepCheck_Result::SetFailStatus ******/ + /****** md5 signature: 258e6542a6a15f2fae38c3b9476b7210 ******/ %feature("compactdefaultargs") SetFailStatus; %feature("autodoc", " Parameters @@ -681,8 +681,8 @@ No available documentation. ") SetFailStatus; void SetFailStatus(const TopoDS_Shape & S); - /****************** SetParallel ******************/ - /**** md5 signature: 75181e0ac6329b778751501d9f3f15d9 ****/ + /****** BRepCheck_Result::SetParallel ******/ + /****** md5 signature: 75181e0ac6329b778751501d9f3f15d9 ******/ %feature("compactdefaultargs") SetParallel; %feature("autodoc", " Parameters @@ -699,8 +699,8 @@ No available documentation. ") SetParallel; void SetParallel(Standard_Boolean theIsParallel); - /****************** Status ******************/ - /**** md5 signature: 64167c852e0650aecc4792387cb6ad32 ****/ + /****** BRepCheck_Result::Status ******/ + /****** md5 signature: 64167c852e0650aecc4792387cb6ad32 ******/ %feature("compactdefaultargs") Status; %feature("autodoc", "Return ------- @@ -712,8 +712,8 @@ No available documentation. ") Status; const BRepCheck_ListOfStatus & Status(); - /****************** StatusOnShape ******************/ - /**** md5 signature: 9d703d3594f470498bdec69da88c13b2 ****/ + /****** BRepCheck_Result::StatusOnShape ******/ + /****** md5 signature: 9d703d3594f470498bdec69da88c13b2 ******/ %feature("compactdefaultargs") StatusOnShape; %feature("autodoc", "Return ------- @@ -725,8 +725,8 @@ No available documentation. ") StatusOnShape; const BRepCheck_ListOfStatus & StatusOnShape(); - /****************** StatusOnShape ******************/ - /**** md5 signature: c188dfc8bfd0a5dda5145143d5c9b549 ****/ + /****** BRepCheck_Result::StatusOnShape ******/ + /****** md5 signature: c188dfc8bfd0a5dda5145143d5c9b549 ******/ %feature("compactdefaultargs") StatusOnShape; %feature("autodoc", " Parameters @@ -759,8 +759,8 @@ No available documentation. ***********************/ class BRepCheck_Edge : public BRepCheck_Result { public: - /****************** BRepCheck_Edge ******************/ - /**** md5 signature: ca66a001fe402a1661316ddbfbe09937 ****/ + /****** BRepCheck_Edge::BRepCheck_Edge ******/ + /****** md5 signature: ca66a001fe402a1661316ddbfbe09937 ******/ %feature("compactdefaultargs") BRepCheck_Edge; %feature("autodoc", " Parameters @@ -777,8 +777,8 @@ No available documentation. ") BRepCheck_Edge; BRepCheck_Edge(const TopoDS_Edge & E); - /****************** Blind ******************/ - /**** md5 signature: 05cb8700c802bda95aa5d71d47a1c542 ****/ + /****** BRepCheck_Edge::Blind ******/ + /****** md5 signature: 05cb8700c802bda95aa5d71d47a1c542 ******/ %feature("compactdefaultargs") Blind; %feature("autodoc", "Return ------- @@ -790,8 +790,8 @@ No available documentation. ") Blind; void Blind(); - /****************** CheckPolygonOnTriangulation ******************/ - /**** md5 signature: 4d8b4b0088c17108fc572dd80979b176 ****/ + /****** BRepCheck_Edge::CheckPolygonOnTriangulation ******/ + /****** md5 signature: 4d8b4b0088c17108fc572dd80979b176 ******/ %feature("compactdefaultargs") CheckPolygonOnTriangulation; %feature("autodoc", " Parameters @@ -808,8 +808,8 @@ Checks, if polygon on triangulation of heedge is out of 3d-curve of this edge. ") CheckPolygonOnTriangulation; BRepCheck_Status CheckPolygonOnTriangulation(const TopoDS_Edge & theEdge); - /****************** GeometricControls ******************/ - /**** md5 signature: 37d96a49d68a7118896a14ac30457fb2 ****/ + /****** BRepCheck_Edge::GeometricControls ******/ + /****** md5 signature: 37d96a49d68a7118896a14ac30457fb2 ******/ %feature("compactdefaultargs") GeometricControls; %feature("autodoc", "Return ------- @@ -821,8 +821,8 @@ No available documentation. ") GeometricControls; Standard_Boolean GeometricControls(); - /****************** GeometricControls ******************/ - /**** md5 signature: 16194f16c24aad512d5519bba6fbad11 ****/ + /****** BRepCheck_Edge::GeometricControls ******/ + /****** md5 signature: 16194f16c24aad512d5519bba6fbad11 ******/ %feature("compactdefaultargs") GeometricControls; %feature("autodoc", " Parameters @@ -839,8 +839,8 @@ No available documentation. ") GeometricControls; void GeometricControls(const Standard_Boolean B); - /****************** InContext ******************/ - /**** md5 signature: 068e04b29819e902bf375d055c106b65 ****/ + /****** BRepCheck_Edge::InContext ******/ + /****** md5 signature: 068e04b29819e902bf375d055c106b65 ******/ %feature("compactdefaultargs") InContext; %feature("autodoc", " Parameters @@ -857,8 +857,8 @@ No available documentation. ") InContext; void InContext(const TopoDS_Shape & ContextShape); - /****************** IsExactMethod ******************/ - /**** md5 signature: 5e4b019881aa7aa6b5765966d6b467ca ****/ + /****** BRepCheck_Edge::IsExactMethod ******/ + /****** md5 signature: 5e4b019881aa7aa6b5765966d6b467ca ******/ %feature("compactdefaultargs") IsExactMethod; %feature("autodoc", "Return ------- @@ -870,8 +870,8 @@ Returns true if exact method selected. ") IsExactMethod; Standard_Boolean IsExactMethod(); - /****************** Minimum ******************/ - /**** md5 signature: bcca4bce745250eb4a0cbc554641b42d ****/ + /****** BRepCheck_Edge::Minimum ******/ + /****** md5 signature: bcca4bce745250eb4a0cbc554641b42d ******/ %feature("compactdefaultargs") Minimum; %feature("autodoc", "Return ------- @@ -883,8 +883,8 @@ No available documentation. ") Minimum; void Minimum(); - /****************** SetExactMethod ******************/ - /**** md5 signature: 61e71faebec158e548494f19380d6da6 ****/ + /****** BRepCheck_Edge::SetExactMethod ******/ + /****** md5 signature: 61e71faebec158e548494f19380d6da6 ******/ %feature("compactdefaultargs") SetExactMethod; %feature("autodoc", " Parameters @@ -901,8 +901,8 @@ Sets method to calculate distance: calculating in finite number of points (if th ") SetExactMethod; void SetExactMethod(Standard_Boolean theIsExact); - /****************** SetStatus ******************/ - /**** md5 signature: 86ab384d3d45dec24b5a7e095ad3e061 ****/ + /****** BRepCheck_Edge::SetStatus ******/ + /****** md5 signature: 86ab384d3d45dec24b5a7e095ad3e061 ******/ %feature("compactdefaultargs") SetStatus; %feature("autodoc", " Parameters @@ -919,8 +919,8 @@ Sets status of edge;. ") SetStatus; void SetStatus(const BRepCheck_Status theStatus); - /****************** Tolerance ******************/ - /**** md5 signature: 014b06346af255e506514edbf19cdb2c ****/ + /****** BRepCheck_Edge::Tolerance ******/ + /****** md5 signature: 014b06346af255e506514edbf19cdb2c ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", "Return ------- @@ -948,8 +948,8 @@ No available documentation. ***********************/ class BRepCheck_Face : public BRepCheck_Result { public: - /****************** BRepCheck_Face ******************/ - /**** md5 signature: ffaa5efe498f128a0f1112b1a5efeb0e ****/ + /****** BRepCheck_Face::BRepCheck_Face ******/ + /****** md5 signature: ffaa5efe498f128a0f1112b1a5efeb0e ******/ %feature("compactdefaultargs") BRepCheck_Face; %feature("autodoc", " Parameters @@ -966,8 +966,8 @@ No available documentation. ") BRepCheck_Face; BRepCheck_Face(const TopoDS_Face & F); - /****************** Blind ******************/ - /**** md5 signature: 05cb8700c802bda95aa5d71d47a1c542 ****/ + /****** BRepCheck_Face::Blind ******/ + /****** md5 signature: 05cb8700c802bda95aa5d71d47a1c542 ******/ %feature("compactdefaultargs") Blind; %feature("autodoc", "Return ------- @@ -979,8 +979,8 @@ No available documentation. ") Blind; void Blind(); - /****************** ClassifyWires ******************/ - /**** md5 signature: bb809bae2576b6926cd5d7fae290be65 ****/ + /****** BRepCheck_Face::ClassifyWires ******/ + /****** md5 signature: bb809bae2576b6926cd5d7fae290be65 ******/ %feature("compactdefaultargs") ClassifyWires; %feature("autodoc", " Parameters @@ -997,8 +997,8 @@ No available documentation. ") ClassifyWires; BRepCheck_Status ClassifyWires(const Standard_Boolean Update = Standard_False); - /****************** GeometricControls ******************/ - /**** md5 signature: 37d96a49d68a7118896a14ac30457fb2 ****/ + /****** BRepCheck_Face::GeometricControls ******/ + /****** md5 signature: 37d96a49d68a7118896a14ac30457fb2 ******/ %feature("compactdefaultargs") GeometricControls; %feature("autodoc", "Return ------- @@ -1010,8 +1010,8 @@ No available documentation. ") GeometricControls; Standard_Boolean GeometricControls(); - /****************** GeometricControls ******************/ - /**** md5 signature: 16194f16c24aad512d5519bba6fbad11 ****/ + /****** BRepCheck_Face::GeometricControls ******/ + /****** md5 signature: 16194f16c24aad512d5519bba6fbad11 ******/ %feature("compactdefaultargs") GeometricControls; %feature("autodoc", " Parameters @@ -1028,8 +1028,8 @@ No available documentation. ") GeometricControls; void GeometricControls(const Standard_Boolean B); - /****************** InContext ******************/ - /**** md5 signature: 068e04b29819e902bf375d055c106b65 ****/ + /****** BRepCheck_Face::InContext ******/ + /****** md5 signature: 068e04b29819e902bf375d055c106b65 ******/ %feature("compactdefaultargs") InContext; %feature("autodoc", " Parameters @@ -1046,8 +1046,8 @@ No available documentation. ") InContext; void InContext(const TopoDS_Shape & ContextShape); - /****************** IntersectWires ******************/ - /**** md5 signature: c3735730ccec0181832410a49f869f1f ****/ + /****** BRepCheck_Face::IntersectWires ******/ + /****** md5 signature: c3735730ccec0181832410a49f869f1f ******/ %feature("compactdefaultargs") IntersectWires; %feature("autodoc", " Parameters @@ -1064,8 +1064,8 @@ No available documentation. ") IntersectWires; BRepCheck_Status IntersectWires(const Standard_Boolean Update = Standard_False); - /****************** IsUnorientable ******************/ - /**** md5 signature: 17483e961c63ce65c4e2be8f16bc72a0 ****/ + /****** BRepCheck_Face::IsUnorientable ******/ + /****** md5 signature: 17483e961c63ce65c4e2be8f16bc72a0 ******/ %feature("compactdefaultargs") IsUnorientable; %feature("autodoc", "Return ------- @@ -1077,8 +1077,8 @@ No available documentation. ") IsUnorientable; Standard_Boolean IsUnorientable(); - /****************** Minimum ******************/ - /**** md5 signature: bcca4bce745250eb4a0cbc554641b42d ****/ + /****** BRepCheck_Face::Minimum ******/ + /****** md5 signature: bcca4bce745250eb4a0cbc554641b42d ******/ %feature("compactdefaultargs") Minimum; %feature("autodoc", "Return ------- @@ -1090,8 +1090,8 @@ No available documentation. ") Minimum; void Minimum(); - /****************** OrientationOfWires ******************/ - /**** md5 signature: 3d0ccc0a3319e206c424d8d492226c82 ****/ + /****** BRepCheck_Face::OrientationOfWires ******/ + /****** md5 signature: 3d0ccc0a3319e206c424d8d492226c82 ******/ %feature("compactdefaultargs") OrientationOfWires; %feature("autodoc", " Parameters @@ -1108,8 +1108,8 @@ No available documentation. ") OrientationOfWires; BRepCheck_Status OrientationOfWires(const Standard_Boolean Update = Standard_False); - /****************** SetStatus ******************/ - /**** md5 signature: 86ab384d3d45dec24b5a7e095ad3e061 ****/ + /****** BRepCheck_Face::SetStatus ******/ + /****** md5 signature: 86ab384d3d45dec24b5a7e095ad3e061 ******/ %feature("compactdefaultargs") SetStatus; %feature("autodoc", " Parameters @@ -1126,8 +1126,8 @@ Sets status of face;. ") SetStatus; void SetStatus(const BRepCheck_Status theStatus); - /****************** SetUnorientable ******************/ - /**** md5 signature: 2f269456d5f1ea5e8b2cc3a49e5ea74f ****/ + /****** BRepCheck_Face::SetUnorientable ******/ + /****** md5 signature: 2f269456d5f1ea5e8b2cc3a49e5ea74f ******/ %feature("compactdefaultargs") SetUnorientable; %feature("autodoc", "Return ------- @@ -1155,8 +1155,8 @@ No available documentation. ************************/ class BRepCheck_Shell : public BRepCheck_Result { public: - /****************** BRepCheck_Shell ******************/ - /**** md5 signature: 309826e2b109bc8c22ada37375badcaf ****/ + /****** BRepCheck_Shell::BRepCheck_Shell ******/ + /****** md5 signature: 309826e2b109bc8c22ada37375badcaf ******/ %feature("compactdefaultargs") BRepCheck_Shell; %feature("autodoc", " Parameters @@ -1173,8 +1173,8 @@ No available documentation. ") BRepCheck_Shell; BRepCheck_Shell(const TopoDS_Shell & S); - /****************** Blind ******************/ - /**** md5 signature: 05cb8700c802bda95aa5d71d47a1c542 ****/ + /****** BRepCheck_Shell::Blind ******/ + /****** md5 signature: 05cb8700c802bda95aa5d71d47a1c542 ******/ %feature("compactdefaultargs") Blind; %feature("autodoc", "Return ------- @@ -1186,8 +1186,8 @@ No available documentation. ") Blind; void Blind(); - /****************** Closed ******************/ - /**** md5 signature: 13c91693b79f0b3874479828b766a2ec ****/ + /****** BRepCheck_Shell::Closed ******/ + /****** md5 signature: 13c91693b79f0b3874479828b766a2ec ******/ %feature("compactdefaultargs") Closed; %feature("autodoc", " Parameters @@ -1204,8 +1204,8 @@ Checks if the oriented faces of the shell give a closed shell. if the wire is cl ") Closed; BRepCheck_Status Closed(const Standard_Boolean Update = Standard_False); - /****************** InContext ******************/ - /**** md5 signature: 068e04b29819e902bf375d055c106b65 ****/ + /****** BRepCheck_Shell::InContext ******/ + /****** md5 signature: 068e04b29819e902bf375d055c106b65 ******/ %feature("compactdefaultargs") InContext; %feature("autodoc", " Parameters @@ -1222,8 +1222,8 @@ No available documentation. ") InContext; void InContext(const TopoDS_Shape & ContextShape); - /****************** IsUnorientable ******************/ - /**** md5 signature: 17483e961c63ce65c4e2be8f16bc72a0 ****/ + /****** BRepCheck_Shell::IsUnorientable ******/ + /****** md5 signature: 17483e961c63ce65c4e2be8f16bc72a0 ******/ %feature("compactdefaultargs") IsUnorientable; %feature("autodoc", "Return ------- @@ -1235,8 +1235,8 @@ No available documentation. ") IsUnorientable; Standard_Boolean IsUnorientable(); - /****************** Minimum ******************/ - /**** md5 signature: bcca4bce745250eb4a0cbc554641b42d ****/ + /****** BRepCheck_Shell::Minimum ******/ + /****** md5 signature: bcca4bce745250eb4a0cbc554641b42d ******/ %feature("compactdefaultargs") Minimum; %feature("autodoc", "Return ------- @@ -1248,8 +1248,8 @@ No available documentation. ") Minimum; void Minimum(); - /****************** NbConnectedSet ******************/ - /**** md5 signature: 486bb36e33ee94a7ee60e1326cdd8de4 ****/ + /****** BRepCheck_Shell::NbConnectedSet ******/ + /****** md5 signature: 486bb36e33ee94a7ee60e1326cdd8de4 ******/ %feature("compactdefaultargs") NbConnectedSet; %feature("autodoc", " Parameters @@ -1266,8 +1266,8 @@ No available documentation. ") NbConnectedSet; Standard_Integer NbConnectedSet(TopTools_ListOfShape & theSets); - /****************** Orientation ******************/ - /**** md5 signature: 3ac937d67db0dcd6512a5c13770310c9 ****/ + /****** BRepCheck_Shell::Orientation ******/ + /****** md5 signature: 3ac937d67db0dcd6512a5c13770310c9 ******/ %feature("compactdefaultargs") Orientation; %feature("autodoc", " Parameters @@ -1284,8 +1284,8 @@ Checks if the oriented faces of the shell are correctly oriented. an internal ca ") Orientation; BRepCheck_Status Orientation(const Standard_Boolean Update = Standard_False); - /****************** SetUnorientable ******************/ - /**** md5 signature: 2f269456d5f1ea5e8b2cc3a49e5ea74f ****/ + /****** BRepCheck_Shell::SetUnorientable ******/ + /****** md5 signature: 2f269456d5f1ea5e8b2cc3a49e5ea74f ******/ %feature("compactdefaultargs") SetUnorientable; %feature("autodoc", "Return ------- @@ -1313,8 +1313,8 @@ No available documentation. ************************/ class BRepCheck_Solid : public BRepCheck_Result { public: - /****************** BRepCheck_Solid ******************/ - /**** md5 signature: 8777687e7fe8f001f2eafb6fa25c0a3a ****/ + /****** BRepCheck_Solid::BRepCheck_Solid ******/ + /****** md5 signature: 8777687e7fe8f001f2eafb6fa25c0a3a ******/ %feature("compactdefaultargs") BRepCheck_Solid; %feature("autodoc", " Parameters @@ -1331,8 +1331,8 @@ Constructor is the solid to check. ") BRepCheck_Solid; BRepCheck_Solid(const TopoDS_Solid & theS); - /****************** Blind ******************/ - /**** md5 signature: d3654c48391487543928e984233515d4 ****/ + /****** BRepCheck_Solid::Blind ******/ + /****** md5 signature: d3654c48391487543928e984233515d4 ******/ %feature("compactdefaultargs") Blind; %feature("autodoc", "Return ------- @@ -1344,8 +1344,8 @@ See the parent class for more details. ") Blind; virtual void Blind(); - /****************** InContext ******************/ - /**** md5 signature: fc3ba1a648e2a8cd0fb0e179a74b9ebb ****/ + /****** BRepCheck_Solid::InContext ******/ + /****** md5 signature: fc3ba1a648e2a8cd0fb0e179a74b9ebb ******/ %feature("compactdefaultargs") InContext; %feature("autodoc", " Parameters @@ -1362,8 +1362,8 @@ Checks the solid in context of the shape . ") InContext; virtual void InContext(const TopoDS_Shape & theContextShape); - /****************** Minimum ******************/ - /**** md5 signature: 6432f12790acf2012f66746d67657613 ****/ + /****** BRepCheck_Solid::Minimum ******/ + /****** md5 signature: 6432f12790acf2012f66746d67657613 ******/ %feature("compactdefaultargs") Minimum; %feature("autodoc", "Return ------- @@ -1391,8 +1391,8 @@ Checks the solid per se. //! the scan area is: 1. shells that overlaps each othe *************************/ class BRepCheck_Vertex : public BRepCheck_Result { public: - /****************** BRepCheck_Vertex ******************/ - /**** md5 signature: 68efde7ae373863d3e1be49e11e82d88 ****/ + /****** BRepCheck_Vertex::BRepCheck_Vertex ******/ + /****** md5 signature: 68efde7ae373863d3e1be49e11e82d88 ******/ %feature("compactdefaultargs") BRepCheck_Vertex; %feature("autodoc", " Parameters @@ -1409,8 +1409,8 @@ No available documentation. ") BRepCheck_Vertex; BRepCheck_Vertex(const TopoDS_Vertex & V); - /****************** Blind ******************/ - /**** md5 signature: 05cb8700c802bda95aa5d71d47a1c542 ****/ + /****** BRepCheck_Vertex::Blind ******/ + /****** md5 signature: 05cb8700c802bda95aa5d71d47a1c542 ******/ %feature("compactdefaultargs") Blind; %feature("autodoc", "Return ------- @@ -1422,8 +1422,8 @@ No available documentation. ") Blind; void Blind(); - /****************** InContext ******************/ - /**** md5 signature: 068e04b29819e902bf375d055c106b65 ****/ + /****** BRepCheck_Vertex::InContext ******/ + /****** md5 signature: 068e04b29819e902bf375d055c106b65 ******/ %feature("compactdefaultargs") InContext; %feature("autodoc", " Parameters @@ -1440,8 +1440,8 @@ No available documentation. ") InContext; void InContext(const TopoDS_Shape & ContextShape); - /****************** Minimum ******************/ - /**** md5 signature: bcca4bce745250eb4a0cbc554641b42d ****/ + /****** BRepCheck_Vertex::Minimum ******/ + /****** md5 signature: bcca4bce745250eb4a0cbc554641b42d ******/ %feature("compactdefaultargs") Minimum; %feature("autodoc", "Return ------- @@ -1453,8 +1453,8 @@ No available documentation. ") Minimum; void Minimum(); - /****************** Tolerance ******************/ - /**** md5 signature: 014b06346af255e506514edbf19cdb2c ****/ + /****** BRepCheck_Vertex::Tolerance ******/ + /****** md5 signature: 014b06346af255e506514edbf19cdb2c ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", "Return ------- @@ -1482,8 +1482,8 @@ No available documentation. ***********************/ class BRepCheck_Wire : public BRepCheck_Result { public: - /****************** BRepCheck_Wire ******************/ - /**** md5 signature: ab6c2dd585c88fb5fb0be4ceaf53f81e ****/ + /****** BRepCheck_Wire::BRepCheck_Wire ******/ + /****** md5 signature: ab6c2dd585c88fb5fb0be4ceaf53f81e ******/ %feature("compactdefaultargs") BRepCheck_Wire; %feature("autodoc", " Parameters @@ -1500,8 +1500,8 @@ No available documentation. ") BRepCheck_Wire; BRepCheck_Wire(const TopoDS_Wire & W); - /****************** Blind ******************/ - /**** md5 signature: 05cb8700c802bda95aa5d71d47a1c542 ****/ + /****** BRepCheck_Wire::Blind ******/ + /****** md5 signature: 05cb8700c802bda95aa5d71d47a1c542 ******/ %feature("compactdefaultargs") Blind; %feature("autodoc", "Return ------- @@ -1513,8 +1513,8 @@ Does nothing. ") Blind; void Blind(); - /****************** Closed ******************/ - /**** md5 signature: 13c91693b79f0b3874479828b766a2ec ****/ + /****** BRepCheck_Wire::Closed ******/ + /****** md5 signature: 13c91693b79f0b3874479828b766a2ec ******/ %feature("compactdefaultargs") Closed; %feature("autodoc", " Parameters @@ -1531,8 +1531,8 @@ Checks if the oriented edges of the wire give a closed wire. if the wire is clos ") Closed; BRepCheck_Status Closed(const Standard_Boolean Update = Standard_False); - /****************** Closed2d ******************/ - /**** md5 signature: ec5831e967eb070b5c82ca8964b55fe8 ****/ + /****** BRepCheck_Wire::Closed2d ******/ + /****** md5 signature: ec5831e967eb070b5c82ca8964b55fe8 ******/ %feature("compactdefaultargs") Closed2d; %feature("autodoc", " Parameters @@ -1550,8 +1550,8 @@ Checks if edges of the wire give a wire closed in 2d space. returns brepcheck_no ") Closed2d; BRepCheck_Status Closed2d(const TopoDS_Face & F, const Standard_Boolean Update = Standard_False); - /****************** GeometricControls ******************/ - /**** md5 signature: 37d96a49d68a7118896a14ac30457fb2 ****/ + /****** BRepCheck_Wire::GeometricControls ******/ + /****** md5 signature: 37d96a49d68a7118896a14ac30457fb2 ******/ %feature("compactdefaultargs") GeometricControls; %feature("autodoc", "Return ------- @@ -1563,8 +1563,8 @@ Report selfintersect() check would be (is) done. ") GeometricControls; Standard_Boolean GeometricControls(); - /****************** GeometricControls ******************/ - /**** md5 signature: 16194f16c24aad512d5519bba6fbad11 ****/ + /****** BRepCheck_Wire::GeometricControls ******/ + /****** md5 signature: 16194f16c24aad512d5519bba6fbad11 ******/ %feature("compactdefaultargs") GeometricControls; %feature("autodoc", " Parameters @@ -1581,8 +1581,8 @@ Set selfintersect() to be checked. ") GeometricControls; void GeometricControls(const Standard_Boolean B); - /****************** InContext ******************/ - /**** md5 signature: 068e04b29819e902bf375d055c106b65 ****/ + /****** BRepCheck_Wire::InContext ******/ + /****** md5 signature: 068e04b29819e902bf375d055c106b65 ******/ %feature("compactdefaultargs") InContext; %feature("autodoc", " Parameters @@ -1599,8 +1599,8 @@ If is a face, consequently checks selfintersect(), closed(), orie ") InContext; void InContext(const TopoDS_Shape & ContextShape); - /****************** Minimum ******************/ - /**** md5 signature: bcca4bce745250eb4a0cbc554641b42d ****/ + /****** BRepCheck_Wire::Minimum ******/ + /****** md5 signature: bcca4bce745250eb4a0cbc554641b42d ******/ %feature("compactdefaultargs") Minimum; %feature("autodoc", "Return ------- @@ -1612,8 +1612,8 @@ Checks that the wire is not empty and 'connex'. called by constructor. ") Minimum; void Minimum(); - /****************** Orientation ******************/ - /**** md5 signature: f1973ba2c13b16645155497d42e54b08 ****/ + /****** BRepCheck_Wire::Orientation ******/ + /****** md5 signature: f1973ba2c13b16645155497d42e54b08 ******/ %feature("compactdefaultargs") Orientation; %feature("autodoc", " Parameters @@ -1631,8 +1631,8 @@ Checks if the oriented edges of the wire are correctly oriented. an internal cal ") Orientation; BRepCheck_Status Orientation(const TopoDS_Face & F, const Standard_Boolean Update = Standard_False); - /****************** SelfIntersect ******************/ - /**** md5 signature: f62c98c78906534e424d1494ff924720 ****/ + /****** BRepCheck_Wire::SelfIntersect ******/ + /****** md5 signature: f62c98c78906534e424d1494ff924720 ******/ %feature("compactdefaultargs") SelfIntersect; %feature("autodoc", " Parameters @@ -1652,8 +1652,8 @@ Checks if the wire intersect itself on the face . and are the first ") SelfIntersect; BRepCheck_Status SelfIntersect(const TopoDS_Face & F, TopoDS_Edge & E1, TopoDS_Edge & E2, const Standard_Boolean Update = Standard_False); - /****************** SetStatus ******************/ - /**** md5 signature: 86ab384d3d45dec24b5a7e095ad3e061 ****/ + /****** BRepCheck_Wire::SetStatus ******/ + /****** md5 signature: 86ab384d3d45dec24b5a7e095ad3e061 ******/ %feature("compactdefaultargs") SetStatus; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BRepClass.i b/src/SWIG_files/wrapper/BRepClass.i index 18242f5cd..6e5af13c5 100644 --- a/src/SWIG_files/wrapper/BRepClass.i +++ b/src/SWIG_files/wrapper/BRepClass.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPCLASSDOCSTRING "BRepClass module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepclass.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepclass.html" %enddef %module (package="OCC.Core", docstring=BREPCLASSDOCSTRING) BRepClass @@ -100,8 +100,8 @@ from OCC.Core.Exception import * ***********************/ class BRepClass_Edge { public: - /****************** BRepClass_Edge ******************/ - /**** md5 signature: fa499f57858b64345785d348f81cc818 ****/ + /****** BRepClass_Edge::BRepClass_Edge ******/ + /****** md5 signature: fa499f57858b64345785d348f81cc818 ******/ %feature("compactdefaultargs") BRepClass_Edge; %feature("autodoc", "Return ------- @@ -113,8 +113,8 @@ No available documentation. ") BRepClass_Edge; BRepClass_Edge(); - /****************** BRepClass_Edge ******************/ - /**** md5 signature: a6a6c460541f16aaabfb79777156b15f ****/ + /****** BRepClass_Edge::BRepClass_Edge ******/ + /****** md5 signature: a6a6c460541f16aaabfb79777156b15f ******/ %feature("compactdefaultargs") BRepClass_Edge; %feature("autodoc", " Parameters @@ -132,8 +132,8 @@ No available documentation. ") BRepClass_Edge; BRepClass_Edge(const TopoDS_Edge & E, const TopoDS_Face & F); - /****************** Edge ******************/ - /**** md5 signature: 7927ca64a27bc7479e2b4d4ab87dbb48 ****/ + /****** BRepClass_Edge::Edge ******/ + /****** md5 signature: 7927ca64a27bc7479e2b4d4ab87dbb48 ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", "Return ------- @@ -145,8 +145,8 @@ Returns the current edge . ") Edge; TopoDS_Edge Edge(); - /****************** Edge ******************/ - /**** md5 signature: be590cff987799d8b7c28083399d0e9f ****/ + /****** BRepClass_Edge::Edge ******/ + /****** md5 signature: be590cff987799d8b7c28083399d0e9f ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", "Return ------- @@ -158,8 +158,8 @@ No available documentation. ") Edge; const TopoDS_Edge Edge(); - /****************** Face ******************/ - /**** md5 signature: 6e8f5f8b51d0684fdc076a3f5ea16883 ****/ + /****** BRepClass_Edge::Face ******/ + /****** md5 signature: 6e8f5f8b51d0684fdc076a3f5ea16883 ******/ %feature("compactdefaultargs") Face; %feature("autodoc", "Return ------- @@ -171,8 +171,8 @@ Returns the face for the current edge. ") Face; TopoDS_Face Face(); - /****************** Face ******************/ - /**** md5 signature: 91e216ebeb76e55c73eb9e179241a6ff ****/ + /****** BRepClass_Edge::Face ******/ + /****** md5 signature: 91e216ebeb76e55c73eb9e179241a6ff ******/ %feature("compactdefaultargs") Face; %feature("autodoc", "Return ------- @@ -184,8 +184,8 @@ No available documentation. ") Face; const TopoDS_Face Face(); - /****************** MaxTolerance ******************/ - /**** md5 signature: 34f00536788c474152c6e8ed59dfb31e ****/ + /****** BRepClass_Edge::MaxTolerance ******/ + /****** md5 signature: 34f00536788c474152c6e8ed59dfb31e ******/ %feature("compactdefaultargs") MaxTolerance; %feature("autodoc", "Return ------- @@ -197,8 +197,8 @@ Returns the maximum tolerance. ") MaxTolerance; Standard_Real MaxTolerance(); - /****************** NextEdge ******************/ - /**** md5 signature: 46e9b5528185041e80eced3cd59f29f3 ****/ + /****** BRepClass_Edge::NextEdge ******/ + /****** md5 signature: 46e9b5528185041e80eced3cd59f29f3 ******/ %feature("compactdefaultargs") NextEdge; %feature("autodoc", "Return ------- @@ -210,8 +210,8 @@ Returns the next edge. ") NextEdge; const TopoDS_Edge NextEdge(); - /****************** SetMaxTolerance ******************/ - /**** md5 signature: d9b5f48764b511c321401dad8b37d561 ****/ + /****** BRepClass_Edge::SetMaxTolerance ******/ + /****** md5 signature: d9b5f48764b511c321401dad8b37d561 ******/ %feature("compactdefaultargs") SetMaxTolerance; %feature("autodoc", " Parameters @@ -228,8 +228,8 @@ Sets the maximum tolerance at which to start checking in the intersector. ") SetMaxTolerance; void SetMaxTolerance(const Standard_Real theValue); - /****************** SetNextEdge ******************/ - /**** md5 signature: c50a2707391a16a921afeeeda217e8ca ****/ + /****** BRepClass_Edge::SetNextEdge ******/ + /****** md5 signature: c50a2707391a16a921afeeeda217e8ca ******/ %feature("compactdefaultargs") SetNextEdge; %feature("autodoc", " Parameters @@ -246,8 +246,8 @@ Finds and sets the next edge for the current. ") SetNextEdge; void SetNextEdge(const TopTools_IndexedDataMapOfShapeListOfShape & theMapVE); - /****************** SetUseBndBox ******************/ - /**** md5 signature: a345a208e442f23a048168731ab1417e ****/ + /****** BRepClass_Edge::SetUseBndBox ******/ + /****** md5 signature: a345a208e442f23a048168731ab1417e ******/ %feature("compactdefaultargs") SetUseBndBox; %feature("autodoc", " Parameters @@ -264,8 +264,8 @@ Sets the status of whether we are using boxes or not. ") SetUseBndBox; void SetUseBndBox(const Standard_Boolean theValue); - /****************** UseBndBox ******************/ - /**** md5 signature: 02b68d127830fd41ee322e70833ed230 ****/ + /****** BRepClass_Edge::UseBndBox ******/ + /****** md5 signature: 02b68d127830fd41ee322e70833ed230 ******/ %feature("compactdefaultargs") UseBndBox; %feature("autodoc", "Return ------- @@ -291,8 +291,8 @@ Returns true if we are using boxes in the intersector. ****************************************/ class BRepClass_FClass2dOfFClassifier { public: - /****************** BRepClass_FClass2dOfFClassifier ******************/ - /**** md5 signature: d19d8fe9d8d32983ec914a63ccdfb452 ****/ + /****** BRepClass_FClass2dOfFClassifier::BRepClass_FClass2dOfFClassifier ******/ + /****** md5 signature: d19d8fe9d8d32983ec914a63ccdfb452 ******/ %feature("compactdefaultargs") BRepClass_FClass2dOfFClassifier; %feature("autodoc", "Return ------- @@ -304,8 +304,8 @@ Creates an undefined classifier. ") BRepClass_FClass2dOfFClassifier; BRepClass_FClass2dOfFClassifier(); - /****************** ClosestIntersection ******************/ - /**** md5 signature: 025d23acf1aa6c435dba31dbf4248fd0 ****/ + /****** BRepClass_FClass2dOfFClassifier::ClosestIntersection ******/ + /****** md5 signature: 025d23acf1aa6c435dba31dbf4248fd0 ******/ %feature("compactdefaultargs") ClosestIntersection; %feature("autodoc", "Return ------- @@ -317,8 +317,8 @@ Returns 0 if the last compared edge had no relevant intersection. else returns t ") ClosestIntersection; Standard_Integer ClosestIntersection(); - /****************** Compare ******************/ - /**** md5 signature: b424d6a228cca9b1cde54a0ef4d4799b ****/ + /****** BRepClass_FClass2dOfFClassifier::Compare ******/ + /****** md5 signature: b424d6a228cca9b1cde54a0ef4d4799b ******/ %feature("compactdefaultargs") Compare; %feature("autodoc", " Parameters @@ -336,8 +336,8 @@ Updates the classification process with the edge from the boundary. ") Compare; void Compare(const BRepClass_Edge & E, const TopAbs_Orientation Or); - /****************** Intersector ******************/ - /**** md5 signature: 8af3d3515af322223174c8018ef27775 ****/ + /****** BRepClass_FClass2dOfFClassifier::Intersector ******/ + /****** md5 signature: 8af3d3515af322223174c8018ef27775 ******/ %feature("compactdefaultargs") Intersector; %feature("autodoc", "Return ------- @@ -349,8 +349,8 @@ Returns the intersecting algorithm. ") Intersector; BRepClass_Intersector & Intersector(); - /****************** IsHeadOrEnd ******************/ - /**** md5 signature: bb302ba418a265161aeac4ed94262010 ****/ + /****** BRepClass_FClass2dOfFClassifier::IsHeadOrEnd ******/ + /****** md5 signature: bb302ba418a265161aeac4ed94262010 ******/ %feature("compactdefaultargs") IsHeadOrEnd; %feature("autodoc", "Return ------- @@ -362,8 +362,8 @@ Returns the standard_true if the closest intersection point represents head or e ") IsHeadOrEnd; Standard_Boolean IsHeadOrEnd(); - /****************** Parameter ******************/ - /**** md5 signature: ecccdeaeaa0deed24f47e61ad75d24f1 ****/ + /****** BRepClass_FClass2dOfFClassifier::Parameter ******/ + /****** md5 signature: ecccdeaeaa0deed24f47e61ad75d24f1 ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", "Return ------- @@ -375,8 +375,8 @@ Returns the current value of the parameter. ") Parameter; Standard_Real Parameter(); - /****************** Reset ******************/ - /**** md5 signature: a8c5889582c62cd16da1026d9b738b50 ****/ + /****** BRepClass_FClass2dOfFClassifier::Reset ******/ + /****** md5 signature: a8c5889582c62cd16da1026d9b738b50 ******/ %feature("compactdefaultargs") Reset; %feature("autodoc", " Parameters @@ -395,8 +395,8 @@ Starts a classification process. the point to classify is the origin of the line ") Reset; void Reset(const gp_Lin2d & L, const Standard_Real P, const Standard_Real Tol); - /****************** State ******************/ - /**** md5 signature: 927c83b1efdec797adb47eb058eddaa0 ****/ + /****** BRepClass_FClass2dOfFClassifier::State ******/ + /****** md5 signature: 927c83b1efdec797adb47eb058eddaa0 ******/ %feature("compactdefaultargs") State; %feature("autodoc", "Return ------- @@ -422,8 +422,8 @@ Returns the current state of the point. ******************************/ class BRepClass_FClassifier { public: - /****************** BRepClass_FClassifier ******************/ - /**** md5 signature: bbd41df2b8f9d5c7ae4b1c2c2b0ca106 ****/ + /****** BRepClass_FClassifier::BRepClass_FClassifier ******/ + /****** md5 signature: bbd41df2b8f9d5c7ae4b1c2c2b0ca106 ******/ %feature("compactdefaultargs") BRepClass_FClassifier; %feature("autodoc", "Return ------- @@ -435,8 +435,8 @@ Empty constructor, undefined algorithm. ") BRepClass_FClassifier; BRepClass_FClassifier(); - /****************** BRepClass_FClassifier ******************/ - /**** md5 signature: a52683ba5457715c4c8153cd3d0c762a ****/ + /****** BRepClass_FClassifier::BRepClass_FClassifier ******/ + /****** md5 signature: a52683ba5457715c4c8153cd3d0c762a ******/ %feature("compactdefaultargs") BRepClass_FClassifier; %feature("autodoc", " Parameters @@ -455,8 +455,8 @@ Creates an algorithm to classify the point p with tolerance on the face desc ") BRepClass_FClassifier; BRepClass_FClassifier(BRepClass_FaceExplorer & F, const gp_Pnt2d & P, const Standard_Real Tol); - /****************** Edge ******************/ - /**** md5 signature: bd52887a3e64f99d6944617c67174745 ****/ + /****** BRepClass_FClassifier::Edge ******/ + /****** md5 signature: bd52887a3e64f99d6944617c67174745 ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", "Return ------- @@ -468,8 +468,8 @@ Returns the edge used to determine the classification. when the state is on this ") Edge; const BRepClass_Edge & Edge(); - /****************** EdgeParameter ******************/ - /**** md5 signature: a4ccdc0e9c154705af034e3ac274511c ****/ + /****** BRepClass_FClassifier::EdgeParameter ******/ + /****** md5 signature: a4ccdc0e9c154705af034e3ac274511c ******/ %feature("compactdefaultargs") EdgeParameter; %feature("autodoc", "Return ------- @@ -481,8 +481,8 @@ Returns the parameter on edge() used to determine the classification. ") EdgeParameter; Standard_Real EdgeParameter(); - /****************** NoWires ******************/ - /**** md5 signature: 990679762274e4aefbb7c462574e4bcd ****/ + /****** BRepClass_FClassifier::NoWires ******/ + /****** md5 signature: 990679762274e4aefbb7c462574e4bcd ******/ %feature("compactdefaultargs") NoWires; %feature("autodoc", "Return ------- @@ -494,8 +494,8 @@ Returns true if the face contains no wire. the state is in. ") NoWires; Standard_Boolean NoWires(); - /****************** Perform ******************/ - /**** md5 signature: 3cd7b17096eabe50d8cc92b191abf9d7 ****/ + /****** BRepClass_FClassifier::Perform ******/ + /****** md5 signature: 3cd7b17096eabe50d8cc92b191abf9d7 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -514,8 +514,8 @@ Classify the point p with tolerance on the face described by . ") Perform; void Perform(BRepClass_FaceExplorer & F, const gp_Pnt2d & P, const Standard_Real Tol); - /****************** Position ******************/ - /**** md5 signature: 675457384dc44fc07e204a19b6850fe8 ****/ + /****** BRepClass_FClassifier::Position ******/ + /****** md5 signature: 675457384dc44fc07e204a19b6850fe8 ******/ %feature("compactdefaultargs") Position; %feature("autodoc", "Return ------- @@ -527,8 +527,8 @@ Returns the position of the point on the edge returned by edge. ") Position; IntRes2d_Position Position(); - /****************** Rejected ******************/ - /**** md5 signature: 56d604911041dd9f442bde612c88e4cd ****/ + /****** BRepClass_FClassifier::Rejected ******/ + /****** md5 signature: 56d604911041dd9f442bde612c88e4cd ******/ %feature("compactdefaultargs") Rejected; %feature("autodoc", "Return ------- @@ -540,8 +540,8 @@ Returns true when the state was computed by a rejection. the state is out. ") Rejected; Standard_Boolean Rejected(); - /****************** State ******************/ - /**** md5 signature: 927c83b1efdec797adb47eb058eddaa0 ****/ + /****** BRepClass_FClassifier::State ******/ + /****** md5 signature: 927c83b1efdec797adb47eb058eddaa0 ******/ %feature("compactdefaultargs") State; %feature("autodoc", "Return ------- @@ -567,8 +567,8 @@ Returns the result of the classification. *******************************/ class BRepClass_FaceExplorer { public: - /****************** BRepClass_FaceExplorer ******************/ - /**** md5 signature: 7ec391bc05dc26ffc180bb1023f157a1 ****/ + /****** BRepClass_FaceExplorer::BRepClass_FaceExplorer ******/ + /****** md5 signature: 7ec391bc05dc26ffc180bb1023f157a1 ******/ %feature("compactdefaultargs") BRepClass_FaceExplorer; %feature("autodoc", " Parameters @@ -585,8 +585,8 @@ No available documentation. ") BRepClass_FaceExplorer; BRepClass_FaceExplorer(const TopoDS_Face & F); - /****************** CheckPoint ******************/ - /**** md5 signature: 6dc400c8511fac8549e1a227e33ff0eb ****/ + /****** BRepClass_FaceExplorer::CheckPoint ******/ + /****** md5 signature: 6dc400c8511fac8549e1a227e33ff0eb ******/ %feature("compactdefaultargs") CheckPoint; %feature("autodoc", " Parameters @@ -603,8 +603,8 @@ Checks the point and change its coords if it is located too far from the boundin ") CheckPoint; Standard_Boolean CheckPoint(gp_Pnt2d & thePoint); - /****************** CurrentEdge ******************/ - /**** md5 signature: 612321e6d88f3d95d82e61c0e149151b ****/ + /****** BRepClass_FaceExplorer::CurrentEdge ******/ + /****** md5 signature: 612321e6d88f3d95d82e61c0e149151b ******/ %feature("compactdefaultargs") CurrentEdge; %feature("autodoc", " Parameters @@ -621,8 +621,8 @@ Current edge in current wire and its orientation. ") CurrentEdge; void CurrentEdge(BRepClass_Edge & E, TopAbs_Orientation &OutValue); - /****************** InitEdges ******************/ - /**** md5 signature: 91bbc4c29d3c5c1c40b8c41a10bba4ae ****/ + /****** BRepClass_FaceExplorer::InitEdges ******/ + /****** md5 signature: 91bbc4c29d3c5c1c40b8c41a10bba4ae ******/ %feature("compactdefaultargs") InitEdges; %feature("autodoc", "Return ------- @@ -634,8 +634,8 @@ Starts an exploration of the edges of the current wire. ") InitEdges; void InitEdges(); - /****************** InitWires ******************/ - /**** md5 signature: ebff8f083b93df212af42dee4111419b ****/ + /****** BRepClass_FaceExplorer::InitWires ******/ + /****** md5 signature: ebff8f083b93df212af42dee4111419b ******/ %feature("compactdefaultargs") InitWires; %feature("autodoc", "Return ------- @@ -647,8 +647,8 @@ Starts an exploration of the wires. ") InitWires; void InitWires(); - /****************** MaxTolerance ******************/ - /**** md5 signature: 34f00536788c474152c6e8ed59dfb31e ****/ + /****** BRepClass_FaceExplorer::MaxTolerance ******/ + /****** md5 signature: 34f00536788c474152c6e8ed59dfb31e ******/ %feature("compactdefaultargs") MaxTolerance; %feature("autodoc", "Return ------- @@ -660,8 +660,8 @@ Returns the maximum tolerance. ") MaxTolerance; Standard_Real MaxTolerance(); - /****************** MoreEdges ******************/ - /**** md5 signature: ae9c44c48922d7def77564a0d6f2c592 ****/ + /****** BRepClass_FaceExplorer::MoreEdges ******/ + /****** md5 signature: ae9c44c48922d7def77564a0d6f2c592 ******/ %feature("compactdefaultargs") MoreEdges; %feature("autodoc", "Return ------- @@ -673,8 +673,8 @@ Returns true if there is a current edge. ") MoreEdges; Standard_Boolean MoreEdges(); - /****************** MoreWires ******************/ - /**** md5 signature: b99e6f15aacc2cac79d7fb8f92595589 ****/ + /****** BRepClass_FaceExplorer::MoreWires ******/ + /****** md5 signature: b99e6f15aacc2cac79d7fb8f92595589 ******/ %feature("compactdefaultargs") MoreWires; %feature("autodoc", "Return ------- @@ -686,8 +686,8 @@ Returns true if there is a current wire. ") MoreWires; Standard_Boolean MoreWires(); - /****************** NextEdge ******************/ - /**** md5 signature: 8103c946a7f7c0a3d885514a8a740502 ****/ + /****** BRepClass_FaceExplorer::NextEdge ******/ + /****** md5 signature: 8103c946a7f7c0a3d885514a8a740502 ******/ %feature("compactdefaultargs") NextEdge; %feature("autodoc", "Return ------- @@ -699,8 +699,8 @@ Sets the explorer to the next edge. ") NextEdge; void NextEdge(); - /****************** NextWire ******************/ - /**** md5 signature: 11b92f2dcc830f98b32d40bd651c0b28 ****/ + /****** BRepClass_FaceExplorer::NextWire ******/ + /****** md5 signature: 11b92f2dcc830f98b32d40bd651c0b28 ******/ %feature("compactdefaultargs") NextWire; %feature("autodoc", "Return ------- @@ -712,8 +712,8 @@ Sets the explorer to the next wire. ") NextWire; void NextWire(); - /****************** OtherSegment ******************/ - /**** md5 signature: 27490dca9d2d53354d092dd2a3334ce2 ****/ + /****** BRepClass_FaceExplorer::OtherSegment ******/ + /****** md5 signature: 27490dca9d2d53354d092dd2a3334ce2 ******/ %feature("compactdefaultargs") OtherSegment; %feature("autodoc", " Parameters @@ -731,8 +731,8 @@ Returns in , a segment having at least one intersection with the face b ") OtherSegment; Standard_Boolean OtherSegment(const gp_Pnt2d & P, gp_Lin2d & L, Standard_Real &OutValue); - /****************** Reject ******************/ - /**** md5 signature: a145789dcdf45149993e111ed41174ea ****/ + /****** BRepClass_FaceExplorer::Reject ******/ + /****** md5 signature: a145789dcdf45149993e111ed41174ea ******/ %feature("compactdefaultargs") Reject; %feature("autodoc", " Parameters @@ -749,8 +749,8 @@ Should return true if the point is outside a bounding volume of the face. ") Reject; Standard_Boolean Reject(const gp_Pnt2d & P); - /****************** RejectEdge ******************/ - /**** md5 signature: ac46be93532b1dfcf60e7e385f949d17 ****/ + /****** BRepClass_FaceExplorer::RejectEdge ******/ + /****** md5 signature: ac46be93532b1dfcf60e7e385f949d17 ******/ %feature("compactdefaultargs") RejectEdge; %feature("autodoc", " Parameters @@ -768,8 +768,8 @@ Returns true if the edge bounding volume does not intersect the segment. ") RejectEdge; Standard_Boolean RejectEdge(const gp_Lin2d & L, const Standard_Real Par); - /****************** RejectWire ******************/ - /**** md5 signature: a3caa1d04bab721ad3228acbea576ecb ****/ + /****** BRepClass_FaceExplorer::RejectWire ******/ + /****** md5 signature: a3caa1d04bab721ad3228acbea576ecb ******/ %feature("compactdefaultargs") RejectWire; %feature("autodoc", " Parameters @@ -787,8 +787,8 @@ Returns true if the wire bounding volume does not intersect the segment. ") RejectWire; Standard_Boolean RejectWire(const gp_Lin2d & L, const Standard_Real Par); - /****************** Segment ******************/ - /**** md5 signature: 5eb3735a7b24946e69be33f96fb9d7b5 ****/ + /****** BRepClass_FaceExplorer::Segment ******/ + /****** md5 signature: 5eb3735a7b24946e69be33f96fb9d7b5 ******/ %feature("compactdefaultargs") Segment; %feature("autodoc", " Parameters @@ -806,8 +806,8 @@ Returns in , a segment having at least one intersection with the face b ") Segment; Standard_Boolean Segment(const gp_Pnt2d & P, gp_Lin2d & L, Standard_Real &OutValue); - /****************** SetMaxTolerance ******************/ - /**** md5 signature: d9b5f48764b511c321401dad8b37d561 ****/ + /****** BRepClass_FaceExplorer::SetMaxTolerance ******/ + /****** md5 signature: d9b5f48764b511c321401dad8b37d561 ******/ %feature("compactdefaultargs") SetMaxTolerance; %feature("autodoc", " Parameters @@ -824,8 +824,8 @@ Sets the maximum tolerance at which to start checking in the intersector. ") SetMaxTolerance; void SetMaxTolerance(const Standard_Real theValue); - /****************** SetUseBndBox ******************/ - /**** md5 signature: a345a208e442f23a048168731ab1417e ****/ + /****** BRepClass_FaceExplorer::SetUseBndBox ******/ + /****** md5 signature: a345a208e442f23a048168731ab1417e ******/ %feature("compactdefaultargs") SetUseBndBox; %feature("autodoc", " Parameters @@ -842,8 +842,8 @@ Sets the status of whether we are using boxes or not. ") SetUseBndBox; void SetUseBndBox(const Standard_Boolean theValue); - /****************** UseBndBox ******************/ - /**** md5 signature: 02b68d127830fd41ee322e70833ed230 ****/ + /****** BRepClass_FaceExplorer::UseBndBox ******/ + /****** md5 signature: 02b68d127830fd41ee322e70833ed230 ******/ %feature("compactdefaultargs") UseBndBox; %feature("autodoc", "Return ------- @@ -869,8 +869,8 @@ Returns true if we are using boxes in the intersector. ****************************************/ class BRepClass_FacePassiveClassifier { public: - /****************** BRepClass_FacePassiveClassifier ******************/ - /**** md5 signature: 802f6ac24977e4faa647825a59cd29e0 ****/ + /****** BRepClass_FacePassiveClassifier::BRepClass_FacePassiveClassifier ******/ + /****** md5 signature: 802f6ac24977e4faa647825a59cd29e0 ******/ %feature("compactdefaultargs") BRepClass_FacePassiveClassifier; %feature("autodoc", "Return ------- @@ -882,8 +882,8 @@ Creates an undefined classifier. ") BRepClass_FacePassiveClassifier; BRepClass_FacePassiveClassifier(); - /****************** ClosestIntersection ******************/ - /**** md5 signature: 025d23acf1aa6c435dba31dbf4248fd0 ****/ + /****** BRepClass_FacePassiveClassifier::ClosestIntersection ******/ + /****** md5 signature: 025d23acf1aa6c435dba31dbf4248fd0 ******/ %feature("compactdefaultargs") ClosestIntersection; %feature("autodoc", "Return ------- @@ -895,8 +895,8 @@ Returns 0 if the last compared edge had no relevant intersection. else returns t ") ClosestIntersection; Standard_Integer ClosestIntersection(); - /****************** Compare ******************/ - /**** md5 signature: b424d6a228cca9b1cde54a0ef4d4799b ****/ + /****** BRepClass_FacePassiveClassifier::Compare ******/ + /****** md5 signature: b424d6a228cca9b1cde54a0ef4d4799b ******/ %feature("compactdefaultargs") Compare; %feature("autodoc", " Parameters @@ -914,8 +914,8 @@ Updates the classification process with the edge from the boundary. ") Compare; void Compare(const BRepClass_Edge & E, const TopAbs_Orientation Or); - /****************** Intersector ******************/ - /**** md5 signature: 8af3d3515af322223174c8018ef27775 ****/ + /****** BRepClass_FacePassiveClassifier::Intersector ******/ + /****** md5 signature: 8af3d3515af322223174c8018ef27775 ******/ %feature("compactdefaultargs") Intersector; %feature("autodoc", "Return ------- @@ -927,8 +927,8 @@ Returns the intersecting algorithm. ") Intersector; BRepClass_Intersector & Intersector(); - /****************** IsHeadOrEnd ******************/ - /**** md5 signature: bb302ba418a265161aeac4ed94262010 ****/ + /****** BRepClass_FacePassiveClassifier::IsHeadOrEnd ******/ + /****** md5 signature: bb302ba418a265161aeac4ed94262010 ******/ %feature("compactdefaultargs") IsHeadOrEnd; %feature("autodoc", "Return ------- @@ -940,8 +940,8 @@ Returns the standard_true if the closest intersection point represents head or e ") IsHeadOrEnd; Standard_Boolean IsHeadOrEnd(); - /****************** Parameter ******************/ - /**** md5 signature: ecccdeaeaa0deed24f47e61ad75d24f1 ****/ + /****** BRepClass_FacePassiveClassifier::Parameter ******/ + /****** md5 signature: ecccdeaeaa0deed24f47e61ad75d24f1 ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", "Return ------- @@ -953,8 +953,8 @@ Returns the current value of the parameter. ") Parameter; Standard_Real Parameter(); - /****************** Reset ******************/ - /**** md5 signature: a8c5889582c62cd16da1026d9b738b50 ****/ + /****** BRepClass_FacePassiveClassifier::Reset ******/ + /****** md5 signature: a8c5889582c62cd16da1026d9b738b50 ******/ %feature("compactdefaultargs") Reset; %feature("autodoc", " Parameters @@ -973,8 +973,8 @@ Starts a classification process. the point to classify is the origin of the line ") Reset; void Reset(const gp_Lin2d & L, const Standard_Real P, const Standard_Real Tol); - /****************** State ******************/ - /**** md5 signature: 927c83b1efdec797adb47eb058eddaa0 ****/ + /****** BRepClass_FacePassiveClassifier::State ******/ + /****** md5 signature: 927c83b1efdec797adb47eb058eddaa0 ******/ %feature("compactdefaultargs") State; %feature("autodoc", "Return ------- @@ -1000,8 +1000,8 @@ Returns the current state of the point. ******************************/ class BRepClass_Intersector : public Geom2dInt_IntConicCurveOfGInter { public: - /****************** BRepClass_Intersector ******************/ - /**** md5 signature: a88e9c7d891ba6eb26fc5a5e12d952ea ****/ + /****** BRepClass_Intersector::BRepClass_Intersector ******/ + /****** md5 signature: a88e9c7d891ba6eb26fc5a5e12d952ea ******/ %feature("compactdefaultargs") BRepClass_Intersector; %feature("autodoc", "Return ------- @@ -1013,8 +1013,8 @@ No available documentation. ") BRepClass_Intersector; BRepClass_Intersector(); - /****************** LocalGeometry ******************/ - /**** md5 signature: 70935b52098ea68ba72383cea6594aad ****/ + /****** BRepClass_Intersector::LocalGeometry ******/ + /****** md5 signature: 70935b52098ea68ba72383cea6594aad ******/ %feature("compactdefaultargs") LocalGeometry; %feature("autodoc", " Parameters @@ -1034,8 +1034,8 @@ Returns in , and the tangent, normal and curvature of the edge at ") LocalGeometry; void LocalGeometry(const BRepClass_Edge & E, const Standard_Real U, gp_Dir2d & T, gp_Dir2d & N, Standard_Real &OutValue); - /****************** Perform ******************/ - /**** md5 signature: 5249f9e060959ae45003d92383e6b6b7 ****/ + /****** BRepClass_Intersector::Perform ******/ + /****** md5 signature: 5249f9e060959ae45003d92383e6b6b7 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1069,8 +1069,8 @@ Intersect the line segment and the edge. *********************************/ class BRepClass_FaceClassifier : public BRepClass_FClassifier { public: - /****************** BRepClass_FaceClassifier ******************/ - /**** md5 signature: 3aeb4d4449ed7e7167a0e7f4bbb500a3 ****/ + /****** BRepClass_FaceClassifier::BRepClass_FaceClassifier ******/ + /****** md5 signature: 3aeb4d4449ed7e7167a0e7f4bbb500a3 ******/ %feature("compactdefaultargs") BRepClass_FaceClassifier; %feature("autodoc", "Return ------- @@ -1082,8 +1082,8 @@ Empty constructor, undefined algorithm. ") BRepClass_FaceClassifier; BRepClass_FaceClassifier(); - /****************** BRepClass_FaceClassifier ******************/ - /**** md5 signature: 9f90975def9132fa18342a3e56ae4e4a ****/ + /****** BRepClass_FaceClassifier::BRepClass_FaceClassifier ******/ + /****** md5 signature: 9f90975def9132fa18342a3e56ae4e4a ******/ %feature("compactdefaultargs") BRepClass_FaceClassifier; %feature("autodoc", " Parameters @@ -1102,8 +1102,8 @@ Creates an algorithm to classify the point p with tolerance on the face desc ") BRepClass_FaceClassifier; BRepClass_FaceClassifier(BRepClass_FaceExplorer & F, const gp_Pnt2d & P, const Standard_Real Tol); - /****************** BRepClass_FaceClassifier ******************/ - /**** md5 signature: ba4f6fe23b613f1af759144923fac8b6 ****/ + /****** BRepClass_FaceClassifier::BRepClass_FaceClassifier ******/ + /****** md5 signature: ba4f6fe23b613f1af759144923fac8b6 ******/ %feature("compactdefaultargs") BRepClass_FaceClassifier; %feature("autodoc", " Parameters @@ -1124,8 +1124,8 @@ Creates an algorithm to classify the point p with tolerance on the face . ") BRepClass_FaceClassifier; BRepClass_FaceClassifier(const TopoDS_Face & theF, const gp_Pnt2d & theP, const Standard_Real theTol, const Standard_Boolean theUseBndBox = Standard_False, const Standard_Real theGapCheckTol = 0.1); - /****************** BRepClass_FaceClassifier ******************/ - /**** md5 signature: 8cd88928fae7d28c32ff4af3cafa3435 ****/ + /****** BRepClass_FaceClassifier::BRepClass_FaceClassifier ******/ + /****** md5 signature: 8cd88928fae7d28c32ff4af3cafa3435 ******/ %feature("compactdefaultargs") BRepClass_FaceClassifier; %feature("autodoc", " Parameters @@ -1146,8 +1146,8 @@ Creates an algorithm to classify the point p with tolerance on the face . ") BRepClass_FaceClassifier; BRepClass_FaceClassifier(const TopoDS_Face & theF, const gp_Pnt & theP, const Standard_Real theTol, const Standard_Boolean theUseBndBox = Standard_False, const Standard_Real theGapCheckTol = 0.1); - /****************** Perform ******************/ - /**** md5 signature: 3ced0bf5a7958aa636c9d28b2159163d ****/ + /****** BRepClass_FaceClassifier::Perform ******/ + /****** md5 signature: 3ced0bf5a7958aa636c9d28b2159163d ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1168,8 +1168,8 @@ Classify the point p with tolerance on the face described by . recommende ") Perform; void Perform(const TopoDS_Face & theF, const gp_Pnt2d & theP, const Standard_Real theTol, const Standard_Boolean theUseBndBox = Standard_False, const Standard_Real theGapCheckTol = 0.1); - /****************** Perform ******************/ - /**** md5 signature: 5d29b2c64e703bbc79782bcb18b7f6fa ****/ + /****** BRepClass_FaceClassifier::Perform ******/ + /****** md5 signature: 5d29b2c64e703bbc79782bcb18b7f6fa ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BRepClass3d.i b/src/SWIG_files/wrapper/BRepClass3d.i index d803a54ad..4fe32700c 100644 --- a/src/SWIG_files/wrapper/BRepClass3d.i +++ b/src/SWIG_files/wrapper/BRepClass3d.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPCLASS3DDOCSTRING "BRepClass3d module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepclass3d.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepclass3d.html" %enddef %module (package="OCC.Core", docstring=BREPCLASS3DDOCSTRING) BRepClass3d @@ -111,8 +111,8 @@ typedef NCollection_DataMap. returns a null shell if has no outer sh **********************************/ class BRepClass3d_Intersector3d { public: - /****************** BRepClass3d_Intersector3d ******************/ - /**** md5 signature: 5313248e9a4d9e528b75267702000c25 ****/ + /****** BRepClass3d_Intersector3d::BRepClass3d_Intersector3d ******/ + /****** md5 signature: 5313248e9a4d9e528b75267702000c25 ******/ %feature("compactdefaultargs") BRepClass3d_Intersector3d; %feature("autodoc", "Return ------- @@ -156,8 +156,8 @@ Empty constructor. ") BRepClass3d_Intersector3d; BRepClass3d_Intersector3d(); - /****************** Face ******************/ - /**** md5 signature: 91e216ebeb76e55c73eb9e179241a6ff ****/ + /****** BRepClass3d_Intersector3d::Face ******/ + /****** md5 signature: 91e216ebeb76e55c73eb9e179241a6ff ******/ %feature("compactdefaultargs") Face; %feature("autodoc", "Return ------- @@ -169,8 +169,8 @@ Returns the significant face used to determine the intersection. ") Face; const TopoDS_Face Face(); - /****************** HasAPoint ******************/ - /**** md5 signature: 95bdb18305d0dc0e9acb6e3a09a77c66 ****/ + /****** BRepClass3d_Intersector3d::HasAPoint ******/ + /****** md5 signature: 95bdb18305d0dc0e9acb6e3a09a77c66 ******/ %feature("compactdefaultargs") HasAPoint; %feature("autodoc", "Return ------- @@ -182,8 +182,8 @@ True is returned if a point has been found. ") HasAPoint; Standard_Boolean HasAPoint(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepClass3d_Intersector3d::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -195,8 +195,8 @@ True is returned when the intersection have been computed. ") IsDone; Standard_Boolean IsDone(); - /****************** Perform ******************/ - /**** md5 signature: fbf207842cdabc9dffc461de3afdbc7f ****/ + /****** BRepClass3d_Intersector3d::Perform ******/ + /****** md5 signature: fbf207842cdabc9dffc461de3afdbc7f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -216,8 +216,8 @@ Perform the intersection between the segment l(0) ... l(prm) and the shape . ") Perform; void Perform(const gp_Lin & L, const Standard_Real Prm, const Standard_Real Tol, const TopoDS_Face & F); - /****************** Pnt ******************/ - /**** md5 signature: c0bafeed50f4eebb5964e2bf8520bf90 ****/ + /****** BRepClass3d_Intersector3d::Pnt ******/ + /****** md5 signature: c0bafeed50f4eebb5964e2bf8520bf90 ******/ %feature("compactdefaultargs") Pnt; %feature("autodoc", "Return ------- @@ -229,8 +229,8 @@ Returns the geometric point of the intersection between the line and the surface ") Pnt; const gp_Pnt Pnt(); - /****************** State ******************/ - /**** md5 signature: 927c83b1efdec797adb47eb058eddaa0 ****/ + /****** BRepClass3d_Intersector3d::State ******/ + /****** md5 signature: 927c83b1efdec797adb47eb058eddaa0 ******/ %feature("compactdefaultargs") State; %feature("autodoc", "Return ------- @@ -242,8 +242,8 @@ Returns the state of the point on the face. the values can be either topabs_in ( ") State; TopAbs_State State(); - /****************** Transition ******************/ - /**** md5 signature: bd528dc9c78a60a5b26409b8cf4f3afe ****/ + /****** BRepClass3d_Intersector3d::Transition ******/ + /****** md5 signature: bd528dc9c78a60a5b26409b8cf4f3afe ******/ %feature("compactdefaultargs") Transition; %feature("autodoc", "Return ------- @@ -255,8 +255,8 @@ Returns the transition of the line on the surface. ") Transition; IntCurveSurface_TransitionOnCurve Transition(); - /****************** UParameter ******************/ - /**** md5 signature: 5a3c6fef4fc1a6f599cc725a940f8581 ****/ + /****** BRepClass3d_Intersector3d::UParameter ******/ + /****** md5 signature: 5a3c6fef4fc1a6f599cc725a940f8581 ******/ %feature("compactdefaultargs") UParameter; %feature("autodoc", "Return ------- @@ -268,8 +268,8 @@ Returns the u parameter of the intersection point on the surface. ") UParameter; Standard_Real UParameter(); - /****************** VParameter ******************/ - /**** md5 signature: 5b56cd11dcb65aaedb7fac8351dbfbc8 ****/ + /****** BRepClass3d_Intersector3d::VParameter ******/ + /****** md5 signature: 5b56cd11dcb65aaedb7fac8351dbfbc8 ******/ %feature("compactdefaultargs") VParameter; %feature("autodoc", "Return ------- @@ -281,8 +281,8 @@ Returns the v parameter of the intersection point on the surface. ") VParameter; Standard_Real VParameter(); - /****************** WParameter ******************/ - /**** md5 signature: a33035afb8654e081d0823499e659e46 ****/ + /****** BRepClass3d_Intersector3d::WParameter ******/ + /****** md5 signature: a33035afb8654e081d0823499e659e46 ******/ %feature("compactdefaultargs") WParameter; %feature("autodoc", "Return ------- @@ -308,8 +308,8 @@ Returns the parameter of the intersection point on the line. ********************************/ class BRepClass3d_SClassifier { public: - /****************** BRepClass3d_SClassifier ******************/ - /**** md5 signature: 0e43e1bcc9eb18eda4d1709f9787e45f ****/ + /****** BRepClass3d_SClassifier::BRepClass3d_SClassifier ******/ + /****** md5 signature: 0e43e1bcc9eb18eda4d1709f9787e45f ******/ %feature("compactdefaultargs") BRepClass3d_SClassifier; %feature("autodoc", "Return ------- @@ -321,8 +321,8 @@ Empty constructor. ") BRepClass3d_SClassifier; BRepClass3d_SClassifier(); - /****************** BRepClass3d_SClassifier ******************/ - /**** md5 signature: 0e7fbee80d781c22f36939e8cf1adb7e ****/ + /****** BRepClass3d_SClassifier::BRepClass3d_SClassifier ******/ + /****** md5 signature: 0e7fbee80d781c22f36939e8cf1adb7e ******/ %feature("compactdefaultargs") BRepClass3d_SClassifier; %feature("autodoc", " Parameters @@ -341,8 +341,8 @@ Constructor to classify the point p with the tolerance tol on the solid s. ") BRepClass3d_SClassifier; BRepClass3d_SClassifier(BRepClass3d_SolidExplorer & S, const gp_Pnt & P, const Standard_Real Tol); - /****************** Face ******************/ - /**** md5 signature: 64c75db1e9c1285068e9dd474618f74f ****/ + /****** BRepClass3d_SClassifier::Face ******/ + /****** md5 signature: 64c75db1e9c1285068e9dd474618f74f ******/ %feature("compactdefaultargs") Face; %feature("autodoc", "Return ------- @@ -354,8 +354,8 @@ Returns the face used to determine the classification. when the state is on, thi ") Face; TopoDS_Face Face(); - /****************** IsOnAFace ******************/ - /**** md5 signature: e7c1af4ae72eee2a9b46452df227e5ed ****/ + /****** BRepClass3d_SClassifier::IsOnAFace ******/ + /****** md5 signature: e7c1af4ae72eee2a9b46452df227e5ed ******/ %feature("compactdefaultargs") IsOnAFace; %feature("autodoc", "Return ------- @@ -367,8 +367,8 @@ Returns true when the point is a point of a face. ") IsOnAFace; Standard_Boolean IsOnAFace(); - /****************** Perform ******************/ - /**** md5 signature: 9c6284684be6a59e66779a905c370b7a ****/ + /****** BRepClass3d_SClassifier::Perform ******/ + /****** md5 signature: 9c6284684be6a59e66779a905c370b7a ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -387,8 +387,8 @@ Classify the point p with the tolerance tol on the solid s. ") Perform; void Perform(BRepClass3d_SolidExplorer & S, const gp_Pnt & P, const Standard_Real Tol); - /****************** PerformInfinitePoint ******************/ - /**** md5 signature: b38a28b443037933c522597a4245e901 ****/ + /****** BRepClass3d_SClassifier::PerformInfinitePoint ******/ + /****** md5 signature: b38a28b443037933c522597a4245e901 ******/ %feature("compactdefaultargs") PerformInfinitePoint; %feature("autodoc", " Parameters @@ -406,8 +406,8 @@ Classify an infinite point with the tolerance tol on the solid s. ") PerformInfinitePoint; void PerformInfinitePoint(BRepClass3d_SolidExplorer & S, const Standard_Real Tol); - /****************** Rejected ******************/ - /**** md5 signature: 56d604911041dd9f442bde612c88e4cd ****/ + /****** BRepClass3d_SClassifier::Rejected ******/ + /****** md5 signature: 56d604911041dd9f442bde612c88e4cd ******/ %feature("compactdefaultargs") Rejected; %feature("autodoc", "Return ------- @@ -419,8 +419,8 @@ Returns true if the classification has been computed by rejection. the state is ") Rejected; Standard_Boolean Rejected(); - /****************** State ******************/ - /**** md5 signature: 927c83b1efdec797adb47eb058eddaa0 ****/ + /****** BRepClass3d_SClassifier::State ******/ + /****** md5 signature: 927c83b1efdec797adb47eb058eddaa0 ******/ %feature("compactdefaultargs") State; %feature("autodoc", "Return ------- @@ -446,8 +446,8 @@ Returns the result of the classification. **********************************/ class BRepClass3d_SolidExplorer { public: - /****************** BRepClass3d_SolidExplorer ******************/ - /**** md5 signature: 2cb6e9ade85fff9fe417a5fe5c1853ef ****/ + /****** BRepClass3d_SolidExplorer::BRepClass3d_SolidExplorer ******/ + /****** md5 signature: 2cb6e9ade85fff9fe417a5fe5c1853ef ******/ %feature("compactdefaultargs") BRepClass3d_SolidExplorer; %feature("autodoc", "Return ------- @@ -459,8 +459,8 @@ No available documentation. ") BRepClass3d_SolidExplorer; BRepClass3d_SolidExplorer(); - /****************** BRepClass3d_SolidExplorer ******************/ - /**** md5 signature: 4fbcac149406b40fbabba612a552e1fd ****/ + /****** BRepClass3d_SolidExplorer::BRepClass3d_SolidExplorer ******/ + /****** md5 signature: 4fbcac149406b40fbabba612a552e1fd ******/ %feature("compactdefaultargs") BRepClass3d_SolidExplorer; %feature("autodoc", " Parameters @@ -477,8 +477,8 @@ No available documentation. ") BRepClass3d_SolidExplorer; BRepClass3d_SolidExplorer(const TopoDS_Shape & S); - /****************** Box ******************/ - /**** md5 signature: 7c4ea237507e51916495e768089f878e ****/ + /****** BRepClass3d_SolidExplorer::Box ******/ + /****** md5 signature: 7c4ea237507e51916495e768089f878e ******/ %feature("compactdefaultargs") Box; %feature("autodoc", "Return ------- @@ -490,8 +490,8 @@ No available documentation. ") Box; const Bnd_Box & Box(); - /****************** CurrentFace ******************/ - /**** md5 signature: 88a3d5d94862043bde89d78000693450 ****/ + /****** BRepClass3d_SolidExplorer::CurrentFace ******/ + /****** md5 signature: 88a3d5d94862043bde89d78000693450 ******/ %feature("compactdefaultargs") CurrentFace; %feature("autodoc", "Return ------- @@ -503,8 +503,8 @@ Returns the current face. ") CurrentFace; TopoDS_Face CurrentFace(); - /****************** CurrentShell ******************/ - /**** md5 signature: 16e51d9904504dd5dccd12b1a05b6190 ****/ + /****** BRepClass3d_SolidExplorer::CurrentShell ******/ + /****** md5 signature: 16e51d9904504dd5dccd12b1a05b6190 ******/ %feature("compactdefaultargs") CurrentShell; %feature("autodoc", "Return ------- @@ -516,8 +516,8 @@ Returns the current shell. ") CurrentShell; TopoDS_Shell CurrentShell(); - /****************** Destroy ******************/ - /**** md5 signature: 73111f72f4ab0474eb2cfbd7e4af4e1a ****/ + /****** BRepClass3d_SolidExplorer::Destroy ******/ + /****** md5 signature: 73111f72f4ab0474eb2cfbd7e4af4e1a ******/ %feature("compactdefaultargs") Destroy; %feature("autodoc", "Return ------- @@ -529,8 +529,8 @@ No available documentation. ") Destroy; void Destroy(); - /****************** DumpSegment ******************/ - /**** md5 signature: 956e65b65651fa5abd6d4e99a756a224 ****/ + /****** BRepClass3d_SolidExplorer::DumpSegment ******/ + /****** md5 signature: 956e65b65651fa5abd6d4e99a756a224 ******/ %feature("compactdefaultargs") DumpSegment; %feature("autodoc", " Parameters @@ -550,8 +550,8 @@ No available documentation. ") DumpSegment; virtual void DumpSegment(const gp_Pnt & P, const gp_Lin & L, const Standard_Real Par, const TopAbs_State S); - /****************** FindAPointInTheFace ******************/ - /**** md5 signature: 017b38099efc4045694c9c0eec7a0305 ****/ + /****** BRepClass3d_SolidExplorer::FindAPointInTheFace ******/ + /****** md5 signature: 017b38099efc4045694c9c0eec7a0305 ******/ %feature("compactdefaultargs") FindAPointInTheFace; %feature("autodoc", " Parameters @@ -569,8 +569,8 @@ Compute a point p in the face f. param is a real in ]0,1[ and is used to initial ") FindAPointInTheFace; static Standard_Boolean FindAPointInTheFace(const TopoDS_Face & F, gp_Pnt & P, Standard_Real &OutValue); - /****************** FindAPointInTheFace ******************/ - /**** md5 signature: cfa5d85e3e48ef9c6fa4b8a92d14a8e3 ****/ + /****** BRepClass3d_SolidExplorer::FindAPointInTheFace ******/ + /****** md5 signature: cfa5d85e3e48ef9c6fa4b8a92d14a8e3 ******/ %feature("compactdefaultargs") FindAPointInTheFace; %feature("autodoc", " Parameters @@ -590,8 +590,8 @@ No available documentation. ") FindAPointInTheFace; static Standard_Boolean FindAPointInTheFace(const TopoDS_Face & F, gp_Pnt & P, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** FindAPointInTheFace ******************/ - /**** md5 signature: c28fe2e7cc35377cd66ce9290933d0a3 ****/ + /****** BRepClass3d_SolidExplorer::FindAPointInTheFace ******/ + /****** md5 signature: c28fe2e7cc35377cd66ce9290933d0a3 ******/ %feature("compactdefaultargs") FindAPointInTheFace; %feature("autodoc", " Parameters @@ -613,8 +613,8 @@ No available documentation. ") FindAPointInTheFace; static Standard_Boolean FindAPointInTheFace(const TopoDS_Face & F, gp_Pnt & P, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue, gp_Vec & theVecD1U, gp_Vec & theVecD1V); - /****************** FindAPointInTheFace ******************/ - /**** md5 signature: 6c69107d08aa717df4761c1ae3a12191 ****/ + /****** BRepClass3d_SolidExplorer::FindAPointInTheFace ******/ + /****** md5 signature: 6c69107d08aa717df4761c1ae3a12191 ******/ %feature("compactdefaultargs") FindAPointInTheFace; %feature("autodoc", " Parameters @@ -633,8 +633,8 @@ No available documentation. ") FindAPointInTheFace; static Standard_Boolean FindAPointInTheFace(const TopoDS_Face & F, gp_Pnt & P, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** FindAPointInTheFace ******************/ - /**** md5 signature: 947dd7c60afdf4e19b5af7c8c915c5a4 ****/ + /****** BRepClass3d_SolidExplorer::FindAPointInTheFace ******/ + /****** md5 signature: 947dd7c60afdf4e19b5af7c8c915c5a4 ******/ %feature("compactdefaultargs") FindAPointInTheFace; %feature("autodoc", " Parameters @@ -652,8 +652,8 @@ No available documentation. ") FindAPointInTheFace; static Standard_Boolean FindAPointInTheFace(const TopoDS_Face & F, gp_Pnt & P); - /****************** FindAPointInTheFace ******************/ - /**** md5 signature: 1a53cc75214db16eaf466520aec6f0cf ****/ + /****** BRepClass3d_SolidExplorer::FindAPointInTheFace ******/ + /****** md5 signature: 1a53cc75214db16eaf466520aec6f0cf ******/ %feature("compactdefaultargs") FindAPointInTheFace; %feature("autodoc", " Parameters @@ -671,8 +671,8 @@ No available documentation. ") FindAPointInTheFace; static Standard_Boolean FindAPointInTheFace(const TopoDS_Face & F, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** GetFaceSegmentIndex ******************/ - /**** md5 signature: 83baeb3358902c7f4be1cb4a7cc78576 ****/ + /****** BRepClass3d_SolidExplorer::GetFaceSegmentIndex ******/ + /****** md5 signature: 83baeb3358902c7f4be1cb4a7cc78576 ******/ %feature("compactdefaultargs") GetFaceSegmentIndex; %feature("autodoc", "Return ------- @@ -684,8 +684,8 @@ Returns the index of face for which last segment is calculated. ") GetFaceSegmentIndex; Standard_Integer GetFaceSegmentIndex(); - /****************** GetMapEV ******************/ - /**** md5 signature: 9321b6d327f7742e505f8eef3f9d8710 ****/ + /****** BRepClass3d_SolidExplorer::GetMapEV ******/ + /****** md5 signature: 9321b6d327f7742e505f8eef3f9d8710 ******/ %feature("compactdefaultargs") GetMapEV; %feature("autodoc", "Return ------- @@ -697,8 +697,8 @@ Return edge/vertices map for current shape. ") GetMapEV; const TopTools_IndexedMapOfShape & GetMapEV(); - /****************** GetShape ******************/ - /**** md5 signature: 68adf76e3cbb4c2e8340f398e62eb4da ****/ + /****** BRepClass3d_SolidExplorer::GetShape ******/ + /****** md5 signature: 68adf76e3cbb4c2e8340f398e62eb4da ******/ %feature("compactdefaultargs") GetShape; %feature("autodoc", "Return ------- @@ -710,8 +710,8 @@ No available documentation. ") GetShape; const TopoDS_Shape GetShape(); - /****************** GetTree ******************/ - /**** md5 signature: 8b49ac1118352d12ae778510be4c79fc ****/ + /****** BRepClass3d_SolidExplorer::GetTree ******/ + /****** md5 signature: 8b49ac1118352d12ae778510be4c79fc ******/ %feature("compactdefaultargs") GetTree; %feature("autodoc", "Return ------- @@ -723,8 +723,8 @@ Return ub-tree instance which is used for edge / vertex checks. ") GetTree; const BRepClass3d_BndBoxTree & GetTree(); - /****************** InitFace ******************/ - /**** md5 signature: 0e969d0225b2576ac55e2fb0e7a91460 ****/ + /****** BRepClass3d_SolidExplorer::InitFace ******/ + /****** md5 signature: 0e969d0225b2576ac55e2fb0e7a91460 ******/ %feature("compactdefaultargs") InitFace; %feature("autodoc", "Return ------- @@ -736,8 +736,8 @@ Starts an exploration of the faces of the current shell. ") InitFace; void InitFace(); - /****************** InitShape ******************/ - /**** md5 signature: d9bc37c7ee2a5ff0f8819cf45d1e822f ****/ + /****** BRepClass3d_SolidExplorer::InitShape ******/ + /****** md5 signature: d9bc37c7ee2a5ff0f8819cf45d1e822f ******/ %feature("compactdefaultargs") InitShape; %feature("autodoc", " Parameters @@ -754,8 +754,8 @@ No available documentation. ") InitShape; void InitShape(const TopoDS_Shape & S); - /****************** InitShell ******************/ - /**** md5 signature: da47ddbaca584bd5639e7c69797b28f8 ****/ + /****** BRepClass3d_SolidExplorer::InitShell ******/ + /****** md5 signature: da47ddbaca584bd5639e7c69797b28f8 ******/ %feature("compactdefaultargs") InitShell; %feature("autodoc", "Return ------- @@ -767,8 +767,8 @@ Starts an exploration of the shells. ") InitShell; void InitShell(); - /****************** Intersector ******************/ - /**** md5 signature: 4031f4a71f4a73a8fa5ed1228f085e89 ****/ + /****** BRepClass3d_SolidExplorer::Intersector ******/ + /****** md5 signature: 4031f4a71f4a73a8fa5ed1228f085e89 ******/ %feature("compactdefaultargs") Intersector; %feature("autodoc", " Parameters @@ -785,8 +785,8 @@ No available documentation. ") Intersector; IntCurvesFace_Intersector & Intersector(const TopoDS_Face & F); - /****************** MoreFace ******************/ - /**** md5 signature: 9ce280b3ff0f94e82bd4ccb635ad91a7 ****/ + /****** BRepClass3d_SolidExplorer::MoreFace ******/ + /****** md5 signature: 9ce280b3ff0f94e82bd4ccb635ad91a7 ******/ %feature("compactdefaultargs") MoreFace; %feature("autodoc", "Return ------- @@ -798,8 +798,8 @@ Returns true if current face in current shell. ") MoreFace; Standard_Boolean MoreFace(); - /****************** MoreShell ******************/ - /**** md5 signature: 9123faff7480a9cd91e7d3a7625f4cdb ****/ + /****** BRepClass3d_SolidExplorer::MoreShell ******/ + /****** md5 signature: 9123faff7480a9cd91e7d3a7625f4cdb ******/ %feature("compactdefaultargs") MoreShell; %feature("autodoc", "Return ------- @@ -811,8 +811,8 @@ Returns true if there is a current shell. ") MoreShell; Standard_Boolean MoreShell(); - /****************** NextFace ******************/ - /**** md5 signature: 33ae62d7d15ec80966f0219be1a267db ****/ + /****** BRepClass3d_SolidExplorer::NextFace ******/ + /****** md5 signature: 33ae62d7d15ec80966f0219be1a267db ******/ %feature("compactdefaultargs") NextFace; %feature("autodoc", "Return ------- @@ -824,8 +824,8 @@ Sets the explorer to the next face of the current shell. ") NextFace; void NextFace(); - /****************** NextShell ******************/ - /**** md5 signature: acf25ab192bbd1382fada471f35632f3 ****/ + /****** BRepClass3d_SolidExplorer::NextShell ******/ + /****** md5 signature: acf25ab192bbd1382fada471f35632f3 ******/ %feature("compactdefaultargs") NextShell; %feature("autodoc", "Return ------- @@ -837,8 +837,8 @@ Sets the explorer to the next shell. ") NextShell; void NextShell(); - /****************** OtherSegment ******************/ - /**** md5 signature: 8a68c80fe5592baef8f2dc32aae030e8 ****/ + /****** BRepClass3d_SolidExplorer::OtherSegment ******/ + /****** md5 signature: 8a68c80fe5592baef8f2dc32aae030e8 ******/ %feature("compactdefaultargs") OtherSegment; %feature("autodoc", " Parameters @@ -856,8 +856,8 @@ Returns in , a segment having at least one intersection with the shape ") OtherSegment; Standard_Integer OtherSegment(const gp_Pnt & P, gp_Lin & L, Standard_Real &OutValue); - /****************** PointInTheFace ******************/ - /**** md5 signature: 02e05914677a68ed8d75572f3a199575 ****/ + /****** BRepClass3d_SolidExplorer::PointInTheFace ******/ + /****** md5 signature: 02e05914677a68ed8d75572f3a199575 ******/ %feature("compactdefaultargs") PointInTheFace; %feature("autodoc", " Parameters @@ -878,8 +878,8 @@ No available documentation. ") PointInTheFace; Standard_Boolean PointInTheFace(const TopoDS_Face & F, gp_Pnt & P, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Integer &OutValue); - /****************** PointInTheFace ******************/ - /**** md5 signature: 986766809c3fdf601631ad22531992f8 ****/ + /****** BRepClass3d_SolidExplorer::PointInTheFace ******/ + /****** md5 signature: 986766809c3fdf601631ad22531992f8 ******/ %feature("compactdefaultargs") PointInTheFace; %feature("autodoc", " Parameters @@ -905,8 +905,8 @@ No available documentation. ") PointInTheFace; Standard_Boolean PointInTheFace(const TopoDS_Face & F, gp_Pnt & P, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Integer &OutValue, const opencascade::handle & surf, const Standard_Real u1, const Standard_Real v1, const Standard_Real u2, const Standard_Real v2); - /****************** PointInTheFace ******************/ - /**** md5 signature: 69801e47f45d76167828452cfb2f933a ****/ + /****** BRepClass3d_SolidExplorer::PointInTheFace ******/ + /****** md5 signature: 69801e47f45d76167828452cfb2f933a ******/ %feature("compactdefaultargs") PointInTheFace; %feature("autodoc", " Parameters @@ -934,8 +934,8 @@ Description ") PointInTheFace; Standard_Boolean PointInTheFace(const TopoDS_Face & F, gp_Pnt & P, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Integer &OutValue, const opencascade::handle & surf, const Standard_Real u1, const Standard_Real v1, const Standard_Real u2, const Standard_Real v2, gp_Vec & theVecD1U, gp_Vec & theVecD1V); - /****************** Reject ******************/ - /**** md5 signature: 51de68ac10b383926f08d5ff11ad46ef ****/ + /****** BRepClass3d_SolidExplorer::Reject ******/ + /****** md5 signature: 51de68ac10b383926f08d5ff11ad46ef ******/ %feature("compactdefaultargs") Reject; %feature("autodoc", " Parameters @@ -952,8 +952,8 @@ Should return true if p outside of bounding vol. of the shape. ") Reject; virtual Standard_Boolean Reject(const gp_Pnt & P); - /****************** RejectFace ******************/ - /**** md5 signature: ac0d5a52c1e8c11624a4126529ce95a1 ****/ + /****** BRepClass3d_SolidExplorer::RejectFace ******/ + /****** md5 signature: ac0d5a52c1e8c11624a4126529ce95a1 ******/ %feature("compactdefaultargs") RejectFace; %feature("autodoc", " Parameters @@ -970,8 +970,8 @@ Returns true if the face is rejected. ") RejectFace; virtual Standard_Boolean RejectFace(const gp_Lin & L); - /****************** RejectShell ******************/ - /**** md5 signature: 2e32cb4f65a91d1adc50db91830d6b88 ****/ + /****** BRepClass3d_SolidExplorer::RejectShell ******/ + /****** md5 signature: 2e32cb4f65a91d1adc50db91830d6b88 ******/ %feature("compactdefaultargs") RejectShell; %feature("autodoc", " Parameters @@ -988,8 +988,8 @@ Returns true if the shell is rejected. ") RejectShell; virtual Standard_Boolean RejectShell(const gp_Lin & L); - /****************** Segment ******************/ - /**** md5 signature: 65c1df49fa25b2d5c8218cf933983a20 ****/ + /****** BRepClass3d_SolidExplorer::Segment ******/ + /****** md5 signature: 65c1df49fa25b2d5c8218cf933983a20 ******/ %feature("compactdefaultargs") Segment; %feature("autodoc", " Parameters @@ -1021,8 +1021,8 @@ Returns in , a segment having at least one intersection with the shape *******************************************/ class BRepClass3d_SolidPassiveClassifier { public: - /****************** BRepClass3d_SolidPassiveClassifier ******************/ - /**** md5 signature: 753c34115a953d0d1d184f6dbce546d6 ****/ + /****** BRepClass3d_SolidPassiveClassifier::BRepClass3d_SolidPassiveClassifier ******/ + /****** md5 signature: 753c34115a953d0d1d184f6dbce546d6 ******/ %feature("compactdefaultargs") BRepClass3d_SolidPassiveClassifier; %feature("autodoc", "Return ------- @@ -1034,8 +1034,8 @@ Creates an undefined classifier. ") BRepClass3d_SolidPassiveClassifier; BRepClass3d_SolidPassiveClassifier(); - /****************** Compare ******************/ - /**** md5 signature: b56f046d5b1a7e24fd1a5f6c7f16401a ****/ + /****** BRepClass3d_SolidPassiveClassifier::Compare ******/ + /****** md5 signature: b56f046d5b1a7e24fd1a5f6c7f16401a ******/ %feature("compactdefaultargs") Compare; %feature("autodoc", " Parameters @@ -1053,8 +1053,8 @@ Updates the classification process with the face from the boundary. ") Compare; void Compare(const TopoDS_Face & F, const TopAbs_Orientation Or); - /****************** HasIntersection ******************/ - /**** md5 signature: 94c3b976d93201cedbd7868f3cc308ec ****/ + /****** BRepClass3d_SolidPassiveClassifier::HasIntersection ******/ + /****** md5 signature: 94c3b976d93201cedbd7868f3cc308ec ******/ %feature("compactdefaultargs") HasIntersection; %feature("autodoc", "Return ------- @@ -1066,8 +1066,8 @@ Returns true if an intersection is computed. ") HasIntersection; Standard_Boolean HasIntersection(); - /****************** Intersector ******************/ - /**** md5 signature: 89ae7485d04a83ad1143250d9364ad9b ****/ + /****** BRepClass3d_SolidPassiveClassifier::Intersector ******/ + /****** md5 signature: 89ae7485d04a83ad1143250d9364ad9b ******/ %feature("compactdefaultargs") Intersector; %feature("autodoc", "Return ------- @@ -1079,8 +1079,8 @@ Returns the intersecting algorithm. ") Intersector; BRepClass3d_Intersector3d & Intersector(); - /****************** Parameter ******************/ - /**** md5 signature: ecccdeaeaa0deed24f47e61ad75d24f1 ****/ + /****** BRepClass3d_SolidPassiveClassifier::Parameter ******/ + /****** md5 signature: ecccdeaeaa0deed24f47e61ad75d24f1 ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", "Return ------- @@ -1092,8 +1092,8 @@ Returns the current value of the parameter. ") Parameter; Standard_Real Parameter(); - /****************** Reset ******************/ - /**** md5 signature: e6b050ae118cd9e842409d971e4257e9 ****/ + /****** BRepClass3d_SolidPassiveClassifier::Reset ******/ + /****** md5 signature: e6b050ae118cd9e842409d971e4257e9 ******/ %feature("compactdefaultargs") Reset; %feature("autodoc", " Parameters @@ -1112,8 +1112,8 @@ Starts a classification process. the point to classify is the origin of the line ") Reset; void Reset(const gp_Lin & L, const Standard_Real P, const Standard_Real Tol); - /****************** State ******************/ - /**** md5 signature: 927c83b1efdec797adb47eb058eddaa0 ****/ + /****** BRepClass3d_SolidPassiveClassifier::State ******/ + /****** md5 signature: 927c83b1efdec797adb47eb058eddaa0 ******/ %feature("compactdefaultargs") State; %feature("autodoc", "Return ------- @@ -1145,8 +1145,8 @@ Returns the current state of the point. ************************************/ class BRepClass3d_SolidClassifier : public BRepClass3d_SClassifier { public: - /****************** BRepClass3d_SolidClassifier ******************/ - /**** md5 signature: 8dbf40d196a6056c1a2b07197983a030 ****/ + /****** BRepClass3d_SolidClassifier::BRepClass3d_SolidClassifier ******/ + /****** md5 signature: 8dbf40d196a6056c1a2b07197983a030 ******/ %feature("compactdefaultargs") BRepClass3d_SolidClassifier; %feature("autodoc", "Return ------- @@ -1158,8 +1158,8 @@ Empty constructor. ") BRepClass3d_SolidClassifier; BRepClass3d_SolidClassifier(); - /****************** BRepClass3d_SolidClassifier ******************/ - /**** md5 signature: af852678708e27ec7563b8a0e065a3cf ****/ + /****** BRepClass3d_SolidClassifier::BRepClass3d_SolidClassifier ******/ + /****** md5 signature: af852678708e27ec7563b8a0e065a3cf ******/ %feature("compactdefaultargs") BRepClass3d_SolidClassifier; %feature("autodoc", " Parameters @@ -1176,8 +1176,8 @@ Constructor from a shape. ") BRepClass3d_SolidClassifier; BRepClass3d_SolidClassifier(const TopoDS_Shape & S); - /****************** BRepClass3d_SolidClassifier ******************/ - /**** md5 signature: 1931c86413bceb6f0e5cc65c93485f4e ****/ + /****** BRepClass3d_SolidClassifier::BRepClass3d_SolidClassifier ******/ + /****** md5 signature: 1931c86413bceb6f0e5cc65c93485f4e ******/ %feature("compactdefaultargs") BRepClass3d_SolidClassifier; %feature("autodoc", " Parameters @@ -1196,8 +1196,8 @@ Constructor to classify the point p with the tolerance tol on the solid s. ") BRepClass3d_SolidClassifier; BRepClass3d_SolidClassifier(const TopoDS_Shape & S, const gp_Pnt & P, const Standard_Real Tol); - /****************** Destroy ******************/ - /**** md5 signature: 73111f72f4ab0474eb2cfbd7e4af4e1a ****/ + /****** BRepClass3d_SolidClassifier::Destroy ******/ + /****** md5 signature: 73111f72f4ab0474eb2cfbd7e4af4e1a ******/ %feature("compactdefaultargs") Destroy; %feature("autodoc", "Return ------- @@ -1209,8 +1209,8 @@ No available documentation. ") Destroy; void Destroy(); - /****************** Load ******************/ - /**** md5 signature: e8cac8ea20706569fcef43af3e2c23ea ****/ + /****** BRepClass3d_SolidClassifier::Load ******/ + /****** md5 signature: e8cac8ea20706569fcef43af3e2c23ea ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -1227,8 +1227,8 @@ No available documentation. ") Load; void Load(const TopoDS_Shape & S); - /****************** Perform ******************/ - /**** md5 signature: 8c78cd2f3c59b3c38b2c86a830e5298b ****/ + /****** BRepClass3d_SolidClassifier::Perform ******/ + /****** md5 signature: 8c78cd2f3c59b3c38b2c86a830e5298b ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1246,8 +1246,8 @@ Classify the point p with the tolerance tol on the solid s. ") Perform; void Perform(const gp_Pnt & P, const Standard_Real Tol); - /****************** PerformInfinitePoint ******************/ - /**** md5 signature: 8af7800b756e0bb955df7574967e9884 ****/ + /****** BRepClass3d_SolidClassifier::PerformInfinitePoint ******/ + /****** md5 signature: 8af7800b756e0bb955df7574967e9884 ******/ %feature("compactdefaultargs") PerformInfinitePoint; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BRepExtrema.i b/src/SWIG_files/wrapper/BRepExtrema.i index 8e9815e64..0af90139b 100644 --- a/src/SWIG_files/wrapper/BRepExtrema.i +++ b/src/SWIG_files/wrapper/BRepExtrema.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPEXTREMADOCSTRING "BRepExtrema module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepextrema.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepextrema.html" %enddef %module (package="OCC.Core", docstring=BREPEXTREMADOCSTRING) BRepExtrema @@ -141,8 +141,8 @@ typedef NCollection_Vector BRepExtrema_ShapeList; ***********************************/ class BRepExtrema_DistShapeShape { public: - /****************** BRepExtrema_DistShapeShape ******************/ - /**** md5 signature: 7db35b07b02f16eafa8b496ba9a55793 ****/ + /****** BRepExtrema_DistShapeShape::BRepExtrema_DistShapeShape ******/ + /****** md5 signature: 7db35b07b02f16eafa8b496ba9a55793 ******/ %feature("compactdefaultargs") BRepExtrema_DistShapeShape; %feature("autodoc", "Return ------- @@ -154,8 +154,8 @@ Create empty tool. ") BRepExtrema_DistShapeShape; BRepExtrema_DistShapeShape(); - /****************** BRepExtrema_DistShapeShape ******************/ - /**** md5 signature: fb63ccf57bfd5b8006463aca52b50b43 ****/ + /****** BRepExtrema_DistShapeShape::BRepExtrema_DistShapeShape ******/ + /****** md5 signature: fb63ccf57bfd5b8006463aca52b50b43 ******/ %feature("compactdefaultargs") BRepExtrema_DistShapeShape; %feature("autodoc", " Parameters @@ -176,8 +176,8 @@ Create tool and computation of the minimum distance (value and pair of points) u ") BRepExtrema_DistShapeShape; BRepExtrema_DistShapeShape(const TopoDS_Shape & Shape1, const TopoDS_Shape & Shape2, const Extrema_ExtFlag F = Extrema_ExtFlag_MINMAX, const Extrema_ExtAlgo A = Extrema_ExtAlgo_Grad, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** BRepExtrema_DistShapeShape ******************/ - /**** md5 signature: 23775d8af1aa9dd27bd9eeda417a5eb6 ****/ + /****** BRepExtrema_DistShapeShape::BRepExtrema_DistShapeShape ******/ + /****** md5 signature: 23775d8af1aa9dd27bd9eeda417a5eb6 ******/ %feature("compactdefaultargs") BRepExtrema_DistShapeShape; %feature("autodoc", " Parameters @@ -199,8 +199,8 @@ Create tool and computation of the minimum distance (value and pair of points) i ") BRepExtrema_DistShapeShape; BRepExtrema_DistShapeShape(const TopoDS_Shape & Shape1, const TopoDS_Shape & Shape2, const Standard_Real theDeflection, const Extrema_ExtFlag F = Extrema_ExtFlag_MINMAX, const Extrema_ExtAlgo A = Extrema_ExtAlgo_Grad, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Dump ******************/ - /**** md5 signature: d37b43e0b2386dc096d5d707876db157 ****/ + /****** BRepExtrema_DistShapeShape::Dump ******/ + /****** md5 signature: d37b43e0b2386dc096d5d707876db157 ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", " Parameters @@ -216,8 +216,8 @@ Prints on the stream o information on the current state of the object. . ") Dump; void Dump(std::ostream &OutValue); - /****************** InnerSolution ******************/ - /**** md5 signature: c2076c783e4f1c4305057f88c3c68086 ****/ + /****** BRepExtrema_DistShapeShape::InnerSolution ******/ + /****** md5 signature: c2076c783e4f1c4305057f88c3c68086 ******/ %feature("compactdefaultargs") InnerSolution; %feature("autodoc", "Return ------- @@ -229,8 +229,8 @@ True if one of the shapes is a solid and the other shape is completely or partia ") InnerSolution; Standard_Boolean InnerSolution(); - /****************** IsDone ******************/ - /**** md5 signature: e385477ab1bec806154173d4a550fd68 ****/ + /****** BRepExtrema_DistShapeShape::IsDone ******/ + /****** md5 signature: e385477ab1bec806154173d4a550fd68 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -242,8 +242,8 @@ True if the minimum distance is found. . ") IsDone; Standard_Boolean IsDone(); - /****************** IsMultiThread ******************/ - /**** md5 signature: 08be58fd82e87eae912617f53af96d42 ****/ + /****** BRepExtrema_DistShapeShape::IsMultiThread ******/ + /****** md5 signature: 08be58fd82e87eae912617f53af96d42 ******/ %feature("compactdefaultargs") IsMultiThread; %feature("autodoc", "Return ------- @@ -255,8 +255,8 @@ Returns standard_true then computation will be performed in parallel default val ") IsMultiThread; Standard_Boolean IsMultiThread(); - /****************** LoadS1 ******************/ - /**** md5 signature: 7408ca5426be01fa3948ad765f9b1d2b ****/ + /****** BRepExtrema_DistShapeShape::LoadS1 ******/ + /****** md5 signature: 7408ca5426be01fa3948ad765f9b1d2b ******/ %feature("compactdefaultargs") LoadS1; %feature("autodoc", " Parameters @@ -273,8 +273,8 @@ Load first shape into extrema . ") LoadS1; void LoadS1(const TopoDS_Shape & Shape1); - /****************** LoadS2 ******************/ - /**** md5 signature: 3b40248cbf67bbe15af62d523554bf15 ****/ + /****** BRepExtrema_DistShapeShape::LoadS2 ******/ + /****** md5 signature: 3b40248cbf67bbe15af62d523554bf15 ******/ %feature("compactdefaultargs") LoadS2; %feature("autodoc", " Parameters @@ -291,8 +291,8 @@ Load second shape into extrema . ") LoadS2; void LoadS2(const TopoDS_Shape & Shape1); - /****************** NbSolution ******************/ - /**** md5 signature: 69ebe2fff65cc6ae065919ee69973470 ****/ + /****** BRepExtrema_DistShapeShape::NbSolution ******/ + /****** md5 signature: 69ebe2fff65cc6ae065919ee69973470 ******/ %feature("compactdefaultargs") NbSolution; %feature("autodoc", "Return ------- @@ -304,8 +304,8 @@ Returns the number of solutions satisfying the minimum distance. . ") NbSolution; Standard_Integer NbSolution(); - /****************** ParOnEdgeS1 ******************/ - /**** md5 signature: afb7f68aca62bff04cd6998990b30f1f ****/ + /****** BRepExtrema_DistShapeShape::ParOnEdgeS1 ******/ + /****** md5 signature: afb7f68aca62bff04cd6998990b30f1f ******/ %feature("compactdefaultargs") ParOnEdgeS1; %feature("autodoc", " Parameters @@ -322,8 +322,8 @@ Gives the corresponding parameter t if the nth solution is situated on an edge o ") ParOnEdgeS1; void ParOnEdgeS1(const Standard_Integer N, Standard_Real &OutValue); - /****************** ParOnEdgeS2 ******************/ - /**** md5 signature: 4d4566624bf7e1ee75387e3cf5ccea3f ****/ + /****** BRepExtrema_DistShapeShape::ParOnEdgeS2 ******/ + /****** md5 signature: 4d4566624bf7e1ee75387e3cf5ccea3f ******/ %feature("compactdefaultargs") ParOnEdgeS2; %feature("autodoc", " Parameters @@ -340,8 +340,8 @@ Gives the corresponding parameter t if the nth solution is situated on an edge o ") ParOnEdgeS2; void ParOnEdgeS2(const Standard_Integer N, Standard_Real &OutValue); - /****************** ParOnFaceS1 ******************/ - /**** md5 signature: e9a4cf66ddad2a301281fbccd9d64530 ****/ + /****** BRepExtrema_DistShapeShape::ParOnFaceS1 ******/ + /****** md5 signature: e9a4cf66ddad2a301281fbccd9d64530 ******/ %feature("compactdefaultargs") ParOnFaceS1; %feature("autodoc", " Parameters @@ -359,8 +359,8 @@ Gives the corresponding parameters (u,v) if the nth solution is situated on an f ") ParOnFaceS1; void ParOnFaceS1(const Standard_Integer N, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** ParOnFaceS2 ******************/ - /**** md5 signature: 9d0355118b8cc8a3c8b3a22b0070eeef ****/ + /****** BRepExtrema_DistShapeShape::ParOnFaceS2 ******/ + /****** md5 signature: 9d0355118b8cc8a3c8b3a22b0070eeef ******/ %feature("compactdefaultargs") ParOnFaceS2; %feature("autodoc", " Parameters @@ -378,8 +378,8 @@ Gives the corresponding parameters (u,v) if the nth solution is situated on an f ") ParOnFaceS2; void ParOnFaceS2(const Standard_Integer N, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Perform ******************/ - /**** md5 signature: 5319bf8ef7123f90bd8ce53457a93026 ****/ + /****** BRepExtrema_DistShapeShape::Perform ******/ + /****** md5 signature: 5319bf8ef7123f90bd8ce53457a93026 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -396,8 +396,8 @@ Computation of the minimum distance (value and couple of points). parameter the ") Perform; Standard_Boolean Perform(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** PointOnShape1 ******************/ - /**** md5 signature: aa31e70d94110b0eb2d311dc4396c549 ****/ + /****** BRepExtrema_DistShapeShape::PointOnShape1 ******/ + /****** md5 signature: aa31e70d94110b0eb2d311dc4396c549 ******/ %feature("compactdefaultargs") PointOnShape1; %feature("autodoc", " Parameters @@ -414,8 +414,8 @@ Returns the point corresponding to the th solution on the first shape . ") PointOnShape1; const gp_Pnt PointOnShape1(const Standard_Integer N); - /****************** PointOnShape2 ******************/ - /**** md5 signature: 0f8ff2bc21fd8c668ed617d92a32b6a6 ****/ + /****** BRepExtrema_DistShapeShape::PointOnShape2 ******/ + /****** md5 signature: 0f8ff2bc21fd8c668ed617d92a32b6a6 ******/ %feature("compactdefaultargs") PointOnShape2; %feature("autodoc", " Parameters @@ -432,8 +432,8 @@ Returns the point corresponding to the th solution on the second shape . ") PointOnShape2; const gp_Pnt PointOnShape2(const Standard_Integer N); - /****************** SetAlgo ******************/ - /**** md5 signature: cad6f54c64a4b69da22bb042d2e4fe8a ****/ + /****** BRepExtrema_DistShapeShape::SetAlgo ******/ + /****** md5 signature: cad6f54c64a4b69da22bb042d2e4fe8a ******/ %feature("compactdefaultargs") SetAlgo; %feature("autodoc", " Parameters @@ -450,8 +450,8 @@ Sets unused parameter obsolete . ") SetAlgo; void SetAlgo(const Extrema_ExtAlgo A); - /****************** SetDeflection ******************/ - /**** md5 signature: ef17e8202a75f8963ebbbf02897eb710 ****/ + /****** BRepExtrema_DistShapeShape::SetDeflection ******/ + /****** md5 signature: ef17e8202a75f8963ebbbf02897eb710 ******/ %feature("compactdefaultargs") SetDeflection; %feature("autodoc", " Parameters @@ -468,8 +468,8 @@ Sets deflection to computation of the minimum distance . ") SetDeflection; void SetDeflection(const Standard_Real theDeflection); - /****************** SetFlag ******************/ - /**** md5 signature: 7ce767aa4373b85a8cea83f409a2ebfb ****/ + /****** BRepExtrema_DistShapeShape::SetFlag ******/ + /****** md5 signature: 7ce767aa4373b85a8cea83f409a2ebfb ******/ %feature("compactdefaultargs") SetFlag; %feature("autodoc", " Parameters @@ -486,8 +486,8 @@ Sets unused parameter obsolete . ") SetFlag; void SetFlag(const Extrema_ExtFlag F); - /****************** SetMultiThread ******************/ - /**** md5 signature: 3237c51f1bfac929cf9e320d71541b3b ****/ + /****** BRepExtrema_DistShapeShape::SetMultiThread ******/ + /****** md5 signature: 3237c51f1bfac929cf9e320d71541b3b ******/ %feature("compactdefaultargs") SetMultiThread; %feature("autodoc", " Parameters @@ -504,8 +504,8 @@ If ismultithread == standard_true then computation will be performed in parallel ") SetMultiThread; void SetMultiThread(Standard_Boolean theIsMultiThread); - /****************** SupportOnShape1 ******************/ - /**** md5 signature: ec03df7c72ee60180aae731839ed29e5 ****/ + /****** BRepExtrema_DistShapeShape::SupportOnShape1 ******/ + /****** md5 signature: ec03df7c72ee60180aae731839ed29e5 ******/ %feature("compactdefaultargs") SupportOnShape1; %feature("autodoc", " Parameters @@ -522,8 +522,8 @@ Gives the support where the nth solution on the first shape is situated. this su ") SupportOnShape1; TopoDS_Shape SupportOnShape1(const Standard_Integer N); - /****************** SupportOnShape2 ******************/ - /**** md5 signature: 5ae538fab82518e2a60395aa1afe995a ****/ + /****** BRepExtrema_DistShapeShape::SupportOnShape2 ******/ + /****** md5 signature: 5ae538fab82518e2a60395aa1afe995a ******/ %feature("compactdefaultargs") SupportOnShape2; %feature("autodoc", " Parameters @@ -540,8 +540,8 @@ Gives the support where the nth solution on the second shape is situated. this s ") SupportOnShape2; TopoDS_Shape SupportOnShape2(const Standard_Integer N); - /****************** SupportTypeShape1 ******************/ - /**** md5 signature: 0b4baacce2f902c0aa135d1e7af4ab5e ****/ + /****** BRepExtrema_DistShapeShape::SupportTypeShape1 ******/ + /****** md5 signature: 0b4baacce2f902c0aa135d1e7af4ab5e ******/ %feature("compactdefaultargs") SupportTypeShape1; %feature("autodoc", " Parameters @@ -558,8 +558,8 @@ Gives the type of the support where the nth solution on the first shape is situa ") SupportTypeShape1; BRepExtrema_SupportType SupportTypeShape1(const Standard_Integer N); - /****************** SupportTypeShape2 ******************/ - /**** md5 signature: 038fff84390f528e52f9203e7f8d1ef4 ****/ + /****** BRepExtrema_DistShapeShape::SupportTypeShape2 ******/ + /****** md5 signature: 038fff84390f528e52f9203e7f8d1ef4 ******/ %feature("compactdefaultargs") SupportTypeShape2; %feature("autodoc", " Parameters @@ -576,8 +576,8 @@ Gives the type of the support where the nth solution on the second shape is situ ") SupportTypeShape2; BRepExtrema_SupportType SupportTypeShape2(const Standard_Integer N); - /****************** Value ******************/ - /**** md5 signature: 52655a2fb6642856b2c68a9331826787 ****/ + /****** BRepExtrema_DistShapeShape::Value ******/ + /****** md5 signature: 52655a2fb6642856b2c68a9331826787 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -603,8 +603,8 @@ Returns the value of the minimum distance. . *******************************/ class BRepExtrema_DistanceSS { public: - /****************** BRepExtrema_DistanceSS ******************/ - /**** md5 signature: 990d62108850fe2e8efc715b0327cf72 ****/ + /****** BRepExtrema_DistanceSS::BRepExtrema_DistanceSS ******/ + /****** md5 signature: 990d62108850fe2e8efc715b0327cf72 ******/ %feature("compactdefaultargs") BRepExtrema_DistanceSS; %feature("autodoc", " Parameters @@ -628,8 +628,8 @@ Computes the distance between two shapes (face edge vertex). @param thes1 - firs ") BRepExtrema_DistanceSS; BRepExtrema_DistanceSS(const TopoDS_Shape & theS1, const TopoDS_Shape & theS2, const Bnd_Box & theBox1, const Bnd_Box & theBox2, const Standard_Real theDstRef, const Standard_Real theDeflection = Precision::Confusion(), const Extrema_ExtFlag theExtFlag = Extrema_ExtFlag_MINMAX, const Extrema_ExtAlgo theExtAlgo = Extrema_ExtAlgo_Grad); - /****************** DistValue ******************/ - /**** md5 signature: 67516fa96bcaeb61c2a5da2a5ca3b852 ****/ + /****** BRepExtrema_DistanceSS::DistValue ******/ + /****** md5 signature: 67516fa96bcaeb61c2a5da2a5ca3b852 ******/ %feature("compactdefaultargs") DistValue; %feature("autodoc", "Return ------- @@ -641,8 +641,8 @@ Returns the distance value. ") DistValue; Standard_Real DistValue(); - /****************** IsDone ******************/ - /**** md5 signature: e385477ab1bec806154173d4a550fd68 ****/ + /****** BRepExtrema_DistanceSS::IsDone ******/ + /****** md5 signature: e385477ab1bec806154173d4a550fd68 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -654,8 +654,8 @@ Returns true if the distance has been computed, false otherwise. ") IsDone; Standard_Boolean IsDone(); - /****************** Seq1Value ******************/ - /**** md5 signature: ce2418343fae9ea2a5448ab18333e3bf ****/ + /****** BRepExtrema_DistanceSS::Seq1Value ******/ + /****** md5 signature: ce2418343fae9ea2a5448ab18333e3bf ******/ %feature("compactdefaultargs") Seq1Value; %feature("autodoc", "Return ------- @@ -667,8 +667,8 @@ Returns the list of solutions on the first shape. ") Seq1Value; const BRepExtrema_SeqOfSolution & Seq1Value(); - /****************** Seq2Value ******************/ - /**** md5 signature: 9e0d543064a1ba8b316c893c878533f4 ****/ + /****** BRepExtrema_DistanceSS::Seq2Value ******/ + /****** md5 signature: 9e0d543064a1ba8b316c893c878533f4 ******/ %feature("compactdefaultargs") Seq2Value; %feature("autodoc", "Return ------- @@ -716,8 +716,8 @@ DoCheck = FilterResult.DoCheck }; /* end python proxy for enums */ - /****************** PreCheckElements ******************/ - /**** md5 signature: 1c8fc782390654d40badc34a2b0b8ab0 ****/ + /****** BRepExtrema_ElementFilter::PreCheckElements ******/ + /****** md5 signature: 1c8fc782390654d40badc34a2b0b8ab0 ******/ %feature("compactdefaultargs") PreCheckElements; %feature("autodoc", " Parameters @@ -749,8 +749,8 @@ Checks if two mesh elements should be tested for overlapping/intersection (used **************************/ class BRepExtrema_ExtCC { public: - /****************** BRepExtrema_ExtCC ******************/ - /**** md5 signature: 7e35ce50b3a79f26d0e456e259852e75 ****/ + /****** BRepExtrema_ExtCC::BRepExtrema_ExtCC ******/ + /****** md5 signature: 7e35ce50b3a79f26d0e456e259852e75 ******/ %feature("compactdefaultargs") BRepExtrema_ExtCC; %feature("autodoc", "Return ------- @@ -762,8 +762,8 @@ No available documentation. ") BRepExtrema_ExtCC; BRepExtrema_ExtCC(); - /****************** BRepExtrema_ExtCC ******************/ - /**** md5 signature: 21fcfba4a98ca2696fdd04abc944df8d ****/ + /****** BRepExtrema_ExtCC::BRepExtrema_ExtCC ******/ + /****** md5 signature: 21fcfba4a98ca2696fdd04abc944df8d ******/ %feature("compactdefaultargs") BRepExtrema_ExtCC; %feature("autodoc", " Parameters @@ -781,8 +781,8 @@ It calculates all the distances. . ") BRepExtrema_ExtCC; BRepExtrema_ExtCC(const TopoDS_Edge & E1, const TopoDS_Edge & E2); - /****************** Initialize ******************/ - /**** md5 signature: c89b77664746a64b0d7d6a1d193b3d58 ****/ + /****** BRepExtrema_ExtCC::Initialize ******/ + /****** md5 signature: c89b77664746a64b0d7d6a1d193b3d58 ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -799,8 +799,8 @@ No available documentation. ") Initialize; void Initialize(const TopoDS_Edge & E2); - /****************** IsDone ******************/ - /**** md5 signature: e385477ab1bec806154173d4a550fd68 ****/ + /****** BRepExtrema_ExtCC::IsDone ******/ + /****** md5 signature: e385477ab1bec806154173d4a550fd68 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -812,8 +812,8 @@ True if the distances are found. . ") IsDone; Standard_Boolean IsDone(); - /****************** IsParallel ******************/ - /**** md5 signature: 1a61f067818333b9699057e51665b906 ****/ + /****** BRepExtrema_ExtCC::IsParallel ******/ + /****** md5 signature: 1a61f067818333b9699057e51665b906 ******/ %feature("compactdefaultargs") IsParallel; %feature("autodoc", "Return ------- @@ -825,8 +825,8 @@ Returns true if e1 and e2 are parallel. . ") IsParallel; Standard_Boolean IsParallel(); - /****************** NbExt ******************/ - /**** md5 signature: 5a5d42851c4a5f73b150985c361524ae ****/ + /****** BRepExtrema_ExtCC::NbExt ******/ + /****** md5 signature: 5a5d42851c4a5f73b150985c361524ae ******/ %feature("compactdefaultargs") NbExt; %feature("autodoc", "Return ------- @@ -838,8 +838,8 @@ Returns the number of extremum distances. . ") NbExt; Standard_Integer NbExt(); - /****************** ParameterOnE1 ******************/ - /**** md5 signature: 7cd5e9a46a0df5cc207b6b3fab147d6f ****/ + /****** BRepExtrema_ExtCC::ParameterOnE1 ******/ + /****** md5 signature: 7cd5e9a46a0df5cc207b6b3fab147d6f ******/ %feature("compactdefaultargs") ParameterOnE1; %feature("autodoc", " Parameters @@ -856,8 +856,8 @@ Returns the parameter on the first edge of the th extremum distance. . ") ParameterOnE1; Standard_Real ParameterOnE1(const Standard_Integer N); - /****************** ParameterOnE2 ******************/ - /**** md5 signature: 6e63de9677713c8464fd20b1eedca902 ****/ + /****** BRepExtrema_ExtCC::ParameterOnE2 ******/ + /****** md5 signature: 6e63de9677713c8464fd20b1eedca902 ******/ %feature("compactdefaultargs") ParameterOnE2; %feature("autodoc", " Parameters @@ -874,8 +874,8 @@ Returns the parameter on the second edge of the th extremum distance. . ") ParameterOnE2; Standard_Real ParameterOnE2(const Standard_Integer N); - /****************** Perform ******************/ - /**** md5 signature: f7179778f701b048ae69059d84e58974 ****/ + /****** BRepExtrema_ExtCC::Perform ******/ + /****** md5 signature: f7179778f701b048ae69059d84e58974 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -892,8 +892,8 @@ An exception is raised if the fields have not been initialized. . ") Perform; void Perform(const TopoDS_Edge & E1); - /****************** PointOnE1 ******************/ - /**** md5 signature: 466ab7ad202dd5c3aa0008d57c2de183 ****/ + /****** BRepExtrema_ExtCC::PointOnE1 ******/ + /****** md5 signature: 466ab7ad202dd5c3aa0008d57c2de183 ******/ %feature("compactdefaultargs") PointOnE1; %feature("autodoc", " Parameters @@ -910,8 +910,8 @@ Returns the point of the th extremum distance on the edge e1. . ") PointOnE1; gp_Pnt PointOnE1(const Standard_Integer N); - /****************** PointOnE2 ******************/ - /**** md5 signature: fcf209840f22ac0e18c183b2e534bb8b ****/ + /****** BRepExtrema_ExtCC::PointOnE2 ******/ + /****** md5 signature: fcf209840f22ac0e18c183b2e534bb8b ******/ %feature("compactdefaultargs") PointOnE2; %feature("autodoc", " Parameters @@ -928,8 +928,8 @@ Returns the point of the th extremum distance on the edge e2. . ") PointOnE2; gp_Pnt PointOnE2(const Standard_Integer N); - /****************** SquareDistance ******************/ - /**** md5 signature: 84f99c4c6de2197ef464c1aadcb7580e ****/ + /****** BRepExtrema_ExtCC::SquareDistance ******/ + /****** md5 signature: 84f99c4c6de2197ef464c1aadcb7580e ******/ %feature("compactdefaultargs") SquareDistance; %feature("autodoc", " Parameters @@ -946,8 +946,8 @@ Returns the value of the th extremum square distance. . ") SquareDistance; Standard_Real SquareDistance(const Standard_Integer N); - /****************** TrimmedSquareDistances ******************/ - /**** md5 signature: 4e321915bc6b3619a20bb8a4fec39fce ****/ + /****** BRepExtrema_ExtCC::TrimmedSquareDistances ******/ + /****** md5 signature: 4e321915bc6b3619a20bb8a4fec39fce ******/ %feature("compactdefaultargs") TrimmedSquareDistances; %feature("autodoc", " Parameters @@ -984,8 +984,8 @@ If the edges is a trimmed curve, dist11 is a square distance between the point o **************************/ class BRepExtrema_ExtCF { public: - /****************** BRepExtrema_ExtCF ******************/ - /**** md5 signature: 9c886b088d845caa22a1107cfe5a0ff6 ****/ + /****** BRepExtrema_ExtCF::BRepExtrema_ExtCF ******/ + /****** md5 signature: 9c886b088d845caa22a1107cfe5a0ff6 ******/ %feature("compactdefaultargs") BRepExtrema_ExtCF; %feature("autodoc", "Return ------- @@ -997,8 +997,8 @@ No available documentation. ") BRepExtrema_ExtCF; BRepExtrema_ExtCF(); - /****************** BRepExtrema_ExtCF ******************/ - /**** md5 signature: 16020da834cdf79577c7d512faaaae03 ****/ + /****** BRepExtrema_ExtCF::BRepExtrema_ExtCF ******/ + /****** md5 signature: 16020da834cdf79577c7d512faaaae03 ******/ %feature("compactdefaultargs") BRepExtrema_ExtCF; %feature("autodoc", " Parameters @@ -1016,8 +1016,8 @@ It calculates all the distances. . ") BRepExtrema_ExtCF; BRepExtrema_ExtCF(const TopoDS_Edge & E, const TopoDS_Face & F); - /****************** Initialize ******************/ - /**** md5 signature: cf258179577adbc75b4efbc5847934f6 ****/ + /****** BRepExtrema_ExtCF::Initialize ******/ + /****** md5 signature: cf258179577adbc75b4efbc5847934f6 ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -1035,8 +1035,8 @@ No available documentation. ") Initialize; void Initialize(const TopoDS_Edge & E, const TopoDS_Face & F); - /****************** IsDone ******************/ - /**** md5 signature: e385477ab1bec806154173d4a550fd68 ****/ + /****** BRepExtrema_ExtCF::IsDone ******/ + /****** md5 signature: e385477ab1bec806154173d4a550fd68 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -1048,8 +1048,8 @@ True if the distances are found. . ") IsDone; Standard_Boolean IsDone(); - /****************** IsParallel ******************/ - /**** md5 signature: 1a61f067818333b9699057e51665b906 ****/ + /****** BRepExtrema_ExtCF::IsParallel ******/ + /****** md5 signature: 1a61f067818333b9699057e51665b906 ******/ %feature("compactdefaultargs") IsParallel; %feature("autodoc", "Return ------- @@ -1061,8 +1061,8 @@ Returns true if the curve is on a parallel surface. . ") IsParallel; Standard_Boolean IsParallel(); - /****************** NbExt ******************/ - /**** md5 signature: 5a5d42851c4a5f73b150985c361524ae ****/ + /****** BRepExtrema_ExtCF::NbExt ******/ + /****** md5 signature: 5a5d42851c4a5f73b150985c361524ae ******/ %feature("compactdefaultargs") NbExt; %feature("autodoc", "Return ------- @@ -1074,8 +1074,8 @@ Returns the number of extremum distances. . ") NbExt; Standard_Integer NbExt(); - /****************** ParameterOnEdge ******************/ - /**** md5 signature: 76a0a1f9b7fb5ec2017023399a9da861 ****/ + /****** BRepExtrema_ExtCF::ParameterOnEdge ******/ + /****** md5 signature: 76a0a1f9b7fb5ec2017023399a9da861 ******/ %feature("compactdefaultargs") ParameterOnEdge; %feature("autodoc", " Parameters @@ -1092,8 +1092,8 @@ Returns the parameters on the edge of the th extremum distance. . ") ParameterOnEdge; Standard_Real ParameterOnEdge(const Standard_Integer N); - /****************** ParameterOnFace ******************/ - /**** md5 signature: 791ddf842d14bc9cd39246b45e9b766e ****/ + /****** BRepExtrema_ExtCF::ParameterOnFace ******/ + /****** md5 signature: 791ddf842d14bc9cd39246b45e9b766e ******/ %feature("compactdefaultargs") ParameterOnFace; %feature("autodoc", " Parameters @@ -1111,8 +1111,8 @@ Returns the parameters on the face of the th extremum distance. . ") ParameterOnFace; void ParameterOnFace(const Standard_Integer N, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Perform ******************/ - /**** md5 signature: e2ae2dd62a61e8e392541e0c53f605ce ****/ + /****** BRepExtrema_ExtCF::Perform ******/ + /****** md5 signature: e2ae2dd62a61e8e392541e0c53f605ce ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1130,8 +1130,8 @@ An exception is raised if the fields have not been initialized. be careful: this ") Perform; void Perform(const TopoDS_Edge & E, const TopoDS_Face & F); - /****************** PointOnEdge ******************/ - /**** md5 signature: 6d64189e4537e032129d9312b9eb6263 ****/ + /****** BRepExtrema_ExtCF::PointOnEdge ******/ + /****** md5 signature: 6d64189e4537e032129d9312b9eb6263 ******/ %feature("compactdefaultargs") PointOnEdge; %feature("autodoc", " Parameters @@ -1148,8 +1148,8 @@ Returns the point of the th extremum distance. . ") PointOnEdge; gp_Pnt PointOnEdge(const Standard_Integer N); - /****************** PointOnFace ******************/ - /**** md5 signature: 921e10384fe2543ffe77c7f9bda2de77 ****/ + /****** BRepExtrema_ExtCF::PointOnFace ******/ + /****** md5 signature: 921e10384fe2543ffe77c7f9bda2de77 ******/ %feature("compactdefaultargs") PointOnFace; %feature("autodoc", " Parameters @@ -1166,8 +1166,8 @@ Returns the point of the th extremum distance. . ") PointOnFace; gp_Pnt PointOnFace(const Standard_Integer N); - /****************** SquareDistance ******************/ - /**** md5 signature: 84f99c4c6de2197ef464c1aadcb7580e ****/ + /****** BRepExtrema_ExtCF::SquareDistance ******/ + /****** md5 signature: 84f99c4c6de2197ef464c1aadcb7580e ******/ %feature("compactdefaultargs") SquareDistance; %feature("autodoc", " Parameters @@ -1198,8 +1198,8 @@ Returns the value of the th extremum square distance. . **************************/ class BRepExtrema_ExtFF { public: - /****************** BRepExtrema_ExtFF ******************/ - /**** md5 signature: b136a0fce002315d921532e24a9581b2 ****/ + /****** BRepExtrema_ExtFF::BRepExtrema_ExtFF ******/ + /****** md5 signature: b136a0fce002315d921532e24a9581b2 ******/ %feature("compactdefaultargs") BRepExtrema_ExtFF; %feature("autodoc", "Return ------- @@ -1211,8 +1211,8 @@ No available documentation. ") BRepExtrema_ExtFF; BRepExtrema_ExtFF(); - /****************** BRepExtrema_ExtFF ******************/ - /**** md5 signature: 70b7a7554f1d0147af0991d67e7e29d2 ****/ + /****** BRepExtrema_ExtFF::BRepExtrema_ExtFF ******/ + /****** md5 signature: 70b7a7554f1d0147af0991d67e7e29d2 ******/ %feature("compactdefaultargs") BRepExtrema_ExtFF; %feature("autodoc", " Parameters @@ -1230,8 +1230,8 @@ It calculates all the distances. . ") BRepExtrema_ExtFF; BRepExtrema_ExtFF(const TopoDS_Face & F1, const TopoDS_Face & F2); - /****************** Initialize ******************/ - /**** md5 signature: 9cbae6cf246b55baed45100dd3ac1d25 ****/ + /****** BRepExtrema_ExtFF::Initialize ******/ + /****** md5 signature: 9cbae6cf246b55baed45100dd3ac1d25 ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -1248,8 +1248,8 @@ No available documentation. ") Initialize; void Initialize(const TopoDS_Face & F2); - /****************** IsDone ******************/ - /**** md5 signature: e385477ab1bec806154173d4a550fd68 ****/ + /****** BRepExtrema_ExtFF::IsDone ******/ + /****** md5 signature: e385477ab1bec806154173d4a550fd68 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -1261,8 +1261,8 @@ True if the distances are found. . ") IsDone; Standard_Boolean IsDone(); - /****************** IsParallel ******************/ - /**** md5 signature: 1a61f067818333b9699057e51665b906 ****/ + /****** BRepExtrema_ExtFF::IsParallel ******/ + /****** md5 signature: 1a61f067818333b9699057e51665b906 ******/ %feature("compactdefaultargs") IsParallel; %feature("autodoc", "Return ------- @@ -1274,8 +1274,8 @@ Returns true if the surfaces are parallel. . ") IsParallel; Standard_Boolean IsParallel(); - /****************** NbExt ******************/ - /**** md5 signature: 5a5d42851c4a5f73b150985c361524ae ****/ + /****** BRepExtrema_ExtFF::NbExt ******/ + /****** md5 signature: 5a5d42851c4a5f73b150985c361524ae ******/ %feature("compactdefaultargs") NbExt; %feature("autodoc", "Return ------- @@ -1287,8 +1287,8 @@ Returns the number of extremum distances. . ") NbExt; Standard_Integer NbExt(); - /****************** ParameterOnFace1 ******************/ - /**** md5 signature: d7c60f4fb2661a9fdc0ee70663af522b ****/ + /****** BRepExtrema_ExtFF::ParameterOnFace1 ******/ + /****** md5 signature: d7c60f4fb2661a9fdc0ee70663af522b ******/ %feature("compactdefaultargs") ParameterOnFace1; %feature("autodoc", " Parameters @@ -1306,8 +1306,8 @@ Returns the parameters on the face f1 of the th extremum distance. . ") ParameterOnFace1; void ParameterOnFace1(const Standard_Integer N, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** ParameterOnFace2 ******************/ - /**** md5 signature: f042c9bcc857cbeda7df4acc0988844e ****/ + /****** BRepExtrema_ExtFF::ParameterOnFace2 ******/ + /****** md5 signature: f042c9bcc857cbeda7df4acc0988844e ******/ %feature("compactdefaultargs") ParameterOnFace2; %feature("autodoc", " Parameters @@ -1325,8 +1325,8 @@ Returns the parameters on the face f2 of the th extremum distance. . ") ParameterOnFace2; void ParameterOnFace2(const Standard_Integer N, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Perform ******************/ - /**** md5 signature: 20b101b6609f56b4df981165ffc5760a ****/ + /****** BRepExtrema_ExtFF::Perform ******/ + /****** md5 signature: 20b101b6609f56b4df981165ffc5760a ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1344,8 +1344,8 @@ An exception is raised if the fields have not been initialized. be careful: this ") Perform; void Perform(const TopoDS_Face & F1, const TopoDS_Face & F2); - /****************** PointOnFace1 ******************/ - /**** md5 signature: 71044a562d7c935beafd57e5845e6288 ****/ + /****** BRepExtrema_ExtFF::PointOnFace1 ******/ + /****** md5 signature: 71044a562d7c935beafd57e5845e6288 ******/ %feature("compactdefaultargs") PointOnFace1; %feature("autodoc", " Parameters @@ -1362,8 +1362,8 @@ Returns the point of the th extremum distance. . ") PointOnFace1; gp_Pnt PointOnFace1(const Standard_Integer N); - /****************** PointOnFace2 ******************/ - /**** md5 signature: 10275aa7fa44a810eda6023c45c85baa ****/ + /****** BRepExtrema_ExtFF::PointOnFace2 ******/ + /****** md5 signature: 10275aa7fa44a810eda6023c45c85baa ******/ %feature("compactdefaultargs") PointOnFace2; %feature("autodoc", " Parameters @@ -1380,8 +1380,8 @@ Returns the point of the th extremum distance. . ") PointOnFace2; gp_Pnt PointOnFace2(const Standard_Integer N); - /****************** SquareDistance ******************/ - /**** md5 signature: 84f99c4c6de2197ef464c1aadcb7580e ****/ + /****** BRepExtrema_ExtFF::SquareDistance ******/ + /****** md5 signature: 84f99c4c6de2197ef464c1aadcb7580e ******/ %feature("compactdefaultargs") SquareDistance; %feature("autodoc", " Parameters @@ -1412,8 +1412,8 @@ Returns the value of the th extremum square distance. . **************************/ class BRepExtrema_ExtPC { public: - /****************** BRepExtrema_ExtPC ******************/ - /**** md5 signature: 7363107ba31731bcfd5377ab6afd269f ****/ + /****** BRepExtrema_ExtPC::BRepExtrema_ExtPC ******/ + /****** md5 signature: 7363107ba31731bcfd5377ab6afd269f ******/ %feature("compactdefaultargs") BRepExtrema_ExtPC; %feature("autodoc", "Return ------- @@ -1425,8 +1425,8 @@ No available documentation. ") BRepExtrema_ExtPC; BRepExtrema_ExtPC(); - /****************** BRepExtrema_ExtPC ******************/ - /**** md5 signature: 77947b9170dd4391d353244f4f6218cc ****/ + /****** BRepExtrema_ExtPC::BRepExtrema_ExtPC ******/ + /****** md5 signature: 77947b9170dd4391d353244f4f6218cc ******/ %feature("compactdefaultargs") BRepExtrema_ExtPC; %feature("autodoc", " Parameters @@ -1444,8 +1444,8 @@ It calculates all the distances. . ") BRepExtrema_ExtPC; BRepExtrema_ExtPC(const TopoDS_Vertex & V, const TopoDS_Edge & E); - /****************** Initialize ******************/ - /**** md5 signature: b0b8cb0790e5e63c5a8b3b133b757731 ****/ + /****** BRepExtrema_ExtPC::Initialize ******/ + /****** md5 signature: b0b8cb0790e5e63c5a8b3b133b757731 ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -1462,8 +1462,8 @@ No available documentation. ") Initialize; void Initialize(const TopoDS_Edge & E); - /****************** IsDone ******************/ - /**** md5 signature: e385477ab1bec806154173d4a550fd68 ****/ + /****** BRepExtrema_ExtPC::IsDone ******/ + /****** md5 signature: e385477ab1bec806154173d4a550fd68 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -1475,8 +1475,8 @@ True if the distances are found. . ") IsDone; Standard_Boolean IsDone(); - /****************** IsMin ******************/ - /**** md5 signature: f1999d585543ddaf57e9197353e4f49c ****/ + /****** BRepExtrema_ExtPC::IsMin ******/ + /****** md5 signature: f1999d585543ddaf57e9197353e4f49c ******/ %feature("compactdefaultargs") IsMin; %feature("autodoc", " Parameters @@ -1493,8 +1493,8 @@ Returns true if the th extremum distance is a minimum. . ") IsMin; Standard_Boolean IsMin(const Standard_Integer N); - /****************** NbExt ******************/ - /**** md5 signature: 5a5d42851c4a5f73b150985c361524ae ****/ + /****** BRepExtrema_ExtPC::NbExt ******/ + /****** md5 signature: 5a5d42851c4a5f73b150985c361524ae ******/ %feature("compactdefaultargs") NbExt; %feature("autodoc", "Return ------- @@ -1506,8 +1506,8 @@ Returns the number of extremum distances. . ") NbExt; Standard_Integer NbExt(); - /****************** Parameter ******************/ - /**** md5 signature: 1b2ac4d8f834bb1c7b0d2ed42b0a050c ****/ + /****** BRepExtrema_ExtPC::Parameter ******/ + /****** md5 signature: 1b2ac4d8f834bb1c7b0d2ed42b0a050c ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", " Parameters @@ -1524,8 +1524,8 @@ Returns the parameter on the edge of the th extremum distance. . ") Parameter; Standard_Real Parameter(const Standard_Integer N); - /****************** Perform ******************/ - /**** md5 signature: f794a3745eea09bbd96f5aefe65dee12 ****/ + /****** BRepExtrema_ExtPC::Perform ******/ + /****** md5 signature: f794a3745eea09bbd96f5aefe65dee12 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1542,8 +1542,8 @@ An exception is raised if the fields have not been initialized. . ") Perform; void Perform(const TopoDS_Vertex & V); - /****************** Point ******************/ - /**** md5 signature: d05a4ad43ced02adf85358c081d42318 ****/ + /****** BRepExtrema_ExtPC::Point ******/ + /****** md5 signature: d05a4ad43ced02adf85358c081d42318 ******/ %feature("compactdefaultargs") Point; %feature("autodoc", " Parameters @@ -1560,8 +1560,8 @@ Returns the point of the th extremum distance. . ") Point; gp_Pnt Point(const Standard_Integer N); - /****************** SquareDistance ******************/ - /**** md5 signature: 84f99c4c6de2197ef464c1aadcb7580e ****/ + /****** BRepExtrema_ExtPC::SquareDistance ******/ + /****** md5 signature: 84f99c4c6de2197ef464c1aadcb7580e ******/ %feature("compactdefaultargs") SquareDistance; %feature("autodoc", " Parameters @@ -1578,8 +1578,8 @@ Returns the value of the th extremum square distance. . ") SquareDistance; Standard_Real SquareDistance(const Standard_Integer N); - /****************** TrimmedSquareDistances ******************/ - /**** md5 signature: 739eb38534e2c59aa37a147e06ae1d68 ****/ + /****** BRepExtrema_ExtPC::TrimmedSquareDistances ******/ + /****** md5 signature: 739eb38534e2c59aa37a147e06ae1d68 ******/ %feature("compactdefaultargs") TrimmedSquareDistances; %feature("autodoc", " Parameters @@ -1612,8 +1612,8 @@ If the curve is a trimmed curve, dist1 is a square distance between

and the **************************/ class BRepExtrema_ExtPF { public: - /****************** BRepExtrema_ExtPF ******************/ - /**** md5 signature: 59679f7b84a26ede08f2011ca81a3d9a ****/ + /****** BRepExtrema_ExtPF::BRepExtrema_ExtPF ******/ + /****** md5 signature: 59679f7b84a26ede08f2011ca81a3d9a ******/ %feature("compactdefaultargs") BRepExtrema_ExtPF; %feature("autodoc", "Return ------- @@ -1625,8 +1625,8 @@ No available documentation. ") BRepExtrema_ExtPF; BRepExtrema_ExtPF(); - /****************** BRepExtrema_ExtPF ******************/ - /**** md5 signature: 9f029172528aafcb8c173bb3e47a6d64 ****/ + /****** BRepExtrema_ExtPF::BRepExtrema_ExtPF ******/ + /****** md5 signature: 9f029172528aafcb8c173bb3e47a6d64 ******/ %feature("compactdefaultargs") BRepExtrema_ExtPF; %feature("autodoc", " Parameters @@ -1646,8 +1646,8 @@ It calculates all the distances. . ") BRepExtrema_ExtPF; BRepExtrema_ExtPF(const TopoDS_Vertex & TheVertex, const TopoDS_Face & TheFace, const Extrema_ExtFlag TheFlag = Extrema_ExtFlag_MINMAX, const Extrema_ExtAlgo TheAlgo = Extrema_ExtAlgo_Grad); - /****************** Initialize ******************/ - /**** md5 signature: b186eacda6514ba3cf68a60d6462c860 ****/ + /****** BRepExtrema_ExtPF::Initialize ******/ + /****** md5 signature: b186eacda6514ba3cf68a60d6462c860 ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -1666,8 +1666,8 @@ No available documentation. ") Initialize; void Initialize(const TopoDS_Face & TheFace, const Extrema_ExtFlag TheFlag = Extrema_ExtFlag_MINMAX, const Extrema_ExtAlgo TheAlgo = Extrema_ExtAlgo_Grad); - /****************** IsDone ******************/ - /**** md5 signature: e385477ab1bec806154173d4a550fd68 ****/ + /****** BRepExtrema_ExtPF::IsDone ******/ + /****** md5 signature: e385477ab1bec806154173d4a550fd68 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -1679,8 +1679,8 @@ True if the distances are found. . ") IsDone; Standard_Boolean IsDone(); - /****************** NbExt ******************/ - /**** md5 signature: 5a5d42851c4a5f73b150985c361524ae ****/ + /****** BRepExtrema_ExtPF::NbExt ******/ + /****** md5 signature: 5a5d42851c4a5f73b150985c361524ae ******/ %feature("compactdefaultargs") NbExt; %feature("autodoc", "Return ------- @@ -1692,8 +1692,8 @@ Returns the number of extremum distances. . ") NbExt; Standard_Integer NbExt(); - /****************** Parameter ******************/ - /**** md5 signature: ac3a14addcd496ddf44c121b63d7a1b0 ****/ + /****** BRepExtrema_ExtPF::Parameter ******/ + /****** md5 signature: ac3a14addcd496ddf44c121b63d7a1b0 ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", " Parameters @@ -1711,8 +1711,8 @@ Returns the parameters on the face of the th extremum distance. . ") Parameter; void Parameter(const Standard_Integer N, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Perform ******************/ - /**** md5 signature: 8abaa691a7bf98cb37f090b7a876264b ****/ + /****** BRepExtrema_ExtPF::Perform ******/ + /****** md5 signature: 8abaa691a7bf98cb37f090b7a876264b ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1730,8 +1730,8 @@ An exception is raised if the fields have not been initialized. be careful: this ") Perform; void Perform(const TopoDS_Vertex & TheVertex, const TopoDS_Face & TheFace); - /****************** Point ******************/ - /**** md5 signature: d05a4ad43ced02adf85358c081d42318 ****/ + /****** BRepExtrema_ExtPF::Point ******/ + /****** md5 signature: d05a4ad43ced02adf85358c081d42318 ******/ %feature("compactdefaultargs") Point; %feature("autodoc", " Parameters @@ -1748,8 +1748,8 @@ Returns the point of the th extremum distance. . ") Point; gp_Pnt Point(const Standard_Integer N); - /****************** SetAlgo ******************/ - /**** md5 signature: cad6f54c64a4b69da22bb042d2e4fe8a ****/ + /****** BRepExtrema_ExtPF::SetAlgo ******/ + /****** md5 signature: cad6f54c64a4b69da22bb042d2e4fe8a ******/ %feature("compactdefaultargs") SetAlgo; %feature("autodoc", " Parameters @@ -1766,8 +1766,8 @@ No available documentation. ") SetAlgo; void SetAlgo(const Extrema_ExtAlgo A); - /****************** SetFlag ******************/ - /**** md5 signature: 7ce767aa4373b85a8cea83f409a2ebfb ****/ + /****** BRepExtrema_ExtPF::SetFlag ******/ + /****** md5 signature: 7ce767aa4373b85a8cea83f409a2ebfb ******/ %feature("compactdefaultargs") SetFlag; %feature("autodoc", " Parameters @@ -1784,8 +1784,8 @@ No available documentation. ") SetFlag; void SetFlag(const Extrema_ExtFlag F); - /****************** SquareDistance ******************/ - /**** md5 signature: 84f99c4c6de2197ef464c1aadcb7580e ****/ + /****** BRepExtrema_ExtPF::SquareDistance ******/ + /****** md5 signature: 84f99c4c6de2197ef464c1aadcb7580e ******/ %feature("compactdefaultargs") SquareDistance; %feature("autodoc", " Parameters @@ -1819,8 +1819,8 @@ Returns the value of the th extremum square distance. . *************************/ class BRepExtrema_Poly { public: - /****************** Distance ******************/ - /**** md5 signature: 3cdcfe9983fe73f7dd6f4609cda88011 ****/ + /****** BRepExtrema_Poly::Distance ******/ + /****** md5 signature: 3cdcfe9983fe73f7dd6f4609cda88011 ******/ %feature("compactdefaultargs") Distance; %feature("autodoc", " Parameters @@ -1878,8 +1878,8 @@ ProxPnt_Status_UNKNOWN = ProxPnt_Status.ProxPnt_Status_UNKNOWN }; /* end python proxy for enums */ - /****************** BRepExtrema_ProximityDistTool ******************/ - /**** md5 signature: 2988f1cc0151ca5566402211c63fd7de ****/ + /****** BRepExtrema_ProximityDistTool::BRepExtrema_ProximityDistTool ******/ + /****** md5 signature: 2988f1cc0151ca5566402211c63fd7de ******/ %feature("compactdefaultargs") BRepExtrema_ProximityDistTool; %feature("autodoc", "Return ------- @@ -1891,8 +1891,8 @@ Creates new unitialized tool. ") BRepExtrema_ProximityDistTool; BRepExtrema_ProximityDistTool(); - /****************** BRepExtrema_ProximityDistTool ******************/ - /**** md5 signature: b080844c8fa666dae8c0e8db8d27e87e ****/ + /****** BRepExtrema_ProximityDistTool::BRepExtrema_ProximityDistTool ******/ + /****** md5 signature: b080844c8fa666dae8c0e8db8d27e87e ******/ %feature("compactdefaultargs") BRepExtrema_ProximityDistTool; %feature("autodoc", " Parameters @@ -1915,8 +1915,8 @@ Creates new tool for the given element sets. ") BRepExtrema_ProximityDistTool; BRepExtrema_ProximityDistTool(const opencascade::handle & theSet1, const Standard_Integer theNbSamples1, const BVH_Array3d & theAddVertices1, const NCollection_Vector & theAddStatus1, const opencascade::handle & theSet2, const BRepExtrema_ShapeList & theShapeList1, const BRepExtrema_ShapeList & theShapeList2); - /****************** Accept ******************/ - /**** md5 signature: 47868288da8d60ae3574004f3eef6f3b ****/ + /****** BRepExtrema_ProximityDistTool::Accept ******/ + /****** md5 signature: 47868288da8d60ae3574004f3eef6f3b ******/ %feature("compactdefaultargs") Accept; %feature("autodoc", " Parameters @@ -1934,8 +1934,8 @@ Defines the rules for leaf acceptance. ") Accept; virtual Standard_Boolean Accept(const Standard_Integer theSgmIdx, const Standard_Real &); - /****************** IsEdgeOnBorder ******************/ - /**** md5 signature: 7f2df1d45fe4dd10cb81da19c83428fd ****/ + /****** BRepExtrema_ProximityDistTool::IsEdgeOnBorder ******/ + /****** md5 signature: 7f2df1d45fe4dd10cb81da19c83428fd ******/ %feature("compactdefaultargs") IsEdgeOnBorder; %feature("autodoc", " Parameters @@ -1955,8 +1955,8 @@ Returns true if the edge is on the boarder. ") IsEdgeOnBorder; static Standard_Boolean IsEdgeOnBorder(const Standard_Integer theTrgIdx, const Standard_Integer theFirstEdgeNodeIdx, const Standard_Integer theSecondEdgeNodeIdx, const Handle ( Poly_Triangulation ) & theTr); - /****************** IsNodeOnBorder ******************/ - /**** md5 signature: 6a6c9031bf497d7acf6e95de1f2784f6 ****/ + /****** BRepExtrema_ProximityDistTool::IsNodeOnBorder ******/ + /****** md5 signature: 6a6c9031bf497d7acf6e95de1f2784f6 ******/ %feature("compactdefaultargs") IsNodeOnBorder; %feature("autodoc", " Parameters @@ -1974,8 +1974,8 @@ Returns true if the node is on the boarder. ") IsNodeOnBorder; static Standard_Boolean IsNodeOnBorder(const Standard_Integer theNodeIdx, const Handle ( Poly_Triangulation ) & theTr); - /****************** LoadShapeLists ******************/ - /**** md5 signature: 2ec9bfacd5c06102fdebe80e35402ca0 ****/ + /****** BRepExtrema_ProximityDistTool::LoadShapeLists ******/ + /****** md5 signature: 2ec9bfacd5c06102fdebe80e35402ca0 ******/ %feature("compactdefaultargs") LoadShapeLists; %feature("autodoc", " Parameters @@ -1993,8 +1993,8 @@ Loads the given list of subshapes into the tool. ") LoadShapeLists; void LoadShapeLists(const BRepExtrema_ShapeList & theShapeList1, const BRepExtrema_ShapeList & theShapeList2); - /****************** LoadTriangleSets ******************/ - /**** md5 signature: dfd78a7a416eff23ee78d969d7e3cf4f ****/ + /****** BRepExtrema_ProximityDistTool::LoadTriangleSets ******/ + /****** md5 signature: dfd78a7a416eff23ee78d969d7e3cf4f ******/ %feature("compactdefaultargs") LoadTriangleSets; %feature("autodoc", " Parameters @@ -2012,8 +2012,8 @@ Loads the given element sets into the tool. ") LoadTriangleSets; void LoadTriangleSets(const opencascade::handle & theSet1, const opencascade::handle & theSet2); - /****************** Perform ******************/ - /**** md5 signature: c04b01412cba7220c024b5eb4532697f ****/ + /****** BRepExtrema_ProximityDistTool::Perform ******/ + /****** md5 signature: c04b01412cba7220c024b5eb4532697f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", "Return ------- @@ -2025,8 +2025,8 @@ Performs searching of the proximity distance. ") Perform; void Perform(); - /****************** ProximityDistance ******************/ - /**** md5 signature: 1c229c100cac62e1d3970eed3dcb9856 ****/ + /****** BRepExtrema_ProximityDistTool::ProximityDistance ******/ + /****** md5 signature: 1c229c100cac62e1d3970eed3dcb9856 ******/ %feature("compactdefaultargs") ProximityDistance; %feature("autodoc", "Return ------- @@ -2038,8 +2038,8 @@ Returns the computed distance. ") ProximityDistance; Standard_Real ProximityDistance(); - /****************** ProximityPoints ******************/ - /**** md5 signature: 54701e724238367b6b602dfb87695880 ****/ + /****** BRepExtrema_ProximityDistTool::ProximityPoints ******/ + /****** md5 signature: 54701e724238367b6b602dfb87695880 ******/ %feature("compactdefaultargs") ProximityPoints; %feature("autodoc", " Parameters @@ -2057,8 +2057,8 @@ Returns points on triangles sets, which provide the proximity distance. ") ProximityPoints; void ProximityPoints(BVH_Vec3d & thePoint1, BVH_Vec3d & thePoint2); - /****************** ProximityPointsStatus ******************/ - /**** md5 signature: cbb67aeda5a68bd79cbb58089638d3f8 ****/ + /****** BRepExtrema_ProximityDistTool::ProximityPointsStatus ******/ + /****** md5 signature: cbb67aeda5a68bd79cbb58089638d3f8 ******/ %feature("compactdefaultargs") ProximityPointsStatus; %feature("autodoc", " Parameters @@ -2076,8 +2076,8 @@ Returns status of points on triangles sets, which provide the proximity distance ") ProximityPointsStatus; void ProximityPointsStatus(ProxPnt_Status thePointStatus1, ProxPnt_Status thePointStatus2); - /****************** RejectNode ******************/ - /**** md5 signature: 62cfd38e542b7e9753f6f91b3eb7777b ****/ + /****** BRepExtrema_ProximityDistTool::RejectNode ******/ + /****** md5 signature: 62cfd38e542b7e9753f6f91b3eb7777b ******/ %feature("compactdefaultargs") RejectNode; %feature("autodoc", " Parameters @@ -2113,8 +2113,8 @@ Defines the rules for node rejection by bounding box. ***********************************/ class BRepExtrema_ShapeProximity { public: - /****************** BRepExtrema_ShapeProximity ******************/ - /**** md5 signature: 73b29b290349b3955b499c712de97888 ****/ + /****** BRepExtrema_ShapeProximity::BRepExtrema_ShapeProximity ******/ + /****** md5 signature: 73b29b290349b3955b499c712de97888 ******/ %feature("compactdefaultargs") BRepExtrema_ShapeProximity; %feature("autodoc", " Parameters @@ -2131,8 +2131,8 @@ Creates empty proximity tool. ") BRepExtrema_ShapeProximity; BRepExtrema_ShapeProximity(const Standard_Real theTolerance = Precision::Infinite()); - /****************** BRepExtrema_ShapeProximity ******************/ - /**** md5 signature: 531da26b6a3f5440b741fe549c9ade34 ****/ + /****** BRepExtrema_ShapeProximity::BRepExtrema_ShapeProximity ******/ + /****** md5 signature: 531da26b6a3f5440b741fe549c9ade34 ******/ %feature("compactdefaultargs") BRepExtrema_ShapeProximity; %feature("autodoc", " Parameters @@ -2151,8 +2151,8 @@ Creates proximity tool for the given two shapes. ") BRepExtrema_ShapeProximity; BRepExtrema_ShapeProximity(const TopoDS_Shape & theShape1, const TopoDS_Shape & theShape2, const Standard_Real theTolerance = Precision::Infinite()); - /****************** ElementSet1 ******************/ - /**** md5 signature: f5328b7099eceb0eda7e749d56fd8afa ****/ + /****** BRepExtrema_ShapeProximity::ElementSet1 ******/ + /****** md5 signature: f5328b7099eceb0eda7e749d56fd8afa ******/ %feature("compactdefaultargs") ElementSet1; %feature("autodoc", "Return ------- @@ -2164,8 +2164,8 @@ Returns set of all the face triangles of the 1st shape. ") ElementSet1; const opencascade::handle & ElementSet1(); - /****************** ElementSet2 ******************/ - /**** md5 signature: e2ee7df49652a0d3ac07499a44f9b24b ****/ + /****** BRepExtrema_ShapeProximity::ElementSet2 ******/ + /****** md5 signature: e2ee7df49652a0d3ac07499a44f9b24b ******/ %feature("compactdefaultargs") ElementSet2; %feature("autodoc", "Return ------- @@ -2177,8 +2177,8 @@ Returns set of all the face triangles of the 2nd shape. ") ElementSet2; const opencascade::handle & ElementSet2(); - /****************** GetSubShape1 ******************/ - /**** md5 signature: 9d27a6a3fa6ff016ce6fb25c224de40d ****/ + /****** BRepExtrema_ShapeProximity::GetSubShape1 ******/ + /****** md5 signature: 9d27a6a3fa6ff016ce6fb25c224de40d ******/ %feature("compactdefaultargs") GetSubShape1; %feature("autodoc", " Parameters @@ -2195,8 +2195,8 @@ Returns sub-shape from 1st shape with the given index (started from 0). ") GetSubShape1; const TopoDS_Shape GetSubShape1(const Standard_Integer theID); - /****************** GetSubShape2 ******************/ - /**** md5 signature: 25abd1b9ef769c834795d782c0a14dbc ****/ + /****** BRepExtrema_ShapeProximity::GetSubShape2 ******/ + /****** md5 signature: 25abd1b9ef769c834795d782c0a14dbc ******/ %feature("compactdefaultargs") GetSubShape2; %feature("autodoc", " Parameters @@ -2213,8 +2213,8 @@ Returns sub-shape from 1st shape with the given index (started from 0). ") GetSubShape2; const TopoDS_Shape GetSubShape2(const Standard_Integer theID); - /****************** IsDone ******************/ - /**** md5 signature: e385477ab1bec806154173d4a550fd68 ****/ + /****** BRepExtrema_ShapeProximity::IsDone ******/ + /****** md5 signature: e385477ab1bec806154173d4a550fd68 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -2226,8 +2226,8 @@ True if the search is completed. ") IsDone; Standard_Boolean IsDone(); - /****************** LoadShape1 ******************/ - /**** md5 signature: ed5dc6256ef0f54993af8d5f42643204 ****/ + /****** BRepExtrema_ShapeProximity::LoadShape1 ******/ + /****** md5 signature: ed5dc6256ef0f54993af8d5f42643204 ******/ %feature("compactdefaultargs") LoadShape1; %feature("autodoc", " Parameters @@ -2244,8 +2244,8 @@ Loads 1st shape into proximity tool. ") LoadShape1; Standard_Boolean LoadShape1(const TopoDS_Shape & theShape1); - /****************** LoadShape2 ******************/ - /**** md5 signature: 24b356a69585081561c46ecbe63fdbeb ****/ + /****** BRepExtrema_ShapeProximity::LoadShape2 ******/ + /****** md5 signature: 24b356a69585081561c46ecbe63fdbeb ******/ %feature("compactdefaultargs") LoadShape2; %feature("autodoc", " Parameters @@ -2262,8 +2262,8 @@ Loads 2nd shape into proximity tool. ") LoadShape2; Standard_Boolean LoadShape2(const TopoDS_Shape & theShape2); - /****************** OverlapSubShapes1 ******************/ - /**** md5 signature: 9710dae176016573e5f78f6d7f31bfa4 ****/ + /****** BRepExtrema_ShapeProximity::OverlapSubShapes1 ******/ + /****** md5 signature: 9710dae176016573e5f78f6d7f31bfa4 ******/ %feature("compactdefaultargs") OverlapSubShapes1; %feature("autodoc", "Return ------- @@ -2275,8 +2275,8 @@ Returns set of ids of overlapped faces of 1st shape (started from 0). ") OverlapSubShapes1; const BRepExtrema_MapOfIntegerPackedMapOfInteger & OverlapSubShapes1(); - /****************** OverlapSubShapes2 ******************/ - /**** md5 signature: fc9b72c448de7230c8960bcd7b47e9f5 ****/ + /****** BRepExtrema_ShapeProximity::OverlapSubShapes2 ******/ + /****** md5 signature: fc9b72c448de7230c8960bcd7b47e9f5 ******/ %feature("compactdefaultargs") OverlapSubShapes2; %feature("autodoc", "Return ------- @@ -2288,8 +2288,8 @@ Returns set of ids of overlapped faces of 2nd shape (started from 0). ") OverlapSubShapes2; const BRepExtrema_MapOfIntegerPackedMapOfInteger & OverlapSubShapes2(); - /****************** Perform ******************/ - /**** md5 signature: c04b01412cba7220c024b5eb4532697f ****/ + /****** BRepExtrema_ShapeProximity::Perform ******/ + /****** md5 signature: c04b01412cba7220c024b5eb4532697f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", "Return ------- @@ -2301,8 +2301,8 @@ Performs search of overlapped faces. ") Perform; void Perform(); - /****************** ProxPntStatus1 ******************/ - /**** md5 signature: 5b5a621c79fd72dfa7174da351c8990f ****/ + /****** BRepExtrema_ShapeProximity::ProxPntStatus1 ******/ + /****** md5 signature: 5b5a621c79fd72dfa7174da351c8990f ******/ %feature("compactdefaultargs") ProxPntStatus1; %feature("autodoc", "Return ------- @@ -2314,8 +2314,8 @@ Returns the status of point on the 1st shape, which could be used as a reference ") ProxPntStatus1; const ProxPnt_Status ProxPntStatus1(); - /****************** ProxPntStatus2 ******************/ - /**** md5 signature: 5f8c6ad089fa3dc1014ee2eaced6a8ee ****/ + /****** BRepExtrema_ShapeProximity::ProxPntStatus2 ******/ + /****** md5 signature: 5f8c6ad089fa3dc1014ee2eaced6a8ee ******/ %feature("compactdefaultargs") ProxPntStatus2; %feature("autodoc", "Return ------- @@ -2327,8 +2327,8 @@ Returns the status of point on the 2nd shape, which could be used as a reference ") ProxPntStatus2; const ProxPnt_Status ProxPntStatus2(); - /****************** Proximity ******************/ - /**** md5 signature: b971efcb1300162fab46e37d2a70dacd ****/ + /****** BRepExtrema_ShapeProximity::Proximity ******/ + /****** md5 signature: b971efcb1300162fab46e37d2a70dacd ******/ %feature("compactdefaultargs") Proximity; %feature("autodoc", "Return ------- @@ -2340,8 +2340,8 @@ Returns proximity value calculated for the whole input shapes. ") Proximity; Standard_Real Proximity(); - /****************** ProximityPoint1 ******************/ - /**** md5 signature: 7b89ebcbe2c3263efa38d81948de688a ****/ + /****** BRepExtrema_ShapeProximity::ProximityPoint1 ******/ + /****** md5 signature: 7b89ebcbe2c3263efa38d81948de688a ******/ %feature("compactdefaultargs") ProximityPoint1; %feature("autodoc", "Return ------- @@ -2353,8 +2353,8 @@ Returns the point on the 1st shape, which could be used as a reference point for ") ProximityPoint1; const gp_Pnt ProximityPoint1(); - /****************** ProximityPoint2 ******************/ - /**** md5 signature: 694a8c2b488abd3573c6ab1ad209c1ff ****/ + /****** BRepExtrema_ShapeProximity::ProximityPoint2 ******/ + /****** md5 signature: 694a8c2b488abd3573c6ab1ad209c1ff ******/ %feature("compactdefaultargs") ProximityPoint2; %feature("autodoc", "Return ------- @@ -2366,8 +2366,8 @@ Returns the point on the 2nd shape, which could be used as a reference point for ") ProximityPoint2; const gp_Pnt ProximityPoint2(); - /****************** SetNbSamples1 ******************/ - /**** md5 signature: 7c440e0080448ca35e32063181dbc6db ****/ + /****** BRepExtrema_ShapeProximity::SetNbSamples1 ******/ + /****** md5 signature: 7c440e0080448ca35e32063181dbc6db ******/ %feature("compactdefaultargs") SetNbSamples1; %feature("autodoc", " Parameters @@ -2384,8 +2384,8 @@ Set number of sample points on the 1st shape used to compute the proximity value ") SetNbSamples1; void SetNbSamples1(const Standard_Integer theNbSamples); - /****************** SetNbSamples2 ******************/ - /**** md5 signature: 1328b53fc399af111069fbfe7e25a24f ****/ + /****** BRepExtrema_ShapeProximity::SetNbSamples2 ******/ + /****** md5 signature: 1328b53fc399af111069fbfe7e25a24f ******/ %feature("compactdefaultargs") SetNbSamples2; %feature("autodoc", " Parameters @@ -2402,8 +2402,8 @@ Set number of sample points on the 2nd shape used to compute the proximity value ") SetNbSamples2; void SetNbSamples2(const Standard_Integer theNbSamples); - /****************** SetTolerance ******************/ - /**** md5 signature: 2df6ca87a12fc10518568e45d2ce38db ****/ + /****** BRepExtrema_ShapeProximity::SetTolerance ******/ + /****** md5 signature: 2df6ca87a12fc10518568e45d2ce38db ******/ %feature("compactdefaultargs") SetTolerance; %feature("autodoc", " Parameters @@ -2420,8 +2420,8 @@ Sets tolerance value for overlap test (distance between shapes). ") SetTolerance; void SetTolerance(const Standard_Real theTolerance); - /****************** Tolerance ******************/ - /**** md5 signature: 327dcbe220ae5ba3e0203f32c61c38db ****/ + /****** BRepExtrema_ShapeProximity::Tolerance ******/ + /****** md5 signature: 327dcbe220ae5ba3e0203f32c61c38db ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", "Return ------- @@ -2447,8 +2447,8 @@ Returns tolerance value for overlap test (distance between shapes). *********************************/ class BRepExtrema_SolutionElem { public: - /****************** BRepExtrema_SolutionElem ******************/ - /**** md5 signature: b1847c030d573d5fa6dbdfd7597b2246 ****/ + /****** BRepExtrema_SolutionElem::BRepExtrema_SolutionElem ******/ + /****** md5 signature: b1847c030d573d5fa6dbdfd7597b2246 ******/ %feature("compactdefaultargs") BRepExtrema_SolutionElem; %feature("autodoc", "Return ------- @@ -2460,8 +2460,8 @@ Empty constructor. ") BRepExtrema_SolutionElem; BRepExtrema_SolutionElem(); - /****************** BRepExtrema_SolutionElem ******************/ - /**** md5 signature: d15292718a8e41bab3cfe61e1983013d ****/ + /****** BRepExtrema_SolutionElem::BRepExtrema_SolutionElem ******/ + /****** md5 signature: d15292718a8e41bab3cfe61e1983013d ******/ %feature("compactdefaultargs") BRepExtrema_SolutionElem; %feature("autodoc", " Parameters @@ -2481,8 +2481,8 @@ This constructor is used when the solution of a distance is a vertex. the differ ") BRepExtrema_SolutionElem; BRepExtrema_SolutionElem(const Standard_Real theDist, const gp_Pnt & thePoint, const BRepExtrema_SupportType theSolType, const TopoDS_Vertex & theVertex); - /****************** BRepExtrema_SolutionElem ******************/ - /**** md5 signature: c44286d6515ce27f7cdab988b0bd4b89 ****/ + /****** BRepExtrema_SolutionElem::BRepExtrema_SolutionElem ******/ + /****** md5 signature: c44286d6515ce27f7cdab988b0bd4b89 ******/ %feature("compactdefaultargs") BRepExtrema_SolutionElem; %feature("autodoc", " Parameters @@ -2503,8 +2503,8 @@ This constructor is used when the solution of distance is on an edge. the differ ") BRepExtrema_SolutionElem; BRepExtrema_SolutionElem(const Standard_Real theDist, const gp_Pnt & thePoint, const BRepExtrema_SupportType theSolType, const TopoDS_Edge & theEdge, const Standard_Real theParam); - /****************** BRepExtrema_SolutionElem ******************/ - /**** md5 signature: 95f0e109da6e223843501141c53cfc0f ****/ + /****** BRepExtrema_SolutionElem::BRepExtrema_SolutionElem ******/ + /****** md5 signature: 95f0e109da6e223843501141c53cfc0f ******/ %feature("compactdefaultargs") BRepExtrema_SolutionElem; %feature("autodoc", " Parameters @@ -2526,8 +2526,8 @@ This constructor is used when the solution of distance is in a face. the differe ") BRepExtrema_SolutionElem; BRepExtrema_SolutionElem(const Standard_Real theDist, const gp_Pnt & thePoint, const BRepExtrema_SupportType theSolType, const TopoDS_Face & theFace, const Standard_Real theU, const Standard_Real theV); - /****************** Dist ******************/ - /**** md5 signature: f5307862a51cb97e3c26c8ff9fd2151c ****/ + /****** BRepExtrema_SolutionElem::Dist ******/ + /****** md5 signature: f5307862a51cb97e3c26c8ff9fd2151c ******/ %feature("compactdefaultargs") Dist; %feature("autodoc", "Return ------- @@ -2539,8 +2539,8 @@ Returns the value of the minimum distance. ") Dist; Standard_Real Dist(); - /****************** Edge ******************/ - /**** md5 signature: 657c12d9769667081fd960b688690cc0 ****/ + /****** BRepExtrema_SolutionElem::Edge ******/ + /****** md5 signature: 657c12d9769667081fd960b688690cc0 ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", "Return ------- @@ -2552,8 +2552,8 @@ Returns the vertex if the solution is an edge. ") Edge; const TopoDS_Edge Edge(); - /****************** EdgeParameter ******************/ - /**** md5 signature: e1e03ab8d7f734e6c45a0e3ecbfe3c1f ****/ + /****** BRepExtrema_SolutionElem::EdgeParameter ******/ + /****** md5 signature: e1e03ab8d7f734e6c45a0e3ecbfe3c1f ******/ %feature("compactdefaultargs") EdgeParameter; %feature("autodoc", " Parameters @@ -2569,8 +2569,8 @@ Returns the parameter value if the solution is on edge. ") EdgeParameter; void EdgeParameter(Standard_Real &OutValue); - /****************** Face ******************/ - /**** md5 signature: 95406b8d0d556c0537e0768c48713f21 ****/ + /****** BRepExtrema_SolutionElem::Face ******/ + /****** md5 signature: 95406b8d0d556c0537e0768c48713f21 ******/ %feature("compactdefaultargs") Face; %feature("autodoc", "Return ------- @@ -2582,8 +2582,8 @@ Returns the vertex if the solution is an face. ") Face; const TopoDS_Face Face(); - /****************** FaceParameter ******************/ - /**** md5 signature: 79577ec832d73e33d7d345390f41289a ****/ + /****** BRepExtrema_SolutionElem::FaceParameter ******/ + /****** md5 signature: 79577ec832d73e33d7d345390f41289a ******/ %feature("compactdefaultargs") FaceParameter; %feature("autodoc", " Parameters @@ -2600,8 +2600,8 @@ Returns the parameters u and v if the solution is in a face. ") FaceParameter; void FaceParameter(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Point ******************/ - /**** md5 signature: 4e742d9ca138939180edee86d3b37a8f ****/ + /****** BRepExtrema_SolutionElem::Point ******/ + /****** md5 signature: 4e742d9ca138939180edee86d3b37a8f ******/ %feature("compactdefaultargs") Point; %feature("autodoc", "Return ------- @@ -2613,8 +2613,8 @@ Returns the solution point. ") Point; const gp_Pnt Point(); - /****************** SupportKind ******************/ - /**** md5 signature: 078ef3765b64d7d1760ca2fcb79509bc ****/ + /****** BRepExtrema_SolutionElem::SupportKind ******/ + /****** md5 signature: 078ef3765b64d7d1760ca2fcb79509bc ******/ %feature("compactdefaultargs") SupportKind; %feature("autodoc", "Return ------- @@ -2626,8 +2626,8 @@ Returns the support type: isvertex => the solution is a vertex. isonedge => the ") SupportKind; BRepExtrema_SupportType SupportKind(); - /****************** Vertex ******************/ - /**** md5 signature: f6b9d30df043abdbae2c9dffcc672395 ****/ + /****** BRepExtrema_SolutionElem::Vertex ******/ + /****** md5 signature: f6b9d30df043abdbae2c9dffcc672395 ******/ %feature("compactdefaultargs") Vertex; %feature("autodoc", "Return ------- @@ -2653,8 +2653,8 @@ Returns the vertex if the solution is a vertex. ********************************/ class BRepExtrema_TriangleSet : public BVH_PrimitiveSet3d { public: - /****************** BRepExtrema_TriangleSet ******************/ - /**** md5 signature: c837909c9b9498946edb006a58e7df80 ****/ + /****** BRepExtrema_TriangleSet::BRepExtrema_TriangleSet ******/ + /****** md5 signature: c837909c9b9498946edb006a58e7df80 ******/ %feature("compactdefaultargs") BRepExtrema_TriangleSet; %feature("autodoc", "Return ------- @@ -2666,8 +2666,8 @@ Creates empty triangle set. ") BRepExtrema_TriangleSet; BRepExtrema_TriangleSet(); - /****************** BRepExtrema_TriangleSet ******************/ - /**** md5 signature: 0d12ee30e72748f6fc3d4890d0d61603 ****/ + /****** BRepExtrema_TriangleSet::BRepExtrema_TriangleSet ******/ + /****** md5 signature: 0d12ee30e72748f6fc3d4890d0d61603 ******/ %feature("compactdefaultargs") BRepExtrema_TriangleSet; %feature("autodoc", " Parameters @@ -2684,8 +2684,8 @@ Creates triangle set from the given face. ") BRepExtrema_TriangleSet; BRepExtrema_TriangleSet(const BRepExtrema_ShapeList & theFaces); - /****************** Box ******************/ - /**** md5 signature: 01168dd0900939e91f004003e5b0a1da ****/ + /****** BRepExtrema_TriangleSet::Box ******/ + /****** md5 signature: 01168dd0900939e91f004003e5b0a1da ******/ %feature("compactdefaultargs") Box; %feature("autodoc", " Parameters @@ -2702,8 +2702,8 @@ Returns aabb of the given triangle. ") Box; BVH_Box Box(const Standard_Integer theIndex); - /****************** Center ******************/ - /**** md5 signature: 1fbde3997a3e0d75df8f855e85efeedc ****/ + /****** BRepExtrema_TriangleSet::Center ******/ + /****** md5 signature: 1fbde3997a3e0d75df8f855e85efeedc ******/ %feature("compactdefaultargs") Center; %feature("autodoc", " Parameters @@ -2721,8 +2721,8 @@ Returns centroid position along specified axis. ") Center; Standard_Real Center(const Standard_Integer theIndex, const Standard_Integer theAxis); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** BRepExtrema_TriangleSet::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -2734,8 +2734,8 @@ Clears triangle set data. ") Clear; void Clear(); - /****************** GetFaceID ******************/ - /**** md5 signature: 636c69728e1d37778f46c7e7689817a2 ****/ + /****** BRepExtrema_TriangleSet::GetFaceID ******/ + /****** md5 signature: 636c69728e1d37778f46c7e7689817a2 ******/ %feature("compactdefaultargs") GetFaceID; %feature("autodoc", " Parameters @@ -2752,8 +2752,8 @@ Returns face id of the given triangle. ") GetFaceID; Standard_Integer GetFaceID(const Standard_Integer theIndex); - /****************** GetShapeIDOfVtx ******************/ - /**** md5 signature: 94f7f027601fc3d870fcd3c7c286a3d2 ****/ + /****** BRepExtrema_TriangleSet::GetShapeIDOfVtx ******/ + /****** md5 signature: 94f7f027601fc3d870fcd3c7c286a3d2 ******/ %feature("compactdefaultargs") GetShapeIDOfVtx; %feature("autodoc", " Parameters @@ -2770,8 +2770,8 @@ Returns shape id of the given vertex index. ") GetShapeIDOfVtx; Standard_Integer GetShapeIDOfVtx(const Standard_Integer theIndex); - /****************** GetTrgIdxInShape ******************/ - /**** md5 signature: 76f60b043a2db13c82e06a83b90203aa ****/ + /****** BRepExtrema_TriangleSet::GetTrgIdxInShape ******/ + /****** md5 signature: 76f60b043a2db13c82e06a83b90203aa ******/ %feature("compactdefaultargs") GetTrgIdxInShape; %feature("autodoc", " Parameters @@ -2788,8 +2788,8 @@ Returns triangle index (before swapping) in tringulation of the shape, which tri ") GetTrgIdxInShape; Standard_Integer GetTrgIdxInShape(const Standard_Integer theIndex); - /****************** GetVertices ******************/ - /**** md5 signature: 6895166cb2c145e3ff7ace9664551209 ****/ + /****** BRepExtrema_TriangleSet::GetVertices ******/ + /****** md5 signature: 6895166cb2c145e3ff7ace9664551209 ******/ %feature("compactdefaultargs") GetVertices; %feature("autodoc", "Return ------- @@ -2801,8 +2801,8 @@ Returns all vertices. ") GetVertices; const BVH_Array3d & GetVertices(); - /****************** GetVertices ******************/ - /**** md5 signature: 8f9f04b5f9949be6710853ac95fdc36d ****/ + /****** BRepExtrema_TriangleSet::GetVertices ******/ + /****** md5 signature: 8f9f04b5f9949be6710853ac95fdc36d ******/ %feature("compactdefaultargs") GetVertices; %feature("autodoc", " Parameters @@ -2822,8 +2822,8 @@ Returns vertices of the given triangle. ") GetVertices; void GetVertices(const Standard_Integer theIndex, BVH_Vec3d & theVertex1, BVH_Vec3d & theVertex2, BVH_Vec3d & theVertex3); - /****************** GetVtxIdxInShape ******************/ - /**** md5 signature: 638e97ebafbd36318e5edb25c78cf4af ****/ + /****** BRepExtrema_TriangleSet::GetVtxIdxInShape ******/ + /****** md5 signature: 638e97ebafbd36318e5edb25c78cf4af ******/ %feature("compactdefaultargs") GetVtxIdxInShape; %feature("autodoc", " Parameters @@ -2840,8 +2840,8 @@ Returns vertex index in tringulation of the shape, which vertex belongs, with th ") GetVtxIdxInShape; Standard_Integer GetVtxIdxInShape(const Standard_Integer theIndex); - /****************** GetVtxIndices ******************/ - /**** md5 signature: fb0daffb3cedb2be1930b6e0eebab39e ****/ + /****** BRepExtrema_TriangleSet::GetVtxIndices ******/ + /****** md5 signature: fb0daffb3cedb2be1930b6e0eebab39e ******/ %feature("compactdefaultargs") GetVtxIndices; %feature("autodoc", " Parameters @@ -2859,8 +2859,8 @@ Returns vertex indices of the given triangle. ") GetVtxIndices; void GetVtxIndices(const Standard_Integer theIndex, NCollection_Array1 & theVtxIndices); - /****************** Init ******************/ - /**** md5 signature: e68262ad9df79c968a16107c49147612 ****/ + /****** BRepExtrema_TriangleSet::Init ******/ + /****** md5 signature: e68262ad9df79c968a16107c49147612 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2877,8 +2877,8 @@ Initializes triangle set. ") Init; Standard_Boolean Init(const BRepExtrema_ShapeList & theShapes); - /****************** Size ******************/ - /**** md5 signature: 35f6071839104c52ab17204b65e7eae6 ****/ + /****** BRepExtrema_TriangleSet::Size ******/ + /****** md5 signature: 35f6071839104c52ab17204b65e7eae6 ******/ %feature("compactdefaultargs") Size; %feature("autodoc", "Return ------- @@ -2890,8 +2890,8 @@ Returns total number of triangles. ") Size; Standard_Integer Size(); - /****************** Swap ******************/ - /**** md5 signature: 36f2c771aee4a57de3f442eef1aadf04 ****/ + /****** BRepExtrema_TriangleSet::Swap ******/ + /****** md5 signature: 36f2c771aee4a57de3f442eef1aadf04 ******/ %feature("compactdefaultargs") Swap; %feature("autodoc", " Parameters @@ -2925,8 +2925,8 @@ Swaps indices of two specified triangles. *************************************/ class BRepExtrema_SelfIntersection : public BRepExtrema_ElementFilter { public: - /****************** BRepExtrema_SelfIntersection ******************/ - /**** md5 signature: 784f69b5e04a39d4d2d873ee9d2c141b ****/ + /****** BRepExtrema_SelfIntersection::BRepExtrema_SelfIntersection ******/ + /****** md5 signature: 784f69b5e04a39d4d2d873ee9d2c141b ******/ %feature("compactdefaultargs") BRepExtrema_SelfIntersection; %feature("autodoc", " Parameters @@ -2943,8 +2943,8 @@ Creates uninitialized self-intersection tool. ") BRepExtrema_SelfIntersection; BRepExtrema_SelfIntersection(const Standard_Real theTolerance = 0.0); - /****************** BRepExtrema_SelfIntersection ******************/ - /**** md5 signature: f3bc92ec46be4be78a76c38666f37a6a ****/ + /****** BRepExtrema_SelfIntersection::BRepExtrema_SelfIntersection ******/ + /****** md5 signature: f3bc92ec46be4be78a76c38666f37a6a ******/ %feature("compactdefaultargs") BRepExtrema_SelfIntersection; %feature("autodoc", " Parameters @@ -2962,8 +2962,8 @@ Creates self-intersection tool for the given shape. ") BRepExtrema_SelfIntersection; BRepExtrema_SelfIntersection(const TopoDS_Shape & theShape, const Standard_Real theTolerance = 0.0); - /****************** ElementSet ******************/ - /**** md5 signature: 7eda4cbdd51c64f2d775e378bb0a6592 ****/ + /****** BRepExtrema_SelfIntersection::ElementSet ******/ + /****** md5 signature: 7eda4cbdd51c64f2d775e378bb0a6592 ******/ %feature("compactdefaultargs") ElementSet; %feature("autodoc", "Return ------- @@ -2975,8 +2975,8 @@ Returns set of all the face triangles of the shape. ") ElementSet; const opencascade::handle & ElementSet(); - /****************** GetSubShape ******************/ - /**** md5 signature: b2411a4e8fd4710be5089ebd533dcd9a ****/ + /****** BRepExtrema_SelfIntersection::GetSubShape ******/ + /****** md5 signature: b2411a4e8fd4710be5089ebd533dcd9a ******/ %feature("compactdefaultargs") GetSubShape; %feature("autodoc", " Parameters @@ -2993,8 +2993,8 @@ Returns sub-shape from the shape for the given index (started from 0). ") GetSubShape; const TopoDS_Face GetSubShape(const Standard_Integer theID); - /****************** IsDone ******************/ - /**** md5 signature: e385477ab1bec806154173d4a550fd68 ****/ + /****** BRepExtrema_SelfIntersection::IsDone ******/ + /****** md5 signature: e385477ab1bec806154173d4a550fd68 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -3006,8 +3006,8 @@ True if the detection is completed. ") IsDone; Standard_Boolean IsDone(); - /****************** LoadShape ******************/ - /**** md5 signature: fd6ee24742b56495b9bca6600e71814f ****/ + /****** BRepExtrema_SelfIntersection::LoadShape ******/ + /****** md5 signature: fd6ee24742b56495b9bca6600e71814f ******/ %feature("compactdefaultargs") LoadShape; %feature("autodoc", " Parameters @@ -3024,8 +3024,8 @@ Loads shape for detection of self-intersections. ") LoadShape; Standard_Boolean LoadShape(const TopoDS_Shape & theShape); - /****************** OverlapElements ******************/ - /**** md5 signature: f356c9dc69a122d5e32fcee210f9c533 ****/ + /****** BRepExtrema_SelfIntersection::OverlapElements ******/ + /****** md5 signature: f356c9dc69a122d5e32fcee210f9c533 ******/ %feature("compactdefaultargs") OverlapElements; %feature("autodoc", "Return ------- @@ -3037,8 +3037,8 @@ Returns set of ids of overlapped sub-shapes (started from 0). ") OverlapElements; const BRepExtrema_MapOfIntegerPackedMapOfInteger & OverlapElements(); - /****************** Perform ******************/ - /**** md5 signature: c04b01412cba7220c024b5eb4532697f ****/ + /****** BRepExtrema_SelfIntersection::Perform ******/ + /****** md5 signature: c04b01412cba7220c024b5eb4532697f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", "Return ------- @@ -3050,8 +3050,8 @@ Performs detection of self-intersections. ") Perform; void Perform(); - /****************** SetTolerance ******************/ - /**** md5 signature: 2df6ca87a12fc10518568e45d2ce38db ****/ + /****** BRepExtrema_SelfIntersection::SetTolerance ******/ + /****** md5 signature: 2df6ca87a12fc10518568e45d2ce38db ******/ %feature("compactdefaultargs") SetTolerance; %feature("autodoc", " Parameters @@ -3068,8 +3068,8 @@ Sets tolerance value used for self-intersection test. ") SetTolerance; void SetTolerance(const Standard_Real theTolerance); - /****************** Tolerance ******************/ - /**** md5 signature: 327dcbe220ae5ba3e0203f32c61c38db ****/ + /****** BRepExtrema_SelfIntersection::Tolerance ******/ + /****** md5 signature: 327dcbe220ae5ba3e0203f32c61c38db ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", "Return ------- diff --git a/src/SWIG_files/wrapper/BRepFeat.i b/src/SWIG_files/wrapper/BRepFeat.i index b8cd95fd5..e90c5fe74 100644 --- a/src/SWIG_files/wrapper/BRepFeat.i +++ b/src/SWIG_files/wrapper/BRepFeat.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPFEATDOCSTRING "BRepFeat module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepfeat.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepfeat.html" %enddef %module (package="OCC.Core", docstring=BREPFEATDOCSTRING) BRepFeat @@ -246,8 +246,8 @@ BRepFeat_NullToolU = BRepFeat_StatusError.BRepFeat_NullToolU %rename(brepfeat) BRepFeat; class BRepFeat { public: - /****************** Barycenter ******************/ - /**** md5 signature: 95775d579f12e55fb164530ec70906cd ****/ + /****** BRepFeat::Barycenter ******/ + /****** md5 signature: 95775d579f12e55fb164530ec70906cd ******/ %feature("compactdefaultargs") Barycenter; %feature("autodoc", " Parameters @@ -265,8 +265,8 @@ No available documentation. ") Barycenter; static void Barycenter(const TopoDS_Shape & S, gp_Pnt & Pt); - /****************** FaceUntil ******************/ - /**** md5 signature: 309ff593b2beab1849c6368b9ce43f4d ****/ + /****** BRepFeat::FaceUntil ******/ + /****** md5 signature: 309ff593b2beab1849c6368b9ce43f4d ******/ %feature("compactdefaultargs") FaceUntil; %feature("autodoc", " Parameters @@ -284,8 +284,8 @@ No available documentation. ") FaceUntil; static void FaceUntil(const TopoDS_Shape & S, TopoDS_Face & F); - /****************** IsInside ******************/ - /**** md5 signature: 63eaa8339348f969538073e9ce46d5b2 ****/ + /****** BRepFeat::IsInside ******/ + /****** md5 signature: 63eaa8339348f969538073e9ce46d5b2 ******/ %feature("compactdefaultargs") IsInside; %feature("autodoc", " Parameters @@ -303,8 +303,8 @@ No available documentation. ") IsInside; static Standard_Boolean IsInside(const TopoDS_Face & F1, const TopoDS_Face & F2); - /****************** ParametricBarycenter ******************/ - /**** md5 signature: cdd91b88ac72b66970d2700500d4e3cf ****/ + /****** BRepFeat::ParametricBarycenter ******/ + /****** md5 signature: cdd91b88ac72b66970d2700500d4e3cf ******/ %feature("compactdefaultargs") ParametricBarycenter; %feature("autodoc", " Parameters @@ -322,8 +322,8 @@ No available documentation. ") ParametricBarycenter; static Standard_Real ParametricBarycenter(const TopoDS_Shape & S, const opencascade::handle & C); - /****************** ParametricMinMax ******************/ - /**** md5 signature: 56d330cb4df86fc5c903ada4a5743fa7 ****/ + /****** BRepFeat::ParametricMinMax ******/ + /****** md5 signature: 56d330cb4df86fc5c903ada4a5743fa7 ******/ %feature("compactdefaultargs") ParametricMinMax; %feature("autodoc", " Parameters @@ -346,8 +346,8 @@ Ori = true taking account the orientation. ") ParametricMinMax; static void ParametricMinMax(const TopoDS_Shape & S, const opencascade::handle & C, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Boolean &OutValue, const Standard_Boolean Ori = Standard_False); - /****************** Print ******************/ - /**** md5 signature: a6852c8c0afb9e1a2f070d2ece4eddfa ****/ + /****** BRepFeat::Print ******/ + /****** md5 signature: a6852c8c0afb9e1a2f070d2ece4eddfa ******/ %feature("compactdefaultargs") Print; %feature("autodoc", " Parameters @@ -364,8 +364,8 @@ Prints the error description of the state as a string on the stream and ") Print; static Standard_OStream & Print(const BRepFeat_StatusError SE, std::ostream &OutValue); - /****************** SampleEdges ******************/ - /**** md5 signature: f1154ae22c369e9497c31a5a83612489 ****/ + /****** BRepFeat::SampleEdges ******/ + /****** md5 signature: f1154ae22c369e9497c31a5a83612489 ******/ %feature("compactdefaultargs") SampleEdges; %feature("autodoc", " Parameters @@ -383,8 +383,8 @@ No available documentation. ") SampleEdges; static void SampleEdges(const TopoDS_Shape & S, TColgp_SequenceOfPnt & Pt); - /****************** Tool ******************/ - /**** md5 signature: e034f31a8da64d381b1bc24eb325043a ****/ + /****** BRepFeat::Tool ******/ + /****** md5 signature: e034f31a8da64d381b1bc24eb325043a ******/ %feature("compactdefaultargs") Tool; %feature("autodoc", " Parameters @@ -421,8 +421,8 @@ No available documentation. *************************/ class BRepFeat_Builder : public BOPAlgo_BOP { public: - /****************** BRepFeat_Builder ******************/ - /**** md5 signature: fd1a198e0751532f2ed9562148204d5d ****/ + /****** BRepFeat_Builder::BRepFeat_Builder ******/ + /****** md5 signature: fd1a198e0751532f2ed9562148204d5d ******/ %feature("compactdefaultargs") BRepFeat_Builder; %feature("autodoc", "Return ------- @@ -434,8 +434,8 @@ No available documentation. ") BRepFeat_Builder; BRepFeat_Builder(); - /****************** CheckSolidImages ******************/ - /**** md5 signature: 24eff084f084a5e8c3f207b7efcb0954 ****/ + /****** BRepFeat_Builder::CheckSolidImages ******/ + /****** md5 signature: 24eff084f084a5e8c3f207b7efcb0954 ******/ %feature("compactdefaultargs") CheckSolidImages; %feature("autodoc", "Return ------- @@ -447,8 +447,8 @@ Collects the images of the object, that contains in the images of the tool. ") CheckSolidImages; void CheckSolidImages(); - /****************** Clear ******************/ - /**** md5 signature: f671931d03948860d0ead34afbe920aa ****/ + /****** BRepFeat_Builder::Clear ******/ + /****** md5 signature: f671931d03948860d0ead34afbe920aa ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -460,8 +460,8 @@ Clears internal fields and arguments. ") Clear; virtual void Clear(); - /****************** FillRemoved ******************/ - /**** md5 signature: 1be497a0c9953c13eff3543c81a2ff52 ****/ + /****** BRepFeat_Builder::FillRemoved ******/ + /****** md5 signature: 1be497a0c9953c13eff3543c81a2ff52 ******/ %feature("compactdefaultargs") FillRemoved; %feature("autodoc", "Return ------- @@ -473,8 +473,8 @@ Collects the removed parts of the tool into myremoved map. ") FillRemoved; void FillRemoved(); - /****************** FillRemoved ******************/ - /**** md5 signature: c816ecc7c07dc50e02f8c73fac35badb ****/ + /****** BRepFeat_Builder::FillRemoved ******/ + /****** md5 signature: c816ecc7c07dc50e02f8c73fac35badb ******/ %feature("compactdefaultargs") FillRemoved; %feature("autodoc", " Parameters @@ -492,8 +492,8 @@ Adds the shape s and its sub-shapes into myremoved map. ") FillRemoved; void FillRemoved(const TopoDS_Shape & theS, TopTools_MapOfShape & theM); - /****************** Init ******************/ - /**** md5 signature: e8c5d8680206212eeeecebd0f84dc5c5 ****/ + /****** BRepFeat_Builder::Init ******/ + /****** md5 signature: e8c5d8680206212eeeecebd0f84dc5c5 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -510,8 +510,8 @@ Initializes the object of local boolean operation. ") Init; void Init(const TopoDS_Shape & theShape); - /****************** Init ******************/ - /**** md5 signature: 740bc54164d5b82a500c1564e244a758 ****/ + /****** BRepFeat_Builder::Init ******/ + /****** md5 signature: 740bc54164d5b82a500c1564e244a758 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -529,8 +529,8 @@ Initializes the arguments of local boolean operation. ") Init; void Init(const TopoDS_Shape & theShape, const TopoDS_Shape & theTool); - /****************** KeepPart ******************/ - /**** md5 signature: dce8aa3a6ec2e00d552d5e6f6662cecf ****/ + /****** BRepFeat_Builder::KeepPart ******/ + /****** md5 signature: dce8aa3a6ec2e00d552d5e6f6662cecf ******/ %feature("compactdefaultargs") KeepPart; %feature("autodoc", " Parameters @@ -547,8 +547,8 @@ Adds shape thes and all its sub-shapes into myshapes map. ") KeepPart; void KeepPart(const TopoDS_Shape & theS); - /****************** KeepParts ******************/ - /**** md5 signature: 87c4cd5b43d1f9a01b576ee02f68e27d ****/ + /****** BRepFeat_Builder::KeepParts ******/ + /****** md5 signature: 87c4cd5b43d1f9a01b576ee02f68e27d ******/ %feature("compactdefaultargs") KeepParts; %feature("autodoc", " Parameters @@ -565,8 +565,8 @@ Initializes parts of the tool for second step of algorithm. collects shapes and ") KeepParts; void KeepParts(const TopTools_ListOfShape & theIm); - /****************** PartsOfTool ******************/ - /**** md5 signature: 9044d67ce0e79270261d1a8e7d2ef480 ****/ + /****** BRepFeat_Builder::PartsOfTool ******/ + /****** md5 signature: 9044d67ce0e79270261d1a8e7d2ef480 ******/ %feature("compactdefaultargs") PartsOfTool; %feature("autodoc", " Parameters @@ -583,8 +583,8 @@ Collects parts of the tool. ") PartsOfTool; void PartsOfTool(TopTools_ListOfShape & theLT); - /****************** PerformResult ******************/ - /**** md5 signature: ad968597e719efbcf84e11e3ce8b1439 ****/ + /****** BRepFeat_Builder::PerformResult ******/ + /****** md5 signature: ad968597e719efbcf84e11e3ce8b1439 ******/ %feature("compactdefaultargs") PerformResult; %feature("autodoc", " Parameters @@ -601,8 +601,8 @@ Main function to build the result of the local operation required. ") PerformResult; void PerformResult(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** RebuildEdge ******************/ - /**** md5 signature: d7d24342c4440d5e9583f009a4320033 ****/ + /****** BRepFeat_Builder::RebuildEdge ******/ + /****** md5 signature: d7d24342c4440d5e9583f009a4320033 ******/ %feature("compactdefaultargs") RebuildEdge; %feature("autodoc", " Parameters @@ -622,8 +622,8 @@ Rebuilds edges in accordance with the kept parts of the tool. ") RebuildEdge; void RebuildEdge(const TopoDS_Shape & theE, const TopoDS_Face & theF, const TopTools_MapOfShape & theME, TopTools_ListOfShape & aLEIm); - /****************** RebuildFaces ******************/ - /**** md5 signature: a13f1f83a7ee0e9f7f7f1dfc7462f976 ****/ + /****** BRepFeat_Builder::RebuildFaces ******/ + /****** md5 signature: a13f1f83a7ee0e9f7f7f1dfc7462f976 ******/ %feature("compactdefaultargs") RebuildFaces; %feature("autodoc", "Return ------- @@ -635,8 +635,8 @@ Rebuilds faces in accordance with the kept parts of the tool. ") RebuildFaces; void RebuildFaces(); - /****************** SetOperation ******************/ - /**** md5 signature: 89876d5f4747477c7452d0cea9eed11b ****/ + /****** BRepFeat_Builder::SetOperation ******/ + /****** md5 signature: 89876d5f4747477c7452d0cea9eed11b ******/ %feature("compactdefaultargs") SetOperation; %feature("autodoc", " Parameters @@ -653,8 +653,8 @@ Sets the operation of local boolean operation. if thefuse = 0 than the operation ") SetOperation; void SetOperation(const Standard_Integer theFuse); - /****************** SetOperation ******************/ - /**** md5 signature: 8f486220b30ab20b482b117459ad7941 ****/ + /****** BRepFeat_Builder::SetOperation ******/ + /****** md5 signature: 8f486220b30ab20b482b117459ad7941 ******/ %feature("compactdefaultargs") SetOperation; %feature("autodoc", " Parameters @@ -687,8 +687,8 @@ Sets the operation of local boolean operation. if theflag = true it means that n %nodefaultctor BRepFeat_Form; class BRepFeat_Form : public BRepBuilderAPI_MakeShape { public: - /****************** BarycCurve ******************/ - /**** md5 signature: d1ddc085cbe99b4dc40aa66869015d0d ****/ + /****** BRepFeat_Form::BarycCurve ******/ + /****** md5 signature: d1ddc085cbe99b4dc40aa66869015d0d ******/ %feature("compactdefaultargs") BarycCurve; %feature("autodoc", "Return ------- @@ -700,8 +700,8 @@ No available documentation. ") BarycCurve; virtual opencascade::handle BarycCurve(); - /****************** BasisShapeValid ******************/ - /**** md5 signature: ae52416b47a8fa29be6f02618978790f ****/ + /****** BRepFeat_Form::BasisShapeValid ******/ + /****** md5 signature: ae52416b47a8fa29be6f02618978790f ******/ %feature("compactdefaultargs") BasisShapeValid; %feature("autodoc", "Return ------- @@ -713,8 +713,8 @@ Initializes the topological construction if the basis shape is present. ") BasisShapeValid; void BasisShapeValid(); - /****************** CurrentStatusError ******************/ - /**** md5 signature: 5c642a7308522a33086b9a7dc347c71b ****/ + /****** BRepFeat_Form::CurrentStatusError ******/ + /****** md5 signature: 5c642a7308522a33086b9a7dc347c71b ******/ %feature("compactdefaultargs") CurrentStatusError; %feature("autodoc", "Return ------- @@ -726,8 +726,8 @@ No available documentation. ") CurrentStatusError; BRepFeat_StatusError CurrentStatusError(); - /****************** Curves ******************/ - /**** md5 signature: c90fd281c4f780878cf7fa2221d3f3a0 ****/ + /****** BRepFeat_Form::Curves ******/ + /****** md5 signature: c90fd281c4f780878cf7fa2221d3f3a0 ******/ %feature("compactdefaultargs") Curves; %feature("autodoc", " Parameters @@ -744,8 +744,8 @@ No available documentation. ") Curves; virtual void Curves(TColGeom_SequenceOfCurve & S); - /****************** FirstShape ******************/ - /**** md5 signature: 3308814aad8b5a3d6b7d0ad13d83c3f8 ****/ + /****** BRepFeat_Form::FirstShape ******/ + /****** md5 signature: 3308814aad8b5a3d6b7d0ad13d83c3f8 ******/ %feature("compactdefaultargs") FirstShape; %feature("autodoc", "Return ------- @@ -757,8 +757,8 @@ Returns the list of shapes created at the bottom of the created form. it may be ") FirstShape; const TopTools_ListOfShape & FirstShape(); - /****************** Generated ******************/ - /**** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ****/ + /****** BRepFeat_Form::Generated ******/ + /****** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -775,8 +775,8 @@ Returns a list of the created faces from the shape . ") Generated; virtual const TopTools_ListOfShape & Generated(const TopoDS_Shape & S); - /****************** GeneratedShapeValid ******************/ - /**** md5 signature: 63a556c0a5250c6b6acde4db96ea4c68 ****/ + /****** BRepFeat_Form::GeneratedShapeValid ******/ + /****** md5 signature: 63a556c0a5250c6b6acde4db96ea4c68 ******/ %feature("compactdefaultargs") GeneratedShapeValid; %feature("autodoc", "Return ------- @@ -788,8 +788,8 @@ Initializes the topological construction if the generated shape s is present. ") GeneratedShapeValid; void GeneratedShapeValid(); - /****************** GluedFacesValid ******************/ - /**** md5 signature: 53476bb17c896d3f0d36b3fefa4028ab ****/ + /****** BRepFeat_Form::GluedFacesValid ******/ + /****** md5 signature: 53476bb17c896d3f0d36b3fefa4028ab ******/ %feature("compactdefaultargs") GluedFacesValid; %feature("autodoc", "Return ------- @@ -801,8 +801,8 @@ Initializes the topological construction if the glued face is present. ") GluedFacesValid; void GluedFacesValid(); - /****************** IsDeleted ******************/ - /**** md5 signature: 28be7c17a3b2776f59567554f488bbf5 ****/ + /****** BRepFeat_Form::IsDeleted ******/ + /****** md5 signature: 28be7c17a3b2776f59567554f488bbf5 ******/ %feature("compactdefaultargs") IsDeleted; %feature("autodoc", " Parameters @@ -819,8 +819,8 @@ No available documentation. ") IsDeleted; virtual Standard_Boolean IsDeleted(const TopoDS_Shape & S); - /****************** LastShape ******************/ - /**** md5 signature: 420855638ec0220b6ca81d51c3a55b78 ****/ + /****** BRepFeat_Form::LastShape ******/ + /****** md5 signature: 420855638ec0220b6ca81d51c3a55b78 ******/ %feature("compactdefaultargs") LastShape; %feature("autodoc", "Return ------- @@ -832,8 +832,8 @@ Returns the list of shapes created at the top of the created form. it may be an ") LastShape; const TopTools_ListOfShape & LastShape(); - /****************** Modified ******************/ - /**** md5 signature: d47f6d180f47cfcfacc0413e7ca407b6 ****/ + /****** BRepFeat_Form::Modified ******/ + /****** md5 signature: d47f6d180f47cfcfacc0413e7ca407b6 ******/ %feature("compactdefaultargs") Modified; %feature("autodoc", " Parameters @@ -850,8 +850,8 @@ Returns the list of generated faces. ") Modified; virtual const TopTools_ListOfShape & Modified(const TopoDS_Shape & F); - /****************** NewEdges ******************/ - /**** md5 signature: cdc7ef234fb9eb0a739ace74b44cca14 ****/ + /****** BRepFeat_Form::NewEdges ******/ + /****** md5 signature: cdc7ef234fb9eb0a739ace74b44cca14 ******/ %feature("compactdefaultargs") NewEdges; %feature("autodoc", "Return ------- @@ -863,8 +863,8 @@ Returns a list of the limiting and glueing edges generated by the feature. these ") NewEdges; const TopTools_ListOfShape & NewEdges(); - /****************** PerfSelectionValid ******************/ - /**** md5 signature: e860c269c453c4afb0c3c359332fcefc ****/ + /****** BRepFeat_Form::PerfSelectionValid ******/ + /****** md5 signature: e860c269c453c4afb0c3c359332fcefc ******/ %feature("compactdefaultargs") PerfSelectionValid; %feature("autodoc", "Return ------- @@ -876,8 +876,8 @@ Initializes the topological construction if the selected face is present. ") PerfSelectionValid; void PerfSelectionValid(); - /****************** ShapeFromValid ******************/ - /**** md5 signature: 3b61d70ac0d5d844804a95a8528936e3 ****/ + /****** BRepFeat_Form::ShapeFromValid ******/ + /****** md5 signature: 3b61d70ac0d5d844804a95a8528936e3 ******/ %feature("compactdefaultargs") ShapeFromValid; %feature("autodoc", "Return ------- @@ -889,8 +889,8 @@ Initializes the topological construction if the shape is present from the specif ") ShapeFromValid; void ShapeFromValid(); - /****************** ShapeUntilValid ******************/ - /**** md5 signature: 4830a2b19464d95992c8450ba3d8a286 ****/ + /****** BRepFeat_Form::ShapeUntilValid ******/ + /****** md5 signature: 4830a2b19464d95992c8450ba3d8a286 ******/ %feature("compactdefaultargs") ShapeUntilValid; %feature("autodoc", "Return ------- @@ -902,8 +902,8 @@ Initializes the topological construction if the shape is present until the speci ") ShapeUntilValid; void ShapeUntilValid(); - /****************** SketchFaceValid ******************/ - /**** md5 signature: 748870012fe1dda56261fb89ad219013 ****/ + /****** BRepFeat_Form::SketchFaceValid ******/ + /****** md5 signature: 748870012fe1dda56261fb89ad219013 ******/ %feature("compactdefaultargs") SketchFaceValid; %feature("autodoc", "Return ------- @@ -915,8 +915,8 @@ Initializes the topological construction if the sketch face is present. if the s ") SketchFaceValid; void SketchFaceValid(); - /****************** TgtEdges ******************/ - /**** md5 signature: 2c3d33bfb9d502b29d86c6dafd2350e0 ****/ + /****** BRepFeat_Form::TgtEdges ******/ + /****** md5 signature: 2c3d33bfb9d502b29d86c6dafd2350e0 ******/ %feature("compactdefaultargs") TgtEdges; %feature("autodoc", "Return ------- @@ -942,8 +942,8 @@ Returns a list of the tangent edges among the limiting and glueing edges generat ***********************/ class BRepFeat_Gluer : public BRepBuilderAPI_MakeShape { public: - /****************** BRepFeat_Gluer ******************/ - /**** md5 signature: 7f789f0b255d65d726f02c3a29cff722 ****/ + /****** BRepFeat_Gluer::BRepFeat_Gluer ******/ + /****** md5 signature: 7f789f0b255d65d726f02c3a29cff722 ******/ %feature("compactdefaultargs") BRepFeat_Gluer; %feature("autodoc", "Return ------- @@ -955,8 +955,8 @@ Initializes an empty constructor. ") BRepFeat_Gluer; BRepFeat_Gluer(); - /****************** BRepFeat_Gluer ******************/ - /**** md5 signature: f4486bf2a24695e641a27f281d81a2f1 ****/ + /****** BRepFeat_Gluer::BRepFeat_Gluer ******/ + /****** md5 signature: f4486bf2a24695e641a27f281d81a2f1 ******/ %feature("compactdefaultargs") BRepFeat_Gluer; %feature("autodoc", " Parameters @@ -974,8 +974,8 @@ Initializes the shapes to be glued, the new shape snew and the basis shape sbase ") BRepFeat_Gluer; BRepFeat_Gluer(const TopoDS_Shape & Snew, const TopoDS_Shape & Sbase); - /****************** BasisShape ******************/ - /**** md5 signature: 21cd65d6b80cb61a9e13e787117a65b0 ****/ + /****** BRepFeat_Gluer::BasisShape ******/ + /****** md5 signature: 21cd65d6b80cb61a9e13e787117a65b0 ******/ %feature("compactdefaultargs") BasisShape; %feature("autodoc", "Return ------- @@ -987,8 +987,8 @@ Returns the basis shape of the compound shape. ") BasisShape; const TopoDS_Shape BasisShape(); - /****************** Bind ******************/ - /**** md5 signature: 00651bec56a12d0418e54d774f302230 ****/ + /****** BRepFeat_Gluer::Bind ******/ + /****** md5 signature: 00651bec56a12d0418e54d774f302230 ******/ %feature("compactdefaultargs") Bind; %feature("autodoc", " Parameters @@ -1006,8 +1006,8 @@ Defines a contact between fnew on the new shape snew and fbase on the basis shap ") Bind; void Bind(const TopoDS_Face & Fnew, const TopoDS_Face & Fbase); - /****************** Bind ******************/ - /**** md5 signature: 3016e09a55c1e17b8452fe31e36138db ****/ + /****** BRepFeat_Gluer::Bind ******/ + /****** md5 signature: 3016e09a55c1e17b8452fe31e36138db ******/ %feature("compactdefaultargs") Bind; %feature("autodoc", " Parameters @@ -1025,8 +1025,8 @@ Nforms other methods that the edge enew in the new shape is the same as the edge ") Bind; void Bind(const TopoDS_Edge & Enew, const TopoDS_Edge & Ebase); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepFeat_Gluer::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -1043,8 +1043,8 @@ This is called by shape(). it does nothing but may be redefined. ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** GluedShape ******************/ - /**** md5 signature: cc05062c19ffec36edea50e2f74757fb ****/ + /****** BRepFeat_Gluer::GluedShape ******/ + /****** md5 signature: cc05062c19ffec36edea50e2f74757fb ******/ %feature("compactdefaultargs") GluedShape; %feature("autodoc", "Return ------- @@ -1056,8 +1056,8 @@ Returns the resulting compound shape. ") GluedShape; const TopoDS_Shape GluedShape(); - /****************** Init ******************/ - /**** md5 signature: 115f57cbd7c4f9c5a742b814b00a0ef6 ****/ + /****** BRepFeat_Gluer::Init ******/ + /****** md5 signature: 115f57cbd7c4f9c5a742b814b00a0ef6 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -1075,8 +1075,8 @@ Initializes the new shape snew and the basis shape sbase for the local glueing o ") Init; void Init(const TopoDS_Shape & Snew, const TopoDS_Shape & Sbase); - /****************** IsDeleted ******************/ - /**** md5 signature: 1a016772dc188bec4b890b93a447dc5d ****/ + /****** BRepFeat_Gluer::IsDeleted ******/ + /****** md5 signature: 1a016772dc188bec4b890b93a447dc5d ******/ %feature("compactdefaultargs") IsDeleted; %feature("autodoc", " Parameters @@ -1093,8 +1093,8 @@ Returns the status of the face after the shape creation. ") IsDeleted; virtual Standard_Boolean IsDeleted(const TopoDS_Shape & F); - /****************** Modified ******************/ - /**** md5 signature: d47f6d180f47cfcfacc0413e7ca407b6 ****/ + /****** BRepFeat_Gluer::Modified ******/ + /****** md5 signature: d47f6d180f47cfcfacc0413e7ca407b6 ******/ %feature("compactdefaultargs") Modified; %feature("autodoc", " Parameters @@ -1111,8 +1111,8 @@ Returns the list of generated faces. ") Modified; virtual const TopTools_ListOfShape & Modified(const TopoDS_Shape & F); - /****************** OpeType ******************/ - /**** md5 signature: 6301740c99fde6f602c33a48a205b637 ****/ + /****** BRepFeat_Gluer::OpeType ******/ + /****** md5 signature: 6301740c99fde6f602c33a48a205b637 ******/ %feature("compactdefaultargs") OpeType; %feature("autodoc", "Return ------- @@ -1139,8 +1139,8 @@ Determine which operation type to use glueing or sliding. %nodefaultctor BRepFeat_RibSlot; class BRepFeat_RibSlot : public BRepBuilderAPI_MakeShape { public: - /****************** ChoiceOfFaces ******************/ - /**** md5 signature: 3d2f5131b0512cb094ab2a0a28933417 ****/ + /****** BRepFeat_RibSlot::ChoiceOfFaces ******/ + /****** md5 signature: 3d2f5131b0512cb094ab2a0a28933417 ******/ %feature("compactdefaultargs") ChoiceOfFaces; %feature("autodoc", " Parameters @@ -1161,8 +1161,8 @@ No available documentation. ") ChoiceOfFaces; static TopoDS_Face ChoiceOfFaces(TopTools_ListOfShape & faces, const opencascade::handle & cc, const Standard_Real par, const Standard_Real bnd, const opencascade::handle & Pln); - /****************** CurrentStatusError ******************/ - /**** md5 signature: 5c642a7308522a33086b9a7dc347c71b ****/ + /****** BRepFeat_RibSlot::CurrentStatusError ******/ + /****** md5 signature: 5c642a7308522a33086b9a7dc347c71b ******/ %feature("compactdefaultargs") CurrentStatusError; %feature("autodoc", "Return ------- @@ -1174,8 +1174,8 @@ No available documentation. ") CurrentStatusError; BRepFeat_StatusError CurrentStatusError(); - /****************** FacesForDraft ******************/ - /**** md5 signature: bb294b3d28b2baf096a3677dfbc96070 ****/ + /****** BRepFeat_RibSlot::FacesForDraft ******/ + /****** md5 signature: bb294b3d28b2baf096a3677dfbc96070 ******/ %feature("compactdefaultargs") FacesForDraft; %feature("autodoc", "Return ------- @@ -1187,8 +1187,8 @@ Returns a list of the limiting and glueing faces generated by the feature. these ") FacesForDraft; const TopTools_ListOfShape & FacesForDraft(); - /****************** FirstShape ******************/ - /**** md5 signature: 3308814aad8b5a3d6b7d0ad13d83c3f8 ****/ + /****** BRepFeat_RibSlot::FirstShape ******/ + /****** md5 signature: 3308814aad8b5a3d6b7d0ad13d83c3f8 ******/ %feature("compactdefaultargs") FirstShape; %feature("autodoc", "Return ------- @@ -1200,8 +1200,8 @@ Returns the list of shapes created at the bottom of the created form. it may be ") FirstShape; const TopTools_ListOfShape & FirstShape(); - /****************** Generated ******************/ - /**** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ****/ + /****** BRepFeat_RibSlot::Generated ******/ + /****** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -1218,8 +1218,8 @@ Returns a list toptools_listofshape of the faces s created in the shape. ") Generated; virtual const TopTools_ListOfShape & Generated(const TopoDS_Shape & S); - /****************** IntPar ******************/ - /**** md5 signature: 0532efa1b66eddb1b75d8854720d015d ****/ + /****** BRepFeat_RibSlot::IntPar ******/ + /****** md5 signature: 0532efa1b66eddb1b75d8854720d015d ******/ %feature("compactdefaultargs") IntPar; %feature("autodoc", " Parameters @@ -1237,8 +1237,8 @@ No available documentation. ") IntPar; static Standard_Real IntPar(const opencascade::handle & C, const gp_Pnt & P); - /****************** IsDeleted ******************/ - /**** md5 signature: 1a016772dc188bec4b890b93a447dc5d ****/ + /****** BRepFeat_RibSlot::IsDeleted ******/ + /****** md5 signature: 1a016772dc188bec4b890b93a447dc5d ******/ %feature("compactdefaultargs") IsDeleted; %feature("autodoc", " Parameters @@ -1255,8 +1255,8 @@ Returns true if f a topods_shape of type edge or face has been deleted. ") IsDeleted; virtual Standard_Boolean IsDeleted(const TopoDS_Shape & F); - /****************** LastShape ******************/ - /**** md5 signature: 420855638ec0220b6ca81d51c3a55b78 ****/ + /****** BRepFeat_RibSlot::LastShape ******/ + /****** md5 signature: 420855638ec0220b6ca81d51c3a55b78 ******/ %feature("compactdefaultargs") LastShape; %feature("autodoc", "Return ------- @@ -1268,8 +1268,8 @@ Returns the list of shapes created at the top of the created form. it may be an ") LastShape; const TopTools_ListOfShape & LastShape(); - /****************** Modified ******************/ - /**** md5 signature: d47f6d180f47cfcfacc0413e7ca407b6 ****/ + /****** BRepFeat_RibSlot::Modified ******/ + /****** md5 signature: d47f6d180f47cfcfacc0413e7ca407b6 ******/ %feature("compactdefaultargs") Modified; %feature("autodoc", " Parameters @@ -1286,8 +1286,8 @@ Returns the list of generated faces f. this list may be empty. ") Modified; virtual const TopTools_ListOfShape & Modified(const TopoDS_Shape & F); - /****************** NewEdges ******************/ - /**** md5 signature: cdc7ef234fb9eb0a739ace74b44cca14 ****/ + /****** BRepFeat_RibSlot::NewEdges ******/ + /****** md5 signature: cdc7ef234fb9eb0a739ace74b44cca14 ******/ %feature("compactdefaultargs") NewEdges; %feature("autodoc", "Return ------- @@ -1299,8 +1299,8 @@ Returns a list of the limiting and glueing edges generated by the feature. these ") NewEdges; const TopTools_ListOfShape & NewEdges(); - /****************** TgtEdges ******************/ - /**** md5 signature: 2c3d33bfb9d502b29d86c6dafd2350e0 ****/ + /****** BRepFeat_RibSlot::TgtEdges ******/ + /****** md5 signature: 2c3d33bfb9d502b29d86c6dafd2350e0 ******/ %feature("compactdefaultargs") TgtEdges; %feature("autodoc", "Return ------- @@ -1326,8 +1326,8 @@ Returns a list of the tangent edges among the limiting and glueing edges generat ****************************/ class BRepFeat_SplitShape : public BRepBuilderAPI_MakeShape { public: - /****************** BRepFeat_SplitShape ******************/ - /**** md5 signature: 7fb4c09fb205f747a7f5b474bb0bb2c7 ****/ + /****** BRepFeat_SplitShape::BRepFeat_SplitShape ******/ + /****** md5 signature: 7fb4c09fb205f747a7f5b474bb0bb2c7 ******/ %feature("compactdefaultargs") BRepFeat_SplitShape; %feature("autodoc", "Return ------- @@ -1339,8 +1339,8 @@ Empty constructor. ") BRepFeat_SplitShape; BRepFeat_SplitShape(); - /****************** BRepFeat_SplitShape ******************/ - /**** md5 signature: d86eca78d22979b8ff6e67ac09b56988 ****/ + /****** BRepFeat_SplitShape::BRepFeat_SplitShape ******/ + /****** md5 signature: d86eca78d22979b8ff6e67ac09b56988 ******/ %feature("compactdefaultargs") BRepFeat_SplitShape; %feature("autodoc", " Parameters @@ -1357,8 +1357,8 @@ Creates the process with the shape . ") BRepFeat_SplitShape; BRepFeat_SplitShape(const TopoDS_Shape & S); - /****************** Add ******************/ - /**** md5 signature: a2f8855eb9d20716f921d30ba939fd6a ****/ + /****** BRepFeat_SplitShape::Add ******/ + /****** md5 signature: a2f8855eb9d20716f921d30ba939fd6a ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1375,8 +1375,8 @@ Add splitting edges or wires for whole initial shape without additional specific ") Add; Standard_Boolean Add(const TopTools_SequenceOfShape & theEdges); - /****************** Add ******************/ - /**** md5 signature: 73487f98ab9ba9984904e685f5fae091 ****/ + /****** BRepFeat_SplitShape::Add ******/ + /****** md5 signature: 73487f98ab9ba9984904e685f5fae091 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1394,8 +1394,8 @@ Adds the wire on the face . raises nosuchobject if does not belong to ") Add; void Add(const TopoDS_Wire & W, const TopoDS_Face & F); - /****************** Add ******************/ - /**** md5 signature: d621d461f76c392b22927a1a44cfbc16 ****/ + /****** BRepFeat_SplitShape::Add ******/ + /****** md5 signature: d621d461f76c392b22927a1a44cfbc16 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1413,8 +1413,8 @@ Adds the edge on the face . ") Add; void Add(const TopoDS_Edge & E, const TopoDS_Face & F); - /****************** Add ******************/ - /**** md5 signature: b6f3642f26ba028306325db45aed0ed7 ****/ + /****** BRepFeat_SplitShape::Add ******/ + /****** md5 signature: b6f3642f26ba028306325db45aed0ed7 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1432,8 +1432,8 @@ Adds the compound on the face . the compound must consist of ed ") Add; void Add(const TopoDS_Compound & Comp, const TopoDS_Face & F); - /****************** Add ******************/ - /**** md5 signature: 058eae25f3940954a03a0173df9bce9b ****/ + /****** BRepFeat_SplitShape::Add ******/ + /****** md5 signature: 058eae25f3940954a03a0173df9bce9b ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1451,8 +1451,8 @@ Adds the edge on the existing edge . ") Add; void Add(const TopoDS_Edge & E, const TopoDS_Edge & EOn); - /****************** Build ******************/ - /**** md5 signature: 6845a51502d14bd916482d98b6487bc6 ****/ + /****** BRepFeat_SplitShape::Build ******/ + /****** md5 signature: 6845a51502d14bd916482d98b6487bc6 ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -1469,8 +1469,8 @@ Builds the cut and the resulting faces and edges as well. ") Build; void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** DirectLeft ******************/ - /**** md5 signature: 3439933aeda7f1a1ec21dfaafbe0ab1a ****/ + /****** BRepFeat_SplitShape::DirectLeft ******/ + /****** md5 signature: 3439933aeda7f1a1ec21dfaafbe0ab1a ******/ %feature("compactdefaultargs") DirectLeft; %feature("autodoc", "Return ------- @@ -1482,8 +1482,8 @@ Returns the faces which are the left of the projected wires. ") DirectLeft; const TopTools_ListOfShape & DirectLeft(); - /****************** Init ******************/ - /**** md5 signature: 5b69b32485b3d9f82ae4abb9c853c3c7 ****/ + /****** BRepFeat_SplitShape::Init ******/ + /****** md5 signature: 5b69b32485b3d9f82ae4abb9c853c3c7 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -1500,8 +1500,8 @@ Initializes the process on the shape . ") Init; void Init(const TopoDS_Shape & S); - /****************** IsDeleted ******************/ - /**** md5 signature: 28be7c17a3b2776f59567554f488bbf5 ****/ + /****** BRepFeat_SplitShape::IsDeleted ******/ + /****** md5 signature: 28be7c17a3b2776f59567554f488bbf5 ******/ %feature("compactdefaultargs") IsDeleted; %feature("autodoc", " Parameters @@ -1518,8 +1518,8 @@ Returns true if the shape has been deleted. ") IsDeleted; virtual Standard_Boolean IsDeleted(const TopoDS_Shape & S); - /****************** Left ******************/ - /**** md5 signature: 70ee7865256185190dd6eecfb1fc40f8 ****/ + /****** BRepFeat_SplitShape::Left ******/ + /****** md5 signature: 70ee7865256185190dd6eecfb1fc40f8 ******/ %feature("compactdefaultargs") Left; %feature("autodoc", "Return ------- @@ -1531,8 +1531,8 @@ Returns the faces of the 'left' part on the shape. (it is build from directleft, ") Left; const TopTools_ListOfShape & Left(); - /****************** Modified ******************/ - /**** md5 signature: d6a88f48819eaeb375ffa39db07ab939 ****/ + /****** BRepFeat_SplitShape::Modified ******/ + /****** md5 signature: d6a88f48819eaeb375ffa39db07ab939 ******/ %feature("compactdefaultargs") Modified; %feature("autodoc", " Parameters @@ -1549,8 +1549,8 @@ Returns the list of generated faces. ") Modified; const TopTools_ListOfShape & Modified(const TopoDS_Shape & F); - /****************** Right ******************/ - /**** md5 signature: 2734ad1e91a0abfa780551bd587a1449 ****/ + /****** BRepFeat_SplitShape::Right ******/ + /****** md5 signature: 2734ad1e91a0abfa780551bd587a1449 ******/ %feature("compactdefaultargs") Right; %feature("autodoc", "Return ------- @@ -1562,8 +1562,8 @@ Returns the faces of the 'right' part on the shape. ") Right; const TopTools_ListOfShape & Right(); - /****************** SetCheckInterior ******************/ - /**** md5 signature: 2d00b58c59d6af210c84a7fdd261d94b ****/ + /****** BRepFeat_SplitShape::SetCheckInterior ******/ + /****** md5 signature: 2d00b58c59d6af210c84a7fdd261d94b ******/ %feature("compactdefaultargs") SetCheckInterior; %feature("autodoc", " Parameters @@ -1594,8 +1594,8 @@ Set the flag of check internal intersections default value is true (to check). *************************************/ class BRepFeat_MakeCylindricalHole : public BRepFeat_Builder { public: - /****************** BRepFeat_MakeCylindricalHole ******************/ - /**** md5 signature: 58c4d86e740884755488b274c73f95f1 ****/ + /****** BRepFeat_MakeCylindricalHole::BRepFeat_MakeCylindricalHole ******/ + /****** md5 signature: 58c4d86e740884755488b274c73f95f1 ******/ %feature("compactdefaultargs") BRepFeat_MakeCylindricalHole; %feature("autodoc", "Return ------- @@ -1607,8 +1607,8 @@ Empty constructor. ") BRepFeat_MakeCylindricalHole; BRepFeat_MakeCylindricalHole(); - /****************** Build ******************/ - /**** md5 signature: 634d88e5c99c5ce236c07b337243d591 ****/ + /****** BRepFeat_MakeCylindricalHole::Build ******/ + /****** md5 signature: 634d88e5c99c5ce236c07b337243d591 ******/ %feature("compactdefaultargs") Build; %feature("autodoc", "Return ------- @@ -1620,8 +1620,8 @@ Builds the resulting shape (redefined from makeshape). invalidates the given par ") Build; void Build(); - /****************** Init ******************/ - /**** md5 signature: dfebb8f53795a8547d999d68d22be1d7 ****/ + /****** BRepFeat_MakeCylindricalHole::Init ******/ + /****** md5 signature: dfebb8f53795a8547d999d68d22be1d7 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -1638,8 +1638,8 @@ Sets the axis of the hole(s). ") Init; void Init(const gp_Ax1 & Axis); - /****************** Init ******************/ - /**** md5 signature: 341b409eb6e8df45d9a033137c13c001 ****/ + /****** BRepFeat_MakeCylindricalHole::Init ******/ + /****** md5 signature: 341b409eb6e8df45d9a033137c13c001 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -1657,8 +1657,8 @@ Sets the shape and axis on which hole(s) will be performed. ") Init; void Init(const TopoDS_Shape & S, const gp_Ax1 & Axis); - /****************** Perform ******************/ - /**** md5 signature: d29e853e573ef7e11a66ef3857a2c5cd ****/ + /****** BRepFeat_MakeCylindricalHole::Perform ******/ + /****** md5 signature: d29e853e573ef7e11a66ef3857a2c5cd ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1675,8 +1675,8 @@ Performs every holes of radius . this command has the same effect as a c ") Perform; void Perform(const Standard_Real Radius); - /****************** Perform ******************/ - /**** md5 signature: 692010be9cefee836dc51667b7cdc333 ****/ + /****** BRepFeat_MakeCylindricalHole::Perform ******/ + /****** md5 signature: 692010be9cefee836dc51667b7cdc333 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1696,8 +1696,8 @@ Performs evry hole of radius located between pfrom and pto on the given ") Perform; void Perform(const Standard_Real Radius, const Standard_Real PFrom, const Standard_Real PTo, const Standard_Boolean WithControl = Standard_True); - /****************** PerformBlind ******************/ - /**** md5 signature: d6ad4465337920a7bace20f06cddf9a4 ****/ + /****** BRepFeat_MakeCylindricalHole::PerformBlind ******/ + /****** md5 signature: d6ad4465337920a7bace20f06cddf9a4 ******/ %feature("compactdefaultargs") PerformBlind; %feature("autodoc", " Parameters @@ -1716,8 +1716,8 @@ Performs a blind hole of radius and length . the length is meas ") PerformBlind; void PerformBlind(const Standard_Real Radius, const Standard_Real Length, const Standard_Boolean WithControl = Standard_True); - /****************** PerformThruNext ******************/ - /**** md5 signature: 3c97de21db8ff53771e449f91c5b073b ****/ + /****** BRepFeat_MakeCylindricalHole::PerformThruNext ******/ + /****** md5 signature: 3c97de21db8ff53771e449f91c5b073b ******/ %feature("compactdefaultargs") PerformThruNext; %feature("autodoc", " Parameters @@ -1735,8 +1735,8 @@ Performs the first hole of radius , in the direction of the defined axis ") PerformThruNext; void PerformThruNext(const Standard_Real Radius, const Standard_Boolean WithControl = Standard_True); - /****************** PerformUntilEnd ******************/ - /**** md5 signature: 66cdda3afb2a9ca35971dfed1fd5ab7d ****/ + /****** BRepFeat_MakeCylindricalHole::PerformUntilEnd ******/ + /****** md5 signature: 66cdda3afb2a9ca35971dfed1fd5ab7d ******/ %feature("compactdefaultargs") PerformUntilEnd; %feature("autodoc", " Parameters @@ -1754,8 +1754,8 @@ Performs evry holes of radius located after the origin of the given axi ") PerformUntilEnd; void PerformUntilEnd(const Standard_Real Radius, const Standard_Boolean WithControl = Standard_True); - /****************** Status ******************/ - /**** md5 signature: 6857f3614226fbbdaae5e244ae4256ba ****/ + /****** BRepFeat_MakeCylindricalHole::Status ******/ + /****** md5 signature: 6857f3614226fbbdaae5e244ae4256ba ******/ %feature("compactdefaultargs") Status; %feature("autodoc", "Return ------- @@ -1781,8 +1781,8 @@ Returns the status after a hole is performed. ****************************/ class BRepFeat_MakeDPrism : public BRepFeat_Form { public: - /****************** BRepFeat_MakeDPrism ******************/ - /**** md5 signature: ab28b5dd2f9cd5ff4235412c13babcfb ****/ + /****** BRepFeat_MakeDPrism::BRepFeat_MakeDPrism ******/ + /****** md5 signature: ab28b5dd2f9cd5ff4235412c13babcfb ******/ %feature("compactdefaultargs") BRepFeat_MakeDPrism; %feature("autodoc", " Parameters @@ -1804,8 +1804,8 @@ A face pbase is selected in the shape sbase to serve as the basis for the draft ") BRepFeat_MakeDPrism; BRepFeat_MakeDPrism(const TopoDS_Shape & Sbase, const TopoDS_Face & Pbase, const TopoDS_Face & Skface, const Standard_Real Angle, const Standard_Integer Fuse, const Standard_Boolean Modify); - /****************** BRepFeat_MakeDPrism ******************/ - /**** md5 signature: 72552317c20790f89347229a5f21c621 ****/ + /****** BRepFeat_MakeDPrism::BRepFeat_MakeDPrism ******/ + /****** md5 signature: 72552317c20790f89347229a5f21c621 ******/ %feature("compactdefaultargs") BRepFeat_MakeDPrism; %feature("autodoc", "Return ------- @@ -1817,8 +1817,8 @@ No available documentation. ") BRepFeat_MakeDPrism; BRepFeat_MakeDPrism(); - /****************** Add ******************/ - /**** md5 signature: 1958ed6feaed653cc58352476d181b28 ****/ + /****** BRepFeat_MakeDPrism::Add ******/ + /****** md5 signature: 1958ed6feaed653cc58352476d181b28 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1836,8 +1836,8 @@ Indicates that the edge will slide on the face . raises construction ") Add; void Add(const TopoDS_Edge & E, const TopoDS_Face & OnFace); - /****************** BarycCurve ******************/ - /**** md5 signature: 66d2a457dbd580b676149c11f86ad8b1 ****/ + /****** BRepFeat_MakeDPrism::BarycCurve ******/ + /****** md5 signature: 66d2a457dbd580b676149c11f86ad8b1 ******/ %feature("compactdefaultargs") BarycCurve; %feature("autodoc", "Return ------- @@ -1849,8 +1849,8 @@ No available documentation. ") BarycCurve; opencascade::handle BarycCurve(); - /****************** BossEdges ******************/ - /**** md5 signature: b65728171e50e3a538f10d4a296bea46 ****/ + /****** BRepFeat_MakeDPrism::BossEdges ******/ + /****** md5 signature: b65728171e50e3a538f10d4a296bea46 ******/ %feature("compactdefaultargs") BossEdges; %feature("autodoc", " Parameters @@ -1867,8 +1867,8 @@ Determination of topedges and latedges. sig = 1 -> topedges = firstshape of the ") BossEdges; void BossEdges(const Standard_Integer sig); - /****************** Curves ******************/ - /**** md5 signature: 07f751f9dfafc7503dd439055f5b554f ****/ + /****** BRepFeat_MakeDPrism::Curves ******/ + /****** md5 signature: 07f751f9dfafc7503dd439055f5b554f ******/ %feature("compactdefaultargs") Curves; %feature("autodoc", " Parameters @@ -1885,8 +1885,8 @@ No available documentation. ") Curves; void Curves(TColGeom_SequenceOfCurve & S); - /****************** Init ******************/ - /**** md5 signature: 1c308bd80cbfde6bd9a04d2c26e4b328 ****/ + /****** BRepFeat_MakeDPrism::Init ******/ + /****** md5 signature: 1c308bd80cbfde6bd9a04d2c26e4b328 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -1908,8 +1908,8 @@ Initializes this algorithm for building draft prisms along surfaces. a face pbas ") Init; void Init(const TopoDS_Shape & Sbase, const TopoDS_Face & Pbase, const TopoDS_Face & Skface, const Standard_Real Angle, const Standard_Integer Fuse, const Standard_Boolean Modify); - /****************** LatEdges ******************/ - /**** md5 signature: 8a9db9ef1cd1c382e2f11897bd51d3ed ****/ + /****** BRepFeat_MakeDPrism::LatEdges ******/ + /****** md5 signature: 8a9db9ef1cd1c382e2f11897bd51d3ed ******/ %feature("compactdefaultargs") LatEdges; %feature("autodoc", "Return ------- @@ -1921,8 +1921,8 @@ Returns the list of topods edges of the bottom of the boss. ") LatEdges; const TopTools_ListOfShape & LatEdges(); - /****************** Perform ******************/ - /**** md5 signature: 9d97b158b743926dc89782af13894b65 ****/ + /****** BRepFeat_MakeDPrism::Perform ******/ + /****** md5 signature: 9d97b158b743926dc89782af13894b65 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1939,8 +1939,8 @@ No available documentation. ") Perform; void Perform(const Standard_Real Height); - /****************** Perform ******************/ - /**** md5 signature: 10b8c982858685e75beee187b373027e ****/ + /****** BRepFeat_MakeDPrism::Perform ******/ + /****** md5 signature: 10b8c982858685e75beee187b373027e ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1957,8 +1957,8 @@ No available documentation. ") Perform; void Perform(const TopoDS_Shape & Until); - /****************** Perform ******************/ - /**** md5 signature: f1fa94f1bd31c2b819e36b79c175c9c3 ****/ + /****** BRepFeat_MakeDPrism::Perform ******/ + /****** md5 signature: f1fa94f1bd31c2b819e36b79c175c9c3 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1976,8 +1976,8 @@ Assigns one of the following semantics - to a height height - to a face until - ") Perform; void Perform(const TopoDS_Shape & From, const TopoDS_Shape & Until); - /****************** PerformFromEnd ******************/ - /**** md5 signature: 2ae4aebaae52040c3272099e5b6fc393 ****/ + /****** BRepFeat_MakeDPrism::PerformFromEnd ******/ + /****** md5 signature: 2ae4aebaae52040c3272099e5b6fc393 ******/ %feature("compactdefaultargs") PerformFromEnd; %feature("autodoc", " Parameters @@ -1994,8 +1994,8 @@ Realizes a semi-infinite prism, limited by the face funtil. ") PerformFromEnd; void PerformFromEnd(const TopoDS_Shape & FUntil); - /****************** PerformThruAll ******************/ - /**** md5 signature: 92616bf7c450284136e687eb7af8bafd ****/ + /****** BRepFeat_MakeDPrism::PerformThruAll ******/ + /****** md5 signature: 92616bf7c450284136e687eb7af8bafd ******/ %feature("compactdefaultargs") PerformThruAll; %feature("autodoc", "Return ------- @@ -2007,8 +2007,8 @@ Builds an infinite prism. the infinite descendants will not be kept in the resul ") PerformThruAll; void PerformThruAll(); - /****************** PerformUntilEnd ******************/ - /**** md5 signature: 6feb6fa4d6c705b4d577d6e26f2f6b24 ****/ + /****** BRepFeat_MakeDPrism::PerformUntilEnd ******/ + /****** md5 signature: 6feb6fa4d6c705b4d577d6e26f2f6b24 ******/ %feature("compactdefaultargs") PerformUntilEnd; %feature("autodoc", "Return ------- @@ -2020,8 +2020,8 @@ Realizes a semi-infinite prism, limited by the position of the prism base. ") PerformUntilEnd; void PerformUntilEnd(); - /****************** PerformUntilHeight ******************/ - /**** md5 signature: eb1cd9128736557f1abf6daa81bfbff4 ****/ + /****** BRepFeat_MakeDPrism::PerformUntilHeight ******/ + /****** md5 signature: eb1cd9128736557f1abf6daa81bfbff4 ******/ %feature("compactdefaultargs") PerformUntilHeight; %feature("autodoc", " Parameters @@ -2039,8 +2039,8 @@ Assigns both a limiting shape, until from topods_shape, and a height, height at ") PerformUntilHeight; void PerformUntilHeight(const TopoDS_Shape & Until, const Standard_Real Height); - /****************** TopEdges ******************/ - /**** md5 signature: 2517b76b176957c99a729b7a6eb5838c ****/ + /****** BRepFeat_MakeDPrism::TopEdges ******/ + /****** md5 signature: 2517b76b176957c99a729b7a6eb5838c ******/ %feature("compactdefaultargs") TopEdges; %feature("autodoc", "Return ------- @@ -2066,8 +2066,8 @@ Returns the list of topods edges of the top of the boss. ********************************/ class BRepFeat_MakeLinearForm : public BRepFeat_RibSlot { public: - /****************** BRepFeat_MakeLinearForm ******************/ - /**** md5 signature: b3a472883e7a5f479ca0056e13391243 ****/ + /****** BRepFeat_MakeLinearForm::BRepFeat_MakeLinearForm ******/ + /****** md5 signature: b3a472883e7a5f479ca0056e13391243 ******/ %feature("compactdefaultargs") BRepFeat_MakeLinearForm; %feature("autodoc", "Return ------- @@ -2079,8 +2079,8 @@ Initializes the linear form class. ") BRepFeat_MakeLinearForm; BRepFeat_MakeLinearForm(); - /****************** BRepFeat_MakeLinearForm ******************/ - /**** md5 signature: c0ab9d4da64ce70e63532385bc1370ef ****/ + /****** BRepFeat_MakeLinearForm::BRepFeat_MakeLinearForm ******/ + /****** md5 signature: c0ab9d4da64ce70e63532385bc1370ef ******/ %feature("compactdefaultargs") BRepFeat_MakeLinearForm; %feature("autodoc", " Parameters @@ -2103,8 +2103,8 @@ Contour w, a shape sbase and a plane p are initialized to serve as the basic ele ") BRepFeat_MakeLinearForm; BRepFeat_MakeLinearForm(const TopoDS_Shape & Sbase, const TopoDS_Wire & W, const opencascade::handle & P, const gp_Vec & Direction, const gp_Vec & Direction1, const Standard_Integer Fuse, const Standard_Boolean Modify); - /****************** Add ******************/ - /**** md5 signature: 1958ed6feaed653cc58352476d181b28 ****/ + /****** BRepFeat_MakeLinearForm::Add ******/ + /****** md5 signature: 1958ed6feaed653cc58352476d181b28 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -2122,8 +2122,8 @@ Indicates that the edge will slide on the face . raises construction ") Add; void Add(const TopoDS_Edge & E, const TopoDS_Face & OnFace); - /****************** Init ******************/ - /**** md5 signature: c57fb37411988458f322160e1faeec9c ****/ + /****** BRepFeat_MakeLinearForm::Init ******/ + /****** md5 signature: c57fb37411988458f322160e1faeec9c ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2146,8 +2146,8 @@ Initializes this construction algorithm. a contour w, a shape sbase and a plane ") Init; void Init(const TopoDS_Shape & Sbase, const TopoDS_Wire & W, const opencascade::handle & P, const gp_Vec & Direction, const gp_Vec & Direction1, const Standard_Integer Fuse, const Standard_Boolean Modify); - /****************** Perform ******************/ - /**** md5 signature: c04b01412cba7220c024b5eb4532697f ****/ + /****** BRepFeat_MakeLinearForm::Perform ******/ + /****** md5 signature: c04b01412cba7220c024b5eb4532697f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", "Return ------- @@ -2159,8 +2159,8 @@ Performs a prism from the wire to the plane along the basis shape sbase. reconst ") Perform; void Perform(); - /****************** Propagate ******************/ - /**** md5 signature: adcdddff34ee701126f7caab0efa651f ****/ + /****** BRepFeat_MakeLinearForm::Propagate ******/ + /****** md5 signature: adcdddff34ee701126f7caab0efa651f ******/ %feature("compactdefaultargs") Propagate; %feature("autodoc", " Parameters @@ -2198,8 +2198,8 @@ No available documentation. **************************/ class BRepFeat_MakePipe : public BRepFeat_Form { public: - /****************** BRepFeat_MakePipe ******************/ - /**** md5 signature: b6ec45d33d268911619eb6518659a655 ****/ + /****** BRepFeat_MakePipe::BRepFeat_MakePipe ******/ + /****** md5 signature: b6ec45d33d268911619eb6518659a655 ******/ %feature("compactdefaultargs") BRepFeat_MakePipe; %feature("autodoc", "Return ------- @@ -2211,8 +2211,8 @@ Initializes the pipe class. ") BRepFeat_MakePipe; BRepFeat_MakePipe(); - /****************** BRepFeat_MakePipe ******************/ - /**** md5 signature: 9a729843666efd38155cd635e17174fc ****/ + /****** BRepFeat_MakePipe::BRepFeat_MakePipe ******/ + /****** md5 signature: 9a729843666efd38155cd635e17174fc ******/ %feature("compactdefaultargs") BRepFeat_MakePipe; %feature("autodoc", " Parameters @@ -2234,8 +2234,8 @@ A face pbase is selected in the shape sbase to serve as the basis for the pipe. ") BRepFeat_MakePipe; BRepFeat_MakePipe(const TopoDS_Shape & Sbase, const TopoDS_Shape & Pbase, const TopoDS_Face & Skface, const TopoDS_Wire & Spine, const Standard_Integer Fuse, const Standard_Boolean Modify); - /****************** Add ******************/ - /**** md5 signature: 1958ed6feaed653cc58352476d181b28 ****/ + /****** BRepFeat_MakePipe::Add ******/ + /****** md5 signature: 1958ed6feaed653cc58352476d181b28 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -2253,8 +2253,8 @@ Indicates that the edge will slide on the face . raises construction ") Add; void Add(const TopoDS_Edge & E, const TopoDS_Face & OnFace); - /****************** BarycCurve ******************/ - /**** md5 signature: 66d2a457dbd580b676149c11f86ad8b1 ****/ + /****** BRepFeat_MakePipe::BarycCurve ******/ + /****** md5 signature: 66d2a457dbd580b676149c11f86ad8b1 ******/ %feature("compactdefaultargs") BarycCurve; %feature("autodoc", "Return ------- @@ -2266,8 +2266,8 @@ No available documentation. ") BarycCurve; opencascade::handle BarycCurve(); - /****************** Curves ******************/ - /**** md5 signature: 07f751f9dfafc7503dd439055f5b554f ****/ + /****** BRepFeat_MakePipe::Curves ******/ + /****** md5 signature: 07f751f9dfafc7503dd439055f5b554f ******/ %feature("compactdefaultargs") Curves; %feature("autodoc", " Parameters @@ -2284,8 +2284,8 @@ No available documentation. ") Curves; void Curves(TColGeom_SequenceOfCurve & S); - /****************** Init ******************/ - /**** md5 signature: 13c3f77362b6067f1fbdd2ba1e92d958 ****/ + /****** BRepFeat_MakePipe::Init ******/ + /****** md5 signature: 13c3f77362b6067f1fbdd2ba1e92d958 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2307,8 +2307,8 @@ Initializes this algorithm for adding pipes to shapes. a face pbase is selected ") Init; void Init(const TopoDS_Shape & Sbase, const TopoDS_Shape & Pbase, const TopoDS_Face & Skface, const TopoDS_Wire & Spine, const Standard_Integer Fuse, const Standard_Boolean Modify); - /****************** Perform ******************/ - /**** md5 signature: c04b01412cba7220c024b5eb4532697f ****/ + /****** BRepFeat_MakePipe::Perform ******/ + /****** md5 signature: c04b01412cba7220c024b5eb4532697f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", "Return ------- @@ -2320,8 +2320,8 @@ No available documentation. ") Perform; void Perform(); - /****************** Perform ******************/ - /**** md5 signature: 10b8c982858685e75beee187b373027e ****/ + /****** BRepFeat_MakePipe::Perform ******/ + /****** md5 signature: 10b8c982858685e75beee187b373027e ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2338,8 +2338,8 @@ No available documentation. ") Perform; void Perform(const TopoDS_Shape & Until); - /****************** Perform ******************/ - /**** md5 signature: f1fa94f1bd31c2b819e36b79c175c9c3 ****/ + /****** BRepFeat_MakePipe::Perform ******/ + /****** md5 signature: f1fa94f1bd31c2b819e36b79c175c9c3 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2371,8 +2371,8 @@ Assigns one of the following semantics - to a face until - from a face from to a ***************************/ class BRepFeat_MakePrism : public BRepFeat_Form { public: - /****************** BRepFeat_MakePrism ******************/ - /**** md5 signature: 29088ef3d93f66c4fac678a6bdb1fc3f ****/ + /****** BRepFeat_MakePrism::BRepFeat_MakePrism ******/ + /****** md5 signature: 29088ef3d93f66c4fac678a6bdb1fc3f ******/ %feature("compactdefaultargs") BRepFeat_MakePrism; %feature("autodoc", "Return ------- @@ -2384,8 +2384,8 @@ Builds a prism by projecting a wire along the face of a shape. initializes the p ") BRepFeat_MakePrism; BRepFeat_MakePrism(); - /****************** BRepFeat_MakePrism ******************/ - /**** md5 signature: 7db5164394edfcc899ebbd3bb688c3fc ****/ + /****** BRepFeat_MakePrism::BRepFeat_MakePrism ******/ + /****** md5 signature: 7db5164394edfcc899ebbd3bb688c3fc ******/ %feature("compactdefaultargs") BRepFeat_MakePrism; %feature("autodoc", " Parameters @@ -2407,8 +2407,8 @@ Builds a prism by projecting a wire along the face of a shape. a face pbase is s ") BRepFeat_MakePrism; BRepFeat_MakePrism(const TopoDS_Shape & Sbase, const TopoDS_Shape & Pbase, const TopoDS_Face & Skface, const gp_Dir & Direction, const Standard_Integer Fuse, const Standard_Boolean Modify); - /****************** Add ******************/ - /**** md5 signature: 1958ed6feaed653cc58352476d181b28 ****/ + /****** BRepFeat_MakePrism::Add ******/ + /****** md5 signature: 1958ed6feaed653cc58352476d181b28 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -2426,8 +2426,8 @@ Indicates that the edge will slide on the face . raises construction ") Add; void Add(const TopoDS_Edge & E, const TopoDS_Face & OnFace); - /****************** BarycCurve ******************/ - /**** md5 signature: 66d2a457dbd580b676149c11f86ad8b1 ****/ + /****** BRepFeat_MakePrism::BarycCurve ******/ + /****** md5 signature: 66d2a457dbd580b676149c11f86ad8b1 ******/ %feature("compactdefaultargs") BarycCurve; %feature("autodoc", "Return ------- @@ -2439,8 +2439,8 @@ Generates a curve along the center of mass of the primitive. ") BarycCurve; opencascade::handle BarycCurve(); - /****************** Curves ******************/ - /**** md5 signature: 07f751f9dfafc7503dd439055f5b554f ****/ + /****** BRepFeat_MakePrism::Curves ******/ + /****** md5 signature: 07f751f9dfafc7503dd439055f5b554f ******/ %feature("compactdefaultargs") Curves; %feature("autodoc", " Parameters @@ -2457,8 +2457,8 @@ Returns the list of curves s parallel to the axis of the prism. ") Curves; void Curves(TColGeom_SequenceOfCurve & S); - /****************** Init ******************/ - /**** md5 signature: 27921e8866c46fd571e4916d337b0ff4 ****/ + /****** BRepFeat_MakePrism::Init ******/ + /****** md5 signature: 27921e8866c46fd571e4916d337b0ff4 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2480,8 +2480,8 @@ Initializes this algorithm for building prisms along surfaces. a face pbase is s ") Init; void Init(const TopoDS_Shape & Sbase, const TopoDS_Shape & Pbase, const TopoDS_Face & Skface, const gp_Dir & Direction, const Standard_Integer Fuse, const Standard_Boolean Modify); - /****************** Perform ******************/ - /**** md5 signature: 921dd6f91281e2488215eafa36261fe3 ****/ + /****** BRepFeat_MakePrism::Perform ******/ + /****** md5 signature: 921dd6f91281e2488215eafa36261fe3 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2498,8 +2498,8 @@ No available documentation. ") Perform; void Perform(const Standard_Real Length); - /****************** Perform ******************/ - /**** md5 signature: 10b8c982858685e75beee187b373027e ****/ + /****** BRepFeat_MakePrism::Perform ******/ + /****** md5 signature: 10b8c982858685e75beee187b373027e ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2516,8 +2516,8 @@ No available documentation. ") Perform; void Perform(const TopoDS_Shape & Until); - /****************** Perform ******************/ - /**** md5 signature: f1fa94f1bd31c2b819e36b79c175c9c3 ****/ + /****** BRepFeat_MakePrism::Perform ******/ + /****** md5 signature: f1fa94f1bd31c2b819e36b79c175c9c3 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2535,8 +2535,8 @@ Assigns one of the following semantics - to a height length - to a face until - ") Perform; void Perform(const TopoDS_Shape & From, const TopoDS_Shape & Until); - /****************** PerformFromEnd ******************/ - /**** md5 signature: 2ae4aebaae52040c3272099e5b6fc393 ****/ + /****** BRepFeat_MakePrism::PerformFromEnd ******/ + /****** md5 signature: 2ae4aebaae52040c3272099e5b6fc393 ******/ %feature("compactdefaultargs") PerformFromEnd; %feature("autodoc", " Parameters @@ -2553,8 +2553,8 @@ Realizes a semi-infinite prism, limited by the face funtil. ") PerformFromEnd; void PerformFromEnd(const TopoDS_Shape & FUntil); - /****************** PerformThruAll ******************/ - /**** md5 signature: 92616bf7c450284136e687eb7af8bafd ****/ + /****** BRepFeat_MakePrism::PerformThruAll ******/ + /****** md5 signature: 92616bf7c450284136e687eb7af8bafd ******/ %feature("compactdefaultargs") PerformThruAll; %feature("autodoc", "Return ------- @@ -2566,8 +2566,8 @@ Builds an infinite prism. the infinite descendants will not be kept in the resul ") PerformThruAll; void PerformThruAll(); - /****************** PerformUntilEnd ******************/ - /**** md5 signature: 6feb6fa4d6c705b4d577d6e26f2f6b24 ****/ + /****** BRepFeat_MakePrism::PerformUntilEnd ******/ + /****** md5 signature: 6feb6fa4d6c705b4d577d6e26f2f6b24 ******/ %feature("compactdefaultargs") PerformUntilEnd; %feature("autodoc", "Return ------- @@ -2579,8 +2579,8 @@ Realizes a semi-infinite prism, limited by the position of the prism base. all o ") PerformUntilEnd; void PerformUntilEnd(); - /****************** PerformUntilHeight ******************/ - /**** md5 signature: a7c4efe8d2b443f212d0783579b1403a ****/ + /****** BRepFeat_MakePrism::PerformUntilHeight ******/ + /****** md5 signature: a7c4efe8d2b443f212d0783579b1403a ******/ %feature("compactdefaultargs") PerformUntilHeight; %feature("autodoc", " Parameters @@ -2612,8 +2612,8 @@ Assigns both a limiting shape, until from topods_shape, and a height, length at ***************************/ class BRepFeat_MakeRevol : public BRepFeat_Form { public: - /****************** BRepFeat_MakeRevol ******************/ - /**** md5 signature: 609fe8b8590e4a7f4ae6631dc2857a92 ****/ + /****** BRepFeat_MakeRevol::BRepFeat_MakeRevol ******/ + /****** md5 signature: 609fe8b8590e4a7f4ae6631dc2857a92 ******/ %feature("compactdefaultargs") BRepFeat_MakeRevol; %feature("autodoc", "Return ------- @@ -2625,8 +2625,8 @@ Initializes the revolved shell class. ") BRepFeat_MakeRevol; BRepFeat_MakeRevol(); - /****************** BRepFeat_MakeRevol ******************/ - /**** md5 signature: 2b9607178edc298f7a78ff1d5cf30402 ****/ + /****** BRepFeat_MakeRevol::BRepFeat_MakeRevol ******/ + /****** md5 signature: 2b9607178edc298f7a78ff1d5cf30402 ******/ %feature("compactdefaultargs") BRepFeat_MakeRevol; %feature("autodoc", " Parameters @@ -2648,8 +2648,8 @@ A face pbase is selected in the shape sbase to serve as the basis for the revolv ") BRepFeat_MakeRevol; BRepFeat_MakeRevol(const TopoDS_Shape & Sbase, const TopoDS_Shape & Pbase, const TopoDS_Face & Skface, const gp_Ax1 & Axis, const Standard_Integer Fuse, const Standard_Boolean Modify); - /****************** Add ******************/ - /**** md5 signature: 1958ed6feaed653cc58352476d181b28 ****/ + /****** BRepFeat_MakeRevol::Add ******/ + /****** md5 signature: 1958ed6feaed653cc58352476d181b28 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -2667,8 +2667,8 @@ Indicates that the edge will slide on the face . raises construction ") Add; void Add(const TopoDS_Edge & E, const TopoDS_Face & OnFace); - /****************** BarycCurve ******************/ - /**** md5 signature: 66d2a457dbd580b676149c11f86ad8b1 ****/ + /****** BRepFeat_MakeRevol::BarycCurve ******/ + /****** md5 signature: 66d2a457dbd580b676149c11f86ad8b1 ******/ %feature("compactdefaultargs") BarycCurve; %feature("autodoc", "Return ------- @@ -2680,8 +2680,8 @@ No available documentation. ") BarycCurve; opencascade::handle BarycCurve(); - /****************** Curves ******************/ - /**** md5 signature: 07f751f9dfafc7503dd439055f5b554f ****/ + /****** BRepFeat_MakeRevol::Curves ******/ + /****** md5 signature: 07f751f9dfafc7503dd439055f5b554f ******/ %feature("compactdefaultargs") Curves; %feature("autodoc", " Parameters @@ -2698,8 +2698,8 @@ No available documentation. ") Curves; void Curves(TColGeom_SequenceOfCurve & S); - /****************** Init ******************/ - /**** md5 signature: 204ce292f4f566e4506694c7e7314a55 ****/ + /****** BRepFeat_MakeRevol::Init ******/ + /****** md5 signature: 204ce292f4f566e4506694c7e7314a55 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2721,8 +2721,8 @@ No available documentation. ") Init; void Init(const TopoDS_Shape & Sbase, const TopoDS_Shape & Pbase, const TopoDS_Face & Skface, const gp_Ax1 & Axis, const Standard_Integer Fuse, const Standard_Boolean Modify); - /****************** Perform ******************/ - /**** md5 signature: 6a7a2ae149125c85eb43bdf43080f3fa ****/ + /****** BRepFeat_MakeRevol::Perform ******/ + /****** md5 signature: 6a7a2ae149125c85eb43bdf43080f3fa ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2739,8 +2739,8 @@ No available documentation. ") Perform; void Perform(const Standard_Real Angle); - /****************** Perform ******************/ - /**** md5 signature: 10b8c982858685e75beee187b373027e ****/ + /****** BRepFeat_MakeRevol::Perform ******/ + /****** md5 signature: 10b8c982858685e75beee187b373027e ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2757,8 +2757,8 @@ No available documentation. ") Perform; void Perform(const TopoDS_Shape & Until); - /****************** Perform ******************/ - /**** md5 signature: f1fa94f1bd31c2b819e36b79c175c9c3 ****/ + /****** BRepFeat_MakeRevol::Perform ******/ + /****** md5 signature: f1fa94f1bd31c2b819e36b79c175c9c3 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2776,8 +2776,8 @@ Reconstructs the feature topologically. ") Perform; void Perform(const TopoDS_Shape & From, const TopoDS_Shape & Until); - /****************** PerformThruAll ******************/ - /**** md5 signature: 92616bf7c450284136e687eb7af8bafd ****/ + /****** BRepFeat_MakeRevol::PerformThruAll ******/ + /****** md5 signature: 92616bf7c450284136e687eb7af8bafd ******/ %feature("compactdefaultargs") PerformThruAll; %feature("autodoc", "Return ------- @@ -2789,8 +2789,8 @@ Builds an infinite shell. the infinite descendants will not be kept in the resul ") PerformThruAll; void PerformThruAll(); - /****************** PerformUntilAngle ******************/ - /**** md5 signature: 1f41e4ebc99ac743b4e9d885ea6242a4 ****/ + /****** BRepFeat_MakeRevol::PerformUntilAngle ******/ + /****** md5 signature: 1f41e4ebc99ac743b4e9d885ea6242a4 ******/ %feature("compactdefaultargs") PerformUntilAngle; %feature("autodoc", " Parameters @@ -2822,8 +2822,8 @@ Assigns both a limiting shape, until from topods_shape, and an angle, angle at w ************************************/ class BRepFeat_MakeRevolutionForm : public BRepFeat_RibSlot { public: - /****************** BRepFeat_MakeRevolutionForm ******************/ - /**** md5 signature: 302eb4f703035b0ebb1f2db4645e0923 ****/ + /****** BRepFeat_MakeRevolutionForm::BRepFeat_MakeRevolutionForm ******/ + /****** md5 signature: 302eb4f703035b0ebb1f2db4645e0923 ******/ %feature("compactdefaultargs") BRepFeat_MakeRevolutionForm; %feature("autodoc", "Return ------- @@ -2835,8 +2835,8 @@ Initializes the linear form class. ") BRepFeat_MakeRevolutionForm; BRepFeat_MakeRevolutionForm(); - /****************** BRepFeat_MakeRevolutionForm ******************/ - /**** md5 signature: ff82b0fdd2670104a2362ed0daefc10d ****/ + /****** BRepFeat_MakeRevolutionForm::BRepFeat_MakeRevolutionForm ******/ + /****** md5 signature: ff82b0fdd2670104a2362ed0daefc10d ******/ %feature("compactdefaultargs") BRepFeat_MakeRevolutionForm; %feature("autodoc", " Parameters @@ -2859,8 +2859,8 @@ A contour w, a shape sbase and a plane p are initialized to serve as the basic e ") BRepFeat_MakeRevolutionForm; BRepFeat_MakeRevolutionForm(const TopoDS_Shape & Sbase, const TopoDS_Wire & W, const opencascade::handle & Plane, const gp_Ax1 & Axis, const Standard_Real Height1, const Standard_Real Height2, const Standard_Integer Fuse, Standard_Boolean &OutValue); - /****************** Add ******************/ - /**** md5 signature: 1958ed6feaed653cc58352476d181b28 ****/ + /****** BRepFeat_MakeRevolutionForm::Add ******/ + /****** md5 signature: 1958ed6feaed653cc58352476d181b28 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -2878,8 +2878,8 @@ Indicates that the edge will slide on the face . raises construction ") Add; void Add(const TopoDS_Edge & E, const TopoDS_Face & OnFace); - /****************** Init ******************/ - /**** md5 signature: 9ca78664b7e171890eaab6bc207dce08 ****/ + /****** BRepFeat_MakeRevolutionForm::Init ******/ + /****** md5 signature: 9ca78664b7e171890eaab6bc207dce08 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2902,8 +2902,8 @@ Initializes this construction algorithm a contour w, a shape sbase and a plane p ") Init; void Init(const TopoDS_Shape & Sbase, const TopoDS_Wire & W, const opencascade::handle & Plane, const gp_Ax1 & Axis, const Standard_Real Height1, const Standard_Real Height2, const Standard_Integer Fuse, Standard_Boolean &OutValue); - /****************** Perform ******************/ - /**** md5 signature: c04b01412cba7220c024b5eb4532697f ****/ + /****** BRepFeat_MakeRevolutionForm::Perform ******/ + /****** md5 signature: c04b01412cba7220c024b5eb4532697f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", "Return ------- @@ -2915,8 +2915,8 @@ Performs a prism from the wire to the plane along the basis shape s. reconstruct ") Perform; void Perform(); - /****************** Propagate ******************/ - /**** md5 signature: adcdddff34ee701126f7caab0efa651f ****/ + /****** BRepFeat_MakeRevolutionForm::Propagate ******/ + /****** md5 signature: adcdddff34ee701126f7caab0efa651f ******/ %feature("compactdefaultargs") Propagate; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BRepFill.i b/src/SWIG_files/wrapper/BRepFill.i index 9ec3ca5a4..6e08a619a 100644 --- a/src/SWIG_files/wrapper/BRepFill.i +++ b/src/SWIG_files/wrapper/BRepFill.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPFILLDOCSTRING "BRepFill module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepfill.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepfill.html" %enddef %module (package="OCC.Core", docstring=BREPFILLDOCSTRING) BRepFill @@ -254,8 +254,8 @@ typedef NCollection_Sequence BRepFill_SequenceOfSection; %rename(brepfill) BRepFill; class BRepFill { public: - /****************** Axe ******************/ - /**** md5 signature: 5066bf0a1bf31230a49bcd8154518ee5 ****/ + /****** BRepFill::Axe ******/ + /****** md5 signature: 5066bf0a1bf31230a49bcd8154518ee5 ******/ %feature("compactdefaultargs") Axe; %feature("autodoc", " Parameters @@ -275,8 +275,8 @@ Computes as follow. is the position of the nearest vertex v ") Axe; static void Axe(const TopoDS_Shape & Spine, const TopoDS_Wire & Profile, gp_Ax3 & AxeProf, Standard_Boolean &OutValue, const Standard_Real Tol); - /****************** ComputeACR ******************/ - /**** md5 signature: 4db89150ae3d82fd512df64018024851 ****/ + /****** BRepFill::ComputeACR ******/ + /****** md5 signature: 4db89150ae3d82fd512df64018024851 ******/ %feature("compactdefaultargs") ComputeACR; %feature("autodoc", " Parameters @@ -294,8 +294,8 @@ Compute acr on a wire. ") ComputeACR; static void ComputeACR(const TopoDS_Wire & wire, TColStd_Array1OfReal & ACR); - /****************** Face ******************/ - /**** md5 signature: d63ae9062edc6e9968525d33571f93de ****/ + /****** BRepFill::Face ******/ + /****** md5 signature: d63ae9062edc6e9968525d33571f93de ******/ %feature("compactdefaultargs") Face; %feature("autodoc", " Parameters @@ -313,8 +313,8 @@ Computes a ruled surface between two edges. ") Face; static TopoDS_Face Face(const TopoDS_Edge & Edge1, const TopoDS_Edge & Edge2); - /****************** InsertACR ******************/ - /**** md5 signature: 0819589e0db11915fe8ccc0f2db00289 ****/ + /****** BRepFill::InsertACR ******/ + /****** md5 signature: 0819589e0db11915fe8ccc0f2db00289 ******/ %feature("compactdefaultargs") InsertACR; %feature("autodoc", " Parameters @@ -333,8 +333,8 @@ Insert acr on a wire. ") InsertACR; static TopoDS_Wire InsertACR(const TopoDS_Wire & wire, const TColStd_Array1OfReal & ACRcuts, const Standard_Real prec); - /****************** Shell ******************/ - /**** md5 signature: 88d6b874e94f58733b1bc7baa4c7ea78 ****/ + /****** BRepFill::Shell ******/ + /****** md5 signature: 88d6b874e94f58733b1bc7baa4c7ea78 ******/ %feature("compactdefaultargs") Shell; %feature("autodoc", " Parameters @@ -366,8 +366,8 @@ Computes a ruled surface between two wires. the wires must have the same number *********************************/ class BRepFill_AdvancedEvolved { public: - /****************** BRepFill_AdvancedEvolved ******************/ - /**** md5 signature: de66ae3cdf69d9d623f47984cdb95d29 ****/ + /****** BRepFill_AdvancedEvolved::BRepFill_AdvancedEvolved ******/ + /****** md5 signature: de66ae3cdf69d9d623f47984cdb95d29 ******/ %feature("compactdefaultargs") BRepFill_AdvancedEvolved; %feature("autodoc", "Return ------- @@ -379,8 +379,8 @@ Constructor. ") BRepFill_AdvancedEvolved; BRepFill_AdvancedEvolved(); - /****************** IsDone ******************/ - /**** md5 signature: 04d3ce368655bc93ea2a356898208e17 ****/ + /****** BRepFill_AdvancedEvolved::IsDone ******/ + /****** md5 signature: 04d3ce368655bc93ea2a356898208e17 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", " Parameters @@ -397,8 +397,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(unsigned int * theErrorCode = 0); - /****************** Perform ******************/ - /**** md5 signature: 88613f19a0986c9af1e44552cf871df2 ****/ + /****** BRepFill_AdvancedEvolved::Perform ******/ + /****** md5 signature: 88613f19a0986c9af1e44552cf871df2 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -418,8 +418,8 @@ No available documentation. ") Perform; void Perform(const TopoDS_Wire & theSpine, const TopoDS_Wire & theProfile, const Standard_Real theTolerance, const Standard_Boolean theSolidReq = Standard_True); - /****************** SetParallelMode ******************/ - /**** md5 signature: a48577b543b1abcd5b5b83650e3dcd40 ****/ + /****** BRepFill_AdvancedEvolved::SetParallelMode ******/ + /****** md5 signature: a48577b543b1abcd5b5b83650e3dcd40 ******/ %feature("compactdefaultargs") SetParallelMode; %feature("autodoc", " Parameters @@ -436,8 +436,8 @@ Sets/unsets computation in parallel mode. ") SetParallelMode; void SetParallelMode(const Standard_Boolean theVal); - /****************** SetTemporaryDirectory ******************/ - /**** md5 signature: 21483a70923e54cef6dc15c9ef320f8d ****/ + /****** BRepFill_AdvancedEvolved::SetTemporaryDirectory ******/ + /****** md5 signature: 21483a70923e54cef6dc15c9ef320f8d ******/ %feature("compactdefaultargs") SetTemporaryDirectory; %feature("autodoc", " Parameters @@ -454,8 +454,8 @@ Sets directory where the debug shapes will be saved. ") SetTemporaryDirectory; void SetTemporaryDirectory(Standard_CString thePath); - /****************** Shape ******************/ - /**** md5 signature: 1058569f5d639354fedf11e73741b7df ****/ + /****** BRepFill_AdvancedEvolved::Shape ******/ + /****** md5 signature: 1058569f5d639354fedf11e73741b7df ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -481,8 +481,8 @@ Returns the resulting shape. *******************************/ class BRepFill_ApproxSeewing { public: - /****************** BRepFill_ApproxSeewing ******************/ - /**** md5 signature: b6c908b616aa82002854711d3e47ceff ****/ + /****** BRepFill_ApproxSeewing::BRepFill_ApproxSeewing ******/ + /****** md5 signature: b6c908b616aa82002854711d3e47ceff ******/ %feature("compactdefaultargs") BRepFill_ApproxSeewing; %feature("autodoc", "Return ------- @@ -494,8 +494,8 @@ No available documentation. ") BRepFill_ApproxSeewing; BRepFill_ApproxSeewing(); - /****************** BRepFill_ApproxSeewing ******************/ - /**** md5 signature: 4a2e8c7becb8b1caa500e572e0160bf9 ****/ + /****** BRepFill_ApproxSeewing::BRepFill_ApproxSeewing ******/ + /****** md5 signature: 4a2e8c7becb8b1caa500e572e0160bf9 ******/ %feature("compactdefaultargs") BRepFill_ApproxSeewing; %feature("autodoc", " Parameters @@ -512,8 +512,8 @@ No available documentation. ") BRepFill_ApproxSeewing; BRepFill_ApproxSeewing(const BRepFill_MultiLine & ML); - /****************** Curve ******************/ - /**** md5 signature: 976a03829ec92d091e0b58dd7f58e869 ****/ + /****** BRepFill_ApproxSeewing::Curve ******/ + /****** md5 signature: 976a03829ec92d091e0b58dd7f58e869 ******/ %feature("compactdefaultargs") Curve; %feature("autodoc", "Return ------- @@ -525,8 +525,8 @@ Returns the approximation of the 3d curve. ") Curve; const opencascade::handle & Curve(); - /****************** CurveOnF1 ******************/ - /**** md5 signature: 3369c82f423ee0cfc8f0ec4f137a55f4 ****/ + /****** BRepFill_ApproxSeewing::CurveOnF1 ******/ + /****** md5 signature: 3369c82f423ee0cfc8f0ec4f137a55f4 ******/ %feature("compactdefaultargs") CurveOnF1; %feature("autodoc", "Return ------- @@ -538,8 +538,8 @@ Returns the approximation of the pcurve on the first face of the multiline. ") CurveOnF1; const opencascade::handle & CurveOnF1(); - /****************** CurveOnF2 ******************/ - /**** md5 signature: 45c6de84c8d94f080f62b4c4f2add37e ****/ + /****** BRepFill_ApproxSeewing::CurveOnF2 ******/ + /****** md5 signature: 45c6de84c8d94f080f62b4c4f2add37e ******/ %feature("compactdefaultargs") CurveOnF2; %feature("autodoc", "Return ------- @@ -551,8 +551,8 @@ Returns the approximation of the pcurve on the first face of the multiline. ") CurveOnF2; const opencascade::handle & CurveOnF2(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepFill_ApproxSeewing::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -564,8 +564,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** Perform ******************/ - /**** md5 signature: 7dae4f24d8e972b63f7656fd42784a35 ****/ + /****** BRepFill_ApproxSeewing::Perform ******/ + /****** md5 signature: 7dae4f24d8e972b63f7656fd42784a35 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -596,8 +596,8 @@ No available documentation. *********************************/ class BRepFill_CompatibleWires { public: - /****************** BRepFill_CompatibleWires ******************/ - /**** md5 signature: 55c08213e487fac27bfa21c6cd7ea46e ****/ + /****** BRepFill_CompatibleWires::BRepFill_CompatibleWires ******/ + /****** md5 signature: 55c08213e487fac27bfa21c6cd7ea46e ******/ %feature("compactdefaultargs") BRepFill_CompatibleWires; %feature("autodoc", "Return ------- @@ -609,8 +609,8 @@ No available documentation. ") BRepFill_CompatibleWires; BRepFill_CompatibleWires(); - /****************** BRepFill_CompatibleWires ******************/ - /**** md5 signature: 4cd5f0fde1f6cd47ff46ea0a75d3d42e ****/ + /****** BRepFill_CompatibleWires::BRepFill_CompatibleWires ******/ + /****** md5 signature: 4cd5f0fde1f6cd47ff46ea0a75d3d42e ******/ %feature("compactdefaultargs") BRepFill_CompatibleWires; %feature("autodoc", " Parameters @@ -627,8 +627,8 @@ No available documentation. ") BRepFill_CompatibleWires; BRepFill_CompatibleWires(const TopTools_SequenceOfShape & Sections); - /****************** Generated ******************/ - /**** md5 signature: 176507b5ffd0100ab7a88bdc3ba1ff71 ****/ + /****** BRepFill_CompatibleWires::Generated ******/ + /****** md5 signature: 176507b5ffd0100ab7a88bdc3ba1ff71 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", "Return ------- @@ -640,8 +640,8 @@ No available documentation. ") Generated; const TopTools_DataMapOfShapeListOfShape & Generated(); - /****************** GeneratedShapes ******************/ - /**** md5 signature: 5dcd274faa3f647473f032e7defdf0c3 ****/ + /****** BRepFill_CompatibleWires::GeneratedShapes ******/ + /****** md5 signature: 5dcd274faa3f647473f032e7defdf0c3 ******/ %feature("compactdefaultargs") GeneratedShapes; %feature("autodoc", " Parameters @@ -658,8 +658,8 @@ Returns the shapes created from a subshape of a section. ") GeneratedShapes; const TopTools_ListOfShape & GeneratedShapes(const TopoDS_Edge & SubSection); - /****************** GetStatus ******************/ - /**** md5 signature: d01d66bd030c1232d59d2b7253fc3b10 ****/ + /****** BRepFill_CompatibleWires::GetStatus ******/ + /****** md5 signature: d01d66bd030c1232d59d2b7253fc3b10 ******/ %feature("compactdefaultargs") GetStatus; %feature("autodoc", "Return ------- @@ -671,8 +671,8 @@ No available documentation. ") GetStatus; BRepFill_ThruSectionErrorStatus GetStatus(); - /****************** Init ******************/ - /**** md5 signature: 217046dd3125fb37abc6e15803e209f1 ****/ + /****** BRepFill_CompatibleWires::Init ******/ + /****** md5 signature: 217046dd3125fb37abc6e15803e209f1 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -689,8 +689,8 @@ No available documentation. ") Init; void Init(const TopTools_SequenceOfShape & Sections); - /****************** IsDegeneratedFirstSection ******************/ - /**** md5 signature: 3a477c0ee0e113cb31ef37b01884007c ****/ + /****** BRepFill_CompatibleWires::IsDegeneratedFirstSection ******/ + /****** md5 signature: 3a477c0ee0e113cb31ef37b01884007c ******/ %feature("compactdefaultargs") IsDegeneratedFirstSection; %feature("autodoc", "Return ------- @@ -702,8 +702,8 @@ No available documentation. ") IsDegeneratedFirstSection; Standard_Boolean IsDegeneratedFirstSection(); - /****************** IsDegeneratedLastSection ******************/ - /**** md5 signature: 3efc39e10dd4ffdc769475ccbdfc0853 ****/ + /****** BRepFill_CompatibleWires::IsDegeneratedLastSection ******/ + /****** md5 signature: 3efc39e10dd4ffdc769475ccbdfc0853 ******/ %feature("compactdefaultargs") IsDegeneratedLastSection; %feature("autodoc", "Return ------- @@ -715,8 +715,8 @@ No available documentation. ") IsDegeneratedLastSection; Standard_Boolean IsDegeneratedLastSection(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepFill_CompatibleWires::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -728,8 +728,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** Perform ******************/ - /**** md5 signature: f94f3c6634f53a2788ea3841219abc1e ****/ + /****** BRepFill_CompatibleWires::Perform ******/ + /****** md5 signature: f94f3c6634f53a2788ea3841219abc1e ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -746,8 +746,8 @@ Performs compatiblewires according to the orientation and the origin of each oth ") Perform; void Perform(const Standard_Boolean WithRotation = Standard_True); - /****************** SetPercent ******************/ - /**** md5 signature: d05be61ce868366e26cb62736833d711 ****/ + /****** BRepFill_CompatibleWires::SetPercent ******/ + /****** md5 signature: d05be61ce868366e26cb62736833d711 ******/ %feature("compactdefaultargs") SetPercent; %feature("autodoc", " Parameters @@ -764,8 +764,8 @@ No available documentation. ") SetPercent; void SetPercent(const Standard_Real percent = 0.01); - /****************** Shape ******************/ - /**** md5 signature: ca3dbe5cb613e6a993649b413b6e3cda ****/ + /****** BRepFill_CompatibleWires::Shape ******/ + /****** md5 signature: ca3dbe5cb613e6a993649b413b6e3cda ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -791,8 +791,8 @@ Returns the generated sequence. ******************************/ class BRepFill_ComputeCLine { public: - /****************** BRepFill_ComputeCLine ******************/ - /**** md5 signature: b39b808be258e6d42211fb37c89d3426 ****/ + /****** BRepFill_ComputeCLine::BRepFill_ComputeCLine ******/ + /****** md5 signature: b39b808be258e6d42211fb37c89d3426 ******/ %feature("compactdefaultargs") BRepFill_ComputeCLine; %feature("autodoc", " Parameters @@ -816,8 +816,8 @@ The multiline will be approximated until tolerances will be reached. the ") BRepFill_ComputeCLine; BRepFill_ComputeCLine(const BRepFill_MultiLine & Line, const Standard_Integer degreemin = 3, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-5, const Standard_Real Tolerance2d = 1.0e-5, const Standard_Boolean cutting = Standard_False, const AppParCurves_Constraint FirstC = AppParCurves_TangencyPoint, const AppParCurves_Constraint LastC = AppParCurves_TangencyPoint); - /****************** BRepFill_ComputeCLine ******************/ - /**** md5 signature: 522061d3b3840a1c3fe490daa3023387 ****/ + /****** BRepFill_ComputeCLine::BRepFill_ComputeCLine ******/ + /****** md5 signature: 522061d3b3840a1c3fe490daa3023387 ******/ %feature("compactdefaultargs") BRepFill_ComputeCLine; %feature("autodoc", " Parameters @@ -840,8 +840,8 @@ Initializes the fields of the algorithm. ") BRepFill_ComputeCLine; BRepFill_ComputeCLine(const Standard_Integer degreemin = 3, const Standard_Integer degreemax = 8, const Standard_Real Tolerance3d = 1.0e-05, const Standard_Real Tolerance2d = 1.0e-05, const Standard_Boolean cutting = Standard_False, const AppParCurves_Constraint FirstC = AppParCurves_TangencyPoint, const AppParCurves_Constraint LastC = AppParCurves_TangencyPoint); - /****************** Error ******************/ - /**** md5 signature: 6a8061230005ba951097d8b73e7dbec6 ****/ + /****** BRepFill_ComputeCLine::Error ******/ + /****** md5 signature: 6a8061230005ba951097d8b73e7dbec6 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", " Parameters @@ -859,8 +859,8 @@ Returns the tolerances 2d and 3d of the multicurve. ") Error; void Error(const Standard_Integer Index, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** IsAllApproximated ******************/ - /**** md5 signature: bf42a9f9ee3a867655d96a0c1fdcd853 ****/ + /****** BRepFill_ComputeCLine::IsAllApproximated ******/ + /****** md5 signature: bf42a9f9ee3a867655d96a0c1fdcd853 ******/ %feature("compactdefaultargs") IsAllApproximated; %feature("autodoc", "Return ------- @@ -872,8 +872,8 @@ Returns false if at a moment of the approximation, the status noapproximation ha ") IsAllApproximated; Standard_Boolean IsAllApproximated(); - /****************** IsToleranceReached ******************/ - /**** md5 signature: cbd7380250e74c96655b10c8025eb873 ****/ + /****** BRepFill_ComputeCLine::IsToleranceReached ******/ + /****** md5 signature: cbd7380250e74c96655b10c8025eb873 ******/ %feature("compactdefaultargs") IsToleranceReached; %feature("autodoc", "Return ------- @@ -885,8 +885,8 @@ Returns false if the status nopointsadded has been sent. ") IsToleranceReached; Standard_Boolean IsToleranceReached(); - /****************** NbMultiCurves ******************/ - /**** md5 signature: 944d4af40d93d46a8a3a888df2d8b388 ****/ + /****** BRepFill_ComputeCLine::NbMultiCurves ******/ + /****** md5 signature: 944d4af40d93d46a8a3a888df2d8b388 ******/ %feature("compactdefaultargs") NbMultiCurves; %feature("autodoc", "Return ------- @@ -898,8 +898,8 @@ Returns the number of multicurve doing the approximation of the multiline. ") NbMultiCurves; Standard_Integer NbMultiCurves(); - /****************** Parameters ******************/ - /**** md5 signature: da3dbf6a597566992bf85427f2de867b ****/ + /****** BRepFill_ComputeCLine::Parameters ******/ + /****** md5 signature: da3dbf6a597566992bf85427f2de867b ******/ %feature("compactdefaultargs") Parameters; %feature("autodoc", " Parameters @@ -917,8 +917,8 @@ No available documentation. ") Parameters; void Parameters(const Standard_Integer Index, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Perform ******************/ - /**** md5 signature: 433c11a1cebf588552fe8d01e07bfc91 ****/ + /****** BRepFill_ComputeCLine::Perform ******/ + /****** md5 signature: 433c11a1cebf588552fe8d01e07bfc91 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -935,8 +935,8 @@ Runs the algorithm after having initialized the fields. ") Perform; void Perform(const BRepFill_MultiLine & Line); - /****************** SetConstraints ******************/ - /**** md5 signature: 99b92dc193142adf44568f800cd394dc ****/ + /****** BRepFill_ComputeCLine::SetConstraints ******/ + /****** md5 signature: 99b92dc193142adf44568f800cd394dc ******/ %feature("compactdefaultargs") SetConstraints; %feature("autodoc", " Parameters @@ -954,8 +954,8 @@ Changes the constraints of the approximation. ") SetConstraints; void SetConstraints(const AppParCurves_Constraint FirstC, const AppParCurves_Constraint LastC); - /****************** SetDegrees ******************/ - /**** md5 signature: 545fdd7d739fa58cc970e73d0413f8ef ****/ + /****** BRepFill_ComputeCLine::SetDegrees ******/ + /****** md5 signature: 545fdd7d739fa58cc970e73d0413f8ef ******/ %feature("compactdefaultargs") SetDegrees; %feature("autodoc", " Parameters @@ -973,8 +973,8 @@ Changes the degrees of the approximation. ") SetDegrees; void SetDegrees(const Standard_Integer degreemin, const Standard_Integer degreemax); - /****************** SetHangChecking ******************/ - /**** md5 signature: 082382da7c6c3da9061b500893941826 ****/ + /****** BRepFill_ComputeCLine::SetHangChecking ******/ + /****** md5 signature: 082382da7c6c3da9061b500893941826 ******/ %feature("compactdefaultargs") SetHangChecking; %feature("autodoc", " Parameters @@ -991,8 +991,8 @@ Set value of hang checking flag if this flag = true, possible hang of algorithm ") SetHangChecking; void SetHangChecking(const Standard_Boolean theHangChecking); - /****************** SetInvOrder ******************/ - /**** md5 signature: 50bac5968816111fd573c6f1be407215 ****/ + /****** BRepFill_ComputeCLine::SetInvOrder ******/ + /****** md5 signature: 50bac5968816111fd573c6f1be407215 ******/ %feature("compactdefaultargs") SetInvOrder; %feature("autodoc", " Parameters @@ -1009,8 +1009,8 @@ Set inverse order of degree selection: if theinvordr = true, current degree is c ") SetInvOrder; void SetInvOrder(const Standard_Boolean theInvOrder); - /****************** SetMaxSegments ******************/ - /**** md5 signature: 649dded305ab339e1c7f2a819b32eedd ****/ + /****** BRepFill_ComputeCLine::SetMaxSegments ******/ + /****** md5 signature: 649dded305ab339e1c7f2a819b32eedd ******/ %feature("compactdefaultargs") SetMaxSegments; %feature("autodoc", " Parameters @@ -1027,8 +1027,8 @@ Changes the max number of segments, which is allowed for cutting. ") SetMaxSegments; void SetMaxSegments(const Standard_Integer theMaxSegments); - /****************** SetTolerances ******************/ - /**** md5 signature: ce7879738ace848f7a3a27c56467be10 ****/ + /****** BRepFill_ComputeCLine::SetTolerances ******/ + /****** md5 signature: ce7879738ace848f7a3a27c56467be10 ******/ %feature("compactdefaultargs") SetTolerances; %feature("autodoc", " Parameters @@ -1046,8 +1046,8 @@ Changes the tolerances of the approximation. ") SetTolerances; void SetTolerances(const Standard_Real Tolerance3d, const Standard_Real Tolerance2d); - /****************** Value ******************/ - /**** md5 signature: 89790f3ff3d6d18a45f409a34e79bd67 ****/ + /****** BRepFill_ComputeCLine::Value ******/ + /****** md5 signature: 89790f3ff3d6d18a45f409a34e79bd67 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -1078,8 +1078,8 @@ Returns the approximation multicurve of range . *********************************/ class BRepFill_CurveConstraint : public GeomPlate_CurveConstraint { public: - /****************** BRepFill_CurveConstraint ******************/ - /**** md5 signature: a983adec650994ee74e57f6aa9893167 ****/ + /****** BRepFill_CurveConstraint::BRepFill_CurveConstraint ******/ + /****** md5 signature: a983adec650994ee74e57f6aa9893167 ******/ %feature("compactdefaultargs") BRepFill_CurveConstraint; %feature("autodoc", " Parameters @@ -1101,8 +1101,8 @@ Create a constraint order is the order of the constraint. the possible values fo ") BRepFill_CurveConstraint; BRepFill_CurveConstraint(const opencascade::handle & Boundary, const Standard_Integer Order, const Standard_Integer NPt = 10, const Standard_Real TolDist = 0.0001, const Standard_Real TolAng = 0.01, const Standard_Real TolCurv = 0.1); - /****************** BRepFill_CurveConstraint ******************/ - /**** md5 signature: ccfa90de10a25cb726928f2c424e790e ****/ + /****** BRepFill_CurveConstraint::BRepFill_CurveConstraint ******/ + /****** md5 signature: ccfa90de10a25cb726928f2c424e790e ******/ %feature("compactdefaultargs") BRepFill_CurveConstraint; %feature("autodoc", " Parameters @@ -1138,8 +1138,8 @@ No available documentation. ***********************/ class BRepFill_Draft { public: - /****************** BRepFill_Draft ******************/ - /**** md5 signature: 1dff2e6160b5e1259db446ee33a99fad ****/ + /****** BRepFill_Draft::BRepFill_Draft ******/ + /****** md5 signature: 1dff2e6160b5e1259db446ee33a99fad ******/ %feature("compactdefaultargs") BRepFill_Draft; %feature("autodoc", " Parameters @@ -1158,8 +1158,8 @@ No available documentation. ") BRepFill_Draft; BRepFill_Draft(const TopoDS_Shape & Shape, const gp_Dir & Dir, const Standard_Real Angle); - /****************** Generated ******************/ - /**** md5 signature: 20432e4d7ffc2a154be36ff0a467a19b ****/ + /****** BRepFill_Draft::Generated ******/ + /****** md5 signature: 20432e4d7ffc2a154be36ff0a467a19b ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -1176,8 +1176,8 @@ Returns the list of shapes generated from the shape . ") Generated; const TopTools_ListOfShape & Generated(const TopoDS_Shape & S); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepFill_Draft::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -1189,8 +1189,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** Perform ******************/ - /**** md5 signature: b03f32ebc120d00e3e8e32d44b202b9d ****/ + /****** BRepFill_Draft::Perform ******/ + /****** md5 signature: b03f32ebc120d00e3e8e32d44b202b9d ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1207,8 +1207,8 @@ No available documentation. ") Perform; void Perform(const Standard_Real LengthMax); - /****************** Perform ******************/ - /**** md5 signature: 3a80e47101026da2c90ae735de0ac1b9 ****/ + /****** BRepFill_Draft::Perform ******/ + /****** md5 signature: 3a80e47101026da2c90ae735de0ac1b9 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1226,8 +1226,8 @@ No available documentation. ") Perform; void Perform(const opencascade::handle & Surface, const Standard_Boolean KeepInsideSurface = Standard_True); - /****************** Perform ******************/ - /**** md5 signature: c18fafced10e4c987e315cfc1b3d96ad ****/ + /****** BRepFill_Draft::Perform ******/ + /****** md5 signature: c18fafced10e4c987e315cfc1b3d96ad ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1245,8 +1245,8 @@ No available documentation. ") Perform; void Perform(const TopoDS_Shape & StopShape, const Standard_Boolean KeepOutSide = Standard_True); - /****************** SetDraft ******************/ - /**** md5 signature: 6a0b2e71733b262480aa38daaecff626 ****/ + /****** BRepFill_Draft::SetDraft ******/ + /****** md5 signature: 6a0b2e71733b262480aa38daaecff626 ******/ %feature("compactdefaultargs") SetDraft; %feature("autodoc", " Parameters @@ -1263,8 +1263,8 @@ No available documentation. ") SetDraft; void SetDraft(const Standard_Boolean IsInternal = Standard_False); - /****************** SetOptions ******************/ - /**** md5 signature: b9e013957f2b0d7c10b9daa53473ce0e ****/ + /****** BRepFill_Draft::SetOptions ******/ + /****** md5 signature: b9e013957f2b0d7c10b9daa53473ce0e ******/ %feature("compactdefaultargs") SetOptions; %feature("autodoc", " Parameters @@ -1283,8 +1283,8 @@ No available documentation. ") SetOptions; void SetOptions(const BRepFill_TransitionStyle Style = BRepFill_Right, const Standard_Real AngleMin = 0.01, const Standard_Real AngleMax = 3.0); - /****************** Shape ******************/ - /**** md5 signature: 3aece276415d56b8bd9afa5bf371db57 ****/ + /****** BRepFill_Draft::Shape ******/ + /****** md5 signature: 3aece276415d56b8bd9afa5bf371db57 ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -1296,8 +1296,8 @@ No available documentation. ") Shape; TopoDS_Shape Shape(); - /****************** Shell ******************/ - /**** md5 signature: 3ea4686086a18491532865f1cfbce9ad ****/ + /****** BRepFill_Draft::Shell ******/ + /****** md5 signature: 3ea4686086a18491532865f1cfbce9ad ******/ %feature("compactdefaultargs") Shell; %feature("autodoc", "Return ------- @@ -1323,8 +1323,8 @@ Returns the draft surface to have the complete shape you have to use the shape() **********************************/ class BRepFill_EdgeFaceAndOrder { public: - /****************** BRepFill_EdgeFaceAndOrder ******************/ - /**** md5 signature: 4801ef1e3c96c769b7cb65e3b4086a41 ****/ + /****** BRepFill_EdgeFaceAndOrder::BRepFill_EdgeFaceAndOrder ******/ + /****** md5 signature: 4801ef1e3c96c769b7cb65e3b4086a41 ******/ %feature("compactdefaultargs") BRepFill_EdgeFaceAndOrder; %feature("autodoc", "Return ------- @@ -1336,8 +1336,8 @@ No available documentation. ") BRepFill_EdgeFaceAndOrder; BRepFill_EdgeFaceAndOrder(); - /****************** BRepFill_EdgeFaceAndOrder ******************/ - /**** md5 signature: b398464044b418659cdb92b47eda209d ****/ + /****** BRepFill_EdgeFaceAndOrder::BRepFill_EdgeFaceAndOrder ******/ + /****** md5 signature: b398464044b418659cdb92b47eda209d ******/ %feature("compactdefaultargs") BRepFill_EdgeFaceAndOrder; %feature("autodoc", " Parameters @@ -1370,8 +1370,8 @@ No available documentation. *************************/ class BRepFill_Evolved { public: - /****************** BRepFill_Evolved ******************/ - /**** md5 signature: d55c0989fa279c86b92f8b57ff833c4f ****/ + /****** BRepFill_Evolved::BRepFill_Evolved ******/ + /****** md5 signature: d55c0989fa279c86b92f8b57ff833c4f ******/ %feature("compactdefaultargs") BRepFill_Evolved; %feature("autodoc", "Return ------- @@ -1383,8 +1383,8 @@ No available documentation. ") BRepFill_Evolved; BRepFill_Evolved(); - /****************** BRepFill_Evolved ******************/ - /**** md5 signature: 3423c2bb910fe32370733bab3d7e6f67 ****/ + /****** BRepFill_Evolved::BRepFill_Evolved ******/ + /****** md5 signature: 3423c2bb910fe32370733bab3d7e6f67 ******/ %feature("compactdefaultargs") BRepFill_Evolved; %feature("autodoc", " Parameters @@ -1405,8 +1405,8 @@ Creates an evolved shape by sweeping the along the . ") BRepFill_Evolved; BRepFill_Evolved(const TopoDS_Wire & Spine, const TopoDS_Wire & Profile, const gp_Ax3 & AxeProf, const GeomAbs_JoinType Join = GeomAbs_Arc, const Standard_Boolean Solid = Standard_False); - /****************** BRepFill_Evolved ******************/ - /**** md5 signature: 4ff0b71c6cc1f4f1017df44971096b6c ****/ + /****** BRepFill_Evolved::BRepFill_Evolved ******/ + /****** md5 signature: 4ff0b71c6cc1f4f1017df44971096b6c ******/ %feature("compactdefaultargs") BRepFill_Evolved; %feature("autodoc", " Parameters @@ -1427,8 +1427,8 @@ Creates an evolved shape by sweeping the along the . ") BRepFill_Evolved; BRepFill_Evolved(const TopoDS_Face & Spine, const TopoDS_Wire & Profile, const gp_Ax3 & AxeProf, const GeomAbs_JoinType Join = GeomAbs_Arc, const Standard_Boolean Solid = Standard_False); - /****************** Bottom ******************/ - /**** md5 signature: 25476ceb1dec30bd7775d9279e3f641c ****/ + /****** BRepFill_Evolved::Bottom ******/ + /****** md5 signature: 25476ceb1dec30bd7775d9279e3f641c ******/ %feature("compactdefaultargs") Bottom; %feature("autodoc", "Return ------- @@ -1440,8 +1440,8 @@ Return the face bottom if is true in the constructor. ") Bottom; const TopoDS_Shape Bottom(); - /****************** GeneratedShapes ******************/ - /**** md5 signature: d6b410f91bd0b638e68b4f66ed161f82 ****/ + /****** BRepFill_Evolved::GeneratedShapes ******/ + /****** md5 signature: d6b410f91bd0b638e68b4f66ed161f82 ******/ %feature("compactdefaultargs") GeneratedShapes; %feature("autodoc", " Parameters @@ -1459,8 +1459,8 @@ Returns the shapes created from a subshape of the spine and a subsh ") GeneratedShapes; const TopTools_ListOfShape & GeneratedShapes(const TopoDS_Shape & SpineShape, const TopoDS_Shape & ProfShape); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepFill_Evolved::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -1472,8 +1472,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** JoinType ******************/ - /**** md5 signature: 1a18175bc2a418f62c345ce7a665ff81 ****/ + /****** BRepFill_Evolved::JoinType ******/ + /****** md5 signature: 1a18175bc2a418f62c345ce7a665ff81 ******/ %feature("compactdefaultargs") JoinType; %feature("autodoc", "Return ------- @@ -1485,8 +1485,8 @@ No available documentation. ") JoinType; GeomAbs_JoinType JoinType(); - /****************** Perform ******************/ - /**** md5 signature: 9498522e18f2ee8ea44a5bacbb465d61 ****/ + /****** BRepFill_Evolved::Perform ******/ + /****** md5 signature: 9498522e18f2ee8ea44a5bacbb465d61 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1507,8 +1507,8 @@ Performs an evolved shape by sweeping the along the . ") Perform; void Perform(const TopoDS_Wire & Spine, const TopoDS_Wire & Profile, const gp_Ax3 & AxeProf, const GeomAbs_JoinType Join = GeomAbs_Arc, const Standard_Boolean Solid = Standard_False); - /****************** Perform ******************/ - /**** md5 signature: a60cbc089260fa0f56118a4e524358ca ****/ + /****** BRepFill_Evolved::Perform ******/ + /****** md5 signature: a60cbc089260fa0f56118a4e524358ca ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1529,8 +1529,8 @@ Performs an evolved shape by sweeping the along the . ") Perform; void Perform(const TopoDS_Face & Spine, const TopoDS_Wire & Profile, const gp_Ax3 & AxeProf, const GeomAbs_JoinType Join = GeomAbs_Arc, const Standard_Boolean Solid = Standard_False); - /****************** Shape ******************/ - /**** md5 signature: e2e979bbf0e2f5cedfc0e482bf183e08 ****/ + /****** BRepFill_Evolved::Shape ******/ + /****** md5 signature: e2e979bbf0e2f5cedfc0e482bf183e08 ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -1542,8 +1542,8 @@ Returns the generated shape. ") Shape; const TopoDS_Shape Shape(); - /****************** Top ******************/ - /**** md5 signature: c5b73d85ae980e083fd62982344b1f23 ****/ + /****** BRepFill_Evolved::Top ******/ + /****** md5 signature: c5b73d85ae980e083fd62982344b1f23 ******/ %feature("compactdefaultargs") Top; %feature("autodoc", "Return ------- @@ -1569,8 +1569,8 @@ Return the face top if is true in the constructor. ******************************/ class BRepFill_FaceAndOrder { public: - /****************** BRepFill_FaceAndOrder ******************/ - /**** md5 signature: 09a53beaf7e2b88f8d947af49991e84a ****/ + /****** BRepFill_FaceAndOrder::BRepFill_FaceAndOrder ******/ + /****** md5 signature: 09a53beaf7e2b88f8d947af49991e84a ******/ %feature("compactdefaultargs") BRepFill_FaceAndOrder; %feature("autodoc", "Return ------- @@ -1582,8 +1582,8 @@ No available documentation. ") BRepFill_FaceAndOrder; BRepFill_FaceAndOrder(); - /****************** BRepFill_FaceAndOrder ******************/ - /**** md5 signature: 7b2e42a21051c0758c9fa3f433a3df99 ****/ + /****** BRepFill_FaceAndOrder::BRepFill_FaceAndOrder ******/ + /****** md5 signature: 7b2e42a21051c0758c9fa3f433a3df99 ******/ %feature("compactdefaultargs") BRepFill_FaceAndOrder; %feature("autodoc", " Parameters @@ -1615,8 +1615,8 @@ No available documentation. *************************/ class BRepFill_Filling { public: - /****************** BRepFill_Filling ******************/ - /**** md5 signature: b04c4da5ebf0b864f8a0d57205167633 ****/ + /****** BRepFill_Filling::BRepFill_Filling ******/ + /****** md5 signature: b04c4da5ebf0b864f8a0d57205167633 ******/ %feature("compactdefaultargs") BRepFill_Filling; %feature("autodoc", " Parameters @@ -1642,8 +1642,8 @@ Constructor. ") BRepFill_Filling; BRepFill_Filling(const Standard_Integer Degree = 3, const Standard_Integer NbPtsOnCur = 15, const Standard_Integer NbIter = 2, const Standard_Boolean Anisotropie = Standard_False, const Standard_Real Tol2d = 0.00001, const Standard_Real Tol3d = 0.0001, const Standard_Real TolAng = 0.01, const Standard_Real TolCurv = 0.1, const Standard_Integer MaxDeg = 8, const Standard_Integer MaxSegments = 9); - /****************** Add ******************/ - /**** md5 signature: 274b86a603c7b5783321bcabeea10c24 ****/ + /****** BRepFill_Filling::Add ******/ + /****** md5 signature: 274b86a603c7b5783321bcabeea10c24 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1662,8 +1662,8 @@ Adds a new constraint which also defines an edge of the wire of the face order: ") Add; Standard_Integer Add(const TopoDS_Edge & anEdge, const GeomAbs_Shape Order, const Standard_Boolean IsBound = Standard_True); - /****************** Add ******************/ - /**** md5 signature: d07ded4a872eca32995c157ab48cd16d ****/ + /****** BRepFill_Filling::Add ******/ + /****** md5 signature: d07ded4a872eca32995c157ab48cd16d ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1683,8 +1683,8 @@ Adds a new constraint which also defines an edge of the wire of the face order: ") Add; Standard_Integer Add(const TopoDS_Edge & anEdge, const TopoDS_Face & Support, const GeomAbs_Shape Order, const Standard_Boolean IsBound = Standard_True); - /****************** Add ******************/ - /**** md5 signature: c110c3c507d8423f3ffde002d65004bf ****/ + /****** BRepFill_Filling::Add ******/ + /****** md5 signature: c110c3c507d8423f3ffde002d65004bf ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1702,8 +1702,8 @@ Adds a free constraint on a face. the corresponding edge has to be automatically ") Add; Standard_Integer Add(const TopoDS_Face & Support, const GeomAbs_Shape Order); - /****************** Add ******************/ - /**** md5 signature: 1323f2a6b2ca8774ee472101d9518362 ****/ + /****** BRepFill_Filling::Add ******/ + /****** md5 signature: 1323f2a6b2ca8774ee472101d9518362 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1720,8 +1720,8 @@ Adds a punctual constraint. ") Add; Standard_Integer Add(const gp_Pnt & Point); - /****************** Add ******************/ - /**** md5 signature: 66afaf29b06657fd99d38717aeeeb9f6 ****/ + /****** BRepFill_Filling::Add ******/ + /****** md5 signature: 66afaf29b06657fd99d38717aeeeb9f6 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1741,8 +1741,8 @@ Adds a punctual constraint. ") Add; Standard_Integer Add(const Standard_Real U, const Standard_Real V, const TopoDS_Face & Support, const GeomAbs_Shape Order); - /****************** Build ******************/ - /**** md5 signature: 634d88e5c99c5ce236c07b337243d591 ****/ + /****** BRepFill_Filling::Build ******/ + /****** md5 signature: 634d88e5c99c5ce236c07b337243d591 ******/ %feature("compactdefaultargs") Build; %feature("autodoc", "Return ------- @@ -1754,8 +1754,8 @@ Builds the resulting faces. ") Build; void Build(); - /****************** Face ******************/ - /**** md5 signature: 64c75db1e9c1285068e9dd474618f74f ****/ + /****** BRepFill_Filling::Face ******/ + /****** md5 signature: 64c75db1e9c1285068e9dd474618f74f ******/ %feature("compactdefaultargs") Face; %feature("autodoc", "Return ------- @@ -1767,8 +1767,8 @@ No available documentation. ") Face; TopoDS_Face Face(); - /****************** G0Error ******************/ - /**** md5 signature: ba177a9a7bac2d394577a179fd8040ef ****/ + /****** BRepFill_Filling::G0Error ******/ + /****** md5 signature: ba177a9a7bac2d394577a179fd8040ef ******/ %feature("compactdefaultargs") G0Error; %feature("autodoc", "Return ------- @@ -1780,8 +1780,8 @@ No available documentation. ") G0Error; Standard_Real G0Error(); - /****************** G0Error ******************/ - /**** md5 signature: f99dce5527bffb3ecaa2d1093b4a3635 ****/ + /****** BRepFill_Filling::G0Error ******/ + /****** md5 signature: f99dce5527bffb3ecaa2d1093b4a3635 ******/ %feature("compactdefaultargs") G0Error; %feature("autodoc", " Parameters @@ -1798,8 +1798,8 @@ No available documentation. ") G0Error; Standard_Real G0Error(const Standard_Integer Index); - /****************** G1Error ******************/ - /**** md5 signature: 0a0e55267bc5572a38177b75a97dfedc ****/ + /****** BRepFill_Filling::G1Error ******/ + /****** md5 signature: 0a0e55267bc5572a38177b75a97dfedc ******/ %feature("compactdefaultargs") G1Error; %feature("autodoc", "Return ------- @@ -1811,8 +1811,8 @@ No available documentation. ") G1Error; Standard_Real G1Error(); - /****************** G1Error ******************/ - /**** md5 signature: 0d786918d533628c34e845fd87da5a9b ****/ + /****** BRepFill_Filling::G1Error ******/ + /****** md5 signature: 0d786918d533628c34e845fd87da5a9b ******/ %feature("compactdefaultargs") G1Error; %feature("autodoc", " Parameters @@ -1829,8 +1829,8 @@ No available documentation. ") G1Error; Standard_Real G1Error(const Standard_Integer Index); - /****************** G2Error ******************/ - /**** md5 signature: 0eac129a84e8ae945532a18ff833414e ****/ + /****** BRepFill_Filling::G2Error ******/ + /****** md5 signature: 0eac129a84e8ae945532a18ff833414e ******/ %feature("compactdefaultargs") G2Error; %feature("autodoc", "Return ------- @@ -1842,8 +1842,8 @@ No available documentation. ") G2Error; Standard_Real G2Error(); - /****************** G2Error ******************/ - /**** md5 signature: 02032765271044476a9ce38570208342 ****/ + /****** BRepFill_Filling::G2Error ******/ + /****** md5 signature: 02032765271044476a9ce38570208342 ******/ %feature("compactdefaultargs") G2Error; %feature("autodoc", " Parameters @@ -1860,8 +1860,8 @@ No available documentation. ") G2Error; Standard_Real G2Error(const Standard_Integer Index); - /****************** Generated ******************/ - /**** md5 signature: 20432e4d7ffc2a154be36ff0a467a19b ****/ + /****** BRepFill_Filling::Generated ******/ + /****** md5 signature: 20432e4d7ffc2a154be36ff0a467a19b ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -1878,8 +1878,8 @@ Returns the list of shapes generated from the shape . ") Generated; const TopTools_ListOfShape & Generated(const TopoDS_Shape & S); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepFill_Filling::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -1891,8 +1891,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** LoadInitSurface ******************/ - /**** md5 signature: 221c3bb0e79c1359b8a80544c093b5bd ****/ + /****** BRepFill_Filling::LoadInitSurface ******/ + /****** md5 signature: 221c3bb0e79c1359b8a80544c093b5bd ******/ %feature("compactdefaultargs") LoadInitSurface; %feature("autodoc", " Parameters @@ -1909,8 +1909,8 @@ Loads the initial surface the initial surface must have orthogonal local coordin ") LoadInitSurface; void LoadInitSurface(const TopoDS_Face & aFace); - /****************** SetApproxParam ******************/ - /**** md5 signature: 24678d9cf0187a1e2d5fe74dfef72b0d ****/ + /****** BRepFill_Filling::SetApproxParam ******/ + /****** md5 signature: 24678d9cf0187a1e2d5fe74dfef72b0d ******/ %feature("compactdefaultargs") SetApproxParam; %feature("autodoc", " Parameters @@ -1928,8 +1928,8 @@ Sets the parameters used for approximation of the surface. ") SetApproxParam; void SetApproxParam(const Standard_Integer MaxDeg = 8, const Standard_Integer MaxSegments = 9); - /****************** SetConstrParam ******************/ - /**** md5 signature: 2d967f76f30735b0413b7afac7004fa6 ****/ + /****** BRepFill_Filling::SetConstrParam ******/ + /****** md5 signature: 2d967f76f30735b0413b7afac7004fa6 ******/ %feature("compactdefaultargs") SetConstrParam; %feature("autodoc", " Parameters @@ -1949,8 +1949,8 @@ Sets the values of tolerances used to control the constraint. tol2d: tol3d: it i ") SetConstrParam; void SetConstrParam(const Standard_Real Tol2d = 0.00001, const Standard_Real Tol3d = 0.0001, const Standard_Real TolAng = 0.01, const Standard_Real TolCurv = 0.1); - /****************** SetResolParam ******************/ - /**** md5 signature: 96cad4665171fb74735ecc8d46155136 ****/ + /****** BRepFill_Filling::SetResolParam ******/ + /****** md5 signature: 96cad4665171fb74735ecc8d46155136 ******/ %feature("compactdefaultargs") SetResolParam; %feature("autodoc", " Parameters @@ -1984,8 +1984,8 @@ Sets the parameters used for resolution. the default values of these parameters ***************************/ class BRepFill_Generator { public: - /****************** BRepFill_Generator ******************/ - /**** md5 signature: 333126d142103b8ff5f800463f2efb21 ****/ + /****** BRepFill_Generator::BRepFill_Generator ******/ + /****** md5 signature: 333126d142103b8ff5f800463f2efb21 ******/ %feature("compactdefaultargs") BRepFill_Generator; %feature("autodoc", "Return ------- @@ -1997,8 +1997,8 @@ No available documentation. ") BRepFill_Generator; BRepFill_Generator(); - /****************** AddWire ******************/ - /**** md5 signature: 91c116931995adc0c5abeaf5746c9601 ****/ + /****** BRepFill_Generator::AddWire ******/ + /****** md5 signature: 91c116931995adc0c5abeaf5746c9601 ******/ %feature("compactdefaultargs") AddWire; %feature("autodoc", " Parameters @@ -2015,8 +2015,8 @@ No available documentation. ") AddWire; void AddWire(const TopoDS_Wire & Wire); - /****************** Generated ******************/ - /**** md5 signature: 176507b5ffd0100ab7a88bdc3ba1ff71 ****/ + /****** BRepFill_Generator::Generated ******/ + /****** md5 signature: 176507b5ffd0100ab7a88bdc3ba1ff71 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", "Return ------- @@ -2028,8 +2028,8 @@ Returns all the shapes created. ") Generated; const TopTools_DataMapOfShapeListOfShape & Generated(); - /****************** GeneratedShapes ******************/ - /**** md5 signature: a02662a3450a824732d8c073e350d988 ****/ + /****** BRepFill_Generator::GeneratedShapes ******/ + /****** md5 signature: a02662a3450a824732d8c073e350d988 ******/ %feature("compactdefaultargs") GeneratedShapes; %feature("autodoc", " Parameters @@ -2046,8 +2046,8 @@ Returns the shapes created from a subshape of a section. ") GeneratedShapes; const TopTools_ListOfShape & GeneratedShapes(const TopoDS_Shape & SSection); - /****************** GetStatus ******************/ - /**** md5 signature: d01d66bd030c1232d59d2b7253fc3b10 ****/ + /****** BRepFill_Generator::GetStatus ******/ + /****** md5 signature: d01d66bd030c1232d59d2b7253fc3b10 ******/ %feature("compactdefaultargs") GetStatus; %feature("autodoc", "Return ------- @@ -2059,8 +2059,8 @@ Returns status of the operation. ") GetStatus; BRepFill_ThruSectionErrorStatus GetStatus(); - /****************** IsMutableInput ******************/ - /**** md5 signature: 2df16e5a957577cfce65832aa2d90512 ****/ + /****** BRepFill_Generator::IsMutableInput ******/ + /****** md5 signature: 2df16e5a957577cfce65832aa2d90512 ******/ %feature("compactdefaultargs") IsMutableInput; %feature("autodoc", "Return ------- @@ -2072,8 +2072,8 @@ Returns the current mutable input state. ") IsMutableInput; Standard_Boolean IsMutableInput(); - /****************** Perform ******************/ - /**** md5 signature: c04b01412cba7220c024b5eb4532697f ****/ + /****** BRepFill_Generator::Perform ******/ + /****** md5 signature: c04b01412cba7220c024b5eb4532697f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", "Return ------- @@ -2085,8 +2085,8 @@ Compute the shell. ") Perform; void Perform(); - /****************** ResultShape ******************/ - /**** md5 signature: 01e3ecee0f6c4e9a7725c78d5680438b ****/ + /****** BRepFill_Generator::ResultShape ******/ + /****** md5 signature: 01e3ecee0f6c4e9a7725c78d5680438b ******/ %feature("compactdefaultargs") ResultShape; %feature("autodoc", " Parameters @@ -2103,8 +2103,8 @@ Returns a modified shape in the constructed shell, if shape is not changed (repl ") ResultShape; TopoDS_Shape ResultShape(const TopoDS_Shape & theShape); - /****************** SetMutableInput ******************/ - /**** md5 signature: a0db619cccd4a2c2b443a5ab39c10ef8 ****/ + /****** BRepFill_Generator::SetMutableInput ******/ + /****** md5 signature: a0db619cccd4a2c2b443a5ab39c10ef8 ******/ %feature("compactdefaultargs") SetMutableInput; %feature("autodoc", " Parameters @@ -2121,8 +2121,8 @@ Sets the mutable input state if true then the input profile can be modified insi ") SetMutableInput; void SetMutableInput(const Standard_Boolean theIsMutableInput); - /****************** Shell ******************/ - /**** md5 signature: c581862d26a0a34b15cf9dd6d442e65d ****/ + /****** BRepFill_Generator::Shell ******/ + /****** md5 signature: c581862d26a0a34b15cf9dd6d442e65d ******/ %feature("compactdefaultargs") Shell; %feature("autodoc", "Return ------- @@ -2148,8 +2148,8 @@ No available documentation. *****************************/ class BRepFill_LocationLaw : public Standard_Transient { public: - /****************** Abscissa ******************/ - /**** md5 signature: 4b4fb4867c503aba18d7bb9cbbce08f5 ****/ + /****** BRepFill_LocationLaw::Abscissa ******/ + /****** md5 signature: 4b4fb4867c503aba18d7bb9cbbce08f5 ******/ %feature("compactdefaultargs") Abscissa; %feature("autodoc", " Parameters @@ -2167,8 +2167,8 @@ Return the curvilinear abscissa corresponding to a point of the path, defined by ") Abscissa; Standard_Real Abscissa(const Standard_Integer Index, const Standard_Real Param); - /****************** CurvilinearBounds ******************/ - /**** md5 signature: 1faa1030205d7a994159546f7df86e7b ****/ + /****** BRepFill_LocationLaw::CurvilinearBounds ******/ + /****** md5 signature: 1faa1030205d7a994159546f7df86e7b ******/ %feature("compactdefaultargs") CurvilinearBounds; %feature("autodoc", " Parameters @@ -2186,8 +2186,8 @@ Return the curvilinear bounds of the law. ") CurvilinearBounds; void CurvilinearBounds(const Standard_Integer Index, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** D0 ******************/ - /**** md5 signature: 52c2d023fe81655193d586ee297b1241 ****/ + /****** BRepFill_LocationLaw::D0 ******/ + /****** md5 signature: 52c2d023fe81655193d586ee297b1241 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -2205,8 +2205,8 @@ Apply the law to a shape, for a given curvilinear abscissa. ") D0; void D0(const Standard_Real Abscissa, TopoDS_Shape & Section); - /****************** DeleteTransform ******************/ - /**** md5 signature: ade97ef75466e592c0f10b061f700538 ****/ + /****** BRepFill_LocationLaw::DeleteTransform ******/ + /****** md5 signature: ade97ef75466e592c0f10b061f700538 ******/ %feature("compactdefaultargs") DeleteTransform; %feature("autodoc", "Return ------- @@ -2218,8 +2218,8 @@ No available documentation. ") DeleteTransform; void DeleteTransform(); - /****************** Edge ******************/ - /**** md5 signature: 8a7ac08a45b8dcdac4d9e0339f1c1d47 ****/ + /****** BRepFill_LocationLaw::Edge ******/ + /****** md5 signature: 8a7ac08a45b8dcdac4d9e0339f1c1d47 ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", " Parameters @@ -2236,8 +2236,8 @@ Return the edge of rank in the path have to be in [1, nblaw()]. ") Edge; const TopoDS_Edge Edge(const Standard_Integer Index); - /****************** GetStatus ******************/ - /**** md5 signature: ee71a82e4f5af8e3c4016af8fa6d8de6 ****/ + /****** BRepFill_LocationLaw::GetStatus ******/ + /****** md5 signature: ee71a82e4f5af8e3c4016af8fa6d8de6 ******/ %feature("compactdefaultargs") GetStatus; %feature("autodoc", "Return ------- @@ -2249,8 +2249,8 @@ Return a error status, if the status is not pipeok then it exist a parameter tli ") GetStatus; GeomFill_PipeError GetStatus(); - /****************** Holes ******************/ - /**** md5 signature: f3c74f7ef5d3c6aac517333d1f033de9 ****/ + /****** BRepFill_LocationLaw::Holes ******/ + /****** md5 signature: f3c74f7ef5d3c6aac517333d1f033de9 ******/ %feature("compactdefaultargs") Holes; %feature("autodoc", " Parameters @@ -2267,8 +2267,8 @@ No available documentation. ") Holes; void Holes(TColStd_Array1OfInteger & Interval); - /****************** IsClosed ******************/ - /**** md5 signature: 29709d02fadc9fcb79a766bc9679271b ****/ + /****** BRepFill_LocationLaw::IsClosed ******/ + /****** md5 signature: 29709d02fadc9fcb79a766bc9679271b ******/ %feature("compactdefaultargs") IsClosed; %feature("autodoc", "Return ------- @@ -2280,8 +2280,8 @@ No available documentation. ") IsClosed; Standard_Boolean IsClosed(); - /****************** IsG1 ******************/ - /**** md5 signature: 9963a7e0ee81d49de56ba09e373c171d ****/ + /****** BRepFill_LocationLaw::IsG1 ******/ + /****** md5 signature: 9963a7e0ee81d49de56ba09e373c171d ******/ %feature("compactdefaultargs") IsG1; %feature("autodoc", " Parameters @@ -2300,8 +2300,8 @@ Compute the law's continuity between 2 edges of the path the result can be: -1: ") IsG1; Standard_Integer IsG1(const Standard_Integer Index, const Standard_Real SpatialTolerance = 1.0e-7, const Standard_Real AngularTolerance = 1.0e-4); - /****************** Law ******************/ - /**** md5 signature: 7442ea1d3577272be34ddbfb4ba782c8 ****/ + /****** BRepFill_LocationLaw::Law ******/ + /****** md5 signature: 7442ea1d3577272be34ddbfb4ba782c8 ******/ %feature("compactdefaultargs") Law; %feature("autodoc", " Parameters @@ -2318,8 +2318,8 @@ Return the elementary law of rank have to be in [1, nblaw()]. ") Law; const opencascade::handle & Law(const Standard_Integer Index); - /****************** NbHoles ******************/ - /**** md5 signature: c25781684f83efc292c167e0cf2d2147 ****/ + /****** BRepFill_LocationLaw::NbHoles ******/ + /****** md5 signature: c25781684f83efc292c167e0cf2d2147 ******/ %feature("compactdefaultargs") NbHoles; %feature("autodoc", " Parameters @@ -2336,8 +2336,8 @@ No available documentation. ") NbHoles; Standard_Integer NbHoles(const Standard_Real Tol = 1.0e-7); - /****************** NbLaw ******************/ - /**** md5 signature: 37098ff16cd9e076b3a2132752025ea0 ****/ + /****** BRepFill_LocationLaw::NbLaw ******/ + /****** md5 signature: 37098ff16cd9e076b3a2132752025ea0 ******/ %feature("compactdefaultargs") NbLaw; %feature("autodoc", "Return ------- @@ -2349,8 +2349,8 @@ Return the number of elementary law. ") NbLaw; Standard_Integer NbLaw(); - /****************** Parameter ******************/ - /**** md5 signature: fd5a6bab737a1d219166f125eb34b581 ****/ + /****** BRepFill_LocationLaw::Parameter ******/ + /****** md5 signature: fd5a6bab737a1d219166f125eb34b581 ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", " Parameters @@ -2368,8 +2368,8 @@ Find the index law and the parameter, for a given curvilinear abscissa. ") Parameter; void Parameter(const Standard_Real Abscissa, Standard_Integer &OutValue, Standard_Real &OutValue); - /****************** PerformVertex ******************/ - /**** md5 signature: d38d6af521b96eeaf83da9ed396db4e5 ****/ + /****** BRepFill_LocationLaw::PerformVertex ******/ + /****** md5 signature: d38d6af521b96eeaf83da9ed396db4e5 ******/ %feature("compactdefaultargs") PerformVertex; %feature("autodoc", " Parameters @@ -2390,8 +2390,8 @@ Compute like a transformation of the transformation ") PerformVertex; void PerformVertex(const Standard_Integer Index, const TopoDS_Vertex & InputVertex, const Standard_Real TolMin, TopoDS_Vertex & OutputVertex, const Standard_Integer Location = 0); - /****************** TransformInCompatibleLaw ******************/ - /**** md5 signature: bedbf82281f40dd30d010eaee98401d4 ****/ + /****** BRepFill_LocationLaw::TransformInCompatibleLaw ******/ + /****** md5 signature: bedbf82281f40dd30d010eaee98401d4 ******/ %feature("compactdefaultargs") TransformInCompatibleLaw; %feature("autodoc", " Parameters @@ -2408,8 +2408,8 @@ Apply a linear transformation on each law, to reduce the dicontinuities of law a ") TransformInCompatibleLaw; virtual void TransformInCompatibleLaw(const Standard_Real AngularTolerance); - /****************** TransformInG0Law ******************/ - /**** md5 signature: 5f05797761b737e39ec06f0e5f8a1a0d ****/ + /****** BRepFill_LocationLaw::TransformInG0Law ******/ + /****** md5 signature: 5f05797761b737e39ec06f0e5f8a1a0d ******/ %feature("compactdefaultargs") TransformInG0Law; %feature("autodoc", "Return ------- @@ -2421,8 +2421,8 @@ Apply a linear transformation on each law, to have continuity of the global law ") TransformInG0Law; virtual void TransformInG0Law(); - /****************** Vertex ******************/ - /**** md5 signature: 20f24a7fa6e81f1f7fda1d9570c8d322 ****/ + /****** BRepFill_LocationLaw::Vertex ******/ + /****** md5 signature: 20f24a7fa6e81f1f7fda1d9570c8d322 ******/ %feature("compactdefaultargs") Vertex; %feature("autodoc", " Parameters @@ -2439,8 +2439,8 @@ Return the vertex of rank in the path have to be in [0, nblaw()] ") Vertex; TopoDS_Vertex Vertex(const Standard_Integer Index); - /****************** Wire ******************/ - /**** md5 signature: 066765b94f5225dad05ab95ae3f8b503 ****/ + /****** BRepFill_LocationLaw::Wire ******/ + /****** md5 signature: 066765b94f5225dad05ab95ae3f8b503 ******/ %feature("compactdefaultargs") Wire; %feature("autodoc", "Return ------- @@ -2468,8 +2468,8 @@ Return the path. ***************************/ class BRepFill_MultiLine : public AppCont_Function { public: - /****************** BRepFill_MultiLine ******************/ - /**** md5 signature: 25bf6bcb7c15a3e8d5c3a8cc26761d67 ****/ + /****** BRepFill_MultiLine::BRepFill_MultiLine ******/ + /****** md5 signature: 25bf6bcb7c15a3e8d5c3a8cc26761d67 ******/ %feature("compactdefaultargs") BRepFill_MultiLine; %feature("autodoc", "Return ------- @@ -2481,8 +2481,8 @@ No available documentation. ") BRepFill_MultiLine; BRepFill_MultiLine(); - /****************** BRepFill_MultiLine ******************/ - /**** md5 signature: 843a5cba5c9ac5751e20a22ad435342c ****/ + /****** BRepFill_MultiLine::BRepFill_MultiLine ******/ + /****** md5 signature: 843a5cba5c9ac5751e20a22ad435342c ******/ %feature("compactdefaultargs") BRepFill_MultiLine; %feature("autodoc", " Parameters @@ -2505,8 +2505,8 @@ No available documentation. ") BRepFill_MultiLine; BRepFill_MultiLine(const TopoDS_Face & Face1, const TopoDS_Face & Face2, const TopoDS_Edge & Edge1, const TopoDS_Edge & Edge2, const Standard_Boolean Inv1, const Standard_Boolean Inv2, const opencascade::handle & Bissec); - /****************** Continuity ******************/ - /**** md5 signature: 4cc571878c66d538aeaf8b0affec3574 ****/ + /****** BRepFill_MultiLine::Continuity ******/ + /****** md5 signature: 4cc571878c66d538aeaf8b0affec3574 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", "Return ------- @@ -2518,8 +2518,8 @@ Returns the continuity betwwen the two faces seshape from geomabsparated by mybi ") Continuity; GeomAbs_Shape Continuity(); - /****************** Curves ******************/ - /**** md5 signature: e4017f1b73a93eef0b7382da99e2ab6b ****/ + /****** BRepFill_MultiLine::Curves ******/ + /****** md5 signature: e4017f1b73a93eef0b7382da99e2ab6b ******/ %feature("compactdefaultargs") Curves; %feature("autodoc", " Parameters @@ -2538,8 +2538,8 @@ Raises if isparticularcase is . ") Curves; void Curves(opencascade::handle & Curve, opencascade::handle & PCurve1, opencascade::handle & PCurve2); - /****************** D1 ******************/ - /**** md5 signature: 7da7dab2c94bda12158221a2fefd05b7 ****/ + /****** BRepFill_MultiLine::D1 ******/ + /****** md5 signature: 7da7dab2c94bda12158221a2fefd05b7 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -2558,8 +2558,8 @@ Returns the derivative at parameter . ") D1; virtual Standard_Boolean D1(const Standard_Real theU, NCollection_Array1 & theVec2d, NCollection_Array1 & theVec); - /****************** FirstParameter ******************/ - /**** md5 signature: adaac52a0f2d3263c19caadcbea394a2 ****/ + /****** BRepFill_MultiLine::FirstParameter ******/ + /****** md5 signature: adaac52a0f2d3263c19caadcbea394a2 ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", "Return ------- @@ -2571,8 +2571,8 @@ Returns the first parameter of the bissectrice. ") FirstParameter; virtual Standard_Real FirstParameter(); - /****************** IsParticularCase ******************/ - /**** md5 signature: f043f128572074fde7a8be916fda3a7e ****/ + /****** BRepFill_MultiLine::IsParticularCase ******/ + /****** md5 signature: f043f128572074fde7a8be916fda3a7e ******/ %feature("compactdefaultargs") IsParticularCase; %feature("autodoc", "Return ------- @@ -2584,8 +2584,8 @@ Search if the projection of the bissectrice on the faces needs an approximation ") IsParticularCase; Standard_Boolean IsParticularCase(); - /****************** LastParameter ******************/ - /**** md5 signature: 38a37eecbdff8d3a1b5ffdd6b12bf4d9 ****/ + /****** BRepFill_MultiLine::LastParameter ******/ + /****** md5 signature: 38a37eecbdff8d3a1b5ffdd6b12bf4d9 ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", "Return ------- @@ -2597,8 +2597,8 @@ Returns the last parameter of the bissectrice. ") LastParameter; virtual Standard_Real LastParameter(); - /****************** Value ******************/ - /**** md5 signature: 183286476627e1c9a629476db3ac9809 ****/ + /****** BRepFill_MultiLine::Value ******/ + /****** md5 signature: 183286476627e1c9a629476db3ac9809 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -2615,8 +2615,8 @@ Returns the current point on the 3d curve. ") Value; gp_Pnt Value(const Standard_Real U); - /****************** Value ******************/ - /**** md5 signature: 3ddc35b87661681f1ab1debe5928718b ****/ + /****** BRepFill_MultiLine::Value ******/ + /****** md5 signature: 3ddc35b87661681f1ab1debe5928718b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -2635,8 +2635,8 @@ Returns the point at parameter . ") Value; virtual Standard_Boolean Value(const Standard_Real theU, NCollection_Array1 & thePnt2d, NCollection_Array1 & thePnt); - /****************** Value3dOnF1OnF2 ******************/ - /**** md5 signature: 6b10dab8f99aeffab9dfaa452a3cc12d ****/ + /****** BRepFill_MultiLine::Value3dOnF1OnF2 ******/ + /****** md5 signature: 6b10dab8f99aeffab9dfaa452a3cc12d ******/ %feature("compactdefaultargs") Value3dOnF1OnF2; %feature("autodoc", " Parameters @@ -2656,8 +2656,8 @@ No available documentation. ") Value3dOnF1OnF2; void Value3dOnF1OnF2(const Standard_Real U, gp_Pnt & P3d, gp_Pnt2d & PF1, gp_Pnt2d & PF2); - /****************** ValueOnF1 ******************/ - /**** md5 signature: 94e8f2cf111e1bc1504f69d1acd17218 ****/ + /****** BRepFill_MultiLine::ValueOnF1 ******/ + /****** md5 signature: 94e8f2cf111e1bc1504f69d1acd17218 ******/ %feature("compactdefaultargs") ValueOnF1; %feature("autodoc", " Parameters @@ -2674,8 +2674,8 @@ Returns the current point on the pcurve of the first face. ") ValueOnF1; gp_Pnt2d ValueOnF1(const Standard_Real U); - /****************** ValueOnF2 ******************/ - /**** md5 signature: abfe30c9890723c8b8d211aa7edad92f ****/ + /****** BRepFill_MultiLine::ValueOnF2 ******/ + /****** md5 signature: abfe30c9890723c8b8d211aa7edad92f ******/ %feature("compactdefaultargs") ValueOnF2; %feature("autodoc", " Parameters @@ -2706,8 +2706,8 @@ Returns the current point on the pcurve of the first face. *********************************/ class BRepFill_OffsetAncestors { public: - /****************** BRepFill_OffsetAncestors ******************/ - /**** md5 signature: dd74fe61982bbb189811677c8772e318 ****/ + /****** BRepFill_OffsetAncestors::BRepFill_OffsetAncestors ******/ + /****** md5 signature: dd74fe61982bbb189811677c8772e318 ******/ %feature("compactdefaultargs") BRepFill_OffsetAncestors; %feature("autodoc", "Return ------- @@ -2719,8 +2719,8 @@ No available documentation. ") BRepFill_OffsetAncestors; BRepFill_OffsetAncestors(); - /****************** BRepFill_OffsetAncestors ******************/ - /**** md5 signature: 8e55cb04d940faef2828c07f9b38bf7c ****/ + /****** BRepFill_OffsetAncestors::BRepFill_OffsetAncestors ******/ + /****** md5 signature: 8e55cb04d940faef2828c07f9b38bf7c ******/ %feature("compactdefaultargs") BRepFill_OffsetAncestors; %feature("autodoc", " Parameters @@ -2737,8 +2737,8 @@ No available documentation. ") BRepFill_OffsetAncestors; BRepFill_OffsetAncestors(BRepFill_OffsetWire & Paral); - /****************** Ancestor ******************/ - /**** md5 signature: e1d080ff68475d2673d3e6a73f9780af ****/ + /****** BRepFill_OffsetAncestors::Ancestor ******/ + /****** md5 signature: e1d080ff68475d2673d3e6a73f9780af ******/ %feature("compactdefaultargs") Ancestor; %feature("autodoc", " Parameters @@ -2755,8 +2755,8 @@ May return a null shape if s1 is not a subshape of ; if perform is not do ") Ancestor; const TopoDS_Shape Ancestor(const TopoDS_Edge & S1); - /****************** HasAncestor ******************/ - /**** md5 signature: 0feb5b98ca7c43b931dfb0b8e785d3af ****/ + /****** BRepFill_OffsetAncestors::HasAncestor ******/ + /****** md5 signature: 0feb5b98ca7c43b931dfb0b8e785d3af ******/ %feature("compactdefaultargs") HasAncestor; %feature("autodoc", " Parameters @@ -2773,8 +2773,8 @@ No available documentation. ") HasAncestor; Standard_Boolean HasAncestor(const TopoDS_Edge & S1); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepFill_OffsetAncestors::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -2786,8 +2786,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** Perform ******************/ - /**** md5 signature: 4cce247d083b33caabb23034a8b43a3f ****/ + /****** BRepFill_OffsetAncestors::Perform ******/ + /****** md5 signature: 4cce247d083b33caabb23034a8b43a3f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2818,8 +2818,8 @@ No available documentation. ****************************/ class BRepFill_OffsetWire { public: - /****************** BRepFill_OffsetWire ******************/ - /**** md5 signature: b32d6f7af2cab2a9e7e1abf97815f03e ****/ + /****** BRepFill_OffsetWire::BRepFill_OffsetWire ******/ + /****** md5 signature: b32d6f7af2cab2a9e7e1abf97815f03e ******/ %feature("compactdefaultargs") BRepFill_OffsetWire; %feature("autodoc", "Return ------- @@ -2831,8 +2831,8 @@ No available documentation. ") BRepFill_OffsetWire; BRepFill_OffsetWire(); - /****************** BRepFill_OffsetWire ******************/ - /**** md5 signature: 609e791215220f5c55699eced8efc843 ****/ + /****** BRepFill_OffsetWire::BRepFill_OffsetWire ******/ + /****** md5 signature: 609e791215220f5c55699eced8efc843 ******/ %feature("compactdefaultargs") BRepFill_OffsetWire; %feature("autodoc", " Parameters @@ -2851,8 +2851,8 @@ No available documentation. ") BRepFill_OffsetWire; BRepFill_OffsetWire(const TopoDS_Face & Spine, const GeomAbs_JoinType Join = GeomAbs_Arc, const Standard_Boolean IsOpenResult = Standard_False); - /****************** GeneratedShapes ******************/ - /**** md5 signature: 896d6eaf9318d01625ba0402363806d1 ****/ + /****** BRepFill_OffsetWire::GeneratedShapes ******/ + /****** md5 signature: 896d6eaf9318d01625ba0402363806d1 ******/ %feature("compactdefaultargs") GeneratedShapes; %feature("autodoc", " Parameters @@ -2869,8 +2869,8 @@ Returns the shapes created from a subshape of the spine. returns th ") GeneratedShapes; const TopTools_ListOfShape & GeneratedShapes(const TopoDS_Shape & SpineShape); - /****************** Init ******************/ - /**** md5 signature: 04028fd0677eb2fad3b6134f24c0b959 ****/ + /****** BRepFill_OffsetWire::Init ******/ + /****** md5 signature: 04028fd0677eb2fad3b6134f24c0b959 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2889,8 +2889,8 @@ Initialize the evaluation of offsetting. ") Init; void Init(const TopoDS_Face & Spine, const GeomAbs_JoinType Join = GeomAbs_Arc, const Standard_Boolean IsOpenResult = Standard_False); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepFill_OffsetWire::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -2902,8 +2902,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** JoinType ******************/ - /**** md5 signature: 1a18175bc2a418f62c345ce7a665ff81 ****/ + /****** BRepFill_OffsetWire::JoinType ******/ + /****** md5 signature: 1a18175bc2a418f62c345ce7a665ff81 ******/ %feature("compactdefaultargs") JoinType; %feature("autodoc", "Return ------- @@ -2915,8 +2915,8 @@ No available documentation. ") JoinType; GeomAbs_JoinType JoinType(); - /****************** Perform ******************/ - /**** md5 signature: 50205eaf73b49f4d2b44f0537bf87989 ****/ + /****** BRepFill_OffsetWire::Perform ******/ + /****** md5 signature: 50205eaf73b49f4d2b44f0537bf87989 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2934,8 +2934,8 @@ Performs an offsetwire at an altitude from the face ( according to the ori ") Perform; void Perform(const Standard_Real Offset, const Standard_Real Alt = 0.0); - /****************** PerformWithBiLo ******************/ - /**** md5 signature: f64d08fade6abb7b2f5c414cd33010f3 ****/ + /****** BRepFill_OffsetWire::PerformWithBiLo ******/ + /****** md5 signature: f64d08fade6abb7b2f5c414cd33010f3 ******/ %feature("compactdefaultargs") PerformWithBiLo; %feature("autodoc", " Parameters @@ -2957,8 +2957,8 @@ Performs an offsetwire. ") PerformWithBiLo; void PerformWithBiLo(const TopoDS_Face & WSP, const Standard_Real Offset, const BRepMAT2d_BisectingLocus & Locus, BRepMAT2d_LinkTopoBilo & Link, const GeomAbs_JoinType Join = GeomAbs_Arc, const Standard_Real Alt = 0.0); - /****************** Shape ******************/ - /**** md5 signature: e2e979bbf0e2f5cedfc0e482bf183e08 ****/ + /****** BRepFill_OffsetWire::Shape ******/ + /****** md5 signature: e2e979bbf0e2f5cedfc0e482bf183e08 ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -2970,8 +2970,8 @@ Returns the generated shape. ") Shape; const TopoDS_Shape Shape(); - /****************** Spine ******************/ - /**** md5 signature: 6b2533d80a8cd359deec995337b4fd80 ****/ + /****** BRepFill_OffsetWire::Spine ******/ + /****** md5 signature: 6b2533d80a8cd359deec995337b4fd80 ******/ %feature("compactdefaultargs") Spine; %feature("autodoc", "Return ------- @@ -2997,8 +2997,8 @@ No available documentation. **********************/ class BRepFill_Pipe { public: - /****************** BRepFill_Pipe ******************/ - /**** md5 signature: d4df9a3a9985ba8285655a16cb12baf4 ****/ + /****** BRepFill_Pipe::BRepFill_Pipe ******/ + /****** md5 signature: d4df9a3a9985ba8285655a16cb12baf4 ******/ %feature("compactdefaultargs") BRepFill_Pipe; %feature("autodoc", "Return ------- @@ -3010,8 +3010,8 @@ No available documentation. ") BRepFill_Pipe; BRepFill_Pipe(); - /****************** BRepFill_Pipe ******************/ - /**** md5 signature: cdec67dc11c949e0a43c5aa06c2c6e8d ****/ + /****** BRepFill_Pipe::BRepFill_Pipe ******/ + /****** md5 signature: cdec67dc11c949e0a43c5aa06c2c6e8d ******/ %feature("compactdefaultargs") BRepFill_Pipe; %feature("autodoc", " Parameters @@ -3032,8 +3032,8 @@ No available documentation. ") BRepFill_Pipe; BRepFill_Pipe(const TopoDS_Wire & Spine, const TopoDS_Shape & Profile, const GeomFill_Trihedron aMode = GeomFill_IsCorrectedFrenet, const Standard_Boolean ForceApproxC1 = Standard_False, const Standard_Boolean GeneratePartCase = Standard_False); - /****************** Edge ******************/ - /**** md5 signature: 9e0365124d39be3310792b9b1e3ba65b ****/ + /****** BRepFill_Pipe::Edge ******/ + /****** md5 signature: 9e0365124d39be3310792b9b1e3ba65b ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", " Parameters @@ -3051,8 +3051,8 @@ Returns the edge created from an edge of the spine and a vertex of the profile. ") Edge; TopoDS_Edge Edge(const TopoDS_Edge & ESpine, const TopoDS_Vertex & VProfile); - /****************** ErrorOnSurface ******************/ - /**** md5 signature: b6b87ca0efc7814953c22829fefc7f65 ****/ + /****** BRepFill_Pipe::ErrorOnSurface ******/ + /****** md5 signature: b6b87ca0efc7814953c22829fefc7f65 ******/ %feature("compactdefaultargs") ErrorOnSurface; %feature("autodoc", "Return ------- @@ -3064,8 +3064,8 @@ No available documentation. ") ErrorOnSurface; Standard_Real ErrorOnSurface(); - /****************** Face ******************/ - /**** md5 signature: 0964bb8f678cdc86b67b3897964c1af0 ****/ + /****** BRepFill_Pipe::Face ******/ + /****** md5 signature: 0964bb8f678cdc86b67b3897964c1af0 ******/ %feature("compactdefaultargs") Face; %feature("autodoc", " Parameters @@ -3083,8 +3083,8 @@ Returns the face created from an edge of the spine and an edge of the profile. i ") Face; TopoDS_Face Face(const TopoDS_Edge & ESpine, const TopoDS_Edge & EProfile); - /****************** FirstShape ******************/ - /**** md5 signature: 7feb91b88f8f76be63dd0e52049cfbe6 ****/ + /****** BRepFill_Pipe::FirstShape ******/ + /****** md5 signature: 7feb91b88f8f76be63dd0e52049cfbe6 ******/ %feature("compactdefaultargs") FirstShape; %feature("autodoc", "Return ------- @@ -3096,8 +3096,8 @@ No available documentation. ") FirstShape; const TopoDS_Shape FirstShape(); - /****************** Generated ******************/ - /**** md5 signature: 768067f46b5a2be6984659c6467cd78f ****/ + /****** BRepFill_Pipe::Generated ******/ + /****** md5 signature: 768067f46b5a2be6984659c6467cd78f ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -3115,8 +3115,8 @@ Returns the list of shapes generated from the shape . ") Generated; void Generated(const TopoDS_Shape & S, TopTools_ListOfShape & L); - /****************** LastShape ******************/ - /**** md5 signature: e1c69c3678b816cb0e3d73096b528c5f ****/ + /****** BRepFill_Pipe::LastShape ******/ + /****** md5 signature: e1c69c3678b816cb0e3d73096b528c5f ******/ %feature("compactdefaultargs") LastShape; %feature("autodoc", "Return ------- @@ -3128,8 +3128,8 @@ No available documentation. ") LastShape; const TopoDS_Shape LastShape(); - /****************** Perform ******************/ - /**** md5 signature: e7b638b85235be08cf45ea179e29ec5e ****/ + /****** BRepFill_Pipe::Perform ******/ + /****** md5 signature: e7b638b85235be08cf45ea179e29ec5e ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -3148,8 +3148,8 @@ No available documentation. ") Perform; void Perform(const TopoDS_Wire & Spine, const TopoDS_Shape & Profile, const Standard_Boolean GeneratePartCase = Standard_False); - /****************** PipeLine ******************/ - /**** md5 signature: 55f8b2c61022d6779b48bfc461e428ec ****/ + /****** BRepFill_Pipe::PipeLine ******/ + /****** md5 signature: 55f8b2c61022d6779b48bfc461e428ec ******/ %feature("compactdefaultargs") PipeLine; %feature("autodoc", " Parameters @@ -3166,8 +3166,8 @@ Create a wire by sweeping the point along the if the is undefine ") PipeLine; TopoDS_Wire PipeLine(const gp_Pnt & Point); - /****************** Profile ******************/ - /**** md5 signature: 79a7d86b74870c796d2c753c300c851a ****/ + /****** BRepFill_Pipe::Profile ******/ + /****** md5 signature: 79a7d86b74870c796d2c753c300c851a ******/ %feature("compactdefaultargs") Profile; %feature("autodoc", "Return ------- @@ -3179,8 +3179,8 @@ No available documentation. ") Profile; const TopoDS_Shape Profile(); - /****************** Section ******************/ - /**** md5 signature: 21dfb1d466136117d36878bbae686eaa ****/ + /****** BRepFill_Pipe::Section ******/ + /****** md5 signature: 21dfb1d466136117d36878bbae686eaa ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -3197,8 +3197,8 @@ Returns the shape created from the profile at the position of the vertex vspine. ") Section; TopoDS_Shape Section(const TopoDS_Vertex & VSpine); - /****************** Shape ******************/ - /**** md5 signature: e2e979bbf0e2f5cedfc0e482bf183e08 ****/ + /****** BRepFill_Pipe::Shape ******/ + /****** md5 signature: e2e979bbf0e2f5cedfc0e482bf183e08 ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -3210,8 +3210,8 @@ No available documentation. ") Shape; const TopoDS_Shape Shape(); - /****************** Spine ******************/ - /**** md5 signature: f6ea6e7c5910a000caa86ed2eb47e3d7 ****/ + /****** BRepFill_Pipe::Spine ******/ + /****** md5 signature: f6ea6e7c5910a000caa86ed2eb47e3d7 ******/ %feature("compactdefaultargs") Spine; %feature("autodoc", "Return ------- @@ -3237,8 +3237,8 @@ No available documentation. ***************************/ class BRepFill_PipeShell : public Standard_Transient { public: - /****************** BRepFill_PipeShell ******************/ - /**** md5 signature: f13911b618ee59949258d0ea58994931 ****/ + /****** BRepFill_PipeShell::BRepFill_PipeShell ******/ + /****** md5 signature: f13911b618ee59949258d0ea58994931 ******/ %feature("compactdefaultargs") BRepFill_PipeShell; %feature("autodoc", " Parameters @@ -3255,8 +3255,8 @@ Set an sweep's mode if no mode are set, the mode used in makepipe is used. ") BRepFill_PipeShell; BRepFill_PipeShell(const TopoDS_Wire & Spine); - /****************** Add ******************/ - /**** md5 signature: 4646415ed2583fb1eb7c020fef17efa7 ****/ + /****** BRepFill_PipeShell::Add ******/ + /****** md5 signature: 4646415ed2583fb1eb7c020fef17efa7 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -3275,8 +3275,8 @@ Set an section. the correspondence with the spine, will be automatically perform ") Add; void Add(const TopoDS_Shape & Profile, const Standard_Boolean WithContact = Standard_False, const Standard_Boolean WithCorrection = Standard_False); - /****************** Add ******************/ - /**** md5 signature: ea9d6839d1fe733dcb8684defcce8b79 ****/ + /****** BRepFill_PipeShell::Add ******/ + /****** md5 signature: ea9d6839d1fe733dcb8684defcce8b79 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -3296,8 +3296,8 @@ Set an section. the correspondence with the spine, is given by location. ") Add; void Add(const TopoDS_Shape & Profile, const TopoDS_Vertex & Location, const Standard_Boolean WithContact = Standard_False, const Standard_Boolean WithCorrection = Standard_False); - /****************** Build ******************/ - /**** md5 signature: fb4f2d7aa4d9a33eacf2c039bec37b85 ****/ + /****** BRepFill_PipeShell::Build ******/ + /****** md5 signature: fb4f2d7aa4d9a33eacf2c039bec37b85 ******/ %feature("compactdefaultargs") Build; %feature("autodoc", "Return ------- @@ -3309,8 +3309,8 @@ Builds the resulting shape (redefined from makeshape). ") Build; Standard_Boolean Build(); - /****************** DeleteProfile ******************/ - /**** md5 signature: 7299322f6ee9ec68b7478e344329d88d ****/ + /****** BRepFill_PipeShell::DeleteProfile ******/ + /****** md5 signature: 7299322f6ee9ec68b7478e344329d88d ******/ %feature("compactdefaultargs") DeleteProfile; %feature("autodoc", " Parameters @@ -3327,8 +3327,8 @@ Delete an section. ") DeleteProfile; void DeleteProfile(const TopoDS_Shape & Profile); - /****************** ErrorOnSurface ******************/ - /**** md5 signature: b6b87ca0efc7814953c22829fefc7f65 ****/ + /****** BRepFill_PipeShell::ErrorOnSurface ******/ + /****** md5 signature: b6b87ca0efc7814953c22829fefc7f65 ******/ %feature("compactdefaultargs") ErrorOnSurface; %feature("autodoc", "Return ------- @@ -3340,8 +3340,8 @@ No available documentation. ") ErrorOnSurface; Standard_Real ErrorOnSurface(); - /****************** FirstShape ******************/ - /**** md5 signature: 7feb91b88f8f76be63dd0e52049cfbe6 ****/ + /****** BRepFill_PipeShell::FirstShape ******/ + /****** md5 signature: 7feb91b88f8f76be63dd0e52049cfbe6 ******/ %feature("compactdefaultargs") FirstShape; %feature("autodoc", "Return ------- @@ -3353,8 +3353,8 @@ Returns the topods shape of the bottom of the sweep. ") FirstShape; const TopoDS_Shape FirstShape(); - /****************** Generated ******************/ - /**** md5 signature: 768067f46b5a2be6984659c6467cd78f ****/ + /****** BRepFill_PipeShell::Generated ******/ + /****** md5 signature: 768067f46b5a2be6984659c6467cd78f ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -3372,8 +3372,8 @@ Returns the list of shapes generated from the shape . ") Generated; void Generated(const TopoDS_Shape & S, TopTools_ListOfShape & L); - /****************** GetStatus ******************/ - /**** md5 signature: ee71a82e4f5af8e3c4016af8fa6d8de6 ****/ + /****** BRepFill_PipeShell::GetStatus ******/ + /****** md5 signature: ee71a82e4f5af8e3c4016af8fa6d8de6 ******/ %feature("compactdefaultargs") GetStatus; %feature("autodoc", "Return ------- @@ -3385,8 +3385,8 @@ Get a status, when simulate or build failed. ") GetStatus; GeomFill_PipeError GetStatus(); - /****************** IsReady ******************/ - /**** md5 signature: 68a96b040fc0b59848125a1a3ef33dcb ****/ + /****** BRepFill_PipeShell::IsReady ******/ + /****** md5 signature: 68a96b040fc0b59848125a1a3ef33dcb ******/ %feature("compactdefaultargs") IsReady; %feature("autodoc", "Return ------- @@ -3398,8 +3398,8 @@ Say if is ready to build the shape return false if do not have sec ") IsReady; Standard_Boolean IsReady(); - /****************** LastShape ******************/ - /**** md5 signature: e1c69c3678b816cb0e3d73096b528c5f ****/ + /****** BRepFill_PipeShell::LastShape ******/ + /****** md5 signature: e1c69c3678b816cb0e3d73096b528c5f ******/ %feature("compactdefaultargs") LastShape; %feature("autodoc", "Return ------- @@ -3411,8 +3411,8 @@ Returns the topods shape of the top of the sweep. ") LastShape; const TopoDS_Shape LastShape(); - /****************** MakeSolid ******************/ - /**** md5 signature: cac327adfb21fa10211d68dabc53974b ****/ + /****** BRepFill_PipeShell::MakeSolid ******/ + /****** md5 signature: cac327adfb21fa10211d68dabc53974b ******/ %feature("compactdefaultargs") MakeSolid; %feature("autodoc", "Return ------- @@ -3424,8 +3424,8 @@ Transform the sweeping shell in solid. if the section are not closed returns fal ") MakeSolid; Standard_Boolean MakeSolid(); - /****************** Profiles ******************/ - /**** md5 signature: 1b2b499d210731d9c45ae6c16e16db56 ****/ + /****** BRepFill_PipeShell::Profiles ******/ + /****** md5 signature: 1b2b499d210731d9c45ae6c16e16db56 ******/ %feature("compactdefaultargs") Profiles; %feature("autodoc", " Parameters @@ -3442,8 +3442,8 @@ Returns the list of original profiles. ") Profiles; void Profiles(TopTools_ListOfShape & theProfiles); - /****************** Set ******************/ - /**** md5 signature: ad296238ba7b296ddd67e2c77e041854 ****/ + /****** BRepFill_PipeShell::Set ******/ + /****** md5 signature: ad296238ba7b296ddd67e2c77e041854 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -3460,8 +3460,8 @@ Set an frenet or an correctedfrenet trihedron to perform the sweeping. ") Set; void Set(const Standard_Boolean Frenet = Standard_False); - /****************** Set ******************/ - /**** md5 signature: 90e8940ed907efcf8c6e35257766922f ****/ + /****** BRepFill_PipeShell::Set ******/ + /****** md5 signature: 90e8940ed907efcf8c6e35257766922f ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -3478,8 +3478,8 @@ Set an fixed trihedron to perform the sweeping all sections will be parallel. ") Set; void Set(const gp_Ax2 & Axe); - /****************** Set ******************/ - /**** md5 signature: 4fe5fd878126c7abf66461ac49a9d95d ****/ + /****** BRepFill_PipeShell::Set ******/ + /****** md5 signature: 4fe5fd878126c7abf66461ac49a9d95d ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -3496,8 +3496,8 @@ Set an fixed binormal direction to perform the sweeping. ") Set; void Set(const gp_Dir & BiNormal); - /****************** Set ******************/ - /**** md5 signature: 3a5512d0c00b3142b199e2c762d5e552 ****/ + /****** BRepFill_PipeShell::Set ******/ + /****** md5 signature: 3a5512d0c00b3142b199e2c762d5e552 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -3514,8 +3514,8 @@ Set support to the spine to define the binormal at the spine, like the normal th ") Set; Standard_Boolean Set(const TopoDS_Shape & SpineSupport); - /****************** Set ******************/ - /**** md5 signature: 66377d62887bf90a45e3b528b4a485aa ****/ + /****** BRepFill_PipeShell::Set ******/ + /****** md5 signature: 66377d62887bf90a45e3b528b4a485aa ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -3534,8 +3534,8 @@ Set an auxiliary spine to define the normal for each point of the spine p, an po ") Set; void Set(const TopoDS_Wire & AuxiliarySpine, const Standard_Boolean CurvilinearEquivalence = Standard_True, const BRepFill_TypeOfContact KeepContact = BRepFill_NoContact); - /****************** SetDiscrete ******************/ - /**** md5 signature: c354292a3d373003c260a3146997c775 ****/ + /****** BRepFill_PipeShell::SetDiscrete ******/ + /****** md5 signature: c354292a3d373003c260a3146997c775 ******/ %feature("compactdefaultargs") SetDiscrete; %feature("autodoc", "Return ------- @@ -3547,8 +3547,8 @@ Set a discrete trihedron to perform the sweeping. ") SetDiscrete; void SetDiscrete(); - /****************** SetForceApproxC1 ******************/ - /**** md5 signature: ef99bf0713e14fbe9531aef549b5c75b ****/ + /****** BRepFill_PipeShell::SetForceApproxC1 ******/ + /****** md5 signature: ef99bf0713e14fbe9531aef549b5c75b ******/ %feature("compactdefaultargs") SetForceApproxC1; %feature("autodoc", " Parameters @@ -3565,8 +3565,8 @@ Set the flag that indicates attempt to approximate a c1-continuous surface if a ") SetForceApproxC1; void SetForceApproxC1(const Standard_Boolean ForceApproxC1); - /****************** SetLaw ******************/ - /**** md5 signature: af186f09c05a666850d65baf0970c9c2 ****/ + /****** BRepFill_PipeShell::SetLaw ******/ + /****** md5 signature: af186f09c05a666850d65baf0970c9c2 ******/ %feature("compactdefaultargs") SetLaw; %feature("autodoc", " Parameters @@ -3586,8 +3586,8 @@ Set an section and an homotetic law. the homotetie's centers is given by point o ") SetLaw; void SetLaw(const TopoDS_Shape & Profile, const opencascade::handle & L, const Standard_Boolean WithContact = Standard_False, const Standard_Boolean WithCorrection = Standard_False); - /****************** SetLaw ******************/ - /**** md5 signature: d67cbe53520bea57d641b9a7a96a4fae ****/ + /****** BRepFill_PipeShell::SetLaw ******/ + /****** md5 signature: d67cbe53520bea57d641b9a7a96a4fae ******/ %feature("compactdefaultargs") SetLaw; %feature("autodoc", " Parameters @@ -3608,8 +3608,8 @@ Set an section and an homotetic law. the homotetie center is given by point on t ") SetLaw; void SetLaw(const TopoDS_Shape & Profile, const opencascade::handle & L, const TopoDS_Vertex & Location, const Standard_Boolean WithContact = Standard_False, const Standard_Boolean WithCorrection = Standard_False); - /****************** SetMaxDegree ******************/ - /**** md5 signature: 2a3ad6060a0d872631abe8d437d6229f ****/ + /****** BRepFill_PipeShell::SetMaxDegree ******/ + /****** md5 signature: 2a3ad6060a0d872631abe8d437d6229f ******/ %feature("compactdefaultargs") SetMaxDegree; %feature("autodoc", " Parameters @@ -3626,8 +3626,8 @@ Define the maximum v degree of resulting surface. ") SetMaxDegree; void SetMaxDegree(const Standard_Integer NewMaxDegree); - /****************** SetMaxSegments ******************/ - /**** md5 signature: 7215f32d76e44b535e90a1a1c2957613 ****/ + /****** BRepFill_PipeShell::SetMaxSegments ******/ + /****** md5 signature: 7215f32d76e44b535e90a1a1c2957613 ******/ %feature("compactdefaultargs") SetMaxSegments; %feature("autodoc", " Parameters @@ -3644,8 +3644,8 @@ Define the maximum number of spans in v-direction on resulting surface. ") SetMaxSegments; void SetMaxSegments(const Standard_Integer NewMaxSegments); - /****************** SetTolerance ******************/ - /**** md5 signature: 7a6605305c5a1448579b26f09880877f ****/ + /****** BRepFill_PipeShell::SetTolerance ******/ + /****** md5 signature: 7a6605305c5a1448579b26f09880877f ******/ %feature("compactdefaultargs") SetTolerance; %feature("autodoc", " Parameters @@ -3664,8 +3664,8 @@ No available documentation. ") SetTolerance; void SetTolerance(const Standard_Real Tol3d = 1.0e-4, const Standard_Real BoundTol = 1.0e-4, const Standard_Real TolAngular = 1.0e-2); - /****************** SetTransition ******************/ - /**** md5 signature: e4bfbc283a87ba6421fedfbb4b43700d ****/ + /****** BRepFill_PipeShell::SetTransition ******/ + /****** md5 signature: e4bfbc283a87ba6421fedfbb4b43700d ******/ %feature("compactdefaultargs") SetTransition; %feature("autodoc", " Parameters @@ -3684,8 +3684,8 @@ Set the transition mode to manage discontinuities on the sweep. ") SetTransition; void SetTransition(const BRepFill_TransitionStyle Mode = BRepFill_Modified, const Standard_Real Angmin = 1.0e-2, const Standard_Real Angmax = 6.0); - /****************** Shape ******************/ - /**** md5 signature: e2e979bbf0e2f5cedfc0e482bf183e08 ****/ + /****** BRepFill_PipeShell::Shape ******/ + /****** md5 signature: e2e979bbf0e2f5cedfc0e482bf183e08 ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -3697,8 +3697,8 @@ Returns the result shape. ") Shape; const TopoDS_Shape Shape(); - /****************** Simulate ******************/ - /**** md5 signature: 78b0624fde27ce53b740001cf13ef69f ****/ + /****** BRepFill_PipeShell::Simulate ******/ + /****** md5 signature: 78b0624fde27ce53b740001cf13ef69f ******/ %feature("compactdefaultargs") Simulate; %feature("autodoc", " Parameters @@ -3716,8 +3716,8 @@ Perform simulation of the sweep: somes section are returned. ") Simulate; void Simulate(const Standard_Integer NumberOfSection, TopTools_ListOfShape & Sections); - /****************** Spine ******************/ - /**** md5 signature: 6331688635fc3e41ab0cf89de46bd269 ****/ + /****** BRepFill_PipeShell::Spine ******/ + /****** md5 signature: 6331688635fc3e41ab0cf89de46bd269 ******/ %feature("compactdefaultargs") Spine; %feature("autodoc", "Return ------- @@ -3745,8 +3745,8 @@ Returns the spine. *************************/ class BRepFill_Section { public: - /****************** BRepFill_Section ******************/ - /**** md5 signature: e61ac8f8fadf0c18f22e16153b6f3080 ****/ + /****** BRepFill_Section::BRepFill_Section ******/ + /****** md5 signature: e61ac8f8fadf0c18f22e16153b6f3080 ******/ %feature("compactdefaultargs") BRepFill_Section; %feature("autodoc", "Return ------- @@ -3758,8 +3758,8 @@ No available documentation. ") BRepFill_Section; BRepFill_Section(); - /****************** BRepFill_Section ******************/ - /**** md5 signature: c0d5bd713dddab12913a129679ad38d3 ****/ + /****** BRepFill_Section::BRepFill_Section ******/ + /****** md5 signature: c0d5bd713dddab12913a129679ad38d3 ******/ %feature("compactdefaultargs") BRepFill_Section; %feature("autodoc", " Parameters @@ -3779,8 +3779,8 @@ No available documentation. ") BRepFill_Section; BRepFill_Section(const TopoDS_Shape & Profile, const TopoDS_Vertex & V, const Standard_Boolean WithContact, const Standard_Boolean WithCorrection); - /****************** IsLaw ******************/ - /**** md5 signature: 627cfa98ccbc7b8171e188b44fb3fb68 ****/ + /****** BRepFill_Section::IsLaw ******/ + /****** md5 signature: 627cfa98ccbc7b8171e188b44fb3fb68 ******/ %feature("compactdefaultargs") IsLaw; %feature("autodoc", "Return ------- @@ -3792,8 +3792,8 @@ No available documentation. ") IsLaw; Standard_Boolean IsLaw(); - /****************** IsPunctual ******************/ - /**** md5 signature: 34d460c36b2defadbac70729c5fa4e71 ****/ + /****** BRepFill_Section::IsPunctual ******/ + /****** md5 signature: 34d460c36b2defadbac70729c5fa4e71 ******/ %feature("compactdefaultargs") IsPunctual; %feature("autodoc", "Return ------- @@ -3805,8 +3805,8 @@ No available documentation. ") IsPunctual; Standard_Boolean IsPunctual(); - /****************** ModifiedShape ******************/ - /**** md5 signature: e234547dbb5d90ba2a5ae58c4d9ebd62 ****/ + /****** BRepFill_Section::ModifiedShape ******/ + /****** md5 signature: e234547dbb5d90ba2a5ae58c4d9ebd62 ******/ %feature("compactdefaultargs") ModifiedShape; %feature("autodoc", " Parameters @@ -3823,8 +3823,8 @@ No available documentation. ") ModifiedShape; TopoDS_Shape ModifiedShape(const TopoDS_Shape & theShape); - /****************** OriginalShape ******************/ - /**** md5 signature: 37aa687b33206d2183ad29c927b910b3 ****/ + /****** BRepFill_Section::OriginalShape ******/ + /****** md5 signature: 37aa687b33206d2183ad29c927b910b3 ******/ %feature("compactdefaultargs") OriginalShape; %feature("autodoc", "Return ------- @@ -3836,8 +3836,8 @@ No available documentation. ") OriginalShape; const TopoDS_Shape OriginalShape(); - /****************** Set ******************/ - /**** md5 signature: bf8d56136803d99502545d893d044863 ****/ + /****** BRepFill_Section::Set ******/ + /****** md5 signature: bf8d56136803d99502545d893d044863 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -3854,8 +3854,8 @@ No available documentation. ") Set; void Set(const Standard_Boolean IsLaw); - /****************** Vertex ******************/ - /**** md5 signature: 84212ff79cd7d64cd0ebfa6f17214e90 ****/ + /****** BRepFill_Section::Vertex ******/ + /****** md5 signature: 84212ff79cd7d64cd0ebfa6f17214e90 ******/ %feature("compactdefaultargs") Vertex; %feature("autodoc", "Return ------- @@ -3867,8 +3867,8 @@ No available documentation. ") Vertex; const TopoDS_Vertex Vertex(); - /****************** Wire ******************/ - /**** md5 signature: 066765b94f5225dad05ab95ae3f8b503 ****/ + /****** BRepFill_Section::Wire ******/ + /****** md5 signature: 066765b94f5225dad05ab95ae3f8b503 ******/ %feature("compactdefaultargs") Wire; %feature("autodoc", "Return ------- @@ -3880,8 +3880,8 @@ No available documentation. ") Wire; const TopoDS_Wire Wire(); - /****************** WithContact ******************/ - /**** md5 signature: 8c52eb3488d5e864eb4494366981008b ****/ + /****** BRepFill_Section::WithContact ******/ + /****** md5 signature: 8c52eb3488d5e864eb4494366981008b ******/ %feature("compactdefaultargs") WithContact; %feature("autodoc", "Return ------- @@ -3893,8 +3893,8 @@ No available documentation. ") WithContact; Standard_Boolean WithContact(); - /****************** WithCorrection ******************/ - /**** md5 signature: d8c8bc674f5d5b3fb56e5f5b44b37170 ****/ + /****** BRepFill_Section::WithCorrection ******/ + /****** md5 signature: d8c8bc674f5d5b3fb56e5f5b44b37170 ******/ %feature("compactdefaultargs") WithCorrection; %feature("autodoc", "Return ------- @@ -3921,8 +3921,8 @@ No available documentation. %nodefaultctor BRepFill_SectionLaw; class BRepFill_SectionLaw : public Standard_Transient { public: - /****************** ConcatenedLaw ******************/ - /**** md5 signature: a11a20466a33081fa6be7c7d399ac6f0 ****/ + /****** BRepFill_SectionLaw::ConcatenedLaw ******/ + /****** md5 signature: a11a20466a33081fa6be7c7d399ac6f0 ******/ %feature("compactdefaultargs") ConcatenedLaw; %feature("autodoc", "Return ------- @@ -3934,8 +3934,8 @@ No available documentation. ") ConcatenedLaw; virtual opencascade::handle ConcatenedLaw(); - /****************** Continuity ******************/ - /**** md5 signature: d2ca4ce96ca24c38a7e6d5cd32d00816 ****/ + /****** BRepFill_SectionLaw::Continuity ******/ + /****** md5 signature: d2ca4ce96ca24c38a7e6d5cd32d00816 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", " Parameters @@ -3953,8 +3953,8 @@ No available documentation. ") Continuity; virtual GeomAbs_Shape Continuity(const Standard_Integer Index, const Standard_Real TolAngular); - /****************** CurrentEdge ******************/ - /**** md5 signature: 2193a21094be95b48640757db8202bfa ****/ + /****** BRepFill_SectionLaw::CurrentEdge ******/ + /****** md5 signature: 2193a21094be95b48640757db8202bfa ******/ %feature("compactdefaultargs") CurrentEdge; %feature("autodoc", "Return ------- @@ -3966,8 +3966,8 @@ No available documentation. ") CurrentEdge; TopoDS_Edge CurrentEdge(); - /****************** D0 ******************/ - /**** md5 signature: 4f469a957aae07c7edf28ee118badab3 ****/ + /****** BRepFill_SectionLaw::D0 ******/ + /****** md5 signature: 4f469a957aae07c7edf28ee118badab3 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -3985,8 +3985,8 @@ No available documentation. ") D0; virtual void D0(const Standard_Real U, TopoDS_Shape & S); - /****************** IndexOfEdge ******************/ - /**** md5 signature: 907ba1dff8adec2cf8c8b22bf8d3bc50 ****/ + /****** BRepFill_SectionLaw::IndexOfEdge ******/ + /****** md5 signature: 907ba1dff8adec2cf8c8b22bf8d3bc50 ******/ %feature("compactdefaultargs") IndexOfEdge; %feature("autodoc", " Parameters @@ -4003,8 +4003,8 @@ No available documentation. ") IndexOfEdge; Standard_Integer IndexOfEdge(const TopoDS_Shape & anEdge); - /****************** Init ******************/ - /**** md5 signature: 1b008bb762428c969d10a2c51ed2db58 ****/ + /****** BRepFill_SectionLaw::Init ******/ + /****** md5 signature: 1b008bb762428c969d10a2c51ed2db58 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -4021,8 +4021,8 @@ No available documentation. ") Init; void Init(const TopoDS_Wire & W); - /****************** IsConstant ******************/ - /**** md5 signature: 337c4e46b4ff32f057b2cee90a9a9b55 ****/ + /****** BRepFill_SectionLaw::IsConstant ******/ + /****** md5 signature: 337c4e46b4ff32f057b2cee90a9a9b55 ******/ %feature("compactdefaultargs") IsConstant; %feature("autodoc", "Return ------- @@ -4034,8 +4034,8 @@ No available documentation. ") IsConstant; virtual Standard_Boolean IsConstant(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepFill_SectionLaw::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -4047,8 +4047,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** IsUClosed ******************/ - /**** md5 signature: 17d29145e29e54adf880f81b138cfeb5 ****/ + /****** BRepFill_SectionLaw::IsUClosed ******/ + /****** md5 signature: 17d29145e29e54adf880f81b138cfeb5 ******/ %feature("compactdefaultargs") IsUClosed; %feature("autodoc", "Return ------- @@ -4060,8 +4060,8 @@ No available documentation. ") IsUClosed; Standard_Boolean IsUClosed(); - /****************** IsVClosed ******************/ - /**** md5 signature: 270ac1341783e48f1a0f14434f1599d3 ****/ + /****** BRepFill_SectionLaw::IsVClosed ******/ + /****** md5 signature: 270ac1341783e48f1a0f14434f1599d3 ******/ %feature("compactdefaultargs") IsVClosed; %feature("autodoc", "Return ------- @@ -4073,8 +4073,8 @@ No available documentation. ") IsVClosed; Standard_Boolean IsVClosed(); - /****************** IsVertex ******************/ - /**** md5 signature: 302402c7a4a48b3d6f9b09f532742fc8 ****/ + /****** BRepFill_SectionLaw::IsVertex ******/ + /****** md5 signature: 302402c7a4a48b3d6f9b09f532742fc8 ******/ %feature("compactdefaultargs") IsVertex; %feature("autodoc", "Return ------- @@ -4086,8 +4086,8 @@ Say if the input shape is a vertex. ") IsVertex; virtual Standard_Boolean IsVertex(); - /****************** Law ******************/ - /**** md5 signature: 2f654c531c53f8e84f5761bf7e8bf354 ****/ + /****** BRepFill_SectionLaw::Law ******/ + /****** md5 signature: 2f654c531c53f8e84f5761bf7e8bf354 ******/ %feature("compactdefaultargs") Law; %feature("autodoc", " Parameters @@ -4104,8 +4104,8 @@ No available documentation. ") Law; const opencascade::handle & Law(const Standard_Integer Index); - /****************** NbLaw ******************/ - /**** md5 signature: 37098ff16cd9e076b3a2132752025ea0 ****/ + /****** BRepFill_SectionLaw::NbLaw ******/ + /****** md5 signature: 37098ff16cd9e076b3a2132752025ea0 ******/ %feature("compactdefaultargs") NbLaw; %feature("autodoc", "Return ------- @@ -4117,8 +4117,8 @@ No available documentation. ") NbLaw; Standard_Integer NbLaw(); - /****************** Vertex ******************/ - /**** md5 signature: e585460981726e88b1fbe195471a8be2 ****/ + /****** BRepFill_SectionLaw::Vertex ******/ + /****** md5 signature: e585460981726e88b1fbe195471a8be2 ******/ %feature("compactdefaultargs") Vertex; %feature("autodoc", " Parameters @@ -4136,8 +4136,8 @@ No available documentation. ") Vertex; virtual TopoDS_Vertex Vertex(const Standard_Integer Index, const Standard_Real Param); - /****************** VertexTol ******************/ - /**** md5 signature: 1c0bff8ea482aa3b86222cc8cb5f84f5 ****/ + /****** BRepFill_SectionLaw::VertexTol ******/ + /****** md5 signature: 1c0bff8ea482aa3b86222cc8cb5f84f5 ******/ %feature("compactdefaultargs") VertexTol; %feature("autodoc", " Parameters @@ -4171,8 +4171,8 @@ No available documentation. **********************************/ class BRepFill_SectionPlacement { public: - /****************** BRepFill_SectionPlacement ******************/ - /**** md5 signature: 210cac6a0902d4f5c3388f3f5f93ddf8 ****/ + /****** BRepFill_SectionPlacement::BRepFill_SectionPlacement ******/ + /****** md5 signature: 210cac6a0902d4f5c3388f3f5f93ddf8 ******/ %feature("compactdefaultargs") BRepFill_SectionPlacement; %feature("autodoc", " Parameters @@ -4192,8 +4192,8 @@ Automatic placement. ") BRepFill_SectionPlacement; BRepFill_SectionPlacement(const opencascade::handle & Law, const TopoDS_Shape & Section, const Standard_Boolean WithContact = Standard_False, const Standard_Boolean WithCorrection = Standard_False); - /****************** BRepFill_SectionPlacement ******************/ - /**** md5 signature: 22b469e71ce31627b4ac02814f5e6e35 ****/ + /****** BRepFill_SectionPlacement::BRepFill_SectionPlacement ******/ + /****** md5 signature: 22b469e71ce31627b4ac02814f5e6e35 ******/ %feature("compactdefaultargs") BRepFill_SectionPlacement; %feature("autodoc", " Parameters @@ -4214,8 +4214,8 @@ Placement on vertex. ") BRepFill_SectionPlacement; BRepFill_SectionPlacement(const opencascade::handle & Law, const TopoDS_Shape & Section, const TopoDS_Shape & Vertex, const Standard_Boolean WithContact = Standard_False, const Standard_Boolean WithCorrection = Standard_False); - /****************** AbscissaOnPath ******************/ - /**** md5 signature: e1594bccbdf3136bf5cf1f500cf4c013 ****/ + /****** BRepFill_SectionPlacement::AbscissaOnPath ******/ + /****** md5 signature: e1594bccbdf3136bf5cf1f500cf4c013 ******/ %feature("compactdefaultargs") AbscissaOnPath; %feature("autodoc", "Return ------- @@ -4227,8 +4227,8 @@ No available documentation. ") AbscissaOnPath; Standard_Real AbscissaOnPath(); - /****************** Transformation ******************/ - /**** md5 signature: 567e6ee373139970f4679dbb49e28e7c ****/ + /****** BRepFill_SectionPlacement::Transformation ******/ + /****** md5 signature: 567e6ee373139970f4679dbb49e28e7c ******/ %feature("compactdefaultargs") Transformation; %feature("autodoc", "Return ------- @@ -4254,8 +4254,8 @@ No available documentation. ***********************/ class BRepFill_Sweep { public: - /****************** BRepFill_Sweep ******************/ - /**** md5 signature: 4bd773fce0e9972dd0b0e7000d37e1c6 ****/ + /****** BRepFill_Sweep::BRepFill_Sweep ******/ + /****** md5 signature: 4bd773fce0e9972dd0b0e7000d37e1c6 ******/ %feature("compactdefaultargs") BRepFill_Sweep; %feature("autodoc", " Parameters @@ -4274,8 +4274,8 @@ No available documentation. ") BRepFill_Sweep; BRepFill_Sweep(const opencascade::handle & Section, const opencascade::handle & Location, const Standard_Boolean WithKPart); - /****************** Build ******************/ - /**** md5 signature: 8948957dd26d744dcb6a952ff83fd290 ****/ + /****** BRepFill_Sweep::Build ******/ + /****** md5 signature: 8948957dd26d744dcb6a952ff83fd290 ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -4299,8 +4299,8 @@ Build the sweep surface transition define transition strategy approx define appr ") Build; void Build(TopTools_MapOfShape & ReversedEdges, BRepFill_DataMapOfShapeHArray2OfShape & Tapes, BRepFill_DataMapOfShapeHArray2OfShape & Rails, const BRepFill_TransitionStyle Transition = BRepFill_Modified, const GeomAbs_Shape Continuity = GeomAbs_C2, const GeomFill_ApproxStyle Approx = GeomFill_Location, const Standard_Integer Degmax = 11, const Standard_Integer Segmax = 30); - /****************** ErrorOnSurface ******************/ - /**** md5 signature: b6b87ca0efc7814953c22829fefc7f65 ****/ + /****** BRepFill_Sweep::ErrorOnSurface ******/ + /****** md5 signature: b6b87ca0efc7814953c22829fefc7f65 ******/ %feature("compactdefaultargs") ErrorOnSurface; %feature("autodoc", "Return ------- @@ -4312,8 +4312,8 @@ Get the approximation error. ") ErrorOnSurface; Standard_Real ErrorOnSurface(); - /****************** InterFaces ******************/ - /**** md5 signature: 2722003ae5ed02eb76b0dc1ff08ee8a4 ****/ + /****** BRepFill_Sweep::InterFaces ******/ + /****** md5 signature: 2722003ae5ed02eb76b0dc1ff08ee8a4 ******/ %feature("compactdefaultargs") InterFaces; %feature("autodoc", "Return ------- @@ -4325,8 +4325,8 @@ No available documentation. ") InterFaces; opencascade::handle InterFaces(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepFill_Sweep::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -4338,8 +4338,8 @@ Say if the shape is build. ") IsDone; Standard_Boolean IsDone(); - /****************** Sections ******************/ - /**** md5 signature: 88662b898322dac55a408cb35a139d61 ****/ + /****** BRepFill_Sweep::Sections ******/ + /****** md5 signature: 88662b898322dac55a408cb35a139d61 ******/ %feature("compactdefaultargs") Sections; %feature("autodoc", "Return ------- @@ -4351,8 +4351,8 @@ No available documentation. ") Sections; opencascade::handle Sections(); - /****************** SetAngularControl ******************/ - /**** md5 signature: 9a75655ab5588301953b3e117b7b1018 ****/ + /****** BRepFill_Sweep::SetAngularControl ******/ + /****** md5 signature: 9a75655ab5588301953b3e117b7b1018 ******/ %feature("compactdefaultargs") SetAngularControl; %feature("autodoc", " Parameters @@ -4370,8 +4370,8 @@ Tolerance to controle corner management. //! if the discontinuity is lesser than ") SetAngularControl; void SetAngularControl(const Standard_Real AngleMin = 0.01, const Standard_Real AngleMax = 6.0); - /****************** SetBounds ******************/ - /**** md5 signature: bc59efbec6dfc54217c2b23ecafc6827 ****/ + /****** BRepFill_Sweep::SetBounds ******/ + /****** md5 signature: bc59efbec6dfc54217c2b23ecafc6827 ******/ %feature("compactdefaultargs") SetBounds; %feature("autodoc", " Parameters @@ -4389,8 +4389,8 @@ No available documentation. ") SetBounds; void SetBounds(const TopoDS_Wire & FirstShape, const TopoDS_Wire & LastShape); - /****************** SetForceApproxC1 ******************/ - /**** md5 signature: ef99bf0713e14fbe9531aef549b5c75b ****/ + /****** BRepFill_Sweep::SetForceApproxC1 ******/ + /****** md5 signature: ef99bf0713e14fbe9531aef549b5c75b ******/ %feature("compactdefaultargs") SetForceApproxC1; %feature("autodoc", " Parameters @@ -4407,8 +4407,8 @@ Set the flag that indicates attempt to approximate a c1-continuous surface if a ") SetForceApproxC1; void SetForceApproxC1(const Standard_Boolean ForceApproxC1); - /****************** SetTolerance ******************/ - /**** md5 signature: 0c0c29e014b1ba349cc5155f8793397a ****/ + /****** BRepFill_Sweep::SetTolerance ******/ + /****** md5 signature: 0c0c29e014b1ba349cc5155f8793397a ******/ %feature("compactdefaultargs") SetTolerance; %feature("autodoc", " Parameters @@ -4428,8 +4428,8 @@ Set approximation tolerance tol3d: tolerance to surface approximation tol2d: tol ") SetTolerance; void SetTolerance(const Standard_Real Tol3d, const Standard_Real BoundTol = 1.0, const Standard_Real Tol2d = 1.0e-5, const Standard_Real TolAngular = 1.0e-2); - /****************** Shape ******************/ - /**** md5 signature: 3aece276415d56b8bd9afa5bf371db57 ****/ + /****** BRepFill_Sweep::Shape ******/ + /****** md5 signature: 3aece276415d56b8bd9afa5bf371db57 ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -4441,8 +4441,8 @@ Returns the sweeping shape. ") Shape; TopoDS_Shape Shape(); - /****************** SubShape ******************/ - /**** md5 signature: e4bb1fadebe41ca5dc04b13c83f173aa ****/ + /****** BRepFill_Sweep::SubShape ******/ + /****** md5 signature: e4bb1fadebe41ca5dc04b13c83f173aa ******/ %feature("compactdefaultargs") SubShape; %feature("autodoc", "Return ------- @@ -4454,8 +4454,8 @@ No available documentation. ") SubShape; opencascade::handle SubShape(); - /****************** Tape ******************/ - /**** md5 signature: b18f2a38c1dd8f654316d3591197c164 ****/ + /****** BRepFill_Sweep::Tape ******/ + /****** md5 signature: b18f2a38c1dd8f654316d3591197c164 ******/ %feature("compactdefaultargs") Tape; %feature("autodoc", " Parameters @@ -4486,8 +4486,8 @@ Returns the tape corresponding to index-th edge of section. ******************************/ class BRepFill_TrimEdgeTool { public: - /****************** BRepFill_TrimEdgeTool ******************/ - /**** md5 signature: df16e3d74c293c3858dcd8b7873d0dc0 ****/ + /****** BRepFill_TrimEdgeTool::BRepFill_TrimEdgeTool ******/ + /****** md5 signature: df16e3d74c293c3858dcd8b7873d0dc0 ******/ %feature("compactdefaultargs") BRepFill_TrimEdgeTool; %feature("autodoc", "Return ------- @@ -4499,8 +4499,8 @@ No available documentation. ") BRepFill_TrimEdgeTool; BRepFill_TrimEdgeTool(); - /****************** BRepFill_TrimEdgeTool ******************/ - /**** md5 signature: be4ef61946c69fac7539e57ce14a0f9d ****/ + /****** BRepFill_TrimEdgeTool::BRepFill_TrimEdgeTool ******/ + /****** md5 signature: be4ef61946c69fac7539e57ce14a0f9d ******/ %feature("compactdefaultargs") BRepFill_TrimEdgeTool; %feature("autodoc", " Parameters @@ -4520,8 +4520,8 @@ No available documentation. ") BRepFill_TrimEdgeTool; BRepFill_TrimEdgeTool(const Bisector_Bisec & Bisec, const opencascade::handle & S1, const opencascade::handle & S2, const Standard_Real Offset); - /****************** AddOrConfuse ******************/ - /**** md5 signature: 297868f74217946610c526fee579a8ca ****/ + /****** BRepFill_TrimEdgeTool::AddOrConfuse ******/ + /****** md5 signature: 297868f74217946610c526fee579a8ca ******/ %feature("compactdefaultargs") AddOrConfuse; %feature("autodoc", " Parameters @@ -4541,8 +4541,8 @@ No available documentation. ") AddOrConfuse; void AddOrConfuse(const Standard_Boolean Start, const TopoDS_Edge & Edge1, const TopoDS_Edge & Edge2, TColgp_SequenceOfPnt & Params); - /****************** IntersectWith ******************/ - /**** md5 signature: 4185ea6e9b4d8cc6dd841196012f73af ****/ + /****** BRepFill_TrimEdgeTool::IntersectWith ******/ + /****** md5 signature: 4185ea6e9b4d8cc6dd841196012f73af ******/ %feature("compactdefaultargs") IntersectWith; %feature("autodoc", " Parameters @@ -4567,8 +4567,8 @@ No available documentation. ") IntersectWith; void IntersectWith(const TopoDS_Edge & Edge1, const TopoDS_Edge & Edge2, const TopoDS_Shape & InitShape1, const TopoDS_Shape & InitShape2, const TopoDS_Vertex & End1, const TopoDS_Vertex & End2, const GeomAbs_JoinType theJoinType, const Standard_Boolean IsOpenResult, TColgp_SequenceOfPnt & Params); - /****************** IsInside ******************/ - /**** md5 signature: 9be77a568a0605cae4e2b82729d80744 ****/ + /****** BRepFill_TrimEdgeTool::IsInside ******/ + /****** md5 signature: 9be77a568a0605cae4e2b82729d80744 ******/ %feature("compactdefaultargs") IsInside; %feature("autodoc", " Parameters @@ -4599,8 +4599,8 @@ No available documentation. *********************************/ class BRepFill_TrimShellCorner { public: - /****************** BRepFill_TrimShellCorner ******************/ - /**** md5 signature: 2bb20b7a9d4f9625d8bd98b1e30b2acd ****/ + /****** BRepFill_TrimShellCorner::BRepFill_TrimShellCorner ******/ + /****** md5 signature: 2bb20b7a9d4f9625d8bd98b1e30b2acd ******/ %feature("compactdefaultargs") BRepFill_TrimShellCorner; %feature("autodoc", " Parameters @@ -4620,8 +4620,8 @@ Constructor: takes faces to intersect, type of transition (it can be rightcorner ") BRepFill_TrimShellCorner; BRepFill_TrimShellCorner(const opencascade::handle & theFaces, const BRepFill_TransitionStyle theTransition, const gp_Ax2 & theAxeOfBisPlane, const gp_Vec & theIntPointCrossDir); - /****************** AddBounds ******************/ - /**** md5 signature: 70621cde2e2ea8a90994c6feb97fbd2c ****/ + /****** BRepFill_TrimShellCorner::AddBounds ******/ + /****** md5 signature: 70621cde2e2ea8a90994c6feb97fbd2c ******/ %feature("compactdefaultargs") AddBounds; %feature("autodoc", " Parameters @@ -4638,8 +4638,8 @@ No available documentation. ") AddBounds; void AddBounds(const opencascade::handle & Bounds); - /****************** AddUEdges ******************/ - /**** md5 signature: 019276b5dde572686ddaf24b92531b81 ****/ + /****** BRepFill_TrimShellCorner::AddUEdges ******/ + /****** md5 signature: 019276b5dde572686ddaf24b92531b81 ******/ %feature("compactdefaultargs") AddUEdges; %feature("autodoc", " Parameters @@ -4656,8 +4656,8 @@ No available documentation. ") AddUEdges; void AddUEdges(const opencascade::handle & theUEdges); - /****************** AddVEdges ******************/ - /**** md5 signature: 338ed3b1e2ba98094e3835a4935c4864 ****/ + /****** BRepFill_TrimShellCorner::AddVEdges ******/ + /****** md5 signature: 338ed3b1e2ba98094e3835a4935c4864 ******/ %feature("compactdefaultargs") AddVEdges; %feature("autodoc", " Parameters @@ -4675,8 +4675,8 @@ No available documentation. ") AddVEdges; void AddVEdges(const opencascade::handle & theVEdges, const Standard_Integer theIndex); - /****************** HasSection ******************/ - /**** md5 signature: 98a762424c2b8b56d60a7042e1613224 ****/ + /****** BRepFill_TrimShellCorner::HasSection ******/ + /****** md5 signature: 98a762424c2b8b56d60a7042e1613224 ******/ %feature("compactdefaultargs") HasSection; %feature("autodoc", "Return ------- @@ -4688,8 +4688,8 @@ No available documentation. ") HasSection; Standard_Boolean HasSection(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepFill_TrimShellCorner::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -4701,8 +4701,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** Modified ******************/ - /**** md5 signature: f81cf8201833ba1619b2e9297e442305 ****/ + /****** BRepFill_TrimShellCorner::Modified ******/ + /****** md5 signature: f81cf8201833ba1619b2e9297e442305 ******/ %feature("compactdefaultargs") Modified; %feature("autodoc", " Parameters @@ -4720,8 +4720,8 @@ No available documentation. ") Modified; void Modified(const TopoDS_Shape & S, TopTools_ListOfShape & theModified); - /****************** Perform ******************/ - /**** md5 signature: c04b01412cba7220c024b5eb4532697f ****/ + /****** BRepFill_TrimShellCorner::Perform ******/ + /****** md5 signature: c04b01412cba7220c024b5eb4532697f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", "Return ------- @@ -4747,8 +4747,8 @@ No available documentation. *********************************/ class BRepFill_TrimSurfaceTool { public: - /****************** BRepFill_TrimSurfaceTool ******************/ - /**** md5 signature: 687ffb167ac8420b3538447d155a9c2e ****/ + /****** BRepFill_TrimSurfaceTool::BRepFill_TrimSurfaceTool ******/ + /****** md5 signature: 687ffb167ac8420b3538447d155a9c2e ******/ %feature("compactdefaultargs") BRepFill_TrimSurfaceTool; %feature("autodoc", " Parameters @@ -4771,8 +4771,8 @@ No available documentation. ") BRepFill_TrimSurfaceTool; BRepFill_TrimSurfaceTool(const opencascade::handle & Bis, const TopoDS_Face & Face1, const TopoDS_Face & Face2, const TopoDS_Edge & Edge1, const TopoDS_Edge & Edge2, const Standard_Boolean Inv1, const Standard_Boolean Inv2); - /****************** IntersectWith ******************/ - /**** md5 signature: dfce88de574620a98400827e2dbf9c14 ****/ + /****** BRepFill_TrimSurfaceTool::IntersectWith ******/ + /****** md5 signature: dfce88de574620a98400827e2dbf9c14 ******/ %feature("compactdefaultargs") IntersectWith; %feature("autodoc", " Parameters @@ -4791,8 +4791,8 @@ Intersect with the projection of the edges and returns the inte ") IntersectWith; void IntersectWith(const TopoDS_Edge & EdgeOnF1, const TopoDS_Edge & EdgeOnF2, TColgp_SequenceOfPnt & Points); - /****************** IsOnFace ******************/ - /**** md5 signature: d6a8f88d8d2b38d19fbe3df805bac5b8 ****/ + /****** BRepFill_TrimSurfaceTool::IsOnFace ******/ + /****** md5 signature: d6a8f88d8d2b38d19fbe3df805bac5b8 ******/ %feature("compactdefaultargs") IsOnFace; %feature("autodoc", " Parameters @@ -4809,8 +4809,8 @@ Returns true if the line (p, dz) intersect the faces. ") IsOnFace; Standard_Boolean IsOnFace(const gp_Pnt2d & Point); - /****************** ProjOn ******************/ - /**** md5 signature: ac17addb66304c3bd74131762028e6e1 ****/ + /****** BRepFill_TrimSurfaceTool::ProjOn ******/ + /****** md5 signature: ac17addb66304c3bd74131762028e6e1 ******/ %feature("compactdefaultargs") ProjOn; %feature("autodoc", " Parameters @@ -4828,8 +4828,8 @@ Returns the parameter of the point on the edge , assuming that the ") ProjOn; Standard_Real ProjOn(const gp_Pnt2d & Point, const TopoDS_Edge & Edge); - /****************** Project ******************/ - /**** md5 signature: 729c9c8c03dd73c9392eb2dbe88f9049 ****/ + /****** BRepFill_TrimSurfaceTool::Project ******/ + /****** md5 signature: 729c9c8c03dd73c9392eb2dbe88f9049 ******/ %feature("compactdefaultargs") Project; %feature("autodoc", " Parameters @@ -4865,8 +4865,8 @@ No available documentation. ************************/ class BRepFill_ACRLaw : public BRepFill_LocationLaw { public: - /****************** BRepFill_ACRLaw ******************/ - /**** md5 signature: 5bd642d9de88bc8646f8a34711618e0d ****/ + /****** BRepFill_ACRLaw::BRepFill_ACRLaw ******/ + /****** md5 signature: 5bd642d9de88bc8646f8a34711618e0d ******/ %feature("compactdefaultargs") BRepFill_ACRLaw; %feature("autodoc", " Parameters @@ -4900,8 +4900,8 @@ No available documentation. ***************************/ class BRepFill_Edge3DLaw : public BRepFill_LocationLaw { public: - /****************** BRepFill_Edge3DLaw ******************/ - /**** md5 signature: 089e9516c0b066432399a72644b58029 ****/ + /****** BRepFill_Edge3DLaw::BRepFill_Edge3DLaw ******/ + /****** md5 signature: 089e9516c0b066432399a72644b58029 ******/ %feature("compactdefaultargs") BRepFill_Edge3DLaw; %feature("autodoc", " Parameters @@ -4935,8 +4935,8 @@ No available documentation. *******************************/ class BRepFill_EdgeOnSurfLaw : public BRepFill_LocationLaw { public: - /****************** BRepFill_EdgeOnSurfLaw ******************/ - /**** md5 signature: 13919471c170841dd3a9c1a117b35fde ****/ + /****** BRepFill_EdgeOnSurfLaw::BRepFill_EdgeOnSurfLaw ******/ + /****** md5 signature: 13919471c170841dd3a9c1a117b35fde ******/ %feature("compactdefaultargs") BRepFill_EdgeOnSurfLaw; %feature("autodoc", " Parameters @@ -4954,8 +4954,8 @@ No available documentation. ") BRepFill_EdgeOnSurfLaw; BRepFill_EdgeOnSurfLaw(const TopoDS_Wire & Path, const TopoDS_Shape & Surf); - /****************** HasResult ******************/ - /**** md5 signature: 345d4b0f7e88f528928167976d8256d5 ****/ + /****** BRepFill_EdgeOnSurfLaw::HasResult ******/ + /****** md5 signature: 345d4b0f7e88f528928167976d8256d5 ******/ %feature("compactdefaultargs") HasResult; %feature("autodoc", "Return ------- @@ -4983,8 +4983,8 @@ Returns if one edge of do not have representation on . in t ***************************/ class BRepFill_NSections : public BRepFill_SectionLaw { public: - /****************** BRepFill_NSections ******************/ - /**** md5 signature: 3b127eaf407cfcc5930986d01296f429 ****/ + /****** BRepFill_NSections::BRepFill_NSections ******/ + /****** md5 signature: 3b127eaf407cfcc5930986d01296f429 ******/ %feature("compactdefaultargs") BRepFill_NSections; %feature("autodoc", " Parameters @@ -5002,8 +5002,8 @@ Construct. ") BRepFill_NSections; BRepFill_NSections(const TopTools_SequenceOfShape & S, const Standard_Boolean Build = Standard_True); - /****************** BRepFill_NSections ******************/ - /**** md5 signature: 43eecd6730511becf0529de67a23dc5f ****/ + /****** BRepFill_NSections::BRepFill_NSections ******/ + /****** md5 signature: 43eecd6730511becf0529de67a23dc5f ******/ %feature("compactdefaultargs") BRepFill_NSections; %feature("autodoc", " Parameters @@ -5025,8 +5025,8 @@ Construct. ") BRepFill_NSections; BRepFill_NSections(const TopTools_SequenceOfShape & S, const GeomFill_SequenceOfTrsf & Trsfs, const TColStd_SequenceOfReal & P, const Standard_Real VF, const Standard_Real VL, const Standard_Boolean Build = Standard_True); - /****************** ConcatenedLaw ******************/ - /**** md5 signature: 4495106cbf0901c13e169216aea3ff82 ****/ + /****** BRepFill_NSections::ConcatenedLaw ******/ + /****** md5 signature: 4495106cbf0901c13e169216aea3ff82 ******/ %feature("compactdefaultargs") ConcatenedLaw; %feature("autodoc", "Return ------- @@ -5038,8 +5038,8 @@ Give the law build on a concatenated section. ") ConcatenedLaw; virtual opencascade::handle ConcatenedLaw(); - /****************** Continuity ******************/ - /**** md5 signature: a0e903623d8c6b4c441db63330dfde38 ****/ + /****** BRepFill_NSections::Continuity ******/ + /****** md5 signature: a0e903623d8c6b4c441db63330dfde38 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", " Parameters @@ -5057,8 +5057,8 @@ No available documentation. ") Continuity; virtual GeomAbs_Shape Continuity(const Standard_Integer Index, const Standard_Real TolAngular); - /****************** D0 ******************/ - /**** md5 signature: de496c8c897345c41ec4327b5afb7dea ****/ + /****** BRepFill_NSections::D0 ******/ + /****** md5 signature: de496c8c897345c41ec4327b5afb7dea ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -5076,8 +5076,8 @@ No available documentation. ") D0; virtual void D0(const Standard_Real Param, TopoDS_Shape & S); - /****************** IsConstant ******************/ - /**** md5 signature: 117737bfe11f2fa5e6c2b702110a9201 ****/ + /****** BRepFill_NSections::IsConstant ******/ + /****** md5 signature: 117737bfe11f2fa5e6c2b702110a9201 ******/ %feature("compactdefaultargs") IsConstant; %feature("autodoc", "Return ------- @@ -5089,8 +5089,8 @@ Say if the law is constant. ") IsConstant; virtual Standard_Boolean IsConstant(); - /****************** IsVertex ******************/ - /**** md5 signature: 9153c2b3b3fc32dd6aea02d7fc3fe588 ****/ + /****** BRepFill_NSections::IsVertex ******/ + /****** md5 signature: 9153c2b3b3fc32dd6aea02d7fc3fe588 ******/ %feature("compactdefaultargs") IsVertex; %feature("autodoc", "Return ------- @@ -5102,8 +5102,8 @@ Say if the input shape is a vertex. ") IsVertex; virtual Standard_Boolean IsVertex(); - /****************** Vertex ******************/ - /**** md5 signature: 50d7f598881fad0d7b254edf83197d3e ****/ + /****** BRepFill_NSections::Vertex ******/ + /****** md5 signature: 50d7f598881fad0d7b254edf83197d3e ******/ %feature("compactdefaultargs") Vertex; %feature("autodoc", " Parameters @@ -5121,8 +5121,8 @@ No available documentation. ") Vertex; virtual TopoDS_Vertex Vertex(const Standard_Integer Index, const Standard_Real Param); - /****************** VertexTol ******************/ - /**** md5 signature: b5ecc9a4e833886cbbedfc54fe0fbfe1 ****/ + /****** BRepFill_NSections::VertexTol ******/ + /****** md5 signature: b5ecc9a4e833886cbbedfc54fe0fbfe1 ******/ %feature("compactdefaultargs") VertexTol; %feature("autodoc", " Parameters @@ -5156,8 +5156,8 @@ No available documentation. **************************/ class BRepFill_ShapeLaw : public BRepFill_SectionLaw { public: - /****************** BRepFill_ShapeLaw ******************/ - /**** md5 signature: 804d5b8a2aaf6f667f9324c438ea4a53 ****/ + /****** BRepFill_ShapeLaw::BRepFill_ShapeLaw ******/ + /****** md5 signature: 804d5b8a2aaf6f667f9324c438ea4a53 ******/ %feature("compactdefaultargs") BRepFill_ShapeLaw; %feature("autodoc", " Parameters @@ -5175,8 +5175,8 @@ Construct an constant law. ") BRepFill_ShapeLaw; BRepFill_ShapeLaw(const TopoDS_Vertex & V, const Standard_Boolean Build = Standard_True); - /****************** BRepFill_ShapeLaw ******************/ - /**** md5 signature: ee190a317b630a8646b4a6469c6f1c8d ****/ + /****** BRepFill_ShapeLaw::BRepFill_ShapeLaw ******/ + /****** md5 signature: ee190a317b630a8646b4a6469c6f1c8d ******/ %feature("compactdefaultargs") BRepFill_ShapeLaw; %feature("autodoc", " Parameters @@ -5194,8 +5194,8 @@ Construct an constant law. ") BRepFill_ShapeLaw; BRepFill_ShapeLaw(const TopoDS_Wire & W, const Standard_Boolean Build = Standard_True); - /****************** BRepFill_ShapeLaw ******************/ - /**** md5 signature: fa6043e626b799fda28670fe3f6b4517 ****/ + /****** BRepFill_ShapeLaw::BRepFill_ShapeLaw ******/ + /****** md5 signature: fa6043e626b799fda28670fe3f6b4517 ******/ %feature("compactdefaultargs") BRepFill_ShapeLaw; %feature("autodoc", " Parameters @@ -5214,8 +5214,8 @@ Construct an evolutive law. ") BRepFill_ShapeLaw; BRepFill_ShapeLaw(const TopoDS_Wire & W, const opencascade::handle & L, const Standard_Boolean Build = Standard_True); - /****************** ConcatenedLaw ******************/ - /**** md5 signature: 4495106cbf0901c13e169216aea3ff82 ****/ + /****** BRepFill_ShapeLaw::ConcatenedLaw ******/ + /****** md5 signature: 4495106cbf0901c13e169216aea3ff82 ******/ %feature("compactdefaultargs") ConcatenedLaw; %feature("autodoc", "Return ------- @@ -5227,8 +5227,8 @@ Give the law build on a concatenated section. ") ConcatenedLaw; virtual opencascade::handle ConcatenedLaw(); - /****************** Continuity ******************/ - /**** md5 signature: a0e903623d8c6b4c441db63330dfde38 ****/ + /****** BRepFill_ShapeLaw::Continuity ******/ + /****** md5 signature: a0e903623d8c6b4c441db63330dfde38 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", " Parameters @@ -5246,8 +5246,8 @@ No available documentation. ") Continuity; virtual GeomAbs_Shape Continuity(const Standard_Integer Index, const Standard_Real TolAngular); - /****************** D0 ******************/ - /**** md5 signature: de496c8c897345c41ec4327b5afb7dea ****/ + /****** BRepFill_ShapeLaw::D0 ******/ + /****** md5 signature: de496c8c897345c41ec4327b5afb7dea ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -5265,8 +5265,8 @@ No available documentation. ") D0; virtual void D0(const Standard_Real Param, TopoDS_Shape & S); - /****************** Edge ******************/ - /**** md5 signature: 8a7ac08a45b8dcdac4d9e0339f1c1d47 ****/ + /****** BRepFill_ShapeLaw::Edge ******/ + /****** md5 signature: 8a7ac08a45b8dcdac4d9e0339f1c1d47 ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", " Parameters @@ -5283,8 +5283,8 @@ No available documentation. ") Edge; const TopoDS_Edge Edge(const Standard_Integer Index); - /****************** IsConstant ******************/ - /**** md5 signature: 117737bfe11f2fa5e6c2b702110a9201 ****/ + /****** BRepFill_ShapeLaw::IsConstant ******/ + /****** md5 signature: 117737bfe11f2fa5e6c2b702110a9201 ******/ %feature("compactdefaultargs") IsConstant; %feature("autodoc", "Return ------- @@ -5296,8 +5296,8 @@ Say if the law is constant. ") IsConstant; virtual Standard_Boolean IsConstant(); - /****************** IsVertex ******************/ - /**** md5 signature: 9153c2b3b3fc32dd6aea02d7fc3fe588 ****/ + /****** BRepFill_ShapeLaw::IsVertex ******/ + /****** md5 signature: 9153c2b3b3fc32dd6aea02d7fc3fe588 ******/ %feature("compactdefaultargs") IsVertex; %feature("autodoc", "Return ------- @@ -5309,8 +5309,8 @@ Say if the input shape is a vertex. ") IsVertex; virtual Standard_Boolean IsVertex(); - /****************** Vertex ******************/ - /**** md5 signature: 50d7f598881fad0d7b254edf83197d3e ****/ + /****** BRepFill_ShapeLaw::Vertex ******/ + /****** md5 signature: 50d7f598881fad0d7b254edf83197d3e ******/ %feature("compactdefaultargs") Vertex; %feature("autodoc", " Parameters @@ -5328,8 +5328,8 @@ No available documentation. ") Vertex; virtual TopoDS_Vertex Vertex(const Standard_Integer Index, const Standard_Real Param); - /****************** VertexTol ******************/ - /**** md5 signature: b5ecc9a4e833886cbbedfc54fe0fbfe1 ****/ + /****** BRepFill_ShapeLaw::VertexTol ******/ + /****** md5 signature: b5ecc9a4e833886cbbedfc54fe0fbfe1 ******/ %feature("compactdefaultargs") VertexTol; %feature("autodoc", " Parameters @@ -5363,8 +5363,8 @@ No available documentation. **************************/ class BRepFill_DraftLaw : public BRepFill_Edge3DLaw { public: - /****************** BRepFill_DraftLaw ******************/ - /**** md5 signature: 336aea22a96a446dbf1fdad6e645325b ****/ + /****** BRepFill_DraftLaw::BRepFill_DraftLaw ******/ + /****** md5 signature: 336aea22a96a446dbf1fdad6e645325b ******/ %feature("compactdefaultargs") BRepFill_DraftLaw; %feature("autodoc", " Parameters @@ -5382,8 +5382,8 @@ No available documentation. ") BRepFill_DraftLaw; BRepFill_DraftLaw(const TopoDS_Wire & Path, const opencascade::handle & Law); - /****************** CleanLaw ******************/ - /**** md5 signature: 2b27d5bd295509401a1b6283d637cfa3 ****/ + /****** BRepFill_DraftLaw::CleanLaw ******/ + /****** md5 signature: 2b27d5bd295509401a1b6283d637cfa3 ******/ %feature("compactdefaultargs") CleanLaw; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BRepFilletAPI.i b/src/SWIG_files/wrapper/BRepFilletAPI.i index c50855cb6..7ec7038a2 100644 --- a/src/SWIG_files/wrapper/BRepFilletAPI.i +++ b/src/SWIG_files/wrapper/BRepFilletAPI.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPFILLETAPIDOCSTRING "BRepFilletAPI module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepfilletapi.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepfilletapi.html" %enddef %module (package="OCC.Core", docstring=BREPFILLETAPIDOCSTRING) BRepFilletAPI @@ -129,8 +129,8 @@ from OCC.Core.Exception import * %nodefaultctor BRepFilletAPI_LocalOperation; class BRepFilletAPI_LocalOperation : public BRepBuilderAPI_MakeShape { public: - /****************** Abscissa ******************/ - /**** md5 signature: 685e083950278023fe2b9d91e626c310 ****/ + /****** BRepFilletAPI_LocalOperation::Abscissa ******/ + /****** md5 signature: 685e083950278023fe2b9d91e626c310 ******/ %feature("compactdefaultargs") Abscissa; %feature("autodoc", " Parameters @@ -148,8 +148,8 @@ Returns the abscissa of the vertex v on the contour of index ic. ") Abscissa; virtual Standard_Real Abscissa(const Standard_Integer IC, const TopoDS_Vertex & V); - /****************** Add ******************/ - /**** md5 signature: fa4475fe7d476e3c0ff5b6872b6ef406 ****/ + /****** BRepFilletAPI_LocalOperation::Add ******/ + /****** md5 signature: fa4475fe7d476e3c0ff5b6872b6ef406 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -166,8 +166,8 @@ Adds a contour in the builder (builds a contour of tangent edges). ") Add; virtual void Add(const TopoDS_Edge & E); - /****************** Closed ******************/ - /**** md5 signature: f2d784ec091d16f009d0d4abc551e18b ****/ + /****** BRepFilletAPI_LocalOperation::Closed ******/ + /****** md5 signature: f2d784ec091d16f009d0d4abc551e18b ******/ %feature("compactdefaultargs") Closed; %feature("autodoc", " Parameters @@ -184,8 +184,8 @@ Returns true if the contour of index ic is closed. ") Closed; virtual Standard_Boolean Closed(const Standard_Integer IC); - /****************** ClosedAndTangent ******************/ - /**** md5 signature: 1df34df9ea5699ae9fcdd7a0c6ab3c55 ****/ + /****** BRepFilletAPI_LocalOperation::ClosedAndTangent ******/ + /****** md5 signature: 1df34df9ea5699ae9fcdd7a0c6ab3c55 ******/ %feature("compactdefaultargs") ClosedAndTangent; %feature("autodoc", " Parameters @@ -202,8 +202,8 @@ Returns true if the contour of index ic is closed an tangent. ") ClosedAndTangent; virtual Standard_Boolean ClosedAndTangent(const Standard_Integer IC); - /****************** Contour ******************/ - /**** md5 signature: 1607262cdb3fdc43409df2c8a047c158 ****/ + /****** BRepFilletAPI_LocalOperation::Contour ******/ + /****** md5 signature: 1607262cdb3fdc43409df2c8a047c158 ******/ %feature("compactdefaultargs") Contour; %feature("autodoc", " Parameters @@ -220,8 +220,8 @@ Returns the index of the contour containing the edge e, returns 0 if e doesn't b ") Contour; virtual Standard_Integer Contour(const TopoDS_Edge & E); - /****************** Edge ******************/ - /**** md5 signature: 2a378aa85054fbc60ebbc3bdb4291706 ****/ + /****** BRepFilletAPI_LocalOperation::Edge ******/ + /****** md5 signature: 2a378aa85054fbc60ebbc3bdb4291706 ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", " Parameters @@ -239,8 +239,8 @@ Returns the edge j in the contour i. ") Edge; virtual const TopoDS_Edge Edge(const Standard_Integer I, const Standard_Integer J); - /****************** FirstVertex ******************/ - /**** md5 signature: edb62d0dca7e84966df1dbe4e0db231c ****/ + /****** BRepFilletAPI_LocalOperation::FirstVertex ******/ + /****** md5 signature: edb62d0dca7e84966df1dbe4e0db231c ******/ %feature("compactdefaultargs") FirstVertex; %feature("autodoc", " Parameters @@ -257,8 +257,8 @@ Returns the first vertex of the contour of index ic. ") FirstVertex; virtual TopoDS_Vertex FirstVertex(const Standard_Integer IC); - /****************** LastVertex ******************/ - /**** md5 signature: 2e51a665fa486cdad69aedcddc5ea895 ****/ + /****** BRepFilletAPI_LocalOperation::LastVertex ******/ + /****** md5 signature: 2e51a665fa486cdad69aedcddc5ea895 ******/ %feature("compactdefaultargs") LastVertex; %feature("autodoc", " Parameters @@ -275,8 +275,8 @@ Returns the last vertex of the contour of index ic. ") LastVertex; virtual TopoDS_Vertex LastVertex(const Standard_Integer IC); - /****************** Length ******************/ - /**** md5 signature: 0f5990c23bfb7630f4521985cdc20661 ****/ + /****** BRepFilletAPI_LocalOperation::Length ******/ + /****** md5 signature: 0f5990c23bfb7630f4521985cdc20661 ******/ %feature("compactdefaultargs") Length; %feature("autodoc", " Parameters @@ -293,8 +293,8 @@ Returns the length the contour of index ic. ") Length; virtual Standard_Real Length(const Standard_Integer IC); - /****************** NbContours ******************/ - /**** md5 signature: 216a86c7df03a7204f8e36c8397a6655 ****/ + /****** BRepFilletAPI_LocalOperation::NbContours ******/ + /****** md5 signature: 216a86c7df03a7204f8e36c8397a6655 ******/ %feature("compactdefaultargs") NbContours; %feature("autodoc", "Return ------- @@ -306,8 +306,8 @@ Number of contours. ") NbContours; virtual Standard_Integer NbContours(); - /****************** NbEdges ******************/ - /**** md5 signature: ff08d209d81fcffcec0e93a4234fa2ef ****/ + /****** BRepFilletAPI_LocalOperation::NbEdges ******/ + /****** md5 signature: ff08d209d81fcffcec0e93a4234fa2ef ******/ %feature("compactdefaultargs") NbEdges; %feature("autodoc", " Parameters @@ -324,8 +324,8 @@ Number of edges in the contour i. ") NbEdges; virtual Standard_Integer NbEdges(const Standard_Integer I); - /****************** NbSurf ******************/ - /**** md5 signature: 94758173fa1bc551c9a4816d5c798655 ****/ + /****** BRepFilletAPI_LocalOperation::NbSurf ******/ + /****** md5 signature: 94758173fa1bc551c9a4816d5c798655 ******/ %feature("compactdefaultargs") NbSurf; %feature("autodoc", " Parameters @@ -342,8 +342,8 @@ No available documentation. ") NbSurf; virtual Standard_Integer NbSurf(const Standard_Integer IC); - /****************** RelativeAbscissa ******************/ - /**** md5 signature: 9ec2ec7fe6fa93a375ae95e6fb6df5c7 ****/ + /****** BRepFilletAPI_LocalOperation::RelativeAbscissa ******/ + /****** md5 signature: 9ec2ec7fe6fa93a375ae95e6fb6df5c7 ******/ %feature("compactdefaultargs") RelativeAbscissa; %feature("autodoc", " Parameters @@ -361,8 +361,8 @@ Returns the relative abscissa([0.,1.]) of the vertex v on the contour of index i ") RelativeAbscissa; virtual Standard_Real RelativeAbscissa(const Standard_Integer IC, const TopoDS_Vertex & V); - /****************** Remove ******************/ - /**** md5 signature: 72f5f0c292d497568578946495770c65 ****/ + /****** BRepFilletAPI_LocalOperation::Remove ******/ + /****** md5 signature: 72f5f0c292d497568578946495770c65 ******/ %feature("compactdefaultargs") Remove; %feature("autodoc", " Parameters @@ -379,8 +379,8 @@ Remove the contour containing the edge e. ") Remove; virtual void Remove(const TopoDS_Edge & E); - /****************** Reset ******************/ - /**** md5 signature: aae28a27b63a433889d7410d7f53fa36 ****/ + /****** BRepFilletAPI_LocalOperation::Reset ******/ + /****** md5 signature: aae28a27b63a433889d7410d7f53fa36 ******/ %feature("compactdefaultargs") Reset; %feature("autodoc", "Return ------- @@ -392,8 +392,8 @@ Reset all the fields updated by build operation and leave the algorithm in the s ") Reset; virtual void Reset(); - /****************** ResetContour ******************/ - /**** md5 signature: 3360e863d75166c0b2ec93eb0a91d780 ****/ + /****** BRepFilletAPI_LocalOperation::ResetContour ******/ + /****** md5 signature: 3360e863d75166c0b2ec93eb0a91d780 ******/ %feature("compactdefaultargs") ResetContour; %feature("autodoc", " Parameters @@ -410,8 +410,8 @@ Reset the contour of index ic, there is nomore information in the contour. ") ResetContour; virtual void ResetContour(const Standard_Integer IC); - /****************** Sect ******************/ - /**** md5 signature: 588b4bb4aa019a8430a3bad93265ed84 ****/ + /****** BRepFilletAPI_LocalOperation::Sect ******/ + /****** md5 signature: 588b4bb4aa019a8430a3bad93265ed84 ******/ %feature("compactdefaultargs") Sect; %feature("autodoc", " Parameters @@ -429,8 +429,8 @@ No available documentation. ") Sect; virtual opencascade::handle Sect(const Standard_Integer IC, const Standard_Integer IS); - /****************** Simulate ******************/ - /**** md5 signature: b64707fafea4ebf580114b623febba83 ****/ + /****** BRepFilletAPI_LocalOperation::Simulate ******/ + /****** md5 signature: b64707fafea4ebf580114b623febba83 ******/ %feature("compactdefaultargs") Simulate; %feature("autodoc", " Parameters @@ -461,8 +461,8 @@ No available documentation. ***********************************/ class BRepFilletAPI_MakeFillet2d : public BRepBuilderAPI_MakeShape { public: - /****************** BRepFilletAPI_MakeFillet2d ******************/ - /**** md5 signature: 21c99b8730600fc6f2b7825df55cfd09 ****/ + /****** BRepFilletAPI_MakeFillet2d::BRepFilletAPI_MakeFillet2d ******/ + /****** md5 signature: 21c99b8730600fc6f2b7825df55cfd09 ******/ %feature("compactdefaultargs") BRepFilletAPI_MakeFillet2d; %feature("autodoc", "Return ------- @@ -474,8 +474,8 @@ Initializes an empty algorithm for computing fillets and chamfers. the face on w ") BRepFilletAPI_MakeFillet2d; BRepFilletAPI_MakeFillet2d(); - /****************** BRepFilletAPI_MakeFillet2d ******************/ - /**** md5 signature: 04e9ad8a32ac3c41b5c80a5c2b17d511 ****/ + /****** BRepFilletAPI_MakeFillet2d::BRepFilletAPI_MakeFillet2d ******/ + /****** md5 signature: 04e9ad8a32ac3c41b5c80a5c2b17d511 ******/ %feature("compactdefaultargs") BRepFilletAPI_MakeFillet2d; %feature("autodoc", " Parameters @@ -492,8 +492,8 @@ Initializes an algorithm for computing fillets and chamfers on the face f. the v ") BRepFilletAPI_MakeFillet2d; BRepFilletAPI_MakeFillet2d(const TopoDS_Face & F); - /****************** AddChamfer ******************/ - /**** md5 signature: 8ab56100a5f8fd93f4f3849863205ed2 ****/ + /****** BRepFilletAPI_MakeFillet2d::AddChamfer ******/ + /****** md5 signature: 8ab56100a5f8fd93f4f3849863205ed2 ******/ %feature("compactdefaultargs") AddChamfer; %feature("autodoc", " Parameters @@ -513,8 +513,8 @@ Adds a chamfer on the face modified by this algorithm between the two adjacent e ") AddChamfer; TopoDS_Edge AddChamfer(const TopoDS_Edge & E1, const TopoDS_Edge & E2, const Standard_Real D1, const Standard_Real D2); - /****************** AddChamfer ******************/ - /**** md5 signature: 08ba1f2a5a80f3f12155f274e5ccf476 ****/ + /****** BRepFilletAPI_MakeFillet2d::AddChamfer ******/ + /****** md5 signature: 08ba1f2a5a80f3f12155f274e5ccf476 ******/ %feature("compactdefaultargs") AddChamfer; %feature("autodoc", " Parameters @@ -534,8 +534,8 @@ Adds a chamfer on the face modified by this algorithm between the two edges conn ") AddChamfer; TopoDS_Edge AddChamfer(const TopoDS_Edge & E, const TopoDS_Vertex & V, const Standard_Real D, const Standard_Real Ang); - /****************** AddFillet ******************/ - /**** md5 signature: 0537608457b4aa5c0d47332a8668ac27 ****/ + /****** BRepFilletAPI_MakeFillet2d::AddFillet ******/ + /****** md5 signature: 0537608457b4aa5c0d47332a8668ac27 ******/ %feature("compactdefaultargs") AddFillet; %feature("autodoc", " Parameters @@ -553,8 +553,8 @@ Adds a fillet of radius radius between the two edges adjacent to the vertex v on ") AddFillet; TopoDS_Edge AddFillet(const TopoDS_Vertex & V, const Standard_Real Radius); - /****************** BasisEdge ******************/ - /**** md5 signature: c244b8627d4ba515112f85786021bf15 ****/ + /****** BRepFilletAPI_MakeFillet2d::BasisEdge ******/ + /****** md5 signature: c244b8627d4ba515112f85786021bf15 ******/ %feature("compactdefaultargs") BasisEdge; %feature("autodoc", " Parameters @@ -571,8 +571,8 @@ Returns the basis edge on the face modified by this algorithm from which the cha ") BasisEdge; const TopoDS_Edge BasisEdge(const TopoDS_Edge & E); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepFilletAPI_MakeFillet2d::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -589,8 +589,8 @@ Update the result and set the done flag. ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** ChamferEdges ******************/ - /**** md5 signature: 66edbe74780ce3ab689192aa27e7b595 ****/ + /****** BRepFilletAPI_MakeFillet2d::ChamferEdges ******/ + /****** md5 signature: 66edbe74780ce3ab689192aa27e7b595 ******/ %feature("compactdefaultargs") ChamferEdges; %feature("autodoc", "Return ------- @@ -602,8 +602,8 @@ Returns the table of chamfers on the face modified by this algorithm. ") ChamferEdges; const TopTools_SequenceOfShape & ChamferEdges(); - /****************** DescendantEdge ******************/ - /**** md5 signature: aeb8944df5eff8bc10450ec6f2cf0e76 ****/ + /****** BRepFilletAPI_MakeFillet2d::DescendantEdge ******/ + /****** md5 signature: aeb8944df5eff8bc10450ec6f2cf0e76 ******/ %feature("compactdefaultargs") DescendantEdge; %feature("autodoc", " Parameters @@ -620,8 +620,8 @@ Returns the chamfered or filleted edge built from the edge e on the face modifie ") DescendantEdge; const TopoDS_Edge DescendantEdge(const TopoDS_Edge & E); - /****************** FilletEdges ******************/ - /**** md5 signature: 937d4c9906e8077f48db789584514415 ****/ + /****** BRepFilletAPI_MakeFillet2d::FilletEdges ******/ + /****** md5 signature: 937d4c9906e8077f48db789584514415 ******/ %feature("compactdefaultargs") FilletEdges; %feature("autodoc", "Return ------- @@ -633,8 +633,8 @@ Returns the table of fillets on the face modified by this algorithm. ") FilletEdges; const TopTools_SequenceOfShape & FilletEdges(); - /****************** HasDescendant ******************/ - /**** md5 signature: 0541f95951f0773111d16c04ab78f51f ****/ + /****** BRepFilletAPI_MakeFillet2d::HasDescendant ******/ + /****** md5 signature: 0541f95951f0773111d16c04ab78f51f ******/ %feature("compactdefaultargs") HasDescendant; %feature("autodoc", " Parameters @@ -651,8 +651,8 @@ No available documentation. ") HasDescendant; Standard_Boolean HasDescendant(const TopoDS_Edge & E); - /****************** Init ******************/ - /**** md5 signature: a8dfaa68079e743e08190fe58d950a9a ****/ + /****** BRepFilletAPI_MakeFillet2d::Init ******/ + /****** md5 signature: a8dfaa68079e743e08190fe58d950a9a ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -669,8 +669,8 @@ Initializes this algorithm for constructing fillets or chamfers with the face f. ") Init; void Init(const TopoDS_Face & F); - /****************** Init ******************/ - /**** md5 signature: 7b460233038b2f415eaddf1e321fc705 ****/ + /****** BRepFilletAPI_MakeFillet2d::Init ******/ + /****** md5 signature: 7b460233038b2f415eaddf1e321fc705 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -688,8 +688,8 @@ This initialize method allow to init the builder from a face refface and another ") Init; void Init(const TopoDS_Face & RefFace, const TopoDS_Face & ModFace); - /****************** IsModified ******************/ - /**** md5 signature: 16d68e049352482fa8e513ef481ee475 ****/ + /****** BRepFilletAPI_MakeFillet2d::IsModified ******/ + /****** md5 signature: 16d68e049352482fa8e513ef481ee475 ******/ %feature("compactdefaultargs") IsModified; %feature("autodoc", " Parameters @@ -706,8 +706,8 @@ Returns true if the edge e on the face modified by this algorithm is chamfered o ") IsModified; Standard_Boolean IsModified(const TopoDS_Edge & E); - /****************** Modified ******************/ - /**** md5 signature: 73ccfe97b4ed94547a190332224ffe23 ****/ + /****** BRepFilletAPI_MakeFillet2d::Modified ******/ + /****** md5 signature: 73ccfe97b4ed94547a190332224ffe23 ******/ %feature("compactdefaultargs") Modified; %feature("autodoc", " Parameters @@ -724,8 +724,8 @@ Returns the list of shapes modified from the shape . ") Modified; virtual const TopTools_ListOfShape & Modified(const TopoDS_Shape & S); - /****************** ModifyChamfer ******************/ - /**** md5 signature: f4b34f1306057c0cc8ca5f84d6421d3a ****/ + /****** BRepFilletAPI_MakeFillet2d::ModifyChamfer ******/ + /****** md5 signature: f4b34f1306057c0cc8ca5f84d6421d3a ******/ %feature("compactdefaultargs") ModifyChamfer; %feature("autodoc", " Parameters @@ -746,8 +746,8 @@ Modifies the chamfer chamfer on the face modified by this algorithm, where: e1 a ") ModifyChamfer; TopoDS_Edge ModifyChamfer(const TopoDS_Edge & Chamfer, const TopoDS_Edge & E1, const TopoDS_Edge & E2, const Standard_Real D1, const Standard_Real D2); - /****************** ModifyChamfer ******************/ - /**** md5 signature: 5dc8140e76c07e7e78ad0bb92d51e1c8 ****/ + /****** BRepFilletAPI_MakeFillet2d::ModifyChamfer ******/ + /****** md5 signature: 5dc8140e76c07e7e78ad0bb92d51e1c8 ******/ %feature("compactdefaultargs") ModifyChamfer; %feature("autodoc", " Parameters @@ -767,8 +767,8 @@ Modifies the chamfer chamfer on the face modified by this algorithm, where: e is ") ModifyChamfer; TopoDS_Edge ModifyChamfer(const TopoDS_Edge & Chamfer, const TopoDS_Edge & E, const Standard_Real D, const Standard_Real Ang); - /****************** ModifyFillet ******************/ - /**** md5 signature: 4ba37be14168b13373613def465683a2 ****/ + /****** BRepFilletAPI_MakeFillet2d::ModifyFillet ******/ + /****** md5 signature: 4ba37be14168b13373613def465683a2 ******/ %feature("compactdefaultargs") ModifyFillet; %feature("autodoc", " Parameters @@ -786,8 +786,8 @@ Assigns the radius radius to the fillet fillet already built on the face modifie ") ModifyFillet; TopoDS_Edge ModifyFillet(const TopoDS_Edge & Fillet, const Standard_Real Radius); - /****************** NbChamfer ******************/ - /**** md5 signature: 1531286606ef0261ac4850615d79f229 ****/ + /****** BRepFilletAPI_MakeFillet2d::NbChamfer ******/ + /****** md5 signature: 1531286606ef0261ac4850615d79f229 ******/ %feature("compactdefaultargs") NbChamfer; %feature("autodoc", "Return ------- @@ -799,8 +799,8 @@ Returns the number of chamfers on the face modified by this algorithm. ") NbChamfer; Standard_Integer NbChamfer(); - /****************** NbCurves ******************/ - /**** md5 signature: f7f6dbd981df076443155a5a87b5c223 ****/ + /****** BRepFilletAPI_MakeFillet2d::NbCurves ******/ + /****** md5 signature: f7f6dbd981df076443155a5a87b5c223 ******/ %feature("compactdefaultargs") NbCurves; %feature("autodoc", "Return ------- @@ -812,8 +812,8 @@ Returns the number of new curves after the shape creation. ") NbCurves; Standard_Integer NbCurves(); - /****************** NbFillet ******************/ - /**** md5 signature: 213e984e2e53209ba86769e63c780c6f ****/ + /****** BRepFilletAPI_MakeFillet2d::NbFillet ******/ + /****** md5 signature: 213e984e2e53209ba86769e63c780c6f ******/ %feature("compactdefaultargs") NbFillet; %feature("autodoc", "Return ------- @@ -825,8 +825,8 @@ Returns the number of fillets on the face modified by this algorithm. ") NbFillet; Standard_Integer NbFillet(); - /****************** NewEdges ******************/ - /**** md5 signature: f5408bd77e64eab07f4d88d1d6f0f96e ****/ + /****** BRepFilletAPI_MakeFillet2d::NewEdges ******/ + /****** md5 signature: f5408bd77e64eab07f4d88d1d6f0f96e ******/ %feature("compactdefaultargs") NewEdges; %feature("autodoc", " Parameters @@ -843,8 +843,8 @@ Return the edges created for curve i. ") NewEdges; const TopTools_ListOfShape & NewEdges(const Standard_Integer I); - /****************** RemoveChamfer ******************/ - /**** md5 signature: e2fe904642b9955c8a660d5a9fc1f9db ****/ + /****** BRepFilletAPI_MakeFillet2d::RemoveChamfer ******/ + /****** md5 signature: e2fe904642b9955c8a660d5a9fc1f9db ******/ %feature("compactdefaultargs") RemoveChamfer; %feature("autodoc", " Parameters @@ -861,8 +861,8 @@ Removes the chamfer chamfer already built on the face modified by this algorithm ") RemoveChamfer; TopoDS_Vertex RemoveChamfer(const TopoDS_Edge & Chamfer); - /****************** RemoveFillet ******************/ - /**** md5 signature: c523feaddfccc8fecd7b796c40383670 ****/ + /****** BRepFilletAPI_MakeFillet2d::RemoveFillet ******/ + /****** md5 signature: c523feaddfccc8fecd7b796c40383670 ******/ %feature("compactdefaultargs") RemoveFillet; %feature("autodoc", " Parameters @@ -879,8 +879,8 @@ Removes the fillet fillet already built on the face modified by this algorithm. ") RemoveFillet; TopoDS_Vertex RemoveFillet(const TopoDS_Edge & Fillet); - /****************** Status ******************/ - /**** md5 signature: d156d199c4dfd8fe1ae3da07b3861e60 ****/ + /****** BRepFilletAPI_MakeFillet2d::Status ******/ + /****** md5 signature: d156d199c4dfd8fe1ae3da07b3861e60 ******/ %feature("compactdefaultargs") Status; %feature("autodoc", "Return ------- @@ -906,8 +906,8 @@ No available documentation. **********************************/ class BRepFilletAPI_MakeChamfer : public BRepFilletAPI_LocalOperation { public: - /****************** BRepFilletAPI_MakeChamfer ******************/ - /**** md5 signature: 71d1fe71808ad8a56af47ed3fabdc3c6 ****/ + /****** BRepFilletAPI_MakeChamfer::BRepFilletAPI_MakeChamfer ******/ + /****** md5 signature: 71d1fe71808ad8a56af47ed3fabdc3c6 ******/ %feature("compactdefaultargs") BRepFilletAPI_MakeChamfer; %feature("autodoc", " Parameters @@ -924,8 +924,8 @@ Initializes an algorithm for computing chamfers on the shape s. the edges on whi ") BRepFilletAPI_MakeChamfer; BRepFilletAPI_MakeChamfer(const TopoDS_Shape & S); - /****************** Abscissa ******************/ - /**** md5 signature: c1272cd99453d3fe75c78a84b1ec93d1 ****/ + /****** BRepFilletAPI_MakeChamfer::Abscissa ******/ + /****** md5 signature: c1272cd99453d3fe75c78a84b1ec93d1 ******/ %feature("compactdefaultargs") Abscissa; %feature("autodoc", " Parameters @@ -943,8 +943,8 @@ Returns the curvilinear abscissa of the vertex v on the contour of index ic in t ") Abscissa; Standard_Real Abscissa(const Standard_Integer IC, const TopoDS_Vertex & V); - /****************** Add ******************/ - /**** md5 signature: 158dbe27a95f019f3e3e393c416defb6 ****/ + /****** BRepFilletAPI_MakeChamfer::Add ******/ + /****** md5 signature: 158dbe27a95f019f3e3e393c416defb6 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -961,8 +961,8 @@ Adds edge e to the table of edges used by this algorithm to build chamfers, wher ") Add; void Add(const TopoDS_Edge & E); - /****************** Add ******************/ - /**** md5 signature: 5df832e06f6a2a3e7dd74bbc479baf92 ****/ + /****** BRepFilletAPI_MakeChamfer::Add ******/ + /****** md5 signature: 5df832e06f6a2a3e7dd74bbc479baf92 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -980,8 +980,8 @@ Adds edge e to the table of edges used by this algorithm to build chamfers, wher ") Add; void Add(const Standard_Real Dis, const TopoDS_Edge & E); - /****************** Add ******************/ - /**** md5 signature: 3d413aacf4fbe519a69cb102312acd8a ****/ + /****** BRepFilletAPI_MakeChamfer::Add ******/ + /****** md5 signature: 3d413aacf4fbe519a69cb102312acd8a ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1001,8 +1001,8 @@ Adds edge e to the table of edges used by this algorithm to build chamfers, wher ") Add; void Add(const Standard_Real Dis1, const Standard_Real Dis2, const TopoDS_Edge & E, const TopoDS_Face & F); - /****************** AddDA ******************/ - /**** md5 signature: b13fc907617fc4fffa48eb6ecc1c875f ****/ + /****** BRepFilletAPI_MakeChamfer::AddDA ******/ + /****** md5 signature: b13fc907617fc4fffa48eb6ecc1c875f ******/ %feature("compactdefaultargs") AddDA; %feature("autodoc", " Parameters @@ -1022,8 +1022,8 @@ Adds a fillet contour in the builder (builds a contour of tangent edges to a ") AddDA; void AddDA(const Standard_Real Dis, const Standard_Real Angle, const TopoDS_Edge & E, const TopoDS_Face & F); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepFilletAPI_MakeChamfer::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -1040,8 +1040,8 @@ Builds the chamfers on all the contours in the internal data structure of this a ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Builder ******************/ - /**** md5 signature: c97c63149316e999abd03e780cc959bf ****/ + /****** BRepFilletAPI_MakeChamfer::Builder ******/ + /****** md5 signature: c97c63149316e999abd03e780cc959bf ******/ %feature("compactdefaultargs") Builder; %feature("autodoc", "Return ------- @@ -1053,8 +1053,8 @@ Returns the internal filleting algorithm. ") Builder; opencascade::handle Builder(); - /****************** Closed ******************/ - /**** md5 signature: 02e6c60b8d9f01dfb5d5e38943449890 ****/ + /****** BRepFilletAPI_MakeChamfer::Closed ******/ + /****** md5 signature: 02e6c60b8d9f01dfb5d5e38943449890 ******/ %feature("compactdefaultargs") Closed; %feature("autodoc", " Parameters @@ -1071,8 +1071,8 @@ Returns true if the contour of index ic in the internal data structure of this a ") Closed; Standard_Boolean Closed(const Standard_Integer IC); - /****************** ClosedAndTangent ******************/ - /**** md5 signature: 6a080251cdf7f6c13ec7fa541b691f34 ****/ + /****** BRepFilletAPI_MakeChamfer::ClosedAndTangent ******/ + /****** md5 signature: 6a080251cdf7f6c13ec7fa541b691f34 ******/ %feature("compactdefaultargs") ClosedAndTangent; %feature("autodoc", " Parameters @@ -1089,8 +1089,8 @@ Eturns true if the contour of index ic in the internal data structure of this al ") ClosedAndTangent; Standard_Boolean ClosedAndTangent(const Standard_Integer IC); - /****************** Contour ******************/ - /**** md5 signature: 0012e08d6c558bf532f57f5b5c94b6f4 ****/ + /****** BRepFilletAPI_MakeChamfer::Contour ******/ + /****** md5 signature: 0012e08d6c558bf532f57f5b5c94b6f4 ******/ %feature("compactdefaultargs") Contour; %feature("autodoc", " Parameters @@ -1107,8 +1107,8 @@ Returns the index of the contour in the internal data structure of this algorith ") Contour; Standard_Integer Contour(const TopoDS_Edge & E); - /****************** Dists ******************/ - /**** md5 signature: 25b55d4bd35e93f2afa86c7ba6682d7e ****/ + /****** BRepFilletAPI_MakeChamfer::Dists ******/ + /****** md5 signature: 25b55d4bd35e93f2afa86c7ba6682d7e ******/ %feature("compactdefaultargs") Dists; %feature("autodoc", " Parameters @@ -1126,8 +1126,8 @@ Returns the distances dis1 and dis2 which give the parameters of the chamfer alo ") Dists; void Dists(const Standard_Integer IC, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Edge ******************/ - /**** md5 signature: ab0618f3051f6e1cc81d0a14c9610b1a ****/ + /****** BRepFilletAPI_MakeChamfer::Edge ******/ + /****** md5 signature: ab0618f3051f6e1cc81d0a14c9610b1a ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", " Parameters @@ -1145,8 +1145,8 @@ Returns the edge of index j in the contour of index i in the internal data struc ") Edge; const TopoDS_Edge Edge(const Standard_Integer I, const Standard_Integer J); - /****************** FirstVertex ******************/ - /**** md5 signature: a262ebc40fb5085f0b2791b9b6e04cb4 ****/ + /****** BRepFilletAPI_MakeChamfer::FirstVertex ******/ + /****** md5 signature: a262ebc40fb5085f0b2791b9b6e04cb4 ******/ %feature("compactdefaultargs") FirstVertex; %feature("autodoc", " Parameters @@ -1163,8 +1163,8 @@ Returns the first vertex of the contour of index ic in the internal data structu ") FirstVertex; TopoDS_Vertex FirstVertex(const Standard_Integer IC); - /****************** Generated ******************/ - /**** md5 signature: 13e8506b1710abf403653a8e5186dd7b ****/ + /****** BRepFilletAPI_MakeChamfer::Generated ******/ + /****** md5 signature: 13e8506b1710abf403653a8e5186dd7b ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -1181,8 +1181,8 @@ Returns the list of shapes generated from the shape . ") Generated; virtual const TopTools_ListOfShape & Generated(const TopoDS_Shape & EorV); - /****************** GetDist ******************/ - /**** md5 signature: 84c7d3c61b94e48d768b0bb3c4924f47 ****/ + /****** BRepFilletAPI_MakeChamfer::GetDist ******/ + /****** md5 signature: 84c7d3c61b94e48d768b0bb3c4924f47 ******/ %feature("compactdefaultargs") GetDist; %feature("autodoc", " Parameters @@ -1199,8 +1199,8 @@ No available documentation. ") GetDist; void GetDist(const Standard_Integer IC, Standard_Real &OutValue); - /****************** GetDistAngle ******************/ - /**** md5 signature: ccc047433212c6a4b18b05da6f614d32 ****/ + /****** BRepFilletAPI_MakeChamfer::GetDistAngle ******/ + /****** md5 signature: ccc047433212c6a4b18b05da6f614d32 ******/ %feature("compactdefaultargs") GetDistAngle; %feature("autodoc", " Parameters @@ -1218,8 +1218,8 @@ Gives the distances and of the fillet contour of index in the ") GetDistAngle; void GetDistAngle(const Standard_Integer IC, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** IsDeleted ******************/ - /**** md5 signature: 1a016772dc188bec4b890b93a447dc5d ****/ + /****** BRepFilletAPI_MakeChamfer::IsDeleted ******/ + /****** md5 signature: 1a016772dc188bec4b890b93a447dc5d ******/ %feature("compactdefaultargs") IsDeleted; %feature("autodoc", " Parameters @@ -1236,8 +1236,8 @@ No available documentation. ") IsDeleted; virtual Standard_Boolean IsDeleted(const TopoDS_Shape & F); - /****************** IsDistanceAngle ******************/ - /**** md5 signature: d91abadc207eb1a15585586c73ec6c95 ****/ + /****** BRepFilletAPI_MakeChamfer::IsDistanceAngle ******/ + /****** md5 signature: d91abadc207eb1a15585586c73ec6c95 ******/ %feature("compactdefaultargs") IsDistanceAngle; %feature("autodoc", " Parameters @@ -1254,8 +1254,8 @@ Return true if chamfer is made with distance and angle false else. ") IsDistanceAngle; Standard_Boolean IsDistanceAngle(const Standard_Integer IC); - /****************** IsSymetric ******************/ - /**** md5 signature: e834faba1d738c1f857cbe69bcf685bd ****/ + /****** BRepFilletAPI_MakeChamfer::IsSymetric ******/ + /****** md5 signature: e834faba1d738c1f857cbe69bcf685bd ******/ %feature("compactdefaultargs") IsSymetric; %feature("autodoc", " Parameters @@ -1272,8 +1272,8 @@ Return true if chamfer symmetric false else. ") IsSymetric; Standard_Boolean IsSymetric(const Standard_Integer IC); - /****************** IsTwoDistances ******************/ - /**** md5 signature: 1fcaf0cb56b0e2d373cb7ba4451660a9 ****/ + /****** BRepFilletAPI_MakeChamfer::IsTwoDistances ******/ + /****** md5 signature: 1fcaf0cb56b0e2d373cb7ba4451660a9 ******/ %feature("compactdefaultargs") IsTwoDistances; %feature("autodoc", " Parameters @@ -1290,8 +1290,8 @@ Return true if chamfer is made with two distances false else. ") IsTwoDistances; Standard_Boolean IsTwoDistances(const Standard_Integer IC); - /****************** LastVertex ******************/ - /**** md5 signature: b468acdc6948a696cfe4165f7db11707 ****/ + /****** BRepFilletAPI_MakeChamfer::LastVertex ******/ + /****** md5 signature: b468acdc6948a696cfe4165f7db11707 ******/ %feature("compactdefaultargs") LastVertex; %feature("autodoc", " Parameters @@ -1308,8 +1308,8 @@ Returns the last vertex of the contour of index ic in the internal data structur ") LastVertex; TopoDS_Vertex LastVertex(const Standard_Integer IC); - /****************** Length ******************/ - /**** md5 signature: 45912d0a5b273ecda386becc07851efe ****/ + /****** BRepFilletAPI_MakeChamfer::Length ******/ + /****** md5 signature: 45912d0a5b273ecda386becc07851efe ******/ %feature("compactdefaultargs") Length; %feature("autodoc", " Parameters @@ -1326,8 +1326,8 @@ Returns the length of the contour of index ic in the internal data structure of ") Length; Standard_Real Length(const Standard_Integer IC); - /****************** Modified ******************/ - /**** md5 signature: d47f6d180f47cfcfacc0413e7ca407b6 ****/ + /****** BRepFilletAPI_MakeChamfer::Modified ******/ + /****** md5 signature: d47f6d180f47cfcfacc0413e7ca407b6 ******/ %feature("compactdefaultargs") Modified; %feature("autodoc", " Parameters @@ -1344,8 +1344,8 @@ Returns the list of shapes modified from the shape . ") Modified; virtual const TopTools_ListOfShape & Modified(const TopoDS_Shape & F); - /****************** NbContours ******************/ - /**** md5 signature: 96cfb7456cba5a5f3d9829cc0a5d6cff ****/ + /****** BRepFilletAPI_MakeChamfer::NbContours ******/ + /****** md5 signature: 96cfb7456cba5a5f3d9829cc0a5d6cff ******/ %feature("compactdefaultargs") NbContours; %feature("autodoc", "Return ------- @@ -1357,8 +1357,8 @@ Returns the number of contours generated using the add function in the internal ") NbContours; Standard_Integer NbContours(); - /****************** NbEdges ******************/ - /**** md5 signature: bcdcd6136c58b5ad06794eab61b25047 ****/ + /****** BRepFilletAPI_MakeChamfer::NbEdges ******/ + /****** md5 signature: bcdcd6136c58b5ad06794eab61b25047 ******/ %feature("compactdefaultargs") NbEdges; %feature("autodoc", " Parameters @@ -1375,8 +1375,8 @@ Returns the number of edges in the contour of index i in the internal data struc ") NbEdges; Standard_Integer NbEdges(const Standard_Integer I); - /****************** NbSurf ******************/ - /**** md5 signature: 19ca6ce4b38bdddfb7a66dc59f24630c ****/ + /****** BRepFilletAPI_MakeChamfer::NbSurf ******/ + /****** md5 signature: 19ca6ce4b38bdddfb7a66dc59f24630c ******/ %feature("compactdefaultargs") NbSurf; %feature("autodoc", " Parameters @@ -1393,8 +1393,8 @@ No available documentation. ") NbSurf; Standard_Integer NbSurf(const Standard_Integer IC); - /****************** RelativeAbscissa ******************/ - /**** md5 signature: 026d361ab8f3164945f4338c5f2d9fa0 ****/ + /****** BRepFilletAPI_MakeChamfer::RelativeAbscissa ******/ + /****** md5 signature: 026d361ab8f3164945f4338c5f2d9fa0 ******/ %feature("compactdefaultargs") RelativeAbscissa; %feature("autodoc", " Parameters @@ -1412,8 +1412,8 @@ Returns the relative curvilinear abscissa (i.e. between 0 and 1) of the vertex v ") RelativeAbscissa; Standard_Real RelativeAbscissa(const Standard_Integer IC, const TopoDS_Vertex & V); - /****************** Remove ******************/ - /**** md5 signature: babf336eaca6f4d92baa94dc54d40636 ****/ + /****** BRepFilletAPI_MakeChamfer::Remove ******/ + /****** md5 signature: babf336eaca6f4d92baa94dc54d40636 ******/ %feature("compactdefaultargs") Remove; %feature("autodoc", " Parameters @@ -1430,8 +1430,8 @@ Removes the contour in the internal data structure of this algorithm which conta ") Remove; void Remove(const TopoDS_Edge & E); - /****************** Reset ******************/ - /**** md5 signature: cb8313136e29e24d2daa65a71dcb185d ****/ + /****** BRepFilletAPI_MakeChamfer::Reset ******/ + /****** md5 signature: cb8313136e29e24d2daa65a71dcb185d ******/ %feature("compactdefaultargs") Reset; %feature("autodoc", "Return ------- @@ -1443,8 +1443,8 @@ Reinitializes this algorithm, thus canceling the effects of the build function. ") Reset; void Reset(); - /****************** ResetContour ******************/ - /**** md5 signature: d313242387b63d0161ab68e3714287cc ****/ + /****** BRepFilletAPI_MakeChamfer::ResetContour ******/ + /****** md5 signature: d313242387b63d0161ab68e3714287cc ******/ %feature("compactdefaultargs") ResetContour; %feature("autodoc", " Parameters @@ -1461,8 +1461,8 @@ Erases the chamfer parameters on the contour of index ic in the internal data st ") ResetContour; void ResetContour(const Standard_Integer IC); - /****************** Sect ******************/ - /**** md5 signature: 4858fd2ad3b58a420ddec56998ee716c ****/ + /****** BRepFilletAPI_MakeChamfer::Sect ******/ + /****** md5 signature: 4858fd2ad3b58a420ddec56998ee716c ******/ %feature("compactdefaultargs") Sect; %feature("autodoc", " Parameters @@ -1480,8 +1480,8 @@ No available documentation. ") Sect; opencascade::handle Sect(const Standard_Integer IC, const Standard_Integer IS); - /****************** SetDist ******************/ - /**** md5 signature: 789e30011f188a91019292809e2bc8e3 ****/ + /****** BRepFilletAPI_MakeChamfer::SetDist ******/ + /****** md5 signature: 789e30011f188a91019292809e2bc8e3 ******/ %feature("compactdefaultargs") SetDist; %feature("autodoc", " Parameters @@ -1500,8 +1500,8 @@ Sets the distances dis1 and dis2 which give the parameters of the chamfer along ") SetDist; void SetDist(const Standard_Real Dis, const Standard_Integer IC, const TopoDS_Face & F); - /****************** SetDistAngle ******************/ - /**** md5 signature: 9a08ff085bc7ed451624212f4387c5cd ****/ + /****** BRepFilletAPI_MakeChamfer::SetDistAngle ******/ + /****** md5 signature: 9a08ff085bc7ed451624212f4387c5cd ******/ %feature("compactdefaultargs") SetDistAngle; %feature("autodoc", " Parameters @@ -1521,8 +1521,8 @@ Set the distance and of the fillet contour of index in the ds ") SetDistAngle; void SetDistAngle(const Standard_Real Dis, const Standard_Real Angle, const Standard_Integer IC, const TopoDS_Face & F); - /****************** SetDists ******************/ - /**** md5 signature: 74f8c6096ad0cd9495a44c102ab48955 ****/ + /****** BRepFilletAPI_MakeChamfer::SetDists ******/ + /****** md5 signature: 74f8c6096ad0cd9495a44c102ab48955 ******/ %feature("compactdefaultargs") SetDists; %feature("autodoc", " Parameters @@ -1542,8 +1542,8 @@ Sets the distances dis1 and dis2 which give the parameters of the chamfer along ") SetDists; void SetDists(const Standard_Real Dis1, const Standard_Real Dis2, const Standard_Integer IC, const TopoDS_Face & F); - /****************** SetMode ******************/ - /**** md5 signature: 85103d8a8712f2721bdad80918d54319 ****/ + /****** BRepFilletAPI_MakeChamfer::SetMode ******/ + /****** md5 signature: 85103d8a8712f2721bdad80918d54319 ******/ %feature("compactdefaultargs") SetMode; %feature("autodoc", " Parameters @@ -1560,8 +1560,8 @@ Sets the mode of chamfer. ") SetMode; void SetMode(const ChFiDS_ChamfMode theMode); - /****************** Simulate ******************/ - /**** md5 signature: 1ea1b1b8e2a939c9afdcc43cb9cc1b70 ****/ + /****** BRepFilletAPI_MakeChamfer::Simulate ******/ + /****** md5 signature: 1ea1b1b8e2a939c9afdcc43cb9cc1b70 ******/ %feature("compactdefaultargs") Simulate; %feature("autodoc", " Parameters @@ -1592,8 +1592,8 @@ No available documentation. *********************************/ class BRepFilletAPI_MakeFillet : public BRepFilletAPI_LocalOperation { public: - /****************** BRepFilletAPI_MakeFillet ******************/ - /**** md5 signature: 10078f81c5a13ef2eb4ab7d106d6b8da ****/ + /****** BRepFilletAPI_MakeFillet::BRepFilletAPI_MakeFillet ******/ + /****** md5 signature: 10078f81c5a13ef2eb4ab7d106d6b8da ******/ %feature("compactdefaultargs") BRepFilletAPI_MakeFillet; %feature("autodoc", " Parameters @@ -1611,8 +1611,8 @@ Initializes the computation of the fillets. sets the type of fillet sur ") BRepFilletAPI_MakeFillet; BRepFilletAPI_MakeFillet(const TopoDS_Shape & S, const ChFi3d_FilletShape FShape = ChFi3d_Rational); - /****************** Abscissa ******************/ - /**** md5 signature: c1272cd99453d3fe75c78a84b1ec93d1 ****/ + /****** BRepFilletAPI_MakeFillet::Abscissa ******/ + /****** md5 signature: c1272cd99453d3fe75c78a84b1ec93d1 ******/ %feature("compactdefaultargs") Abscissa; %feature("autodoc", " Parameters @@ -1630,8 +1630,8 @@ Returns the curvilinear abscissa of the vertex v on the contour of index ic in t ") Abscissa; Standard_Real Abscissa(const Standard_Integer IC, const TopoDS_Vertex & V); - /****************** Add ******************/ - /**** md5 signature: 158dbe27a95f019f3e3e393c416defb6 ****/ + /****** BRepFilletAPI_MakeFillet::Add ******/ + /****** md5 signature: 158dbe27a95f019f3e3e393c416defb6 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1648,8 +1648,8 @@ Adds a fillet contour in the builder (builds a contour of tangent edges). the ra ") Add; void Add(const TopoDS_Edge & E); - /****************** Add ******************/ - /**** md5 signature: 76561d24a6bc7a4c8b9703f8ada723d1 ****/ + /****** BRepFilletAPI_MakeFillet::Add ******/ + /****** md5 signature: 76561d24a6bc7a4c8b9703f8ada723d1 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1667,8 +1667,8 @@ Adds a fillet description in the builder - builds a contour of tangent edges, - ") Add; void Add(const Standard_Real Radius, const TopoDS_Edge & E); - /****************** Add ******************/ - /**** md5 signature: 12a5f893581949820526de05e3822fe9 ****/ + /****** BRepFilletAPI_MakeFillet::Add ******/ + /****** md5 signature: 12a5f893581949820526de05e3822fe9 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1687,8 +1687,8 @@ Adds a fillet description in the builder - builds a contour of tangent edges, - ") Add; void Add(const Standard_Real R1, const Standard_Real R2, const TopoDS_Edge & E); - /****************** Add ******************/ - /**** md5 signature: 323e3737fe1d3ccf8c86d064e231c839 ****/ + /****** BRepFilletAPI_MakeFillet::Add ******/ + /****** md5 signature: 323e3737fe1d3ccf8c86d064e231c839 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1706,8 +1706,8 @@ Adds a fillet description in the builder - builds a contour of tangent edges, - ") Add; void Add(const opencascade::handle & L, const TopoDS_Edge & E); - /****************** Add ******************/ - /**** md5 signature: f2b501b589860daa800328e43cf6d72c ****/ + /****** BRepFilletAPI_MakeFillet::Add ******/ + /****** md5 signature: f2b501b589860daa800328e43cf6d72c ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1725,8 +1725,8 @@ Adds a fillet description in the builder - builds a contour of tangent edges, - ") Add; void Add(const TColgp_Array1OfPnt2d & UandR, const TopoDS_Edge & E); - /****************** BadShape ******************/ - /**** md5 signature: bc4bc683dd2daee18cd73177f824f6ce ****/ + /****** BRepFilletAPI_MakeFillet::BadShape ******/ + /****** md5 signature: bc4bc683dd2daee18cd73177f824f6ce ******/ %feature("compactdefaultargs") BadShape; %feature("autodoc", "Return ------- @@ -1738,8 +1738,8 @@ If (hasresult()) returns the partial result. ") BadShape; TopoDS_Shape BadShape(); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepFilletAPI_MakeFillet::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -1756,8 +1756,8 @@ Builds the fillets on all the contours in the internal data structure of this al ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Builder ******************/ - /**** md5 signature: c97c63149316e999abd03e780cc959bf ****/ + /****** BRepFilletAPI_MakeFillet::Builder ******/ + /****** md5 signature: c97c63149316e999abd03e780cc959bf ******/ %feature("compactdefaultargs") Builder; %feature("autodoc", "Return ------- @@ -1769,8 +1769,8 @@ Returns the internal topology building algorithm. ") Builder; opencascade::handle Builder(); - /****************** Closed ******************/ - /**** md5 signature: 02e6c60b8d9f01dfb5d5e38943449890 ****/ + /****** BRepFilletAPI_MakeFillet::Closed ******/ + /****** md5 signature: 02e6c60b8d9f01dfb5d5e38943449890 ******/ %feature("compactdefaultargs") Closed; %feature("autodoc", " Parameters @@ -1787,8 +1787,8 @@ Returns true if the contour of index ic in the internal data structure of this a ") Closed; Standard_Boolean Closed(const Standard_Integer IC); - /****************** ClosedAndTangent ******************/ - /**** md5 signature: 6a080251cdf7f6c13ec7fa541b691f34 ****/ + /****** BRepFilletAPI_MakeFillet::ClosedAndTangent ******/ + /****** md5 signature: 6a080251cdf7f6c13ec7fa541b691f34 ******/ %feature("compactdefaultargs") ClosedAndTangent; %feature("autodoc", " Parameters @@ -1805,8 +1805,8 @@ Returns true if the contour of index ic in the internal data structure of this a ") ClosedAndTangent; Standard_Boolean ClosedAndTangent(const Standard_Integer IC); - /****************** ComputedSurface ******************/ - /**** md5 signature: 96c489b28233f30f53d28540eaf6a6c2 ****/ + /****** BRepFilletAPI_MakeFillet::ComputedSurface ******/ + /****** md5 signature: 96c489b28233f30f53d28540eaf6a6c2 ******/ %feature("compactdefaultargs") ComputedSurface; %feature("autodoc", " Parameters @@ -1824,8 +1824,8 @@ Returns the surface number is concerning the contour ic. ") ComputedSurface; opencascade::handle ComputedSurface(const Standard_Integer IC, const Standard_Integer IS); - /****************** Contour ******************/ - /**** md5 signature: 0012e08d6c558bf532f57f5b5c94b6f4 ****/ + /****** BRepFilletAPI_MakeFillet::Contour ******/ + /****** md5 signature: 0012e08d6c558bf532f57f5b5c94b6f4 ******/ %feature("compactdefaultargs") Contour; %feature("autodoc", " Parameters @@ -1842,8 +1842,8 @@ Returns the index of the contour in the internal data structure of this algorith ") Contour; Standard_Integer Contour(const TopoDS_Edge & E); - /****************** Edge ******************/ - /**** md5 signature: ab0618f3051f6e1cc81d0a14c9610b1a ****/ + /****** BRepFilletAPI_MakeFillet::Edge ******/ + /****** md5 signature: ab0618f3051f6e1cc81d0a14c9610b1a ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", " Parameters @@ -1861,8 +1861,8 @@ Returns the edge of index j in the contour of index i in the internal data struc ") Edge; const TopoDS_Edge Edge(const Standard_Integer I, const Standard_Integer J); - /****************** FaultyContour ******************/ - /**** md5 signature: 21156686a769d644f96890ea34047e80 ****/ + /****** BRepFilletAPI_MakeFillet::FaultyContour ******/ + /****** md5 signature: 21156686a769d644f96890ea34047e80 ******/ %feature("compactdefaultargs") FaultyContour; %feature("autodoc", " Parameters @@ -1879,8 +1879,8 @@ For each i in [1.. nbfaultycontours] returns the index ic of the contour where t ") FaultyContour; Standard_Integer FaultyContour(const Standard_Integer I); - /****************** FaultyVertex ******************/ - /**** md5 signature: a045d17950f9e0d223a11a5a00a22d52 ****/ + /****** BRepFilletAPI_MakeFillet::FaultyVertex ******/ + /****** md5 signature: a045d17950f9e0d223a11a5a00a22d52 ******/ %feature("compactdefaultargs") FaultyVertex; %feature("autodoc", " Parameters @@ -1897,8 +1897,8 @@ Returns the vertex where the computation failed. ") FaultyVertex; TopoDS_Vertex FaultyVertex(const Standard_Integer IV); - /****************** FirstVertex ******************/ - /**** md5 signature: a262ebc40fb5085f0b2791b9b6e04cb4 ****/ + /****** BRepFilletAPI_MakeFillet::FirstVertex ******/ + /****** md5 signature: a262ebc40fb5085f0b2791b9b6e04cb4 ******/ %feature("compactdefaultargs") FirstVertex; %feature("autodoc", " Parameters @@ -1915,8 +1915,8 @@ Returns the first vertex of the contour of index ic in the internal data structu ") FirstVertex; TopoDS_Vertex FirstVertex(const Standard_Integer IC); - /****************** Generated ******************/ - /**** md5 signature: 13e8506b1710abf403653a8e5186dd7b ****/ + /****** BRepFilletAPI_MakeFillet::Generated ******/ + /****** md5 signature: 13e8506b1710abf403653a8e5186dd7b ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -1933,8 +1933,8 @@ Returns the list of shapes generated from the shape . ") Generated; virtual const TopTools_ListOfShape & Generated(const TopoDS_Shape & EorV); - /****************** GetBounds ******************/ - /**** md5 signature: a514948d9789a32d7fd6a1f1678a9740 ****/ + /****** BRepFilletAPI_MakeFillet::GetBounds ******/ + /****** md5 signature: a514948d9789a32d7fd6a1f1678a9740 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -1953,8 +1953,8 @@ No available documentation. ") GetBounds; Standard_Boolean GetBounds(const Standard_Integer IC, const TopoDS_Edge & E, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** GetFilletShape ******************/ - /**** md5 signature: 20984b7354615dd8cd27c08187d0e0c2 ****/ + /****** BRepFilletAPI_MakeFillet::GetFilletShape ******/ + /****** md5 signature: 20984b7354615dd8cd27c08187d0e0c2 ******/ %feature("compactdefaultargs") GetFilletShape; %feature("autodoc", "Return ------- @@ -1966,8 +1966,8 @@ Returns the type of fillet shape built by this algorithm. ") GetFilletShape; ChFi3d_FilletShape GetFilletShape(); - /****************** GetLaw ******************/ - /**** md5 signature: ddf4e7699933a83df3959c22378f680c ****/ + /****** BRepFilletAPI_MakeFillet::GetLaw ******/ + /****** md5 signature: ddf4e7699933a83df3959c22378f680c ******/ %feature("compactdefaultargs") GetLaw; %feature("autodoc", " Parameters @@ -1985,8 +1985,8 @@ No available documentation. ") GetLaw; opencascade::handle GetLaw(const Standard_Integer IC, const TopoDS_Edge & E); - /****************** HasResult ******************/ - /**** md5 signature: 345d4b0f7e88f528928167976d8256d5 ****/ + /****** BRepFilletAPI_MakeFillet::HasResult ******/ + /****** md5 signature: 345d4b0f7e88f528928167976d8256d5 ******/ %feature("compactdefaultargs") HasResult; %feature("autodoc", "Return ------- @@ -1998,8 +1998,8 @@ Returns true if a part of the result has been computed if the filling in a corne ") HasResult; Standard_Boolean HasResult(); - /****************** IsConstant ******************/ - /**** md5 signature: 524ff18247c3bd6dd3b77ea2fbe631ab ****/ + /****** BRepFilletAPI_MakeFillet::IsConstant ******/ + /****** md5 signature: 524ff18247c3bd6dd3b77ea2fbe631ab ******/ %feature("compactdefaultargs") IsConstant; %feature("autodoc", " Parameters @@ -2016,8 +2016,8 @@ Returns true if the radius of the fillet along the contour of index ic in the in ") IsConstant; Standard_Boolean IsConstant(const Standard_Integer IC); - /****************** IsConstant ******************/ - /**** md5 signature: 257d5c150f15059bb7c72ce611d410fc ****/ + /****** BRepFilletAPI_MakeFillet::IsConstant ******/ + /****** md5 signature: 257d5c150f15059bb7c72ce611d410fc ******/ %feature("compactdefaultargs") IsConstant; %feature("autodoc", " Parameters @@ -2035,8 +2035,8 @@ Returns true if the radius of the fillet along the edge e of the contour of inde ") IsConstant; Standard_Boolean IsConstant(const Standard_Integer IC, const TopoDS_Edge & E); - /****************** IsDeleted ******************/ - /**** md5 signature: 1a016772dc188bec4b890b93a447dc5d ****/ + /****** BRepFilletAPI_MakeFillet::IsDeleted ******/ + /****** md5 signature: 1a016772dc188bec4b890b93a447dc5d ******/ %feature("compactdefaultargs") IsDeleted; %feature("autodoc", " Parameters @@ -2053,8 +2053,8 @@ No available documentation. ") IsDeleted; virtual Standard_Boolean IsDeleted(const TopoDS_Shape & F); - /****************** LastVertex ******************/ - /**** md5 signature: b468acdc6948a696cfe4165f7db11707 ****/ + /****** BRepFilletAPI_MakeFillet::LastVertex ******/ + /****** md5 signature: b468acdc6948a696cfe4165f7db11707 ******/ %feature("compactdefaultargs") LastVertex; %feature("autodoc", " Parameters @@ -2071,8 +2071,8 @@ Returns the last vertex of the contour of index ic in the internal data structur ") LastVertex; TopoDS_Vertex LastVertex(const Standard_Integer IC); - /****************** Length ******************/ - /**** md5 signature: 45912d0a5b273ecda386becc07851efe ****/ + /****** BRepFilletAPI_MakeFillet::Length ******/ + /****** md5 signature: 45912d0a5b273ecda386becc07851efe ******/ %feature("compactdefaultargs") Length; %feature("autodoc", " Parameters @@ -2089,8 +2089,8 @@ Returns the length of the contour of index ic in the internal data structure of ") Length; Standard_Real Length(const Standard_Integer IC); - /****************** Modified ******************/ - /**** md5 signature: d47f6d180f47cfcfacc0413e7ca407b6 ****/ + /****** BRepFilletAPI_MakeFillet::Modified ******/ + /****** md5 signature: d47f6d180f47cfcfacc0413e7ca407b6 ******/ %feature("compactdefaultargs") Modified; %feature("autodoc", " Parameters @@ -2107,8 +2107,8 @@ Returns the list of shapes modified from the shape . ") Modified; virtual const TopTools_ListOfShape & Modified(const TopoDS_Shape & F); - /****************** NbComputedSurfaces ******************/ - /**** md5 signature: 164cfd056526b3a43cae9bf77f5c8661 ****/ + /****** BRepFilletAPI_MakeFillet::NbComputedSurfaces ******/ + /****** md5 signature: 164cfd056526b3a43cae9bf77f5c8661 ******/ %feature("compactdefaultargs") NbComputedSurfaces; %feature("autodoc", " Parameters @@ -2125,8 +2125,8 @@ Returns the number of surfaces which have been computed on the contour ic. ") NbComputedSurfaces; Standard_Integer NbComputedSurfaces(const Standard_Integer IC); - /****************** NbContours ******************/ - /**** md5 signature: 96cfb7456cba5a5f3d9829cc0a5d6cff ****/ + /****** BRepFilletAPI_MakeFillet::NbContours ******/ + /****** md5 signature: 96cfb7456cba5a5f3d9829cc0a5d6cff ******/ %feature("compactdefaultargs") NbContours; %feature("autodoc", "Return ------- @@ -2138,8 +2138,8 @@ Returns the number of contours generated using the add function in the internal ") NbContours; Standard_Integer NbContours(); - /****************** NbEdges ******************/ - /**** md5 signature: bcdcd6136c58b5ad06794eab61b25047 ****/ + /****** BRepFilletAPI_MakeFillet::NbEdges ******/ + /****** md5 signature: bcdcd6136c58b5ad06794eab61b25047 ******/ %feature("compactdefaultargs") NbEdges; %feature("autodoc", " Parameters @@ -2156,8 +2156,8 @@ Returns the number of edges in the contour of index i in the internal data struc ") NbEdges; Standard_Integer NbEdges(const Standard_Integer I); - /****************** NbFaultyContours ******************/ - /**** md5 signature: f1fb95ba8b7e9b0d24a588c92bfcc422 ****/ + /****** BRepFilletAPI_MakeFillet::NbFaultyContours ******/ + /****** md5 signature: f1fb95ba8b7e9b0d24a588c92bfcc422 ******/ %feature("compactdefaultargs") NbFaultyContours; %feature("autodoc", "Return ------- @@ -2169,8 +2169,8 @@ Returns the number of contours where the computation of the fillet failed. ") NbFaultyContours; Standard_Integer NbFaultyContours(); - /****************** NbFaultyVertices ******************/ - /**** md5 signature: e14cf31fcf2094c6ecb0e40d167aeb3c ****/ + /****** BRepFilletAPI_MakeFillet::NbFaultyVertices ******/ + /****** md5 signature: e14cf31fcf2094c6ecb0e40d167aeb3c ******/ %feature("compactdefaultargs") NbFaultyVertices; %feature("autodoc", "Return ------- @@ -2182,8 +2182,8 @@ Returns the number of vertices where the computation failed. ") NbFaultyVertices; Standard_Integer NbFaultyVertices(); - /****************** NbSurf ******************/ - /**** md5 signature: 19ca6ce4b38bdddfb7a66dc59f24630c ****/ + /****** BRepFilletAPI_MakeFillet::NbSurf ******/ + /****** md5 signature: 19ca6ce4b38bdddfb7a66dc59f24630c ******/ %feature("compactdefaultargs") NbSurf; %feature("autodoc", " Parameters @@ -2200,8 +2200,8 @@ No available documentation. ") NbSurf; Standard_Integer NbSurf(const Standard_Integer IC); - /****************** NbSurfaces ******************/ - /**** md5 signature: fbc438e1ec12b28d849e6d0aeb23caaa ****/ + /****** BRepFilletAPI_MakeFillet::NbSurfaces ******/ + /****** md5 signature: fbc438e1ec12b28d849e6d0aeb23caaa ******/ %feature("compactdefaultargs") NbSurfaces; %feature("autodoc", "Return ------- @@ -2213,8 +2213,8 @@ Returns the number of surfaces after the shape creation. ") NbSurfaces; Standard_Integer NbSurfaces(); - /****************** NewFaces ******************/ - /**** md5 signature: 1dc1740674b05cd6d91d56cc7e21ab50 ****/ + /****** BRepFilletAPI_MakeFillet::NewFaces ******/ + /****** md5 signature: 1dc1740674b05cd6d91d56cc7e21ab50 ******/ %feature("compactdefaultargs") NewFaces; %feature("autodoc", " Parameters @@ -2231,8 +2231,8 @@ Return the faces created for surface . ") NewFaces; const TopTools_ListOfShape & NewFaces(const Standard_Integer I); - /****************** Radius ******************/ - /**** md5 signature: fa1b61b1f5b63be2bd1c45ff84f2e774 ****/ + /****** BRepFilletAPI_MakeFillet::Radius ******/ + /****** md5 signature: fa1b61b1f5b63be2bd1c45ff84f2e774 ******/ %feature("compactdefaultargs") Radius; %feature("autodoc", " Parameters @@ -2249,8 +2249,8 @@ Returns the radius of the fillet along the contour of index ic in the internal d ") Radius; Standard_Real Radius(const Standard_Integer IC); - /****************** Radius ******************/ - /**** md5 signature: f7159c67e3b0c71e38b6204368bc2c9e ****/ + /****** BRepFilletAPI_MakeFillet::Radius ******/ + /****** md5 signature: f7159c67e3b0c71e38b6204368bc2c9e ******/ %feature("compactdefaultargs") Radius; %feature("autodoc", " Parameters @@ -2268,8 +2268,8 @@ Returns the radius of the fillet along the edge e of the contour of index ic in ") Radius; Standard_Real Radius(const Standard_Integer IC, const TopoDS_Edge & E); - /****************** RelativeAbscissa ******************/ - /**** md5 signature: 026d361ab8f3164945f4338c5f2d9fa0 ****/ + /****** BRepFilletAPI_MakeFillet::RelativeAbscissa ******/ + /****** md5 signature: 026d361ab8f3164945f4338c5f2d9fa0 ******/ %feature("compactdefaultargs") RelativeAbscissa; %feature("autodoc", " Parameters @@ -2287,8 +2287,8 @@ Returns the relative curvilinear abscissa (i.e. between 0 and 1) of the vertex v ") RelativeAbscissa; Standard_Real RelativeAbscissa(const Standard_Integer IC, const TopoDS_Vertex & V); - /****************** Remove ******************/ - /**** md5 signature: babf336eaca6f4d92baa94dc54d40636 ****/ + /****** BRepFilletAPI_MakeFillet::Remove ******/ + /****** md5 signature: babf336eaca6f4d92baa94dc54d40636 ******/ %feature("compactdefaultargs") Remove; %feature("autodoc", " Parameters @@ -2305,8 +2305,8 @@ Removes the contour in the internal data structure of this algorithm which conta ") Remove; void Remove(const TopoDS_Edge & E); - /****************** Reset ******************/ - /**** md5 signature: cb8313136e29e24d2daa65a71dcb185d ****/ + /****** BRepFilletAPI_MakeFillet::Reset ******/ + /****** md5 signature: cb8313136e29e24d2daa65a71dcb185d ******/ %feature("compactdefaultargs") Reset; %feature("autodoc", "Return ------- @@ -2318,8 +2318,8 @@ Reinitializes this algorithm, thus canceling the effects of the build function. ") Reset; void Reset(); - /****************** ResetContour ******************/ - /**** md5 signature: d313242387b63d0161ab68e3714287cc ****/ + /****** BRepFilletAPI_MakeFillet::ResetContour ******/ + /****** md5 signature: d313242387b63d0161ab68e3714287cc ******/ %feature("compactdefaultargs") ResetContour; %feature("autodoc", " Parameters @@ -2336,8 +2336,8 @@ Erases the radius information on the contour of index ic in the internal data st ") ResetContour; void ResetContour(const Standard_Integer IC); - /****************** Sect ******************/ - /**** md5 signature: 4858fd2ad3b58a420ddec56998ee716c ****/ + /****** BRepFilletAPI_MakeFillet::Sect ******/ + /****** md5 signature: 4858fd2ad3b58a420ddec56998ee716c ******/ %feature("compactdefaultargs") Sect; %feature("autodoc", " Parameters @@ -2355,8 +2355,8 @@ No available documentation. ") Sect; opencascade::handle Sect(const Standard_Integer IC, const Standard_Integer IS); - /****************** SetContinuity ******************/ - /**** md5 signature: c492356a15562b146506665d8c5d1b77 ****/ + /****** BRepFilletAPI_MakeFillet::SetContinuity ******/ + /****** md5 signature: c492356a15562b146506665d8c5d1b77 ******/ %feature("compactdefaultargs") SetContinuity; %feature("autodoc", " Parameters @@ -2374,8 +2374,8 @@ Changes the parameters of continiuity internalcontinuity to produce fillet'surfa ") SetContinuity; void SetContinuity(const GeomAbs_Shape InternalContinuity, const Standard_Real AngularTolerance); - /****************** SetFilletShape ******************/ - /**** md5 signature: e06a9b29defc75fed749ac6b4289246e ****/ + /****** BRepFilletAPI_MakeFillet::SetFilletShape ******/ + /****** md5 signature: e06a9b29defc75fed749ac6b4289246e ******/ %feature("compactdefaultargs") SetFilletShape; %feature("autodoc", " Parameters @@ -2392,8 +2392,8 @@ Assigns fshape as the type of fillet shape built by this algorithm. ") SetFilletShape; void SetFilletShape(const ChFi3d_FilletShape FShape); - /****************** SetLaw ******************/ - /**** md5 signature: 6b759d0a0e31e3dac6b56c3c9951b79f ****/ + /****** BRepFilletAPI_MakeFillet::SetLaw ******/ + /****** md5 signature: 6b759d0a0e31e3dac6b56c3c9951b79f ******/ %feature("compactdefaultargs") SetLaw; %feature("autodoc", " Parameters @@ -2412,8 +2412,8 @@ No available documentation. ") SetLaw; void SetLaw(const Standard_Integer IC, const TopoDS_Edge & E, const opencascade::handle & L); - /****************** SetParams ******************/ - /**** md5 signature: dd3731c1527f95a9443df47a6b3a54d4 ****/ + /****** BRepFilletAPI_MakeFillet::SetParams ******/ + /****** md5 signature: dd3731c1527f95a9443df47a6b3a54d4 ******/ %feature("compactdefaultargs") SetParams; %feature("autodoc", " Parameters @@ -2435,8 +2435,8 @@ No available documentation. ") SetParams; void SetParams(const Standard_Real Tang, const Standard_Real Tesp, const Standard_Real T2d, const Standard_Real TApp3d, const Standard_Real TolApp2d, const Standard_Real Fleche); - /****************** SetRadius ******************/ - /**** md5 signature: bfcf0db73a6fdec8f7b106f7dde09942 ****/ + /****** BRepFilletAPI_MakeFillet::SetRadius ******/ + /****** md5 signature: bfcf0db73a6fdec8f7b106f7dde09942 ******/ %feature("compactdefaultargs") SetRadius; %feature("autodoc", " Parameters @@ -2455,8 +2455,8 @@ Sets the parameters of the fillet along the contour of index ic generated using ") SetRadius; void SetRadius(const Standard_Real Radius, const Standard_Integer IC, const Standard_Integer IinC); - /****************** SetRadius ******************/ - /**** md5 signature: 17b808e15085a3493392830537619fa3 ****/ + /****** BRepFilletAPI_MakeFillet::SetRadius ******/ + /****** md5 signature: 17b808e15085a3493392830537619fa3 ******/ %feature("compactdefaultargs") SetRadius; %feature("autodoc", " Parameters @@ -2476,8 +2476,8 @@ Sets the parameters of the fillet along the contour of index ic generated using ") SetRadius; void SetRadius(const Standard_Real R1, const Standard_Real R2, const Standard_Integer IC, const Standard_Integer IinC); - /****************** SetRadius ******************/ - /**** md5 signature: 9b4b438ad3c91063001d4fb5371a7255 ****/ + /****** BRepFilletAPI_MakeFillet::SetRadius ******/ + /****** md5 signature: 9b4b438ad3c91063001d4fb5371a7255 ******/ %feature("compactdefaultargs") SetRadius; %feature("autodoc", " Parameters @@ -2496,8 +2496,8 @@ Sets the parameters of the fillet along the contour of index ic generated using ") SetRadius; void SetRadius(const opencascade::handle & L, const Standard_Integer IC, const Standard_Integer IinC); - /****************** SetRadius ******************/ - /**** md5 signature: 88fec8db529c6c83ce4223c86a27e33c ****/ + /****** BRepFilletAPI_MakeFillet::SetRadius ******/ + /****** md5 signature: 88fec8db529c6c83ce4223c86a27e33c ******/ %feature("compactdefaultargs") SetRadius; %feature("autodoc", " Parameters @@ -2516,8 +2516,8 @@ Sets the parameters of the fillet along the contour of index ic generated using ") SetRadius; void SetRadius(const TColgp_Array1OfPnt2d & UandR, const Standard_Integer IC, const Standard_Integer IinC); - /****************** SetRadius ******************/ - /**** md5 signature: 56cd0b711b7c7a0a5ac3f46e84fd6fe3 ****/ + /****** BRepFilletAPI_MakeFillet::SetRadius ******/ + /****** md5 signature: 56cd0b711b7c7a0a5ac3f46e84fd6fe3 ******/ %feature("compactdefaultargs") SetRadius; %feature("autodoc", " Parameters @@ -2536,8 +2536,8 @@ Assigns radius as the radius of the fillet on the edge e. ") SetRadius; void SetRadius(const Standard_Real Radius, const Standard_Integer IC, const TopoDS_Edge & E); - /****************** SetRadius ******************/ - /**** md5 signature: 8c455c2795828e4085759369fbb8b830 ****/ + /****** BRepFilletAPI_MakeFillet::SetRadius ******/ + /****** md5 signature: 8c455c2795828e4085759369fbb8b830 ******/ %feature("compactdefaultargs") SetRadius; %feature("autodoc", " Parameters @@ -2556,8 +2556,8 @@ No available documentation. ") SetRadius; void SetRadius(const Standard_Real Radius, const Standard_Integer IC, const TopoDS_Vertex & V); - /****************** Simulate ******************/ - /**** md5 signature: 1ea1b1b8e2a939c9afdcc43cb9cc1b70 ****/ + /****** BRepFilletAPI_MakeFillet::Simulate ******/ + /****** md5 signature: 1ea1b1b8e2a939c9afdcc43cb9cc1b70 ******/ %feature("compactdefaultargs") Simulate; %feature("autodoc", " Parameters @@ -2574,8 +2574,8 @@ No available documentation. ") Simulate; void Simulate(const Standard_Integer IC); - /****************** StripeStatus ******************/ - /**** md5 signature: 7b8afd101ec5ebd9cd37e2bc2cfd73ff ****/ + /****** BRepFilletAPI_MakeFillet::StripeStatus ******/ + /****** md5 signature: 7b8afd101ec5ebd9cd37e2bc2cfd73ff ******/ %feature("compactdefaultargs") StripeStatus; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BRepGProp.i b/src/SWIG_files/wrapper/BRepGProp.i index b7343d167..d6cc4c7bb 100644 --- a/src/SWIG_files/wrapper/BRepGProp.i +++ b/src/SWIG_files/wrapper/BRepGProp.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPGPROPDOCSTRING "BRepGProp module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepgprop.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepgprop.html" %enddef %module (package="OCC.Core", docstring=BREPGPROPDOCSTRING) BRepGProp @@ -106,8 +106,8 @@ from OCC.Core.Exception import * %rename(brepgprop) BRepGProp; class BRepGProp { public: - /****************** LinearProperties ******************/ - /**** md5 signature: a063d5e771c7cceda8fc1f79fdc01d30 ****/ + /****** BRepGProp::LinearProperties ******/ + /****** md5 signature: a063d5e771c7cceda8fc1f79fdc01d30 ******/ %feature("compactdefaultargs") LinearProperties; %feature("autodoc", " Parameters @@ -127,8 +127,8 @@ Computes the linear global properties of the shape s, i.e. the global properties ") LinearProperties; static void LinearProperties(const TopoDS_Shape & S, GProp_GProps & LProps, const Standard_Boolean SkipShared = Standard_False, const Standard_Boolean UseTriangulation = Standard_False); - /****************** SurfaceProperties ******************/ - /**** md5 signature: de09a2b35153022287aa2a8431deaef5 ****/ + /****** BRepGProp::SurfaceProperties ******/ + /****** md5 signature: de09a2b35153022287aa2a8431deaef5 ******/ %feature("compactdefaultargs") SurfaceProperties; %feature("autodoc", " Parameters @@ -148,8 +148,8 @@ Computes the surface global properties of the shape s, i.e. the global propertie ") SurfaceProperties; static void SurfaceProperties(const TopoDS_Shape & S, GProp_GProps & SProps, const Standard_Boolean SkipShared = Standard_False, const Standard_Boolean UseTriangulation = Standard_False); - /****************** SurfaceProperties ******************/ - /**** md5 signature: 98c472661263186b1d30e4379dd9db78 ****/ + /****** BRepGProp::SurfaceProperties ******/ + /****** md5 signature: 98c472661263186b1d30e4379dd9db78 ******/ %feature("compactdefaultargs") SurfaceProperties; %feature("autodoc", " Parameters @@ -169,8 +169,8 @@ Updates with the shape , that contains its principal properties. the ") SurfaceProperties; static Standard_Real SurfaceProperties(const TopoDS_Shape & S, GProp_GProps & SProps, const Standard_Real Eps, const Standard_Boolean SkipShared = Standard_False); - /****************** VolumeProperties ******************/ - /**** md5 signature: 33909e093cf59347d7db0b4d010a93f5 ****/ + /****** BRepGProp::VolumeProperties ******/ + /****** md5 signature: 33909e093cf59347d7db0b4d010a93f5 ******/ %feature("compactdefaultargs") VolumeProperties; %feature("autodoc", " Parameters @@ -191,8 +191,8 @@ Description ") VolumeProperties; static void VolumeProperties(const TopoDS_Shape & S, GProp_GProps & VProps, const Standard_Boolean OnlyClosed = Standard_False, const Standard_Boolean SkipShared = Standard_False, const Standard_Boolean UseTriangulation = Standard_False); - /****************** VolumeProperties ******************/ - /**** md5 signature: 04af0768aae13f233016a52d30fcfdbb ****/ + /****** BRepGProp::VolumeProperties ******/ + /****** md5 signature: 04af0768aae13f233016a52d30fcfdbb ******/ %feature("compactdefaultargs") VolumeProperties; %feature("autodoc", " Parameters @@ -213,8 +213,8 @@ Updates with the shape , that contains its principal properties. the ") VolumeProperties; static Standard_Real VolumeProperties(const TopoDS_Shape & S, GProp_GProps & VProps, const Standard_Real Eps, const Standard_Boolean OnlyClosed = Standard_False, const Standard_Boolean SkipShared = Standard_False); - /****************** VolumePropertiesGK ******************/ - /**** md5 signature: 350eb5f7ad614101e55a9b0c0afcdb22 ****/ + /****** BRepGProp::VolumePropertiesGK ******/ + /****** md5 signature: 350eb5f7ad614101e55a9b0c0afcdb22 ******/ %feature("compactdefaultargs") VolumePropertiesGK; %feature("autodoc", " Parameters @@ -238,8 +238,8 @@ Updates with the shape , that contains its principal properties. the ") VolumePropertiesGK; static Standard_Real VolumePropertiesGK(const TopoDS_Shape & S, GProp_GProps & VProps, const Standard_Real Eps = 0.001, const Standard_Boolean OnlyClosed = Standard_False, const Standard_Boolean IsUseSpan = Standard_False, const Standard_Boolean CGFlag = Standard_False, const Standard_Boolean IFlag = Standard_False, const Standard_Boolean SkipShared = Standard_False); - /****************** VolumePropertiesGK ******************/ - /**** md5 signature: 79b57301830c4c31a5b43904d7943185 ****/ + /****** BRepGProp::VolumePropertiesGK ******/ + /****** md5 signature: 79b57301830c4c31a5b43904d7943185 ******/ %feature("compactdefaultargs") VolumePropertiesGK; %feature("autodoc", " Parameters @@ -278,8 +278,8 @@ No available documentation. *************************/ class BRepGProp_Cinert : public GProp_GProps { public: - /****************** BRepGProp_Cinert ******************/ - /**** md5 signature: ad62a1230096650569eb6d35241343b0 ****/ + /****** BRepGProp_Cinert::BRepGProp_Cinert ******/ + /****** md5 signature: ad62a1230096650569eb6d35241343b0 ******/ %feature("compactdefaultargs") BRepGProp_Cinert; %feature("autodoc", "Return ------- @@ -291,8 +291,8 @@ No available documentation. ") BRepGProp_Cinert; BRepGProp_Cinert(); - /****************** BRepGProp_Cinert ******************/ - /**** md5 signature: 40e8a04c04175d96e9078dec540e1699 ****/ + /****** BRepGProp_Cinert::BRepGProp_Cinert ******/ + /****** md5 signature: 40e8a04c04175d96e9078dec540e1699 ******/ %feature("compactdefaultargs") BRepGProp_Cinert; %feature("autodoc", " Parameters @@ -310,8 +310,8 @@ No available documentation. ") BRepGProp_Cinert; BRepGProp_Cinert(const BRepAdaptor_Curve & C, const gp_Pnt & CLocation); - /****************** Perform ******************/ - /**** md5 signature: b1a2ad101c61982e2656809aff72ca36 ****/ + /****** BRepGProp_Cinert::Perform ******/ + /****** md5 signature: b1a2ad101c61982e2656809aff72ca36 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -328,8 +328,8 @@ No available documentation. ") Perform; void Perform(const BRepAdaptor_Curve & C); - /****************** SetLocation ******************/ - /**** md5 signature: 5ed92b27e15802cdea187cf4e43b346a ****/ + /****** BRepGProp_Cinert::SetLocation ******/ + /****** md5 signature: 5ed92b27e15802cdea187cf4e43b346a ******/ %feature("compactdefaultargs") SetLocation; %feature("autodoc", " Parameters @@ -360,8 +360,8 @@ No available documentation. *************************/ class BRepGProp_Domain { public: - /****************** BRepGProp_Domain ******************/ - /**** md5 signature: 7986cd2cf79fcfafe2e1c074b6ca854d ****/ + /****** BRepGProp_Domain::BRepGProp_Domain ******/ + /****** md5 signature: 7986cd2cf79fcfafe2e1c074b6ca854d ******/ %feature("compactdefaultargs") BRepGProp_Domain; %feature("autodoc", "Return ------- @@ -373,8 +373,8 @@ Empty constructor. ") BRepGProp_Domain; BRepGProp_Domain(); - /****************** BRepGProp_Domain ******************/ - /**** md5 signature: 3c6bdfefe3d3a9f2a2d3d47449b74a3b ****/ + /****** BRepGProp_Domain::BRepGProp_Domain ******/ + /****** md5 signature: 3c6bdfefe3d3a9f2a2d3d47449b74a3b ******/ %feature("compactdefaultargs") BRepGProp_Domain; %feature("autodoc", " Parameters @@ -391,8 +391,8 @@ Constructor. initializes the domain with the face. ") BRepGProp_Domain; BRepGProp_Domain(const TopoDS_Face & F); - /****************** Init ******************/ - /**** md5 signature: a8dfaa68079e743e08190fe58d950a9a ****/ + /****** BRepGProp_Domain::Init ******/ + /****** md5 signature: a8dfaa68079e743e08190fe58d950a9a ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -409,8 +409,8 @@ Initializes the domain with the face. ") Init; void Init(const TopoDS_Face & F); - /****************** Init ******************/ - /**** md5 signature: 0de93ef32c53d091768788dca0e281fd ****/ + /****** BRepGProp_Domain::Init ******/ + /****** md5 signature: 0de93ef32c53d091768788dca0e281fd ******/ %feature("compactdefaultargs") Init; %feature("autodoc", "Return ------- @@ -422,8 +422,8 @@ Initializes the exploration with the face already set. ") Init; void Init(); - /****************** More ******************/ - /**** md5 signature: f2144011648ae849666b28430a27a0ea ****/ + /****** BRepGProp_Domain::More ******/ + /****** md5 signature: f2144011648ae849666b28430a27a0ea ******/ %feature("compactdefaultargs") More; %feature("autodoc", "Return ------- @@ -435,8 +435,8 @@ Returns true if there is another arc of curve in the list. ") More; Standard_Boolean More(); - /****************** Next ******************/ - /**** md5 signature: f35c0df5f1d7c877986db18081404532 ****/ + /****** BRepGProp_Domain::Next ******/ + /****** md5 signature: f35c0df5f1d7c877986db18081404532 ******/ %feature("compactdefaultargs") Next; %feature("autodoc", "Return ------- @@ -448,8 +448,8 @@ Sets the index of the arc iterator to the next arc of curve. ") Next; void Next(); - /****************** Value ******************/ - /**** md5 signature: 908df29e834e8aebb610870c9cea1651 ****/ + /****** BRepGProp_Domain::Value ******/ + /****** md5 signature: 908df29e834e8aebb610870c9cea1651 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -475,8 +475,8 @@ Returns the current edge. ***************************/ class BRepGProp_EdgeTool { public: - /****************** D1 ******************/ - /**** md5 signature: 5556be7cd9882922dfddd95e3b9c9ecf ****/ + /****** BRepGProp_EdgeTool::D1 ******/ + /****** md5 signature: 5556be7cd9882922dfddd95e3b9c9ecf ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -496,8 +496,8 @@ Returns the point of parameter u and the first derivative at this point. ") D1; static void D1(const BRepAdaptor_Curve & C, const Standard_Real U, gp_Pnt & P, gp_Vec & V1); - /****************** FirstParameter ******************/ - /**** md5 signature: 1757779ac38cb6ed7a7fc48dc2248f69 ****/ + /****** BRepGProp_EdgeTool::FirstParameter ******/ + /****** md5 signature: 1757779ac38cb6ed7a7fc48dc2248f69 ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", " Parameters @@ -514,8 +514,8 @@ Returns the parametric value of the start point of the curve. the curve is orien ") FirstParameter; static Standard_Real FirstParameter(const BRepAdaptor_Curve & C); - /****************** IntegrationOrder ******************/ - /**** md5 signature: 7daceb790afa0c813f14f4153aca3dd9 ****/ + /****** BRepGProp_EdgeTool::IntegrationOrder ******/ + /****** md5 signature: 7daceb790afa0c813f14f4153aca3dd9 ******/ %feature("compactdefaultargs") IntegrationOrder; %feature("autodoc", " Parameters @@ -532,8 +532,8 @@ Returns the number of gauss points required to do the integration with a good ac ") IntegrationOrder; static Standard_Integer IntegrationOrder(const BRepAdaptor_Curve & C); - /****************** Intervals ******************/ - /**** md5 signature: f429463d75cd548af36c429f480bc438 ****/ + /****** BRepGProp_EdgeTool::Intervals ******/ + /****** md5 signature: f429463d75cd548af36c429f480bc438 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -552,8 +552,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; static void Intervals(const BRepAdaptor_Curve & C, TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** LastParameter ******************/ - /**** md5 signature: e697bafb03d659fa87fd20dbec7f562b ****/ + /****** BRepGProp_EdgeTool::LastParameter ******/ + /****** md5 signature: e697bafb03d659fa87fd20dbec7f562b ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", " Parameters @@ -570,8 +570,8 @@ Returns the parametric value of the end point of the curve. the curve is oriente ") LastParameter; static Standard_Real LastParameter(const BRepAdaptor_Curve & C); - /****************** NbIntervals ******************/ - /**** md5 signature: c4391d4034556532fdf723807037192a ****/ + /****** BRepGProp_EdgeTool::NbIntervals ******/ + /****** md5 signature: c4391d4034556532fdf723807037192a ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -589,8 +589,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; static Standard_Integer NbIntervals(const BRepAdaptor_Curve & C, const GeomAbs_Shape S); - /****************** Value ******************/ - /**** md5 signature: 23b56266cc1e7b195b61ae726893d32f ****/ + /****** BRepGProp_EdgeTool::Value ******/ + /****** md5 signature: 23b56266cc1e7b195b61ae726893d32f ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -622,8 +622,8 @@ Returns the point of parameter u on the loaded curve. ***********************/ class BRepGProp_Face { public: - /****************** BRepGProp_Face ******************/ - /**** md5 signature: bc73a426a381f81aa03dcc1823778dd2 ****/ + /****** BRepGProp_Face::BRepGProp_Face ******/ + /****** md5 signature: bc73a426a381f81aa03dcc1823778dd2 ******/ %feature("compactdefaultargs") BRepGProp_Face; %feature("autodoc", " Parameters @@ -640,8 +640,8 @@ Constructor. initializes the object with a flag isusespan that says if it is nec ") BRepGProp_Face; BRepGProp_Face(const Standard_Boolean IsUseSpan = Standard_False); - /****************** BRepGProp_Face ******************/ - /**** md5 signature: 85e85a5b8783b4d37ef3421a4493b8bf ****/ + /****** BRepGProp_Face::BRepGProp_Face ******/ + /****** md5 signature: 85e85a5b8783b4d37ef3421a4493b8bf ******/ %feature("compactdefaultargs") BRepGProp_Face; %feature("autodoc", " Parameters @@ -659,8 +659,8 @@ Constructor. initializes the object with the face and the flag isusespan that sa ") BRepGProp_Face; BRepGProp_Face(const TopoDS_Face & F, const Standard_Boolean IsUseSpan = Standard_False); - /****************** Bounds ******************/ - /**** md5 signature: f30c35e741e636532fbff37cccb741f7 ****/ + /****** BRepGProp_Face::Bounds ******/ + /****** md5 signature: f30c35e741e636532fbff37cccb741f7 ******/ %feature("compactdefaultargs") Bounds; %feature("autodoc", " Parameters @@ -679,8 +679,8 @@ Returns the parametric bounds of the face. ") Bounds; void Bounds(Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** D12d ******************/ - /**** md5 signature: 93778e4127f5c48e81f47d36c5a6f892 ****/ + /****** BRepGProp_Face::D12d ******/ + /****** md5 signature: 93778e4127f5c48e81f47d36c5a6f892 ******/ %feature("compactdefaultargs") D12d; %feature("autodoc", " Parameters @@ -699,8 +699,8 @@ Returns the point of parameter u and the first derivative at this point of a bou ") D12d; void D12d(const Standard_Real U, gp_Pnt2d & P, gp_Vec2d & V1); - /****************** FirstParameter ******************/ - /**** md5 signature: 4ccedbaad83be904f510b4760c75f69c ****/ + /****** BRepGProp_Face::FirstParameter ******/ + /****** md5 signature: 4ccedbaad83be904f510b4760c75f69c ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", "Return ------- @@ -712,8 +712,8 @@ Returns the parametric value of the start point of the current arc of curve. ") FirstParameter; Standard_Real FirstParameter(); - /****************** GetFace ******************/ - /**** md5 signature: 24f8605987955c9a8fdd14219215e9a9 ****/ + /****** BRepGProp_Face::GetFace ******/ + /****** md5 signature: 24f8605987955c9a8fdd14219215e9a9 ******/ %feature("compactdefaultargs") GetFace; %feature("autodoc", "Return ------- @@ -725,8 +725,8 @@ Returns the topods face. ") GetFace; const TopoDS_Face GetFace(); - /****************** GetTKnots ******************/ - /**** md5 signature: 4b2a2cee8551d61043503150f4f516ad ****/ + /****** BRepGProp_Face::GetTKnots ******/ + /****** md5 signature: 4b2a2cee8551d61043503150f4f516ad ******/ %feature("compactdefaultargs") GetTKnots; %feature("autodoc", " Parameters @@ -745,8 +745,8 @@ Returns an array of combination of t knots of the arc and v knots of the face. t ") GetTKnots; void GetTKnots(const Standard_Real theTMin, const Standard_Real theTMax, opencascade::handle & theTKnots); - /****************** GetUKnots ******************/ - /**** md5 signature: 2b537a9010295a9da0b784859dd3d427 ****/ + /****** BRepGProp_Face::GetUKnots ******/ + /****** md5 signature: 2b537a9010295a9da0b784859dd3d427 ******/ %feature("compactdefaultargs") GetUKnots; %feature("autodoc", " Parameters @@ -765,8 +765,8 @@ Returns an array of u knots of the face. the first and last elements of the arra ") GetUKnots; void GetUKnots(const Standard_Real theUMin, const Standard_Real theUMax, opencascade::handle & theUKnots); - /****************** IntegrationOrder ******************/ - /**** md5 signature: 9d941348f9e90be3833675d84fa7e21c ****/ + /****** BRepGProp_Face::IntegrationOrder ******/ + /****** md5 signature: 9d941348f9e90be3833675d84fa7e21c ******/ %feature("compactdefaultargs") IntegrationOrder; %feature("autodoc", "Return ------- @@ -778,8 +778,8 @@ Returns the number of points required to do the integration along the parameter ") IntegrationOrder; Standard_Integer IntegrationOrder(); - /****************** LIntOrder ******************/ - /**** md5 signature: 582e14b0c3c2657678510ec5664dbbb0 ****/ + /****** BRepGProp_Face::LIntOrder ******/ + /****** md5 signature: 582e14b0c3c2657678510ec5664dbbb0 ******/ %feature("compactdefaultargs") LIntOrder; %feature("autodoc", " Parameters @@ -796,8 +796,8 @@ No available documentation. ") LIntOrder; Standard_Integer LIntOrder(const Standard_Real Eps); - /****************** LIntSubs ******************/ - /**** md5 signature: 16c426ad00e717ef57398a45ebfc358f ****/ + /****** BRepGProp_Face::LIntSubs ******/ + /****** md5 signature: 16c426ad00e717ef57398a45ebfc358f ******/ %feature("compactdefaultargs") LIntSubs; %feature("autodoc", "Return ------- @@ -809,8 +809,8 @@ No available documentation. ") LIntSubs; Standard_Integer LIntSubs(); - /****************** LKnots ******************/ - /**** md5 signature: 07b04b3724b0b2fbe94f59381afd67f8 ****/ + /****** BRepGProp_Face::LKnots ******/ + /****** md5 signature: 07b04b3724b0b2fbe94f59381afd67f8 ******/ %feature("compactdefaultargs") LKnots; %feature("autodoc", " Parameters @@ -827,8 +827,8 @@ No available documentation. ") LKnots; void LKnots(TColStd_Array1OfReal & Knots); - /****************** LastParameter ******************/ - /**** md5 signature: 7cdf630921ee47ad365a5a6bafd4b46e ****/ + /****** BRepGProp_Face::LastParameter ******/ + /****** md5 signature: 7cdf630921ee47ad365a5a6bafd4b46e ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", "Return ------- @@ -840,8 +840,8 @@ Returns the parametric value of the end point of the current arc of curve. ") LastParameter; Standard_Real LastParameter(); - /****************** Load ******************/ - /**** md5 signature: 1d17d2edcb9829efe827b1a9573fcbcc ****/ + /****** BRepGProp_Face::Load ******/ + /****** md5 signature: 1d17d2edcb9829efe827b1a9573fcbcc ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -858,8 +858,8 @@ No available documentation. ") Load; void Load(const TopoDS_Face & F); - /****************** Load ******************/ - /**** md5 signature: a134b46b97307c985b809bb67244f2bb ****/ + /****** BRepGProp_Face::Load ******/ + /****** md5 signature: a134b46b97307c985b809bb67244f2bb ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -876,8 +876,8 @@ Loading the boundary arc. returns false if edge has no p-curve. ") Load; bool Load(const TopoDS_Edge & E); - /****************** Load ******************/ - /**** md5 signature: ffd6e58ac396ac9b7d7e4df3c0deaa4f ****/ + /****** BRepGProp_Face::Load ******/ + /****** md5 signature: ffd6e58ac396ac9b7d7e4df3c0deaa4f ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -895,8 +895,8 @@ Loading the boundary arc. this arc is either a top, bottom, left or right bound ") Load; void Load(const Standard_Boolean IsFirstParam, const GeomAbs_IsoType theIsoType); - /****************** NaturalRestriction ******************/ - /**** md5 signature: 6d92e56f229bd8624f08e276baf74517 ****/ + /****** BRepGProp_Face::NaturalRestriction ******/ + /****** md5 signature: 6d92e56f229bd8624f08e276baf74517 ******/ %feature("compactdefaultargs") NaturalRestriction; %feature("autodoc", "Return ------- @@ -908,8 +908,8 @@ Returns standard_true if the face is not trimmed. ") NaturalRestriction; Standard_Boolean NaturalRestriction(); - /****************** Normal ******************/ - /**** md5 signature: 9745e642c531c846aa947dd9b97ad423 ****/ + /****** BRepGProp_Face::Normal ******/ + /****** md5 signature: 9745e642c531c846aa947dd9b97ad423 ******/ %feature("compactdefaultargs") Normal; %feature("autodoc", " Parameters @@ -929,8 +929,8 @@ Computes the point of parameter u, v on the face and the normal to the face ") Normal; void Normal(const Standard_Real U, const Standard_Real V, gp_Pnt & P, gp_Vec & VNor); - /****************** SIntOrder ******************/ - /**** md5 signature: 36292a47be4c367eb9dd3ca5f7273d94 ****/ + /****** BRepGProp_Face::SIntOrder ******/ + /****** md5 signature: 36292a47be4c367eb9dd3ca5f7273d94 ******/ %feature("compactdefaultargs") SIntOrder; %feature("autodoc", " Parameters @@ -947,8 +947,8 @@ No available documentation. ") SIntOrder; Standard_Integer SIntOrder(const Standard_Real Eps); - /****************** SUIntSubs ******************/ - /**** md5 signature: bc04bb78232627d9fab2105fd2ec9a4e ****/ + /****** BRepGProp_Face::SUIntSubs ******/ + /****** md5 signature: bc04bb78232627d9fab2105fd2ec9a4e ******/ %feature("compactdefaultargs") SUIntSubs; %feature("autodoc", "Return ------- @@ -960,8 +960,8 @@ No available documentation. ") SUIntSubs; Standard_Integer SUIntSubs(); - /****************** SVIntSubs ******************/ - /**** md5 signature: f41bbeaf2802182d7d4f7ed8d1b07918 ****/ + /****** BRepGProp_Face::SVIntSubs ******/ + /****** md5 signature: f41bbeaf2802182d7d4f7ed8d1b07918 ******/ %feature("compactdefaultargs") SVIntSubs; %feature("autodoc", "Return ------- @@ -973,8 +973,8 @@ No available documentation. ") SVIntSubs; Standard_Integer SVIntSubs(); - /****************** UIntegrationOrder ******************/ - /**** md5 signature: 4cad12b0505b12eb0d45277d3a20b18a ****/ + /****** BRepGProp_Face::UIntegrationOrder ******/ + /****** md5 signature: 4cad12b0505b12eb0d45277d3a20b18a ******/ %feature("compactdefaultargs") UIntegrationOrder; %feature("autodoc", "Return ------- @@ -986,8 +986,8 @@ Returns the number of points required to do the integration in the u parametric ") UIntegrationOrder; Standard_Integer UIntegrationOrder(); - /****************** UKnots ******************/ - /**** md5 signature: 7bdd1f4e1d034b241c5401d5734966da ****/ + /****** BRepGProp_Face::UKnots ******/ + /****** md5 signature: 7bdd1f4e1d034b241c5401d5734966da ******/ %feature("compactdefaultargs") UKnots; %feature("autodoc", " Parameters @@ -1004,8 +1004,8 @@ No available documentation. ") UKnots; void UKnots(TColStd_Array1OfReal & Knots); - /****************** VIntegrationOrder ******************/ - /**** md5 signature: 66cfa3ec86dcabc0824b4974d0d2ad4b ****/ + /****** BRepGProp_Face::VIntegrationOrder ******/ + /****** md5 signature: 66cfa3ec86dcabc0824b4974d0d2ad4b ******/ %feature("compactdefaultargs") VIntegrationOrder; %feature("autodoc", "Return ------- @@ -1017,8 +1017,8 @@ No available documentation. ") VIntegrationOrder; Standard_Integer VIntegrationOrder(); - /****************** VKnots ******************/ - /**** md5 signature: 10545876365ec66fe3480d5137c1d815 ****/ + /****** BRepGProp_Face::VKnots ******/ + /****** md5 signature: 10545876365ec66fe3480d5137c1d815 ******/ %feature("compactdefaultargs") VKnots; %feature("autodoc", " Parameters @@ -1035,8 +1035,8 @@ No available documentation. ") VKnots; void VKnots(TColStd_Array1OfReal & Knots); - /****************** Value2d ******************/ - /**** md5 signature: 1a87b688d0ec3774db81418d79b79935 ****/ + /****** BRepGProp_Face::Value2d ******/ + /****** md5 signature: 1a87b688d0ec3774db81418d79b79935 ******/ %feature("compactdefaultargs") Value2d; %feature("autodoc", " Parameters @@ -1087,8 +1087,8 @@ Sinert = BRepGProp_GaussType.Sinert }; /* end python proxy for enums */ - /****************** BRepGProp_Gauss ******************/ - /**** md5 signature: 4283597bc19e7ea4dfb5f08dc8fe2240 ****/ + /****** BRepGProp_Gauss::BRepGProp_Gauss ******/ + /****** md5 signature: 4283597bc19e7ea4dfb5f08dc8fe2240 ******/ %feature("compactdefaultargs") BRepGProp_Gauss; %feature("autodoc", " Parameters @@ -1123,8 +1123,8 @@ Constructor. *****************************/ class BRepGProp_MeshCinert : public GProp_GProps { public: - /****************** BRepGProp_MeshCinert ******************/ - /**** md5 signature: 4168f86123ec390b74beda6034b261f9 ****/ + /****** BRepGProp_MeshCinert::BRepGProp_MeshCinert ******/ + /****** md5 signature: 4168f86123ec390b74beda6034b261f9 ******/ %feature("compactdefaultargs") BRepGProp_MeshCinert; %feature("autodoc", "Return ------- @@ -1136,8 +1136,8 @@ No available documentation. ") BRepGProp_MeshCinert; BRepGProp_MeshCinert(); - /****************** Perform ******************/ - /**** md5 signature: 46c6f3603ea512468eace177c45e5d6b ****/ + /****** BRepGProp_MeshCinert::Perform ******/ + /****** md5 signature: 46c6f3603ea512468eace177c45e5d6b ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1154,8 +1154,8 @@ Computes the global properties of of polylines represented by set of points. ") Perform; void Perform(const TColgp_Array1OfPnt & theNodes); - /****************** PreparePolygon ******************/ - /**** md5 signature: 192567ee3ab19fdaa0db914f60c7fde9 ****/ + /****** BRepGProp_MeshCinert::PreparePolygon ******/ + /****** md5 signature: 192567ee3ab19fdaa0db914f60c7fde9 ******/ %feature("compactdefaultargs") PreparePolygon; %feature("autodoc", " Parameters @@ -1173,8 +1173,8 @@ Prepare set of 3d points on base of any available edge polygons: 3d polygon, pol ") PreparePolygon; static void PreparePolygon(const TopoDS_Edge & theE, opencascade::handle & thePolyg); - /****************** SetLocation ******************/ - /**** md5 signature: 5ed92b27e15802cdea187cf4e43b346a ****/ + /****** BRepGProp_MeshCinert::SetLocation ******/ + /****** md5 signature: 5ed92b27e15802cdea187cf4e43b346a ******/ %feature("compactdefaultargs") SetLocation; %feature("autodoc", " Parameters @@ -1208,8 +1208,8 @@ No available documentation. *************************/ class BRepGProp_Sinert : public GProp_GProps { public: - /****************** BRepGProp_Sinert ******************/ - /**** md5 signature: 30a453e8dacad302931072d4b523dd24 ****/ + /****** BRepGProp_Sinert::BRepGProp_Sinert ******/ + /****** md5 signature: 30a453e8dacad302931072d4b523dd24 ******/ %feature("compactdefaultargs") BRepGProp_Sinert; %feature("autodoc", "Return ------- @@ -1221,8 +1221,8 @@ No available documentation. ") BRepGProp_Sinert; BRepGProp_Sinert(); - /****************** BRepGProp_Sinert ******************/ - /**** md5 signature: b82fc330e2f8068a37939fb7a1d44b4e ****/ + /****** BRepGProp_Sinert::BRepGProp_Sinert ******/ + /****** md5 signature: b82fc330e2f8068a37939fb7a1d44b4e ******/ %feature("compactdefaultargs") BRepGProp_Sinert; %feature("autodoc", " Parameters @@ -1240,8 +1240,8 @@ No available documentation. ") BRepGProp_Sinert; BRepGProp_Sinert(const BRepGProp_Face & S, const gp_Pnt & SLocation); - /****************** BRepGProp_Sinert ******************/ - /**** md5 signature: 10b645adb9e1d14109d3264defc257f1 ****/ + /****** BRepGProp_Sinert::BRepGProp_Sinert ******/ + /****** md5 signature: 10b645adb9e1d14109d3264defc257f1 ******/ %feature("compactdefaultargs") BRepGProp_Sinert; %feature("autodoc", " Parameters @@ -1260,8 +1260,8 @@ Builds a sinert to evaluate the global properties of the face . if isnaturalr ") BRepGProp_Sinert; BRepGProp_Sinert(BRepGProp_Face & S, BRepGProp_Domain & D, const gp_Pnt & SLocation); - /****************** BRepGProp_Sinert ******************/ - /**** md5 signature: 74ce3ffece3e8a1edd918b0dd45da546 ****/ + /****** BRepGProp_Sinert::BRepGProp_Sinert ******/ + /****** md5 signature: 74ce3ffece3e8a1edd918b0dd45da546 ******/ %feature("compactdefaultargs") BRepGProp_Sinert; %feature("autodoc", " Parameters @@ -1280,8 +1280,8 @@ No available documentation. ") BRepGProp_Sinert; BRepGProp_Sinert(BRepGProp_Face & S, const gp_Pnt & SLocation, const Standard_Real Eps); - /****************** BRepGProp_Sinert ******************/ - /**** md5 signature: a08ec0516fd40a598790191badfd6a24 ****/ + /****** BRepGProp_Sinert::BRepGProp_Sinert ******/ + /****** md5 signature: a08ec0516fd40a598790191badfd6a24 ******/ %feature("compactdefaultargs") BRepGProp_Sinert; %feature("autodoc", " Parameters @@ -1301,8 +1301,8 @@ No available documentation. ") BRepGProp_Sinert; BRepGProp_Sinert(BRepGProp_Face & S, BRepGProp_Domain & D, const gp_Pnt & SLocation, const Standard_Real Eps); - /****************** GetEpsilon ******************/ - /**** md5 signature: 70053d03d9c27b2171a20b75ca67dc00 ****/ + /****** BRepGProp_Sinert::GetEpsilon ******/ + /****** md5 signature: 70053d03d9c27b2171a20b75ca67dc00 ******/ %feature("compactdefaultargs") GetEpsilon; %feature("autodoc", "Return ------- @@ -1314,8 +1314,8 @@ If previously used method contained eps parameter get actual relative error of t ") GetEpsilon; Standard_Real GetEpsilon(); - /****************** Perform ******************/ - /**** md5 signature: 287766d0387e8a92bd6fd7efea57304a ****/ + /****** BRepGProp_Sinert::Perform ******/ + /****** md5 signature: 287766d0387e8a92bd6fd7efea57304a ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1332,8 +1332,8 @@ No available documentation. ") Perform; void Perform(const BRepGProp_Face & S); - /****************** Perform ******************/ - /**** md5 signature: 2a40161e06229ca1640ab336b74b37cd ****/ + /****** BRepGProp_Sinert::Perform ******/ + /****** md5 signature: 2a40161e06229ca1640ab336b74b37cd ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1351,8 +1351,8 @@ No available documentation. ") Perform; void Perform(BRepGProp_Face & S, BRepGProp_Domain & D); - /****************** Perform ******************/ - /**** md5 signature: 9f27bb8deb5f9df42810f2abd51c6026 ****/ + /****** BRepGProp_Sinert::Perform ******/ + /****** md5 signature: 9f27bb8deb5f9df42810f2abd51c6026 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1370,8 +1370,8 @@ No available documentation. ") Perform; Standard_Real Perform(BRepGProp_Face & S, const Standard_Real Eps); - /****************** Perform ******************/ - /**** md5 signature: a7c77e80349f9dd440598643ec9aae4a ****/ + /****** BRepGProp_Sinert::Perform ******/ + /****** md5 signature: a7c77e80349f9dd440598643ec9aae4a ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1390,8 +1390,8 @@ No available documentation. ") Perform; Standard_Real Perform(BRepGProp_Face & S, BRepGProp_Domain & D, const Standard_Real Eps); - /****************** SetLocation ******************/ - /**** md5 signature: 21f84731f7ae4a935b732f676863a0d9 ****/ + /****** BRepGProp_Sinert::SetLocation ******/ + /****** md5 signature: 21f84731f7ae4a935b732f676863a0d9 ******/ %feature("compactdefaultargs") SetLocation; %feature("autodoc", " Parameters @@ -1422,8 +1422,8 @@ No available documentation. ****************************/ class BRepGProp_TFunction : public math_Function { public: - /****************** BRepGProp_TFunction ******************/ - /**** md5 signature: 660069516fa3db7a124db5fda3b09b0e ****/ + /****** BRepGProp_TFunction::BRepGProp_TFunction ******/ + /****** md5 signature: 660069516fa3db7a124db5fda3b09b0e ******/ %feature("compactdefaultargs") BRepGProp_TFunction; %feature("autodoc", " Parameters @@ -1445,8 +1445,8 @@ Constructor. initializes the function with the face, the location point, the fla ") BRepGProp_TFunction; BRepGProp_TFunction(const BRepGProp_Face & theSurface, const gp_Pnt & theVertex, const Standard_Boolean IsByPoint, const Standard_Real * theCoeffs, const Standard_Real theUMin, const Standard_Real theTolerance); - /****************** AbsolutError ******************/ - /**** md5 signature: 12eadedd827c6f2cfdee466e4014e7d9 ****/ + /****** BRepGProp_TFunction::AbsolutError ******/ + /****** md5 signature: 12eadedd827c6f2cfdee466e4014e7d9 ******/ %feature("compactdefaultargs") AbsolutError; %feature("autodoc", "Return ------- @@ -1458,8 +1458,8 @@ Returns the absolut reached error of all values computation since the last call ") AbsolutError; Standard_Real AbsolutError(); - /****************** ErrorReached ******************/ - /**** md5 signature: a07cf8273fa0f4cf4aae707ac80776ec ****/ + /****** BRepGProp_TFunction::ErrorReached ******/ + /****** md5 signature: a07cf8273fa0f4cf4aae707ac80776ec ******/ %feature("compactdefaultargs") ErrorReached; %feature("autodoc", "Return ------- @@ -1471,8 +1471,8 @@ Returns the relative reached error of all values computation since the last call ") ErrorReached; Standard_Real ErrorReached(); - /****************** GetStateNumber ******************/ - /**** md5 signature: 49c44bd66dd4ec2381671c72ebd88158 ****/ + /****** BRepGProp_TFunction::GetStateNumber ******/ + /****** md5 signature: 49c44bd66dd4ec2381671c72ebd88158 ******/ %feature("compactdefaultargs") GetStateNumber; %feature("autodoc", "Return ------- @@ -1484,8 +1484,8 @@ Redefined method. remembers the error reached during computation of integral val ") GetStateNumber; virtual Standard_Integer GetStateNumber(); - /****************** Init ******************/ - /**** md5 signature: 0de93ef32c53d091768788dca0e281fd ****/ + /****** BRepGProp_TFunction::Init ******/ + /****** md5 signature: 0de93ef32c53d091768788dca0e281fd ******/ %feature("compactdefaultargs") Init; %feature("autodoc", "Return ------- @@ -1497,8 +1497,8 @@ No available documentation. ") Init; void Init(); - /****************** SetNbKronrodPoints ******************/ - /**** md5 signature: 2388e1a76b29ff88e9dd10198003e6b8 ****/ + /****** BRepGProp_TFunction::SetNbKronrodPoints ******/ + /****** md5 signature: 2388e1a76b29ff88e9dd10198003e6b8 ******/ %feature("compactdefaultargs") SetNbKronrodPoints; %feature("autodoc", " Parameters @@ -1515,8 +1515,8 @@ Setting the expected number of kronrod points for the outer integral computation ") SetNbKronrodPoints; void SetNbKronrodPoints(const Standard_Integer theNbPoints); - /****************** SetTolerance ******************/ - /**** md5 signature: cbe94a7292bcea72785e79a4eafde5ea ****/ + /****** BRepGProp_TFunction::SetTolerance ******/ + /****** md5 signature: cbe94a7292bcea72785e79a4eafde5ea ******/ %feature("compactdefaultargs") SetTolerance; %feature("autodoc", " Parameters @@ -1533,8 +1533,8 @@ Setting the tolerance for inner integration. ") SetTolerance; void SetTolerance(const Standard_Real aTol); - /****************** SetValueType ******************/ - /**** md5 signature: e50d5f7e32a617f0c0c33c6617861546 ****/ + /****** BRepGProp_TFunction::SetValueType ******/ + /****** md5 signature: e50d5f7e32a617f0c0c33c6617861546 ******/ %feature("compactdefaultargs") SetValueType; %feature("autodoc", " Parameters @@ -1551,8 +1551,8 @@ Setting the type of the value to be returned. this parameter is directly passed ") SetValueType; void SetValueType(const GProp_ValueType aType); - /****************** Value ******************/ - /**** md5 signature: 15617dca721c4472bfb7ee7933f04bce ****/ + /****** BRepGProp_TFunction::Value ******/ + /****** md5 signature: 15617dca721c4472bfb7ee7933f04bce ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -1583,8 +1583,8 @@ Returns a value of the function. the value represents an integral of ufunction. ****************************/ class BRepGProp_UFunction : public math_Function { public: - /****************** BRepGProp_UFunction ******************/ - /**** md5 signature: f53c91a3d00c6205c8aeda4203c886d7 ****/ + /****** BRepGProp_UFunction::BRepGProp_UFunction ******/ + /****** md5 signature: f53c91a3d00c6205c8aeda4203c886d7 ******/ %feature("compactdefaultargs") BRepGProp_UFunction; %feature("autodoc", " Parameters @@ -1604,8 +1604,8 @@ Constructor. initializes the function with the face, the location point, the fla ") BRepGProp_UFunction; BRepGProp_UFunction(const BRepGProp_Face & theSurface, const gp_Pnt & theVertex, const Standard_Boolean IsByPoint, const Standard_Real * theCoeffs); - /****************** SetVParam ******************/ - /**** md5 signature: 65557cc70db507c03b9e102c112375ed ****/ + /****** BRepGProp_UFunction::SetVParam ******/ + /****** md5 signature: 65557cc70db507c03b9e102c112375ed ******/ %feature("compactdefaultargs") SetVParam; %feature("autodoc", " Parameters @@ -1622,8 +1622,8 @@ Setting the v parameter that is constant during the integral computation. ") SetVParam; void SetVParam(const Standard_Real theVParam); - /****************** SetValueType ******************/ - /**** md5 signature: f560b8c5b982b75a196f946bfdc77fcb ****/ + /****** BRepGProp_UFunction::SetValueType ******/ + /****** md5 signature: f560b8c5b982b75a196f946bfdc77fcb ******/ %feature("compactdefaultargs") SetValueType; %feature("autodoc", " Parameters @@ -1640,8 +1640,8 @@ Setting the type of the value to be returned. ") SetValueType; void SetValueType(const GProp_ValueType theType); - /****************** Value ******************/ - /**** md5 signature: 15617dca721c4472bfb7ee7933f04bce ****/ + /****** BRepGProp_UFunction::Value ******/ + /****** md5 signature: 15617dca721c4472bfb7ee7933f04bce ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -1672,8 +1672,8 @@ Returns a value of the function. *************************/ class BRepGProp_Vinert : public GProp_GProps { public: - /****************** BRepGProp_Vinert ******************/ - /**** md5 signature: 4d03c85dfc1aa38496efd1cd67dfb041 ****/ + /****** BRepGProp_Vinert::BRepGProp_Vinert ******/ + /****** md5 signature: 4d03c85dfc1aa38496efd1cd67dfb041 ******/ %feature("compactdefaultargs") BRepGProp_Vinert; %feature("autodoc", "Return ------- @@ -1685,8 +1685,8 @@ No available documentation. ") BRepGProp_Vinert; BRepGProp_Vinert(); - /****************** BRepGProp_Vinert ******************/ - /**** md5 signature: 1414a74187b929e713ff870c0e037149 ****/ + /****** BRepGProp_Vinert::BRepGProp_Vinert ******/ + /****** md5 signature: 1414a74187b929e713ff870c0e037149 ******/ %feature("compactdefaultargs") BRepGProp_Vinert; %feature("autodoc", " Parameters @@ -1704,8 +1704,8 @@ Computes the global properties of a region of 3d space delimited with the surfac ") BRepGProp_Vinert; BRepGProp_Vinert(const BRepGProp_Face & S, const gp_Pnt & VLocation); - /****************** BRepGProp_Vinert ******************/ - /**** md5 signature: 13a616469cff283670358262ff91dcf9 ****/ + /****** BRepGProp_Vinert::BRepGProp_Vinert ******/ + /****** md5 signature: 13a616469cff283670358262ff91dcf9 ******/ %feature("compactdefaultargs") BRepGProp_Vinert; %feature("autodoc", " Parameters @@ -1724,8 +1724,8 @@ Computes the global properties of a region of 3d space delimited with the surfac ") BRepGProp_Vinert; BRepGProp_Vinert(BRepGProp_Face & S, const gp_Pnt & VLocation, const Standard_Real Eps); - /****************** BRepGProp_Vinert ******************/ - /**** md5 signature: 5c8c9fce1d68c04b255a76edd33c2c5d ****/ + /****** BRepGProp_Vinert::BRepGProp_Vinert ******/ + /****** md5 signature: 5c8c9fce1d68c04b255a76edd33c2c5d ******/ %feature("compactdefaultargs") BRepGProp_Vinert; %feature("autodoc", " Parameters @@ -1744,8 +1744,8 @@ Computes the global properties of the region of 3d space delimited with the surf ") BRepGProp_Vinert; BRepGProp_Vinert(const BRepGProp_Face & S, const gp_Pnt & O, const gp_Pnt & VLocation); - /****************** BRepGProp_Vinert ******************/ - /**** md5 signature: df85730af0638f29c218a6be2ab7aecc ****/ + /****** BRepGProp_Vinert::BRepGProp_Vinert ******/ + /****** md5 signature: df85730af0638f29c218a6be2ab7aecc ******/ %feature("compactdefaultargs") BRepGProp_Vinert; %feature("autodoc", " Parameters @@ -1765,8 +1765,8 @@ Computes the global properties of the region of 3d space delimited with the surf ") BRepGProp_Vinert; BRepGProp_Vinert(BRepGProp_Face & S, const gp_Pnt & O, const gp_Pnt & VLocation, const Standard_Real Eps); - /****************** BRepGProp_Vinert ******************/ - /**** md5 signature: 7f48df0c9e63f4ccad77f35c8ead2e18 ****/ + /****** BRepGProp_Vinert::BRepGProp_Vinert ******/ + /****** md5 signature: 7f48df0c9e63f4ccad77f35c8ead2e18 ******/ %feature("compactdefaultargs") BRepGProp_Vinert; %feature("autodoc", " Parameters @@ -1785,8 +1785,8 @@ Computes the global properties of the region of 3d space delimited with the surf ") BRepGProp_Vinert; BRepGProp_Vinert(const BRepGProp_Face & S, const gp_Pln & Pl, const gp_Pnt & VLocation); - /****************** BRepGProp_Vinert ******************/ - /**** md5 signature: c7ffc413b9031d515f8311697c9bc6b3 ****/ + /****** BRepGProp_Vinert::BRepGProp_Vinert ******/ + /****** md5 signature: c7ffc413b9031d515f8311697c9bc6b3 ******/ %feature("compactdefaultargs") BRepGProp_Vinert; %feature("autodoc", " Parameters @@ -1806,8 +1806,8 @@ Computes the global properties of the region of 3d space delimited with the surf ") BRepGProp_Vinert; BRepGProp_Vinert(BRepGProp_Face & S, const gp_Pln & Pl, const gp_Pnt & VLocation, const Standard_Real Eps); - /****************** BRepGProp_Vinert ******************/ - /**** md5 signature: bd59787cdd3504146a2e59074662acc7 ****/ + /****** BRepGProp_Vinert::BRepGProp_Vinert ******/ + /****** md5 signature: bd59787cdd3504146a2e59074662acc7 ******/ %feature("compactdefaultargs") BRepGProp_Vinert; %feature("autodoc", " Parameters @@ -1826,8 +1826,8 @@ Computes the global properties of a region of 3d space delimited with the surfac ") BRepGProp_Vinert; BRepGProp_Vinert(BRepGProp_Face & S, BRepGProp_Domain & D, const gp_Pnt & VLocation); - /****************** BRepGProp_Vinert ******************/ - /**** md5 signature: d280d056ab61286ffa7e329635e8adc4 ****/ + /****** BRepGProp_Vinert::BRepGProp_Vinert ******/ + /****** md5 signature: d280d056ab61286ffa7e329635e8adc4 ******/ %feature("compactdefaultargs") BRepGProp_Vinert; %feature("autodoc", " Parameters @@ -1847,8 +1847,8 @@ Computes the global properties of a region of 3d space delimited with the surfac ") BRepGProp_Vinert; BRepGProp_Vinert(BRepGProp_Face & S, BRepGProp_Domain & D, const gp_Pnt & VLocation, const Standard_Real Eps); - /****************** BRepGProp_Vinert ******************/ - /**** md5 signature: f3a262fb64cb9de88ea729596d32dfa8 ****/ + /****** BRepGProp_Vinert::BRepGProp_Vinert ******/ + /****** md5 signature: f3a262fb64cb9de88ea729596d32dfa8 ******/ %feature("compactdefaultargs") BRepGProp_Vinert; %feature("autodoc", " Parameters @@ -1868,8 +1868,8 @@ Computes the global properties of the region of 3d space delimited with the surf ") BRepGProp_Vinert; BRepGProp_Vinert(BRepGProp_Face & S, BRepGProp_Domain & D, const gp_Pnt & O, const gp_Pnt & VLocation); - /****************** BRepGProp_Vinert ******************/ - /**** md5 signature: 0fb97e514eb1305a85cb6f202d0ca710 ****/ + /****** BRepGProp_Vinert::BRepGProp_Vinert ******/ + /****** md5 signature: 0fb97e514eb1305a85cb6f202d0ca710 ******/ %feature("compactdefaultargs") BRepGProp_Vinert; %feature("autodoc", " Parameters @@ -1890,8 +1890,8 @@ Computes the global properties of the region of 3d space delimited with the surf ") BRepGProp_Vinert; BRepGProp_Vinert(BRepGProp_Face & S, BRepGProp_Domain & D, const gp_Pnt & O, const gp_Pnt & VLocation, const Standard_Real Eps); - /****************** BRepGProp_Vinert ******************/ - /**** md5 signature: 4d4d2889b5f4db0e01ce23afa5532b52 ****/ + /****** BRepGProp_Vinert::BRepGProp_Vinert ******/ + /****** md5 signature: 4d4d2889b5f4db0e01ce23afa5532b52 ******/ %feature("compactdefaultargs") BRepGProp_Vinert; %feature("autodoc", " Parameters @@ -1911,8 +1911,8 @@ Computes the global properties of the region of 3d space delimited with the surf ") BRepGProp_Vinert; BRepGProp_Vinert(BRepGProp_Face & S, BRepGProp_Domain & D, const gp_Pln & Pl, const gp_Pnt & VLocation); - /****************** BRepGProp_Vinert ******************/ - /**** md5 signature: f45f2cd07c17c648e1699a791da66461 ****/ + /****** BRepGProp_Vinert::BRepGProp_Vinert ******/ + /****** md5 signature: f45f2cd07c17c648e1699a791da66461 ******/ %feature("compactdefaultargs") BRepGProp_Vinert; %feature("autodoc", " Parameters @@ -1933,8 +1933,8 @@ Computes the global properties of the region of 3d space delimited with the surf ") BRepGProp_Vinert; BRepGProp_Vinert(BRepGProp_Face & S, BRepGProp_Domain & D, const gp_Pln & Pl, const gp_Pnt & VLocation, const Standard_Real Eps); - /****************** GetEpsilon ******************/ - /**** md5 signature: 70053d03d9c27b2171a20b75ca67dc00 ****/ + /****** BRepGProp_Vinert::GetEpsilon ******/ + /****** md5 signature: 70053d03d9c27b2171a20b75ca67dc00 ******/ %feature("compactdefaultargs") GetEpsilon; %feature("autodoc", "Return ------- @@ -1946,8 +1946,8 @@ If previously used methods containe eps parameter gets actual relative error of ") GetEpsilon; Standard_Real GetEpsilon(); - /****************** Perform ******************/ - /**** md5 signature: 287766d0387e8a92bd6fd7efea57304a ****/ + /****** BRepGProp_Vinert::Perform ******/ + /****** md5 signature: 287766d0387e8a92bd6fd7efea57304a ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1964,8 +1964,8 @@ No available documentation. ") Perform; void Perform(const BRepGProp_Face & S); - /****************** Perform ******************/ - /**** md5 signature: 9f27bb8deb5f9df42810f2abd51c6026 ****/ + /****** BRepGProp_Vinert::Perform ******/ + /****** md5 signature: 9f27bb8deb5f9df42810f2abd51c6026 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1983,8 +1983,8 @@ No available documentation. ") Perform; Standard_Real Perform(BRepGProp_Face & S, const Standard_Real Eps); - /****************** Perform ******************/ - /**** md5 signature: e894591640d6f840f3181c73a396ac73 ****/ + /****** BRepGProp_Vinert::Perform ******/ + /****** md5 signature: e894591640d6f840f3181c73a396ac73 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2002,8 +2002,8 @@ No available documentation. ") Perform; void Perform(const BRepGProp_Face & S, const gp_Pnt & O); - /****************** Perform ******************/ - /**** md5 signature: 3557a52fecea80979634ca485366f4ce ****/ + /****** BRepGProp_Vinert::Perform ******/ + /****** md5 signature: 3557a52fecea80979634ca485366f4ce ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2022,8 +2022,8 @@ No available documentation. ") Perform; Standard_Real Perform(BRepGProp_Face & S, const gp_Pnt & O, const Standard_Real Eps); - /****************** Perform ******************/ - /**** md5 signature: 00372c2d834eb3c1d978ec6bfb1f027f ****/ + /****** BRepGProp_Vinert::Perform ******/ + /****** md5 signature: 00372c2d834eb3c1d978ec6bfb1f027f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2041,8 +2041,8 @@ No available documentation. ") Perform; void Perform(const BRepGProp_Face & S, const gp_Pln & Pl); - /****************** Perform ******************/ - /**** md5 signature: 648e9947f4302031d12bd0a17b5fbe0f ****/ + /****** BRepGProp_Vinert::Perform ******/ + /****** md5 signature: 648e9947f4302031d12bd0a17b5fbe0f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2061,8 +2061,8 @@ No available documentation. ") Perform; Standard_Real Perform(BRepGProp_Face & S, const gp_Pln & Pl, const Standard_Real Eps); - /****************** Perform ******************/ - /**** md5 signature: 2a40161e06229ca1640ab336b74b37cd ****/ + /****** BRepGProp_Vinert::Perform ******/ + /****** md5 signature: 2a40161e06229ca1640ab336b74b37cd ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2080,8 +2080,8 @@ No available documentation. ") Perform; void Perform(BRepGProp_Face & S, BRepGProp_Domain & D); - /****************** Perform ******************/ - /**** md5 signature: a7c77e80349f9dd440598643ec9aae4a ****/ + /****** BRepGProp_Vinert::Perform ******/ + /****** md5 signature: a7c77e80349f9dd440598643ec9aae4a ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2100,8 +2100,8 @@ No available documentation. ") Perform; Standard_Real Perform(BRepGProp_Face & S, BRepGProp_Domain & D, const Standard_Real Eps); - /****************** Perform ******************/ - /**** md5 signature: 51bda88f4b6e7d3e15825d1a104b74c9 ****/ + /****** BRepGProp_Vinert::Perform ******/ + /****** md5 signature: 51bda88f4b6e7d3e15825d1a104b74c9 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2120,8 +2120,8 @@ No available documentation. ") Perform; void Perform(BRepGProp_Face & S, BRepGProp_Domain & D, const gp_Pnt & O); - /****************** Perform ******************/ - /**** md5 signature: 933e01d497a5ae64a162e32137b481fb ****/ + /****** BRepGProp_Vinert::Perform ******/ + /****** md5 signature: 933e01d497a5ae64a162e32137b481fb ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2141,8 +2141,8 @@ No available documentation. ") Perform; Standard_Real Perform(BRepGProp_Face & S, BRepGProp_Domain & D, const gp_Pnt & O, const Standard_Real Eps); - /****************** Perform ******************/ - /**** md5 signature: 751b530e05960276e54a63742e074cc1 ****/ + /****** BRepGProp_Vinert::Perform ******/ + /****** md5 signature: 751b530e05960276e54a63742e074cc1 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2161,8 +2161,8 @@ No available documentation. ") Perform; void Perform(BRepGProp_Face & S, BRepGProp_Domain & D, const gp_Pln & Pl); - /****************** Perform ******************/ - /**** md5 signature: 1acf8519ff5d34431bd836b7af497b0a ****/ + /****** BRepGProp_Vinert::Perform ******/ + /****** md5 signature: 1acf8519ff5d34431bd836b7af497b0a ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2182,8 +2182,8 @@ No available documentation. ") Perform; Standard_Real Perform(BRepGProp_Face & S, BRepGProp_Domain & D, const gp_Pln & Pl, const Standard_Real Eps); - /****************** SetLocation ******************/ - /**** md5 signature: 13648852ef1c389d29559ab743f5f9e2 ****/ + /****** BRepGProp_Vinert::SetLocation ******/ + /****** md5 signature: 13648852ef1c389d29559ab743f5f9e2 ******/ %feature("compactdefaultargs") SetLocation; %feature("autodoc", " Parameters @@ -2214,8 +2214,8 @@ No available documentation. ***************************/ class BRepGProp_VinertGK : public GProp_GProps { public: - /****************** BRepGProp_VinertGK ******************/ - /**** md5 signature: 2b4ec0003b8c134168e48daf41971b72 ****/ + /****** BRepGProp_VinertGK::BRepGProp_VinertGK ******/ + /****** md5 signature: 2b4ec0003b8c134168e48daf41971b72 ******/ %feature("compactdefaultargs") BRepGProp_VinertGK; %feature("autodoc", "Return ------- @@ -2227,8 +2227,8 @@ Empty constructor. ") BRepGProp_VinertGK; BRepGProp_VinertGK(); - /****************** BRepGProp_VinertGK ******************/ - /**** md5 signature: 8c95cbab67ec10c708d18427bfedfaaa ****/ + /****** BRepGProp_VinertGK::BRepGProp_VinertGK ******/ + /****** md5 signature: 8c95cbab67ec10c708d18427bfedfaaa ******/ %feature("compactdefaultargs") BRepGProp_VinertGK; %feature("autodoc", " Parameters @@ -2249,8 +2249,8 @@ Constructor. computes the global properties of a region of 3d space delimited wi ") BRepGProp_VinertGK; BRepGProp_VinertGK(BRepGProp_Face & theSurface, const gp_Pnt & theLocation, const Standard_Real theTolerance = 0.001, const Standard_Boolean theCGFlag = Standard_False, const Standard_Boolean theIFlag = Standard_False); - /****************** BRepGProp_VinertGK ******************/ - /**** md5 signature: 8d65b075f239d772811f6e7cd57131e1 ****/ + /****** BRepGProp_VinertGK::BRepGProp_VinertGK ******/ + /****** md5 signature: 8d65b075f239d772811f6e7cd57131e1 ******/ %feature("compactdefaultargs") BRepGProp_VinertGK; %feature("autodoc", " Parameters @@ -2272,8 +2272,8 @@ Constructor. computes the global properties of a region of 3d space delimited wi ") BRepGProp_VinertGK; BRepGProp_VinertGK(BRepGProp_Face & theSurface, const gp_Pnt & thePoint, const gp_Pnt & theLocation, const Standard_Real theTolerance = 0.001, const Standard_Boolean theCGFlag = Standard_False, const Standard_Boolean theIFlag = Standard_False); - /****************** BRepGProp_VinertGK ******************/ - /**** md5 signature: 92192b1666bb702876fdd35bd985cf10 ****/ + /****** BRepGProp_VinertGK::BRepGProp_VinertGK ******/ + /****** md5 signature: 92192b1666bb702876fdd35bd985cf10 ******/ %feature("compactdefaultargs") BRepGProp_VinertGK; %feature("autodoc", " Parameters @@ -2295,8 +2295,8 @@ Constructor. computes the global properties of a region of 3d space delimited wi ") BRepGProp_VinertGK; BRepGProp_VinertGK(BRepGProp_Face & theSurface, BRepGProp_Domain & theDomain, const gp_Pnt & theLocation, const Standard_Real theTolerance = 0.001, const Standard_Boolean theCGFlag = Standard_False, const Standard_Boolean theIFlag = Standard_False); - /****************** BRepGProp_VinertGK ******************/ - /**** md5 signature: e075379e488804335fc45904b5e86b1d ****/ + /****** BRepGProp_VinertGK::BRepGProp_VinertGK ******/ + /****** md5 signature: e075379e488804335fc45904b5e86b1d ******/ %feature("compactdefaultargs") BRepGProp_VinertGK; %feature("autodoc", " Parameters @@ -2319,8 +2319,8 @@ Constructor. computes the global properties of a region of 3d space delimited wi ") BRepGProp_VinertGK; BRepGProp_VinertGK(BRepGProp_Face & theSurface, BRepGProp_Domain & theDomain, const gp_Pnt & thePoint, const gp_Pnt & theLocation, const Standard_Real theTolerance = 0.001, const Standard_Boolean theCGFlag = Standard_False, const Standard_Boolean theIFlag = Standard_False); - /****************** BRepGProp_VinertGK ******************/ - /**** md5 signature: 6867b4fa1afaa445bfbfbaf96b8446eb ****/ + /****** BRepGProp_VinertGK::BRepGProp_VinertGK ******/ + /****** md5 signature: 6867b4fa1afaa445bfbfbaf96b8446eb ******/ %feature("compactdefaultargs") BRepGProp_VinertGK; %feature("autodoc", " Parameters @@ -2342,8 +2342,8 @@ Constructor. computes the global properties of a region of 3d space delimited wi ") BRepGProp_VinertGK; BRepGProp_VinertGK(BRepGProp_Face & theSurface, const gp_Pln & thePlane, const gp_Pnt & theLocation, const Standard_Real theTolerance = 0.001, const Standard_Boolean theCGFlag = Standard_False, const Standard_Boolean theIFlag = Standard_False); - /****************** BRepGProp_VinertGK ******************/ - /**** md5 signature: 648a50ab357462085f5dfb351879b539 ****/ + /****** BRepGProp_VinertGK::BRepGProp_VinertGK ******/ + /****** md5 signature: 648a50ab357462085f5dfb351879b539 ******/ %feature("compactdefaultargs") BRepGProp_VinertGK; %feature("autodoc", " Parameters @@ -2366,8 +2366,8 @@ Constructor. computes the global properties of a region of 3d space delimited wi ") BRepGProp_VinertGK; BRepGProp_VinertGK(BRepGProp_Face & theSurface, BRepGProp_Domain & theDomain, const gp_Pln & thePlane, const gp_Pnt & theLocation, const Standard_Real theTolerance = 0.001, const Standard_Boolean theCGFlag = Standard_False, const Standard_Boolean theIFlag = Standard_False); - /****************** GetErrorReached ******************/ - /**** md5 signature: 41776af72d3d1a9138d3f5f33aa13fdd ****/ + /****** BRepGProp_VinertGK::GetErrorReached ******/ + /****** md5 signature: 41776af72d3d1a9138d3f5f33aa13fdd ******/ %feature("compactdefaultargs") GetErrorReached; %feature("autodoc", "Return ------- @@ -2379,8 +2379,8 @@ Returns the relative reached computation error. ") GetErrorReached; Standard_Real GetErrorReached(); - /****************** Perform ******************/ - /**** md5 signature: d570fe8ddab01258ba30702a3483ec6f ****/ + /****** BRepGProp_VinertGK::Perform ******/ + /****** md5 signature: d570fe8ddab01258ba30702a3483ec6f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2400,8 +2400,8 @@ Computes the global properties of a region of 3d space delimited with the natura ") Perform; Standard_Real Perform(BRepGProp_Face & theSurface, const Standard_Real theTolerance = 0.001, const Standard_Boolean theCGFlag = Standard_False, const Standard_Boolean theIFlag = Standard_False); - /****************** Perform ******************/ - /**** md5 signature: b4af8c130cc28d347e5136c66efe2e2b ****/ + /****** BRepGProp_VinertGK::Perform ******/ + /****** md5 signature: b4af8c130cc28d347e5136c66efe2e2b ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2422,8 +2422,8 @@ Computes the global properties of a region of 3d space delimited with the natura ") Perform; Standard_Real Perform(BRepGProp_Face & theSurface, const gp_Pnt & thePoint, const Standard_Real theTolerance = 0.001, const Standard_Boolean theCGFlag = Standard_False, const Standard_Boolean theIFlag = Standard_False); - /****************** Perform ******************/ - /**** md5 signature: b40034b46e1dbb701f4a74e5c0f074dc ****/ + /****** BRepGProp_VinertGK::Perform ******/ + /****** md5 signature: b40034b46e1dbb701f4a74e5c0f074dc ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2444,8 +2444,8 @@ Computes the global properties of a region of 3d space delimited with the surfac ") Perform; Standard_Real Perform(BRepGProp_Face & theSurface, BRepGProp_Domain & theDomain, const Standard_Real theTolerance = 0.001, const Standard_Boolean theCGFlag = Standard_False, const Standard_Boolean theIFlag = Standard_False); - /****************** Perform ******************/ - /**** md5 signature: e2709a20d48918e9084b81ceae2afbce ****/ + /****** BRepGProp_VinertGK::Perform ******/ + /****** md5 signature: e2709a20d48918e9084b81ceae2afbce ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2467,8 +2467,8 @@ Computes the global properties of a region of 3d space delimited with the surfac ") Perform; Standard_Real Perform(BRepGProp_Face & theSurface, BRepGProp_Domain & theDomain, const gp_Pnt & thePoint, const Standard_Real theTolerance = 0.001, const Standard_Boolean theCGFlag = Standard_False, const Standard_Boolean theIFlag = Standard_False); - /****************** Perform ******************/ - /**** md5 signature: c7217d0c046ee96a7a7100e2a76bbce3 ****/ + /****** BRepGProp_VinertGK::Perform ******/ + /****** md5 signature: c7217d0c046ee96a7a7100e2a76bbce3 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2489,8 +2489,8 @@ Computes the global properties of a region of 3d space delimited with the natura ") Perform; Standard_Real Perform(BRepGProp_Face & theSurface, const gp_Pln & thePlane, const Standard_Real theTolerance = 0.001, const Standard_Boolean theCGFlag = Standard_False, const Standard_Boolean theIFlag = Standard_False); - /****************** Perform ******************/ - /**** md5 signature: 59e16d24d1aae57294bc90cb8d6007e5 ****/ + /****** BRepGProp_VinertGK::Perform ******/ + /****** md5 signature: 59e16d24d1aae57294bc90cb8d6007e5 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2512,8 +2512,8 @@ Computes the global properties of a region of 3d space delimited with the surfac ") Perform; Standard_Real Perform(BRepGProp_Face & theSurface, BRepGProp_Domain & theDomain, const gp_Pln & thePlane, const Standard_Real theTolerance = 0.001, const Standard_Boolean theCGFlag = Standard_False, const Standard_Boolean theIFlag = Standard_False); - /****************** SetLocation ******************/ - /**** md5 signature: 49b73879adebd078faa244b518af4276 ****/ + /****** BRepGProp_VinertGK::SetLocation ******/ + /****** md5 signature: 49b73879adebd078faa244b518af4276 ******/ %feature("compactdefaultargs") SetLocation; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BRepIntCurveSurface.i b/src/SWIG_files/wrapper/BRepIntCurveSurface.i index fcc5a9d72..177a37f31 100644 --- a/src/SWIG_files/wrapper/BRepIntCurveSurface.i +++ b/src/SWIG_files/wrapper/BRepIntCurveSurface.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPINTCURVESURFACEDOCSTRING "BRepIntCurveSurface module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepintcurvesurface.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepintcurvesurface.html" %enddef %module (package="OCC.Core", docstring=BREPINTCURVESURFACEDOCSTRING) BRepIntCurveSurface @@ -97,8 +97,8 @@ from OCC.Core.Exception import * **********************************/ class BRepIntCurveSurface_Inter { public: - /****************** BRepIntCurveSurface_Inter ******************/ - /**** md5 signature: b746fb1d3b88cfc1c23fbf7d63f720ba ****/ + /****** BRepIntCurveSurface_Inter::BRepIntCurveSurface_Inter ******/ + /****** md5 signature: b746fb1d3b88cfc1c23fbf7d63f720ba ******/ %feature("compactdefaultargs") BRepIntCurveSurface_Inter; %feature("autodoc", "Return ------- @@ -110,8 +110,8 @@ Empty constructor;. ") BRepIntCurveSurface_Inter; BRepIntCurveSurface_Inter(); - /****************** Face ******************/ - /**** md5 signature: 91e216ebeb76e55c73eb9e179241a6ff ****/ + /****** BRepIntCurveSurface_Inter::Face ******/ + /****** md5 signature: 91e216ebeb76e55c73eb9e179241a6ff ******/ %feature("compactdefaultargs") Face; %feature("autodoc", "Return ------- @@ -123,8 +123,8 @@ Returns the current face. ") Face; const TopoDS_Face Face(); - /****************** Init ******************/ - /**** md5 signature: 07985eba3bf85498690ed01b37f51fca ****/ + /****** BRepIntCurveSurface_Inter::Init ******/ + /****** md5 signature: 07985eba3bf85498690ed01b37f51fca ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -143,8 +143,8 @@ Load the shape, the curve and initialize the tolerance used for the classificati ") Init; void Init(const TopoDS_Shape & theShape, const GeomAdaptor_Curve & theCurve, const Standard_Real theTol); - /****************** Init ******************/ - /**** md5 signature: 3b1e312f54bb7607e78407ff166c1205 ****/ + /****** BRepIntCurveSurface_Inter::Init ******/ + /****** md5 signature: 3b1e312f54bb7607e78407ff166c1205 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -163,8 +163,8 @@ Load the shape, the curve and initialize the tolerance used for the classificati ") Init; void Init(const TopoDS_Shape & theShape, const gp_Lin & theLine, const Standard_Real theTol); - /****************** Init ******************/ - /**** md5 signature: 520ca4890c4d0b4a44c85c9b44d9905c ****/ + /****** BRepIntCurveSurface_Inter::Init ******/ + /****** md5 signature: 520ca4890c4d0b4a44c85c9b44d9905c ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -181,8 +181,8 @@ Method to find intersections of specified curve with loaded shape. ") Init; void Init(const GeomAdaptor_Curve & theCurve); - /****************** Load ******************/ - /**** md5 signature: a747fed191518a6d90101ad47bb98e22 ****/ + /****** BRepIntCurveSurface_Inter::Load ******/ + /****** md5 signature: a747fed191518a6d90101ad47bb98e22 ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -200,8 +200,8 @@ Load the shape, and initialize the tolerance used for the classification. ") Load; void Load(const TopoDS_Shape & theShape, const Standard_Real theTol); - /****************** More ******************/ - /**** md5 signature: 6f6e915c9a3dca758c059d9e8af02dff ****/ + /****** BRepIntCurveSurface_Inter::More ******/ + /****** md5 signature: 6f6e915c9a3dca758c059d9e8af02dff ******/ %feature("compactdefaultargs") More; %feature("autodoc", "Return ------- @@ -213,8 +213,8 @@ Returns true if there is a current face. ") More; Standard_Boolean More(); - /****************** Next ******************/ - /**** md5 signature: f35c0df5f1d7c877986db18081404532 ****/ + /****** BRepIntCurveSurface_Inter::Next ******/ + /****** md5 signature: f35c0df5f1d7c877986db18081404532 ******/ %feature("compactdefaultargs") Next; %feature("autodoc", "Return ------- @@ -226,8 +226,8 @@ Sets the next intersection point to check. ") Next; void Next(); - /****************** Pnt ******************/ - /**** md5 signature: c0bafeed50f4eebb5964e2bf8520bf90 ****/ + /****** BRepIntCurveSurface_Inter::Pnt ******/ + /****** md5 signature: c0bafeed50f4eebb5964e2bf8520bf90 ******/ %feature("compactdefaultargs") Pnt; %feature("autodoc", "Return ------- @@ -239,8 +239,8 @@ Returns the current geometric point. ") Pnt; const gp_Pnt Pnt(); - /****************** Point ******************/ - /**** md5 signature: 39b389cfd53f7848e2a79affac9ccd3b ****/ + /****** BRepIntCurveSurface_Inter::Point ******/ + /****** md5 signature: 39b389cfd53f7848e2a79affac9ccd3b ******/ %feature("compactdefaultargs") Point; %feature("autodoc", "Return ------- @@ -252,8 +252,8 @@ Returns the current intersection point. ") Point; IntCurveSurface_IntersectionPoint Point(); - /****************** State ******************/ - /**** md5 signature: 927c83b1efdec797adb47eb058eddaa0 ****/ + /****** BRepIntCurveSurface_Inter::State ******/ + /****** md5 signature: 927c83b1efdec797adb47eb058eddaa0 ******/ %feature("compactdefaultargs") State; %feature("autodoc", "Return ------- @@ -265,8 +265,8 @@ Returns the current state (in or on). ") State; TopAbs_State State(); - /****************** Transition ******************/ - /**** md5 signature: bd528dc9c78a60a5b26409b8cf4f3afe ****/ + /****** BRepIntCurveSurface_Inter::Transition ******/ + /****** md5 signature: bd528dc9c78a60a5b26409b8cf4f3afe ******/ %feature("compactdefaultargs") Transition; %feature("autodoc", "Return ------- @@ -278,8 +278,8 @@ Returns the transition of the line on the surface (in or out or unknown). ") Transition; IntCurveSurface_TransitionOnCurve Transition(); - /****************** U ******************/ - /**** md5 signature: dd41b21b6ce05c48c2d8d002663816e1 ****/ + /****** BRepIntCurveSurface_Inter::U ******/ + /****** md5 signature: dd41b21b6ce05c48c2d8d002663816e1 ******/ %feature("compactdefaultargs") U; %feature("autodoc", "Return ------- @@ -291,8 +291,8 @@ Returns the u parameter of the current point on the current face. ") U; Standard_Real U(); - /****************** V ******************/ - /**** md5 signature: a561db1f9ebb0e926d3862b2e88ce187 ****/ + /****** BRepIntCurveSurface_Inter::V ******/ + /****** md5 signature: a561db1f9ebb0e926d3862b2e88ce187 ******/ %feature("compactdefaultargs") V; %feature("autodoc", "Return ------- @@ -304,8 +304,8 @@ Returns the v parameter of the current point on the current face. ") V; Standard_Real V(); - /****************** W ******************/ - /**** md5 signature: dde24677dd63b48ccacea2fe8006eed7 ****/ + /****** BRepIntCurveSurface_Inter::W ******/ + /****** md5 signature: dde24677dd63b48ccacea2fe8006eed7 ******/ %feature("compactdefaultargs") W; %feature("autodoc", "Return ------- diff --git a/src/SWIG_files/wrapper/BRepLProp.i b/src/SWIG_files/wrapper/BRepLProp.i index 409aec579..c8138719b 100644 --- a/src/SWIG_files/wrapper/BRepLProp.i +++ b/src/SWIG_files/wrapper/BRepLProp.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPLPROPDOCSTRING "BRepLProp module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_breplprop.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_breplprop.html" %enddef %module (package="OCC.Core", docstring=BREPLPROPDOCSTRING) BRepLProp @@ -95,8 +95,8 @@ from OCC.Core.Exception import * %rename(breplprop) BRepLProp; class BRepLProp { public: - /****************** Continuity ******************/ - /**** md5 signature: baccdbebcd7cbea6bbd8e829a9341d66 ****/ + /****** BRepLProp::Continuity ******/ + /****** md5 signature: baccdbebcd7cbea6bbd8e829a9341d66 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", " Parameters @@ -118,8 +118,8 @@ Computes the regularity at the junction between c1 and c2. the point u1 on c1 an ") Continuity; static GeomAbs_Shape Continuity(const BRepAdaptor_Curve & C1, const BRepAdaptor_Curve & C2, const Standard_Real u1, const Standard_Real u2, const Standard_Real tl, const Standard_Real ta); - /****************** Continuity ******************/ - /**** md5 signature: 6e2749f77e1b8216030c4a38b7461152 ****/ + /****** BRepLProp::Continuity ******/ + /****** md5 signature: 6e2749f77e1b8216030c4a38b7461152 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", " Parameters @@ -153,8 +153,8 @@ The same as preceding but using the standard tolerances from package precision. **************************/ class BRepLProp_CLProps { public: - /****************** BRepLProp_CLProps ******************/ - /**** md5 signature: 1a49643bc4e2821082b45de7b9f24a4a ****/ + /****** BRepLProp_CLProps::BRepLProp_CLProps ******/ + /****** md5 signature: 1a49643bc4e2821082b45de7b9f24a4a ******/ %feature("compactdefaultargs") BRepLProp_CLProps; %feature("autodoc", " Parameters @@ -173,8 +173,8 @@ Initializes the local properties of the curve the current point and the deri ") BRepLProp_CLProps; BRepLProp_CLProps(const BRepAdaptor_Curve & C, const Standard_Integer N, const Standard_Real Resolution); - /****************** BRepLProp_CLProps ******************/ - /**** md5 signature: f031debf6f0c1f6721a87e44c73e9f4a ****/ + /****** BRepLProp_CLProps::BRepLProp_CLProps ******/ + /****** md5 signature: f031debf6f0c1f6721a87e44c73e9f4a ******/ %feature("compactdefaultargs") BRepLProp_CLProps; %feature("autodoc", " Parameters @@ -194,8 +194,8 @@ Same as previous constructor but here the parameter is set to the value . all ") BRepLProp_CLProps; BRepLProp_CLProps(const BRepAdaptor_Curve & C, const Standard_Real U, const Standard_Integer N, const Standard_Real Resolution); - /****************** BRepLProp_CLProps ******************/ - /**** md5 signature: 504921f37298616b340c5e5255b73e44 ****/ + /****** BRepLProp_CLProps::BRepLProp_CLProps ******/ + /****** md5 signature: 504921f37298616b340c5e5255b73e44 ******/ %feature("compactdefaultargs") BRepLProp_CLProps; %feature("autodoc", " Parameters @@ -213,8 +213,8 @@ Same as previous constructor but here the parameter is set to the value and ") BRepLProp_CLProps; BRepLProp_CLProps(const Standard_Integer N, const Standard_Real Resolution); - /****************** CentreOfCurvature ******************/ - /**** md5 signature: 62d176ce7c370b0aaf979899c5c8c8ed ****/ + /****** BRepLProp_CLProps::CentreOfCurvature ******/ + /****** md5 signature: 62d176ce7c370b0aaf979899c5c8c8ed ******/ %feature("compactdefaultargs") CentreOfCurvature; %feature("autodoc", " Parameters @@ -231,8 +231,8 @@ Returns the centre of curvature

. ") CentreOfCurvature; void CentreOfCurvature(gp_Pnt & P); - /****************** Curvature ******************/ - /**** md5 signature: 4886f38d109c8344d719e9973cfea7e1 ****/ + /****** BRepLProp_CLProps::Curvature ******/ + /****** md5 signature: 4886f38d109c8344d719e9973cfea7e1 ******/ %feature("compactdefaultargs") Curvature; %feature("autodoc", "Return ------- @@ -244,8 +244,8 @@ Returns the curvature. ") Curvature; Standard_Real Curvature(); - /****************** D1 ******************/ - /**** md5 signature: 0b334102acda4d3b92a2badfa14b3be9 ****/ + /****** BRepLProp_CLProps::D1 ******/ + /****** md5 signature: 0b334102acda4d3b92a2badfa14b3be9 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", "Return ------- @@ -257,8 +257,8 @@ Returns the first derivative. the derivative is computed if it has not been yet. ") D1; const gp_Vec D1(); - /****************** D2 ******************/ - /**** md5 signature: 46fd60fbfe8cc806f27ca68c1234907f ****/ + /****** BRepLProp_CLProps::D2 ******/ + /****** md5 signature: 46fd60fbfe8cc806f27ca68c1234907f ******/ %feature("compactdefaultargs") D2; %feature("autodoc", "Return ------- @@ -270,8 +270,8 @@ Returns the second derivative. the derivative is computed if it has not been yet ") D2; const gp_Vec D2(); - /****************** D3 ******************/ - /**** md5 signature: 941f449454d8f26edc70e5f1f599e44c ****/ + /****** BRepLProp_CLProps::D3 ******/ + /****** md5 signature: 941f449454d8f26edc70e5f1f599e44c ******/ %feature("compactdefaultargs") D3; %feature("autodoc", "Return ------- @@ -283,8 +283,8 @@ Returns the third derivative. the derivative is computed if it has not been yet. ") D3; const gp_Vec D3(); - /****************** IsTangentDefined ******************/ - /**** md5 signature: 96b1d1e7ead0e227ec7d76f9ad798ae8 ****/ + /****** BRepLProp_CLProps::IsTangentDefined ******/ + /****** md5 signature: 96b1d1e7ead0e227ec7d76f9ad798ae8 ******/ %feature("compactdefaultargs") IsTangentDefined; %feature("autodoc", "Return ------- @@ -296,8 +296,8 @@ Returns true if the tangent is defined. for example, the tangent is not defined ") IsTangentDefined; Standard_Boolean IsTangentDefined(); - /****************** Normal ******************/ - /**** md5 signature: 03cb2acf0c09b71a9b7b3d5cbd0efe88 ****/ + /****** BRepLProp_CLProps::Normal ******/ + /****** md5 signature: 03cb2acf0c09b71a9b7b3d5cbd0efe88 ******/ %feature("compactdefaultargs") Normal; %feature("autodoc", " Parameters @@ -314,8 +314,8 @@ Returns the normal direction . ") Normal; void Normal(gp_Dir & N); - /****************** SetCurve ******************/ - /**** md5 signature: 16ffbdd576b192e6cef9ed8bb4f0155f ****/ + /****** BRepLProp_CLProps::SetCurve ******/ + /****** md5 signature: 16ffbdd576b192e6cef9ed8bb4f0155f ******/ %feature("compactdefaultargs") SetCurve; %feature("autodoc", " Parameters @@ -332,8 +332,8 @@ Initializes the local properties of the curve for the new curve. ") SetCurve; void SetCurve(const BRepAdaptor_Curve & C); - /****************** SetParameter ******************/ - /**** md5 signature: 6d7d0a8f07175b76bb327cfdc33d2266 ****/ + /****** BRepLProp_CLProps::SetParameter ******/ + /****** md5 signature: 6d7d0a8f07175b76bb327cfdc33d2266 ******/ %feature("compactdefaultargs") SetParameter; %feature("autodoc", " Parameters @@ -350,8 +350,8 @@ Initializes the local properties of the curve for the parameter value . ") SetParameter; void SetParameter(const Standard_Real U); - /****************** Tangent ******************/ - /**** md5 signature: 0e5f1db5e09f49610a019ac45223943c ****/ + /****** BRepLProp_CLProps::Tangent ******/ + /****** md5 signature: 0e5f1db5e09f49610a019ac45223943c ******/ %feature("compactdefaultargs") Tangent; %feature("autodoc", " Parameters @@ -368,8 +368,8 @@ Output the tangent direction . ") Tangent; void Tangent(gp_Dir & D); - /****************** Value ******************/ - /**** md5 signature: eddd2908948849b73f6d8aacab318652 ****/ + /****** BRepLProp_CLProps::Value ******/ + /****** md5 signature: eddd2908948849b73f6d8aacab318652 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -395,8 +395,8 @@ Returns the point. ****************************/ class BRepLProp_CurveTool { public: - /****************** Continuity ******************/ - /**** md5 signature: deb6372304bc5f5551cfce8b2afe343b ****/ + /****** BRepLProp_CurveTool::Continuity ******/ + /****** md5 signature: deb6372304bc5f5551cfce8b2afe343b ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", " Parameters @@ -413,8 +413,8 @@ Returns the order of continuity of the curve . returns 1: first derivative on ") Continuity; static Standard_Integer Continuity(const BRepAdaptor_Curve & C); - /****************** D1 ******************/ - /**** md5 signature: 5556be7cd9882922dfddd95e3b9c9ecf ****/ + /****** BRepLProp_CurveTool::D1 ******/ + /****** md5 signature: 5556be7cd9882922dfddd95e3b9c9ecf ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -434,8 +434,8 @@ Computes the point

and first derivative of parameter on the curve < ") D1; static void D1(const BRepAdaptor_Curve & C, const Standard_Real U, gp_Pnt & P, gp_Vec & V1); - /****************** D2 ******************/ - /**** md5 signature: b2ec4e844fab19ed2485d22a8745268f ****/ + /****** BRepLProp_CurveTool::D2 ******/ + /****** md5 signature: b2ec4e844fab19ed2485d22a8745268f ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -456,8 +456,8 @@ Computes the point

, the first derivative and second derivative of ") D2; static void D2(const BRepAdaptor_Curve & C, const Standard_Real U, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2); - /****************** D3 ******************/ - /**** md5 signature: 77f327d302e5c58bef64f7dabd80585e ****/ + /****** BRepLProp_CurveTool::D3 ******/ + /****** md5 signature: 77f327d302e5c58bef64f7dabd80585e ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -479,8 +479,8 @@ Computes the point

, the first derivative , the second derivative an ") D3; static void D3(const BRepAdaptor_Curve & C, const Standard_Real U, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2, gp_Vec & V3); - /****************** FirstParameter ******************/ - /**** md5 signature: 1757779ac38cb6ed7a7fc48dc2248f69 ****/ + /****** BRepLProp_CurveTool::FirstParameter ******/ + /****** md5 signature: 1757779ac38cb6ed7a7fc48dc2248f69 ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", " Parameters @@ -497,8 +497,8 @@ Returns the first parameter bound of the curve. ") FirstParameter; static Standard_Real FirstParameter(const BRepAdaptor_Curve & C); - /****************** LastParameter ******************/ - /**** md5 signature: e697bafb03d659fa87fd20dbec7f562b ****/ + /****** BRepLProp_CurveTool::LastParameter ******/ + /****** md5 signature: e697bafb03d659fa87fd20dbec7f562b ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", " Parameters @@ -515,8 +515,8 @@ Returns the last parameter bound of the curve. firstparameter must be less than ") LastParameter; static Standard_Real LastParameter(const BRepAdaptor_Curve & C); - /****************** Value ******************/ - /**** md5 signature: 65d38628809f38415a32a1ec24fc6507 ****/ + /****** BRepLProp_CurveTool::Value ******/ + /****** md5 signature: 65d38628809f38415a32a1ec24fc6507 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -549,8 +549,8 @@ Computes the point

of parameter on the curve . **************************/ class BRepLProp_SLProps { public: - /****************** BRepLProp_SLProps ******************/ - /**** md5 signature: 0c538cfe6a82c86c790f840f0386d6b1 ****/ + /****** BRepLProp_SLProps::BRepLProp_SLProps ******/ + /****** md5 signature: 0c538cfe6a82c86c790f840f0386d6b1 ******/ %feature("compactdefaultargs") BRepLProp_SLProps; %feature("autodoc", " Parameters @@ -571,8 +571,8 @@ Initializes the local properties of the surface for the parameter values ( and ") BRepLProp_SLProps; BRepLProp_SLProps(const BRepAdaptor_Surface & S, const Standard_Integer N, const Standard_Real Resolution); - /****************** BRepLProp_SLProps ******************/ - /**** md5 signature: c7ec334fa138f1ff8f4638fc2305ddd2 ****/ + /****** BRepLProp_SLProps::BRepLProp_SLProps ******/ + /****** md5 signature: c7ec334fa138f1ff8f4638fc2305ddd2 ******/ %feature("compactdefaultargs") BRepLProp_SLProps; %feature("autodoc", " Parameters @@ -610,8 +610,8 @@ Idem as previous constructor but without setting the value of parameters and ") BRepLProp_SLProps; BRepLProp_SLProps(const Standard_Integer N, const Standard_Real Resolution); - /****************** CurvatureDirections ******************/ - /**** md5 signature: dce4de0944d73f0923cc57f1cae010ce ****/ + /****** BRepLProp_SLProps::CurvatureDirections ******/ + /****** md5 signature: dce4de0944d73f0923cc57f1cae010ce ******/ %feature("compactdefaultargs") CurvatureDirections; %feature("autodoc", " Parameters @@ -629,8 +629,8 @@ Returns the direction of the maximum and minimum curvature and . ") CurvatureDirections; void CurvatureDirections(gp_Dir & MaxD, gp_Dir & MinD); - /****************** D1U ******************/ - /**** md5 signature: 7fcd61e774b6033eceefa61e3338377a ****/ + /****** BRepLProp_SLProps::D1U ******/ + /****** md5 signature: 7fcd61e774b6033eceefa61e3338377a ******/ %feature("compactdefaultargs") D1U; %feature("autodoc", "Return ------- @@ -642,8 +642,8 @@ Returns the first u derivative. the derivative is computed if it has not been ye ") D1U; const gp_Vec D1U(); - /****************** D1V ******************/ - /**** md5 signature: ad864d52b93c95482f9a3644c7fe473c ****/ + /****** BRepLProp_SLProps::D1V ******/ + /****** md5 signature: ad864d52b93c95482f9a3644c7fe473c ******/ %feature("compactdefaultargs") D1V; %feature("autodoc", "Return ------- @@ -655,8 +655,8 @@ Returns the first v derivative. the derivative is computed if it has not been ye ") D1V; const gp_Vec D1V(); - /****************** D2U ******************/ - /**** md5 signature: 0472ef4d94574816aeb47829a66bdbae ****/ + /****** BRepLProp_SLProps::D2U ******/ + /****** md5 signature: 0472ef4d94574816aeb47829a66bdbae ******/ %feature("compactdefaultargs") D2U; %feature("autodoc", "Return ------- @@ -668,8 +668,8 @@ Returns the second u derivatives the derivative is computed if it has not been y ") D2U; const gp_Vec D2U(); - /****************** D2V ******************/ - /**** md5 signature: c70c5cc9b31ef0a3470d3c29498b5305 ****/ + /****** BRepLProp_SLProps::D2V ******/ + /****** md5 signature: c70c5cc9b31ef0a3470d3c29498b5305 ******/ %feature("compactdefaultargs") D2V; %feature("autodoc", "Return ------- @@ -681,8 +681,8 @@ Returns the second v derivative. the derivative is computed if it has not been y ") D2V; const gp_Vec D2V(); - /****************** DUV ******************/ - /**** md5 signature: 93a293abda31f525f2bff5034aabc11a ****/ + /****** BRepLProp_SLProps::DUV ******/ + /****** md5 signature: 93a293abda31f525f2bff5034aabc11a ******/ %feature("compactdefaultargs") DUV; %feature("autodoc", "Return ------- @@ -694,8 +694,8 @@ Returns the second uv cross-derivative. the derivative is computed if it has not ") DUV; const gp_Vec DUV(); - /****************** GaussianCurvature ******************/ - /**** md5 signature: 6f1ed6a8aa49074ec45c7600ff9ed9ad ****/ + /****** BRepLProp_SLProps::GaussianCurvature ******/ + /****** md5 signature: 6f1ed6a8aa49074ec45c7600ff9ed9ad ******/ %feature("compactdefaultargs") GaussianCurvature; %feature("autodoc", "Return ------- @@ -707,8 +707,8 @@ Returns the gaussian curvature. ") GaussianCurvature; Standard_Real GaussianCurvature(); - /****************** IsCurvatureDefined ******************/ - /**** md5 signature: 24d1c4dc0bb5e5b3cd3acab3d6b3723c ****/ + /****** BRepLProp_SLProps::IsCurvatureDefined ******/ + /****** md5 signature: 24d1c4dc0bb5e5b3cd3acab3d6b3723c ******/ %feature("compactdefaultargs") IsCurvatureDefined; %feature("autodoc", "Return ------- @@ -720,8 +720,8 @@ Returns true if the curvature is defined. ") IsCurvatureDefined; Standard_Boolean IsCurvatureDefined(); - /****************** IsNormalDefined ******************/ - /**** md5 signature: b4faa90626237a62ab1311b7cb7ad450 ****/ + /****** BRepLProp_SLProps::IsNormalDefined ******/ + /****** md5 signature: b4faa90626237a62ab1311b7cb7ad450 ******/ %feature("compactdefaultargs") IsNormalDefined; %feature("autodoc", "Return ------- @@ -733,8 +733,8 @@ Tells if the normal is defined. ") IsNormalDefined; Standard_Boolean IsNormalDefined(); - /****************** IsTangentUDefined ******************/ - /**** md5 signature: 92ed6ca4fade225cd5464af6490033b3 ****/ + /****** BRepLProp_SLProps::IsTangentUDefined ******/ + /****** md5 signature: 92ed6ca4fade225cd5464af6490033b3 ******/ %feature("compactdefaultargs") IsTangentUDefined; %feature("autodoc", "Return ------- @@ -746,8 +746,8 @@ Returns true if the u tangent is defined. for example, the tangent is not define ") IsTangentUDefined; Standard_Boolean IsTangentUDefined(); - /****************** IsTangentVDefined ******************/ - /**** md5 signature: 53c94c0bb0d39a933984467e0683397e ****/ + /****** BRepLProp_SLProps::IsTangentVDefined ******/ + /****** md5 signature: 53c94c0bb0d39a933984467e0683397e ******/ %feature("compactdefaultargs") IsTangentVDefined; %feature("autodoc", "Return ------- @@ -759,8 +759,8 @@ Returns if the v tangent is defined. for example, the tangent is not defined if ") IsTangentVDefined; Standard_Boolean IsTangentVDefined(); - /****************** IsUmbilic ******************/ - /**** md5 signature: a045467d1ec2cad50bd2dfbeab29b8fd ****/ + /****** BRepLProp_SLProps::IsUmbilic ******/ + /****** md5 signature: a045467d1ec2cad50bd2dfbeab29b8fd ******/ %feature("compactdefaultargs") IsUmbilic; %feature("autodoc", "Return ------- @@ -772,8 +772,8 @@ Returns true if the point is umbilic (i.e. if the curvature is constant). ") IsUmbilic; Standard_Boolean IsUmbilic(); - /****************** MaxCurvature ******************/ - /**** md5 signature: 42c5b0c05da3040d5856fffc987ed742 ****/ + /****** BRepLProp_SLProps::MaxCurvature ******/ + /****** md5 signature: 42c5b0c05da3040d5856fffc987ed742 ******/ %feature("compactdefaultargs") MaxCurvature; %feature("autodoc", "Return ------- @@ -785,8 +785,8 @@ Returns the maximum curvature. ") MaxCurvature; Standard_Real MaxCurvature(); - /****************** MeanCurvature ******************/ - /**** md5 signature: 5c7a78b552e4ca890e50b485026f52f3 ****/ + /****** BRepLProp_SLProps::MeanCurvature ******/ + /****** md5 signature: 5c7a78b552e4ca890e50b485026f52f3 ******/ %feature("compactdefaultargs") MeanCurvature; %feature("autodoc", "Return ------- @@ -798,8 +798,8 @@ Returns the mean curvature. ") MeanCurvature; Standard_Real MeanCurvature(); - /****************** MinCurvature ******************/ - /**** md5 signature: 9c5c8915c2ccf5b49a49ab2765ec946f ****/ + /****** BRepLProp_SLProps::MinCurvature ******/ + /****** md5 signature: 9c5c8915c2ccf5b49a49ab2765ec946f ******/ %feature("compactdefaultargs") MinCurvature; %feature("autodoc", "Return ------- @@ -811,8 +811,8 @@ Returns the minimum curvature. ") MinCurvature; Standard_Real MinCurvature(); - /****************** Normal ******************/ - /**** md5 signature: 24a2507aa20216689971a0ec1fd83f76 ****/ + /****** BRepLProp_SLProps::Normal ******/ + /****** md5 signature: 24a2507aa20216689971a0ec1fd83f76 ******/ %feature("compactdefaultargs") Normal; %feature("autodoc", "Return ------- @@ -824,8 +824,8 @@ Returns the normal direction. ") Normal; const gp_Dir Normal(); - /****************** SetParameters ******************/ - /**** md5 signature: 766228d61435cf9eaba866b58733ed73 ****/ + /****** BRepLProp_SLProps::SetParameters ******/ + /****** md5 signature: 766228d61435cf9eaba866b58733ed73 ******/ %feature("compactdefaultargs") SetParameters; %feature("autodoc", " Parameters @@ -843,8 +843,8 @@ Initializes the local properties of the surface s for the new parameter values ( ") SetParameters; void SetParameters(const Standard_Real U, const Standard_Real V); - /****************** SetSurface ******************/ - /**** md5 signature: 41e768e2032242489b7e47453e532b38 ****/ + /****** BRepLProp_SLProps::SetSurface ******/ + /****** md5 signature: 41e768e2032242489b7e47453e532b38 ******/ %feature("compactdefaultargs") SetSurface; %feature("autodoc", " Parameters @@ -861,8 +861,8 @@ Initializes the local properties of the surface s for the new surface. ") SetSurface; void SetSurface(const BRepAdaptor_Surface & S); - /****************** TangentU ******************/ - /**** md5 signature: ff20f7d1d23e153974b932d55fa30a7f ****/ + /****** BRepLProp_SLProps::TangentU ******/ + /****** md5 signature: ff20f7d1d23e153974b932d55fa30a7f ******/ %feature("compactdefaultargs") TangentU; %feature("autodoc", " Parameters @@ -879,8 +879,8 @@ Returns the tangent direction on the iso-v. ") TangentU; void TangentU(gp_Dir & D); - /****************** TangentV ******************/ - /**** md5 signature: 8241dc858e42533746e4d61351ceccd4 ****/ + /****** BRepLProp_SLProps::TangentV ******/ + /****** md5 signature: 8241dc858e42533746e4d61351ceccd4 ******/ %feature("compactdefaultargs") TangentV; %feature("autodoc", " Parameters @@ -897,8 +897,8 @@ Returns the tangent direction on the iso-v. ") TangentV; void TangentV(gp_Dir & D); - /****************** Value ******************/ - /**** md5 signature: eddd2908948849b73f6d8aacab318652 ****/ + /****** BRepLProp_SLProps::Value ******/ + /****** md5 signature: eddd2908948849b73f6d8aacab318652 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -924,8 +924,8 @@ Returns the point. ******************************/ class BRepLProp_SurfaceTool { public: - /****************** Bounds ******************/ - /**** md5 signature: 9f222222d1abc0624ca035e2237c12e9 ****/ + /****** BRepLProp_SurfaceTool::Bounds ******/ + /****** md5 signature: 9f222222d1abc0624ca035e2237c12e9 ******/ %feature("compactdefaultargs") Bounds; %feature("autodoc", " Parameters @@ -945,8 +945,8 @@ Returns the bounds of the surface. ") Bounds; static void Bounds(const BRepAdaptor_Surface & S, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Continuity ******************/ - /**** md5 signature: 1abb71ed0bc5bcb3851914dafde6a11a ****/ + /****** BRepLProp_SurfaceTool::Continuity ******/ + /****** md5 signature: 1abb71ed0bc5bcb3851914dafde6a11a ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", " Parameters @@ -963,8 +963,8 @@ Returns the order of continuity of the surface . returns 1: first derivative ") Continuity; static Standard_Integer Continuity(const BRepAdaptor_Surface & S); - /****************** D1 ******************/ - /**** md5 signature: 592559bc5aad46ba1e187df1e73ad838 ****/ + /****** BRepLProp_SurfaceTool::D1 ******/ + /****** md5 signature: 592559bc5aad46ba1e187df1e73ad838 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -986,8 +986,8 @@ Computes the point

and first derivative of parameter and on th ") D1; static void D1(const BRepAdaptor_Surface & S, const Standard_Real U, const Standard_Real V, gp_Pnt & P, gp_Vec & D1U, gp_Vec & D1V); - /****************** D2 ******************/ - /**** md5 signature: de4e2652f2ad0c2c1311b2378022ff48 ****/ + /****** BRepLProp_SurfaceTool::D2 ******/ + /****** md5 signature: de4e2652f2ad0c2c1311b2378022ff48 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -1012,8 +1012,8 @@ Computes the point

, the first derivative and second derivative o ") D2; static void D2(const BRepAdaptor_Surface & S, const Standard_Real U, const Standard_Real V, gp_Pnt & P, gp_Vec & D1U, gp_Vec & D1V, gp_Vec & D2U, gp_Vec & D2V, gp_Vec & DUV); - /****************** DN ******************/ - /**** md5 signature: 1825dd18a8c364e4f7501ee91f1451c8 ****/ + /****** BRepLProp_SurfaceTool::DN ******/ + /****** md5 signature: 1825dd18a8c364e4f7501ee91f1451c8 ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -1034,8 +1034,8 @@ No available documentation. ") DN; static gp_Vec DN(const BRepAdaptor_Surface & S, const Standard_Real U, const Standard_Real V, const Standard_Integer IU, const Standard_Integer IV); - /****************** Value ******************/ - /**** md5 signature: 9a6a14f79920621cefc6c72b5af26b36 ****/ + /****** BRepLProp_SurfaceTool::Value ******/ + /****** md5 signature: 9a6a14f79920621cefc6c72b5af26b36 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BRepLib.i b/src/SWIG_files/wrapper/BRepLib.i index 101ed8689..d31870eaf 100644 --- a/src/SWIG_files/wrapper/BRepLib.i +++ b/src/SWIG_files/wrapper/BRepLib.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPLIBDOCSTRING "BRepLib module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_breplib.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_breplib.html" %enddef %module (package="OCC.Core", docstring=BREPLIBDOCSTRING) BRepLib @@ -207,8 +207,8 @@ BRepLib_NonManifoldWire = BRepLib_WireError.BRepLib_NonManifoldWire %rename(breplib) BRepLib; class BRepLib { public: - /****************** BoundingVertex ******************/ - /**** md5 signature: 9d6407d339f4bd152392962cf95ced95 ****/ + /****** BRepLib::BoundingVertex ******/ + /****** md5 signature: 9d6407d339f4bd152392962cf95ced95 ******/ %feature("compactdefaultargs") BoundingVertex; %feature("autodoc", " Parameters @@ -226,8 +226,8 @@ Calculates the bounding sphere around the set of vertexes from the thelv list. r ") BoundingVertex; static void BoundingVertex(const NCollection_List & theLV, gp_Pnt & theNewCenter, Standard_Real &OutValue); - /****************** BuildCurve3d ******************/ - /**** md5 signature: d8e9099e9a30a929518b09d1cd9244fb ****/ + /****** BRepLib::BuildCurve3d ******/ + /****** md5 signature: d8e9099e9a30a929518b09d1cd9244fb ******/ %feature("compactdefaultargs") BuildCurve3d; %feature("autodoc", " Parameters @@ -248,8 +248,8 @@ Computes the 3d curve for the edge if it does not exist. returns true if the ") BuildCurve3d; static Standard_Boolean BuildCurve3d(const TopoDS_Edge & E, const Standard_Real Tolerance = 1.0e-5, const GeomAbs_Shape Continuity = GeomAbs_C1, const Standard_Integer MaxDegree = 14, const Standard_Integer MaxSegment = 0); - /****************** BuildCurves3d ******************/ - /**** md5 signature: f2e476cec2d67740b544a128660a06ff ****/ + /****** BRepLib::BuildCurves3d ******/ + /****** md5 signature: f2e476cec2d67740b544a128660a06ff ******/ %feature("compactdefaultargs") BuildCurves3d; %feature("autodoc", " Parameters @@ -270,8 +270,8 @@ Computes the 3d curves for all the edges of return false if one of the compu ") BuildCurves3d; static Standard_Boolean BuildCurves3d(const TopoDS_Shape & S, const Standard_Real Tolerance, const GeomAbs_Shape Continuity = GeomAbs_C1, const Standard_Integer MaxDegree = 14, const Standard_Integer MaxSegment = 0); - /****************** BuildCurves3d ******************/ - /**** md5 signature: 204d092b783dfacd75dfb95b12784384 ****/ + /****** BRepLib::BuildCurves3d ******/ + /****** md5 signature: 204d092b783dfacd75dfb95b12784384 ******/ %feature("compactdefaultargs") BuildCurves3d; %feature("autodoc", " Parameters @@ -288,8 +288,8 @@ Computes the 3d curves for all the edges of return false if one of the compu ") BuildCurves3d; static Standard_Boolean BuildCurves3d(const TopoDS_Shape & S); - /****************** BuildPCurveForEdgeOnPlane ******************/ - /**** md5 signature: eb2eaf6bd1e25fb580fd234600800513 ****/ + /****** BRepLib::BuildPCurveForEdgeOnPlane ******/ + /****** md5 signature: eb2eaf6bd1e25fb580fd234600800513 ******/ %feature("compactdefaultargs") BuildPCurveForEdgeOnPlane; %feature("autodoc", " Parameters @@ -307,8 +307,8 @@ Builds pcurve of edge on face if the surface is plane, and updates the edge. ") BuildPCurveForEdgeOnPlane; static void BuildPCurveForEdgeOnPlane(const TopoDS_Edge & theE, const TopoDS_Face & theF); - /****************** BuildPCurveForEdgeOnPlane ******************/ - /**** md5 signature: 74f8fb705bcddf6e8ff15664dc8d47b7 ****/ + /****** BRepLib::BuildPCurveForEdgeOnPlane ******/ + /****** md5 signature: 74f8fb705bcddf6e8ff15664dc8d47b7 ******/ %feature("compactdefaultargs") BuildPCurveForEdgeOnPlane; %feature("autodoc", " Parameters @@ -327,8 +327,8 @@ Builds pcurve of edge on face if the surface is plane, but does not update the e ") BuildPCurveForEdgeOnPlane; static void BuildPCurveForEdgeOnPlane(const TopoDS_Edge & theE, const TopoDS_Face & theF, opencascade::handle & aC2D, Standard_Boolean &OutValue); - /****************** CheckSameRange ******************/ - /**** md5 signature: d9ef2cd4ef3374a22ba2fd4a9050572c ****/ + /****** BRepLib::CheckSameRange ******/ + /****** md5 signature: d9ef2cd4ef3374a22ba2fd4a9050572c ******/ %feature("compactdefaultargs") CheckSameRange; %feature("autodoc", " Parameters @@ -346,8 +346,8 @@ Checks if the edge is same range ignoring the same range flag of the edge confus ") CheckSameRange; static Standard_Boolean CheckSameRange(const TopoDS_Edge & E, const Standard_Real Confusion = 1.0e-12); - /****************** ContinuityOfFaces ******************/ - /**** md5 signature: 2405b9a750027ac7614f072b1358fffc ****/ + /****** BRepLib::ContinuityOfFaces ******/ + /****** md5 signature: 2405b9a750027ac7614f072b1358fffc ******/ %feature("compactdefaultargs") ContinuityOfFaces; %feature("autodoc", " Parameters @@ -367,8 +367,8 @@ Returns the order of continuity between two faces connected by an edge. ") ContinuityOfFaces; static GeomAbs_Shape ContinuityOfFaces(const TopoDS_Edge & theEdge, const TopoDS_Face & theFace1, const TopoDS_Face & theFace2, const Standard_Real theAngleTol); - /****************** EncodeRegularity ******************/ - /**** md5 signature: 19c910eb7197237b12eb01c92eebe9e5 ****/ + /****** BRepLib::EncodeRegularity ******/ + /****** md5 signature: 19c910eb7197237b12eb01c92eebe9e5 ******/ %feature("compactdefaultargs") EncodeRegularity; %feature("autodoc", " Parameters @@ -386,8 +386,8 @@ Encodes the regularity of edges on a shape. warning: is an angular tole ") EncodeRegularity; static void EncodeRegularity(const TopoDS_Shape & S, const Standard_Real TolAng = 1.0e-10); - /****************** EncodeRegularity ******************/ - /**** md5 signature: 0fb005a839a1ca0e40b83d5aa3066041 ****/ + /****** BRepLib::EncodeRegularity ******/ + /****** md5 signature: 0fb005a839a1ca0e40b83d5aa3066041 ******/ %feature("compactdefaultargs") EncodeRegularity; %feature("autodoc", " Parameters @@ -406,8 +406,8 @@ Encodes the regularity of edges in list on the shape warning: ") EncodeRegularity; static void EncodeRegularity(const TopoDS_Shape & S, const TopTools_ListOfShape & LE, const Standard_Real TolAng = 1.0e-10); - /****************** EncodeRegularity ******************/ - /**** md5 signature: 172eaf1d13de1fe1ad03867f4f67dce0 ****/ + /****** BRepLib::EncodeRegularity ******/ + /****** md5 signature: 172eaf1d13de1fe1ad03867f4f67dce0 ******/ %feature("compactdefaultargs") EncodeRegularity; %feature("autodoc", " Parameters @@ -427,8 +427,8 @@ Encodes the regularity between and by warning: is an angu ") EncodeRegularity; static void EncodeRegularity(TopoDS_Edge & E, const TopoDS_Face & F1, const TopoDS_Face & F2, const Standard_Real TolAng = 1.0e-10); - /****************** EnsureNormalConsistency ******************/ - /**** md5 signature: 333cd3af6b2fdcd6cde8b593c31284a9 ****/ + /****** BRepLib::EnsureNormalConsistency ******/ + /****** md5 signature: 333cd3af6b2fdcd6cde8b593c31284a9 ******/ %feature("compactdefaultargs") EnsureNormalConsistency; %feature("autodoc", " Parameters @@ -447,8 +447,8 @@ Corrects the normals in poly_triangulation of faces, in such way that normals at ") EnsureNormalConsistency; static Standard_Boolean EnsureNormalConsistency(const TopoDS_Shape & S, const Standard_Real theAngTol = 0.001, const Standard_Boolean ForceComputeNormals = Standard_False); - /****************** ExtendFace ******************/ - /**** md5 signature: b2c07a72140e36de05af305bcd484489 ****/ + /****** BRepLib::ExtendFace ******/ + /****** md5 signature: b2c07a72140e36de05af305bcd484489 ******/ %feature("compactdefaultargs") ExtendFace; %feature("autodoc", " Parameters @@ -471,8 +471,8 @@ Enlarges the face on the given value. @param thef [in] the face to extend @param ") ExtendFace; static void ExtendFace(const TopoDS_Face & theF, const Standard_Real theExtVal, const Standard_Boolean theExtUMin, const Standard_Boolean theExtUMax, const Standard_Boolean theExtVMin, const Standard_Boolean theExtVMax, TopoDS_Face & theFExtended); - /****************** FindValidRange ******************/ - /**** md5 signature: 5d83ca03919e4732c16bdd3ceefc7d56 ****/ + /****** BRepLib::FindValidRange ******/ + /****** md5 signature: 5d83ca03919e4732c16bdd3ceefc7d56 ******/ %feature("compactdefaultargs") FindValidRange; %feature("autodoc", " Parameters @@ -497,8 +497,8 @@ For an edge defined by 3d curve and tolerance and vertices defined by points, pa ") FindValidRange; static Standard_Boolean FindValidRange(const Adaptor3d_Curve & theCurve, const Standard_Real theTolE, const Standard_Real theParV1, const gp_Pnt & thePntV1, const Standard_Real theTolV1, const Standard_Real theParV2, const gp_Pnt & thePntV2, const Standard_Real theTolV2, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** FindValidRange ******************/ - /**** md5 signature: 16a8dd6346bc70745b1437c644d131d2 ****/ + /****** BRepLib::FindValidRange ******/ + /****** md5 signature: 16a8dd6346bc70745b1437c644d131d2 ******/ %feature("compactdefaultargs") FindValidRange; %feature("autodoc", " Parameters @@ -516,8 +516,8 @@ Finds a range of 3d curve of the edge not covered by vertices tolerances. return ") FindValidRange; static Standard_Boolean FindValidRange(const TopoDS_Edge & theEdge, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** OrientClosedSolid ******************/ - /**** md5 signature: cde24280a2621155ab6f58b7cc92c489 ****/ + /****** BRepLib::OrientClosedSolid ******/ + /****** md5 signature: cde24280a2621155ab6f58b7cc92c489 ******/ %feature("compactdefaultargs") OrientClosedSolid; %feature("autodoc", " Parameters @@ -534,8 +534,8 @@ Orients the solid forward and the shell with the orientation to have matter in t ") OrientClosedSolid; static Standard_Boolean OrientClosedSolid(TopoDS_Solid & solid); - /****************** Plane ******************/ - /**** md5 signature: 215779db6a724a03f9f8ce477370cef4 ****/ + /****** BRepLib::Plane ******/ + /****** md5 signature: 215779db6a724a03f9f8ce477370cef4 ******/ %feature("compactdefaultargs") Plane; %feature("autodoc", " Parameters @@ -552,8 +552,8 @@ Sets the current plane to p. ") Plane; static void Plane(const opencascade::handle & P); - /****************** Plane ******************/ - /**** md5 signature: 6d27cd1f706ac4d5f7ea5e003d1302b0 ****/ + /****** BRepLib::Plane ******/ + /****** md5 signature: 6d27cd1f706ac4d5f7ea5e003d1302b0 ******/ %feature("compactdefaultargs") Plane; %feature("autodoc", "Return ------- @@ -565,8 +565,8 @@ Returns the current plane. ") Plane; static const opencascade::handle & Plane(); - /****************** Precision ******************/ - /**** md5 signature: ced9db4ac4e8a407df5972bac5488688 ****/ + /****** BRepLib::Precision ******/ + /****** md5 signature: ced9db4ac4e8a407df5972bac5488688 ******/ %feature("compactdefaultargs") Precision; %feature("autodoc", " Parameters @@ -583,8 +583,8 @@ Computes the max distance between edge and its 2d representation on the face. se ") Precision; static void Precision(const Standard_Real P); - /****************** Precision ******************/ - /**** md5 signature: 5a0c763be80263f1e28f9182713f12dc ****/ + /****** BRepLib::Precision ******/ + /****** md5 signature: 5a0c763be80263f1e28f9182713f12dc ******/ %feature("compactdefaultargs") Precision; %feature("autodoc", "Return ------- @@ -596,8 +596,8 @@ Returns the default precision. ") Precision; static Standard_Real Precision(); - /****************** ReverseSortFaces ******************/ - /**** md5 signature: 5c834edf3fced01cd530658b4e20344b ****/ + /****** BRepLib::ReverseSortFaces ******/ + /****** md5 signature: 5c834edf3fced01cd530658b4e20344b ******/ %feature("compactdefaultargs") ReverseSortFaces; %feature("autodoc", " Parameters @@ -615,8 +615,8 @@ Sorts in lf the faces of s on the reverse complexity of their surfaces (other,to ") ReverseSortFaces; static void ReverseSortFaces(const TopoDS_Shape & S, TopTools_ListOfShape & LF); - /****************** SameParameter ******************/ - /**** md5 signature: 5c5d4240cd8907cefccc80b8b3ea011e ****/ + /****** BRepLib::SameParameter ******/ + /****** md5 signature: 5c5d4240cd8907cefccc80b8b3ea011e ******/ %feature("compactdefaultargs") SameParameter; %feature("autodoc", " Parameters @@ -634,8 +634,8 @@ Computes new 2d curve(s) for the edge to have the same parameter as th ") SameParameter; static void SameParameter(const TopoDS_Edge & theEdge, const Standard_Real Tolerance = 1.0e-5); - /****************** SameParameter ******************/ - /**** md5 signature: b4fbeb89b4594cf9352322c9856b5950 ****/ + /****** BRepLib::SameParameter ******/ + /****** md5 signature: b4fbeb89b4594cf9352322c9856b5950 ******/ %feature("compactdefaultargs") SameParameter; %feature("autodoc", " Parameters @@ -654,8 +654,8 @@ Computes new 2d curve(s) for the edge to have the same parameter as th ") SameParameter; static TopoDS_Edge SameParameter(const TopoDS_Edge & theEdge, const Standard_Real theTolerance, Standard_Real &OutValue, const Standard_Boolean IsUseOldEdge); - /****************** SameParameter ******************/ - /**** md5 signature: 2b6345dbc9df15880edd16e53a03b47f ****/ + /****** BRepLib::SameParameter ******/ + /****** md5 signature: 2b6345dbc9df15880edd16e53a03b47f ******/ %feature("compactdefaultargs") SameParameter; %feature("autodoc", " Parameters @@ -674,8 +674,8 @@ Computes new 2d curve(s) for all the edges of to have the same parameter as ") SameParameter; static void SameParameter(const TopoDS_Shape & S, const Standard_Real Tolerance = 1.0e-5, const Standard_Boolean forced = Standard_False); - /****************** SameParameter ******************/ - /**** md5 signature: cfb21365f9a6e6262e51c4374bfdfcc0 ****/ + /****** BRepLib::SameParameter ******/ + /****** md5 signature: cfb21365f9a6e6262e51c4374bfdfcc0 ******/ %feature("compactdefaultargs") SameParameter; %feature("autodoc", " Parameters @@ -695,8 +695,8 @@ Computes new 2d curve(s) for all the edges of to have the same parameter as ") SameParameter; static void SameParameter(const TopoDS_Shape & S, BRepTools_ReShape & theReshaper, const Standard_Real Tolerance = 1.0e-5, const Standard_Boolean forced = Standard_False); - /****************** SameRange ******************/ - /**** md5 signature: e07686d7b9c2e87d078e9cf28f531b62 ****/ + /****** BRepLib::SameRange ******/ + /****** md5 signature: e07686d7b9c2e87d078e9cf28f531b62 ******/ %feature("compactdefaultargs") SameRange; %feature("autodoc", " Parameters @@ -714,8 +714,8 @@ Will make all the curve representation have the same range domain for the parame ") SameRange; static void SameRange(const TopoDS_Edge & E, const Standard_Real Tolerance = 1.0e-5); - /****************** SortFaces ******************/ - /**** md5 signature: c670dbe0a47983eb81dd61ba0887f298 ****/ + /****** BRepLib::SortFaces ******/ + /****** md5 signature: c670dbe0a47983eb81dd61ba0887f298 ******/ %feature("compactdefaultargs") SortFaces; %feature("autodoc", " Parameters @@ -733,8 +733,8 @@ Sorts in lf the faces of s on the complexity of their surfaces (plane,cylinder,c ") SortFaces; static void SortFaces(const TopoDS_Shape & S, TopTools_ListOfShape & LF); - /****************** UpdateDeflection ******************/ - /**** md5 signature: 76d35fdabbd1c46be0db3f1ad51bcdc9 ****/ + /****** BRepLib::UpdateDeflection ******/ + /****** md5 signature: 76d35fdabbd1c46be0db3f1ad51bcdc9 ******/ %feature("compactdefaultargs") UpdateDeflection; %feature("autodoc", " Parameters @@ -751,8 +751,8 @@ Updates value of deflection in poly_triangulation of faces by the maximum deviat ") UpdateDeflection; static void UpdateDeflection(const TopoDS_Shape & S); - /****************** UpdateEdgeTol ******************/ - /**** md5 signature: 38bb8b704b359479ae8f63fd5e383848 ****/ + /****** BRepLib::UpdateEdgeTol ******/ + /****** md5 signature: 38bb8b704b359479ae8f63fd5e383848 ******/ %feature("compactdefaultargs") UpdateEdgeTol; %feature("autodoc", " Parameters @@ -771,8 +771,8 @@ Checks if the edge has a tolerance smaller than -- -- -- -- maxtolerancetocheck ") UpdateEdgeTol; static Standard_Boolean UpdateEdgeTol(const TopoDS_Edge & E, const Standard_Real MinToleranceRequest, const Standard_Real MaxToleranceToCheck); - /****************** UpdateEdgeTolerance ******************/ - /**** md5 signature: a900570e66aa87edd638ebad627eb240 ****/ + /****** BRepLib::UpdateEdgeTolerance ******/ + /****** md5 signature: a900570e66aa87edd638ebad627eb240 ******/ %feature("compactdefaultargs") UpdateEdgeTolerance; %feature("autodoc", " Parameters @@ -791,8 +791,8 @@ Description ") UpdateEdgeTolerance; static Standard_Boolean UpdateEdgeTolerance(const TopoDS_Shape & S, const Standard_Real MinToleranceRequest, const Standard_Real MaxToleranceToCheck); - /****************** UpdateInnerTolerances ******************/ - /**** md5 signature: f8274e750a439791de5f4024a2905387 ****/ + /****** BRepLib::UpdateInnerTolerances ******/ + /****** md5 signature: f8274e750a439791de5f4024a2905387 ******/ %feature("compactdefaultargs") UpdateInnerTolerances; %feature("autodoc", " Parameters @@ -809,8 +809,8 @@ Checks tolerances of edges (including inner points) and vertices of a shape and ") UpdateInnerTolerances; static void UpdateInnerTolerances(const TopoDS_Shape & S); - /****************** UpdateTolerances ******************/ - /**** md5 signature: 0198d839071a3de5f272c500a29a7eae ****/ + /****** BRepLib::UpdateTolerances ******/ + /****** md5 signature: 0198d839071a3de5f272c500a29a7eae ******/ %feature("compactdefaultargs") UpdateTolerances; %feature("autodoc", " Parameters @@ -828,8 +828,8 @@ Replaces tolerance of face edge vertex by the tolerance max of their connected h ") UpdateTolerances; static void UpdateTolerances(const TopoDS_Shape & S, const Standard_Boolean verifyFaceTolerance = Standard_False); - /****************** UpdateTolerances ******************/ - /**** md5 signature: d1c1288e8bbb918e38ee02d611522fe2 ****/ + /****** BRepLib::UpdateTolerances ******/ + /****** md5 signature: d1c1288e8bbb918e38ee02d611522fe2 ******/ %feature("compactdefaultargs") UpdateTolerances; %feature("autodoc", " Parameters @@ -866,8 +866,8 @@ Replaces tolerance of face edge vertex by the tolerance max of their connected h ************************************/ class BRepLib_CheckCurveOnSurface { public: - /****************** BRepLib_CheckCurveOnSurface ******************/ - /**** md5 signature: ad4740ee3e59e42d75e2ee6144706591 ****/ + /****** BRepLib_CheckCurveOnSurface::BRepLib_CheckCurveOnSurface ******/ + /****** md5 signature: ad4740ee3e59e42d75e2ee6144706591 ******/ %feature("compactdefaultargs") BRepLib_CheckCurveOnSurface; %feature("autodoc", "Return ------- @@ -879,8 +879,8 @@ Default constructor. ") BRepLib_CheckCurveOnSurface; BRepLib_CheckCurveOnSurface(); - /****************** BRepLib_CheckCurveOnSurface ******************/ - /**** md5 signature: 4463fa8016612b07a0638ab8e597c79a ****/ + /****** BRepLib_CheckCurveOnSurface::BRepLib_CheckCurveOnSurface ******/ + /****** md5 signature: 4463fa8016612b07a0638ab8e597c79a ******/ %feature("compactdefaultargs") BRepLib_CheckCurveOnSurface; %feature("autodoc", " Parameters @@ -898,8 +898,8 @@ Constructor. ") BRepLib_CheckCurveOnSurface; BRepLib_CheckCurveOnSurface(const TopoDS_Edge & theEdge, const TopoDS_Face & theFace); - /****************** ErrorStatus ******************/ - /**** md5 signature: 23ccaf4f25108c0b871675cdf964cbf6 ****/ + /****** BRepLib_CheckCurveOnSurface::ErrorStatus ******/ + /****** md5 signature: 23ccaf4f25108c0b871675cdf964cbf6 ******/ %feature("compactdefaultargs") ErrorStatus; %feature("autodoc", "Return ------- @@ -911,8 +911,8 @@ Returns error status the possible values are: 0 - ok; 1 - null curve or surface ") ErrorStatus; Standard_Integer ErrorStatus(); - /****************** Init ******************/ - /**** md5 signature: 2a831d636c2c924d38adfdfa075e8336 ****/ + /****** BRepLib_CheckCurveOnSurface::Init ******/ + /****** md5 signature: 2a831d636c2c924d38adfdfa075e8336 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -930,8 +930,8 @@ Sets the data for the algorithm. ") Init; void Init(const TopoDS_Edge & theEdge, const TopoDS_Face & theFace); - /****************** IsDone ******************/ - /**** md5 signature: e385477ab1bec806154173d4a550fd68 ****/ + /****** BRepLib_CheckCurveOnSurface::IsDone ******/ + /****** md5 signature: e385477ab1bec806154173d4a550fd68 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -943,8 +943,8 @@ Returns true if the max distance has been found. ") IsDone; Standard_Boolean IsDone(); - /****************** IsParallel ******************/ - /**** md5 signature: fc1de18a583c6aa3b3d9897c80aa553e ****/ + /****** BRepLib_CheckCurveOnSurface::IsParallel ******/ + /****** md5 signature: fc1de18a583c6aa3b3d9897c80aa553e ******/ %feature("compactdefaultargs") IsParallel; %feature("autodoc", "Return ------- @@ -956,8 +956,8 @@ Returns true if parallel flag is set. ") IsParallel; Standard_Boolean IsParallel(); - /****************** MaxDistance ******************/ - /**** md5 signature: eb56c1d1489e07dddfaf89c1bd00ff56 ****/ + /****** BRepLib_CheckCurveOnSurface::MaxDistance ******/ + /****** md5 signature: eb56c1d1489e07dddfaf89c1bd00ff56 ******/ %feature("compactdefaultargs") MaxDistance; %feature("autodoc", "Return ------- @@ -969,8 +969,8 @@ Returns max distance. ") MaxDistance; Standard_Real MaxDistance(); - /****************** MaxParameter ******************/ - /**** md5 signature: 23a45560d6d0376bf4b799705df1e0c0 ****/ + /****** BRepLib_CheckCurveOnSurface::MaxParameter ******/ + /****** md5 signature: 23a45560d6d0376bf4b799705df1e0c0 ******/ %feature("compactdefaultargs") MaxParameter; %feature("autodoc", "Return ------- @@ -982,8 +982,8 @@ Returns parameter in which the distance is maximal. ") MaxParameter; Standard_Real MaxParameter(); - /****************** Perform ******************/ - /**** md5 signature: c04b01412cba7220c024b5eb4532697f ****/ + /****** BRepLib_CheckCurveOnSurface::Perform ******/ + /****** md5 signature: c04b01412cba7220c024b5eb4532697f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", "Return ------- @@ -995,8 +995,8 @@ Performs the calculation if myisparallel == standard_true then computation will ") Perform; void Perform(); - /****************** SetParallel ******************/ - /**** md5 signature: 91c6328a8c6135d4f1f1da7db8aee28f ****/ + /****** BRepLib_CheckCurveOnSurface::SetParallel ******/ + /****** md5 signature: 91c6328a8c6135d4f1f1da7db8aee28f ******/ %feature("compactdefaultargs") SetParallel; %feature("autodoc", " Parameters @@ -1028,8 +1028,8 @@ Sets parallel flag. %nodefaultctor BRepLib_Command; class BRepLib_Command { public: - /****************** Check ******************/ - /**** md5 signature: f34c3545e20ecd4b70f0028e921e213b ****/ + /****** BRepLib_Command::Check ******/ + /****** md5 signature: f34c3545e20ecd4b70f0028e921e213b ******/ %feature("compactdefaultargs") Check; %feature("autodoc", "Return ------- @@ -1041,8 +1041,8 @@ Raises notdone if done is false. ") Check; void Check(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepLib_Command::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -1068,8 +1068,8 @@ No available documentation. ****************************/ class BRepLib_FindSurface { public: - /****************** BRepLib_FindSurface ******************/ - /**** md5 signature: 05d2a378003b1863b90b5e71c7ee98ab ****/ + /****** BRepLib_FindSurface::BRepLib_FindSurface ******/ + /****** md5 signature: 05d2a378003b1863b90b5e71c7ee98ab ******/ %feature("compactdefaultargs") BRepLib_FindSurface; %feature("autodoc", "Return ------- @@ -1081,8 +1081,8 @@ No available documentation. ") BRepLib_FindSurface; BRepLib_FindSurface(); - /****************** BRepLib_FindSurface ******************/ - /**** md5 signature: b8cba8dda11d30fdcb78d4560e9a7962 ****/ + /****** BRepLib_FindSurface::BRepLib_FindSurface ******/ + /****** md5 signature: b8cba8dda11d30fdcb78d4560e9a7962 ******/ %feature("compactdefaultargs") BRepLib_FindSurface; %feature("autodoc", " Parameters @@ -1102,8 +1102,8 @@ Computes the surface from the edges of with the given tolerance. if with the given tolerance. if Surface(); - /****************** Tolerance ******************/ - /**** md5 signature: 9e5775014410d884d1a1adc1cd47930b ****/ + /****** BRepLib_FindSurface::Tolerance ******/ + /****** md5 signature: 9e5775014410d884d1a1adc1cd47930b ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", "Return ------- @@ -1188,8 +1188,8 @@ No available documentation. ") Tolerance; Standard_Real Tolerance(); - /****************** ToleranceReached ******************/ - /**** md5 signature: a6314d79889dbea629fdb016144cc500 ****/ + /****** BRepLib_FindSurface::ToleranceReached ******/ + /****** md5 signature: a6314d79889dbea629fdb016144cc500 ******/ %feature("compactdefaultargs") ToleranceReached; %feature("autodoc", "Return ------- @@ -1215,8 +1215,8 @@ No available documentation. **************************/ class BRepLib_FuseEdges { public: - /****************** BRepLib_FuseEdges ******************/ - /**** md5 signature: 3192e647e21f5c4050a8d8df456f8b45 ****/ + /****** BRepLib_FuseEdges::BRepLib_FuseEdges ******/ + /****** md5 signature: 3192e647e21f5c4050a8d8df456f8b45 ******/ %feature("compactdefaultargs") BRepLib_FuseEdges; %feature("autodoc", " Parameters @@ -1234,8 +1234,8 @@ Initialise members and build construction of map of ancestors. ") BRepLib_FuseEdges; BRepLib_FuseEdges(const TopoDS_Shape & theShape, const Standard_Boolean PerformNow = Standard_False); - /****************** AvoidEdges ******************/ - /**** md5 signature: d76ba44d4c0d9554fdf47f67049f8da0 ****/ + /****** BRepLib_FuseEdges::AvoidEdges ******/ + /****** md5 signature: d76ba44d4c0d9554fdf47f67049f8da0 ******/ %feature("compactdefaultargs") AvoidEdges; %feature("autodoc", " Parameters @@ -1252,8 +1252,8 @@ Set edges to avoid being fused. ") AvoidEdges; void AvoidEdges(const TopTools_IndexedMapOfShape & theMapEdg); - /****************** Edges ******************/ - /**** md5 signature: 8084c179e24e67079a00b4a173ee9313 ****/ + /****** BRepLib_FuseEdges::Edges ******/ + /****** md5 signature: 8084c179e24e67079a00b4a173ee9313 ******/ %feature("compactdefaultargs") Edges; %feature("autodoc", " Parameters @@ -1270,8 +1270,8 @@ Returns all the list of edges to be fused each list of the map represent a set o ") Edges; void Edges(TopTools_DataMapOfIntegerListOfShape & theMapLstEdg); - /****************** Faces ******************/ - /**** md5 signature: f5abad97fb8ff03cd2b7955c20acd767 ****/ + /****** BRepLib_FuseEdges::Faces ******/ + /****** md5 signature: f5abad97fb8ff03cd2b7955c20acd767 ******/ %feature("compactdefaultargs") Faces; %feature("autodoc", " Parameters @@ -1288,8 +1288,8 @@ Returns the map of modified faces. ") Faces; void Faces(TopTools_DataMapOfShapeShape & theMapFac); - /****************** NbVertices ******************/ - /**** md5 signature: 18584eb261816370021ae75041e9f83a ****/ + /****** BRepLib_FuseEdges::NbVertices ******/ + /****** md5 signature: 18584eb261816370021ae75041e9f83a ******/ %feature("compactdefaultargs") NbVertices; %feature("autodoc", "Return ------- @@ -1301,8 +1301,8 @@ Returns the number of vertices candidate to be removed. ") NbVertices; Standard_Integer NbVertices(); - /****************** Perform ******************/ - /**** md5 signature: c04b01412cba7220c024b5eb4532697f ****/ + /****** BRepLib_FuseEdges::Perform ******/ + /****** md5 signature: c04b01412cba7220c024b5eb4532697f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", "Return ------- @@ -1314,8 +1314,8 @@ Using map of list of connex edges, fuse each list to one edge and then update my ") Perform; void Perform(); - /****************** ResultEdges ******************/ - /**** md5 signature: c473d3c90614f31ceb4528d8ba7addb5 ****/ + /****** BRepLib_FuseEdges::ResultEdges ******/ + /****** md5 signature: c473d3c90614f31ceb4528d8ba7addb5 ******/ %feature("compactdefaultargs") ResultEdges; %feature("autodoc", " Parameters @@ -1332,8 +1332,8 @@ Returns all the fused edges. each integer entry in the map corresponds to the in ") ResultEdges; void ResultEdges(TopTools_DataMapOfIntegerShape & theMapEdg); - /****************** SetConcatBSpl ******************/ - /**** md5 signature: 3dafc254ea0616772e4fe7729e2596de ****/ + /****** BRepLib_FuseEdges::SetConcatBSpl ******/ + /****** md5 signature: 3dafc254ea0616772e4fe7729e2596de ******/ %feature("compactdefaultargs") SetConcatBSpl; %feature("autodoc", " Parameters @@ -1350,8 +1350,8 @@ Set mode to enable concatenation g1 bspline edges in one end modified by ifv 19. ") SetConcatBSpl; void SetConcatBSpl(const Standard_Boolean theConcatBSpl = Standard_True); - /****************** Shape ******************/ - /**** md5 signature: 4968b0e4669317ad9b7893680ac9a219 ****/ + /****** BRepLib_FuseEdges::Shape ******/ + /****** md5 signature: 4968b0e4669317ad9b7893680ac9a219 ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -1378,8 +1378,8 @@ Returns myshape modified with the list of internal edges removed from it. %nodefaultctor BRepLib_PointCloudShape; class BRepLib_PointCloudShape { public: - /****************** GeneratePointsByDensity ******************/ - /**** md5 signature: 619270416b95000e397399807042b65a ****/ + /****** BRepLib_PointCloudShape::GeneratePointsByDensity ******/ + /****** md5 signature: 619270416b95000e397399807042b65a ******/ %feature("compactdefaultargs") GeneratePointsByDensity; %feature("autodoc", " Parameters @@ -1396,8 +1396,8 @@ Computes points with specified density for initial shape. if parameter density i ") GeneratePointsByDensity; Standard_Boolean GeneratePointsByDensity(const Standard_Real theDensity = 0.0); - /****************** GeneratePointsByTriangulation ******************/ - /**** md5 signature: 912b82f3a10b1a54374d28369fcc6a67 ****/ + /****** BRepLib_PointCloudShape::GeneratePointsByTriangulation ******/ + /****** md5 signature: 912b82f3a10b1a54374d28369fcc6a67 ******/ %feature("compactdefaultargs") GeneratePointsByTriangulation; %feature("autodoc", "Return ------- @@ -1409,8 +1409,8 @@ Get points from triangulation existing in the shape. ") GeneratePointsByTriangulation; Standard_Boolean GeneratePointsByTriangulation(); - /****************** GetDistance ******************/ - /**** md5 signature: a3cf6093e8abf55853fd25f21f892d82 ****/ + /****** BRepLib_PointCloudShape::GetDistance ******/ + /****** md5 signature: a3cf6093e8abf55853fd25f21f892d82 ******/ %feature("compactdefaultargs") GetDistance; %feature("autodoc", "Return ------- @@ -1422,8 +1422,8 @@ Returns value of the distance to define deflection of points from shape along no ") GetDistance; Standard_Real GetDistance(); - /****************** NbPointsByDensity ******************/ - /**** md5 signature: 2a3faf3ea9aed5ce1b6e260486ac5094 ****/ + /****** BRepLib_PointCloudShape::NbPointsByDensity ******/ + /****** md5 signature: 2a3faf3ea9aed5ce1b6e260486ac5094 ******/ %feature("compactdefaultargs") NbPointsByDensity; %feature("autodoc", " Parameters @@ -1440,8 +1440,8 @@ Returns size of the point cloud for specified density. ") NbPointsByDensity; Standard_Integer NbPointsByDensity(const Standard_Real theDensity = 0.0); - /****************** NbPointsByTriangulation ******************/ - /**** md5 signature: c88afd500722f5a19d60b6d00aabd05a ****/ + /****** BRepLib_PointCloudShape::NbPointsByTriangulation ******/ + /****** md5 signature: c88afd500722f5a19d60b6d00aabd05a ******/ %feature("compactdefaultargs") NbPointsByTriangulation; %feature("autodoc", "Return ------- @@ -1453,8 +1453,8 @@ Returns size of the point cloud for using triangulation. ") NbPointsByTriangulation; Standard_Integer NbPointsByTriangulation(); - /****************** SetDistance ******************/ - /**** md5 signature: 9c8aa9fbc03cbbcac598e64ccf79cf2e ****/ + /****** BRepLib_PointCloudShape::SetDistance ******/ + /****** md5 signature: 9c8aa9fbc03cbbcac598e64ccf79cf2e ******/ %feature("compactdefaultargs") SetDistance; %feature("autodoc", " Parameters @@ -1471,8 +1471,8 @@ Sets value of the distance to define deflection of points from shape along norma ") SetDistance; void SetDistance(const Standard_Real theDist); - /****************** SetShape ******************/ - /**** md5 signature: 927e2ebe2fb5354dfb3da3c53e512cad ****/ + /****** BRepLib_PointCloudShape::SetShape ******/ + /****** md5 signature: 927e2ebe2fb5354dfb3da3c53e512cad ******/ %feature("compactdefaultargs") SetShape; %feature("autodoc", " Parameters @@ -1489,8 +1489,8 @@ Set shape. ") SetShape; void SetShape(const TopoDS_Shape & theShape); - /****************** SetTolerance ******************/ - /**** md5 signature: 24665c79b6c4a1cf17fbde5e4ed41549 ****/ + /****** BRepLib_PointCloudShape::SetTolerance ******/ + /****** md5 signature: 24665c79b6c4a1cf17fbde5e4ed41549 ******/ %feature("compactdefaultargs") SetTolerance; %feature("autodoc", " Parameters @@ -1507,8 +1507,8 @@ Set tolerance. ") SetTolerance; void SetTolerance(Standard_Real theTol); - /****************** Shape ******************/ - /**** md5 signature: 1058569f5d639354fedf11e73741b7df ****/ + /****** BRepLib_PointCloudShape::Shape ******/ + /****** md5 signature: 1058569f5d639354fedf11e73741b7df ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -1520,8 +1520,8 @@ Return loaded shape. ") Shape; const TopoDS_Shape Shape(); - /****************** Tolerance ******************/ - /**** md5 signature: 327dcbe220ae5ba3e0203f32c61c38db ****/ + /****** BRepLib_PointCloudShape::Tolerance ******/ + /****** md5 signature: 327dcbe220ae5ba3e0203f32c61c38db ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", "Return ------- @@ -1547,8 +1547,8 @@ Return tolerance. **************************************/ class BRepLib_ToolTriangulatedShape { public: - /****************** ComputeNormals ******************/ - /**** md5 signature: 2d57466090fe2926dca8ad73827190c2 ****/ + /****** BRepLib_ToolTriangulatedShape::ComputeNormals ******/ + /****** md5 signature: 2d57466090fe2926dca8ad73827190c2 ******/ %feature("compactdefaultargs") ComputeNormals; %feature("autodoc", " Parameters @@ -1566,8 +1566,8 @@ Computes nodal normals for poly_triangulation structure using uv coordinates and ") ComputeNormals; static void ComputeNormals(const TopoDS_Face & theFace, const opencascade::handle & theTris); - /****************** ComputeNormals ******************/ - /**** md5 signature: ff5b08874a5db62c157e96e68689a5a4 ****/ + /****** BRepLib_ToolTriangulatedShape::ComputeNormals ******/ + /****** md5 signature: ff5b08874a5db62c157e96e68689a5a4 ******/ %feature("compactdefaultargs") ComputeNormals; %feature("autodoc", " Parameters @@ -1600,8 +1600,8 @@ Computes nodal normals for poly_triangulation structure using uv coordinates and *****************************/ class BRepLib_ValidateEdge { public: - /****************** BRepLib_ValidateEdge ******************/ - /**** md5 signature: 743d4b813a0a60f0a8f03719aecc2eb8 ****/ + /****** BRepLib_ValidateEdge::BRepLib_ValidateEdge ******/ + /****** md5 signature: 743d4b813a0a60f0a8f03719aecc2eb8 ******/ %feature("compactdefaultargs") BRepLib_ValidateEdge; %feature("autodoc", " Parameters @@ -1620,8 +1620,8 @@ Initialization constructor. ") BRepLib_ValidateEdge; BRepLib_ValidateEdge(const opencascade::handle theReferenceCurve, const opencascade::handle theOtherCurve, Standard_Boolean theSameParameter); - /****************** CheckTolerance ******************/ - /**** md5 signature: 5785e5be76b0b006dcca89fcac000a5f ****/ + /****** BRepLib_ValidateEdge::CheckTolerance ******/ + /****** md5 signature: 5785e5be76b0b006dcca89fcac000a5f ******/ %feature("compactdefaultargs") CheckTolerance; %feature("autodoc", " Parameters @@ -1638,8 +1638,8 @@ Returns true if computed distance is less than . ") CheckTolerance; Standard_Boolean CheckTolerance(Standard_Real theToleranceToCheck); - /****************** GetMaxDistance ******************/ - /**** md5 signature: 4732d2c21b2f300e493e252dd95feaf9 ****/ + /****** BRepLib_ValidateEdge::GetMaxDistance ******/ + /****** md5 signature: 4732d2c21b2f300e493e252dd95feaf9 ******/ %feature("compactdefaultargs") GetMaxDistance; %feature("autodoc", "Return ------- @@ -1651,8 +1651,8 @@ Returns max distance. ") GetMaxDistance; Standard_Real GetMaxDistance(); - /****************** IsDone ******************/ - /**** md5 signature: e385477ab1bec806154173d4a550fd68 ****/ + /****** BRepLib_ValidateEdge::IsDone ******/ + /****** md5 signature: e385477ab1bec806154173d4a550fd68 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -1664,8 +1664,8 @@ Returns true if the distance has been found for all points. ") IsDone; Standard_Boolean IsDone(); - /****************** IsExactMethod ******************/ - /**** md5 signature: 5e4b019881aa7aa6b5765966d6b467ca ****/ + /****** BRepLib_ValidateEdge::IsExactMethod ******/ + /****** md5 signature: 5e4b019881aa7aa6b5765966d6b467ca ******/ %feature("compactdefaultargs") IsExactMethod; %feature("autodoc", "Return ------- @@ -1677,8 +1677,8 @@ Returns true if exact method selected. ") IsExactMethod; Standard_Boolean IsExactMethod(); - /****************** IsParallel ******************/ - /**** md5 signature: fc1de18a583c6aa3b3d9897c80aa553e ****/ + /****** BRepLib_ValidateEdge::IsParallel ******/ + /****** md5 signature: fc1de18a583c6aa3b3d9897c80aa553e ******/ %feature("compactdefaultargs") IsParallel; %feature("autodoc", "Return ------- @@ -1690,8 +1690,8 @@ Returns true if parallel flag is set. ") IsParallel; Standard_Boolean IsParallel(); - /****************** Process ******************/ - /**** md5 signature: f69ec5068362d1fb1c1da24f6f943a3d ****/ + /****** BRepLib_ValidateEdge::Process ******/ + /****** md5 signature: f69ec5068362d1fb1c1da24f6f943a3d ******/ %feature("compactdefaultargs") Process; %feature("autodoc", "Return ------- @@ -1703,8 +1703,8 @@ Computes the max distance for the 3d curve and curve on surfa ") Process; void Process(); - /****************** SetControlPointsNumber ******************/ - /**** md5 signature: 23357e0c62202a31f8a5a8da5865b56d ****/ + /****** BRepLib_ValidateEdge::SetControlPointsNumber ******/ + /****** md5 signature: 23357e0c62202a31f8a5a8da5865b56d ******/ %feature("compactdefaultargs") SetControlPointsNumber; %feature("autodoc", " Parameters @@ -1721,8 +1721,8 @@ Set control points number (if you need a value other than 22). ") SetControlPointsNumber; void SetControlPointsNumber(Standard_Integer theControlPointsNumber); - /****************** SetExactMethod ******************/ - /**** md5 signature: 61e71faebec158e548494f19380d6da6 ****/ + /****** BRepLib_ValidateEdge::SetExactMethod ******/ + /****** md5 signature: 61e71faebec158e548494f19380d6da6 ******/ %feature("compactdefaultargs") SetExactMethod; %feature("autodoc", " Parameters @@ -1739,8 +1739,8 @@ Sets method to calculate distance: calculating in finite number of points (if th ") SetExactMethod; void SetExactMethod(Standard_Boolean theIsExact); - /****************** SetParallel ******************/ - /**** md5 signature: 6daf50fa108f9f0000233a9dba805cd8 ****/ + /****** BRepLib_ValidateEdge::SetParallel ******/ + /****** md5 signature: 6daf50fa108f9f0000233a9dba805cd8 ******/ %feature("compactdefaultargs") SetParallel; %feature("autodoc", " Parameters @@ -1757,8 +1757,8 @@ Sets parallel flag. ") SetParallel; void SetParallel(Standard_Boolean theIsMultiThread); - /****************** UpdateTolerance ******************/ - /**** md5 signature: 041719f1b7cceef57cb2fd1857736488 ****/ + /****** BRepLib_ValidateEdge::UpdateTolerance ******/ + /****** md5 signature: 041719f1b7cceef57cb2fd1857736488 ******/ %feature("compactdefaultargs") UpdateTolerance; %feature("autodoc", " Parameters @@ -1793,8 +1793,8 @@ Increase if max distance is greater than . ") FacesFromEdges; virtual const TopTools_ListOfShape & FacesFromEdges(const TopoDS_Edge & E); - /****************** HasDescendants ******************/ - /**** md5 signature: 5dfd9dee6a174cf40b37fcc3fc769ec8 ****/ + /****** BRepLib_MakeShape::HasDescendants ******/ + /****** md5 signature: 5dfd9dee6a174cf40b37fcc3fc769ec8 ******/ %feature("compactdefaultargs") HasDescendants; %feature("autodoc", " Parameters @@ -1878,8 +1878,8 @@ Returns true if the face generates new topology. ") HasDescendants; virtual Standard_Boolean HasDescendants(const TopoDS_Face & F); - /****************** NbSurfaces ******************/ - /**** md5 signature: 9fc085a7006ba3837eefd2b047c50505 ****/ + /****** BRepLib_MakeShape::NbSurfaces ******/ + /****** md5 signature: 9fc085a7006ba3837eefd2b047c50505 ******/ %feature("compactdefaultargs") NbSurfaces; %feature("autodoc", "Return ------- @@ -1891,8 +1891,8 @@ Returns the number of surfaces after the shape creation. ") NbSurfaces; virtual Standard_Integer NbSurfaces(); - /****************** NewFaces ******************/ - /**** md5 signature: e7c3baccbeecb1721ee5663fcedbeab2 ****/ + /****** BRepLib_MakeShape::NewFaces ******/ + /****** md5 signature: e7c3baccbeecb1721ee5663fcedbeab2 ******/ %feature("compactdefaultargs") NewFaces; %feature("autodoc", " Parameters @@ -1909,8 +1909,8 @@ Return the faces created for surface i. ") NewFaces; virtual const TopTools_ListOfShape & NewFaces(const Standard_Integer I); - /****************** Shape ******************/ - /**** md5 signature: 35cc6b8a92112f8b2067e768b8f01ff2 ****/ + /****** BRepLib_MakeShape::Shape ******/ + /****** md5 signature: 35cc6b8a92112f8b2067e768b8f01ff2 ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -1936,8 +1936,8 @@ No available documentation. *************************/ class BRepLib_MakeEdge : public BRepLib_MakeShape { public: - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: ff5f9d42b34fd8755f3ceed6526aa3da ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: ff5f9d42b34fd8755f3ceed6526aa3da ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", "Return ------- @@ -1949,8 +1949,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: 98a3610d3756d0b0ad66bdcccf794eba ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: 98a3610d3756d0b0ad66bdcccf794eba ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -1968,8 +1968,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: 2830aaf617c2443026ec071f091ca01b ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: 2830aaf617c2443026ec071f091ca01b ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -1987,8 +1987,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const gp_Pnt & P1, const gp_Pnt & P2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: 26d9850e091998754b6ecaab1aef1d0e ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: 26d9850e091998754b6ecaab1aef1d0e ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2005,8 +2005,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const gp_Lin & L); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: af34800776240963b0b7ad5bf6dced9a ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: af34800776240963b0b7ad5bf6dced9a ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2025,8 +2025,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const gp_Lin & L, const Standard_Real p1, const Standard_Real p2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: 0d4017c8497dcacedd786f3dcdaac683 ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: 0d4017c8497dcacedd786f3dcdaac683 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2045,8 +2045,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const gp_Lin & L, const gp_Pnt & P1, const gp_Pnt & P2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: e0b62169f2368ccc53618e3a966136f2 ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: e0b62169f2368ccc53618e3a966136f2 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2065,8 +2065,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const gp_Lin & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: dd78427649c02f0412acf4081b8db829 ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: dd78427649c02f0412acf4081b8db829 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2083,8 +2083,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const gp_Circ & L); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: 8010b690a9edf1d81b0ba93c583608fe ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: 8010b690a9edf1d81b0ba93c583608fe ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2103,8 +2103,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const gp_Circ & L, const Standard_Real p1, const Standard_Real p2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: c91a90ae7df25d6b8e40b81940ca4b7c ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: c91a90ae7df25d6b8e40b81940ca4b7c ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2123,8 +2123,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const gp_Circ & L, const gp_Pnt & P1, const gp_Pnt & P2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: 14bd0128665af2258ebe47770d8fb6dd ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: 14bd0128665af2258ebe47770d8fb6dd ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2143,8 +2143,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const gp_Circ & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: cddc795a530ee6036d9962467cd53bf9 ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: cddc795a530ee6036d9962467cd53bf9 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2161,8 +2161,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const gp_Elips & L); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: 108b98c6e7ed81c7015103c1a1a29781 ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: 108b98c6e7ed81c7015103c1a1a29781 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2181,8 +2181,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const gp_Elips & L, const Standard_Real p1, const Standard_Real p2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: 06d1280d59fc92a193890b79160b0e77 ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: 06d1280d59fc92a193890b79160b0e77 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2201,8 +2201,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const gp_Elips & L, const gp_Pnt & P1, const gp_Pnt & P2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: 73aac35a868f95812b9563080ce3efe8 ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: 73aac35a868f95812b9563080ce3efe8 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2221,8 +2221,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const gp_Elips & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: c95afe3eaf666dd7e15706577fde46d4 ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: c95afe3eaf666dd7e15706577fde46d4 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2239,8 +2239,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const gp_Hypr & L); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: 0397aae04f47fff57560d095d3e7437b ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: 0397aae04f47fff57560d095d3e7437b ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2259,8 +2259,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const gp_Hypr & L, const Standard_Real p1, const Standard_Real p2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: 26ce953ab7e802cc208f18f1cfbab2b6 ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: 26ce953ab7e802cc208f18f1cfbab2b6 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2279,8 +2279,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const gp_Hypr & L, const gp_Pnt & P1, const gp_Pnt & P2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: 6066a449187d5c176e51a8350853ddeb ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: 6066a449187d5c176e51a8350853ddeb ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2299,8 +2299,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const gp_Hypr & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: 41d01e90457d8bf5d5ef4297a021649c ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: 41d01e90457d8bf5d5ef4297a021649c ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2317,8 +2317,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const gp_Parab & L); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: c7b5a08fc84bfe38d0a90725df5bbd9c ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: c7b5a08fc84bfe38d0a90725df5bbd9c ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2337,8 +2337,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const gp_Parab & L, const Standard_Real p1, const Standard_Real p2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: f3507502fb730d27f98864f12d561310 ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: f3507502fb730d27f98864f12d561310 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2357,8 +2357,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const gp_Parab & L, const gp_Pnt & P1, const gp_Pnt & P2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: dac9ce58e588d6dc289841341d82be20 ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: dac9ce58e588d6dc289841341d82be20 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2377,8 +2377,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const gp_Parab & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: 19bdf5463e96fedf9b11df992698709e ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: 19bdf5463e96fedf9b11df992698709e ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2395,8 +2395,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const opencascade::handle & L); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: 106f831047c13089c37f719079f78549 ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: 106f831047c13089c37f719079f78549 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2415,8 +2415,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const opencascade::handle & L, const Standard_Real p1, const Standard_Real p2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: d743b1166a4aa754c0386de9a92c966d ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: d743b1166a4aa754c0386de9a92c966d ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2435,8 +2435,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const opencascade::handle & L, const gp_Pnt & P1, const gp_Pnt & P2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: d09e0cf3b86db9f98fb205636abfe802 ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: d09e0cf3b86db9f98fb205636abfe802 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2455,8 +2455,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const opencascade::handle & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: 89bd22fddf706495b67ddcef6ea6bbfd ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: 89bd22fddf706495b67ddcef6ea6bbfd ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2477,8 +2477,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const opencascade::handle & L, const gp_Pnt & P1, const gp_Pnt & P2, const Standard_Real p1, const Standard_Real p2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: b89ec974f95c1dfee86f5665308a042d ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: b89ec974f95c1dfee86f5665308a042d ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2499,8 +2499,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const opencascade::handle & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2, const Standard_Real p1, const Standard_Real p2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: 8dee1765d199f2245a83cccdf28b5532 ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: 8dee1765d199f2245a83cccdf28b5532 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2518,8 +2518,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const opencascade::handle & L, const opencascade::handle & S); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: 0bf5e5b81574251e312a4e57ecadac83 ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: 0bf5e5b81574251e312a4e57ecadac83 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2539,8 +2539,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const opencascade::handle & L, const opencascade::handle & S, const Standard_Real p1, const Standard_Real p2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: c6bebde95ae610ff35a5d9ef3622e044 ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: c6bebde95ae610ff35a5d9ef3622e044 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2560,8 +2560,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const opencascade::handle & L, const opencascade::handle & S, const gp_Pnt & P1, const gp_Pnt & P2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: a0e02ae1e45cbbea5b7334ee5e607d15 ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: a0e02ae1e45cbbea5b7334ee5e607d15 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2581,8 +2581,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const opencascade::handle & L, const opencascade::handle & S, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: fa7462603260f1fe2035d75f5e6f4c61 ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: fa7462603260f1fe2035d75f5e6f4c61 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2604,8 +2604,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const opencascade::handle & L, const opencascade::handle & S, const gp_Pnt & P1, const gp_Pnt & P2, const Standard_Real p1, const Standard_Real p2); - /****************** BRepLib_MakeEdge ******************/ - /**** md5 signature: 1dd23a8eff7c5f01c11450ba4106db9d ****/ + /****** BRepLib_MakeEdge::BRepLib_MakeEdge ******/ + /****** md5 signature: 1dd23a8eff7c5f01c11450ba4106db9d ******/ %feature("compactdefaultargs") BRepLib_MakeEdge; %feature("autodoc", " Parameters @@ -2627,8 +2627,8 @@ No available documentation. ") BRepLib_MakeEdge; BRepLib_MakeEdge(const opencascade::handle & L, const opencascade::handle & S, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2, const Standard_Real p1, const Standard_Real p2); - /****************** Edge ******************/ - /**** md5 signature: 768a18012e715670ae29301e23e2cf8b ****/ + /****** BRepLib_MakeEdge::Edge ******/ + /****** md5 signature: 768a18012e715670ae29301e23e2cf8b ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", "Return ------- @@ -2640,8 +2640,8 @@ No available documentation. ") Edge; const TopoDS_Edge Edge(); - /****************** Error ******************/ - /**** md5 signature: 20d9748fec77b6c2426dc27ab850ca5c ****/ + /****** BRepLib_MakeEdge::Error ******/ + /****** md5 signature: 20d9748fec77b6c2426dc27ab850ca5c ******/ %feature("compactdefaultargs") Error; %feature("autodoc", "Return ------- @@ -2653,8 +2653,8 @@ Returns the error description when notdone. ") Error; BRepLib_EdgeError Error(); - /****************** Init ******************/ - /**** md5 signature: 3a7fb0adde1a97c68f435539513bba2c ****/ + /****** BRepLib_MakeEdge::Init ******/ + /****** md5 signature: 3a7fb0adde1a97c68f435539513bba2c ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2671,8 +2671,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C); - /****************** Init ******************/ - /**** md5 signature: 69ab6deacb22a5a946bd084862db1233 ****/ + /****** BRepLib_MakeEdge::Init ******/ + /****** md5 signature: 69ab6deacb22a5a946bd084862db1233 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2691,8 +2691,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const Standard_Real p1, const Standard_Real p2); - /****************** Init ******************/ - /**** md5 signature: 235ac27b5a022827b7d54091e2111592 ****/ + /****** BRepLib_MakeEdge::Init ******/ + /****** md5 signature: 235ac27b5a022827b7d54091e2111592 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2711,8 +2711,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const gp_Pnt & P1, const gp_Pnt & P2); - /****************** Init ******************/ - /**** md5 signature: 9b236210e3d8f5b8c0ae08f9ff665d2d ****/ + /****** BRepLib_MakeEdge::Init ******/ + /****** md5 signature: 9b236210e3d8f5b8c0ae08f9ff665d2d ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2731,8 +2731,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** Init ******************/ - /**** md5 signature: b7311420b3eb1ee66bd9b3232f6bbf14 ****/ + /****** BRepLib_MakeEdge::Init ******/ + /****** md5 signature: b7311420b3eb1ee66bd9b3232f6bbf14 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2753,8 +2753,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const gp_Pnt & P1, const gp_Pnt & P2, const Standard_Real p1, const Standard_Real p2); - /****************** Init ******************/ - /**** md5 signature: f0ddd1dcd6baa38ff9d6ad052ec8cf95 ****/ + /****** BRepLib_MakeEdge::Init ******/ + /****** md5 signature: f0ddd1dcd6baa38ff9d6ad052ec8cf95 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2775,8 +2775,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2, const Standard_Real p1, const Standard_Real p2); - /****************** Init ******************/ - /**** md5 signature: 2207b24682fbbcefc3a70c5dcfc79e41 ****/ + /****** BRepLib_MakeEdge::Init ******/ + /****** md5 signature: 2207b24682fbbcefc3a70c5dcfc79e41 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2794,8 +2794,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const opencascade::handle & S); - /****************** Init ******************/ - /**** md5 signature: 46ba1cf0906b7383d025da040ff8be26 ****/ + /****** BRepLib_MakeEdge::Init ******/ + /****** md5 signature: 46ba1cf0906b7383d025da040ff8be26 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2815,8 +2815,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const opencascade::handle & S, const Standard_Real p1, const Standard_Real p2); - /****************** Init ******************/ - /**** md5 signature: 0b0c938b079b5bfdc1085e8f8a945803 ****/ + /****** BRepLib_MakeEdge::Init ******/ + /****** md5 signature: 0b0c938b079b5bfdc1085e8f8a945803 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2836,8 +2836,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const opencascade::handle & S, const gp_Pnt & P1, const gp_Pnt & P2); - /****************** Init ******************/ - /**** md5 signature: cc30f692d59f3ba69b1c4b104a9aba38 ****/ + /****** BRepLib_MakeEdge::Init ******/ + /****** md5 signature: cc30f692d59f3ba69b1c4b104a9aba38 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2857,8 +2857,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const opencascade::handle & S, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** Init ******************/ - /**** md5 signature: 13f84c1b43401d2a23e02820d3c88735 ****/ + /****** BRepLib_MakeEdge::Init ******/ + /****** md5 signature: 13f84c1b43401d2a23e02820d3c88735 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2880,8 +2880,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const opencascade::handle & S, const gp_Pnt & P1, const gp_Pnt & P2, const Standard_Real p1, const Standard_Real p2); - /****************** Init ******************/ - /**** md5 signature: 59918a63418830ecee317dd35f9016cc ****/ + /****** BRepLib_MakeEdge::Init ******/ + /****** md5 signature: 59918a63418830ecee317dd35f9016cc ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2903,8 +2903,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const opencascade::handle & S, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2, const Standard_Real p1, const Standard_Real p2); - /****************** Vertex1 ******************/ - /**** md5 signature: 3013872331c1fad0ef9330909eb27447 ****/ + /****** BRepLib_MakeEdge::Vertex1 ******/ + /****** md5 signature: 3013872331c1fad0ef9330909eb27447 ******/ %feature("compactdefaultargs") Vertex1; %feature("autodoc", "Return ------- @@ -2916,8 +2916,8 @@ Returns the first vertex of the edge. may be null. ") Vertex1; const TopoDS_Vertex Vertex1(); - /****************** Vertex2 ******************/ - /**** md5 signature: ce52ea817fb1fca460491831377f3811 ****/ + /****** BRepLib_MakeEdge::Vertex2 ******/ + /****** md5 signature: ce52ea817fb1fca460491831377f3811 ******/ %feature("compactdefaultargs") Vertex2; %feature("autodoc", "Return ------- @@ -2943,8 +2943,8 @@ Returns the second vertex of the edge. may be null. ***************************/ class BRepLib_MakeEdge2d : public BRepLib_MakeShape { public: - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: de8a8f3e23e69fc9e75ccd84c3760a77 ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: de8a8f3e23e69fc9e75ccd84c3760a77 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -2962,8 +2962,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: da11ac145a027e24369a8c89b7db9475 ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: da11ac145a027e24369a8c89b7db9475 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -2981,8 +2981,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const gp_Pnt2d & P1, const gp_Pnt2d & P2); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: 4ebad4dd866258574acdda28b43ab270 ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: 4ebad4dd866258574acdda28b43ab270 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -2999,8 +2999,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const gp_Lin2d & L); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: a997108b16e661a09a24601c5679b3f0 ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: a997108b16e661a09a24601c5679b3f0 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3019,8 +3019,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const gp_Lin2d & L, const Standard_Real p1, const Standard_Real p2); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: f329f0e3c21f7ff3e9bc12ff69d8b321 ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: f329f0e3c21f7ff3e9bc12ff69d8b321 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3039,8 +3039,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const gp_Lin2d & L, const gp_Pnt2d & P1, const gp_Pnt2d & P2); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: a37e3586c16fd442625f90470567f62d ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: a37e3586c16fd442625f90470567f62d ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3059,8 +3059,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const gp_Lin2d & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: 92e4f45eede977ee43643fee90b339d7 ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: 92e4f45eede977ee43643fee90b339d7 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3077,8 +3077,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const gp_Circ2d & L); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: 81bf556eb25414c4ddc242abe229d407 ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: 81bf556eb25414c4ddc242abe229d407 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3097,8 +3097,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const gp_Circ2d & L, const Standard_Real p1, const Standard_Real p2); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: 8c7cc68166b1dd1eeec27938ba6fa2c4 ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: 8c7cc68166b1dd1eeec27938ba6fa2c4 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3117,8 +3117,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const gp_Circ2d & L, const gp_Pnt2d & P1, const gp_Pnt2d & P2); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: 34f9657fe0f8805108573ebc9b604dfc ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: 34f9657fe0f8805108573ebc9b604dfc ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3137,8 +3137,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const gp_Circ2d & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: 9f3b9a91e9d758b0b96702cdc46d2d86 ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: 9f3b9a91e9d758b0b96702cdc46d2d86 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3155,8 +3155,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const gp_Elips2d & L); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: 6cb9ee1cd761cae52b422fd6a23516ec ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: 6cb9ee1cd761cae52b422fd6a23516ec ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3175,8 +3175,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const gp_Elips2d & L, const Standard_Real p1, const Standard_Real p2); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: 028cece37204c3539e721c37f7b9b093 ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: 028cece37204c3539e721c37f7b9b093 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3195,8 +3195,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const gp_Elips2d & L, const gp_Pnt2d & P1, const gp_Pnt2d & P2); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: ec539e76684e0af672cbb9828edd9d87 ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: ec539e76684e0af672cbb9828edd9d87 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3215,8 +3215,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const gp_Elips2d & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: 290b789dc756aeed7c876190b3160d65 ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: 290b789dc756aeed7c876190b3160d65 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3233,8 +3233,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const gp_Hypr2d & L); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: a996888dfa7a37ac3d5c3f51d223671c ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: a996888dfa7a37ac3d5c3f51d223671c ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3253,8 +3253,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const gp_Hypr2d & L, const Standard_Real p1, const Standard_Real p2); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: 70ee7ca5e1e5bfe58065106dbb4dc8e0 ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: 70ee7ca5e1e5bfe58065106dbb4dc8e0 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3273,8 +3273,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const gp_Hypr2d & L, const gp_Pnt2d & P1, const gp_Pnt2d & P2); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: d9f40eb1416118cebc6ac8b81f021c8c ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: d9f40eb1416118cebc6ac8b81f021c8c ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3293,8 +3293,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const gp_Hypr2d & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: efe9dbfb476842f7eab4b04dc0be9f93 ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: efe9dbfb476842f7eab4b04dc0be9f93 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3311,8 +3311,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const gp_Parab2d & L); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: 390fd21101740f5959dc03f6e4d3c944 ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: 390fd21101740f5959dc03f6e4d3c944 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3331,8 +3331,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const gp_Parab2d & L, const Standard_Real p1, const Standard_Real p2); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: 6916a6786470149e1f649e7b30d6b377 ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: 6916a6786470149e1f649e7b30d6b377 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3351,8 +3351,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const gp_Parab2d & L, const gp_Pnt2d & P1, const gp_Pnt2d & P2); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: 4e23bad0d2ddaf63837b9103d8c497f7 ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: 4e23bad0d2ddaf63837b9103d8c497f7 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3371,8 +3371,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const gp_Parab2d & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: 8399ce2ab3d8b76877d03914e74e0197 ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: 8399ce2ab3d8b76877d03914e74e0197 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3389,8 +3389,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const opencascade::handle & L); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: d94e150f6ac8f771336a088e1e0ad54d ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: d94e150f6ac8f771336a088e1e0ad54d ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3409,8 +3409,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const opencascade::handle & L, const Standard_Real p1, const Standard_Real p2); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: 01ee21ab26910f427461fb97cb2e22e5 ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: 01ee21ab26910f427461fb97cb2e22e5 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3429,8 +3429,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const opencascade::handle & L, const gp_Pnt2d & P1, const gp_Pnt2d & P2); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: 83a478b2aa930fd288a84ff4317e1bf0 ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: 83a478b2aa930fd288a84ff4317e1bf0 ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3449,8 +3449,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const opencascade::handle & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: 300875173ff311f28ba469b85de9fc1e ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: 300875173ff311f28ba469b85de9fc1e ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3471,8 +3471,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const opencascade::handle & L, const gp_Pnt2d & P1, const gp_Pnt2d & P2, const Standard_Real p1, const Standard_Real p2); - /****************** BRepLib_MakeEdge2d ******************/ - /**** md5 signature: 20f292df496f48d81091104b3ad42efa ****/ + /****** BRepLib_MakeEdge2d::BRepLib_MakeEdge2d ******/ + /****** md5 signature: 20f292df496f48d81091104b3ad42efa ******/ %feature("compactdefaultargs") BRepLib_MakeEdge2d; %feature("autodoc", " Parameters @@ -3493,8 +3493,8 @@ No available documentation. ") BRepLib_MakeEdge2d; BRepLib_MakeEdge2d(const opencascade::handle & L, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2, const Standard_Real p1, const Standard_Real p2); - /****************** Edge ******************/ - /**** md5 signature: 768a18012e715670ae29301e23e2cf8b ****/ + /****** BRepLib_MakeEdge2d::Edge ******/ + /****** md5 signature: 768a18012e715670ae29301e23e2cf8b ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", "Return ------- @@ -3506,8 +3506,8 @@ No available documentation. ") Edge; const TopoDS_Edge Edge(); - /****************** Error ******************/ - /**** md5 signature: 20d9748fec77b6c2426dc27ab850ca5c ****/ + /****** BRepLib_MakeEdge2d::Error ******/ + /****** md5 signature: 20d9748fec77b6c2426dc27ab850ca5c ******/ %feature("compactdefaultargs") Error; %feature("autodoc", "Return ------- @@ -3519,8 +3519,8 @@ Returns the error description when notdone. ") Error; BRepLib_EdgeError Error(); - /****************** Init ******************/ - /**** md5 signature: 9265e5f0d4ffc1952c67390e1e4fa21c ****/ + /****** BRepLib_MakeEdge2d::Init ******/ + /****** md5 signature: 9265e5f0d4ffc1952c67390e1e4fa21c ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -3537,8 +3537,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C); - /****************** Init ******************/ - /**** md5 signature: 0961809b47e34c89a735be9bbe4cd201 ****/ + /****** BRepLib_MakeEdge2d::Init ******/ + /****** md5 signature: 0961809b47e34c89a735be9bbe4cd201 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -3557,8 +3557,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const Standard_Real p1, const Standard_Real p2); - /****************** Init ******************/ - /**** md5 signature: 3aebe7beccd2278aab8e691a1202290a ****/ + /****** BRepLib_MakeEdge2d::Init ******/ + /****** md5 signature: 3aebe7beccd2278aab8e691a1202290a ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -3577,8 +3577,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const gp_Pnt2d & P1, const gp_Pnt2d & P2); - /****************** Init ******************/ - /**** md5 signature: 9ea2122c0b47e1c54f550895e77a510a ****/ + /****** BRepLib_MakeEdge2d::Init ******/ + /****** md5 signature: 9ea2122c0b47e1c54f550895e77a510a ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -3597,8 +3597,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** Init ******************/ - /**** md5 signature: 909c5b62ad2dddf89a9e7ed6c45abf2e ****/ + /****** BRepLib_MakeEdge2d::Init ******/ + /****** md5 signature: 909c5b62ad2dddf89a9e7ed6c45abf2e ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -3619,8 +3619,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const gp_Pnt2d & P1, const gp_Pnt2d & P2, const Standard_Real p1, const Standard_Real p2); - /****************** Init ******************/ - /**** md5 signature: c6a6dc0247fd8deba360e5bd07dc5e73 ****/ + /****** BRepLib_MakeEdge2d::Init ******/ + /****** md5 signature: c6a6dc0247fd8deba360e5bd07dc5e73 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -3641,8 +3641,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & C, const TopoDS_Vertex & V1, const TopoDS_Vertex & V2, const Standard_Real p1, const Standard_Real p2); - /****************** Vertex1 ******************/ - /**** md5 signature: 3013872331c1fad0ef9330909eb27447 ****/ + /****** BRepLib_MakeEdge2d::Vertex1 ******/ + /****** md5 signature: 3013872331c1fad0ef9330909eb27447 ******/ %feature("compactdefaultargs") Vertex1; %feature("autodoc", "Return ------- @@ -3654,8 +3654,8 @@ Returns the first vertex of the edge. may be null. ") Vertex1; const TopoDS_Vertex Vertex1(); - /****************** Vertex2 ******************/ - /**** md5 signature: ce52ea817fb1fca460491831377f3811 ****/ + /****** BRepLib_MakeEdge2d::Vertex2 ******/ + /****** md5 signature: ce52ea817fb1fca460491831377f3811 ******/ %feature("compactdefaultargs") Vertex2; %feature("autodoc", "Return ------- @@ -3681,8 +3681,8 @@ Returns the second vertex of the edge. may be null. *************************/ class BRepLib_MakeFace : public BRepLib_MakeShape { public: - /****************** BRepLib_MakeFace ******************/ - /**** md5 signature: 36f4b8fa3a3e86d49ad8175f15a6a181 ****/ + /****** BRepLib_MakeFace::BRepLib_MakeFace ******/ + /****** md5 signature: 36f4b8fa3a3e86d49ad8175f15a6a181 ******/ %feature("compactdefaultargs") BRepLib_MakeFace; %feature("autodoc", "Return ------- @@ -3694,8 +3694,8 @@ Not done. ") BRepLib_MakeFace; BRepLib_MakeFace(); - /****************** BRepLib_MakeFace ******************/ - /**** md5 signature: 5ce188b7df2a0fe70e449d0f77eb834b ****/ + /****** BRepLib_MakeFace::BRepLib_MakeFace ******/ + /****** md5 signature: 5ce188b7df2a0fe70e449d0f77eb834b ******/ %feature("compactdefaultargs") BRepLib_MakeFace; %feature("autodoc", " Parameters @@ -3712,8 +3712,8 @@ Load a face. useful to add wires. ") BRepLib_MakeFace; BRepLib_MakeFace(const TopoDS_Face & F); - /****************** BRepLib_MakeFace ******************/ - /**** md5 signature: f58385a55702aaf05d7a60a8c4d06779 ****/ + /****** BRepLib_MakeFace::BRepLib_MakeFace ******/ + /****** md5 signature: f58385a55702aaf05d7a60a8c4d06779 ******/ %feature("compactdefaultargs") BRepLib_MakeFace; %feature("autodoc", " Parameters @@ -3730,8 +3730,8 @@ Make a face from a plane. ") BRepLib_MakeFace; BRepLib_MakeFace(const gp_Pln & P); - /****************** BRepLib_MakeFace ******************/ - /**** md5 signature: 497b8219b83a91681ee6bac6143afbbf ****/ + /****** BRepLib_MakeFace::BRepLib_MakeFace ******/ + /****** md5 signature: 497b8219b83a91681ee6bac6143afbbf ******/ %feature("compactdefaultargs") BRepLib_MakeFace; %feature("autodoc", " Parameters @@ -3748,8 +3748,8 @@ Make a face from a cylinder. ") BRepLib_MakeFace; BRepLib_MakeFace(const gp_Cylinder & C); - /****************** BRepLib_MakeFace ******************/ - /**** md5 signature: 7db1068be3142da374a0c117ba857df3 ****/ + /****** BRepLib_MakeFace::BRepLib_MakeFace ******/ + /****** md5 signature: 7db1068be3142da374a0c117ba857df3 ******/ %feature("compactdefaultargs") BRepLib_MakeFace; %feature("autodoc", " Parameters @@ -3766,8 +3766,8 @@ Make a face from a cone. ") BRepLib_MakeFace; BRepLib_MakeFace(const gp_Cone & C); - /****************** BRepLib_MakeFace ******************/ - /**** md5 signature: d3ddee166dcf5a3d7fa55005e8b00f6c ****/ + /****** BRepLib_MakeFace::BRepLib_MakeFace ******/ + /****** md5 signature: d3ddee166dcf5a3d7fa55005e8b00f6c ******/ %feature("compactdefaultargs") BRepLib_MakeFace; %feature("autodoc", " Parameters @@ -3784,8 +3784,8 @@ Make a face from a sphere. ") BRepLib_MakeFace; BRepLib_MakeFace(const gp_Sphere & S); - /****************** BRepLib_MakeFace ******************/ - /**** md5 signature: 995e7af1530f86cd9ab3a4d3e4ea69ef ****/ + /****** BRepLib_MakeFace::BRepLib_MakeFace ******/ + /****** md5 signature: 995e7af1530f86cd9ab3a4d3e4ea69ef ******/ %feature("compactdefaultargs") BRepLib_MakeFace; %feature("autodoc", " Parameters @@ -3802,8 +3802,8 @@ Make a face from a torus. ") BRepLib_MakeFace; BRepLib_MakeFace(const gp_Torus & C); - /****************** BRepLib_MakeFace ******************/ - /**** md5 signature: 71fcda54bfeccc386fb75b2aff873cfb ****/ + /****** BRepLib_MakeFace::BRepLib_MakeFace ******/ + /****** md5 signature: 71fcda54bfeccc386fb75b2aff873cfb ******/ %feature("compactdefaultargs") BRepLib_MakeFace; %feature("autodoc", " Parameters @@ -3821,8 +3821,8 @@ Make a face from a surface. accepts tolerance value (toldegen) for resolution of ") BRepLib_MakeFace; BRepLib_MakeFace(const opencascade::handle & S, const Standard_Real TolDegen); - /****************** BRepLib_MakeFace ******************/ - /**** md5 signature: e22b1b0fb58fd884291f1e45462b13b1 ****/ + /****** BRepLib_MakeFace::BRepLib_MakeFace ******/ + /****** md5 signature: e22b1b0fb58fd884291f1e45462b13b1 ******/ %feature("compactdefaultargs") BRepLib_MakeFace; %feature("autodoc", " Parameters @@ -3843,8 +3843,8 @@ Make a face from a plane. ") BRepLib_MakeFace; BRepLib_MakeFace(const gp_Pln & P, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax); - /****************** BRepLib_MakeFace ******************/ - /**** md5 signature: d8da7666ae167d4a95b1316b8cd9e07c ****/ + /****** BRepLib_MakeFace::BRepLib_MakeFace ******/ + /****** md5 signature: d8da7666ae167d4a95b1316b8cd9e07c ******/ %feature("compactdefaultargs") BRepLib_MakeFace; %feature("autodoc", " Parameters @@ -3865,8 +3865,8 @@ Make a face from a cylinder. ") BRepLib_MakeFace; BRepLib_MakeFace(const gp_Cylinder & C, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax); - /****************** BRepLib_MakeFace ******************/ - /**** md5 signature: ad0c69f42c45c8362f1abab4fbbf43a8 ****/ + /****** BRepLib_MakeFace::BRepLib_MakeFace ******/ + /****** md5 signature: ad0c69f42c45c8362f1abab4fbbf43a8 ******/ %feature("compactdefaultargs") BRepLib_MakeFace; %feature("autodoc", " Parameters @@ -3887,8 +3887,8 @@ Make a face from a cone. ") BRepLib_MakeFace; BRepLib_MakeFace(const gp_Cone & C, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax); - /****************** BRepLib_MakeFace ******************/ - /**** md5 signature: d521384eae57a8868ab132a84828ba6f ****/ + /****** BRepLib_MakeFace::BRepLib_MakeFace ******/ + /****** md5 signature: d521384eae57a8868ab132a84828ba6f ******/ %feature("compactdefaultargs") BRepLib_MakeFace; %feature("autodoc", " Parameters @@ -3909,8 +3909,8 @@ Make a face from a sphere. ") BRepLib_MakeFace; BRepLib_MakeFace(const gp_Sphere & S, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax); - /****************** BRepLib_MakeFace ******************/ - /**** md5 signature: f3864ce104fe0b7123172ce1e14051c7 ****/ + /****** BRepLib_MakeFace::BRepLib_MakeFace ******/ + /****** md5 signature: f3864ce104fe0b7123172ce1e14051c7 ******/ %feature("compactdefaultargs") BRepLib_MakeFace; %feature("autodoc", " Parameters @@ -3931,8 +3931,8 @@ Make a face from a torus. ") BRepLib_MakeFace; BRepLib_MakeFace(const gp_Torus & C, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax); - /****************** BRepLib_MakeFace ******************/ - /**** md5 signature: f016cba06f591c9b61ab608145612651 ****/ + /****** BRepLib_MakeFace::BRepLib_MakeFace ******/ + /****** md5 signature: f016cba06f591c9b61ab608145612651 ******/ %feature("compactdefaultargs") BRepLib_MakeFace; %feature("autodoc", " Parameters @@ -3954,8 +3954,8 @@ Make a face from a surface. accepts min & max parameters to construct the face's ") BRepLib_MakeFace; BRepLib_MakeFace(const opencascade::handle & S, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax, const Standard_Real TolDegen); - /****************** BRepLib_MakeFace ******************/ - /**** md5 signature: ed28ba4982d2f9b3dddc1392d53f7acd ****/ + /****** BRepLib_MakeFace::BRepLib_MakeFace ******/ + /****** md5 signature: ed28ba4982d2f9b3dddc1392d53f7acd ******/ %feature("compactdefaultargs") BRepLib_MakeFace; %feature("autodoc", " Parameters @@ -3973,8 +3973,8 @@ Find a surface from the wire and make a face. if is true, the comput ") BRepLib_MakeFace; BRepLib_MakeFace(const TopoDS_Wire & W, const Standard_Boolean OnlyPlane = Standard_False); - /****************** BRepLib_MakeFace ******************/ - /**** md5 signature: 354be0c0ac63645d25f576674820f14a ****/ + /****** BRepLib_MakeFace::BRepLib_MakeFace ******/ + /****** md5 signature: 354be0c0ac63645d25f576674820f14a ******/ %feature("compactdefaultargs") BRepLib_MakeFace; %feature("autodoc", " Parameters @@ -3993,8 +3993,8 @@ Make a face from a plane and a wire. ") BRepLib_MakeFace; BRepLib_MakeFace(const gp_Pln & P, const TopoDS_Wire & W, const Standard_Boolean Inside = Standard_True); - /****************** BRepLib_MakeFace ******************/ - /**** md5 signature: a4de9a65b88a70bbef252d71c2886c6c ****/ + /****** BRepLib_MakeFace::BRepLib_MakeFace ******/ + /****** md5 signature: a4de9a65b88a70bbef252d71c2886c6c ******/ %feature("compactdefaultargs") BRepLib_MakeFace; %feature("autodoc", " Parameters @@ -4013,8 +4013,8 @@ Make a face from a cylinder and a wire. ") BRepLib_MakeFace; BRepLib_MakeFace(const gp_Cylinder & C, const TopoDS_Wire & W, const Standard_Boolean Inside = Standard_True); - /****************** BRepLib_MakeFace ******************/ - /**** md5 signature: 642cbd945296b1bbb29dd1d9b4177253 ****/ + /****** BRepLib_MakeFace::BRepLib_MakeFace ******/ + /****** md5 signature: 642cbd945296b1bbb29dd1d9b4177253 ******/ %feature("compactdefaultargs") BRepLib_MakeFace; %feature("autodoc", " Parameters @@ -4033,8 +4033,8 @@ Make a face from a cone and a wire. ") BRepLib_MakeFace; BRepLib_MakeFace(const gp_Cone & C, const TopoDS_Wire & W, const Standard_Boolean Inside = Standard_True); - /****************** BRepLib_MakeFace ******************/ - /**** md5 signature: f2e533bf67075db9c8a755d4745f4351 ****/ + /****** BRepLib_MakeFace::BRepLib_MakeFace ******/ + /****** md5 signature: f2e533bf67075db9c8a755d4745f4351 ******/ %feature("compactdefaultargs") BRepLib_MakeFace; %feature("autodoc", " Parameters @@ -4053,8 +4053,8 @@ Make a face from a sphere and a wire. ") BRepLib_MakeFace; BRepLib_MakeFace(const gp_Sphere & S, const TopoDS_Wire & W, const Standard_Boolean Inside = Standard_True); - /****************** BRepLib_MakeFace ******************/ - /**** md5 signature: f588f43ab7388d61ecf7054cc98e3736 ****/ + /****** BRepLib_MakeFace::BRepLib_MakeFace ******/ + /****** md5 signature: f588f43ab7388d61ecf7054cc98e3736 ******/ %feature("compactdefaultargs") BRepLib_MakeFace; %feature("autodoc", " Parameters @@ -4073,8 +4073,8 @@ Make a face from a torus and a wire. ") BRepLib_MakeFace; BRepLib_MakeFace(const gp_Torus & C, const TopoDS_Wire & W, const Standard_Boolean Inside = Standard_True); - /****************** BRepLib_MakeFace ******************/ - /**** md5 signature: 7b3f376200a4a9abc0db46cc88285ec9 ****/ + /****** BRepLib_MakeFace::BRepLib_MakeFace ******/ + /****** md5 signature: 7b3f376200a4a9abc0db46cc88285ec9 ******/ %feature("compactdefaultargs") BRepLib_MakeFace; %feature("autodoc", " Parameters @@ -4093,8 +4093,8 @@ Make a face from a surface and a wire. ") BRepLib_MakeFace; BRepLib_MakeFace(const opencascade::handle & S, const TopoDS_Wire & W, const Standard_Boolean Inside = Standard_True); - /****************** BRepLib_MakeFace ******************/ - /**** md5 signature: 3a87da05adde53547b32a7202b8c6c7f ****/ + /****** BRepLib_MakeFace::BRepLib_MakeFace ******/ + /****** md5 signature: 3a87da05adde53547b32a7202b8c6c7f ******/ %feature("compactdefaultargs") BRepLib_MakeFace; %feature("autodoc", " Parameters @@ -4112,8 +4112,8 @@ Adds the wire in the face . ") BRepLib_MakeFace; BRepLib_MakeFace(const TopoDS_Face & F, const TopoDS_Wire & W); - /****************** Add ******************/ - /**** md5 signature: 3257e47f30128eb5440b1eab5065e724 ****/ + /****** BRepLib_MakeFace::Add ******/ + /****** md5 signature: 3257e47f30128eb5440b1eab5065e724 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -4130,8 +4130,8 @@ Adds the wire in the current face. ") Add; void Add(const TopoDS_Wire & W); - /****************** Error ******************/ - /**** md5 signature: 3814c1ef789743cf136230fef8d22557 ****/ + /****** BRepLib_MakeFace::Error ******/ + /****** md5 signature: 3814c1ef789743cf136230fef8d22557 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", "Return ------- @@ -4143,8 +4143,8 @@ No available documentation. ") Error; BRepLib_FaceError Error(); - /****************** Face ******************/ - /**** md5 signature: 91e216ebeb76e55c73eb9e179241a6ff ****/ + /****** BRepLib_MakeFace::Face ******/ + /****** md5 signature: 91e216ebeb76e55c73eb9e179241a6ff ******/ %feature("compactdefaultargs") Face; %feature("autodoc", "Return ------- @@ -4156,8 +4156,8 @@ Returns the new face. ") Face; const TopoDS_Face Face(); - /****************** Init ******************/ - /**** md5 signature: a8dfaa68079e743e08190fe58d950a9a ****/ + /****** BRepLib_MakeFace::Init ******/ + /****** md5 signature: a8dfaa68079e743e08190fe58d950a9a ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -4174,8 +4174,8 @@ Load the face. ") Init; void Init(const TopoDS_Face & F); - /****************** Init ******************/ - /**** md5 signature: 4537ccbc32157e9ea035d63999e8cd22 ****/ + /****** BRepLib_MakeFace::Init ******/ + /****** md5 signature: 4537ccbc32157e9ea035d63999e8cd22 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -4194,8 +4194,8 @@ Creates the face from the surface. if bound is true a wire is made from the natu ") Init; void Init(const opencascade::handle & S, const Standard_Boolean Bound, const Standard_Real TolDegen); - /****************** Init ******************/ - /**** md5 signature: 1577db0535b260fa5404a98f8fa219d8 ****/ + /****** BRepLib_MakeFace::Init ******/ + /****** md5 signature: 1577db0535b260fa5404a98f8fa219d8 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -4217,8 +4217,8 @@ Creates the face from the surface and the min-max values. accepts tolerance valu ") Init; void Init(const opencascade::handle & S, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax, const Standard_Real TolDegen); - /****************** IsDegenerated ******************/ - /**** md5 signature: 8569447db8fb27d83d66da5cfdd04d4e ****/ + /****** BRepLib_MakeFace::IsDegenerated ******/ + /****** md5 signature: 8569447db8fb27d83d66da5cfdd04d4e ******/ %feature("compactdefaultargs") IsDegenerated; %feature("autodoc", " Parameters @@ -4250,8 +4250,8 @@ Checks the specified curve is degenerated according to specified tolerance. retu ****************************/ class BRepLib_MakePolygon : public BRepLib_MakeShape { public: - /****************** BRepLib_MakePolygon ******************/ - /**** md5 signature: aacb062117958abafc3d0fbec57de5b4 ****/ + /****** BRepLib_MakePolygon::BRepLib_MakePolygon ******/ + /****** md5 signature: aacb062117958abafc3d0fbec57de5b4 ******/ %feature("compactdefaultargs") BRepLib_MakePolygon; %feature("autodoc", "Return ------- @@ -4263,8 +4263,8 @@ Creates an empty makepolygon. ") BRepLib_MakePolygon; BRepLib_MakePolygon(); - /****************** BRepLib_MakePolygon ******************/ - /**** md5 signature: c5105a30c34383e158563a4a55c4b074 ****/ + /****** BRepLib_MakePolygon::BRepLib_MakePolygon ******/ + /****** md5 signature: c5105a30c34383e158563a4a55c4b074 ******/ %feature("compactdefaultargs") BRepLib_MakePolygon; %feature("autodoc", " Parameters @@ -4282,8 +4282,8 @@ No available documentation. ") BRepLib_MakePolygon; BRepLib_MakePolygon(const gp_Pnt & P1, const gp_Pnt & P2); - /****************** BRepLib_MakePolygon ******************/ - /**** md5 signature: 8773333921c39918b59dcd751d310fed ****/ + /****** BRepLib_MakePolygon::BRepLib_MakePolygon ******/ + /****** md5 signature: 8773333921c39918b59dcd751d310fed ******/ %feature("compactdefaultargs") BRepLib_MakePolygon; %feature("autodoc", " Parameters @@ -4303,8 +4303,8 @@ No available documentation. ") BRepLib_MakePolygon; BRepLib_MakePolygon(const gp_Pnt & P1, const gp_Pnt & P2, const gp_Pnt & P3, const Standard_Boolean Close = Standard_False); - /****************** BRepLib_MakePolygon ******************/ - /**** md5 signature: 29183b2578b472750b34c4ce98f6f3bf ****/ + /****** BRepLib_MakePolygon::BRepLib_MakePolygon ******/ + /****** md5 signature: 29183b2578b472750b34c4ce98f6f3bf ******/ %feature("compactdefaultargs") BRepLib_MakePolygon; %feature("autodoc", " Parameters @@ -4325,8 +4325,8 @@ No available documentation. ") BRepLib_MakePolygon; BRepLib_MakePolygon(const gp_Pnt & P1, const gp_Pnt & P2, const gp_Pnt & P3, const gp_Pnt & P4, const Standard_Boolean Close = Standard_False); - /****************** BRepLib_MakePolygon ******************/ - /**** md5 signature: 7b0a8f06e39ac3e818558e82f36dc363 ****/ + /****** BRepLib_MakePolygon::BRepLib_MakePolygon ******/ + /****** md5 signature: 7b0a8f06e39ac3e818558e82f36dc363 ******/ %feature("compactdefaultargs") BRepLib_MakePolygon; %feature("autodoc", " Parameters @@ -4344,8 +4344,8 @@ No available documentation. ") BRepLib_MakePolygon; BRepLib_MakePolygon(const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** BRepLib_MakePolygon ******************/ - /**** md5 signature: 3641e43af47b1d25d5f849e10b5b22b1 ****/ + /****** BRepLib_MakePolygon::BRepLib_MakePolygon ******/ + /****** md5 signature: 3641e43af47b1d25d5f849e10b5b22b1 ******/ %feature("compactdefaultargs") BRepLib_MakePolygon; %feature("autodoc", " Parameters @@ -4365,8 +4365,8 @@ No available documentation. ") BRepLib_MakePolygon; BRepLib_MakePolygon(const TopoDS_Vertex & V1, const TopoDS_Vertex & V2, const TopoDS_Vertex & V3, const Standard_Boolean Close = Standard_False); - /****************** BRepLib_MakePolygon ******************/ - /**** md5 signature: 9216cf1c809a9fbfc2560c5240b6f8d9 ****/ + /****** BRepLib_MakePolygon::BRepLib_MakePolygon ******/ + /****** md5 signature: 9216cf1c809a9fbfc2560c5240b6f8d9 ******/ %feature("compactdefaultargs") BRepLib_MakePolygon; %feature("autodoc", " Parameters @@ -4387,8 +4387,8 @@ No available documentation. ") BRepLib_MakePolygon; BRepLib_MakePolygon(const TopoDS_Vertex & V1, const TopoDS_Vertex & V2, const TopoDS_Vertex & V3, const TopoDS_Vertex & V4, const Standard_Boolean Close = Standard_False); - /****************** Add ******************/ - /**** md5 signature: b714bfb888eecda75b87221b873365bd ****/ + /****** BRepLib_MakePolygon::Add ******/ + /****** md5 signature: b714bfb888eecda75b87221b873365bd ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -4405,8 +4405,8 @@ No available documentation. ") Add; void Add(const gp_Pnt & P); - /****************** Add ******************/ - /**** md5 signature: 50c25a05b9135c3510f0a532439b09c2 ****/ + /****** BRepLib_MakePolygon::Add ******/ + /****** md5 signature: 50c25a05b9135c3510f0a532439b09c2 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -4423,8 +4423,8 @@ No available documentation. ") Add; void Add(const TopoDS_Vertex & V); - /****************** Added ******************/ - /**** md5 signature: ae76eff202ef54dd186494f9fb9a5cb0 ****/ + /****** BRepLib_MakePolygon::Added ******/ + /****** md5 signature: ae76eff202ef54dd186494f9fb9a5cb0 ******/ %feature("compactdefaultargs") Added; %feature("autodoc", "Return ------- @@ -4436,8 +4436,8 @@ Returns true if the last vertex or point was successfully added. ") Added; Standard_Boolean Added(); - /****************** Close ******************/ - /**** md5 signature: d50d7ba65c2beb3eb436584b5735f108 ****/ + /****** BRepLib_MakePolygon::Close ******/ + /****** md5 signature: d50d7ba65c2beb3eb436584b5735f108 ******/ %feature("compactdefaultargs") Close; %feature("autodoc", "Return ------- @@ -4449,8 +4449,8 @@ No available documentation. ") Close; void Close(); - /****************** Edge ******************/ - /**** md5 signature: be590cff987799d8b7c28083399d0e9f ****/ + /****** BRepLib_MakePolygon::Edge ******/ + /****** md5 signature: be590cff987799d8b7c28083399d0e9f ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", "Return ------- @@ -4462,8 +4462,8 @@ Returns the last edge added to the polygon. ") Edge; const TopoDS_Edge Edge(); - /****************** FirstVertex ******************/ - /**** md5 signature: 4e5c0d56a66d88d33c820ea69fb94d01 ****/ + /****** BRepLib_MakePolygon::FirstVertex ******/ + /****** md5 signature: 4e5c0d56a66d88d33c820ea69fb94d01 ******/ %feature("compactdefaultargs") FirstVertex; %feature("autodoc", "Return ------- @@ -4475,8 +4475,8 @@ No available documentation. ") FirstVertex; const TopoDS_Vertex FirstVertex(); - /****************** LastVertex ******************/ - /**** md5 signature: 00579001fbfcdaa6b9840a736dc9243f ****/ + /****** BRepLib_MakePolygon::LastVertex ******/ + /****** md5 signature: 00579001fbfcdaa6b9840a736dc9243f ******/ %feature("compactdefaultargs") LastVertex; %feature("autodoc", "Return ------- @@ -4488,8 +4488,8 @@ No available documentation. ") LastVertex; const TopoDS_Vertex LastVertex(); - /****************** Wire ******************/ - /**** md5 signature: 1a80266ab027407949727610f03160e2 ****/ + /****** BRepLib_MakePolygon::Wire ******/ + /****** md5 signature: 1a80266ab027407949727610f03160e2 ******/ %feature("compactdefaultargs") Wire; %feature("autodoc", "Return ------- @@ -4515,8 +4515,8 @@ No available documentation. **************************/ class BRepLib_MakeShell : public BRepLib_MakeShape { public: - /****************** BRepLib_MakeShell ******************/ - /**** md5 signature: 101951819e82b2bc8aae4ad919232ab5 ****/ + /****** BRepLib_MakeShell::BRepLib_MakeShell ******/ + /****** md5 signature: 101951819e82b2bc8aae4ad919232ab5 ******/ %feature("compactdefaultargs") BRepLib_MakeShell; %feature("autodoc", "Return ------- @@ -4528,8 +4528,8 @@ Not done. ") BRepLib_MakeShell; BRepLib_MakeShell(); - /****************** BRepLib_MakeShell ******************/ - /**** md5 signature: bc40882509752595dfaf04541e1aa7c9 ****/ + /****** BRepLib_MakeShell::BRepLib_MakeShell ******/ + /****** md5 signature: bc40882509752595dfaf04541e1aa7c9 ******/ %feature("compactdefaultargs") BRepLib_MakeShell; %feature("autodoc", " Parameters @@ -4547,8 +4547,8 @@ No available documentation. ") BRepLib_MakeShell; BRepLib_MakeShell(const opencascade::handle & S, const Standard_Boolean Segment = Standard_False); - /****************** BRepLib_MakeShell ******************/ - /**** md5 signature: f722e53312cdff1b556905c138f432a4 ****/ + /****** BRepLib_MakeShell::BRepLib_MakeShell ******/ + /****** md5 signature: f722e53312cdff1b556905c138f432a4 ******/ %feature("compactdefaultargs") BRepLib_MakeShell; %feature("autodoc", " Parameters @@ -4570,8 +4570,8 @@ No available documentation. ") BRepLib_MakeShell; BRepLib_MakeShell(const opencascade::handle & S, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax, const Standard_Boolean Segment = Standard_False); - /****************** Error ******************/ - /**** md5 signature: f86105343d1f7a8c438926b5ff57d481 ****/ + /****** BRepLib_MakeShell::Error ******/ + /****** md5 signature: f86105343d1f7a8c438926b5ff57d481 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", "Return ------- @@ -4583,8 +4583,8 @@ No available documentation. ") Error; BRepLib_ShellError Error(); - /****************** Init ******************/ - /**** md5 signature: ee785ff5defa7d18e86d0ad913d864fa ****/ + /****** BRepLib_MakeShell::Init ******/ + /****** md5 signature: ee785ff5defa7d18e86d0ad913d864fa ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -4606,8 +4606,8 @@ Creates the shell from the surface and the min-max values. ") Init; void Init(const opencascade::handle & S, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax, const Standard_Boolean Segment = Standard_False); - /****************** Shell ******************/ - /**** md5 signature: c581862d26a0a34b15cf9dd6d442e65d ****/ + /****** BRepLib_MakeShell::Shell ******/ + /****** md5 signature: c581862d26a0a34b15cf9dd6d442e65d ******/ %feature("compactdefaultargs") Shell; %feature("autodoc", "Return ------- @@ -4633,8 +4633,8 @@ Returns the new shell. **************************/ class BRepLib_MakeSolid : public BRepLib_MakeShape { public: - /****************** BRepLib_MakeSolid ******************/ - /**** md5 signature: 4a21e1a4b5fa5a59bf841cd097ade425 ****/ + /****** BRepLib_MakeSolid::BRepLib_MakeSolid ******/ + /****** md5 signature: 4a21e1a4b5fa5a59bf841cd097ade425 ******/ %feature("compactdefaultargs") BRepLib_MakeSolid; %feature("autodoc", "Return ------- @@ -4646,8 +4646,8 @@ Solid covers whole space. ") BRepLib_MakeSolid; BRepLib_MakeSolid(); - /****************** BRepLib_MakeSolid ******************/ - /**** md5 signature: cfb38d2d7469f4b813037d06d55c44ca ****/ + /****** BRepLib_MakeSolid::BRepLib_MakeSolid ******/ + /****** md5 signature: cfb38d2d7469f4b813037d06d55c44ca ******/ %feature("compactdefaultargs") BRepLib_MakeSolid; %feature("autodoc", " Parameters @@ -4664,8 +4664,8 @@ Make a solid from a compsolid. ") BRepLib_MakeSolid; BRepLib_MakeSolid(const TopoDS_CompSolid & S); - /****************** BRepLib_MakeSolid ******************/ - /**** md5 signature: 664e37b9a739671129f23ee949599dab ****/ + /****** BRepLib_MakeSolid::BRepLib_MakeSolid ******/ + /****** md5 signature: 664e37b9a739671129f23ee949599dab ******/ %feature("compactdefaultargs") BRepLib_MakeSolid; %feature("autodoc", " Parameters @@ -4682,8 +4682,8 @@ Make a solid from a shell. ") BRepLib_MakeSolid; BRepLib_MakeSolid(const TopoDS_Shell & S); - /****************** BRepLib_MakeSolid ******************/ - /**** md5 signature: b341b5861b7a90a52fdd2f8cf6d43c6b ****/ + /****** BRepLib_MakeSolid::BRepLib_MakeSolid ******/ + /****** md5 signature: b341b5861b7a90a52fdd2f8cf6d43c6b ******/ %feature("compactdefaultargs") BRepLib_MakeSolid; %feature("autodoc", " Parameters @@ -4701,8 +4701,8 @@ Make a solid from two shells. ") BRepLib_MakeSolid; BRepLib_MakeSolid(const TopoDS_Shell & S1, const TopoDS_Shell & S2); - /****************** BRepLib_MakeSolid ******************/ - /**** md5 signature: e41b5e97a7160462f5cf846dd7ea74f4 ****/ + /****** BRepLib_MakeSolid::BRepLib_MakeSolid ******/ + /****** md5 signature: e41b5e97a7160462f5cf846dd7ea74f4 ******/ %feature("compactdefaultargs") BRepLib_MakeSolid; %feature("autodoc", " Parameters @@ -4721,8 +4721,8 @@ Make a solid from three shells. ") BRepLib_MakeSolid; BRepLib_MakeSolid(const TopoDS_Shell & S1, const TopoDS_Shell & S2, const TopoDS_Shell & S3); - /****************** BRepLib_MakeSolid ******************/ - /**** md5 signature: d194d2606b4ba8b1988d6dbd38da4766 ****/ + /****** BRepLib_MakeSolid::BRepLib_MakeSolid ******/ + /****** md5 signature: d194d2606b4ba8b1988d6dbd38da4766 ******/ %feature("compactdefaultargs") BRepLib_MakeSolid; %feature("autodoc", " Parameters @@ -4739,8 +4739,8 @@ Make a solid from a solid. useful for adding later. ") BRepLib_MakeSolid; BRepLib_MakeSolid(const TopoDS_Solid & So); - /****************** BRepLib_MakeSolid ******************/ - /**** md5 signature: 56608c108f73f7ee1451b5e3910c003e ****/ + /****** BRepLib_MakeSolid::BRepLib_MakeSolid ******/ + /****** md5 signature: 56608c108f73f7ee1451b5e3910c003e ******/ %feature("compactdefaultargs") BRepLib_MakeSolid; %feature("autodoc", " Parameters @@ -4758,8 +4758,8 @@ Add a shell to a solid. ") BRepLib_MakeSolid; BRepLib_MakeSolid(const TopoDS_Solid & So, const TopoDS_Shell & S); - /****************** Add ******************/ - /**** md5 signature: 755d393a8f453c7309ea9f34b76a9857 ****/ + /****** BRepLib_MakeSolid::Add ******/ + /****** md5 signature: 755d393a8f453c7309ea9f34b76a9857 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -4776,8 +4776,8 @@ Add the shell to the current solid. ") Add; void Add(const TopoDS_Shell & S); - /****************** FaceStatus ******************/ - /**** md5 signature: dfb2223b5e4227b4e612837e5f690792 ****/ + /****** BRepLib_MakeSolid::FaceStatus ******/ + /****** md5 signature: dfb2223b5e4227b4e612837e5f690792 ******/ %feature("compactdefaultargs") FaceStatus; %feature("autodoc", " Parameters @@ -4794,8 +4794,8 @@ Returns the status of the face after the shape creation. ") FaceStatus; virtual BRepLib_ShapeModification FaceStatus(const TopoDS_Face & F); - /****************** Solid ******************/ - /**** md5 signature: 2538cb0f3104aa1b86470e63b7cc116d ****/ + /****** BRepLib_MakeSolid::Solid ******/ + /****** md5 signature: 2538cb0f3104aa1b86470e63b7cc116d ******/ %feature("compactdefaultargs") Solid; %feature("autodoc", "Return ------- @@ -4821,8 +4821,8 @@ Returns the new solid. ***************************/ class BRepLib_MakeVertex : public BRepLib_MakeShape { public: - /****************** BRepLib_MakeVertex ******************/ - /**** md5 signature: 5af511bb8d68685e3175885cc6d40c2c ****/ + /****** BRepLib_MakeVertex::BRepLib_MakeVertex ******/ + /****** md5 signature: 5af511bb8d68685e3175885cc6d40c2c ******/ %feature("compactdefaultargs") BRepLib_MakeVertex; %feature("autodoc", " Parameters @@ -4839,8 +4839,8 @@ No available documentation. ") BRepLib_MakeVertex; BRepLib_MakeVertex(const gp_Pnt & P); - /****************** Vertex ******************/ - /**** md5 signature: c8025d701d2a4994ffc4b119d7279582 ****/ + /****** BRepLib_MakeVertex::Vertex ******/ + /****** md5 signature: c8025d701d2a4994ffc4b119d7279582 ******/ %feature("compactdefaultargs") Vertex; %feature("autodoc", "Return ------- @@ -4867,8 +4867,8 @@ No available documentation. class BRepLib_MakeWire : public BRepLib_MakeShape { public: class BRepLib_BndBoxVertexSelector {}; - /****************** BRepLib_MakeWire ******************/ - /**** md5 signature: 5efb7d08579a4f93c331a3c336d25a18 ****/ + /****** BRepLib_MakeWire::BRepLib_MakeWire ******/ + /****** md5 signature: 5efb7d08579a4f93c331a3c336d25a18 ******/ %feature("compactdefaultargs") BRepLib_MakeWire; %feature("autodoc", "Return ------- @@ -4880,8 +4880,8 @@ Notdone makewire. ") BRepLib_MakeWire; BRepLib_MakeWire(); - /****************** BRepLib_MakeWire ******************/ - /**** md5 signature: 16f751950933f9d3ec660f17fe46c4b3 ****/ + /****** BRepLib_MakeWire::BRepLib_MakeWire ******/ + /****** md5 signature: 16f751950933f9d3ec660f17fe46c4b3 ******/ %feature("compactdefaultargs") BRepLib_MakeWire; %feature("autodoc", " Parameters @@ -4898,8 +4898,8 @@ Make a wire from an edge. ") BRepLib_MakeWire; BRepLib_MakeWire(const TopoDS_Edge & E); - /****************** BRepLib_MakeWire ******************/ - /**** md5 signature: e6e448e9f05337273a6a95077e19042c ****/ + /****** BRepLib_MakeWire::BRepLib_MakeWire ******/ + /****** md5 signature: e6e448e9f05337273a6a95077e19042c ******/ %feature("compactdefaultargs") BRepLib_MakeWire; %feature("autodoc", " Parameters @@ -4917,8 +4917,8 @@ Make a wire from two edges. ") BRepLib_MakeWire; BRepLib_MakeWire(const TopoDS_Edge & E1, const TopoDS_Edge & E2); - /****************** BRepLib_MakeWire ******************/ - /**** md5 signature: a5e0c18c038618f90f69e6ba184360b9 ****/ + /****** BRepLib_MakeWire::BRepLib_MakeWire ******/ + /****** md5 signature: a5e0c18c038618f90f69e6ba184360b9 ******/ %feature("compactdefaultargs") BRepLib_MakeWire; %feature("autodoc", " Parameters @@ -4937,8 +4937,8 @@ Make a wire from three edges. ") BRepLib_MakeWire; BRepLib_MakeWire(const TopoDS_Edge & E1, const TopoDS_Edge & E2, const TopoDS_Edge & E3); - /****************** BRepLib_MakeWire ******************/ - /**** md5 signature: 10f231939f09dc1712a688b6ea19507a ****/ + /****** BRepLib_MakeWire::BRepLib_MakeWire ******/ + /****** md5 signature: 10f231939f09dc1712a688b6ea19507a ******/ %feature("compactdefaultargs") BRepLib_MakeWire; %feature("autodoc", " Parameters @@ -4958,8 +4958,8 @@ Make a wire from four edges. ") BRepLib_MakeWire; BRepLib_MakeWire(const TopoDS_Edge & E1, const TopoDS_Edge & E2, const TopoDS_Edge & E3, const TopoDS_Edge & E4); - /****************** BRepLib_MakeWire ******************/ - /**** md5 signature: ac5c38632b4fb819b03eb4dc3b435233 ****/ + /****** BRepLib_MakeWire::BRepLib_MakeWire ******/ + /****** md5 signature: ac5c38632b4fb819b03eb4dc3b435233 ******/ %feature("compactdefaultargs") BRepLib_MakeWire; %feature("autodoc", " Parameters @@ -4976,8 +4976,8 @@ Make a wire from a wire. useful for adding later. ") BRepLib_MakeWire; BRepLib_MakeWire(const TopoDS_Wire & W); - /****************** BRepLib_MakeWire ******************/ - /**** md5 signature: ddacfdfbc909129eba28735466e6531c ****/ + /****** BRepLib_MakeWire::BRepLib_MakeWire ******/ + /****** md5 signature: ddacfdfbc909129eba28735466e6531c ******/ %feature("compactdefaultargs") BRepLib_MakeWire; %feature("autodoc", " Parameters @@ -4995,8 +4995,8 @@ Add an edge to a wire. ") BRepLib_MakeWire; BRepLib_MakeWire(const TopoDS_Wire & W, const TopoDS_Edge & E); - /****************** Add ******************/ - /**** md5 signature: 2689ece383041802da1cd80a0167e44a ****/ + /****** BRepLib_MakeWire::Add ******/ + /****** md5 signature: 2689ece383041802da1cd80a0167e44a ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -5013,8 +5013,8 @@ Add the edge to the current wire. ") Add; void Add(const TopoDS_Edge & E); - /****************** Add ******************/ - /**** md5 signature: 3257e47f30128eb5440b1eab5065e724 ****/ + /****** BRepLib_MakeWire::Add ******/ + /****** md5 signature: 3257e47f30128eb5440b1eab5065e724 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -5031,8 +5031,8 @@ Add the edges of to the current wire. ") Add; void Add(const TopoDS_Wire & W); - /****************** Add ******************/ - /**** md5 signature: acaf1f40b8e0173007b2aad5fa46572c ****/ + /****** BRepLib_MakeWire::Add ******/ + /****** md5 signature: acaf1f40b8e0173007b2aad5fa46572c ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -5049,8 +5049,8 @@ Add the edges of to the current wire. the edges are not to be consecutive. b ") Add; void Add(const TopTools_ListOfShape & L); - /****************** Edge ******************/ - /**** md5 signature: be590cff987799d8b7c28083399d0e9f ****/ + /****** BRepLib_MakeWire::Edge ******/ + /****** md5 signature: be590cff987799d8b7c28083399d0e9f ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", "Return ------- @@ -5062,8 +5062,8 @@ Returns the last edge added to the wire. ") Edge; const TopoDS_Edge Edge(); - /****************** Error ******************/ - /**** md5 signature: ae5b245502f5cc9eb925e95c017c85dd ****/ + /****** BRepLib_MakeWire::Error ******/ + /****** md5 signature: ae5b245502f5cc9eb925e95c017c85dd ******/ %feature("compactdefaultargs") Error; %feature("autodoc", "Return ------- @@ -5075,8 +5075,8 @@ No available documentation. ") Error; BRepLib_WireError Error(); - /****************** Vertex ******************/ - /**** md5 signature: 84212ff79cd7d64cd0ebfa6f17214e90 ****/ + /****** BRepLib_MakeWire::Vertex ******/ + /****** md5 signature: 84212ff79cd7d64cd0ebfa6f17214e90 ******/ %feature("compactdefaultargs") Vertex; %feature("autodoc", "Return ------- @@ -5088,8 +5088,8 @@ Returns the last connecting vertex. ") Vertex; const TopoDS_Vertex Vertex(); - /****************** Wire ******************/ - /**** md5 signature: 1a80266ab027407949727610f03160e2 ****/ + /****** BRepLib_MakeWire::Wire ******/ + /****** md5 signature: 1a80266ab027407949727610f03160e2 ******/ %feature("compactdefaultargs") Wire; %feature("autodoc", "Return ------- diff --git a/src/SWIG_files/wrapper/BRepMAT2d.i b/src/SWIG_files/wrapper/BRepMAT2d.i index 830984124..68e8081f1 100644 --- a/src/SWIG_files/wrapper/BRepMAT2d.i +++ b/src/SWIG_files/wrapper/BRepMAT2d.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPMAT2DDOCSTRING "BRepMAT2d module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepmat2d.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepmat2d.html" %enddef %module (package="OCC.Core", docstring=BREPMAT2DDOCSTRING) BRepMAT2d @@ -102,8 +102,8 @@ typedef NCollection_DataMap on the contour designed by ") BasicElt; opencascade::handle BasicElt(const Standard_Integer IndLine, const Standard_Integer Index); - /****************** Compute ******************/ - /**** md5 signature: b86912005db7017db1b8639215ff1b3f ****/ + /****** BRepMAT2d_BisectingLocus::Compute ******/ + /****** md5 signature: b86912005db7017db1b8639215ff1b3f ******/ %feature("compactdefaultargs") Compute; %feature("autodoc", " Parameters @@ -156,8 +156,8 @@ Computation of the bisector_locus in a set of lines defined in . the bi ") Compute; void Compute(BRepMAT2d_Explorer & anExplo, const Standard_Integer LineIndex = 1, const MAT_Side aSide = MAT_Left, const GeomAbs_JoinType aJoinType = GeomAbs_Arc, const Standard_Boolean IsOpenResult = Standard_False); - /****************** GeomBis ******************/ - /**** md5 signature: fc928757a87c93f00c8941a3d64abfe5 ****/ + /****** BRepMAT2d_BisectingLocus::GeomBis ******/ + /****** md5 signature: fc928757a87c93f00c8941a3d64abfe5 ******/ %feature("compactdefaultargs") GeomBis; %feature("autodoc", " Parameters @@ -174,8 +174,8 @@ Returns the geometry of type linked to the arc . is fals ") GeomBis; Bisector_Bisec GeomBis(const opencascade::handle & anArc, Standard_Boolean &OutValue); - /****************** GeomElt ******************/ - /**** md5 signature: 3094b05485b558a0b6ada2e506bda25a ****/ + /****** BRepMAT2d_BisectingLocus::GeomElt ******/ + /****** md5 signature: 3094b05485b558a0b6ada2e506bda25a ******/ %feature("compactdefaultargs") GeomElt; %feature("autodoc", " Parameters @@ -192,8 +192,8 @@ Returns the geometry linked to the . ") GeomElt; opencascade::handle GeomElt(const opencascade::handle & aBasicElt); - /****************** GeomElt ******************/ - /**** md5 signature: f5f102fded3cad27f433e1250d746e27 ****/ + /****** BRepMAT2d_BisectingLocus::GeomElt ******/ + /****** md5 signature: f5f102fded3cad27f433e1250d746e27 ******/ %feature("compactdefaultargs") GeomElt; %feature("autodoc", " Parameters @@ -210,8 +210,8 @@ Returns the geometry of type linked to the . ") GeomElt; gp_Pnt2d GeomElt(const opencascade::handle & aNode); - /****************** Graph ******************/ - /**** md5 signature: 6513aaaee674215ea3a22bbe7f65bd68 ****/ + /****** BRepMAT2d_BisectingLocus::Graph ******/ + /****** md5 signature: 6513aaaee674215ea3a22bbe7f65bd68 ******/ %feature("compactdefaultargs") Graph; %feature("autodoc", "Return ------- @@ -223,8 +223,8 @@ Returns of . ") Graph; opencascade::handle Graph(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepMAT2d_BisectingLocus::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -236,8 +236,8 @@ Returns true if compute has succeeded. ") IsDone; Standard_Boolean IsDone(); - /****************** NumberOfContours ******************/ - /**** md5 signature: 466b646e5536f1219bac12e9b35bbe15 ****/ + /****** BRepMAT2d_BisectingLocus::NumberOfContours ******/ + /****** md5 signature: 466b646e5536f1219bac12e9b35bbe15 ******/ %feature("compactdefaultargs") NumberOfContours; %feature("autodoc", "Return ------- @@ -249,8 +249,8 @@ Returns the number of contours. ") NumberOfContours; Standard_Integer NumberOfContours(); - /****************** NumberOfElts ******************/ - /**** md5 signature: 99801e5526ee454661c76118ded5fb34 ****/ + /****** BRepMAT2d_BisectingLocus::NumberOfElts ******/ + /****** md5 signature: 99801e5526ee454661c76118ded5fb34 ******/ %feature("compactdefaultargs") NumberOfElts; %feature("autodoc", " Parameters @@ -267,8 +267,8 @@ Returns the number of basicelts on the line . ") NumberOfElts; Standard_Integer NumberOfElts(const Standard_Integer IndLine); - /****************** NumberOfSections ******************/ - /**** md5 signature: fb6c2648dc8f1b7e426fa3af236d1d9a ****/ + /****** BRepMAT2d_BisectingLocus::NumberOfSections ******/ + /****** md5 signature: fb6c2648dc8f1b7e426fa3af236d1d9a ******/ %feature("compactdefaultargs") NumberOfSections; %feature("autodoc", " Parameters @@ -300,8 +300,8 @@ Returns the number of sections of a curve. this curve is the indexth curve in th ***************************/ class BRepMAT2d_Explorer { public: - /****************** BRepMAT2d_Explorer ******************/ - /**** md5 signature: fa74fa874c29b3a1144a1efb889c4543 ****/ + /****** BRepMAT2d_Explorer::BRepMAT2d_Explorer ******/ + /****** md5 signature: fa74fa874c29b3a1144a1efb889c4543 ******/ %feature("compactdefaultargs") BRepMAT2d_Explorer; %feature("autodoc", "Return ------- @@ -313,8 +313,8 @@ No available documentation. ") BRepMAT2d_Explorer; BRepMAT2d_Explorer(); - /****************** BRepMAT2d_Explorer ******************/ - /**** md5 signature: 54cc4fcdafcf467ff86c79d6c6b71792 ****/ + /****** BRepMAT2d_Explorer::BRepMAT2d_Explorer ******/ + /****** md5 signature: 54cc4fcdafcf467ff86c79d6c6b71792 ******/ %feature("compactdefaultargs") BRepMAT2d_Explorer; %feature("autodoc", " Parameters @@ -331,8 +331,8 @@ No available documentation. ") BRepMAT2d_Explorer; BRepMAT2d_Explorer(const TopoDS_Face & aFace); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** BRepMAT2d_Explorer::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -344,8 +344,8 @@ Clear the contents of . ") Clear; void Clear(); - /****************** Contour ******************/ - /**** md5 signature: 0abd7c353f6b45daa5e0b5bd0f6b7766 ****/ + /****** BRepMAT2d_Explorer::Contour ******/ + /****** md5 signature: 0abd7c353f6b45daa5e0b5bd0f6b7766 ******/ %feature("compactdefaultargs") Contour; %feature("autodoc", " Parameters @@ -362,8 +362,8 @@ No available documentation. ") Contour; TColGeom2d_SequenceOfCurve Contour(const Standard_Integer IndexContour); - /****************** GetIsClosed ******************/ - /**** md5 signature: fe2549f56b3cb80b5c2da5e5e50f62a0 ****/ + /****** BRepMAT2d_Explorer::GetIsClosed ******/ + /****** md5 signature: fe2549f56b3cb80b5c2da5e5e50f62a0 ******/ %feature("compactdefaultargs") GetIsClosed; %feature("autodoc", "Return ------- @@ -375,8 +375,8 @@ No available documentation. ") GetIsClosed; const TColStd_SequenceOfBoolean & GetIsClosed(); - /****************** Init ******************/ - /**** md5 signature: 488a24dcd1db8a348e37bafc2ae6f6b7 ****/ + /****** BRepMAT2d_Explorer::Init ******/ + /****** md5 signature: 488a24dcd1db8a348e37bafc2ae6f6b7 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -393,8 +393,8 @@ Initialisation of an iterator on the curves of the contour number ") Init; void Init(const Standard_Integer IndexContour); - /****************** IsModified ******************/ - /**** md5 signature: 54da3346406078b7c7a1e3bef5b4bfbf ****/ + /****** BRepMAT2d_Explorer::IsModified ******/ + /****** md5 signature: 54da3346406078b7c7a1e3bef5b4bfbf ******/ %feature("compactdefaultargs") IsModified; %feature("autodoc", " Parameters @@ -411,8 +411,8 @@ No available documentation. ") IsModified; Standard_Boolean IsModified(const TopoDS_Shape & aShape); - /****************** ModifiedShape ******************/ - /**** md5 signature: 4cc3fd5d5aff0bcce310ec88a2345639 ****/ + /****** BRepMAT2d_Explorer::ModifiedShape ******/ + /****** md5 signature: 4cc3fd5d5aff0bcce310ec88a2345639 ******/ %feature("compactdefaultargs") ModifiedShape; %feature("autodoc", " Parameters @@ -429,8 +429,8 @@ If the shape is not modified, returns the shape itself. ") ModifiedShape; TopoDS_Shape ModifiedShape(const TopoDS_Shape & aShape); - /****************** More ******************/ - /**** md5 signature: 6f6e915c9a3dca758c059d9e8af02dff ****/ + /****** BRepMAT2d_Explorer::More ******/ + /****** md5 signature: 6f6e915c9a3dca758c059d9e8af02dff ******/ %feature("compactdefaultargs") More; %feature("autodoc", "Return ------- @@ -442,8 +442,8 @@ Return false if there is no more curves on the contour initialised by the method ") More; Standard_Boolean More(); - /****************** Next ******************/ - /**** md5 signature: f35c0df5f1d7c877986db18081404532 ****/ + /****** BRepMAT2d_Explorer::Next ******/ + /****** md5 signature: f35c0df5f1d7c877986db18081404532 ******/ %feature("compactdefaultargs") Next; %feature("autodoc", "Return ------- @@ -455,8 +455,8 @@ Move to the next curve of the current contour. ") Next; void Next(); - /****************** NumberOfContours ******************/ - /**** md5 signature: 466b646e5536f1219bac12e9b35bbe15 ****/ + /****** BRepMAT2d_Explorer::NumberOfContours ******/ + /****** md5 signature: 466b646e5536f1219bac12e9b35bbe15 ******/ %feature("compactdefaultargs") NumberOfContours; %feature("autodoc", "Return ------- @@ -468,8 +468,8 @@ Returns the number of contours. ") NumberOfContours; Standard_Integer NumberOfContours(); - /****************** NumberOfCurves ******************/ - /**** md5 signature: bbc17284909b7a04d80469d6df5d679d ****/ + /****** BRepMAT2d_Explorer::NumberOfCurves ******/ + /****** md5 signature: bbc17284909b7a04d80469d6df5d679d ******/ %feature("compactdefaultargs") NumberOfCurves; %feature("autodoc", " Parameters @@ -486,8 +486,8 @@ Returns the number of curves in the contour number . ") NumberOfCurves; Standard_Integer NumberOfCurves(const Standard_Integer IndexContour); - /****************** Perform ******************/ - /**** md5 signature: c84f1304d8c6b6741bee2823ebd22589 ****/ + /****** BRepMAT2d_Explorer::Perform ******/ + /****** md5 signature: c84f1304d8c6b6741bee2823ebd22589 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -504,8 +504,8 @@ No available documentation. ") Perform; void Perform(const TopoDS_Face & aFace); - /****************** Shape ******************/ - /**** md5 signature: 3aece276415d56b8bd9afa5bf371db57 ****/ + /****** BRepMAT2d_Explorer::Shape ******/ + /****** md5 signature: 3aece276415d56b8bd9afa5bf371db57 ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -517,8 +517,8 @@ No available documentation. ") Shape; TopoDS_Shape Shape(); - /****************** Value ******************/ - /**** md5 signature: 5ee7c7b75ee4ebc058a6e98f3b655bda ****/ + /****** BRepMAT2d_Explorer::Value ******/ + /****** md5 signature: 5ee7c7b75ee4ebc058a6e98f3b655bda ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -544,8 +544,8 @@ Returns the current curve on the current contour. *******************************/ class BRepMAT2d_LinkTopoBilo { public: - /****************** BRepMAT2d_LinkTopoBilo ******************/ - /**** md5 signature: 1cd1ab766f92fced8a2bdbf812bbef03 ****/ + /****** BRepMAT2d_LinkTopoBilo::BRepMAT2d_LinkTopoBilo ******/ + /****** md5 signature: 1cd1ab766f92fced8a2bdbf812bbef03 ******/ %feature("compactdefaultargs") BRepMAT2d_LinkTopoBilo; %feature("autodoc", "Return ------- @@ -557,8 +557,8 @@ No available documentation. ") BRepMAT2d_LinkTopoBilo; BRepMAT2d_LinkTopoBilo(); - /****************** BRepMAT2d_LinkTopoBilo ******************/ - /**** md5 signature: 2dc1f521964433428cc7c428c56642c2 ****/ + /****** BRepMAT2d_LinkTopoBilo::BRepMAT2d_LinkTopoBilo ******/ + /****** md5 signature: 2dc1f521964433428cc7c428c56642c2 ******/ %feature("compactdefaultargs") BRepMAT2d_LinkTopoBilo; %feature("autodoc", " Parameters @@ -576,8 +576,8 @@ Constructs the links between s and bilo. //! raises if is not a face. ") BRepMAT2d_LinkTopoBilo; BRepMAT2d_LinkTopoBilo(const BRepMAT2d_Explorer & Explo, const BRepMAT2d_BisectingLocus & BiLo); - /****************** GeneratingShape ******************/ - /**** md5 signature: fd0c19244afd2eedb4578380434efe72 ****/ + /****** BRepMAT2d_LinkTopoBilo::GeneratingShape ******/ + /****** md5 signature: fd0c19244afd2eedb4578380434efe72 ******/ %feature("compactdefaultargs") GeneratingShape; %feature("autodoc", " Parameters @@ -594,8 +594,8 @@ Returns the shape linked to . ") GeneratingShape; TopoDS_Shape GeneratingShape(const opencascade::handle & aBE); - /****************** Init ******************/ - /**** md5 signature: 5b69b32485b3d9f82ae4abb9c853c3c7 ****/ + /****** BRepMAT2d_LinkTopoBilo::Init ******/ + /****** md5 signature: 5b69b32485b3d9f82ae4abb9c853c3c7 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -612,8 +612,8 @@ Initialise the iterator on is an edge or a vertex of the initial wire or ") Init; void Init(const TopoDS_Shape & S); - /****************** More ******************/ - /**** md5 signature: f2144011648ae849666b28430a27a0ea ****/ + /****** BRepMAT2d_LinkTopoBilo::More ******/ + /****** md5 signature: f2144011648ae849666b28430a27a0ea ******/ %feature("compactdefaultargs") More; %feature("autodoc", "Return ------- @@ -625,8 +625,8 @@ Returns true if there is a current basicelt. ") More; Standard_Boolean More(); - /****************** Next ******************/ - /**** md5 signature: f35c0df5f1d7c877986db18081404532 ****/ + /****** BRepMAT2d_LinkTopoBilo::Next ******/ + /****** md5 signature: f35c0df5f1d7c877986db18081404532 ******/ %feature("compactdefaultargs") Next; %feature("autodoc", "Return ------- @@ -638,8 +638,8 @@ Proceed to the next basicelt. ") Next; void Next(); - /****************** Perform ******************/ - /**** md5 signature: e58f0cdf711f332828907215f894ed67 ****/ + /****** BRepMAT2d_LinkTopoBilo::Perform ******/ + /****** md5 signature: e58f0cdf711f332828907215f894ed67 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -657,8 +657,8 @@ Constructs the links between s and bilo. //! raises if is not a face or a wi ") Perform; void Perform(const BRepMAT2d_Explorer & Explo, const BRepMAT2d_BisectingLocus & BiLo); - /****************** Value ******************/ - /**** md5 signature: 2aa6c89e250a68722ac2342ac35acc59 ****/ + /****** BRepMAT2d_LinkTopoBilo::Value ******/ + /****** md5 signature: 2aa6c89e250a68722ac2342ac35acc59 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- diff --git a/src/SWIG_files/wrapper/BRepMesh.i b/src/SWIG_files/wrapper/BRepMesh.i index 003c57b7b..6ee4307db 100644 --- a/src/SWIG_files/wrapper/BRepMesh.i +++ b/src/SWIG_files/wrapper/BRepMesh.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPMESHDOCSTRING "BRepMesh module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepmesh.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepmesh.html" %enddef %module (package="OCC.Core", docstring=BREPMESHDOCSTRING) BRepMesh @@ -181,8 +181,8 @@ typedef Standard_Integer ( * BRepMesh_PluginEntryType ) ( const TopoDS_Shape & t class BRepMesh_BaseMeshAlgo : public IMeshTools_MeshAlgo { public: typedef NCollection_Shared> VectorOfPnt; - /****************** Perform ******************/ - /**** md5 signature: d685bfcd2d4c1ddec38b4671470322e6 ****/ + /****** BRepMesh_BaseMeshAlgo::Perform ******/ + /****** md5 signature: d685bfcd2d4c1ddec38b4671470322e6 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -215,8 +215,8 @@ Performs processing of the given face. ************************/ class BRepMesh_Circle { public: - /****************** BRepMesh_Circle ******************/ - /**** md5 signature: 351446427e4f3cd2ee3d37f31f7510db ****/ + /****** BRepMesh_Circle::BRepMesh_Circle ******/ + /****** md5 signature: 351446427e4f3cd2ee3d37f31f7510db ******/ %feature("compactdefaultargs") BRepMesh_Circle; %feature("autodoc", "Return ------- @@ -228,8 +228,8 @@ Default constructor. ") BRepMesh_Circle; BRepMesh_Circle(); - /****************** BRepMesh_Circle ******************/ - /**** md5 signature: c5833c762e5c82e444de7dd2eceedecd ****/ + /****** BRepMesh_Circle::BRepMesh_Circle ******/ + /****** md5 signature: c5833c762e5c82e444de7dd2eceedecd ******/ %feature("compactdefaultargs") BRepMesh_Circle; %feature("autodoc", " Parameters @@ -247,8 +247,8 @@ Constructor. @param thelocation location of a circle. @param theradius radius of ") BRepMesh_Circle; BRepMesh_Circle(const gp_XY & theLocation, const Standard_Real theRadius); - /****************** Location ******************/ - /**** md5 signature: 2ecc9f07f1d8eda4bb4073a2c1f35c81 ****/ + /****** BRepMesh_Circle::Location ******/ + /****** md5 signature: 2ecc9f07f1d8eda4bb4073a2c1f35c81 ******/ %feature("compactdefaultargs") Location; %feature("autodoc", "Return ------- @@ -260,8 +260,8 @@ Returns location of a circle. ") Location; const gp_XY Location(); - /****************** Radius ******************/ - /**** md5 signature: a23a06a93bcd6b6bd7a4525b4ccf66ac ****/ + /****** BRepMesh_Circle::Radius ******/ + /****** md5 signature: a23a06a93bcd6b6bd7a4525b4ccf66ac ******/ %feature("compactdefaultargs") Radius; %feature("autodoc", "Return ------- @@ -273,8 +273,8 @@ Returns radius of a circle. ") Radius; const Standard_Real & Radius(); - /****************** SetLocation ******************/ - /**** md5 signature: 9327d7a19f0eeac7a91ff9bb889d6b3f ****/ + /****** BRepMesh_Circle::SetLocation ******/ + /****** md5 signature: 9327d7a19f0eeac7a91ff9bb889d6b3f ******/ %feature("compactdefaultargs") SetLocation; %feature("autodoc", " Parameters @@ -291,8 +291,8 @@ Sets location of a circle. @param thelocation location of a circle. ") SetLocation; void SetLocation(const gp_XY & theLocation); - /****************** SetRadius ******************/ - /**** md5 signature: ec1ecbc6b8d5250d29d2812fb870ef3b ****/ + /****** BRepMesh_Circle::SetRadius ******/ + /****** md5 signature: ec1ecbc6b8d5250d29d2812fb870ef3b ******/ %feature("compactdefaultargs") SetRadius; %feature("autodoc", " Parameters @@ -324,8 +324,8 @@ Sets radius of a circle. @param theradius radius of a circle. class BRepMesh_CircleInspector : public NCollection_CellFilter_InspectorXY { public: typedef Standard_Integer Target; - /****************** BRepMesh_CircleInspector ******************/ - /**** md5 signature: 9e543288b820133538a575a6fc20eeb1 ****/ + /****** BRepMesh_CircleInspector::BRepMesh_CircleInspector ******/ + /****** md5 signature: 9e543288b820133538a575a6fc20eeb1 ******/ %feature("compactdefaultargs") BRepMesh_CircleInspector; %feature("autodoc", " Parameters @@ -344,8 +344,8 @@ Constructor. @param thetolerance tolerance to be used for identification of shot ") BRepMesh_CircleInspector; BRepMesh_CircleInspector(const Standard_Real theTolerance, const Standard_Integer theReservedSize, const opencascade::handle & theAllocator); - /****************** Bind ******************/ - /**** md5 signature: 7cebd699dfcb51866c850e6e54217a62 ****/ + /****** BRepMesh_CircleInspector::Bind ******/ + /****** md5 signature: 7cebd699dfcb51866c850e6e54217a62 ******/ %feature("compactdefaultargs") Bind; %feature("autodoc", " Parameters @@ -363,8 +363,8 @@ Adds the circle to vector of circles at the given position. @param theindex posi ") Bind; void Bind(const Standard_Integer theIndex, const BRepMesh_Circle & theCircle); - /****************** Circle ******************/ - /**** md5 signature: 06e7c3749668870601f344d946e7bede ****/ + /****** BRepMesh_CircleInspector::Circle ******/ + /****** md5 signature: 06e7c3749668870601f344d946e7bede ******/ %feature("compactdefaultargs") Circle; %feature("autodoc", " Parameters @@ -381,8 +381,8 @@ Returns circle with the given index. @param theindex index of circle. return cir ") Circle; BRepMesh_Circle & Circle(const Standard_Integer theIndex); - /****************** Circles ******************/ - /**** md5 signature: 5715a9c41d841e4058a32bbf582cd2f3 ****/ + /****** BRepMesh_CircleInspector::Circles ******/ + /****** md5 signature: 5715a9c41d841e4058a32bbf582cd2f3 ******/ %feature("compactdefaultargs") Circles; %feature("autodoc", "Return ------- @@ -394,8 +394,8 @@ Resutns vector of registered circles. ") Circles; const IMeshData::VectorOfCircle & Circles(); - /****************** GetShotCircles ******************/ - /**** md5 signature: c1409009f8ad619775420c881c945c8f ****/ + /****** BRepMesh_CircleInspector::GetShotCircles ******/ + /****** md5 signature: c1409009f8ad619775420c881c945c8f ******/ %feature("compactdefaultargs") GetShotCircles; %feature("autodoc", "Return ------- @@ -407,8 +407,8 @@ Returns list of circles shot by the reference point. ") GetShotCircles; IMeshData::ListOfInteger & GetShotCircles(); - /****************** Inspect ******************/ - /**** md5 signature: 36ed0deca30ac42bb917d21f9193ca76 ****/ + /****** BRepMesh_CircleInspector::Inspect ******/ + /****** md5 signature: 36ed0deca30ac42bb917d21f9193ca76 ******/ %feature("compactdefaultargs") Inspect; %feature("autodoc", " Parameters @@ -425,8 +425,8 @@ Performs inspection of a circle with the given index. @param thetargetindex inde ") Inspect; NCollection_CellFilter_Action Inspect(const Standard_Integer theTargetIndex); - /****************** IsEqual ******************/ - /**** md5 signature: dd38878b9463f31ea5c2351dd2f590e3 ****/ + /****** BRepMesh_CircleInspector::IsEqual ******/ + /****** md5 signature: dd38878b9463f31ea5c2351dd2f590e3 ******/ %feature("compactdefaultargs") IsEqual; %feature("autodoc", " Parameters @@ -444,8 +444,8 @@ Checks indices for equlity. ") IsEqual; static Standard_Boolean IsEqual(const Standard_Integer theIndex, const Standard_Integer theTargetIndex); - /****************** SetPoint ******************/ - /**** md5 signature: b521bfcebdca3f9d4da8c66d87603bc7 ****/ + /****** BRepMesh_CircleInspector::SetPoint ******/ + /****** md5 signature: b521bfcebdca3f9d4da8c66d87603bc7 ******/ %feature("compactdefaultargs") SetPoint; %feature("autodoc", " Parameters @@ -476,8 +476,8 @@ Set reference point to be checked. @param thepoint bullet point. ****************************/ class BRepMesh_CircleTool { public: - /****************** BRepMesh_CircleTool ******************/ - /**** md5 signature: cd4fc4f8a4dbaf9bbda62ee6ed26b484 ****/ + /****** BRepMesh_CircleTool::BRepMesh_CircleTool ******/ + /****** md5 signature: cd4fc4f8a4dbaf9bbda62ee6ed26b484 ******/ %feature("compactdefaultargs") BRepMesh_CircleTool; %feature("autodoc", " Parameters @@ -494,8 +494,8 @@ Constructor. @param theallocator memory allocator to be used by internal structu ") BRepMesh_CircleTool; BRepMesh_CircleTool(const opencascade::handle & theAllocator); - /****************** BRepMesh_CircleTool ******************/ - /**** md5 signature: c6eb5dae5ac79dcae0854f80344cf319 ****/ + /****** BRepMesh_CircleTool::BRepMesh_CircleTool ******/ + /****** md5 signature: c6eb5dae5ac79dcae0854f80344cf319 ******/ %feature("compactdefaultargs") BRepMesh_CircleTool; %feature("autodoc", " Parameters @@ -513,8 +513,8 @@ Constructor. @param thereservedsize size to be reserved for vector of circles. @ ") BRepMesh_CircleTool; BRepMesh_CircleTool(const Standard_Integer theReservedSize, const opencascade::handle & theAllocator); - /****************** Bind ******************/ - /**** md5 signature: 154690b42ecbd10f375f8b7af8b5b652 ****/ + /****** BRepMesh_CircleTool::Bind ******/ + /****** md5 signature: 154690b42ecbd10f375f8b7af8b5b652 ******/ %feature("compactdefaultargs") Bind; %feature("autodoc", " Parameters @@ -532,8 +532,8 @@ Binds the circle to the tool. @param theindex index a circle should be bound wit ") Bind; void Bind(const Standard_Integer theIndex, const gp_Circ2d & theCircle); - /****************** Bind ******************/ - /**** md5 signature: 6c8a2596059211c4304b11964bd3737f ****/ + /****** BRepMesh_CircleTool::Bind ******/ + /****** md5 signature: 6c8a2596059211c4304b11964bd3737f ******/ %feature("compactdefaultargs") Bind; %feature("autodoc", " Parameters @@ -553,8 +553,8 @@ Computes circle on three points and bind it to the tool. @param theindex index a ") Bind; Standard_Boolean Bind(const Standard_Integer theIndex, const gp_XY & thePoint1, const gp_XY & thePoint2, const gp_XY & thePoint3); - /****************** Delete ******************/ - /**** md5 signature: 071690f016ae5c038b98161e982d077e ****/ + /****** BRepMesh_CircleTool::Delete ******/ + /****** md5 signature: 071690f016ae5c038b98161e982d077e ******/ %feature("compactdefaultargs") Delete; %feature("autodoc", " Parameters @@ -571,8 +571,8 @@ Deletes a circle from the tool. @param theindex index of a circle to be removed. ") Delete; void Delete(const Standard_Integer theIndex); - /****************** Init ******************/ - /**** md5 signature: 3dd4080a86e69636d0123b416448c0ee ****/ + /****** BRepMesh_CircleTool::Init ******/ + /****** md5 signature: 3dd4080a86e69636d0123b416448c0ee ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -589,8 +589,8 @@ Initializes the tool. @param thereservedsize size to be reserved for vector of c ") Init; void Init(const Standard_Integer); - /****************** IsEmpty ******************/ - /**** md5 signature: d529c07ce9e12eea3222188c82b0e80b ****/ + /****** BRepMesh_CircleTool::IsEmpty ******/ + /****** md5 signature: d529c07ce9e12eea3222188c82b0e80b ******/ %feature("compactdefaultargs") IsEmpty; %feature("autodoc", "Return ------- @@ -602,8 +602,8 @@ Returns true if cell filter contains no circle. ") IsEmpty; Standard_Boolean IsEmpty(); - /****************** MakeCircle ******************/ - /**** md5 signature: 46bcabfe7710c009f41e63b1f25fea06 ****/ + /****** BRepMesh_CircleTool::MakeCircle ******/ + /****** md5 signature: 46bcabfe7710c009f41e63b1f25fea06 ******/ %feature("compactdefaultargs") MakeCircle; %feature("autodoc", " Parameters @@ -623,8 +623,8 @@ Computes circle on three points. @param thepoint1 first point. @param thepoint2 ") MakeCircle; static Standard_Boolean MakeCircle(const gp_XY & thePoint1, const gp_XY & thePoint2, const gp_XY & thePoint3, gp_XY & theLocation, Standard_Real &OutValue); - /****************** MocBind ******************/ - /**** md5 signature: ef973aed188f7fc29293e962039e4ce6 ****/ + /****** BRepMesh_CircleTool::MocBind ******/ + /****** md5 signature: ef973aed188f7fc29293e962039e4ce6 ******/ %feature("compactdefaultargs") MocBind; %feature("autodoc", " Parameters @@ -641,8 +641,8 @@ Binds implicit zero circle. @param theindex index a zero circle should be bound ") MocBind; void MocBind(const Standard_Integer theIndex); - /****************** Select ******************/ - /**** md5 signature: 42d7f08c8f789406b882043c70333ebd ****/ + /****** BRepMesh_CircleTool::Select ******/ + /****** md5 signature: 42d7f08c8f789406b882043c70333ebd ******/ %feature("compactdefaultargs") Select; %feature("autodoc", " Parameters @@ -659,8 +659,8 @@ Select the circles shot by the given point. @param thepoint bullet point. ") Select; IMeshData::ListOfInteger & Select(const gp_XY & thePoint); - /****************** SetCellSize ******************/ - /**** md5 signature: 415a8b91be50170d2af0ba27dd19bc6c ****/ + /****** BRepMesh_CircleTool::SetCellSize ******/ + /****** md5 signature: 415a8b91be50170d2af0ba27dd19bc6c ******/ %feature("compactdefaultargs") SetCellSize; %feature("autodoc", " Parameters @@ -677,8 +677,8 @@ Sets new size for cell filter. @param thesize cell size to be set for x and y di ") SetCellSize; void SetCellSize(const Standard_Real theSize); - /****************** SetCellSize ******************/ - /**** md5 signature: 28e49b1c038f46447a07e18f6d52b3eb ****/ + /****** BRepMesh_CircleTool::SetCellSize ******/ + /****** md5 signature: 28e49b1c038f46447a07e18f6d52b3eb ******/ %feature("compactdefaultargs") SetCellSize; %feature("autodoc", " Parameters @@ -696,8 +696,8 @@ Sets new size for cell filter. @param thesizex cell size to be set for x dimensi ") SetCellSize; void SetCellSize(const Standard_Real theSizeX, const Standard_Real theSizeY); - /****************** SetMinMaxSize ******************/ - /**** md5 signature: f153182deac2fb83c6f4bb26b9903fb1 ****/ + /****** BRepMesh_CircleTool::SetMinMaxSize ******/ + /****** md5 signature: f153182deac2fb83c6f4bb26b9903fb1 ******/ %feature("compactdefaultargs") SetMinMaxSize; %feature("autodoc", " Parameters @@ -729,8 +729,8 @@ Sets limits of inspection area. @param themin bottom left corner of inspection a ****************************/ class BRepMesh_Classifier : public Standard_Transient { public: - /****************** BRepMesh_Classifier ******************/ - /**** md5 signature: 985f7a67456acfd7e203609355094286 ****/ + /****** BRepMesh_Classifier::BRepMesh_Classifier ******/ + /****** md5 signature: 985f7a67456acfd7e203609355094286 ******/ %feature("compactdefaultargs") BRepMesh_Classifier; %feature("autodoc", "Return ------- @@ -742,8 +742,8 @@ Constructor. ") BRepMesh_Classifier; BRepMesh_Classifier(); - /****************** Perform ******************/ - /**** md5 signature: 668466fd138ea01dcd174ac83e766ee1 ****/ + /****** BRepMesh_Classifier::Perform ******/ + /****** md5 signature: 668466fd138ea01dcd174ac83e766ee1 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -760,8 +760,8 @@ Performs classification of the given point regarding to face internals. @param t ") Perform; TopAbs_State Perform(const gp_Pnt2d & thePoint); - /****************** RegisterWire ******************/ - /**** md5 signature: 9967b6710a5502eb1c8eafb8149cecf8 ****/ + /****** BRepMesh_Classifier::RegisterWire ******/ + /****** md5 signature: 9967b6710a5502eb1c8eafb8149cecf8 ******/ %feature("compactdefaultargs") RegisterWire; %feature("autodoc", " Parameters @@ -797,8 +797,8 @@ Registers wire specified by sequence of points for further classification of poi *************************/ class BRepMesh_Context : public IMeshTools_Context { public: - /****************** BRepMesh_Context ******************/ - /**** md5 signature: b9a5ecaf630ba21afab7902c0bd2fa8b ****/ + /****** BRepMesh_Context::BRepMesh_Context ******/ + /****** md5 signature: b9a5ecaf630ba21afab7902c0bd2fa8b ******/ %feature("compactdefaultargs") BRepMesh_Context; %feature("autodoc", " Parameters @@ -829,8 +829,8 @@ Constructor. **********************************/ class BRepMesh_CurveTessellator : public IMeshTools_CurveTessellator { public: - /****************** BRepMesh_CurveTessellator ******************/ - /**** md5 signature: 8969af78dec0b3b693d65dedebb220b7 ****/ + /****** BRepMesh_CurveTessellator::BRepMesh_CurveTessellator ******/ + /****** md5 signature: 8969af78dec0b3b693d65dedebb220b7 ******/ %feature("compactdefaultargs") BRepMesh_CurveTessellator; %feature("autodoc", " Parameters @@ -849,8 +849,8 @@ Constructor. ") BRepMesh_CurveTessellator; BRepMesh_CurveTessellator(const IMeshData::IEdgeHandle & theEdge, const IMeshTools_Parameters & theParameters, const Standard_Integer theMinPointsNb = 2); - /****************** BRepMesh_CurveTessellator ******************/ - /**** md5 signature: f45923b0468f038ca021eb1a2e3c68a7 ****/ + /****** BRepMesh_CurveTessellator::BRepMesh_CurveTessellator ******/ + /****** md5 signature: f45923b0468f038ca021eb1a2e3c68a7 ******/ %feature("compactdefaultargs") BRepMesh_CurveTessellator; %feature("autodoc", " Parameters @@ -871,8 +871,8 @@ Constructor. ") BRepMesh_CurveTessellator; BRepMesh_CurveTessellator(const IMeshData::IEdgeHandle & theEdge, const TopAbs_Orientation theOrientation, const IMeshData::IFaceHandle & theFace, const IMeshTools_Parameters & theParameters, const Standard_Integer theMinPointsNb = 2); - /****************** PointsNb ******************/ - /**** md5 signature: c7dec7b525c6ed3a148d8633ce567fe8 ****/ + /****** BRepMesh_CurveTessellator::PointsNb ******/ + /****** md5 signature: c7dec7b525c6ed3a148d8633ce567fe8 ******/ %feature("compactdefaultargs") PointsNb; %feature("autodoc", "Return ------- @@ -884,8 +884,8 @@ Returns number of tessellation points. ") PointsNb; virtual Standard_Integer PointsNb(); - /****************** Value ******************/ - /**** md5 signature: 4110d8d1bb060691997a3dfc00ca0b94 ****/ + /****** BRepMesh_CurveTessellator::Value ******/ + /****** md5 signature: 4110d8d1bb060691997a3dfc00ca0b94 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -920,8 +920,8 @@ Returns parameters of solution with the given index. @param theindex index of te ***************************************/ class BRepMesh_DataStructureOfDelaun : public Standard_Transient { public: - /****************** BRepMesh_DataStructureOfDelaun ******************/ - /**** md5 signature: 2287ac69950ef2b0749f3b921b91ce4f ****/ + /****** BRepMesh_DataStructureOfDelaun::BRepMesh_DataStructureOfDelaun ******/ + /****** md5 signature: 2287ac69950ef2b0749f3b921b91ce4f ******/ %feature("compactdefaultargs") BRepMesh_DataStructureOfDelaun; %feature("autodoc", " Parameters @@ -939,8 +939,8 @@ Constructor. @param theallocator memory allocator to be used by internal structu ") BRepMesh_DataStructureOfDelaun; BRepMesh_DataStructureOfDelaun(const opencascade::handle & theAllocator, const Standard_Integer theReservedNodeSize = 100); - /****************** AddElement ******************/ - /**** md5 signature: 94a8b8e1417772021ce81c09a3356dbe ****/ + /****** BRepMesh_DataStructureOfDelaun::AddElement ******/ + /****** md5 signature: 94a8b8e1417772021ce81c09a3356dbe ******/ %feature("compactdefaultargs") AddElement; %feature("autodoc", " Parameters @@ -957,8 +957,8 @@ Adds element to the mesh if it is not already in the mesh. @param theelement ele ") AddElement; Standard_Integer AddElement(const BRepMesh_Triangle & theElement); - /****************** AddLink ******************/ - /**** md5 signature: 4691508da394d212a95c84d4b6e052e8 ****/ + /****** BRepMesh_DataStructureOfDelaun::AddLink ******/ + /****** md5 signature: 4691508da394d212a95c84d4b6e052e8 ******/ %feature("compactdefaultargs") AddLink; %feature("autodoc", " Parameters @@ -975,8 +975,8 @@ Adds link to the mesh if it is not already in the mesh. @param thelink link to b ") AddLink; Standard_Integer AddLink(const BRepMesh_Edge & theLink); - /****************** AddNode ******************/ - /**** md5 signature: 0516fd4a8f3c95f7b1ed562c74328f62 ****/ + /****** BRepMesh_DataStructureOfDelaun::AddNode ******/ + /****** md5 signature: 0516fd4a8f3c95f7b1ed562c74328f62 ******/ %feature("compactdefaultargs") AddNode; %feature("autodoc", " Parameters @@ -994,8 +994,8 @@ Adds node to the mesh if it is not already in the mesh. @param thenode node to b ") AddNode; Standard_Integer AddNode(const BRepMesh_Vertex & theNode, const Standard_Boolean isForceAdd = Standard_False); - /****************** Allocator ******************/ - /**** md5 signature: f62593783d4573ef5624106d77d9bbd9 ****/ + /****** BRepMesh_DataStructureOfDelaun::Allocator ******/ + /****** md5 signature: f62593783d4573ef5624106d77d9bbd9 ******/ %feature("compactdefaultargs") Allocator; %feature("autodoc", "Return ------- @@ -1007,8 +1007,8 @@ Returns memory allocator used by the structure. ") Allocator; const opencascade::handle & Allocator(); - /****************** ClearDeleted ******************/ - /**** md5 signature: 2f79f0e58312517eed899c340fbc034c ****/ + /****** BRepMesh_DataStructureOfDelaun::ClearDeleted ******/ + /****** md5 signature: 2f79f0e58312517eed899c340fbc034c ******/ %feature("compactdefaultargs") ClearDeleted; %feature("autodoc", "Return ------- @@ -1020,8 +1020,8 @@ Substitutes deleted items by the last one from corresponding map to have only no ") ClearDeleted; void ClearDeleted(); - /****************** ClearDomain ******************/ - /**** md5 signature: cba3b5048c974ffd2154c94ad129dd31 ****/ + /****** BRepMesh_DataStructureOfDelaun::ClearDomain ******/ + /****** md5 signature: cba3b5048c974ffd2154c94ad129dd31 ******/ %feature("compactdefaultargs") ClearDomain; %feature("autodoc", "Return ------- @@ -1033,8 +1033,8 @@ Removes all elements. ") ClearDomain; void ClearDomain(); - /****************** Data ******************/ - /**** md5 signature: 60a87eb41dbe1e7bddca17ebc155ae95 ****/ + /****** BRepMesh_DataStructureOfDelaun::Data ******/ + /****** md5 signature: 60a87eb41dbe1e7bddca17ebc155ae95 ******/ %feature("compactdefaultargs") Data; %feature("autodoc", "Return ------- @@ -1046,8 +1046,8 @@ Gives the data structure for initialization of cell size and tolerance. ") Data; const opencascade::handle & Data(); - /****************** Dump ******************/ - /**** md5 signature: d3d8c72524995f78a1b0cc6995a49cf5 ****/ + /****** BRepMesh_DataStructureOfDelaun::Dump ******/ + /****** md5 signature: d3d8c72524995f78a1b0cc6995a49cf5 ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", " Parameters @@ -1064,8 +1064,8 @@ No available documentation. ") Dump; void Dump(Standard_CString theFileNameStr); - /****************** ElementNodes ******************/ - /**** md5 signature: 5db4f2cf5cd97ae13ac71bb7f7bf46de ****/ + /****** BRepMesh_DataStructureOfDelaun::ElementNodes ******/ + /****** md5 signature: 5db4f2cf5cd97ae13ac71bb7f7bf46de ******/ %feature("compactdefaultargs") ElementNodes; %feature("autodoc", " Parameters @@ -1083,8 +1083,8 @@ Returns indices of nodes forming the given element. @param theelement element wh ") ElementNodes; void ElementNodes(const BRepMesh_Triangle & theElement, Standard_Integer ( & theNodes )[3]); - /****************** ElementsConnectedTo ******************/ - /**** md5 signature: 6a0793321d2308e1d5fc176a3a016706 ****/ + /****** BRepMesh_DataStructureOfDelaun::ElementsConnectedTo ******/ + /****** md5 signature: 6a0793321d2308e1d5fc176a3a016706 ******/ %feature("compactdefaultargs") ElementsConnectedTo; %feature("autodoc", " Parameters @@ -1101,8 +1101,8 @@ Returns indices of elements connected to the link with the given index. @param t ") ElementsConnectedTo; const BRepMesh_PairOfIndex & ElementsConnectedTo(const Standard_Integer theLinkIndex); - /****************** ElementsOfDomain ******************/ - /**** md5 signature: 69b3fc4ed234e9f90fe6024d34e76746 ****/ + /****** BRepMesh_DataStructureOfDelaun::ElementsOfDomain ******/ + /****** md5 signature: 69b3fc4ed234e9f90fe6024d34e76746 ******/ %feature("compactdefaultargs") ElementsOfDomain; %feature("autodoc", "Return ------- @@ -1114,8 +1114,8 @@ Returns map of indices of elements registered in mesh. ") ElementsOfDomain; const IMeshData::MapOfInteger & ElementsOfDomain(); - /****************** GetElement ******************/ - /**** md5 signature: c9b9801039484bfc9f57f5dc42578498 ****/ + /****** BRepMesh_DataStructureOfDelaun::GetElement ******/ + /****** md5 signature: c9b9801039484bfc9f57f5dc42578498 ******/ %feature("compactdefaultargs") GetElement; %feature("autodoc", " Parameters @@ -1132,8 +1132,8 @@ Get element by the index. @param theindex index of an element. return element wi ") GetElement; const BRepMesh_Triangle & GetElement(const Standard_Integer theIndex); - /****************** GetLink ******************/ - /**** md5 signature: 4ab6f14e075232adda60803210dc0a9f ****/ + /****** BRepMesh_DataStructureOfDelaun::GetLink ******/ + /****** md5 signature: 4ab6f14e075232adda60803210dc0a9f ******/ %feature("compactdefaultargs") GetLink; %feature("autodoc", " Parameters @@ -1150,8 +1150,8 @@ Get link by the index. @param theindex index of a link. return link with the giv ") GetLink; const BRepMesh_Edge & GetLink(const Standard_Integer theIndex); - /****************** GetNode ******************/ - /**** md5 signature: 292c7b2f2aea3bfbafc99b3d94fdd1a2 ****/ + /****** BRepMesh_DataStructureOfDelaun::GetNode ******/ + /****** md5 signature: 292c7b2f2aea3bfbafc99b3d94fdd1a2 ******/ %feature("compactdefaultargs") GetNode; %feature("autodoc", " Parameters @@ -1168,8 +1168,8 @@ Get node by the index. @param theindex index of a node. return node with the giv ") GetNode; const BRepMesh_Vertex & GetNode(const Standard_Integer theIndex); - /****************** IndexOf ******************/ - /**** md5 signature: 3f434eceeff0c6557949e02cf119e10c ****/ + /****** BRepMesh_DataStructureOfDelaun::IndexOf ******/ + /****** md5 signature: 3f434eceeff0c6557949e02cf119e10c ******/ %feature("compactdefaultargs") IndexOf; %feature("autodoc", " Parameters @@ -1186,8 +1186,8 @@ Finds the index of the given node. @param thenode node to find. return index of ") IndexOf; Standard_Integer IndexOf(const BRepMesh_Vertex & theNode); - /****************** IndexOf ******************/ - /**** md5 signature: 1936fca1064f882cb3a704a0b57bf41b ****/ + /****** BRepMesh_DataStructureOfDelaun::IndexOf ******/ + /****** md5 signature: 1936fca1064f882cb3a704a0b57bf41b ******/ %feature("compactdefaultargs") IndexOf; %feature("autodoc", " Parameters @@ -1204,8 +1204,8 @@ Finds the index of the given link. @param thelink link to find. return index of ") IndexOf; Standard_Integer IndexOf(const BRepMesh_Edge & theLink); - /****************** LinksConnectedTo ******************/ - /**** md5 signature: 9857b8f97159eb2d3ff586fadab236b8 ****/ + /****** BRepMesh_DataStructureOfDelaun::LinksConnectedTo ******/ + /****** md5 signature: 9857b8f97159eb2d3ff586fadab236b8 ******/ %feature("compactdefaultargs") LinksConnectedTo; %feature("autodoc", " Parameters @@ -1222,8 +1222,8 @@ Get list of links attached to the node with the given index. @param theindex ind ") LinksConnectedTo; const IMeshData::ListOfInteger & LinksConnectedTo(const Standard_Integer theIndex); - /****************** LinksOfDomain ******************/ - /**** md5 signature: 912b45a268b81eb750fcd0b09b5744a5 ****/ + /****** BRepMesh_DataStructureOfDelaun::LinksOfDomain ******/ + /****** md5 signature: 912b45a268b81eb750fcd0b09b5744a5 ******/ %feature("compactdefaultargs") LinksOfDomain; %feature("autodoc", "Return ------- @@ -1235,8 +1235,8 @@ Returns map of indices of links registered in mesh. ") LinksOfDomain; const IMeshData::MapOfInteger & LinksOfDomain(); - /****************** NbElements ******************/ - /**** md5 signature: 31ab3b416016e435682ef37235c33db1 ****/ + /****** BRepMesh_DataStructureOfDelaun::NbElements ******/ + /****** md5 signature: 31ab3b416016e435682ef37235c33db1 ******/ %feature("compactdefaultargs") NbElements; %feature("autodoc", "Return ------- @@ -1248,8 +1248,8 @@ Returns number of links. ") NbElements; Standard_Integer NbElements(); - /****************** NbLinks ******************/ - /**** md5 signature: 2c9671a2bdbbb6b3c071b4befae3ab9c ****/ + /****** BRepMesh_DataStructureOfDelaun::NbLinks ******/ + /****** md5 signature: 2c9671a2bdbbb6b3c071b4befae3ab9c ******/ %feature("compactdefaultargs") NbLinks; %feature("autodoc", "Return ------- @@ -1261,8 +1261,8 @@ Returns number of links. ") NbLinks; Standard_Integer NbLinks(); - /****************** NbNodes ******************/ - /**** md5 signature: e10a1e755c3c99568fdfec53b6a1d5d1 ****/ + /****** BRepMesh_DataStructureOfDelaun::NbNodes ******/ + /****** md5 signature: e10a1e755c3c99568fdfec53b6a1d5d1 ******/ %feature("compactdefaultargs") NbNodes; %feature("autodoc", "Return ------- @@ -1274,8 +1274,8 @@ Returns number of nodes. ") NbNodes; Standard_Integer NbNodes(); - /****************** RemoveElement ******************/ - /**** md5 signature: 2865f98473668f1017ebd476792ecce7 ****/ + /****** BRepMesh_DataStructureOfDelaun::RemoveElement ******/ + /****** md5 signature: 2865f98473668f1017ebd476792ecce7 ******/ %feature("compactdefaultargs") RemoveElement; %feature("autodoc", " Parameters @@ -1292,8 +1292,8 @@ Removes element from the mesh. @param theindex index of element to be removed. ") RemoveElement; void RemoveElement(const Standard_Integer theIndex); - /****************** RemoveLink ******************/ - /**** md5 signature: 69f63c171a16ac211e5cc3d4eb18ef27 ****/ + /****** BRepMesh_DataStructureOfDelaun::RemoveLink ******/ + /****** md5 signature: 69f63c171a16ac211e5cc3d4eb18ef27 ******/ %feature("compactdefaultargs") RemoveLink; %feature("autodoc", " Parameters @@ -1311,8 +1311,8 @@ Removes link from the mesh in case if it has no connected elements and its type ") RemoveLink; void RemoveLink(const Standard_Integer theIndex, const Standard_Boolean isForce = Standard_False); - /****************** RemoveNode ******************/ - /**** md5 signature: 9b6d945ac16fe90d29639d80839df411 ****/ + /****** BRepMesh_DataStructureOfDelaun::RemoveNode ******/ + /****** md5 signature: 9b6d945ac16fe90d29639d80839df411 ******/ %feature("compactdefaultargs") RemoveNode; %feature("autodoc", " Parameters @@ -1330,8 +1330,8 @@ Removes node from the mesh in case if it has no connected links and its type is ") RemoveNode; void RemoveNode(const Standard_Integer theIndex, const Standard_Boolean isForce = Standard_False); - /****************** Statistics ******************/ - /**** md5 signature: 1a1dab8d9fff60f7ef456c28f93e75d1 ****/ + /****** BRepMesh_DataStructureOfDelaun::Statistics ******/ + /****** md5 signature: 1a1dab8d9fff60f7ef456c28f93e75d1 ******/ %feature("compactdefaultargs") Statistics; %feature("autodoc", " Parameters @@ -1347,8 +1347,8 @@ Dumps information about this structure. @param thestream stream to be used for d ") Statistics; void Statistics(std::ostream &OutValue); - /****************** SubstituteElement ******************/ - /**** md5 signature: 12a4e39048c62f85d59c6cb6b113dccd ****/ + /****** BRepMesh_DataStructureOfDelaun::SubstituteElement ******/ + /****** md5 signature: 12a4e39048c62f85d59c6cb6b113dccd ******/ %feature("compactdefaultargs") SubstituteElement; %feature("autodoc", " Parameters @@ -1366,8 +1366,8 @@ Substitutes the element with the given index by new one. @param theindex index o ") SubstituteElement; Standard_Boolean SubstituteElement(const Standard_Integer theIndex, const BRepMesh_Triangle & theNewElement); - /****************** SubstituteLink ******************/ - /**** md5 signature: f2c0b3ec79ede5578f8804e858107d49 ****/ + /****** BRepMesh_DataStructureOfDelaun::SubstituteLink ******/ + /****** md5 signature: f2c0b3ec79ede5578f8804e858107d49 ******/ %feature("compactdefaultargs") SubstituteLink; %feature("autodoc", " Parameters @@ -1385,8 +1385,8 @@ Substitutes the link with the given index by new one. @param theindex index of l ") SubstituteLink; Standard_Boolean SubstituteLink(const Standard_Integer theIndex, const BRepMesh_Edge & theNewLink); - /****************** SubstituteNode ******************/ - /**** md5 signature: ef7beda41b0e96083c85b8b05b5dbdb1 ****/ + /****** BRepMesh_DataStructureOfDelaun::SubstituteNode ******/ + /****** md5 signature: ef7beda41b0e96083c85b8b05b5dbdb1 ******/ %feature("compactdefaultargs") SubstituteNode; %feature("autodoc", " Parameters @@ -1420,8 +1420,8 @@ Substitutes the node with the given index by new one. @param theindex index of n **************************************/ class BRepMesh_DefaultRangeSplitter { public: - /****************** BRepMesh_DefaultRangeSplitter ******************/ - /**** md5 signature: f6f76c0a073db41195586070561931fd ****/ + /****** BRepMesh_DefaultRangeSplitter::BRepMesh_DefaultRangeSplitter ******/ + /****** md5 signature: f6f76c0a073db41195586070561931fd ******/ %feature("compactdefaultargs") BRepMesh_DefaultRangeSplitter; %feature("autodoc", "Return ------- @@ -1433,8 +1433,8 @@ Constructor. ") BRepMesh_DefaultRangeSplitter; BRepMesh_DefaultRangeSplitter(); - /****************** AddPoint ******************/ - /**** md5 signature: 3771804d13147da01f7a0a6ebdcc9a45 ****/ + /****** BRepMesh_DefaultRangeSplitter::AddPoint ******/ + /****** md5 signature: 3771804d13147da01f7a0a6ebdcc9a45 ******/ %feature("compactdefaultargs") AddPoint; %feature("autodoc", " Parameters @@ -1451,8 +1451,8 @@ Registers border point. ") AddPoint; virtual void AddPoint(const gp_Pnt2d & thePoint); - /****************** AdjustRange ******************/ - /**** md5 signature: ddbe360d718a2ef25835d18d405aa99b ****/ + /****** BRepMesh_DefaultRangeSplitter::AdjustRange ******/ + /****** md5 signature: ddbe360d718a2ef25835d18d405aa99b ******/ %feature("compactdefaultargs") AdjustRange; %feature("autodoc", "Return ------- @@ -1464,8 +1464,8 @@ Updates discrete range of surface according to its geometric range. ") AdjustRange; virtual void AdjustRange(); - /****************** GetDFace ******************/ - /**** md5 signature: 66ba0efe4a5555cea366f7d6aabb3193 ****/ + /****** BRepMesh_DefaultRangeSplitter::GetDFace ******/ + /****** md5 signature: 66ba0efe4a5555cea366f7d6aabb3193 ******/ %feature("compactdefaultargs") GetDFace; %feature("autodoc", "Return ------- @@ -1477,8 +1477,8 @@ Returns face model. ") GetDFace; const IMeshData::IFaceHandle & GetDFace(); - /****************** GetDelta ******************/ - /**** md5 signature: edc641b55de58529d198ed0511aa6fd8 ****/ + /****** BRepMesh_DefaultRangeSplitter::GetDelta ******/ + /****** md5 signature: edc641b55de58529d198ed0511aa6fd8 ******/ %feature("compactdefaultargs") GetDelta; %feature("autodoc", "Return ------- @@ -1490,8 +1490,8 @@ Returns delta. ") GetDelta; const std::pair & GetDelta(); - /****************** GetRangeU ******************/ - /**** md5 signature: c43a174b289ad155ae8bf9f1e53b8062 ****/ + /****** BRepMesh_DefaultRangeSplitter::GetRangeU ******/ + /****** md5 signature: c43a174b289ad155ae8bf9f1e53b8062 ******/ %feature("compactdefaultargs") GetRangeU; %feature("autodoc", "Return ------- @@ -1503,8 +1503,8 @@ Returns u range. ") GetRangeU; const std::pair & GetRangeU(); - /****************** GetRangeV ******************/ - /**** md5 signature: f67b728346251d3015b0f0c227498055 ****/ + /****** BRepMesh_DefaultRangeSplitter::GetRangeV ******/ + /****** md5 signature: f67b728346251d3015b0f0c227498055 ******/ %feature("compactdefaultargs") GetRangeV; %feature("autodoc", "Return ------- @@ -1516,8 +1516,8 @@ Returns v range. ") GetRangeV; const std::pair & GetRangeV(); - /****************** GetSurface ******************/ - /**** md5 signature: 6aa03522ab6b1d17fd10abc283bef0d7 ****/ + /****** BRepMesh_DefaultRangeSplitter::GetSurface ******/ + /****** md5 signature: 6aa03522ab6b1d17fd10abc283bef0d7 ******/ %feature("compactdefaultargs") GetSurface; %feature("autodoc", "Return ------- @@ -1529,8 +1529,8 @@ Returns surface. ") GetSurface; const opencascade::handle & GetSurface(); - /****************** GetToleranceUV ******************/ - /**** md5 signature: fc1231c20c5ec088ee9c6e57c8d00c11 ****/ + /****** BRepMesh_DefaultRangeSplitter::GetToleranceUV ******/ + /****** md5 signature: fc1231c20c5ec088ee9c6e57c8d00c11 ******/ %feature("compactdefaultargs") GetToleranceUV; %feature("autodoc", "Return ------- @@ -1542,8 +1542,8 @@ No available documentation. ") GetToleranceUV; const std::pair & GetToleranceUV(); - /****************** IsValid ******************/ - /**** md5 signature: 4e89d8566bfc31662c40412a922c328e ****/ + /****** BRepMesh_DefaultRangeSplitter::IsValid ******/ + /****** md5 signature: 4e89d8566bfc31662c40412a922c328e ******/ %feature("compactdefaultargs") IsValid; %feature("autodoc", "Return ------- @@ -1555,8 +1555,8 @@ Returns true if computed range is valid. ") IsValid; virtual Standard_Boolean IsValid(); - /****************** Point ******************/ - /**** md5 signature: a5831d9dd1c33d274655f020e0ba9a9e ****/ + /****** BRepMesh_DefaultRangeSplitter::Point ******/ + /****** md5 signature: a5831d9dd1c33d274655f020e0ba9a9e ******/ %feature("compactdefaultargs") Point; %feature("autodoc", " Parameters @@ -1573,8 +1573,8 @@ Returns point in 3d space corresponded to the given point defined in parameteric ") Point; gp_Pnt Point(const gp_Pnt2d & thePoint2d); - /****************** Reset ******************/ - /**** md5 signature: ac4f00ee28ad32a0f5f23f21d5b1091c ****/ + /****** BRepMesh_DefaultRangeSplitter::Reset ******/ + /****** md5 signature: ac4f00ee28ad32a0f5f23f21d5b1091c ******/ %feature("compactdefaultargs") Reset; %feature("autodoc", " Parameters @@ -1592,8 +1592,8 @@ Resets this splitter. must be called before first use. ") Reset; virtual void Reset(const IMeshData::IFaceHandle & theDFace, const IMeshTools_Parameters & theParameters); - /****************** Scale ******************/ - /**** md5 signature: a9c2738909350fd1cfc1874519d9a0d4 ****/ + /****** BRepMesh_DefaultRangeSplitter::Scale ******/ + /****** md5 signature: a9c2738909350fd1cfc1874519d9a0d4 ******/ %feature("compactdefaultargs") Scale; %feature("autodoc", " Parameters @@ -1625,8 +1625,8 @@ Scales the given point from real parametric space to face basis and otherwise. @ ****************************/ class BRepMesh_Deflection : public Standard_Transient { public: - /****************** ComputeAbsoluteDeflection ******************/ - /**** md5 signature: a9344eab611d641e9e7e51e496c627ab ****/ + /****** BRepMesh_Deflection::ComputeAbsoluteDeflection ******/ + /****** md5 signature: a9344eab611d641e9e7e51e496c627ab ******/ %feature("compactdefaultargs") ComputeAbsoluteDeflection; %feature("autodoc", " Parameters @@ -1645,8 +1645,8 @@ Returns absolute deflection for theshape with respect to the relative deflection ") ComputeAbsoluteDeflection; static Standard_Real ComputeAbsoluteDeflection(const TopoDS_Shape & theShape, const Standard_Real theRelativeDeflection, const Standard_Real theMaxShapeSize); - /****************** ComputeDeflection ******************/ - /**** md5 signature: 1512902f294799f73df16c37c0f03108 ****/ + /****** BRepMesh_Deflection::ComputeDeflection ******/ + /****** md5 signature: 1512902f294799f73df16c37c0f03108 ******/ %feature("compactdefaultargs") ComputeDeflection; %feature("autodoc", " Parameters @@ -1665,8 +1665,8 @@ Computes and updates deflection of the given discrete edge. ") ComputeDeflection; static void ComputeDeflection(const IMeshData::IEdgeHandle & theDEdge, const Standard_Real theMaxShapeSize, const IMeshTools_Parameters & theParameters); - /****************** ComputeDeflection ******************/ - /**** md5 signature: e1d2e8148982b00889ee52b5925e1300 ****/ + /****** BRepMesh_Deflection::ComputeDeflection ******/ + /****** md5 signature: e1d2e8148982b00889ee52b5925e1300 ******/ %feature("compactdefaultargs") ComputeDeflection; %feature("autodoc", " Parameters @@ -1684,8 +1684,8 @@ Computes and updates deflection of the given discrete wire. ") ComputeDeflection; static void ComputeDeflection(const IMeshData::IWireHandle & theDWire, const IMeshTools_Parameters & theParameters); - /****************** ComputeDeflection ******************/ - /**** md5 signature: 394c2d7076288b46094dbb60cdf403a4 ****/ + /****** BRepMesh_Deflection::ComputeDeflection ******/ + /****** md5 signature: 394c2d7076288b46094dbb60cdf403a4 ******/ %feature("compactdefaultargs") ComputeDeflection; %feature("autodoc", " Parameters @@ -1703,8 +1703,8 @@ Computes and updates deflection of the given discrete face. ") ComputeDeflection; static void ComputeDeflection(const IMeshData::IFaceHandle & theDFace, const IMeshTools_Parameters & theParameters); - /****************** IsConsistent ******************/ - /**** md5 signature: f1f59248e21270aff44097869389da31 ****/ + /****** BRepMesh_Deflection::IsConsistent ******/ + /****** md5 signature: f1f59248e21270aff44097869389da31 ******/ %feature("compactdefaultargs") IsConsistent; %feature("autodoc", " Parameters @@ -1740,8 +1740,8 @@ Checks if the deflection of current polygonal representation is consistent with ******************************************/ class BRepMesh_DelabellaMeshAlgoFactory : public IMeshTools_MeshAlgoFactory { public: - /****************** BRepMesh_DelabellaMeshAlgoFactory ******************/ - /**** md5 signature: 7e764d1ee3a95c966901000e31a5d227 ****/ + /****** BRepMesh_DelabellaMeshAlgoFactory::BRepMesh_DelabellaMeshAlgoFactory ******/ + /****** md5 signature: 7e764d1ee3a95c966901000e31a5d227 ******/ %feature("compactdefaultargs") BRepMesh_DelabellaMeshAlgoFactory; %feature("autodoc", "Return ------- @@ -1753,8 +1753,8 @@ Constructor. ") BRepMesh_DelabellaMeshAlgoFactory; BRepMesh_DelabellaMeshAlgoFactory(); - /****************** GetAlgo ******************/ - /**** md5 signature: b5f3831f9f5db3705d1be887bba92f22 ****/ + /****** BRepMesh_DelabellaMeshAlgoFactory::GetAlgo ******/ + /****** md5 signature: b5f3831f9f5db3705d1be887bba92f22 ******/ %feature("compactdefaultargs") GetAlgo; %feature("autodoc", " Parameters @@ -1786,8 +1786,8 @@ Creates instance of meshing algorithm for the given type of surface. ************************/ class BRepMesh_Delaun { public: - /****************** BRepMesh_Delaun ******************/ - /**** md5 signature: 675af52751de76071975fb45f4fe4d11 ****/ + /****** BRepMesh_Delaun::BRepMesh_Delaun ******/ + /****** md5 signature: 675af52751de76071975fb45f4fe4d11 ******/ %feature("compactdefaultargs") BRepMesh_Delaun; %feature("autodoc", " Parameters @@ -1807,8 +1807,8 @@ Creates instance of triangulator, but do not run the algorithm automatically. ") BRepMesh_Delaun; BRepMesh_Delaun(const opencascade::handle & theOldMesh, const Standard_Integer theCellsCountU, const Standard_Integer theCellsCountV, const Standard_Boolean isFillCircles); - /****************** BRepMesh_Delaun ******************/ - /**** md5 signature: 67a9f1d69a5229d991569f29fce7a648 ****/ + /****** BRepMesh_Delaun::BRepMesh_Delaun ******/ + /****** md5 signature: 67a9f1d69a5229d991569f29fce7a648 ******/ %feature("compactdefaultargs") BRepMesh_Delaun; %feature("autodoc", " Parameters @@ -1825,8 +1825,8 @@ Creates the triangulation with an empty mesh data structure. ") BRepMesh_Delaun; BRepMesh_Delaun(IMeshData::Array1OfVertexOfDelaun & theVertices); - /****************** BRepMesh_Delaun ******************/ - /**** md5 signature: df88784074ba4bf377dd6ca7843b0be2 ****/ + /****** BRepMesh_Delaun::BRepMesh_Delaun ******/ + /****** md5 signature: df88784074ba4bf377dd6ca7843b0be2 ******/ %feature("compactdefaultargs") BRepMesh_Delaun; %feature("autodoc", " Parameters @@ -1844,8 +1844,8 @@ Creates the triangulation with an existent mesh data structure. ") BRepMesh_Delaun; BRepMesh_Delaun(const opencascade::handle & theOldMesh, IMeshData::Array1OfVertexOfDelaun & theVertices); - /****************** BRepMesh_Delaun ******************/ - /**** md5 signature: 548fe3ab0ed5446122fb6a1a75317e5a ****/ + /****** BRepMesh_Delaun::BRepMesh_Delaun ******/ + /****** md5 signature: 548fe3ab0ed5446122fb6a1a75317e5a ******/ %feature("compactdefaultargs") BRepMesh_Delaun; %feature("autodoc", " Parameters @@ -1863,8 +1863,8 @@ Creates the triangulation with an existant mesh data structure. ") BRepMesh_Delaun; BRepMesh_Delaun(const opencascade::handle & theOldMesh, IMeshData::VectorOfInteger & theVertexIndices); - /****************** BRepMesh_Delaun ******************/ - /**** md5 signature: 369ae05e7ad78835ff2b9029f41d1d44 ****/ + /****** BRepMesh_Delaun::BRepMesh_Delaun ******/ + /****** md5 signature: 369ae05e7ad78835ff2b9029f41d1d44 ******/ %feature("compactdefaultargs") BRepMesh_Delaun; %feature("autodoc", " Parameters @@ -1884,8 +1884,8 @@ Creates the triangulation with an existant mesh data structure. ") BRepMesh_Delaun; BRepMesh_Delaun(const Handle ( BRepMesh_DataStructureOfDelaun ) & theOldMesh, IMeshData::VectorOfInteger & theVertexIndices, const Standard_Integer theCellsCountU, const Standard_Integer theCellsCountV); - /****************** AddVertices ******************/ - /**** md5 signature: 113e996513917ce7251d5a839da38bcc ****/ + /****** BRepMesh_Delaun::AddVertices ******/ + /****** md5 signature: 113e996513917ce7251d5a839da38bcc ******/ %feature("compactdefaultargs") AddVertices; %feature("autodoc", " Parameters @@ -1903,8 +1903,8 @@ Adds some vertices into the triangulation. ") AddVertices; void AddVertices(IMeshData::VectorOfInteger & theVerticesIndices, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Circles ******************/ - /**** md5 signature: 33d52e752207c405b226546e9af83859 ****/ + /****** BRepMesh_Delaun::Circles ******/ + /****** md5 signature: 33d52e752207c405b226546e9af83859 ******/ %feature("compactdefaultargs") Circles; %feature("autodoc", "Return ------- @@ -1916,8 +1916,8 @@ Returns tool used to build mesh consistent to delaunay criteria. ") Circles; const BRepMesh_CircleTool & Circles(); - /****************** Contains ******************/ - /**** md5 signature: eab3390394ef3941bab180cccfcd77f6 ****/ + /****** BRepMesh_Delaun::Contains ******/ + /****** md5 signature: eab3390394ef3941bab180cccfcd77f6 ******/ %feature("compactdefaultargs") Contains; %feature("autodoc", " Parameters @@ -1936,8 +1936,8 @@ Test is the given triangle contains the given vertex. @param thesqtolerance squa ") Contains; Standard_Boolean Contains(const Standard_Integer theTriangleId, const BRepMesh_Vertex & theVertex, const Standard_Real theSqTolerance, Standard_Integer &OutValue); - /****************** GetEdge ******************/ - /**** md5 signature: 9210edd1005034060d95da674efa9dbf ****/ + /****** BRepMesh_Delaun::GetEdge ******/ + /****** md5 signature: 9210edd1005034060d95da674efa9dbf ******/ %feature("compactdefaultargs") GetEdge; %feature("autodoc", " Parameters @@ -1954,8 +1954,8 @@ Gives edge with the given index. ") GetEdge; const BRepMesh_Edge & GetEdge(const Standard_Integer theIndex); - /****************** GetTriangle ******************/ - /**** md5 signature: 461ad6dfa4bf78d3a59eb076d0a6e2f2 ****/ + /****** BRepMesh_Delaun::GetTriangle ******/ + /****** md5 signature: 461ad6dfa4bf78d3a59eb076d0a6e2f2 ******/ %feature("compactdefaultargs") GetTriangle; %feature("autodoc", " Parameters @@ -1972,8 +1972,8 @@ Gives triangle with the given index. ") GetTriangle; const BRepMesh_Triangle & GetTriangle(const Standard_Integer theIndex); - /****************** GetVertex ******************/ - /**** md5 signature: 79dd510956ad78ac9dc3b4423557d902 ****/ + /****** BRepMesh_Delaun::GetVertex ******/ + /****** md5 signature: 79dd510956ad78ac9dc3b4423557d902 ******/ %feature("compactdefaultargs") GetVertex; %feature("autodoc", " Parameters @@ -1990,8 +1990,8 @@ Gives vertex with the given index. ") GetVertex; const BRepMesh_Vertex & GetVertex(const Standard_Integer theIndex); - /****************** Init ******************/ - /**** md5 signature: 315fb83d9713d47297c33011a2c6b575 ****/ + /****** BRepMesh_Delaun::Init ******/ + /****** md5 signature: 315fb83d9713d47297c33011a2c6b575 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2008,8 +2008,8 @@ Initializes the triangulation with an array of vertices. ") Init; void Init(IMeshData::Array1OfVertexOfDelaun & theVertices); - /****************** InitCirclesTool ******************/ - /**** md5 signature: 0df31355d061303be30d5738e8b960c4 ****/ + /****** BRepMesh_Delaun::InitCirclesTool ******/ + /****** md5 signature: 0df31355d061303be30d5738e8b960c4 ******/ %feature("compactdefaultargs") InitCirclesTool; %feature("autodoc", " Parameters @@ -2027,8 +2027,8 @@ Forces initialization of circles cell filter using working structure. ") InitCirclesTool; void InitCirclesTool(const Standard_Integer theCellsCountU, const Standard_Integer theCellsCountV); - /****************** RemoveAuxElements ******************/ - /**** md5 signature: f5c31c7ed6200793d7e443c838782af8 ****/ + /****** BRepMesh_Delaun::RemoveAuxElements ******/ + /****** md5 signature: f5c31c7ed6200793d7e443c838782af8 ******/ %feature("compactdefaultargs") RemoveAuxElements; %feature("autodoc", "Return ------- @@ -2040,8 +2040,8 @@ Destruction of auxiliary triangles containing the given vertices. removes auxili ") RemoveAuxElements; void RemoveAuxElements(); - /****************** RemoveVertex ******************/ - /**** md5 signature: 45b088f9c013183a935581ea0ea79936 ****/ + /****** BRepMesh_Delaun::RemoveVertex ******/ + /****** md5 signature: 45b088f9c013183a935581ea0ea79936 ******/ %feature("compactdefaultargs") RemoveVertex; %feature("autodoc", " Parameters @@ -2058,8 +2058,8 @@ Removes a vertex from the triangulation. ") RemoveVertex; void RemoveVertex(const BRepMesh_Vertex & theVertex); - /****************** Result ******************/ - /**** md5 signature: 1244aaba5231d45d599f841b2370df2a ****/ + /****** BRepMesh_Delaun::Result ******/ + /****** md5 signature: 1244aaba5231d45d599f841b2370df2a ******/ %feature("compactdefaultargs") Result; %feature("autodoc", "Return ------- @@ -2071,8 +2071,8 @@ Gives the mesh data structure. ") Result; const opencascade::handle & Result(); - /****************** SetAuxVertices ******************/ - /**** md5 signature: 49ee655c1fb99403e0e07ccbb417bbae ****/ + /****** BRepMesh_Delaun::SetAuxVertices ******/ + /****** md5 signature: 49ee655c1fb99403e0e07ccbb417bbae ******/ %feature("compactdefaultargs") SetAuxVertices; %feature("autodoc", " Parameters @@ -2089,8 +2089,8 @@ Explicitly sets ids of auxiliary vertices used to build mesh and used by 3rd-par ") SetAuxVertices; void SetAuxVertices(const IMeshData::VectorOfInteger & theSupVert); - /****************** UseEdge ******************/ - /**** md5 signature: 02fbf448c47cf1029f0cd536b06426d3 ****/ + /****** BRepMesh_Delaun::UseEdge ******/ + /****** md5 signature: 02fbf448c47cf1029f0cd536b06426d3 ******/ %feature("compactdefaultargs") UseEdge; %feature("autodoc", " Parameters @@ -2139,8 +2139,8 @@ Modify mesh to use the edge. return true if done. %ignore BRepMesh_DiscretFactory::~BRepMesh_DiscretFactory(); class BRepMesh_DiscretFactory { public: - /****************** DefaultName ******************/ - /**** md5 signature: 9098ac4c9fc2d3e09ad2b84fe3c2e228 ****/ + /****** BRepMesh_DiscretFactory::DefaultName ******/ + /****** md5 signature: 9098ac4c9fc2d3e09ad2b84fe3c2e228 ******/ %feature("compactdefaultargs") DefaultName; %feature("autodoc", "Return ------- @@ -2152,8 +2152,8 @@ Returns name for current meshing algorithm. ") DefaultName; const TCollection_AsciiString & DefaultName(); - /****************** Discret ******************/ - /**** md5 signature: cd4cb93c82fdb51e80e4cdeb0479c6db ****/ + /****** BRepMesh_DiscretFactory::Discret ******/ + /****** md5 signature: cd4cb93c82fdb51e80e4cdeb0479c6db ******/ %feature("compactdefaultargs") Discret; %feature("autodoc", " Parameters @@ -2172,8 +2172,8 @@ Returns triangulation algorithm instance. @param theshape shape to be meshed. @p ") Discret; opencascade::handle Discret(const TopoDS_Shape & theShape, const Standard_Real theLinDeflection, const Standard_Real theAngDeflection); - /****************** ErrorStatus ******************/ - /**** md5 signature: 4cc2f68be5a9afe2a68332ec12784419 ****/ + /****** BRepMesh_DiscretFactory::ErrorStatus ******/ + /****** md5 signature: 4cc2f68be5a9afe2a68332ec12784419 ******/ %feature("compactdefaultargs") ErrorStatus; %feature("autodoc", "Return ------- @@ -2185,8 +2185,8 @@ Returns error status for last meshing algorithm switch. ") ErrorStatus; BRepMesh_FactoryError ErrorStatus(); - /****************** FunctionName ******************/ - /**** md5 signature: 4584d85a4e0c158104ade1647616436f ****/ + /****** BRepMesh_DiscretFactory::FunctionName ******/ + /****** md5 signature: 4584d85a4e0c158104ade1647616436f ******/ %feature("compactdefaultargs") FunctionName; %feature("autodoc", "Return ------- @@ -2198,8 +2198,8 @@ Returns function name that should be exported by plugin. ") FunctionName; const TCollection_AsciiString & FunctionName(); - /****************** Get ******************/ - /**** md5 signature: a56c29cb1f600621510ef3cd3ac740da ****/ + /****** BRepMesh_DiscretFactory::Get ******/ + /****** md5 signature: a56c29cb1f600621510ef3cd3ac740da ******/ %feature("compactdefaultargs") Get; %feature("autodoc", "Return ------- @@ -2211,8 +2211,8 @@ Returns the global factory instance. ") Get; static BRepMesh_DiscretFactory & Get(); - /****************** Names ******************/ - /**** md5 signature: 454bedd4396a8ba0ae7740d89904e192 ****/ + /****** BRepMesh_DiscretFactory::Names ******/ + /****** md5 signature: 454bedd4396a8ba0ae7740d89904e192 ******/ %feature("compactdefaultargs") Names; %feature("autodoc", "Return ------- @@ -2224,8 +2224,8 @@ Returns the list of registered meshing algorithms. ") Names; const TColStd_MapOfAsciiString & Names(); - /****************** SetDefault ******************/ - /**** md5 signature: 2912f3989ff003b7d120238def0f78d6 ****/ + /****** BRepMesh_DiscretFactory::SetDefault ******/ + /****** md5 signature: 2912f3989ff003b7d120238def0f78d6 ******/ %feature("compactdefaultargs") SetDefault; %feature("autodoc", " Parameters @@ -2243,8 +2243,8 @@ Setup meshing algorithm that should be created by this factory. returns true if ") SetDefault; Standard_Boolean SetDefault(TCollection_AsciiString theName, TCollection_AsciiString theFuncName = "DISCRETALGO"); - /****************** SetDefaultName ******************/ - /**** md5 signature: 93c5c55f8eba457c231a268a0ebe4017 ****/ + /****** BRepMesh_DiscretFactory::SetDefaultName ******/ + /****** md5 signature: 93c5c55f8eba457c231a268a0ebe4017 ******/ %feature("compactdefaultargs") SetDefaultName; %feature("autodoc", " Parameters @@ -2261,8 +2261,8 @@ Setup meshing algorithm by name. returns true if requested tool is available. on ") SetDefaultName; Standard_Boolean SetDefaultName(TCollection_AsciiString theName); - /****************** SetFunctionName ******************/ - /**** md5 signature: 7082400624fff321b966b58b2455fbbd ****/ + /****** BRepMesh_DiscretFactory::SetFunctionName ******/ + /****** md5 signature: 7082400624fff321b966b58b2455fbbd ******/ %feature("compactdefaultargs") SetFunctionName; %feature("autodoc", " Parameters @@ -2294,8 +2294,8 @@ Advanced function. changes function name to retrieve from plugin. returns true i %nodefaultctor BRepMesh_DiscretRoot; class BRepMesh_DiscretRoot : public Standard_Transient { public: - /****************** IsDone ******************/ - /**** md5 signature: e385477ab1bec806154173d4a550fd68 ****/ + /****** BRepMesh_DiscretRoot::IsDone ******/ + /****** md5 signature: e385477ab1bec806154173d4a550fd68 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -2307,8 +2307,8 @@ Returns true if triangualtion was performed and has success. ") IsDone; Standard_Boolean IsDone(); - /****************** Perform ******************/ - /**** md5 signature: 398f71859219956837273801c6ed1f07 ****/ + /****** BRepMesh_DiscretRoot::Perform ******/ + /****** md5 signature: 398f71859219956837273801c6ed1f07 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2325,8 +2325,8 @@ Compute triangulation for set shape. ") Perform; virtual void Perform(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** SetShape ******************/ - /**** md5 signature: 927e2ebe2fb5354dfb3da3c53e512cad ****/ + /****** BRepMesh_DiscretRoot::SetShape ******/ + /****** md5 signature: 927e2ebe2fb5354dfb3da3c53e512cad ******/ %feature("compactdefaultargs") SetShape; %feature("autodoc", " Parameters @@ -2343,8 +2343,8 @@ Set the shape to triangulate. ") SetShape; void SetShape(const TopoDS_Shape & theShape); - /****************** Shape ******************/ - /**** md5 signature: 1058569f5d639354fedf11e73741b7df ****/ + /****** BRepMesh_DiscretRoot::Shape ******/ + /****** md5 signature: 1058569f5d639354fedf11e73741b7df ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -2372,8 +2372,8 @@ No available documentation. *****************************/ class BRepMesh_EdgeDiscret : public IMeshTools_ModelAlgo { public: - /****************** BRepMesh_EdgeDiscret ******************/ - /**** md5 signature: e7e4c18c9537514f706c9a42008e7796 ****/ + /****** BRepMesh_EdgeDiscret::BRepMesh_EdgeDiscret ******/ + /****** md5 signature: e7e4c18c9537514f706c9a42008e7796 ******/ %feature("compactdefaultargs") BRepMesh_EdgeDiscret; %feature("autodoc", "Return ------- @@ -2385,8 +2385,8 @@ Constructor. ") BRepMesh_EdgeDiscret; BRepMesh_EdgeDiscret(); - /****************** CreateEdgeTessellationExtractor ******************/ - /**** md5 signature: 99b0722065c37d2ebe83652d7c58d139 ****/ + /****** BRepMesh_EdgeDiscret::CreateEdgeTessellationExtractor ******/ + /****** md5 signature: 99b0722065c37d2ebe83652d7c58d139 ******/ %feature("compactdefaultargs") CreateEdgeTessellationExtractor; %feature("autodoc", " Parameters @@ -2404,8 +2404,8 @@ Creates instance of tessellation extractor. ") CreateEdgeTessellationExtractor; static opencascade::handle CreateEdgeTessellationExtractor(const IMeshData::IEdgeHandle & theDEdge, const IMeshData::IFaceHandle & theDFace); - /****************** CreateEdgeTessellator ******************/ - /**** md5 signature: c54c3d94cb5163c340c6d04455184934 ****/ + /****** BRepMesh_EdgeDiscret::CreateEdgeTessellator ******/ + /****** md5 signature: c54c3d94cb5163c340c6d04455184934 ******/ %feature("compactdefaultargs") CreateEdgeTessellator; %feature("autodoc", " Parameters @@ -2424,8 +2424,8 @@ Creates instance of free edge tessellator. ") CreateEdgeTessellator; static opencascade::handle CreateEdgeTessellator(const IMeshData::IEdgeHandle & theDEdge, const IMeshTools_Parameters & theParameters, const Standard_Integer theMinPointsNb = 2); - /****************** CreateEdgeTessellator ******************/ - /**** md5 signature: 1278d9934a8c73c14a0e219eab804270 ****/ + /****** BRepMesh_EdgeDiscret::CreateEdgeTessellator ******/ + /****** md5 signature: 1278d9934a8c73c14a0e219eab804270 ******/ %feature("compactdefaultargs") CreateEdgeTessellator; %feature("autodoc", " Parameters @@ -2446,8 +2446,8 @@ Creates instance of edge tessellator. ") CreateEdgeTessellator; static opencascade::handle CreateEdgeTessellator(const IMeshData::IEdgeHandle & theDEdge, const TopAbs_Orientation theOrientation, const IMeshData::IFaceHandle & theDFace, const IMeshTools_Parameters & theParameters, const Standard_Integer theMinPointsNb = 2); - /****************** Tessellate2d ******************/ - /**** md5 signature: 07584604f6427ce52a0d4cc717031e44 ****/ + /****** BRepMesh_EdgeDiscret::Tessellate2d ******/ + /****** md5 signature: 07584604f6427ce52a0d4cc717031e44 ******/ %feature("compactdefaultargs") Tessellate2d; %feature("autodoc", " Parameters @@ -2465,8 +2465,8 @@ Updates 2d discrete edge model using tessellation of 3d curve. ") Tessellate2d; static void Tessellate2d(const IMeshData::IEdgeHandle & theDEdge, const Standard_Boolean theUpdateEnds); - /****************** Tessellate3d ******************/ - /**** md5 signature: 2e020b9f6dbd64cfb83efca215597b2c ****/ + /****** BRepMesh_EdgeDiscret::Tessellate3d ******/ + /****** md5 signature: 2e020b9f6dbd64cfb83efca215597b2c ******/ %feature("compactdefaultargs") Tessellate3d; %feature("autodoc", " Parameters @@ -2508,8 +2508,8 @@ class BRepMesh_FaceChecker : public Standard_Transient { typedef NCollection_Shared> Segments; typedef NCollection_Shared>> ArrayOfSegments; class Segment {}; - /****************** BRepMesh_FaceChecker ******************/ - /**** md5 signature: 5e1e1f82e3705e28ebff9dc29b27b5a6 ****/ + /****** BRepMesh_FaceChecker::BRepMesh_FaceChecker ******/ + /****** md5 signature: 5e1e1f82e3705e28ebff9dc29b27b5a6 ******/ %feature("compactdefaultargs") BRepMesh_FaceChecker; %feature("autodoc", " Parameters @@ -2527,8 +2527,8 @@ Default constructor. ") BRepMesh_FaceChecker; BRepMesh_FaceChecker(const IMeshData::IFaceHandle & theFace, const IMeshTools_Parameters & theParameters); - /****************** Perform ******************/ - /**** md5 signature: dc83e5133003c9f9c7b166df8b5a4192 ****/ + /****** BRepMesh_FaceChecker::Perform ******/ + /****** md5 signature: dc83e5133003c9f9c7b166df8b5a4192 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", "Return ------- @@ -2556,8 +2556,8 @@ Performs check wires of the face for intersections. return true if there is no i *****************************/ class BRepMesh_FaceDiscret : public IMeshTools_ModelAlgo { public: - /****************** BRepMesh_FaceDiscret ******************/ - /**** md5 signature: 5eb1feec00b8e23febb0ac8f82432245 ****/ + /****** BRepMesh_FaceDiscret::BRepMesh_FaceDiscret ******/ + /****** md5 signature: 5eb1feec00b8e23febb0ac8f82432245 ******/ %feature("compactdefaultargs") BRepMesh_FaceDiscret; %feature("autodoc", " Parameters @@ -2619,8 +2619,8 @@ Same = IntFlag.Same }; /* end python proxy for enums */ - /****************** BRepMesh_GeomTool ******************/ - /**** md5 signature: ec04b4c4c9e0ee7dd6affaf9f42c0597 ****/ + /****** BRepMesh_GeomTool::BRepMesh_GeomTool ******/ + /****** md5 signature: ec04b4c4c9e0ee7dd6affaf9f42c0597 ******/ %feature("compactdefaultargs") BRepMesh_GeomTool; %feature("autodoc", " Parameters @@ -2643,8 +2643,8 @@ Constructor. initiates discretization of the given geometric curve. @param thecu ") BRepMesh_GeomTool; BRepMesh_GeomTool(const BRepAdaptor_Curve & theCurve, const Standard_Real theFirstParam, const Standard_Real theLastParam, const Standard_Real theLinDeflection, const Standard_Real theAngDeflection, const Standard_Integer theMinPointsNb = 2, const Standard_Real theMinSize = Precision::Confusion()); - /****************** BRepMesh_GeomTool ******************/ - /**** md5 signature: d38bb75f11ee9f3b3aa475e4ac404495 ****/ + /****** BRepMesh_GeomTool::BRepMesh_GeomTool ******/ + /****** md5 signature: d38bb75f11ee9f3b3aa475e4ac404495 ******/ %feature("compactdefaultargs") BRepMesh_GeomTool; %feature("autodoc", " Parameters @@ -2669,8 +2669,8 @@ Constructor. initiates discretization of geometric curve corresponding to iso cu ") BRepMesh_GeomTool; BRepMesh_GeomTool(const opencascade::handle & theSurface, const GeomAbs_IsoType theIsoType, const Standard_Real theParamIso, const Standard_Real theFirstParam, const Standard_Real theLastParam, const Standard_Real theLinDeflection, const Standard_Real theAngDeflection, const Standard_Integer theMinPointsNb = 2, const Standard_Real theMinSize = Precision::Confusion()); - /****************** AddPoint ******************/ - /**** md5 signature: 23339736f9d509a41c0708ffbbc4a1c0 ****/ + /****** BRepMesh_GeomTool::AddPoint ******/ + /****** md5 signature: 23339736f9d509a41c0708ffbbc4a1c0 ******/ %feature("compactdefaultargs") AddPoint; %feature("autodoc", " Parameters @@ -2689,8 +2689,8 @@ Adds point to already calculated points (or replaces existing). @param thepoint ") AddPoint; Standard_Integer AddPoint(const gp_Pnt & thePoint, const Standard_Real theParam, const Standard_Boolean theIsReplace = Standard_True); - /****************** CellsCount ******************/ - /**** md5 signature: fe52990183566da293fd7fa3dff8d5e3 ****/ + /****** BRepMesh_GeomTool::CellsCount ******/ + /****** md5 signature: fe52990183566da293fd7fa3dff8d5e3 ******/ %feature("compactdefaultargs") CellsCount; %feature("autodoc", " Parameters @@ -2710,8 +2710,8 @@ No available documentation. ") CellsCount; static std::pair CellsCount(const Handle ( Adaptor3d_Surface ) & theSurface, const Standard_Integer theVerticesNb, const Standard_Real theDeflection, const BRepMesh_DefaultRangeSplitter * theRangeSplitter); - /****************** NbPoints ******************/ - /**** md5 signature: e92014a2f157c195ed77b7745c7eae3f ****/ + /****** BRepMesh_GeomTool::NbPoints ******/ + /****** md5 signature: e92014a2f157c195ed77b7745c7eae3f ******/ %feature("compactdefaultargs") NbPoints; %feature("autodoc", "Return ------- @@ -2723,8 +2723,8 @@ Returns number of discretization points. ") NbPoints; Standard_Integer NbPoints(); - /****************** SquareDeflectionOfSegment ******************/ - /**** md5 signature: bb1429876d80ee455b34cd6dd607d563 ****/ + /****** BRepMesh_GeomTool::SquareDeflectionOfSegment ******/ + /****** md5 signature: bb1429876d80ee455b34cd6dd607d563 ******/ %feature("compactdefaultargs") SquareDeflectionOfSegment; %feature("autodoc", " Parameters @@ -2743,8 +2743,8 @@ Compute deflection of the given segment. ") SquareDeflectionOfSegment; static Standard_Real SquareDeflectionOfSegment(const gp_Pnt & theFirstPoint, const gp_Pnt & theLastPoint, const gp_Pnt & theMidPoint); - /****************** Value ******************/ - /**** md5 signature: 92cb1b96fe286a153a6adfa7a6447e7e ****/ + /****** BRepMesh_GeomTool::Value ******/ + /****** md5 signature: 92cb1b96fe286a153a6adfa7a6447e7e ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -2764,8 +2764,8 @@ Gets parameters of discretization point with the given index. @param theindex in ") Value; Standard_Boolean Value(const Standard_Integer theIndex, const Standard_Real theIsoParam, Standard_Real &OutValue, gp_Pnt & thePoint, gp_Pnt2d & theUV); - /****************** Value ******************/ - /**** md5 signature: fbc0396de3fa600b97894c7f57e3dffd ****/ + /****** BRepMesh_GeomTool::Value ******/ + /****** md5 signature: fbc0396de3fa600b97894c7f57e3dffd ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -2811,8 +2811,8 @@ Gets parameters of discretization point with the given index. @param theindex in *********************************/ class BRepMesh_MeshAlgoFactory : public IMeshTools_MeshAlgoFactory { public: - /****************** BRepMesh_MeshAlgoFactory ******************/ - /**** md5 signature: 7549d3b374f6b6d36de722de051c7f9d ****/ + /****** BRepMesh_MeshAlgoFactory::BRepMesh_MeshAlgoFactory ******/ + /****** md5 signature: 7549d3b374f6b6d36de722de051c7f9d ******/ %feature("compactdefaultargs") BRepMesh_MeshAlgoFactory; %feature("autodoc", "Return ------- @@ -2824,8 +2824,8 @@ Constructor. ") BRepMesh_MeshAlgoFactory; BRepMesh_MeshAlgoFactory(); - /****************** GetAlgo ******************/ - /**** md5 signature: b5f3831f9f5db3705d1be887bba92f22 ****/ + /****** BRepMesh_MeshAlgoFactory::GetAlgo ******/ + /****** md5 signature: b5f3831f9f5db3705d1be887bba92f22 ******/ %feature("compactdefaultargs") GetAlgo; %feature("autodoc", " Parameters @@ -2858,8 +2858,8 @@ Creates instance of meshing algorithm for the given type of surface. class BRepMesh_MeshTool : public Standard_Transient { public: class NodeClassifier {}; - /****************** BRepMesh_MeshTool ******************/ - /**** md5 signature: abf7f04fd724790ff05678b98f579e57 ****/ + /****** BRepMesh_MeshTool::BRepMesh_MeshTool ******/ + /****** md5 signature: abf7f04fd724790ff05678b98f579e57 ******/ %feature("compactdefaultargs") BRepMesh_MeshTool; %feature("autodoc", " Parameters @@ -2876,8 +2876,8 @@ Constructor. initializes tool by the given data structure. ") BRepMesh_MeshTool; BRepMesh_MeshTool(const opencascade::handle & theStructure); - /****************** AddAndLegalizeTriangle ******************/ - /**** md5 signature: 0ac46c0a145add63243db67bd9f3f0bc ****/ + /****** BRepMesh_MeshTool::AddAndLegalizeTriangle ******/ + /****** md5 signature: 0ac46c0a145add63243db67bd9f3f0bc ******/ %feature("compactdefaultargs") AddAndLegalizeTriangle; %feature("autodoc", " Parameters @@ -2896,8 +2896,8 @@ Adds new triangle with specified nodes to mesh. legalizes triangle in case if it ") AddAndLegalizeTriangle; void AddAndLegalizeTriangle(const Standard_Integer thePoint1, const Standard_Integer thePoint2, const Standard_Integer thePoint3); - /****************** AddLink ******************/ - /**** md5 signature: d24cd13523eaaf65a058f4a062b08f96 ****/ + /****** BRepMesh_MeshTool::AddLink ******/ + /****** md5 signature: d24cd13523eaaf65a058f4a062b08f96 ******/ %feature("compactdefaultargs") AddLink; %feature("autodoc", " Parameters @@ -2916,8 +2916,8 @@ Adds new link to mesh. updates link index and link orientation parameters. ") AddLink; void AddLink(const Standard_Integer theFirstNode, const Standard_Integer theLastNode, Standard_Integer &OutValue, Standard_Boolean &OutValue); - /****************** AddTriangle ******************/ - /**** md5 signature: 673ff11382e26742f4b619105414f585 ****/ + /****** BRepMesh_MeshTool::AddTriangle ******/ + /****** md5 signature: 673ff11382e26742f4b619105414f585 ******/ %feature("compactdefaultargs") AddTriangle; %feature("autodoc", " Parameters @@ -2937,8 +2937,8 @@ Adds new triangle with specified nodes to mesh. ") AddTriangle; void AddTriangle(const Standard_Integer thePoint1, const Standard_Integer thePoint2, const Standard_Integer thePoint3, Standard_Integer ( & theEdges )[3]); - /****************** CleanFrontierLinks ******************/ - /**** md5 signature: 63fc3ce6394f9f579070f64eb2be550d ****/ + /****** BRepMesh_MeshTool::CleanFrontierLinks ******/ + /****** md5 signature: 63fc3ce6394f9f579070f64eb2be550d ******/ %feature("compactdefaultargs") CleanFrontierLinks; %feature("autodoc", "Return ------- @@ -2950,8 +2950,8 @@ Cleans frontier links from triangles to the right. ") CleanFrontierLinks; void CleanFrontierLinks(); - /****************** EraseFreeLinks ******************/ - /**** md5 signature: 9ab79c596458db6053095518f88e3455 ****/ + /****** BRepMesh_MeshTool::EraseFreeLinks ******/ + /****** md5 signature: 9ab79c596458db6053095518f88e3455 ******/ %feature("compactdefaultargs") EraseFreeLinks; %feature("autodoc", "Return ------- @@ -2963,8 +2963,8 @@ Erases all links that have no elements connected to them. ") EraseFreeLinks; void EraseFreeLinks(); - /****************** EraseFreeLinks ******************/ - /**** md5 signature: f67077e6548c65402e2c7e421b63e2cb ****/ + /****** BRepMesh_MeshTool::EraseFreeLinks ******/ + /****** md5 signature: f67077e6548c65402e2c7e421b63e2cb ******/ %feature("compactdefaultargs") EraseFreeLinks; %feature("autodoc", " Parameters @@ -2981,8 +2981,8 @@ Erases links from the specified map that have no elements connected to them. ") EraseFreeLinks; void EraseFreeLinks(const IMeshData::MapOfIntegerInteger & theLinks); - /****************** EraseItemsConnectedTo ******************/ - /**** md5 signature: 9a384f9ea370b86a8ff45e9bd841eea8 ****/ + /****** BRepMesh_MeshTool::EraseItemsConnectedTo ******/ + /****** md5 signature: 9a384f9ea370b86a8ff45e9bd841eea8 ******/ %feature("compactdefaultargs") EraseItemsConnectedTo; %feature("autodoc", " Parameters @@ -2999,8 +2999,8 @@ Erases all elements connected to the specified artificial node. in addition, era ") EraseItemsConnectedTo; void EraseItemsConnectedTo(const Standard_Integer theNodeIndex); - /****************** EraseTriangle ******************/ - /**** md5 signature: 2bf76361d266b0cdd4f017b9c1ba88d4 ****/ + /****** BRepMesh_MeshTool::EraseTriangle ******/ + /****** md5 signature: 2bf76361d266b0cdd4f017b9c1ba88d4 ******/ %feature("compactdefaultargs") EraseTriangle; %feature("autodoc", " Parameters @@ -3018,8 +3018,8 @@ Erases triangle with the given index and adds the free edges into the map. when ") EraseTriangle; void EraseTriangle(const Standard_Integer theTriangleIndex, IMeshData::MapOfIntegerInteger & theLoopEdges); - /****************** GetStructure ******************/ - /**** md5 signature: e795ea8cb85d33692d442ec73fdda3d7 ****/ + /****** BRepMesh_MeshTool::GetStructure ******/ + /****** md5 signature: e795ea8cb85d33692d442ec73fdda3d7 ******/ %feature("compactdefaultargs") GetStructure; %feature("autodoc", "Return ------- @@ -3031,8 +3031,8 @@ Returns data structure manipulated by this tool. ") GetStructure; const opencascade::handle & GetStructure(); - /****************** Legalize ******************/ - /**** md5 signature: 2963ec91475d45200900c9ae3a191f98 ****/ + /****** BRepMesh_MeshTool::Legalize ******/ + /****** md5 signature: 2963ec91475d45200900c9ae3a191f98 ******/ %feature("compactdefaultargs") Legalize; %feature("autodoc", " Parameters @@ -3073,8 +3073,8 @@ Performs legalization of triangles connected to the specified link. ******************************/ class BRepMesh_ModelBuilder : public IMeshTools_ModelBuilder { public: - /****************** BRepMesh_ModelBuilder ******************/ - /**** md5 signature: e21163d4054202c03d83d9426b67fc24 ****/ + /****** BRepMesh_ModelBuilder::BRepMesh_ModelBuilder ******/ + /****** md5 signature: e21163d4054202c03d83d9426b67fc24 ******/ %feature("compactdefaultargs") BRepMesh_ModelBuilder; %feature("autodoc", "Return ------- @@ -3100,8 +3100,8 @@ Constructor. *****************************/ class BRepMesh_ModelHealer : public IMeshTools_ModelAlgo { public: - /****************** BRepMesh_ModelHealer ******************/ - /**** md5 signature: 948893bb90e26ca087bd4ad5180e7013 ****/ + /****** BRepMesh_ModelHealer::BRepMesh_ModelHealer ******/ + /****** md5 signature: 948893bb90e26ca087bd4ad5180e7013 ******/ %feature("compactdefaultargs") BRepMesh_ModelHealer; %feature("autodoc", "Return ------- @@ -3127,8 +3127,8 @@ Constructor. ************************************/ class BRepMesh_ModelPostProcessor : public IMeshTools_ModelAlgo { public: - /****************** BRepMesh_ModelPostProcessor ******************/ - /**** md5 signature: 220accc2449438695c2ea192fc8ed2eb ****/ + /****** BRepMesh_ModelPostProcessor::BRepMesh_ModelPostProcessor ******/ + /****** md5 signature: 220accc2449438695c2ea192fc8ed2eb ******/ %feature("compactdefaultargs") BRepMesh_ModelPostProcessor; %feature("autodoc", "Return ------- @@ -3154,8 +3154,8 @@ Constructor. ***********************************/ class BRepMesh_ModelPreProcessor : public IMeshTools_ModelAlgo { public: - /****************** BRepMesh_ModelPreProcessor ******************/ - /**** md5 signature: 033fde83a46641bf0c1cfc1161f23e39 ****/ + /****** BRepMesh_ModelPreProcessor::BRepMesh_ModelPreProcessor ******/ + /****** md5 signature: 033fde83a46641bf0c1cfc1161f23e39 ******/ %feature("compactdefaultargs") BRepMesh_ModelPreProcessor; %feature("autodoc", "Return ------- @@ -3184,8 +3184,8 @@ Constructor. ******************************/ class BRepMesh_OrientedEdge { public: - /****************** BRepMesh_OrientedEdge ******************/ - /**** md5 signature: 40cd54f8ff406e529cbca096a4dcba4a ****/ + /****** BRepMesh_OrientedEdge::BRepMesh_OrientedEdge ******/ + /****** md5 signature: 40cd54f8ff406e529cbca096a4dcba4a ******/ %feature("compactdefaultargs") BRepMesh_OrientedEdge; %feature("autodoc", "Return ------- @@ -3197,8 +3197,8 @@ Default constructor. ") BRepMesh_OrientedEdge; BRepMesh_OrientedEdge(); - /****************** BRepMesh_OrientedEdge ******************/ - /**** md5 signature: 7eaf07ac54e195f9bc4f9f560013a8a2 ****/ + /****** BRepMesh_OrientedEdge::BRepMesh_OrientedEdge ******/ + /****** md5 signature: 7eaf07ac54e195f9bc4f9f560013a8a2 ******/ %feature("compactdefaultargs") BRepMesh_OrientedEdge; %feature("autodoc", " Parameters @@ -3216,8 +3216,8 @@ Constructs a link between two vertices. ") BRepMesh_OrientedEdge; BRepMesh_OrientedEdge(const Standard_Integer theFirstNode, const Standard_Integer theLastNode); - /****************** FirstNode ******************/ - /**** md5 signature: 5e5a409216676a4f7e0861e57fd4aebf ****/ + /****** BRepMesh_OrientedEdge::FirstNode ******/ + /****** md5 signature: 5e5a409216676a4f7e0861e57fd4aebf ******/ %feature("compactdefaultargs") FirstNode; %feature("autodoc", "Return ------- @@ -3229,8 +3229,8 @@ Returns index of first node of the link. ") FirstNode; Standard_Integer FirstNode(); - /****************** IsEqual ******************/ - /**** md5 signature: 1a1e5601f44f2e973a1227eedc8ed008 ****/ + /****** BRepMesh_OrientedEdge::IsEqual ******/ + /****** md5 signature: 1a1e5601f44f2e973a1227eedc8ed008 ******/ %feature("compactdefaultargs") IsEqual; %feature("autodoc", " Parameters @@ -3247,8 +3247,8 @@ Checks this and other edge for equality. @param theother edge to be checked agai ") IsEqual; Standard_Boolean IsEqual(const BRepMesh_OrientedEdge & theOther); - /****************** LastNode ******************/ - /**** md5 signature: 862c96d90a2f2e5a03235f217e321b6a ****/ + /****** BRepMesh_OrientedEdge::LastNode ******/ + /****** md5 signature: 862c96d90a2f2e5a03235f217e321b6a ******/ %feature("compactdefaultargs") LastNode; %feature("autodoc", "Return ------- @@ -3288,8 +3288,8 @@ def __eq__(self, right): *****************************/ class BRepMesh_PairOfIndex { public: - /****************** BRepMesh_PairOfIndex ******************/ - /**** md5 signature: 6097b08360d507b0b25a96e63ec387fc ****/ + /****** BRepMesh_PairOfIndex::BRepMesh_PairOfIndex ******/ + /****** md5 signature: 6097b08360d507b0b25a96e63ec387fc ******/ %feature("compactdefaultargs") BRepMesh_PairOfIndex; %feature("autodoc", "Return ------- @@ -3301,8 +3301,8 @@ Default constructor. ") BRepMesh_PairOfIndex; BRepMesh_PairOfIndex(); - /****************** Append ******************/ - /**** md5 signature: 6d1b3d282e85f1e28613e9ddd5c1b92a ****/ + /****** BRepMesh_PairOfIndex::Append ******/ + /****** md5 signature: 6d1b3d282e85f1e28613e9ddd5c1b92a ******/ %feature("compactdefaultargs") Append; %feature("autodoc", " Parameters @@ -3319,8 +3319,8 @@ Appends index to the pair. ") Append; void Append(const Standard_Integer theIndex); - /****************** Clear ******************/ - /**** md5 signature: 75abd67f132413fc11c19201aabf1126 ****/ + /****** BRepMesh_PairOfIndex::Clear ******/ + /****** md5 signature: 75abd67f132413fc11c19201aabf1126 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -3332,8 +3332,8 @@ Clears indices. ") Clear; void Clear(); - /****************** Extent ******************/ - /**** md5 signature: 19453f219e568f9c5109a0fd06459e95 ****/ + /****** BRepMesh_PairOfIndex::Extent ******/ + /****** md5 signature: 19453f219e568f9c5109a0fd06459e95 ******/ %feature("compactdefaultargs") Extent; %feature("autodoc", "Return ------- @@ -3345,8 +3345,8 @@ Returns number of initialized indices. ") Extent; Standard_Integer Extent(); - /****************** FirstIndex ******************/ - /**** md5 signature: dd170f153aee261c6137ad51fb804301 ****/ + /****** BRepMesh_PairOfIndex::FirstIndex ******/ + /****** md5 signature: dd170f153aee261c6137ad51fb804301 ******/ %feature("compactdefaultargs") FirstIndex; %feature("autodoc", "Return ------- @@ -3358,8 +3358,8 @@ Returns first index of pair. ") FirstIndex; Standard_Integer FirstIndex(); - /****************** Index ******************/ - /**** md5 signature: be92a83d0312a29299b83fe0df2a8e6a ****/ + /****** BRepMesh_PairOfIndex::Index ******/ + /****** md5 signature: be92a83d0312a29299b83fe0df2a8e6a ******/ %feature("compactdefaultargs") Index; %feature("autodoc", " Parameters @@ -3376,8 +3376,8 @@ Returns index corresponding to the given position in the pair. @param thepairpos ") Index; Standard_Integer Index(const Standard_Integer thePairPos); - /****************** IsEmpty ******************/ - /**** md5 signature: d529c07ce9e12eea3222188c82b0e80b ****/ + /****** BRepMesh_PairOfIndex::IsEmpty ******/ + /****** md5 signature: d529c07ce9e12eea3222188c82b0e80b ******/ %feature("compactdefaultargs") IsEmpty; %feature("autodoc", "Return ------- @@ -3389,8 +3389,8 @@ Returns is pair is empty. ") IsEmpty; Standard_Boolean IsEmpty(); - /****************** LastIndex ******************/ - /**** md5 signature: ac91d431c1bc97c7f705173d9a480bea ****/ + /****** BRepMesh_PairOfIndex::LastIndex ******/ + /****** md5 signature: ac91d431c1bc97c7f705173d9a480bea ******/ %feature("compactdefaultargs") LastIndex; %feature("autodoc", "Return ------- @@ -3402,8 +3402,8 @@ Returns last index of pair. ") LastIndex; Standard_Integer LastIndex(); - /****************** Prepend ******************/ - /**** md5 signature: 6a5240977116a74c5fb3353b10c6424a ****/ + /****** BRepMesh_PairOfIndex::Prepend ******/ + /****** md5 signature: 6a5240977116a74c5fb3353b10c6424a ******/ %feature("compactdefaultargs") Prepend; %feature("autodoc", " Parameters @@ -3420,8 +3420,8 @@ Prepends index to the pair. ") Prepend; void Prepend(const Standard_Integer theIndex); - /****************** RemoveIndex ******************/ - /**** md5 signature: 895ffb3475d21aba5f9bd97bb9d7062f ****/ + /****** BRepMesh_PairOfIndex::RemoveIndex ******/ + /****** md5 signature: 895ffb3475d21aba5f9bd97bb9d7062f ******/ %feature("compactdefaultargs") RemoveIndex; %feature("autodoc", " Parameters @@ -3438,8 +3438,8 @@ Remove index from the given position. @param thepairpos position of index in the ") RemoveIndex; void RemoveIndex(const Standard_Integer thePairPos); - /****************** SetIndex ******************/ - /**** md5 signature: 4340ed7d7bec46bb9359a9523e5758d2 ****/ + /****** BRepMesh_PairOfIndex::SetIndex ******/ + /****** md5 signature: 4340ed7d7bec46bb9359a9523e5758d2 ******/ %feature("compactdefaultargs") SetIndex; %feature("autodoc", " Parameters @@ -3471,8 +3471,8 @@ Sets index corresponding to the given position in the pair. @param thepairpos po *************************************************/ class BRepMesh_SelectorOfDataStructureOfDelaun : public Standard_Transient { public: - /****************** BRepMesh_SelectorOfDataStructureOfDelaun ******************/ - /**** md5 signature: ae219e3399acd48f3ab1cb6666248e37 ****/ + /****** BRepMesh_SelectorOfDataStructureOfDelaun::BRepMesh_SelectorOfDataStructureOfDelaun ******/ + /****** md5 signature: ae219e3399acd48f3ab1cb6666248e37 ******/ %feature("compactdefaultargs") BRepMesh_SelectorOfDataStructureOfDelaun; %feature("autodoc", "Return ------- @@ -3484,8 +3484,8 @@ Default constructor. ") BRepMesh_SelectorOfDataStructureOfDelaun; BRepMesh_SelectorOfDataStructureOfDelaun(); - /****************** BRepMesh_SelectorOfDataStructureOfDelaun ******************/ - /**** md5 signature: 48c378a21324a2a2e3f9741f9bb572cb ****/ + /****** BRepMesh_SelectorOfDataStructureOfDelaun::BRepMesh_SelectorOfDataStructureOfDelaun ******/ + /****** md5 signature: 48c378a21324a2a2e3f9741f9bb572cb ******/ %feature("compactdefaultargs") BRepMesh_SelectorOfDataStructureOfDelaun; %feature("autodoc", " Parameters @@ -3502,8 +3502,8 @@ Constructor. initializes selector by the mesh. ") BRepMesh_SelectorOfDataStructureOfDelaun; BRepMesh_SelectorOfDataStructureOfDelaun(const opencascade::handle & theMesh); - /****************** AddNeighbours ******************/ - /**** md5 signature: 612e38bbb1676e77f251fed4962bc3c0 ****/ + /****** BRepMesh_SelectorOfDataStructureOfDelaun::AddNeighbours ******/ + /****** md5 signature: 612e38bbb1676e77f251fed4962bc3c0 ******/ %feature("compactdefaultargs") AddNeighbours; %feature("autodoc", "Return ------- @@ -3515,8 +3515,8 @@ Adds a level of neighbours by edge the selector. ") AddNeighbours; void AddNeighbours(); - /****************** Elements ******************/ - /**** md5 signature: f292154361efe8cff70b7224e0dd92bc ****/ + /****** BRepMesh_SelectorOfDataStructureOfDelaun::Elements ******/ + /****** md5 signature: f292154361efe8cff70b7224e0dd92bc ******/ %feature("compactdefaultargs") Elements; %feature("autodoc", "Return ------- @@ -3528,8 +3528,8 @@ Returns selected elements. ") Elements; const IMeshData::MapOfInteger & Elements(); - /****************** FrontierLinks ******************/ - /**** md5 signature: e9fc3775f2eaeb5f9f3fb50a11ef1575 ****/ + /****** BRepMesh_SelectorOfDataStructureOfDelaun::FrontierLinks ******/ + /****** md5 signature: e9fc3775f2eaeb5f9f3fb50a11ef1575 ******/ %feature("compactdefaultargs") FrontierLinks; %feature("autodoc", "Return ------- @@ -3541,8 +3541,8 @@ Gives the list of incices of frontier links. ") FrontierLinks; const IMeshData::MapOfInteger & FrontierLinks(); - /****************** Initialize ******************/ - /**** md5 signature: c1c8bd53787e0b316ccb49ba7dddc083 ****/ + /****** BRepMesh_SelectorOfDataStructureOfDelaun::Initialize ******/ + /****** md5 signature: c1c8bd53787e0b316ccb49ba7dddc083 ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -3559,8 +3559,8 @@ Initializes selector by the mesh. ") Initialize; void Initialize(const opencascade::handle & theMesh); - /****************** Links ******************/ - /**** md5 signature: 444dc2c6e495f4e680bd1e7ea076ff0b ****/ + /****** BRepMesh_SelectorOfDataStructureOfDelaun::Links ******/ + /****** md5 signature: 444dc2c6e495f4e680bd1e7ea076ff0b ******/ %feature("compactdefaultargs") Links; %feature("autodoc", "Return ------- @@ -3572,8 +3572,8 @@ Returns selected links. ") Links; const IMeshData::MapOfInteger & Links(); - /****************** NeighboursByEdgeOf ******************/ - /**** md5 signature: 703ce4b8dca000f5c5b72a118362bf0f ****/ + /****** BRepMesh_SelectorOfDataStructureOfDelaun::NeighboursByEdgeOf ******/ + /****** md5 signature: 703ce4b8dca000f5c5b72a118362bf0f ******/ %feature("compactdefaultargs") NeighboursByEdgeOf; %feature("autodoc", " Parameters @@ -3590,8 +3590,8 @@ Selects all neighboring elements by links of the given element. ") NeighboursByEdgeOf; void NeighboursByEdgeOf(const BRepMesh_Triangle & theElement); - /****************** NeighboursOf ******************/ - /**** md5 signature: e712f7145e0999578d5e386408e4eda2 ****/ + /****** BRepMesh_SelectorOfDataStructureOfDelaun::NeighboursOf ******/ + /****** md5 signature: e712f7145e0999578d5e386408e4eda2 ******/ %feature("compactdefaultargs") NeighboursOf; %feature("autodoc", " Parameters @@ -3608,8 +3608,8 @@ Selects all neighboring elements of the given node. ") NeighboursOf; void NeighboursOf(const BRepMesh_Vertex & theNode); - /****************** NeighboursOf ******************/ - /**** md5 signature: 255f43d123986364bff66ede6dd8a3a5 ****/ + /****** BRepMesh_SelectorOfDataStructureOfDelaun::NeighboursOf ******/ + /****** md5 signature: 255f43d123986364bff66ede6dd8a3a5 ******/ %feature("compactdefaultargs") NeighboursOf; %feature("autodoc", " Parameters @@ -3626,8 +3626,8 @@ Selects all neighboring elements of the given link. ") NeighboursOf; void NeighboursOf(const BRepMesh_Edge & theLink); - /****************** NeighboursOf ******************/ - /**** md5 signature: 851532ee376e16c26bffc7adba34cc4c ****/ + /****** BRepMesh_SelectorOfDataStructureOfDelaun::NeighboursOf ******/ + /****** md5 signature: 851532ee376e16c26bffc7adba34cc4c ******/ %feature("compactdefaultargs") NeighboursOf; %feature("autodoc", " Parameters @@ -3644,8 +3644,8 @@ Selects all neighboring elements of the given element. ") NeighboursOf; void NeighboursOf(const BRepMesh_Triangle & theElement); - /****************** NeighboursOf ******************/ - /**** md5 signature: eda74ad1f0361cb0f21c76c0370a0cc5 ****/ + /****** BRepMesh_SelectorOfDataStructureOfDelaun::NeighboursOf ******/ + /****** md5 signature: eda74ad1f0361cb0f21c76c0370a0cc5 ******/ %feature("compactdefaultargs") NeighboursOf; %feature("autodoc", " Parameters @@ -3662,8 +3662,8 @@ Adds a level of neighbours by edge to the selector. ") NeighboursOf; void NeighboursOf(const BRepMesh_SelectorOfDataStructureOfDelaun &); - /****************** NeighboursOfElement ******************/ - /**** md5 signature: 27e6f82fa64a584058fb9702fde37b8a ****/ + /****** BRepMesh_SelectorOfDataStructureOfDelaun::NeighboursOfElement ******/ + /****** md5 signature: 27e6f82fa64a584058fb9702fde37b8a ******/ %feature("compactdefaultargs") NeighboursOfElement; %feature("autodoc", " Parameters @@ -3680,8 +3680,8 @@ Selects all neighboring elements by nodes of the given element. ") NeighboursOfElement; void NeighboursOfElement(const Standard_Integer theElementIndex); - /****************** NeighboursOfLink ******************/ - /**** md5 signature: d999fd58ec77e60ca0529edd278a9268 ****/ + /****** BRepMesh_SelectorOfDataStructureOfDelaun::NeighboursOfLink ******/ + /****** md5 signature: d999fd58ec77e60ca0529edd278a9268 ******/ %feature("compactdefaultargs") NeighboursOfLink; %feature("autodoc", " Parameters @@ -3698,8 +3698,8 @@ Selects all neighboring elements of link with the given index. ") NeighboursOfLink; void NeighboursOfLink(const Standard_Integer theLinkIndex); - /****************** NeighboursOfNode ******************/ - /**** md5 signature: df612c0d8f76e199098b2e68e6002413 ****/ + /****** BRepMesh_SelectorOfDataStructureOfDelaun::NeighboursOfNode ******/ + /****** md5 signature: df612c0d8f76e199098b2e68e6002413 ******/ %feature("compactdefaultargs") NeighboursOfNode; %feature("autodoc", " Parameters @@ -3716,8 +3716,8 @@ Selects all neighboring elements of node with the given index. ") NeighboursOfNode; void NeighboursOfNode(const Standard_Integer theNodeIndex); - /****************** Nodes ******************/ - /**** md5 signature: cc6f002fa70de151d7f5a1decc5ae05a ****/ + /****** BRepMesh_SelectorOfDataStructureOfDelaun::Nodes ******/ + /****** md5 signature: cc6f002fa70de151d7f5a1decc5ae05a ******/ %feature("compactdefaultargs") Nodes; %feature("autodoc", "Return ------- @@ -3745,8 +3745,8 @@ Returns selected nodes. ***************************/ class BRepMesh_ShapeTool : public Standard_Transient { public: - /****************** AddInFace ******************/ - /**** md5 signature: 198ec20231e3f0017b5211964797c170 ****/ + /****** BRepMesh_ShapeTool::AddInFace ******/ + /****** md5 signature: 198ec20231e3f0017b5211964797c170 ******/ %feature("compactdefaultargs") AddInFace; %feature("autodoc", " Parameters @@ -3764,8 +3764,8 @@ Stores the given triangulation into the given face. @param theface face to be up ") AddInFace; static void AddInFace(const TopoDS_Face & theFace, opencascade::handle & theTriangulation); - /****************** BoxMaxDimension ******************/ - /**** md5 signature: 7a8580d106df4eb195ec4234b808b3e3 ****/ + /****** BRepMesh_ShapeTool::BoxMaxDimension ******/ + /****** md5 signature: 7a8580d106df4eb195ec4234b808b3e3 ******/ %feature("compactdefaultargs") BoxMaxDimension; %feature("autodoc", " Parameters @@ -3782,8 +3782,8 @@ Gets the maximum dimension of the given bounding box. if the given bounding box ") BoxMaxDimension; static void BoxMaxDimension(const Bnd_Box & theBox, Standard_Real &OutValue); - /****************** CheckAndUpdateFlags ******************/ - /**** md5 signature: 3ee821bb2711b7bd7a20479acafb6e16 ****/ + /****** BRepMesh_ShapeTool::CheckAndUpdateFlags ******/ + /****** md5 signature: 3ee821bb2711b7bd7a20479acafb6e16 ******/ %feature("compactdefaultargs") CheckAndUpdateFlags; %feature("autodoc", " Parameters @@ -3801,8 +3801,8 @@ Checks same parameter, same range and degenerativity attributes using geometrica ") CheckAndUpdateFlags; static void CheckAndUpdateFlags(const IMeshData::IEdgeHandle & theEdge, const IMeshData::IPCurveHandle & thePCurve); - /****************** MaxFaceTolerance ******************/ - /**** md5 signature: b54ecfd1939ae9305b99a30d7dc05008 ****/ + /****** BRepMesh_ShapeTool::MaxFaceTolerance ******/ + /****** md5 signature: b54ecfd1939ae9305b99a30d7dc05008 ******/ %feature("compactdefaultargs") MaxFaceTolerance; %feature("autodoc", " Parameters @@ -3819,8 +3819,8 @@ Returns maximum tolerance of the given face. considers tolerances of edges and v ") MaxFaceTolerance; static Standard_Real MaxFaceTolerance(const TopoDS_Face & theFace); - /****************** NullifyEdge ******************/ - /**** md5 signature: b05e15fa2e892634fc8e8532f2f87e58 ****/ + /****** BRepMesh_ShapeTool::NullifyEdge ******/ + /****** md5 signature: b05e15fa2e892634fc8e8532f2f87e58 ******/ %feature("compactdefaultargs") NullifyEdge; %feature("autodoc", " Parameters @@ -3839,8 +3839,8 @@ Nullifies polygon on triangulation stored in the edge. @param theedge edge to be ") NullifyEdge; static void NullifyEdge(const TopoDS_Edge & theEdge, const Handle ( Poly_Triangulation ) & theTriangulation, const TopLoc_Location & theLocation); - /****************** NullifyEdge ******************/ - /**** md5 signature: a40c1f6240ceb504d322009c0248d48a ****/ + /****** BRepMesh_ShapeTool::NullifyEdge ******/ + /****** md5 signature: a40c1f6240ceb504d322009c0248d48a ******/ %feature("compactdefaultargs") NullifyEdge; %feature("autodoc", " Parameters @@ -3858,8 +3858,8 @@ Nullifies 3d polygon stored in the edge. @param theedge edge to be updated by nu ") NullifyEdge; static void NullifyEdge(const TopoDS_Edge & theEdge, const TopLoc_Location & theLocation); - /****************** NullifyFace ******************/ - /**** md5 signature: a54d800748c7d813530610836c345d65 ****/ + /****** BRepMesh_ShapeTool::NullifyFace ******/ + /****** md5 signature: a54d800748c7d813530610836c345d65 ******/ %feature("compactdefaultargs") NullifyFace; %feature("autodoc", " Parameters @@ -3876,8 +3876,8 @@ Nullifies triangulation stored in the face. @param theface face to be updated by ") NullifyFace; static void NullifyFace(const TopoDS_Face & theFace); - /****************** Range ******************/ - /**** md5 signature: ba29b5964a00fcbb857a8ba4cd82cf5a ****/ + /****** BRepMesh_ShapeTool::Range ******/ + /****** md5 signature: ba29b5964a00fcbb857a8ba4cd82cf5a ******/ %feature("compactdefaultargs") Range; %feature("autodoc", " Parameters @@ -3898,8 +3898,8 @@ Gets the parametric range of the given edge on the given face. ") Range; static Standard_Boolean Range(const TopoDS_Edge & theEdge, const TopoDS_Face & theFace, Handle ( Geom2d_Curve ) & thePCurve, Standard_Real &OutValue, Standard_Real &OutValue, const Standard_Boolean isConsiderOrientation = Standard_False); - /****************** Range ******************/ - /**** md5 signature: 4f2c0c58738d79d22379878c484ed3af ****/ + /****** BRepMesh_ShapeTool::Range ******/ + /****** md5 signature: 4f2c0c58738d79d22379878c484ed3af ******/ %feature("compactdefaultargs") Range; %feature("autodoc", " Parameters @@ -3919,8 +3919,8 @@ Gets the 3d range of the given edge. ") Range; static Standard_Boolean Range(const TopoDS_Edge & theEdge, Handle ( Geom_Curve ) & theCurve, Standard_Real &OutValue, Standard_Real &OutValue, const Standard_Boolean isConsiderOrientation = Standard_False); - /****************** UVPoints ******************/ - /**** md5 signature: 1252140d03973dd7dff854c69c805cd8 ****/ + /****** BRepMesh_ShapeTool::UVPoints ******/ + /****** md5 signature: 1252140d03973dd7dff854c69c805cd8 ******/ %feature("compactdefaultargs") UVPoints; %feature("autodoc", " Parameters @@ -3941,8 +3941,8 @@ Gets the strict uv locations of the extremities of the edge using pcurve. ") UVPoints; static Standard_Boolean UVPoints(const TopoDS_Edge & theEdge, const TopoDS_Face & theFace, gp_Pnt2d & theFirstPoint2d, gp_Pnt2d & theLastPoint2d, const Standard_Boolean isConsiderOrientation = Standard_False); - /****************** UpdateEdge ******************/ - /**** md5 signature: d215b477d4979261f29a8084a2b9d5cd ****/ + /****** BRepMesh_ShapeTool::UpdateEdge ******/ + /****** md5 signature: d215b477d4979261f29a8084a2b9d5cd ******/ %feature("compactdefaultargs") UpdateEdge; %feature("autodoc", " Parameters @@ -3962,8 +3962,8 @@ Updates the given edge by the given tessellated representation. @param theedge e ") UpdateEdge; static void UpdateEdge(const TopoDS_Edge & theEdge, const Handle ( Poly_PolygonOnTriangulation ) & thePolygon, const Handle ( Poly_Triangulation ) & theTriangulation, const TopLoc_Location & theLocation); - /****************** UpdateEdge ******************/ - /**** md5 signature: 7d40445fe5ea272ec9d3f2c1b9ae4074 ****/ + /****** BRepMesh_ShapeTool::UpdateEdge ******/ + /****** md5 signature: 7d40445fe5ea272ec9d3f2c1b9ae4074 ******/ %feature("compactdefaultargs") UpdateEdge; %feature("autodoc", " Parameters @@ -3981,8 +3981,8 @@ Updates the given edge by the given tessellated representation. @param theedge e ") UpdateEdge; static void UpdateEdge(const TopoDS_Edge & theEdge, const opencascade::handle & thePolygon); - /****************** UpdateEdge ******************/ - /**** md5 signature: 68252ad4636fc7ab6104d38f6a659701 ****/ + /****** BRepMesh_ShapeTool::UpdateEdge ******/ + /****** md5 signature: 68252ad4636fc7ab6104d38f6a659701 ******/ %feature("compactdefaultargs") UpdateEdge; %feature("autodoc", " Parameters @@ -4003,8 +4003,8 @@ Updates the given seam edge by the given tessellated representations. @param the ") UpdateEdge; static void UpdateEdge(const TopoDS_Edge & theEdge, const Handle ( Poly_PolygonOnTriangulation ) & thePolygon1, const Handle ( Poly_PolygonOnTriangulation ) & thePolygon2, const Handle ( Poly_Triangulation ) & theTriangulation, const TopLoc_Location & theLocation); - /****************** UseLocation ******************/ - /**** md5 signature: 1d483b4a9b5ac80702e3ffccb5ce462e ****/ + /****** BRepMesh_ShapeTool::UseLocation ******/ + /****** md5 signature: 1d483b4a9b5ac80702e3ffccb5ce462e ******/ %feature("compactdefaultargs") UseLocation; %feature("autodoc", " Parameters @@ -4038,8 +4038,8 @@ Applies location to the given point and return result. @param thepnt point to be ******************************/ class BRepMesh_ShapeVisitor : public IMeshTools_ShapeVisitor { public: - /****************** BRepMesh_ShapeVisitor ******************/ - /**** md5 signature: 50f3cb8177633f4a40e8a4e91969cbfb ****/ + /****** BRepMesh_ShapeVisitor::BRepMesh_ShapeVisitor ******/ + /****** md5 signature: 50f3cb8177633f4a40e8a4e91969cbfb ******/ %feature("compactdefaultargs") BRepMesh_ShapeVisitor; %feature("autodoc", " Parameters @@ -4056,8 +4056,8 @@ Constructor. ") BRepMesh_ShapeVisitor; BRepMesh_ShapeVisitor(const Handle ( IMeshData_Model ) & theModel); - /****************** Visit ******************/ - /**** md5 signature: ebcbeb83d8be062abed52fb56f5b893f ****/ + /****** BRepMesh_ShapeVisitor::Visit ******/ + /****** md5 signature: ebcbeb83d8be062abed52fb56f5b893f ******/ %feature("compactdefaultargs") Visit; %feature("autodoc", " Parameters @@ -4074,8 +4074,8 @@ Handles topods_face object. ") Visit; virtual void Visit(const TopoDS_Face & theFace); - /****************** Visit ******************/ - /**** md5 signature: cf5c08dbf617f19b91434ef5c2f3cecf ****/ + /****** BRepMesh_ShapeVisitor::Visit ******/ + /****** md5 signature: cf5c08dbf617f19b91434ef5c2f3cecf ******/ %feature("compactdefaultargs") Visit; %feature("autodoc", " Parameters @@ -4109,8 +4109,8 @@ class BRepMesh_Triangle { int myEdges[3]; bool myOrientations[3]; BRepMesh_DegreeOfFreedom myMovability; - /****************** BRepMesh_Triangle ******************/ - /**** md5 signature: a7b2afb496f1368f3f769aedd8d11850 ****/ + /****** BRepMesh_Triangle::BRepMesh_Triangle ******/ + /****** md5 signature: a7b2afb496f1368f3f769aedd8d11850 ******/ %feature("compactdefaultargs") BRepMesh_Triangle; %feature("autodoc", "Return ------- @@ -4122,8 +4122,8 @@ Default constructor. ") BRepMesh_Triangle; BRepMesh_Triangle(); - /****************** BRepMesh_Triangle ******************/ - /**** md5 signature: cbddbeee06fde838e21869caf41b5dc5 ****/ + /****** BRepMesh_Triangle::BRepMesh_Triangle ******/ + /****** md5 signature: cbddbeee06fde838e21869caf41b5dc5 ******/ %feature("compactdefaultargs") BRepMesh_Triangle; %feature("autodoc", " Parameters @@ -4142,8 +4142,8 @@ Constructor. @param theedges array of edges of triangle. @param theorientations ") BRepMesh_Triangle; BRepMesh_Triangle(const Standard_Integer ( & theEdges )[3], const Standard_Boolean ( & theOrientations )[3], const BRepMesh_DegreeOfFreedom theMovability); - /****************** Edges ******************/ - /**** md5 signature: 4d9a1eb522cb4c5f438c181c4cc333a2 ****/ + /****** BRepMesh_Triangle::Edges ******/ + /****** md5 signature: 4d9a1eb522cb4c5f438c181c4cc333a2 ******/ %feature("compactdefaultargs") Edges; %feature("autodoc", " Parameters @@ -4161,8 +4161,8 @@ Gets edges with orientations composing the triangle. @param[out] theedges array ") Edges; void Edges(Standard_Integer ( & theEdges )[3], Standard_Boolean ( & theOrientations )[3]); - /****************** Initialize ******************/ - /**** md5 signature: ee51ba187d1dbaa84273b1e2cd325f9a ****/ + /****** BRepMesh_Triangle::Initialize ******/ + /****** md5 signature: ee51ba187d1dbaa84273b1e2cd325f9a ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -4181,8 +4181,8 @@ Initializes the triangle by the given parameters. @param theedges array of edges ") Initialize; void Initialize(const Standard_Integer ( & theEdges )[3], const Standard_Boolean ( & theOrientations )[3], const BRepMesh_DegreeOfFreedom theMovability); - /****************** IsEqual ******************/ - /**** md5 signature: 475c8cafbb251ef77ebaff68a5aa0c19 ****/ + /****** BRepMesh_Triangle::IsEqual ******/ + /****** md5 signature: 475c8cafbb251ef77ebaff68a5aa0c19 ******/ %feature("compactdefaultargs") IsEqual; %feature("autodoc", " Parameters @@ -4199,8 +4199,8 @@ Checks for equality with another triangle. @param theother triangle to be checke ") IsEqual; Standard_Boolean IsEqual(const BRepMesh_Triangle & theOther); - /****************** Movability ******************/ - /**** md5 signature: 6205d0abeb2bc94f438d25da760d9f0b ****/ + /****** BRepMesh_Triangle::Movability ******/ + /****** md5 signature: 6205d0abeb2bc94f438d25da760d9f0b ******/ %feature("compactdefaultargs") Movability; %feature("autodoc", "Return ------- @@ -4212,8 +4212,8 @@ Returns movability of the triangle. ") Movability; BRepMesh_DegreeOfFreedom Movability(); - /****************** SetMovability ******************/ - /**** md5 signature: 6a061b38c31857ee1d61d08ac2b621a5 ****/ + /****** BRepMesh_Triangle::SetMovability ******/ + /****** md5 signature: 6a061b38c31857ee1d61d08ac2b621a5 ******/ %feature("compactdefaultargs") SetMovability; %feature("autodoc", " Parameters @@ -4258,8 +4258,8 @@ def __eq__(self, right): ******************************/ class BRepMesh_Triangulator { public: - /****************** BRepMesh_Triangulator ******************/ - /**** md5 signature: acefc005fa22073e6e50e1f3d9e880a2 ****/ + /****** BRepMesh_Triangulator::BRepMesh_Triangulator ******/ + /****** md5 signature: acefc005fa22073e6e50e1f3d9e880a2 ******/ %feature("compactdefaultargs") BRepMesh_Triangulator; %feature("autodoc", " Parameters @@ -4278,8 +4278,8 @@ Constructor. initialized tool by the given parameters. ") BRepMesh_Triangulator; BRepMesh_Triangulator(const NCollection_Vector & theXYZs, const NCollection_List & theWires, const gp_Dir & theNorm); - /****************** Perform ******************/ - /**** md5 signature: c533ed821316fe1176fce590cecfd805 ****/ + /****** BRepMesh_Triangulator::Perform ******/ + /****** md5 signature: c533ed821316fe1176fce590cecfd805 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -4296,8 +4296,8 @@ Performs triangulation of source wires and stores triangles the output list. ") Perform; Standard_Boolean Perform(NCollection_List & thePolyTriangles); - /****************** SetMessenger ******************/ - /**** md5 signature: 64d8b30fe8bddfb6111cbf1a0e26e584 ****/ + /****** BRepMesh_Triangulator::SetMessenger ******/ + /****** md5 signature: 64d8b30fe8bddfb6111cbf1a0e26e584 ******/ %feature("compactdefaultargs") SetMessenger; %feature("autodoc", " Parameters @@ -4314,8 +4314,8 @@ Set messenger for output information without this message::defaultmessenger() wi ") SetMessenger; void SetMessenger(const opencascade::handle & theMess); - /****************** ToPolyTriangulation ******************/ - /**** md5 signature: f294791c79f89b5907206362dfc74a77 ****/ + /****** BRepMesh_Triangulator::ToPolyTriangulation ******/ + /****** md5 signature: f294791c79f89b5907206362dfc74a77 ******/ %feature("compactdefaultargs") ToPolyTriangulation; %feature("autodoc", " Parameters @@ -4347,8 +4347,8 @@ Performs conversion of the given list of triangles to poly_triangulation. ************************/ class BRepMesh_Vertex { public: - /****************** BRepMesh_Vertex ******************/ - /**** md5 signature: 3973d06ef43acb5c8647a9d5a5d533af ****/ + /****** BRepMesh_Vertex::BRepMesh_Vertex ******/ + /****** md5 signature: 3973d06ef43acb5c8647a9d5a5d533af ******/ %feature("compactdefaultargs") BRepMesh_Vertex; %feature("autodoc", "Return ------- @@ -4360,8 +4360,8 @@ Default constructor. ") BRepMesh_Vertex; BRepMesh_Vertex(); - /****************** BRepMesh_Vertex ******************/ - /**** md5 signature: ebcd0a55a388a1da8ff8135977c78e51 ****/ + /****** BRepMesh_Vertex::BRepMesh_Vertex ******/ + /****** md5 signature: ebcd0a55a388a1da8ff8135977c78e51 ******/ %feature("compactdefaultargs") BRepMesh_Vertex; %feature("autodoc", " Parameters @@ -4380,8 +4380,8 @@ Creates vertex associated with point in 3d space. @param theuv position of verte ") BRepMesh_Vertex; BRepMesh_Vertex(const gp_XY & theUV, const Standard_Integer theLocation3d, const BRepMesh_DegreeOfFreedom theMovability); - /****************** BRepMesh_Vertex ******************/ - /**** md5 signature: 9eadd3f7c60ce98b5b0f2653c1cd76f1 ****/ + /****** BRepMesh_Vertex::BRepMesh_Vertex ******/ + /****** md5 signature: 9eadd3f7c60ce98b5b0f2653c1cd76f1 ******/ %feature("compactdefaultargs") BRepMesh_Vertex; %feature("autodoc", " Parameters @@ -4400,8 +4400,8 @@ Creates vertex without association with point in 3d space. @param theu u positio ") BRepMesh_Vertex; BRepMesh_Vertex(const Standard_Real theU, const Standard_Real theV, const BRepMesh_DegreeOfFreedom theMovability); - /****************** ChangeCoord ******************/ - /**** md5 signature: f799b091563773cd52b21654e211a935 ****/ + /****** BRepMesh_Vertex::ChangeCoord ******/ + /****** md5 signature: f799b091563773cd52b21654e211a935 ******/ %feature("compactdefaultargs") ChangeCoord; %feature("autodoc", "Return ------- @@ -4413,8 +4413,8 @@ Returns position of the vertex in parametric space for modification. ") ChangeCoord; gp_XY ChangeCoord(); - /****************** Coord ******************/ - /**** md5 signature: 55c3583d2b85a3d85724dfd062f17fa4 ****/ + /****** BRepMesh_Vertex::Coord ******/ + /****** md5 signature: 55c3583d2b85a3d85724dfd062f17fa4 ******/ %feature("compactdefaultargs") Coord; %feature("autodoc", "Return ------- @@ -4426,8 +4426,8 @@ Returns position of the vertex in parametric space. ") Coord; const gp_XY Coord(); - /****************** Initialize ******************/ - /**** md5 signature: 50c4b34339c1d3c34b891aeeeeec544f ****/ + /****** BRepMesh_Vertex::Initialize ******/ + /****** md5 signature: 50c4b34339c1d3c34b891aeeeeec544f ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -4446,8 +4446,8 @@ Initializes vertex associated with point in 3d space. @param theuv position of v ") Initialize; void Initialize(const gp_XY & theUV, const Standard_Integer theLocation3d, const BRepMesh_DegreeOfFreedom theMovability); - /****************** IsEqual ******************/ - /**** md5 signature: 6ba7c96c1bc66ed1c4cfb395d24095c8 ****/ + /****** BRepMesh_Vertex::IsEqual ******/ + /****** md5 signature: 6ba7c96c1bc66ed1c4cfb395d24095c8 ******/ %feature("compactdefaultargs") IsEqual; %feature("autodoc", " Parameters @@ -4464,8 +4464,8 @@ Checks for equality with another vertex. @param theother vertex to be checked ag ") IsEqual; Standard_Boolean IsEqual(const BRepMesh_Vertex & theOther); - /****************** Location3d ******************/ - /**** md5 signature: 82faaa1833ea67e80110e3e864a252d9 ****/ + /****** BRepMesh_Vertex::Location3d ******/ + /****** md5 signature: 82faaa1833ea67e80110e3e864a252d9 ******/ %feature("compactdefaultargs") Location3d; %feature("autodoc", "Return ------- @@ -4477,8 +4477,8 @@ Returns index of 3d point associated with the vertex. ") Location3d; Standard_Integer Location3d(); - /****************** Movability ******************/ - /**** md5 signature: 6205d0abeb2bc94f438d25da760d9f0b ****/ + /****** BRepMesh_Vertex::Movability ******/ + /****** md5 signature: 6205d0abeb2bc94f438d25da760d9f0b ******/ %feature("compactdefaultargs") Movability; %feature("autodoc", "Return ------- @@ -4490,8 +4490,8 @@ Returns movability of the vertex. ") Movability; BRepMesh_DegreeOfFreedom Movability(); - /****************** SetMovability ******************/ - /**** md5 signature: 6a061b38c31857ee1d61d08ac2b621a5 ****/ + /****** BRepMesh_Vertex::SetMovability ******/ + /****** md5 signature: 6a061b38c31857ee1d61d08ac2b621a5 ******/ %feature("compactdefaultargs") SetMovability; %feature("autodoc", " Parameters @@ -4537,8 +4537,8 @@ def __eq__(self, right): class BRepMesh_VertexInspector : public NCollection_CellFilter_InspectorXY { public: typedef Standard_Integer Target; - /****************** BRepMesh_VertexInspector ******************/ - /**** md5 signature: 7c9c8f3e11f83e3929f77935677ecf69 ****/ + /****** BRepMesh_VertexInspector::BRepMesh_VertexInspector ******/ + /****** md5 signature: 7c9c8f3e11f83e3929f77935677ecf69 ******/ %feature("compactdefaultargs") BRepMesh_VertexInspector; %feature("autodoc", " Parameters @@ -4555,8 +4555,8 @@ Constructor. @param theallocator memory allocator to be used by internal collect ") BRepMesh_VertexInspector; BRepMesh_VertexInspector(const opencascade::handle & theAllocator); - /****************** Add ******************/ - /**** md5 signature: f816def4550502906f62b11fcad10037 ****/ + /****** BRepMesh_VertexInspector::Add ******/ + /****** md5 signature: f816def4550502906f62b11fcad10037 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -4573,8 +4573,8 @@ Registers the given vertex. @param thevertex vertex to be registered. ") Add; Standard_Integer Add(const BRepMesh_Vertex & theVertex); - /****************** Clear ******************/ - /**** md5 signature: 75abd67f132413fc11c19201aabf1126 ****/ + /****** BRepMesh_VertexInspector::Clear ******/ + /****** md5 signature: 75abd67f132413fc11c19201aabf1126 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -4586,8 +4586,8 @@ Clear inspector's internal data structures. ") Clear; void Clear(); - /****************** Delete ******************/ - /**** md5 signature: e64b6eae227c09ac378172a70bde8a50 ****/ + /****** BRepMesh_VertexInspector::Delete ******/ + /****** md5 signature: e64b6eae227c09ac378172a70bde8a50 ******/ %feature("compactdefaultargs") Delete; %feature("autodoc", " Parameters @@ -4604,8 +4604,8 @@ Deletes vertex with the given index. @param theindex index of vertex to be remov ") Delete; void Delete(const Standard_Integer theIndex); - /****************** GetCoincidentPoint ******************/ - /**** md5 signature: 9f635bc58f8d3443d64e425e92d1d95a ****/ + /****** BRepMesh_VertexInspector::GetCoincidentPoint ******/ + /****** md5 signature: 9f635bc58f8d3443d64e425e92d1d95a ******/ %feature("compactdefaultargs") GetCoincidentPoint; %feature("autodoc", "Return ------- @@ -4617,8 +4617,8 @@ Returns index of point coinciding with regerence one. ") GetCoincidentPoint; Standard_Integer GetCoincidentPoint(); - /****************** GetListOfDelPoints ******************/ - /**** md5 signature: 9164fa1026581bd683bb92f8b029f619 ****/ + /****** BRepMesh_VertexInspector::GetListOfDelPoints ******/ + /****** md5 signature: 9164fa1026581bd683bb92f8b029f619 ******/ %feature("compactdefaultargs") GetListOfDelPoints; %feature("autodoc", "Return ------- @@ -4630,8 +4630,8 @@ Returns list with indexes of vertices that have movability attribute equal to br ") GetListOfDelPoints; const IMeshData::ListOfInteger & GetListOfDelPoints(); - /****************** GetVertex ******************/ - /**** md5 signature: 1a4c7186869a78a1e0d446255dea8b76 ****/ + /****** BRepMesh_VertexInspector::GetVertex ******/ + /****** md5 signature: 1a4c7186869a78a1e0d446255dea8b76 ******/ %feature("compactdefaultargs") GetVertex; %feature("autodoc", " Parameters @@ -4648,8 +4648,8 @@ Returns vertex with the given index. ") GetVertex; BRepMesh_Vertex & GetVertex(Standard_Integer theIndex); - /****************** Inspect ******************/ - /**** md5 signature: 5c5862e6d70f17de4a117a71b7550cc2 ****/ + /****** BRepMesh_VertexInspector::Inspect ******/ + /****** md5 signature: 5c5862e6d70f17de4a117a71b7550cc2 ******/ %feature("compactdefaultargs") Inspect; %feature("autodoc", " Parameters @@ -4666,8 +4666,8 @@ Performs inspection of a point with the given index. @param thetargetindex index ") Inspect; NCollection_CellFilter_Action Inspect(const Standard_Integer theTargetIndex); - /****************** IsEqual ******************/ - /**** md5 signature: dd38878b9463f31ea5c2351dd2f590e3 ****/ + /****** BRepMesh_VertexInspector::IsEqual ******/ + /****** md5 signature: dd38878b9463f31ea5c2351dd2f590e3 ******/ %feature("compactdefaultargs") IsEqual; %feature("autodoc", " Parameters @@ -4685,8 +4685,8 @@ Checks indices for equlity. ") IsEqual; static Standard_Boolean IsEqual(const Standard_Integer theIndex, const Standard_Integer theTargetIndex); - /****************** NbVertices ******************/ - /**** md5 signature: fdb7d948cb5ffe9c7da397697d4125c9 ****/ + /****** BRepMesh_VertexInspector::NbVertices ******/ + /****** md5 signature: fdb7d948cb5ffe9c7da397697d4125c9 ******/ %feature("compactdefaultargs") NbVertices; %feature("autodoc", "Return ------- @@ -4698,8 +4698,8 @@ Returns number of registered vertices. ") NbVertices; Standard_Integer NbVertices(); - /****************** SetPoint ******************/ - /**** md5 signature: b521bfcebdca3f9d4da8c66d87603bc7 ****/ + /****** BRepMesh_VertexInspector::SetPoint ******/ + /****** md5 signature: b521bfcebdca3f9d4da8c66d87603bc7 ******/ %feature("compactdefaultargs") SetPoint; %feature("autodoc", " Parameters @@ -4716,8 +4716,8 @@ Set reference point to be checked. ") SetPoint; void SetPoint(const gp_XY & thePoint); - /****************** SetTolerance ******************/ - /**** md5 signature: 2df6ca87a12fc10518568e45d2ce38db ****/ + /****** BRepMesh_VertexInspector::SetTolerance ******/ + /****** md5 signature: 2df6ca87a12fc10518568e45d2ce38db ******/ %feature("compactdefaultargs") SetTolerance; %feature("autodoc", " Parameters @@ -4734,8 +4734,8 @@ Sets the tolerance to be used for identification of coincident vertices equal fo ") SetTolerance; void SetTolerance(const Standard_Real theTolerance); - /****************** SetTolerance ******************/ - /**** md5 signature: a955a7d6f39e831632ff59e80f51118b ****/ + /****** BRepMesh_VertexInspector::SetTolerance ******/ + /****** md5 signature: a955a7d6f39e831632ff59e80f51118b ******/ %feature("compactdefaultargs") SetTolerance; %feature("autodoc", " Parameters @@ -4767,8 +4767,8 @@ Sets the tolerance to be used for identification of coincident vertices. @param ****************************/ class BRepMesh_VertexTool : public Standard_Transient { public: - /****************** BRepMesh_VertexTool ******************/ - /**** md5 signature: c1d46446841c2a0b024a242364fe45b0 ****/ + /****** BRepMesh_VertexTool::BRepMesh_VertexTool ******/ + /****** md5 signature: c1d46446841c2a0b024a242364fe45b0 ******/ %feature("compactdefaultargs") BRepMesh_VertexTool; %feature("autodoc", " Parameters @@ -4785,8 +4785,8 @@ Constructor. @param theallocator memory allocator to be used by internal collect ") BRepMesh_VertexTool; BRepMesh_VertexTool(const opencascade::handle & theAllocator); - /****************** Add ******************/ - /**** md5 signature: 4bb380d0d4ce81ef097ec263b902da2f ****/ + /****** BRepMesh_VertexTool::Add ******/ + /****** md5 signature: 4bb380d0d4ce81ef097ec263b902da2f ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -4804,8 +4804,8 @@ Adds vertex with empty data to the tool. @param thevertex node to be added to th ") Add; Standard_Integer Add(const BRepMesh_Vertex & theVertex, const Standard_Boolean isForceAdd); - /****************** DeleteVertex ******************/ - /**** md5 signature: e0b876f76bdf9c448f455affb633c26b ****/ + /****** BRepMesh_VertexTool::DeleteVertex ******/ + /****** md5 signature: e0b876f76bdf9c448f455affb633c26b ******/ %feature("compactdefaultargs") DeleteVertex; %feature("autodoc", " Parameters @@ -4822,8 +4822,8 @@ Deletes vertex with the given index from the tool. ") DeleteVertex; void DeleteVertex(const Standard_Integer theIndex); - /****************** Extent ******************/ - /**** md5 signature: 19453f219e568f9c5109a0fd06459e95 ****/ + /****** BRepMesh_VertexTool::Extent ******/ + /****** md5 signature: 19453f219e568f9c5109a0fd06459e95 ******/ %feature("compactdefaultargs") Extent; %feature("autodoc", "Return ------- @@ -4835,8 +4835,8 @@ Returns a number of vertices. ") Extent; Standard_Integer Extent(); - /****************** FindIndex ******************/ - /**** md5 signature: 60932e657cd5c0a3a285a9c67b5f84f0 ****/ + /****** BRepMesh_VertexTool::FindIndex ******/ + /****** md5 signature: 60932e657cd5c0a3a285a9c67b5f84f0 ******/ %feature("compactdefaultargs") FindIndex; %feature("autodoc", " Parameters @@ -4853,8 +4853,8 @@ Returns index of the given vertex. ") FindIndex; Standard_Integer FindIndex(const BRepMesh_Vertex & theVertex); - /****************** FindKey ******************/ - /**** md5 signature: 50cfc9a2c0f6d9bdc4c2fccc76309be1 ****/ + /****** BRepMesh_VertexTool::FindKey ******/ + /****** md5 signature: 50cfc9a2c0f6d9bdc4c2fccc76309be1 ******/ %feature("compactdefaultargs") FindKey; %feature("autodoc", " Parameters @@ -4871,8 +4871,8 @@ Returns vertex by the given index. ") FindKey; const BRepMesh_Vertex & FindKey(const Standard_Integer theIndex); - /****************** GetListOfDelNodes ******************/ - /**** md5 signature: 2052380f0276c30f6b6945ebb21ced96 ****/ + /****** BRepMesh_VertexTool::GetListOfDelNodes ******/ + /****** md5 signature: 2052380f0276c30f6b6945ebb21ced96 ******/ %feature("compactdefaultargs") GetListOfDelNodes; %feature("autodoc", "Return ------- @@ -4884,8 +4884,8 @@ Returns the list with indexes of vertices that have movability attribute equal t ") GetListOfDelNodes; const IMeshData::ListOfInteger & GetListOfDelNodes(); - /****************** GetTolerance ******************/ - /**** md5 signature: ef1a1d705d43f87bb8eeb1b1b048c3c3 ****/ + /****** BRepMesh_VertexTool::GetTolerance ******/ + /****** md5 signature: ef1a1d705d43f87bb8eeb1b1b048c3c3 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -4902,8 +4902,8 @@ Gets the tolerance to be used for identification of coincident vertices. @param ") GetTolerance; void GetTolerance(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** IsEmpty ******************/ - /**** md5 signature: d529c07ce9e12eea3222188c82b0e80b ****/ + /****** BRepMesh_VertexTool::IsEmpty ******/ + /****** md5 signature: d529c07ce9e12eea3222188c82b0e80b ******/ %feature("compactdefaultargs") IsEmpty; %feature("autodoc", "Return ------- @@ -4915,8 +4915,8 @@ Returns true when the map contains no keys. . ") IsEmpty; Standard_Boolean IsEmpty(); - /****************** RemoveLast ******************/ - /**** md5 signature: a5b2be74b40472d88621f86eb0fc42c1 ****/ + /****** BRepMesh_VertexTool::RemoveLast ******/ + /****** md5 signature: a5b2be74b40472d88621f86eb0fc42c1 ******/ %feature("compactdefaultargs") RemoveLast; %feature("autodoc", "Return ------- @@ -4928,8 +4928,8 @@ Remove last node from the structure. ") RemoveLast; void RemoveLast(); - /****************** SetCellSize ******************/ - /**** md5 signature: 415a8b91be50170d2af0ba27dd19bc6c ****/ + /****** BRepMesh_VertexTool::SetCellSize ******/ + /****** md5 signature: 415a8b91be50170d2af0ba27dd19bc6c ******/ %feature("compactdefaultargs") SetCellSize; %feature("autodoc", " Parameters @@ -4946,8 +4946,8 @@ Sets new size of cell for cellfilter equal in both directions. ") SetCellSize; void SetCellSize(const Standard_Real theSize); - /****************** SetCellSize ******************/ - /**** md5 signature: 28e49b1c038f46447a07e18f6d52b3eb ****/ + /****** BRepMesh_VertexTool::SetCellSize ******/ + /****** md5 signature: 28e49b1c038f46447a07e18f6d52b3eb ******/ %feature("compactdefaultargs") SetCellSize; %feature("autodoc", " Parameters @@ -4965,8 +4965,8 @@ Sets new size of cell for cellfilter. @param thesizex size for x dimension. @par ") SetCellSize; void SetCellSize(const Standard_Real theSizeX, const Standard_Real theSizeY); - /****************** SetTolerance ******************/ - /**** md5 signature: 2df6ca87a12fc10518568e45d2ce38db ****/ + /****** BRepMesh_VertexTool::SetTolerance ******/ + /****** md5 signature: 2df6ca87a12fc10518568e45d2ce38db ******/ %feature("compactdefaultargs") SetTolerance; %feature("autodoc", " Parameters @@ -4983,8 +4983,8 @@ Sets the tolerance to be used for identification of coincident vertices equal fo ") SetTolerance; void SetTolerance(const Standard_Real theTolerance); - /****************** SetTolerance ******************/ - /**** md5 signature: a955a7d6f39e831632ff59e80f51118b ****/ + /****** BRepMesh_VertexTool::SetTolerance ******/ + /****** md5 signature: a955a7d6f39e831632ff59e80f51118b ******/ %feature("compactdefaultargs") SetTolerance; %feature("autodoc", " Parameters @@ -5002,8 +5002,8 @@ Sets the tolerance to be used for identification of coincident vertices. @param ") SetTolerance; void SetTolerance(const Standard_Real theToleranceX, const Standard_Real theToleranceY); - /****************** Statistics ******************/ - /**** md5 signature: 1a1dab8d9fff60f7ef456c28f93e75d1 ****/ + /****** BRepMesh_VertexTool::Statistics ******/ + /****** md5 signature: 1a1dab8d9fff60f7ef456c28f93e75d1 ******/ %feature("compactdefaultargs") Statistics; %feature("autodoc", " Parameters @@ -5019,8 +5019,8 @@ Prints statistics. ") Statistics; void Statistics(std::ostream &OutValue); - /****************** Substitute ******************/ - /**** md5 signature: 02ac53c87b5a046c4ee9a0b10ac44d20 ****/ + /****** BRepMesh_VertexTool::Substitute ******/ + /****** md5 signature: 02ac53c87b5a046c4ee9a0b10ac44d20 ******/ %feature("compactdefaultargs") Substitute; %feature("autodoc", " Parameters @@ -5066,8 +5066,8 @@ Substitutes vertex with the given by the given vertex with attributes. @param th ***********************************/ class BRepMesh_ConeRangeSplitter : public BRepMesh_DefaultRangeSplitter { public: - /****************** BRepMesh_ConeRangeSplitter ******************/ - /**** md5 signature: ba9b7871f353a07a84a26d54da44b4ce ****/ + /****** BRepMesh_ConeRangeSplitter::BRepMesh_ConeRangeSplitter ******/ + /****** md5 signature: ba9b7871f353a07a84a26d54da44b4ce ******/ %feature("compactdefaultargs") BRepMesh_ConeRangeSplitter; %feature("autodoc", "Return ------- @@ -5100,8 +5100,8 @@ Constructor. ***************************************/ class BRepMesh_CylinderRangeSplitter : public BRepMesh_DefaultRangeSplitter { public: - /****************** BRepMesh_CylinderRangeSplitter ******************/ - /**** md5 signature: 2727878f8b6f6d1e103a1f10931a8b01 ****/ + /****** BRepMesh_CylinderRangeSplitter::BRepMesh_CylinderRangeSplitter ******/ + /****** md5 signature: 2727878f8b6f6d1e103a1f10931a8b01 ******/ %feature("compactdefaultargs") BRepMesh_CylinderRangeSplitter; %feature("autodoc", "Return ------- @@ -5113,8 +5113,8 @@ Constructor. ") BRepMesh_CylinderRangeSplitter; BRepMesh_CylinderRangeSplitter(); - /****************** Reset ******************/ - /**** md5 signature: aa395f2a8deaeb8df261ef127aeaa147 ****/ + /****** BRepMesh_CylinderRangeSplitter::Reset ******/ + /****** md5 signature: aa395f2a8deaeb8df261ef127aeaa147 ******/ %feature("compactdefaultargs") Reset; %feature("autodoc", " Parameters @@ -5152,8 +5152,8 @@ Resets this splitter. must be called before first use. **********************/ class BRepMesh_Edge : public BRepMesh_OrientedEdge { public: - /****************** BRepMesh_Edge ******************/ - /**** md5 signature: 148292be386085c6fd2cc96072e9c3de ****/ + /****** BRepMesh_Edge::BRepMesh_Edge ******/ + /****** md5 signature: 148292be386085c6fd2cc96072e9c3de ******/ %feature("compactdefaultargs") BRepMesh_Edge; %feature("autodoc", "Return ------- @@ -5165,8 +5165,8 @@ Default constructor. ") BRepMesh_Edge; BRepMesh_Edge(); - /****************** BRepMesh_Edge ******************/ - /**** md5 signature: 899778d80da95fd1669c2bc626ea9637 ****/ + /****** BRepMesh_Edge::BRepMesh_Edge ******/ + /****** md5 signature: 899778d80da95fd1669c2bc626ea9637 ******/ %feature("compactdefaultargs") BRepMesh_Edge; %feature("autodoc", " Parameters @@ -5185,8 +5185,8 @@ Constructs a link between two vertices. ") BRepMesh_Edge; BRepMesh_Edge(const Standard_Integer theFirstNode, const Standard_Integer theLastNode, const BRepMesh_DegreeOfFreedom theMovability); - /****************** IsEqual ******************/ - /**** md5 signature: 837c7d9cc3c326697db7581cc5f5fb40 ****/ + /****** BRepMesh_Edge::IsEqual ******/ + /****** md5 signature: 837c7d9cc3c326697db7581cc5f5fb40 ******/ %feature("compactdefaultargs") IsEqual; %feature("autodoc", " Parameters @@ -5203,8 +5203,8 @@ Checks for equality with another edge. @param theother edge to be checked agains ") IsEqual; Standard_Boolean IsEqual(const BRepMesh_Edge & theOther); - /****************** IsSameOrientation ******************/ - /**** md5 signature: 89af0bb4a997d047c8d1bc9628fad9dd ****/ + /****** BRepMesh_Edge::IsSameOrientation ******/ + /****** md5 signature: 89af0bb4a997d047c8d1bc9628fad9dd ******/ %feature("compactdefaultargs") IsSameOrientation; %feature("autodoc", " Parameters @@ -5221,8 +5221,8 @@ Checks if the given edge and this one have the same orientation. @param theother ") IsSameOrientation; Standard_Boolean IsSameOrientation(const BRepMesh_Edge & theOther); - /****************** Movability ******************/ - /**** md5 signature: 6205d0abeb2bc94f438d25da760d9f0b ****/ + /****** BRepMesh_Edge::Movability ******/ + /****** md5 signature: 6205d0abeb2bc94f438d25da760d9f0b ******/ %feature("compactdefaultargs") Movability; %feature("autodoc", "Return ------- @@ -5234,8 +5234,8 @@ Returns movability flag of the link. ") Movability; BRepMesh_DegreeOfFreedom Movability(); - /****************** SetMovability ******************/ - /**** md5 signature: 6a061b38c31857ee1d61d08ac2b621a5 ****/ + /****** BRepMesh_Edge::SetMovability ******/ + /****** md5 signature: 6a061b38c31857ee1d61d08ac2b621a5 ******/ %feature("compactdefaultargs") SetMovability; %feature("autodoc", " Parameters @@ -5280,8 +5280,8 @@ def __eq__(self, right): *********************************/ class BRepMesh_IncrementalMesh : public BRepMesh_DiscretRoot { public: - /****************** BRepMesh_IncrementalMesh ******************/ - /**** md5 signature: 423409375831fd5b22ca5152c321696e ****/ + /****** BRepMesh_IncrementalMesh::BRepMesh_IncrementalMesh ******/ + /****** md5 signature: 423409375831fd5b22ca5152c321696e ******/ %feature("compactdefaultargs") BRepMesh_IncrementalMesh; %feature("autodoc", "Return ------- @@ -5293,8 +5293,8 @@ Default constructor. ") BRepMesh_IncrementalMesh; BRepMesh_IncrementalMesh(); - /****************** BRepMesh_IncrementalMesh ******************/ - /**** md5 signature: d4b51aeef0e1f61b5938e57b03c660b3 ****/ + /****** BRepMesh_IncrementalMesh::BRepMesh_IncrementalMesh ******/ + /****** md5 signature: d4b51aeef0e1f61b5938e57b03c660b3 ******/ %feature("compactdefaultargs") BRepMesh_IncrementalMesh; %feature("autodoc", " Parameters @@ -5315,8 +5315,8 @@ Constructor. automatically calls method perform. @param theshape shape to be mes ") BRepMesh_IncrementalMesh; BRepMesh_IncrementalMesh(const TopoDS_Shape & theShape, const Standard_Real theLinDeflection, const Standard_Boolean isRelative = Standard_False, const Standard_Real theAngDeflection = 0.5, const Standard_Boolean isInParallel = Standard_False); - /****************** BRepMesh_IncrementalMesh ******************/ - /**** md5 signature: e5fd880315ea23df47b710ecb652dcf7 ****/ + /****** BRepMesh_IncrementalMesh::BRepMesh_IncrementalMesh ******/ + /****** md5 signature: e5fd880315ea23df47b710ecb652dcf7 ******/ %feature("compactdefaultargs") BRepMesh_IncrementalMesh; %feature("autodoc", " Parameters @@ -5335,8 +5335,8 @@ Constructor. automatically calls method perform. @param theshape shape to be mes ") BRepMesh_IncrementalMesh; BRepMesh_IncrementalMesh(const TopoDS_Shape & theShape, const IMeshTools_Parameters & theParameters, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** ChangeParameters ******************/ - /**** md5 signature: 7d357d2d707ea7c6e435ce7944cdbaeb ****/ + /****** BRepMesh_IncrementalMesh::ChangeParameters ******/ + /****** md5 signature: 7d357d2d707ea7c6e435ce7944cdbaeb ******/ %feature("compactdefaultargs") ChangeParameters; %feature("autodoc", "Return ------- @@ -5348,8 +5348,8 @@ Returns modifiable meshing parameters. ") ChangeParameters; IMeshTools_Parameters & ChangeParameters(); - /****************** Discret ******************/ - /**** md5 signature: 48d8518acd93b0a2608de45caeb5d913 ****/ + /****** BRepMesh_IncrementalMesh::Discret ******/ + /****** md5 signature: 48d8518acd93b0a2608de45caeb5d913 ******/ %feature("compactdefaultargs") Discret; %feature("autodoc", " Parameters @@ -5369,8 +5369,8 @@ Plugin interface for the mesh factories. initializes meshing algorithm with the ") Discret; static Standard_Integer Discret(const TopoDS_Shape & theShape, const Standard_Real theLinDeflection, const Standard_Real theAngDeflection, BRepMesh_DiscretRoot * & theAlgo); - /****************** GetStatusFlags ******************/ - /**** md5 signature: e398513992ccf52274fdd58a2054886e ****/ + /****** BRepMesh_IncrementalMesh::GetStatusFlags ******/ + /****** md5 signature: e398513992ccf52274fdd58a2054886e ******/ %feature("compactdefaultargs") GetStatusFlags; %feature("autodoc", "Return ------- @@ -5382,8 +5382,8 @@ Returns accumulated status flags faced during meshing. ") GetStatusFlags; Standard_Integer GetStatusFlags(); - /****************** IsModified ******************/ - /**** md5 signature: 95dc34039aea53686862c95397ed3e81 ****/ + /****** BRepMesh_IncrementalMesh::IsModified ******/ + /****** md5 signature: 95dc34039aea53686862c95397ed3e81 ******/ %feature("compactdefaultargs") IsModified; %feature("autodoc", "Return ------- @@ -5395,8 +5395,8 @@ Returns modified flag. ") IsModified; Standard_Boolean IsModified(); - /****************** IsParallelDefault ******************/ - /**** md5 signature: 9f90f914ac4f7b5622f3986fe4a4ede3 ****/ + /****** BRepMesh_IncrementalMesh::IsParallelDefault ******/ + /****** md5 signature: 9f90f914ac4f7b5622f3986fe4a4ede3 ******/ %feature("compactdefaultargs") IsParallelDefault; %feature("autodoc", "Return ------- @@ -5408,8 +5408,8 @@ Returns multi-threading usage flag set by default in discret() static method (th ") IsParallelDefault; static Standard_Boolean IsParallelDefault(); - /****************** Parameters ******************/ - /**** md5 signature: 80bd17a03936a7214968019ed0fbca90 ****/ + /****** BRepMesh_IncrementalMesh::Parameters ******/ + /****** md5 signature: 80bd17a03936a7214968019ed0fbca90 ******/ %feature("compactdefaultargs") Parameters; %feature("autodoc", "Return ------- @@ -5421,8 +5421,8 @@ Returns meshing parameters. ") Parameters; const IMeshTools_Parameters & Parameters(); - /****************** Perform ******************/ - /**** md5 signature: 0c284a2ff880da6562c1121fb4e216b7 ****/ + /****** BRepMesh_IncrementalMesh::Perform ******/ + /****** md5 signature: 0c284a2ff880da6562c1121fb4e216b7 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -5439,8 +5439,8 @@ Performs meshing of the shape. ") Perform; virtual void Perform(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Perform ******************/ - /**** md5 signature: 80d0d01860d5254f4b440d16b1acdcaf ****/ + /****** BRepMesh_IncrementalMesh::Perform ******/ + /****** md5 signature: 80d0d01860d5254f4b440d16b1acdcaf ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -5458,8 +5458,8 @@ Performs meshing using custom context;. ") Perform; void Perform(const opencascade::handle & theContext, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** SetParallelDefault ******************/ - /**** md5 signature: ecfba5f6dedb3ffdd55b2640e270ebdb ****/ + /****** BRepMesh_IncrementalMesh::SetParallelDefault ******/ + /****** md5 signature: ecfba5f6dedb3ffdd55b2640e270ebdb ******/ %feature("compactdefaultargs") SetParallelDefault; %feature("autodoc", " Parameters @@ -5492,8 +5492,8 @@ Setup multi-threading usage flag set by default in discret() static method (thus *************************************/ class BRepMesh_SphereRangeSplitter : public BRepMesh_DefaultRangeSplitter { public: - /****************** BRepMesh_SphereRangeSplitter ******************/ - /**** md5 signature: 87cfa646eba8434e78ad57e06fec3877 ****/ + /****** BRepMesh_SphereRangeSplitter::BRepMesh_SphereRangeSplitter ******/ + /****** md5 signature: 87cfa646eba8434e78ad57e06fec3877 ******/ %feature("compactdefaultargs") BRepMesh_SphereRangeSplitter; %feature("autodoc", "Return ------- @@ -5519,8 +5519,8 @@ Constructor. **************************************/ class BRepMesh_UVParamRangeSplitter : public BRepMesh_DefaultRangeSplitter { public: - /****************** BRepMesh_UVParamRangeSplitter ******************/ - /**** md5 signature: 67ecdfad250fd0a84fb935ac4c1d8a40 ****/ + /****** BRepMesh_UVParamRangeSplitter::BRepMesh_UVParamRangeSplitter ******/ + /****** md5 signature: 67ecdfad250fd0a84fb935ac4c1d8a40 ******/ %feature("compactdefaultargs") BRepMesh_UVParamRangeSplitter; %feature("autodoc", "Return ------- @@ -5532,8 +5532,8 @@ Constructor. ") BRepMesh_UVParamRangeSplitter; BRepMesh_UVParamRangeSplitter(); - /****************** GetParametersU ******************/ - /**** md5 signature: 5ee87ca295b7089622b34597ba0fa7dc ****/ + /****** BRepMesh_UVParamRangeSplitter::GetParametersU ******/ + /****** md5 signature: 5ee87ca295b7089622b34597ba0fa7dc ******/ %feature("compactdefaultargs") GetParametersU; %feature("autodoc", "Return ------- @@ -5545,8 +5545,8 @@ Returns u parameters. ") GetParametersU; const IMeshData::IMapOfReal & GetParametersU(); - /****************** GetParametersU ******************/ - /**** md5 signature: 6ffbc2e9c1bbf06f60cc0560c30ac041 ****/ + /****** BRepMesh_UVParamRangeSplitter::GetParametersU ******/ + /****** md5 signature: 6ffbc2e9c1bbf06f60cc0560c30ac041 ******/ %feature("compactdefaultargs") GetParametersU; %feature("autodoc", "Return ------- @@ -5558,8 +5558,8 @@ Returns u parameters. ") GetParametersU; IMeshData::IMapOfReal & GetParametersU(); - /****************** GetParametersV ******************/ - /**** md5 signature: 307ff0c2c9d7f6c020220dd1bb3fafcb ****/ + /****** BRepMesh_UVParamRangeSplitter::GetParametersV ******/ + /****** md5 signature: 307ff0c2c9d7f6c020220dd1bb3fafcb ******/ %feature("compactdefaultargs") GetParametersV; %feature("autodoc", "Return ------- @@ -5571,8 +5571,8 @@ Returns v parameters. ") GetParametersV; const IMeshData::IMapOfReal & GetParametersV(); - /****************** GetParametersV ******************/ - /**** md5 signature: da5da90265c614d65bf736490d481963 ****/ + /****** BRepMesh_UVParamRangeSplitter::GetParametersV ******/ + /****** md5 signature: da5da90265c614d65bf736490d481963 ******/ %feature("compactdefaultargs") GetParametersV; %feature("autodoc", "Return ------- @@ -5584,8 +5584,8 @@ Returns v parameters. ") GetParametersV; IMeshData::IMapOfReal & GetParametersV(); - /****************** Reset ******************/ - /**** md5 signature: 4e9461d13bccb12249cf7fc75170d1a6 ****/ + /****** BRepMesh_UVParamRangeSplitter::Reset ******/ + /****** md5 signature: 4e9461d13bccb12249cf7fc75170d1a6 ******/ %feature("compactdefaultargs") Reset; %feature("autodoc", " Parameters @@ -5620,8 +5620,8 @@ Resets this splitter. **************************************/ class BRepMesh_DelaunayBaseMeshAlgo : public BRepMesh_ConstrainedBaseMeshAlgo { public: - /****************** BRepMesh_DelaunayBaseMeshAlgo ******************/ - /**** md5 signature: 97c6d3100758038d31c815f1082e8034 ****/ + /****** BRepMesh_DelaunayBaseMeshAlgo::BRepMesh_DelaunayBaseMeshAlgo ******/ + /****** md5 signature: 97c6d3100758038d31c815f1082e8034 ******/ %feature("compactdefaultargs") BRepMesh_DelaunayBaseMeshAlgo; %feature("autodoc", "Return ------- @@ -5647,8 +5647,8 @@ Constructor. ************************************/ class BRepMesh_NURBSRangeSplitter : public BRepMesh_UVParamRangeSplitter { public: - /****************** BRepMesh_NURBSRangeSplitter ******************/ - /**** md5 signature: 10713871cb23211ba4a316e12a7f927a ****/ + /****** BRepMesh_NURBSRangeSplitter::BRepMesh_NURBSRangeSplitter ******/ + /****** md5 signature: 10713871cb23211ba4a316e12a7f927a ******/ %feature("compactdefaultargs") BRepMesh_NURBSRangeSplitter; %feature("autodoc", "Return ------- @@ -5660,8 +5660,8 @@ Constructor. ") BRepMesh_NURBSRangeSplitter; BRepMesh_NURBSRangeSplitter(); - /****************** AdjustRange ******************/ - /**** md5 signature: c094c053316b0e2e1a84ba1d968cecee ****/ + /****** BRepMesh_NURBSRangeSplitter::AdjustRange ******/ + /****** md5 signature: c094c053316b0e2e1a84ba1d968cecee ******/ %feature("compactdefaultargs") AdjustRange; %feature("autodoc", "Return ------- @@ -5687,8 +5687,8 @@ Updates discrete range of surface according to its geometric range. ************************************/ class BRepMesh_TorusRangeSplitter : public BRepMesh_UVParamRangeSplitter { public: - /****************** BRepMesh_TorusRangeSplitter ******************/ - /**** md5 signature: 6d8b6c55817e30ebe786ea5e4218b2a5 ****/ + /****** BRepMesh_TorusRangeSplitter::BRepMesh_TorusRangeSplitter ******/ + /****** md5 signature: 6d8b6c55817e30ebe786ea5e4218b2a5 ******/ %feature("compactdefaultargs") BRepMesh_TorusRangeSplitter; %feature("autodoc", "Return ------- @@ -5700,8 +5700,8 @@ Constructor. ") BRepMesh_TorusRangeSplitter; BRepMesh_TorusRangeSplitter(); - /****************** AddPoint ******************/ - /**** md5 signature: e522468f1a359a4578ca51a7b27bd0e5 ****/ + /****** BRepMesh_TorusRangeSplitter::AddPoint ******/ + /****** md5 signature: e522468f1a359a4578ca51a7b27bd0e5 ******/ %feature("compactdefaultargs") AddPoint; %feature("autodoc", " Parameters @@ -5732,8 +5732,8 @@ Registers border point. *********************************************/ class BRepMesh_BoundaryParamsRangeSplitter : public BRepMesh_NURBSRangeSplitter { public: - /****************** BRepMesh_BoundaryParamsRangeSplitter ******************/ - /**** md5 signature: d6bdcdb002fbb8b2b9d893b2ba111ff7 ****/ + /****** BRepMesh_BoundaryParamsRangeSplitter::BRepMesh_BoundaryParamsRangeSplitter ******/ + /****** md5 signature: d6bdcdb002fbb8b2b9d893b2ba111ff7 ******/ %feature("compactdefaultargs") BRepMesh_BoundaryParamsRangeSplitter; %feature("autodoc", "Return ------- @@ -5745,8 +5745,8 @@ Constructor. ") BRepMesh_BoundaryParamsRangeSplitter; BRepMesh_BoundaryParamsRangeSplitter(); - /****************** AddPoint ******************/ - /**** md5 signature: 6d02802acf31247d3e34a9fd4dfdf153 ****/ + /****** BRepMesh_BoundaryParamsRangeSplitter::AddPoint ******/ + /****** md5 signature: 6d02802acf31247d3e34a9fd4dfdf153 ******/ %feature("compactdefaultargs") AddPoint; %feature("autodoc", " Parameters @@ -5777,8 +5777,8 @@ Registers border point. ***************************************/ class BRepMesh_DelabellaBaseMeshAlgo : public BRepMesh_CustomBaseMeshAlgo { public: - /****************** BRepMesh_DelabellaBaseMeshAlgo ******************/ - /**** md5 signature: b41dc635f954c50092b5b7a76bf71647 ****/ + /****** BRepMesh_DelabellaBaseMeshAlgo::BRepMesh_DelabellaBaseMeshAlgo ******/ + /****** md5 signature: b41dc635f954c50092b5b7a76bf71647 ******/ %feature("compactdefaultargs") BRepMesh_DelabellaBaseMeshAlgo; %feature("autodoc", "Return ------- @@ -5804,8 +5804,8 @@ Constructor. ****************************************/ class BRepMesh_ExtrusionRangeSplitter : public BRepMesh_NURBSRangeSplitter { public: - /****************** BRepMesh_ExtrusionRangeSplitter ******************/ - /**** md5 signature: d07f4ec89669b0f89c1b66fc1e06d3ae ****/ + /****** BRepMesh_ExtrusionRangeSplitter::BRepMesh_ExtrusionRangeSplitter ******/ + /****** md5 signature: d07f4ec89669b0f89c1b66fc1e06d3ae ******/ %feature("compactdefaultargs") BRepMesh_ExtrusionRangeSplitter; %feature("autodoc", "Return ------- @@ -5831,8 +5831,8 @@ Constructor. ****************************************/ class BRepMesh_UndefinedRangeSplitter : public BRepMesh_NURBSRangeSplitter { public: - /****************** BRepMesh_UndefinedRangeSplitter ******************/ - /**** md5 signature: 8f04bf79f8ca9eff32045bf37a6720ba ****/ + /****** BRepMesh_UndefinedRangeSplitter::BRepMesh_UndefinedRangeSplitter ******/ + /****** md5 signature: 8f04bf79f8ca9eff32045bf37a6720ba ******/ %feature("compactdefaultargs") BRepMesh_UndefinedRangeSplitter; %feature("autodoc", "Return ------- diff --git a/src/SWIG_files/wrapper/BRepMeshData.i b/src/SWIG_files/wrapper/BRepMeshData.i index f9af2ffb4..5f7da41a7 100644 --- a/src/SWIG_files/wrapper/BRepMeshData.i +++ b/src/SWIG_files/wrapper/BRepMeshData.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPMESHDATADOCSTRING "BRepMeshData module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepmeshdata.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepmeshdata.html" %enddef %module (package="OCC.Core", docstring=BREPMESHDATADOCSTRING) BRepMeshData @@ -96,8 +96,8 @@ from OCC.Core.Exception import * %nodefaultctor BRepMeshData_Curve; class BRepMeshData_Curve : public IMeshData_Curve { public: - /****************** AddPoint ******************/ - /**** md5 signature: 5587b337748a540e6cb9a51458b03bf2 ****/ + /****** BRepMeshData_Curve::AddPoint ******/ + /****** md5 signature: 5587b337748a540e6cb9a51458b03bf2 ******/ %feature("compactdefaultargs") AddPoint; %feature("autodoc", " Parameters @@ -115,8 +115,8 @@ Adds new discretization point to pcurve. ") AddPoint; virtual void AddPoint(const gp_Pnt & thePoint, const Standard_Real theParamOnCurve); - /****************** Clear ******************/ - /**** md5 signature: b91f21d79c57aeb0ab4d6d89d0391c2c ****/ + /****** BRepMeshData_Curve::Clear ******/ + /****** md5 signature: b91f21d79c57aeb0ab4d6d89d0391c2c ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", " Parameters @@ -133,8 +133,8 @@ Clears parameters list. ") Clear; virtual void Clear(const Standard_Boolean isKeepEndPoints); - /****************** GetParameter ******************/ - /**** md5 signature: 43c7041b75cad4564a4558a2da55af83 ****/ + /****** BRepMeshData_Curve::GetParameter ******/ + /****** md5 signature: 43c7041b75cad4564a4558a2da55af83 ******/ %feature("compactdefaultargs") GetParameter; %feature("autodoc", " Parameters @@ -151,8 +151,8 @@ Returns parameter with the given index. ") GetParameter; virtual Standard_Real & GetParameter(const Standard_Integer theIndex); - /****************** GetPoint ******************/ - /**** md5 signature: ae53efbf52e2afb6d158d4bc0d262b60 ****/ + /****** BRepMeshData_Curve::GetPoint ******/ + /****** md5 signature: ae53efbf52e2afb6d158d4bc0d262b60 ******/ %feature("compactdefaultargs") GetPoint; %feature("autodoc", " Parameters @@ -169,8 +169,8 @@ Returns discretization point with the given index. ") GetPoint; virtual gp_Pnt GetPoint(const Standard_Integer theIndex); - /****************** InsertPoint ******************/ - /**** md5 signature: 5e229fee3ffb69ce367f8b52f9cc2a2d ****/ + /****** BRepMeshData_Curve::InsertPoint ******/ + /****** md5 signature: 5e229fee3ffb69ce367f8b52f9cc2a2d ******/ %feature("compactdefaultargs") InsertPoint; %feature("autodoc", " Parameters @@ -189,8 +189,8 @@ Inserts new discretization point at the given position. ") InsertPoint; virtual void InsertPoint(const Standard_Integer thePosition, const gp_Pnt & thePoint, const Standard_Real theParamOnPCurve); - /****************** ParametersNb ******************/ - /**** md5 signature: 98955ccca9a9a58d67efd3cf821045d5 ****/ + /****** BRepMeshData_Curve::ParametersNb ******/ + /****** md5 signature: 98955ccca9a9a58d67efd3cf821045d5 ******/ %feature("compactdefaultargs") ParametersNb; %feature("autodoc", "Return ------- @@ -202,8 +202,8 @@ Returns number of parameters stored in curve. ") ParametersNb; virtual Standard_Integer ParametersNb(); - /****************** RemovePoint ******************/ - /**** md5 signature: dc9ca36142ba2044706f1377e29a7b2a ****/ + /****** BRepMeshData_Curve::RemovePoint ******/ + /****** md5 signature: dc9ca36142ba2044706f1377e29a7b2a ******/ %feature("compactdefaultargs") RemovePoint; %feature("autodoc", " Parameters @@ -307,8 +307,8 @@ Removes point with the given index. %nodefaultctor BRepMeshData_Edge; class BRepMeshData_Edge : public IMeshData_Edge { public: - /****************** AddPCurve ******************/ - /**** md5 signature: b0e75fdb233dd95364fad0411000ec96 ****/ + /****** BRepMeshData_Edge::AddPCurve ******/ + /****** md5 signature: b0e75fdb233dd95364fad0411000ec96 ******/ %feature("compactdefaultargs") AddPCurve; %feature("autodoc", " Parameters @@ -326,8 +326,8 @@ Adds discrete pcurve for the specified discrete face. ") AddPCurve; virtual IMeshData::IPCurveHandle AddPCurve(const IMeshData::IFacePtr & theDFace, const TopAbs_Orientation theOrientation); - /****************** GetPCurve ******************/ - /**** md5 signature: 4c651c871b35e5f5f12404be43db3374 ****/ + /****** BRepMeshData_Edge::GetPCurve ******/ + /****** md5 signature: 4c651c871b35e5f5f12404be43db3374 ******/ %feature("compactdefaultargs") GetPCurve; %feature("autodoc", " Parameters @@ -345,8 +345,8 @@ Returns pcurve for the specified discrete face. ") GetPCurve; virtual IMeshData::IPCurveHandle GetPCurve(const IMeshData::IFacePtr & theDFace, const TopAbs_Orientation theOrientation); - /****************** GetPCurve ******************/ - /**** md5 signature: c2f904a58e6d4fae050f2bef2b323320 ****/ + /****** BRepMeshData_Edge::GetPCurve ******/ + /****** md5 signature: c2f904a58e6d4fae050f2bef2b323320 ******/ %feature("compactdefaultargs") GetPCurve; %feature("autodoc", " Parameters @@ -363,8 +363,8 @@ Returns pcurve with the given index. ") GetPCurve; virtual IMeshData::IPCurveHandle GetPCurve(const Standard_Integer theIndex); - /****************** PCurvesNb ******************/ - /**** md5 signature: 396e4ba5fd70d100e8e49ef4d5da81c6 ****/ + /****** BRepMeshData_Edge::PCurvesNb ******/ + /****** md5 signature: 396e4ba5fd70d100e8e49ef4d5da81c6 ******/ %feature("compactdefaultargs") PCurvesNb; %feature("autodoc", "Return ------- @@ -459,8 +459,8 @@ Returns number of pcurves assigned to current edge. %nodefaultctor BRepMeshData_Face; class BRepMeshData_Face : public IMeshData_Face { public: - /****************** AddWire ******************/ - /**** md5 signature: 887f3c30d9841bcc014daace52a3b4dc ****/ + /****** BRepMeshData_Face::AddWire ******/ + /****** md5 signature: 887f3c30d9841bcc014daace52a3b4dc ******/ %feature("compactdefaultargs") AddWire; %feature("autodoc", " Parameters @@ -478,8 +478,8 @@ Adds wire to discrete model of face. ") AddWire; virtual const IMeshData::IWireHandle & AddWire(const TopoDS_Wire & theWire, const Standard_Integer theEdgeNb = 0); - /****************** GetWire ******************/ - /**** md5 signature: dc2ee08263a7ad8e6a1e6e9bce47ac66 ****/ + /****** BRepMeshData_Face::GetWire ******/ + /****** md5 signature: dc2ee08263a7ad8e6a1e6e9bce47ac66 ******/ %feature("compactdefaultargs") GetWire; %feature("autodoc", " Parameters @@ -496,8 +496,8 @@ Gets wire with the given index. ") GetWire; virtual const IMeshData::IWireHandle & GetWire(const Standard_Integer theIndex); - /****************** WiresNb ******************/ - /**** md5 signature: c1ae306201b98c47c64b7d6fd7fee1f4 ****/ + /****** BRepMeshData_Face::WiresNb ******/ + /****** md5 signature: c1ae306201b98c47c64b7d6fd7fee1f4 ******/ %feature("compactdefaultargs") WiresNb; %feature("autodoc", "Return ------- @@ -591,8 +591,8 @@ Gets number of children. ***************************/ class BRepMeshData_Model : public IMeshData_Model { public: - /****************** BRepMeshData_Model ******************/ - /**** md5 signature: 20c23584fb959b2f44e23291f517691e ****/ + /****** BRepMeshData_Model::BRepMeshData_Model ******/ + /****** md5 signature: 20c23584fb959b2f44e23291f517691e ******/ %feature("compactdefaultargs") BRepMeshData_Model; %feature("autodoc", " Parameters @@ -609,8 +609,8 @@ Constructor. initializes empty model. ") BRepMeshData_Model; BRepMeshData_Model(const TopoDS_Shape & theShape); - /****************** AddEdge ******************/ - /**** md5 signature: 2ec0cf61f4a3389f2fb166c66d06ce72 ****/ + /****** BRepMeshData_Model::AddEdge ******/ + /****** md5 signature: 2ec0cf61f4a3389f2fb166c66d06ce72 ******/ %feature("compactdefaultargs") AddEdge; %feature("autodoc", " Parameters @@ -627,8 +627,8 @@ Adds new edge to shape model. ") AddEdge; virtual const IMeshData::IEdgeHandle & AddEdge(const TopoDS_Edge & theEdge); - /****************** AddFace ******************/ - /**** md5 signature: a58703e7432ff85120d2b68c02a8bff4 ****/ + /****** BRepMeshData_Model::AddFace ******/ + /****** md5 signature: a58703e7432ff85120d2b68c02a8bff4 ******/ %feature("compactdefaultargs") AddFace; %feature("autodoc", " Parameters @@ -645,8 +645,8 @@ Adds new face to shape model. ") AddFace; virtual const IMeshData::IFaceHandle & AddFace(const TopoDS_Face & theFace); - /****************** EdgesNb ******************/ - /**** md5 signature: d8bed3659eeea9d444f232f4eeeb7350 ****/ + /****** BRepMeshData_Model::EdgesNb ******/ + /****** md5 signature: d8bed3659eeea9d444f232f4eeeb7350 ******/ %feature("compactdefaultargs") EdgesNb; %feature("autodoc", "Return ------- @@ -658,8 +658,8 @@ Returns number of edges in discrete model. ") EdgesNb; virtual Standard_Integer EdgesNb(); - /****************** FacesNb ******************/ - /**** md5 signature: 65bd60c646a1f9634db0dc8215150552 ****/ + /****** BRepMeshData_Model::FacesNb ******/ + /****** md5 signature: 65bd60c646a1f9634db0dc8215150552 ******/ %feature("compactdefaultargs") FacesNb; %feature("autodoc", "Return ------- @@ -671,8 +671,8 @@ Returns number of faces in discrete model. ") FacesNb; virtual Standard_Integer FacesNb(); - /****************** GetEdge ******************/ - /**** md5 signature: 086e707eb61c4770df8201df143365ff ****/ + /****** BRepMeshData_Model::GetEdge ******/ + /****** md5 signature: 086e707eb61c4770df8201df143365ff ******/ %feature("compactdefaultargs") GetEdge; %feature("autodoc", " Parameters @@ -689,8 +689,8 @@ Gets model's edge with the given index. ") GetEdge; virtual const IMeshData::IEdgeHandle & GetEdge(const Standard_Integer theIndex); - /****************** GetFace ******************/ - /**** md5 signature: 00576006cdfa2bb95715ca47ec356d25 ****/ + /****** BRepMeshData_Model::GetFace ******/ + /****** md5 signature: 00576006cdfa2bb95715ca47ec356d25 ******/ %feature("compactdefaultargs") GetFace; %feature("autodoc", " Parameters @@ -707,8 +707,8 @@ Gets model's face with the given index. ") GetFace; virtual const IMeshData::IFaceHandle & GetFace(const Standard_Integer theIndex); - /****************** GetMaxSize ******************/ - /**** md5 signature: 0a00229321f1e3e5c5930bb31d203e3a ****/ + /****** BRepMeshData_Model::GetMaxSize ******/ + /****** md5 signature: 0a00229321f1e3e5c5930bb31d203e3a ******/ %feature("compactdefaultargs") GetMaxSize; %feature("autodoc", "Return ------- @@ -720,8 +720,8 @@ Returns maximum size of shape's bounding box. ") GetMaxSize; virtual Standard_Real GetMaxSize(); - /****************** SetMaxSize ******************/ - /**** md5 signature: bec30c9764ffff8d39bf47869dadae4b ****/ + /****** BRepMeshData_Model::SetMaxSize ******/ + /****** md5 signature: bec30c9764ffff8d39bf47869dadae4b ******/ %feature("compactdefaultargs") SetMaxSize; %feature("autodoc", " Parameters @@ -753,8 +753,8 @@ Sets maximum size of shape's bounding box. %nodefaultctor BRepMeshData_PCurve; class BRepMeshData_PCurve : public IMeshData_PCurve { public: - /****************** AddPoint ******************/ - /**** md5 signature: b1d43f3062f4eec32549956924a93d1c ****/ + /****** BRepMeshData_PCurve::AddPoint ******/ + /****** md5 signature: b1d43f3062f4eec32549956924a93d1c ******/ %feature("compactdefaultargs") AddPoint; %feature("autodoc", " Parameters @@ -772,8 +772,8 @@ Adds new discretization point to pcurve. ") AddPoint; virtual void AddPoint(const gp_Pnt2d & thePoint, const Standard_Real theParamOnPCurve); - /****************** Clear ******************/ - /**** md5 signature: b91f21d79c57aeb0ab4d6d89d0391c2c ****/ + /****** BRepMeshData_PCurve::Clear ******/ + /****** md5 signature: b91f21d79c57aeb0ab4d6d89d0391c2c ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", " Parameters @@ -790,8 +790,8 @@ Clears parameters list. ") Clear; virtual void Clear(const Standard_Boolean isKeepEndPoints); - /****************** GetIndex ******************/ - /**** md5 signature: 14de5a18fa0133a999b5cff84739f766 ****/ + /****** BRepMeshData_PCurve::GetIndex ******/ + /****** md5 signature: 14de5a18fa0133a999b5cff84739f766 ******/ %feature("compactdefaultargs") GetIndex; %feature("autodoc", " Parameters @@ -808,8 +808,8 @@ Returns index in mesh corresponded to discretization point with the given index. ") GetIndex; virtual Standard_Integer & GetIndex(const Standard_Integer theIndex); - /****************** GetParameter ******************/ - /**** md5 signature: 43c7041b75cad4564a4558a2da55af83 ****/ + /****** BRepMeshData_PCurve::GetParameter ******/ + /****** md5 signature: 43c7041b75cad4564a4558a2da55af83 ******/ %feature("compactdefaultargs") GetParameter; %feature("autodoc", " Parameters @@ -826,8 +826,8 @@ Returns parameter with the given index. ") GetParameter; virtual Standard_Real & GetParameter(const Standard_Integer theIndex); - /****************** GetPoint ******************/ - /**** md5 signature: cf6dfc6bc543dce91044cba5d793fcb2 ****/ + /****** BRepMeshData_PCurve::GetPoint ******/ + /****** md5 signature: cf6dfc6bc543dce91044cba5d793fcb2 ******/ %feature("compactdefaultargs") GetPoint; %feature("autodoc", " Parameters @@ -844,8 +844,8 @@ Returns discretization point with the given index. ") GetPoint; virtual gp_Pnt2d GetPoint(const Standard_Integer theIndex); - /****************** InsertPoint ******************/ - /**** md5 signature: ba146337f4ebc5f84d06489cf31e1ee0 ****/ + /****** BRepMeshData_PCurve::InsertPoint ******/ + /****** md5 signature: ba146337f4ebc5f84d06489cf31e1ee0 ******/ %feature("compactdefaultargs") InsertPoint; %feature("autodoc", " Parameters @@ -864,8 +864,8 @@ Inserts new discretization point at the given position. ") InsertPoint; virtual void InsertPoint(const Standard_Integer thePosition, const gp_Pnt2d & thePoint, const Standard_Real theParamOnPCurve); - /****************** ParametersNb ******************/ - /**** md5 signature: 98955ccca9a9a58d67efd3cf821045d5 ****/ + /****** BRepMeshData_PCurve::ParametersNb ******/ + /****** md5 signature: 98955ccca9a9a58d67efd3cf821045d5 ******/ %feature("compactdefaultargs") ParametersNb; %feature("autodoc", "Return ------- @@ -877,8 +877,8 @@ Returns number of parameters stored in pcurve. ") ParametersNb; virtual Standard_Integer ParametersNb(); - /****************** RemovePoint ******************/ - /**** md5 signature: dc9ca36142ba2044706f1377e29a7b2a ****/ + /****** BRepMeshData_PCurve::RemovePoint ******/ + /****** md5 signature: dc9ca36142ba2044706f1377e29a7b2a ******/ %feature("compactdefaultargs") RemovePoint; %feature("autodoc", " Parameters @@ -986,8 +986,8 @@ Removes point with the given index. %nodefaultctor BRepMeshData_Wire; class BRepMeshData_Wire : public IMeshData_Wire { public: - /****************** AddEdge ******************/ - /**** md5 signature: 5d6a61a9aded474f1c90ff1465972fef ****/ + /****** BRepMeshData_Wire::AddEdge ******/ + /****** md5 signature: 5d6a61a9aded474f1c90ff1465972fef ******/ %feature("compactdefaultargs") AddEdge; %feature("autodoc", " Parameters @@ -1005,8 +1005,8 @@ Adds new discrete edge with specified orientation to wire chain. return index of ") AddEdge; virtual Standard_Integer AddEdge(const IMeshData::IEdgePtr & theDEdge, const TopAbs_Orientation theOrientation); - /****************** EdgesNb ******************/ - /**** md5 signature: d8bed3659eeea9d444f232f4eeeb7350 ****/ + /****** BRepMeshData_Wire::EdgesNb ******/ + /****** md5 signature: d8bed3659eeea9d444f232f4eeeb7350 ******/ %feature("compactdefaultargs") EdgesNb; %feature("autodoc", "Return ------- @@ -1018,8 +1018,8 @@ Gets number of children. ") EdgesNb; virtual Standard_Integer EdgesNb(); - /****************** GetEdge ******************/ - /**** md5 signature: 071d6cbcbf6a096f1abbf54c9f4a9a9e ****/ + /****** BRepMeshData_Wire::GetEdge ******/ + /****** md5 signature: 071d6cbcbf6a096f1abbf54c9f4a9a9e ******/ %feature("compactdefaultargs") GetEdge; %feature("autodoc", " Parameters @@ -1036,8 +1036,8 @@ Gets edge with the given index. ") GetEdge; virtual const IMeshData::IEdgePtr & GetEdge(const Standard_Integer theIndex); - /****************** GetEdgeOrientation ******************/ - /**** md5 signature: 928c9f1f2b575dbdba2dc9dd7c999c8f ****/ + /****** BRepMeshData_Wire::GetEdgeOrientation ******/ + /****** md5 signature: 928c9f1f2b575dbdba2dc9dd7c999c8f ******/ %feature("compactdefaultargs") GetEdgeOrientation; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BRepOffset.i b/src/SWIG_files/wrapper/BRepOffset.i index 06c3e77bf..7c76e22b7 100644 --- a/src/SWIG_files/wrapper/BRepOffset.i +++ b/src/SWIG_files/wrapper/BRepOffset.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPOFFSETDOCSTRING "BRepOffset module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepoffset.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepoffset.html" %enddef %module (package="OCC.Core", docstring=BREPOFFSETDOCSTRING) BRepOffset @@ -257,8 +257,8 @@ typedef NCollection_List BRepOffset_ListOfInterval; %rename(brepoffset) BRepOffset; class BRepOffset { public: - /****************** CollapseSingularities ******************/ - /**** md5 signature: 034b9c1b6a9d8f007623ce760360780f ****/ + /****** BRepOffset::CollapseSingularities ******/ + /****** md5 signature: 034b9c1b6a9d8f007623ce760360780f ******/ %feature("compactdefaultargs") CollapseSingularities; %feature("autodoc", " Parameters @@ -277,8 +277,8 @@ Preprocess surface to be offset (bspline, bezier, or revolution based on bspline ") CollapseSingularities; static opencascade::handle CollapseSingularities(const opencascade::handle & theSurface, const TopoDS_Face & theFace, Standard_Real thePrecision); - /****************** Surface ******************/ - /**** md5 signature: e1ef2a62c87237ebec16000ed6f138e9 ****/ + /****** BRepOffset::Surface ******/ + /****** md5 signature: e1ef2a62c87237ebec16000ed6f138e9 ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", " Parameters @@ -311,8 +311,8 @@ Returns the offset surface computed from the surface at an offsetdista ***************************/ class BRepOffset_Analyse { public: - /****************** BRepOffset_Analyse ******************/ - /**** md5 signature: ba0b94f56b61c28244d4736b236bb3b0 ****/ + /****** BRepOffset_Analyse::BRepOffset_Analyse ******/ + /****** md5 signature: ba0b94f56b61c28244d4736b236bb3b0 ******/ %feature("compactdefaultargs") BRepOffset_Analyse; %feature("autodoc", "Return ------- @@ -324,8 +324,8 @@ Empty c-tor. ") BRepOffset_Analyse; BRepOffset_Analyse(); - /****************** BRepOffset_Analyse ******************/ - /**** md5 signature: 32be8a68049b0d08da84dac039a34740 ****/ + /****** BRepOffset_Analyse::BRepOffset_Analyse ******/ + /****** md5 signature: 32be8a68049b0d08da84dac039a34740 ******/ %feature("compactdefaultargs") BRepOffset_Analyse; %feature("autodoc", " Parameters @@ -343,8 +343,8 @@ C-tor performing the job inside. ") BRepOffset_Analyse; BRepOffset_Analyse(const TopoDS_Shape & theS, const Standard_Real theAngle); - /****************** AddFaces ******************/ - /**** md5 signature: 10bf983ba568690274e73905dc585143 ****/ + /****** BRepOffset_Analyse::AddFaces ******/ + /****** md5 signature: 10bf983ba568690274e73905dc585143 ******/ %feature("compactdefaultargs") AddFaces; %feature("autodoc", " Parameters @@ -364,8 +364,8 @@ Add in the faces of the shell containing where all the connex edges ") AddFaces; void AddFaces(const TopoDS_Face & theFace, TopoDS_Compound & theCo, TopTools_MapOfShape & theMap, const ChFiDS_TypeOfConcavity theType); - /****************** AddFaces ******************/ - /**** md5 signature: 17ecd6e6c902268447968b695dc71930 ****/ + /****** BRepOffset_Analyse::AddFaces ******/ + /****** md5 signature: 17ecd6e6c902268447968b695dc71930 ******/ %feature("compactdefaultargs") AddFaces; %feature("autodoc", " Parameters @@ -386,8 +386,8 @@ Add in the faces of the shell containing where all the connex edges ") AddFaces; void AddFaces(const TopoDS_Face & theFace, TopoDS_Compound & theCo, TopTools_MapOfShape & theMap, const ChFiDS_TypeOfConcavity theType1, const ChFiDS_TypeOfConcavity theType2); - /****************** Ancestors ******************/ - /**** md5 signature: 90ed8d8b7e6bec25a8cae6b70fba0fa0 ****/ + /****** BRepOffset_Analyse::Ancestors ******/ + /****** md5 signature: 90ed8d8b7e6bec25a8cae6b70fba0fa0 ******/ %feature("compactdefaultargs") Ancestors; %feature("autodoc", " Parameters @@ -404,8 +404,8 @@ Returns ancestors for the shape. ") Ancestors; const TopTools_ListOfShape & Ancestors(const TopoDS_Shape & theS); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** BRepOffset_Analyse::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -417,8 +417,8 @@ Clears the content of the algorithm. ") Clear; void Clear(); - /****************** Descendants ******************/ - /**** md5 signature: 7a77c04c1efdc14b9851c2f7c2f4a377 ****/ + /****** BRepOffset_Analyse::Descendants ******/ + /****** md5 signature: 7a77c04c1efdc14b9851c2f7c2f4a377 ******/ %feature("compactdefaultargs") Descendants; %feature("autodoc", " Parameters @@ -436,8 +436,8 @@ Returns the shape descendants. ") Descendants; const TopTools_ListOfShape * Descendants(const TopoDS_Shape & theS, const Standard_Boolean theUpdate = Standard_False); - /****************** EdgeReplacement ******************/ - /**** md5 signature: 0f27e29432c1193c65637801fb97edd1 ****/ + /****** BRepOffset_Analyse::EdgeReplacement ******/ + /****** md5 signature: 0f27e29432c1193c65637801fb97edd1 ******/ %feature("compactdefaultargs") EdgeReplacement; %feature("autodoc", " Parameters @@ -455,8 +455,8 @@ Returns the replacement of the edge in the face. if no replacement exists, retur ") EdgeReplacement; const TopoDS_Edge EdgeReplacement(const TopoDS_Face & theFace, const TopoDS_Edge & theEdge); - /****************** Edges ******************/ - /**** md5 signature: 2fa98c1f2dc772e02cb177190fc303c3 ****/ + /****** BRepOffset_Analyse::Edges ******/ + /****** md5 signature: 2fa98c1f2dc772e02cb177190fc303c3 ******/ %feature("compactdefaultargs") Edges; %feature("autodoc", " Parameters @@ -475,8 +475,8 @@ Stores in all the edges of type on the vertex . ") Edges; void Edges(const TopoDS_Vertex & theV, const ChFiDS_TypeOfConcavity theType, TopTools_ListOfShape & theL); - /****************** Edges ******************/ - /**** md5 signature: 8d2741a252b9cbab42c2cf270c42d66c ****/ + /****** BRepOffset_Analyse::Edges ******/ + /****** md5 signature: 8d2741a252b9cbab42c2cf270c42d66c ******/ %feature("compactdefaultargs") Edges; %feature("autodoc", " Parameters @@ -495,8 +495,8 @@ Stores in all the edges of type on the face . ") Edges; void Edges(const TopoDS_Face & theF, const ChFiDS_TypeOfConcavity theType, TopTools_ListOfShape & theL); - /****************** Explode ******************/ - /**** md5 signature: 337e429f1a29abab09c9fdc78da45c49 ****/ + /****** BRepOffset_Analyse::Explode ******/ + /****** md5 signature: 337e429f1a29abab09c9fdc78da45c49 ******/ %feature("compactdefaultargs") Explode; %feature("autodoc", " Parameters @@ -514,8 +514,8 @@ Explode in compounds of faces where all the connex edges are of type . ") Explode; void Explode(TopTools_ListOfShape & theL, const ChFiDS_TypeOfConcavity theType); - /****************** Explode ******************/ - /**** md5 signature: 5aaa8ac50d0f46e75f1b9dffcaa6d59d ****/ + /****** BRepOffset_Analyse::Explode ******/ + /****** md5 signature: 5aaa8ac50d0f46e75f1b9dffcaa6d59d ******/ %feature("compactdefaultargs") Explode; %feature("autodoc", " Parameters @@ -534,8 +534,8 @@ Explode in compounds of faces where all the connex edges are of type or ") Explode; void Explode(TopTools_ListOfShape & theL, const ChFiDS_TypeOfConcavity theType1, const ChFiDS_TypeOfConcavity theType2); - /****************** Generated ******************/ - /**** md5 signature: 15ef1939924c301a6d85999ccd64b15d ****/ + /****** BRepOffset_Analyse::Generated ******/ + /****** md5 signature: 15ef1939924c301a6d85999ccd64b15d ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -552,8 +552,8 @@ Returns the new face constructed for the edge connecting the two tangent faces h ") Generated; TopoDS_Shape Generated(const TopoDS_Shape & theS); - /****************** HasAncestor ******************/ - /**** md5 signature: 3c3fc9ffdfc1554e2be2aa053b512d0e ****/ + /****** BRepOffset_Analyse::HasAncestor ******/ + /****** md5 signature: 3c3fc9ffdfc1554e2be2aa053b512d0e ******/ %feature("compactdefaultargs") HasAncestor; %feature("autodoc", " Parameters @@ -570,8 +570,8 @@ Checks if the given shape has ancestors. ") HasAncestor; Standard_Boolean HasAncestor(const TopoDS_Shape & theS); - /****************** HasGenerated ******************/ - /**** md5 signature: ec80c2122e56b4b50f0af6fcb37612cb ****/ + /****** BRepOffset_Analyse::HasGenerated ******/ + /****** md5 signature: ec80c2122e56b4b50f0af6fcb37612cb ******/ %feature("compactdefaultargs") HasGenerated; %feature("autodoc", " Parameters @@ -588,8 +588,8 @@ Checks if the edge has generated a new face. ") HasGenerated; Standard_Boolean HasGenerated(const TopoDS_Shape & theS); - /****************** IsDone ******************/ - /**** md5 signature: e385477ab1bec806154173d4a550fd68 ****/ + /****** BRepOffset_Analyse::IsDone ******/ + /****** md5 signature: e385477ab1bec806154173d4a550fd68 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -601,8 +601,8 @@ Returns status of the algorithm. ") IsDone; Standard_Boolean IsDone(); - /****************** NewFaces ******************/ - /**** md5 signature: e63300f5b52c82ed31144b2ab659fa2a ****/ + /****** BRepOffset_Analyse::NewFaces ******/ + /****** md5 signature: e63300f5b52c82ed31144b2ab659fa2a ******/ %feature("compactdefaultargs") NewFaces; %feature("autodoc", "Return ------- @@ -614,8 +614,8 @@ Returns the new faces constructed between tangent faces having different offset ") NewFaces; const TopTools_ListOfShape & NewFaces(); - /****************** Perform ******************/ - /**** md5 signature: 15379b06ecba8382979b6910520f10b4 ****/ + /****** BRepOffset_Analyse::Perform ******/ + /****** md5 signature: 15379b06ecba8382979b6910520f10b4 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -634,8 +634,8 @@ Performs the analysis. ") Perform; void Perform(const TopoDS_Shape & theS, const Standard_Real theAngle, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** SetFaceOffsetMap ******************/ - /**** md5 signature: c0dee5c14e1fc5e4f89a0d54179182fd ****/ + /****** BRepOffset_Analyse::SetFaceOffsetMap ******/ + /****** md5 signature: c0dee5c14e1fc5e4f89a0d54179182fd ******/ %feature("compactdefaultargs") SetFaceOffsetMap; %feature("autodoc", " Parameters @@ -652,8 +652,8 @@ Sets the face-offset data map to analyze tangential cases. ") SetFaceOffsetMap; void SetFaceOffsetMap(const TopTools_DataMapOfShapeReal & theMap); - /****************** SetOffsetValue ******************/ - /**** md5 signature: d7b3a90c1f17c219c0f8c7b1b52b1a42 ****/ + /****** BRepOffset_Analyse::SetOffsetValue ******/ + /****** md5 signature: d7b3a90c1f17c219c0f8c7b1b52b1a42 ******/ %feature("compactdefaultargs") SetOffsetValue; %feature("autodoc", " Parameters @@ -670,8 +670,8 @@ No available documentation. ") SetOffsetValue; void SetOffsetValue(const Standard_Real theOffset); - /****************** TangentEdges ******************/ - /**** md5 signature: fbdd90a0b988e4c630b58c2a22ee477d ****/ + /****** BRepOffset_Analyse::TangentEdges ******/ + /****** md5 signature: fbdd90a0b988e4c630b58c2a22ee477d ******/ %feature("compactdefaultargs") TangentEdges; %feature("autodoc", " Parameters @@ -690,8 +690,8 @@ Set in all the edges of which are tangent to at the verte ") TangentEdges; void TangentEdges(const TopoDS_Edge & theEdge, const TopoDS_Vertex & theVertex, TopTools_ListOfShape & theEdges); - /****************** Type ******************/ - /**** md5 signature: 75adf48a4d01680f070dfc5502b046c1 ****/ + /****** BRepOffset_Analyse::Type ******/ + /****** md5 signature: 75adf48a4d01680f070dfc5502b046c1 ******/ %feature("compactdefaultargs") Type; %feature("autodoc", " Parameters @@ -722,8 +722,8 @@ Returns the connectivity type of the edge. ***************************/ class BRepOffset_Inter2d { public: - /****************** Compute ******************/ - /**** md5 signature: 8676c4f6ddf0fb8dbe22fb366209c8f2 ****/ + /****** BRepOffset_Inter2d::Compute ******/ + /****** md5 signature: 8676c4f6ddf0fb8dbe22fb366209c8f2 ******/ %feature("compactdefaultargs") Compute; %feature("autodoc", " Parameters @@ -746,8 +746,8 @@ Computes the intersections between the edges stored is asdes as descendants of < ") Compute; static void Compute(const opencascade::handle & AsDes, const TopoDS_Face & F, const TopTools_IndexedMapOfShape & NewEdges, const Standard_Real Tol, const TopTools_DataMapOfShapeListOfShape & theEdgeIntEdges, TopTools_IndexedDataMapOfShapeListOfShape & theDMVV, const Message_ProgressRange & theRange); - /****************** ConnexIntByInt ******************/ - /**** md5 signature: 1d06e218233c0cb963048a32785e6a20 ****/ + /****** BRepOffset_Inter2d::ConnexIntByInt ******/ + /****** md5 signature: 1d06e218233c0cb963048a32785e6a20 ******/ %feature("compactdefaultargs") ConnexIntByInt; %feature("autodoc", " Parameters @@ -777,8 +777,8 @@ Computes the intersection between the offset edges of the . all intersection ") ConnexIntByInt; static Standard_Boolean ConnexIntByInt(const TopoDS_Face & FI, BRepOffset_Offset & OFI, TopTools_DataMapOfShapeShape & MES, const TopTools_DataMapOfShapeShape & Build, const opencascade::handle & theAsDes, const opencascade::handle & AsDes2d, const Standard_Real Offset, const Standard_Real Tol, const BRepOffset_Analyse & Analyse, TopTools_IndexedMapOfShape & FacesWithVerts, BRepAlgo_Image & theImageVV, TopTools_DataMapOfShapeListOfShape & theEdgeIntEdges, TopTools_IndexedDataMapOfShapeListOfShape & theDMVV, const Message_ProgressRange & theRange); - /****************** ConnexIntByIntInVert ******************/ - /**** md5 signature: 29b216d0fc2dd04c81eddf2b9ff0af69 ****/ + /****** BRepOffset_Inter2d::ConnexIntByIntInVert ******/ + /****** md5 signature: 29b216d0fc2dd04c81eddf2b9ff0af69 ******/ %feature("compactdefaultargs") ConnexIntByIntInVert; %feature("autodoc", " Parameters @@ -804,8 +804,8 @@ Computes the intersection between the offset edges generated from vertices and s ") ConnexIntByIntInVert; static void ConnexIntByIntInVert(const TopoDS_Face & FI, BRepOffset_Offset & OFI, TopTools_DataMapOfShapeShape & MES, const TopTools_DataMapOfShapeShape & Build, const opencascade::handle & AsDes, const opencascade::handle & AsDes2d, const Standard_Real Tol, const BRepOffset_Analyse & Analyse, TopTools_IndexedDataMapOfShapeListOfShape & theDMVV, const Message_ProgressRange & theRange); - /****************** ExtentEdge ******************/ - /**** md5 signature: b18af25b66d4abbae97b9437f24da597 ****/ + /****** BRepOffset_Inter2d::ExtentEdge ******/ + /****** md5 signature: b18af25b66d4abbae97b9437f24da597 ******/ %feature("compactdefaultargs") ExtentEdge; %feature("autodoc", " Parameters @@ -824,8 +824,8 @@ Extents the edge. ") ExtentEdge; static Standard_Boolean ExtentEdge(const TopoDS_Edge & E, TopoDS_Edge & NE, const Standard_Real theOffset); - /****************** FuseVertices ******************/ - /**** md5 signature: 13e662b268b3ad2a3fc5abb84641c05a ****/ + /****** BRepOffset_Inter2d::FuseVertices ******/ + /****** md5 signature: 13e662b268b3ad2a3fc5abb84641c05a ******/ %feature("compactdefaultargs") FuseVertices; %feature("autodoc", " Parameters @@ -858,8 +858,8 @@ Fuses the chains of vertices in the thedmvv and updates asdes by replacing the o ***************************/ class BRepOffset_Inter3d { public: - /****************** BRepOffset_Inter3d ******************/ - /**** md5 signature: a50e9a2c6e0d91514a6703132cf5226e ****/ + /****** BRepOffset_Inter3d::BRepOffset_Inter3d ******/ + /****** md5 signature: a50e9a2c6e0d91514a6703132cf5226e ******/ %feature("compactdefaultargs") BRepOffset_Inter3d; %feature("autodoc", " Parameters @@ -878,8 +878,8 @@ Constructor. ") BRepOffset_Inter3d; BRepOffset_Inter3d(const Handle ( BRepAlgo_AsDes ) & AsDes, const TopAbs_State Side, const Standard_Real Tol); - /****************** CompletInt ******************/ - /**** md5 signature: 3d14748ac531a357f6f40197c38eda01 ****/ + /****** BRepOffset_Inter3d::CompletInt ******/ + /****** md5 signature: 3d14748ac531a357f6f40197c38eda01 ******/ %feature("compactdefaultargs") CompletInt; %feature("autodoc", " Parameters @@ -898,8 +898,8 @@ No available documentation. ") CompletInt; void CompletInt(const TopTools_ListOfShape & SetOfFaces, const BRepAlgo_Image & InitOffsetFace, const Message_ProgressRange & theRange); - /****************** ConnexIntByArc ******************/ - /**** md5 signature: 04b429aa49d7537664fab974813577f7 ****/ + /****** BRepOffset_Inter3d::ConnexIntByArc ******/ + /****** md5 signature: 04b429aa49d7537664fab974813577f7 ******/ %feature("compactdefaultargs") ConnexIntByArc; %feature("autodoc", " Parameters @@ -920,8 +920,8 @@ Computes connections of the offset faces that have to be connected by arcs. ") ConnexIntByArc; void ConnexIntByArc(const TopTools_ListOfShape & SetOfFaces, const TopoDS_Shape & ShapeInit, const BRepOffset_Analyse & Analyse, const BRepAlgo_Image & InitOffsetFace, const Message_ProgressRange & theRange); - /****************** ConnexIntByInt ******************/ - /**** md5 signature: 0076ca9fe52ebefcccba69f1a02c3046 ****/ + /****** BRepOffset_Inter3d::ConnexIntByInt ******/ + /****** md5 signature: 0076ca9fe52ebefcccba69f1a02c3046 ******/ %feature("compactdefaultargs") ConnexIntByInt; %feature("autodoc", " Parameters @@ -945,8 +945,8 @@ Computes intersection of the offset faces that have to be connected by sharp edg ") ConnexIntByInt; void ConnexIntByInt(const TopoDS_Shape & SI, const BRepOffset_DataMapOfShapeOffset & MapSF, const BRepOffset_Analyse & A, TopTools_DataMapOfShapeShape & MES, TopTools_DataMapOfShapeShape & Build, TopTools_ListOfShape & Failed, const Message_ProgressRange & theRange, const Standard_Boolean bIsPlanar = Standard_False); - /****************** ContextIntByArc ******************/ - /**** md5 signature: 77469bdfc3371b922103cfe1e74b59c6 ****/ + /****** BRepOffset_Inter3d::ContextIntByArc ******/ + /****** md5 signature: 77469bdfc3371b922103cfe1e74b59c6 ******/ %feature("compactdefaultargs") ContextIntByArc; %feature("autodoc", " Parameters @@ -968,8 +968,8 @@ Computes connections of the not offset faces that have to be connected by arcs. ") ContextIntByArc; void ContextIntByArc(const TopTools_IndexedMapOfShape & ContextFaces, const Standard_Boolean ExtentContext, const BRepOffset_Analyse & Analyse, const BRepAlgo_Image & InitOffsetFace, BRepAlgo_Image & InitOffsetEdge, const Message_ProgressRange & theRange); - /****************** ContextIntByInt ******************/ - /**** md5 signature: ae35b5925db57bda395571dcc47d3c11 ****/ + /****** BRepOffset_Inter3d::ContextIntByInt ******/ + /****** md5 signature: ae35b5925db57bda395571dcc47d3c11 ******/ %feature("compactdefaultargs") ContextIntByInt; %feature("autodoc", " Parameters @@ -994,8 +994,8 @@ Computes intersection with not offset faces . ") ContextIntByInt; void ContextIntByInt(const TopTools_IndexedMapOfShape & ContextFaces, const Standard_Boolean ExtentContext, const BRepOffset_DataMapOfShapeOffset & MapSF, const BRepOffset_Analyse & A, TopTools_DataMapOfShapeShape & MES, TopTools_DataMapOfShapeShape & Build, TopTools_ListOfShape & Failed, const Message_ProgressRange & theRange, const Standard_Boolean bIsPlanar = Standard_False); - /****************** FaceInter ******************/ - /**** md5 signature: 62d9b8b2341ea348e10a9705c1e1a1d6 ****/ + /****** BRepOffset_Inter3d::FaceInter ******/ + /****** md5 signature: 62d9b8b2341ea348e10a9705c1e1a1d6 ******/ %feature("compactdefaultargs") FaceInter; %feature("autodoc", " Parameters @@ -1014,8 +1014,8 @@ Computes intersection of pair of faces. ") FaceInter; void FaceInter(const TopoDS_Face & F1, const TopoDS_Face & F2, const BRepAlgo_Image & InitOffsetFace); - /****************** IsDone ******************/ - /**** md5 signature: 8801efe525a67dac919cc689e660bf42 ****/ + /****** BRepOffset_Inter3d::IsDone ******/ + /****** md5 signature: 8801efe525a67dac919cc689e660bf42 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", " Parameters @@ -1033,8 +1033,8 @@ Checks if the pair of faces has already been treated. ") IsDone; Standard_Boolean IsDone(const TopoDS_Face & F1, const TopoDS_Face & F2); - /****************** NewEdges ******************/ - /**** md5 signature: 975ce143c1c9ad7032004090c4ea255a ****/ + /****** BRepOffset_Inter3d::NewEdges ******/ + /****** md5 signature: 975ce143c1c9ad7032004090c4ea255a ******/ %feature("compactdefaultargs") NewEdges; %feature("autodoc", "Return ------- @@ -1046,8 +1046,8 @@ Returns new edges. ") NewEdges; TopTools_IndexedMapOfShape & NewEdges(); - /****************** SetDone ******************/ - /**** md5 signature: d9f3a39ef77387fe413720595d42df62 ****/ + /****** BRepOffset_Inter3d::SetDone ******/ + /****** md5 signature: d9f3a39ef77387fe413720595d42df62 ******/ %feature("compactdefaultargs") SetDone; %feature("autodoc", " Parameters @@ -1065,8 +1065,8 @@ Marks the pair of faces as already intersected. ") SetDone; void SetDone(const TopoDS_Face & F1, const TopoDS_Face & F2); - /****************** TouchedFaces ******************/ - /**** md5 signature: e1597833f2e42e18789e5809f3a43359 ****/ + /****** BRepOffset_Inter3d::TouchedFaces ******/ + /****** md5 signature: e1597833f2e42e18789e5809f3a43359 ******/ %feature("compactdefaultargs") TouchedFaces; %feature("autodoc", "Return ------- @@ -1092,8 +1092,8 @@ Returns touched faces. ****************************/ class BRepOffset_Interval { public: - /****************** BRepOffset_Interval ******************/ - /**** md5 signature: 32b6085f345b38e32fe26ce2f9fd3dd1 ****/ + /****** BRepOffset_Interval::BRepOffset_Interval ******/ + /****** md5 signature: 32b6085f345b38e32fe26ce2f9fd3dd1 ******/ %feature("compactdefaultargs") BRepOffset_Interval; %feature("autodoc", "Return ------- @@ -1105,8 +1105,8 @@ No available documentation. ") BRepOffset_Interval; BRepOffset_Interval(); - /****************** BRepOffset_Interval ******************/ - /**** md5 signature: dccedca1cdcdc8f366498a03194313c3 ****/ + /****** BRepOffset_Interval::BRepOffset_Interval ******/ + /****** md5 signature: dccedca1cdcdc8f366498a03194313c3 ******/ %feature("compactdefaultargs") BRepOffset_Interval; %feature("autodoc", " Parameters @@ -1125,8 +1125,8 @@ No available documentation. ") BRepOffset_Interval; BRepOffset_Interval(const Standard_Real U1, const Standard_Real U2, const ChFiDS_TypeOfConcavity Type); - /****************** First ******************/ - /**** md5 signature: 1099c5bd36f358fe828b1d6d585b9530 ****/ + /****** BRepOffset_Interval::First ******/ + /****** md5 signature: 1099c5bd36f358fe828b1d6d585b9530 ******/ %feature("compactdefaultargs") First; %feature("autodoc", " Parameters @@ -1143,8 +1143,8 @@ No available documentation. ") First; void First(const Standard_Real U); - /****************** First ******************/ - /**** md5 signature: 009dd98af15e46b2da286731f40e1839 ****/ + /****** BRepOffset_Interval::First ******/ + /****** md5 signature: 009dd98af15e46b2da286731f40e1839 ******/ %feature("compactdefaultargs") First; %feature("autodoc", "Return ------- @@ -1156,8 +1156,8 @@ No available documentation. ") First; Standard_Real First(); - /****************** Last ******************/ - /**** md5 signature: 118eadfc67f49ba000d3d60e0425edef ****/ + /****** BRepOffset_Interval::Last ******/ + /****** md5 signature: 118eadfc67f49ba000d3d60e0425edef ******/ %feature("compactdefaultargs") Last; %feature("autodoc", " Parameters @@ -1174,8 +1174,8 @@ No available documentation. ") Last; void Last(const Standard_Real U); - /****************** Last ******************/ - /**** md5 signature: 4c8063c237a4f73018a7949da8aef9fb ****/ + /****** BRepOffset_Interval::Last ******/ + /****** md5 signature: 4c8063c237a4f73018a7949da8aef9fb ******/ %feature("compactdefaultargs") Last; %feature("autodoc", "Return ------- @@ -1187,8 +1187,8 @@ No available documentation. ") Last; Standard_Real Last(); - /****************** Type ******************/ - /**** md5 signature: b24169004495551132f32afd9d3903e6 ****/ + /****** BRepOffset_Interval::Type ******/ + /****** md5 signature: b24169004495551132f32afd9d3903e6 ******/ %feature("compactdefaultargs") Type; %feature("autodoc", " Parameters @@ -1205,8 +1205,8 @@ No available documentation. ") Type; void Type(const ChFiDS_TypeOfConcavity T); - /****************** Type ******************/ - /**** md5 signature: 4bcc17f191edc1fc69fd29dda8361b02 ****/ + /****** BRepOffset_Interval::Type ******/ + /****** md5 signature: 4bcc17f191edc1fc69fd29dda8361b02 ******/ %feature("compactdefaultargs") Type; %feature("autodoc", "Return ------- @@ -1232,8 +1232,8 @@ No available documentation. *****************************/ class BRepOffset_MakeLoops { public: - /****************** BRepOffset_MakeLoops ******************/ - /**** md5 signature: 29ed29e42e0a574e9a47d70ba344ba9f ****/ + /****** BRepOffset_MakeLoops::BRepOffset_MakeLoops ******/ + /****** md5 signature: 29ed29e42e0a574e9a47d70ba344ba9f ******/ %feature("compactdefaultargs") BRepOffset_MakeLoops; %feature("autodoc", "Return ------- @@ -1245,8 +1245,8 @@ No available documentation. ") BRepOffset_MakeLoops; BRepOffset_MakeLoops(); - /****************** Build ******************/ - /**** md5 signature: a3ef36c00947a38334570c219cb36bba ****/ + /****** BRepOffset_MakeLoops::Build ******/ + /****** md5 signature: a3ef36c00947a38334570c219cb36bba ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -1267,8 +1267,8 @@ No available documentation. ") Build; void Build(const TopTools_ListOfShape & LF, const opencascade::handle & AsDes, BRepAlgo_Image & Image, BRepAlgo_Image & theImageVV, const Message_ProgressRange & theRange); - /****************** BuildFaces ******************/ - /**** md5 signature: db5370c8364c7b784d98eba5f5783e25 ****/ + /****** BRepOffset_MakeLoops::BuildFaces ******/ + /****** md5 signature: db5370c8364c7b784d98eba5f5783e25 ******/ %feature("compactdefaultargs") BuildFaces; %feature("autodoc", " Parameters @@ -1288,8 +1288,8 @@ No available documentation. ") BuildFaces; void BuildFaces(const TopTools_ListOfShape & LF, const opencascade::handle & AsDes, BRepAlgo_Image & Image, const Message_ProgressRange & theRange); - /****************** BuildOnContext ******************/ - /**** md5 signature: 3696d929e7c8f5753dbdac8d11ecc214 ****/ + /****** BRepOffset_MakeLoops::BuildOnContext ******/ + /****** md5 signature: 3696d929e7c8f5753dbdac8d11ecc214 ******/ %feature("compactdefaultargs") BuildOnContext; %feature("autodoc", " Parameters @@ -1325,8 +1325,8 @@ No available documentation. ******************************/ class BRepOffset_MakeOffset { public: - /****************** BRepOffset_MakeOffset ******************/ - /**** md5 signature: 41f8a468e07d2c2db2e9868220325beb ****/ + /****** BRepOffset_MakeOffset::BRepOffset_MakeOffset ******/ + /****** md5 signature: 41f8a468e07d2c2db2e9868220325beb ******/ %feature("compactdefaultargs") BRepOffset_MakeOffset; %feature("autodoc", "Return ------- @@ -1338,8 +1338,8 @@ No available documentation. ") BRepOffset_MakeOffset; BRepOffset_MakeOffset(); - /****************** BRepOffset_MakeOffset ******************/ - /**** md5 signature: ee57348738e6773115f85db9e79ce047 ****/ + /****** BRepOffset_MakeOffset::BRepOffset_MakeOffset ******/ + /****** md5 signature: ee57348738e6773115f85db9e79ce047 ******/ %feature("compactdefaultargs") BRepOffset_MakeOffset; %feature("autodoc", " Parameters @@ -1365,8 +1365,8 @@ No available documentation. ") BRepOffset_MakeOffset; BRepOffset_MakeOffset(const TopoDS_Shape & S, const Standard_Real Offset, const Standard_Real Tol, const BRepOffset_Mode Mode = BRepOffset_Skin, const Standard_Boolean Intersection = Standard_False, const Standard_Boolean SelfInter = Standard_False, const GeomAbs_JoinType Join = GeomAbs_Arc, const Standard_Boolean Thickening = Standard_False, const Standard_Boolean RemoveIntEdges = Standard_False, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** AddFace ******************/ - /**** md5 signature: 5fecadaf3ef2e154bc4683eed0767084 ****/ + /****** BRepOffset_MakeOffset::AddFace ******/ + /****** md5 signature: 5fecadaf3ef2e154bc4683eed0767084 ******/ %feature("compactdefaultargs") AddFace; %feature("autodoc", " Parameters @@ -1383,8 +1383,8 @@ Add closing faces, has to be in the initial shape s. ") AddFace; void AddFace(const TopoDS_Face & F); - /****************** AllowLinearization ******************/ - /**** md5 signature: fc3aa2ec2d80823e0e6cfd67abb9df4c ****/ + /****** BRepOffset_MakeOffset::AllowLinearization ******/ + /****** md5 signature: fc3aa2ec2d80823e0e6cfd67abb9df4c ******/ %feature("compactdefaultargs") AllowLinearization; %feature("autodoc", " Parameters @@ -1401,8 +1401,8 @@ Changes the flag allowing the linearization. ") AllowLinearization; void AllowLinearization(const Standard_Boolean theIsAllowed); - /****************** CheckInputData ******************/ - /**** md5 signature: 9afa07862279ffa138a4fd97c69973f1 ****/ + /****** BRepOffset_MakeOffset::CheckInputData ******/ + /****** md5 signature: 9afa07862279ffa138a4fd97c69973f1 ******/ %feature("compactdefaultargs") CheckInputData; %feature("autodoc", " Parameters @@ -1419,8 +1419,8 @@ Makes pre analysis of possibility offset perform. use method error() to get more ") CheckInputData; Standard_Boolean CheckInputData(const Message_ProgressRange & theRange); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** BRepOffset_MakeOffset::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -1432,8 +1432,8 @@ No available documentation. ") Clear; void Clear(); - /****************** ClosingFaces ******************/ - /**** md5 signature: 028fe8cbc6a2b90f162ab7ff10002b87 ****/ + /****** BRepOffset_MakeOffset::ClosingFaces ******/ + /****** md5 signature: 028fe8cbc6a2b90f162ab7ff10002b87 ******/ %feature("compactdefaultargs") ClosingFaces; %feature("autodoc", "Return ------- @@ -1445,8 +1445,8 @@ Returns the list of closing faces stores by addface. ") ClosingFaces; const TopTools_IndexedMapOfShape & ClosingFaces(); - /****************** Error ******************/ - /**** md5 signature: 204aa201182f580c2b3b629785fe7270 ****/ + /****** BRepOffset_MakeOffset::Error ******/ + /****** md5 signature: 204aa201182f580c2b3b629785fe7270 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", "Return ------- @@ -1458,8 +1458,8 @@ Returns information about offset state. ") Error; BRepOffset_Error Error(); - /****************** Generated ******************/ - /**** md5 signature: 902551eb6fcfb35ec8c1137ae3d18685 ****/ + /****** BRepOffset_MakeOffset::Generated ******/ + /****** md5 signature: 902551eb6fcfb35ec8c1137ae3d18685 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -1476,8 +1476,8 @@ Returns the list of shapes generated from the shape . ") Generated; const TopTools_ListOfShape & Generated(const TopoDS_Shape & theS); - /****************** GetBadShape ******************/ - /**** md5 signature: ba57b2eb9f7240c2efaee696f343f099 ****/ + /****** BRepOffset_MakeOffset::GetBadShape ******/ + /****** md5 signature: ba57b2eb9f7240c2efaee696f343f099 ******/ %feature("compactdefaultargs") GetBadShape; %feature("autodoc", "Return ------- @@ -1489,8 +1489,8 @@ Return bad shape, which obtained in checkinputdata. ") GetBadShape; const TopoDS_Shape GetBadShape(); - /****************** GetJoinType ******************/ - /**** md5 signature: 98bbd653674d56f0804dd681f91e2cf5 ****/ + /****** BRepOffset_MakeOffset::GetJoinType ******/ + /****** md5 signature: 98bbd653674d56f0804dd681f91e2cf5 ******/ %feature("compactdefaultargs") GetJoinType; %feature("autodoc", "Return ------- @@ -1502,8 +1502,8 @@ Returns myjoin. ") GetJoinType; GeomAbs_JoinType GetJoinType(); - /****************** InitShape ******************/ - /**** md5 signature: 4828a2e04f0d05c4aeddd543fb871f06 ****/ + /****** BRepOffset_MakeOffset::InitShape ******/ + /****** md5 signature: 4828a2e04f0d05c4aeddd543fb871f06 ******/ %feature("compactdefaultargs") InitShape; %feature("autodoc", "Return ------- @@ -1515,8 +1515,8 @@ No available documentation. ") InitShape; const TopoDS_Shape InitShape(); - /****************** Initialize ******************/ - /**** md5 signature: b189dc4c3027834b3cc5d35d26f288df ****/ + /****** BRepOffset_MakeOffset::Initialize ******/ + /****** md5 signature: b189dc4c3027834b3cc5d35d26f288df ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -1541,8 +1541,8 @@ No available documentation. ") Initialize; void Initialize(const TopoDS_Shape & S, const Standard_Real Offset, const Standard_Real Tol, const BRepOffset_Mode Mode = BRepOffset_Skin, const Standard_Boolean Intersection = Standard_False, const Standard_Boolean SelfInter = Standard_False, const GeomAbs_JoinType Join = GeomAbs_Arc, const Standard_Boolean Thickening = Standard_False, const Standard_Boolean RemoveIntEdges = Standard_False); - /****************** IsDeleted ******************/ - /**** md5 signature: d29922d0ec4acc76ba876d76a5a2a863 ****/ + /****** BRepOffset_MakeOffset::IsDeleted ******/ + /****** md5 signature: d29922d0ec4acc76ba876d76a5a2a863 ******/ %feature("compactdefaultargs") IsDeleted; %feature("autodoc", " Parameters @@ -1559,8 +1559,8 @@ Returns true if the shape s has been deleted. ") IsDeleted; Standard_Boolean IsDeleted(const TopoDS_Shape & S); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepOffset_MakeOffset::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -1572,8 +1572,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** MakeOffsetShape ******************/ - /**** md5 signature: 90eb5beb7eaec8a61b9373222b37bf2a ****/ + /****** BRepOffset_MakeOffset::MakeOffsetShape ******/ + /****** md5 signature: 90eb5beb7eaec8a61b9373222b37bf2a ******/ %feature("compactdefaultargs") MakeOffsetShape; %feature("autodoc", " Parameters @@ -1590,8 +1590,8 @@ No available documentation. ") MakeOffsetShape; void MakeOffsetShape(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** MakeThickSolid ******************/ - /**** md5 signature: b65451d4fcfd016c468dfc9dd1fc4dc2 ****/ + /****** BRepOffset_MakeOffset::MakeThickSolid ******/ + /****** md5 signature: b65451d4fcfd016c468dfc9dd1fc4dc2 ******/ %feature("compactdefaultargs") MakeThickSolid; %feature("autodoc", " Parameters @@ -1608,8 +1608,8 @@ No available documentation. ") MakeThickSolid; void MakeThickSolid(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Modified ******************/ - /**** md5 signature: 5d9ac8e1ec1d1479a40fa0773fd021b0 ****/ + /****** BRepOffset_MakeOffset::Modified ******/ + /****** md5 signature: 5d9ac8e1ec1d1479a40fa0773fd021b0 ******/ %feature("compactdefaultargs") Modified; %feature("autodoc", " Parameters @@ -1626,8 +1626,8 @@ Returns the list of shapes modified from the shape . ") Modified; const TopTools_ListOfShape & Modified(const TopoDS_Shape & theS); - /****************** OffsetEdgesFromShapes ******************/ - /**** md5 signature: 68926d492e1e9d71593e4c5da8672674 ****/ + /****** BRepOffset_MakeOffset::OffsetEdgesFromShapes ******/ + /****** md5 signature: 68926d492e1e9d71593e4c5da8672674 ******/ %feature("compactdefaultargs") OffsetEdgesFromShapes; %feature("autodoc", "Return ------- @@ -1639,8 +1639,8 @@ Returns containing links between initials shapes and offset edges. ") OffsetEdgesFromShapes; const BRepAlgo_Image & OffsetEdgesFromShapes(); - /****************** OffsetFacesFromShapes ******************/ - /**** md5 signature: 29688b3f620832bbca96a758804ee150 ****/ + /****** BRepOffset_MakeOffset::OffsetFacesFromShapes ******/ + /****** md5 signature: 29688b3f620832bbca96a758804ee150 ******/ %feature("compactdefaultargs") OffsetFacesFromShapes; %feature("autodoc", "Return ------- @@ -1652,8 +1652,8 @@ Returns containing links between initials shapes and offset faces. ") OffsetFacesFromShapes; const BRepAlgo_Image & OffsetFacesFromShapes(); - /****************** SetOffsetOnFace ******************/ - /**** md5 signature: 9f0ed497427d1c6797537dcaf6828afd ****/ + /****** BRepOffset_MakeOffset::SetOffsetOnFace ******/ + /****** md5 signature: 9f0ed497427d1c6797537dcaf6828afd ******/ %feature("compactdefaultargs") SetOffsetOnFace; %feature("autodoc", " Parameters @@ -1671,8 +1671,8 @@ Set the offset on the face . ") SetOffsetOnFace; void SetOffsetOnFace(const TopoDS_Face & F, const Standard_Real Off); - /****************** Shape ******************/ - /**** md5 signature: e2e979bbf0e2f5cedfc0e482bf183e08 ****/ + /****** BRepOffset_MakeOffset::Shape ******/ + /****** md5 signature: e2e979bbf0e2f5cedfc0e482bf183e08 ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -1702,8 +1702,8 @@ No available documentation. ************************************/ class BRepOffset_MakeSimpleOffset { public: - /****************** BRepOffset_MakeSimpleOffset ******************/ - /**** md5 signature: 2c6611a6b659d792eed00a13961fb53b ****/ + /****** BRepOffset_MakeSimpleOffset::BRepOffset_MakeSimpleOffset ******/ + /****** md5 signature: 2c6611a6b659d792eed00a13961fb53b ******/ %feature("compactdefaultargs") BRepOffset_MakeSimpleOffset; %feature("autodoc", "Return ------- @@ -1715,8 +1715,8 @@ Constructor. does nothing. ") BRepOffset_MakeSimpleOffset; BRepOffset_MakeSimpleOffset(); - /****************** BRepOffset_MakeSimpleOffset ******************/ - /**** md5 signature: 7c34a0a9350729d65f444070ff18aeca ****/ + /****** BRepOffset_MakeSimpleOffset::BRepOffset_MakeSimpleOffset ******/ + /****** md5 signature: 7c34a0a9350729d65f444070ff18aeca ******/ %feature("compactdefaultargs") BRepOffset_MakeSimpleOffset; %feature("autodoc", " Parameters @@ -1734,8 +1734,8 @@ Constructor. ") BRepOffset_MakeSimpleOffset; BRepOffset_MakeSimpleOffset(const TopoDS_Shape & theInputShape, const Standard_Real theOffsetValue); - /****************** Generated ******************/ - /**** md5 signature: 24159a2591570d74b47fceb984e706dd ****/ + /****** BRepOffset_MakeSimpleOffset::Generated ******/ + /****** md5 signature: 24159a2591570d74b47fceb984e706dd ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -1752,8 +1752,8 @@ Returns result shape for the given one (if exists). ") Generated; const TopoDS_Shape Generated(const TopoDS_Shape & theShape); - /****************** GetBuildSolidFlag ******************/ - /**** md5 signature: afbccb55f157dbee65be1e2d2ebd6c2b ****/ + /****** BRepOffset_MakeSimpleOffset::GetBuildSolidFlag ******/ + /****** md5 signature: afbccb55f157dbee65be1e2d2ebd6c2b ******/ %feature("compactdefaultargs") GetBuildSolidFlag; %feature("autodoc", "Return ------- @@ -1765,8 +1765,8 @@ Gets solid building flag. ") GetBuildSolidFlag; Standard_Boolean GetBuildSolidFlag(); - /****************** GetError ******************/ - /**** md5 signature: 6c2f2530ac0f252c40f9e7ae6ee1cceb ****/ + /****** BRepOffset_MakeSimpleOffset::GetError ******/ + /****** md5 signature: 6c2f2530ac0f252c40f9e7ae6ee1cceb ******/ %feature("compactdefaultargs") GetError; %feature("autodoc", "Return ------- @@ -1778,8 +1778,8 @@ Gets error code. ") GetError; BRepOffsetSimple_Status GetError(); - /****************** GetErrorMessage ******************/ - /**** md5 signature: acb01a02dfab36d96178c70a4923d04f ****/ + /****** BRepOffset_MakeSimpleOffset::GetErrorMessage ******/ + /****** md5 signature: acb01a02dfab36d96178c70a4923d04f ******/ %feature("compactdefaultargs") GetErrorMessage; %feature("autodoc", "Return ------- @@ -1791,8 +1791,8 @@ Gets error message. ") GetErrorMessage; TCollection_AsciiString GetErrorMessage(); - /****************** GetOffsetValue ******************/ - /**** md5 signature: 8005d5a499c0ed572037768baf367387 ****/ + /****** BRepOffset_MakeSimpleOffset::GetOffsetValue ******/ + /****** md5 signature: 8005d5a499c0ed572037768baf367387 ******/ %feature("compactdefaultargs") GetOffsetValue; %feature("autodoc", "Return ------- @@ -1804,8 +1804,8 @@ Gets offset value. ") GetOffsetValue; Standard_Real GetOffsetValue(); - /****************** GetResultShape ******************/ - /**** md5 signature: 587cfc26c0e74835b70343e649833966 ****/ + /****** BRepOffset_MakeSimpleOffset::GetResultShape ******/ + /****** md5 signature: 587cfc26c0e74835b70343e649833966 ******/ %feature("compactdefaultargs") GetResultShape; %feature("autodoc", "Return ------- @@ -1817,8 +1817,8 @@ Returns result shape. ") GetResultShape; const TopoDS_Shape GetResultShape(); - /****************** GetTolerance ******************/ - /**** md5 signature: 08094ae040a166d1b252ee02000bca27 ****/ + /****** BRepOffset_MakeSimpleOffset::GetTolerance ******/ + /****** md5 signature: 08094ae040a166d1b252ee02000bca27 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", "Return ------- @@ -1830,8 +1830,8 @@ Gets tolerance (used for handling singularities). ") GetTolerance; Standard_Real GetTolerance(); - /****************** Initialize ******************/ - /**** md5 signature: 53d0474fdce0ccd7a1ef47f942278ecf ****/ + /****** BRepOffset_MakeSimpleOffset::Initialize ******/ + /****** md5 signature: 53d0474fdce0ccd7a1ef47f942278ecf ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -1849,8 +1849,8 @@ Initialies shape for modifications. ") Initialize; void Initialize(const TopoDS_Shape & theInputShape, const Standard_Real theOffsetValue); - /****************** IsDone ******************/ - /**** md5 signature: e385477ab1bec806154173d4a550fd68 ****/ + /****** BRepOffset_MakeSimpleOffset::IsDone ******/ + /****** md5 signature: e385477ab1bec806154173d4a550fd68 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -1862,8 +1862,8 @@ Gets done state. ") IsDone; Standard_Boolean IsDone(); - /****************** Modified ******************/ - /**** md5 signature: 0ab0361e49e1bf256b9fc5a21ac6a9fa ****/ + /****** BRepOffset_MakeSimpleOffset::Modified ******/ + /****** md5 signature: 0ab0361e49e1bf256b9fc5a21ac6a9fa ******/ %feature("compactdefaultargs") Modified; %feature("autodoc", " Parameters @@ -1880,8 +1880,8 @@ Returns modified shape for the given one (if exists). ") Modified; const TopoDS_Shape Modified(const TopoDS_Shape & theShape); - /****************** Perform ******************/ - /**** md5 signature: c04b01412cba7220c024b5eb4532697f ****/ + /****** BRepOffset_MakeSimpleOffset::Perform ******/ + /****** md5 signature: c04b01412cba7220c024b5eb4532697f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", "Return ------- @@ -1893,8 +1893,8 @@ Computes offset shape. ") Perform; void Perform(); - /****************** SetBuildSolidFlag ******************/ - /**** md5 signature: c186cdaaf2a4ad2b8f5b88a7059cdef8 ****/ + /****** BRepOffset_MakeSimpleOffset::SetBuildSolidFlag ******/ + /****** md5 signature: c186cdaaf2a4ad2b8f5b88a7059cdef8 ******/ %feature("compactdefaultargs") SetBuildSolidFlag; %feature("autodoc", " Parameters @@ -1911,8 +1911,8 @@ Sets solid building flag. ") SetBuildSolidFlag; void SetBuildSolidFlag(const Standard_Boolean theBuildFlag); - /****************** SetOffsetValue ******************/ - /**** md5 signature: 44f68d85ca5c9845fd9b46e2a40b5809 ****/ + /****** BRepOffset_MakeSimpleOffset::SetOffsetValue ******/ + /****** md5 signature: 44f68d85ca5c9845fd9b46e2a40b5809 ******/ %feature("compactdefaultargs") SetOffsetValue; %feature("autodoc", " Parameters @@ -1929,8 +1929,8 @@ Sets offset value. ") SetOffsetValue; void SetOffsetValue(const Standard_Real theOffsetValue); - /****************** SetTolerance ******************/ - /**** md5 signature: a3fa8276dd955a9eca26b4c2f0297293 ****/ + /****** BRepOffset_MakeSimpleOffset::SetTolerance ******/ + /****** md5 signature: a3fa8276dd955a9eca26b4c2f0297293 ******/ %feature("compactdefaultargs") SetTolerance; %feature("autodoc", " Parameters @@ -1965,8 +1965,8 @@ Sets tolerance (used for handling singularities). **************************/ class BRepOffset_Offset { public: - /****************** BRepOffset_Offset ******************/ - /**** md5 signature: c8f3208843098580d5c3b0e183e1bd08 ****/ + /****** BRepOffset_Offset::BRepOffset_Offset ******/ + /****** md5 signature: c8f3208843098580d5c3b0e183e1bd08 ******/ %feature("compactdefaultargs") BRepOffset_Offset; %feature("autodoc", "Return ------- @@ -1978,8 +1978,8 @@ No available documentation. ") BRepOffset_Offset; BRepOffset_Offset(); - /****************** BRepOffset_Offset ******************/ - /**** md5 signature: 437bfe065cea9e5e95955d607da221a3 ****/ + /****** BRepOffset_Offset::BRepOffset_Offset ******/ + /****** md5 signature: 437bfe065cea9e5e95955d607da221a3 ******/ %feature("compactdefaultargs") BRepOffset_Offset; %feature("autodoc", " Parameters @@ -1999,8 +1999,8 @@ No available documentation. ") BRepOffset_Offset; BRepOffset_Offset(const TopoDS_Face & Face, const Standard_Real Offset, const Standard_Boolean OffsetOutside = Standard_True, const GeomAbs_JoinType JoinType = GeomAbs_Arc); - /****************** BRepOffset_Offset ******************/ - /**** md5 signature: 4a75c6b0a6934ea4df38a31848783ca4 ****/ + /****** BRepOffset_Offset::BRepOffset_Offset ******/ + /****** md5 signature: 4a75c6b0a6934ea4df38a31848783ca4 ******/ %feature("compactdefaultargs") BRepOffset_Offset; %feature("autodoc", " Parameters @@ -2021,8 +2021,8 @@ This method will be called when you want to share the edges soon generated from ") BRepOffset_Offset; BRepOffset_Offset(const TopoDS_Face & Face, const Standard_Real Offset, const TopTools_DataMapOfShapeShape & Created, const Standard_Boolean OffsetOutside = Standard_True, const GeomAbs_JoinType JoinType = GeomAbs_Arc); - /****************** BRepOffset_Offset ******************/ - /**** md5 signature: bb5cc63e26c23084ecb636562559cbc8 ****/ + /****** BRepOffset_Offset::BRepOffset_Offset ******/ + /****** md5 signature: bb5cc63e26c23084ecb636562559cbc8 ******/ %feature("compactdefaultargs") BRepOffset_Offset; %feature("autodoc", " Parameters @@ -2045,8 +2045,8 @@ No available documentation. ") BRepOffset_Offset; BRepOffset_Offset(const TopoDS_Edge & Path, const TopoDS_Edge & Edge1, const TopoDS_Edge & Edge2, const Standard_Real Offset, const Standard_Boolean Polynomial = Standard_False, const Standard_Real Tol = 1.0e-4, const GeomAbs_Shape Conti = GeomAbs_C1); - /****************** BRepOffset_Offset ******************/ - /**** md5 signature: 1f1985d1da5333df78eb516e6ac644fc ****/ + /****** BRepOffset_Offset::BRepOffset_Offset ******/ + /****** md5 signature: 1f1985d1da5333df78eb516e6ac644fc ******/ %feature("compactdefaultargs") BRepOffset_Offset; %feature("autodoc", " Parameters @@ -2071,8 +2071,8 @@ No available documentation. ") BRepOffset_Offset; BRepOffset_Offset(const TopoDS_Edge & Path, const TopoDS_Edge & Edge1, const TopoDS_Edge & Edge2, const Standard_Real Offset, const TopoDS_Edge & FirstEdge, const TopoDS_Edge & LastEdge, const Standard_Boolean Polynomial = Standard_False, const Standard_Real Tol = 1.0e-4, const GeomAbs_Shape Conti = GeomAbs_C1); - /****************** BRepOffset_Offset ******************/ - /**** md5 signature: 4855766d144a61e46d61e820d1f2151a ****/ + /****** BRepOffset_Offset::BRepOffset_Offset ******/ + /****** md5 signature: 4855766d144a61e46d61e820d1f2151a ******/ %feature("compactdefaultargs") BRepOffset_Offset; %feature("autodoc", " Parameters @@ -2094,8 +2094,8 @@ Tol and conti are only used if polynomial is true (used to perform the approxima ") BRepOffset_Offset; BRepOffset_Offset(const TopoDS_Vertex & Vertex, const TopTools_ListOfShape & LEdge, const Standard_Real Offset, const Standard_Boolean Polynomial = Standard_False, const Standard_Real Tol = 1.0e-4, const GeomAbs_Shape Conti = GeomAbs_C1); - /****************** Face ******************/ - /**** md5 signature: 91e216ebeb76e55c73eb9e179241a6ff ****/ + /****** BRepOffset_Offset::Face ******/ + /****** md5 signature: 91e216ebeb76e55c73eb9e179241a6ff ******/ %feature("compactdefaultargs") Face; %feature("autodoc", "Return ------- @@ -2107,8 +2107,8 @@ No available documentation. ") Face; const TopoDS_Face Face(); - /****************** Generated ******************/ - /**** md5 signature: 4b497355061beb062439833cbae45ea2 ****/ + /****** BRepOffset_Offset::Generated ******/ + /****** md5 signature: 4b497355061beb062439833cbae45ea2 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -2125,8 +2125,8 @@ No available documentation. ") Generated; TopoDS_Shape Generated(const TopoDS_Shape & Shape); - /****************** Init ******************/ - /**** md5 signature: 3a68f402572d681d4c17a71ba2fdb9b5 ****/ + /****** BRepOffset_Offset::Init ******/ + /****** md5 signature: 3a68f402572d681d4c17a71ba2fdb9b5 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2146,8 +2146,8 @@ No available documentation. ") Init; void Init(const TopoDS_Face & Face, const Standard_Real Offset, const Standard_Boolean OffsetOutside = Standard_True, const GeomAbs_JoinType JoinType = GeomAbs_Arc); - /****************** Init ******************/ - /**** md5 signature: 19063387060128596dfcb45e0fdddf16 ****/ + /****** BRepOffset_Offset::Init ******/ + /****** md5 signature: 19063387060128596dfcb45e0fdddf16 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2168,8 +2168,8 @@ No available documentation. ") Init; void Init(const TopoDS_Face & Face, const Standard_Real Offset, const TopTools_DataMapOfShapeShape & Created, const Standard_Boolean OffsetOutside = Standard_True, const GeomAbs_JoinType JoinType = GeomAbs_Arc); - /****************** Init ******************/ - /**** md5 signature: 4bd28a339c6559997bae6b5288d7c230 ****/ + /****** BRepOffset_Offset::Init ******/ + /****** md5 signature: 4bd28a339c6559997bae6b5288d7c230 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2192,8 +2192,8 @@ No available documentation. ") Init; void Init(const TopoDS_Edge & Path, const TopoDS_Edge & Edge1, const TopoDS_Edge & Edge2, const Standard_Real Offset, const Standard_Boolean Polynomial = Standard_False, const Standard_Real Tol = 1.0e-4, const GeomAbs_Shape Conti = GeomAbs_C1); - /****************** Init ******************/ - /**** md5 signature: 8a7df373becb560968aaa7122510deee ****/ + /****** BRepOffset_Offset::Init ******/ + /****** md5 signature: 8a7df373becb560968aaa7122510deee ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2218,8 +2218,8 @@ No available documentation. ") Init; void Init(const TopoDS_Edge & Path, const TopoDS_Edge & Edge1, const TopoDS_Edge & Edge2, const Standard_Real Offset, const TopoDS_Edge & FirstEdge, const TopoDS_Edge & LastEdge, const Standard_Boolean Polynomial = Standard_False, const Standard_Real Tol = 1.0e-4, const GeomAbs_Shape Conti = GeomAbs_C1); - /****************** Init ******************/ - /**** md5 signature: a55d171e913f36f0b4e55051d82643fd ****/ + /****** BRepOffset_Offset::Init ******/ + /****** md5 signature: a55d171e913f36f0b4e55051d82643fd ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2241,8 +2241,8 @@ Tol and conti are only used if polynomial is true (used to perform the approxima ") Init; void Init(const TopoDS_Vertex & Vertex, const TopTools_ListOfShape & LEdge, const Standard_Real Offset, const Standard_Boolean Polynomial = Standard_False, const Standard_Real Tol = 1.0e-4, const GeomAbs_Shape Conti = GeomAbs_C1); - /****************** Init ******************/ - /**** md5 signature: 1341190a002936fc491df39baf5b3ca9 ****/ + /****** BRepOffset_Offset::Init ******/ + /****** md5 signature: 1341190a002936fc491df39baf5b3ca9 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2260,8 +2260,8 @@ Only used in rolling ball. pipe on free boundary. ") Init; void Init(const TopoDS_Edge & Edge, const Standard_Real Offset); - /****************** InitialShape ******************/ - /**** md5 signature: 5f6722b58fccd1ce05b74f389a5c01d1 ****/ + /****** BRepOffset_Offset::InitialShape ******/ + /****** md5 signature: 5f6722b58fccd1ce05b74f389a5c01d1 ******/ %feature("compactdefaultargs") InitialShape; %feature("autodoc", "Return ------- @@ -2273,8 +2273,8 @@ No available documentation. ") InitialShape; const TopoDS_Shape InitialShape(); - /****************** Status ******************/ - /**** md5 signature: da8e3318d740bacf96581cfe65805812 ****/ + /****** BRepOffset_Offset::Status ******/ + /****** md5 signature: da8e3318d740bacf96581cfe65805812 ******/ %feature("compactdefaultargs") Status; %feature("autodoc", "Return ------- @@ -2303,8 +2303,8 @@ class BRepOffset_SimpleOffset : public BRepTools_Modification { class NewFaceData {}; class NewEdgeData {}; class NewVertexData {}; - /****************** BRepOffset_SimpleOffset ******************/ - /**** md5 signature: 71b0def4cf7676180a8d1b531617bb92 ****/ + /****** BRepOffset_SimpleOffset::BRepOffset_SimpleOffset ******/ + /****** md5 signature: 71b0def4cf7676180a8d1b531617bb92 ******/ %feature("compactdefaultargs") BRepOffset_SimpleOffset; %feature("autodoc", " Parameters @@ -2323,8 +2323,8 @@ Constructor. @param theinputshape shape to be offset @param theoffsetvalue offse ") BRepOffset_SimpleOffset; BRepOffset_SimpleOffset(const TopoDS_Shape & theInputShape, const Standard_Real theOffsetValue, const Standard_Real theTolerance); - /****************** Continuity ******************/ - /**** md5 signature: a3c3d5a955b90f2e1cefb3c12dc67277 ****/ + /****** BRepOffset_SimpleOffset::Continuity ******/ + /****** md5 signature: a3c3d5a955b90f2e1cefb3c12dc67277 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", " Parameters @@ -2346,8 +2346,8 @@ Returns the continuity of between and . //! is the ") Continuity; GeomAbs_Shape Continuity(const TopoDS_Edge & E, const TopoDS_Face & F1, const TopoDS_Face & F2, const TopoDS_Edge & NewE, const TopoDS_Face & NewF1, const TopoDS_Face & NewF2); - /****************** NewCurve ******************/ - /**** md5 signature: fae0c201ae8f07a170a1eb576572768a ****/ + /****** BRepOffset_SimpleOffset::NewCurve ******/ + /****** md5 signature: fae0c201ae8f07a170a1eb576572768a ******/ %feature("compactdefaultargs") NewCurve; %feature("autodoc", " Parameters @@ -2366,8 +2366,8 @@ Returns standard_true if the edge has been modified. in this case, is th ") NewCurve; Standard_Boolean NewCurve(const TopoDS_Edge & E, opencascade::handle & C, TopLoc_Location & L, Standard_Real &OutValue); - /****************** NewCurve2d ******************/ - /**** md5 signature: ea858177828b71b789a2564d89f64210 ****/ + /****** BRepOffset_SimpleOffset::NewCurve2d ******/ + /****** md5 signature: ea858177828b71b789a2564d89f64210 ******/ %feature("compactdefaultargs") NewCurve2d; %feature("autodoc", " Parameters @@ -2388,8 +2388,8 @@ Returns standard_true if the edge has a new curve on surface on the face ") NewCurve2d; Standard_Boolean NewCurve2d(const TopoDS_Edge & E, const TopoDS_Face & F, const TopoDS_Edge & NewE, const TopoDS_Face & NewF, opencascade::handle & C, Standard_Real &OutValue); - /****************** NewParameter ******************/ - /**** md5 signature: e14926b54c8548936ba9a49d140b8da3 ****/ + /****** BRepOffset_SimpleOffset::NewParameter ******/ + /****** md5 signature: e14926b54c8548936ba9a49d140b8da3 ******/ %feature("compactdefaultargs") NewParameter; %feature("autodoc", " Parameters @@ -2408,8 +2408,8 @@ Returns standard_true if the vertex has a new parameter on the edge . in ") NewParameter; Standard_Boolean NewParameter(const TopoDS_Vertex & V, const TopoDS_Edge & E, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** NewPoint ******************/ - /**** md5 signature: 936cfe13f9c774f9038d7f0e2f3e521b ****/ + /****** BRepOffset_SimpleOffset::NewPoint ******/ + /****** md5 signature: 936cfe13f9c774f9038d7f0e2f3e521b ******/ %feature("compactdefaultargs") NewPoint; %feature("autodoc", " Parameters @@ -2427,8 +2427,8 @@ Returns standard_true if the vertex has been modified. in this case,

is ") NewPoint; Standard_Boolean NewPoint(const TopoDS_Vertex & V, gp_Pnt & P, Standard_Real &OutValue); - /****************** NewSurface ******************/ - /**** md5 signature: 001097e1d949f85581f605ce49276ada ****/ + /****** BRepOffset_SimpleOffset::NewSurface ******/ + /****** md5 signature: 001097e1d949f85581f605ce49276ada ******/ %feature("compactdefaultargs") NewSurface; %feature("autodoc", " Parameters @@ -2465,8 +2465,8 @@ Returns standard_true if the face has been modified. in this case, is th ************************/ class BRepOffset_Tool { public: - /****************** BuildNeighbour ******************/ - /**** md5 signature: a28f37b6f4d122d4be23e183e5091239 ****/ + /****** BRepOffset_Tool::BuildNeighbour ******/ + /****** md5 signature: a28f37b6f4d122d4be23e183e5091239 ******/ %feature("compactdefaultargs") BuildNeighbour; %feature("autodoc", " Parameters @@ -2486,8 +2486,8 @@ Via the wire explorer store in for an edge of his edge neighbour ") BuildNeighbour; static void BuildNeighbour(const TopoDS_Wire & W, const TopoDS_Face & F, TopTools_DataMapOfShapeShape & NOnV1, TopTools_DataMapOfShapeShape & NOnV2); - /****************** CheckBounds ******************/ - /**** md5 signature: b72d73cb62464608149927e8690b009d ****/ + /****** BRepOffset_Tool::CheckBounds ******/ + /****** md5 signature: b72d73cb62464608149927e8690b009d ******/ %feature("compactdefaultargs") CheckBounds; %feature("autodoc", " Parameters @@ -2507,8 +2507,8 @@ No available documentation. ") CheckBounds; static void CheckBounds(const TopoDS_Face & F, const BRepOffset_Analyse & Analyse, Standard_Boolean &OutValue, Standard_Boolean &OutValue, Standard_Boolean &OutValue); - /****************** CheckPlanesNormals ******************/ - /**** md5 signature: 0dfa65e060f5df310856444063f6f7e4 ****/ + /****** BRepOffset_Tool::CheckPlanesNormals ******/ + /****** md5 signature: 0dfa65e060f5df310856444063f6f7e4 ******/ %feature("compactdefaultargs") CheckPlanesNormals; %feature("autodoc", " Parameters @@ -2527,8 +2527,8 @@ Compares the normal directions of the planar faces and returns true if the direc ") CheckPlanesNormals; static Standard_Boolean CheckPlanesNormals(const TopoDS_Face & theFace1, const TopoDS_Face & theFace2, const Standard_Real theTolAng = 1e-8); - /****************** CorrectOrientation ******************/ - /**** md5 signature: 9d3cc66bdf3e936d8cd864f5768e0f35 ****/ + /****** BRepOffset_Tool::CorrectOrientation ******/ + /****** md5 signature: 9d3cc66bdf3e936d8cd864f5768e0f35 ******/ %feature("compactdefaultargs") CorrectOrientation; %feature("autodoc", " Parameters @@ -2549,8 +2549,8 @@ No available documentation. ") CorrectOrientation; static void CorrectOrientation(const TopoDS_Shape & SI, const TopTools_IndexedMapOfShape & NewEdges, opencascade::handle & AsDes, BRepAlgo_Image & InitOffset, const Standard_Real Offset); - /****************** Deboucle3D ******************/ - /**** md5 signature: 604726f64f42702b8591f042f704509e ****/ + /****** BRepOffset_Tool::Deboucle3D ******/ + /****** md5 signature: 604726f64f42702b8591f042f704509e ******/ %feature("compactdefaultargs") Deboucle3D; %feature("autodoc", " Parameters @@ -2568,8 +2568,8 @@ Remove the non valid part of an offsetshape 1 - remove all the free boundary and ") Deboucle3D; static TopoDS_Shape Deboucle3D(const TopoDS_Shape & S, const TopTools_MapOfShape & Boundary); - /****************** EdgeVertices ******************/ - /**** md5 signature: 5ea655ac8e07a63dd8753acf779f31df ****/ + /****** BRepOffset_Tool::EdgeVertices ******/ + /****** md5 signature: 5ea655ac8e07a63dd8753acf779f31df ******/ %feature("compactdefaultargs") EdgeVertices; %feature("autodoc", " Parameters @@ -2588,8 +2588,8 @@ Description ") EdgeVertices; static void EdgeVertices(const TopoDS_Edge & E, TopoDS_Vertex & V1, TopoDS_Vertex & V2); - /****************** EnLargeFace ******************/ - /**** md5 signature: 32b678a9e8c54375869c991fb479becc ****/ + /****** BRepOffset_Tool::EnLargeFace ******/ + /****** md5 signature: 32b678a9e8c54375869c991fb479becc ******/ %feature("compactdefaultargs") EnLargeFace; %feature("autodoc", " Parameters @@ -2617,8 +2617,8 @@ Returns true if the surface of has changed. if is true , the s ") EnLargeFace; static Standard_Boolean EnLargeFace(const TopoDS_Face & F, TopoDS_Face & NF, const Standard_Boolean ChangeGeom, const Standard_Boolean UpDatePCurve = Standard_False, const Standard_Boolean enlargeU = Standard_True, const Standard_Boolean enlargeVfirst = Standard_True, const Standard_Boolean enlargeVlast = Standard_True, const Standard_Integer theExtensionMode = 1, const Standard_Real theLenBeforeUfirst = -1, const Standard_Real theLenAfterUlast = -1, const Standard_Real theLenBeforeVfirst = -1, const Standard_Real theLenAfterVlast = -1); - /****************** ExtentFace ******************/ - /**** md5 signature: d938056ae787508cd23604b5ea458319 ****/ + /****** BRepOffset_Tool::ExtentFace ******/ + /****** md5 signature: d938056ae787508cd23604b5ea458319 ******/ %feature("compactdefaultargs") ExtentFace; %feature("autodoc", " Parameters @@ -2640,8 +2640,8 @@ No available documentation. ") ExtentFace; static void ExtentFace(const TopoDS_Face & F, TopTools_DataMapOfShapeShape & ConstShapes, TopTools_DataMapOfShapeShape & ToBuild, const TopAbs_State Side, const Standard_Real TolConf, TopoDS_Face & NF); - /****************** FindCommonShapes ******************/ - /**** md5 signature: a7aabaa5fd2a7f63f2ea432a10f3e5dc ****/ + /****** BRepOffset_Tool::FindCommonShapes ******/ + /****** md5 signature: a7aabaa5fd2a7f63f2ea432a10f3e5dc ******/ %feature("compactdefaultargs") FindCommonShapes; %feature("autodoc", " Parameters @@ -2661,8 +2661,8 @@ Looks for the common vertices and edges between faces and . retur ") FindCommonShapes; static Standard_Boolean FindCommonShapes(const TopoDS_Face & theF1, const TopoDS_Face & theF2, TopTools_ListOfShape & theLE, TopTools_ListOfShape & theLV); - /****************** FindCommonShapes ******************/ - /**** md5 signature: e7a853c19bc762b01f607dbc90f0c46d ****/ + /****** BRepOffset_Tool::FindCommonShapes ******/ + /****** md5 signature: e7a853c19bc762b01f607dbc90f0c46d ******/ %feature("compactdefaultargs") FindCommonShapes; %feature("autodoc", " Parameters @@ -2682,8 +2682,8 @@ Looks for the common shapes of type between shapes and ") FindCommonShapes; static Standard_Boolean FindCommonShapes(const TopoDS_Shape & theS1, const TopoDS_Shape & theS2, const TopAbs_ShapeEnum theType, TopTools_ListOfShape & theLSC); - /****************** Gabarit ******************/ - /**** md5 signature: a40315c829a5e7b8a2ab7df58b9007bc ****/ + /****** BRepOffset_Tool::Gabarit ******/ + /****** md5 signature: a40315c829a5e7b8a2ab7df58b9007bc ******/ %feature("compactdefaultargs") Gabarit; %feature("autodoc", " Parameters @@ -2700,8 +2700,8 @@ No available documentation. ") Gabarit; static Standard_Real Gabarit(const opencascade::handle & aCurve); - /****************** Inter2d ******************/ - /**** md5 signature: fa9a0b167e8c0cdb46f9c397757bc304 ****/ + /****** BRepOffset_Tool::Inter2d ******/ + /****** md5 signature: fa9a0b167e8c0cdb46f9c397757bc304 ******/ %feature("compactdefaultargs") Inter2d; %feature("autodoc", " Parameters @@ -2722,8 +2722,8 @@ No available documentation. ") Inter2d; static void Inter2d(const TopoDS_Face & F, const TopoDS_Edge & E1, const TopoDS_Edge & E2, TopTools_ListOfShape & LV, const Standard_Real Tol); - /****************** Inter3D ******************/ - /**** md5 signature: 14c7b38326d9f6a6878482c940a4d0b3 ****/ + /****** BRepOffset_Tool::Inter3D ******/ + /****** md5 signature: 14c7b38326d9f6a6878482c940a4d0b3 ******/ %feature("compactdefaultargs") Inter3D; %feature("autodoc", " Parameters @@ -2747,8 +2747,8 @@ Computes the section betwwen and the edges solution are stored in in the incident edges in . an edge is s ") MapVertexEdges; static void MapVertexEdges(const TopoDS_Shape & S, TopTools_DataMapOfShapeListOfShape & MVE); - /****************** OrientSection ******************/ - /**** md5 signature: 6fcc8549a4ba547fa845250a54719b66 ****/ + /****** BRepOffset_Tool::OrientSection ******/ + /****** md5 signature: 6fcc8549a4ba547fa845250a54719b66 ******/ %feature("compactdefaultargs") OrientSection; %feature("autodoc", " Parameters @@ -2809,8 +2809,8 @@ Description ") OrientSection; static void OrientSection(const TopoDS_Edge & E, const TopoDS_Face & F1, const TopoDS_Face & F2, TopAbs_Orientation &OutValue, TopAbs_Orientation &OutValue); - /****************** PipeInter ******************/ - /**** md5 signature: 4a2946fb95668689d418fe298066dda2 ****/ + /****** BRepOffset_Tool::PipeInter ******/ + /****** md5 signature: 4a2946fb95668689d418fe298066dda2 ******/ %feature("compactdefaultargs") PipeInter; %feature("autodoc", " Parameters @@ -2831,8 +2831,8 @@ No available documentation. ") PipeInter; static void PipeInter(const TopoDS_Face & F1, const TopoDS_Face & F2, TopTools_ListOfShape & LInt1, TopTools_ListOfShape & LInt2, const TopAbs_State Side); - /****************** TryProject ******************/ - /**** md5 signature: 46f6f98b477f357764edb8db800b34f8 ****/ + /****** BRepOffset_Tool::TryProject ******/ + /****** md5 signature: 46f6f98b477f357764edb8db800b34f8 ******/ %feature("compactdefaultargs") TryProject; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BRepOffsetAPI.i b/src/SWIG_files/wrapper/BRepOffsetAPI.i index 502e4a839..db61dc714 100644 --- a/src/SWIG_files/wrapper/BRepOffsetAPI.i +++ b/src/SWIG_files/wrapper/BRepOffsetAPI.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPOFFSETAPIDOCSTRING "BRepOffsetAPI module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepoffsetapi.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepoffsetapi.html" %enddef %module (package="OCC.Core", docstring=BREPOFFSETAPIDOCSTRING) BRepOffsetAPI @@ -167,8 +167,8 @@ typedef BRepBuilderAPI_Sewing BRepOffsetAPI_Sewing; *********************************/ class BRepOffsetAPI_DraftAngle : public BRepBuilderAPI_ModifyShape { public: - /****************** BRepOffsetAPI_DraftAngle ******************/ - /**** md5 signature: b9af936a89856f8fb520f412bc5baac1 ****/ + /****** BRepOffsetAPI_DraftAngle::BRepOffsetAPI_DraftAngle ******/ + /****** md5 signature: b9af936a89856f8fb520f412bc5baac1 ******/ %feature("compactdefaultargs") BRepOffsetAPI_DraftAngle; %feature("autodoc", "Return ------- @@ -180,8 +180,8 @@ Constructs an empty algorithm to perform taper-adding transformations on faces o ") BRepOffsetAPI_DraftAngle; BRepOffsetAPI_DraftAngle(); - /****************** BRepOffsetAPI_DraftAngle ******************/ - /**** md5 signature: 0e4d1cafe2cf2c602b747516c3fa76bf ****/ + /****** BRepOffsetAPI_DraftAngle::BRepOffsetAPI_DraftAngle ******/ + /****** md5 signature: 0e4d1cafe2cf2c602b747516c3fa76bf ******/ %feature("compactdefaultargs") BRepOffsetAPI_DraftAngle; %feature("autodoc", " Parameters @@ -198,8 +198,8 @@ Initializes an algorithm to perform taper-adding transformations on faces of the ") BRepOffsetAPI_DraftAngle; BRepOffsetAPI_DraftAngle(const TopoDS_Shape & S); - /****************** Add ******************/ - /**** md5 signature: 4ce7b2535b631733771b79ec806daaad ****/ + /****** BRepOffsetAPI_DraftAngle::Add ******/ + /****** md5 signature: 4ce7b2535b631733771b79ec806daaad ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -220,8 +220,8 @@ Adds the face f, the direction direction, the angle angle, the plane neutralplan ") Add; void Add(const TopoDS_Face & F, const gp_Dir & Direction, const Standard_Real Angle, const gp_Pln & NeutralPlane, const Standard_Boolean Flag = Standard_True); - /****************** AddDone ******************/ - /**** md5 signature: 225f23d0ffea018222bcb24ee9311796 ****/ + /****** BRepOffsetAPI_DraftAngle::AddDone ******/ + /****** md5 signature: 225f23d0ffea018222bcb24ee9311796 ******/ %feature("compactdefaultargs") AddDone; %feature("autodoc", "Return ------- @@ -233,8 +233,8 @@ Returns true if the previous taper-adding transformation performed by this algor ") AddDone; Standard_Boolean AddDone(); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepOffsetAPI_DraftAngle::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -251,8 +251,8 @@ Builds the resulting shape (redefined from makeshape). ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** BRepOffsetAPI_DraftAngle::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -264,8 +264,8 @@ Cancels the results of all taper-adding transformations performed by this algori ") Clear; void Clear(); - /****************** ConnectedFaces ******************/ - /**** md5 signature: be55b5929554f7dfde3eec1b9ab3f977 ****/ + /****** BRepOffsetAPI_DraftAngle::ConnectedFaces ******/ + /****** md5 signature: be55b5929554f7dfde3eec1b9ab3f977 ******/ %feature("compactdefaultargs") ConnectedFaces; %feature("autodoc", " Parameters @@ -282,8 +282,8 @@ Returns all the faces which have been added together with the face . ") ConnectedFaces; const TopTools_ListOfShape & ConnectedFaces(const TopoDS_Face & F); - /****************** CorrectWires ******************/ - /**** md5 signature: 81ca023a91873cfa63a02fb08e0cbd78 ****/ + /****** BRepOffsetAPI_DraftAngle::CorrectWires ******/ + /****** md5 signature: 81ca023a91873cfa63a02fb08e0cbd78 ******/ %feature("compactdefaultargs") CorrectWires; %feature("autodoc", "Return ------- @@ -295,8 +295,8 @@ No available documentation. ") CorrectWires; void CorrectWires(); - /****************** Generated ******************/ - /**** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ****/ + /****** BRepOffsetAPI_DraftAngle::Generated ******/ + /****** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -313,8 +313,8 @@ Returns the list of shapes generated from the shape . ") Generated; virtual const TopTools_ListOfShape & Generated(const TopoDS_Shape & S); - /****************** Init ******************/ - /**** md5 signature: 5b69b32485b3d9f82ae4abb9c853c3c7 ****/ + /****** BRepOffsetAPI_DraftAngle::Init ******/ + /****** md5 signature: 5b69b32485b3d9f82ae4abb9c853c3c7 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -331,8 +331,8 @@ Initializes, or reinitializes this taper-adding algorithm with the shape s. s wi ") Init; void Init(const TopoDS_Shape & S); - /****************** Modified ******************/ - /**** md5 signature: 73ccfe97b4ed94547a190332224ffe23 ****/ + /****** BRepOffsetAPI_DraftAngle::Modified ******/ + /****** md5 signature: 73ccfe97b4ed94547a190332224ffe23 ******/ %feature("compactdefaultargs") Modified; %feature("autodoc", " Parameters @@ -349,8 +349,8 @@ Returns the list of shapes modified from the shape . ") Modified; virtual const TopTools_ListOfShape & Modified(const TopoDS_Shape & S); - /****************** ModifiedFaces ******************/ - /**** md5 signature: cd09c09ae96bda548c679db0e897d478 ****/ + /****** BRepOffsetAPI_DraftAngle::ModifiedFaces ******/ + /****** md5 signature: cd09c09ae96bda548c679db0e897d478 ******/ %feature("compactdefaultargs") ModifiedFaces; %feature("autodoc", "Return ------- @@ -362,8 +362,8 @@ Returns all the faces on which a modification has been given. ") ModifiedFaces; const TopTools_ListOfShape & ModifiedFaces(); - /****************** ModifiedShape ******************/ - /**** md5 signature: 52b70a5b01905688e2ddbc00ab060e3c ****/ + /****** BRepOffsetAPI_DraftAngle::ModifiedShape ******/ + /****** md5 signature: 52b70a5b01905688e2ddbc00ab060e3c ******/ %feature("compactdefaultargs") ModifiedShape; %feature("autodoc", " Parameters @@ -380,8 +380,8 @@ Returns the modified shape corresponding to . s can correspond to the entire ") ModifiedShape; virtual TopoDS_Shape ModifiedShape(const TopoDS_Shape & S); - /****************** ProblematicShape ******************/ - /**** md5 signature: 4b993ee84b1645cd4a03936d51cfc6ec ****/ + /****** BRepOffsetAPI_DraftAngle::ProblematicShape ******/ + /****** md5 signature: 4b993ee84b1645cd4a03936d51cfc6ec ******/ %feature("compactdefaultargs") ProblematicShape; %feature("autodoc", "Return ------- @@ -393,8 +393,8 @@ Returns the shape on which an error occurred after an unsuccessful call to add o ") ProblematicShape; const TopoDS_Shape ProblematicShape(); - /****************** Remove ******************/ - /**** md5 signature: 2dda97e74bdcd077a8ecce9d227e7fa7 ****/ + /****** BRepOffsetAPI_DraftAngle::Remove ******/ + /****** md5 signature: 2dda97e74bdcd077a8ecce9d227e7fa7 ******/ %feature("compactdefaultargs") Remove; %feature("autodoc", " Parameters @@ -411,8 +411,8 @@ Cancels the taper-adding transformation previously performed by this algorithm o ") Remove; void Remove(const TopoDS_Face & F); - /****************** Status ******************/ - /**** md5 signature: 26dc5cff0cd2168b2136c6f9bb9e099c ****/ + /****** BRepOffsetAPI_DraftAngle::Status ******/ + /****** md5 signature: 26dc5cff0cd2168b2136c6f9bb9e099c ******/ %feature("compactdefaultargs") Status; %feature("autodoc", "Return ------- @@ -438,8 +438,8 @@ Returns an error status when an error has occurred (face, edge or vertex recompu *****************************************/ class BRepOffsetAPI_FindContigousEdges { public: - /****************** BRepOffsetAPI_FindContigousEdges ******************/ - /**** md5 signature: fd7a2ffb22004077f79a7dae2c0d118b ****/ + /****** BRepOffsetAPI_FindContigousEdges::BRepOffsetAPI_FindContigousEdges ******/ + /****** md5 signature: fd7a2ffb22004077f79a7dae2c0d118b ******/ %feature("compactdefaultargs") BRepOffsetAPI_FindContigousEdges; %feature("autodoc", " Parameters @@ -457,8 +457,8 @@ Initializes an algorithm for identifying contiguous edges on shapes with toleran ") BRepOffsetAPI_FindContigousEdges; BRepOffsetAPI_FindContigousEdges(const Standard_Real tolerance = 1.0e-06, const Standard_Boolean option = Standard_True); - /****************** Add ******************/ - /**** md5 signature: e2be6f2074943772e403ebcbe671347a ****/ + /****** BRepOffsetAPI_FindContigousEdges::Add ******/ + /****** md5 signature: e2be6f2074943772e403ebcbe671347a ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -475,8 +475,8 @@ Adds the shape shape to the list of shapes to be checked by this algorithm. once ") Add; void Add(const TopoDS_Shape & shape); - /****************** ContigousEdge ******************/ - /**** md5 signature: 528f0ebefe61a096548f88451970603d ****/ + /****** BRepOffsetAPI_FindContigousEdges::ContigousEdge ******/ + /****** md5 signature: 528f0ebefe61a096548f88451970603d ******/ %feature("compactdefaultargs") ContigousEdge; %feature("autodoc", " Parameters @@ -493,8 +493,8 @@ Returns the contiguous edge of index index found by the function perform on the ") ContigousEdge; const TopoDS_Edge ContigousEdge(const Standard_Integer index); - /****************** ContigousEdgeCouple ******************/ - /**** md5 signature: 783b24657c04ecf4547ffd8cfddcc368 ****/ + /****** BRepOffsetAPI_FindContigousEdges::ContigousEdgeCouple ******/ + /****** md5 signature: 783b24657c04ecf4547ffd8cfddcc368 ******/ %feature("compactdefaultargs") ContigousEdgeCouple; %feature("autodoc", " Parameters @@ -511,8 +511,8 @@ Returns a list of edges coincident with the contiguous edge of index index found ") ContigousEdgeCouple; const TopTools_ListOfShape & ContigousEdgeCouple(const Standard_Integer index); - /****************** DegeneratedShape ******************/ - /**** md5 signature: e6eb24cfb41ed6276abbd22e81382ad4 ****/ + /****** BRepOffsetAPI_FindContigousEdges::DegeneratedShape ******/ + /****** md5 signature: e6eb24cfb41ed6276abbd22e81382ad4 ******/ %feature("compactdefaultargs") DegeneratedShape; %feature("autodoc", " Parameters @@ -529,8 +529,8 @@ Gives a degenerated shape. ") DegeneratedShape; const TopoDS_Shape DegeneratedShape(const Standard_Integer index); - /****************** Dump ******************/ - /**** md5 signature: 15b4b2e195645aebb43170ff7f15952a ****/ + /****** BRepOffsetAPI_FindContigousEdges::Dump ******/ + /****** md5 signature: 15b4b2e195645aebb43170ff7f15952a ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", "Return ------- @@ -542,8 +542,8 @@ Dump properties of resulting shape. ") Dump; void Dump(); - /****************** Init ******************/ - /**** md5 signature: dd6c1b1cc9e67e536ec1bfeda1eb7f2d ****/ + /****** BRepOffsetAPI_FindContigousEdges::Init ******/ + /****** md5 signature: dd6c1b1cc9e67e536ec1bfeda1eb7f2d ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -561,8 +561,8 @@ Initializes this algorithm for identifying contiguous edges on shapes using the ") Init; void Init(const Standard_Real tolerance, const Standard_Boolean option); - /****************** IsDegenerated ******************/ - /**** md5 signature: 84979167278e746e62a21a790a7cd87e ****/ + /****** BRepOffsetAPI_FindContigousEdges::IsDegenerated ******/ + /****** md5 signature: 84979167278e746e62a21a790a7cd87e ******/ %feature("compactdefaultargs") IsDegenerated; %feature("autodoc", " Parameters @@ -579,8 +579,8 @@ Indicates if a input shape is degenerated. ") IsDegenerated; Standard_Boolean IsDegenerated(const TopoDS_Shape & shape); - /****************** IsModified ******************/ - /**** md5 signature: 1d5d4f025b62ca0ccc6672d39cdf22fc ****/ + /****** BRepOffsetAPI_FindContigousEdges::IsModified ******/ + /****** md5 signature: 1d5d4f025b62ca0ccc6672d39cdf22fc ******/ %feature("compactdefaultargs") IsModified; %feature("autodoc", " Parameters @@ -597,8 +597,8 @@ Returns true if the copy of the initial shape shape was modified by the function ") IsModified; Standard_Boolean IsModified(const TopoDS_Shape & shape); - /****************** Modified ******************/ - /**** md5 signature: 8eae36e55014fa2f45331a4af35cda4c ****/ + /****** BRepOffsetAPI_FindContigousEdges::Modified ******/ + /****** md5 signature: 8eae36e55014fa2f45331a4af35cda4c ******/ %feature("compactdefaultargs") Modified; %feature("autodoc", " Parameters @@ -615,8 +615,8 @@ Gives a modifieded shape raises nosuchobject if shape has not been modified. ") Modified; const TopoDS_Shape Modified(const TopoDS_Shape & shape); - /****************** NbContigousEdges ******************/ - /**** md5 signature: c293fac1d421e2d1f7207054b4a45923 ****/ + /****** BRepOffsetAPI_FindContigousEdges::NbContigousEdges ******/ + /****** md5 signature: c293fac1d421e2d1f7207054b4a45923 ******/ %feature("compactdefaultargs") NbContigousEdges; %feature("autodoc", "Return ------- @@ -628,8 +628,8 @@ Returns the number of contiguous edges found by the function perform on the shap ") NbContigousEdges; Standard_Integer NbContigousEdges(); - /****************** NbDegeneratedShapes ******************/ - /**** md5 signature: 002576d80bfb4575f6cdfeeff5b81a1e ****/ + /****** BRepOffsetAPI_FindContigousEdges::NbDegeneratedShapes ******/ + /****** md5 signature: 002576d80bfb4575f6cdfeeff5b81a1e ******/ %feature("compactdefaultargs") NbDegeneratedShapes; %feature("autodoc", "Return ------- @@ -641,8 +641,8 @@ Gives the number of degenerated shapes. ") NbDegeneratedShapes; Standard_Integer NbDegeneratedShapes(); - /****************** Perform ******************/ - /**** md5 signature: c04b01412cba7220c024b5eb4532697f ****/ + /****** BRepOffsetAPI_FindContigousEdges::Perform ******/ + /****** md5 signature: c04b01412cba7220c024b5eb4532697f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", "Return ------- @@ -654,8 +654,8 @@ Finds coincident parts of edges of two or more shapes added to this algorithm an ") Perform; void Perform(); - /****************** SectionToBoundary ******************/ - /**** md5 signature: 8753cd22e70a557633e4602d07baeefe ****/ + /****** BRepOffsetAPI_FindContigousEdges::SectionToBoundary ******/ + /****** md5 signature: 8753cd22e70a557633e4602d07baeefe ******/ %feature("compactdefaultargs") SectionToBoundary; %feature("autodoc", " Parameters @@ -690,8 +690,8 @@ Returns the edge on the initial shape, of which the modified copy contains the e ********************************/ class BRepOffsetAPI_MakeDraft : public BRepBuilderAPI_MakeShape { public: - /****************** BRepOffsetAPI_MakeDraft ******************/ - /**** md5 signature: 71eb0e38473fd7d62078ab8ae3d81222 ****/ + /****** BRepOffsetAPI_MakeDraft::BRepOffsetAPI_MakeDraft ******/ + /****** md5 signature: 71eb0e38473fd7d62078ab8ae3d81222 ******/ %feature("compactdefaultargs") BRepOffsetAPI_MakeDraft; %feature("autodoc", " Parameters @@ -710,8 +710,8 @@ Constructs the draft surface object defined by the shape shape, the direction di ") BRepOffsetAPI_MakeDraft; BRepOffsetAPI_MakeDraft(const TopoDS_Shape & Shape, const gp_Dir & Dir, const Standard_Real Angle); - /****************** Generated ******************/ - /**** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ****/ + /****** BRepOffsetAPI_MakeDraft::Generated ******/ + /****** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -728,8 +728,8 @@ Returns the list of shapes generated from the shape . ") Generated; virtual const TopTools_ListOfShape & Generated(const TopoDS_Shape & S); - /****************** Perform ******************/ - /**** md5 signature: b03f32ebc120d00e3e8e32d44b202b9d ****/ + /****** BRepOffsetAPI_MakeDraft::Perform ******/ + /****** md5 signature: b03f32ebc120d00e3e8e32d44b202b9d ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -746,8 +746,8 @@ Performs the draft using the length lengthmax as the maximum length for the corn ") Perform; void Perform(const Standard_Real LengthMax); - /****************** Perform ******************/ - /**** md5 signature: 3a80e47101026da2c90ae735de0ac1b9 ****/ + /****** BRepOffsetAPI_MakeDraft::Perform ******/ + /****** md5 signature: 3a80e47101026da2c90ae735de0ac1b9 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -765,8 +765,8 @@ Performs the draft up to the surface surface. if keepinsidesurface is true, the ") Perform; void Perform(const opencascade::handle & Surface, const Standard_Boolean KeepInsideSurface = Standard_True); - /****************** Perform ******************/ - /**** md5 signature: c18fafced10e4c987e315cfc1b3d96ad ****/ + /****** BRepOffsetAPI_MakeDraft::Perform ******/ + /****** md5 signature: c18fafced10e4c987e315cfc1b3d96ad ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -784,8 +784,8 @@ Performs the draft up to the shape stopshape. if keepoutside is true, the part o ") Perform; void Perform(const TopoDS_Shape & StopShape, const Standard_Boolean KeepOutSide = Standard_True); - /****************** SetDraft ******************/ - /**** md5 signature: 6a0b2e71733b262480aa38daaecff626 ****/ + /****** BRepOffsetAPI_MakeDraft::SetDraft ******/ + /****** md5 signature: 6a0b2e71733b262480aa38daaecff626 ******/ %feature("compactdefaultargs") SetDraft; %feature("autodoc", " Parameters @@ -802,8 +802,8 @@ Sets the direction of the draft for this object. if isinternal is true, the draf ") SetDraft; void SetDraft(const Standard_Boolean IsInternal = Standard_False); - /****************** SetOptions ******************/ - /**** md5 signature: 736d57b77de1cd53364406245ccef568 ****/ + /****** BRepOffsetAPI_MakeDraft::SetOptions ******/ + /****** md5 signature: 736d57b77de1cd53364406245ccef568 ******/ %feature("compactdefaultargs") SetOptions; %feature("autodoc", " Parameters @@ -822,8 +822,8 @@ Sets the options of this draft tool. if a transition has to be performed, it can ") SetOptions; void SetOptions(const BRepBuilderAPI_TransitionMode Style = BRepBuilderAPI_RightCorner, const Standard_Real AngleMin = 0.01, const Standard_Real AngleMax = 3.0); - /****************** Shell ******************/ - /**** md5 signature: 3ea4686086a18491532865f1cfbce9ad ****/ + /****** BRepOffsetAPI_MakeDraft::Shell ******/ + /****** md5 signature: 3ea4686086a18491532865f1cfbce9ad ******/ %feature("compactdefaultargs") Shell; %feature("autodoc", "Return ------- @@ -849,8 +849,8 @@ Returns the shell resulting from performance of the draft along the wire. **********************************/ class BRepOffsetAPI_MakeEvolved : public BRepBuilderAPI_MakeShape { public: - /****************** BRepOffsetAPI_MakeEvolved ******************/ - /**** md5 signature: 10d85cbe93d42416417568f3ca2d5c30 ****/ + /****** BRepOffsetAPI_MakeEvolved::BRepOffsetAPI_MakeEvolved ******/ + /****** md5 signature: 10d85cbe93d42416417568f3ca2d5c30 ******/ %feature("compactdefaultargs") BRepOffsetAPI_MakeEvolved; %feature("autodoc", "Return ------- @@ -862,8 +862,8 @@ No available documentation. ") BRepOffsetAPI_MakeEvolved; BRepOffsetAPI_MakeEvolved(); - /****************** BRepOffsetAPI_MakeEvolved ******************/ - /**** md5 signature: ca863b02acd410c7e5d5badc6d5c93f9 ****/ + /****** BRepOffsetAPI_MakeEvolved::BRepOffsetAPI_MakeEvolved ******/ + /****** md5 signature: ca863b02acd410c7e5d5badc6d5c93f9 ******/ %feature("compactdefaultargs") BRepOffsetAPI_MakeEvolved; %feature("autodoc", " Parameters @@ -888,8 +888,8 @@ Constructs an evolved shape by sweeping the profile (theprofile) along the spine ") BRepOffsetAPI_MakeEvolved; BRepOffsetAPI_MakeEvolved(const TopoDS_Shape & theSpine, const TopoDS_Wire & theProfile, const GeomAbs_JoinType theJoinType = GeomAbs_Arc, const Standard_Boolean theIsAxeProf = Standard_True, const Standard_Boolean theIsSolid = Standard_False, const Standard_Boolean theIsProfOnSpine = Standard_False, const Standard_Real theTol = 0.0000001, const Standard_Boolean theIsVolume = Standard_False, const Standard_Boolean theRunInParallel = Standard_False); - /****************** Bottom ******************/ - /**** md5 signature: 25476ceb1dec30bd7775d9279e3f641c ****/ + /****** BRepOffsetAPI_MakeEvolved::Bottom ******/ + /****** md5 signature: 25476ceb1dec30bd7775d9279e3f641c ******/ %feature("compactdefaultargs") Bottom; %feature("autodoc", "Return ------- @@ -901,8 +901,8 @@ Return the face bottom if is true in the constructor. ") Bottom; const TopoDS_Shape Bottom(); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepOffsetAPI_MakeEvolved::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -919,8 +919,8 @@ Builds the resulting shape (redefined from makeshape). ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Evolved ******************/ - /**** md5 signature: 9cd16375e762072934864900214c9cab ****/ + /****** BRepOffsetAPI_MakeEvolved::Evolved ******/ + /****** md5 signature: 9cd16375e762072934864900214c9cab ******/ %feature("compactdefaultargs") Evolved; %feature("autodoc", "Return ------- @@ -932,8 +932,8 @@ No available documentation. ") Evolved; const BRepFill_Evolved & Evolved(); - /****************** GeneratedShapes ******************/ - /**** md5 signature: d6b410f91bd0b638e68b4f66ed161f82 ****/ + /****** BRepOffsetAPI_MakeEvolved::GeneratedShapes ******/ + /****** md5 signature: d6b410f91bd0b638e68b4f66ed161f82 ******/ %feature("compactdefaultargs") GeneratedShapes; %feature("autodoc", " Parameters @@ -951,8 +951,8 @@ Returns the shapes created from a subshape of the spine and a subsh ") GeneratedShapes; const TopTools_ListOfShape & GeneratedShapes(const TopoDS_Shape & SpineShape, const TopoDS_Shape & ProfShape); - /****************** Top ******************/ - /**** md5 signature: c5b73d85ae980e083fd62982344b1f23 ****/ + /****** BRepOffsetAPI_MakeEvolved::Top ******/ + /****** md5 signature: c5b73d85ae980e083fd62982344b1f23 ******/ %feature("compactdefaultargs") Top; %feature("autodoc", "Return ------- @@ -978,8 +978,8 @@ Return the face top if is true in the constructor. **********************************/ class BRepOffsetAPI_MakeFilling : public BRepBuilderAPI_MakeShape { public: - /****************** BRepOffsetAPI_MakeFilling ******************/ - /**** md5 signature: 6b2c1458dee21e3098205eace85ff1c2 ****/ + /****** BRepOffsetAPI_MakeFilling::BRepOffsetAPI_MakeFilling ******/ + /****** md5 signature: 6b2c1458dee21e3098205eace85ff1c2 ******/ %feature("compactdefaultargs") BRepOffsetAPI_MakeFilling; %feature("autodoc", " Parameters @@ -1005,8 +1005,8 @@ Constructs a wire filling object defined by - the energy minimizing criterion de ") BRepOffsetAPI_MakeFilling; BRepOffsetAPI_MakeFilling(const Standard_Integer Degree = 3, const Standard_Integer NbPtsOnCur = 15, const Standard_Integer NbIter = 2, const Standard_Boolean Anisotropie = Standard_False, const Standard_Real Tol2d = 0.00001, const Standard_Real Tol3d = 0.0001, const Standard_Real TolAng = 0.01, const Standard_Real TolCurv = 0.1, const Standard_Integer MaxDeg = 8, const Standard_Integer MaxSegments = 9); - /****************** Add ******************/ - /**** md5 signature: f3f101643ae89de07cd1205b58a9a0bc ****/ + /****** BRepOffsetAPI_MakeFilling::Add ******/ + /****** md5 signature: f3f101643ae89de07cd1205b58a9a0bc ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1025,8 +1025,8 @@ Adds a new constraint which also defines an edge of the wire of the face order: ") Add; Standard_Integer Add(const TopoDS_Edge & Constr, const GeomAbs_Shape Order, const Standard_Boolean IsBound = Standard_True); - /****************** Add ******************/ - /**** md5 signature: 415312c3d021976e6e2f3b6a96253fb7 ****/ + /****** BRepOffsetAPI_MakeFilling::Add ******/ + /****** md5 signature: 415312c3d021976e6e2f3b6a96253fb7 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1046,8 +1046,8 @@ Adds a new constraint which also defines an edge of the wire of the face order: ") Add; Standard_Integer Add(const TopoDS_Edge & Constr, const TopoDS_Face & Support, const GeomAbs_Shape Order, const Standard_Boolean IsBound = Standard_True); - /****************** Add ******************/ - /**** md5 signature: c110c3c507d8423f3ffde002d65004bf ****/ + /****** BRepOffsetAPI_MakeFilling::Add ******/ + /****** md5 signature: c110c3c507d8423f3ffde002d65004bf ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1065,8 +1065,8 @@ Adds a free constraint on a face. the corresponding edge has to be automatically ") Add; Standard_Integer Add(const TopoDS_Face & Support, const GeomAbs_Shape Order); - /****************** Add ******************/ - /**** md5 signature: 1323f2a6b2ca8774ee472101d9518362 ****/ + /****** BRepOffsetAPI_MakeFilling::Add ******/ + /****** md5 signature: 1323f2a6b2ca8774ee472101d9518362 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1083,8 +1083,8 @@ Adds a punctual constraint. ") Add; Standard_Integer Add(const gp_Pnt & Point); - /****************** Add ******************/ - /**** md5 signature: 66afaf29b06657fd99d38717aeeeb9f6 ****/ + /****** BRepOffsetAPI_MakeFilling::Add ******/ + /****** md5 signature: 66afaf29b06657fd99d38717aeeeb9f6 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1104,8 +1104,8 @@ Adds a punctual constraint. ") Add; Standard_Integer Add(const Standard_Real U, const Standard_Real V, const TopoDS_Face & Support, const GeomAbs_Shape Order); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepOffsetAPI_MakeFilling::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -1122,8 +1122,8 @@ Builds the resulting faces. ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** G0Error ******************/ - /**** md5 signature: ba177a9a7bac2d394577a179fd8040ef ****/ + /****** BRepOffsetAPI_MakeFilling::G0Error ******/ + /****** md5 signature: ba177a9a7bac2d394577a179fd8040ef ******/ %feature("compactdefaultargs") G0Error; %feature("autodoc", "Return ------- @@ -1135,8 +1135,8 @@ Returns the maximum distance between the result and the constraints. this is set ") G0Error; Standard_Real G0Error(); - /****************** G0Error ******************/ - /**** md5 signature: f99dce5527bffb3ecaa2d1093b4a3635 ****/ + /****** BRepOffsetAPI_MakeFilling::G0Error ******/ + /****** md5 signature: f99dce5527bffb3ecaa2d1093b4a3635 ******/ %feature("compactdefaultargs") G0Error; %feature("autodoc", " Parameters @@ -1153,8 +1153,8 @@ Returns the maximum distance attained between the result and the constraint inde ") G0Error; Standard_Real G0Error(const Standard_Integer Index); - /****************** G1Error ******************/ - /**** md5 signature: 0a0e55267bc5572a38177b75a97dfedc ****/ + /****** BRepOffsetAPI_MakeFilling::G1Error ******/ + /****** md5 signature: 0a0e55267bc5572a38177b75a97dfedc ******/ %feature("compactdefaultargs") G1Error; %feature("autodoc", "Return ------- @@ -1166,8 +1166,8 @@ Returns the maximum angle between the result and the constraints. this is set at ") G1Error; Standard_Real G1Error(); - /****************** G1Error ******************/ - /**** md5 signature: 0d786918d533628c34e845fd87da5a9b ****/ + /****** BRepOffsetAPI_MakeFilling::G1Error ******/ + /****** md5 signature: 0d786918d533628c34e845fd87da5a9b ******/ %feature("compactdefaultargs") G1Error; %feature("autodoc", " Parameters @@ -1184,8 +1184,8 @@ Returns the maximum angle between the result and the constraints. this is set at ") G1Error; Standard_Real G1Error(const Standard_Integer Index); - /****************** G2Error ******************/ - /**** md5 signature: 0eac129a84e8ae945532a18ff833414e ****/ + /****** BRepOffsetAPI_MakeFilling::G2Error ******/ + /****** md5 signature: 0eac129a84e8ae945532a18ff833414e ******/ %feature("compactdefaultargs") G2Error; %feature("autodoc", "Return ------- @@ -1197,8 +1197,8 @@ Returns the maximum angle between the result and the constraints. this is set at ") G2Error; Standard_Real G2Error(); - /****************** G2Error ******************/ - /**** md5 signature: 02032765271044476a9ce38570208342 ****/ + /****** BRepOffsetAPI_MakeFilling::G2Error ******/ + /****** md5 signature: 02032765271044476a9ce38570208342 ******/ %feature("compactdefaultargs") G2Error; %feature("autodoc", " Parameters @@ -1215,8 +1215,8 @@ Returns the greatest difference in curvature found between the result and the co ") G2Error; Standard_Real G2Error(const Standard_Integer Index); - /****************** Generated ******************/ - /**** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ****/ + /****** BRepOffsetAPI_MakeFilling::Generated ******/ + /****** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -1233,8 +1233,8 @@ Returns the list of shapes generated from the shape . ") Generated; virtual const TopTools_ListOfShape & Generated(const TopoDS_Shape & S); - /****************** IsDone ******************/ - /**** md5 signature: e2af43c18fdd9d21f5f5de9eae7fc9de ****/ + /****** BRepOffsetAPI_MakeFilling::IsDone ******/ + /****** md5 signature: e2af43c18fdd9d21f5f5de9eae7fc9de ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -1246,8 +1246,8 @@ Tests whether computation of the filling plate has been completed. ") IsDone; virtual Standard_Boolean IsDone(); - /****************** LoadInitSurface ******************/ - /**** md5 signature: f3dc564cdf464b4c186eaa11f91e9fe8 ****/ + /****** BRepOffsetAPI_MakeFilling::LoadInitSurface ******/ + /****** md5 signature: f3dc564cdf464b4c186eaa11f91e9fe8 ******/ %feature("compactdefaultargs") LoadInitSurface; %feature("autodoc", " Parameters @@ -1264,8 +1264,8 @@ Loads the initial surface surf to begin the construction of the surface. this op ") LoadInitSurface; void LoadInitSurface(const TopoDS_Face & Surf); - /****************** SetApproxParam ******************/ - /**** md5 signature: 24678d9cf0187a1e2d5fe74dfef72b0d ****/ + /****** BRepOffsetAPI_MakeFilling::SetApproxParam ******/ + /****** md5 signature: 24678d9cf0187a1e2d5fe74dfef72b0d ******/ %feature("compactdefaultargs") SetApproxParam; %feature("autodoc", " Parameters @@ -1283,8 +1283,8 @@ Sets the parameters used to approximate the filling surface. these include: - ma ") SetApproxParam; void SetApproxParam(const Standard_Integer MaxDeg = 8, const Standard_Integer MaxSegments = 9); - /****************** SetConstrParam ******************/ - /**** md5 signature: 2d967f76f30735b0413b7afac7004fa6 ****/ + /****** BRepOffsetAPI_MakeFilling::SetConstrParam ******/ + /****** md5 signature: 2d967f76f30735b0413b7afac7004fa6 ******/ %feature("compactdefaultargs") SetConstrParam; %feature("autodoc", " Parameters @@ -1304,8 +1304,8 @@ Sets the values of tolerances used to control the constraint. tol2d: tol3d: it i ") SetConstrParam; void SetConstrParam(const Standard_Real Tol2d = 0.00001, const Standard_Real Tol3d = 0.0001, const Standard_Real TolAng = 0.01, const Standard_Real TolCurv = 0.1); - /****************** SetResolParam ******************/ - /**** md5 signature: 96cad4665171fb74735ecc8d46155136 ****/ + /****** BRepOffsetAPI_MakeFilling::SetResolParam ******/ + /****** md5 signature: 96cad4665171fb74735ecc8d46155136 ******/ %feature("compactdefaultargs") SetResolParam; %feature("autodoc", " Parameters @@ -1339,8 +1339,8 @@ Sets the parameters used for resolution. the default values of these parameters *********************************/ class BRepOffsetAPI_MakeOffset : public BRepBuilderAPI_MakeShape { public: - /****************** BRepOffsetAPI_MakeOffset ******************/ - /**** md5 signature: 88d16e162a6684102baaab1a8f41cc87 ****/ + /****** BRepOffsetAPI_MakeOffset::BRepOffsetAPI_MakeOffset ******/ + /****** md5 signature: 88d16e162a6684102baaab1a8f41cc87 ******/ %feature("compactdefaultargs") BRepOffsetAPI_MakeOffset; %feature("autodoc", "Return ------- @@ -1352,8 +1352,8 @@ Constructs an algorithm for creating an empty offset. ") BRepOffsetAPI_MakeOffset; BRepOffsetAPI_MakeOffset(); - /****************** BRepOffsetAPI_MakeOffset ******************/ - /**** md5 signature: 6c382c138f0e83f35d2532782330627a ****/ + /****** BRepOffsetAPI_MakeOffset::BRepOffsetAPI_MakeOffset ******/ + /****** md5 signature: 6c382c138f0e83f35d2532782330627a ******/ %feature("compactdefaultargs") BRepOffsetAPI_MakeOffset; %feature("autodoc", " Parameters @@ -1372,8 +1372,8 @@ Constructs an algorithm for creating an algorithm to build parallels to the spin ") BRepOffsetAPI_MakeOffset; BRepOffsetAPI_MakeOffset(const TopoDS_Face & Spine, const GeomAbs_JoinType Join = GeomAbs_Arc, const Standard_Boolean IsOpenResult = Standard_False); - /****************** BRepOffsetAPI_MakeOffset ******************/ - /**** md5 signature: edca00730463e7bdc67c3ca57a3de792 ****/ + /****** BRepOffsetAPI_MakeOffset::BRepOffsetAPI_MakeOffset ******/ + /****** md5 signature: edca00730463e7bdc67c3ca57a3de792 ******/ %feature("compactdefaultargs") BRepOffsetAPI_MakeOffset; %feature("autodoc", " Parameters @@ -1392,8 +1392,8 @@ No available documentation. ") BRepOffsetAPI_MakeOffset; BRepOffsetAPI_MakeOffset(const TopoDS_Wire & Spine, const GeomAbs_JoinType Join = GeomAbs_Arc, const Standard_Boolean IsOpenResult = Standard_False); - /****************** AddWire ******************/ - /**** md5 signature: f11eaa49e4d45e90c9ae3f7a4166b6ad ****/ + /****** BRepOffsetAPI_MakeOffset::AddWire ******/ + /****** md5 signature: f11eaa49e4d45e90c9ae3f7a4166b6ad ******/ %feature("compactdefaultargs") AddWire; %feature("autodoc", " Parameters @@ -1410,8 +1410,8 @@ Initializes the algorithm to construct parallels to the wire spine. ") AddWire; void AddWire(const TopoDS_Wire & Spine); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepOffsetAPI_MakeOffset::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -1428,8 +1428,8 @@ Builds the resulting shape (redefined from makeshape). ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** ConvertFace ******************/ - /**** md5 signature: 4995d6c46f75b841a5ec1eeddfe269b6 ****/ + /****** BRepOffsetAPI_MakeOffset::ConvertFace ******/ + /****** md5 signature: 4995d6c46f75b841a5ec1eeddfe269b6 ******/ %feature("compactdefaultargs") ConvertFace; %feature("autodoc", " Parameters @@ -1447,8 +1447,8 @@ Converts each wire of the face into contour consisting only of arcs and segments ") ConvertFace; static TopoDS_Face ConvertFace(const TopoDS_Face & theFace, const Standard_Real theAngleTolerance); - /****************** Generated ******************/ - /**** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ****/ + /****** BRepOffsetAPI_MakeOffset::Generated ******/ + /****** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -1465,8 +1465,8 @@ Returns a list of the created shapes from the shape . ") Generated; virtual const TopTools_ListOfShape & Generated(const TopoDS_Shape & S); - /****************** Init ******************/ - /**** md5 signature: 04028fd0677eb2fad3b6134f24c0b959 ****/ + /****** BRepOffsetAPI_MakeOffset::Init ******/ + /****** md5 signature: 04028fd0677eb2fad3b6134f24c0b959 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -1485,8 +1485,8 @@ Initializes the algorithm to construct parallels to the spine spine. join define ") Init; void Init(const TopoDS_Face & Spine, const GeomAbs_JoinType Join = GeomAbs_Arc, const Standard_Boolean IsOpenResult = Standard_False); - /****************** Init ******************/ - /**** md5 signature: 36efcaeec9c18f0906259d528d83ea6b ****/ + /****** BRepOffsetAPI_MakeOffset::Init ******/ + /****** md5 signature: 36efcaeec9c18f0906259d528d83ea6b ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -1504,8 +1504,8 @@ Initialize the evaluation of offsetting. ") Init; void Init(const GeomAbs_JoinType Join = GeomAbs_Arc, const Standard_Boolean IsOpenResult = Standard_False); - /****************** Perform ******************/ - /**** md5 signature: 50205eaf73b49f4d2b44f0537bf87989 ****/ + /****** BRepOffsetAPI_MakeOffset::Perform ******/ + /****** md5 signature: 50205eaf73b49f4d2b44f0537bf87989 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1523,8 +1523,8 @@ Computes a parallel to the spine at distance offset and at an altitude alt from ") Perform; void Perform(const Standard_Real Offset, const Standard_Real Alt = 0.0); - /****************** SetApprox ******************/ - /**** md5 signature: 57e45b5381196ac1a2610a07df3f37fa ****/ + /****** BRepOffsetAPI_MakeOffset::SetApprox ******/ + /****** md5 signature: 57e45b5381196ac1a2610a07df3f37fa ******/ %feature("compactdefaultargs") SetApprox; %feature("autodoc", " Parameters @@ -1555,8 +1555,8 @@ Set approximation flag for convertion input contours into ones consisting of 2d **************************************/ class BRepOffsetAPI_MakeOffsetShape : public BRepBuilderAPI_MakeShape { public: - /****************** BRepOffsetAPI_MakeOffsetShape ******************/ - /**** md5 signature: d913edb15df090e4ff503886c9e1f814 ****/ + /****** BRepOffsetAPI_MakeOffsetShape::BRepOffsetAPI_MakeOffsetShape ******/ + /****** md5 signature: d913edb15df090e4ff503886c9e1f814 ******/ %feature("compactdefaultargs") BRepOffsetAPI_MakeOffsetShape; %feature("autodoc", "Return ------- @@ -1568,8 +1568,8 @@ Constructor does nothing. ") BRepOffsetAPI_MakeOffsetShape; BRepOffsetAPI_MakeOffsetShape(); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepOffsetAPI_MakeOffsetShape::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -1586,8 +1586,8 @@ Does nothing. ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Generated ******************/ - /**** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ****/ + /****** BRepOffsetAPI_MakeOffsetShape::Generated ******/ + /****** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -1604,8 +1604,8 @@ Returns the list of shapes generated from the shape . ") Generated; virtual const TopTools_ListOfShape & Generated(const TopoDS_Shape & S); - /****************** GetJoinType ******************/ - /**** md5 signature: 98bbd653674d56f0804dd681f91e2cf5 ****/ + /****** BRepOffsetAPI_MakeOffsetShape::GetJoinType ******/ + /****** md5 signature: 98bbd653674d56f0804dd681f91e2cf5 ******/ %feature("compactdefaultargs") GetJoinType; %feature("autodoc", "Return ------- @@ -1617,8 +1617,8 @@ Returns offset join type. ") GetJoinType; GeomAbs_JoinType GetJoinType(); - /****************** IsDeleted ******************/ - /**** md5 signature: 28be7c17a3b2776f59567554f488bbf5 ****/ + /****** BRepOffsetAPI_MakeOffsetShape::IsDeleted ******/ + /****** md5 signature: 28be7c17a3b2776f59567554f488bbf5 ******/ %feature("compactdefaultargs") IsDeleted; %feature("autodoc", " Parameters @@ -1635,8 +1635,8 @@ Returns true if the shape has been removed from the result. ") IsDeleted; virtual Standard_Boolean IsDeleted(const TopoDS_Shape & S); - /****************** MakeOffset ******************/ - /**** md5 signature: 3130f0edba2681c2d8feeda712784d5d ****/ + /****** BRepOffsetAPI_MakeOffsetShape::MakeOffset ******/ + /****** md5 signature: 3130f0edba2681c2d8feeda712784d5d ******/ %feature("compactdefaultargs") MakeOffset; %feature("autodoc", "Return ------- @@ -1648,8 +1648,8 @@ Returns instance of the unrelying intersection / arc algorithm. ") MakeOffset; virtual const BRepOffset_MakeOffset & MakeOffset(); - /****************** Modified ******************/ - /**** md5 signature: 73ccfe97b4ed94547a190332224ffe23 ****/ + /****** BRepOffsetAPI_MakeOffsetShape::Modified ******/ + /****** md5 signature: 73ccfe97b4ed94547a190332224ffe23 ******/ %feature("compactdefaultargs") Modified; %feature("autodoc", " Parameters @@ -1666,8 +1666,8 @@ Returns the list of shapes modified from the shape . ") Modified; virtual const TopTools_ListOfShape & Modified(const TopoDS_Shape & S); - /****************** PerformByJoin ******************/ - /**** md5 signature: 95722a888d9ea1332d96f8f0377af232 ****/ + /****** BRepOffsetAPI_MakeOffsetShape::PerformByJoin ******/ + /****** md5 signature: 95722a888d9ea1332d96f8f0377af232 ******/ %feature("compactdefaultargs") PerformByJoin; %feature("autodoc", " Parameters @@ -1692,8 +1692,8 @@ Constructs a shape parallel to the shape s, where - s may be a face, a shell, a ") PerformByJoin; void PerformByJoin(const TopoDS_Shape & S, const Standard_Real Offset, const Standard_Real Tol, const BRepOffset_Mode Mode = BRepOffset_Skin, const Standard_Boolean Intersection = Standard_False, const Standard_Boolean SelfInter = Standard_False, const GeomAbs_JoinType Join = GeomAbs_Arc, const Standard_Boolean RemoveIntEdges = Standard_False, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** PerformBySimple ******************/ - /**** md5 signature: 005d9d4f6366bed358be54e547e045db ****/ + /****** BRepOffsetAPI_MakeOffsetShape::PerformBySimple ******/ + /****** md5 signature: 005d9d4f6366bed358be54e547e045db ******/ %feature("compactdefaultargs") PerformBySimple; %feature("autodoc", " Parameters @@ -1725,8 +1725,8 @@ Constructs offset shape for the given one using simple algorithm without interse *******************************/ class BRepOffsetAPI_MakePipe : public BRepPrimAPI_MakeSweep { public: - /****************** BRepOffsetAPI_MakePipe ******************/ - /**** md5 signature: 9a0f7eb2c8727a0bca36fe46f7e3eec3 ****/ + /****** BRepOffsetAPI_MakePipe::BRepOffsetAPI_MakePipe ******/ + /****** md5 signature: 9a0f7eb2c8727a0bca36fe46f7e3eec3 ******/ %feature("compactdefaultargs") BRepOffsetAPI_MakePipe; %feature("autodoc", " Parameters @@ -1744,8 +1744,8 @@ Constructs a pipe by sweeping the shape profile along the wire spine.the angle m ") BRepOffsetAPI_MakePipe; BRepOffsetAPI_MakePipe(const TopoDS_Wire & Spine, const TopoDS_Shape & Profile); - /****************** BRepOffsetAPI_MakePipe ******************/ - /**** md5 signature: 7fdb4b4ef91c75cd892ca136b43bf5da ****/ + /****** BRepOffsetAPI_MakePipe::BRepOffsetAPI_MakePipe ******/ + /****** md5 signature: 7fdb4b4ef91c75cd892ca136b43bf5da ******/ %feature("compactdefaultargs") BRepOffsetAPI_MakePipe; %feature("autodoc", " Parameters @@ -1765,8 +1765,8 @@ The same as previous but with setting of mode of sweep and the flag that indicat ") BRepOffsetAPI_MakePipe; BRepOffsetAPI_MakePipe(const TopoDS_Wire & Spine, const TopoDS_Shape & Profile, const GeomFill_Trihedron aMode, const Standard_Boolean ForceApproxC1 = Standard_False); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepOffsetAPI_MakePipe::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -1783,8 +1783,8 @@ Builds the resulting shape (redefined from makeshape). ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** ErrorOnSurface ******************/ - /**** md5 signature: b6b87ca0efc7814953c22829fefc7f65 ****/ + /****** BRepOffsetAPI_MakePipe::ErrorOnSurface ******/ + /****** md5 signature: b6b87ca0efc7814953c22829fefc7f65 ******/ %feature("compactdefaultargs") ErrorOnSurface; %feature("autodoc", "Return ------- @@ -1796,8 +1796,8 @@ No available documentation. ") ErrorOnSurface; Standard_Real ErrorOnSurface(); - /****************** FirstShape ******************/ - /**** md5 signature: 58fcb2a790a0aa12dce93bc2307abc16 ****/ + /****** BRepOffsetAPI_MakePipe::FirstShape ******/ + /****** md5 signature: 58fcb2a790a0aa12dce93bc2307abc16 ******/ %feature("compactdefaultargs") FirstShape; %feature("autodoc", "Return ------- @@ -1809,8 +1809,8 @@ Returns the topods shape of the bottom of the prism. ") FirstShape; TopoDS_Shape FirstShape(); - /****************** Generated ******************/ - /**** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ****/ + /****** BRepOffsetAPI_MakePipe::Generated ******/ + /****** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -1827,8 +1827,8 @@ No available documentation. ") Generated; virtual const TopTools_ListOfShape & Generated(const TopoDS_Shape & S); - /****************** Generated ******************/ - /**** md5 signature: da81408487ea6911b58fe475fd4ea546 ****/ + /****** BRepOffsetAPI_MakePipe::Generated ******/ + /****** md5 signature: da81408487ea6911b58fe475fd4ea546 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -1846,8 +1846,8 @@ No available documentation. ") Generated; TopoDS_Shape Generated(const TopoDS_Shape & SSpine, const TopoDS_Shape & SProfile); - /****************** LastShape ******************/ - /**** md5 signature: 00d36051126aa083896abae0c2f17b32 ****/ + /****** BRepOffsetAPI_MakePipe::LastShape ******/ + /****** md5 signature: 00d36051126aa083896abae0c2f17b32 ******/ %feature("compactdefaultargs") LastShape; %feature("autodoc", "Return ------- @@ -1859,8 +1859,8 @@ Returns the topods shape of the top of the prism. ") LastShape; TopoDS_Shape LastShape(); - /****************** Pipe ******************/ - /**** md5 signature: 976ad7a0864ead36b17759e50cc7cebd ****/ + /****** BRepOffsetAPI_MakePipe::Pipe ******/ + /****** md5 signature: 976ad7a0864ead36b17759e50cc7cebd ******/ %feature("compactdefaultargs") Pipe; %feature("autodoc", "Return ------- @@ -1886,8 +1886,8 @@ No available documentation. ************************************/ class BRepOffsetAPI_MakePipeShell : public BRepPrimAPI_MakeSweep { public: - /****************** BRepOffsetAPI_MakePipeShell ******************/ - /**** md5 signature: 2de09d18cf07159481a80873b4b5d90c ****/ + /****** BRepOffsetAPI_MakePipeShell::BRepOffsetAPI_MakePipeShell ******/ + /****** md5 signature: 2de09d18cf07159481a80873b4b5d90c ******/ %feature("compactdefaultargs") BRepOffsetAPI_MakePipeShell; %feature("autodoc", " Parameters @@ -1904,8 +1904,8 @@ Constructs the shell-generating framework defined by the wire spine. sets an swe ") BRepOffsetAPI_MakePipeShell; BRepOffsetAPI_MakePipeShell(const TopoDS_Wire & Spine); - /****************** Add ******************/ - /**** md5 signature: 4646415ed2583fb1eb7c020fef17efa7 ****/ + /****** BRepOffsetAPI_MakePipeShell::Add ******/ + /****** md5 signature: 4646415ed2583fb1eb7c020fef17efa7 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1924,8 +1924,8 @@ Adds the section profile to this framework. first and last sections may be punct ") Add; void Add(const TopoDS_Shape & Profile, const Standard_Boolean WithContact = Standard_False, const Standard_Boolean WithCorrection = Standard_False); - /****************** Add ******************/ - /**** md5 signature: ea9d6839d1fe733dcb8684defcce8b79 ****/ + /****** BRepOffsetAPI_MakePipeShell::Add ******/ + /****** md5 signature: ea9d6839d1fe733dcb8684defcce8b79 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1945,8 +1945,8 @@ Adds the section profile to this framework. correspondent point on the spine is ") Add; void Add(const TopoDS_Shape & Profile, const TopoDS_Vertex & Location, const Standard_Boolean WithContact = Standard_False, const Standard_Boolean WithCorrection = Standard_False); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepOffsetAPI_MakePipeShell::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -1963,8 +1963,8 @@ Builds the resulting shape (redefined from makeshape). ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Delete ******************/ - /**** md5 signature: 12e4f2f3609a7b21fcf42ba451fc7b90 ****/ + /****** BRepOffsetAPI_MakePipeShell::Delete ******/ + /****** md5 signature: 12e4f2f3609a7b21fcf42ba451fc7b90 ******/ %feature("compactdefaultargs") Delete; %feature("autodoc", " Parameters @@ -1981,8 +1981,8 @@ Removes the section profile from this framework. ") Delete; void Delete(const TopoDS_Shape & Profile); - /****************** ErrorOnSurface ******************/ - /**** md5 signature: b6b87ca0efc7814953c22829fefc7f65 ****/ + /****** BRepOffsetAPI_MakePipeShell::ErrorOnSurface ******/ + /****** md5 signature: b6b87ca0efc7814953c22829fefc7f65 ******/ %feature("compactdefaultargs") ErrorOnSurface; %feature("autodoc", "Return ------- @@ -1994,8 +1994,8 @@ No available documentation. ") ErrorOnSurface; Standard_Real ErrorOnSurface(); - /****************** FirstShape ******************/ - /**** md5 signature: 9141e4a066781501fc49e6dc1e5e4641 ****/ + /****** BRepOffsetAPI_MakePipeShell::FirstShape ******/ + /****** md5 signature: 9141e4a066781501fc49e6dc1e5e4641 ******/ %feature("compactdefaultargs") FirstShape; %feature("autodoc", "Return ------- @@ -2007,8 +2007,8 @@ Returns the topods shape of the bottom of the sweep. ") FirstShape; virtual TopoDS_Shape FirstShape(); - /****************** Generated ******************/ - /**** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ****/ + /****** BRepOffsetAPI_MakePipeShell::Generated ******/ + /****** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -2025,8 +2025,8 @@ Returns a list of new shapes generated from the shape s by the shell-generating ") Generated; virtual const TopTools_ListOfShape & Generated(const TopoDS_Shape & S); - /****************** GetStatus ******************/ - /**** md5 signature: 7fc2662f43e326653463499b95ca8153 ****/ + /****** BRepOffsetAPI_MakePipeShell::GetStatus ******/ + /****** md5 signature: 7fc2662f43e326653463499b95ca8153 ******/ %feature("compactdefaultargs") GetStatus; %feature("autodoc", "Return ------- @@ -2038,8 +2038,8 @@ Get a status, when simulate or build failed. it can be brepbuilderapi_pipedone, ") GetStatus; BRepBuilderAPI_PipeError GetStatus(); - /****************** IsReady ******************/ - /**** md5 signature: 68a96b040fc0b59848125a1a3ef33dcb ****/ + /****** BRepOffsetAPI_MakePipeShell::IsReady ******/ + /****** md5 signature: 68a96b040fc0b59848125a1a3ef33dcb ******/ %feature("compactdefaultargs") IsReady; %feature("autodoc", "Return ------- @@ -2051,8 +2051,8 @@ Returns true if this tool object is ready to build the shape, i.e. has a definit ") IsReady; Standard_Boolean IsReady(); - /****************** LastShape ******************/ - /**** md5 signature: 6f7d02deb40719f75425be30543f3deb ****/ + /****** BRepOffsetAPI_MakePipeShell::LastShape ******/ + /****** md5 signature: 6f7d02deb40719f75425be30543f3deb ******/ %feature("compactdefaultargs") LastShape; %feature("autodoc", "Return ------- @@ -2064,8 +2064,8 @@ Returns the topods shape of the top of the sweep. ") LastShape; virtual TopoDS_Shape LastShape(); - /****************** MakeSolid ******************/ - /**** md5 signature: cac327adfb21fa10211d68dabc53974b ****/ + /****** BRepOffsetAPI_MakePipeShell::MakeSolid ******/ + /****** md5 signature: cac327adfb21fa10211d68dabc53974b ******/ %feature("compactdefaultargs") MakeSolid; %feature("autodoc", "Return ------- @@ -2077,8 +2077,8 @@ Transforms the sweeping shell in solid. if a propfile is not closed returns fals ") MakeSolid; Standard_Boolean MakeSolid(); - /****************** Profiles ******************/ - /**** md5 signature: 1b2b499d210731d9c45ae6c16e16db56 ****/ + /****** BRepOffsetAPI_MakePipeShell::Profiles ******/ + /****** md5 signature: 1b2b499d210731d9c45ae6c16e16db56 ******/ %feature("compactdefaultargs") Profiles; %feature("autodoc", " Parameters @@ -2095,8 +2095,8 @@ Returns the list of original profiles. ") Profiles; void Profiles(TopTools_ListOfShape & theProfiles); - /****************** SetDiscreteMode ******************/ - /**** md5 signature: 0366446a5945e513e46ee5778018b32d ****/ + /****** BRepOffsetAPI_MakePipeShell::SetDiscreteMode ******/ + /****** md5 signature: 0366446a5945e513e46ee5778018b32d ******/ %feature("compactdefaultargs") SetDiscreteMode; %feature("autodoc", "Return ------- @@ -2108,8 +2108,8 @@ Sets a discrete trihedron to perform the sweeping. ") SetDiscreteMode; void SetDiscreteMode(); - /****************** SetForceApproxC1 ******************/ - /**** md5 signature: ef99bf0713e14fbe9531aef549b5c75b ****/ + /****** BRepOffsetAPI_MakePipeShell::SetForceApproxC1 ******/ + /****** md5 signature: ef99bf0713e14fbe9531aef549b5c75b ******/ %feature("compactdefaultargs") SetForceApproxC1; %feature("autodoc", " Parameters @@ -2126,8 +2126,8 @@ Set the flag that indicates attempt to approximate a c1-continuous surface if a ") SetForceApproxC1; void SetForceApproxC1(const Standard_Boolean ForceApproxC1); - /****************** SetLaw ******************/ - /**** md5 signature: af186f09c05a666850d65baf0970c9c2 ****/ + /****** BRepOffsetAPI_MakePipeShell::SetLaw ******/ + /****** md5 signature: af186f09c05a666850d65baf0970c9c2 ******/ %feature("compactdefaultargs") SetLaw; %feature("autodoc", " Parameters @@ -2147,8 +2147,8 @@ Sets the evolution law defined by the wire profile with its position (location, ") SetLaw; void SetLaw(const TopoDS_Shape & Profile, const opencascade::handle & L, const Standard_Boolean WithContact = Standard_False, const Standard_Boolean WithCorrection = Standard_False); - /****************** SetLaw ******************/ - /**** md5 signature: d67cbe53520bea57d641b9a7a96a4fae ****/ + /****** BRepOffsetAPI_MakePipeShell::SetLaw ******/ + /****** md5 signature: d67cbe53520bea57d641b9a7a96a4fae ******/ %feature("compactdefaultargs") SetLaw; %feature("autodoc", " Parameters @@ -2169,8 +2169,8 @@ Sets the evolution law defined by the wire profile with its position (location, ") SetLaw; void SetLaw(const TopoDS_Shape & Profile, const opencascade::handle & L, const TopoDS_Vertex & Location, const Standard_Boolean WithContact = Standard_False, const Standard_Boolean WithCorrection = Standard_False); - /****************** SetMaxDegree ******************/ - /**** md5 signature: 2a3ad6060a0d872631abe8d437d6229f ****/ + /****** BRepOffsetAPI_MakePipeShell::SetMaxDegree ******/ + /****** md5 signature: 2a3ad6060a0d872631abe8d437d6229f ******/ %feature("compactdefaultargs") SetMaxDegree; %feature("autodoc", " Parameters @@ -2187,8 +2187,8 @@ Define the maximum v degree of resulting surface. ") SetMaxDegree; void SetMaxDegree(const Standard_Integer NewMaxDegree); - /****************** SetMaxSegments ******************/ - /**** md5 signature: 7215f32d76e44b535e90a1a1c2957613 ****/ + /****** BRepOffsetAPI_MakePipeShell::SetMaxSegments ******/ + /****** md5 signature: 7215f32d76e44b535e90a1a1c2957613 ******/ %feature("compactdefaultargs") SetMaxSegments; %feature("autodoc", " Parameters @@ -2205,8 +2205,8 @@ Define the maximum number of spans in v-direction on resulting surface. ") SetMaxSegments; void SetMaxSegments(const Standard_Integer NewMaxSegments); - /****************** SetMode ******************/ - /**** md5 signature: 20857301a5924ef00dcb05d83545dafe ****/ + /****** BRepOffsetAPI_MakePipeShell::SetMode ******/ + /****** md5 signature: 20857301a5924ef00dcb05d83545dafe ******/ %feature("compactdefaultargs") SetMode; %feature("autodoc", " Parameters @@ -2223,8 +2223,8 @@ Sets a frenet or a correctedfrenet trihedron to perform the sweeping if isfrenet ") SetMode; void SetMode(const Standard_Boolean IsFrenet = Standard_False); - /****************** SetMode ******************/ - /**** md5 signature: 53e884a5bc116ff1835f19ced706e8c7 ****/ + /****** BRepOffsetAPI_MakePipeShell::SetMode ******/ + /****** md5 signature: 53e884a5bc116ff1835f19ced706e8c7 ******/ %feature("compactdefaultargs") SetMode; %feature("autodoc", " Parameters @@ -2241,8 +2241,8 @@ Sets a fixed trihedron to perform the sweeping all sections will be parallel. ") SetMode; void SetMode(const gp_Ax2 & Axe); - /****************** SetMode ******************/ - /**** md5 signature: 58a4bdd8c9c0ebb3412c56dad6c67f67 ****/ + /****** BRepOffsetAPI_MakePipeShell::SetMode ******/ + /****** md5 signature: 58a4bdd8c9c0ebb3412c56dad6c67f67 ******/ %feature("compactdefaultargs") SetMode; %feature("autodoc", " Parameters @@ -2259,8 +2259,8 @@ Sets a fixed binormal direction to perform the -- sweeping. angular relations be ") SetMode; void SetMode(const gp_Dir & BiNormal); - /****************** SetMode ******************/ - /**** md5 signature: f11f503b2f352f2900bc069378318b41 ****/ + /****** BRepOffsetAPI_MakePipeShell::SetMode ******/ + /****** md5 signature: f11f503b2f352f2900bc069378318b41 ******/ %feature("compactdefaultargs") SetMode; %feature("autodoc", " Parameters @@ -2277,8 +2277,8 @@ Sets support to the spine to define the binormal of the trihedron, like the norm ") SetMode; Standard_Boolean SetMode(const TopoDS_Shape & SpineSupport); - /****************** SetMode ******************/ - /**** md5 signature: b56b51364ac5002747edc4b052d16a76 ****/ + /****** BRepOffsetAPI_MakePipeShell::SetMode ******/ + /****** md5 signature: b56b51364ac5002747edc4b052d16a76 ******/ %feature("compactdefaultargs") SetMode; %feature("autodoc", " Parameters @@ -2297,8 +2297,8 @@ Sets an auxiliary spine to define the normal for each point of the spine p, an p ") SetMode; void SetMode(const TopoDS_Wire & AuxiliarySpine, const Standard_Boolean CurvilinearEquivalence, const BRepFill_TypeOfContact KeepContact = BRepFill_NoContact); - /****************** SetTolerance ******************/ - /**** md5 signature: 7a6605305c5a1448579b26f09880877f ****/ + /****** BRepOffsetAPI_MakePipeShell::SetTolerance ******/ + /****** md5 signature: 7a6605305c5a1448579b26f09880877f ******/ %feature("compactdefaultargs") SetTolerance; %feature("autodoc", " Parameters @@ -2317,8 +2317,8 @@ Sets the following tolerance values - 3d tolerance tol3d - boundary tolerance bo ") SetTolerance; void SetTolerance(const Standard_Real Tol3d = 1.0e-4, const Standard_Real BoundTol = 1.0e-4, const Standard_Real TolAngular = 1.0e-2); - /****************** SetTransitionMode ******************/ - /**** md5 signature: 52d1ed1eb716770e53a2e79bdf9a0449 ****/ + /****** BRepOffsetAPI_MakePipeShell::SetTransitionMode ******/ + /****** md5 signature: 52d1ed1eb716770e53a2e79bdf9a0449 ******/ %feature("compactdefaultargs") SetTransitionMode; %feature("autodoc", " Parameters @@ -2335,8 +2335,8 @@ Sets the transition mode to manage discontinuities on the swept shape caused by ") SetTransitionMode; void SetTransitionMode(const BRepBuilderAPI_TransitionMode Mode = BRepBuilderAPI_Transformed); - /****************** Simulate ******************/ - /**** md5 signature: b923147c061b5747b67b09a6323794bf ****/ + /****** BRepOffsetAPI_MakePipeShell::Simulate ******/ + /****** md5 signature: b923147c061b5747b67b09a6323794bf ******/ %feature("compactdefaultargs") Simulate; %feature("autodoc", " Parameters @@ -2354,8 +2354,8 @@ Simulates the resulting shape by calculating its cross-sections. the spine is di ") Simulate; void Simulate(const Standard_Integer NumberOfSection, TopTools_ListOfShape & Result); - /****************** Spine ******************/ - /**** md5 signature: 6331688635fc3e41ab0cf89de46bd269 ****/ + /****** BRepOffsetAPI_MakePipeShell::Spine ******/ + /****** md5 signature: 6331688635fc3e41ab0cf89de46bd269 ******/ %feature("compactdefaultargs") Spine; %feature("autodoc", "Return ------- @@ -2381,8 +2381,8 @@ Returns the spine. *********************************/ class BRepOffsetAPI_MiddlePath : public BRepBuilderAPI_MakeShape { public: - /****************** BRepOffsetAPI_MiddlePath ******************/ - /**** md5 signature: c964dfce8ffed5f9be691f524371850a ****/ + /****** BRepOffsetAPI_MiddlePath::BRepOffsetAPI_MiddlePath ******/ + /****** md5 signature: c964dfce8ffed5f9be691f524371850a ******/ %feature("compactdefaultargs") BRepOffsetAPI_MiddlePath; %feature("autodoc", " Parameters @@ -2401,8 +2401,8 @@ General constructor. startshape and endshape may be a wire or a face. ") BRepOffsetAPI_MiddlePath; BRepOffsetAPI_MiddlePath(const TopoDS_Shape & aShape, const TopoDS_Shape & StartShape, const TopoDS_Shape & EndShape); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepOffsetAPI_MiddlePath::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -2433,8 +2433,8 @@ No available documentation. ***************************************/ class BRepOffsetAPI_NormalProjection : public BRepBuilderAPI_MakeShape { public: - /****************** BRepOffsetAPI_NormalProjection ******************/ - /**** md5 signature: 0c4037ae49bf91992e6b54c49ed0e578 ****/ + /****** BRepOffsetAPI_NormalProjection::BRepOffsetAPI_NormalProjection ******/ + /****** md5 signature: 0c4037ae49bf91992e6b54c49ed0e578 ******/ %feature("compactdefaultargs") BRepOffsetAPI_NormalProjection; %feature("autodoc", "Return ------- @@ -2446,8 +2446,8 @@ Constructs an empty framework to define projection on a shape according to the n ") BRepOffsetAPI_NormalProjection; BRepOffsetAPI_NormalProjection(); - /****************** BRepOffsetAPI_NormalProjection ******************/ - /**** md5 signature: 626de6f3a5351392edd43bc27dfabdc0 ****/ + /****** BRepOffsetAPI_NormalProjection::BRepOffsetAPI_NormalProjection ******/ + /****** md5 signature: 626de6f3a5351392edd43bc27dfabdc0 ******/ %feature("compactdefaultargs") BRepOffsetAPI_NormalProjection; %feature("autodoc", " Parameters @@ -2464,8 +2464,8 @@ Constructs a framework to define projection onto the basis shape s according to ") BRepOffsetAPI_NormalProjection; BRepOffsetAPI_NormalProjection(const TopoDS_Shape & S); - /****************** Add ******************/ - /**** md5 signature: 819f71062dd96e4b529bccdf1bb50cf1 ****/ + /****** BRepOffsetAPI_NormalProjection::Add ******/ + /****** md5 signature: 819f71062dd96e4b529bccdf1bb50cf1 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -2482,8 +2482,8 @@ Adds the shape toproj to the framework for calculation of the projection by comp ") Add; void Add(const TopoDS_Shape & ToProj); - /****************** Ancestor ******************/ - /**** md5 signature: 551c6ce85c529cb60615765a58d47215 ****/ + /****** BRepOffsetAPI_NormalProjection::Ancestor ******/ + /****** md5 signature: 551c6ce85c529cb60615765a58d47215 ******/ %feature("compactdefaultargs") Ancestor; %feature("autodoc", " Parameters @@ -2500,8 +2500,8 @@ Returns the initial edge corresponding to the edge e resulting from the computat ") Ancestor; const TopoDS_Shape Ancestor(const TopoDS_Edge & E); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepOffsetAPI_NormalProjection::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -2518,8 +2518,8 @@ Builds the result of the projection as a compound of wires. tries to build orien ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** BuildWire ******************/ - /**** md5 signature: e5fb4f3952649b872b4fb3c469f5b161 ****/ + /****** BRepOffsetAPI_NormalProjection::BuildWire ******/ + /****** md5 signature: e5fb4f3952649b872b4fb3c469f5b161 ******/ %feature("compactdefaultargs") BuildWire; %feature("autodoc", " Parameters @@ -2536,8 +2536,8 @@ Build the result as a list of wire if possible in -- a first returns a wire only ") BuildWire; Standard_Boolean BuildWire(TopTools_ListOfShape & Liste); - /****************** Compute3d ******************/ - /**** md5 signature: a18b9a3fc4a7d346645e19e03d893102 ****/ + /****** BRepOffsetAPI_NormalProjection::Compute3d ******/ + /****** md5 signature: a18b9a3fc4a7d346645e19e03d893102 ******/ %feature("compactdefaultargs") Compute3d; %feature("autodoc", " Parameters @@ -2554,8 +2554,8 @@ Returns true if a 3d curve is computed. if not, false is returned and an initial ") Compute3d; void Compute3d(const Standard_Boolean With3d = Standard_True); - /****************** Couple ******************/ - /**** md5 signature: cbe6db4e25bf42b45544f6235fc33773 ****/ + /****** BRepOffsetAPI_NormalProjection::Couple ******/ + /****** md5 signature: cbe6db4e25bf42b45544f6235fc33773 ******/ %feature("compactdefaultargs") Couple; %feature("autodoc", " Parameters @@ -2572,8 +2572,8 @@ Returns the initial face corresponding to the projected edge e. exceptions stdfa ") Couple; const TopoDS_Shape Couple(const TopoDS_Edge & E); - /****************** Generated ******************/ - /**** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ****/ + /****** BRepOffsetAPI_NormalProjection::Generated ******/ + /****** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -2590,8 +2590,8 @@ Returns the list of shapes generated from the shape . ") Generated; virtual const TopTools_ListOfShape & Generated(const TopoDS_Shape & S); - /****************** Init ******************/ - /**** md5 signature: 5b69b32485b3d9f82ae4abb9c853c3c7 ****/ + /****** BRepOffsetAPI_NormalProjection::Init ******/ + /****** md5 signature: 5b69b32485b3d9f82ae4abb9c853c3c7 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2608,8 +2608,8 @@ Initializes the empty constructor framework with the shape s. ") Init; void Init(const TopoDS_Shape & S); - /****************** IsDone ******************/ - /**** md5 signature: c9aa3a454774a145a334d5dad12c1786 ****/ + /****** BRepOffsetAPI_NormalProjection::IsDone ******/ + /****** md5 signature: c9aa3a454774a145a334d5dad12c1786 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -2621,8 +2621,8 @@ Returns true if the object was correctly built by the shape construction algorit ") IsDone; Standard_Boolean IsDone(); - /****************** Projection ******************/ - /**** md5 signature: d96e6638e8d3c59fa6809c83eda77a82 ****/ + /****** BRepOffsetAPI_NormalProjection::Projection ******/ + /****** md5 signature: d96e6638e8d3c59fa6809c83eda77a82 ******/ %feature("compactdefaultargs") Projection; %feature("autodoc", "Return ------- @@ -2634,8 +2634,8 @@ Performs the projection. the construction of the result is performed by build. e ") Projection; const TopoDS_Shape Projection(); - /****************** SetLimit ******************/ - /**** md5 signature: 2affba7d2b02ca0d9a96522f0a57d409 ****/ + /****** BRepOffsetAPI_NormalProjection::SetLimit ******/ + /****** md5 signature: 2affba7d2b02ca0d9a96522f0a57d409 ******/ %feature("compactdefaultargs") SetLimit; %feature("autodoc", " Parameters @@ -2652,8 +2652,8 @@ Manage limitation of projected edges. ") SetLimit; void SetLimit(const Standard_Boolean FaceBoundaries = Standard_True); - /****************** SetMaxDistance ******************/ - /**** md5 signature: 7c596903416448c58cc2576fe5ca8153 ****/ + /****** BRepOffsetAPI_NormalProjection::SetMaxDistance ******/ + /****** md5 signature: 7c596903416448c58cc2576fe5ca8153 ******/ %feature("compactdefaultargs") SetMaxDistance; %feature("autodoc", " Parameters @@ -2670,8 +2670,8 @@ Sets the maximum distance between target shape and shape to project. if this con ") SetMaxDistance; void SetMaxDistance(const Standard_Real MaxDist); - /****************** SetParams ******************/ - /**** md5 signature: 145439fe62b19bd0fd3e24e9c7dd4c4d ****/ + /****** BRepOffsetAPI_NormalProjection::SetParams ******/ + /****** md5 signature: 145439fe62b19bd0fd3e24e9c7dd4c4d ******/ %feature("compactdefaultargs") SetParams; %feature("autodoc", " Parameters @@ -2706,8 +2706,8 @@ Sets the parameters used for computation tol3 is the required tolerance between ***********************************/ class BRepOffsetAPI_ThruSections : public BRepBuilderAPI_MakeShape { public: - /****************** BRepOffsetAPI_ThruSections ******************/ - /**** md5 signature: 2d1d68118a0d4fb22ccde1e154fbe87e ****/ + /****** BRepOffsetAPI_ThruSections::BRepOffsetAPI_ThruSections ******/ + /****** md5 signature: 2d1d68118a0d4fb22ccde1e154fbe87e ******/ %feature("compactdefaultargs") BRepOffsetAPI_ThruSections; %feature("autodoc", " Parameters @@ -2726,8 +2726,8 @@ Initializes an algorithm for building a shell or a solid passing through a set o ") BRepOffsetAPI_ThruSections; BRepOffsetAPI_ThruSections(const Standard_Boolean isSolid = Standard_False, const Standard_Boolean ruled = Standard_False, const Standard_Real pres3d = 1.0e-06); - /****************** AddVertex ******************/ - /**** md5 signature: b3427ef9c13bb9d306f4377b747f6e3c ****/ + /****** BRepOffsetAPI_ThruSections::AddVertex ******/ + /****** md5 signature: b3427ef9c13bb9d306f4377b747f6e3c ******/ %feature("compactdefaultargs") AddVertex; %feature("autodoc", " Parameters @@ -2744,8 +2744,8 @@ Adds the vertex vertex (punctual section) to the set of sections through which t ") AddVertex; void AddVertex(const TopoDS_Vertex & aVertex); - /****************** AddWire ******************/ - /**** md5 signature: 91c116931995adc0c5abeaf5746c9601 ****/ + /****** BRepOffsetAPI_ThruSections::AddWire ******/ + /****** md5 signature: 91c116931995adc0c5abeaf5746c9601 ******/ %feature("compactdefaultargs") AddWire; %feature("autodoc", " Parameters @@ -2762,8 +2762,8 @@ Adds the wire wire to the set of sections through which the shell or solid is bu ") AddWire; void AddWire(const TopoDS_Wire & wire); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepOffsetAPI_ThruSections::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -2780,8 +2780,8 @@ No available documentation. ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** CheckCompatibility ******************/ - /**** md5 signature: 9d9925f6850c3d616051e8fa827482f4 ****/ + /****** BRepOffsetAPI_ThruSections::CheckCompatibility ******/ + /****** md5 signature: 9d9925f6850c3d616051e8fa827482f4 ******/ %feature("compactdefaultargs") CheckCompatibility; %feature("autodoc", " Parameters @@ -2798,8 +2798,8 @@ Sets/unsets the option to compute origin and orientation on wires to avoid twist ") CheckCompatibility; void CheckCompatibility(const Standard_Boolean check = Standard_True); - /****************** Continuity ******************/ - /**** md5 signature: 4cc571878c66d538aeaf8b0affec3574 ****/ + /****** BRepOffsetAPI_ThruSections::Continuity ******/ + /****** md5 signature: 4cc571878c66d538aeaf8b0affec3574 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", "Return ------- @@ -2811,8 +2811,8 @@ Returns the continuity used in the approximation. ") Continuity; GeomAbs_Shape Continuity(); - /****************** CriteriumWeight ******************/ - /**** md5 signature: 4b68323f3c03d233f69e27404a58a42c ****/ + /****** BRepOffsetAPI_ThruSections::CriteriumWeight ******/ + /****** md5 signature: 4b68323f3c03d233f69e27404a58a42c ******/ %feature("compactdefaultargs") CriteriumWeight; %feature("autodoc", " Parameters @@ -2830,8 +2830,8 @@ Returns the weights associed to the criterium used in the optimization. ") CriteriumWeight; void CriteriumWeight(Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** FirstShape ******************/ - /**** md5 signature: 7feb91b88f8f76be63dd0e52049cfbe6 ****/ + /****** BRepOffsetAPI_ThruSections::FirstShape ******/ + /****** md5 signature: 7feb91b88f8f76be63dd0e52049cfbe6 ******/ %feature("compactdefaultargs") FirstShape; %feature("autodoc", "Return ------- @@ -2843,8 +2843,8 @@ Returns the topods shape of the bottom of the loft if solid. ") FirstShape; const TopoDS_Shape FirstShape(); - /****************** Generated ******************/ - /**** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ****/ + /****** BRepOffsetAPI_ThruSections::Generated ******/ + /****** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -2861,8 +2861,8 @@ Returns a list of new shapes generated from the shape s by the shell-generating ") Generated; virtual const TopTools_ListOfShape & Generated(const TopoDS_Shape & S); - /****************** GeneratedFace ******************/ - /**** md5 signature: 03196f2ef499f6adc08e797085c3e792 ****/ + /****** BRepOffsetAPI_ThruSections::GeneratedFace ******/ + /****** md5 signature: 03196f2ef499f6adc08e797085c3e792 ******/ %feature("compactdefaultargs") GeneratedFace; %feature("autodoc", " Parameters @@ -2879,8 +2879,8 @@ If ruled returns the face generated by each edge except the last wire if smoothe ") GeneratedFace; TopoDS_Shape GeneratedFace(const TopoDS_Shape & Edge); - /****************** GetStatus ******************/ - /**** md5 signature: d01d66bd030c1232d59d2b7253fc3b10 ****/ + /****** BRepOffsetAPI_ThruSections::GetStatus ******/ + /****** md5 signature: d01d66bd030c1232d59d2b7253fc3b10 ******/ %feature("compactdefaultargs") GetStatus; %feature("autodoc", "Return ------- @@ -2892,8 +2892,8 @@ Returns the status of thrusection operation. ") GetStatus; BRepFill_ThruSectionErrorStatus GetStatus(); - /****************** Init ******************/ - /**** md5 signature: 82b061dc05f66b08422610d2d7504487 ****/ + /****** BRepOffsetAPI_ThruSections::Init ******/ + /****** md5 signature: 82b061dc05f66b08422610d2d7504487 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2912,8 +2912,8 @@ Initializes this algorithm for building a shell or a solid passing through a set ") Init; void Init(const Standard_Boolean isSolid = Standard_False, const Standard_Boolean ruled = Standard_False, const Standard_Real pres3d = 1.0e-06); - /****************** IsMutableInput ******************/ - /**** md5 signature: 2df16e5a957577cfce65832aa2d90512 ****/ + /****** BRepOffsetAPI_ThruSections::IsMutableInput ******/ + /****** md5 signature: 2df16e5a957577cfce65832aa2d90512 ******/ %feature("compactdefaultargs") IsMutableInput; %feature("autodoc", "Return ------- @@ -2925,8 +2925,8 @@ Returns the current mutable input state. ") IsMutableInput; Standard_Boolean IsMutableInput(); - /****************** LastShape ******************/ - /**** md5 signature: e1c69c3678b816cb0e3d73096b528c5f ****/ + /****** BRepOffsetAPI_ThruSections::LastShape ******/ + /****** md5 signature: e1c69c3678b816cb0e3d73096b528c5f ******/ %feature("compactdefaultargs") LastShape; %feature("autodoc", "Return ------- @@ -2938,8 +2938,8 @@ Returns the topods shape of the top of the loft if solid. ") LastShape; const TopoDS_Shape LastShape(); - /****************** MaxDegree ******************/ - /**** md5 signature: 2c79ca8c281a4e3978650b16dd11f77d ****/ + /****** BRepOffsetAPI_ThruSections::MaxDegree ******/ + /****** md5 signature: 2c79ca8c281a4e3978650b16dd11f77d ******/ %feature("compactdefaultargs") MaxDegree; %feature("autodoc", "Return ------- @@ -2951,8 +2951,8 @@ Returns the maximal u degree of result surface. ") MaxDegree; Standard_Integer MaxDegree(); - /****************** ParType ******************/ - /**** md5 signature: 97fa11d31bc8075ba4a84bf8b926a855 ****/ + /****** BRepOffsetAPI_ThruSections::ParType ******/ + /****** md5 signature: 97fa11d31bc8075ba4a84bf8b926a855 ******/ %feature("compactdefaultargs") ParType; %feature("autodoc", "Return ------- @@ -2964,8 +2964,8 @@ Returns the type of parametrization used in the approximation. ") ParType; Approx_ParametrizationType ParType(); - /****************** SetContinuity ******************/ - /**** md5 signature: 41a91b0ea6e9b248a1b48c05882f4281 ****/ + /****** BRepOffsetAPI_ThruSections::SetContinuity ******/ + /****** md5 signature: 41a91b0ea6e9b248a1b48c05882f4281 ******/ %feature("compactdefaultargs") SetContinuity; %feature("autodoc", " Parameters @@ -2982,8 +2982,8 @@ Define the continuity used in the approximation. ") SetContinuity; void SetContinuity(const GeomAbs_Shape C); - /****************** SetCriteriumWeight ******************/ - /**** md5 signature: f8c7045bd0e7f781a0984d023e8b1268 ****/ + /****** BRepOffsetAPI_ThruSections::SetCriteriumWeight ******/ + /****** md5 signature: f8c7045bd0e7f781a0984d023e8b1268 ******/ %feature("compactdefaultargs") SetCriteriumWeight; %feature("autodoc", " Parameters @@ -3002,8 +3002,8 @@ Define the weights associed to the criterium used in the optimization. //! if wi ") SetCriteriumWeight; void SetCriteriumWeight(const Standard_Real W1, const Standard_Real W2, const Standard_Real W3); - /****************** SetMaxDegree ******************/ - /**** md5 signature: 764b2b655767f13bc2f68fea914b035d ****/ + /****** BRepOffsetAPI_ThruSections::SetMaxDegree ******/ + /****** md5 signature: 764b2b655767f13bc2f68fea914b035d ******/ %feature("compactdefaultargs") SetMaxDegree; %feature("autodoc", " Parameters @@ -3020,8 +3020,8 @@ Define the maximal u degree of result surface. ") SetMaxDegree; void SetMaxDegree(const Standard_Integer MaxDeg); - /****************** SetMutableInput ******************/ - /**** md5 signature: a0db619cccd4a2c2b443a5ab39c10ef8 ****/ + /****** BRepOffsetAPI_ThruSections::SetMutableInput ******/ + /****** md5 signature: a0db619cccd4a2c2b443a5ab39c10ef8 ******/ %feature("compactdefaultargs") SetMutableInput; %feature("autodoc", " Parameters @@ -3038,8 +3038,8 @@ Sets the mutable input state. if true then the input profile can be modified ins ") SetMutableInput; void SetMutableInput(const Standard_Boolean theIsMutableInput); - /****************** SetParType ******************/ - /**** md5 signature: ff343d7833ad3cc796439eb5cefa88ba ****/ + /****** BRepOffsetAPI_ThruSections::SetParType ******/ + /****** md5 signature: ff343d7833ad3cc796439eb5cefa88ba ******/ %feature("compactdefaultargs") SetParType; %feature("autodoc", " Parameters @@ -3056,8 +3056,8 @@ Define the type of parametrization used in the approximation. ") SetParType; void SetParType(const Approx_ParametrizationType ParType); - /****************** SetSmoothing ******************/ - /**** md5 signature: bd2468fb64c3e1eaeaa057fe519f5331 ****/ + /****** BRepOffsetAPI_ThruSections::SetSmoothing ******/ + /****** md5 signature: bd2468fb64c3e1eaeaa057fe519f5331 ******/ %feature("compactdefaultargs") SetSmoothing; %feature("autodoc", " Parameters @@ -3074,8 +3074,8 @@ Define the approximation algorithm. ") SetSmoothing; void SetSmoothing(const Standard_Boolean UseSmoothing); - /****************** UseSmoothing ******************/ - /**** md5 signature: 6d5d2a8f22f593639c02abb00ea646e6 ****/ + /****** BRepOffsetAPI_ThruSections::UseSmoothing ******/ + /****** md5 signature: 6d5d2a8f22f593639c02abb00ea646e6 ******/ %feature("compactdefaultargs") UseSmoothing; %feature("autodoc", "Return ------- @@ -3087,8 +3087,8 @@ Define the approximation algorithm. ") UseSmoothing; Standard_Boolean UseSmoothing(); - /****************** Wires ******************/ - /**** md5 signature: 7af6829b521050de003f1b861d6f8640 ****/ + /****** BRepOffsetAPI_ThruSections::Wires ******/ + /****** md5 signature: 7af6829b521050de003f1b861d6f8640 ******/ %feature("compactdefaultargs") Wires; %feature("autodoc", "Return ------- @@ -3114,8 +3114,8 @@ Returns the list of original wires. *************************************/ class BRepOffsetAPI_MakeThickSolid : public BRepOffsetAPI_MakeOffsetShape { public: - /****************** BRepOffsetAPI_MakeThickSolid ******************/ - /**** md5 signature: 06d7c93c29e576765f1416bf7911cecc ****/ + /****** BRepOffsetAPI_MakeThickSolid::BRepOffsetAPI_MakeThickSolid ******/ + /****** md5 signature: 06d7c93c29e576765f1416bf7911cecc ******/ %feature("compactdefaultargs") BRepOffsetAPI_MakeThickSolid; %feature("autodoc", "Return ------- @@ -3127,8 +3127,8 @@ Constructor does nothing. ") BRepOffsetAPI_MakeThickSolid; BRepOffsetAPI_MakeThickSolid(); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepOffsetAPI_MakeThickSolid::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -3145,8 +3145,8 @@ No available documentation. ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** MakeThickSolidByJoin ******************/ - /**** md5 signature: dcb05ab3a700af2d16599d05a81891dd ****/ + /****** BRepOffsetAPI_MakeThickSolid::MakeThickSolidByJoin ******/ + /****** md5 signature: dcb05ab3a700af2d16599d05a81891dd ******/ %feature("compactdefaultargs") MakeThickSolidByJoin; %feature("autodoc", " Parameters @@ -3172,8 +3172,8 @@ Constructs a hollowed solid from the solid s by removing the set of faces closin ") MakeThickSolidByJoin; void MakeThickSolidByJoin(const TopoDS_Shape & S, const TopTools_ListOfShape & ClosingFaces, const Standard_Real Offset, const Standard_Real Tol, const BRepOffset_Mode Mode = BRepOffset_Skin, const Standard_Boolean Intersection = Standard_False, const Standard_Boolean SelfInter = Standard_False, const GeomAbs_JoinType Join = GeomAbs_Arc, const Standard_Boolean RemoveIntEdges = Standard_False, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** MakeThickSolidBySimple ******************/ - /**** md5 signature: 61ce1557142588e14d9829f511172d15 ****/ + /****** BRepOffsetAPI_MakeThickSolid::MakeThickSolidBySimple ******/ + /****** md5 signature: 61ce1557142588e14d9829f511172d15 ******/ %feature("compactdefaultargs") MakeThickSolidBySimple; %feature("autodoc", " Parameters @@ -3191,8 +3191,8 @@ Constructs solid using simple algorithm. according to its nature it is not possi ") MakeThickSolidBySimple; void MakeThickSolidBySimple(const TopoDS_Shape & theS, const Standard_Real theOffsetValue); - /****************** Modified ******************/ - /**** md5 signature: 73ccfe97b4ed94547a190332224ffe23 ****/ + /****** BRepOffsetAPI_MakeThickSolid::Modified ******/ + /****** md5 signature: 73ccfe97b4ed94547a190332224ffe23 ******/ %feature("compactdefaultargs") Modified; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BRepPrim.i b/src/SWIG_files/wrapper/BRepPrim.i index a22e6d70e..be698f916 100644 --- a/src/SWIG_files/wrapper/BRepPrim.i +++ b/src/SWIG_files/wrapper/BRepPrim.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPPRIMDOCSTRING "BRepPrim module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepprim.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepprim.html" %enddef %module (package="OCC.Core", docstring=BREPPRIMDOCSTRING) BRepPrim @@ -117,8 +117,8 @@ BRepPrim_ZMax = BRepPrim_Direction.BRepPrim_ZMax *************************/ class BRepPrim_Builder { public: - /****************** BRepPrim_Builder ******************/ - /**** md5 signature: d39d0b6fde78f20a7504efe22c7e0763 ****/ + /****** BRepPrim_Builder::BRepPrim_Builder ******/ + /****** md5 signature: d39d0b6fde78f20a7504efe22c7e0763 ******/ %feature("compactdefaultargs") BRepPrim_Builder; %feature("autodoc", "Return ------- @@ -130,8 +130,8 @@ Creates an empty, useless builder. necesseray for compilation. ") BRepPrim_Builder; BRepPrim_Builder(); - /****************** BRepPrim_Builder ******************/ - /**** md5 signature: d35b9752dc1460a7c056a321b4d55ea1 ****/ + /****** BRepPrim_Builder::BRepPrim_Builder ******/ + /****** md5 signature: d35b9752dc1460a7c056a321b4d55ea1 ******/ %feature("compactdefaultargs") BRepPrim_Builder; %feature("autodoc", " Parameters @@ -148,8 +148,8 @@ Creates from a builder. ") BRepPrim_Builder; BRepPrim_Builder(const BRep_Builder & B); - /****************** AddEdgeVertex ******************/ - /**** md5 signature: 6f53515e7cce4cf475d8fb8d1dc2d077 ****/ + /****** BRepPrim_Builder::AddEdgeVertex ******/ + /****** md5 signature: 6f53515e7cce4cf475d8fb8d1dc2d077 ******/ %feature("compactdefaultargs") AddEdgeVertex; %feature("autodoc", " Parameters @@ -169,8 +169,8 @@ Adds the vertex in the edge .

is the parameter of the vertex on the e ") AddEdgeVertex; void AddEdgeVertex(TopoDS_Edge & E, const TopoDS_Vertex & V, const Standard_Real P, const Standard_Boolean direct); - /****************** AddEdgeVertex ******************/ - /**** md5 signature: e1f1f3259a33316b4b0620b5dc3101e6 ****/ + /****** BRepPrim_Builder::AddEdgeVertex ******/ + /****** md5 signature: e1f1f3259a33316b4b0620b5dc3101e6 ******/ %feature("compactdefaultargs") AddEdgeVertex; %feature("autodoc", " Parameters @@ -190,8 +190,8 @@ Adds the vertex in the edge . are the parameters of the vertex on ") AddEdgeVertex; void AddEdgeVertex(TopoDS_Edge & E, const TopoDS_Vertex & V, const Standard_Real P1, const Standard_Real P2); - /****************** AddFaceWire ******************/ - /**** md5 signature: 2a83461df737a0f4a3acdaf75556ee0e ****/ + /****** BRepPrim_Builder::AddFaceWire ******/ + /****** md5 signature: 2a83461df737a0f4a3acdaf75556ee0e ******/ %feature("compactdefaultargs") AddFaceWire; %feature("autodoc", " Parameters @@ -209,8 +209,8 @@ Adds the wire in the face . ") AddFaceWire; void AddFaceWire(TopoDS_Face & F, const TopoDS_Wire & W); - /****************** AddShellFace ******************/ - /**** md5 signature: 14b9772b177e00751a82f1e6eb05d592 ****/ + /****** BRepPrim_Builder::AddShellFace ******/ + /****** md5 signature: 14b9772b177e00751a82f1e6eb05d592 ******/ %feature("compactdefaultargs") AddShellFace; %feature("autodoc", " Parameters @@ -228,8 +228,8 @@ Adds the face in the shell . ") AddShellFace; void AddShellFace(TopoDS_Shell & Sh, const TopoDS_Face & F); - /****************** AddWireEdge ******************/ - /**** md5 signature: 35ba979185bf17962e695e9244060701 ****/ + /****** BRepPrim_Builder::AddWireEdge ******/ + /****** md5 signature: 35ba979185bf17962e695e9244060701 ******/ %feature("compactdefaultargs") AddWireEdge; %feature("autodoc", " Parameters @@ -248,8 +248,8 @@ Adds the edge in the wire , if direct is false the edge is reversed. ") AddWireEdge; void AddWireEdge(TopoDS_Wire & W, const TopoDS_Edge & E, const Standard_Boolean direct); - /****************** Builder ******************/ - /**** md5 signature: 0e400544facfe2a99c354fd61331d22b ****/ + /****** BRepPrim_Builder::Builder ******/ + /****** md5 signature: 0e400544facfe2a99c354fd61331d22b ******/ %feature("compactdefaultargs") Builder; %feature("autodoc", "Return ------- @@ -261,8 +261,8 @@ No available documentation. ") Builder; const BRep_Builder & Builder(); - /****************** CompleteEdge ******************/ - /**** md5 signature: d730676546d85b4bd88605dd1599b062 ****/ + /****** BRepPrim_Builder::CompleteEdge ******/ + /****** md5 signature: d730676546d85b4bd88605dd1599b062 ******/ %feature("compactdefaultargs") CompleteEdge; %feature("autodoc", " Parameters @@ -279,8 +279,8 @@ This is called once an edge is completed. it gives the opportunity to perform an ") CompleteEdge; void CompleteEdge(TopoDS_Edge & E); - /****************** CompleteFace ******************/ - /**** md5 signature: 9fdae44dae4b2388e5169847accfb8d8 ****/ + /****** BRepPrim_Builder::CompleteFace ******/ + /****** md5 signature: 9fdae44dae4b2388e5169847accfb8d8 ******/ %feature("compactdefaultargs") CompleteFace; %feature("autodoc", " Parameters @@ -297,8 +297,8 @@ This is called once a face is completed. it gives the opportunity to perform any ") CompleteFace; void CompleteFace(TopoDS_Face & F); - /****************** CompleteShell ******************/ - /**** md5 signature: 2b94b7cc886da1f27ada604cd72b092c ****/ + /****** BRepPrim_Builder::CompleteShell ******/ + /****** md5 signature: 2b94b7cc886da1f27ada604cd72b092c ******/ %feature("compactdefaultargs") CompleteShell; %feature("autodoc", " Parameters @@ -315,8 +315,8 @@ This is called once a shell is completed. it gives the opportunity to perform an ") CompleteShell; void CompleteShell(TopoDS_Shell & S); - /****************** CompleteWire ******************/ - /**** md5 signature: 53c17c6669114aebdc50b6c0031cfb8d ****/ + /****** BRepPrim_Builder::CompleteWire ******/ + /****** md5 signature: 53c17c6669114aebdc50b6c0031cfb8d ******/ %feature("compactdefaultargs") CompleteWire; %feature("autodoc", " Parameters @@ -333,8 +333,8 @@ This is called once a wire is completed. it gives the opportunity to perform any ") CompleteWire; void CompleteWire(TopoDS_Wire & W); - /****************** MakeDegeneratedEdge ******************/ - /**** md5 signature: 703a262cbf47cf2cc0cc8cbc76fb4997 ****/ + /****** BRepPrim_Builder::MakeDegeneratedEdge ******/ + /****** md5 signature: 703a262cbf47cf2cc0cc8cbc76fb4997 ******/ %feature("compactdefaultargs") MakeDegeneratedEdge; %feature("autodoc", " Parameters @@ -351,8 +351,8 @@ Returns in a degenerated edge. ") MakeDegeneratedEdge; void MakeDegeneratedEdge(TopoDS_Edge & E); - /****************** MakeEdge ******************/ - /**** md5 signature: 2acfeb2087ea3647f64fad71cb7d736c ****/ + /****** BRepPrim_Builder::MakeEdge ******/ + /****** md5 signature: 2acfeb2087ea3647f64fad71cb7d736c ******/ %feature("compactdefaultargs") MakeEdge; %feature("autodoc", " Parameters @@ -370,8 +370,8 @@ Returns in an edge built with the line equation . ") MakeEdge; void MakeEdge(TopoDS_Edge & E, const gp_Lin & L); - /****************** MakeEdge ******************/ - /**** md5 signature: f3f9c90b34065966cff70f6a24c006e2 ****/ + /****** BRepPrim_Builder::MakeEdge ******/ + /****** md5 signature: f3f9c90b34065966cff70f6a24c006e2 ******/ %feature("compactdefaultargs") MakeEdge; %feature("autodoc", " Parameters @@ -389,8 +389,8 @@ Returns in an edge built with the circle equation . ") MakeEdge; void MakeEdge(TopoDS_Edge & E, const gp_Circ & C); - /****************** MakeFace ******************/ - /**** md5 signature: e4bfbfee4d4a2491c4c776a066dcd6e9 ****/ + /****** BRepPrim_Builder::MakeFace ******/ + /****** md5 signature: e4bfbfee4d4a2491c4c776a066dcd6e9 ******/ %feature("compactdefaultargs") MakeFace; %feature("autodoc", " Parameters @@ -408,8 +408,8 @@ Returns in a face built with the plane equation

. used by all primitives. ") MakeFace; void MakeFace(TopoDS_Face & F, const gp_Pln & P); - /****************** MakeShell ******************/ - /**** md5 signature: 2854985e778e4f5296d3dcce3926dae9 ****/ + /****** BRepPrim_Builder::MakeShell ******/ + /****** md5 signature: 2854985e778e4f5296d3dcce3926dae9 ******/ %feature("compactdefaultargs") MakeShell; %feature("autodoc", " Parameters @@ -426,8 +426,8 @@ Make a empty shell. ") MakeShell; void MakeShell(TopoDS_Shell & S); - /****************** MakeVertex ******************/ - /**** md5 signature: aea78d8a1e62c33f652543f4fdefc33c ****/ + /****** BRepPrim_Builder::MakeVertex ******/ + /****** md5 signature: aea78d8a1e62c33f652543f4fdefc33c ******/ %feature("compactdefaultargs") MakeVertex; %feature("autodoc", " Parameters @@ -445,8 +445,8 @@ Returns in a vertex built with the point

. ") MakeVertex; void MakeVertex(TopoDS_Vertex & V, const gp_Pnt & P); - /****************** MakeWire ******************/ - /**** md5 signature: a7807363bff6d0d52ee9e63114e705f0 ****/ + /****** BRepPrim_Builder::MakeWire ******/ + /****** md5 signature: a7807363bff6d0d52ee9e63114e705f0 ******/ %feature("compactdefaultargs") MakeWire; %feature("autodoc", " Parameters @@ -463,8 +463,8 @@ Returns in an empty wire. ") MakeWire; void MakeWire(TopoDS_Wire & W); - /****************** ReverseFace ******************/ - /**** md5 signature: 170808229bc7fb43f109beb51219144c ****/ + /****** BRepPrim_Builder::ReverseFace ******/ + /****** md5 signature: 170808229bc7fb43f109beb51219144c ******/ %feature("compactdefaultargs") ReverseFace; %feature("autodoc", " Parameters @@ -481,8 +481,8 @@ Reverses the face . ") ReverseFace; void ReverseFace(TopoDS_Face & F); - /****************** SetPCurve ******************/ - /**** md5 signature: e65cb236e9d1dcb14460f8ffa09b72cb ****/ + /****** BRepPrim_Builder::SetPCurve ******/ + /****** md5 signature: e65cb236e9d1dcb14460f8ffa09b72cb ******/ %feature("compactdefaultargs") SetPCurve; %feature("autodoc", " Parameters @@ -501,8 +501,8 @@ Sets the line to be the curve representing the edge in the parametric sp ") SetPCurve; void SetPCurve(TopoDS_Edge & E, const TopoDS_Face & F, const gp_Lin2d & L); - /****************** SetPCurve ******************/ - /**** md5 signature: 3f5d6438734ac9ae64b3691e211f2fe1 ****/ + /****** BRepPrim_Builder::SetPCurve ******/ + /****** md5 signature: 3f5d6438734ac9ae64b3691e211f2fe1 ******/ %feature("compactdefaultargs") SetPCurve; %feature("autodoc", " Parameters @@ -522,8 +522,8 @@ Sets the lines to be the curves representing the edge in the paramet ") SetPCurve; void SetPCurve(TopoDS_Edge & E, const TopoDS_Face & F, const gp_Lin2d & L1, const gp_Lin2d & L2); - /****************** SetPCurve ******************/ - /**** md5 signature: 6e66ca01d676dd1712cfd0fbe3284460 ****/ + /****** BRepPrim_Builder::SetPCurve ******/ + /****** md5 signature: 6e66ca01d676dd1712cfd0fbe3284460 ******/ %feature("compactdefaultargs") SetPCurve; %feature("autodoc", " Parameters @@ -542,8 +542,8 @@ Sets the circle to be the curve representing the edge in the parametric ") SetPCurve; void SetPCurve(TopoDS_Edge & E, const TopoDS_Face & F, const gp_Circ2d & C); - /****************** SetParameters ******************/ - /**** md5 signature: e5c2f16c6f9bf82902e3c5354144fd14 ****/ + /****** BRepPrim_Builder::SetParameters ******/ + /****** md5 signature: e5c2f16c6f9bf82902e3c5354144fd14 ******/ %feature("compactdefaultargs") SetParameters; %feature("autodoc", " Parameters @@ -577,8 +577,8 @@ Description *****************************/ class BRepPrim_FaceBuilder { public: - /****************** BRepPrim_FaceBuilder ******************/ - /**** md5 signature: 463f01a2bbda2d3518e3fa5d511804ca ****/ + /****** BRepPrim_FaceBuilder::BRepPrim_FaceBuilder ******/ + /****** md5 signature: 463f01a2bbda2d3518e3fa5d511804ca ******/ %feature("compactdefaultargs") BRepPrim_FaceBuilder; %feature("autodoc", "Return ------- @@ -590,8 +590,8 @@ No available documentation. ") BRepPrim_FaceBuilder; BRepPrim_FaceBuilder(); - /****************** BRepPrim_FaceBuilder ******************/ - /**** md5 signature: 11490bad0e7109bcdd92e1631f2eec5d ****/ + /****** BRepPrim_FaceBuilder::BRepPrim_FaceBuilder ******/ + /****** md5 signature: 11490bad0e7109bcdd92e1631f2eec5d ******/ %feature("compactdefaultargs") BRepPrim_FaceBuilder; %feature("autodoc", " Parameters @@ -609,8 +609,8 @@ No available documentation. ") BRepPrim_FaceBuilder; BRepPrim_FaceBuilder(const BRep_Builder & B, const opencascade::handle & S); - /****************** BRepPrim_FaceBuilder ******************/ - /**** md5 signature: 77807a8c6d982a6a0e34b40d3bba46a3 ****/ + /****** BRepPrim_FaceBuilder::BRepPrim_FaceBuilder ******/ + /****** md5 signature: 77807a8c6d982a6a0e34b40d3bba46a3 ******/ %feature("compactdefaultargs") BRepPrim_FaceBuilder; %feature("autodoc", " Parameters @@ -632,8 +632,8 @@ No available documentation. ") BRepPrim_FaceBuilder; BRepPrim_FaceBuilder(const BRep_Builder & B, const opencascade::handle & S, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax); - /****************** Edge ******************/ - /**** md5 signature: 42b39345502468321490e229b9ed050c ****/ + /****** BRepPrim_FaceBuilder::Edge ******/ + /****** md5 signature: 42b39345502468321490e229b9ed050c ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", " Parameters @@ -650,8 +650,8 @@ Returns the edge of index 1 - edge vmin 2 - edge umax 3 - edge vmax 4 - edge ") Edge; const TopoDS_Edge Edge(const Standard_Integer I); - /****************** Face ******************/ - /**** md5 signature: 91e216ebeb76e55c73eb9e179241a6ff ****/ + /****** BRepPrim_FaceBuilder::Face ******/ + /****** md5 signature: 91e216ebeb76e55c73eb9e179241a6ff ******/ %feature("compactdefaultargs") Face; %feature("autodoc", "Return ------- @@ -663,8 +663,8 @@ No available documentation. ") Face; const TopoDS_Face Face(); - /****************** Init ******************/ - /**** md5 signature: 143ab27f30670d4a5bf356eb1f51531f ****/ + /****** BRepPrim_FaceBuilder::Init ******/ + /****** md5 signature: 143ab27f30670d4a5bf356eb1f51531f ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -682,8 +682,8 @@ No available documentation. ") Init; void Init(const BRep_Builder & B, const opencascade::handle & S); - /****************** Init ******************/ - /**** md5 signature: 26f1dc48d1dcbc23d88fc45d428255ae ****/ + /****** BRepPrim_FaceBuilder::Init ******/ + /****** md5 signature: 26f1dc48d1dcbc23d88fc45d428255ae ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -705,8 +705,8 @@ No available documentation. ") Init; void Init(const BRep_Builder & B, const opencascade::handle & S, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax); - /****************** Vertex ******************/ - /**** md5 signature: 1cd4dfe5cbf55dbe74ca8c7dfb89999c ****/ + /****** BRepPrim_FaceBuilder::Vertex ******/ + /****** md5 signature: 1cd4dfe5cbf55dbe74ca8c7dfb89999c ******/ %feature("compactdefaultargs") Vertex; %feature("autodoc", " Parameters @@ -737,8 +737,8 @@ Returns the vertex of index 1 - vertex umin,vmin 2 - vertex umax,vmin 3 - ve ************************/ class BRepPrim_GWedge { public: - /****************** BRepPrim_GWedge ******************/ - /**** md5 signature: 5479b17d06f6204f33739da970ed3024 ****/ + /****** BRepPrim_GWedge::BRepPrim_GWedge ******/ + /****** md5 signature: 5479b17d06f6204f33739da970ed3024 ******/ %feature("compactdefaultargs") BRepPrim_GWedge; %feature("autodoc", "Return ------- @@ -750,8 +750,8 @@ Default constructor. ") BRepPrim_GWedge; BRepPrim_GWedge(); - /****************** BRepPrim_GWedge ******************/ - /**** md5 signature: e294f9bebd8cc9ff98c19af2e7410e35 ****/ + /****** BRepPrim_GWedge::BRepPrim_GWedge ******/ + /****** md5 signature: e294f9bebd8cc9ff98c19af2e7410e35 ******/ %feature("compactdefaultargs") BRepPrim_GWedge; %feature("autodoc", " Parameters @@ -772,8 +772,8 @@ Creates a gwedge algorithm. is the axis system for the primitive. //! xmi ") BRepPrim_GWedge; BRepPrim_GWedge(const BRepPrim_Builder & B, const gp_Ax2 & Axes, const Standard_Real dx, const Standard_Real dy, const Standard_Real dz); - /****************** BRepPrim_GWedge ******************/ - /**** md5 signature: 847889616a632de9ce27e3dfe094bb46 ****/ + /****** BRepPrim_GWedge::BRepPrim_GWedge ******/ + /****** md5 signature: 847889616a632de9ce27e3dfe094bb46 ******/ %feature("compactdefaultargs") BRepPrim_GWedge; %feature("autodoc", " Parameters @@ -795,8 +795,8 @@ Creates a gwedge primitive. is the axis system for the primitive. //! xmi ") BRepPrim_GWedge; BRepPrim_GWedge(const BRepPrim_Builder & B, const gp_Ax2 & Axes, const Standard_Real dx, const Standard_Real dy, const Standard_Real dz, const Standard_Real ltx); - /****************** BRepPrim_GWedge ******************/ - /**** md5 signature: d334fb521e652e32b1e6156305b9756c ****/ + /****** BRepPrim_GWedge::BRepPrim_GWedge ******/ + /****** md5 signature: d334fb521e652e32b1e6156305b9756c ******/ %feature("compactdefaultargs") BRepPrim_GWedge; %feature("autodoc", " Parameters @@ -824,8 +824,8 @@ Create a gwedge primitive. is the axis system for the primitive. //! all ") BRepPrim_GWedge; BRepPrim_GWedge(const BRepPrim_Builder & B, const gp_Ax2 & Axes, const Standard_Real xmin, const Standard_Real ymin, const Standard_Real zmin, const Standard_Real z2min, const Standard_Real x2min, const Standard_Real xmax, const Standard_Real ymax, const Standard_Real zmax, const Standard_Real z2max, const Standard_Real x2max); - /****************** Axes ******************/ - /**** md5 signature: 5cce2f6c839d20c7e40bd43ff35d90ff ****/ + /****** BRepPrim_GWedge::Axes ******/ + /****** md5 signature: 5cce2f6c839d20c7e40bd43ff35d90ff ******/ %feature("compactdefaultargs") Axes; %feature("autodoc", "Return ------- @@ -837,8 +837,8 @@ Returns the coordinates system from . ") Axes; gp_Ax2 Axes(); - /****************** Close ******************/ - /**** md5 signature: 8a6b334d6643de950e51d0dac3cf9567 ****/ + /****** BRepPrim_GWedge::Close ******/ + /****** md5 signature: 8a6b334d6643de950e51d0dac3cf9567 ******/ %feature("compactdefaultargs") Close; %feature("autodoc", " Parameters @@ -855,8 +855,8 @@ Closes in direction. a face and its edges or vertices are said exist ") Close; void Close(const BRepPrim_Direction d1); - /****************** Edge ******************/ - /**** md5 signature: 560d56d26d1414fcce336848602e1dc3 ****/ + /****** BRepPrim_GWedge::Edge ******/ + /****** md5 signature: 560d56d26d1414fcce336848602e1dc3 ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", " Parameters @@ -874,8 +874,8 @@ Returns the edge of located in direction. ") Edge; const TopoDS_Edge Edge(const BRepPrim_Direction d1, const BRepPrim_Direction d2); - /****************** Face ******************/ - /**** md5 signature: eb3c5e0095ca13cae1498f229df66063 ****/ + /****** BRepPrim_GWedge::Face ******/ + /****** md5 signature: eb3c5e0095ca13cae1498f229df66063 ******/ %feature("compactdefaultargs") Face; %feature("autodoc", " Parameters @@ -892,8 +892,8 @@ Returns the face of located in direction. ") Face; const TopoDS_Face Face(const BRepPrim_Direction d1); - /****************** GetX2Max ******************/ - /**** md5 signature: babbbfd397c1efdc258884663a21c99b ****/ + /****** BRepPrim_GWedge::GetX2Max ******/ + /****** md5 signature: babbbfd397c1efdc258884663a21c99b ******/ %feature("compactdefaultargs") GetX2Max; %feature("autodoc", "Return ------- @@ -905,8 +905,8 @@ Returns x2max value from . ") GetX2Max; Standard_Real GetX2Max(); - /****************** GetX2Min ******************/ - /**** md5 signature: 0a40c3c9c54ec4e54fecd27b53aa2d96 ****/ + /****** BRepPrim_GWedge::GetX2Min ******/ + /****** md5 signature: 0a40c3c9c54ec4e54fecd27b53aa2d96 ******/ %feature("compactdefaultargs") GetX2Min; %feature("autodoc", "Return ------- @@ -918,8 +918,8 @@ Returns x2min value from . ") GetX2Min; Standard_Real GetX2Min(); - /****************** GetXMax ******************/ - /**** md5 signature: 89241f7ad0cd880ace7f0986ef5f9f69 ****/ + /****** BRepPrim_GWedge::GetXMax ******/ + /****** md5 signature: 89241f7ad0cd880ace7f0986ef5f9f69 ******/ %feature("compactdefaultargs") GetXMax; %feature("autodoc", "Return ------- @@ -931,8 +931,8 @@ Returns xmax value from . ") GetXMax; Standard_Real GetXMax(); - /****************** GetXMin ******************/ - /**** md5 signature: d7992ddefa160df5f96a2a3533191e53 ****/ + /****** BRepPrim_GWedge::GetXMin ******/ + /****** md5 signature: d7992ddefa160df5f96a2a3533191e53 ******/ %feature("compactdefaultargs") GetXMin; %feature("autodoc", "Return ------- @@ -944,8 +944,8 @@ Returns xmin value from . ") GetXMin; Standard_Real GetXMin(); - /****************** GetYMax ******************/ - /**** md5 signature: 58f0cd3a82eb7ddb0b0b6801d800b912 ****/ + /****** BRepPrim_GWedge::GetYMax ******/ + /****** md5 signature: 58f0cd3a82eb7ddb0b0b6801d800b912 ******/ %feature("compactdefaultargs") GetYMax; %feature("autodoc", "Return ------- @@ -957,8 +957,8 @@ Returns ymax value from . ") GetYMax; Standard_Real GetYMax(); - /****************** GetYMin ******************/ - /**** md5 signature: 229d1cfe7ce27ed168565ce63df04039 ****/ + /****** BRepPrim_GWedge::GetYMin ******/ + /****** md5 signature: 229d1cfe7ce27ed168565ce63df04039 ******/ %feature("compactdefaultargs") GetYMin; %feature("autodoc", "Return ------- @@ -970,8 +970,8 @@ Returns ymin value from . ") GetYMin; Standard_Real GetYMin(); - /****************** GetZ2Max ******************/ - /**** md5 signature: 3f6d0e8bc5842b300bcb476636139406 ****/ + /****** BRepPrim_GWedge::GetZ2Max ******/ + /****** md5 signature: 3f6d0e8bc5842b300bcb476636139406 ******/ %feature("compactdefaultargs") GetZ2Max; %feature("autodoc", "Return ------- @@ -983,8 +983,8 @@ Returns z2max value from . ") GetZ2Max; Standard_Real GetZ2Max(); - /****************** GetZ2Min ******************/ - /**** md5 signature: abe08f96ee7133799469e33037af94cd ****/ + /****** BRepPrim_GWedge::GetZ2Min ******/ + /****** md5 signature: abe08f96ee7133799469e33037af94cd ******/ %feature("compactdefaultargs") GetZ2Min; %feature("autodoc", "Return ------- @@ -996,8 +996,8 @@ Returns z2min value from . ") GetZ2Min; Standard_Real GetZ2Min(); - /****************** GetZMax ******************/ - /**** md5 signature: 32c33af83170b4d42ae02c8990ff8ea3 ****/ + /****** BRepPrim_GWedge::GetZMax ******/ + /****** md5 signature: 32c33af83170b4d42ae02c8990ff8ea3 ******/ %feature("compactdefaultargs") GetZMax; %feature("autodoc", "Return ------- @@ -1009,8 +1009,8 @@ Returns zmax value from . ") GetZMax; Standard_Real GetZMax(); - /****************** GetZMin ******************/ - /**** md5 signature: a379616f1dee6c082c654e8c13891637 ****/ + /****** BRepPrim_GWedge::GetZMin ******/ + /****** md5 signature: a379616f1dee6c082c654e8c13891637 ******/ %feature("compactdefaultargs") GetZMin; %feature("autodoc", "Return ------- @@ -1022,8 +1022,8 @@ Returns zmin value from . ") GetZMin; Standard_Real GetZMin(); - /****************** HasEdge ******************/ - /**** md5 signature: 7739a38be24eb46408b92e60b3ed5c86 ****/ + /****** BRepPrim_GWedge::HasEdge ******/ + /****** md5 signature: 7739a38be24eb46408b92e60b3ed5c86 ******/ %feature("compactdefaultargs") HasEdge; %feature("autodoc", " Parameters @@ -1041,8 +1041,8 @@ Returns true if has an edge in direction. ") HasEdge; Standard_Boolean HasEdge(const BRepPrim_Direction d1, const BRepPrim_Direction d2); - /****************** HasFace ******************/ - /**** md5 signature: c9d41b14ac628ba1e79756dffee9967d ****/ + /****** BRepPrim_GWedge::HasFace ******/ + /****** md5 signature: c9d41b14ac628ba1e79756dffee9967d ******/ %feature("compactdefaultargs") HasFace; %feature("autodoc", " Parameters @@ -1059,8 +1059,8 @@ Returns true if has a face in direction. ") HasFace; Standard_Boolean HasFace(const BRepPrim_Direction d1); - /****************** HasVertex ******************/ - /**** md5 signature: eaac55ce26adfcac0a4f2a1f65c03aa5 ****/ + /****** BRepPrim_GWedge::HasVertex ******/ + /****** md5 signature: eaac55ce26adfcac0a4f2a1f65c03aa5 ******/ %feature("compactdefaultargs") HasVertex; %feature("autodoc", " Parameters @@ -1079,8 +1079,8 @@ Returns true if has a vertex in direction. ") HasVertex; Standard_Boolean HasVertex(const BRepPrim_Direction d1, const BRepPrim_Direction d2, const BRepPrim_Direction d3); - /****************** HasWire ******************/ - /**** md5 signature: 48fdc8573de4d5206e01f01f3e2e88c6 ****/ + /****** BRepPrim_GWedge::HasWire ******/ + /****** md5 signature: 48fdc8573de4d5206e01f01f3e2e88c6 ******/ %feature("compactdefaultargs") HasWire; %feature("autodoc", " Parameters @@ -1097,8 +1097,8 @@ Returns true if has a wire in direction. ") HasWire; Standard_Boolean HasWire(const BRepPrim_Direction d1); - /****************** IsDegeneratedShape ******************/ - /**** md5 signature: bedacae663032f1f3a7887e26e731a50 ****/ + /****** BRepPrim_GWedge::IsDegeneratedShape ******/ + /****** md5 signature: bedacae663032f1f3a7887e26e731a50 ******/ %feature("compactdefaultargs") IsDegeneratedShape; %feature("autodoc", "Return ------- @@ -1110,8 +1110,8 @@ Checks a shape on degeneracy return true if a shape is degenerated. ") IsDegeneratedShape; Standard_Boolean IsDegeneratedShape(); - /****************** IsInfinite ******************/ - /**** md5 signature: 84e23051e341ae0e7b22f457a416c2bd ****/ + /****** BRepPrim_GWedge::IsInfinite ******/ + /****** md5 signature: 84e23051e341ae0e7b22f457a416c2bd ******/ %feature("compactdefaultargs") IsInfinite; %feature("autodoc", " Parameters @@ -1128,8 +1128,8 @@ Returns true if is open in direction. ") IsInfinite; Standard_Boolean IsInfinite(const BRepPrim_Direction d1); - /****************** Line ******************/ - /**** md5 signature: a1e5b46f6b4d553242cfea988954fad7 ****/ + /****** BRepPrim_GWedge::Line ******/ + /****** md5 signature: a1e5b46f6b4d553242cfea988954fad7 ******/ %feature("compactdefaultargs") Line; %feature("autodoc", " Parameters @@ -1147,8 +1147,8 @@ Returns the line of the edge of located in direction. ") Line; gp_Lin Line(const BRepPrim_Direction d1, const BRepPrim_Direction d2); - /****************** Open ******************/ - /**** md5 signature: 2e0f8eb050fe600ffb46a7cdbe2bbb22 ****/ + /****** BRepPrim_GWedge::Open ******/ + /****** md5 signature: 2e0f8eb050fe600ffb46a7cdbe2bbb22 ******/ %feature("compactdefaultargs") Open; %feature("autodoc", " Parameters @@ -1165,8 +1165,8 @@ Opens in direction. a face and its edges or vertices are said nonexi ") Open; void Open(const BRepPrim_Direction d1); - /****************** Plane ******************/ - /**** md5 signature: 51c67370aa0e64e1c9393357876cc1d4 ****/ + /****** BRepPrim_GWedge::Plane ******/ + /****** md5 signature: 51c67370aa0e64e1c9393357876cc1d4 ******/ %feature("compactdefaultargs") Plane; %feature("autodoc", " Parameters @@ -1183,8 +1183,8 @@ Returns the plane of the face of located in direction. ") Plane; gp_Pln Plane(const BRepPrim_Direction d1); - /****************** Point ******************/ - /**** md5 signature: 28c8bee4abcaab436e78c827c6244f30 ****/ + /****** BRepPrim_GWedge::Point ******/ + /****** md5 signature: 28c8bee4abcaab436e78c827c6244f30 ******/ %feature("compactdefaultargs") Point; %feature("autodoc", " Parameters @@ -1203,8 +1203,8 @@ Returns the point of the vertex of located in direction. ") Point; gp_Pnt Point(const BRepPrim_Direction d1, const BRepPrim_Direction d2, const BRepPrim_Direction d3); - /****************** Shell ******************/ - /**** md5 signature: 642de93edbb586600e27d55251851e8c ****/ + /****** BRepPrim_GWedge::Shell ******/ + /****** md5 signature: 642de93edbb586600e27d55251851e8c ******/ %feature("compactdefaultargs") Shell; %feature("autodoc", "Return ------- @@ -1216,8 +1216,8 @@ Returns the shell containing the faces of . ") Shell; const TopoDS_Shell Shell(); - /****************** Vertex ******************/ - /**** md5 signature: a17642c94fed62613aae4458cb0c69a7 ****/ + /****** BRepPrim_GWedge::Vertex ******/ + /****** md5 signature: a17642c94fed62613aae4458cb0c69a7 ******/ %feature("compactdefaultargs") Vertex; %feature("autodoc", " Parameters @@ -1236,8 +1236,8 @@ Returns the vertex of located in direction. ") Vertex; const TopoDS_Vertex Vertex(const BRepPrim_Direction d1, const BRepPrim_Direction d2, const BRepPrim_Direction d3); - /****************** Wire ******************/ - /**** md5 signature: d4a72ad4acfb0d921fa8869ec16c3131 ****/ + /****** BRepPrim_GWedge::Wire ******/ + /****** md5 signature: d4a72ad4acfb0d921fa8869ec16c3131 ******/ %feature("compactdefaultargs") Wire; %feature("autodoc", " Parameters @@ -1269,8 +1269,8 @@ Returns the wire of located in direction. %nodefaultctor BRepPrim_OneAxis; class BRepPrim_OneAxis { public: - /****************** Angle ******************/ - /**** md5 signature: dce50192c350c43b54f2e88e94e5372a ****/ + /****** BRepPrim_OneAxis::Angle ******/ + /****** md5 signature: dce50192c350c43b54f2e88e94e5372a ******/ %feature("compactdefaultargs") Angle; %feature("autodoc", "Return ------- @@ -1282,8 +1282,8 @@ No available documentation. ") Angle; Standard_Real Angle(); - /****************** Angle ******************/ - /**** md5 signature: 497ba1204f8a2afc37be082f6d813cb9 ****/ + /****** BRepPrim_OneAxis::Angle ******/ + /****** md5 signature: 497ba1204f8a2afc37be082f6d813cb9 ******/ %feature("compactdefaultargs") Angle; %feature("autodoc", " Parameters @@ -1300,8 +1300,8 @@ No available documentation. ") Angle; void Angle(const Standard_Real A); - /****************** Axes ******************/ - /**** md5 signature: e675cba0965d216240eda82653f8ee1f ****/ + /****** BRepPrim_OneAxis::Axes ******/ + /****** md5 signature: e675cba0965d216240eda82653f8ee1f ******/ %feature("compactdefaultargs") Axes; %feature("autodoc", "Return ------- @@ -1313,8 +1313,8 @@ Returns the ax2 from . ") Axes; const gp_Ax2 Axes(); - /****************** Axes ******************/ - /**** md5 signature: 7ccd426658d93b46bcc77db3a6b35786 ****/ + /****** BRepPrim_OneAxis::Axes ******/ + /****** md5 signature: 7ccd426658d93b46bcc77db3a6b35786 ******/ %feature("compactdefaultargs") Axes; %feature("autodoc", " Parameters @@ -1331,8 +1331,8 @@ No available documentation. ") Axes; void Axes(const gp_Ax2 & A); - /****************** AxisBottomVertex ******************/ - /**** md5 signature: 9d25327339f786a3ce86ab0e8f3c393e ****/ + /****** BRepPrim_OneAxis::AxisBottomVertex ******/ + /****** md5 signature: 9d25327339f786a3ce86ab0e8f3c393e ******/ %feature("compactdefaultargs") AxisBottomVertex; %feature("autodoc", "Return ------- @@ -1344,8 +1344,8 @@ Returns the vertex at the bottom altitude on the axis. ") AxisBottomVertex; const TopoDS_Vertex AxisBottomVertex(); - /****************** AxisEdge ******************/ - /**** md5 signature: a0397f9fe3224f5fbcfaa8de9c47d870 ****/ + /****** BRepPrim_OneAxis::AxisEdge ******/ + /****** md5 signature: a0397f9fe3224f5fbcfaa8de9c47d870 ******/ %feature("compactdefaultargs") AxisEdge; %feature("autodoc", "Return ------- @@ -1357,8 +1357,8 @@ Returns the edge built along the axis and oriented on +z of the axis. ") AxisEdge; const TopoDS_Edge AxisEdge(); - /****************** AxisEndWire ******************/ - /**** md5 signature: cfd7b259580fe79b5976240119bdbd2b ****/ + /****** BRepPrim_OneAxis::AxisEndWire ******/ + /****** md5 signature: cfd7b259580fe79b5976240119bdbd2b ******/ %feature("compactdefaultargs") AxisEndWire; %feature("autodoc", "Return ------- @@ -1370,8 +1370,8 @@ Returns the wire in the end face with the axisedge. ") AxisEndWire; const TopoDS_Wire AxisEndWire(); - /****************** AxisStartWire ******************/ - /**** md5 signature: 734f2956cf4b2f5718064af99f6e2417 ****/ + /****** BRepPrim_OneAxis::AxisStartWire ******/ + /****** md5 signature: 734f2956cf4b2f5718064af99f6e2417 ******/ %feature("compactdefaultargs") AxisStartWire; %feature("autodoc", "Return ------- @@ -1383,8 +1383,8 @@ Returns the wire in the start face with the axisedge. ") AxisStartWire; const TopoDS_Wire AxisStartWire(); - /****************** AxisTopVertex ******************/ - /**** md5 signature: ba7bb81c2907acd2ca24825826289de8 ****/ + /****** BRepPrim_OneAxis::AxisTopVertex ******/ + /****** md5 signature: ba7bb81c2907acd2ca24825826289de8 ******/ %feature("compactdefaultargs") AxisTopVertex; %feature("autodoc", "Return ------- @@ -1396,8 +1396,8 @@ Returns the vertex at the top altitude on the axis. ") AxisTopVertex; const TopoDS_Vertex AxisTopVertex(); - /****************** BottomEdge ******************/ - /**** md5 signature: 4da4829810b02bba039fd3cb84054a3e ****/ + /****** BRepPrim_OneAxis::BottomEdge ******/ + /****** md5 signature: 4da4829810b02bba039fd3cb84054a3e ******/ %feature("compactdefaultargs") BottomEdge; %feature("autodoc", "Return ------- @@ -1409,8 +1409,8 @@ Returns the edge at vmin. if meridianclosed() the topedge and the bottomedge are ") BottomEdge; const TopoDS_Edge BottomEdge(); - /****************** BottomEndVertex ******************/ - /**** md5 signature: f01d0f77a1e34bbd806bac3659f37ecd ****/ + /****** BRepPrim_OneAxis::BottomEndVertex ******/ + /****** md5 signature: f01d0f77a1e34bbd806bac3659f37ecd ******/ %feature("compactdefaultargs") BottomEndVertex; %feature("autodoc", "Return ------- @@ -1422,8 +1422,8 @@ Returns the vertex (angle,vmax). ") BottomEndVertex; const TopoDS_Vertex BottomEndVertex(); - /****************** BottomFace ******************/ - /**** md5 signature: d868072c1474b9c120740f20d5db6dfe ****/ + /****** BRepPrim_OneAxis::BottomFace ******/ + /****** md5 signature: d868072c1474b9c120740f20d5db6dfe ******/ %feature("compactdefaultargs") BottomFace; %feature("autodoc", "Return ------- @@ -1435,8 +1435,8 @@ Returns the bottom planar face. it is oriented toward the -z axis (outside). ") BottomFace; const TopoDS_Face BottomFace(); - /****************** BottomStartVertex ******************/ - /**** md5 signature: 327ca1d77d810fbe1d3d371fb4113074 ****/ + /****** BRepPrim_OneAxis::BottomStartVertex ******/ + /****** md5 signature: 327ca1d77d810fbe1d3d371fb4113074 ******/ %feature("compactdefaultargs") BottomStartVertex; %feature("autodoc", "Return ------- @@ -1448,8 +1448,8 @@ Returns the vertex (0,vmin). ") BottomStartVertex; const TopoDS_Vertex BottomStartVertex(); - /****************** BottomWire ******************/ - /**** md5 signature: cdbee66603e77f7ebb4901f69d4de2f4 ****/ + /****** BRepPrim_OneAxis::BottomWire ******/ + /****** md5 signature: cdbee66603e77f7ebb4901f69d4de2f4 ******/ %feature("compactdefaultargs") BottomWire; %feature("autodoc", "Return ------- @@ -1461,8 +1461,8 @@ Returns the wire in the bottom face. ") BottomWire; const TopoDS_Wire BottomWire(); - /****************** EndBottomEdge ******************/ - /**** md5 signature: b06c39f4d51e346e4a01a7c5b64f38a7 ****/ + /****** BRepPrim_OneAxis::EndBottomEdge ******/ + /****** md5 signature: b06c39f4d51e346e4a01a7c5b64f38a7 ******/ %feature("compactdefaultargs") EndBottomEdge; %feature("autodoc", "Return ------- @@ -1474,8 +1474,8 @@ Returns the linear edge between end face and bottom face. ") EndBottomEdge; const TopoDS_Edge EndBottomEdge(); - /****************** EndEdge ******************/ - /**** md5 signature: 674c1c918955150164f59e70b53eb062 ****/ + /****** BRepPrim_OneAxis::EndEdge ******/ + /****** md5 signature: 674c1c918955150164f59e70b53eb062 ******/ %feature("compactdefaultargs") EndEdge; %feature("autodoc", "Return ------- @@ -1487,8 +1487,8 @@ Returns the edge at angle angle. if !hassides() the startedge and the endedge ar ") EndEdge; const TopoDS_Edge EndEdge(); - /****************** EndFace ******************/ - /**** md5 signature: 3d80e58583e16de7a28cd94972d4ce27 ****/ + /****** BRepPrim_OneAxis::EndFace ******/ + /****** md5 signature: 3d80e58583e16de7a28cd94972d4ce27 ******/ %feature("compactdefaultargs") EndFace; %feature("autodoc", "Return ------- @@ -1500,8 +1500,8 @@ Returns the face ending the slice, it is oriented toward the exterior of the pri ") EndFace; const TopoDS_Face EndFace(); - /****************** EndTopEdge ******************/ - /**** md5 signature: c8bcdde35414fa94db93c05ad703ed07 ****/ + /****** BRepPrim_OneAxis::EndTopEdge ******/ + /****** md5 signature: c8bcdde35414fa94db93c05ad703ed07 ******/ %feature("compactdefaultargs") EndTopEdge; %feature("autodoc", "Return ------- @@ -1513,8 +1513,8 @@ Returns the linear edge between end face and top face. ") EndTopEdge; const TopoDS_Edge EndTopEdge(); - /****************** EndWire ******************/ - /**** md5 signature: 2af237ee40b2833e37a160fc0d52a268 ****/ + /****** BRepPrim_OneAxis::EndWire ******/ + /****** md5 signature: 2af237ee40b2833e37a160fc0d52a268 ******/ %feature("compactdefaultargs") EndWire; %feature("autodoc", "Return ------- @@ -1526,8 +1526,8 @@ Returns the wire in the end face. ") EndWire; const TopoDS_Wire EndWire(); - /****************** HasBottom ******************/ - /**** md5 signature: 67ebc11d924fceccdfa8e27bbbed4353 ****/ + /****** BRepPrim_OneAxis::HasBottom ******/ + /****** md5 signature: 67ebc11d924fceccdfa8e27bbbed4353 ******/ %feature("compactdefaultargs") HasBottom; %feature("autodoc", "Return ------- @@ -1539,8 +1539,8 @@ Returns true if there is a bottom face. //! that is neither: vmininfinite() meri ") HasBottom; virtual Standard_Boolean HasBottom(); - /****************** HasSides ******************/ - /**** md5 signature: f5a003195b8808d511dd17deed132597 ****/ + /****** BRepPrim_OneAxis::HasSides ******/ + /****** md5 signature: f5a003195b8808d511dd17deed132597 ******/ %feature("compactdefaultargs") HasSides; %feature("autodoc", "Return ------- @@ -1552,8 +1552,8 @@ Returns true if there are start and end faces. //! that is: 2*pi - angle > preci ") HasSides; virtual Standard_Boolean HasSides(); - /****************** HasTop ******************/ - /**** md5 signature: 577e87a04211a53eddde29543f98f3af ****/ + /****** BRepPrim_OneAxis::HasTop ******/ + /****** md5 signature: 577e87a04211a53eddde29543f98f3af ******/ %feature("compactdefaultargs") HasTop; %feature("autodoc", "Return ------- @@ -1565,8 +1565,8 @@ Returns true if there is a top face. //! that is neither: vmaxinfinite() meridia ") HasTop; virtual Standard_Boolean HasTop(); - /****************** LateralEndWire ******************/ - /**** md5 signature: 899f794d1a1347608997259354dd6495 ****/ + /****** BRepPrim_OneAxis::LateralEndWire ******/ + /****** md5 signature: 899f794d1a1347608997259354dd6495 ******/ %feature("compactdefaultargs") LateralEndWire; %feature("autodoc", "Return ------- @@ -1578,8 +1578,8 @@ Returns the wire with in lateral face with the end edge. ") LateralEndWire; const TopoDS_Wire LateralEndWire(); - /****************** LateralFace ******************/ - /**** md5 signature: dd330acf3abf48dc33bbea1f7f940dde ****/ + /****** BRepPrim_OneAxis::LateralFace ******/ + /****** md5 signature: dd330acf3abf48dc33bbea1f7f940dde ******/ %feature("compactdefaultargs") LateralFace; %feature("autodoc", "Return ------- @@ -1591,8 +1591,8 @@ Returns the lateral face. it is oriented toward the outside of the primitive. ") LateralFace; const TopoDS_Face LateralFace(); - /****************** LateralStartWire ******************/ - /**** md5 signature: 3f37a9998a483da5be3239aa2061941b ****/ + /****** BRepPrim_OneAxis::LateralStartWire ******/ + /****** md5 signature: 3f37a9998a483da5be3239aa2061941b ******/ %feature("compactdefaultargs") LateralStartWire; %feature("autodoc", "Return ------- @@ -1604,8 +1604,8 @@ Returns the wire in the lateral face with the start edge. ") LateralStartWire; const TopoDS_Wire LateralStartWire(); - /****************** LateralWire ******************/ - /**** md5 signature: c5a61106c726e9c71398e937f0a3a35f ****/ + /****** BRepPrim_OneAxis::LateralWire ******/ + /****** md5 signature: c5a61106c726e9c71398e937f0a3a35f ******/ %feature("compactdefaultargs") LateralWire; %feature("autodoc", "Return ------- @@ -1617,8 +1617,8 @@ Returns the wire in the lateral face. ") LateralWire; const TopoDS_Wire LateralWire(); - /****************** MakeEmptyLateralFace ******************/ - /**** md5 signature: b11e64ac863b45f01b201889e1d5bc0c ****/ + /****** BRepPrim_OneAxis::MakeEmptyLateralFace ******/ + /****** md5 signature: b11e64ac863b45f01b201889e1d5bc0c ******/ %feature("compactdefaultargs") MakeEmptyLateralFace; %feature("autodoc", "Return ------- @@ -1630,8 +1630,8 @@ Returns a face with no edges. the surface is the lateral surface with normals po ") MakeEmptyLateralFace; virtual TopoDS_Face MakeEmptyLateralFace(); - /****************** MakeEmptyMeridianEdge ******************/ - /**** md5 signature: 630b1d866184613e5afe43bdb32460bf ****/ + /****** BRepPrim_OneAxis::MakeEmptyMeridianEdge ******/ + /****** md5 signature: 630b1d866184613e5afe43bdb32460bf ******/ %feature("compactdefaultargs") MakeEmptyMeridianEdge; %feature("autodoc", " Parameters @@ -1648,8 +1648,8 @@ Returns an edge with a 3d curve made from the meridian in the xz plane rotated b ") MakeEmptyMeridianEdge; virtual TopoDS_Edge MakeEmptyMeridianEdge(const Standard_Real Ang); - /****************** MeridianClosed ******************/ - /**** md5 signature: edc1439a02d2c9f36d6ec41c028c36f7 ****/ + /****** BRepPrim_OneAxis::MeridianClosed ******/ + /****** md5 signature: edc1439a02d2c9f36d6ec41c028c36f7 ******/ %feature("compactdefaultargs") MeridianClosed; %feature("autodoc", "Return ------- @@ -1661,8 +1661,8 @@ Returns true if the meridian is closed. default implementation is meridianvalue ") MeridianClosed; virtual Standard_Boolean MeridianClosed(); - /****************** MeridianOnAxis ******************/ - /**** md5 signature: c56871a41603e5716c9059ee2b162ce6 ****/ + /****** BRepPrim_OneAxis::MeridianOnAxis ******/ + /****** md5 signature: c56871a41603e5716c9059ee2b162ce6 ******/ %feature("compactdefaultargs") MeridianOnAxis; %feature("autodoc", " Parameters @@ -1679,8 +1679,8 @@ Returns true if the point of parameter on the meridian is on the axis. defau ") MeridianOnAxis; virtual Standard_Boolean MeridianOnAxis(const Standard_Real V); - /****************** MeridianValue ******************/ - /**** md5 signature: 77bae71d5a4543ab091837bcde019a30 ****/ + /****** BRepPrim_OneAxis::MeridianValue ******/ + /****** md5 signature: 77bae71d5a4543ab091837bcde019a30 ******/ %feature("compactdefaultargs") MeridianValue; %feature("autodoc", " Parameters @@ -1697,8 +1697,8 @@ Returns the meridian point at parameter in the plane xz. ") MeridianValue; virtual gp_Pnt2d MeridianValue(const Standard_Real V); - /****************** SetMeridianOffset ******************/ - /**** md5 signature: 57d60f2bbffbd56cb78726ee7410c7a5 ****/ + /****** BRepPrim_OneAxis::SetMeridianOffset ******/ + /****** md5 signature: 57d60f2bbffbd56cb78726ee7410c7a5 ******/ %feature("compactdefaultargs") SetMeridianOffset; %feature("autodoc", " Parameters @@ -1715,8 +1715,8 @@ The meridianoffset is added to the parameters on the meridian curve and to the v ") SetMeridianOffset; void SetMeridianOffset(const Standard_Real MeridianOffset = 0); - /****************** SetMeridianPCurve ******************/ - /**** md5 signature: f204da19ac16bdfcd6a614a239776158 ****/ + /****** BRepPrim_OneAxis::SetMeridianPCurve ******/ + /****** md5 signature: f204da19ac16bdfcd6a614a239776158 ******/ %feature("compactdefaultargs") SetMeridianPCurve; %feature("autodoc", " Parameters @@ -1734,8 +1734,8 @@ Sets the parametric curve of the edge in the face to be the 2d represent ") SetMeridianPCurve; virtual void SetMeridianPCurve(TopoDS_Edge & E, const TopoDS_Face & F); - /****************** Shell ******************/ - /**** md5 signature: 642de93edbb586600e27d55251851e8c ****/ + /****** BRepPrim_OneAxis::Shell ******/ + /****** md5 signature: 642de93edbb586600e27d55251851e8c ******/ %feature("compactdefaultargs") Shell; %feature("autodoc", "Return ------- @@ -1747,8 +1747,8 @@ Returns the shell containing all the faces of the primitive. ") Shell; const TopoDS_Shell Shell(); - /****************** StartBottomEdge ******************/ - /**** md5 signature: 37ff55111b1297cf786f259b8fbef721 ****/ + /****** BRepPrim_OneAxis::StartBottomEdge ******/ + /****** md5 signature: 37ff55111b1297cf786f259b8fbef721 ******/ %feature("compactdefaultargs") StartBottomEdge; %feature("autodoc", "Return ------- @@ -1760,8 +1760,8 @@ Returns the linear edge between start face and bottom face. ") StartBottomEdge; const TopoDS_Edge StartBottomEdge(); - /****************** StartEdge ******************/ - /**** md5 signature: 4ff5c9d45d5f0785b08c7cd1ee9625eb ****/ + /****** BRepPrim_OneAxis::StartEdge ******/ + /****** md5 signature: 4ff5c9d45d5f0785b08c7cd1ee9625eb ******/ %feature("compactdefaultargs") StartEdge; %feature("autodoc", "Return ------- @@ -1773,8 +1773,8 @@ Returns the edge at angle 0. ") StartEdge; const TopoDS_Edge StartEdge(); - /****************** StartFace ******************/ - /**** md5 signature: c8fc504f031d7ae502cdd8218e7dc765 ****/ + /****** BRepPrim_OneAxis::StartFace ******/ + /****** md5 signature: c8fc504f031d7ae502cdd8218e7dc765 ******/ %feature("compactdefaultargs") StartFace; %feature("autodoc", "Return ------- @@ -1786,8 +1786,8 @@ Returns the face starting the slice, it is oriented toward the exterior of the p ") StartFace; const TopoDS_Face StartFace(); - /****************** StartTopEdge ******************/ - /**** md5 signature: 20ccec7c0f151d4d1e43f1032396e6c4 ****/ + /****** BRepPrim_OneAxis::StartTopEdge ******/ + /****** md5 signature: 20ccec7c0f151d4d1e43f1032396e6c4 ******/ %feature("compactdefaultargs") StartTopEdge; %feature("autodoc", "Return ------- @@ -1799,8 +1799,8 @@ Returns the linear edge between start face and top face. ") StartTopEdge; const TopoDS_Edge StartTopEdge(); - /****************** StartWire ******************/ - /**** md5 signature: a18257594fa0e66c8cd528233d760e02 ****/ + /****** BRepPrim_OneAxis::StartWire ******/ + /****** md5 signature: a18257594fa0e66c8cd528233d760e02 ******/ %feature("compactdefaultargs") StartWire; %feature("autodoc", "Return ------- @@ -1812,8 +1812,8 @@ Returns the wire in the start face. ") StartWire; const TopoDS_Wire StartWire(); - /****************** TopEdge ******************/ - /**** md5 signature: e41c9e41a600f953c06e361e016249bf ****/ + /****** BRepPrim_OneAxis::TopEdge ******/ + /****** md5 signature: e41c9e41a600f953c06e361e016249bf ******/ %feature("compactdefaultargs") TopEdge; %feature("autodoc", "Return ------- @@ -1825,8 +1825,8 @@ Returns the edge at vmax. if meridianclosed() the topedge and the bottomedge are ") TopEdge; const TopoDS_Edge TopEdge(); - /****************** TopEndVertex ******************/ - /**** md5 signature: ba2ba5c1632b55e9bc10837938ce0668 ****/ + /****** BRepPrim_OneAxis::TopEndVertex ******/ + /****** md5 signature: ba2ba5c1632b55e9bc10837938ce0668 ******/ %feature("compactdefaultargs") TopEndVertex; %feature("autodoc", "Return ------- @@ -1838,8 +1838,8 @@ Returns the vertex (angle,vmax). ") TopEndVertex; const TopoDS_Vertex TopEndVertex(); - /****************** TopFace ******************/ - /**** md5 signature: dd32adf6486145b103460dda0a299106 ****/ + /****** BRepPrim_OneAxis::TopFace ******/ + /****** md5 signature: dd32adf6486145b103460dda0a299106 ******/ %feature("compactdefaultargs") TopFace; %feature("autodoc", "Return ------- @@ -1851,8 +1851,8 @@ Returns the top planar face. it is oriented toward the +z axis (outside). ") TopFace; const TopoDS_Face TopFace(); - /****************** TopStartVertex ******************/ - /**** md5 signature: 7996dc2e958e3fddc2e0484b60ee14b1 ****/ + /****** BRepPrim_OneAxis::TopStartVertex ******/ + /****** md5 signature: 7996dc2e958e3fddc2e0484b60ee14b1 ******/ %feature("compactdefaultargs") TopStartVertex; %feature("autodoc", "Return ------- @@ -1864,8 +1864,8 @@ Returns the vertex (0,vmax). ") TopStartVertex; const TopoDS_Vertex TopStartVertex(); - /****************** TopWire ******************/ - /**** md5 signature: a708eba831e170761a0bc25c468ccb83 ****/ + /****** BRepPrim_OneAxis::TopWire ******/ + /****** md5 signature: a708eba831e170761a0bc25c468ccb83 ******/ %feature("compactdefaultargs") TopWire; %feature("autodoc", "Return ------- @@ -1877,8 +1877,8 @@ Returns the wire in the top face. ") TopWire; const TopoDS_Wire TopWire(); - /****************** VMax ******************/ - /**** md5 signature: 6ba449f1673839cb57aa34cf35972dc8 ****/ + /****** BRepPrim_OneAxis::VMax ******/ + /****** md5 signature: 6ba449f1673839cb57aa34cf35972dc8 ******/ %feature("compactdefaultargs") VMax; %feature("autodoc", "Return ------- @@ -1890,8 +1890,8 @@ No available documentation. ") VMax; Standard_Real VMax(); - /****************** VMax ******************/ - /**** md5 signature: 4d2ece54a3dcfaa75034890d806456d6 ****/ + /****** BRepPrim_OneAxis::VMax ******/ + /****** md5 signature: 4d2ece54a3dcfaa75034890d806456d6 ******/ %feature("compactdefaultargs") VMax; %feature("autodoc", " Parameters @@ -1908,8 +1908,8 @@ No available documentation. ") VMax; void VMax(const Standard_Real V); - /****************** VMaxInfinite ******************/ - /**** md5 signature: bc5e6bf58b2b94b7629b77aba92be11a ****/ + /****** BRepPrim_OneAxis::VMaxInfinite ******/ + /****** md5 signature: bc5e6bf58b2b94b7629b77aba92be11a ******/ %feature("compactdefaultargs") VMaxInfinite; %feature("autodoc", "Return ------- @@ -1921,8 +1921,8 @@ Returns true if vmax is infinite. default precision::ispositiveinfinite(vmax);. ") VMaxInfinite; virtual Standard_Boolean VMaxInfinite(); - /****************** VMin ******************/ - /**** md5 signature: 040bbb0b02e9760bd9cc365baf132106 ****/ + /****** BRepPrim_OneAxis::VMin ******/ + /****** md5 signature: 040bbb0b02e9760bd9cc365baf132106 ******/ %feature("compactdefaultargs") VMin; %feature("autodoc", "Return ------- @@ -1934,8 +1934,8 @@ No available documentation. ") VMin; Standard_Real VMin(); - /****************** VMin ******************/ - /**** md5 signature: 80c307fc99a90b90ba8114e32ab29e1c ****/ + /****** BRepPrim_OneAxis::VMin ******/ + /****** md5 signature: 80c307fc99a90b90ba8114e32ab29e1c ******/ %feature("compactdefaultargs") VMin; %feature("autodoc", " Parameters @@ -1952,8 +1952,8 @@ No available documentation. ") VMin; void VMin(const Standard_Real V); - /****************** VMinInfinite ******************/ - /**** md5 signature: 27a668d561b75d084aa96ca8eb0fdb0c ****/ + /****** BRepPrim_OneAxis::VMinInfinite ******/ + /****** md5 signature: 27a668d561b75d084aa96ca8eb0fdb0c ******/ %feature("compactdefaultargs") VMinInfinite; %feature("autodoc", "Return ------- @@ -1979,8 +1979,8 @@ Returns true if vmin is infinite. default precision::isnegativeinfinite(vmax);. ****************************/ class BRepPrim_Revolution : public BRepPrim_OneAxis { public: - /****************** BRepPrim_Revolution ******************/ - /**** md5 signature: 5b1b3e93df885b1a31c4614f6b9d1d95 ****/ + /****** BRepPrim_Revolution::BRepPrim_Revolution ******/ + /****** md5 signature: 5b1b3e93df885b1a31c4614f6b9d1d95 ******/ %feature("compactdefaultargs") BRepPrim_Revolution; %feature("autodoc", " Parameters @@ -2001,8 +2001,8 @@ Create a revolution body is the meridian nd must be in the xz plane of . ") BRepPrim_Revolution; BRepPrim_Revolution(const gp_Ax2 & A, const Standard_Real VMin, const Standard_Real VMax, const opencascade::handle & M, const opencascade::handle & PM); - /****************** MakeEmptyLateralFace ******************/ - /**** md5 signature: 738dd0904668b5ba6d89ecb17808ecaa ****/ + /****** BRepPrim_Revolution::MakeEmptyLateralFace ******/ + /****** md5 signature: 738dd0904668b5ba6d89ecb17808ecaa ******/ %feature("compactdefaultargs") MakeEmptyLateralFace; %feature("autodoc", "Return ------- @@ -2014,8 +2014,8 @@ The surface normal should be directed towards the outside. ") MakeEmptyLateralFace; virtual TopoDS_Face MakeEmptyLateralFace(); - /****************** MakeEmptyMeridianEdge ******************/ - /**** md5 signature: 4d215bd790df5e01ce96f5dbaa5d1db7 ****/ + /****** BRepPrim_Revolution::MakeEmptyMeridianEdge ******/ + /****** md5 signature: 4d215bd790df5e01ce96f5dbaa5d1db7 ******/ %feature("compactdefaultargs") MakeEmptyMeridianEdge; %feature("autodoc", " Parameters @@ -2032,8 +2032,8 @@ Returns an edge with a 3d curve made from the meridian in the xz plane rotated b ") MakeEmptyMeridianEdge; virtual TopoDS_Edge MakeEmptyMeridianEdge(const Standard_Real Ang); - /****************** MeridianValue ******************/ - /**** md5 signature: 9d4d43f257bd22d9185c780792d00919 ****/ + /****** BRepPrim_Revolution::MeridianValue ******/ + /****** md5 signature: 9d4d43f257bd22d9185c780792d00919 ******/ %feature("compactdefaultargs") MeridianValue; %feature("autodoc", " Parameters @@ -2050,8 +2050,8 @@ Returns the meridian point at parameter in the plane xz. ") MeridianValue; virtual gp_Pnt2d MeridianValue(const Standard_Real V); - /****************** SetMeridianPCurve ******************/ - /**** md5 signature: e37059cc6abb428a1b857783ea7e2db5 ****/ + /****** BRepPrim_Revolution::SetMeridianPCurve ******/ + /****** md5 signature: e37059cc6abb428a1b857783ea7e2db5 ******/ %feature("compactdefaultargs") SetMeridianPCurve; %feature("autodoc", " Parameters @@ -2083,8 +2083,8 @@ Sets the parametric urve of the edge in the face to be the 2d representa ***********************/ class BRepPrim_Wedge : public BRepPrim_GWedge { public: - /****************** BRepPrim_Wedge ******************/ - /**** md5 signature: 273f01b42e689ba5af5064dc48d05f84 ****/ + /****** BRepPrim_Wedge::BRepPrim_Wedge ******/ + /****** md5 signature: 273f01b42e689ba5af5064dc48d05f84 ******/ %feature("compactdefaultargs") BRepPrim_Wedge; %feature("autodoc", "Return ------- @@ -2096,8 +2096,8 @@ Default constructor. ") BRepPrim_Wedge; BRepPrim_Wedge(); - /****************** BRepPrim_Wedge ******************/ - /**** md5 signature: 271e307dbdf1baea793184df8b5a17db ****/ + /****** BRepPrim_Wedge::BRepPrim_Wedge ******/ + /****** md5 signature: 271e307dbdf1baea793184df8b5a17db ******/ %feature("compactdefaultargs") BRepPrim_Wedge; %feature("autodoc", " Parameters @@ -2117,8 +2117,8 @@ Creates a wedge algorithm. is the axis system for the primitive. //! xmin ") BRepPrim_Wedge; BRepPrim_Wedge(const gp_Ax2 & Axes, const Standard_Real dx, const Standard_Real dy, const Standard_Real dz); - /****************** BRepPrim_Wedge ******************/ - /**** md5 signature: 540cdfd1a8a68594ffc6280824cadd02 ****/ + /****** BRepPrim_Wedge::BRepPrim_Wedge ******/ + /****** md5 signature: 540cdfd1a8a68594ffc6280824cadd02 ******/ %feature("compactdefaultargs") BRepPrim_Wedge; %feature("autodoc", " Parameters @@ -2139,8 +2139,8 @@ Creates a wedge primitive. is the axis system for the primitive. //! xmin ") BRepPrim_Wedge; BRepPrim_Wedge(const gp_Ax2 & Axes, const Standard_Real dx, const Standard_Real dy, const Standard_Real dz, const Standard_Real ltx); - /****************** BRepPrim_Wedge ******************/ - /**** md5 signature: c9d14cf56f80cb299d68a75d83cba983 ****/ + /****** BRepPrim_Wedge::BRepPrim_Wedge ******/ + /****** md5 signature: c9d14cf56f80cb299d68a75d83cba983 ******/ %feature("compactdefaultargs") BRepPrim_Wedge; %feature("autodoc", " Parameters @@ -2181,8 +2181,8 @@ Create a wedge primitive. is the axis system for the primitive. //! all t **********************/ class BRepPrim_Cone : public BRepPrim_Revolution { public: - /****************** BRepPrim_Cone ******************/ - /**** md5 signature: ff8d3b1ee270eff718ccc66335fc7cbc ****/ + /****** BRepPrim_Cone::BRepPrim_Cone ******/ + /****** md5 signature: ff8d3b1ee270eff718ccc66335fc7cbc ******/ %feature("compactdefaultargs") BRepPrim_Cone; %feature("autodoc", " Parameters @@ -2202,8 +2202,8 @@ The step definition angle = semi-angle of the cone position: the coordinate syst ") BRepPrim_Cone; BRepPrim_Cone(const Standard_Real Angle, const gp_Ax2 & Position, const Standard_Real Height, const Standard_Real Radius = 0); - /****************** BRepPrim_Cone ******************/ - /**** md5 signature: c043b204d09754bd1015524e5a103d2a ****/ + /****** BRepPrim_Cone::BRepPrim_Cone ******/ + /****** md5 signature: c043b204d09754bd1015524e5a103d2a ******/ %feature("compactdefaultargs") BRepPrim_Cone; %feature("autodoc", " Parameters @@ -2220,8 +2220,8 @@ Infinite cone at origin on z negative. ") BRepPrim_Cone; BRepPrim_Cone(const Standard_Real Angle); - /****************** BRepPrim_Cone ******************/ - /**** md5 signature: c0b45e6511e50885e9fcf84e237c5aa1 ****/ + /****** BRepPrim_Cone::BRepPrim_Cone ******/ + /****** md5 signature: c0b45e6511e50885e9fcf84e237c5aa1 ******/ %feature("compactdefaultargs") BRepPrim_Cone; %feature("autodoc", " Parameters @@ -2239,8 +2239,8 @@ Infinite cone at apex on z negative. ") BRepPrim_Cone; BRepPrim_Cone(const Standard_Real Angle, const gp_Pnt & Apex); - /****************** BRepPrim_Cone ******************/ - /**** md5 signature: 6f65f34c26695c819b590ce393be91ba ****/ + /****** BRepPrim_Cone::BRepPrim_Cone ******/ + /****** md5 signature: 6f65f34c26695c819b590ce393be91ba ******/ %feature("compactdefaultargs") BRepPrim_Cone; %feature("autodoc", " Parameters @@ -2258,8 +2258,8 @@ Infinite cone with axes. ") BRepPrim_Cone; BRepPrim_Cone(const Standard_Real Angle, const gp_Ax2 & Axes); - /****************** BRepPrim_Cone ******************/ - /**** md5 signature: c4131a519320058db92d9b9b4a62b4e1 ****/ + /****** BRepPrim_Cone::BRepPrim_Cone ******/ + /****** md5 signature: c4131a519320058db92d9b9b4a62b4e1 ******/ %feature("compactdefaultargs") BRepPrim_Cone; %feature("autodoc", " Parameters @@ -2278,8 +2278,8 @@ Create a cone at origin on z axis, of height h, radius r1 at z = 0, r2 at z = h, ") BRepPrim_Cone; BRepPrim_Cone(const Standard_Real R1, const Standard_Real R2, const Standard_Real H); - /****************** BRepPrim_Cone ******************/ - /**** md5 signature: ba64b29b0668019a05dc949aab6770f7 ****/ + /****** BRepPrim_Cone::BRepPrim_Cone ******/ + /****** md5 signature: ba64b29b0668019a05dc949aab6770f7 ******/ %feature("compactdefaultargs") BRepPrim_Cone; %feature("autodoc", " Parameters @@ -2299,8 +2299,8 @@ Same as above but at a given point. ") BRepPrim_Cone; BRepPrim_Cone(const gp_Pnt & Center, const Standard_Real R1, const Standard_Real R2, const Standard_Real H); - /****************** BRepPrim_Cone ******************/ - /**** md5 signature: a0f74a87d71dc02fbc406ad9fd16e941 ****/ + /****** BRepPrim_Cone::BRepPrim_Cone ******/ + /****** md5 signature: a0f74a87d71dc02fbc406ad9fd16e941 ******/ %feature("compactdefaultargs") BRepPrim_Cone; %feature("autodoc", " Parameters @@ -2320,8 +2320,8 @@ Same as above with given axes system. ") BRepPrim_Cone; BRepPrim_Cone(const gp_Ax2 & Axes, const Standard_Real R1, const Standard_Real R2, const Standard_Real H); - /****************** MakeEmptyLateralFace ******************/ - /**** md5 signature: b5adc273756debb03c54f3ada5247082 ****/ + /****** BRepPrim_Cone::MakeEmptyLateralFace ******/ + /****** md5 signature: b5adc273756debb03c54f3ada5247082 ******/ %feature("compactdefaultargs") MakeEmptyLateralFace; %feature("autodoc", "Return ------- @@ -2347,8 +2347,8 @@ The surface normal should be directed towards the outside. **************************/ class BRepPrim_Cylinder : public BRepPrim_Revolution { public: - /****************** BRepPrim_Cylinder ******************/ - /**** md5 signature: 2d8fc92ca4c80bbef73bb95de9c4fa4e ****/ + /****** BRepPrim_Cylinder::BRepPrim_Cylinder ******/ + /****** md5 signature: 2d8fc92ca4c80bbef73bb95de9c4fa4e ******/ %feature("compactdefaultargs") BRepPrim_Cylinder; %feature("autodoc", " Parameters @@ -2367,8 +2367,8 @@ The step definition position: center of a face and axis radius: radius of cylind ") BRepPrim_Cylinder; BRepPrim_Cylinder(const gp_Ax2 & Position, const Standard_Real Radius, const Standard_Real Height); - /****************** BRepPrim_Cylinder ******************/ - /**** md5 signature: ecc1d1a7f9b1d641e94a9b2cbeaf6532 ****/ + /****** BRepPrim_Cylinder::BRepPrim_Cylinder ******/ + /****** md5 signature: ecc1d1a7f9b1d641e94a9b2cbeaf6532 ******/ %feature("compactdefaultargs") BRepPrim_Cylinder; %feature("autodoc", " Parameters @@ -2385,8 +2385,8 @@ Infinite cylinder at origin on z negative. ") BRepPrim_Cylinder; BRepPrim_Cylinder(const Standard_Real Radius); - /****************** BRepPrim_Cylinder ******************/ - /**** md5 signature: fb91e5b01da7587cf83484e8f6b4331b ****/ + /****** BRepPrim_Cylinder::BRepPrim_Cylinder ******/ + /****** md5 signature: fb91e5b01da7587cf83484e8f6b4331b ******/ %feature("compactdefaultargs") BRepPrim_Cylinder; %feature("autodoc", " Parameters @@ -2404,8 +2404,8 @@ Infinite cylinder at center on z negative. ") BRepPrim_Cylinder; BRepPrim_Cylinder(const gp_Pnt & Center, const Standard_Real Radius); - /****************** BRepPrim_Cylinder ******************/ - /**** md5 signature: c6ae35bea3254cadd17db7280137bea7 ****/ + /****** BRepPrim_Cylinder::BRepPrim_Cylinder ******/ + /****** md5 signature: c6ae35bea3254cadd17db7280137bea7 ******/ %feature("compactdefaultargs") BRepPrim_Cylinder; %feature("autodoc", " Parameters @@ -2423,8 +2423,8 @@ Infinite cylinder at axes on z negative. ") BRepPrim_Cylinder; BRepPrim_Cylinder(const gp_Ax2 & Axes, const Standard_Real Radius); - /****************** BRepPrim_Cylinder ******************/ - /**** md5 signature: 70f6d404a95f20f5c7464246f08067a7 ****/ + /****** BRepPrim_Cylinder::BRepPrim_Cylinder ******/ + /****** md5 signature: 70f6d404a95f20f5c7464246f08067a7 ******/ %feature("compactdefaultargs") BRepPrim_Cylinder; %feature("autodoc", " Parameters @@ -2442,8 +2442,8 @@ Create a cylinder at origin on z axis, of height h and radius r error: radius < ") BRepPrim_Cylinder; BRepPrim_Cylinder(const Standard_Real R, const Standard_Real H); - /****************** BRepPrim_Cylinder ******************/ - /**** md5 signature: 6910efd5aeea5eed4574043c57b67161 ****/ + /****** BRepPrim_Cylinder::BRepPrim_Cylinder ******/ + /****** md5 signature: 6910efd5aeea5eed4574043c57b67161 ******/ %feature("compactdefaultargs") BRepPrim_Cylinder; %feature("autodoc", " Parameters @@ -2462,8 +2462,8 @@ Same as above but at a given point. ") BRepPrim_Cylinder; BRepPrim_Cylinder(const gp_Pnt & Center, const Standard_Real R, const Standard_Real H); - /****************** MakeEmptyLateralFace ******************/ - /**** md5 signature: b5adc273756debb03c54f3ada5247082 ****/ + /****** BRepPrim_Cylinder::MakeEmptyLateralFace ******/ + /****** md5 signature: b5adc273756debb03c54f3ada5247082 ******/ %feature("compactdefaultargs") MakeEmptyLateralFace; %feature("autodoc", "Return ------- @@ -2489,8 +2489,8 @@ The surface normal should be directed towards the outside. ************************/ class BRepPrim_Sphere : public BRepPrim_Revolution { public: - /****************** BRepPrim_Sphere ******************/ - /**** md5 signature: a69f71dc958ffcbd14404b395674a725 ****/ + /****** BRepPrim_Sphere::BRepPrim_Sphere ******/ + /****** md5 signature: a69f71dc958ffcbd14404b395674a725 ******/ %feature("compactdefaultargs") BRepPrim_Sphere; %feature("autodoc", " Parameters @@ -2507,8 +2507,8 @@ Creates a sphere at origin with radius. the axes of the sphere are the reference ") BRepPrim_Sphere; BRepPrim_Sphere(const Standard_Real Radius); - /****************** BRepPrim_Sphere ******************/ - /**** md5 signature: 40fe35bc704dd685fcd8f42947b874a9 ****/ + /****** BRepPrim_Sphere::BRepPrim_Sphere ******/ + /****** md5 signature: 40fe35bc704dd685fcd8f42947b874a9 ******/ %feature("compactdefaultargs") BRepPrim_Sphere; %feature("autodoc", " Parameters @@ -2526,8 +2526,8 @@ Creates a sphere with center and radius. axes are the reference axes. this is th ") BRepPrim_Sphere; BRepPrim_Sphere(const gp_Pnt & Center, const Standard_Real Radius); - /****************** BRepPrim_Sphere ******************/ - /**** md5 signature: 7ff355f910ca0fd149e933f970dbb666 ****/ + /****** BRepPrim_Sphere::BRepPrim_Sphere ******/ + /****** md5 signature: 7ff355f910ca0fd149e933f970dbb666 ******/ %feature("compactdefaultargs") BRepPrim_Sphere; %feature("autodoc", " Parameters @@ -2545,8 +2545,8 @@ Creates a sphere with given axes system. ") BRepPrim_Sphere; BRepPrim_Sphere(const gp_Ax2 & Axes, const Standard_Real Radius); - /****************** MakeEmptyLateralFace ******************/ - /**** md5 signature: b5adc273756debb03c54f3ada5247082 ****/ + /****** BRepPrim_Sphere::MakeEmptyLateralFace ******/ + /****** md5 signature: b5adc273756debb03c54f3ada5247082 ******/ %feature("compactdefaultargs") MakeEmptyLateralFace; %feature("autodoc", "Return ------- @@ -2572,8 +2572,8 @@ The surface normal should be directed towards the outside. ***********************/ class BRepPrim_Torus : public BRepPrim_Revolution { public: - /****************** BRepPrim_Torus ******************/ - /**** md5 signature: a73ba5d8cdf7a0859b5f42eec6316a19 ****/ + /****** BRepPrim_Torus::BRepPrim_Torus ******/ + /****** md5 signature: a73ba5d8cdf7a0859b5f42eec6316a19 ******/ %feature("compactdefaultargs") BRepPrim_Torus; %feature("autodoc", " Parameters @@ -2592,8 +2592,8 @@ The step definition position: center and axes major, minor: radii //! errors: ma ") BRepPrim_Torus; BRepPrim_Torus(const gp_Ax2 & Position, const Standard_Real Major, const Standard_Real Minor); - /****************** BRepPrim_Torus ******************/ - /**** md5 signature: 96236fbf921e8d6d410e179a02cc89de ****/ + /****** BRepPrim_Torus::BRepPrim_Torus ******/ + /****** md5 signature: 96236fbf921e8d6d410e179a02cc89de ******/ %feature("compactdefaultargs") BRepPrim_Torus; %feature("autodoc", " Parameters @@ -2611,8 +2611,8 @@ Torus centered at origin. ") BRepPrim_Torus; BRepPrim_Torus(const Standard_Real Major, const Standard_Real Minor); - /****************** BRepPrim_Torus ******************/ - /**** md5 signature: e161468c8e037f5911e3faeb41308f3b ****/ + /****** BRepPrim_Torus::BRepPrim_Torus ******/ + /****** md5 signature: e161468c8e037f5911e3faeb41308f3b ******/ %feature("compactdefaultargs") BRepPrim_Torus; %feature("autodoc", " Parameters @@ -2631,8 +2631,8 @@ Torus at center. ") BRepPrim_Torus; BRepPrim_Torus(const gp_Pnt & Center, const Standard_Real Major, const Standard_Real Minor); - /****************** MakeEmptyLateralFace ******************/ - /**** md5 signature: b5adc273756debb03c54f3ada5247082 ****/ + /****** BRepPrim_Torus::MakeEmptyLateralFace ******/ + /****** md5 signature: b5adc273756debb03c54f3ada5247082 ******/ %feature("compactdefaultargs") MakeEmptyLateralFace; %feature("autodoc", "Return ------- diff --git a/src/SWIG_files/wrapper/BRepPrimAPI.i b/src/SWIG_files/wrapper/BRepPrimAPI.i index 62eeff84c..5415ad72e 100644 --- a/src/SWIG_files/wrapper/BRepPrimAPI.i +++ b/src/SWIG_files/wrapper/BRepPrimAPI.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPPRIMAPIDOCSTRING "BRepPrimAPI module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepprimapi.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepprimapi.html" %enddef %module (package="OCC.Core", docstring=BREPPRIMAPIDOCSTRING) BRepPrimAPI @@ -103,8 +103,8 @@ from OCC.Core.Exception import * ****************************/ class BRepPrimAPI_MakeBox : public BRepBuilderAPI_MakeShape { public: - /****************** BRepPrimAPI_MakeBox ******************/ - /**** md5 signature: 62334e89e492e8589da69f5803043255 ****/ + /****** BRepPrimAPI_MakeBox::BRepPrimAPI_MakeBox ******/ + /****** md5 signature: 62334e89e492e8589da69f5803043255 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeBox; %feature("autodoc", "Return ------- @@ -116,8 +116,8 @@ Default constructor. ") BRepPrimAPI_MakeBox; BRepPrimAPI_MakeBox(); - /****************** BRepPrimAPI_MakeBox ******************/ - /**** md5 signature: ebf0ba7393f3d2e7a68cf7a20e007a5c ****/ + /****** BRepPrimAPI_MakeBox::BRepPrimAPI_MakeBox ******/ + /****** md5 signature: ebf0ba7393f3d2e7a68cf7a20e007a5c ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeBox; %feature("autodoc", " Parameters @@ -136,8 +136,8 @@ Make a box with a corner at 0,0,0 and the other dx,dy,dz. ") BRepPrimAPI_MakeBox; BRepPrimAPI_MakeBox(const Standard_Real dx, const Standard_Real dy, const Standard_Real dz); - /****************** BRepPrimAPI_MakeBox ******************/ - /**** md5 signature: 1f47b3a80e6137f9ac76cc0962240f27 ****/ + /****** BRepPrimAPI_MakeBox::BRepPrimAPI_MakeBox ******/ + /****** md5 signature: 1f47b3a80e6137f9ac76cc0962240f27 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeBox; %feature("autodoc", " Parameters @@ -157,8 +157,8 @@ Make a box with a corner at p and size dx, dy, dz. ") BRepPrimAPI_MakeBox; BRepPrimAPI_MakeBox(const gp_Pnt & P, const Standard_Real dx, const Standard_Real dy, const Standard_Real dz); - /****************** BRepPrimAPI_MakeBox ******************/ - /**** md5 signature: 88341489d41b99815b177eb1d56f447c ****/ + /****** BRepPrimAPI_MakeBox::BRepPrimAPI_MakeBox ******/ + /****** md5 signature: 88341489d41b99815b177eb1d56f447c ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeBox; %feature("autodoc", " Parameters @@ -176,8 +176,8 @@ Make a box with corners p1,p2. ") BRepPrimAPI_MakeBox; BRepPrimAPI_MakeBox(const gp_Pnt & P1, const gp_Pnt & P2); - /****************** BRepPrimAPI_MakeBox ******************/ - /**** md5 signature: 196c0f2f714dc8f8c28d2f3897f11160 ****/ + /****** BRepPrimAPI_MakeBox::BRepPrimAPI_MakeBox ******/ + /****** md5 signature: 196c0f2f714dc8f8c28d2f3897f11160 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeBox; %feature("autodoc", " Parameters @@ -197,8 +197,8 @@ Make a box with ax2 (the left corner and the axis) and size dx, dy, dz. ") BRepPrimAPI_MakeBox; BRepPrimAPI_MakeBox(const gp_Ax2 & Axes, const Standard_Real dx, const Standard_Real dy, const Standard_Real dz); - /****************** BackFace ******************/ - /**** md5 signature: 3894bccb204a1cd910d97847053a371b ****/ + /****** BRepPrimAPI_MakeBox::BackFace ******/ + /****** md5 signature: 3894bccb204a1cd910d97847053a371b ******/ %feature("compactdefaultargs") BackFace; %feature("autodoc", "Return ------- @@ -210,8 +210,8 @@ Returns xmin face. ") BackFace; const TopoDS_Face BackFace(); - /****************** BottomFace ******************/ - /**** md5 signature: d868072c1474b9c120740f20d5db6dfe ****/ + /****** BRepPrimAPI_MakeBox::BottomFace ******/ + /****** md5 signature: d868072c1474b9c120740f20d5db6dfe ******/ %feature("compactdefaultargs") BottomFace; %feature("autodoc", "Return ------- @@ -223,8 +223,8 @@ Returns zmin face. ") BottomFace; const TopoDS_Face BottomFace(); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepPrimAPI_MakeBox::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -241,8 +241,8 @@ Stores the solid in myshape. ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** FrontFace ******************/ - /**** md5 signature: dedf687aa14ee674479d6969119aae35 ****/ + /****** BRepPrimAPI_MakeBox::FrontFace ******/ + /****** md5 signature: dedf687aa14ee674479d6969119aae35 ******/ %feature("compactdefaultargs") FrontFace; %feature("autodoc", "Return ------- @@ -254,8 +254,8 @@ Returns xmax face. ") FrontFace; const TopoDS_Face FrontFace(); - /****************** Init ******************/ - /**** md5 signature: e420c8ce658f1c7f9ca51d356e7d4fc6 ****/ + /****** BRepPrimAPI_MakeBox::Init ******/ + /****** md5 signature: e420c8ce658f1c7f9ca51d356e7d4fc6 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -274,8 +274,8 @@ Init a box with a corner at 0,0,0 and the other thedx, thedy, thedz. ") Init; void Init(const Standard_Real theDX, const Standard_Real theDY, const Standard_Real theDZ); - /****************** Init ******************/ - /**** md5 signature: 74e58e01212416ad73217dbf68f63605 ****/ + /****** BRepPrimAPI_MakeBox::Init ******/ + /****** md5 signature: 74e58e01212416ad73217dbf68f63605 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -295,8 +295,8 @@ Init a box with a corner at thepnt and size thedx, thedy, thedz. ") Init; void Init(const gp_Pnt & thePnt, const Standard_Real theDX, const Standard_Real theDY, const Standard_Real theDZ); - /****************** Init ******************/ - /**** md5 signature: dce068f12da326b3308072d0862a796d ****/ + /****** BRepPrimAPI_MakeBox::Init ******/ + /****** md5 signature: dce068f12da326b3308072d0862a796d ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -314,8 +314,8 @@ Init a box with corners thepnt1, thepnt2. ") Init; void Init(const gp_Pnt & thePnt1, const gp_Pnt & thePnt2); - /****************** Init ******************/ - /**** md5 signature: 52e214b23b42180626b135887f3d4285 ****/ + /****** BRepPrimAPI_MakeBox::Init ******/ + /****** md5 signature: 52e214b23b42180626b135887f3d4285 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -335,8 +335,8 @@ Init a box with ax2 (the left corner and the theaxes) and size thedx, thedy, the ") Init; void Init(const gp_Ax2 & theAxes, const Standard_Real theDX, const Standard_Real theDY, const Standard_Real theDZ); - /****************** LeftFace ******************/ - /**** md5 signature: 3e2b98663df78556362c180d1b973ba2 ****/ + /****** BRepPrimAPI_MakeBox::LeftFace ******/ + /****** md5 signature: 3e2b98663df78556362c180d1b973ba2 ******/ %feature("compactdefaultargs") LeftFace; %feature("autodoc", "Return ------- @@ -348,8 +348,8 @@ Returns ymin face. ") LeftFace; const TopoDS_Face LeftFace(); - /****************** RightFace ******************/ - /**** md5 signature: 1771860d6171f385bca896b0c7f1c984 ****/ + /****** BRepPrimAPI_MakeBox::RightFace ******/ + /****** md5 signature: 1771860d6171f385bca896b0c7f1c984 ******/ %feature("compactdefaultargs") RightFace; %feature("autodoc", "Return ------- @@ -361,8 +361,8 @@ Returns ymax face. ") RightFace; const TopoDS_Face RightFace(); - /****************** Shell ******************/ - /**** md5 signature: 642de93edbb586600e27d55251851e8c ****/ + /****** BRepPrimAPI_MakeBox::Shell ******/ + /****** md5 signature: 642de93edbb586600e27d55251851e8c ******/ %feature("compactdefaultargs") Shell; %feature("autodoc", "Return ------- @@ -374,8 +374,8 @@ Returns the constructed box as a shell. ") Shell; const TopoDS_Shell Shell(); - /****************** Solid ******************/ - /**** md5 signature: 2538cb0f3104aa1b86470e63b7cc116d ****/ + /****** BRepPrimAPI_MakeBox::Solid ******/ + /****** md5 signature: 2538cb0f3104aa1b86470e63b7cc116d ******/ %feature("compactdefaultargs") Solid; %feature("autodoc", "Return ------- @@ -387,8 +387,8 @@ Returns the constructed box as a solid. ") Solid; const TopoDS_Solid Solid(); - /****************** TopFace ******************/ - /**** md5 signature: dd32adf6486145b103460dda0a299106 ****/ + /****** BRepPrimAPI_MakeBox::TopFace ******/ + /****** md5 signature: dd32adf6486145b103460dda0a299106 ******/ %feature("compactdefaultargs") TopFace; %feature("autodoc", "Return ------- @@ -400,8 +400,8 @@ Returns zmax face. ") TopFace; const TopoDS_Face TopFace(); - /****************** Wedge ******************/ - /**** md5 signature: 27912d8fac61b3f9abbc5a460ec7e7da ****/ + /****** BRepPrimAPI_MakeBox::Wedge ******/ + /****** md5 signature: 27912d8fac61b3f9abbc5a460ec7e7da ******/ %feature("compactdefaultargs") Wedge; %feature("autodoc", "Return ------- @@ -427,8 +427,8 @@ Returns the internal algorithm. **********************************/ class BRepPrimAPI_MakeHalfSpace : public BRepBuilderAPI_MakeShape { public: - /****************** BRepPrimAPI_MakeHalfSpace ******************/ - /**** md5 signature: 717e8e66a517ef1c9915fb6c28a55e2c ****/ + /****** BRepPrimAPI_MakeHalfSpace::BRepPrimAPI_MakeHalfSpace ******/ + /****** md5 signature: 717e8e66a517ef1c9915fb6c28a55e2c ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeHalfSpace; %feature("autodoc", " Parameters @@ -446,8 +446,8 @@ Make a halfspace defined with a face and a point. ") BRepPrimAPI_MakeHalfSpace; BRepPrimAPI_MakeHalfSpace(const TopoDS_Face & Face, const gp_Pnt & RefPnt); - /****************** BRepPrimAPI_MakeHalfSpace ******************/ - /**** md5 signature: 265e448a6d4de912d2d0571eebe3c75d ****/ + /****** BRepPrimAPI_MakeHalfSpace::BRepPrimAPI_MakeHalfSpace ******/ + /****** md5 signature: 265e448a6d4de912d2d0571eebe3c75d ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeHalfSpace; %feature("autodoc", " Parameters @@ -465,8 +465,8 @@ Make a halfspace defined with a shell and a point. ") BRepPrimAPI_MakeHalfSpace; BRepPrimAPI_MakeHalfSpace(const TopoDS_Shell & Shell, const gp_Pnt & RefPnt); - /****************** Solid ******************/ - /**** md5 signature: 0e70c03e20bb23e014ac5417ea4abe26 ****/ + /****** BRepPrimAPI_MakeHalfSpace::Solid ******/ + /****** md5 signature: 0e70c03e20bb23e014ac5417ea4abe26 ******/ %feature("compactdefaultargs") Solid; %feature("autodoc", "Return ------- @@ -493,8 +493,8 @@ Returns the constructed half-space as a solid. %nodefaultctor BRepPrimAPI_MakeOneAxis; class BRepPrimAPI_MakeOneAxis : public BRepBuilderAPI_MakeShape { public: - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepPrimAPI_MakeOneAxis::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -511,8 +511,8 @@ Stores the solid in myshape. ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Face ******************/ - /**** md5 signature: d92baec220de1f2e935a9694c6d65407 ****/ + /****** BRepPrimAPI_MakeOneAxis::Face ******/ + /****** md5 signature: d92baec220de1f2e935a9694c6d65407 ******/ %feature("compactdefaultargs") Face; %feature("autodoc", "Return ------- @@ -524,8 +524,8 @@ Returns the lateral face of the rotational primitive. ") Face; const TopoDS_Face Face(); - /****************** OneAxis ******************/ - /**** md5 signature: cf848053b2699d381071305b7bd4fea1 ****/ + /****** BRepPrimAPI_MakeOneAxis::OneAxis ******/ + /****** md5 signature: cf848053b2699d381071305b7bd4fea1 ******/ %feature("compactdefaultargs") OneAxis; %feature("autodoc", "Return ------- @@ -537,8 +537,8 @@ The inherited commands should provide the algorithm. returned as a pointer. ") OneAxis; virtual Standard_Address OneAxis(); - /****************** Shell ******************/ - /**** md5 signature: 642de93edbb586600e27d55251851e8c ****/ + /****** BRepPrimAPI_MakeOneAxis::Shell ******/ + /****** md5 signature: 642de93edbb586600e27d55251851e8c ******/ %feature("compactdefaultargs") Shell; %feature("autodoc", "Return ------- @@ -550,8 +550,8 @@ Returns the constructed rotational primitive as a shell. ") Shell; const TopoDS_Shell Shell(); - /****************** Solid ******************/ - /**** md5 signature: 2538cb0f3104aa1b86470e63b7cc116d ****/ + /****** BRepPrimAPI_MakeOneAxis::Solid ******/ + /****** md5 signature: 2538cb0f3104aa1b86470e63b7cc116d ******/ %feature("compactdefaultargs") Solid; %feature("autodoc", "Return ------- @@ -578,8 +578,8 @@ Returns the constructed rotational primitive as a solid. %nodefaultctor BRepPrimAPI_MakeSweep; class BRepPrimAPI_MakeSweep : public BRepBuilderAPI_MakeShape { public: - /****************** FirstShape ******************/ - /**** md5 signature: e14f1c25ceb92eeb304b34212ae10e14 ****/ + /****** BRepPrimAPI_MakeSweep::FirstShape ******/ + /****** md5 signature: e14f1c25ceb92eeb304b34212ae10e14 ******/ %feature("compactdefaultargs") FirstShape; %feature("autodoc", "Return ------- @@ -591,8 +591,8 @@ Returns the topods shape of the bottom of the sweep. ") FirstShape; virtual TopoDS_Shape FirstShape(); - /****************** LastShape ******************/ - /**** md5 signature: 389108f95b0e47bf3500b60f7937bf37 ****/ + /****** BRepPrimAPI_MakeSweep::LastShape ******/ + /****** md5 signature: 389108f95b0e47bf3500b60f7937bf37 ******/ %feature("compactdefaultargs") LastShape; %feature("autodoc", "Return ------- @@ -618,8 +618,8 @@ Returns the topods shape of the top of the sweep. ******************************/ class BRepPrimAPI_MakeWedge : public BRepBuilderAPI_MakeShape { public: - /****************** BRepPrimAPI_MakeWedge ******************/ - /**** md5 signature: 62134625daa2054faedb1dbada11fdc5 ****/ + /****** BRepPrimAPI_MakeWedge::BRepPrimAPI_MakeWedge ******/ + /****** md5 signature: 62134625daa2054faedb1dbada11fdc5 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeWedge; %feature("autodoc", " Parameters @@ -639,8 +639,8 @@ Make a step right angular wedge. (ltx >= 0). ") BRepPrimAPI_MakeWedge; BRepPrimAPI_MakeWedge(const Standard_Real dx, const Standard_Real dy, const Standard_Real dz, const Standard_Real ltx); - /****************** BRepPrimAPI_MakeWedge ******************/ - /**** md5 signature: 3c744f19a998b709a424453c25a1bc33 ****/ + /****** BRepPrimAPI_MakeWedge::BRepPrimAPI_MakeWedge ******/ + /****** md5 signature: 3c744f19a998b709a424453c25a1bc33 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeWedge; %feature("autodoc", " Parameters @@ -661,8 +661,8 @@ Make a step right angular wedge. (ltx >= 0). ") BRepPrimAPI_MakeWedge; BRepPrimAPI_MakeWedge(const gp_Ax2 & Axes, const Standard_Real dx, const Standard_Real dy, const Standard_Real dz, const Standard_Real ltx); - /****************** BRepPrimAPI_MakeWedge ******************/ - /**** md5 signature: 5ee56d4d1522c7574826ebe7fc2414cf ****/ + /****** BRepPrimAPI_MakeWedge::BRepPrimAPI_MakeWedge ******/ + /****** md5 signature: 5ee56d4d1522c7574826ebe7fc2414cf ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeWedge; %feature("autodoc", " Parameters @@ -685,8 +685,8 @@ Make a wedge. the face at dy is xmin,zmin xmax,zmax. ") BRepPrimAPI_MakeWedge; BRepPrimAPI_MakeWedge(const Standard_Real dx, const Standard_Real dy, const Standard_Real dz, const Standard_Real xmin, const Standard_Real zmin, const Standard_Real xmax, const Standard_Real zmax); - /****************** BRepPrimAPI_MakeWedge ******************/ - /**** md5 signature: e3dffc1a3f5cce6b73dac3d343b705b8 ****/ + /****** BRepPrimAPI_MakeWedge::BRepPrimAPI_MakeWedge ******/ + /****** md5 signature: e3dffc1a3f5cce6b73dac3d343b705b8 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeWedge; %feature("autodoc", " Parameters @@ -710,8 +710,8 @@ Make a wedge. the face at dy is xmin,zmin xmax,zmax. ") BRepPrimAPI_MakeWedge; BRepPrimAPI_MakeWedge(const gp_Ax2 & Axes, const Standard_Real dx, const Standard_Real dy, const Standard_Real dz, const Standard_Real xmin, const Standard_Real zmin, const Standard_Real xmax, const Standard_Real zmax); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepPrimAPI_MakeWedge::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -728,8 +728,8 @@ Stores the solid in myshape. ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Shell ******************/ - /**** md5 signature: 642de93edbb586600e27d55251851e8c ****/ + /****** BRepPrimAPI_MakeWedge::Shell ******/ + /****** md5 signature: 642de93edbb586600e27d55251851e8c ******/ %feature("compactdefaultargs") Shell; %feature("autodoc", "Return ------- @@ -741,8 +741,8 @@ Returns the constructed box in the form of a shell. ") Shell; const TopoDS_Shell Shell(); - /****************** Solid ******************/ - /**** md5 signature: 2538cb0f3104aa1b86470e63b7cc116d ****/ + /****** BRepPrimAPI_MakeWedge::Solid ******/ + /****** md5 signature: 2538cb0f3104aa1b86470e63b7cc116d ******/ %feature("compactdefaultargs") Solid; %feature("autodoc", "Return ------- @@ -754,8 +754,8 @@ Returns the constructed box in the form of a solid. ") Solid; const TopoDS_Solid Solid(); - /****************** Wedge ******************/ - /**** md5 signature: 27912d8fac61b3f9abbc5a460ec7e7da ****/ + /****** BRepPrimAPI_MakeWedge::Wedge ******/ + /****** md5 signature: 27912d8fac61b3f9abbc5a460ec7e7da ******/ %feature("compactdefaultargs") Wedge; %feature("autodoc", "Return ------- @@ -781,8 +781,8 @@ Returns the internal algorithm. *****************************/ class BRepPrimAPI_MakeCone : public BRepPrimAPI_MakeOneAxis { public: - /****************** BRepPrimAPI_MakeCone ******************/ - /**** md5 signature: 1512719e2d7e1f0f63aff7bd1c269939 ****/ + /****** BRepPrimAPI_MakeCone::BRepPrimAPI_MakeCone ******/ + /****** md5 signature: 1512719e2d7e1f0f63aff7bd1c269939 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeCone; %feature("autodoc", " Parameters @@ -801,8 +801,8 @@ Make a cone. @param r1 [in] cone bottom radius, may be null (z = 0) @param r2 [i ") BRepPrimAPI_MakeCone; BRepPrimAPI_MakeCone(const Standard_Real R1, const Standard_Real R2, const Standard_Real H); - /****************** BRepPrimAPI_MakeCone ******************/ - /**** md5 signature: 85895b74d05330efa768b9822d607e5e ****/ + /****** BRepPrimAPI_MakeCone::BRepPrimAPI_MakeCone ******/ + /****** md5 signature: 85895b74d05330efa768b9822d607e5e ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeCone; %feature("autodoc", " Parameters @@ -822,8 +822,8 @@ Make a cone. @param r1 [in] cone bottom radius, may be null (z = 0) @param r2 [i ") BRepPrimAPI_MakeCone; BRepPrimAPI_MakeCone(const Standard_Real R1, const Standard_Real R2, const Standard_Real H, const Standard_Real angle); - /****************** BRepPrimAPI_MakeCone ******************/ - /**** md5 signature: 65a934077d02d97ddd9f6dee217c3210 ****/ + /****** BRepPrimAPI_MakeCone::BRepPrimAPI_MakeCone ******/ + /****** md5 signature: 65a934077d02d97ddd9f6dee217c3210 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeCone; %feature("autodoc", " Parameters @@ -843,8 +843,8 @@ Make a cone. @param axes [in] coordinate system for the construction of the cone ") BRepPrimAPI_MakeCone; BRepPrimAPI_MakeCone(const gp_Ax2 & Axes, const Standard_Real R1, const Standard_Real R2, const Standard_Real H); - /****************** BRepPrimAPI_MakeCone ******************/ - /**** md5 signature: baf140ecd8ab09d6b0000ca2ee3009f9 ****/ + /****** BRepPrimAPI_MakeCone::BRepPrimAPI_MakeCone ******/ + /****** md5 signature: baf140ecd8ab09d6b0000ca2ee3009f9 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeCone; %feature("autodoc", " Parameters @@ -865,8 +865,8 @@ Make a cone of height h radius r1 in the plane z = 0, r2 in the plane z = h. r1 ") BRepPrimAPI_MakeCone; BRepPrimAPI_MakeCone(const gp_Ax2 & Axes, const Standard_Real R1, const Standard_Real R2, const Standard_Real H, const Standard_Real angle); - /****************** Cone ******************/ - /**** md5 signature: 546b626030aea6b11418d33ecb7d5201 ****/ + /****** BRepPrimAPI_MakeCone::Cone ******/ + /****** md5 signature: 546b626030aea6b11418d33ecb7d5201 ******/ %feature("compactdefaultargs") Cone; %feature("autodoc", "Return ------- @@ -878,8 +878,8 @@ Returns the algorithm. ") Cone; BRepPrim_Cone & Cone(); - /****************** OneAxis ******************/ - /**** md5 signature: 28226bf151c094464d166ab28823351a ****/ + /****** BRepPrimAPI_MakeCone::OneAxis ******/ + /****** md5 signature: 28226bf151c094464d166ab28823351a ******/ %feature("compactdefaultargs") OneAxis; %feature("autodoc", "Return ------- @@ -905,8 +905,8 @@ Returns the algorithm. *********************************/ class BRepPrimAPI_MakeCylinder : public BRepPrimAPI_MakeOneAxis { public: - /****************** BRepPrimAPI_MakeCylinder ******************/ - /**** md5 signature: 122d3374d1b39c79e589ee7952e79fc5 ****/ + /****** BRepPrimAPI_MakeCylinder::BRepPrimAPI_MakeCylinder ******/ + /****** md5 signature: 122d3374d1b39c79e589ee7952e79fc5 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeCylinder; %feature("autodoc", " Parameters @@ -924,8 +924,8 @@ Make a cylinder. @param r [in] cylinder radius @param h [in] cylinder height. ") BRepPrimAPI_MakeCylinder; BRepPrimAPI_MakeCylinder(const Standard_Real R, const Standard_Real H); - /****************** BRepPrimAPI_MakeCylinder ******************/ - /**** md5 signature: b712a40631537cc95a210a45d5a83445 ****/ + /****** BRepPrimAPI_MakeCylinder::BRepPrimAPI_MakeCylinder ******/ + /****** md5 signature: b712a40631537cc95a210a45d5a83445 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeCylinder; %feature("autodoc", " Parameters @@ -944,8 +944,8 @@ Make a cylinder (part cylinder). @param r [in] cylinder radius @param h [in] cyl ") BRepPrimAPI_MakeCylinder; BRepPrimAPI_MakeCylinder(const Standard_Real R, const Standard_Real H, const Standard_Real Angle); - /****************** BRepPrimAPI_MakeCylinder ******************/ - /**** md5 signature: af20dc797536fde28b46750b4d4c4ba7 ****/ + /****** BRepPrimAPI_MakeCylinder::BRepPrimAPI_MakeCylinder ******/ + /****** md5 signature: af20dc797536fde28b46750b4d4c4ba7 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeCylinder; %feature("autodoc", " Parameters @@ -964,8 +964,8 @@ Make a cylinder of radius r and length h. @param axes [in] coordinate system for ") BRepPrimAPI_MakeCylinder; BRepPrimAPI_MakeCylinder(const gp_Ax2 & Axes, const Standard_Real R, const Standard_Real H); - /****************** BRepPrimAPI_MakeCylinder ******************/ - /**** md5 signature: c4f1be4b38d4fe585057070954be80b4 ****/ + /****** BRepPrimAPI_MakeCylinder::BRepPrimAPI_MakeCylinder ******/ + /****** md5 signature: c4f1be4b38d4fe585057070954be80b4 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeCylinder; %feature("autodoc", " Parameters @@ -985,8 +985,8 @@ Make a cylinder of radius r and length h with angle h. constructs - a cylinder o ") BRepPrimAPI_MakeCylinder; BRepPrimAPI_MakeCylinder(const gp_Ax2 & Axes, const Standard_Real R, const Standard_Real H, const Standard_Real Angle); - /****************** Cylinder ******************/ - /**** md5 signature: 066e4a931618d7beab7894f68725e17d ****/ + /****** BRepPrimAPI_MakeCylinder::Cylinder ******/ + /****** md5 signature: 066e4a931618d7beab7894f68725e17d ******/ %feature("compactdefaultargs") Cylinder; %feature("autodoc", "Return ------- @@ -998,8 +998,8 @@ Returns the algorithm. ") Cylinder; BRepPrim_Cylinder & Cylinder(); - /****************** OneAxis ******************/ - /**** md5 signature: 28226bf151c094464d166ab28823351a ****/ + /****** BRepPrimAPI_MakeCylinder::OneAxis ******/ + /****** md5 signature: 28226bf151c094464d166ab28823351a ******/ %feature("compactdefaultargs") OneAxis; %feature("autodoc", "Return ------- @@ -1025,8 +1025,8 @@ Returns the algorithm. ******************************/ class BRepPrimAPI_MakePrism : public BRepPrimAPI_MakeSweep { public: - /****************** BRepPrimAPI_MakePrism ******************/ - /**** md5 signature: 7b42e7538866796b05dcf459904fdaca ****/ + /****** BRepPrimAPI_MakePrism::BRepPrimAPI_MakePrism ******/ + /****** md5 signature: 7b42e7538866796b05dcf459904fdaca ******/ %feature("compactdefaultargs") BRepPrimAPI_MakePrism; %feature("autodoc", " Parameters @@ -1046,8 +1046,8 @@ Builds the prism of base s and vector v. if c is true, s is copied. if canonize ") BRepPrimAPI_MakePrism; BRepPrimAPI_MakePrism(const TopoDS_Shape & S, const gp_Vec & V, const Standard_Boolean Copy = Standard_False, const Standard_Boolean Canonize = Standard_True); - /****************** BRepPrimAPI_MakePrism ******************/ - /**** md5 signature: fc5e938e92737762a72a63b1ee614f0b ****/ + /****** BRepPrimAPI_MakePrism::BRepPrimAPI_MakePrism ******/ + /****** md5 signature: fc5e938e92737762a72a63b1ee614f0b ******/ %feature("compactdefaultargs") BRepPrimAPI_MakePrism; %feature("autodoc", " Parameters @@ -1068,8 +1068,8 @@ Builds a semi-infinite or an infinite prism of base s. if inf is true the prism ") BRepPrimAPI_MakePrism; BRepPrimAPI_MakePrism(const TopoDS_Shape & S, const gp_Dir & D, const Standard_Boolean Inf = Standard_True, const Standard_Boolean Copy = Standard_False, const Standard_Boolean Canonize = Standard_True); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepPrimAPI_MakePrism::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -1086,8 +1086,8 @@ Builds the resulting shape (redefined from makeshape). ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** FirstShape ******************/ - /**** md5 signature: 58fcb2a790a0aa12dce93bc2307abc16 ****/ + /****** BRepPrimAPI_MakePrism::FirstShape ******/ + /****** md5 signature: 58fcb2a790a0aa12dce93bc2307abc16 ******/ %feature("compactdefaultargs") FirstShape; %feature("autodoc", "Return ------- @@ -1099,8 +1099,8 @@ Returns the topods shape of the bottom of the prism. ") FirstShape; TopoDS_Shape FirstShape(); - /****************** FirstShape ******************/ - /**** md5 signature: d4834c8a673a1c89988c330c2f3987cf ****/ + /****** BRepPrimAPI_MakePrism::FirstShape ******/ + /****** md5 signature: d4834c8a673a1c89988c330c2f3987cf ******/ %feature("compactdefaultargs") FirstShape; %feature("autodoc", " Parameters @@ -1117,8 +1117,8 @@ Returns the topods shape of the bottom of the prism. generated with theshape (su ") FirstShape; TopoDS_Shape FirstShape(const TopoDS_Shape & theShape); - /****************** Generated ******************/ - /**** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ****/ + /****** BRepPrimAPI_MakePrism::Generated ******/ + /****** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -1135,8 +1135,8 @@ Returns listofshape from toptools. ") Generated; virtual const TopTools_ListOfShape & Generated(const TopoDS_Shape & S); - /****************** IsDeleted ******************/ - /**** md5 signature: 28be7c17a3b2776f59567554f488bbf5 ****/ + /****** BRepPrimAPI_MakePrism::IsDeleted ******/ + /****** md5 signature: 28be7c17a3b2776f59567554f488bbf5 ******/ %feature("compactdefaultargs") IsDeleted; %feature("autodoc", " Parameters @@ -1153,8 +1153,8 @@ Returns true if the shape s has been deleted. ") IsDeleted; virtual Standard_Boolean IsDeleted(const TopoDS_Shape & S); - /****************** LastShape ******************/ - /**** md5 signature: 00d36051126aa083896abae0c2f17b32 ****/ + /****** BRepPrimAPI_MakePrism::LastShape ******/ + /****** md5 signature: 00d36051126aa083896abae0c2f17b32 ******/ %feature("compactdefaultargs") LastShape; %feature("autodoc", "Return ------- @@ -1166,8 +1166,8 @@ Returns the topods shape of the top of the prism. in the case of a finite prism, ") LastShape; TopoDS_Shape LastShape(); - /****************** LastShape ******************/ - /**** md5 signature: 3e6d04f0762aab5c300642efe6a9f415 ****/ + /****** BRepPrimAPI_MakePrism::LastShape ******/ + /****** md5 signature: 3e6d04f0762aab5c300642efe6a9f415 ******/ %feature("compactdefaultargs") LastShape; %feature("autodoc", " Parameters @@ -1184,8 +1184,8 @@ Returns the topods shape of the top of the prism. generated with theshape (subsh ") LastShape; TopoDS_Shape LastShape(const TopoDS_Shape & theShape); - /****************** Prism ******************/ - /**** md5 signature: 4299163a83304e02517765adca48c409 ****/ + /****** BRepPrimAPI_MakePrism::Prism ******/ + /****** md5 signature: 4299163a83304e02517765adca48c409 ******/ %feature("compactdefaultargs") Prism; %feature("autodoc", "Return ------- @@ -1211,8 +1211,8 @@ Returns the internal sweeping algorithm. ******************************/ class BRepPrimAPI_MakeRevol : public BRepPrimAPI_MakeSweep { public: - /****************** BRepPrimAPI_MakeRevol ******************/ - /**** md5 signature: 5b48cba67a0b18acf09772bfb1856392 ****/ + /****** BRepPrimAPI_MakeRevol::BRepPrimAPI_MakeRevol ******/ + /****** md5 signature: 5b48cba67a0b18acf09772bfb1856392 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeRevol; %feature("autodoc", " Parameters @@ -1232,8 +1232,8 @@ Builds the revol of base s, axis a and angle d. if c is true, s is copied. ") BRepPrimAPI_MakeRevol; BRepPrimAPI_MakeRevol(const TopoDS_Shape & S, const gp_Ax1 & A, const Standard_Real D, const Standard_Boolean Copy = Standard_False); - /****************** BRepPrimAPI_MakeRevol ******************/ - /**** md5 signature: 1b368e550bab93d291f17aff270a831d ****/ + /****** BRepPrimAPI_MakeRevol::BRepPrimAPI_MakeRevol ******/ + /****** md5 signature: 1b368e550bab93d291f17aff270a831d ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeRevol; %feature("autodoc", " Parameters @@ -1252,8 +1252,8 @@ Builds the revol of base s, axis a and angle 2*pi. if c is true, s is copied. ") BRepPrimAPI_MakeRevol; BRepPrimAPI_MakeRevol(const TopoDS_Shape & S, const gp_Ax1 & A, const Standard_Boolean Copy = Standard_False); - /****************** Build ******************/ - /**** md5 signature: 58900897d55d51e349b2e40a091ec26f ****/ + /****** BRepPrimAPI_MakeRevol::Build ******/ + /****** md5 signature: 58900897d55d51e349b2e40a091ec26f ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -1270,8 +1270,8 @@ Builds the resulting shape (redefined from makeshape). ") Build; virtual void Build(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Degenerated ******************/ - /**** md5 signature: ff38f303d61ce3594b19f818a854ffa1 ****/ + /****** BRepPrimAPI_MakeRevol::Degenerated ******/ + /****** md5 signature: ff38f303d61ce3594b19f818a854ffa1 ******/ %feature("compactdefaultargs") Degenerated; %feature("autodoc", "Return ------- @@ -1283,8 +1283,8 @@ Returns the list of degenerated edges. ") Degenerated; const TopTools_ListOfShape & Degenerated(); - /****************** FirstShape ******************/ - /**** md5 signature: 58fcb2a790a0aa12dce93bc2307abc16 ****/ + /****** BRepPrimAPI_MakeRevol::FirstShape ******/ + /****** md5 signature: 58fcb2a790a0aa12dce93bc2307abc16 ******/ %feature("compactdefaultargs") FirstShape; %feature("autodoc", "Return ------- @@ -1296,8 +1296,8 @@ Returns the first shape of the revol (coinciding with the generating shape). ") FirstShape; TopoDS_Shape FirstShape(); - /****************** FirstShape ******************/ - /**** md5 signature: d4834c8a673a1c89988c330c2f3987cf ****/ + /****** BRepPrimAPI_MakeRevol::FirstShape ******/ + /****** md5 signature: d4834c8a673a1c89988c330c2f3987cf ******/ %feature("compactdefaultargs") FirstShape; %feature("autodoc", " Parameters @@ -1314,8 +1314,8 @@ Returns the topods shape of the beginning of the revolution, generated with thes ") FirstShape; TopoDS_Shape FirstShape(const TopoDS_Shape & theShape); - /****************** Generated ******************/ - /**** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ****/ + /****** BRepPrimAPI_MakeRevol::Generated ******/ + /****** md5 signature: 12bed2c8d73d25dddf738c72a9352693 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -1332,8 +1332,8 @@ Returns list of shape generated from shape s warning: shape s must be shape of t ") Generated; virtual const TopTools_ListOfShape & Generated(const TopoDS_Shape & S); - /****************** HasDegenerated ******************/ - /**** md5 signature: 003ea366ae5e63cfa75b4a4a77915921 ****/ + /****** BRepPrimAPI_MakeRevol::HasDegenerated ******/ + /****** md5 signature: 003ea366ae5e63cfa75b4a4a77915921 ******/ %feature("compactdefaultargs") HasDegenerated; %feature("autodoc", "Return ------- @@ -1345,8 +1345,8 @@ Check if there are degenerated edges in the result. ") HasDegenerated; Standard_Boolean HasDegenerated(); - /****************** IsDeleted ******************/ - /**** md5 signature: 28be7c17a3b2776f59567554f488bbf5 ****/ + /****** BRepPrimAPI_MakeRevol::IsDeleted ******/ + /****** md5 signature: 28be7c17a3b2776f59567554f488bbf5 ******/ %feature("compactdefaultargs") IsDeleted; %feature("autodoc", " Parameters @@ -1363,8 +1363,8 @@ Returns true if the shape s has been deleted. ") IsDeleted; virtual Standard_Boolean IsDeleted(const TopoDS_Shape & S); - /****************** LastShape ******************/ - /**** md5 signature: 00d36051126aa083896abae0c2f17b32 ****/ + /****** BRepPrimAPI_MakeRevol::LastShape ******/ + /****** md5 signature: 00d36051126aa083896abae0c2f17b32 ******/ %feature("compactdefaultargs") LastShape; %feature("autodoc", "Return ------- @@ -1376,8 +1376,8 @@ Returns the topods shape of the end of the revol. ") LastShape; TopoDS_Shape LastShape(); - /****************** LastShape ******************/ - /**** md5 signature: 3e6d04f0762aab5c300642efe6a9f415 ****/ + /****** BRepPrimAPI_MakeRevol::LastShape ******/ + /****** md5 signature: 3e6d04f0762aab5c300642efe6a9f415 ******/ %feature("compactdefaultargs") LastShape; %feature("autodoc", " Parameters @@ -1394,8 +1394,8 @@ Returns the topods shape of the end of the revolution, generated with theshape ( ") LastShape; TopoDS_Shape LastShape(const TopoDS_Shape & theShape); - /****************** Revol ******************/ - /**** md5 signature: ee6c1e3b25f5684921520da6a7d86148 ****/ + /****** BRepPrimAPI_MakeRevol::Revol ******/ + /****** md5 signature: ee6c1e3b25f5684921520da6a7d86148 ******/ %feature("compactdefaultargs") Revol; %feature("autodoc", "Return ------- @@ -1421,8 +1421,8 @@ Returns the internal sweeping algorithm. ***********************************/ class BRepPrimAPI_MakeRevolution : public BRepPrimAPI_MakeOneAxis { public: - /****************** BRepPrimAPI_MakeRevolution ******************/ - /**** md5 signature: 91fd62c84881e21ffc010980de26ffd8 ****/ + /****** BRepPrimAPI_MakeRevolution::BRepPrimAPI_MakeRevolution ******/ + /****** md5 signature: 91fd62c84881e21ffc010980de26ffd8 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeRevolution; %feature("autodoc", " Parameters @@ -1439,8 +1439,8 @@ Make a revolution body by rotating a curve around z. ") BRepPrimAPI_MakeRevolution; BRepPrimAPI_MakeRevolution(const opencascade::handle & Meridian); - /****************** BRepPrimAPI_MakeRevolution ******************/ - /**** md5 signature: 7a70a0d027631becf26186b999272310 ****/ + /****** BRepPrimAPI_MakeRevolution::BRepPrimAPI_MakeRevolution ******/ + /****** md5 signature: 7a70a0d027631becf26186b999272310 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeRevolution; %feature("autodoc", " Parameters @@ -1458,8 +1458,8 @@ Make a revolution body by rotating a curve around z. ") BRepPrimAPI_MakeRevolution; BRepPrimAPI_MakeRevolution(const opencascade::handle & Meridian, const Standard_Real angle); - /****************** BRepPrimAPI_MakeRevolution ******************/ - /**** md5 signature: 955ba076b18e66c498b5ce77910b4a96 ****/ + /****** BRepPrimAPI_MakeRevolution::BRepPrimAPI_MakeRevolution ******/ + /****** md5 signature: 955ba076b18e66c498b5ce77910b4a96 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeRevolution; %feature("autodoc", " Parameters @@ -1478,8 +1478,8 @@ Make a revolution body by rotating a curve around z. ") BRepPrimAPI_MakeRevolution; BRepPrimAPI_MakeRevolution(const opencascade::handle & Meridian, const Standard_Real VMin, const Standard_Real VMax); - /****************** BRepPrimAPI_MakeRevolution ******************/ - /**** md5 signature: ebdf463e24bd84a898b941ad1008bcd3 ****/ + /****** BRepPrimAPI_MakeRevolution::BRepPrimAPI_MakeRevolution ******/ + /****** md5 signature: ebdf463e24bd84a898b941ad1008bcd3 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeRevolution; %feature("autodoc", " Parameters @@ -1499,8 +1499,8 @@ Make a revolution body by rotating a curve around z. ") BRepPrimAPI_MakeRevolution; BRepPrimAPI_MakeRevolution(const opencascade::handle & Meridian, const Standard_Real VMin, const Standard_Real VMax, const Standard_Real angle); - /****************** BRepPrimAPI_MakeRevolution ******************/ - /**** md5 signature: 6a88cfda74a6ba83677b39f94d464e41 ****/ + /****** BRepPrimAPI_MakeRevolution::BRepPrimAPI_MakeRevolution ******/ + /****** md5 signature: 6a88cfda74a6ba83677b39f94d464e41 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeRevolution; %feature("autodoc", " Parameters @@ -1518,8 +1518,8 @@ Make a revolution body by rotating a curve around z. ") BRepPrimAPI_MakeRevolution; BRepPrimAPI_MakeRevolution(const gp_Ax2 & Axes, const opencascade::handle & Meridian); - /****************** BRepPrimAPI_MakeRevolution ******************/ - /**** md5 signature: 72cb2c3fe156cfd9207b7edfcc4615be ****/ + /****** BRepPrimAPI_MakeRevolution::BRepPrimAPI_MakeRevolution ******/ + /****** md5 signature: 72cb2c3fe156cfd9207b7edfcc4615be ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeRevolution; %feature("autodoc", " Parameters @@ -1538,8 +1538,8 @@ Make a revolution body by rotating a curve around z. ") BRepPrimAPI_MakeRevolution; BRepPrimAPI_MakeRevolution(const gp_Ax2 & Axes, const opencascade::handle & Meridian, const Standard_Real angle); - /****************** BRepPrimAPI_MakeRevolution ******************/ - /**** md5 signature: 3c8bf12156d5b013d9e02c5f4ab5a41f ****/ + /****** BRepPrimAPI_MakeRevolution::BRepPrimAPI_MakeRevolution ******/ + /****** md5 signature: 3c8bf12156d5b013d9e02c5f4ab5a41f ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeRevolution; %feature("autodoc", " Parameters @@ -1559,8 +1559,8 @@ Make a revolution body by rotating a curve around z. ") BRepPrimAPI_MakeRevolution; BRepPrimAPI_MakeRevolution(const gp_Ax2 & Axes, const opencascade::handle & Meridian, const Standard_Real VMin, const Standard_Real VMax); - /****************** BRepPrimAPI_MakeRevolution ******************/ - /**** md5 signature: abdaf65b86668c5864018b07739ef042 ****/ + /****** BRepPrimAPI_MakeRevolution::BRepPrimAPI_MakeRevolution ******/ + /****** md5 signature: abdaf65b86668c5864018b07739ef042 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeRevolution; %feature("autodoc", " Parameters @@ -1581,8 +1581,8 @@ Make a revolution body by rotating a curve around z. for all algorithms the resu ") BRepPrimAPI_MakeRevolution; BRepPrimAPI_MakeRevolution(const gp_Ax2 & Axes, const opencascade::handle & Meridian, const Standard_Real VMin, const Standard_Real VMax, const Standard_Real angle); - /****************** OneAxis ******************/ - /**** md5 signature: 28226bf151c094464d166ab28823351a ****/ + /****** BRepPrimAPI_MakeRevolution::OneAxis ******/ + /****** md5 signature: 28226bf151c094464d166ab28823351a ******/ %feature("compactdefaultargs") OneAxis; %feature("autodoc", "Return ------- @@ -1594,8 +1594,8 @@ Returns the algorithm. ") OneAxis; Standard_Address OneAxis(); - /****************** Revolution ******************/ - /**** md5 signature: 363c8f0934cae14058e70d26a327ed54 ****/ + /****** BRepPrimAPI_MakeRevolution::Revolution ******/ + /****** md5 signature: 363c8f0934cae14058e70d26a327ed54 ******/ %feature("compactdefaultargs") Revolution; %feature("autodoc", "Return ------- @@ -1621,8 +1621,8 @@ Returns the algorithm. *******************************/ class BRepPrimAPI_MakeSphere : public BRepPrimAPI_MakeOneAxis { public: - /****************** BRepPrimAPI_MakeSphere ******************/ - /**** md5 signature: d4c008b020242eeb2a1cf253e7c05dbb ****/ + /****** BRepPrimAPI_MakeSphere::BRepPrimAPI_MakeSphere ******/ + /****** md5 signature: d4c008b020242eeb2a1cf253e7c05dbb ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeSphere; %feature("autodoc", " Parameters @@ -1639,8 +1639,8 @@ Make a sphere. @param r [in] sphere radius. ") BRepPrimAPI_MakeSphere; BRepPrimAPI_MakeSphere(const Standard_Real R); - /****************** BRepPrimAPI_MakeSphere ******************/ - /**** md5 signature: 0a3f72555d6c11472942f1523e001b32 ****/ + /****** BRepPrimAPI_MakeSphere::BRepPrimAPI_MakeSphere ******/ + /****** md5 signature: 0a3f72555d6c11472942f1523e001b32 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeSphere; %feature("autodoc", " Parameters @@ -1658,8 +1658,8 @@ Make a sphere (spherical wedge). @param r [in] sphere radius @param angle [in] a ") BRepPrimAPI_MakeSphere; BRepPrimAPI_MakeSphere(const Standard_Real R, const Standard_Real angle); - /****************** BRepPrimAPI_MakeSphere ******************/ - /**** md5 signature: e211e8e1d075f75e54850166aa57aa62 ****/ + /****** BRepPrimAPI_MakeSphere::BRepPrimAPI_MakeSphere ******/ + /****** md5 signature: e211e8e1d075f75e54850166aa57aa62 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeSphere; %feature("autodoc", " Parameters @@ -1678,8 +1678,8 @@ Make a sphere (spherical segment). @param r [in] sphere radius @param angle1 [in ") BRepPrimAPI_MakeSphere; BRepPrimAPI_MakeSphere(const Standard_Real R, const Standard_Real angle1, const Standard_Real angle2); - /****************** BRepPrimAPI_MakeSphere ******************/ - /**** md5 signature: e61fc0893a9d99a0a414e6e1a78e6be2 ****/ + /****** BRepPrimAPI_MakeSphere::BRepPrimAPI_MakeSphere ******/ + /****** md5 signature: e61fc0893a9d99a0a414e6e1a78e6be2 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeSphere; %feature("autodoc", " Parameters @@ -1699,8 +1699,8 @@ Make a sphere (spherical segment). @param r [in] sphere radius @param angle1 [in ") BRepPrimAPI_MakeSphere; BRepPrimAPI_MakeSphere(const Standard_Real R, const Standard_Real angle1, const Standard_Real angle2, const Standard_Real angle3); - /****************** BRepPrimAPI_MakeSphere ******************/ - /**** md5 signature: 8a02cb080894b776cb9184f9db9e1ed9 ****/ + /****** BRepPrimAPI_MakeSphere::BRepPrimAPI_MakeSphere ******/ + /****** md5 signature: 8a02cb080894b776cb9184f9db9e1ed9 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeSphere; %feature("autodoc", " Parameters @@ -1718,8 +1718,8 @@ Make a sphere. @param center [in] sphere center coordinates @param r [in] sphere ") BRepPrimAPI_MakeSphere; BRepPrimAPI_MakeSphere(const gp_Pnt & Center, const Standard_Real R); - /****************** BRepPrimAPI_MakeSphere ******************/ - /**** md5 signature: faf79684811fcbfdff68d313175a9f2d ****/ + /****** BRepPrimAPI_MakeSphere::BRepPrimAPI_MakeSphere ******/ + /****** md5 signature: faf79684811fcbfdff68d313175a9f2d ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeSphere; %feature("autodoc", " Parameters @@ -1738,8 +1738,8 @@ Make a sphere (spherical wedge). @param center [in] sphere center coordinates @p ") BRepPrimAPI_MakeSphere; BRepPrimAPI_MakeSphere(const gp_Pnt & Center, const Standard_Real R, const Standard_Real angle); - /****************** BRepPrimAPI_MakeSphere ******************/ - /**** md5 signature: 9da11fccdbffbda96873289a3c23018b ****/ + /****** BRepPrimAPI_MakeSphere::BRepPrimAPI_MakeSphere ******/ + /****** md5 signature: 9da11fccdbffbda96873289a3c23018b ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeSphere; %feature("autodoc", " Parameters @@ -1759,8 +1759,8 @@ Make a sphere (spherical segment). @param center [in] sphere center coordinates ") BRepPrimAPI_MakeSphere; BRepPrimAPI_MakeSphere(const gp_Pnt & Center, const Standard_Real R, const Standard_Real angle1, const Standard_Real angle2); - /****************** BRepPrimAPI_MakeSphere ******************/ - /**** md5 signature: 4926f7918e6569b90190d3e88d475d75 ****/ + /****** BRepPrimAPI_MakeSphere::BRepPrimAPI_MakeSphere ******/ + /****** md5 signature: 4926f7918e6569b90190d3e88d475d75 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeSphere; %feature("autodoc", " Parameters @@ -1781,8 +1781,8 @@ Make a sphere (spherical segment). @param center [in] sphere center coordinates ") BRepPrimAPI_MakeSphere; BRepPrimAPI_MakeSphere(const gp_Pnt & Center, const Standard_Real R, const Standard_Real angle1, const Standard_Real angle2, const Standard_Real angle3); - /****************** BRepPrimAPI_MakeSphere ******************/ - /**** md5 signature: f71f5dd4c2e2ceb29229f80617f7b455 ****/ + /****** BRepPrimAPI_MakeSphere::BRepPrimAPI_MakeSphere ******/ + /****** md5 signature: f71f5dd4c2e2ceb29229f80617f7b455 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeSphere; %feature("autodoc", " Parameters @@ -1800,8 +1800,8 @@ Make a sphere. @param axis [in] coordinate system for the construction of the sp ") BRepPrimAPI_MakeSphere; BRepPrimAPI_MakeSphere(const gp_Ax2 & Axis, const Standard_Real R); - /****************** BRepPrimAPI_MakeSphere ******************/ - /**** md5 signature: b83fc82f55c2def18af66a201b36354c ****/ + /****** BRepPrimAPI_MakeSphere::BRepPrimAPI_MakeSphere ******/ + /****** md5 signature: b83fc82f55c2def18af66a201b36354c ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeSphere; %feature("autodoc", " Parameters @@ -1820,8 +1820,8 @@ Make a sphere (spherical wedge). @param axis [in] coordinate system for the cons ") BRepPrimAPI_MakeSphere; BRepPrimAPI_MakeSphere(const gp_Ax2 & Axis, const Standard_Real R, const Standard_Real angle); - /****************** BRepPrimAPI_MakeSphere ******************/ - /**** md5 signature: 74ca9fb560c1485db00b034420161dab ****/ + /****** BRepPrimAPI_MakeSphere::BRepPrimAPI_MakeSphere ******/ + /****** md5 signature: 74ca9fb560c1485db00b034420161dab ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeSphere; %feature("autodoc", " Parameters @@ -1841,8 +1841,8 @@ Make a sphere (spherical segment). @param axis [in] coordinate system for the co ") BRepPrimAPI_MakeSphere; BRepPrimAPI_MakeSphere(const gp_Ax2 & Axis, const Standard_Real R, const Standard_Real angle1, const Standard_Real angle2); - /****************** BRepPrimAPI_MakeSphere ******************/ - /**** md5 signature: f2507ce44805a423ee55a5581c3d41af ****/ + /****** BRepPrimAPI_MakeSphere::BRepPrimAPI_MakeSphere ******/ + /****** md5 signature: f2507ce44805a423ee55a5581c3d41af ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeSphere; %feature("autodoc", " Parameters @@ -1863,8 +1863,8 @@ Make a sphere of radius r. for all algorithms the resulting shape is composed of ") BRepPrimAPI_MakeSphere; BRepPrimAPI_MakeSphere(const gp_Ax2 & Axis, const Standard_Real R, const Standard_Real angle1, const Standard_Real angle2, const Standard_Real angle3); - /****************** OneAxis ******************/ - /**** md5 signature: 28226bf151c094464d166ab28823351a ****/ + /****** BRepPrimAPI_MakeSphere::OneAxis ******/ + /****** md5 signature: 28226bf151c094464d166ab28823351a ******/ %feature("compactdefaultargs") OneAxis; %feature("autodoc", "Return ------- @@ -1876,8 +1876,8 @@ Returns the algorithm. ") OneAxis; Standard_Address OneAxis(); - /****************** Sphere ******************/ - /**** md5 signature: 6fc1b49d1b0dedbf3c2ae88e9d6c37ca ****/ + /****** BRepPrimAPI_MakeSphere::Sphere ******/ + /****** md5 signature: 6fc1b49d1b0dedbf3c2ae88e9d6c37ca ******/ %feature("compactdefaultargs") Sphere; %feature("autodoc", "Return ------- @@ -1903,8 +1903,8 @@ Returns the algorithm. ******************************/ class BRepPrimAPI_MakeTorus : public BRepPrimAPI_MakeOneAxis { public: - /****************** BRepPrimAPI_MakeTorus ******************/ - /**** md5 signature: 79ec4e5628c83853d33b887d898e0976 ****/ + /****** BRepPrimAPI_MakeTorus::BRepPrimAPI_MakeTorus ******/ + /****** md5 signature: 79ec4e5628c83853d33b887d898e0976 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeTorus; %feature("autodoc", " Parameters @@ -1922,8 +1922,8 @@ Make a torus. @param r1 [in] distance from the center of the pipe to the center ") BRepPrimAPI_MakeTorus; BRepPrimAPI_MakeTorus(const Standard_Real R1, const Standard_Real R2); - /****************** BRepPrimAPI_MakeTorus ******************/ - /**** md5 signature: 630b73fe6c123f9d36bd32f1beaf5fd4 ****/ + /****** BRepPrimAPI_MakeTorus::BRepPrimAPI_MakeTorus ******/ + /****** md5 signature: 630b73fe6c123f9d36bd32f1beaf5fd4 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeTorus; %feature("autodoc", " Parameters @@ -1942,8 +1942,8 @@ Make a section of a torus. @param r1 [in] distance from the center of the pipe t ") BRepPrimAPI_MakeTorus; BRepPrimAPI_MakeTorus(const Standard_Real R1, const Standard_Real R2, const Standard_Real angle); - /****************** BRepPrimAPI_MakeTorus ******************/ - /**** md5 signature: 6588729b6703ecb0b0c43e81462643e0 ****/ + /****** BRepPrimAPI_MakeTorus::BRepPrimAPI_MakeTorus ******/ + /****** md5 signature: 6588729b6703ecb0b0c43e81462643e0 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeTorus; %feature("autodoc", " Parameters @@ -1963,8 +1963,8 @@ Make a torus with angles on the small circle. @param r1 [in] distance from the c ") BRepPrimAPI_MakeTorus; BRepPrimAPI_MakeTorus(const Standard_Real R1, const Standard_Real R2, const Standard_Real angle1, const Standard_Real angle2); - /****************** BRepPrimAPI_MakeTorus ******************/ - /**** md5 signature: df71dc26e9d9eb3776b1e633078d7613 ****/ + /****** BRepPrimAPI_MakeTorus::BRepPrimAPI_MakeTorus ******/ + /****** md5 signature: df71dc26e9d9eb3776b1e633078d7613 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeTorus; %feature("autodoc", " Parameters @@ -1985,8 +1985,8 @@ Make a torus with angles on the small circle. @param r1 [in] distance from the c ") BRepPrimAPI_MakeTorus; BRepPrimAPI_MakeTorus(const Standard_Real R1, const Standard_Real R2, const Standard_Real angle1, const Standard_Real angle2, const Standard_Real angle); - /****************** BRepPrimAPI_MakeTorus ******************/ - /**** md5 signature: 9aa5d83cacd2a9ce2d73751141b464a4 ****/ + /****** BRepPrimAPI_MakeTorus::BRepPrimAPI_MakeTorus ******/ + /****** md5 signature: 9aa5d83cacd2a9ce2d73751141b464a4 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeTorus; %feature("autodoc", " Parameters @@ -2005,8 +2005,8 @@ Make a torus. @param axes [in] coordinate system for the construction of the sph ") BRepPrimAPI_MakeTorus; BRepPrimAPI_MakeTorus(const gp_Ax2 & Axes, const Standard_Real R1, const Standard_Real R2); - /****************** BRepPrimAPI_MakeTorus ******************/ - /**** md5 signature: ba7819d589c942773681bb3827926736 ****/ + /****** BRepPrimAPI_MakeTorus::BRepPrimAPI_MakeTorus ******/ + /****** md5 signature: ba7819d589c942773681bb3827926736 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeTorus; %feature("autodoc", " Parameters @@ -2026,8 +2026,8 @@ Make a section of a torus. @param axes [in] coordinate system for the constructi ") BRepPrimAPI_MakeTorus; BRepPrimAPI_MakeTorus(const gp_Ax2 & Axes, const Standard_Real R1, const Standard_Real R2, const Standard_Real angle); - /****************** BRepPrimAPI_MakeTorus ******************/ - /**** md5 signature: 3df636bf3f63fddf3c54f3ce2f5488f5 ****/ + /****** BRepPrimAPI_MakeTorus::BRepPrimAPI_MakeTorus ******/ + /****** md5 signature: 3df636bf3f63fddf3c54f3ce2f5488f5 ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeTorus; %feature("autodoc", " Parameters @@ -2048,8 +2048,8 @@ Make a torus. @param axes [in] coordinate system for the construction of the sph ") BRepPrimAPI_MakeTorus; BRepPrimAPI_MakeTorus(const gp_Ax2 & Axes, const Standard_Real R1, const Standard_Real R2, const Standard_Real angle1, const Standard_Real angle2); - /****************** BRepPrimAPI_MakeTorus ******************/ - /**** md5 signature: 3625d7764b3fedc33ba70ab37375ea8b ****/ + /****** BRepPrimAPI_MakeTorus::BRepPrimAPI_MakeTorus ******/ + /****** md5 signature: 3625d7764b3fedc33ba70ab37375ea8b ******/ %feature("compactdefaultargs") BRepPrimAPI_MakeTorus; %feature("autodoc", " Parameters @@ -2071,8 +2071,8 @@ Make a section of a torus of radii r1 r2. for all algorithms the resulting shape ") BRepPrimAPI_MakeTorus; BRepPrimAPI_MakeTorus(const gp_Ax2 & Axes, const Standard_Real R1, const Standard_Real R2, const Standard_Real angle1, const Standard_Real angle2, const Standard_Real angle); - /****************** OneAxis ******************/ - /**** md5 signature: 28226bf151c094464d166ab28823351a ****/ + /****** BRepPrimAPI_MakeTorus::OneAxis ******/ + /****** md5 signature: 28226bf151c094464d166ab28823351a ******/ %feature("compactdefaultargs") OneAxis; %feature("autodoc", "Return ------- @@ -2084,8 +2084,8 @@ Returns the algorithm. ") OneAxis; Standard_Address OneAxis(); - /****************** Torus ******************/ - /**** md5 signature: fc0c24da1353d28a38727c5a9e0d1470 ****/ + /****** BRepPrimAPI_MakeTorus::Torus ******/ + /****** md5 signature: fc0c24da1353d28a38727c5a9e0d1470 ******/ %feature("compactdefaultargs") Torus; %feature("autodoc", "Return ------- diff --git a/src/SWIG_files/wrapper/BRepProj.i b/src/SWIG_files/wrapper/BRepProj.i index 3d4bee92c..c3b4e764b 100644 --- a/src/SWIG_files/wrapper/BRepProj.i +++ b/src/SWIG_files/wrapper/BRepProj.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPPROJDOCSTRING "BRepProj module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepproj.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepproj.html" %enddef %module (package="OCC.Core", docstring=BREPPROJDOCSTRING) BRepProj @@ -85,8 +85,8 @@ from OCC.Core.Exception import * ****************************/ class BRepProj_Projection { public: - /****************** BRepProj_Projection ******************/ - /**** md5 signature: 05a528b4fa808ed3e5606951be3f247c ****/ + /****** BRepProj_Projection::BRepProj_Projection ******/ + /****** md5 signature: 05a528b4fa808ed3e5606951be3f247c ******/ %feature("compactdefaultargs") BRepProj_Projection; %feature("autodoc", " Parameters @@ -105,8 +105,8 @@ Makes a cylindrical projection of wire om shape. ") BRepProj_Projection; BRepProj_Projection(const TopoDS_Shape & Wire, const TopoDS_Shape & Shape, const gp_Dir & D); - /****************** BRepProj_Projection ******************/ - /**** md5 signature: 66694c5d0609b9bd950faaceb10748b1 ****/ + /****** BRepProj_Projection::BRepProj_Projection ******/ + /****** md5 signature: 66694c5d0609b9bd950faaceb10748b1 ******/ %feature("compactdefaultargs") BRepProj_Projection; %feature("autodoc", " Parameters @@ -125,8 +125,8 @@ Makes a conical projection of wire om shape. ") BRepProj_Projection; BRepProj_Projection(const TopoDS_Shape & Wire, const TopoDS_Shape & Shape, const gp_Pnt & P); - /****************** Current ******************/ - /**** md5 signature: f1373d555d44b8af5f09b63aa71dbac4 ****/ + /****** BRepProj_Projection::Current ******/ + /****** md5 signature: f1373d555d44b8af5f09b63aa71dbac4 ******/ %feature("compactdefaultargs") Current; %feature("autodoc", "Return ------- @@ -138,8 +138,8 @@ Returns the current result wire. ") Current; TopoDS_Wire Current(); - /****************** Init ******************/ - /**** md5 signature: 0de93ef32c53d091768788dca0e281fd ****/ + /****** BRepProj_Projection::Init ******/ + /****** md5 signature: 0de93ef32c53d091768788dca0e281fd ******/ %feature("compactdefaultargs") Init; %feature("autodoc", "Return ------- @@ -151,8 +151,8 @@ Resets the iterator by resulting wires. ") Init; void Init(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepProj_Projection::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -164,8 +164,8 @@ Returns false if the section failed. ") IsDone; Standard_Boolean IsDone(); - /****************** More ******************/ - /**** md5 signature: 6f6e915c9a3dca758c059d9e8af02dff ****/ + /****** BRepProj_Projection::More ******/ + /****** md5 signature: 6f6e915c9a3dca758c059d9e8af02dff ******/ %feature("compactdefaultargs") More; %feature("autodoc", "Return ------- @@ -177,8 +177,8 @@ Returns true if there is a current result wire. ") More; Standard_Boolean More(); - /****************** Next ******************/ - /**** md5 signature: f35c0df5f1d7c877986db18081404532 ****/ + /****** BRepProj_Projection::Next ******/ + /****** md5 signature: f35c0df5f1d7c877986db18081404532 ******/ %feature("compactdefaultargs") Next; %feature("autodoc", "Return ------- @@ -190,8 +190,8 @@ Move to the next result wire. ") Next; void Next(); - /****************** Shape ******************/ - /**** md5 signature: 1b3c03b494fbe92ca2dc8e2599c5e3a1 ****/ + /****** BRepProj_Projection::Shape ******/ + /****** md5 signature: 1b3c03b494fbe92ca2dc8e2599c5e3a1 ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- diff --git a/src/SWIG_files/wrapper/BRepSweep.i b/src/SWIG_files/wrapper/BRepSweep.i index fc65c4500..1b3f09629 100644 --- a/src/SWIG_files/wrapper/BRepSweep.i +++ b/src/SWIG_files/wrapper/BRepSweep.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPSWEEPDOCSTRING "BRepSweep module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_brepsweep.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_brepsweep.html" %enddef %module (package="OCC.Core", docstring=BREPSWEEPDOCSTRING) BRepSweep @@ -97,8 +97,8 @@ from OCC.Core.Exception import * **************************/ class BRepSweep_Builder { public: - /****************** BRepSweep_Builder ******************/ - /**** md5 signature: 274709e738c66b6c8297287d2dbdd267 ****/ + /****** BRepSweep_Builder::BRepSweep_Builder ******/ + /****** md5 signature: 274709e738c66b6c8297287d2dbdd267 ******/ %feature("compactdefaultargs") BRepSweep_Builder; %feature("autodoc", " Parameters @@ -115,8 +115,8 @@ Creates a builder. ") BRepSweep_Builder; BRepSweep_Builder(const BRep_Builder & aBuilder); - /****************** Add ******************/ - /**** md5 signature: 853b947a69699a3aefa79822e6d7886e ****/ + /****** BRepSweep_Builder::Add ******/ + /****** md5 signature: 853b947a69699a3aefa79822e6d7886e ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -135,8 +135,8 @@ Adds the shape 1 in the shape 2, set to orientation. ") Add; void Add(TopoDS_Shape & aShape1, const TopoDS_Shape & aShape2, const TopAbs_Orientation Orient); - /****************** Add ******************/ - /**** md5 signature: 5a02d96d121a4985d5e77bbf93dac451 ****/ + /****** BRepSweep_Builder::Add ******/ + /****** md5 signature: 5a02d96d121a4985d5e77bbf93dac451 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -154,8 +154,8 @@ Adds the shape 1 in the shape 2. ") Add; void Add(TopoDS_Shape & aShape1, const TopoDS_Shape & aShape2); - /****************** Builder ******************/ - /**** md5 signature: 0e400544facfe2a99c354fd61331d22b ****/ + /****** BRepSweep_Builder::Builder ******/ + /****** md5 signature: 0e400544facfe2a99c354fd61331d22b ******/ %feature("compactdefaultargs") Builder; %feature("autodoc", "Return ------- @@ -167,8 +167,8 @@ No available documentation. ") Builder; const BRep_Builder & Builder(); - /****************** MakeCompSolid ******************/ - /**** md5 signature: 98d01f0958a66b4cec51d5601f9ad814 ****/ + /****** BRepSweep_Builder::MakeCompSolid ******/ + /****** md5 signature: 98d01f0958a66b4cec51d5601f9ad814 ******/ %feature("compactdefaultargs") MakeCompSolid; %feature("autodoc", " Parameters @@ -185,8 +185,8 @@ Returns an empty compsolid. ") MakeCompSolid; void MakeCompSolid(TopoDS_Shape & aCompSolid); - /****************** MakeCompound ******************/ - /**** md5 signature: d61591b80ec926066aa587d807cda4cd ****/ + /****** BRepSweep_Builder::MakeCompound ******/ + /****** md5 signature: d61591b80ec926066aa587d807cda4cd ******/ %feature("compactdefaultargs") MakeCompound; %feature("autodoc", " Parameters @@ -203,8 +203,8 @@ Returns an empty compound. ") MakeCompound; void MakeCompound(TopoDS_Shape & aCompound); - /****************** MakeShell ******************/ - /**** md5 signature: 3d594e272d58e4c51b7cb39a8ba10649 ****/ + /****** BRepSweep_Builder::MakeShell ******/ + /****** md5 signature: 3d594e272d58e4c51b7cb39a8ba10649 ******/ %feature("compactdefaultargs") MakeShell; %feature("autodoc", " Parameters @@ -221,8 +221,8 @@ Returns an empty shell. ") MakeShell; void MakeShell(TopoDS_Shape & aShell); - /****************** MakeSolid ******************/ - /**** md5 signature: ccc6f113ddb50253efebfed8a93e3ed1 ****/ + /****** BRepSweep_Builder::MakeSolid ******/ + /****** md5 signature: ccc6f113ddb50253efebfed8a93e3ed1 ******/ %feature("compactdefaultargs") MakeSolid; %feature("autodoc", " Parameters @@ -239,8 +239,8 @@ Returns an empty solid. ") MakeSolid; void MakeSolid(TopoDS_Shape & aSolid); - /****************** MakeWire ******************/ - /**** md5 signature: 6da7d12ff761095e7875653cbdc34e6e ****/ + /****** BRepSweep_Builder::MakeWire ******/ + /****** md5 signature: 6da7d12ff761095e7875653cbdc34e6e ******/ %feature("compactdefaultargs") MakeWire; %feature("autodoc", " Parameters @@ -271,8 +271,8 @@ Returns an empty wire. ***************************/ class BRepSweep_Iterator { public: - /****************** BRepSweep_Iterator ******************/ - /**** md5 signature: cb18c60510a25a64f1b7dbcb040314a3 ****/ + /****** BRepSweep_Iterator::BRepSweep_Iterator ******/ + /****** md5 signature: cb18c60510a25a64f1b7dbcb040314a3 ******/ %feature("compactdefaultargs") BRepSweep_Iterator; %feature("autodoc", "Return ------- @@ -284,8 +284,8 @@ No available documentation. ") BRepSweep_Iterator; BRepSweep_Iterator(); - /****************** Init ******************/ - /**** md5 signature: 2071f1c35cd5b4cf68ec06a4b4f693d0 ****/ + /****** BRepSweep_Iterator::Init ******/ + /****** md5 signature: 2071f1c35cd5b4cf68ec06a4b4f693d0 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -302,8 +302,8 @@ Reset the iterator on sub-shapes of . ") Init; void Init(const TopoDS_Shape & aShape); - /****************** More ******************/ - /**** md5 signature: 6f6e915c9a3dca758c059d9e8af02dff ****/ + /****** BRepSweep_Iterator::More ******/ + /****** md5 signature: 6f6e915c9a3dca758c059d9e8af02dff ******/ %feature("compactdefaultargs") More; %feature("autodoc", "Return ------- @@ -315,8 +315,8 @@ Returns true if there is a current sub-shape. ") More; Standard_Boolean More(); - /****************** Next ******************/ - /**** md5 signature: f35c0df5f1d7c877986db18081404532 ****/ + /****** BRepSweep_Iterator::Next ******/ + /****** md5 signature: f35c0df5f1d7c877986db18081404532 ******/ %feature("compactdefaultargs") Next; %feature("autodoc", "Return ------- @@ -328,8 +328,8 @@ Moves to the next sub-shape. ") Next; void Next(); - /****************** Orientation ******************/ - /**** md5 signature: 328242fe19b1f80489d8169681ebc029 ****/ + /****** BRepSweep_Iterator::Orientation ******/ + /****** md5 signature: 328242fe19b1f80489d8169681ebc029 ******/ %feature("compactdefaultargs") Orientation; %feature("autodoc", "Return ------- @@ -341,8 +341,8 @@ Returns the orientation of the current sub-shape. ") Orientation; TopAbs_Orientation Orientation(); - /****************** Value ******************/ - /**** md5 signature: 9e28ce63f808ff9cca4234cb4dd1cbd0 ****/ + /****** BRepSweep_Iterator::Value ******/ + /****** md5 signature: 9e28ce63f808ff9cca4234cb4dd1cbd0 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -369,8 +369,8 @@ Returns the current sub-shape. %nodefaultctor BRepSweep_NumLinearRegularSweep; class BRepSweep_NumLinearRegularSweep { public: - /****************** Closed ******************/ - /**** md5 signature: 6964da666f9b5a80bedb32cfb1fdc0ba ****/ + /****** BRepSweep_NumLinearRegularSweep::Closed ******/ + /****** md5 signature: 6964da666f9b5a80bedb32cfb1fdc0ba ******/ %feature("compactdefaultargs") Closed; %feature("autodoc", "Return ------- @@ -382,8 +382,8 @@ No available documentation. ") Closed; Standard_Boolean Closed(); - /****************** DirectSolid ******************/ - /**** md5 signature: 467ad4e54890d65522aecc070a205901 ****/ + /****** BRepSweep_NumLinearRegularSweep::DirectSolid ******/ + /****** md5 signature: 467ad4e54890d65522aecc070a205901 ******/ %feature("compactdefaultargs") DirectSolid; %feature("autodoc", " Parameters @@ -401,8 +401,8 @@ Returns the orientation of the shell in the solid generated by the face agens wi ") DirectSolid; virtual TopAbs_Orientation DirectSolid(const TopoDS_Shape & aGenS, const Sweep_NumShape & aDirS); - /****************** FirstShape ******************/ - /**** md5 signature: 99e62ccf294eacd7ee50fd33dc8f595f ****/ + /****** BRepSweep_NumLinearRegularSweep::FirstShape ******/ + /****** md5 signature: 99e62ccf294eacd7ee50fd33dc8f595f ******/ %feature("compactdefaultargs") FirstShape; %feature("autodoc", "Return ------- @@ -414,8 +414,8 @@ Returns the resulting shape indexed by the first vertex of mydirwire and mygensh ") FirstShape; TopoDS_Shape FirstShape(); - /****************** FirstShape ******************/ - /**** md5 signature: f884f390411b4843959477d7e09bc663 ****/ + /****** BRepSweep_NumLinearRegularSweep::FirstShape ******/ + /****** md5 signature: f884f390411b4843959477d7e09bc663 ******/ %feature("compactdefaultargs") FirstShape; %feature("autodoc", " Parameters @@ -432,8 +432,8 @@ Returns the resulting shape indexed by the first vertex of mydirwire and agens. ") FirstShape; TopoDS_Shape FirstShape(const TopoDS_Shape & aGenS); - /****************** GDDShapeIsToAdd ******************/ - /**** md5 signature: fe88d75093634a6a9b82af7ecb844883 ****/ + /****** BRepSweep_NumLinearRegularSweep::GDDShapeIsToAdd ******/ + /****** md5 signature: fe88d75093634a6a9b82af7ecb844883 ******/ %feature("compactdefaultargs") GDDShapeIsToAdd; %feature("autodoc", " Parameters @@ -454,8 +454,8 @@ Returns true if anewsubshape (addressed by agens and asubdirs) must be added in ") GDDShapeIsToAdd; virtual Standard_Boolean GDDShapeIsToAdd(const TopoDS_Shape & aNewShape, const TopoDS_Shape & aNewSubShape, const TopoDS_Shape & aGenS, const Sweep_NumShape & aDirS, const Sweep_NumShape & aSubDirS); - /****************** GGDShapeIsToAdd ******************/ - /**** md5 signature: 9fa440fddebdfb679e9340eb82dffc8a ****/ + /****** BRepSweep_NumLinearRegularSweep::GGDShapeIsToAdd ******/ + /****** md5 signature: 9fa440fddebdfb679e9340eb82dffc8a ******/ %feature("compactdefaultargs") GGDShapeIsToAdd; %feature("autodoc", " Parameters @@ -476,8 +476,8 @@ Returns true if anewsubshape (addressed by asubgens and adirs) must be added in ") GGDShapeIsToAdd; virtual Standard_Boolean GGDShapeIsToAdd(const TopoDS_Shape & aNewShape, const TopoDS_Shape & aNewSubShape, const TopoDS_Shape & aGenS, const TopoDS_Shape & aSubGenS, const Sweep_NumShape & aDirS); - /****************** GenIsUsed ******************/ - /**** md5 signature: 2eee5f7a9e572952f4de3dcfe523608a ****/ + /****** BRepSweep_NumLinearRegularSweep::GenIsUsed ******/ + /****** md5 signature: 2eee5f7a9e572952f4de3dcfe523608a ******/ %feature("compactdefaultargs") GenIsUsed; %feature("autodoc", " Parameters @@ -494,8 +494,8 @@ Returns true if the shape, generated from thes is used in result shape. ") GenIsUsed; Standard_Boolean GenIsUsed(const TopoDS_Shape & theS); - /****************** HasShape ******************/ - /**** md5 signature: 20f9af4b351b229b5a6f40f7e751b053 ****/ + /****** BRepSweep_NumLinearRegularSweep::HasShape ******/ + /****** md5 signature: 20f9af4b351b229b5a6f40f7e751b053 ******/ %feature("compactdefaultargs") HasShape; %feature("autodoc", " Parameters @@ -513,8 +513,8 @@ Returns true if adirs and agens addresses a resulting shape. in some specific ca ") HasShape; virtual Standard_Boolean HasShape(const TopoDS_Shape & aGenS, const Sweep_NumShape & aDirS); - /****************** IsInvariant ******************/ - /**** md5 signature: 9d05aaff715a168d29ddf032477dee17 ****/ + /****** BRepSweep_NumLinearRegularSweep::IsInvariant ******/ + /****** md5 signature: 9d05aaff715a168d29ddf032477dee17 ******/ %feature("compactdefaultargs") IsInvariant; %feature("autodoc", " Parameters @@ -531,8 +531,8 @@ Returns true if agens cannot be transformed. ") IsInvariant; virtual Standard_Boolean IsInvariant(const TopoDS_Shape & aGenS); - /****************** IsUsed ******************/ - /**** md5 signature: 6c55c7bbee1cca89bd9680a50ccdcec0 ****/ + /****** BRepSweep_NumLinearRegularSweep::IsUsed ******/ + /****** md5 signature: 6c55c7bbee1cca89bd9680a50ccdcec0 ******/ %feature("compactdefaultargs") IsUsed; %feature("autodoc", " Parameters @@ -549,8 +549,8 @@ Returns true if the initial shape agens is used in result shape. ") IsUsed; Standard_Boolean IsUsed(const TopoDS_Shape & aGenS); - /****************** LastShape ******************/ - /**** md5 signature: 1988f5b4cf413dea813498473161b41a ****/ + /****** BRepSweep_NumLinearRegularSweep::LastShape ******/ + /****** md5 signature: 1988f5b4cf413dea813498473161b41a ******/ %feature("compactdefaultargs") LastShape; %feature("autodoc", "Return ------- @@ -562,8 +562,8 @@ Returns the resulting shape indexed by the last vertex of mydirwire and mygensha ") LastShape; TopoDS_Shape LastShape(); - /****************** LastShape ******************/ - /**** md5 signature: bb21db1014474497d8ea1beda698051e ****/ + /****** BRepSweep_NumLinearRegularSweep::LastShape ******/ + /****** md5 signature: bb21db1014474497d8ea1beda698051e ******/ %feature("compactdefaultargs") LastShape; %feature("autodoc", " Parameters @@ -580,8 +580,8 @@ Returns the resulting shape indexed by the last vertex of mydirwire and agens. ") LastShape; TopoDS_Shape LastShape(const TopoDS_Shape & aGenS); - /****************** MakeEmptyDirectingEdge ******************/ - /**** md5 signature: 2aab75cc53737cfb5bfdef4c69ec0563 ****/ + /****** BRepSweep_NumLinearRegularSweep::MakeEmptyDirectingEdge ******/ + /****** md5 signature: 2aab75cc53737cfb5bfdef4c69ec0563 ******/ %feature("compactdefaultargs") MakeEmptyDirectingEdge; %feature("autodoc", " Parameters @@ -599,8 +599,8 @@ Builds the edge addressed by [agenv,adire], with its geometric part, but without ") MakeEmptyDirectingEdge; virtual TopoDS_Shape MakeEmptyDirectingEdge(const TopoDS_Shape & aGenV, const Sweep_NumShape & aDirE); - /****************** MakeEmptyFace ******************/ - /**** md5 signature: 31039ada5c38b16e74d987b5f6927423 ****/ + /****** BRepSweep_NumLinearRegularSweep::MakeEmptyFace ******/ + /****** md5 signature: 31039ada5c38b16e74d987b5f6927423 ******/ %feature("compactdefaultargs") MakeEmptyFace; %feature("autodoc", " Parameters @@ -618,8 +618,8 @@ Builds the face addressed by [agens,adirs], with its geometric part, but without ") MakeEmptyFace; virtual TopoDS_Shape MakeEmptyFace(const TopoDS_Shape & aGenS, const Sweep_NumShape & aDirS); - /****************** MakeEmptyGeneratingEdge ******************/ - /**** md5 signature: 23e17669af9dbd7ec9fe69968d38e689 ****/ + /****** BRepSweep_NumLinearRegularSweep::MakeEmptyGeneratingEdge ******/ + /****** md5 signature: 23e17669af9dbd7ec9fe69968d38e689 ******/ %feature("compactdefaultargs") MakeEmptyGeneratingEdge; %feature("autodoc", " Parameters @@ -637,8 +637,8 @@ Builds the edge addressed by [agene,adirv], with its geometric part, but without ") MakeEmptyGeneratingEdge; virtual TopoDS_Shape MakeEmptyGeneratingEdge(const TopoDS_Shape & aGenE, const Sweep_NumShape & aDirV); - /****************** MakeEmptyVertex ******************/ - /**** md5 signature: 65fb4c43c0fb4fc058233497f0455f67 ****/ + /****** BRepSweep_NumLinearRegularSweep::MakeEmptyVertex ******/ + /****** md5 signature: 65fb4c43c0fb4fc058233497f0455f67 ******/ %feature("compactdefaultargs") MakeEmptyVertex; %feature("autodoc", " Parameters @@ -656,8 +656,8 @@ Builds the vertex addressed by [agenv,adirv], with its geometric part, but witho ") MakeEmptyVertex; virtual TopoDS_Shape MakeEmptyVertex(const TopoDS_Shape & aGenV, const Sweep_NumShape & aDirV); - /****************** SeparatedWires ******************/ - /**** md5 signature: 59729d23b465e6739a88651dce236e8e ****/ + /****** BRepSweep_NumLinearRegularSweep::SeparatedWires ******/ + /****** md5 signature: 59729d23b465e6739a88651dce236e8e ******/ %feature("compactdefaultargs") SeparatedWires; %feature("autodoc", " Parameters @@ -678,8 +678,8 @@ In some particular cases the topology of a generated face must be composed of in ") SeparatedWires; virtual Standard_Boolean SeparatedWires(const TopoDS_Shape & aNewShape, const TopoDS_Shape & aNewSubShape, const TopoDS_Shape & aGenS, const TopoDS_Shape & aSubGenS, const Sweep_NumShape & aDirS); - /****************** SetContinuity ******************/ - /**** md5 signature: 78a1073d0172ad1dff1fc828f4c35e5b ****/ + /****** BRepSweep_NumLinearRegularSweep::SetContinuity ******/ + /****** md5 signature: 78a1073d0172ad1dff1fc828f4c35e5b ******/ %feature("compactdefaultargs") SetContinuity; %feature("autodoc", " Parameters @@ -697,8 +697,8 @@ Called to propagate the continuity of every vertex between two edges of the gene ") SetContinuity; virtual void SetContinuity(const TopoDS_Shape & aGenS, const Sweep_NumShape & aDirS); - /****************** SetDirectingPCurve ******************/ - /**** md5 signature: b0f97a562d10fef4a186a331be6109f4 ****/ + /****** BRepSweep_NumLinearRegularSweep::SetDirectingPCurve ******/ + /****** md5 signature: b0f97a562d10fef4a186a331be6109f4 ******/ %feature("compactdefaultargs") SetDirectingPCurve; %feature("autodoc", " Parameters @@ -720,8 +720,8 @@ Sets the pcurve for a new edge on a new face. the new edge and the new face were ") SetDirectingPCurve; virtual void SetDirectingPCurve(const TopoDS_Shape & aNewFace, TopoDS_Shape & aNewEdge, const TopoDS_Shape & aGenE, const TopoDS_Shape & aGenV, const Sweep_NumShape & aDirE, const TopAbs_Orientation orien); - /****************** SetDirectingParameter ******************/ - /**** md5 signature: 08b0629c42aaa96e43af7f24cbb9257b ****/ + /****** BRepSweep_NumLinearRegularSweep::SetDirectingParameter ******/ + /****** md5 signature: 08b0629c42aaa96e43af7f24cbb9257b ******/ %feature("compactdefaultargs") SetDirectingParameter; %feature("autodoc", " Parameters @@ -742,8 +742,8 @@ Sets the parameter of the new vertex on the new edge. the new edge and new verte ") SetDirectingParameter; virtual void SetDirectingParameter(const TopoDS_Shape & aNewEdge, TopoDS_Shape & aNewVertex, const TopoDS_Shape & aGenV, const Sweep_NumShape & aDirE, const Sweep_NumShape & aDirV); - /****************** SetGeneratingPCurve ******************/ - /**** md5 signature: c6bfd0a789cdcef392f507b01f9589ba ****/ + /****** BRepSweep_NumLinearRegularSweep::SetGeneratingPCurve ******/ + /****** md5 signature: c6bfd0a789cdcef392f507b01f9589ba ******/ %feature("compactdefaultargs") SetGeneratingPCurve; %feature("autodoc", " Parameters @@ -765,8 +765,8 @@ Sets the pcurve for a new edge on a new face. the new edge and the new face were ") SetGeneratingPCurve; virtual void SetGeneratingPCurve(const TopoDS_Shape & aNewFace, TopoDS_Shape & aNewEdge, const TopoDS_Shape & aGenE, const Sweep_NumShape & aDirE, const Sweep_NumShape & aDirV, const TopAbs_Orientation orien); - /****************** SetGeneratingParameter ******************/ - /**** md5 signature: 1ae98cd619b9a59c964fca35b3740112 ****/ + /****** BRepSweep_NumLinearRegularSweep::SetGeneratingParameter ******/ + /****** md5 signature: 1ae98cd619b9a59c964fca35b3740112 ******/ %feature("compactdefaultargs") SetGeneratingParameter; %feature("autodoc", " Parameters @@ -787,8 +787,8 @@ Sets the parameter of the new vertex on the new edge. the new edge and new verte ") SetGeneratingParameter; virtual void SetGeneratingParameter(const TopoDS_Shape & aNewEdge, TopoDS_Shape & aNewVertex, const TopoDS_Shape & aGenE, const TopoDS_Shape & aGenV, const Sweep_NumShape & aDirV); - /****************** SetPCurve ******************/ - /**** md5 signature: c0047c2fbc5572ce3e8faa535000b53b ****/ + /****** BRepSweep_NumLinearRegularSweep::SetPCurve ******/ + /****** md5 signature: c0047c2fbc5572ce3e8faa535000b53b ******/ %feature("compactdefaultargs") SetPCurve; %feature("autodoc", " Parameters @@ -810,8 +810,8 @@ Sets the pcurve for a new edge on a new face. the new edge and the new face were ") SetPCurve; virtual void SetPCurve(const TopoDS_Shape & aNewFace, TopoDS_Shape & aNewEdge, const TopoDS_Shape & aGenF, const TopoDS_Shape & aGenE, const Sweep_NumShape & aDirV, const TopAbs_Orientation orien); - /****************** SetParameters ******************/ - /**** md5 signature: 0f6f4a8a442b075a2da09819fc70d120 ****/ + /****** BRepSweep_NumLinearRegularSweep::SetParameters ******/ + /****** md5 signature: 0f6f4a8a442b075a2da09819fc70d120 ******/ %feature("compactdefaultargs") SetParameters; %feature("autodoc", " Parameters @@ -832,8 +832,8 @@ Sets the parameters of the new vertex on the new face. the new face and new vert ") SetParameters; virtual void SetParameters(const TopoDS_Shape & aNewFace, TopoDS_Shape & aNewVertex, const TopoDS_Shape & aGenF, const TopoDS_Shape & aGenV, const Sweep_NumShape & aDirV); - /****************** Shape ******************/ - /**** md5 signature: 14b09f26495a9f89d03f867b59166bc4 ****/ + /****** BRepSweep_NumLinearRegularSweep::Shape ******/ + /****** md5 signature: 14b09f26495a9f89d03f867b59166bc4 ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", " Parameters @@ -851,8 +851,8 @@ Returns the resulting shape indexed by adirs and agens. ") Shape; TopoDS_Shape Shape(const TopoDS_Shape & aGenS, const Sweep_NumShape & aDirS); - /****************** Shape ******************/ - /**** md5 signature: ac4eba69efed3f2b7a40ac4e765b2a2f ****/ + /****** BRepSweep_NumLinearRegularSweep::Shape ******/ + /****** md5 signature: ac4eba69efed3f2b7a40ac4e765b2a2f ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", " Parameters @@ -869,8 +869,8 @@ Returns the resulting shape indexed by mydirwire and agens. ") Shape; TopoDS_Shape Shape(const TopoDS_Shape & aGenS); - /****************** Shape ******************/ - /**** md5 signature: 3bc559831c5959191e55bf80cdb0f8f7 ****/ + /****** BRepSweep_NumLinearRegularSweep::Shape ******/ + /****** md5 signature: 3bc559831c5959191e55bf80cdb0f8f7 ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -882,8 +882,8 @@ Returns the resulting shape indexed by mydirwire and mygenshape. ") Shape; TopoDS_Shape Shape(); - /****************** SplitShell ******************/ - /**** md5 signature: 39766b015f1b465ba3b9e5a1bd44c6b6 ****/ + /****** BRepSweep_NumLinearRegularSweep::SplitShell ******/ + /****** md5 signature: 39766b015f1b465ba3b9e5a1bd44c6b6 ******/ %feature("compactdefaultargs") SplitShell; %feature("autodoc", " Parameters @@ -914,8 +914,8 @@ In some particular cases the topology of a generated shell must be composed of i ************************/ class BRepSweep_Prism { public: - /****************** BRepSweep_Prism ******************/ - /**** md5 signature: 8a50c07b3584cdb6ef78115e1d21e740 ****/ + /****** BRepSweep_Prism::BRepSweep_Prism ******/ + /****** md5 signature: 8a50c07b3584cdb6ef78115e1d21e740 ******/ %feature("compactdefaultargs") BRepSweep_Prism; %feature("autodoc", " Parameters @@ -935,8 +935,8 @@ Builds the prism of base s and vector v. if c is true, s is copied. if canonize ") BRepSweep_Prism; BRepSweep_Prism(const TopoDS_Shape & S, const gp_Vec & V, const Standard_Boolean Copy = Standard_False, const Standard_Boolean Canonize = Standard_True); - /****************** BRepSweep_Prism ******************/ - /**** md5 signature: 38c094323dc54f925ddebf265609afdc ****/ + /****** BRepSweep_Prism::BRepSweep_Prism ******/ + /****** md5 signature: 38c094323dc54f925ddebf265609afdc ******/ %feature("compactdefaultargs") BRepSweep_Prism; %feature("autodoc", " Parameters @@ -957,8 +957,8 @@ Builds a semi-infinite or an infinite prism of base s. if copy is true s is copi ") BRepSweep_Prism; BRepSweep_Prism(const TopoDS_Shape & S, const gp_Dir & D, const Standard_Boolean Inf = Standard_True, const Standard_Boolean Copy = Standard_False, const Standard_Boolean Canonize = Standard_True); - /****************** FirstShape ******************/ - /**** md5 signature: 99e62ccf294eacd7ee50fd33dc8f595f ****/ + /****** BRepSweep_Prism::FirstShape ******/ + /****** md5 signature: 99e62ccf294eacd7ee50fd33dc8f595f ******/ %feature("compactdefaultargs") FirstShape; %feature("autodoc", "Return ------- @@ -970,8 +970,8 @@ Returns the topods shape of the bottom of the prism. ") FirstShape; TopoDS_Shape FirstShape(); - /****************** FirstShape ******************/ - /**** md5 signature: f884f390411b4843959477d7e09bc663 ****/ + /****** BRepSweep_Prism::FirstShape ******/ + /****** md5 signature: f884f390411b4843959477d7e09bc663 ******/ %feature("compactdefaultargs") FirstShape; %feature("autodoc", " Parameters @@ -988,8 +988,8 @@ Returns the topods shape of the bottom of the prism. generated with agens (subsh ") FirstShape; TopoDS_Shape FirstShape(const TopoDS_Shape & aGenS); - /****************** GenIsUsed ******************/ - /**** md5 signature: 2eee5f7a9e572952f4de3dcfe523608a ****/ + /****** BRepSweep_Prism::GenIsUsed ******/ + /****** md5 signature: 2eee5f7a9e572952f4de3dcfe523608a ******/ %feature("compactdefaultargs") GenIsUsed; %feature("autodoc", " Parameters @@ -1006,8 +1006,8 @@ Returns true if the shape, generated from thes is used in result shape. ") GenIsUsed; Standard_Boolean GenIsUsed(const TopoDS_Shape & theS); - /****************** IsUsed ******************/ - /**** md5 signature: 6c55c7bbee1cca89bd9680a50ccdcec0 ****/ + /****** BRepSweep_Prism::IsUsed ******/ + /****** md5 signature: 6c55c7bbee1cca89bd9680a50ccdcec0 ******/ %feature("compactdefaultargs") IsUsed; %feature("autodoc", " Parameters @@ -1024,8 +1024,8 @@ Returns true if the agens is used in resulting shape. ") IsUsed; Standard_Boolean IsUsed(const TopoDS_Shape & aGenS); - /****************** LastShape ******************/ - /**** md5 signature: 1988f5b4cf413dea813498473161b41a ****/ + /****** BRepSweep_Prism::LastShape ******/ + /****** md5 signature: 1988f5b4cf413dea813498473161b41a ******/ %feature("compactdefaultargs") LastShape; %feature("autodoc", "Return ------- @@ -1037,8 +1037,8 @@ Returns the topods shape of the top of the prism. ") LastShape; TopoDS_Shape LastShape(); - /****************** LastShape ******************/ - /**** md5 signature: bb21db1014474497d8ea1beda698051e ****/ + /****** BRepSweep_Prism::LastShape ******/ + /****** md5 signature: bb21db1014474497d8ea1beda698051e ******/ %feature("compactdefaultargs") LastShape; %feature("autodoc", " Parameters @@ -1055,8 +1055,8 @@ Returns the topods shape of the top of the prism. generated with agens (subshape ") LastShape; TopoDS_Shape LastShape(const TopoDS_Shape & aGenS); - /****************** Shape ******************/ - /**** md5 signature: 3bc559831c5959191e55bf80cdb0f8f7 ****/ + /****** BRepSweep_Prism::Shape ******/ + /****** md5 signature: 3bc559831c5959191e55bf80cdb0f8f7 ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -1068,8 +1068,8 @@ Returns the topods shape attached to the prism. ") Shape; TopoDS_Shape Shape(); - /****************** Shape ******************/ - /**** md5 signature: ac4eba69efed3f2b7a40ac4e765b2a2f ****/ + /****** BRepSweep_Prism::Shape ******/ + /****** md5 signature: ac4eba69efed3f2b7a40ac4e765b2a2f ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", " Parameters @@ -1086,8 +1086,8 @@ Returns the topods shape generated with agens (subshape of the generating shape) ") Shape; TopoDS_Shape Shape(const TopoDS_Shape & aGenS); - /****************** Vec ******************/ - /**** md5 signature: d672c8e9c451e569ee9745cc73dfec20 ****/ + /****** BRepSweep_Prism::Vec ******/ + /****** md5 signature: d672c8e9c451e569ee9745cc73dfec20 ******/ %feature("compactdefaultargs") Vec; %feature("autodoc", "Return ------- @@ -1113,8 +1113,8 @@ Returns the vector of the prism, if it is an infinite prism the vec is unitar. ************************/ class BRepSweep_Revol { public: - /****************** BRepSweep_Revol ******************/ - /**** md5 signature: 8d47a9098cea3ba3286b2b0f0097229c ****/ + /****** BRepSweep_Revol::BRepSweep_Revol ******/ + /****** md5 signature: 8d47a9098cea3ba3286b2b0f0097229c ******/ %feature("compactdefaultargs") BRepSweep_Revol; %feature("autodoc", " Parameters @@ -1134,8 +1134,8 @@ Builds the revol of meridian s axis a and angle d. if c is true s is copied. ") BRepSweep_Revol; BRepSweep_Revol(const TopoDS_Shape & S, const gp_Ax1 & A, const Standard_Real D, const Standard_Boolean C = Standard_False); - /****************** BRepSweep_Revol ******************/ - /**** md5 signature: f16f016d2fc715defa64e7bfaa3e89a6 ****/ + /****** BRepSweep_Revol::BRepSweep_Revol ******/ + /****** md5 signature: f16f016d2fc715defa64e7bfaa3e89a6 ******/ %feature("compactdefaultargs") BRepSweep_Revol; %feature("autodoc", " Parameters @@ -1154,8 +1154,8 @@ Builds the revol of meridian s axis a and angle 2*pi. if c is true s is copied. ") BRepSweep_Revol; BRepSweep_Revol(const TopoDS_Shape & S, const gp_Ax1 & A, const Standard_Boolean C = Standard_False); - /****************** Angle ******************/ - /**** md5 signature: dce50192c350c43b54f2e88e94e5372a ****/ + /****** BRepSweep_Revol::Angle ******/ + /****** md5 signature: dce50192c350c43b54f2e88e94e5372a ******/ %feature("compactdefaultargs") Angle; %feature("autodoc", "Return ------- @@ -1167,8 +1167,8 @@ Returns the angle. ") Angle; Standard_Real Angle(); - /****************** Axe ******************/ - /**** md5 signature: ae9358c470f1ac8b11f3860f80ec2cd7 ****/ + /****** BRepSweep_Revol::Axe ******/ + /****** md5 signature: ae9358c470f1ac8b11f3860f80ec2cd7 ******/ %feature("compactdefaultargs") Axe; %feature("autodoc", "Return ------- @@ -1180,8 +1180,8 @@ Returns the axis. ") Axe; gp_Ax1 Axe(); - /****************** FirstShape ******************/ - /**** md5 signature: 99e62ccf294eacd7ee50fd33dc8f595f ****/ + /****** BRepSweep_Revol::FirstShape ******/ + /****** md5 signature: 99e62ccf294eacd7ee50fd33dc8f595f ******/ %feature("compactdefaultargs") FirstShape; %feature("autodoc", "Return ------- @@ -1193,8 +1193,8 @@ Returns the first shape of the revol (coinciding with the generating shape). ") FirstShape; TopoDS_Shape FirstShape(); - /****************** FirstShape ******************/ - /**** md5 signature: f884f390411b4843959477d7e09bc663 ****/ + /****** BRepSweep_Revol::FirstShape ******/ + /****** md5 signature: f884f390411b4843959477d7e09bc663 ******/ %feature("compactdefaultargs") FirstShape; %feature("autodoc", " Parameters @@ -1211,8 +1211,8 @@ Returns the first shape of the revol (coinciding with the generating shape). ") FirstShape; TopoDS_Shape FirstShape(const TopoDS_Shape & aGenS); - /****************** IsUsed ******************/ - /**** md5 signature: 6c55c7bbee1cca89bd9680a50ccdcec0 ****/ + /****** BRepSweep_Revol::IsUsed ******/ + /****** md5 signature: 6c55c7bbee1cca89bd9680a50ccdcec0 ******/ %feature("compactdefaultargs") IsUsed; %feature("autodoc", " Parameters @@ -1229,8 +1229,8 @@ Returns true if the agens is used in resulting shape . ") IsUsed; Standard_Boolean IsUsed(const TopoDS_Shape & aGenS); - /****************** LastShape ******************/ - /**** md5 signature: 1988f5b4cf413dea813498473161b41a ****/ + /****** BRepSweep_Revol::LastShape ******/ + /****** md5 signature: 1988f5b4cf413dea813498473161b41a ******/ %feature("compactdefaultargs") LastShape; %feature("autodoc", "Return ------- @@ -1242,8 +1242,8 @@ Returns the topods shape of the top of the prism. ") LastShape; TopoDS_Shape LastShape(); - /****************** LastShape ******************/ - /**** md5 signature: bb21db1014474497d8ea1beda698051e ****/ + /****** BRepSweep_Revol::LastShape ******/ + /****** md5 signature: bb21db1014474497d8ea1beda698051e ******/ %feature("compactdefaultargs") LastShape; %feature("autodoc", " Parameters @@ -1260,8 +1260,8 @@ Returns the topods shape of the top of the prism. generated with agens (subshape ") LastShape; TopoDS_Shape LastShape(const TopoDS_Shape & aGenS); - /****************** Shape ******************/ - /**** md5 signature: 3bc559831c5959191e55bf80cdb0f8f7 ****/ + /****** BRepSweep_Revol::Shape ******/ + /****** md5 signature: 3bc559831c5959191e55bf80cdb0f8f7 ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -1273,8 +1273,8 @@ Returns the topods shape attached to the revol. ") Shape; TopoDS_Shape Shape(); - /****************** Shape ******************/ - /**** md5 signature: ac4eba69efed3f2b7a40ac4e765b2a2f ****/ + /****** BRepSweep_Revol::Shape ******/ + /****** md5 signature: ac4eba69efed3f2b7a40ac4e765b2a2f ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", " Parameters @@ -1305,8 +1305,8 @@ Returns the topods shape generated with agens (subshape of the generating shape) ***********************/ class BRepSweep_Tool { public: - /****************** BRepSweep_Tool ******************/ - /**** md5 signature: 420ab6e1827a7c8142a3d86ace7e0fd4 ****/ + /****** BRepSweep_Tool::BRepSweep_Tool ******/ + /****** md5 signature: 420ab6e1827a7c8142a3d86ace7e0fd4 ******/ %feature("compactdefaultargs") BRepSweep_Tool; %feature("autodoc", " Parameters @@ -1323,8 +1323,8 @@ Initialize the tool with . the indextool must prepare an indexation for ") BRepSweep_Tool; BRepSweep_Tool(const TopoDS_Shape & aShape); - /****************** Index ******************/ - /**** md5 signature: f2df6704dd6a221c450c874e56f265b1 ****/ + /****** BRepSweep_Tool::Index ******/ + /****** md5 signature: f2df6704dd6a221c450c874e56f265b1 ******/ %feature("compactdefaultargs") Index; %feature("autodoc", " Parameters @@ -1341,8 +1341,8 @@ Returns the index of . ") Index; Standard_Integer Index(const TopoDS_Shape & aShape); - /****************** NbShapes ******************/ - /**** md5 signature: ea90d1514db96ad18becf0e04a33abf6 ****/ + /****** BRepSweep_Tool::NbShapes ******/ + /****** md5 signature: ea90d1514db96ad18becf0e04a33abf6 ******/ %feature("compactdefaultargs") NbShapes; %feature("autodoc", "Return ------- @@ -1354,8 +1354,8 @@ Returns the number of subshapes in the shape. ") NbShapes; Standard_Integer NbShapes(); - /****************** Orientation ******************/ - /**** md5 signature: 3e6195d49fb7b31ece701e3a305e5410 ****/ + /****** BRepSweep_Tool::Orientation ******/ + /****** md5 signature: 3e6195d49fb7b31ece701e3a305e5410 ******/ %feature("compactdefaultargs") Orientation; %feature("autodoc", " Parameters @@ -1372,8 +1372,8 @@ Returns the orientation of . ") Orientation; TopAbs_Orientation Orientation(const TopoDS_Shape & aShape); - /****************** SetOrientation ******************/ - /**** md5 signature: 461d54aa9cdec0d7c84b8cf49c3aefb8 ****/ + /****** BRepSweep_Tool::SetOrientation ******/ + /****** md5 signature: 461d54aa9cdec0d7c84b8cf49c3aefb8 ******/ %feature("compactdefaultargs") SetOrientation; %feature("autodoc", " Parameters @@ -1391,8 +1391,8 @@ Set the orientation of with or. ") SetOrientation; void SetOrientation(TopoDS_Shape & aShape, const TopAbs_Orientation Or); - /****************** Shape ******************/ - /**** md5 signature: c1f5f0f58a7a298380121ab4ee711fa5 ****/ + /****** BRepSweep_Tool::Shape ******/ + /****** md5 signature: c1f5f0f58a7a298380121ab4ee711fa5 ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", " Parameters @@ -1409,8 +1409,8 @@ Returns the shape at index anidex. ") Shape; TopoDS_Shape Shape(const Standard_Integer anIndex); - /****************** Type ******************/ - /**** md5 signature: 2e9c60b86d2e6a35e37e3b8ab7f4ee8d ****/ + /****** BRepSweep_Tool::Type ******/ + /****** md5 signature: 2e9c60b86d2e6a35e37e3b8ab7f4ee8d ******/ %feature("compactdefaultargs") Type; %feature("autodoc", " Parameters @@ -1442,8 +1442,8 @@ Returns the type of . %nodefaultctor BRepSweep_Trsf; class BRepSweep_Trsf : public BRepSweep_NumLinearRegularSweep { public: - /****************** GDDShapeIsToAdd ******************/ - /**** md5 signature: fe88d75093634a6a9b82af7ecb844883 ****/ + /****** BRepSweep_Trsf::GDDShapeIsToAdd ******/ + /****** md5 signature: fe88d75093634a6a9b82af7ecb844883 ******/ %feature("compactdefaultargs") GDDShapeIsToAdd; %feature("autodoc", " Parameters @@ -1464,8 +1464,8 @@ Returns true if anewsubshape (addressed by agens and asubdirs) must be added in ") GDDShapeIsToAdd; virtual Standard_Boolean GDDShapeIsToAdd(const TopoDS_Shape & aNewShape, const TopoDS_Shape & aNewSubShape, const TopoDS_Shape & aGenS, const Sweep_NumShape & aDirS, const Sweep_NumShape & aSubDirS); - /****************** GGDShapeIsToAdd ******************/ - /**** md5 signature: 9fa440fddebdfb679e9340eb82dffc8a ****/ + /****** BRepSweep_Trsf::GGDShapeIsToAdd ******/ + /****** md5 signature: 9fa440fddebdfb679e9340eb82dffc8a ******/ %feature("compactdefaultargs") GGDShapeIsToAdd; %feature("autodoc", " Parameters @@ -1486,8 +1486,8 @@ Returns true if anewsubshape (addressed by asubgens and adirs) must be added in ") GGDShapeIsToAdd; virtual Standard_Boolean GGDShapeIsToAdd(const TopoDS_Shape & aNewShape, const TopoDS_Shape & aNewSubShape, const TopoDS_Shape & aGenS, const TopoDS_Shape & aSubGenS, const Sweep_NumShape & aDirS); - /****************** HasShape ******************/ - /**** md5 signature: 20f9af4b351b229b5a6f40f7e751b053 ****/ + /****** BRepSweep_Trsf::HasShape ******/ + /****** md5 signature: 20f9af4b351b229b5a6f40f7e751b053 ******/ %feature("compactdefaultargs") HasShape; %feature("autodoc", " Parameters @@ -1505,8 +1505,8 @@ Returns true if adirs and agens addresses a resulting shape. in some specific ca ") HasShape; virtual Standard_Boolean HasShape(const TopoDS_Shape & aGenS, const Sweep_NumShape & aDirS); - /****************** Init ******************/ - /**** md5 signature: 0de93ef32c53d091768788dca0e281fd ****/ + /****** BRepSweep_Trsf::Init ******/ + /****** md5 signature: 0de93ef32c53d091768788dca0e281fd ******/ %feature("compactdefaultargs") Init; %feature("autodoc", "Return ------- @@ -1518,8 +1518,8 @@ Ends the construction of the swept primitive calling the virtual geometric funct ") Init; void Init(); - /****************** IsInvariant ******************/ - /**** md5 signature: 9d05aaff715a168d29ddf032477dee17 ****/ + /****** BRepSweep_Trsf::IsInvariant ******/ + /****** md5 signature: 9d05aaff715a168d29ddf032477dee17 ******/ %feature("compactdefaultargs") IsInvariant; %feature("autodoc", " Parameters @@ -1536,8 +1536,8 @@ Returns true if the geometry of agens is not modified by the trsf of the brepswe ") IsInvariant; virtual Standard_Boolean IsInvariant(const TopoDS_Shape & aGenS); - /****************** MakeEmptyDirectingEdge ******************/ - /**** md5 signature: 2aab75cc53737cfb5bfdef4c69ec0563 ****/ + /****** BRepSweep_Trsf::MakeEmptyDirectingEdge ******/ + /****** md5 signature: 2aab75cc53737cfb5bfdef4c69ec0563 ******/ %feature("compactdefaultargs") MakeEmptyDirectingEdge; %feature("autodoc", " Parameters @@ -1555,8 +1555,8 @@ Builds the edge addressed by [agenv,adire], with its geometric part, but without ") MakeEmptyDirectingEdge; virtual TopoDS_Shape MakeEmptyDirectingEdge(const TopoDS_Shape & aGenV, const Sweep_NumShape & aDirE); - /****************** MakeEmptyFace ******************/ - /**** md5 signature: 31039ada5c38b16e74d987b5f6927423 ****/ + /****** BRepSweep_Trsf::MakeEmptyFace ******/ + /****** md5 signature: 31039ada5c38b16e74d987b5f6927423 ******/ %feature("compactdefaultargs") MakeEmptyFace; %feature("autodoc", " Parameters @@ -1574,8 +1574,8 @@ Builds the face addressed by [agens,adirs], with its geometric part, but without ") MakeEmptyFace; virtual TopoDS_Shape MakeEmptyFace(const TopoDS_Shape & aGenS, const Sweep_NumShape & aDirS); - /****************** MakeEmptyGeneratingEdge ******************/ - /**** md5 signature: 23e17669af9dbd7ec9fe69968d38e689 ****/ + /****** BRepSweep_Trsf::MakeEmptyGeneratingEdge ******/ + /****** md5 signature: 23e17669af9dbd7ec9fe69968d38e689 ******/ %feature("compactdefaultargs") MakeEmptyGeneratingEdge; %feature("autodoc", " Parameters @@ -1593,8 +1593,8 @@ Builds the edge addressed by [agene,adirv], with its geometric part, but without ") MakeEmptyGeneratingEdge; virtual TopoDS_Shape MakeEmptyGeneratingEdge(const TopoDS_Shape & aGenE, const Sweep_NumShape & aDirV); - /****************** MakeEmptyVertex ******************/ - /**** md5 signature: 65fb4c43c0fb4fc058233497f0455f67 ****/ + /****** BRepSweep_Trsf::MakeEmptyVertex ******/ + /****** md5 signature: 65fb4c43c0fb4fc058233497f0455f67 ******/ %feature("compactdefaultargs") MakeEmptyVertex; %feature("autodoc", " Parameters @@ -1612,8 +1612,8 @@ Builds the vertex addressed by [agenv,adirv], with its geometric part, but witho ") MakeEmptyVertex; virtual TopoDS_Shape MakeEmptyVertex(const TopoDS_Shape & aGenV, const Sweep_NumShape & aDirV); - /****************** Process ******************/ - /**** md5 signature: 5531c3417943534a0975ac67d55763b7 ****/ + /****** BRepSweep_Trsf::Process ******/ + /****** md5 signature: 5531c3417943534a0975ac67d55763b7 ******/ %feature("compactdefaultargs") Process; %feature("autodoc", " Parameters @@ -1631,8 +1631,8 @@ Function called to analyze the way of construction of the shapes generated by ag ") Process; Standard_Boolean Process(const TopoDS_Shape & aGenS, const Sweep_NumShape & aDirV); - /****************** SeparatedWires ******************/ - /**** md5 signature: 59729d23b465e6739a88651dce236e8e ****/ + /****** BRepSweep_Trsf::SeparatedWires ******/ + /****** md5 signature: 59729d23b465e6739a88651dce236e8e ******/ %feature("compactdefaultargs") SeparatedWires; %feature("autodoc", " Parameters @@ -1653,8 +1653,8 @@ In some particular cases the topology of a generated face must be composed of in ") SeparatedWires; virtual Standard_Boolean SeparatedWires(const TopoDS_Shape & aNewShape, const TopoDS_Shape & aNewSubShape, const TopoDS_Shape & aGenS, const TopoDS_Shape & aSubGenS, const Sweep_NumShape & aDirS); - /****************** SetContinuity ******************/ - /**** md5 signature: 37089da5d56ab940e9d05de1978f2d84 ****/ + /****** BRepSweep_Trsf::SetContinuity ******/ + /****** md5 signature: 37089da5d56ab940e9d05de1978f2d84 ******/ %feature("compactdefaultargs") SetContinuity; %feature("autodoc", " Parameters @@ -1672,8 +1672,8 @@ Called to propagate the continuity of every vertex between two edges of the gene ") SetContinuity; void SetContinuity(const TopoDS_Shape & aGenS, const Sweep_NumShape & aDirS); - /****************** SetDirectingPCurve ******************/ - /**** md5 signature: b0f97a562d10fef4a186a331be6109f4 ****/ + /****** BRepSweep_Trsf::SetDirectingPCurve ******/ + /****** md5 signature: b0f97a562d10fef4a186a331be6109f4 ******/ %feature("compactdefaultargs") SetDirectingPCurve; %feature("autodoc", " Parameters @@ -1695,8 +1695,8 @@ Sets the pcurve for a new edge on a new face. the new edge and the new face were ") SetDirectingPCurve; virtual void SetDirectingPCurve(const TopoDS_Shape & aNewFace, TopoDS_Shape & aNewEdge, const TopoDS_Shape & aGenE, const TopoDS_Shape & aGenV, const Sweep_NumShape & aDirE, const TopAbs_Orientation orien); - /****************** SetDirectingParameter ******************/ - /**** md5 signature: 08b0629c42aaa96e43af7f24cbb9257b ****/ + /****** BRepSweep_Trsf::SetDirectingParameter ******/ + /****** md5 signature: 08b0629c42aaa96e43af7f24cbb9257b ******/ %feature("compactdefaultargs") SetDirectingParameter; %feature("autodoc", " Parameters @@ -1717,8 +1717,8 @@ Sets the parameter of the new vertex on the new edge. the new edge and new verte ") SetDirectingParameter; virtual void SetDirectingParameter(const TopoDS_Shape & aNewEdge, TopoDS_Shape & aNewVertex, const TopoDS_Shape & aGenV, const Sweep_NumShape & aDirE, const Sweep_NumShape & aDirV); - /****************** SetGeneratingPCurve ******************/ - /**** md5 signature: c6bfd0a789cdcef392f507b01f9589ba ****/ + /****** BRepSweep_Trsf::SetGeneratingPCurve ******/ + /****** md5 signature: c6bfd0a789cdcef392f507b01f9589ba ******/ %feature("compactdefaultargs") SetGeneratingPCurve; %feature("autodoc", " Parameters @@ -1740,8 +1740,8 @@ Sets the pcurve for a new edge on a new face. the new edge and the new face were ") SetGeneratingPCurve; virtual void SetGeneratingPCurve(const TopoDS_Shape & aNewFace, TopoDS_Shape & aNewEdge, const TopoDS_Shape & aGenE, const Sweep_NumShape & aDirE, const Sweep_NumShape & aDirV, const TopAbs_Orientation orien); - /****************** SetGeneratingParameter ******************/ - /**** md5 signature: 1ae98cd619b9a59c964fca35b3740112 ****/ + /****** BRepSweep_Trsf::SetGeneratingParameter ******/ + /****** md5 signature: 1ae98cd619b9a59c964fca35b3740112 ******/ %feature("compactdefaultargs") SetGeneratingParameter; %feature("autodoc", " Parameters @@ -1762,8 +1762,8 @@ Sets the parameter of the new vertex on the new edge. the new edge and new verte ") SetGeneratingParameter; virtual void SetGeneratingParameter(const TopoDS_Shape & aNewEdge, TopoDS_Shape & aNewVertex, const TopoDS_Shape & aGenE, const TopoDS_Shape & aGenV, const Sweep_NumShape & aDirV); - /****************** SetPCurve ******************/ - /**** md5 signature: c0047c2fbc5572ce3e8faa535000b53b ****/ + /****** BRepSweep_Trsf::SetPCurve ******/ + /****** md5 signature: c0047c2fbc5572ce3e8faa535000b53b ******/ %feature("compactdefaultargs") SetPCurve; %feature("autodoc", " Parameters @@ -1785,8 +1785,8 @@ Sets the pcurve for a new edge on a new face. the new edge and the new face were ") SetPCurve; virtual void SetPCurve(const TopoDS_Shape & aNewFace, TopoDS_Shape & aNewEdge, const TopoDS_Shape & aGenF, const TopoDS_Shape & aGenE, const Sweep_NumShape & aDirV, const TopAbs_Orientation orien); - /****************** SetParameters ******************/ - /**** md5 signature: 0f6f4a8a442b075a2da09819fc70d120 ****/ + /****** BRepSweep_Trsf::SetParameters ******/ + /****** md5 signature: 0f6f4a8a442b075a2da09819fc70d120 ******/ %feature("compactdefaultargs") SetParameters; %feature("autodoc", " Parameters @@ -1821,8 +1821,8 @@ Sets the parameters of the new vertex on the new face. the new face and new vert ***************************/ class BRepSweep_Rotation : public BRepSweep_Trsf { public: - /****************** BRepSweep_Rotation ******************/ - /**** md5 signature: e05b8c8ad1e8a545059b8133e5773ece ****/ + /****** BRepSweep_Rotation::BRepSweep_Rotation ******/ + /****** md5 signature: e05b8c8ad1e8a545059b8133e5773ece ******/ %feature("compactdefaultargs") BRepSweep_Rotation; %feature("autodoc", " Parameters @@ -1844,8 +1844,8 @@ Creates a topology by rotating around a with the angle d. ") BRepSweep_Rotation; BRepSweep_Rotation(const TopoDS_Shape & S, const Sweep_NumShape & N, const TopLoc_Location & L, const gp_Ax1 & A, const Standard_Real D, const Standard_Boolean C); - /****************** Angle ******************/ - /**** md5 signature: dce50192c350c43b54f2e88e94e5372a ****/ + /****** BRepSweep_Rotation::Angle ******/ + /****** md5 signature: dce50192c350c43b54f2e88e94e5372a ******/ %feature("compactdefaultargs") Angle; %feature("autodoc", "Return ------- @@ -1857,8 +1857,8 @@ Returns the angle. ") Angle; Standard_Real Angle(); - /****************** Axe ******************/ - /**** md5 signature: ae9358c470f1ac8b11f3860f80ec2cd7 ****/ + /****** BRepSweep_Rotation::Axe ******/ + /****** md5 signature: ae9358c470f1ac8b11f3860f80ec2cd7 ******/ %feature("compactdefaultargs") Axe; %feature("autodoc", "Return ------- @@ -1870,8 +1870,8 @@ Returns the axis. ") Axe; gp_Ax1 Axe(); - /****************** DirectSolid ******************/ - /**** md5 signature: 9cb0ca77deb76ca34b12ea167a341446 ****/ + /****** BRepSweep_Rotation::DirectSolid ******/ + /****** md5 signature: 9cb0ca77deb76ca34b12ea167a341446 ******/ %feature("compactdefaultargs") DirectSolid; %feature("autodoc", " Parameters @@ -1889,8 +1889,8 @@ Returns the orientation of the shell in the solid generated by the face agens wi ") DirectSolid; TopAbs_Orientation DirectSolid(const TopoDS_Shape & aGenS, const Sweep_NumShape & aDirS); - /****************** GDDShapeIsToAdd ******************/ - /**** md5 signature: 2cfce7bc408f276129caef6b714b93db ****/ + /****** BRepSweep_Rotation::GDDShapeIsToAdd ******/ + /****** md5 signature: 2cfce7bc408f276129caef6b714b93db ******/ %feature("compactdefaultargs") GDDShapeIsToAdd; %feature("autodoc", " Parameters @@ -1911,8 +1911,8 @@ Returns true if anewsubshape (addressed by agens and asubdirs) must be added in ") GDDShapeIsToAdd; Standard_Boolean GDDShapeIsToAdd(const TopoDS_Shape & aNewShape, const TopoDS_Shape & aNewSubShape, const TopoDS_Shape & aGenS, const Sweep_NumShape & aDirS, const Sweep_NumShape & aSubDirS); - /****************** GGDShapeIsToAdd ******************/ - /**** md5 signature: f76ffaf46f9b0140f61fbb7b95e70ed3 ****/ + /****** BRepSweep_Rotation::GGDShapeIsToAdd ******/ + /****** md5 signature: f76ffaf46f9b0140f61fbb7b95e70ed3 ******/ %feature("compactdefaultargs") GGDShapeIsToAdd; %feature("autodoc", " Parameters @@ -1933,8 +1933,8 @@ Returns true if anewsubshape (addressed by asubgens and adirs) must be added in ") GGDShapeIsToAdd; Standard_Boolean GGDShapeIsToAdd(const TopoDS_Shape & aNewShape, const TopoDS_Shape & aNewSubShape, const TopoDS_Shape & aGenS, const TopoDS_Shape & aSubGenS, const Sweep_NumShape & aDirS); - /****************** HasShape ******************/ - /**** md5 signature: 711d609505b211d9a398bccd167235e0 ****/ + /****** BRepSweep_Rotation::HasShape ******/ + /****** md5 signature: 711d609505b211d9a398bccd167235e0 ******/ %feature("compactdefaultargs") HasShape; %feature("autodoc", " Parameters @@ -1952,8 +1952,8 @@ Returns true if adirs and agens addresses a resulting shape. in some specific ca ") HasShape; Standard_Boolean HasShape(const TopoDS_Shape & aGenS, const Sweep_NumShape & aDirS); - /****************** IsInvariant ******************/ - /**** md5 signature: 20d6e3772ed9b3bde1eae17149263c8b ****/ + /****** BRepSweep_Rotation::IsInvariant ******/ + /****** md5 signature: 20d6e3772ed9b3bde1eae17149263c8b ******/ %feature("compactdefaultargs") IsInvariant; %feature("autodoc", " Parameters @@ -1970,8 +1970,8 @@ Returns true when the geometry of agens is not modified by the rotation. ") IsInvariant; Standard_Boolean IsInvariant(const TopoDS_Shape & aGenS); - /****************** MakeEmptyDirectingEdge ******************/ - /**** md5 signature: 0f93e821c4aa02ba0f107ee7052c361e ****/ + /****** BRepSweep_Rotation::MakeEmptyDirectingEdge ******/ + /****** md5 signature: 0f93e821c4aa02ba0f107ee7052c361e ******/ %feature("compactdefaultargs") MakeEmptyDirectingEdge; %feature("autodoc", " Parameters @@ -1989,8 +1989,8 @@ Builds the edge addressed by [agenv,adire], with its geometric part, but without ") MakeEmptyDirectingEdge; TopoDS_Shape MakeEmptyDirectingEdge(const TopoDS_Shape & aGenV, const Sweep_NumShape & aDirE); - /****************** MakeEmptyFace ******************/ - /**** md5 signature: 98e50f7aa97124fb05b166b09df39c7b ****/ + /****** BRepSweep_Rotation::MakeEmptyFace ******/ + /****** md5 signature: 98e50f7aa97124fb05b166b09df39c7b ******/ %feature("compactdefaultargs") MakeEmptyFace; %feature("autodoc", " Parameters @@ -2008,8 +2008,8 @@ Builds the face addressed by [agens,adirs], with its geometric part, but without ") MakeEmptyFace; TopoDS_Shape MakeEmptyFace(const TopoDS_Shape & aGenS, const Sweep_NumShape & aDirS); - /****************** MakeEmptyGeneratingEdge ******************/ - /**** md5 signature: 7f34a55a558b66e59d2526bcd9cc7fac ****/ + /****** BRepSweep_Rotation::MakeEmptyGeneratingEdge ******/ + /****** md5 signature: 7f34a55a558b66e59d2526bcd9cc7fac ******/ %feature("compactdefaultargs") MakeEmptyGeneratingEdge; %feature("autodoc", " Parameters @@ -2027,8 +2027,8 @@ Builds the edge addressed by [agene,adirv], with its geometric part, but without ") MakeEmptyGeneratingEdge; TopoDS_Shape MakeEmptyGeneratingEdge(const TopoDS_Shape & aGenE, const Sweep_NumShape & aDirV); - /****************** MakeEmptyVertex ******************/ - /**** md5 signature: 4030e180c6a95c0f80633cbf091de2aa ****/ + /****** BRepSweep_Rotation::MakeEmptyVertex ******/ + /****** md5 signature: 4030e180c6a95c0f80633cbf091de2aa ******/ %feature("compactdefaultargs") MakeEmptyVertex; %feature("autodoc", " Parameters @@ -2046,8 +2046,8 @@ Builds the vertex addressed by [agenv,adirv], with its geometric part, but witho ") MakeEmptyVertex; TopoDS_Shape MakeEmptyVertex(const TopoDS_Shape & aGenV, const Sweep_NumShape & aDirV); - /****************** SeparatedWires ******************/ - /**** md5 signature: 739dcb9703dcd526a3fe95d4061137b6 ****/ + /****** BRepSweep_Rotation::SeparatedWires ******/ + /****** md5 signature: 739dcb9703dcd526a3fe95d4061137b6 ******/ %feature("compactdefaultargs") SeparatedWires; %feature("autodoc", " Parameters @@ -2068,8 +2068,8 @@ In some particular cases the topology of a generated face must be composed of in ") SeparatedWires; Standard_Boolean SeparatedWires(const TopoDS_Shape & aNewShape, const TopoDS_Shape & aNewSubShape, const TopoDS_Shape & aGenS, const TopoDS_Shape & aSubGenS, const Sweep_NumShape & aDirS); - /****************** SetDirectingPCurve ******************/ - /**** md5 signature: ac278d087240b35efa4b4e9de80b53ad ****/ + /****** BRepSweep_Rotation::SetDirectingPCurve ******/ + /****** md5 signature: ac278d087240b35efa4b4e9de80b53ad ******/ %feature("compactdefaultargs") SetDirectingPCurve; %feature("autodoc", " Parameters @@ -2091,8 +2091,8 @@ Sets the pcurve for a new edge on a new face. the new edge and the new face were ") SetDirectingPCurve; void SetDirectingPCurve(const TopoDS_Shape & aNewFace, TopoDS_Shape & aNewEdge, const TopoDS_Shape & aGenE, const TopoDS_Shape & aGenV, const Sweep_NumShape & aDirE, const TopAbs_Orientation orien); - /****************** SetDirectingParameter ******************/ - /**** md5 signature: ddc02383cd4f7c52eece59495c5ca915 ****/ + /****** BRepSweep_Rotation::SetDirectingParameter ******/ + /****** md5 signature: ddc02383cd4f7c52eece59495c5ca915 ******/ %feature("compactdefaultargs") SetDirectingParameter; %feature("autodoc", " Parameters @@ -2113,8 +2113,8 @@ Sets the parameter of the new vertex on the new edge. the new edge and new verte ") SetDirectingParameter; void SetDirectingParameter(const TopoDS_Shape & aNewEdge, TopoDS_Shape & aNewVertex, const TopoDS_Shape & aGenV, const Sweep_NumShape & aDirE, const Sweep_NumShape & aDirV); - /****************** SetGeneratingPCurve ******************/ - /**** md5 signature: c76422746bf77e364ca36e17af28e484 ****/ + /****** BRepSweep_Rotation::SetGeneratingPCurve ******/ + /****** md5 signature: c76422746bf77e364ca36e17af28e484 ******/ %feature("compactdefaultargs") SetGeneratingPCurve; %feature("autodoc", " Parameters @@ -2136,8 +2136,8 @@ Sets the pcurve for a new edge on a new face. the new edge and the new face were ") SetGeneratingPCurve; void SetGeneratingPCurve(const TopoDS_Shape & aNewFace, TopoDS_Shape & aNewEdge, const TopoDS_Shape & aGenE, const Sweep_NumShape & aDirE, const Sweep_NumShape & aDirV, const TopAbs_Orientation orien); - /****************** SetGeneratingParameter ******************/ - /**** md5 signature: 928b4f6f046054bb6e378769bfeac8a5 ****/ + /****** BRepSweep_Rotation::SetGeneratingParameter ******/ + /****** md5 signature: 928b4f6f046054bb6e378769bfeac8a5 ******/ %feature("compactdefaultargs") SetGeneratingParameter; %feature("autodoc", " Parameters @@ -2158,8 +2158,8 @@ Sets the parameter of the new vertex on the new edge. the new edge and new verte ") SetGeneratingParameter; void SetGeneratingParameter(const TopoDS_Shape & aNewEdge, TopoDS_Shape & aNewVertex, const TopoDS_Shape & aGenE, const TopoDS_Shape & aGenV, const Sweep_NumShape & aDirV); - /****************** SetPCurve ******************/ - /**** md5 signature: 531017a24828b97a1b79fbd881d93b12 ****/ + /****** BRepSweep_Rotation::SetPCurve ******/ + /****** md5 signature: 531017a24828b97a1b79fbd881d93b12 ******/ %feature("compactdefaultargs") SetPCurve; %feature("autodoc", " Parameters @@ -2181,8 +2181,8 @@ Sets the pcurve for a new edge on a new face. the new edge and the new face were ") SetPCurve; void SetPCurve(const TopoDS_Shape & aNewFace, TopoDS_Shape & aNewEdge, const TopoDS_Shape & aGenF, const TopoDS_Shape & aGenE, const Sweep_NumShape & aDirV, const TopAbs_Orientation orien); - /****************** SetParameters ******************/ - /**** md5 signature: d358640d733de7983cfbfe868a9e3846 ****/ + /****** BRepSweep_Rotation::SetParameters ******/ + /****** md5 signature: d358640d733de7983cfbfe868a9e3846 ******/ %feature("compactdefaultargs") SetParameters; %feature("autodoc", " Parameters @@ -2203,8 +2203,8 @@ Sets the parameters of the new vertex on the new face. the new face and new vert ") SetParameters; void SetParameters(const TopoDS_Shape & aNewFace, TopoDS_Shape & aNewVertex, const TopoDS_Shape & aGenF, const TopoDS_Shape & aGenV, const Sweep_NumShape & aDirV); - /****************** SplitShell ******************/ - /**** md5 signature: 04721169aec9020dc4e10a271a4b00bb ****/ + /****** BRepSweep_Rotation::SplitShell ******/ + /****** md5 signature: 04721169aec9020dc4e10a271a4b00bb ******/ %feature("compactdefaultargs") SplitShell; %feature("autodoc", " Parameters @@ -2235,8 +2235,8 @@ In some particular cases the topology of a generated shell must be composed of i ******************************/ class BRepSweep_Translation : public BRepSweep_Trsf { public: - /****************** BRepSweep_Translation ******************/ - /**** md5 signature: 08b25f8206a6f7e202ce4aaea7bc802c ****/ + /****** BRepSweep_Translation::BRepSweep_Translation ******/ + /****** md5 signature: 08b25f8206a6f7e202ce4aaea7bc802c ******/ %feature("compactdefaultargs") BRepSweep_Translation; %feature("autodoc", " Parameters @@ -2258,8 +2258,8 @@ Creates a topology by translating with the vector . if c is true s sucomp ") BRepSweep_Translation; BRepSweep_Translation(const TopoDS_Shape & S, const Sweep_NumShape & N, const TopLoc_Location & L, const gp_Vec & V, const Standard_Boolean C, const Standard_Boolean Canonize = Standard_True); - /****************** DirectSolid ******************/ - /**** md5 signature: 1e98a941ececf830d972fe0e1b051e61 ****/ + /****** BRepSweep_Translation::DirectSolid ******/ + /****** md5 signature: 1e98a941ececf830d972fe0e1b051e61 ******/ %feature("compactdefaultargs") DirectSolid; %feature("autodoc", " Parameters @@ -2277,8 +2277,8 @@ Returns the orientation of the shell in the solid generated by the face agens wi ") DirectSolid; TopAbs_Orientation DirectSolid(const TopoDS_Shape & aGenS, const Sweep_NumShape & aDirS); - /****************** GDDShapeIsToAdd ******************/ - /**** md5 signature: d9aea4aa9a99d8f03fdb096eceb85a80 ****/ + /****** BRepSweep_Translation::GDDShapeIsToAdd ******/ + /****** md5 signature: d9aea4aa9a99d8f03fdb096eceb85a80 ******/ %feature("compactdefaultargs") GDDShapeIsToAdd; %feature("autodoc", " Parameters @@ -2299,8 +2299,8 @@ Returns true if anewsubshape (addressed by agens and asubdirs) must be added in ") GDDShapeIsToAdd; Standard_Boolean GDDShapeIsToAdd(const TopoDS_Shape & aNewShape, const TopoDS_Shape & aNewSubShape, const TopoDS_Shape & aGenS, const Sweep_NumShape & aDirS, const Sweep_NumShape & aSubDirS); - /****************** GGDShapeIsToAdd ******************/ - /**** md5 signature: 0f2fc383cbd5635177c9320ce4d4fd50 ****/ + /****** BRepSweep_Translation::GGDShapeIsToAdd ******/ + /****** md5 signature: 0f2fc383cbd5635177c9320ce4d4fd50 ******/ %feature("compactdefaultargs") GGDShapeIsToAdd; %feature("autodoc", " Parameters @@ -2321,8 +2321,8 @@ Returns true if anewsubshape (addressed by asubgens and adirs) must be added in ") GGDShapeIsToAdd; Standard_Boolean GGDShapeIsToAdd(const TopoDS_Shape & aNewShape, const TopoDS_Shape & aNewSubShape, const TopoDS_Shape & aGenS, const TopoDS_Shape & aSubGenS, const Sweep_NumShape & aDirS); - /****************** HasShape ******************/ - /**** md5 signature: 71a14855721136181f7e601dc52ad930 ****/ + /****** BRepSweep_Translation::HasShape ******/ + /****** md5 signature: 71a14855721136181f7e601dc52ad930 ******/ %feature("compactdefaultargs") HasShape; %feature("autodoc", " Parameters @@ -2340,8 +2340,8 @@ Returns true if adirs and agens addresses a resulting shape. in some specific ca ") HasShape; Standard_Boolean HasShape(const TopoDS_Shape & aGenS, const Sweep_NumShape & aDirS); - /****************** IsInvariant ******************/ - /**** md5 signature: 5b066db5fa001b1a153d6adfb0c20a85 ****/ + /****** BRepSweep_Translation::IsInvariant ******/ + /****** md5 signature: 5b066db5fa001b1a153d6adfb0c20a85 ******/ %feature("compactdefaultargs") IsInvariant; %feature("autodoc", " Parameters @@ -2358,8 +2358,8 @@ Returns always false because here the transformation is a translation. ") IsInvariant; Standard_Boolean IsInvariant(const TopoDS_Shape & aGenS); - /****************** MakeEmptyDirectingEdge ******************/ - /**** md5 signature: 38849a5c3c2911b325ff114fca85ea2c ****/ + /****** BRepSweep_Translation::MakeEmptyDirectingEdge ******/ + /****** md5 signature: 38849a5c3c2911b325ff114fca85ea2c ******/ %feature("compactdefaultargs") MakeEmptyDirectingEdge; %feature("autodoc", " Parameters @@ -2377,8 +2377,8 @@ Builds the edge addressed by [agenv,adire], with its geometric part, but without ") MakeEmptyDirectingEdge; TopoDS_Shape MakeEmptyDirectingEdge(const TopoDS_Shape & aGenV, const Sweep_NumShape & aDirE); - /****************** MakeEmptyFace ******************/ - /**** md5 signature: 2e9bb3007bfbd0575e1026d1a3f0c6b6 ****/ + /****** BRepSweep_Translation::MakeEmptyFace ******/ + /****** md5 signature: 2e9bb3007bfbd0575e1026d1a3f0c6b6 ******/ %feature("compactdefaultargs") MakeEmptyFace; %feature("autodoc", " Parameters @@ -2396,8 +2396,8 @@ Builds the face addressed by [agens,adirs], with its geometric part, but without ") MakeEmptyFace; TopoDS_Shape MakeEmptyFace(const TopoDS_Shape & aGenS, const Sweep_NumShape & aDirS); - /****************** MakeEmptyGeneratingEdge ******************/ - /**** md5 signature: 036ae7ff9f87f6ad8322cb7cfe2ebf0e ****/ + /****** BRepSweep_Translation::MakeEmptyGeneratingEdge ******/ + /****** md5 signature: 036ae7ff9f87f6ad8322cb7cfe2ebf0e ******/ %feature("compactdefaultargs") MakeEmptyGeneratingEdge; %feature("autodoc", " Parameters @@ -2415,8 +2415,8 @@ Builds the edge addressed by [agene,adirv], with its geometric part, but without ") MakeEmptyGeneratingEdge; TopoDS_Shape MakeEmptyGeneratingEdge(const TopoDS_Shape & aGenE, const Sweep_NumShape & aDirV); - /****************** MakeEmptyVertex ******************/ - /**** md5 signature: 2cabb10fca2f11e5b6e30693c4008fd6 ****/ + /****** BRepSweep_Translation::MakeEmptyVertex ******/ + /****** md5 signature: 2cabb10fca2f11e5b6e30693c4008fd6 ******/ %feature("compactdefaultargs") MakeEmptyVertex; %feature("autodoc", " Parameters @@ -2434,8 +2434,8 @@ Builds the vertex addressed by [agenv,adirv], with its geometric part, but witho ") MakeEmptyVertex; TopoDS_Shape MakeEmptyVertex(const TopoDS_Shape & aGenV, const Sweep_NumShape & aDirV); - /****************** SeparatedWires ******************/ - /**** md5 signature: 7fc703b1ba19708e5eeebc73a6803fc3 ****/ + /****** BRepSweep_Translation::SeparatedWires ******/ + /****** md5 signature: 7fc703b1ba19708e5eeebc73a6803fc3 ******/ %feature("compactdefaultargs") SeparatedWires; %feature("autodoc", " Parameters @@ -2456,8 +2456,8 @@ In some particular cases the topology of a generated face must be composed of in ") SeparatedWires; Standard_Boolean SeparatedWires(const TopoDS_Shape & aNewShape, const TopoDS_Shape & aNewSubShape, const TopoDS_Shape & aGenS, const TopoDS_Shape & aSubGenS, const Sweep_NumShape & aDirS); - /****************** SetDirectingPCurve ******************/ - /**** md5 signature: bc185c2655e0221d27e7dc24ac617cff ****/ + /****** BRepSweep_Translation::SetDirectingPCurve ******/ + /****** md5 signature: bc185c2655e0221d27e7dc24ac617cff ******/ %feature("compactdefaultargs") SetDirectingPCurve; %feature("autodoc", " Parameters @@ -2479,8 +2479,8 @@ Sets the pcurve for a new edge on a new face. the new edge and the new face were ") SetDirectingPCurve; void SetDirectingPCurve(const TopoDS_Shape & aNewFace, TopoDS_Shape & aNewEdge, const TopoDS_Shape & aGenE, const TopoDS_Shape & aGenV, const Sweep_NumShape & aDirE, const TopAbs_Orientation orien); - /****************** SetDirectingParameter ******************/ - /**** md5 signature: adabbfe5e879c458d04ce866541654c2 ****/ + /****** BRepSweep_Translation::SetDirectingParameter ******/ + /****** md5 signature: adabbfe5e879c458d04ce866541654c2 ******/ %feature("compactdefaultargs") SetDirectingParameter; %feature("autodoc", " Parameters @@ -2501,8 +2501,8 @@ Sets the parameter of the new vertex on the new edge. the new edge and new verte ") SetDirectingParameter; void SetDirectingParameter(const TopoDS_Shape & aNewEdge, TopoDS_Shape & aNewVertex, const TopoDS_Shape & aGenV, const Sweep_NumShape & aDirE, const Sweep_NumShape & aDirV); - /****************** SetGeneratingPCurve ******************/ - /**** md5 signature: b2fce02ea5e92edb57d0d16b15cc9a8d ****/ + /****** BRepSweep_Translation::SetGeneratingPCurve ******/ + /****** md5 signature: b2fce02ea5e92edb57d0d16b15cc9a8d ******/ %feature("compactdefaultargs") SetGeneratingPCurve; %feature("autodoc", " Parameters @@ -2524,8 +2524,8 @@ Sets the pcurve for a new edge on a new face. the new edge and the new face were ") SetGeneratingPCurve; void SetGeneratingPCurve(const TopoDS_Shape & aNewFace, TopoDS_Shape & aNewEdge, const TopoDS_Shape & aGenE, const Sweep_NumShape & aDirE, const Sweep_NumShape & aDirV, const TopAbs_Orientation orien); - /****************** SetGeneratingParameter ******************/ - /**** md5 signature: 938b35569af58b948eeb07a2cc3f5de6 ****/ + /****** BRepSweep_Translation::SetGeneratingParameter ******/ + /****** md5 signature: 938b35569af58b948eeb07a2cc3f5de6 ******/ %feature("compactdefaultargs") SetGeneratingParameter; %feature("autodoc", " Parameters @@ -2546,8 +2546,8 @@ Sets the parameter of the new vertex on the new edge. the new edge and new verte ") SetGeneratingParameter; void SetGeneratingParameter(const TopoDS_Shape & aNewEdge, TopoDS_Shape & aNewVertex, const TopoDS_Shape & aGenE, const TopoDS_Shape & aGenV, const Sweep_NumShape & aDirV); - /****************** SetPCurve ******************/ - /**** md5 signature: 16fe81d7a5038184bcfd79b186ef48ff ****/ + /****** BRepSweep_Translation::SetPCurve ******/ + /****** md5 signature: 16fe81d7a5038184bcfd79b186ef48ff ******/ %feature("compactdefaultargs") SetPCurve; %feature("autodoc", " Parameters @@ -2569,8 +2569,8 @@ Sets the pcurve for a new edge on a new face. the new edge and the new face were ") SetPCurve; void SetPCurve(const TopoDS_Shape & aNewFace, TopoDS_Shape & aNewEdge, const TopoDS_Shape & aGenF, const TopoDS_Shape & aGenE, const Sweep_NumShape & aDirV, const TopAbs_Orientation orien); - /****************** SetParameters ******************/ - /**** md5 signature: 45a1be1aedcb3aaa7aebb14c04352cb0 ****/ + /****** BRepSweep_Translation::SetParameters ******/ + /****** md5 signature: 45a1be1aedcb3aaa7aebb14c04352cb0 ******/ %feature("compactdefaultargs") SetParameters; %feature("autodoc", " Parameters @@ -2591,8 +2591,8 @@ Sets the parameters of the new vertex on the new face. the new face and new vert ") SetParameters; void SetParameters(const TopoDS_Shape & aNewFace, TopoDS_Shape & aNewVertex, const TopoDS_Shape & aGenF, const TopoDS_Shape & aGenV, const Sweep_NumShape & aDirV); - /****************** Vec ******************/ - /**** md5 signature: d672c8e9c451e569ee9745cc73dfec20 ****/ + /****** BRepSweep_Translation::Vec ******/ + /****** md5 signature: d672c8e9c451e569ee9745cc73dfec20 ******/ %feature("compactdefaultargs") Vec; %feature("autodoc", "Return ------- diff --git a/src/SWIG_files/wrapper/BRepTools.i b/src/SWIG_files/wrapper/BRepTools.i index 611834137..443ee0614 100644 --- a/src/SWIG_files/wrapper/BRepTools.i +++ b/src/SWIG_files/wrapper/BRepTools.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPTOOLSDOCSTRING "BRepTools module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_breptools.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_breptools.html" %enddef %module (package="OCC.Core", docstring=BREPTOOLSDOCSTRING) BRepTools @@ -118,8 +118,8 @@ typedef NCollection_DataMap the bounding values in the parametric space of f. ") AddUVBounds; static void AddUVBounds(const TopoDS_Face & F, Bnd_Box2d & B); - /****************** AddUVBounds ******************/ - /**** md5 signature: b2e0e63879ee2bdf9d6eb8f583eef486 ****/ + /****** BRepTools::AddUVBounds ******/ + /****** md5 signature: b2e0e63879ee2bdf9d6eb8f583eef486 ******/ %feature("compactdefaultargs") AddUVBounds; %feature("autodoc", " Parameters @@ -177,8 +177,8 @@ Adds to the box the bounding values of the wire in the parametric space of f ") AddUVBounds; static void AddUVBounds(const TopoDS_Face & F, const TopoDS_Wire & W, Bnd_Box2d & B); - /****************** AddUVBounds ******************/ - /**** md5 signature: ef861e4c373c52fcf2272133b9ef615f ****/ + /****** BRepTools::AddUVBounds ******/ + /****** md5 signature: ef861e4c373c52fcf2272133b9ef615f ******/ %feature("compactdefaultargs") AddUVBounds; %feature("autodoc", " Parameters @@ -197,8 +197,8 @@ Adds to the box the bounding values of the edge in the parametric space of f ") AddUVBounds; static void AddUVBounds(const TopoDS_Face & F, const TopoDS_Edge & E, Bnd_Box2d & B); - /****************** CheckLocations ******************/ - /**** md5 signature: 1df4d13b8eb09af8c12c5590b0f17a8c ****/ + /****** BRepTools::CheckLocations ******/ + /****** md5 signature: 1df4d13b8eb09af8c12c5590b0f17a8c ******/ %feature("compactdefaultargs") CheckLocations; %feature("autodoc", " Parameters @@ -216,8 +216,8 @@ Check all locations of shape according criterium: atrsf.isnegative() || (abs(abs ") CheckLocations; static void CheckLocations(const TopoDS_Shape & theS, TopTools_ListOfShape & theProblemShapes); - /****************** Clean ******************/ - /**** md5 signature: e69d53fa65ed6662d92131db242c5024 ****/ + /****** BRepTools::Clean ******/ + /****** md5 signature: e69d53fa65ed6662d92131db242c5024 ******/ %feature("compactdefaultargs") Clean; %feature("autodoc", " Parameters @@ -235,8 +235,8 @@ Removes all cached polygonal representation of the shape, i.e. the triangulation ") Clean; static void Clean(const TopoDS_Shape & theShape, const Standard_Boolean theForce = Standard_False); - /****************** CleanGeometry ******************/ - /**** md5 signature: ce6b6e89067b44b9c151c1e43c8e50e5 ****/ + /****** BRepTools::CleanGeometry ******/ + /****** md5 signature: ce6b6e89067b44b9c151c1e43c8e50e5 ******/ %feature("compactdefaultargs") CleanGeometry; %feature("autodoc", " Parameters @@ -253,8 +253,8 @@ Removes geometry (curves and surfaces) from all edges and faces of the shape. ") CleanGeometry; static void CleanGeometry(const TopoDS_Shape & theShape); - /****************** Compare ******************/ - /**** md5 signature: d9864c743fdc9bb7b025a48b72edcbec ****/ + /****** BRepTools::Compare ******/ + /****** md5 signature: d9864c743fdc9bb7b025a48b72edcbec ******/ %feature("compactdefaultargs") Compare; %feature("autodoc", " Parameters @@ -272,8 +272,8 @@ Returns true if the distance between the two vertices is lower than their tolera ") Compare; static Standard_Boolean Compare(const TopoDS_Vertex & V1, const TopoDS_Vertex & V2); - /****************** Compare ******************/ - /**** md5 signature: ea251f6848a69bbeaf8009fee744c62d ****/ + /****** BRepTools::Compare ******/ + /****** md5 signature: ea251f6848a69bbeaf8009fee744c62d ******/ %feature("compactdefaultargs") Compare; %feature("autodoc", " Parameters @@ -291,8 +291,8 @@ Returns true if the distance between the two edges is lower than their tolerance ") Compare; static Standard_Boolean Compare(const TopoDS_Edge & E1, const TopoDS_Edge & E2); - /****************** DetectClosedness ******************/ - /**** md5 signature: 6f98ec688487f1becf2d69d2cb328f32 ****/ + /****** BRepTools::DetectClosedness ******/ + /****** md5 signature: 6f98ec688487f1becf2d69d2cb328f32 ******/ %feature("compactdefaultargs") DetectClosedness; %feature("autodoc", " Parameters @@ -310,8 +310,8 @@ Detect closedness of face in u and v directions. ") DetectClosedness; static void DetectClosedness(const TopoDS_Face & theFace, Standard_Boolean &OutValue, Standard_Boolean &OutValue); - /****************** Dump ******************/ - /**** md5 signature: d8fbac42c489d0bae98b03b1387b21c5 ****/ + /****** BRepTools::Dump ******/ + /****** md5 signature: d8fbac42c489d0bae98b03b1387b21c5 ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", " Parameters @@ -328,8 +328,8 @@ Dumps the topological structure and the geometry of on the stream . ") Dump; static void Dump(const TopoDS_Shape & Sh, std::ostream &OutValue); - /****************** EvalAndUpdateTol ******************/ - /**** md5 signature: 16be652a9c224d56f94960b2cade0539 ****/ + /****** BRepTools::EvalAndUpdateTol ******/ + /****** md5 signature: 16be652a9c224d56f94960b2cade0539 ******/ %feature("compactdefaultargs") EvalAndUpdateTol; %feature("autodoc", " Parameters @@ -351,8 +351,8 @@ Evals real tolerance of edge . , , , , ") EvalAndUpdateTol; static Standard_Real EvalAndUpdateTol(const TopoDS_Edge & theE, const opencascade::handle & theC3d, const opencascade::handle & theC2d, const opencascade::handle & theS, const Standard_Real theF, const Standard_Real theL); - /****************** IsReallyClosed ******************/ - /**** md5 signature: d361112f12ce86c3a572783eb22c3dcb ****/ + /****** BRepTools::IsReallyClosed ******/ + /****** md5 signature: d361112f12ce86c3a572783eb22c3dcb ******/ %feature("compactdefaultargs") IsReallyClosed; %feature("autodoc", " Parameters @@ -370,8 +370,8 @@ Verifies that the edge is found two times on the face before calling bre ") IsReallyClosed; static Standard_Boolean IsReallyClosed(const TopoDS_Edge & E, const TopoDS_Face & F); - /****************** LoadAllTriangulations ******************/ - /**** md5 signature: 1466fd44e74f80d49ab3905c6d611afa ****/ + /****** BRepTools::LoadAllTriangulations ******/ + /****** md5 signature: 1466fd44e74f80d49ab3905c6d611afa ******/ %feature("compactdefaultargs") LoadAllTriangulations; %feature("autodoc", " Parameters @@ -389,8 +389,8 @@ Loads all available triangulations for each face of the shape from some deferred ") LoadAllTriangulations; static Standard_Boolean LoadAllTriangulations(const TopoDS_Shape & theShape, const opencascade::handle & theFileSystem = opencascade::handle()); - /****************** LoadTriangulation ******************/ - /**** md5 signature: 2b46d2fac9cc1acb805e26246d213be8 ****/ + /****** BRepTools::LoadTriangulation ******/ + /****** md5 signature: 2b46d2fac9cc1acb805e26246d213be8 ******/ %feature("compactdefaultargs") LoadTriangulation; %feature("autodoc", " Parameters @@ -410,8 +410,8 @@ Loads triangulation data for each face of the shape from some deferred storage u ") LoadTriangulation; static Standard_Boolean LoadTriangulation(const TopoDS_Shape & theShape, const Standard_Integer theTriangulationIdx = -1, const Standard_Boolean theToSetAsActive = Standard_False, const opencascade::handle & theFileSystem = opencascade::handle()); - /****************** Map3DEdges ******************/ - /**** md5 signature: affe8cc83d005936d51c3385b6fc5c16 ****/ + /****** BRepTools::Map3DEdges ******/ + /****** md5 signature: affe8cc83d005936d51c3385b6fc5c16 ******/ %feature("compactdefaultargs") Map3DEdges; %feature("autodoc", " Parameters @@ -429,8 +429,8 @@ Stores in the map all the 3d topology edges of . ") Map3DEdges; static void Map3DEdges(const TopoDS_Shape & S, TopTools_IndexedMapOfShape & M); - /****************** OriEdgeInFace ******************/ - /**** md5 signature: 87c7eb8c9c51ee951fa03577413800d5 ****/ + /****** BRepTools::OriEdgeInFace ******/ + /****** md5 signature: 87c7eb8c9c51ee951fa03577413800d5 ******/ %feature("compactdefaultargs") OriEdgeInFace; %feature("autodoc", " Parameters @@ -448,8 +448,8 @@ Returns the cumul of the orientation of and thc containing wire in ") OriEdgeInFace; static TopAbs_Orientation OriEdgeInFace(const TopoDS_Edge & theEdge, const TopoDS_Face & theFace); - /****************** OuterWire ******************/ - /**** md5 signature: 34752d857d2c349cc92d685bc3ac944f ****/ + /****** BRepTools::OuterWire ******/ + /****** md5 signature: 34752d857d2c349cc92d685bc3ac944f ******/ %feature("compactdefaultargs") OuterWire; %feature("autodoc", " Parameters @@ -466,8 +466,8 @@ Returns the outer most wire of . returns a null wire if has no wires. ") OuterWire; static TopoDS_Wire OuterWire(const TopoDS_Face & F); - /****************** Read ******************/ - /**** md5 signature: f8f4ebe237e52067b8c32d38777547cb ****/ + /****** BRepTools::Read ******/ + /****** md5 signature: f8f4ebe237e52067b8c32d38777547cb ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -487,8 +487,8 @@ Reads a shape from in returns it in . is used to build the shape. ") Read; static void Read(TopoDS_Shape & Sh, std::istream & S, const BRep_Builder & B, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Read ******************/ - /**** md5 signature: 5e5d6e702af29b2284954f484072b531 ****/ + /****** BRepTools::Read ******/ + /****** md5 signature: 5e5d6e702af29b2284954f484072b531 ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -508,8 +508,8 @@ Reads a shape from , returns it in . is used to build the shape. ") Read; static Standard_Boolean Read(TopoDS_Shape & Sh, Standard_CString File, const BRep_Builder & B, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** RemoveInternals ******************/ - /**** md5 signature: fb7d53f36648eea1919fdf6c0fb177b1 ****/ + /****** BRepTools::RemoveInternals ******/ + /****** md5 signature: fb7d53f36648eea1919fdf6c0fb177b1 ******/ %feature("compactdefaultargs") RemoveInternals; %feature("autodoc", " Parameters @@ -527,8 +527,8 @@ Removes internal sub-shapes from the shape. the check on internal status is base ") RemoveInternals; static void RemoveInternals(TopoDS_Shape & theS, const Standard_Boolean theForce = Standard_False); - /****************** RemoveUnusedPCurves ******************/ - /**** md5 signature: eda361bf0d5c24ff50f23619c0d11b07 ****/ + /****** BRepTools::RemoveUnusedPCurves ******/ + /****** md5 signature: eda361bf0d5c24ff50f23619c0d11b07 ******/ %feature("compactdefaultargs") RemoveUnusedPCurves; %feature("autodoc", " Parameters @@ -545,8 +545,8 @@ Removes all the pcurves of the edges of that refer to surfaces not belonging ") RemoveUnusedPCurves; static void RemoveUnusedPCurves(const TopoDS_Shape & S); - /****************** Triangulation ******************/ - /**** md5 signature: 972fc5cfded2376997f1670bb657d434 ****/ + /****** BRepTools::Triangulation ******/ + /****** md5 signature: 972fc5cfded2376997f1670bb657d434 ******/ %feature("compactdefaultargs") Triangulation; %feature("autodoc", " Parameters @@ -565,8 +565,8 @@ Verifies that each face from the shape has got a triangulation with a deflection ") Triangulation; static Standard_Boolean Triangulation(const TopoDS_Shape & theShape, const Standard_Real theLinDefl, const Standard_Boolean theToCheckFreeEdges = Standard_False); - /****************** UVBounds ******************/ - /**** md5 signature: 0269b57f10dffa44e1c436bbfecc00b6 ****/ + /****** BRepTools::UVBounds ******/ + /****** md5 signature: 0269b57f10dffa44e1c436bbfecc00b6 ******/ %feature("compactdefaultargs") UVBounds; %feature("autodoc", " Parameters @@ -586,8 +586,8 @@ Returns in umin, umax, vmin, vmax the bounding values in the parametric space of ") UVBounds; static void UVBounds(const TopoDS_Face & F, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** UVBounds ******************/ - /**** md5 signature: cf2651b439566177e86079e036f0f456 ****/ + /****** BRepTools::UVBounds ******/ + /****** md5 signature: cf2651b439566177e86079e036f0f456 ******/ %feature("compactdefaultargs") UVBounds; %feature("autodoc", " Parameters @@ -608,8 +608,8 @@ Returns in umin, umax, vmin, vmax the bounding values of the wire in the paramet ") UVBounds; static void UVBounds(const TopoDS_Face & F, const TopoDS_Wire & W, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** UVBounds ******************/ - /**** md5 signature: 391e5b8ffac33b45d944cc1daf0ae4d7 ****/ + /****** BRepTools::UVBounds ******/ + /****** md5 signature: 391e5b8ffac33b45d944cc1daf0ae4d7 ******/ %feature("compactdefaultargs") UVBounds; %feature("autodoc", " Parameters @@ -630,8 +630,8 @@ Returns in umin, umax, vmin, vmax the bounding values of the edge in the paramet ") UVBounds; static void UVBounds(const TopoDS_Face & F, const TopoDS_Edge & E, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** UnloadAllTriangulations ******************/ - /**** md5 signature: 8efc2f1bae963a37e143369fac101307 ****/ + /****** BRepTools::UnloadAllTriangulations ******/ + /****** md5 signature: 8efc2f1bae963a37e143369fac101307 ******/ %feature("compactdefaultargs") UnloadAllTriangulations; %feature("autodoc", " Parameters @@ -648,8 +648,8 @@ Releases all available triangulations for each face of the shape if there is def ") UnloadAllTriangulations; static Standard_Boolean UnloadAllTriangulations(const TopoDS_Shape & theShape); - /****************** UnloadTriangulation ******************/ - /**** md5 signature: 4cba1ffb2b2a96847b88c3a4736d9bea ****/ + /****** BRepTools::UnloadTriangulation ******/ + /****** md5 signature: 4cba1ffb2b2a96847b88c3a4736d9bea ******/ %feature("compactdefaultargs") UnloadTriangulation; %feature("autodoc", " Parameters @@ -667,8 +667,8 @@ Releases triangulation data for each face of the shape if there is deferred stor ") UnloadTriangulation; static Standard_Boolean UnloadTriangulation(const TopoDS_Shape & theShape, const Standard_Integer theTriangulationIdx = -1); - /****************** Update ******************/ - /**** md5 signature: 7afb8b0a0ac818d408265e5c3ffb8146 ****/ + /****** BRepTools::Update ******/ + /****** md5 signature: 7afb8b0a0ac818d408265e5c3ffb8146 ******/ %feature("compactdefaultargs") Update; %feature("autodoc", " Parameters @@ -685,8 +685,8 @@ Update a vertex (nothing is done). ") Update; static void Update(const TopoDS_Vertex & V); - /****************** Update ******************/ - /**** md5 signature: 75c7d58dbc644899f41cf6f457451a08 ****/ + /****** BRepTools::Update ******/ + /****** md5 signature: 75c7d58dbc644899f41cf6f457451a08 ******/ %feature("compactdefaultargs") Update; %feature("autodoc", " Parameters @@ -703,8 +703,8 @@ Update an edge, compute 2d bounding boxes. ") Update; static void Update(const TopoDS_Edge & E); - /****************** Update ******************/ - /**** md5 signature: e94ec159f4082b5b4f1a0f416dd78ef6 ****/ + /****** BRepTools::Update ******/ + /****** md5 signature: e94ec159f4082b5b4f1a0f416dd78ef6 ******/ %feature("compactdefaultargs") Update; %feature("autodoc", " Parameters @@ -721,8 +721,8 @@ Update a wire (nothing is done). ") Update; static void Update(const TopoDS_Wire & W); - /****************** Update ******************/ - /**** md5 signature: 193444ef19754736bfcad5d390c79b81 ****/ + /****** BRepTools::Update ******/ + /****** md5 signature: 193444ef19754736bfcad5d390c79b81 ******/ %feature("compactdefaultargs") Update; %feature("autodoc", " Parameters @@ -739,8 +739,8 @@ Update a face, update uv points. ") Update; static void Update(const TopoDS_Face & F); - /****************** Update ******************/ - /**** md5 signature: cd320ec7b49cbbb658b6ae7b12c77502 ****/ + /****** BRepTools::Update ******/ + /****** md5 signature: cd320ec7b49cbbb658b6ae7b12c77502 ******/ %feature("compactdefaultargs") Update; %feature("autodoc", " Parameters @@ -757,8 +757,8 @@ Update a shell (nothing is done). ") Update; static void Update(const TopoDS_Shell & S); - /****************** Update ******************/ - /**** md5 signature: bdc63e26362e00a362c3b8c586bfa0bc ****/ + /****** BRepTools::Update ******/ + /****** md5 signature: bdc63e26362e00a362c3b8c586bfa0bc ******/ %feature("compactdefaultargs") Update; %feature("autodoc", " Parameters @@ -775,8 +775,8 @@ Update a solid (nothing is done). ") Update; static void Update(const TopoDS_Solid & S); - /****************** Update ******************/ - /**** md5 signature: 6ae6e8f41b41837e6e3794345f0c75eb ****/ + /****** BRepTools::Update ******/ + /****** md5 signature: 6ae6e8f41b41837e6e3794345f0c75eb ******/ %feature("compactdefaultargs") Update; %feature("autodoc", " Parameters @@ -793,8 +793,8 @@ Update a composite solid (nothing is done). ") Update; static void Update(const TopoDS_CompSolid & C); - /****************** Update ******************/ - /**** md5 signature: c12942ef044e979c45933c3cc101f35a ****/ + /****** BRepTools::Update ******/ + /****** md5 signature: c12942ef044e979c45933c3cc101f35a ******/ %feature("compactdefaultargs") Update; %feature("autodoc", " Parameters @@ -811,8 +811,8 @@ Update a compound (nothing is done). ") Update; static void Update(const TopoDS_Compound & C); - /****************** Update ******************/ - /**** md5 signature: 9df60fcab5eff3782584302cfec917cf ****/ + /****** BRepTools::Update ******/ + /****** md5 signature: 9df60fcab5eff3782584302cfec917cf ******/ %feature("compactdefaultargs") Update; %feature("autodoc", " Parameters @@ -829,8 +829,8 @@ Update a shape, call the correct update. ") Update; static void Update(const TopoDS_Shape & S); - /****************** UpdateFaceUVPoints ******************/ - /**** md5 signature: e8c9eb4d0ff9126a91f4898669b73d9f ****/ + /****** BRepTools::UpdateFaceUVPoints ******/ + /****** md5 signature: e8c9eb4d0ff9126a91f4898669b73d9f ******/ %feature("compactdefaultargs") UpdateFaceUVPoints; %feature("autodoc", " Parameters @@ -847,8 +847,8 @@ For each edge of the face reset the uv points to the bounding points of the ") UpdateFaceUVPoints; static void UpdateFaceUVPoints(const TopoDS_Face & theF); - /****************** Write ******************/ - /**** md5 signature: 92da105c9c540199f80c0283d45c56e0 ****/ + /****** BRepTools::Write ******/ + /****** md5 signature: 92da105c9c540199f80c0283d45c56e0 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -866,8 +866,8 @@ Writes the shape to the stream in an ascii format toptools_formatversion_version ") Write; static void Write(const TopoDS_Shape & theShape, std::ostream &OutValue, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Write ******************/ - /**** md5 signature: 9549ae676c065d5541189e667b74dffd ****/ + /****** BRepTools::Write ******/ + /****** md5 signature: 9549ae676c065d5541189e667b74dffd ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -888,8 +888,8 @@ Writes the shape to the stream in an ascii format of specified version. @param t ") Write; static void Write(const TopoDS_Shape & theShape, std::ostream &OutValue, const Standard_Boolean theWithTriangles, const Standard_Boolean theWithNormals, const TopTools_FormatVersion theVersion, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Write ******************/ - /**** md5 signature: 2b0742433c64d0c04f4d2d4d98afcfa2 ****/ + /****** BRepTools::Write ******/ + /****** md5 signature: 2b0742433c64d0c04f4d2d4d98afcfa2 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -908,8 +908,8 @@ Writes the shape to the file in an ascii format toptools_formatversion_version_1 ") Write; static Standard_Boolean Write(const TopoDS_Shape & theShape, Standard_CString theFile, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Write ******************/ - /**** md5 signature: 094fc04abd54fdb9dea8b811e19f6844 ****/ + /****** BRepTools::Write ******/ + /****** md5 signature: 094fc04abd54fdb9dea8b811e19f6844 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -988,8 +988,8 @@ TRelationType_Modified = TRelationType.TRelationType_Modified }; /* end python proxy for enums */ - /****************** BRepTools_History ******************/ - /**** md5 signature: 4a35f50a2b6bb1bb1303ad7d8374073c ****/ + /****** BRepTools_History::BRepTools_History ******/ + /****** md5 signature: 4a35f50a2b6bb1bb1303ad7d8374073c ******/ %feature("compactdefaultargs") BRepTools_History; %feature("autodoc", "Return ------- @@ -1001,8 +1001,8 @@ Empty constructor. ") BRepTools_History; BRepTools_History(); - /****************** AddGenerated ******************/ - /**** md5 signature: a7f4c29c6486250bd1401110ad1490c1 ****/ + /****** BRepTools_History::AddGenerated ******/ + /****** md5 signature: a7f4c29c6486250bd1401110ad1490c1 ******/ %feature("compactdefaultargs") AddGenerated; %feature("autodoc", " Parameters @@ -1020,8 +1020,8 @@ Set the second shape as generated one from the first shape. ") AddGenerated; void AddGenerated(const TopoDS_Shape & theInitial, const TopoDS_Shape & theGenerated); - /****************** AddModified ******************/ - /**** md5 signature: d31865ed0e0ff3990c9c3d0d7d986449 ****/ + /****** BRepTools_History::AddModified ******/ + /****** md5 signature: d31865ed0e0ff3990c9c3d0d7d986449 ******/ %feature("compactdefaultargs") AddModified; %feature("autodoc", " Parameters @@ -1039,8 +1039,8 @@ Set the second shape as modified one from the first shape. ") AddModified; void AddModified(const TopoDS_Shape & theInitial, const TopoDS_Shape & theModified); - /****************** Clear ******************/ - /**** md5 signature: 75abd67f132413fc11c19201aabf1126 ****/ + /****** BRepTools_History::Clear ******/ + /****** md5 signature: 75abd67f132413fc11c19201aabf1126 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -1052,8 +1052,8 @@ Clears the history. ") Clear; void Clear(); - /****************** Dump ******************/ - /**** md5 signature: b0b4810c084d0c0f210602a019840cff ****/ + /****** BRepTools_History::Dump ******/ + /****** md5 signature: b0b4810c084d0c0f210602a019840cff ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", " Parameters @@ -1069,8 +1069,8 @@ Prints the brief description of the history into a stream. ") Dump; void Dump(std::ostream &OutValue); - /****************** Generated ******************/ - /**** md5 signature: 308ecbb5e9f94e72f26d5a5fd518be68 ****/ + /****** BRepTools_History::Generated ******/ + /****** md5 signature: 308ecbb5e9f94e72f26d5a5fd518be68 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -1087,8 +1087,8 @@ No available documentation. ") Generated; const TopTools_ListOfShape & Generated(const TopoDS_Shape & theInitial); - /****************** HasGenerated ******************/ - /**** md5 signature: ff1185ae4caf1307e4399403e704df0a ****/ + /****** BRepTools_History::HasGenerated ******/ + /****** md5 signature: ff1185ae4caf1307e4399403e704df0a ******/ %feature("compactdefaultargs") HasGenerated; %feature("autodoc", "Return ------- @@ -1100,8 +1100,8 @@ Returns 'true' if there any shapes with generated elements present. ") HasGenerated; Standard_Boolean HasGenerated(); - /****************** HasModified ******************/ - /**** md5 signature: 5aa09ad744ac71dd47a6ec381a33bc9b ****/ + /****** BRepTools_History::HasModified ******/ + /****** md5 signature: 5aa09ad744ac71dd47a6ec381a33bc9b ******/ %feature("compactdefaultargs") HasModified; %feature("autodoc", "Return ------- @@ -1113,8 +1113,8 @@ Returns 'true' if there any modified shapes present. ") HasModified; Standard_Boolean HasModified(); - /****************** HasRemoved ******************/ - /**** md5 signature: 1f7754be1a6483911c8c9a17053ce192 ****/ + /****** BRepTools_History::HasRemoved ******/ + /****** md5 signature: 1f7754be1a6483911c8c9a17053ce192 ******/ %feature("compactdefaultargs") HasRemoved; %feature("autodoc", "Return ------- @@ -1126,8 +1126,8 @@ Returns 'true' if there any removed shapes present. ") HasRemoved; Standard_Boolean HasRemoved(); - /****************** IsRemoved ******************/ - /**** md5 signature: bc824baa664531040b00c34aff9af72f ****/ + /****** BRepTools_History::IsRemoved ******/ + /****** md5 signature: bc824baa664531040b00c34aff9af72f ******/ %feature("compactdefaultargs") IsRemoved; %feature("autodoc", " Parameters @@ -1144,8 +1144,8 @@ No available documentation. ") IsRemoved; Standard_Boolean IsRemoved(const TopoDS_Shape & theInitial); - /****************** IsSupportedType ******************/ - /**** md5 signature: 3c207fad38f59a2d3b9937a047c347e9 ****/ + /****** BRepTools_History::IsSupportedType ******/ + /****** md5 signature: 3c207fad38f59a2d3b9937a047c347e9 ******/ %feature("compactdefaultargs") IsSupportedType; %feature("autodoc", " Parameters @@ -1162,8 +1162,8 @@ Returns 'true' if the type of the shape is supported by the history. ") IsSupportedType; static Standard_Boolean IsSupportedType(const TopoDS_Shape & theShape); - /****************** Merge ******************/ - /**** md5 signature: fb045f600989a1f096e90b81d587d65a ****/ + /****** BRepTools_History::Merge ******/ + /****** md5 signature: fb045f600989a1f096e90b81d587d65a ******/ %feature("compactdefaultargs") Merge; %feature("autodoc", " Parameters @@ -1180,8 +1180,8 @@ Merges the next history to this history. ") Merge; void Merge(const opencascade::handle & theHistory23); - /****************** Merge ******************/ - /**** md5 signature: bcea4b93e38784928b17c2d0cc2cf68c ****/ + /****** BRepTools_History::Merge ******/ + /****** md5 signature: bcea4b93e38784928b17c2d0cc2cf68c ******/ %feature("compactdefaultargs") Merge; %feature("autodoc", " Parameters @@ -1198,8 +1198,8 @@ Merges the next history to this history. ") Merge; void Merge(const BRepTools_History & theHistory23); - /****************** Modified ******************/ - /**** md5 signature: ea431397963162255277d1bdbac78ef8 ****/ + /****** BRepTools_History::Modified ******/ + /****** md5 signature: ea431397963162255277d1bdbac78ef8 ******/ %feature("compactdefaultargs") Modified; %feature("autodoc", " Parameters @@ -1216,8 +1216,8 @@ No available documentation. ") Modified; const TopTools_ListOfShape & Modified(const TopoDS_Shape & theInitial); - /****************** Remove ******************/ - /**** md5 signature: a8343648976f365b1287e3131759ecb4 ****/ + /****** BRepTools_History::Remove ******/ + /****** md5 signature: a8343648976f365b1287e3131759ecb4 ******/ %feature("compactdefaultargs") Remove; %feature("autodoc", " Parameters @@ -1234,8 +1234,8 @@ Set the shape as removed one. ") Remove; void Remove(const TopoDS_Shape & theRemoved); - /****************** ReplaceGenerated ******************/ - /**** md5 signature: 25c9bb6bb06d4ed50a5e744f0c6faf57 ****/ + /****** BRepTools_History::ReplaceGenerated ******/ + /****** md5 signature: 25c9bb6bb06d4ed50a5e744f0c6faf57 ******/ %feature("compactdefaultargs") ReplaceGenerated; %feature("autodoc", " Parameters @@ -1253,8 +1253,8 @@ Set the second shape as the only generated one from the first one. ") ReplaceGenerated; void ReplaceGenerated(const TopoDS_Shape & theInitial, const TopoDS_Shape & theGenerated); - /****************** ReplaceModified ******************/ - /**** md5 signature: ac9575b491e5181e9890ae4864af94fd ****/ + /****** BRepTools_History::ReplaceModified ******/ + /****** md5 signature: ac9575b491e5181e9890ae4864af94fd ******/ %feature("compactdefaultargs") ReplaceModified; %feature("autodoc", " Parameters @@ -1289,8 +1289,8 @@ Set the second shape as the only modified one from the first one. %nodefaultctor BRepTools_Modification; class BRepTools_Modification : public Standard_Transient { public: - /****************** Continuity ******************/ - /**** md5 signature: 327dab83ea17f6338d19fb9f7a784f74 ****/ + /****** BRepTools_Modification::Continuity ******/ + /****** md5 signature: 327dab83ea17f6338d19fb9f7a784f74 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", " Parameters @@ -1312,8 +1312,8 @@ Returns the continuity of between and . is the new ") Continuity; virtual GeomAbs_Shape Continuity(const TopoDS_Edge & E, const TopoDS_Face & F1, const TopoDS_Face & F2, const TopoDS_Edge & NewE, const TopoDS_Face & NewF1, const TopoDS_Face & NewF2); - /****************** NewCurve ******************/ - /**** md5 signature: e731ccfa98ea2d1f88ad9904cdb8580b ****/ + /****** BRepTools_Modification::NewCurve ******/ + /****** md5 signature: e731ccfa98ea2d1f88ad9904cdb8580b ******/ %feature("compactdefaultargs") NewCurve; %feature("autodoc", " Parameters @@ -1332,8 +1332,8 @@ Returns true if the edge, e, has been modified. if the edge has been modified: - ") NewCurve; virtual Standard_Boolean NewCurve(const TopoDS_Edge & E, opencascade::handle & C, TopLoc_Location & L, Standard_Real &OutValue); - /****************** NewCurve2d ******************/ - /**** md5 signature: 0af12e9360877e2b67306368eb4ae813 ****/ + /****** BRepTools_Modification::NewCurve2d ******/ + /****** md5 signature: 0af12e9360877e2b67306368eb4ae813 ******/ %feature("compactdefaultargs") NewCurve2d; %feature("autodoc", " Parameters @@ -1354,8 +1354,8 @@ Returns true if the edge, e, has a new curve on surface on the face, f. if a new ") NewCurve2d; virtual Standard_Boolean NewCurve2d(const TopoDS_Edge & E, const TopoDS_Face & F, const TopoDS_Edge & NewE, const TopoDS_Face & NewF, opencascade::handle & C, Standard_Real &OutValue); - /****************** NewParameter ******************/ - /**** md5 signature: 0c5e9b0fefa1a6f700191b9504565426 ****/ + /****** BRepTools_Modification::NewParameter ******/ + /****** md5 signature: 0c5e9b0fefa1a6f700191b9504565426 ******/ %feature("compactdefaultargs") NewParameter; %feature("autodoc", " Parameters @@ -1374,8 +1374,8 @@ Returns true if the vertex v has a new parameter on the edge e. if a new paramet ") NewParameter; virtual Standard_Boolean NewParameter(const TopoDS_Vertex & V, const TopoDS_Edge & E, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** NewPoint ******************/ - /**** md5 signature: 2fb046cddcce6758637c814e34a55748 ****/ + /****** BRepTools_Modification::NewPoint ******/ + /****** md5 signature: 2fb046cddcce6758637c814e34a55748 ******/ %feature("compactdefaultargs") NewPoint; %feature("autodoc", " Parameters @@ -1393,8 +1393,8 @@ Returns true if the vertex v has been modified. if v has been modified: - p is t ") NewPoint; virtual Standard_Boolean NewPoint(const TopoDS_Vertex & V, gp_Pnt & P, Standard_Real &OutValue); - /****************** NewPolygon ******************/ - /**** md5 signature: b0c2343155499ca0843ae489f5327afa ****/ + /****** BRepTools_Modification::NewPolygon ******/ + /****** md5 signature: b0c2343155499ca0843ae489f5327afa ******/ %feature("compactdefaultargs") NewPolygon; %feature("autodoc", " Parameters @@ -1412,8 +1412,8 @@ Returns true if the edge has been modified according to changed polygon. if the ") NewPolygon; virtual Standard_Boolean NewPolygon(const TopoDS_Edge & E, opencascade::handle & P); - /****************** NewPolygonOnTriangulation ******************/ - /**** md5 signature: 08792ffffa027e5d1a6d02cffa1e25ed ****/ + /****** BRepTools_Modification::NewPolygonOnTriangulation ******/ + /****** md5 signature: 08792ffffa027e5d1a6d02cffa1e25ed ******/ %feature("compactdefaultargs") NewPolygonOnTriangulation; %feature("autodoc", " Parameters @@ -1432,8 +1432,8 @@ Returns true if the edge has been modified according to changed polygon on trian ") NewPolygonOnTriangulation; virtual Standard_Boolean NewPolygonOnTriangulation(const TopoDS_Edge & E, const TopoDS_Face & F, opencascade::handle & P); - /****************** NewSurface ******************/ - /**** md5 signature: dd73e38c6b05808e5cd8b3f3a16d1622 ****/ + /****** BRepTools_Modification::NewSurface ******/ + /****** md5 signature: dd73e38c6b05808e5cd8b3f3a16d1622 ******/ %feature("compactdefaultargs") NewSurface; %feature("autodoc", " Parameters @@ -1454,8 +1454,8 @@ Returns true if the face, f, has been modified. if the face has been modified: - ") NewSurface; virtual Standard_Boolean NewSurface(const TopoDS_Face & F, opencascade::handle & S, TopLoc_Location & L, Standard_Real &OutValue, Standard_Boolean &OutValue, Standard_Boolean &OutValue); - /****************** NewTriangulation ******************/ - /**** md5 signature: f0901b76e1a62f62904c45437e3ce1ec ****/ + /****** BRepTools_Modification::NewTriangulation ******/ + /****** md5 signature: f0901b76e1a62f62904c45437e3ce1ec ******/ %feature("compactdefaultargs") NewTriangulation; %feature("autodoc", " Parameters @@ -1491,8 +1491,8 @@ class BRepTools_Modifier { public: class NewCurveInfo {}; class NewSurfaceInfo {}; - /****************** BRepTools_Modifier ******************/ - /**** md5 signature: b7f2e5942eb530b143535b1aab4117b4 ****/ + /****** BRepTools_Modifier::BRepTools_Modifier ******/ + /****** md5 signature: b7f2e5942eb530b143535b1aab4117b4 ******/ %feature("compactdefaultargs") BRepTools_Modifier; %feature("autodoc", " Parameters @@ -1509,8 +1509,8 @@ Creates an empty modifier. ") BRepTools_Modifier; BRepTools_Modifier(Standard_Boolean theMutableInput = Standard_False); - /****************** BRepTools_Modifier ******************/ - /**** md5 signature: 584542a473e07d531ee3f85adf59a3c0 ****/ + /****** BRepTools_Modifier::BRepTools_Modifier ******/ + /****** md5 signature: 584542a473e07d531ee3f85adf59a3c0 ******/ %feature("compactdefaultargs") BRepTools_Modifier; %feature("autodoc", " Parameters @@ -1527,8 +1527,8 @@ Creates a modifier on the shape . ") BRepTools_Modifier; BRepTools_Modifier(const TopoDS_Shape & S); - /****************** BRepTools_Modifier ******************/ - /**** md5 signature: e44fe225e6258049e6038d3b00ddfe6a ****/ + /****** BRepTools_Modifier::BRepTools_Modifier ******/ + /****** md5 signature: e44fe225e6258049e6038d3b00ddfe6a ******/ %feature("compactdefaultargs") BRepTools_Modifier; %feature("autodoc", " Parameters @@ -1546,8 +1546,8 @@ Creates a modifier on the shape , and performs the modifications described by ") BRepTools_Modifier; BRepTools_Modifier(const TopoDS_Shape & S, const opencascade::handle & M); - /****************** Init ******************/ - /**** md5 signature: 5b69b32485b3d9f82ae4abb9c853c3c7 ****/ + /****** BRepTools_Modifier::Init ******/ + /****** md5 signature: 5b69b32485b3d9f82ae4abb9c853c3c7 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -1564,8 +1564,8 @@ Initializes the modifier with the shape . ") Init; void Init(const TopoDS_Shape & S); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepTools_Modifier::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -1577,8 +1577,8 @@ Returns standard_true if the modification has been computed successfully. ") IsDone; Standard_Boolean IsDone(); - /****************** IsMutableInput ******************/ - /**** md5 signature: 2df16e5a957577cfce65832aa2d90512 ****/ + /****** BRepTools_Modifier::IsMutableInput ******/ + /****** md5 signature: 2df16e5a957577cfce65832aa2d90512 ******/ %feature("compactdefaultargs") IsMutableInput; %feature("autodoc", "Return ------- @@ -1590,8 +1590,8 @@ Returns the current mutable input state. ") IsMutableInput; Standard_Boolean IsMutableInput(); - /****************** ModifiedShape ******************/ - /**** md5 signature: 545825cbb62be8a9e387c35da6258fdd ****/ + /****** BRepTools_Modifier::ModifiedShape ******/ + /****** md5 signature: 545825cbb62be8a9e387c35da6258fdd ******/ %feature("compactdefaultargs") ModifiedShape; %feature("autodoc", " Parameters @@ -1608,8 +1608,8 @@ Returns the modified shape corresponding to . ") ModifiedShape; const TopoDS_Shape ModifiedShape(const TopoDS_Shape & S); - /****************** Perform ******************/ - /**** md5 signature: b63519215f9ace048cd4db5238b4ba74 ****/ + /****** BRepTools_Modifier::Perform ******/ + /****** md5 signature: b63519215f9ace048cd4db5238b4ba74 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1627,8 +1627,8 @@ Performs the modifications described by . ") Perform; void Perform(const opencascade::handle & M, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** SetMutableInput ******************/ - /**** md5 signature: 6c32097d8325b4484ad8639e59aae59a ****/ + /****** BRepTools_Modifier::SetMutableInput ******/ + /****** md5 signature: 6c32097d8325b4484ad8639e59aae59a ******/ %feature("compactdefaultargs") SetMutableInput; %feature("autodoc", " Parameters @@ -1659,8 +1659,8 @@ Sets the mutable input state if true then the input (original) shape can be modi *********************************/ class BRepTools_PurgeLocations { public: - /****************** BRepTools_PurgeLocations ******************/ - /**** md5 signature: 9513db51b5a43ee1b3299e06ca1ed72b ****/ + /****** BRepTools_PurgeLocations::BRepTools_PurgeLocations ******/ + /****** md5 signature: 9513db51b5a43ee1b3299e06ca1ed72b ******/ %feature("compactdefaultargs") BRepTools_PurgeLocations; %feature("autodoc", "Return ------- @@ -1672,8 +1672,8 @@ No available documentation. ") BRepTools_PurgeLocations; BRepTools_PurgeLocations(); - /****************** GetResult ******************/ - /**** md5 signature: 644080adee2e79b6fe88d2909c00da36 ****/ + /****** BRepTools_PurgeLocations::GetResult ******/ + /****** md5 signature: 644080adee2e79b6fe88d2909c00da36 ******/ %feature("compactdefaultargs") GetResult; %feature("autodoc", "Return ------- @@ -1685,8 +1685,8 @@ Returns shape with removed locations. ") GetResult; const TopoDS_Shape GetResult(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BRepTools_PurgeLocations::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -1698,8 +1698,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** Perform ******************/ - /**** md5 signature: 786dd7c6d1fd4e873da2af6e25b6f283 ****/ + /****** BRepTools_PurgeLocations::Perform ******/ + /****** md5 signature: 786dd7c6d1fd4e873da2af6e25b6f283 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1734,8 +1734,8 @@ Removes all locations correspodingly to criterium from theshape. ************************/ class BRepTools_Quilt { public: - /****************** BRepTools_Quilt ******************/ - /**** md5 signature: 0d7bfddd3eabfea30683c76c0547365b ****/ + /****** BRepTools_Quilt::BRepTools_Quilt ******/ + /****** md5 signature: 0d7bfddd3eabfea30683c76c0547365b ******/ %feature("compactdefaultargs") BRepTools_Quilt; %feature("autodoc", "Return ------- @@ -1747,8 +1747,8 @@ No available documentation. ") BRepTools_Quilt; BRepTools_Quilt(); - /****************** Add ******************/ - /**** md5 signature: e50695db6dd8df4df414a026111dbdd9 ****/ + /****** BRepTools_Quilt::Add ******/ + /****** md5 signature: e50695db6dd8df4df414a026111dbdd9 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1765,8 +1765,8 @@ Add the faces of to the quilt, the faces containing bounded edges are copied ") Add; void Add(const TopoDS_Shape & S); - /****************** Bind ******************/ - /**** md5 signature: ec618fc1d65b8960608254ca79c51ea1 ****/ + /****** BRepTools_Quilt::Bind ******/ + /****** md5 signature: ec618fc1d65b8960608254ca79c51ea1 ******/ %feature("compactdefaultargs") Bind; %feature("autodoc", " Parameters @@ -1784,8 +1784,8 @@ Binds to be the new edge instead of . //! the faces of the added sh ") Bind; void Bind(const TopoDS_Edge & Eold, const TopoDS_Edge & Enew); - /****************** Bind ******************/ - /**** md5 signature: e5a47ea3d24dd96178dafba218ae9801 ****/ + /****** BRepTools_Quilt::Bind ******/ + /****** md5 signature: e5a47ea3d24dd96178dafba218ae9801 ******/ %feature("compactdefaultargs") Bind; %feature("autodoc", " Parameters @@ -1803,8 +1803,8 @@ Binds to be a new vertex instead of . //! the faces of the added sh ") Bind; void Bind(const TopoDS_Vertex & Vold, const TopoDS_Vertex & Vnew); - /****************** Copy ******************/ - /**** md5 signature: e9cf9778b56b3dc4375f50a8fb82f016 ****/ + /****** BRepTools_Quilt::Copy ******/ + /****** md5 signature: e9cf9778b56b3dc4375f50a8fb82f016 ******/ %feature("compactdefaultargs") Copy; %feature("autodoc", " Parameters @@ -1821,8 +1821,8 @@ Returns the shape substituted to in the quilt. ") Copy; const TopoDS_Shape Copy(const TopoDS_Shape & S); - /****************** IsCopied ******************/ - /**** md5 signature: 700aa9864844136ce24021c380aa2705 ****/ + /****** BRepTools_Quilt::IsCopied ******/ + /****** md5 signature: 700aa9864844136ce24021c380aa2705 ******/ %feature("compactdefaultargs") IsCopied; %feature("autodoc", " Parameters @@ -1839,8 +1839,8 @@ Returns true if has been copied ( is a vertex, an edge or a face). ") IsCopied; Standard_Boolean IsCopied(const TopoDS_Shape & S); - /****************** Shells ******************/ - /**** md5 signature: 9d6052389d3b198b83d490121f90cf0d ****/ + /****** BRepTools_Quilt::Shells ******/ + /****** md5 signature: 9d6052389d3b198b83d490121f90cf0d ******/ %feature("compactdefaultargs") Shells; %feature("autodoc", "Return ------- @@ -1867,8 +1867,8 @@ Returns a compound of shells made from the current set of faces. the shells will class BRepTools_ReShape : public Standard_Transient { public: class TReplacement {}; - /****************** BRepTools_ReShape ******************/ - /**** md5 signature: aa9561a4d5bc7ab12692c5c25b0f20fb ****/ + /****** BRepTools_ReShape::BRepTools_ReShape ******/ + /****** md5 signature: aa9561a4d5bc7ab12692c5c25b0f20fb ******/ %feature("compactdefaultargs") BRepTools_ReShape; %feature("autodoc", "Return ------- @@ -1880,8 +1880,8 @@ Returns an empty reshape. ") BRepTools_ReShape; BRepTools_ReShape(); - /****************** Apply ******************/ - /**** md5 signature: 48965752374805b76b32c4d1ffbb713b ****/ + /****** BRepTools_ReShape::Apply ******/ + /****** md5 signature: 48965752374805b76b32c4d1ffbb713b ******/ %feature("compactdefaultargs") Apply; %feature("autodoc", " Parameters @@ -1899,8 +1899,8 @@ Applies the substitutions requests to a shape. //! theuntil gives the level of t ") Apply; virtual TopoDS_Shape Apply(const TopoDS_Shape & theShape, const TopAbs_ShapeEnum theUntil = TopAbs_SHAPE); - /****************** Clear ******************/ - /**** md5 signature: 1badd2d119b64dbdb177834e510c3af9 ****/ + /****** BRepTools_ReShape::Clear ******/ + /****** md5 signature: 1badd2d119b64dbdb177834e510c3af9 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -1912,8 +1912,8 @@ Clears all substitutions requests. ") Clear; virtual void Clear(); - /****************** CopyVertex ******************/ - /**** md5 signature: 838d38640335aa32a1ea9ebb59e57f7b ****/ + /****** BRepTools_ReShape::CopyVertex ******/ + /****** md5 signature: 838d38640335aa32a1ea9ebb59e57f7b ******/ %feature("compactdefaultargs") CopyVertex; %feature("autodoc", " Parameters @@ -1931,8 +1931,8 @@ Returns modified copy of vertex if original one is not recorded or returns modif ") CopyVertex; TopoDS_Vertex CopyVertex(const TopoDS_Vertex & theV, const Standard_Real theTol = -1.0); - /****************** CopyVertex ******************/ - /**** md5 signature: fdb0a72ad6a04ff2d668de1e997a5b36 ****/ + /****** BRepTools_ReShape::CopyVertex ******/ + /****** md5 signature: fdb0a72ad6a04ff2d668de1e997a5b36 ******/ %feature("compactdefaultargs") CopyVertex; %feature("autodoc", " Parameters @@ -1951,8 +1951,8 @@ Returns modified copy of vertex if original one is not recorded or returns modif ") CopyVertex; TopoDS_Vertex CopyVertex(const TopoDS_Vertex & theV, const gp_Pnt & theNewPos, const Standard_Real aTol); - /****************** History ******************/ - /**** md5 signature: e896eaef669d2669cca4958a811f4ae5 ****/ + /****** BRepTools_ReShape::History ******/ + /****** md5 signature: e896eaef669d2669cca4958a811f4ae5 ******/ %feature("compactdefaultargs") History; %feature("autodoc", "Return ------- @@ -1964,8 +1964,8 @@ Returns the history of the substituted shapes. ") History; opencascade::handle History(); - /****************** IsNewShape ******************/ - /**** md5 signature: 8bc75716e49666835740977e4499fb70 ****/ + /****** BRepTools_ReShape::IsNewShape ******/ + /****** md5 signature: 8bc75716e49666835740977e4499fb70 ******/ %feature("compactdefaultargs") IsNewShape; %feature("autodoc", " Parameters @@ -1982,8 +1982,8 @@ Checks if shape has been recorded by reshaper as a value. ") IsNewShape; Standard_Boolean IsNewShape(const TopoDS_Shape & theShape); - /****************** IsRecorded ******************/ - /**** md5 signature: c1ee5aa687f1d8b624ca216fb43759f0 ****/ + /****** BRepTools_ReShape::IsRecorded ******/ + /****** md5 signature: c1ee5aa687f1d8b624ca216fb43759f0 ******/ %feature("compactdefaultargs") IsRecorded; %feature("autodoc", " Parameters @@ -2000,8 +2000,8 @@ Tells if a shape is recorded for replace/remove. ") IsRecorded; virtual Standard_Boolean IsRecorded(const TopoDS_Shape & shape); - /****************** ModeConsiderLocation ******************/ - /**** md5 signature: 39137eddab476802cb299ec6bc783168 ****/ + /****** BRepTools_ReShape::ModeConsiderLocation ******/ + /****** md5 signature: 39137eddab476802cb299ec6bc783168 ******/ %feature("compactdefaultargs") ModeConsiderLocation; %feature("autodoc", "Return ------- @@ -2013,8 +2013,8 @@ Returns (modifiable) the flag which defines whether location of shape take into ") ModeConsiderLocation; virtual Standard_Boolean & ModeConsiderLocation(); - /****************** Remove ******************/ - /**** md5 signature: 5e9c4c0797baa65786d2ea2540e5d010 ****/ + /****** BRepTools_ReShape::Remove ******/ + /****** md5 signature: 5e9c4c0797baa65786d2ea2540e5d010 ******/ %feature("compactdefaultargs") Remove; %feature("autodoc", " Parameters @@ -2031,8 +2031,8 @@ Sets a request to remove a shape whatever the orientation. ") Remove; virtual void Remove(const TopoDS_Shape & shape); - /****************** Replace ******************/ - /**** md5 signature: 1fac527602005e8dc4ab218205bef2c0 ****/ + /****** BRepTools_ReShape::Replace ******/ + /****** md5 signature: 1fac527602005e8dc4ab218205bef2c0 ******/ %feature("compactdefaultargs") Replace; %feature("autodoc", " Parameters @@ -2050,8 +2050,8 @@ Sets a request to replace a shape by a new one. ") Replace; virtual void Replace(const TopoDS_Shape & shape, const TopoDS_Shape & newshape); - /****************** Status ******************/ - /**** md5 signature: ecedd5404c4720d2ba941edafa6ac006 ****/ + /****** BRepTools_ReShape::Status ******/ + /****** md5 signature: ecedd5404c4720d2ba941edafa6ac006 ******/ %feature("compactdefaultargs") Status; %feature("autodoc", " Parameters @@ -2070,8 +2070,8 @@ Returns a complete substitution status for a shape 0: not recorded, = or ") Status; virtual Standard_Integer Status(const TopoDS_Shape & shape, TopoDS_Shape & newsh, const Standard_Boolean last = Standard_False); - /****************** Value ******************/ - /**** md5 signature: 1e40f89fc51e3c423fbe545e07ca6a4f ****/ + /****** BRepTools_ReShape::Value ******/ + /****** md5 signature: 1e40f89fc51e3c423fbe545e07ca6a4f ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -2104,8 +2104,8 @@ Returns the new value for an individual shape if not recorded, returns the origi ***************************/ class BRepTools_ShapeSet : public TopTools_ShapeSet { public: - /****************** BRepTools_ShapeSet ******************/ - /**** md5 signature: 4d2cf984c56b6805e641ce99645be1bb ****/ + /****** BRepTools_ShapeSet::BRepTools_ShapeSet ******/ + /****** md5 signature: 4d2cf984c56b6805e641ce99645be1bb ******/ %feature("compactdefaultargs") BRepTools_ShapeSet; %feature("autodoc", " Parameters @@ -2123,8 +2123,8 @@ Builds an empty shapeset. @param thewithtriangles flag to write triangulation da ") BRepTools_ShapeSet; BRepTools_ShapeSet(const Standard_Boolean theWithTriangles = Standard_True, const Standard_Boolean theWithNormals = Standard_False); - /****************** BRepTools_ShapeSet ******************/ - /**** md5 signature: b9669c92273c65400f84c106bd21ec2f ****/ + /****** BRepTools_ShapeSet::BRepTools_ShapeSet ******/ + /****** md5 signature: b9669c92273c65400f84c106bd21ec2f ******/ %feature("compactdefaultargs") BRepTools_ShapeSet; %feature("autodoc", " Parameters @@ -2143,8 +2143,8 @@ Builds an empty shapeset. @param thewithtriangles flag to write triangulation da ") BRepTools_ShapeSet; BRepTools_ShapeSet(const BRep_Builder & theBuilder, const Standard_Boolean theWithTriangles = Standard_True, const Standard_Boolean theWithNormals = Standard_False); - /****************** AddGeometry ******************/ - /**** md5 signature: 31352593ecfcc12beb7b28447eee7b70 ****/ + /****** BRepTools_ShapeSet::AddGeometry ******/ + /****** md5 signature: 31352593ecfcc12beb7b28447eee7b70 ******/ %feature("compactdefaultargs") AddGeometry; %feature("autodoc", " Parameters @@ -2161,8 +2161,8 @@ Stores the goemetry of . ") AddGeometry; virtual void AddGeometry(const TopoDS_Shape & S); - /****************** AddShapes ******************/ - /**** md5 signature: c04ea93dd727f553f9a7d57810d34b97 ****/ + /****** BRepTools_ShapeSet::AddShapes ******/ + /****** md5 signature: c04ea93dd727f553f9a7d57810d34b97 ******/ %feature("compactdefaultargs") AddShapes; %feature("autodoc", " Parameters @@ -2180,8 +2180,8 @@ Inserts the shape in the shape . this method must be redefined to use t ") AddShapes; virtual void AddShapes(TopoDS_Shape & S1, const TopoDS_Shape & S2); - /****************** Check ******************/ - /**** md5 signature: 41cb0f904ceceb5af010cc64bc1f91df ****/ + /****** BRepTools_ShapeSet::Check ******/ + /****** md5 signature: 41cb0f904ceceb5af010cc64bc1f91df ******/ %feature("compactdefaultargs") Check; %feature("autodoc", " Parameters @@ -2199,8 +2199,8 @@ No available documentation. ") Check; virtual void Check(const TopAbs_ShapeEnum T, TopoDS_Shape & S); - /****************** Clear ******************/ - /**** md5 signature: f671931d03948860d0ead34afbe920aa ****/ + /****** BRepTools_ShapeSet::Clear ******/ + /****** md5 signature: f671931d03948860d0ead34afbe920aa ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -2212,8 +2212,8 @@ Clears the content of the set. ") Clear; virtual void Clear(); - /****************** DumpGeometry ******************/ - /**** md5 signature: 8a10297a2e0a44206d544cf3208c2ebd ****/ + /****** BRepTools_ShapeSet::DumpGeometry ******/ + /****** md5 signature: 8a10297a2e0a44206d544cf3208c2ebd ******/ %feature("compactdefaultargs") DumpGeometry; %feature("autodoc", " Parameters @@ -2229,8 +2229,8 @@ Dumps the geometry of me on the stream . ") DumpGeometry; virtual void DumpGeometry(std::ostream &OutValue); - /****************** DumpGeometry ******************/ - /**** md5 signature: 441eb2169ad0b3222fe794ba8ea21d05 ****/ + /****** BRepTools_ShapeSet::DumpGeometry ******/ + /****** md5 signature: 441eb2169ad0b3222fe794ba8ea21d05 ******/ %feature("compactdefaultargs") DumpGeometry; %feature("autodoc", " Parameters @@ -2247,8 +2247,8 @@ Dumps the geometry of on the stream . ") DumpGeometry; virtual void DumpGeometry(const TopoDS_Shape & S, std::ostream &OutValue); - /****************** DumpPolygon3D ******************/ - /**** md5 signature: d71dc2828833ae37d1fdf2e355dbb1b6 ****/ + /****** BRepTools_ShapeSet::DumpPolygon3D ******/ + /****** md5 signature: d71dc2828833ae37d1fdf2e355dbb1b6 ******/ %feature("compactdefaultargs") DumpPolygon3D; %feature("autodoc", " Parameters @@ -2264,8 +2264,8 @@ Dumps the 3d polygons on the stream . ") DumpPolygon3D; void DumpPolygon3D(std::ostream &OutValue); - /****************** DumpPolygonOnTriangulation ******************/ - /**** md5 signature: ebede4d5757370c7f0a77e3b47b20ea8 ****/ + /****** BRepTools_ShapeSet::DumpPolygonOnTriangulation ******/ + /****** md5 signature: ebede4d5757370c7f0a77e3b47b20ea8 ******/ %feature("compactdefaultargs") DumpPolygonOnTriangulation; %feature("autodoc", " Parameters @@ -2281,8 +2281,8 @@ Dumps the polygons on triangulation on the stream . ") DumpPolygonOnTriangulation; void DumpPolygonOnTriangulation(std::ostream &OutValue); - /****************** DumpTriangulation ******************/ - /**** md5 signature: 573377e15caf72db43c4f0909c6d6c4b ****/ + /****** BRepTools_ShapeSet::DumpTriangulation ******/ + /****** md5 signature: 573377e15caf72db43c4f0909c6d6c4b ******/ %feature("compactdefaultargs") DumpTriangulation; %feature("autodoc", " Parameters @@ -2298,8 +2298,8 @@ Dumps the triangulation on the stream . ") DumpTriangulation; void DumpTriangulation(std::ostream &OutValue); - /****************** IsWithNormals ******************/ - /**** md5 signature: 49f5baecd893691e08f163fb559d8b06 ****/ + /****** BRepTools_ShapeSet::IsWithNormals ******/ + /****** md5 signature: 49f5baecd893691e08f163fb559d8b06 ******/ %feature("compactdefaultargs") IsWithNormals; %feature("autodoc", "Return ------- @@ -2311,8 +2311,8 @@ Return true if shape should be stored triangulation with normals. ") IsWithNormals; Standard_Boolean IsWithNormals(); - /****************** IsWithTriangles ******************/ - /**** md5 signature: 2adacf1f8e5d4c926108b4db84751e9a ****/ + /****** BRepTools_ShapeSet::IsWithTriangles ******/ + /****** md5 signature: 2adacf1f8e5d4c926108b4db84751e9a ******/ %feature("compactdefaultargs") IsWithTriangles; %feature("autodoc", "Return ------- @@ -2324,8 +2324,8 @@ Return true if shape should be stored with triangles. ") IsWithTriangles; Standard_Boolean IsWithTriangles(); - /****************** ReadGeometry ******************/ - /**** md5 signature: 29982a86f8628bd19687b88946d88b2b ****/ + /****** BRepTools_ShapeSet::ReadGeometry ******/ + /****** md5 signature: 29982a86f8628bd19687b88946d88b2b ******/ %feature("compactdefaultargs") ReadGeometry; %feature("autodoc", " Parameters @@ -2343,8 +2343,8 @@ Reads the geometry of me from the stream . ") ReadGeometry; virtual void ReadGeometry(std::istream & IS, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** ReadGeometry ******************/ - /**** md5 signature: aec2489bee709d857b09eddd7a62d272 ****/ + /****** BRepTools_ShapeSet::ReadGeometry ******/ + /****** md5 signature: aec2489bee709d857b09eddd7a62d272 ******/ %feature("compactdefaultargs") ReadGeometry; %feature("autodoc", " Parameters @@ -2363,8 +2363,8 @@ Reads the geometry of a shape of type from the stream and returns it in ") ReadGeometry; virtual void ReadGeometry(const TopAbs_ShapeEnum T, std::istream & IS, TopoDS_Shape & S); - /****************** ReadPolygon3D ******************/ - /**** md5 signature: e637370098b2bac74ea2ad781985457f ****/ + /****** BRepTools_ShapeSet::ReadPolygon3D ******/ + /****** md5 signature: e637370098b2bac74ea2ad781985457f ******/ %feature("compactdefaultargs") ReadPolygon3D; %feature("autodoc", " Parameters @@ -2382,8 +2382,8 @@ Reads the 3d polygons of me from the stream . ") ReadPolygon3D; void ReadPolygon3D(std::istream & IS, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** ReadPolygonOnTriangulation ******************/ - /**** md5 signature: 8c589d9572a02a58a24994948b7ca837 ****/ + /****** BRepTools_ShapeSet::ReadPolygonOnTriangulation ******/ + /****** md5 signature: 8c589d9572a02a58a24994948b7ca837 ******/ %feature("compactdefaultargs") ReadPolygonOnTriangulation; %feature("autodoc", " Parameters @@ -2401,8 +2401,8 @@ Reads the polygons on triangulation of me from the stream . ") ReadPolygonOnTriangulation; void ReadPolygonOnTriangulation(std::istream & IS, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** ReadTriangulation ******************/ - /**** md5 signature: 2c884f46fbe1934a9efd5f890623beee ****/ + /****** BRepTools_ShapeSet::ReadTriangulation ******/ + /****** md5 signature: 2c884f46fbe1934a9efd5f890623beee ******/ %feature("compactdefaultargs") ReadTriangulation; %feature("autodoc", " Parameters @@ -2420,8 +2420,8 @@ Reads the triangulation of me from the stream . ") ReadTriangulation; void ReadTriangulation(std::istream & IS, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** SetWithNormals ******************/ - /**** md5 signature: 9f03f91e56766f46bd17d99a089a0a21 ****/ + /****** BRepTools_ShapeSet::SetWithNormals ******/ + /****** md5 signature: 9f03f91e56766f46bd17d99a089a0a21 ******/ %feature("compactdefaultargs") SetWithNormals; %feature("autodoc", " Parameters @@ -2438,8 +2438,8 @@ Define if shape will be stored triangulation with normals. ignored (always writt ") SetWithNormals; void SetWithNormals(const Standard_Boolean theWithNormals); - /****************** SetWithTriangles ******************/ - /**** md5 signature: 7b7f7b1dd0aaac0992d59e75b5df79e1 ****/ + /****** BRepTools_ShapeSet::SetWithTriangles ******/ + /****** md5 signature: 7b7f7b1dd0aaac0992d59e75b5df79e1 ******/ %feature("compactdefaultargs") SetWithTriangles; %feature("autodoc", " Parameters @@ -2456,8 +2456,8 @@ Define if shape will be stored with triangles. ignored (always written) if face ") SetWithTriangles; void SetWithTriangles(const Standard_Boolean theWithTriangles); - /****************** WriteGeometry ******************/ - /**** md5 signature: 4f112c9f4ab0e11dc4ef39084df9e9d4 ****/ + /****** BRepTools_ShapeSet::WriteGeometry ******/ + /****** md5 signature: 4f112c9f4ab0e11dc4ef39084df9e9d4 ******/ %feature("compactdefaultargs") WriteGeometry; %feature("autodoc", " Parameters @@ -2474,8 +2474,8 @@ Writes the geometry of me on the stream in a format that can be read back b ") WriteGeometry; virtual void WriteGeometry(std::ostream &OutValue, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** WriteGeometry ******************/ - /**** md5 signature: ce5d0a3d33cc100dd52fd3b965ea1743 ****/ + /****** BRepTools_ShapeSet::WriteGeometry ******/ + /****** md5 signature: ce5d0a3d33cc100dd52fd3b965ea1743 ******/ %feature("compactdefaultargs") WriteGeometry; %feature("autodoc", " Parameters @@ -2492,8 +2492,8 @@ Writes the geometry of on the stream in a format that can be read back ") WriteGeometry; virtual void WriteGeometry(const TopoDS_Shape & S, std::ostream &OutValue); - /****************** WritePolygon3D ******************/ - /**** md5 signature: adec09c9b52ff86073162dcfc4f3bda4 ****/ + /****** BRepTools_ShapeSet::WritePolygon3D ******/ + /****** md5 signature: adec09c9b52ff86073162dcfc4f3bda4 ******/ %feature("compactdefaultargs") WritePolygon3D; %feature("autodoc", " Parameters @@ -2511,8 +2511,8 @@ Writes the 3d polygons on the stream in a format that can be read back by r ") WritePolygon3D; void WritePolygon3D(std::ostream &OutValue, const Standard_Boolean Compact = Standard_True, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** WritePolygonOnTriangulation ******************/ - /**** md5 signature: b6577cbf6cdb2bc0baa774f88dfd3418 ****/ + /****** BRepTools_ShapeSet::WritePolygonOnTriangulation ******/ + /****** md5 signature: b6577cbf6cdb2bc0baa774f88dfd3418 ******/ %feature("compactdefaultargs") WritePolygonOnTriangulation; %feature("autodoc", " Parameters @@ -2530,8 +2530,8 @@ Writes the polygons on triangulation on the stream in a format that can be ") WritePolygonOnTriangulation; void WritePolygonOnTriangulation(std::ostream &OutValue, const Standard_Boolean Compact = Standard_True, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** WriteTriangulation ******************/ - /**** md5 signature: 63a7d12f83f3bef281e1178d99ed272d ****/ + /****** BRepTools_ShapeSet::WriteTriangulation ******/ + /****** md5 signature: 63a7d12f83f3bef281e1178d99ed272d ******/ %feature("compactdefaultargs") WriteTriangulation; %feature("autodoc", " Parameters @@ -2584,8 +2584,8 @@ Writes the triangulation on the stream in a format that can be read back by *******************************/ class BRepTools_Substitution { public: - /****************** BRepTools_Substitution ******************/ - /**** md5 signature: a93abe08e3dbab886a3e597a2409bb79 ****/ + /****** BRepTools_Substitution::BRepTools_Substitution ******/ + /****** md5 signature: a93abe08e3dbab886a3e597a2409bb79 ******/ %feature("compactdefaultargs") BRepTools_Substitution; %feature("autodoc", "Return ------- @@ -2597,8 +2597,8 @@ No available documentation. ") BRepTools_Substitution; BRepTools_Substitution(); - /****************** Build ******************/ - /**** md5 signature: 81af4c8bd81bf79c30f34ea72f3743c3 ****/ + /****** BRepTools_Substitution::Build ******/ + /****** md5 signature: 81af4c8bd81bf79c30f34ea72f3743c3 ******/ %feature("compactdefaultargs") Build; %feature("autodoc", " Parameters @@ -2615,8 +2615,8 @@ Build newshape from if its subshapes has modified. //! the methods . ") Copy; const TopTools_ListOfShape & Copy(const TopoDS_Shape & S); - /****************** IsCopied ******************/ - /**** md5 signature: 700aa9864844136ce24021c380aa2705 ****/ + /****** BRepTools_Substitution::IsCopied ******/ + /****** md5 signature: 700aa9864844136ce24021c380aa2705 ******/ %feature("compactdefaultargs") IsCopied; %feature("autodoc", " Parameters @@ -2664,8 +2664,8 @@ Returns true if has been replaced . ") IsCopied; Standard_Boolean IsCopied(const TopoDS_Shape & S); - /****************** Substitute ******************/ - /**** md5 signature: a4cbae62f6a963c3eab0e606e98de3c2 ****/ + /****** BRepTools_Substitution::Substitute ******/ + /****** md5 signature: a4cbae62f6a963c3eab0e606e98de3c2 ******/ %feature("compactdefaultargs") Substitute; %feature("autodoc", " Parameters @@ -2697,8 +2697,8 @@ Description *******************************/ class BRepTools_WireExplorer { public: - /****************** BRepTools_WireExplorer ******************/ - /**** md5 signature: c01ce9eb3dd0f911d033ede7ab166cc9 ****/ + /****** BRepTools_WireExplorer::BRepTools_WireExplorer ******/ + /****** md5 signature: c01ce9eb3dd0f911d033ede7ab166cc9 ******/ %feature("compactdefaultargs") BRepTools_WireExplorer; %feature("autodoc", "Return ------- @@ -2710,8 +2710,8 @@ Constructs an empty explorer (which can be initialized using init). ") BRepTools_WireExplorer; BRepTools_WireExplorer(); - /****************** BRepTools_WireExplorer ******************/ - /**** md5 signature: 12a015d52386240d1135d923827c579a ****/ + /****** BRepTools_WireExplorer::BRepTools_WireExplorer ******/ + /****** md5 signature: 12a015d52386240d1135d923827c579a ******/ %feature("compactdefaultargs") BRepTools_WireExplorer; %feature("autodoc", " Parameters @@ -2728,8 +2728,8 @@ Iinitializes an exploration of the wire . ") BRepTools_WireExplorer; BRepTools_WireExplorer(const TopoDS_Wire & W); - /****************** BRepTools_WireExplorer ******************/ - /**** md5 signature: 71491b0c48a6d7a95f0181294fd0f36b ****/ + /****** BRepTools_WireExplorer::BRepTools_WireExplorer ******/ + /****** md5 signature: 71491b0c48a6d7a95f0181294fd0f36b ******/ %feature("compactdefaultargs") BRepTools_WireExplorer; %feature("autodoc", " Parameters @@ -2747,8 +2747,8 @@ Initializes an exploration of the wire . f is used to select the edge connect ") BRepTools_WireExplorer; BRepTools_WireExplorer(const TopoDS_Wire & W, const TopoDS_Face & F); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** BRepTools_WireExplorer::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -2760,8 +2760,8 @@ Clears the content of the explorer. ") Clear; void Clear(); - /****************** Current ******************/ - /**** md5 signature: 13d38f330bd5edb3fa9d2a05a41adda5 ****/ + /****** BRepTools_WireExplorer::Current ******/ + /****** md5 signature: 13d38f330bd5edb3fa9d2a05a41adda5 ******/ %feature("compactdefaultargs") Current; %feature("autodoc", "Return ------- @@ -2773,8 +2773,8 @@ Returns the current edge. ") Current; const TopoDS_Edge Current(); - /****************** CurrentVertex ******************/ - /**** md5 signature: b76f05d6c3d7cad0ee0de4c1edcf342b ****/ + /****** BRepTools_WireExplorer::CurrentVertex ******/ + /****** md5 signature: b76f05d6c3d7cad0ee0de4c1edcf342b ******/ %feature("compactdefaultargs") CurrentVertex; %feature("autodoc", "Return ------- @@ -2786,8 +2786,8 @@ Returns the vertex connecting the current edge to the previous one. ") CurrentVertex; const TopoDS_Vertex CurrentVertex(); - /****************** Init ******************/ - /**** md5 signature: 1b008bb762428c969d10a2c51ed2db58 ****/ + /****** BRepTools_WireExplorer::Init ******/ + /****** md5 signature: 1b008bb762428c969d10a2c51ed2db58 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2804,8 +2804,8 @@ Initializes an exploration of the wire . ") Init; void Init(const TopoDS_Wire & W); - /****************** Init ******************/ - /**** md5 signature: 3e8360537c94fa55830ac518b5a25259 ****/ + /****** BRepTools_WireExplorer::Init ******/ + /****** md5 signature: 3e8360537c94fa55830ac518b5a25259 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2823,8 +2823,8 @@ Initializes an exploration of the wire . f is used to select the edge connect ") Init; void Init(const TopoDS_Wire & W, const TopoDS_Face & F); - /****************** Init ******************/ - /**** md5 signature: a0834e948e42cf446078176bb382a7e5 ****/ + /****** BRepTools_WireExplorer::Init ******/ + /****** md5 signature: a0834e948e42cf446078176bb382a7e5 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -2846,8 +2846,8 @@ Initializes an exploration of the wire . f is used to select the edge connect ") Init; void Init(const TopoDS_Wire & W, const TopoDS_Face & F, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax); - /****************** More ******************/ - /**** md5 signature: 6f6e915c9a3dca758c059d9e8af02dff ****/ + /****** BRepTools_WireExplorer::More ******/ + /****** md5 signature: 6f6e915c9a3dca758c059d9e8af02dff ******/ %feature("compactdefaultargs") More; %feature("autodoc", "Return ------- @@ -2859,8 +2859,8 @@ Returns true if there is a current edge. ") More; Standard_Boolean More(); - /****************** Next ******************/ - /**** md5 signature: f35c0df5f1d7c877986db18081404532 ****/ + /****** BRepTools_WireExplorer::Next ******/ + /****** md5 signature: f35c0df5f1d7c877986db18081404532 ******/ %feature("compactdefaultargs") Next; %feature("autodoc", "Return ------- @@ -2872,8 +2872,8 @@ Proceeds to the next edge. ") Next; void Next(); - /****************** Orientation ******************/ - /**** md5 signature: 328242fe19b1f80489d8169681ebc029 ****/ + /****** BRepTools_WireExplorer::Orientation ******/ + /****** md5 signature: 328242fe19b1f80489d8169681ebc029 ******/ %feature("compactdefaultargs") Orientation; %feature("autodoc", "Return ------- @@ -2899,8 +2899,8 @@ Returns an orientation for the current edge. ***********************************/ class BRepTools_CopyModification : public BRepTools_Modification { public: - /****************** BRepTools_CopyModification ******************/ - /**** md5 signature: dc62d9d01ecf0817e4b2bc548f32af61 ****/ + /****** BRepTools_CopyModification::BRepTools_CopyModification ******/ + /****** md5 signature: dc62d9d01ecf0817e4b2bc548f32af61 ******/ %feature("compactdefaultargs") BRepTools_CopyModification; %feature("autodoc", " Parameters @@ -2918,8 +2918,8 @@ Constructor. \param[in] thecopygeom indicates that the geomtery (surfaces and cu ") BRepTools_CopyModification; BRepTools_CopyModification(const Standard_Boolean theCopyGeom = Standard_True, const Standard_Boolean theCopyMesh = Standard_True); - /****************** Continuity ******************/ - /**** md5 signature: 2c4d2ed85cbf31d94ccd5731f137e724 ****/ + /****** BRepTools_CopyModification::Continuity ******/ + /****** md5 signature: 2c4d2ed85cbf31d94ccd5731f137e724 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", " Parameters @@ -2941,8 +2941,8 @@ Returns the continuity of thenewedge between thenewface1 and thenewface2. //! th ") Continuity; GeomAbs_Shape Continuity(const TopoDS_Edge & theEdge, const TopoDS_Face & theFace1, const TopoDS_Face & theFace2, const TopoDS_Edge & theNewEdge, const TopoDS_Face & theNewFace1, const TopoDS_Face & theNewFace2); - /****************** NewCurve ******************/ - /**** md5 signature: c3400f68c675ff3dd16614251d9da49c ****/ + /****** BRepTools_CopyModification::NewCurve ******/ + /****** md5 signature: c3400f68c675ff3dd16614251d9da49c ******/ %feature("compactdefaultargs") NewCurve; %feature("autodoc", " Parameters @@ -2961,8 +2961,8 @@ Returns true if theedge has been modified. if the edge has been modified: - thec ") NewCurve; Standard_Boolean NewCurve(const TopoDS_Edge & theEdge, opencascade::handle & theCurve, TopLoc_Location & theLoc, Standard_Real &OutValue); - /****************** NewCurve2d ******************/ - /**** md5 signature: 12d59de8232d43bec7de37a5392a1df4 ****/ + /****** BRepTools_CopyModification::NewCurve2d ******/ + /****** md5 signature: 12d59de8232d43bec7de37a5392a1df4 ******/ %feature("compactdefaultargs") NewCurve2d; %feature("autodoc", " Parameters @@ -2983,8 +2983,8 @@ Returns true if theedge has a new curve on surface on theface. if a new curve ex ") NewCurve2d; Standard_Boolean NewCurve2d(const TopoDS_Edge & theEdge, const TopoDS_Face & theFace, const TopoDS_Edge & theNewEdge, const TopoDS_Face & theNewFace, opencascade::handle & theCurve, Standard_Real &OutValue); - /****************** NewParameter ******************/ - /**** md5 signature: 54289ac8d83b6313663826ffc529a180 ****/ + /****** BRepTools_CopyModification::NewParameter ******/ + /****** md5 signature: 54289ac8d83b6313663826ffc529a180 ******/ %feature("compactdefaultargs") NewParameter; %feature("autodoc", " Parameters @@ -3003,8 +3003,8 @@ Returns true if thevertex has a new parameter on theedge. if a new parameter exi ") NewParameter; Standard_Boolean NewParameter(const TopoDS_Vertex & theVertex, const TopoDS_Edge & theEdge, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** NewPoint ******************/ - /**** md5 signature: a51d29c30c50c9cb108e5c5ea9b12a8b ****/ + /****** BRepTools_CopyModification::NewPoint ******/ + /****** md5 signature: a51d29c30c50c9cb108e5c5ea9b12a8b ******/ %feature("compactdefaultargs") NewPoint; %feature("autodoc", " Parameters @@ -3022,8 +3022,8 @@ Returns true if thevertex has been modified. if the vertex has been modified: - ") NewPoint; Standard_Boolean NewPoint(const TopoDS_Vertex & theVertex, gp_Pnt & thePnt, Standard_Real &OutValue); - /****************** NewPolygon ******************/ - /**** md5 signature: 4badeef9050bef8cef3639edbc9b0271 ****/ + /****** BRepTools_CopyModification::NewPolygon ******/ + /****** md5 signature: 4badeef9050bef8cef3639edbc9b0271 ******/ %feature("compactdefaultargs") NewPolygon; %feature("autodoc", " Parameters @@ -3041,8 +3041,8 @@ Returns true if the edge has been modified according to changed polygon. if the ") NewPolygon; Standard_Boolean NewPolygon(const TopoDS_Edge & theEdge, opencascade::handle & thePoly); - /****************** NewPolygonOnTriangulation ******************/ - /**** md5 signature: 362332d5c0a2020b059e4552360631f4 ****/ + /****** BRepTools_CopyModification::NewPolygonOnTriangulation ******/ + /****** md5 signature: 362332d5c0a2020b059e4552360631f4 ******/ %feature("compactdefaultargs") NewPolygonOnTriangulation; %feature("autodoc", " Parameters @@ -3061,8 +3061,8 @@ Returns true if the edge has been modified according to changed polygon on trian ") NewPolygonOnTriangulation; Standard_Boolean NewPolygonOnTriangulation(const TopoDS_Edge & theEdge, const TopoDS_Face & theFace, opencascade::handle & thePoly); - /****************** NewSurface ******************/ - /**** md5 signature: 005f5309703e67a2221655e2f7ff6568 ****/ + /****** BRepTools_CopyModification::NewSurface ******/ + /****** md5 signature: 005f5309703e67a2221655e2f7ff6568 ******/ %feature("compactdefaultargs") NewSurface; %feature("autodoc", " Parameters @@ -3083,8 +3083,8 @@ Returns true if theface has been modified. if the face has been modified: - thes ") NewSurface; Standard_Boolean NewSurface(const TopoDS_Face & theFace, opencascade::handle & theSurf, TopLoc_Location & theLoc, Standard_Real &OutValue, Standard_Boolean &OutValue, Standard_Boolean &OutValue); - /****************** NewTriangulation ******************/ - /**** md5 signature: c34f0504d87cfa075d0a16293a0a824a ****/ + /****** BRepTools_CopyModification::NewTriangulation ******/ + /****** md5 signature: c34f0504d87cfa075d0a16293a0a824a ******/ %feature("compactdefaultargs") NewTriangulation; %feature("autodoc", " Parameters @@ -3118,8 +3118,8 @@ Returns true if the face has been modified according to changed triangulation. i ************************************/ class BRepTools_GTrsfModification : public BRepTools_Modification { public: - /****************** BRepTools_GTrsfModification ******************/ - /**** md5 signature: f443bf58acd21d37a3040336d9faf5f2 ****/ + /****** BRepTools_GTrsfModification::BRepTools_GTrsfModification ******/ + /****** md5 signature: f443bf58acd21d37a3040336d9faf5f2 ******/ %feature("compactdefaultargs") BRepTools_GTrsfModification; %feature("autodoc", " Parameters @@ -3136,8 +3136,8 @@ No available documentation. ") BRepTools_GTrsfModification; BRepTools_GTrsfModification(const gp_GTrsf & T); - /****************** Continuity ******************/ - /**** md5 signature: a3c3d5a955b90f2e1cefb3c12dc67277 ****/ + /****** BRepTools_GTrsfModification::Continuity ******/ + /****** md5 signature: a3c3d5a955b90f2e1cefb3c12dc67277 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", " Parameters @@ -3159,8 +3159,8 @@ Returns the continuity of between and . //! is the ") Continuity; GeomAbs_Shape Continuity(const TopoDS_Edge & E, const TopoDS_Face & F1, const TopoDS_Face & F2, const TopoDS_Edge & NewE, const TopoDS_Face & NewF1, const TopoDS_Face & NewF2); - /****************** GTrsf ******************/ - /**** md5 signature: a4c293d50b1ee2fc7d0625bf3a6c1811 ****/ + /****** BRepTools_GTrsfModification::GTrsf ******/ + /****** md5 signature: a4c293d50b1ee2fc7d0625bf3a6c1811 ******/ %feature("compactdefaultargs") GTrsf; %feature("autodoc", "Return ------- @@ -3172,8 +3172,8 @@ Gives an access on the gtrsf. ") GTrsf; gp_GTrsf GTrsf(); - /****************** NewCurve ******************/ - /**** md5 signature: fae0c201ae8f07a170a1eb576572768a ****/ + /****** BRepTools_GTrsfModification::NewCurve ******/ + /****** md5 signature: fae0c201ae8f07a170a1eb576572768a ******/ %feature("compactdefaultargs") NewCurve; %feature("autodoc", " Parameters @@ -3192,8 +3192,8 @@ Returns standard_true if the edge has been modified. in this case, is th ") NewCurve; Standard_Boolean NewCurve(const TopoDS_Edge & E, opencascade::handle & C, TopLoc_Location & L, Standard_Real &OutValue); - /****************** NewCurve2d ******************/ - /**** md5 signature: ea858177828b71b789a2564d89f64210 ****/ + /****** BRepTools_GTrsfModification::NewCurve2d ******/ + /****** md5 signature: ea858177828b71b789a2564d89f64210 ******/ %feature("compactdefaultargs") NewCurve2d; %feature("autodoc", " Parameters @@ -3214,8 +3214,8 @@ Returns standard_true if the edge has a new curve on surface on the face ") NewCurve2d; Standard_Boolean NewCurve2d(const TopoDS_Edge & E, const TopoDS_Face & F, const TopoDS_Edge & NewE, const TopoDS_Face & NewF, opencascade::handle & C, Standard_Real &OutValue); - /****************** NewParameter ******************/ - /**** md5 signature: e14926b54c8548936ba9a49d140b8da3 ****/ + /****** BRepTools_GTrsfModification::NewParameter ******/ + /****** md5 signature: e14926b54c8548936ba9a49d140b8da3 ******/ %feature("compactdefaultargs") NewParameter; %feature("autodoc", " Parameters @@ -3234,8 +3234,8 @@ Returns standard_true if the vertex has a new parameter on the edge . in ") NewParameter; Standard_Boolean NewParameter(const TopoDS_Vertex & V, const TopoDS_Edge & E, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** NewPoint ******************/ - /**** md5 signature: 936cfe13f9c774f9038d7f0e2f3e521b ****/ + /****** BRepTools_GTrsfModification::NewPoint ******/ + /****** md5 signature: 936cfe13f9c774f9038d7f0e2f3e521b ******/ %feature("compactdefaultargs") NewPoint; %feature("autodoc", " Parameters @@ -3253,8 +3253,8 @@ Returns standard_true if the vertex has been modified. in this case,

is ") NewPoint; Standard_Boolean NewPoint(const TopoDS_Vertex & V, gp_Pnt & P, Standard_Real &OutValue); - /****************** NewPolygon ******************/ - /**** md5 signature: 4badeef9050bef8cef3639edbc9b0271 ****/ + /****** BRepTools_GTrsfModification::NewPolygon ******/ + /****** md5 signature: 4badeef9050bef8cef3639edbc9b0271 ******/ %feature("compactdefaultargs") NewPolygon; %feature("autodoc", " Parameters @@ -3272,8 +3272,8 @@ Returns true if the edge has been modified according to changed polygon. if the ") NewPolygon; Standard_Boolean NewPolygon(const TopoDS_Edge & theEdge, opencascade::handle & thePoly); - /****************** NewPolygonOnTriangulation ******************/ - /**** md5 signature: 362332d5c0a2020b059e4552360631f4 ****/ + /****** BRepTools_GTrsfModification::NewPolygonOnTriangulation ******/ + /****** md5 signature: 362332d5c0a2020b059e4552360631f4 ******/ %feature("compactdefaultargs") NewPolygonOnTriangulation; %feature("autodoc", " Parameters @@ -3292,8 +3292,8 @@ Returns true if the edge has been modified according to changed polygon on trian ") NewPolygonOnTriangulation; Standard_Boolean NewPolygonOnTriangulation(const TopoDS_Edge & theEdge, const TopoDS_Face & theFace, opencascade::handle & thePoly); - /****************** NewSurface ******************/ - /**** md5 signature: 001097e1d949f85581f605ce49276ada ****/ + /****** BRepTools_GTrsfModification::NewSurface ******/ + /****** md5 signature: 001097e1d949f85581f605ce49276ada ******/ %feature("compactdefaultargs") NewSurface; %feature("autodoc", " Parameters @@ -3314,8 +3314,8 @@ Returns standard_true if the face has been modified. in this case, is th ") NewSurface; Standard_Boolean NewSurface(const TopoDS_Face & F, opencascade::handle & S, TopLoc_Location & L, Standard_Real &OutValue, Standard_Boolean &OutValue, Standard_Boolean &OutValue); - /****************** NewTriangulation ******************/ - /**** md5 signature: c34f0504d87cfa075d0a16293a0a824a ****/ + /****** BRepTools_GTrsfModification::NewTriangulation ******/ + /****** md5 signature: c34f0504d87cfa075d0a16293a0a824a ******/ %feature("compactdefaultargs") NewTriangulation; %feature("autodoc", " Parameters @@ -3349,8 +3349,8 @@ Returns true if the face has been modified according to changed triangulation. i ***********************************/ class BRepTools_TrsfModification : public BRepTools_Modification { public: - /****************** BRepTools_TrsfModification ******************/ - /**** md5 signature: 184d5436193d6786b8b2f10f95528e71 ****/ + /****** BRepTools_TrsfModification::BRepTools_TrsfModification ******/ + /****** md5 signature: 184d5436193d6786b8b2f10f95528e71 ******/ %feature("compactdefaultargs") BRepTools_TrsfModification; %feature("autodoc", " Parameters @@ -3367,8 +3367,8 @@ No available documentation. ") BRepTools_TrsfModification; BRepTools_TrsfModification(const gp_Trsf & T); - /****************** Continuity ******************/ - /**** md5 signature: a3c3d5a955b90f2e1cefb3c12dc67277 ****/ + /****** BRepTools_TrsfModification::Continuity ******/ + /****** md5 signature: a3c3d5a955b90f2e1cefb3c12dc67277 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", " Parameters @@ -3403,8 +3403,8 @@ Returns the continuity of between and . //! is the $self->IsCopyMesh()=value; } }; - /****************** NewCurve ******************/ - /**** md5 signature: fae0c201ae8f07a170a1eb576572768a ****/ + /****** BRepTools_TrsfModification::NewCurve ******/ + /****** md5 signature: fae0c201ae8f07a170a1eb576572768a ******/ %feature("compactdefaultargs") NewCurve; %feature("autodoc", " Parameters @@ -3423,8 +3423,8 @@ Returns true if the edge e has been modified. if the edge has been modified: - c ") NewCurve; Standard_Boolean NewCurve(const TopoDS_Edge & E, opencascade::handle & C, TopLoc_Location & L, Standard_Real &OutValue); - /****************** NewCurve2d ******************/ - /**** md5 signature: ea858177828b71b789a2564d89f64210 ****/ + /****** BRepTools_TrsfModification::NewCurve2d ******/ + /****** md5 signature: ea858177828b71b789a2564d89f64210 ******/ %feature("compactdefaultargs") NewCurve2d; %feature("autodoc", " Parameters @@ -3445,8 +3445,8 @@ Returns true if the edge e has a new curve on surface on the face f. if a new cu ") NewCurve2d; Standard_Boolean NewCurve2d(const TopoDS_Edge & E, const TopoDS_Face & F, const TopoDS_Edge & NewE, const TopoDS_Face & NewF, opencascade::handle & C, Standard_Real &OutValue); - /****************** NewParameter ******************/ - /**** md5 signature: e14926b54c8548936ba9a49d140b8da3 ****/ + /****** BRepTools_TrsfModification::NewParameter ******/ + /****** md5 signature: e14926b54c8548936ba9a49d140b8da3 ******/ %feature("compactdefaultargs") NewParameter; %feature("autodoc", " Parameters @@ -3465,8 +3465,8 @@ Returns true if the vertex v has a new parameter on the edge e. if a new paramet ") NewParameter; Standard_Boolean NewParameter(const TopoDS_Vertex & V, const TopoDS_Edge & E, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** NewPoint ******************/ - /**** md5 signature: 936cfe13f9c774f9038d7f0e2f3e521b ****/ + /****** BRepTools_TrsfModification::NewPoint ******/ + /****** md5 signature: 936cfe13f9c774f9038d7f0e2f3e521b ******/ %feature("compactdefaultargs") NewPoint; %feature("autodoc", " Parameters @@ -3484,8 +3484,8 @@ Returns true if the vertex v has been modified. if the vertex has been modified: ") NewPoint; Standard_Boolean NewPoint(const TopoDS_Vertex & V, gp_Pnt & P, Standard_Real &OutValue); - /****************** NewPolygon ******************/ - /**** md5 signature: 7f7c60619bea4afc74b068fbbb3cfa88 ****/ + /****** BRepTools_TrsfModification::NewPolygon ******/ + /****** md5 signature: 7f7c60619bea4afc74b068fbbb3cfa88 ******/ %feature("compactdefaultargs") NewPolygon; %feature("autodoc", " Parameters @@ -3503,8 +3503,8 @@ Returns true if the edge has been modified according to changed polygon. if the ") NewPolygon; Standard_Boolean NewPolygon(const TopoDS_Edge & E, opencascade::handle & P); - /****************** NewPolygonOnTriangulation ******************/ - /**** md5 signature: 3725a7293cb8d43db5ec36c08ebcc7d9 ****/ + /****** BRepTools_TrsfModification::NewPolygonOnTriangulation ******/ + /****** md5 signature: 3725a7293cb8d43db5ec36c08ebcc7d9 ******/ %feature("compactdefaultargs") NewPolygonOnTriangulation; %feature("autodoc", " Parameters @@ -3523,8 +3523,8 @@ Returns true if the edge has been modified according to changed polygon on trian ") NewPolygonOnTriangulation; Standard_Boolean NewPolygonOnTriangulation(const TopoDS_Edge & E, const TopoDS_Face & F, opencascade::handle & P); - /****************** NewSurface ******************/ - /**** md5 signature: 001097e1d949f85581f605ce49276ada ****/ + /****** BRepTools_TrsfModification::NewSurface ******/ + /****** md5 signature: 001097e1d949f85581f605ce49276ada ******/ %feature("compactdefaultargs") NewSurface; %feature("autodoc", " Parameters @@ -3545,8 +3545,8 @@ Returns true if the face f has been modified. if the face has been modified: - s ") NewSurface; Standard_Boolean NewSurface(const TopoDS_Face & F, opencascade::handle & S, TopLoc_Location & L, Standard_Real &OutValue, Standard_Boolean &OutValue, Standard_Boolean &OutValue); - /****************** NewTriangulation ******************/ - /**** md5 signature: cdec58f103b48ecf1d9ad0fd3b8c73cc ****/ + /****** BRepTools_TrsfModification::NewTriangulation ******/ + /****** md5 signature: cdec58f103b48ecf1d9ad0fd3b8c73cc ******/ %feature("compactdefaultargs") NewTriangulation; %feature("autodoc", " Parameters @@ -3564,8 +3564,8 @@ Returns true if the face has been modified according to changed triangulation. i ") NewTriangulation; Standard_Boolean NewTriangulation(const TopoDS_Face & F, opencascade::handle & T); - /****************** Trsf ******************/ - /**** md5 signature: 162ba6693c622bc37c4b2d05c6f93a56 ****/ + /****** BRepTools_TrsfModification::Trsf ******/ + /****** md5 signature: 162ba6693c622bc37c4b2d05c6f93a56 ******/ %feature("compactdefaultargs") Trsf; %feature("autodoc", "Return ------- @@ -3593,8 +3593,8 @@ Provides access to the gp_trsf associated with this modification. the transforma *******************************************/ class BRepTools_NurbsConvertModification : public BRepTools_CopyModification { public: - /****************** BRepTools_NurbsConvertModification ******************/ - /**** md5 signature: 96ade83e8786f855501767969892ed98 ****/ + /****** BRepTools_NurbsConvertModification::BRepTools_NurbsConvertModification ******/ + /****** md5 signature: 96ade83e8786f855501767969892ed98 ******/ %feature("compactdefaultargs") BRepTools_NurbsConvertModification; %feature("autodoc", "Return ------- @@ -3606,8 +3606,8 @@ No available documentation. ") BRepTools_NurbsConvertModification; BRepTools_NurbsConvertModification(); - /****************** Continuity ******************/ - /**** md5 signature: a3c3d5a955b90f2e1cefb3c12dc67277 ****/ + /****** BRepTools_NurbsConvertModification::Continuity ******/ + /****** md5 signature: a3c3d5a955b90f2e1cefb3c12dc67277 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", " Parameters @@ -3629,8 +3629,8 @@ Returns the continuity of between and . //! is the ") Continuity; GeomAbs_Shape Continuity(const TopoDS_Edge & E, const TopoDS_Face & F1, const TopoDS_Face & F2, const TopoDS_Edge & NewE, const TopoDS_Face & NewF1, const TopoDS_Face & NewF2); - /****************** GetUpdatedEdges ******************/ - /**** md5 signature: 98174620d3d94393e9e27b34a96f4740 ****/ + /****** BRepTools_NurbsConvertModification::GetUpdatedEdges ******/ + /****** md5 signature: 98174620d3d94393e9e27b34a96f4740 ******/ %feature("compactdefaultargs") GetUpdatedEdges; %feature("autodoc", "Return ------- @@ -3642,8 +3642,8 @@ No available documentation. ") GetUpdatedEdges; const TopTools_ListOfShape & GetUpdatedEdges(); - /****************** NewCurve ******************/ - /**** md5 signature: fae0c201ae8f07a170a1eb576572768a ****/ + /****** BRepTools_NurbsConvertModification::NewCurve ******/ + /****** md5 signature: fae0c201ae8f07a170a1eb576572768a ******/ %feature("compactdefaultargs") NewCurve; %feature("autodoc", " Parameters @@ -3662,8 +3662,8 @@ Returns standard_true if the edge has been modified. in this case, is th ") NewCurve; Standard_Boolean NewCurve(const TopoDS_Edge & E, opencascade::handle & C, TopLoc_Location & L, Standard_Real &OutValue); - /****************** NewCurve2d ******************/ - /**** md5 signature: ea858177828b71b789a2564d89f64210 ****/ + /****** BRepTools_NurbsConvertModification::NewCurve2d ******/ + /****** md5 signature: ea858177828b71b789a2564d89f64210 ******/ %feature("compactdefaultargs") NewCurve2d; %feature("autodoc", " Parameters @@ -3684,8 +3684,8 @@ Returns standard_true if the edge has a new curve on surface on the face ") NewCurve2d; Standard_Boolean NewCurve2d(const TopoDS_Edge & E, const TopoDS_Face & F, const TopoDS_Edge & NewE, const TopoDS_Face & NewF, opencascade::handle & C, Standard_Real &OutValue); - /****************** NewParameter ******************/ - /**** md5 signature: e14926b54c8548936ba9a49d140b8da3 ****/ + /****** BRepTools_NurbsConvertModification::NewParameter ******/ + /****** md5 signature: e14926b54c8548936ba9a49d140b8da3 ******/ %feature("compactdefaultargs") NewParameter; %feature("autodoc", " Parameters @@ -3704,8 +3704,8 @@ Returns standard_true if the vertex has a new parameter on the edge . in ") NewParameter; Standard_Boolean NewParameter(const TopoDS_Vertex & V, const TopoDS_Edge & E, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** NewPoint ******************/ - /**** md5 signature: 936cfe13f9c774f9038d7f0e2f3e521b ****/ + /****** BRepTools_NurbsConvertModification::NewPoint ******/ + /****** md5 signature: 936cfe13f9c774f9038d7f0e2f3e521b ******/ %feature("compactdefaultargs") NewPoint; %feature("autodoc", " Parameters @@ -3723,8 +3723,8 @@ Returns standard_true if the vertex has been modified. in this case,

is ") NewPoint; Standard_Boolean NewPoint(const TopoDS_Vertex & V, gp_Pnt & P, Standard_Real &OutValue); - /****************** NewPolygon ******************/ - /**** md5 signature: 4badeef9050bef8cef3639edbc9b0271 ****/ + /****** BRepTools_NurbsConvertModification::NewPolygon ******/ + /****** md5 signature: 4badeef9050bef8cef3639edbc9b0271 ******/ %feature("compactdefaultargs") NewPolygon; %feature("autodoc", " Parameters @@ -3742,8 +3742,8 @@ Returns true if the edge has been modified according to changed polygon. if the ") NewPolygon; Standard_Boolean NewPolygon(const TopoDS_Edge & theEdge, opencascade::handle & thePoly); - /****************** NewPolygonOnTriangulation ******************/ - /**** md5 signature: 362332d5c0a2020b059e4552360631f4 ****/ + /****** BRepTools_NurbsConvertModification::NewPolygonOnTriangulation ******/ + /****** md5 signature: 362332d5c0a2020b059e4552360631f4 ******/ %feature("compactdefaultargs") NewPolygonOnTriangulation; %feature("autodoc", " Parameters @@ -3762,8 +3762,8 @@ Returns true if the edge has been modified according to changed polygon on trian ") NewPolygonOnTriangulation; Standard_Boolean NewPolygonOnTriangulation(const TopoDS_Edge & theEdge, const TopoDS_Face & theFace, opencascade::handle & thePoly); - /****************** NewSurface ******************/ - /**** md5 signature: 001097e1d949f85581f605ce49276ada ****/ + /****** BRepTools_NurbsConvertModification::NewSurface ******/ + /****** md5 signature: 001097e1d949f85581f605ce49276ada ******/ %feature("compactdefaultargs") NewSurface; %feature("autodoc", " Parameters @@ -3784,8 +3784,8 @@ Returns standard_true if the face has been modified. in this case, is th ") NewSurface; Standard_Boolean NewSurface(const TopoDS_Face & F, opencascade::handle & S, TopLoc_Location & L, Standard_Real &OutValue, Standard_Boolean &OutValue, Standard_Boolean &OutValue); - /****************** NewTriangulation ******************/ - /**** md5 signature: c34f0504d87cfa075d0a16293a0a824a ****/ + /****** BRepTools_NurbsConvertModification::NewTriangulation ******/ + /****** md5 signature: c34f0504d87cfa075d0a16293a0a824a ******/ %feature("compactdefaultargs") NewTriangulation; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BRepTopAdaptor.i b/src/SWIG_files/wrapper/BRepTopAdaptor.i index 1dff5765e..c69c10223 100644 --- a/src/SWIG_files/wrapper/BRepTopAdaptor.i +++ b/src/SWIG_files/wrapper/BRepTopAdaptor.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BREPTOPADAPTORDOCSTRING "BRepTopAdaptor module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_breptopadaptor.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_breptopadaptor.html" %enddef %module (package="OCC.Core", docstring=BREPTOPADAPTORDOCSTRING) BRepTopAdaptor @@ -105,8 +105,8 @@ typedef TColStd_SequenceOfAddress BRepTopAdaptor_SeqOfPtr; ********************************/ class BRepTopAdaptor_FClass2d { public: - /****************** BRepTopAdaptor_FClass2d ******************/ - /**** md5 signature: a4ce3a90c05c77932758932c03e7b960 ****/ + /****** BRepTopAdaptor_FClass2d::BRepTopAdaptor_FClass2d ******/ + /****** md5 signature: a4ce3a90c05c77932758932c03e7b960 ******/ %feature("compactdefaultargs") BRepTopAdaptor_FClass2d; %feature("autodoc", " Parameters @@ -124,8 +124,8 @@ No available documentation. ") BRepTopAdaptor_FClass2d; BRepTopAdaptor_FClass2d(const TopoDS_Face & F, const Standard_Real Tol); - /****************** Copy ******************/ - /**** md5 signature: efc7d008bfae308e21078aca0811254c ****/ + /****** BRepTopAdaptor_FClass2d::Copy ******/ + /****** md5 signature: efc7d008bfae308e21078aca0811254c ******/ %feature("compactdefaultargs") Copy; %feature("autodoc", " Parameters @@ -142,8 +142,8 @@ No available documentation. ") Copy; const BRepTopAdaptor_FClass2d & Copy(const BRepTopAdaptor_FClass2d & Other); - /****************** Destroy ******************/ - /**** md5 signature: 73111f72f4ab0474eb2cfbd7e4af4e1a ****/ + /****** BRepTopAdaptor_FClass2d::Destroy ******/ + /****** md5 signature: 73111f72f4ab0474eb2cfbd7e4af4e1a ******/ %feature("compactdefaultargs") Destroy; %feature("autodoc", "Return ------- @@ -155,8 +155,8 @@ No available documentation. ") Destroy; void Destroy(); - /****************** Perform ******************/ - /**** md5 signature: 403774510e6e0c4bd249a27908ad88fd ****/ + /****** BRepTopAdaptor_FClass2d::Perform ******/ + /****** md5 signature: 403774510e6e0c4bd249a27908ad88fd ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -174,8 +174,8 @@ No available documentation. ") Perform; TopAbs_State Perform(const gp_Pnt2d & Puv, const Standard_Boolean RecadreOnPeriodic = Standard_True); - /****************** PerformInfinitePoint ******************/ - /**** md5 signature: 372e31f938f00ae741d3664c08c086b5 ****/ + /****** BRepTopAdaptor_FClass2d::PerformInfinitePoint ******/ + /****** md5 signature: 372e31f938f00ae741d3664c08c086b5 ******/ %feature("compactdefaultargs") PerformInfinitePoint; %feature("autodoc", "Return ------- @@ -187,8 +187,8 @@ No available documentation. ") PerformInfinitePoint; TopAbs_State PerformInfinitePoint(); - /****************** TestOnRestriction ******************/ - /**** md5 signature: 6c77262c5fd5c2462a11220de78e70e9 ****/ + /****** BRepTopAdaptor_FClass2d::TestOnRestriction ******/ + /****** md5 signature: 6c77262c5fd5c2462a11220de78e70e9 ******/ %feature("compactdefaultargs") TestOnRestriction; %feature("autodoc", " Parameters @@ -221,8 +221,8 @@ Test a point with +- an offset (tol) and returns on if some points are out an so *******************************/ class BRepTopAdaptor_HVertex : public Adaptor3d_HVertex { public: - /****************** BRepTopAdaptor_HVertex ******************/ - /**** md5 signature: fb5f8882c6434ceec0ae660be4e57a44 ****/ + /****** BRepTopAdaptor_HVertex::BRepTopAdaptor_HVertex ******/ + /****** md5 signature: fb5f8882c6434ceec0ae660be4e57a44 ******/ %feature("compactdefaultargs") BRepTopAdaptor_HVertex; %feature("autodoc", " Parameters @@ -240,8 +240,8 @@ No available documentation. ") BRepTopAdaptor_HVertex; BRepTopAdaptor_HVertex(const TopoDS_Vertex & Vtx, const opencascade::handle & Curve); - /****************** ChangeVertex ******************/ - /**** md5 signature: 656bb17afe52454f9a05f1376056a6f2 ****/ + /****** BRepTopAdaptor_HVertex::ChangeVertex ******/ + /****** md5 signature: 656bb17afe52454f9a05f1376056a6f2 ******/ %feature("compactdefaultargs") ChangeVertex; %feature("autodoc", "Return ------- @@ -253,8 +253,8 @@ No available documentation. ") ChangeVertex; TopoDS_Vertex ChangeVertex(); - /****************** IsSame ******************/ - /**** md5 signature: f2a9a396e56097829ed82cdf7f82bd65 ****/ + /****** BRepTopAdaptor_HVertex::IsSame ******/ + /****** md5 signature: f2a9a396e56097829ed82cdf7f82bd65 ******/ %feature("compactdefaultargs") IsSame; %feature("autodoc", " Parameters @@ -271,8 +271,8 @@ No available documentation. ") IsSame; virtual Standard_Boolean IsSame(const opencascade::handle & Other); - /****************** Orientation ******************/ - /**** md5 signature: b943e1badc1c2450950702cc0e44d65d ****/ + /****** BRepTopAdaptor_HVertex::Orientation ******/ + /****** md5 signature: b943e1badc1c2450950702cc0e44d65d ******/ %feature("compactdefaultargs") Orientation; %feature("autodoc", "Return ------- @@ -284,8 +284,8 @@ No available documentation. ") Orientation; virtual TopAbs_Orientation Orientation(); - /****************** Parameter ******************/ - /**** md5 signature: 7946c860c156c882efbe28718cc8bb1f ****/ + /****** BRepTopAdaptor_HVertex::Parameter ******/ + /****** md5 signature: 7946c860c156c882efbe28718cc8bb1f ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", " Parameters @@ -302,8 +302,8 @@ No available documentation. ") Parameter; virtual Standard_Real Parameter(const opencascade::handle & C); - /****************** Resolution ******************/ - /**** md5 signature: a164413bb7ed733cd7b505fea3e66eed ****/ + /****** BRepTopAdaptor_HVertex::Resolution ******/ + /****** md5 signature: a164413bb7ed733cd7b505fea3e66eed ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -320,8 +320,8 @@ Parametric resolution (2d). ") Resolution; virtual Standard_Real Resolution(const opencascade::handle & C); - /****************** Value ******************/ - /**** md5 signature: 554738eb7febee95dce3c7ca7bc631d6 ****/ + /****** BRepTopAdaptor_HVertex::Value ******/ + /****** md5 signature: 554738eb7febee95dce3c7ca7bc631d6 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -333,8 +333,8 @@ No available documentation. ") Value; virtual gp_Pnt2d Value(); - /****************** Vertex ******************/ - /**** md5 signature: 84212ff79cd7d64cd0ebfa6f17214e90 ****/ + /****** BRepTopAdaptor_HVertex::Vertex ******/ + /****** md5 signature: 84212ff79cd7d64cd0ebfa6f17214e90 ******/ %feature("compactdefaultargs") Vertex; %feature("autodoc", "Return ------- @@ -362,8 +362,8 @@ No available documentation. ****************************/ class BRepTopAdaptor_Tool { public: - /****************** BRepTopAdaptor_Tool ******************/ - /**** md5 signature: e6b2a6be90b6ee74514e96d96a5af8e3 ****/ + /****** BRepTopAdaptor_Tool::BRepTopAdaptor_Tool ******/ + /****** md5 signature: e6b2a6be90b6ee74514e96d96a5af8e3 ******/ %feature("compactdefaultargs") BRepTopAdaptor_Tool; %feature("autodoc", "Return ------- @@ -375,8 +375,8 @@ No available documentation. ") BRepTopAdaptor_Tool; BRepTopAdaptor_Tool(); - /****************** BRepTopAdaptor_Tool ******************/ - /**** md5 signature: b1c7d0803f25616e45e53f7ee3ec33c3 ****/ + /****** BRepTopAdaptor_Tool::BRepTopAdaptor_Tool ******/ + /****** md5 signature: b1c7d0803f25616e45e53f7ee3ec33c3 ******/ %feature("compactdefaultargs") BRepTopAdaptor_Tool; %feature("autodoc", " Parameters @@ -394,8 +394,8 @@ No available documentation. ") BRepTopAdaptor_Tool; BRepTopAdaptor_Tool(const TopoDS_Face & F, const Standard_Real Tol2d); - /****************** BRepTopAdaptor_Tool ******************/ - /**** md5 signature: a513e74acf6cfe0783456be96ccc60c9 ****/ + /****** BRepTopAdaptor_Tool::BRepTopAdaptor_Tool ******/ + /****** md5 signature: a513e74acf6cfe0783456be96ccc60c9 ******/ %feature("compactdefaultargs") BRepTopAdaptor_Tool; %feature("autodoc", " Parameters @@ -413,8 +413,8 @@ No available documentation. ") BRepTopAdaptor_Tool; BRepTopAdaptor_Tool(const opencascade::handle & Surface, const Standard_Real Tol2d); - /****************** Destroy ******************/ - /**** md5 signature: 73111f72f4ab0474eb2cfbd7e4af4e1a ****/ + /****** BRepTopAdaptor_Tool::Destroy ******/ + /****** md5 signature: 73111f72f4ab0474eb2cfbd7e4af4e1a ******/ %feature("compactdefaultargs") Destroy; %feature("autodoc", "Return ------- @@ -426,8 +426,8 @@ No available documentation. ") Destroy; void Destroy(); - /****************** GetSurface ******************/ - /**** md5 signature: afbd71c808e80f77f5a76ef64e3237a1 ****/ + /****** BRepTopAdaptor_Tool::GetSurface ******/ + /****** md5 signature: afbd71c808e80f77f5a76ef64e3237a1 ******/ %feature("compactdefaultargs") GetSurface; %feature("autodoc", "Return ------- @@ -439,8 +439,8 @@ No available documentation. ") GetSurface; opencascade::handle GetSurface(); - /****************** GetTopolTool ******************/ - /**** md5 signature: ff64aa4100d21790bf932c85946a7eac ****/ + /****** BRepTopAdaptor_Tool::GetTopolTool ******/ + /****** md5 signature: ff64aa4100d21790bf932c85946a7eac ******/ %feature("compactdefaultargs") GetTopolTool; %feature("autodoc", "Return ------- @@ -452,8 +452,8 @@ No available documentation. ") GetTopolTool; opencascade::handle GetTopolTool(); - /****************** Init ******************/ - /**** md5 signature: 5bec524469c25172c545bf8ac42938a6 ****/ + /****** BRepTopAdaptor_Tool::Init ******/ + /****** md5 signature: 5bec524469c25172c545bf8ac42938a6 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -471,8 +471,8 @@ No available documentation. ") Init; void Init(const TopoDS_Face & F, const Standard_Real Tol2d); - /****************** Init ******************/ - /**** md5 signature: 6237b6ed41260a567f87d98e1986dbbe ****/ + /****** BRepTopAdaptor_Tool::Init ******/ + /****** md5 signature: 6237b6ed41260a567f87d98e1986dbbe ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -490,8 +490,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & Surface, const Standard_Real Tol2d); - /****************** SetTopolTool ******************/ - /**** md5 signature: 3bffbb5885a2ed968b12bd808603632f ****/ + /****** BRepTopAdaptor_Tool::SetTopolTool ******/ + /****** md5 signature: 3bffbb5885a2ed968b12bd808603632f ******/ %feature("compactdefaultargs") SetTopolTool; %feature("autodoc", " Parameters @@ -522,8 +522,8 @@ No available documentation. *********************************/ class BRepTopAdaptor_TopolTool : public Adaptor3d_TopolTool { public: - /****************** BRepTopAdaptor_TopolTool ******************/ - /**** md5 signature: 41ec4c16be305a9785129796032fadeb ****/ + /****** BRepTopAdaptor_TopolTool::BRepTopAdaptor_TopolTool ******/ + /****** md5 signature: 41ec4c16be305a9785129796032fadeb ******/ %feature("compactdefaultargs") BRepTopAdaptor_TopolTool; %feature("autodoc", "Return ------- @@ -535,8 +535,8 @@ No available documentation. ") BRepTopAdaptor_TopolTool; BRepTopAdaptor_TopolTool(); - /****************** BRepTopAdaptor_TopolTool ******************/ - /**** md5 signature: 891cbde0b65f09eb06f8b982bf4b268b ****/ + /****** BRepTopAdaptor_TopolTool::BRepTopAdaptor_TopolTool ******/ + /****** md5 signature: 891cbde0b65f09eb06f8b982bf4b268b ******/ %feature("compactdefaultargs") BRepTopAdaptor_TopolTool; %feature("autodoc", " Parameters @@ -553,8 +553,8 @@ No available documentation. ") BRepTopAdaptor_TopolTool; BRepTopAdaptor_TopolTool(const opencascade::handle & Surface); - /****************** Classify ******************/ - /**** md5 signature: a7bbbaec3e65fcebf225d366fb51ee9a ****/ + /****** BRepTopAdaptor_TopolTool::Classify ******/ + /****** md5 signature: a7bbbaec3e65fcebf225d366fb51ee9a ******/ %feature("compactdefaultargs") Classify; %feature("autodoc", " Parameters @@ -573,8 +573,8 @@ No available documentation. ") Classify; virtual TopAbs_State Classify(const gp_Pnt2d & P2d, const Standard_Real Tol, const Standard_Boolean RecadreOnPeriodic = Standard_True); - /****************** ComputeSamplePoints ******************/ - /**** md5 signature: 940d159b31fac83590ed8721227cec02 ****/ + /****** BRepTopAdaptor_TopolTool::ComputeSamplePoints ******/ + /****** md5 signature: 940d159b31fac83590ed8721227cec02 ******/ %feature("compactdefaultargs") ComputeSamplePoints; %feature("autodoc", "Return ------- @@ -586,8 +586,8 @@ No available documentation. ") ComputeSamplePoints; virtual void ComputeSamplePoints(); - /****************** Destroy ******************/ - /**** md5 signature: 73111f72f4ab0474eb2cfbd7e4af4e1a ****/ + /****** BRepTopAdaptor_TopolTool::Destroy ******/ + /****** md5 signature: 73111f72f4ab0474eb2cfbd7e4af4e1a ******/ %feature("compactdefaultargs") Destroy; %feature("autodoc", "Return ------- @@ -599,8 +599,8 @@ No available documentation. ") Destroy; void Destroy(); - /****************** DomainIsInfinite ******************/ - /**** md5 signature: 20f793796242ffe67750f39c7f6cb147 ****/ + /****** BRepTopAdaptor_TopolTool::DomainIsInfinite ******/ + /****** md5 signature: 20f793796242ffe67750f39c7f6cb147 ******/ %feature("compactdefaultargs") DomainIsInfinite; %feature("autodoc", "Return ------- @@ -612,8 +612,8 @@ No available documentation. ") DomainIsInfinite; virtual Standard_Boolean DomainIsInfinite(); - /****************** Edge ******************/ - /**** md5 signature: 6967230b5b5db55425e95b1692b26f70 ****/ + /****** BRepTopAdaptor_TopolTool::Edge ******/ + /****** md5 signature: 6967230b5b5db55425e95b1692b26f70 ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", "Return ------- @@ -625,8 +625,8 @@ No available documentation. ") Edge; virtual Standard_Address Edge(); - /****************** Has3d ******************/ - /**** md5 signature: ebbbfa66b9e47ba91b38a042ef3df5e9 ****/ + /****** BRepTopAdaptor_TopolTool::Has3d ******/ + /****** md5 signature: ebbbfa66b9e47ba91b38a042ef3df5e9 ******/ %feature("compactdefaultargs") Has3d; %feature("autodoc", "Return ------- @@ -638,8 +638,8 @@ Answers if arcs and vertices may have 3d representations, so that we could use t ") Has3d; virtual Standard_Boolean Has3d(); - /****************** Init ******************/ - /**** md5 signature: c4c556a6328bedec1d8a123a7f91b797 ****/ + /****** BRepTopAdaptor_TopolTool::Init ******/ + /****** md5 signature: c4c556a6328bedec1d8a123a7f91b797 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", "Return ------- @@ -651,8 +651,8 @@ No available documentation. ") Init; virtual void Init(); - /****************** InitVertexIterator ******************/ - /**** md5 signature: 47f3e7aba8ec0b8bbcee04b21e73023c ****/ + /****** BRepTopAdaptor_TopolTool::InitVertexIterator ******/ + /****** md5 signature: 47f3e7aba8ec0b8bbcee04b21e73023c ******/ %feature("compactdefaultargs") InitVertexIterator; %feature("autodoc", "Return ------- @@ -664,8 +664,8 @@ No available documentation. ") InitVertexIterator; virtual void InitVertexIterator(); - /****************** Initialize ******************/ - /**** md5 signature: c1406d3f37ede5ce5f7bca787b95af63 ****/ + /****** BRepTopAdaptor_TopolTool::Initialize ******/ + /****** md5 signature: c1406d3f37ede5ce5f7bca787b95af63 ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", "Return ------- @@ -677,8 +677,8 @@ No available documentation. ") Initialize; virtual void Initialize(); - /****************** Initialize ******************/ - /**** md5 signature: 305d623733409be1d8fbf4ab26ddf2d5 ****/ + /****** BRepTopAdaptor_TopolTool::Initialize ******/ + /****** md5 signature: 305d623733409be1d8fbf4ab26ddf2d5 ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -695,8 +695,8 @@ No available documentation. ") Initialize; virtual void Initialize(const opencascade::handle & S); - /****************** Initialize ******************/ - /**** md5 signature: a7c35bee18e0399050a6e43b1c80eded ****/ + /****** BRepTopAdaptor_TopolTool::Initialize ******/ + /****** md5 signature: a7c35bee18e0399050a6e43b1c80eded ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -713,8 +713,8 @@ No available documentation. ") Initialize; virtual void Initialize(const opencascade::handle & Curve); - /****************** IsThePointOn ******************/ - /**** md5 signature: a8af42c0c4037ab93f856b0272aaeeac ****/ + /****** BRepTopAdaptor_TopolTool::IsThePointOn ******/ + /****** md5 signature: a8af42c0c4037ab93f856b0272aaeeac ******/ %feature("compactdefaultargs") IsThePointOn; %feature("autodoc", " Parameters @@ -733,8 +733,8 @@ See the code for specifications). ") IsThePointOn; virtual Standard_Boolean IsThePointOn(const gp_Pnt2d & P2d, const Standard_Real Tol, const Standard_Boolean RecadreOnPeriodic = Standard_True); - /****************** More ******************/ - /**** md5 signature: bda1e82f93f14763348ea8e5cf741569 ****/ + /****** BRepTopAdaptor_TopolTool::More ******/ + /****** md5 signature: bda1e82f93f14763348ea8e5cf741569 ******/ %feature("compactdefaultargs") More; %feature("autodoc", "Return ------- @@ -746,8 +746,8 @@ No available documentation. ") More; virtual Standard_Boolean More(); - /****************** MoreVertex ******************/ - /**** md5 signature: 6742f4bff9005368b8f6a53f0e30838a ****/ + /****** BRepTopAdaptor_TopolTool::MoreVertex ******/ + /****** md5 signature: 6742f4bff9005368b8f6a53f0e30838a ******/ %feature("compactdefaultargs") MoreVertex; %feature("autodoc", "Return ------- @@ -759,8 +759,8 @@ No available documentation. ") MoreVertex; virtual Standard_Boolean MoreVertex(); - /****************** NbSamples ******************/ - /**** md5 signature: cd99f1dfd0ef40a4d961f9638d39e555 ****/ + /****** BRepTopAdaptor_TopolTool::NbSamples ******/ + /****** md5 signature: cd99f1dfd0ef40a4d961f9638d39e555 ******/ %feature("compactdefaultargs") NbSamples; %feature("autodoc", "Return ------- @@ -772,8 +772,8 @@ Compute the sample-points for the intersections algorithms. ") NbSamples; virtual Standard_Integer NbSamples(); - /****************** NbSamplesU ******************/ - /**** md5 signature: 9402b5b7fe65eb10df77f3437e175357 ****/ + /****** BRepTopAdaptor_TopolTool::NbSamplesU ******/ + /****** md5 signature: 9402b5b7fe65eb10df77f3437e175357 ******/ %feature("compactdefaultargs") NbSamplesU; %feature("autodoc", "Return ------- @@ -785,8 +785,8 @@ Compute the sample-points for the intersections algorithms. ") NbSamplesU; virtual Standard_Integer NbSamplesU(); - /****************** NbSamplesV ******************/ - /**** md5 signature: d6f9b32ddea97452b8d6f7035907d24a ****/ + /****** BRepTopAdaptor_TopolTool::NbSamplesV ******/ + /****** md5 signature: d6f9b32ddea97452b8d6f7035907d24a ******/ %feature("compactdefaultargs") NbSamplesV; %feature("autodoc", "Return ------- @@ -798,8 +798,8 @@ Compute the sample-points for the intersections algorithms. ") NbSamplesV; virtual Standard_Integer NbSamplesV(); - /****************** Next ******************/ - /**** md5 signature: b63ea944a01b0e386a7cb8b02e8cfefd ****/ + /****** BRepTopAdaptor_TopolTool::Next ******/ + /****** md5 signature: b63ea944a01b0e386a7cb8b02e8cfefd ******/ %feature("compactdefaultargs") Next; %feature("autodoc", "Return ------- @@ -811,8 +811,8 @@ No available documentation. ") Next; virtual void Next(); - /****************** NextVertex ******************/ - /**** md5 signature: fc0d0c2b80a2501fa63795a7b7c92e53 ****/ + /****** BRepTopAdaptor_TopolTool::NextVertex ******/ + /****** md5 signature: fc0d0c2b80a2501fa63795a7b7c92e53 ******/ %feature("compactdefaultargs") NextVertex; %feature("autodoc", "Return ------- @@ -824,8 +824,8 @@ No available documentation. ") NextVertex; virtual void NextVertex(); - /****************** Orientation ******************/ - /**** md5 signature: 0735971c665e1d16dd72730276bafb3b ****/ + /****** BRepTopAdaptor_TopolTool::Orientation ******/ + /****** md5 signature: 0735971c665e1d16dd72730276bafb3b ******/ %feature("compactdefaultargs") Orientation; %feature("autodoc", " Parameters @@ -842,8 +842,8 @@ If the function returns the orientation of the arc. if the orientation is forwar ") Orientation; virtual TopAbs_Orientation Orientation(const opencascade::handle & C); - /****************** Orientation ******************/ - /**** md5 signature: 1e1d1ced6b52c356f59b839a0952b3b6 ****/ + /****** BRepTopAdaptor_TopolTool::Orientation ******/ + /****** md5 signature: 1e1d1ced6b52c356f59b839a0952b3b6 ******/ %feature("compactdefaultargs") Orientation; %feature("autodoc", " Parameters @@ -860,8 +860,8 @@ If the function returns the orientation of the arc. if the orientation is forwar ") Orientation; virtual TopAbs_Orientation Orientation(const opencascade::handle & C); - /****************** Pnt ******************/ - /**** md5 signature: 07c48c1ccc9352adfa820bedabe41ab1 ****/ + /****** BRepTopAdaptor_TopolTool::Pnt ******/ + /****** md5 signature: 07c48c1ccc9352adfa820bedabe41ab1 ******/ %feature("compactdefaultargs") Pnt; %feature("autodoc", " Parameters @@ -878,8 +878,8 @@ Returns 3d point of the vertex v. ") Pnt; virtual gp_Pnt Pnt(const opencascade::handle & V); - /****************** SamplePoint ******************/ - /**** md5 signature: bc5c941f9b59752a7a36373d9a170420 ****/ + /****** BRepTopAdaptor_TopolTool::SamplePoint ******/ + /****** md5 signature: bc5c941f9b59752a7a36373d9a170420 ******/ %feature("compactdefaultargs") SamplePoint; %feature("autodoc", " Parameters @@ -898,8 +898,8 @@ No available documentation. ") SamplePoint; virtual void SamplePoint(const Standard_Integer Index, gp_Pnt2d & P2d, gp_Pnt & P3d); - /****************** Tol3d ******************/ - /**** md5 signature: f820189d20028993788ef5efc7f9ea0f ****/ + /****** BRepTopAdaptor_TopolTool::Tol3d ******/ + /****** md5 signature: f820189d20028993788ef5efc7f9ea0f ******/ %feature("compactdefaultargs") Tol3d; %feature("autodoc", " Parameters @@ -916,8 +916,8 @@ Returns 3d tolerance of the arc c. ") Tol3d; virtual Standard_Real Tol3d(const opencascade::handle & C); - /****************** Tol3d ******************/ - /**** md5 signature: 36153ba1d394ad94701849f935fac318 ****/ + /****** BRepTopAdaptor_TopolTool::Tol3d ******/ + /****** md5 signature: 36153ba1d394ad94701849f935fac318 ******/ %feature("compactdefaultargs") Tol3d; %feature("autodoc", " Parameters @@ -934,8 +934,8 @@ Returns 3d tolerance of the vertex v. ") Tol3d; virtual Standard_Real Tol3d(const opencascade::handle & V); - /****************** Value ******************/ - /**** md5 signature: d434368cfe93892ae89893f79cf67479 ****/ + /****** BRepTopAdaptor_TopolTool::Value ******/ + /****** md5 signature: d434368cfe93892ae89893f79cf67479 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -947,8 +947,8 @@ No available documentation. ") Value; virtual opencascade::handle Value(); - /****************** Vertex ******************/ - /**** md5 signature: 6c366dfe7165527233236e7fbb6bdce6 ****/ + /****** BRepTopAdaptor_TopolTool::Vertex ******/ + /****** md5 signature: 6c366dfe7165527233236e7fbb6bdce6 ******/ %feature("compactdefaultargs") Vertex; %feature("autodoc", "Return ------- diff --git a/src/SWIG_files/wrapper/BSplCLib.i b/src/SWIG_files/wrapper/BSplCLib.i index e6a57d37d..4c7d1779b 100644 --- a/src/SWIG_files/wrapper/BSplCLib.i +++ b/src/SWIG_files/wrapper/BSplCLib.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BSPLCLIBDOCSTRING "BSplCLib module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_bsplclib.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_bsplclib.html" %enddef %module (package="OCC.Core", docstring=BSPLCLIBDOCSTRING) BSplCLib @@ -117,8 +117,8 @@ BSplCLib_QuasiConstant = BSplCLib_MultDistribution.BSplCLib_QuasiConstant %rename(bsplclib) BSplCLib; class BSplCLib { public: - /****************** AntiBoorScheme ******************/ - /**** md5 signature: f2a15c1ab9b1fa3f3839f413b77c4060 ****/ + /****** BSplCLib::AntiBoorScheme ******/ + /****** md5 signature: f2a15c1ab9b1fa3f3839f413b77c4060 ******/ %feature("compactdefaultargs") AntiBoorScheme; %feature("autodoc", " Parameters @@ -141,8 +141,8 @@ Compute the content of pole before the boorscheme. this method is used to remove ") AntiBoorScheme; static Standard_Boolean AntiBoorScheme(const Standard_Real U, const Standard_Integer Degree, Standard_Real &OutValue, const Standard_Integer Dimension, Standard_Real &OutValue, const Standard_Integer Depth, const Standard_Integer Length, const Standard_Real Tolerance); - /****************** Bohm ******************/ - /**** md5 signature: 84b7e6290b2939358c0b5fd95367ff2c ****/ + /****** BSplCLib::Bohm ******/ + /****** md5 signature: 84b7e6290b2939358c0b5fd95367ff2c ******/ %feature("compactdefaultargs") Bohm; %feature("autodoc", " Parameters @@ -163,8 +163,8 @@ Performs the bohm algorithm at parameter . this algorithm computes the value ") Bohm; static void Bohm(const Standard_Real U, const Standard_Integer Degree, const Standard_Integer N, Standard_Real &OutValue, const Standard_Integer Dimension, Standard_Real &OutValue); - /****************** BoorIndex ******************/ - /**** md5 signature: fe6c98ba2e3115fab44859a66dddd7d5 ****/ + /****** BSplCLib::BoorIndex ******/ + /****** md5 signature: fe6c98ba2e3115fab44859a66dddd7d5 ******/ %feature("compactdefaultargs") BoorIndex; %feature("autodoc", " Parameters @@ -183,8 +183,8 @@ Returns the index in the boor result array of the poles . if the boor alg ") BoorIndex; static Standard_Integer BoorIndex(const Standard_Integer Index, const Standard_Integer Length, const Standard_Integer Depth); - /****************** BoorScheme ******************/ - /**** md5 signature: eefddfccb28bb41dfcee6873cbf310be ****/ + /****** BSplCLib::BoorScheme ******/ + /****** md5 signature: eefddfccb28bb41dfcee6873cbf310be ******/ %feature("compactdefaultargs") BoorScheme; %feature("autodoc", " Parameters @@ -206,8 +206,8 @@ Performs the boor algorithm at parameter with the given and the arr ") BoorScheme; static void BoorScheme(const Standard_Real U, const Standard_Integer Degree, Standard_Real &OutValue, const Standard_Integer Dimension, Standard_Real &OutValue, const Standard_Integer Depth, const Standard_Integer Length); - /****************** BuildBSpMatrix ******************/ - /**** md5 signature: 4fca6c948c6dad78f4e6206c4ebe72d7 ****/ + /****** BSplCLib::BuildBSpMatrix ******/ + /****** md5 signature: 4fca6c948c6dad78f4e6206c4ebe72d7 ******/ %feature("compactdefaultargs") BuildBSpMatrix; %feature("autodoc", " Parameters @@ -229,8 +229,8 @@ This builds a fully blown matrix of (ni) bi (tj) //! with i and j within 1..orde ") BuildBSpMatrix; static Standard_Integer BuildBSpMatrix(const TColStd_Array1OfReal & Parameters, const TColStd_Array1OfInteger & OrderArray, const TColStd_Array1OfReal & FlatKnots, const Standard_Integer Degree, math_Matrix & Matrix, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** BuildBoor ******************/ - /**** md5 signature: f16cfb2a5992087302948523a5f30919 ****/ + /****** BSplCLib::BuildBoor ******/ + /****** md5 signature: f16cfb2a5992087302948523a5f30919 ******/ %feature("compactdefaultargs") BuildBoor; %feature("autodoc", " Parameters @@ -250,8 +250,8 @@ Copy in poles for boor scheme. starting from * the poles and weights for the eval scheme. starting from poles(pole ") BuildEval; static void BuildEval(const Standard_Integer Degree, const Standard_Integer Index, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, Standard_Real &OutValue); - /****************** BuildKnots ******************/ - /**** md5 signature: 5b526b765c0171416b4d6dfd6b2cfaf1 ****/ + /****** BSplCLib::BuildKnots ******/ + /****** md5 signature: 5b526b765c0171416b4d6dfd6b2cfaf1 ******/ %feature("compactdefaultargs") BuildKnots; %feature("autodoc", " Parameters @@ -439,8 +439,8 @@ Stores in lk the useful knots for the boorschem on the span knots(index) - knots ") BuildKnots; static void BuildKnots(const Standard_Integer Degree, const Standard_Integer Index, const Standard_Boolean Periodic, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger * Mults, Standard_Real &OutValue); - /****************** BuildSchoenbergPoints ******************/ - /**** md5 signature: 7c7c6b34199d47b94798e9eaa18466de ****/ + /****** BSplCLib::BuildSchoenbergPoints ******/ + /****** md5 signature: 7c7c6b34199d47b94798e9eaa18466de ******/ %feature("compactdefaultargs") BuildSchoenbergPoints; %feature("autodoc", " Parameters @@ -459,8 +459,8 @@ Builds the schoenberg points from the flat knot used to interpolate a bspline si ") BuildSchoenbergPoints; static void BuildSchoenbergPoints(const Standard_Integer Degree, const TColStd_Array1OfReal & FlatKnots, TColStd_Array1OfReal & Parameters); - /****************** CacheD0 ******************/ - /**** md5 signature: 4b87a5084bd23695ffc6f5eb2dc1e975 ****/ + /****** BSplCLib::CacheD0 ******/ + /****** md5 signature: 4b87a5084bd23695ffc6f5eb2dc1e975 ******/ %feature("compactdefaultargs") CacheD0; %feature("autodoc", " Parameters @@ -483,8 +483,8 @@ Perform the evaluation of the of the cache the parameter must be normalized betw ") CacheD0; static void CacheD0(const Standard_Real U, const Standard_Integer Degree, const Standard_Real CacheParameter, const Standard_Real SpanLenght, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, gp_Pnt & Point); - /****************** CacheD0 ******************/ - /**** md5 signature: e4f1a75a966531ff935a46ebf7e7f834 ****/ + /****** BSplCLib::CacheD0 ******/ + /****** md5 signature: e4f1a75a966531ff935a46ebf7e7f834 ******/ %feature("compactdefaultargs") CacheD0; %feature("autodoc", " Parameters @@ -507,8 +507,8 @@ Perform the evaluation of the bspline basis and then multiplies by the weights t ") CacheD0; static void CacheD0(const Standard_Real U, const Standard_Integer Degree, const Standard_Real CacheParameter, const Standard_Real SpanLenght, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, gp_Pnt2d & Point); - /****************** CacheD1 ******************/ - /**** md5 signature: ae504111826c0a9503f1e1e3c5414581 ****/ + /****** BSplCLib::CacheD1 ******/ + /****** md5 signature: ae504111826c0a9503f1e1e3c5414581 ******/ %feature("compactdefaultargs") CacheD1; %feature("autodoc", " Parameters @@ -532,8 +532,8 @@ Perform the evaluation of the of the cache the parameter must be normalized betw ") CacheD1; static void CacheD1(const Standard_Real U, const Standard_Integer Degree, const Standard_Real CacheParameter, const Standard_Real SpanLenght, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, gp_Pnt & Point, gp_Vec & Vec); - /****************** CacheD1 ******************/ - /**** md5 signature: bd3f1e91dd444c350b31810eec8e7216 ****/ + /****** BSplCLib::CacheD1 ******/ + /****** md5 signature: bd3f1e91dd444c350b31810eec8e7216 ******/ %feature("compactdefaultargs") CacheD1; %feature("autodoc", " Parameters @@ -557,8 +557,8 @@ Perform the evaluation of the bspline basis and then multiplies by the weights t ") CacheD1; static void CacheD1(const Standard_Real U, const Standard_Integer Degree, const Standard_Real CacheParameter, const Standard_Real SpanLenght, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, gp_Pnt2d & Point, gp_Vec2d & Vec); - /****************** CacheD2 ******************/ - /**** md5 signature: 9f31e63202d02d8f93edddb5d118458f ****/ + /****** BSplCLib::CacheD2 ******/ + /****** md5 signature: 9f31e63202d02d8f93edddb5d118458f ******/ %feature("compactdefaultargs") CacheD2; %feature("autodoc", " Parameters @@ -583,8 +583,8 @@ Perform the evaluation of the of the cache the parameter must be normalized betw ") CacheD2; static void CacheD2(const Standard_Real U, const Standard_Integer Degree, const Standard_Real CacheParameter, const Standard_Real SpanLenght, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, gp_Pnt & Point, gp_Vec & Vec1, gp_Vec & Vec2); - /****************** CacheD2 ******************/ - /**** md5 signature: ef6db7863626261e8a1f32874d2ed3bd ****/ + /****** BSplCLib::CacheD2 ******/ + /****** md5 signature: ef6db7863626261e8a1f32874d2ed3bd ******/ %feature("compactdefaultargs") CacheD2; %feature("autodoc", " Parameters @@ -609,8 +609,8 @@ Perform the evaluation of the bspline basis and then multiplies by the weights t ") CacheD2; static void CacheD2(const Standard_Real U, const Standard_Integer Degree, const Standard_Real CacheParameter, const Standard_Real SpanLenght, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, gp_Pnt2d & Point, gp_Vec2d & Vec1, gp_Vec2d & Vec2); - /****************** CacheD3 ******************/ - /**** md5 signature: 0a3f8637dbdbd34edf1705c597e300f0 ****/ + /****** BSplCLib::CacheD3 ******/ + /****** md5 signature: 0a3f8637dbdbd34edf1705c597e300f0 ******/ %feature("compactdefaultargs") CacheD3; %feature("autodoc", " Parameters @@ -636,8 +636,8 @@ Perform the evaluation of the of the cache the parameter must be normalized betw ") CacheD3; static void CacheD3(const Standard_Real U, const Standard_Integer Degree, const Standard_Real CacheParameter, const Standard_Real SpanLenght, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, gp_Pnt & Point, gp_Vec & Vec1, gp_Vec & Vec2, gp_Vec & Vec3); - /****************** CacheD3 ******************/ - /**** md5 signature: e5d96d09eb78ae6b9e6eddab8ceeacd5 ****/ + /****** BSplCLib::CacheD3 ******/ + /****** md5 signature: e5d96d09eb78ae6b9e6eddab8ceeacd5 ******/ %feature("compactdefaultargs") CacheD3; %feature("autodoc", " Parameters @@ -663,8 +663,8 @@ Perform the evaluation of the bspline basis and then multiplies by the weights t ") CacheD3; static void CacheD3(const Standard_Real U, const Standard_Integer Degree, const Standard_Real CacheParameter, const Standard_Real SpanLenght, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, gp_Pnt2d & Point, gp_Vec2d & Vec1, gp_Vec2d & Vec2, gp_Vec2d & Vec3); - /****************** CoefsD0 ******************/ - /**** md5 signature: 18bf8e212b82477c8304e717ea65ad39 ****/ + /****** BSplCLib::CoefsD0 ******/ + /****** md5 signature: 18bf8e212b82477c8304e717ea65ad39 ******/ %feature("compactdefaultargs") CoefsD0; %feature("autodoc", " Parameters @@ -684,8 +684,8 @@ Calls cached0 for bezier curves arrays computed with the method polescoefficient ") CoefsD0; static void CoefsD0(const Standard_Real U, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, gp_Pnt & Point); - /****************** CoefsD0 ******************/ - /**** md5 signature: 39bdd7ed41460b8569726669dbd4e7bb ****/ + /****** BSplCLib::CoefsD0 ******/ + /****** md5 signature: 39bdd7ed41460b8569726669dbd4e7bb ******/ %feature("compactdefaultargs") CoefsD0; %feature("autodoc", " Parameters @@ -705,8 +705,8 @@ Calls cached0 for bezier curves arrays computed with the method polescoefficient ") CoefsD0; static void CoefsD0(const Standard_Real U, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, gp_Pnt2d & Point); - /****************** CoefsD1 ******************/ - /**** md5 signature: 3242be6bc01e487f3d616e7a4fc09f58 ****/ + /****** BSplCLib::CoefsD1 ******/ + /****** md5 signature: 3242be6bc01e487f3d616e7a4fc09f58 ******/ %feature("compactdefaultargs") CoefsD1; %feature("autodoc", " Parameters @@ -727,8 +727,8 @@ Calls cached1 for bezier curves arrays computed with the method polescoefficient ") CoefsD1; static void CoefsD1(const Standard_Real U, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, gp_Pnt & Point, gp_Vec & Vec); - /****************** CoefsD1 ******************/ - /**** md5 signature: 003fec260a51b66354e299192f1a2acb ****/ + /****** BSplCLib::CoefsD1 ******/ + /****** md5 signature: 003fec260a51b66354e299192f1a2acb ******/ %feature("compactdefaultargs") CoefsD1; %feature("autodoc", " Parameters @@ -749,8 +749,8 @@ Calls cached1 for bezier curves arrays computed with the method polescoefficient ") CoefsD1; static void CoefsD1(const Standard_Real U, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, gp_Pnt2d & Point, gp_Vec2d & Vec); - /****************** CoefsD2 ******************/ - /**** md5 signature: a760925979becb0846798bef7d4517a1 ****/ + /****** BSplCLib::CoefsD2 ******/ + /****** md5 signature: a760925979becb0846798bef7d4517a1 ******/ %feature("compactdefaultargs") CoefsD2; %feature("autodoc", " Parameters @@ -772,8 +772,8 @@ Calls cached1 for bezier curves arrays computed with the method polescoefficient ") CoefsD2; static void CoefsD2(const Standard_Real U, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, gp_Pnt & Point, gp_Vec & Vec1, gp_Vec & Vec2); - /****************** CoefsD2 ******************/ - /**** md5 signature: 457c4121231654d520b6b729f5ded246 ****/ + /****** BSplCLib::CoefsD2 ******/ + /****** md5 signature: 457c4121231654d520b6b729f5ded246 ******/ %feature("compactdefaultargs") CoefsD2; %feature("autodoc", " Parameters @@ -795,8 +795,8 @@ Calls cached1 for bezier curves arrays computed with the method polescoefficient ") CoefsD2; static void CoefsD2(const Standard_Real U, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, gp_Pnt2d & Point, gp_Vec2d & Vec1, gp_Vec2d & Vec2); - /****************** CoefsD3 ******************/ - /**** md5 signature: c6ad727e15781fe3ca510ef85b7cfc4c ****/ + /****** BSplCLib::CoefsD3 ******/ + /****** md5 signature: c6ad727e15781fe3ca510ef85b7cfc4c ******/ %feature("compactdefaultargs") CoefsD3; %feature("autodoc", " Parameters @@ -819,8 +819,8 @@ Calls cached1 for bezier curves arrays computed with the method polescoefficient ") CoefsD3; static void CoefsD3(const Standard_Real U, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, gp_Pnt & Point, gp_Vec & Vec1, gp_Vec & Vec2, gp_Vec & Vec3); - /****************** CoefsD3 ******************/ - /**** md5 signature: 6f91ff262a63e5b085eae5793d90d147 ****/ + /****** BSplCLib::CoefsD3 ******/ + /****** md5 signature: 6f91ff262a63e5b085eae5793d90d147 ******/ %feature("compactdefaultargs") CoefsD3; %feature("autodoc", " Parameters @@ -843,8 +843,8 @@ Calls cached1 for bezier curves arrays computed with the method polescoefficient ") CoefsD3; static void CoefsD3(const Standard_Real U, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, gp_Pnt2d & Point, gp_Vec2d & Vec1, gp_Vec2d & Vec2, gp_Vec2d & Vec3); - /****************** D0 ******************/ - /**** md5 signature: 7561aecd85a8c1fd870660e7b2329d8c ****/ + /****** BSplCLib::D0 ******/ + /****** md5 signature: 7561aecd85a8c1fd870660e7b2329d8c ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -868,8 +868,8 @@ No available documentation. ") D0; static void D0(const Standard_Real U, const Standard_Integer Index, const Standard_Integer Degree, const Standard_Boolean Periodic, const TColStd_Array1OfReal & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger * Mults, Standard_Real &OutValue); - /****************** D0 ******************/ - /**** md5 signature: 5a86ac63b280d12dc49149ab86701593 ****/ + /****** BSplCLib::D0 ******/ + /****** md5 signature: 5a86ac63b280d12dc49149ab86701593 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -894,8 +894,8 @@ No available documentation. ") D0; static void D0(const Standard_Real U, const Standard_Integer Index, const Standard_Integer Degree, const Standard_Boolean Periodic, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger * Mults, gp_Pnt & P); - /****************** D0 ******************/ - /**** md5 signature: 732828ed2bf7b4c8007607b33b5017e6 ****/ + /****** BSplCLib::D0 ******/ + /****** md5 signature: 732828ed2bf7b4c8007607b33b5017e6 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -920,8 +920,8 @@ No available documentation. ") D0; static void D0(const Standard_Real U, const Standard_Integer UIndex, const Standard_Integer Degree, const Standard_Boolean Periodic, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger * Mults, gp_Pnt2d & P); - /****************** D0 ******************/ - /**** md5 signature: 33d3e7f80011e8d41cfdf3310bf2746b ****/ + /****** BSplCLib::D0 ******/ + /****** md5 signature: 33d3e7f80011e8d41cfdf3310bf2746b ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -941,8 +941,8 @@ No available documentation. ") D0; static void D0(const Standard_Real U, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, gp_Pnt & P); - /****************** D0 ******************/ - /**** md5 signature: 1ec2056c99d3c27e743528d574bd1b08 ****/ + /****** BSplCLib::D0 ******/ + /****** md5 signature: 1ec2056c99d3c27e743528d574bd1b08 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -962,8 +962,8 @@ No available documentation. ") D0; static void D0(const Standard_Real U, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, gp_Pnt2d & P); - /****************** D1 ******************/ - /**** md5 signature: c5d4a5a42567bcbaa42a3a45f7913898 ****/ + /****** BSplCLib::D1 ******/ + /****** md5 signature: c5d4a5a42567bcbaa42a3a45f7913898 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -988,8 +988,8 @@ No available documentation. ") D1; static void D1(const Standard_Real U, const Standard_Integer Index, const Standard_Integer Degree, const Standard_Boolean Periodic, const TColStd_Array1OfReal & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger * Mults, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** D1 ******************/ - /**** md5 signature: 8a5113bc308ff33804f33bdc1ed608ba ****/ + /****** BSplCLib::D1 ******/ + /****** md5 signature: 8a5113bc308ff33804f33bdc1ed608ba ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -1015,8 +1015,8 @@ No available documentation. ") D1; static void D1(const Standard_Real U, const Standard_Integer Index, const Standard_Integer Degree, const Standard_Boolean Periodic, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger * Mults, gp_Pnt & P, gp_Vec & V); - /****************** D1 ******************/ - /**** md5 signature: fd089236138b75127a4ad6b78bc6e10c ****/ + /****** BSplCLib::D1 ******/ + /****** md5 signature: fd089236138b75127a4ad6b78bc6e10c ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -1042,8 +1042,8 @@ No available documentation. ") D1; static void D1(const Standard_Real U, const Standard_Integer UIndex, const Standard_Integer Degree, const Standard_Boolean Periodic, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger * Mults, gp_Pnt2d & P, gp_Vec2d & V); - /****************** D1 ******************/ - /**** md5 signature: 87bba8d0c8b6927eb3568c326fc6fb48 ****/ + /****** BSplCLib::D1 ******/ + /****** md5 signature: 87bba8d0c8b6927eb3568c326fc6fb48 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -1064,8 +1064,8 @@ No available documentation. ") D1; static void D1(const Standard_Real U, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, gp_Pnt & P, gp_Vec & V); - /****************** D1 ******************/ - /**** md5 signature: 3b7b11ae9a40e85d080202fc6a53897a ****/ + /****** BSplCLib::D1 ******/ + /****** md5 signature: 3b7b11ae9a40e85d080202fc6a53897a ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -1086,8 +1086,8 @@ No available documentation. ") D1; static void D1(const Standard_Real U, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, gp_Pnt2d & P, gp_Vec2d & V); - /****************** D2 ******************/ - /**** md5 signature: 687cea2fb0236f24716895fa76c91fd2 ****/ + /****** BSplCLib::D2 ******/ + /****** md5 signature: 687cea2fb0236f24716895fa76c91fd2 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -1113,8 +1113,8 @@ No available documentation. ") D2; static void D2(const Standard_Real U, const Standard_Integer Index, const Standard_Integer Degree, const Standard_Boolean Periodic, const TColStd_Array1OfReal & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger * Mults, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** D2 ******************/ - /**** md5 signature: b73abb803e141f8dc4ec09df17e4c50e ****/ + /****** BSplCLib::D2 ******/ + /****** md5 signature: b73abb803e141f8dc4ec09df17e4c50e ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -1141,8 +1141,8 @@ No available documentation. ") D2; static void D2(const Standard_Real U, const Standard_Integer Index, const Standard_Integer Degree, const Standard_Boolean Periodic, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger * Mults, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2); - /****************** D2 ******************/ - /**** md5 signature: 6058645d1d031db231dada3d3a54b986 ****/ + /****** BSplCLib::D2 ******/ + /****** md5 signature: 6058645d1d031db231dada3d3a54b986 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -1169,8 +1169,8 @@ No available documentation. ") D2; static void D2(const Standard_Real U, const Standard_Integer UIndex, const Standard_Integer Degree, const Standard_Boolean Periodic, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger * Mults, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2); - /****************** D2 ******************/ - /**** md5 signature: 63365348497a5b480b7839c0964e9d2e ****/ + /****** BSplCLib::D2 ******/ + /****** md5 signature: 63365348497a5b480b7839c0964e9d2e ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -1192,8 +1192,8 @@ No available documentation. ") D2; static void D2(const Standard_Real U, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2); - /****************** D2 ******************/ - /**** md5 signature: 8f777be84c1d31a5bc0c3ddef76c70c5 ****/ + /****** BSplCLib::D2 ******/ + /****** md5 signature: 8f777be84c1d31a5bc0c3ddef76c70c5 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -1215,8 +1215,8 @@ No available documentation. ") D2; static void D2(const Standard_Real U, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2); - /****************** D3 ******************/ - /**** md5 signature: 8e56e662476d83277aff218518c2783b ****/ + /****** BSplCLib::D3 ******/ + /****** md5 signature: 8e56e662476d83277aff218518c2783b ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -1243,8 +1243,8 @@ No available documentation. ") D3; static void D3(const Standard_Real U, const Standard_Integer Index, const Standard_Integer Degree, const Standard_Boolean Periodic, const TColStd_Array1OfReal & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger * Mults, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** D3 ******************/ - /**** md5 signature: 7c47b7eb8d5b8d180c4d45228f81647c ****/ + /****** BSplCLib::D3 ******/ + /****** md5 signature: 7c47b7eb8d5b8d180c4d45228f81647c ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -1272,8 +1272,8 @@ No available documentation. ") D3; static void D3(const Standard_Real U, const Standard_Integer Index, const Standard_Integer Degree, const Standard_Boolean Periodic, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger * Mults, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2, gp_Vec & V3); - /****************** D3 ******************/ - /**** md5 signature: 81bfef3adc8c0544d61a9b166341c5c9 ****/ + /****** BSplCLib::D3 ******/ + /****** md5 signature: 81bfef3adc8c0544d61a9b166341c5c9 ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -1301,8 +1301,8 @@ No available documentation. ") D3; static void D3(const Standard_Real U, const Standard_Integer UIndex, const Standard_Integer Degree, const Standard_Boolean Periodic, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger * Mults, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2, gp_Vec2d & V3); - /****************** D3 ******************/ - /**** md5 signature: f0a77f2c8079c2632af45d55df4473cb ****/ + /****** BSplCLib::D3 ******/ + /****** md5 signature: f0a77f2c8079c2632af45d55df4473cb ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -1325,8 +1325,8 @@ No available documentation. ") D3; static void D3(const Standard_Real U, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2, gp_Vec & V3); - /****************** D3 ******************/ - /**** md5 signature: 3d0d0bbd88ac150dc6372f46c6dabd3e ****/ + /****** BSplCLib::D3 ******/ + /****** md5 signature: 3d0d0bbd88ac150dc6372f46c6dabd3e ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -1349,8 +1349,8 @@ No available documentation. ") D3; static void D3(const Standard_Real U, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2, gp_Vec2d & V3); - /****************** Derivative ******************/ - /**** md5 signature: 3e05b06fef7b008a06c0d9da82c6a38b ****/ + /****** BSplCLib::Derivative ******/ + /****** md5 signature: 3e05b06fef7b008a06c0d9da82c6a38b ******/ %feature("compactdefaultargs") Derivative; %feature("autodoc", " Parameters @@ -1371,8 +1371,8 @@ Computes the poles of the bspline giving the derivatives of order . //! t ") Derivative; static void Derivative(const Standard_Integer Degree, Standard_Real &OutValue, const Standard_Integer Dimension, const Standard_Integer Length, const Standard_Integer Order, Standard_Real &OutValue); - /****************** Eval ******************/ - /**** md5 signature: 306d3d56ab8e2e7587db79730d72385e ****/ + /****** BSplCLib::Eval ******/ + /****** md5 signature: 306d3d56ab8e2e7587db79730d72385e ******/ %feature("compactdefaultargs") Eval; %feature("autodoc", " Parameters @@ -1392,8 +1392,8 @@ Perform the boor algorithm to evaluate a point at parameter , with a ") Eval; static void Eval(const Standard_Real U, const Standard_Integer Degree, Standard_Real &OutValue, const Standard_Integer Dimension, Standard_Real &OutValue); - /****************** Eval ******************/ - /**** md5 signature: 2650b9a2ce8101d2c64b1aa2dc7230ed ****/ + /****** BSplCLib::Eval ******/ + /****** md5 signature: 2650b9a2ce8101d2c64b1aa2dc7230ed ******/ %feature("compactdefaultargs") Eval; %feature("autodoc", " Parameters @@ -1417,8 +1417,8 @@ Perform the de boor algorithm to evaluate a point at parameter , with , with in the k ") FlatIndex; static Standard_Integer FlatIndex(const Standard_Integer Degree, const Standard_Integer Index, const TColStd_Array1OfInteger & Mults, const Standard_Boolean Periodic); - /****************** FunctionMultiply ******************/ - /**** md5 signature: d11350ab30e3e1a830d351b4bb9b3c45 ****/ + /****** BSplCLib::FunctionMultiply ******/ + /****** md5 signature: d11350ab30e3e1a830d351b4bb9b3c45 ******/ %feature("compactdefaultargs") FunctionMultiply; %feature("autodoc", " Parameters @@ -1622,8 +1622,8 @@ This will multiply a given vectorial bspline f(t) defined by its bsplinedegree a ") FunctionMultiply; static void FunctionMultiply(const BSplCLib_EvaluatorFunction & Function, const Standard_Integer BSplineDegree, const TColStd_Array1OfReal & BSplineFlatKnots, const Standard_Integer PolesDimension, Standard_Real &OutValue, const TColStd_Array1OfReal & FlatKnots, const Standard_Integer NewDegree, Standard_Real &OutValue, Standard_Integer &OutValue); - /****************** FunctionMultiply ******************/ - /**** md5 signature: b75e7664cfee0abd3a4bb0f96527f5f0 ****/ + /****** BSplCLib::FunctionMultiply ******/ + /****** md5 signature: b75e7664cfee0abd3a4bb0f96527f5f0 ******/ %feature("compactdefaultargs") FunctionMultiply; %feature("autodoc", " Parameters @@ -1646,8 +1646,8 @@ This will multiply a given vectorial bspline f(t) defined by its bsplinedegree a ") FunctionMultiply; static void FunctionMultiply(const BSplCLib_EvaluatorFunction & Function, const Standard_Integer BSplineDegree, const TColStd_Array1OfReal & BSplineFlatKnots, const TColStd_Array1OfReal & Poles, const TColStd_Array1OfReal & FlatKnots, const Standard_Integer NewDegree, TColStd_Array1OfReal & NewPoles, Standard_Integer &OutValue); - /****************** FunctionMultiply ******************/ - /**** md5 signature: 304af15d568488c4302864bfd1fe935b ****/ + /****** BSplCLib::FunctionMultiply ******/ + /****** md5 signature: 304af15d568488c4302864bfd1fe935b ******/ %feature("compactdefaultargs") FunctionMultiply; %feature("autodoc", " Parameters @@ -1670,8 +1670,8 @@ This will multiply a given vectorial bspline f(t) defined by its bsplinedegree a ") FunctionMultiply; static void FunctionMultiply(const BSplCLib_EvaluatorFunction & Function, const Standard_Integer BSplineDegree, const TColStd_Array1OfReal & BSplineFlatKnots, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal & FlatKnots, const Standard_Integer NewDegree, TColgp_Array1OfPnt2d & NewPoles, Standard_Integer &OutValue); - /****************** FunctionMultiply ******************/ - /**** md5 signature: 2d5b01a1995bf4a63b4ac71a00fa384d ****/ + /****** BSplCLib::FunctionMultiply ******/ + /****** md5 signature: 2d5b01a1995bf4a63b4ac71a00fa384d ******/ %feature("compactdefaultargs") FunctionMultiply; %feature("autodoc", " Parameters @@ -1694,8 +1694,8 @@ This will multiply a given vectorial bspline f(t) defined by its bsplinedegree a ") FunctionMultiply; static void FunctionMultiply(const BSplCLib_EvaluatorFunction & Function, const Standard_Integer BSplineDegree, const TColStd_Array1OfReal & BSplineFlatKnots, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal & FlatKnots, const Standard_Integer NewDegree, TColgp_Array1OfPnt & NewPoles, Standard_Integer &OutValue); - /****************** FunctionReparameterise ******************/ - /**** md5 signature: 276c4138358cfb806cbc5e4946b652e7 ****/ + /****** BSplCLib::FunctionReparameterise ******/ + /****** md5 signature: 276c4138358cfb806cbc5e4946b652e7 ******/ %feature("compactdefaultargs") FunctionReparameterise; %feature("autodoc", " Parameters @@ -1719,8 +1719,8 @@ This function will compose a given vectorial bspline f(t) defined by its bspline ") FunctionReparameterise; static void FunctionReparameterise(const BSplCLib_EvaluatorFunction & Function, const Standard_Integer BSplineDegree, const TColStd_Array1OfReal & BSplineFlatKnots, const Standard_Integer PolesDimension, Standard_Real &OutValue, const TColStd_Array1OfReal & FlatKnots, const Standard_Integer NewDegree, Standard_Real &OutValue, Standard_Integer &OutValue); - /****************** FunctionReparameterise ******************/ - /**** md5 signature: fff0db2cdbcf124496ae30f263735931 ****/ + /****** BSplCLib::FunctionReparameterise ******/ + /****** md5 signature: fff0db2cdbcf124496ae30f263735931 ******/ %feature("compactdefaultargs") FunctionReparameterise; %feature("autodoc", " Parameters @@ -1743,8 +1743,8 @@ This function will compose a given vectorial bspline f(t) defined by its bspline ") FunctionReparameterise; static void FunctionReparameterise(const BSplCLib_EvaluatorFunction & Function, const Standard_Integer BSplineDegree, const TColStd_Array1OfReal & BSplineFlatKnots, const TColStd_Array1OfReal & Poles, const TColStd_Array1OfReal & FlatKnots, const Standard_Integer NewDegree, TColStd_Array1OfReal & NewPoles, Standard_Integer &OutValue); - /****************** FunctionReparameterise ******************/ - /**** md5 signature: 8482a00dea0cf23f29af3cb5e99182ea ****/ + /****** BSplCLib::FunctionReparameterise ******/ + /****** md5 signature: 8482a00dea0cf23f29af3cb5e99182ea ******/ %feature("compactdefaultargs") FunctionReparameterise; %feature("autodoc", " Parameters @@ -1767,8 +1767,8 @@ This will compose a given vectorial bspline f(t) defined by its bsplinedegree an ") FunctionReparameterise; static void FunctionReparameterise(const BSplCLib_EvaluatorFunction & Function, const Standard_Integer BSplineDegree, const TColStd_Array1OfReal & BSplineFlatKnots, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal & FlatKnots, const Standard_Integer NewDegree, TColgp_Array1OfPnt & NewPoles, Standard_Integer &OutValue); - /****************** FunctionReparameterise ******************/ - /**** md5 signature: 0681500ae08b1b57f6b23f3500cf8eb6 ****/ + /****** BSplCLib::FunctionReparameterise ******/ + /****** md5 signature: 0681500ae08b1b57f6b23f3500cf8eb6 ******/ %feature("compactdefaultargs") FunctionReparameterise; %feature("autodoc", " Parameters @@ -1791,8 +1791,8 @@ This will compose a given vectorial bspline f(t) defined by its bsplinedegree an ") FunctionReparameterise; static void FunctionReparameterise(const BSplCLib_EvaluatorFunction & Function, const Standard_Integer BSplineDegree, const TColStd_Array1OfReal & BSplineFlatKnots, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal & FlatKnots, const Standard_Integer NewDegree, TColgp_Array1OfPnt2d & NewPoles, Standard_Integer &OutValue); - /****************** GetPole ******************/ - /**** md5 signature: 801683e94bd4376a7e09453b2ffdb655 ****/ + /****** BSplCLib::GetPole ******/ + /****** md5 signature: 801683e94bd4376a7e09453b2ffdb655 ******/ %feature("compactdefaultargs") GetPole; %feature("autodoc", " Parameters @@ -1814,8 +1814,8 @@ Copy the pole at position in the boor scheme of dimension to ") GetPole; static void GetPole(const Standard_Integer Index, const Standard_Integer Length, const Standard_Integer Depth, const Standard_Integer Dimension, Standard_Real &OutValue, Standard_Integer &OutValue, TColStd_Array1OfReal & Pole); - /****************** Hunt ******************/ - /**** md5 signature: 4314b3314e47859975535fbccf40e912 ****/ + /****** BSplCLib::Hunt ******/ + /****** md5 signature: 4314b3314e47859975535fbccf40e912 ******/ %feature("compactdefaultargs") Hunt; %feature("autodoc", " Parameters @@ -1833,8 +1833,8 @@ This routine searches the position of the real value thex in the monotonically i ") Hunt; static void Hunt(const TColStd_Array1OfReal & theArray, const Standard_Real theX, Standard_Integer &OutValue); - /****************** IncreaseDegree ******************/ - /**** md5 signature: 3cdd7098cdf1c731c23a659a3dafafad ****/ + /****** BSplCLib::IncreaseDegree ******/ + /****** md5 signature: 3cdd7098cdf1c731c23a659a3dafafad ******/ %feature("compactdefaultargs") IncreaseDegree; %feature("autodoc", " Parameters @@ -1860,8 +1860,8 @@ No available documentation. ") IncreaseDegree; static void IncreaseDegree(const Standard_Integer Degree, const Standard_Integer NewDegree, const Standard_Boolean Periodic, const Standard_Integer Dimension, const TColStd_Array1OfReal & Poles, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, TColStd_Array1OfReal & NewPoles, TColStd_Array1OfReal & NewKnots, TColStd_Array1OfInteger & NewMults); - /****************** IncreaseDegree ******************/ - /**** md5 signature: 9e287ffd60ca2b64f0c80bf8e906f987 ****/ + /****** BSplCLib::IncreaseDegree ******/ + /****** md5 signature: 9e287ffd60ca2b64f0c80bf8e906f987 ******/ %feature("compactdefaultargs") IncreaseDegree; %feature("autodoc", " Parameters @@ -1888,8 +1888,8 @@ No available documentation. ") IncreaseDegree; static void IncreaseDegree(const Standard_Integer Degree, const Standard_Integer NewDegree, const Standard_Boolean Periodic, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, TColgp_Array1OfPnt & NewPoles, TColStd_Array1OfReal * NewWeights, TColStd_Array1OfReal & NewKnots, TColStd_Array1OfInteger & NewMults); - /****************** IncreaseDegree ******************/ - /**** md5 signature: de3d7e2f464ecd91afcc95a62f774187 ****/ + /****** BSplCLib::IncreaseDegree ******/ + /****** md5 signature: de3d7e2f464ecd91afcc95a62f774187 ******/ %feature("compactdefaultargs") IncreaseDegree; %feature("autodoc", " Parameters @@ -1916,8 +1916,8 @@ No available documentation. ") IncreaseDegree; static void IncreaseDegree(const Standard_Integer Degree, const Standard_Integer NewDegree, const Standard_Boolean Periodic, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, TColgp_Array1OfPnt2d & NewPoles, TColStd_Array1OfReal * NewWeights, TColStd_Array1OfReal & NewKnots, TColStd_Array1OfInteger & NewMults); - /****************** IncreaseDegree ******************/ - /**** md5 signature: 102e348aaf60f52be4a7ee5086788702 ****/ + /****** BSplCLib::IncreaseDegree ******/ + /****** md5 signature: 102e348aaf60f52be4a7ee5086788702 ******/ %feature("compactdefaultargs") IncreaseDegree; %feature("autodoc", " Parameters @@ -1938,8 +1938,8 @@ No available documentation. ") IncreaseDegree; static void IncreaseDegree(const Standard_Integer NewDegree, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, TColgp_Array1OfPnt & NewPoles, TColStd_Array1OfReal * NewWeights); - /****************** IncreaseDegree ******************/ - /**** md5 signature: 55f08fe0b94875d193f674df9e8d1f57 ****/ + /****** BSplCLib::IncreaseDegree ******/ + /****** md5 signature: 55f08fe0b94875d193f674df9e8d1f57 ******/ %feature("compactdefaultargs") IncreaseDegree; %feature("autodoc", " Parameters @@ -1960,8 +1960,8 @@ Increase the degree of a bspline (or bezier) curve of dimension thedimension for ") IncreaseDegree; static void IncreaseDegree(const Standard_Integer theNewDegree, const TColgp_Array1OfPnt2d & thePoles, const TColStd_Array1OfReal * theWeights, TColgp_Array1OfPnt2d & theNewPoles, TColStd_Array1OfReal * theNewWeights); - /****************** IncreaseDegreeCountKnots ******************/ - /**** md5 signature: 2806348fce0f853dcd1a4c2e39086690 ****/ + /****** BSplCLib::IncreaseDegreeCountKnots ******/ + /****** md5 signature: 2806348fce0f853dcd1a4c2e39086690 ******/ %feature("compactdefaultargs") IncreaseDegreeCountKnots; %feature("autodoc", " Parameters @@ -1981,8 +1981,8 @@ Returns the number of knots of a curve with multiplicities after elevati ") IncreaseDegreeCountKnots; static Standard_Integer IncreaseDegreeCountKnots(const Standard_Integer Degree, const Standard_Integer NewDegree, const Standard_Boolean Periodic, const TColStd_Array1OfInteger & Mults); - /****************** InsertKnot ******************/ - /**** md5 signature: b308d7bc26fadeb0415b09f7df66deed ****/ + /****** BSplCLib::InsertKnot ******/ + /****** md5 signature: b308d7bc26fadeb0415b09f7df66deed ******/ %feature("compactdefaultargs") InsertKnot; %feature("autodoc", " Parameters @@ -2009,8 +2009,8 @@ No available documentation. ") InsertKnot; static void InsertKnot(const Standard_Integer UIndex, const Standard_Real U, const Standard_Integer UMult, const Standard_Integer Degree, const Standard_Boolean Periodic, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, TColgp_Array1OfPnt & NewPoles, TColStd_Array1OfReal * NewWeights); - /****************** InsertKnot ******************/ - /**** md5 signature: b3ed0ff475a71d3360f7c4c61b840029 ****/ + /****** BSplCLib::InsertKnot ******/ + /****** md5 signature: b3ed0ff475a71d3360f7c4c61b840029 ******/ %feature("compactdefaultargs") InsertKnot; %feature("autodoc", " Parameters @@ -2037,8 +2037,8 @@ Insert a new knot u of multiplicity umult in the knot sequence. //! the location ") InsertKnot; static void InsertKnot(const Standard_Integer UIndex, const Standard_Real U, const Standard_Integer UMult, const Standard_Integer Degree, const Standard_Boolean Periodic, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, TColgp_Array1OfPnt2d & NewPoles, TColStd_Array1OfReal * NewWeights); - /****************** InsertKnots ******************/ - /**** md5 signature: 013fe81e359b48ad63b87e4971860cb9 ****/ + /****** BSplCLib::InsertKnots ******/ + /****** md5 signature: 013fe81e359b48ad63b87e4971860cb9 ******/ %feature("compactdefaultargs") InsertKnots; %feature("autodoc", " Parameters @@ -2067,8 +2067,8 @@ No available documentation. ") InsertKnots; static void InsertKnots(const Standard_Integer Degree, const Standard_Boolean Periodic, const Standard_Integer Dimension, const TColStd_Array1OfReal & Poles, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const TColStd_Array1OfReal & AddKnots, const TColStd_Array1OfInteger * AddMults, TColStd_Array1OfReal & NewPoles, TColStd_Array1OfReal & NewKnots, TColStd_Array1OfInteger & NewMults, const Standard_Real Epsilon, const Standard_Boolean Add = Standard_True); - /****************** InsertKnots ******************/ - /**** md5 signature: 44e9b7452e759b97d179e5c2523ae6e6 ****/ + /****** BSplCLib::InsertKnots ******/ + /****** md5 signature: 44e9b7452e759b97d179e5c2523ae6e6 ******/ %feature("compactdefaultargs") InsertKnots; %feature("autodoc", " Parameters @@ -2098,8 +2098,8 @@ No available documentation. ") InsertKnots; static void InsertKnots(const Standard_Integer Degree, const Standard_Boolean Periodic, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const TColStd_Array1OfReal & AddKnots, const TColStd_Array1OfInteger * AddMults, TColgp_Array1OfPnt & NewPoles, TColStd_Array1OfReal * NewWeights, TColStd_Array1OfReal & NewKnots, TColStd_Array1OfInteger & NewMults, const Standard_Real Epsilon, const Standard_Boolean Add = Standard_True); - /****************** InsertKnots ******************/ - /**** md5 signature: be67416d5cb4ecf2afefb17210b615c4 ****/ + /****** BSplCLib::InsertKnots ******/ + /****** md5 signature: be67416d5cb4ecf2afefb17210b615c4 ******/ %feature("compactdefaultargs") InsertKnots; %feature("autodoc", " Parameters @@ -2129,8 +2129,8 @@ Insert a sequence of knots with multiplicities . ") InsertKnots; static void InsertKnots(const Standard_Integer Degree, const Standard_Boolean Periodic, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const TColStd_Array1OfReal & AddKnots, const TColStd_Array1OfInteger * AddMults, TColgp_Array1OfPnt2d & NewPoles, TColStd_Array1OfReal * NewWeights, TColStd_Array1OfReal & NewKnots, TColStd_Array1OfInteger & NewMults, const Standard_Real Epsilon, const Standard_Boolean Add = Standard_True); - /****************** Interpolate ******************/ - /**** md5 signature: e2fa20a66c129381e33f3cb4e6ce9d21 ****/ + /****** BSplCLib::Interpolate ******/ + /****** md5 signature: e2fa20a66c129381e33f3cb4e6ce9d21 ******/ %feature("compactdefaultargs") Interpolate; %feature("autodoc", " Parameters @@ -2151,8 +2151,8 @@ Performs the interpolation of the data given in the poles array according to the ") Interpolate; static void Interpolate(const Standard_Integer Degree, const TColStd_Array1OfReal & FlatKnots, const TColStd_Array1OfReal & Parameters, const TColStd_Array1OfInteger & ContactOrderArray, TColgp_Array1OfPnt & Poles, Standard_Integer &OutValue); - /****************** Interpolate ******************/ - /**** md5 signature: fd5aeac99513f881ae37161394ea9685 ****/ + /****** BSplCLib::Interpolate ******/ + /****** md5 signature: fd5aeac99513f881ae37161394ea9685 ******/ %feature("compactdefaultargs") Interpolate; %feature("autodoc", " Parameters @@ -2173,8 +2173,8 @@ Performs the interpolation of the data given in the poles array according to the ") Interpolate; static void Interpolate(const Standard_Integer Degree, const TColStd_Array1OfReal & FlatKnots, const TColStd_Array1OfReal & Parameters, const TColStd_Array1OfInteger & ContactOrderArray, TColgp_Array1OfPnt2d & Poles, Standard_Integer &OutValue); - /****************** Interpolate ******************/ - /**** md5 signature: 2212219c7508d74418481956ee1ddf0e ****/ + /****** BSplCLib::Interpolate ******/ + /****** md5 signature: 2212219c7508d74418481956ee1ddf0e ******/ %feature("compactdefaultargs") Interpolate; %feature("autodoc", " Parameters @@ -2196,8 +2196,8 @@ Performs the interpolation of the data given in the poles array according to the ") Interpolate; static void Interpolate(const Standard_Integer Degree, const TColStd_Array1OfReal & FlatKnots, const TColStd_Array1OfReal & Parameters, const TColStd_Array1OfInteger & ContactOrderArray, TColgp_Array1OfPnt & Poles, TColStd_Array1OfReal & Weights, Standard_Integer &OutValue); - /****************** Interpolate ******************/ - /**** md5 signature: 0cdd4d771c634dfeec3e69ce9529d617 ****/ + /****** BSplCLib::Interpolate ******/ + /****** md5 signature: 0cdd4d771c634dfeec3e69ce9529d617 ******/ %feature("compactdefaultargs") Interpolate; %feature("autodoc", " Parameters @@ -2219,8 +2219,8 @@ Performs the interpolation of the data given in the poles array according to the ") Interpolate; static void Interpolate(const Standard_Integer Degree, const TColStd_Array1OfReal & FlatKnots, const TColStd_Array1OfReal & Parameters, const TColStd_Array1OfInteger & ContactOrderArray, TColgp_Array1OfPnt2d & Poles, TColStd_Array1OfReal & Weights, Standard_Integer &OutValue); - /****************** Interpolate ******************/ - /**** md5 signature: b5cf60eb426c89a7bf0dd27c83c89e23 ****/ + /****** BSplCLib::Interpolate ******/ + /****** md5 signature: b5cf60eb426c89a7bf0dd27c83c89e23 ******/ %feature("compactdefaultargs") Interpolate; %feature("autodoc", " Parameters @@ -2242,8 +2242,8 @@ Performs the interpolation of the data given in the poles array according to the ") Interpolate; static void Interpolate(const Standard_Integer Degree, const TColStd_Array1OfReal & FlatKnots, const TColStd_Array1OfReal & Parameters, const TColStd_Array1OfInteger & ContactOrderArray, const Standard_Integer ArrayDimension, Standard_Real &OutValue, Standard_Integer &OutValue); - /****************** Interpolate ******************/ - /**** md5 signature: 4ae05d20a7d577aff2db78e9c82a018c ****/ + /****** BSplCLib::Interpolate ******/ + /****** md5 signature: 4ae05d20a7d577aff2db78e9c82a018c ******/ %feature("compactdefaultargs") Interpolate; %feature("autodoc", " Parameters @@ -2266,8 +2266,8 @@ No available documentation. ") Interpolate; static void Interpolate(const Standard_Integer Degree, const TColStd_Array1OfReal & FlatKnots, const TColStd_Array1OfReal & Parameters, const TColStd_Array1OfInteger & ContactOrderArray, const Standard_Integer ArrayDimension, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Integer &OutValue); - /****************** Intervals ******************/ - /**** md5 signature: 6005dd7b642eb153ae7f9293cf41ffb5 ****/ + /****** BSplCLib::Intervals ******/ + /****** md5 signature: 6005dd7b642eb153ae7f9293cf41ffb5 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -2292,8 +2292,8 @@ Splits the given range to bspline intervals of given continuity @param[in] thekn ") Intervals; static Standard_Integer Intervals(const TColStd_Array1OfReal & theKnots, const TColStd_Array1OfInteger & theMults, Standard_Integer theDegree, Standard_Boolean isPeriodic, Standard_Integer theContinuity, Standard_Real theFirst, Standard_Real theLast, Standard_Real theTolerance, TColStd_Array1OfReal * theIntervals); - /****************** IsRational ******************/ - /**** md5 signature: 5ee1bb4d64e0a78acc3cb994f1afcefa ****/ + /****** BSplCLib::IsRational ******/ + /****** md5 signature: 5ee1bb4d64e0a78acc3cb994f1afcefa ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", " Parameters @@ -2313,8 +2313,8 @@ Returns false if all the weights of the array between i1 an i2 are ide ") IsRational; static Standard_Boolean IsRational(const TColStd_Array1OfReal & Weights, const Standard_Integer I1, const Standard_Integer I2, const Standard_Real Epsilon = 0.0); - /****************** KnotAnalysis ******************/ - /**** md5 signature: a6e80a652c2aafa8024e7fdc8544d77c ****/ + /****** BSplCLib::KnotAnalysis ******/ + /****** md5 signature: a6e80a652c2aafa8024e7fdc8544d77c ******/ %feature("compactdefaultargs") KnotAnalysis; %feature("autodoc", " Parameters @@ -2335,8 +2335,8 @@ Analyzes the array of knots. returns the form and the maximum knot multiplicity. ") KnotAnalysis; static void KnotAnalysis(const Standard_Integer Degree, const Standard_Boolean Periodic, const TColStd_Array1OfReal & CKnots, const TColStd_Array1OfInteger & CMults, GeomAbs_BSplKnotDistribution & KnotForm, Standard_Integer &OutValue); - /****************** KnotForm ******************/ - /**** md5 signature: 0097f63f98647952ea3a1e8664501689 ****/ + /****** BSplCLib::KnotForm ******/ + /****** md5 signature: 0097f63f98647952ea3a1e8664501689 ******/ %feature("compactdefaultargs") KnotForm; %feature("autodoc", " Parameters @@ -2355,8 +2355,8 @@ Analyses if the knots distribution is 'uniform' or 'nonuniform' between the knot ") KnotForm; static BSplCLib_KnotDistribution KnotForm(const TColStd_Array1OfReal & Knots, const Standard_Integer FromK1, const Standard_Integer ToK2); - /****************** KnotSequence ******************/ - /**** md5 signature: afb0a094a5f9cb7ee5196da7628bb20b ****/ + /****** BSplCLib::KnotSequence ******/ + /****** md5 signature: afb0a094a5f9cb7ee5196da7628bb20b ******/ %feature("compactdefaultargs") KnotSequence; %feature("autodoc", " Parameters @@ -2376,8 +2376,8 @@ No available documentation. ") KnotSequence; static void KnotSequence(const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, TColStd_Array1OfReal & KnotSeq, const Standard_Boolean Periodic = Standard_False); - /****************** KnotSequence ******************/ - /**** md5 signature: 935f3e64125f13f8b157c325e706c6c5 ****/ + /****** BSplCLib::KnotSequence ******/ + /****** md5 signature: 935f3e64125f13f8b157c325e706c6c5 ******/ %feature("compactdefaultargs") KnotSequence; %feature("autodoc", " Parameters @@ -2398,8 +2398,8 @@ Computes the sequence of knots knotseq with repetition of the knots of multiplic ") KnotSequence; static void KnotSequence(const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Integer Degree, const Standard_Boolean Periodic, TColStd_Array1OfReal & KnotSeq); - /****************** KnotSequenceLength ******************/ - /**** md5 signature: 0b0bae3397b7a20bdbf0907b980aa22a ****/ + /****** BSplCLib::KnotSequenceLength ******/ + /****** md5 signature: 0b0bae3397b7a20bdbf0907b980aa22a ******/ %feature("compactdefaultargs") KnotSequenceLength; %feature("autodoc", " Parameters @@ -2418,8 +2418,8 @@ Returns the length of the sequence of knots with repetition. //! periodic: //! s ") KnotSequenceLength; static Standard_Integer KnotSequenceLength(const TColStd_Array1OfInteger & Mults, const Standard_Integer Degree, const Standard_Boolean Periodic); - /****************** Knots ******************/ - /**** md5 signature: 70efd22fb93da2362599b5a577c6459d ****/ + /****** BSplCLib::Knots ******/ + /****** md5 signature: 70efd22fb93da2362599b5a577c6459d ******/ %feature("compactdefaultargs") Knots; %feature("autodoc", " Parameters @@ -2439,8 +2439,8 @@ Computes the sequence of knots knots without repetition of the knots of multipli ") Knots; static void Knots(const TColStd_Array1OfReal & KnotSeq, TColStd_Array1OfReal & Knots, TColStd_Array1OfInteger & Mults, const Standard_Boolean Periodic = Standard_False); - /****************** KnotsLength ******************/ - /**** md5 signature: f94187e02e0f1196d3a33404dd4beb1c ****/ + /****** BSplCLib::KnotsLength ******/ + /****** md5 signature: f94187e02e0f1196d3a33404dd4beb1c ******/ %feature("compactdefaultargs") KnotsLength; %feature("autodoc", " Parameters @@ -2458,8 +2458,8 @@ Returns the length of the sequence of knots (and mults) without repetition. ") KnotsLength; static Standard_Integer KnotsLength(const TColStd_Array1OfReal & KnotSeq, const Standard_Boolean Periodic = Standard_False); - /****************** LastUKnotIndex ******************/ - /**** md5 signature: 91f9e1c94b860add3183ecd59eb8096a ****/ + /****** BSplCLib::LastUKnotIndex ******/ + /****** md5 signature: 91f9e1c94b860add3183ecd59eb8096a ******/ %feature("compactdefaultargs") LastUKnotIndex; %feature("autodoc", " Parameters @@ -2477,8 +2477,8 @@ Computes the index of the knots value which gives the end point of the curve. ") LastUKnotIndex; static Standard_Integer LastUKnotIndex(const Standard_Integer Degree, const TColStd_Array1OfInteger & Mults); - /****************** LocateParameter ******************/ - /**** md5 signature: 24762308cb330e46f1844ce565eeb2b9 ****/ + /****** BSplCLib::LocateParameter ******/ + /****** md5 signature: 24762308cb330e46f1844ce565eeb2b9 ******/ %feature("compactdefaultargs") LocateParameter; %feature("autodoc", " Parameters @@ -2502,8 +2502,8 @@ Locates the parametric value u in the knots sequence between the knot k1 and the ") LocateParameter; static void LocateParameter(const Standard_Integer Degree, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Real U, const Standard_Boolean IsPeriodic, const Standard_Integer FromK1, const Standard_Integer ToK2, Standard_Integer &OutValue, Standard_Real &OutValue); - /****************** LocateParameter ******************/ - /**** md5 signature: 84a2a9eb0a9f97bd685828ae0b21bc6e ****/ + /****** BSplCLib::LocateParameter ******/ + /****** md5 signature: 84a2a9eb0a9f97bd685828ae0b21bc6e ******/ %feature("compactdefaultargs") LocateParameter; %feature("autodoc", " Parameters @@ -2526,8 +2526,8 @@ Locates the parametric value u in the knots sequence between the knot k1 and the ") LocateParameter; static void LocateParameter(const Standard_Integer Degree, const TColStd_Array1OfReal & Knots, const Standard_Real U, const Standard_Boolean IsPeriodic, const Standard_Integer FromK1, const Standard_Integer ToK2, Standard_Integer &OutValue, Standard_Real &OutValue); - /****************** LocateParameter ******************/ - /**** md5 signature: 7a22649239d0309e62561b711af4bd66 ****/ + /****** BSplCLib::LocateParameter ******/ + /****** md5 signature: 7a22649239d0309e62561b711af4bd66 ******/ %feature("compactdefaultargs") LocateParameter; %feature("autodoc", " Parameters @@ -2549,8 +2549,8 @@ No available documentation. ") LocateParameter; static void LocateParameter(const Standard_Integer Degree, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger * Mults, const Standard_Real U, const Standard_Boolean Periodic, Standard_Integer &OutValue, Standard_Real &OutValue); - /****************** MaxDegree ******************/ - /**** md5 signature: 985314a0ed62b597a9bdf0f555b97bed ****/ + /****** BSplCLib::MaxDegree ******/ + /****** md5 signature: 985314a0ed62b597a9bdf0f555b97bed ******/ %feature("compactdefaultargs") MaxDegree; %feature("autodoc", "Return ------- @@ -2562,8 +2562,8 @@ Returns the degree maxima for a bsplinecurve. ") MaxDegree; static Standard_Integer MaxDegree(); - /****************** MaxKnotMult ******************/ - /**** md5 signature: ac65dfe55c0073e75792f284e56cd7aa ****/ + /****** BSplCLib::MaxKnotMult ******/ + /****** md5 signature: ac65dfe55c0073e75792f284e56cd7aa ******/ %feature("compactdefaultargs") MaxKnotMult; %feature("autodoc", " Parameters @@ -2582,8 +2582,8 @@ Finds the greatest multiplicity in a set of knots between k1 and k2. mults is th ") MaxKnotMult; static Standard_Integer MaxKnotMult(const TColStd_Array1OfInteger & Mults, const Standard_Integer K1, const Standard_Integer K2); - /****************** MergeBSplineKnots ******************/ - /**** md5 signature: effe499663badb4d232069dd652236c2 ****/ + /****** BSplCLib::MergeBSplineKnots ******/ + /****** md5 signature: effe499663badb4d232069dd652236c2 ******/ %feature("compactdefaultargs") MergeBSplineKnots; %feature("autodoc", " Parameters @@ -2610,8 +2610,8 @@ Merges two knot vector by setting the starting and ending values to startvalue a ") MergeBSplineKnots; static void MergeBSplineKnots(const Standard_Real Tolerance, const Standard_Real StartValue, const Standard_Real EndValue, const Standard_Integer Degree1, const TColStd_Array1OfReal & Knots1, const TColStd_Array1OfInteger & Mults1, const Standard_Integer Degree2, const TColStd_Array1OfReal & Knots2, const TColStd_Array1OfInteger & Mults2, Standard_Integer &OutValue, opencascade::handle & NewKnots, opencascade::handle & NewMults); - /****************** MinKnotMult ******************/ - /**** md5 signature: 1a548fdbf5671589224d148d3a3a6b0d ****/ + /****** BSplCLib::MinKnotMult ******/ + /****** md5 signature: 1a548fdbf5671589224d148d3a3a6b0d ******/ %feature("compactdefaultargs") MinKnotMult; %feature("autodoc", " Parameters @@ -2630,8 +2630,8 @@ Finds the lowest multiplicity in a set of knots between k1 and k2. mults is the ") MinKnotMult; static Standard_Integer MinKnotMult(const TColStd_Array1OfInteger & Mults, const Standard_Integer K1, const Standard_Integer K2); - /****************** MovePoint ******************/ - /**** md5 signature: 258c43adb74db6c2cd76d84b353a498f ****/ + /****** BSplCLib::MovePoint ******/ + /****** md5 signature: 258c43adb74db6c2cd76d84b353a498f ******/ %feature("compactdefaultargs") MovePoint; %feature("autodoc", " Parameters @@ -2657,8 +2657,8 @@ Find the new poles which allows an old point (with a given u as parameter) to re ") MovePoint; static void MovePoint(const Standard_Real U, const gp_Vec2d & Displ, const Standard_Integer Index1, const Standard_Integer Index2, const Standard_Integer Degree, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & FlatKnots, Standard_Integer &OutValue, Standard_Integer &OutValue, TColgp_Array1OfPnt2d & NewPoles); - /****************** MovePoint ******************/ - /**** md5 signature: c86875bcabde81f6d6d9eb1c7e44e5de ****/ + /****** BSplCLib::MovePoint ******/ + /****** md5 signature: c86875bcabde81f6d6d9eb1c7e44e5de ******/ %feature("compactdefaultargs") MovePoint; %feature("autodoc", " Parameters @@ -2684,8 +2684,8 @@ Find the new poles which allows an old point (with a given u as parameter) to re ") MovePoint; static void MovePoint(const Standard_Real U, const gp_Vec & Displ, const Standard_Integer Index1, const Standard_Integer Index2, const Standard_Integer Degree, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & FlatKnots, Standard_Integer &OutValue, Standard_Integer &OutValue, TColgp_Array1OfPnt & NewPoles); - /****************** MovePointAndTangent ******************/ - /**** md5 signature: f3528b941ebae064eb869dac3838fd8b ****/ + /****** BSplCLib::MovePointAndTangent ******/ + /****** md5 signature: f3528b941ebae064eb869dac3838fd8b ******/ %feature("compactdefaultargs") MovePointAndTangent; %feature("autodoc", " Parameters @@ -2713,8 +2713,8 @@ This is the dimension free version of the utility u is the parameter must be wit ") MovePointAndTangent; static void MovePointAndTangent(const Standard_Real U, const Standard_Integer ArrayDimension, Standard_Real &OutValue, Standard_Real &OutValue, const Standard_Real Tolerance, const Standard_Integer Degree, const Standard_Integer StartingCondition, const Standard_Integer EndingCondition, Standard_Real &OutValue, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & FlatKnots, Standard_Real &OutValue, Standard_Integer &OutValue); - /****************** MovePointAndTangent ******************/ - /**** md5 signature: 84d0d45564e777fb1d986a7bc7085bd3 ****/ + /****** BSplCLib::MovePointAndTangent ******/ + /****** md5 signature: 84d0d45564e777fb1d986a7bc7085bd3 ******/ %feature("compactdefaultargs") MovePointAndTangent; %feature("autodoc", " Parameters @@ -2741,8 +2741,8 @@ This is the dimension free version of the utility u is the parameter must be wit ") MovePointAndTangent; static void MovePointAndTangent(const Standard_Real U, const gp_Vec & Delta, const gp_Vec & DeltaDerivative, const Standard_Real Tolerance, const Standard_Integer Degree, const Standard_Integer StartingCondition, const Standard_Integer EndingCondition, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & FlatKnots, TColgp_Array1OfPnt & NewPoles, Standard_Integer &OutValue); - /****************** MovePointAndTangent ******************/ - /**** md5 signature: 4281391111a23f8a2fbca803f5519e35 ****/ + /****** BSplCLib::MovePointAndTangent ******/ + /****** md5 signature: 4281391111a23f8a2fbca803f5519e35 ******/ %feature("compactdefaultargs") MovePointAndTangent; %feature("autodoc", " Parameters @@ -2769,8 +2769,8 @@ This is the dimension free version of the utility u is the parameter must be wit ") MovePointAndTangent; static void MovePointAndTangent(const Standard_Real U, const gp_Vec2d & Delta, const gp_Vec2d & DeltaDerivative, const Standard_Real Tolerance, const Standard_Integer Degree, const Standard_Integer StartingCondition, const Standard_Integer EndingCondition, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & FlatKnots, TColgp_Array1OfPnt2d & NewPoles, Standard_Integer &OutValue); - /****************** MultForm ******************/ - /**** md5 signature: 85cc5e3d06d09a736fc529142891b46b ****/ + /****** BSplCLib::MultForm ******/ + /****** md5 signature: 85cc5e3d06d09a736fc529142891b46b ******/ %feature("compactdefaultargs") MultForm; %feature("autodoc", " Parameters @@ -2789,8 +2789,8 @@ Analyses the distribution of multiplicities between the knot fromk1 and the knot ") MultForm; static BSplCLib_MultDistribution MultForm(const TColStd_Array1OfInteger & Mults, const Standard_Integer FromK1, const Standard_Integer ToK2); - /****************** NbPoles ******************/ - /**** md5 signature: c6d4161c26923bab1e3ce4d84d387cfe ****/ + /****** BSplCLib::NbPoles ******/ + /****** md5 signature: c6d4161c26923bab1e3ce4d84d387cfe ******/ %feature("compactdefaultargs") NbPoles; %feature("autodoc", " Parameters @@ -2809,8 +2809,8 @@ Returns the number of poles of the curve. returns 0 if one of the multiplicities ") NbPoles; static Standard_Integer NbPoles(const Standard_Integer Degree, const Standard_Boolean Periodic, const TColStd_Array1OfInteger & Mults); - /****************** NoMults ******************/ - /**** md5 signature: 25ebd1add10620b7395bfd564aafb5c4 ****/ + /****** BSplCLib::NoMults ******/ + /****** md5 signature: 25ebd1add10620b7395bfd564aafb5c4 ******/ %feature("compactdefaultargs") NoMults; %feature("autodoc", "Return ------- @@ -2822,8 +2822,8 @@ Used as argument for a flatknots evaluation. ") NoMults; static TColStd_Array1OfInteger * NoMults(); - /****************** NoWeights ******************/ - /**** md5 signature: bcccc7afe5a4725a5649ba0988d8696b ****/ + /****** BSplCLib::NoWeights ******/ + /****** md5 signature: bcccc7afe5a4725a5649ba0988d8696b ******/ %feature("compactdefaultargs") NoWeights; %feature("autodoc", "Return ------- @@ -2835,8 +2835,8 @@ Used as argument for a non rational curve. ") NoWeights; static TColStd_Array1OfReal * NoWeights(); - /****************** PoleIndex ******************/ - /**** md5 signature: 1ac0cbf47e8a95057f9b7585fb439d64 ****/ + /****** BSplCLib::PoleIndex ******/ + /****** md5 signature: 1ac0cbf47e8a95057f9b7585fb439d64 ******/ %feature("compactdefaultargs") PoleIndex; %feature("autodoc", " Parameters @@ -2856,8 +2856,8 @@ Return the index of the first pole to use on the span mults(index) - mults(index ") PoleIndex; static Standard_Integer PoleIndex(const Standard_Integer Degree, const Standard_Integer Index, const Standard_Boolean Periodic, const TColStd_Array1OfInteger & Mults); - /****************** PolesCoefficients ******************/ - /**** md5 signature: 511519c534e22ba40280528d5d1ef87e ****/ + /****** BSplCLib::PolesCoefficients ******/ + /****** md5 signature: 511519c534e22ba40280528d5d1ef87e ******/ %feature("compactdefaultargs") PolesCoefficients; %feature("autodoc", " Parameters @@ -2875,8 +2875,8 @@ No available documentation. ") PolesCoefficients; static void PolesCoefficients(const TColgp_Array1OfPnt2d & Poles, TColgp_Array1OfPnt2d & CachePoles); - /****************** PolesCoefficients ******************/ - /**** md5 signature: 405a5ce1920546314bea6ba5a6a3f98b ****/ + /****** BSplCLib::PolesCoefficients ******/ + /****** md5 signature: 405a5ce1920546314bea6ba5a6a3f98b ******/ %feature("compactdefaultargs") PolesCoefficients; %feature("autodoc", " Parameters @@ -2896,8 +2896,8 @@ No available documentation. ") PolesCoefficients; static void PolesCoefficients(const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, TColgp_Array1OfPnt2d & CachePoles, TColStd_Array1OfReal * CacheWeights); - /****************** PolesCoefficients ******************/ - /**** md5 signature: ee906c090873ca3443d5f58dda312bc9 ****/ + /****** BSplCLib::PolesCoefficients ******/ + /****** md5 signature: ee906c090873ca3443d5f58dda312bc9 ******/ %feature("compactdefaultargs") PolesCoefficients; %feature("autodoc", " Parameters @@ -2915,8 +2915,8 @@ No available documentation. ") PolesCoefficients; static void PolesCoefficients(const TColgp_Array1OfPnt & Poles, TColgp_Array1OfPnt & CachePoles); - /****************** PolesCoefficients ******************/ - /**** md5 signature: eb7334dc15bb52330ce561fc1f10d66d ****/ + /****** BSplCLib::PolesCoefficients ******/ + /****** md5 signature: eb7334dc15bb52330ce561fc1f10d66d ******/ %feature("compactdefaultargs") PolesCoefficients; %feature("autodoc", " Parameters @@ -2936,8 +2936,8 @@ Encapsulation of buildcache to perform the evaluation of the taylor expansion fo ") PolesCoefficients; static void PolesCoefficients(const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, TColgp_Array1OfPnt & CachePoles, TColStd_Array1OfReal * CacheWeights); - /****************** PrepareInsertKnots ******************/ - /**** md5 signature: a44fd015e2f0b30470efd81b373c7ea8 ****/ + /****** BSplCLib::PrepareInsertKnots ******/ + /****** md5 signature: a44fd015e2f0b30470efd81b373c7ea8 ******/ %feature("compactdefaultargs") PrepareInsertKnots; %feature("autodoc", " Parameters @@ -2962,8 +2962,8 @@ Returns in the new number of poles and knots if the sequence ") PrepareInsertKnots; static Standard_Boolean PrepareInsertKnots(const Standard_Integer Degree, const Standard_Boolean Periodic, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const TColStd_Array1OfReal & AddKnots, const TColStd_Array1OfInteger * AddMults, Standard_Integer &OutValue, Standard_Integer &OutValue, const Standard_Real Epsilon, const Standard_Boolean Add = Standard_True); - /****************** PrepareTrimming ******************/ - /**** md5 signature: 86f0fb4e064014ba01b07670c1d98634 ****/ + /****** BSplCLib::PrepareTrimming ******/ + /****** md5 signature: 86f0fb4e064014ba01b07670c1d98634 ******/ %feature("compactdefaultargs") PrepareTrimming; %feature("autodoc", " Parameters @@ -2986,8 +2986,8 @@ Set in and the number of knots and poles of the curve result ") PrepareTrimming; static void PrepareTrimming(const Standard_Integer Degree, const Standard_Boolean Periodic, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const Standard_Real U1, const Standard_Real U2, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** PrepareUnperiodize ******************/ - /**** md5 signature: 836730920827f9f48a170c9a6982c170 ****/ + /****** BSplCLib::PrepareUnperiodize ******/ + /****** md5 signature: 836730920827f9f48a170c9a6982c170 ******/ %feature("compactdefaultargs") PrepareUnperiodize; %feature("autodoc", " Parameters @@ -3006,8 +3006,8 @@ Set in and the number of knots and poles of the notperi ") PrepareUnperiodize; static void PrepareUnperiodize(const Standard_Integer Degree, const TColStd_Array1OfInteger & Mults, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** RaiseMultiplicity ******************/ - /**** md5 signature: 1946ad36bcb97331dfe37ade25ab9172 ****/ + /****** BSplCLib::RaiseMultiplicity ******/ + /****** md5 signature: 1946ad36bcb97331dfe37ade25ab9172 ******/ %feature("compactdefaultargs") RaiseMultiplicity; %feature("autodoc", " Parameters @@ -3033,8 +3033,8 @@ No available documentation. ") RaiseMultiplicity; static void RaiseMultiplicity(const Standard_Integer KnotIndex, const Standard_Integer Mult, const Standard_Integer Degree, const Standard_Boolean Periodic, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, TColgp_Array1OfPnt & NewPoles, TColStd_Array1OfReal * NewWeights); - /****************** RaiseMultiplicity ******************/ - /**** md5 signature: 7b68620f8f079008bff0083627e99357 ****/ + /****** BSplCLib::RaiseMultiplicity ******/ + /****** md5 signature: 7b68620f8f079008bff0083627e99357 ******/ %feature("compactdefaultargs") RaiseMultiplicity; %feature("autodoc", " Parameters @@ -3060,8 +3060,8 @@ Raise the multiplicity of knot to . //! the new control points are return ") RaiseMultiplicity; static void RaiseMultiplicity(const Standard_Integer KnotIndex, const Standard_Integer Mult, const Standard_Integer Degree, const Standard_Boolean Periodic, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, TColgp_Array1OfPnt2d & NewPoles, TColStd_Array1OfReal * NewWeights); - /****************** RemoveKnot ******************/ - /**** md5 signature: f160cdfd0c6e8cbbd50655f8a175def1 ****/ + /****** BSplCLib::RemoveKnot ******/ + /****** md5 signature: f160cdfd0c6e8cbbd50655f8a175def1 ******/ %feature("compactdefaultargs") RemoveKnot; %feature("autodoc", " Parameters @@ -3089,8 +3089,8 @@ No available documentation. ") RemoveKnot; static Standard_Boolean RemoveKnot(const Standard_Integer Index, const Standard_Integer Mult, const Standard_Integer Degree, const Standard_Boolean Periodic, const Standard_Integer Dimension, const TColStd_Array1OfReal & Poles, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, TColStd_Array1OfReal & NewPoles, TColStd_Array1OfReal & NewKnots, TColStd_Array1OfInteger & NewMults, const Standard_Real Tolerance); - /****************** RemoveKnot ******************/ - /**** md5 signature: 34bd46c8df0be561677c850a078d12f8 ****/ + /****** BSplCLib::RemoveKnot ******/ + /****** md5 signature: 34bd46c8df0be561677c850a078d12f8 ******/ %feature("compactdefaultargs") RemoveKnot; %feature("autodoc", " Parameters @@ -3119,8 +3119,8 @@ No available documentation. ") RemoveKnot; static Standard_Boolean RemoveKnot(const Standard_Integer Index, const Standard_Integer Mult, const Standard_Integer Degree, const Standard_Boolean Periodic, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, TColgp_Array1OfPnt & NewPoles, TColStd_Array1OfReal * NewWeights, TColStd_Array1OfReal & NewKnots, TColStd_Array1OfInteger & NewMults, const Standard_Real Tolerance); - /****************** RemoveKnot ******************/ - /**** md5 signature: e71867ea0e8715093b5a4551f8fb6194 ****/ + /****** BSplCLib::RemoveKnot ******/ + /****** md5 signature: e71867ea0e8715093b5a4551f8fb6194 ******/ %feature("compactdefaultargs") RemoveKnot; %feature("autodoc", " Parameters @@ -3149,8 +3149,8 @@ Decrement the multiplicity of to . if is null the kn ") RemoveKnot; static Standard_Boolean RemoveKnot(const Standard_Integer Index, const Standard_Integer Mult, const Standard_Integer Degree, const Standard_Boolean Periodic, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, TColgp_Array1OfPnt2d & NewPoles, TColStd_Array1OfReal * NewWeights, TColStd_Array1OfReal & NewKnots, TColStd_Array1OfInteger & NewMults, const Standard_Real Tolerance); - /****************** Reparametrize ******************/ - /**** md5 signature: bbbfa1d8d52d7c2e9f0e7340e008bb30 ****/ + /****** BSplCLib::Reparametrize ******/ + /****** md5 signature: bbbfa1d8d52d7c2e9f0e7340e008bb30 ******/ %feature("compactdefaultargs") Reparametrize; %feature("autodoc", " Parameters @@ -3169,8 +3169,8 @@ Reparametrizes a b-spline curve to [u1, u2]. the knot values are recomputed such ") Reparametrize; static void Reparametrize(const Standard_Real U1, const Standard_Real U2, TColStd_Array1OfReal & Knots); - /****************** Resolution ******************/ - /**** md5 signature: de69ea6ca10e0ce95eff768774f1d362 ****/ + /****** BSplCLib::Resolution ******/ + /****** md5 signature: de69ea6ca10e0ce95eff768774f1d362 ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -3193,8 +3193,8 @@ Given a tolerance in 3d space returns a tolerance in u parameter space such that ") Resolution; static void Resolution(Standard_Real &OutValue, const Standard_Integer ArrayDimension, const Standard_Integer NumPoles, const TColStd_Array1OfReal * Weights, const TColStd_Array1OfReal & FlatKnots, const Standard_Integer Degree, const Standard_Real Tolerance3D, Standard_Real &OutValue); - /****************** Resolution ******************/ - /**** md5 signature: fd89dc61e5eb0f58d4d83427f246b2e2 ****/ + /****** BSplCLib::Resolution ******/ + /****** md5 signature: fd89dc61e5eb0f58d4d83427f246b2e2 ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -3216,8 +3216,8 @@ Given a tolerance in 3d space returns a tolerance in u parameter space such that ") Resolution; static void Resolution(const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, const Standard_Integer NumPoles, const TColStd_Array1OfReal & FlatKnots, const Standard_Integer Degree, const Standard_Real Tolerance3D, Standard_Real &OutValue); - /****************** Resolution ******************/ - /**** md5 signature: 0c2d8874908243eb1c48ec7d26f9316f ****/ + /****** BSplCLib::Resolution ******/ + /****** md5 signature: 0c2d8874908243eb1c48ec7d26f9316f ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -3239,8 +3239,8 @@ Given a tolerance in 3d space returns a tolerance in u parameter space such that ") Resolution; static void Resolution(const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, const Standard_Integer NumPoles, const TColStd_Array1OfReal & FlatKnots, const Standard_Integer Degree, const Standard_Real Tolerance3D, Standard_Real &OutValue); - /****************** Reverse ******************/ - /**** md5 signature: a57ac0e6f5478fd607e57b2d503d32c8 ****/ + /****** BSplCLib::Reverse ******/ + /****** md5 signature: a57ac0e6f5478fd607e57b2d503d32c8 ******/ %feature("compactdefaultargs") Reverse; %feature("autodoc", " Parameters @@ -3257,8 +3257,8 @@ Reverses the array knots to become the knots sequence of the reversed curve. ") Reverse; static void Reverse(TColStd_Array1OfReal & Knots); - /****************** Reverse ******************/ - /**** md5 signature: c2e64bc5830d7c8e0576d2e63c1563a5 ****/ + /****** BSplCLib::Reverse ******/ + /****** md5 signature: c2e64bc5830d7c8e0576d2e63c1563a5 ******/ %feature("compactdefaultargs") Reverse; %feature("autodoc", " Parameters @@ -3275,8 +3275,8 @@ Reverses the array of multiplicities. ") Reverse; static void Reverse(TColStd_Array1OfInteger & Mults); - /****************** Reverse ******************/ - /**** md5 signature: 69e198037b66038a66f7df106e5282f2 ****/ + /****** BSplCLib::Reverse ******/ + /****** md5 signature: 69e198037b66038a66f7df106e5282f2 ******/ %feature("compactdefaultargs") Reverse; %feature("autodoc", " Parameters @@ -3294,8 +3294,8 @@ Reverses the array of poles. last is the index of the new first pole. on a non p ") Reverse; static void Reverse(TColgp_Array1OfPnt & Poles, const Standard_Integer Last); - /****************** Reverse ******************/ - /**** md5 signature: beac5e4762c742fc3695999616889a86 ****/ + /****** BSplCLib::Reverse ******/ + /****** md5 signature: beac5e4762c742fc3695999616889a86 ******/ %feature("compactdefaultargs") Reverse; %feature("autodoc", " Parameters @@ -3313,8 +3313,8 @@ Reverses the array of poles. ") Reverse; static void Reverse(TColgp_Array1OfPnt2d & Poles, const Standard_Integer Last); - /****************** Reverse ******************/ - /**** md5 signature: fd8b3bb4d9426a07eb99e7597647bc3c ****/ + /****** BSplCLib::Reverse ******/ + /****** md5 signature: fd8b3bb4d9426a07eb99e7597647bc3c ******/ %feature("compactdefaultargs") Reverse; %feature("autodoc", " Parameters @@ -3332,8 +3332,8 @@ Reverses the array of poles. ") Reverse; static void Reverse(TColStd_Array1OfReal & Weights, const Standard_Integer Last); - /****************** SolveBandedSystem ******************/ - /**** md5 signature: 435953bec122c49c9cda2b95930416f9 ****/ + /****** BSplCLib::SolveBandedSystem ******/ + /****** md5 signature: 435953bec122c49c9cda2b95930416f9 ******/ %feature("compactdefaultargs") SolveBandedSystem; %feature("autodoc", " Parameters @@ -3353,8 +3353,8 @@ This solves the system matrix.x = b with when matrix is factored in lu form the ") SolveBandedSystem; static Standard_Integer SolveBandedSystem(const math_Matrix & Matrix, const Standard_Integer UpperBandWidth, const Standard_Integer LowerBandWidth, const Standard_Integer ArrayDimension, Standard_Real &OutValue); - /****************** SolveBandedSystem ******************/ - /**** md5 signature: 55bf803527f642f5424d89c2b6d60155 ****/ + /****** BSplCLib::SolveBandedSystem ******/ + /****** md5 signature: 55bf803527f642f5424d89c2b6d60155 ******/ %feature("compactdefaultargs") SolveBandedSystem; %feature("autodoc", " Parameters @@ -3374,8 +3374,8 @@ This solves the system matrix.x = b with when matrix is factored in lu form the ") SolveBandedSystem; static Standard_Integer SolveBandedSystem(const math_Matrix & Matrix, const Standard_Integer UpperBandWidth, const Standard_Integer LowerBandWidth, TColgp_Array1OfPnt2d & Array); - /****************** SolveBandedSystem ******************/ - /**** md5 signature: cedb120aa0a87996dc1fe431f2a79558 ****/ + /****** BSplCLib::SolveBandedSystem ******/ + /****** md5 signature: cedb120aa0a87996dc1fe431f2a79558 ******/ %feature("compactdefaultargs") SolveBandedSystem; %feature("autodoc", " Parameters @@ -3395,8 +3395,8 @@ This solves the system matrix.x = b with when matrix is factored in lu form the ") SolveBandedSystem; static Standard_Integer SolveBandedSystem(const math_Matrix & Matrix, const Standard_Integer UpperBandWidth, const Standard_Integer LowerBandWidth, TColgp_Array1OfPnt & Array); - /****************** SolveBandedSystem ******************/ - /**** md5 signature: 5571a92dbcd003f3cd215893f9c76410 ****/ + /****** BSplCLib::SolveBandedSystem ******/ + /****** md5 signature: 5571a92dbcd003f3cd215893f9c76410 ******/ %feature("compactdefaultargs") SolveBandedSystem; %feature("autodoc", " Parameters @@ -3418,8 +3418,8 @@ No available documentation. ") SolveBandedSystem; static Standard_Integer SolveBandedSystem(const math_Matrix & Matrix, const Standard_Integer UpperBandWidth, const Standard_Integer LowerBandWidth, const Standard_Boolean HomogenousFlag, const Standard_Integer ArrayDimension, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** SolveBandedSystem ******************/ - /**** md5 signature: c3b54f9241e23af58a316990c4c05c84 ****/ + /****** BSplCLib::SolveBandedSystem ******/ + /****** md5 signature: c3b54f9241e23af58a316990c4c05c84 ******/ %feature("compactdefaultargs") SolveBandedSystem; %feature("autodoc", " Parameters @@ -3441,8 +3441,8 @@ This solves the system matrix.x = b with when matrix is factored in lu form the ") SolveBandedSystem; static Standard_Integer SolveBandedSystem(const math_Matrix & Matrix, const Standard_Integer UpperBandWidth, const Standard_Integer LowerBandWidth, const Standard_Boolean HomogenousFlag, TColgp_Array1OfPnt2d & Array, TColStd_Array1OfReal & Weights); - /****************** SolveBandedSystem ******************/ - /**** md5 signature: bf46510a32c49fb829ee5209d1191b72 ****/ + /****** BSplCLib::SolveBandedSystem ******/ + /****** md5 signature: bf46510a32c49fb829ee5209d1191b72 ******/ %feature("compactdefaultargs") SolveBandedSystem; %feature("autodoc", " Parameters @@ -3464,8 +3464,8 @@ This solves the system matrix.x = b with when matrix is factored in lu form the ") SolveBandedSystem; static Standard_Integer SolveBandedSystem(const math_Matrix & Matrix, const Standard_Integer UpperBandWidth, const Standard_Integer LowerBandWidth, const Standard_Boolean HomogeneousFlag, TColgp_Array1OfPnt & Array, TColStd_Array1OfReal & Weights); - /****************** TangExtendToConstraint ******************/ - /**** md5 signature: b7146095fa28ab3e0edbfadc067c542f ****/ + /****** BSplCLib::TangExtendToConstraint ******/ + /****** md5 signature: b7146095fa28ab3e0edbfadc067c542f ******/ %feature("compactdefaultargs") TangExtendToConstraint; %feature("autodoc", " Parameters @@ -3493,8 +3493,8 @@ Extend a bspline nd using the tangency map is the coefficient of ") TangExtendToConstraint; static void TangExtendToConstraint(const TColStd_Array1OfReal & FlatKnots, const Standard_Real C1Coefficient, const Standard_Integer NumPoles, Standard_Real &OutValue, const Standard_Integer Dimension, const Standard_Integer Degree, const TColStd_Array1OfReal & ConstraintPoint, const Standard_Integer Continuity, const Standard_Boolean After, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Trimming ******************/ - /**** md5 signature: f2180a9ffc628aafc10d57997f0ab25d ****/ + /****** BSplCLib::Trimming ******/ + /****** md5 signature: f2180a9ffc628aafc10d57997f0ab25d ******/ %feature("compactdefaultargs") Trimming; %feature("autodoc", " Parameters @@ -3521,8 +3521,8 @@ No available documentation. ") Trimming; static void Trimming(const Standard_Integer Degree, const Standard_Boolean Periodic, const Standard_Integer Dimension, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const TColStd_Array1OfReal & Poles, const Standard_Real U1, const Standard_Real U2, TColStd_Array1OfReal & NewKnots, TColStd_Array1OfInteger & NewMults, TColStd_Array1OfReal & NewPoles); - /****************** Trimming ******************/ - /**** md5 signature: 9fe28b7ad9be71c6a1af6e80c38e8036 ****/ + /****** BSplCLib::Trimming ******/ + /****** md5 signature: 9fe28b7ad9be71c6a1af6e80c38e8036 ******/ %feature("compactdefaultargs") Trimming; %feature("autodoc", " Parameters @@ -3550,8 +3550,8 @@ No available documentation. ") Trimming; static void Trimming(const Standard_Integer Degree, const Standard_Boolean Periodic, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, const Standard_Real U1, const Standard_Real U2, TColStd_Array1OfReal & NewKnots, TColStd_Array1OfInteger & NewMults, TColgp_Array1OfPnt & NewPoles, TColStd_Array1OfReal * NewWeights); - /****************** Trimming ******************/ - /**** md5 signature: 81cf27d83e373b0ace7635f2fcda30fb ****/ + /****** BSplCLib::Trimming ******/ + /****** md5 signature: 81cf27d83e373b0ace7635f2fcda30fb ******/ %feature("compactdefaultargs") Trimming; %feature("autodoc", " Parameters @@ -3579,8 +3579,8 @@ No available documentation. ") Trimming; static void Trimming(const Standard_Integer Degree, const Standard_Boolean Periodic, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const TColgp_Array1OfPnt2d & Poles, const TColStd_Array1OfReal * Weights, const Standard_Real U1, const Standard_Real U2, TColStd_Array1OfReal & NewKnots, TColStd_Array1OfInteger & NewMults, TColgp_Array1OfPnt2d & NewPoles, TColStd_Array1OfReal * NewWeights); - /****************** Unperiodize ******************/ - /**** md5 signature: abc1100a37dd462dd6a37ec73c9525d8 ****/ + /****** BSplCLib::Unperiodize ******/ + /****** md5 signature: abc1100a37dd462dd6a37ec73c9525d8 ******/ %feature("compactdefaultargs") Unperiodize; %feature("autodoc", " Parameters @@ -3604,8 +3604,8 @@ No available documentation. ") Unperiodize; static void Unperiodize(const Standard_Integer Degree, const Standard_Integer Dimension, const TColStd_Array1OfInteger & Mults, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfReal & Poles, TColStd_Array1OfInteger & NewMults, TColStd_Array1OfReal & NewKnots, TColStd_Array1OfReal & NewPoles); - /****************** Unperiodize ******************/ - /**** md5 signature: d1992345708ea61d4ff0e42760ddfbc4 ****/ + /****** BSplCLib::Unperiodize ******/ + /****** md5 signature: d1992345708ea61d4ff0e42760ddfbc4 ******/ %feature("compactdefaultargs") Unperiodize; %feature("autodoc", " Parameters @@ -3630,8 +3630,8 @@ No available documentation. ") Unperiodize; static void Unperiodize(const Standard_Integer Degree, const TColStd_Array1OfInteger & Mults, const TColStd_Array1OfReal & Knots, const TColgp_Array1OfPnt & Poles, const TColStd_Array1OfReal * Weights, TColStd_Array1OfInteger & NewMults, TColStd_Array1OfReal & NewKnots, TColgp_Array1OfPnt & NewPoles, TColStd_Array1OfReal * NewWeights); - /****************** Unperiodize ******************/ - /**** md5 signature: abc855f8a13aa28d61372d2f6e249d88 ****/ + /****** BSplCLib::Unperiodize ******/ + /****** md5 signature: abc855f8a13aa28d61372d2f6e249d88 ******/ %feature("compactdefaultargs") Unperiodize; %feature("autodoc", " Parameters @@ -3674,8 +3674,8 @@ No available documentation. ***********************/ class BSplCLib_Cache : public Standard_Transient { public: - /****************** BSplCLib_Cache ******************/ - /**** md5 signature: 1ec50ce3ef0f91a1b9421df2d746932f ****/ + /****** BSplCLib_Cache::BSplCLib_Cache ******/ + /****** md5 signature: 1ec50ce3ef0f91a1b9421df2d746932f ******/ %feature("compactdefaultargs") BSplCLib_Cache; %feature("autodoc", " Parameters @@ -3696,8 +3696,8 @@ Constructor, prepares data structures for caching values on a 2d curve. \param t ") BSplCLib_Cache; BSplCLib_Cache(const Standard_Integer & theDegree, const Standard_Boolean & thePeriodic, const TColStd_Array1OfReal & theFlatKnots, const TColgp_Array1OfPnt2d & thePoles2d, const TColStd_Array1OfReal * theWeights = NULL); - /****************** BSplCLib_Cache ******************/ - /**** md5 signature: 112e58d863cf27a409215f9f9a35ff27 ****/ + /****** BSplCLib_Cache::BSplCLib_Cache ******/ + /****** md5 signature: 112e58d863cf27a409215f9f9a35ff27 ******/ %feature("compactdefaultargs") BSplCLib_Cache; %feature("autodoc", " Parameters @@ -3718,8 +3718,8 @@ Constructor, prepares data structures for caching values on a 3d curve. \param t ") BSplCLib_Cache; BSplCLib_Cache(const Standard_Integer & theDegree, const Standard_Boolean & thePeriodic, const TColStd_Array1OfReal & theFlatKnots, const TColgp_Array1OfPnt & thePoles, const TColStd_Array1OfReal * theWeights = NULL); - /****************** BuildCache ******************/ - /**** md5 signature: 004becef4793ac2147bbccc9f21ed48e ****/ + /****** BSplCLib_Cache::BuildCache ******/ + /****** md5 signature: 004becef4793ac2147bbccc9f21ed48e ******/ %feature("compactdefaultargs") BuildCache; %feature("autodoc", " Parameters @@ -3739,8 +3739,8 @@ Recomputes the cache data for 2d curves. does not verify validity of the cache \ ") BuildCache; void BuildCache(const Standard_Real & theParameter, const TColStd_Array1OfReal & theFlatKnots, const TColgp_Array1OfPnt2d & thePoles2d, const TColStd_Array1OfReal * theWeights); - /****************** BuildCache ******************/ - /**** md5 signature: 708c8206d06c2954f982bc24a07bbc07 ****/ + /****** BSplCLib_Cache::BuildCache ******/ + /****** md5 signature: 708c8206d06c2954f982bc24a07bbc07 ******/ %feature("compactdefaultargs") BuildCache; %feature("autodoc", " Parameters @@ -3760,8 +3760,8 @@ Recomputes the cache data for 3d curves. does not verify validity of the cache \ ") BuildCache; void BuildCache(const Standard_Real & theParameter, const TColStd_Array1OfReal & theFlatKnots, const TColgp_Array1OfPnt & thePoles, const TColStd_Array1OfReal * theWeights = NULL); - /****************** D0 ******************/ - /**** md5 signature: 821844347e34610caaa0b5bbfa0cf4d7 ****/ + /****** BSplCLib_Cache::D0 ******/ + /****** md5 signature: 821844347e34610caaa0b5bbfa0cf4d7 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -3779,8 +3779,8 @@ Calculates the point on the curve in the specified parameter \param[in] theparam ") D0; void D0(const Standard_Real & theParameter, gp_Pnt2d & thePoint); - /****************** D0 ******************/ - /**** md5 signature: 4aeb2d0857a7db45a96aa1fec77d5445 ****/ + /****** BSplCLib_Cache::D0 ******/ + /****** md5 signature: 4aeb2d0857a7db45a96aa1fec77d5445 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -3798,8 +3798,8 @@ No available documentation. ") D0; void D0(const Standard_Real & theParameter, gp_Pnt & thePoint); - /****************** D1 ******************/ - /**** md5 signature: 1c2fb9815cecbaddf6ab913e1725d597 ****/ + /****** BSplCLib_Cache::D1 ******/ + /****** md5 signature: 1c2fb9815cecbaddf6ab913e1725d597 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -3818,8 +3818,8 @@ Calculates the point on the curve and its first derivative in the specified para ") D1; void D1(const Standard_Real & theParameter, gp_Pnt2d & thePoint, gp_Vec2d & theTangent); - /****************** D1 ******************/ - /**** md5 signature: 9162e0f68e80a2c7ce80aafd532c64cb ****/ + /****** BSplCLib_Cache::D1 ******/ + /****** md5 signature: 9162e0f68e80a2c7ce80aafd532c64cb ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -3838,8 +3838,8 @@ No available documentation. ") D1; void D1(const Standard_Real & theParameter, gp_Pnt & thePoint, gp_Vec & theTangent); - /****************** D2 ******************/ - /**** md5 signature: cde9b4ade9c2395288cb140e226b4245 ****/ + /****** BSplCLib_Cache::D2 ******/ + /****** md5 signature: cde9b4ade9c2395288cb140e226b4245 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -3859,8 +3859,8 @@ Calculates the point on the curve and two derivatives in the specified parameter ") D2; void D2(const Standard_Real & theParameter, gp_Pnt2d & thePoint, gp_Vec2d & theTangent, gp_Vec2d & theCurvature); - /****************** D2 ******************/ - /**** md5 signature: 096890fee85d22526ec280b33e9b01d0 ****/ + /****** BSplCLib_Cache::D2 ******/ + /****** md5 signature: 096890fee85d22526ec280b33e9b01d0 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -3880,8 +3880,8 @@ No available documentation. ") D2; void D2(const Standard_Real & theParameter, gp_Pnt & thePoint, gp_Vec & theTangent, gp_Vec & theCurvature); - /****************** D3 ******************/ - /**** md5 signature: 2966e3bc0512076dd282c4c044fbb4ce ****/ + /****** BSplCLib_Cache::D3 ******/ + /****** md5 signature: 2966e3bc0512076dd282c4c044fbb4ce ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -3902,8 +3902,8 @@ Calculates the point on the curve and three derivatives in the specified paramet ") D3; void D3(const Standard_Real & theParameter, gp_Pnt2d & thePoint, gp_Vec2d & theTangent, gp_Vec2d & theCurvature, gp_Vec2d & theTorsion); - /****************** D3 ******************/ - /**** md5 signature: 7d9b71e69ccb4be4fe8edf3517a87d48 ****/ + /****** BSplCLib_Cache::D3 ******/ + /****** md5 signature: 7d9b71e69ccb4be4fe8edf3517a87d48 ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -3924,8 +3924,8 @@ No available documentation. ") D3; void D3(const Standard_Real & theParameter, gp_Pnt & thePoint, gp_Vec & theTangent, gp_Vec & theCurvature, gp_Vec & theTorsion); - /****************** IsCacheValid ******************/ - /**** md5 signature: 210fe9378d91587e36bde7d36f9a15e1 ****/ + /****** BSplCLib_Cache::IsCacheValid ******/ + /****** md5 signature: 210fe9378d91587e36bde7d36f9a15e1 ******/ %feature("compactdefaultargs") IsCacheValid; %feature("autodoc", " Parameters @@ -3961,8 +3961,8 @@ class BSplCLib_CacheParams { float SpanStart; float SpanLength; int SpanIndex; - /****************** BSplCLib_CacheParams ******************/ - /**** md5 signature: 9dc6d39f5a0f6a64d0c5f2ef90fb4329 ****/ + /****** BSplCLib_CacheParams::BSplCLib_CacheParams ******/ + /****** md5 signature: 9dc6d39f5a0f6a64d0c5f2ef90fb4329 ******/ %feature("compactdefaultargs") BSplCLib_CacheParams; %feature("autodoc", " Parameters @@ -3981,8 +3981,8 @@ Constructor, prepares data structures for caching. \param thedegree degree of th ") BSplCLib_CacheParams; BSplCLib_CacheParams(Standard_Integer theDegree, Standard_Boolean thePeriodic, const TColStd_Array1OfReal & theFlatKnots); - /****************** IsCacheValid ******************/ - /**** md5 signature: 2640e4ed5e0bdb2780fab01a6614a67a ****/ + /****** BSplCLib_CacheParams::IsCacheValid ******/ + /****** md5 signature: 2640e4ed5e0bdb2780fab01a6614a67a ******/ %feature("compactdefaultargs") IsCacheValid; %feature("autodoc", " Parameters @@ -3999,8 +3999,8 @@ Verifies validity of the cache using flat parameter of the point \param theparam ") IsCacheValid; Standard_Boolean IsCacheValid(Standard_Real theParameter); - /****************** LocateParameter ******************/ - /**** md5 signature: 9d0335be5e67d75027256e3751327542 ****/ + /****** BSplCLib_CacheParams::LocateParameter ******/ + /****** md5 signature: 9d0335be5e67d75027256e3751327542 ******/ %feature("compactdefaultargs") LocateParameter; %feature("autodoc", " Parameters @@ -4017,8 +4017,8 @@ Computes span for the specified parameter \param theparameter parameter of the p ") LocateParameter; void LocateParameter(Standard_Real &OutValue, const TColStd_Array1OfReal & theFlatKnots); - /****************** PeriodicNormalization ******************/ - /**** md5 signature: f0c31ac0ad331d040f83cb12652abaed ****/ + /****** BSplCLib_CacheParams::PeriodicNormalization ******/ + /****** md5 signature: f0c31ac0ad331d040f83cb12652abaed ******/ %feature("compactdefaultargs") PeriodicNormalization; %feature("autodoc", " Parameters @@ -4050,8 +4050,8 @@ Normalizes the parameter for periodic b-splines \param theparameter the value to %nodefaultctor BSplCLib_EvaluatorFunction; class BSplCLib_EvaluatorFunction { public: - /****************** Evaluate ******************/ - /**** md5 signature: 6d18f8c62d991decc4c1a3aca376d7bf ****/ + /****** BSplCLib_EvaluatorFunction::Evaluate ******/ + /****** md5 signature: 6d18f8c62d991decc4c1a3aca376d7bf ******/ %feature("compactdefaultargs") Evaluate; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BSplSLib.i b/src/SWIG_files/wrapper/BSplSLib.i index 8d97f5c92..4fa6be029 100644 --- a/src/SWIG_files/wrapper/BSplSLib.i +++ b/src/SWIG_files/wrapper/BSplSLib.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BSPLSLIBDOCSTRING "BSplSLib module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_bsplslib.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_bsplslib.html" %enddef %module (package="OCC.Core", docstring=BSPLSLIBDOCSTRING) BSplSLib @@ -87,8 +87,8 @@ from OCC.Core.Exception import * %rename(bsplslib) BSplSLib; class BSplSLib { public: - /****************** BuildCache ******************/ - /**** md5 signature: b598501ca418d77ff26d5d3e7ac37474 ****/ + /****** BSplSLib::BuildCache ******/ + /****** md5 signature: b598501ca418d77ff26d5d3e7ac37474 ******/ %feature("compactdefaultargs") BuildCache; %feature("autodoc", " Parameters @@ -120,8 +120,8 @@ Perform the evaluation of the taylor expansion of the bspline normalized between ") BuildCache; static void BuildCache(const Standard_Real U, const Standard_Real V, const Standard_Real USpanDomain, const Standard_Real VSpanDomain, const Standard_Boolean UPeriodicFlag, const Standard_Boolean VPeriodicFlag, const Standard_Integer UDegree, const Standard_Integer VDegree, const Standard_Integer UIndex, const Standard_Integer VIndex, const TColStd_Array1OfReal & UFlatKnots, const TColStd_Array1OfReal & VFlatKnots, const TColgp_Array2OfPnt & Poles, const TColStd_Array2OfReal * Weights, TColgp_Array2OfPnt & CachePoles, TColStd_Array2OfReal * CacheWeights); - /****************** BuildCache ******************/ - /**** md5 signature: 3f0ef8a507277eb8714774f073a6d864 ****/ + /****** BSplSLib::BuildCache ******/ + /****** md5 signature: 3f0ef8a507277eb8714774f073a6d864 ******/ %feature("compactdefaultargs") BuildCache; %feature("autodoc", " Parameters @@ -152,8 +152,8 @@ Perform the evaluation of the taylor expansion of the bspline normalized between ") BuildCache; static void BuildCache(const Standard_Real theU, const Standard_Real theV, const Standard_Real theUSpanDomain, const Standard_Real theVSpanDomain, const Standard_Boolean theUPeriodic, const Standard_Boolean theVPeriodic, const Standard_Integer theUDegree, const Standard_Integer theVDegree, const Standard_Integer theUIndex, const Standard_Integer theVIndex, const TColStd_Array1OfReal & theUFlatKnots, const TColStd_Array1OfReal & theVFlatKnots, const TColgp_Array2OfPnt & thePoles, const TColStd_Array2OfReal * theWeights, TColStd_Array2OfReal & theCacheArray); - /****************** CacheD0 ******************/ - /**** md5 signature: a0d811c68d31b607d6cc258bbce37e0a ****/ + /****** BSplSLib::CacheD0 ******/ + /****** md5 signature: a0d811c68d31b607d6cc258bbce37e0a ******/ %feature("compactdefaultargs") CacheD0; %feature("autodoc", " Parameters @@ -180,8 +180,8 @@ Perform the evaluation of the of the cache the parameter must be normalized betw ") CacheD0; static void CacheD0(const Standard_Real U, const Standard_Real V, const Standard_Integer UDegree, const Standard_Integer VDegree, const Standard_Real UCacheParameter, const Standard_Real VCacheParameter, const Standard_Real USpanLenght, const Standard_Real VSpanLength, const TColgp_Array2OfPnt & Poles, const TColStd_Array2OfReal * Weights, gp_Pnt & Point); - /****************** CacheD1 ******************/ - /**** md5 signature: 726982fe49caf163bec8c8874147ff78 ****/ + /****** BSplSLib::CacheD1 ******/ + /****** md5 signature: 726982fe49caf163bec8c8874147ff78 ******/ %feature("compactdefaultargs") CacheD1; %feature("autodoc", " Parameters @@ -210,8 +210,8 @@ Perform the evaluation of the of the cache the parameter must be normalized betw ") CacheD1; static void CacheD1(const Standard_Real U, const Standard_Real V, const Standard_Integer UDegree, const Standard_Integer VDegree, const Standard_Real UCacheParameter, const Standard_Real VCacheParameter, const Standard_Real USpanLenght, const Standard_Real VSpanLength, const TColgp_Array2OfPnt & Poles, const TColStd_Array2OfReal * Weights, gp_Pnt & Point, gp_Vec & VecU, gp_Vec & VecV); - /****************** CacheD2 ******************/ - /**** md5 signature: 8c09fde09eb6aefbb6282106a539418f ****/ + /****** BSplSLib::CacheD2 ******/ + /****** md5 signature: 8c09fde09eb6aefbb6282106a539418f ******/ %feature("compactdefaultargs") CacheD2; %feature("autodoc", " Parameters @@ -243,8 +243,8 @@ Perform the evaluation of the of the cache the parameter must be normalized betw ") CacheD2; static void CacheD2(const Standard_Real U, const Standard_Real V, const Standard_Integer UDegree, const Standard_Integer VDegree, const Standard_Real UCacheParameter, const Standard_Real VCacheParameter, const Standard_Real USpanLenght, const Standard_Real VSpanLength, const TColgp_Array2OfPnt & Poles, const TColStd_Array2OfReal * Weights, gp_Pnt & Point, gp_Vec & VecU, gp_Vec & VecV, gp_Vec & VecUU, gp_Vec & VecUV, gp_Vec & VecVV); - /****************** CoefsD0 ******************/ - /**** md5 signature: 11885fde9811857e66b919e833f6d73a ****/ + /****** BSplSLib::CoefsD0 ******/ + /****** md5 signature: 11885fde9811857e66b919e833f6d73a ******/ %feature("compactdefaultargs") CoefsD0; %feature("autodoc", " Parameters @@ -265,8 +265,8 @@ Calls cached0 for bezier surfaces arrays computed with the method polescoefficie ") CoefsD0; static void CoefsD0(const Standard_Real U, const Standard_Real V, const TColgp_Array2OfPnt & Poles, const TColStd_Array2OfReal * Weights, gp_Pnt & Point); - /****************** CoefsD1 ******************/ - /**** md5 signature: 1cb2123d3f6397ed2a00635ce8e7de93 ****/ + /****** BSplSLib::CoefsD1 ******/ + /****** md5 signature: 1cb2123d3f6397ed2a00635ce8e7de93 ******/ %feature("compactdefaultargs") CoefsD1; %feature("autodoc", " Parameters @@ -289,8 +289,8 @@ Calls cached0 for bezier surfaces arrays computed with the method polescoefficie ") CoefsD1; static void CoefsD1(const Standard_Real U, const Standard_Real V, const TColgp_Array2OfPnt & Poles, const TColStd_Array2OfReal * Weights, gp_Pnt & Point, gp_Vec & VecU, gp_Vec & VecV); - /****************** CoefsD2 ******************/ - /**** md5 signature: 94747ffaf723b2a3eb214fc864501474 ****/ + /****** BSplSLib::CoefsD2 ******/ + /****** md5 signature: 94747ffaf723b2a3eb214fc864501474 ******/ %feature("compactdefaultargs") CoefsD2; %feature("autodoc", " Parameters @@ -316,8 +316,8 @@ Calls cached0 for bezier surfaces arrays computed with the method polescoefficie ") CoefsD2; static void CoefsD2(const Standard_Real U, const Standard_Real V, const TColgp_Array2OfPnt & Poles, const TColStd_Array2OfReal * Weights, gp_Pnt & Point, gp_Vec & VecU, gp_Vec & VecV, gp_Vec & VecUU, gp_Vec & VecUV, gp_Vec & VecVV); - /****************** D0 ******************/ - /**** md5 signature: 62aa9eb91146b63fe60c422d76080445 ****/ + /****** BSplSLib::D0 ******/ + /****** md5 signature: 62aa9eb91146b63fe60c422d76080445 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -350,8 +350,8 @@ No available documentation. ") D0; static void D0(const Standard_Real U, const Standard_Real V, const Standard_Integer UIndex, const Standard_Integer VIndex, const TColgp_Array2OfPnt & Poles, const TColStd_Array2OfReal * Weights, const TColStd_Array1OfReal & UKnots, const TColStd_Array1OfReal & VKnots, const TColStd_Array1OfInteger * UMults, const TColStd_Array1OfInteger * VMults, const Standard_Integer UDegree, const Standard_Integer VDegree, const Standard_Boolean URat, const Standard_Boolean VRat, const Standard_Boolean UPer, const Standard_Boolean VPer, gp_Pnt & P); - /****************** D1 ******************/ - /**** md5 signature: 45477aee62278c08011619e00b883b41 ****/ + /****** BSplSLib::D1 ******/ + /****** md5 signature: 45477aee62278c08011619e00b883b41 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -386,8 +386,8 @@ No available documentation. ") D1; static void D1(const Standard_Real U, const Standard_Real V, const Standard_Integer UIndex, const Standard_Integer VIndex, const TColgp_Array2OfPnt & Poles, const TColStd_Array2OfReal * Weights, const TColStd_Array1OfReal & UKnots, const TColStd_Array1OfReal & VKnots, const TColStd_Array1OfInteger * UMults, const TColStd_Array1OfInteger * VMults, const Standard_Integer Degree, const Standard_Integer VDegree, const Standard_Boolean URat, const Standard_Boolean VRat, const Standard_Boolean UPer, const Standard_Boolean VPer, gp_Pnt & P, gp_Vec & Vu, gp_Vec & Vv); - /****************** D2 ******************/ - /**** md5 signature: 81164840d60e28eb069e53e33b276cb4 ****/ + /****** BSplSLib::D2 ******/ + /****** md5 signature: 81164840d60e28eb069e53e33b276cb4 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -425,8 +425,8 @@ No available documentation. ") D2; static void D2(const Standard_Real U, const Standard_Real V, const Standard_Integer UIndex, const Standard_Integer VIndex, const TColgp_Array2OfPnt & Poles, const TColStd_Array2OfReal * Weights, const TColStd_Array1OfReal & UKnots, const TColStd_Array1OfReal & VKnots, const TColStd_Array1OfInteger * UMults, const TColStd_Array1OfInteger * VMults, const Standard_Integer UDegree, const Standard_Integer VDegree, const Standard_Boolean URat, const Standard_Boolean VRat, const Standard_Boolean UPer, const Standard_Boolean VPer, gp_Pnt & P, gp_Vec & Vu, gp_Vec & Vv, gp_Vec & Vuu, gp_Vec & Vvv, gp_Vec & Vuv); - /****************** D3 ******************/ - /**** md5 signature: 8f6bd55d707844a103766e7f41bb7a3f ****/ + /****** BSplSLib::D3 ******/ + /****** md5 signature: 8f6bd55d707844a103766e7f41bb7a3f ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -468,8 +468,8 @@ No available documentation. ") D3; static void D3(const Standard_Real U, const Standard_Real V, const Standard_Integer UIndex, const Standard_Integer VIndex, const TColgp_Array2OfPnt & Poles, const TColStd_Array2OfReal * Weights, const TColStd_Array1OfReal & UKnots, const TColStd_Array1OfReal & VKnots, const TColStd_Array1OfInteger * UMults, const TColStd_Array1OfInteger * VMults, const Standard_Integer UDegree, const Standard_Integer VDegree, const Standard_Boolean URat, const Standard_Boolean VRat, const Standard_Boolean UPer, const Standard_Boolean VPer, gp_Pnt & P, gp_Vec & Vu, gp_Vec & Vv, gp_Vec & Vuu, gp_Vec & Vvv, gp_Vec & Vuv, gp_Vec & Vuuu, gp_Vec & Vvvv, gp_Vec & Vuuv, gp_Vec & Vuvv); - /****************** DN ******************/ - /**** md5 signature: a87dd0fc5dec21e682e690ca4d1e0cb4 ****/ + /****** BSplSLib::DN ******/ + /****** md5 signature: a87dd0fc5dec21e682e690ca4d1e0cb4 ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -504,8 +504,8 @@ No available documentation. ") DN; static void DN(const Standard_Real U, const Standard_Real V, const Standard_Integer Nu, const Standard_Integer Nv, const Standard_Integer UIndex, const Standard_Integer VIndex, const TColgp_Array2OfPnt & Poles, const TColStd_Array2OfReal * Weights, const TColStd_Array1OfReal & UKnots, const TColStd_Array1OfReal & VKnots, const TColStd_Array1OfInteger * UMults, const TColStd_Array1OfInteger * VMults, const Standard_Integer UDegree, const Standard_Integer VDegree, const Standard_Boolean URat, const Standard_Boolean VRat, const Standard_Boolean UPer, const Standard_Boolean VPer, gp_Vec & Vn); - /****************** FunctionMultiply ******************/ - /**** md5 signature: 45abca34df2cfa28f99d3579bc8a3b9c ****/ + /****** BSplSLib::FunctionMultiply ******/ + /****** md5 signature: 45abca34df2cfa28f99d3579bc8a3b9c ******/ %feature("compactdefaultargs") FunctionMultiply; %feature("autodoc", " Parameters @@ -536,8 +536,8 @@ This will multiply a given bspline numerator n(u,v) and denominator d(u,v) defin ") FunctionMultiply; static void FunctionMultiply(const BSplSLib_EvaluatorFunction & Function, const Standard_Integer UBSplineDegree, const Standard_Integer VBSplineDegree, const TColStd_Array1OfReal & UBSplineKnots, const TColStd_Array1OfReal & VBSplineKnots, const TColStd_Array1OfInteger * UMults, const TColStd_Array1OfInteger * VMults, const TColgp_Array2OfPnt & Poles, const TColStd_Array2OfReal * Weights, const TColStd_Array1OfReal & UFlatKnots, const TColStd_Array1OfReal & VFlatKnots, const Standard_Integer UNewDegree, const Standard_Integer VNewDegree, TColgp_Array2OfPnt & NewNumerator, TColStd_Array2OfReal & NewDenominator, Standard_Integer &OutValue); - /****************** GetPoles ******************/ - /**** md5 signature: 4b7d9419718ea39ec1ce8b8cf045aefc ****/ + /****** BSplSLib::GetPoles ******/ + /****** md5 signature: 4b7d9419718ea39ec1ce8b8cf045aefc ******/ %feature("compactdefaultargs") GetPoles; %feature("autodoc", " Parameters @@ -556,8 +556,8 @@ Get from fp the coordinates of the poles. ") GetPoles; static void GetPoles(const TColStd_Array1OfReal & FP, TColgp_Array2OfPnt & Poles, const Standard_Boolean UDirection); - /****************** GetPoles ******************/ - /**** md5 signature: 5368b56b4f2bcd48e6ca348ba72bb56f ****/ + /****** BSplSLib::GetPoles ******/ + /****** md5 signature: 5368b56b4f2bcd48e6ca348ba72bb56f ******/ %feature("compactdefaultargs") GetPoles; %feature("autodoc", " Parameters @@ -577,8 +577,8 @@ Get from fp the coordinates of the poles. ") GetPoles; static void GetPoles(const TColStd_Array1OfReal & FP, TColgp_Array2OfPnt & Poles, TColStd_Array2OfReal & Weights, const Standard_Boolean UDirection); - /****************** HomogeneousD0 ******************/ - /**** md5 signature: c1464f36ca57ea65694263beff510b16 ****/ + /****** BSplSLib::HomogeneousD0 ******/ + /****** md5 signature: c1464f36ca57ea65694263beff510b16 ******/ %feature("compactdefaultargs") HomogeneousD0; %feature("autodoc", " Parameters @@ -611,8 +611,8 @@ Makes an homogeneous evaluation of poles and weights any and returns in p the nu ") HomogeneousD0; static void HomogeneousD0(const Standard_Real U, const Standard_Real V, const Standard_Integer UIndex, const Standard_Integer VIndex, const TColgp_Array2OfPnt & Poles, const TColStd_Array2OfReal * Weights, const TColStd_Array1OfReal & UKnots, const TColStd_Array1OfReal & VKnots, const TColStd_Array1OfInteger * UMults, const TColStd_Array1OfInteger * VMults, const Standard_Integer UDegree, const Standard_Integer VDegree, const Standard_Boolean URat, const Standard_Boolean VRat, const Standard_Boolean UPer, const Standard_Boolean VPer, Standard_Real &OutValue, gp_Pnt & P); - /****************** HomogeneousD1 ******************/ - /**** md5 signature: b5575b9030b6a4dbac54e2abef295d93 ****/ + /****** BSplSLib::HomogeneousD1 ******/ + /****** md5 signature: b5575b9030b6a4dbac54e2abef295d93 ******/ %feature("compactdefaultargs") HomogeneousD1; %feature("autodoc", " Parameters @@ -649,8 +649,8 @@ Makes an homogeneous evaluation of poles and weights any and returns in p the nu ") HomogeneousD1; static void HomogeneousD1(const Standard_Real U, const Standard_Real V, const Standard_Integer UIndex, const Standard_Integer VIndex, const TColgp_Array2OfPnt & Poles, const TColStd_Array2OfReal * Weights, const TColStd_Array1OfReal & UKnots, const TColStd_Array1OfReal & VKnots, const TColStd_Array1OfInteger * UMults, const TColStd_Array1OfInteger * VMults, const Standard_Integer UDegree, const Standard_Integer VDegree, const Standard_Boolean URat, const Standard_Boolean VRat, const Standard_Boolean UPer, const Standard_Boolean VPer, gp_Pnt & N, gp_Vec & Nu, gp_Vec & Nv, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** IncreaseDegree ******************/ - /**** md5 signature: e662fc7ecac81af296838d57eaa19707 ****/ + /****** BSplSLib::IncreaseDegree ******/ + /****** md5 signature: e662fc7ecac81af296838d57eaa19707 ******/ %feature("compactdefaultargs") IncreaseDegree; %feature("autodoc", " Parameters @@ -678,8 +678,8 @@ No available documentation. ") IncreaseDegree; static void IncreaseDegree(const Standard_Boolean UDirection, const Standard_Integer Degree, const Standard_Integer NewDegree, const Standard_Boolean Periodic, const TColgp_Array2OfPnt & Poles, const TColStd_Array2OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, TColgp_Array2OfPnt & NewPoles, TColStd_Array2OfReal * NewWeights, TColStd_Array1OfReal & NewKnots, TColStd_Array1OfInteger & NewMults); - /****************** InsertKnots ******************/ - /**** md5 signature: a4b0ae1cc503e9e34d176066d51bb1cd ****/ + /****** BSplSLib::InsertKnots ******/ + /****** md5 signature: a4b0ae1cc503e9e34d176066d51bb1cd ******/ %feature("compactdefaultargs") InsertKnots; %feature("autodoc", " Parameters @@ -710,8 +710,8 @@ No available documentation. ") InsertKnots; static void InsertKnots(const Standard_Boolean UDirection, const Standard_Integer Degree, const Standard_Boolean Periodic, const TColgp_Array2OfPnt & Poles, const TColStd_Array2OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, const TColStd_Array1OfReal & AddKnots, const TColStd_Array1OfInteger * AddMults, TColgp_Array2OfPnt & NewPoles, TColStd_Array2OfReal * NewWeights, TColStd_Array1OfReal & NewKnots, TColStd_Array1OfInteger & NewMults, const Standard_Real Epsilon, const Standard_Boolean Add = Standard_True); - /****************** Interpolate ******************/ - /**** md5 signature: 0867844694d48835dc15751d35a365fc ****/ + /****** BSplSLib::Interpolate ******/ + /****** md5 signature: 0867844694d48835dc15751d35a365fc ******/ %feature("compactdefaultargs") Interpolate; %feature("autodoc", " Parameters @@ -735,8 +735,8 @@ Performs the interpolation of the data points given in the poles array in the fo ") Interpolate; static void Interpolate(const Standard_Integer UDegree, const Standard_Integer VDegree, const TColStd_Array1OfReal & UFlatKnots, const TColStd_Array1OfReal & VFlatKnots, const TColStd_Array1OfReal & UParameters, const TColStd_Array1OfReal & VParameters, TColgp_Array2OfPnt & Poles, TColStd_Array2OfReal & Weights, Standard_Integer &OutValue); - /****************** Interpolate ******************/ - /**** md5 signature: e9a7486732129ef41a89f7390fb7aaad ****/ + /****** BSplSLib::Interpolate ******/ + /****** md5 signature: e9a7486732129ef41a89f7390fb7aaad ******/ %feature("compactdefaultargs") Interpolate; %feature("autodoc", " Parameters @@ -759,8 +759,8 @@ Performs the interpolation of the data points given in the poles array. the coll ") Interpolate; static void Interpolate(const Standard_Integer UDegree, const Standard_Integer VDegree, const TColStd_Array1OfReal & UFlatKnots, const TColStd_Array1OfReal & VFlatKnots, const TColStd_Array1OfReal & UParameters, const TColStd_Array1OfReal & VParameters, TColgp_Array2OfPnt & Poles, Standard_Integer &OutValue); - /****************** IsRational ******************/ - /**** md5 signature: 238ad45424fe7f4d227ac0cccdabfdf1 ****/ + /****** BSplSLib::IsRational ******/ + /****** md5 signature: 238ad45424fe7f4d227ac0cccdabfdf1 ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", " Parameters @@ -782,8 +782,8 @@ Returns false if all the weights of the array in the area [i1,i2] * [j ") IsRational; static Standard_Boolean IsRational(const TColStd_Array2OfReal & Weights, const Standard_Integer I1, const Standard_Integer I2, const Standard_Integer J1, const Standard_Integer J2, const Standard_Real Epsilon = 0.0); - /****************** Iso ******************/ - /**** md5 signature: 9e1124a641ae0d2850d147558b0e1be9 ****/ + /****** BSplSLib::Iso ******/ + /****** md5 signature: 9e1124a641ae0d2850d147558b0e1be9 ******/ %feature("compactdefaultargs") Iso; %feature("autodoc", " Parameters @@ -809,8 +809,8 @@ Computes the poles and weights of an isoparametric curve at parameter (u ") Iso; static void Iso(const Standard_Real Param, const Standard_Boolean IsU, const TColgp_Array2OfPnt & Poles, const TColStd_Array2OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger * Mults, const Standard_Integer Degree, const Standard_Boolean Periodic, TColgp_Array1OfPnt & CPoles, TColStd_Array1OfReal * CWeights); - /****************** MovePoint ******************/ - /**** md5 signature: 5f7743a036a141c9b8c4be1ccab23031 ****/ + /****** BSplSLib::MovePoint ******/ + /****** md5 signature: 5f7743a036a141c9b8c4be1ccab23031 ******/ %feature("compactdefaultargs") MovePoint; %feature("autodoc", " Parameters @@ -844,8 +844,8 @@ Find the new poles which allows an old point (with a given u,v as parameters) to ") MovePoint; static void MovePoint(const Standard_Real U, const Standard_Real V, const gp_Vec & Displ, const Standard_Integer UIndex1, const Standard_Integer UIndex2, const Standard_Integer VIndex1, const Standard_Integer VIndex2, const Standard_Integer UDegree, const Standard_Integer VDegree, const Standard_Boolean Rational, const TColgp_Array2OfPnt & Poles, const TColStd_Array2OfReal & Weights, const TColStd_Array1OfReal & UFlatKnots, const TColStd_Array1OfReal & VFlatKnots, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, TColgp_Array2OfPnt & NewPoles); - /****************** NoWeights ******************/ - /**** md5 signature: bbbdcbded0a182bef34c5ef8a588d7ad ****/ + /****** BSplSLib::NoWeights ******/ + /****** md5 signature: bbbdcbded0a182bef34c5ef8a588d7ad ******/ %feature("compactdefaultargs") NoWeights; %feature("autodoc", "Return ------- @@ -857,8 +857,8 @@ Used as argument for a non rational curve. ") NoWeights; static TColStd_Array2OfReal * NoWeights(); - /****************** PolesCoefficients ******************/ - /**** md5 signature: 65463c1f1f25e0a57953fd3f9ed494d8 ****/ + /****** BSplSLib::PolesCoefficients ******/ + /****** md5 signature: 65463c1f1f25e0a57953fd3f9ed494d8 ******/ %feature("compactdefaultargs") PolesCoefficients; %feature("autodoc", " Parameters @@ -876,8 +876,8 @@ Warning! to be used for beziersurfaces only!!!. ") PolesCoefficients; static void PolesCoefficients(const TColgp_Array2OfPnt & Poles, TColgp_Array2OfPnt & CachePoles); - /****************** PolesCoefficients ******************/ - /**** md5 signature: 22743faa22774391b4fee45051eb0d44 ****/ + /****** BSplSLib::PolesCoefficients ******/ + /****** md5 signature: 22743faa22774391b4fee45051eb0d44 ******/ %feature("compactdefaultargs") PolesCoefficients; %feature("autodoc", " Parameters @@ -897,8 +897,8 @@ Encapsulation of buildcache to perform the evaluation of the taylor expansion fo ") PolesCoefficients; static void PolesCoefficients(const TColgp_Array2OfPnt & Poles, const TColStd_Array2OfReal * Weights, TColgp_Array2OfPnt & CachePoles, TColStd_Array2OfReal * CacheWeights); - /****************** RationalDerivative ******************/ - /**** md5 signature: 3e4a753d2a8aa1e4a38e26bfc421f4e9 ****/ + /****** BSplSLib::RationalDerivative ******/ + /****** md5 signature: 3e4a753d2a8aa1e4a38e26bfc421f4e9 ******/ %feature("compactdefaultargs") RationalDerivative; %feature("autodoc", " Parameters @@ -920,8 +920,8 @@ This is a one dimensional function typedef void (*evaluatorfunction) ( standard_ ") RationalDerivative; static void RationalDerivative(const Standard_Integer UDeg, const Standard_Integer VDeg, const Standard_Integer N, const Standard_Integer M, Standard_Real &OutValue, Standard_Real &OutValue, const Standard_Boolean All = Standard_True); - /****************** RemoveKnot ******************/ - /**** md5 signature: 1e14d1e66a2450406f9d61aa0978fec3 ****/ + /****** BSplSLib::RemoveKnot ******/ + /****** md5 signature: 1e14d1e66a2450406f9d61aa0978fec3 ******/ %feature("compactdefaultargs") RemoveKnot; %feature("autodoc", " Parameters @@ -951,8 +951,8 @@ No available documentation. ") RemoveKnot; static Standard_Boolean RemoveKnot(const Standard_Boolean UDirection, const Standard_Integer Index, const Standard_Integer Mult, const Standard_Integer Degree, const Standard_Boolean Periodic, const TColgp_Array2OfPnt & Poles, const TColStd_Array2OfReal * Weights, const TColStd_Array1OfReal & Knots, const TColStd_Array1OfInteger & Mults, TColgp_Array2OfPnt & NewPoles, TColStd_Array2OfReal * NewWeights, TColStd_Array1OfReal & NewKnots, TColStd_Array1OfInteger & NewMults, const Standard_Real Tolerance); - /****************** Resolution ******************/ - /**** md5 signature: e527ac90571906a5630da56a0204b919 ****/ + /****** BSplSLib::Resolution ******/ + /****** md5 signature: e527ac90571906a5630da56a0204b919 ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -982,8 +982,8 @@ Given a tolerance in 3d space returns two tolerances, one in u one in v such tha ") Resolution; static void Resolution(const TColgp_Array2OfPnt & Poles, const TColStd_Array2OfReal * Weights, const TColStd_Array1OfReal & UKnots, const TColStd_Array1OfReal & VKnots, const TColStd_Array1OfInteger & UMults, const TColStd_Array1OfInteger & VMults, const Standard_Integer UDegree, const Standard_Integer VDegree, const Standard_Boolean URat, const Standard_Boolean VRat, const Standard_Boolean UPer, const Standard_Boolean VPer, const Standard_Real Tolerance3D, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Reverse ******************/ - /**** md5 signature: 39ce17f23b5010ec411d98e4d1858323 ****/ + /****** BSplSLib::Reverse ******/ + /****** md5 signature: 39ce17f23b5010ec411d98e4d1858323 ******/ %feature("compactdefaultargs") Reverse; %feature("autodoc", " Parameters @@ -1002,8 +1002,8 @@ Reverses the array of poles. last is the index of the new first row( col) of pol ") Reverse; static void Reverse(TColgp_Array2OfPnt & Poles, const Standard_Integer Last, const Standard_Boolean UDirection); - /****************** Reverse ******************/ - /**** md5 signature: 5819ffb0c18b7f4008d9b8b25ff98072 ****/ + /****** BSplSLib::Reverse ******/ + /****** md5 signature: 5819ffb0c18b7f4008d9b8b25ff98072 ******/ %feature("compactdefaultargs") Reverse; %feature("autodoc", " Parameters @@ -1022,8 +1022,8 @@ Reverses the array of weights. ") Reverse; static void Reverse(TColStd_Array2OfReal & Weights, const Standard_Integer Last, const Standard_Boolean UDirection); - /****************** SetPoles ******************/ - /**** md5 signature: 9d458899241c684863dd75a17f9b5fd7 ****/ + /****** BSplSLib::SetPoles ******/ + /****** md5 signature: 9d458899241c684863dd75a17f9b5fd7 ******/ %feature("compactdefaultargs") SetPoles; %feature("autodoc", " Parameters @@ -1042,8 +1042,8 @@ Copy in fp the coordinates of the poles. ") SetPoles; static void SetPoles(const TColgp_Array2OfPnt & Poles, TColStd_Array1OfReal & FP, const Standard_Boolean UDirection); - /****************** SetPoles ******************/ - /**** md5 signature: e3d166fb8bc62ca2eabdd84250aac1c0 ****/ + /****** BSplSLib::SetPoles ******/ + /****** md5 signature: e3d166fb8bc62ca2eabdd84250aac1c0 ******/ %feature("compactdefaultargs") SetPoles; %feature("autodoc", " Parameters @@ -1063,8 +1063,8 @@ Copy in fp the coordinates of the poles. ") SetPoles; static void SetPoles(const TColgp_Array2OfPnt & Poles, const TColStd_Array2OfReal & Weights, TColStd_Array1OfReal & FP, const Standard_Boolean UDirection); - /****************** Unperiodize ******************/ - /**** md5 signature: 1d1f27b1521872db93340fa45dac9f60 ****/ + /****** BSplSLib::Unperiodize ******/ + /****** md5 signature: 1d1f27b1521872db93340fa45dac9f60 ******/ %feature("compactdefaultargs") Unperiodize; %feature("autodoc", " Parameters @@ -1104,8 +1104,8 @@ No available documentation. ***********************/ class BSplSLib_Cache : public Standard_Transient { public: - /****************** BSplSLib_Cache ******************/ - /**** md5 signature: 5a0c5a66c6ece3fa3e4decf4242b70f0 ****/ + /****** BSplSLib_Cache::BSplSLib_Cache ******/ + /****** md5 signature: 5a0c5a66c6ece3fa3e4decf4242b70f0 ******/ %feature("compactdefaultargs") BSplSLib_Cache; %feature("autodoc", " Parameters @@ -1128,8 +1128,8 @@ Constructor for caching of the span for the surface \param thedegreeu degree alo ") BSplSLib_Cache; BSplSLib_Cache(const Standard_Integer & theDegreeU, const Standard_Boolean & thePeriodicU, const TColStd_Array1OfReal & theFlatKnotsU, const Standard_Integer & theDegreeV, const Standard_Boolean & thePeriodicV, const TColStd_Array1OfReal & theFlatKnotsV, const TColStd_Array2OfReal * theWeights = NULL); - /****************** BuildCache ******************/ - /**** md5 signature: 96b423c64477b333b1d008bf9dc6f681 ****/ + /****** BSplSLib_Cache::BuildCache ******/ + /****** md5 signature: 96b423c64477b333b1d008bf9dc6f681 ******/ %feature("compactdefaultargs") BuildCache; %feature("autodoc", " Parameters @@ -1151,8 +1151,8 @@ Recomputes the cache data. does not verify validity of the cache \param theparam ") BuildCache; void BuildCache(const Standard_Real & theParameterU, const Standard_Real & theParameterV, const TColStd_Array1OfReal & theFlatKnotsU, const TColStd_Array1OfReal & theFlatKnotsV, const TColgp_Array2OfPnt & thePoles, const TColStd_Array2OfReal * theWeights = NULL); - /****************** D0 ******************/ - /**** md5 signature: 943ab97ce1a5d88517242b8403789041 ****/ + /****** BSplSLib_Cache::D0 ******/ + /****** md5 signature: 943ab97ce1a5d88517242b8403789041 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -1171,8 +1171,8 @@ Calculates the point on the surface for specified parameters \param[in] theu fir ") D0; void D0(const Standard_Real & theU, const Standard_Real & theV, gp_Pnt & thePoint); - /****************** D1 ******************/ - /**** md5 signature: 39f51e39b845b43a5a354d6f6f09f6ca ****/ + /****** BSplSLib_Cache::D1 ******/ + /****** md5 signature: 39f51e39b845b43a5a354d6f6f09f6ca ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -1193,8 +1193,8 @@ Calculates the point on the surface and its first derivative \param[in] theu fir ") D1; void D1(const Standard_Real & theU, const Standard_Real & theV, gp_Pnt & thePoint, gp_Vec & theTangentU, gp_Vec & theTangentV); - /****************** D2 ******************/ - /**** md5 signature: 3021a8678a2ebc6f53147e41bc3036da ****/ + /****** BSplSLib_Cache::D2 ******/ + /****** md5 signature: 3021a8678a2ebc6f53147e41bc3036da ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -1218,8 +1218,8 @@ Calculates the point on the surface and derivatives till second order \param[in] ") D2; void D2(const Standard_Real & theU, const Standard_Real & theV, gp_Pnt & thePoint, gp_Vec & theTangentU, gp_Vec & theTangentV, gp_Vec & theCurvatureU, gp_Vec & theCurvatureV, gp_Vec & theCurvatureUV); - /****************** IsCacheValid ******************/ - /**** md5 signature: 2d848242b9372204ece31b0de70cdf17 ****/ + /****** BSplSLib_Cache::IsCacheValid ******/ + /****** md5 signature: 2d848242b9372204ece31b0de70cdf17 ******/ %feature("compactdefaultargs") IsCacheValid; %feature("autodoc", " Parameters @@ -1254,8 +1254,8 @@ Verifies validity of the cache using parameters of the point \param theparameter %nodefaultctor BSplSLib_EvaluatorFunction; class BSplSLib_EvaluatorFunction { public: - /****************** Evaluate ******************/ - /**** md5 signature: 1e372440244caef055e485ce59a6c276 ****/ + /****** BSplSLib_EvaluatorFunction::Evaluate ******/ + /****** md5 signature: 1e372440244caef055e485ce59a6c276 ******/ %feature("compactdefaultargs") Evaluate; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BVH.i b/src/SWIG_files/wrapper/BVH.i index ad665ba54..19c200906 100644 --- a/src/SWIG_files/wrapper/BVH.i +++ b/src/SWIG_files/wrapper/BVH.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BVHDOCSTRING "BVH module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_bvh.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_bvh.html" %enddef %module (package="OCC.Core", docstring=BVHDOCSTRING) BVH @@ -120,8 +120,8 @@ typedef BVH::VectorType::Type BVH_Vec4i; class BVH_AxisSelector { public: typedef typename BVH ::VectorType::Type BVH_VecNt; - /****************** MainAxis ******************/ - /**** md5 signature: 3eeb73485373349ee6e5770c410c7405 ****/ + /****** BVH_AxisSelector::MainAxis ******/ + /****** md5 signature: 3eeb73485373349ee6e5770c410c7405 ******/ %feature("compactdefaultargs") MainAxis; %feature("autodoc", " Parameters @@ -155,8 +155,8 @@ No available documentation. *********************************/ class BVH_BaseBox { public: - /****************** Transform ******************/ - /**** md5 signature: f52fb52638bf0b2d8089837b32d1b6fb ****/ + /****** BVH_BaseBox::Transform ******/ + /****** md5 signature: f52fb52638bf0b2d8089837b32d1b6fb ******/ %feature("compactdefaultargs") Transform; %feature("autodoc", " Parameters @@ -173,8 +173,8 @@ Transforms this box with given transformation. ") Transform; void Transform(const NCollection_Mat4 & theTransform); - /****************** Transformed ******************/ - /**** md5 signature: 4f3a0339459a68755a160d7708c81f4e ****/ + /****** BVH_BaseBox::Transformed ******/ + /****** md5 signature: 4f3a0339459a68755a160d7708c81f4e ******/ %feature("compactdefaultargs") Transformed; %feature("autodoc", " Parameters @@ -413,8 +413,8 @@ Returns a box which is the result of applying the given transformation to this b class BVH_Tree : public BVH_TreeBase { public: typedef typename BVH_TreeBase::BVH_VecNt BVH_VecNt; - /****************** BVH_Tree ******************/ - /**** md5 signature: 2d74225b1905a21a5e97d806c3b50923 ****/ + /****** BVH_Tree::BVH_Tree ******/ + /****** md5 signature: 2d74225b1905a21a5e97d806c3b50923 ******/ %feature("compactdefaultargs") BVH_Tree; %feature("autodoc", "Return ------- @@ -426,8 +426,8 @@ Creates new empty bvh tree. ") BVH_Tree; BVH_Tree(); - /****************** AddInnerNode ******************/ - /**** md5 signature: f58328730bdea31b9795074762e2ff33 ****/ + /****** BVH_Tree::AddInnerNode ******/ + /****** md5 signature: f58328730bdea31b9795074762e2ff33 ******/ %feature("compactdefaultargs") AddInnerNode; %feature("autodoc", " Parameters @@ -447,8 +447,8 @@ Adds new inner node to the bvh. ") AddInnerNode; int AddInnerNode(const BVH_VecNt & theMinPoint, const BVH_VecNt & theMaxPoint, const int theLftChild, const int theRghChild); - /****************** AddInnerNode ******************/ - /**** md5 signature: 5f6cb26dae5b038c2e68cab73611154e ****/ + /****** BVH_Tree::AddInnerNode ******/ + /****** md5 signature: 5f6cb26dae5b038c2e68cab73611154e ******/ %feature("compactdefaultargs") AddInnerNode; %feature("autodoc", " Parameters @@ -467,8 +467,8 @@ Adds new inner node to the bvh. ") AddInnerNode; int AddInnerNode(const BVH_Box & theAABB, const int theLftChild, const int theRghChild); - /****************** AddInnerNode ******************/ - /**** md5 signature: 7349e9c4c6e6de36606d9ec9f409a423 ****/ + /****** BVH_Tree::AddInnerNode ******/ + /****** md5 signature: 7349e9c4c6e6de36606d9ec9f409a423 ******/ %feature("compactdefaultargs") AddInnerNode; %feature("autodoc", " Parameters @@ -486,8 +486,8 @@ Adds new inner node to the bvh with uninitialized bounds. ") AddInnerNode; int AddInnerNode(const int theLftChild, const int theRghChild); - /****************** AddLeafNode ******************/ - /**** md5 signature: 0cd89637e7eea803e0a24110ae682988 ****/ + /****** BVH_Tree::AddLeafNode ******/ + /****** md5 signature: 0cd89637e7eea803e0a24110ae682988 ******/ %feature("compactdefaultargs") AddLeafNode; %feature("autodoc", " Parameters @@ -507,8 +507,8 @@ Adds new leaf node to the bvh. ") AddLeafNode; int AddLeafNode(const BVH_VecNt & theMinPoint, const BVH_VecNt & theMaxPoint, const int theBegElem, const int theEndElem); - /****************** AddLeafNode ******************/ - /**** md5 signature: 5fe9f2fb528719ca7bfb42a304e784f8 ****/ + /****** BVH_Tree::AddLeafNode ******/ + /****** md5 signature: 5fe9f2fb528719ca7bfb42a304e784f8 ******/ %feature("compactdefaultargs") AddLeafNode; %feature("autodoc", " Parameters @@ -527,8 +527,8 @@ Adds new leaf node to the bvh. ") AddLeafNode; int AddLeafNode(const BVH_Box & theAABB, const int theBegElem, const int theEndElem); - /****************** AddLeafNode ******************/ - /**** md5 signature: 0b15c5077d62fd3e3e631a06cb249fdb ****/ + /****** BVH_Tree::AddLeafNode ******/ + /****** md5 signature: 0b15c5077d62fd3e3e631a06cb249fdb ******/ %feature("compactdefaultargs") AddLeafNode; %feature("autodoc", " Parameters @@ -546,8 +546,8 @@ Adds new leaf node to the bvh with uninitialized bounds. ") AddLeafNode; int AddLeafNode(const int theBegElem, const int theEndElem); - /****************** Clear ******************/ - /**** md5 signature: 75abd67f132413fc11c19201aabf1126 ****/ + /****** BVH_Tree::Clear ******/ + /****** md5 signature: 75abd67f132413fc11c19201aabf1126 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -559,8 +559,8 @@ Removes all nodes from the tree. ") Clear; void Clear(); - /****************** CollapseToQuadTree ******************/ - /**** md5 signature: 26af2d95ff6621c0dd1347a8eddea988 ****/ + /****** BVH_Tree::CollapseToQuadTree ******/ + /****** md5 signature: 26af2d95ff6621c0dd1347a8eddea988 ******/ %feature("compactdefaultargs") CollapseToQuadTree; %feature("autodoc", "Return ------- @@ -572,8 +572,8 @@ Collapses the tree into qbvh an returns it. as a result, each 2-nd level of curr ") CollapseToQuadTree; BVH_Tree * CollapseToQuadTree(); - /****************** EstimateSAH ******************/ - /**** md5 signature: 3b150e7f34a26485a48f784b21aaf6ef ****/ + /****** BVH_Tree::EstimateSAH ******/ + /****** md5 signature: 3b150e7f34a26485a48f784b21aaf6ef ******/ %feature("compactdefaultargs") EstimateSAH; %feature("autodoc", "Return ------- @@ -585,8 +585,8 @@ Returns value of sah (surface area heuristic). allows to compare the quality of ") EstimateSAH; T EstimateSAH(); - /****************** Reserve ******************/ - /**** md5 signature: 19d96c51c8d28b94e8cf4c818e3f894e ****/ + /****** BVH_Tree::Reserve ******/ + /****** md5 signature: 19d96c51c8d28b94e8cf4c818e3f894e ******/ %feature("compactdefaultargs") Reserve; %feature("autodoc", " Parameters @@ -603,8 +603,8 @@ Reserves internal bvh storage, so that it can contain the given number of bvh no ") Reserve; void Reserve(const int theNbNodes); - /****************** SetInner ******************/ - /**** md5 signature: e211f149b4289ac87e5ce7758471a95a ****/ + /****** BVH_Tree::SetInner ******/ + /****** md5 signature: e211f149b4289ac87e5ce7758471a95a ******/ %feature("compactdefaultargs") SetInner; %feature("autodoc", " Parameters @@ -621,8 +621,8 @@ Sets node type to 'inner'. ") SetInner; void SetInner(const int theNodeIndex); - /****************** SetOuter ******************/ - /**** md5 signature: 17ac31f632333f17c9c7c88deadd549f ****/ + /****** BVH_Tree::SetOuter ******/ + /****** md5 signature: 17ac31f632333f17c9c7c88deadd549f ******/ %feature("compactdefaultargs") SetOuter; %feature("autodoc", " Parameters @@ -653,8 +653,8 @@ Sets node type to 'outer'. ***********************************/ class BVH_Tree : public BVH_TreeBase { public: - /****************** BVH_Tree ******************/ - /**** md5 signature: 2d74225b1905a21a5e97d806c3b50923 ****/ + /****** BVH_Tree::BVH_Tree ******/ + /****** md5 signature: 2d74225b1905a21a5e97d806c3b50923 ******/ %feature("compactdefaultargs") BVH_Tree; %feature("autodoc", "Return ------- diff --git a/src/SWIG_files/wrapper/BiTgte.i b/src/SWIG_files/wrapper/BiTgte.i index 88345a370..8f27babc8 100644 --- a/src/SWIG_files/wrapper/BiTgte.i +++ b/src/SWIG_files/wrapper/BiTgte.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BITGTEDOCSTRING "BiTgte module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_bitgte.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_bitgte.html" %enddef %module (package="OCC.Core", docstring=BITGTEDOCSTRING) BiTgte @@ -123,8 +123,8 @@ BiTgte_VertexVertex = BiTgte_ContactType.BiTgte_VertexVertex *********************/ class BiTgte_Blend { public: - /****************** BiTgte_Blend ******************/ - /**** md5 signature: 17bbf5741df841e75fdafac78b2e1d31 ****/ + /****** BiTgte_Blend::BiTgte_Blend ******/ + /****** md5 signature: 17bbf5741df841e75fdafac78b2e1d31 ******/ %feature("compactdefaultargs") BiTgte_Blend; %feature("autodoc", "Return ------- @@ -136,8 +136,8 @@ No available documentation. ") BiTgte_Blend; BiTgte_Blend(); - /****************** BiTgte_Blend ******************/ - /**** md5 signature: fcb4eb450d07dc46f49934b8ae41b66a ****/ + /****** BiTgte_Blend::BiTgte_Blend ******/ + /****** md5 signature: fcb4eb450d07dc46f49934b8ae41b66a ******/ %feature("compactdefaultargs") BiTgte_Blend; %feature("autodoc", " Parameters @@ -157,8 +157,8 @@ Description ") BiTgte_Blend; BiTgte_Blend(const TopoDS_Shape & S, const Standard_Real Radius, const Standard_Real Tol, const Standard_Boolean NUBS); - /****************** CenterLines ******************/ - /**** md5 signature: 7cdcbf17f88410937fa3a02ee6e6ff64 ****/ + /****** BiTgte_Blend::CenterLines ******/ + /****** md5 signature: 7cdcbf17f88410937fa3a02ee6e6ff64 ******/ %feature("compactdefaultargs") CenterLines; %feature("autodoc", " Parameters @@ -175,8 +175,8 @@ Set in all the center lines. ") CenterLines; void CenterLines(TopTools_ListOfShape & LC); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** BiTgte_Blend::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -188,8 +188,8 @@ Clear all the fields. ") Clear; void Clear(); - /****************** ComputeCenters ******************/ - /**** md5 signature: fe2fd315b9e436238841f2e4295f6482 ****/ + /****** BiTgte_Blend::ComputeCenters ******/ + /****** md5 signature: fe2fd315b9e436238841f2e4295f6482 ******/ %feature("compactdefaultargs") ComputeCenters; %feature("autodoc", "Return ------- @@ -201,8 +201,8 @@ Computes the center lines. ") ComputeCenters; void ComputeCenters(); - /****************** ContactType ******************/ - /**** md5 signature: 06cf96a6f5ad52a17a27271b2a4780a8 ****/ + /****** BiTgte_Blend::ContactType ******/ + /****** md5 signature: 06cf96a6f5ad52a17a27271b2a4780a8 ******/ %feature("compactdefaultargs") ContactType; %feature("autodoc", " Parameters @@ -219,8 +219,8 @@ Returns the type of contact. ") ContactType; BiTgte_ContactType ContactType(const Standard_Integer Index); - /****************** CurveOnShape1 ******************/ - /**** md5 signature: ee20be21e256f2cf96d84ff8ef3129bb ****/ + /****** BiTgte_Blend::CurveOnShape1 ******/ + /****** md5 signature: ee20be21e256f2cf96d84ff8ef3129bb ******/ %feature("compactdefaultargs") CurveOnShape1; %feature("autodoc", " Parameters @@ -237,8 +237,8 @@ Gives the 3d curve of surfacefillet(index) on supportshape1(index). ") CurveOnShape1; opencascade::handle CurveOnShape1(const Standard_Integer Index); - /****************** CurveOnShape2 ******************/ - /**** md5 signature: 7fc945de3a648a006805b4811834fb9f ****/ + /****** BiTgte_Blend::CurveOnShape2 ******/ + /****** md5 signature: 7fc945de3a648a006805b4811834fb9f ******/ %feature("compactdefaultargs") CurveOnShape2; %feature("autodoc", " Parameters @@ -255,8 +255,8 @@ Gives the 3d curve of surfacefillet(index) on supportshape2(index). ") CurveOnShape2; opencascade::handle CurveOnShape2(const Standard_Integer Index); - /****************** Face ******************/ - /**** md5 signature: 2cbffafda38288d6b1f44549ec0da32a ****/ + /****** BiTgte_Blend::Face ******/ + /****** md5 signature: 2cbffafda38288d6b1f44549ec0da32a ******/ %feature("compactdefaultargs") Face; %feature("autodoc", " Parameters @@ -273,8 +273,8 @@ Returns the surface of range index. ") Face; const TopoDS_Face Face(const Standard_Integer Index); - /****************** Face ******************/ - /**** md5 signature: 4b7aded970014f9eaa6d00fc413a3191 ****/ + /****** BiTgte_Blend::Face ******/ + /****** md5 signature: 4b7aded970014f9eaa6d00fc413a3191 ******/ %feature("compactdefaultargs") Face; %feature("autodoc", " Parameters @@ -291,8 +291,8 @@ Returns the face generated by the centerline. may be - an edge: gen ") Face; const TopoDS_Face Face(const TopoDS_Shape & CenterLine); - /****************** IndicesOfBranche ******************/ - /**** md5 signature: 5496dd9611670412e2f05c0778f3cd94 ****/ + /****** BiTgte_Blend::IndicesOfBranche ******/ + /****** md5 signature: 5496dd9611670412e2f05c0778f3cd94 ******/ %feature("compactdefaultargs") IndicesOfBranche; %feature("autodoc", " Parameters @@ -310,8 +310,8 @@ Set in , the indices of the faces of the branche . //! i.e: bra ") IndicesOfBranche; void IndicesOfBranche(const Standard_Integer Index, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** Init ******************/ - /**** md5 signature: 9117abf7335ad3e22ca004f959ef022d ****/ + /****** BiTgte_Blend::Init ******/ + /****** md5 signature: 9117abf7335ad3e22ca004f959ef022d ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -331,8 +331,8 @@ No available documentation. ") Init; void Init(const TopoDS_Shape & S, const Standard_Real Radius, const Standard_Real Tol, const Standard_Boolean NUBS); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** BiTgte_Blend::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -344,8 +344,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** NbBranches ******************/ - /**** md5 signature: b64569026b92c0773cf3ea7449a53b4a ****/ + /****** BiTgte_Blend::NbBranches ******/ + /****** md5 signature: b64569026b92c0773cf3ea7449a53b4a ******/ %feature("compactdefaultargs") NbBranches; %feature("autodoc", "Return ------- @@ -357,8 +357,8 @@ No available documentation. ") NbBranches; Standard_Integer NbBranches(); - /****************** NbSurfaces ******************/ - /**** md5 signature: fbc438e1ec12b28d849e6d0aeb23caaa ****/ + /****** BiTgte_Blend::NbSurfaces ******/ + /****** md5 signature: fbc438e1ec12b28d849e6d0aeb23caaa ******/ %feature("compactdefaultargs") NbSurfaces; %feature("autodoc", "Return ------- @@ -370,8 +370,8 @@ Returns the number of generated surfaces. ") NbSurfaces; Standard_Integer NbSurfaces(); - /****************** PCurve1OnFillet ******************/ - /**** md5 signature: 66719317f03c4bb8a01bf69af92d0bec ****/ + /****** BiTgte_Blend::PCurve1OnFillet ******/ + /****** md5 signature: 66719317f03c4bb8a01bf69af92d0bec ******/ %feature("compactdefaultargs") PCurve1OnFillet; %feature("autodoc", " Parameters @@ -388,8 +388,8 @@ Gives the pcurve associated to curveonshape1(index) on the fillet. ") PCurve1OnFillet; opencascade::handle PCurve1OnFillet(const Standard_Integer Index); - /****************** PCurve2OnFillet ******************/ - /**** md5 signature: 8483d0ebe8d27721b9bdf3e5ef460abf ****/ + /****** BiTgte_Blend::PCurve2OnFillet ******/ + /****** md5 signature: 8483d0ebe8d27721b9bdf3e5ef460abf ******/ %feature("compactdefaultargs") PCurve2OnFillet; %feature("autodoc", " Parameters @@ -406,8 +406,8 @@ Gives the pcurve associated to curveonshape2(index) on the fillet. ") PCurve2OnFillet; opencascade::handle PCurve2OnFillet(const Standard_Integer Index); - /****************** PCurveOnFace1 ******************/ - /**** md5 signature: 34e81d4b57cd9e48b73731bb12790a88 ****/ + /****** BiTgte_Blend::PCurveOnFace1 ******/ + /****** md5 signature: 34e81d4b57cd9e48b73731bb12790a88 ******/ %feature("compactdefaultargs") PCurveOnFace1; %feature("autodoc", " Parameters @@ -424,8 +424,8 @@ Gives the pcurve associated to curvonshape1(index) on the support face warning: ") PCurveOnFace1; opencascade::handle PCurveOnFace1(const Standard_Integer Index); - /****************** PCurveOnFace2 ******************/ - /**** md5 signature: ab07bb99678af55707111b62c6fece34 ****/ + /****** BiTgte_Blend::PCurveOnFace2 ******/ + /****** md5 signature: ab07bb99678af55707111b62c6fece34 ******/ %feature("compactdefaultargs") PCurveOnFace2; %feature("autodoc", " Parameters @@ -442,8 +442,8 @@ Gives the pcurve associated to curveonshape2(index) on the support face warning: ") PCurveOnFace2; opencascade::handle PCurveOnFace2(const Standard_Integer Index); - /****************** Perform ******************/ - /**** md5 signature: 26f90eb30d35e3511898b9066f769985 ****/ + /****** BiTgte_Blend::Perform ******/ + /****** md5 signature: 26f90eb30d35e3511898b9066f769985 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -460,8 +460,8 @@ Compute the generated surfaces. if is true, compute the resulting s ") Perform; void Perform(const Standard_Boolean BuildShape = Standard_True); - /****************** SetEdge ******************/ - /**** md5 signature: 2cae578848d84ae3c3668cd048d5885d ****/ + /****** BiTgte_Blend::SetEdge ******/ + /****** md5 signature: 2cae578848d84ae3c3668cd048d5885d ******/ %feature("compactdefaultargs") SetEdge; %feature("autodoc", " Parameters @@ -478,8 +478,8 @@ Set an edge of to be rounded. ") SetEdge; void SetEdge(const TopoDS_Edge & Edge); - /****************** SetFaces ******************/ - /**** md5 signature: 46dc023c2aed2e35da6777aafef31609 ****/ + /****** BiTgte_Blend::SetFaces ******/ + /****** md5 signature: 46dc023c2aed2e35da6777aafef31609 ******/ %feature("compactdefaultargs") SetFaces; %feature("autodoc", " Parameters @@ -497,8 +497,8 @@ Set two faces of on which the sphere must roll. ") SetFaces; void SetFaces(const TopoDS_Face & F1, const TopoDS_Face & F2); - /****************** SetStoppingFace ******************/ - /**** md5 signature: 31e99b5f54ada3288ae28080c35765a0 ****/ + /****** BiTgte_Blend::SetStoppingFace ******/ + /****** md5 signature: 31e99b5f54ada3288ae28080c35765a0 ******/ %feature("compactdefaultargs") SetStoppingFace; %feature("autodoc", " Parameters @@ -515,8 +515,8 @@ Set a face on which the fillet must stop. ") SetStoppingFace; void SetStoppingFace(const TopoDS_Face & Face); - /****************** Shape ******************/ - /**** md5 signature: e2e979bbf0e2f5cedfc0e482bf183e08 ****/ + /****** BiTgte_Blend::Shape ******/ + /****** md5 signature: e2e979bbf0e2f5cedfc0e482bf183e08 ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -528,8 +528,8 @@ Returns the result. ") Shape; const TopoDS_Shape Shape(); - /****************** SupportShape1 ******************/ - /**** md5 signature: 10214c27a45d2d8e8b096d1ae2f312ed ****/ + /****** BiTgte_Blend::SupportShape1 ******/ + /****** md5 signature: 10214c27a45d2d8e8b096d1ae2f312ed ******/ %feature("compactdefaultargs") SupportShape1; %feature("autodoc", " Parameters @@ -546,8 +546,8 @@ Gives the first support shape relative to surfacefillet(index);. ") SupportShape1; const TopoDS_Shape SupportShape1(const Standard_Integer Index); - /****************** SupportShape2 ******************/ - /**** md5 signature: 7261f3e4970f2c1b0cdd582f6d687f13 ****/ + /****** BiTgte_Blend::SupportShape2 ******/ + /****** md5 signature: 7261f3e4970f2c1b0cdd582f6d687f13 ******/ %feature("compactdefaultargs") SupportShape2; %feature("autodoc", " Parameters @@ -564,8 +564,8 @@ Gives the second support shape relative to surfacefillet(index);. ") SupportShape2; const TopoDS_Shape SupportShape2(const Standard_Integer Index); - /****************** Surface ******************/ - /**** md5 signature: ca0d44253c2baa75e6ac4da4acb1de35 ****/ + /****** BiTgte_Blend::Surface ******/ + /****** md5 signature: ca0d44253c2baa75e6ac4da4acb1de35 ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", " Parameters @@ -582,8 +582,8 @@ Returns the surface of range index. ") Surface; opencascade::handle Surface(const Standard_Integer Index); - /****************** Surface ******************/ - /**** md5 signature: 200bf7afd4a4bc656a2370bc00f08ebe ****/ + /****** BiTgte_Blend::Surface ******/ + /****** md5 signature: 200bf7afd4a4bc656a2370bc00f08ebe ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", " Parameters @@ -614,8 +614,8 @@ Returns the surface generated by the centerline. may be - an edge: ***************************/ class BiTgte_CurveOnEdge : public Adaptor3d_Curve { public: - /****************** BiTgte_CurveOnEdge ******************/ - /**** md5 signature: 0bc12bd3ec644ed3018a39a0799bc067 ****/ + /****** BiTgte_CurveOnEdge::BiTgte_CurveOnEdge ******/ + /****** md5 signature: 0bc12bd3ec644ed3018a39a0799bc067 ******/ %feature("compactdefaultargs") BiTgte_CurveOnEdge; %feature("autodoc", "Return ------- @@ -627,8 +627,8 @@ No available documentation. ") BiTgte_CurveOnEdge; BiTgte_CurveOnEdge(); - /****************** BiTgte_CurveOnEdge ******************/ - /**** md5 signature: 36ffc866377ea1d78af716092ee3e006 ****/ + /****** BiTgte_CurveOnEdge::BiTgte_CurveOnEdge ******/ + /****** md5 signature: 36ffc866377ea1d78af716092ee3e006 ******/ %feature("compactdefaultargs") BiTgte_CurveOnEdge; %feature("autodoc", " Parameters @@ -646,8 +646,8 @@ No available documentation. ") BiTgte_CurveOnEdge; BiTgte_CurveOnEdge(const TopoDS_Edge & EonF, const TopoDS_Edge & Edge); - /****************** BSpline ******************/ - /**** md5 signature: 3ccc0d851302bffb5de6344e3eb3e58d ****/ + /****** BiTgte_CurveOnEdge::BSpline ******/ + /****** md5 signature: 3ccc0d851302bffb5de6344e3eb3e58d ******/ %feature("compactdefaultargs") BSpline; %feature("autodoc", "Return ------- @@ -659,8 +659,8 @@ No available documentation. ") BSpline; opencascade::handle BSpline(); - /****************** Bezier ******************/ - /**** md5 signature: 092280fc6ee0e7104fbbe3460d73e83c ****/ + /****** BiTgte_CurveOnEdge::Bezier ******/ + /****** md5 signature: 092280fc6ee0e7104fbbe3460d73e83c ******/ %feature("compactdefaultargs") Bezier; %feature("autodoc", "Return ------- @@ -672,8 +672,8 @@ No available documentation. ") Bezier; opencascade::handle Bezier(); - /****************** Circle ******************/ - /**** md5 signature: 5f382e7a6af009845ea6e16d54814298 ****/ + /****** BiTgte_CurveOnEdge::Circle ******/ + /****** md5 signature: 5f382e7a6af009845ea6e16d54814298 ******/ %feature("compactdefaultargs") Circle; %feature("autodoc", "Return ------- @@ -685,8 +685,8 @@ No available documentation. ") Circle; gp_Circ Circle(); - /****************** Continuity ******************/ - /**** md5 signature: 9381b370dfdd50af7f1b79ce202f0c6f ****/ + /****** BiTgte_CurveOnEdge::Continuity ******/ + /****** md5 signature: 9381b370dfdd50af7f1b79ce202f0c6f ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", "Return ------- @@ -698,8 +698,8 @@ No available documentation. ") Continuity; GeomAbs_Shape Continuity(); - /****************** D0 ******************/ - /**** md5 signature: 5f7d08d8d17afc516aac9ef64bf9711f ****/ + /****** BiTgte_CurveOnEdge::D0 ******/ + /****** md5 signature: 5f7d08d8d17afc516aac9ef64bf9711f ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -717,8 +717,8 @@ Computes the point of parameter u on the curve. ") D0; void D0(const Standard_Real U, gp_Pnt & P); - /****************** D1 ******************/ - /**** md5 signature: 1dc830ec49a945a61cde5e5c027b78d7 ****/ + /****** BiTgte_CurveOnEdge::D1 ******/ + /****** md5 signature: 1dc830ec49a945a61cde5e5c027b78d7 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -737,8 +737,8 @@ Computes the point of parameter u on the curve with its first derivative. raised ") D1; void D1(const Standard_Real U, gp_Pnt & P, gp_Vec & V); - /****************** D2 ******************/ - /**** md5 signature: a694b4ba68c0fd83fbac79f945cb5d8c ****/ + /****** BiTgte_CurveOnEdge::D2 ******/ + /****** md5 signature: a694b4ba68c0fd83fbac79f945cb5d8c ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -758,8 +758,8 @@ Returns the point p of parameter u, the first and second derivatives v1 and v2. ") D2; void D2(const Standard_Real U, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2); - /****************** D3 ******************/ - /**** md5 signature: cf1c3b5fe7af9d5c183c1b16b21c43f1 ****/ + /****** BiTgte_CurveOnEdge::D3 ******/ + /****** md5 signature: cf1c3b5fe7af9d5c183c1b16b21c43f1 ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -780,8 +780,8 @@ Returns the point p of parameter u, the first, the second and the third derivati ") D3; void D3(const Standard_Real U, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2, gp_Vec & V3); - /****************** DN ******************/ - /**** md5 signature: 0d4a3e2fc2b4b03d2a49e0796a487efb ****/ + /****** BiTgte_CurveOnEdge::DN ******/ + /****** md5 signature: 0d4a3e2fc2b4b03d2a49e0796a487efb ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -799,8 +799,8 @@ The returned vector gives the value of the derivative for the order of derivatio ") DN; gp_Vec DN(const Standard_Real U, const Standard_Integer N); - /****************** Degree ******************/ - /**** md5 signature: 5ce473e72cc7bb935a667f4c839dab09 ****/ + /****** BiTgte_CurveOnEdge::Degree ******/ + /****** md5 signature: 5ce473e72cc7bb935a667f4c839dab09 ******/ %feature("compactdefaultargs") Degree; %feature("autodoc", "Return ------- @@ -812,8 +812,8 @@ No available documentation. ") Degree; Standard_Integer Degree(); - /****************** Ellipse ******************/ - /**** md5 signature: e9a77f14e9bbca29370202de404ea9c1 ****/ + /****** BiTgte_CurveOnEdge::Ellipse ******/ + /****** md5 signature: e9a77f14e9bbca29370202de404ea9c1 ******/ %feature("compactdefaultargs") Ellipse; %feature("autodoc", "Return ------- @@ -825,8 +825,8 @@ No available documentation. ") Ellipse; gp_Elips Ellipse(); - /****************** FirstParameter ******************/ - /**** md5 signature: eb9ebe94572bd67588fe8811eac261fb ****/ + /****** BiTgte_CurveOnEdge::FirstParameter ******/ + /****** md5 signature: eb9ebe94572bd67588fe8811eac261fb ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", "Return ------- @@ -838,8 +838,8 @@ No available documentation. ") FirstParameter; Standard_Real FirstParameter(); - /****************** GetType ******************/ - /**** md5 signature: 0ad61dcbb5497908c1b536e766f0fcb9 ****/ + /****** BiTgte_CurveOnEdge::GetType ******/ + /****** md5 signature: 0ad61dcbb5497908c1b536e766f0fcb9 ******/ %feature("compactdefaultargs") GetType; %feature("autodoc", "Return ------- @@ -851,8 +851,8 @@ Returns the type of the curve in the current interval: line, circle, ellipse, hy ") GetType; GeomAbs_CurveType GetType(); - /****************** Hyperbola ******************/ - /**** md5 signature: a96ca49b2ad017b35bb09d0b86cb690d ****/ + /****** BiTgte_CurveOnEdge::Hyperbola ******/ + /****** md5 signature: a96ca49b2ad017b35bb09d0b86cb690d ******/ %feature("compactdefaultargs") Hyperbola; %feature("autodoc", "Return ------- @@ -864,8 +864,8 @@ No available documentation. ") Hyperbola; gp_Hypr Hyperbola(); - /****************** Init ******************/ - /**** md5 signature: b74b189b5b7119a6bc7b6c812d488137 ****/ + /****** BiTgte_CurveOnEdge::Init ******/ + /****** md5 signature: b74b189b5b7119a6bc7b6c812d488137 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -883,8 +883,8 @@ No available documentation. ") Init; void Init(const TopoDS_Edge & EonF, const TopoDS_Edge & Edge); - /****************** Intervals ******************/ - /**** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ****/ + /****** BiTgte_CurveOnEdge::Intervals ******/ + /****** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -902,8 +902,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsClosed ******************/ - /**** md5 signature: 00978070ec4cb5f00d1d002a8d5d3763 ****/ + /****** BiTgte_CurveOnEdge::IsClosed ******/ + /****** md5 signature: 00978070ec4cb5f00d1d002a8d5d3763 ******/ %feature("compactdefaultargs") IsClosed; %feature("autodoc", "Return ------- @@ -915,8 +915,8 @@ No available documentation. ") IsClosed; Standard_Boolean IsClosed(); - /****************** IsPeriodic ******************/ - /**** md5 signature: 15e3ccfd3ad4ae42959489f7f64aa8ca ****/ + /****** BiTgte_CurveOnEdge::IsPeriodic ******/ + /****** md5 signature: 15e3ccfd3ad4ae42959489f7f64aa8ca ******/ %feature("compactdefaultargs") IsPeriodic; %feature("autodoc", "Return ------- @@ -928,8 +928,8 @@ No available documentation. ") IsPeriodic; Standard_Boolean IsPeriodic(); - /****************** IsRational ******************/ - /**** md5 signature: 82ca56fad113156125f40128b25c0d8e ****/ + /****** BiTgte_CurveOnEdge::IsRational ******/ + /****** md5 signature: 82ca56fad113156125f40128b25c0d8e ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -941,8 +941,8 @@ No available documentation. ") IsRational; Standard_Boolean IsRational(); - /****************** LastParameter ******************/ - /**** md5 signature: cb4925a2d4a451ceec8f6ad486530f9c ****/ + /****** BiTgte_CurveOnEdge::LastParameter ******/ + /****** md5 signature: cb4925a2d4a451ceec8f6ad486530f9c ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", "Return ------- @@ -954,8 +954,8 @@ No available documentation. ") LastParameter; Standard_Real LastParameter(); - /****************** Line ******************/ - /**** md5 signature: cf28f5541e4e744dd8038e2a9ac75a8f ****/ + /****** BiTgte_CurveOnEdge::Line ******/ + /****** md5 signature: cf28f5541e4e744dd8038e2a9ac75a8f ******/ %feature("compactdefaultargs") Line; %feature("autodoc", "Return ------- @@ -967,8 +967,8 @@ No available documentation. ") Line; gp_Lin Line(); - /****************** NbIntervals ******************/ - /**** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ****/ + /****** BiTgte_CurveOnEdge::NbIntervals ******/ + /****** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -985,8 +985,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** NbKnots ******************/ - /**** md5 signature: 841663cbf96bec3b939f307c52df6c7c ****/ + /****** BiTgte_CurveOnEdge::NbKnots ******/ + /****** md5 signature: 841663cbf96bec3b939f307c52df6c7c ******/ %feature("compactdefaultargs") NbKnots; %feature("autodoc", "Return ------- @@ -998,8 +998,8 @@ No available documentation. ") NbKnots; Standard_Integer NbKnots(); - /****************** NbPoles ******************/ - /**** md5 signature: 52e5fadf897540545847ef59cc0ba942 ****/ + /****** BiTgte_CurveOnEdge::NbPoles ******/ + /****** md5 signature: 52e5fadf897540545847ef59cc0ba942 ******/ %feature("compactdefaultargs") NbPoles; %feature("autodoc", "Return ------- @@ -1011,8 +1011,8 @@ No available documentation. ") NbPoles; Standard_Integer NbPoles(); - /****************** Parabola ******************/ - /**** md5 signature: 68860abab63fd184ea5c7eb97f0762c1 ****/ + /****** BiTgte_CurveOnEdge::Parabola ******/ + /****** md5 signature: 68860abab63fd184ea5c7eb97f0762c1 ******/ %feature("compactdefaultargs") Parabola; %feature("autodoc", "Return ------- @@ -1024,8 +1024,8 @@ No available documentation. ") Parabola; gp_Parab Parabola(); - /****************** Period ******************/ - /**** md5 signature: 88909a321398632744c0d6841580c626 ****/ + /****** BiTgte_CurveOnEdge::Period ******/ + /****** md5 signature: 88909a321398632744c0d6841580c626 ******/ %feature("compactdefaultargs") Period; %feature("autodoc", "Return ------- @@ -1037,8 +1037,8 @@ No available documentation. ") Period; Standard_Real Period(); - /****************** Resolution ******************/ - /**** md5 signature: cc4a4d9111fadd20ad48e62bc4df1579 ****/ + /****** BiTgte_CurveOnEdge::Resolution ******/ + /****** md5 signature: cc4a4d9111fadd20ad48e62bc4df1579 ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -1055,8 +1055,8 @@ Returns the parametric resolution corresponding to the real space resolution ShallowCopy(); - /****************** Trim ******************/ - /**** md5 signature: 40a46ffe7379c6d919968b501b8343a5 ****/ + /****** BiTgte_CurveOnEdge::Trim ******/ + /****** md5 signature: 40a46ffe7379c6d919968b501b8343a5 ******/ %feature("compactdefaultargs") Trim; %feature("autodoc", " Parameters @@ -1088,8 +1088,8 @@ Returns a curve equivalent of between parameters and . Trim(const Standard_Real First, const Standard_Real Last, const Standard_Real Tol); - /****************** Value ******************/ - /**** md5 signature: d7f310c73762cbaa285ace0a141bc7bf ****/ + /****** BiTgte_CurveOnEdge::Value ******/ + /****** md5 signature: d7f310c73762cbaa285ace0a141bc7bf ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -1122,8 +1122,8 @@ Computes the point of parameter u on the curve. *****************************/ class BiTgte_CurveOnVertex : public Adaptor3d_Curve { public: - /****************** BiTgte_CurveOnVertex ******************/ - /**** md5 signature: c38ff4f1f884bd661cd6b95b8827f160 ****/ + /****** BiTgte_CurveOnVertex::BiTgte_CurveOnVertex ******/ + /****** md5 signature: c38ff4f1f884bd661cd6b95b8827f160 ******/ %feature("compactdefaultargs") BiTgte_CurveOnVertex; %feature("autodoc", "Return ------- @@ -1135,8 +1135,8 @@ No available documentation. ") BiTgte_CurveOnVertex; BiTgte_CurveOnVertex(); - /****************** BiTgte_CurveOnVertex ******************/ - /**** md5 signature: 7c391382afc64ffc731f436162fd5b2d ****/ + /****** BiTgte_CurveOnVertex::BiTgte_CurveOnVertex ******/ + /****** md5 signature: 7c391382afc64ffc731f436162fd5b2d ******/ %feature("compactdefaultargs") BiTgte_CurveOnVertex; %feature("autodoc", " Parameters @@ -1154,8 +1154,8 @@ No available documentation. ") BiTgte_CurveOnVertex; BiTgte_CurveOnVertex(const TopoDS_Edge & EonF, const TopoDS_Vertex & V); - /****************** BSpline ******************/ - /**** md5 signature: 3ccc0d851302bffb5de6344e3eb3e58d ****/ + /****** BiTgte_CurveOnVertex::BSpline ******/ + /****** md5 signature: 3ccc0d851302bffb5de6344e3eb3e58d ******/ %feature("compactdefaultargs") BSpline; %feature("autodoc", "Return ------- @@ -1167,8 +1167,8 @@ No available documentation. ") BSpline; opencascade::handle BSpline(); - /****************** Bezier ******************/ - /**** md5 signature: 092280fc6ee0e7104fbbe3460d73e83c ****/ + /****** BiTgte_CurveOnVertex::Bezier ******/ + /****** md5 signature: 092280fc6ee0e7104fbbe3460d73e83c ******/ %feature("compactdefaultargs") Bezier; %feature("autodoc", "Return ------- @@ -1180,8 +1180,8 @@ No available documentation. ") Bezier; opencascade::handle Bezier(); - /****************** Circle ******************/ - /**** md5 signature: 5f382e7a6af009845ea6e16d54814298 ****/ + /****** BiTgte_CurveOnVertex::Circle ******/ + /****** md5 signature: 5f382e7a6af009845ea6e16d54814298 ******/ %feature("compactdefaultargs") Circle; %feature("autodoc", "Return ------- @@ -1193,8 +1193,8 @@ No available documentation. ") Circle; gp_Circ Circle(); - /****************** Continuity ******************/ - /**** md5 signature: 9381b370dfdd50af7f1b79ce202f0c6f ****/ + /****** BiTgte_CurveOnVertex::Continuity ******/ + /****** md5 signature: 9381b370dfdd50af7f1b79ce202f0c6f ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", "Return ------- @@ -1206,8 +1206,8 @@ No available documentation. ") Continuity; GeomAbs_Shape Continuity(); - /****************** D0 ******************/ - /**** md5 signature: 5f7d08d8d17afc516aac9ef64bf9711f ****/ + /****** BiTgte_CurveOnVertex::D0 ******/ + /****** md5 signature: 5f7d08d8d17afc516aac9ef64bf9711f ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -1225,8 +1225,8 @@ Computes the point of parameter u on the curve. ") D0; void D0(const Standard_Real U, gp_Pnt & P); - /****************** D1 ******************/ - /**** md5 signature: 1dc830ec49a945a61cde5e5c027b78d7 ****/ + /****** BiTgte_CurveOnVertex::D1 ******/ + /****** md5 signature: 1dc830ec49a945a61cde5e5c027b78d7 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -1245,8 +1245,8 @@ Computes the point of parameter u on the curve with its first derivative. raised ") D1; void D1(const Standard_Real U, gp_Pnt & P, gp_Vec & V); - /****************** D2 ******************/ - /**** md5 signature: a694b4ba68c0fd83fbac79f945cb5d8c ****/ + /****** BiTgte_CurveOnVertex::D2 ******/ + /****** md5 signature: a694b4ba68c0fd83fbac79f945cb5d8c ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -1266,8 +1266,8 @@ Returns the point p of parameter u, the first and second derivatives v1 and v2. ") D2; void D2(const Standard_Real U, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2); - /****************** D3 ******************/ - /**** md5 signature: cf1c3b5fe7af9d5c183c1b16b21c43f1 ****/ + /****** BiTgte_CurveOnVertex::D3 ******/ + /****** md5 signature: cf1c3b5fe7af9d5c183c1b16b21c43f1 ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -1288,8 +1288,8 @@ Returns the point p of parameter u, the first, the second and the third derivati ") D3; void D3(const Standard_Real U, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2, gp_Vec & V3); - /****************** DN ******************/ - /**** md5 signature: 0d4a3e2fc2b4b03d2a49e0796a487efb ****/ + /****** BiTgte_CurveOnVertex::DN ******/ + /****** md5 signature: 0d4a3e2fc2b4b03d2a49e0796a487efb ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -1307,8 +1307,8 @@ The returned vector gives the value of the derivative for the order of derivatio ") DN; gp_Vec DN(const Standard_Real U, const Standard_Integer N); - /****************** Degree ******************/ - /**** md5 signature: 5ce473e72cc7bb935a667f4c839dab09 ****/ + /****** BiTgte_CurveOnVertex::Degree ******/ + /****** md5 signature: 5ce473e72cc7bb935a667f4c839dab09 ******/ %feature("compactdefaultargs") Degree; %feature("autodoc", "Return ------- @@ -1320,8 +1320,8 @@ No available documentation. ") Degree; Standard_Integer Degree(); - /****************** Ellipse ******************/ - /**** md5 signature: e9a77f14e9bbca29370202de404ea9c1 ****/ + /****** BiTgte_CurveOnVertex::Ellipse ******/ + /****** md5 signature: e9a77f14e9bbca29370202de404ea9c1 ******/ %feature("compactdefaultargs") Ellipse; %feature("autodoc", "Return ------- @@ -1333,8 +1333,8 @@ No available documentation. ") Ellipse; gp_Elips Ellipse(); - /****************** FirstParameter ******************/ - /**** md5 signature: eb9ebe94572bd67588fe8811eac261fb ****/ + /****** BiTgte_CurveOnVertex::FirstParameter ******/ + /****** md5 signature: eb9ebe94572bd67588fe8811eac261fb ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", "Return ------- @@ -1346,8 +1346,8 @@ No available documentation. ") FirstParameter; Standard_Real FirstParameter(); - /****************** GetType ******************/ - /**** md5 signature: 0ad61dcbb5497908c1b536e766f0fcb9 ****/ + /****** BiTgte_CurveOnVertex::GetType ******/ + /****** md5 signature: 0ad61dcbb5497908c1b536e766f0fcb9 ******/ %feature("compactdefaultargs") GetType; %feature("autodoc", "Return ------- @@ -1359,8 +1359,8 @@ Returns the type of the curve in the current interval: line, circle, ellipse, hy ") GetType; GeomAbs_CurveType GetType(); - /****************** Hyperbola ******************/ - /**** md5 signature: a96ca49b2ad017b35bb09d0b86cb690d ****/ + /****** BiTgte_CurveOnVertex::Hyperbola ******/ + /****** md5 signature: a96ca49b2ad017b35bb09d0b86cb690d ******/ %feature("compactdefaultargs") Hyperbola; %feature("autodoc", "Return ------- @@ -1372,8 +1372,8 @@ No available documentation. ") Hyperbola; gp_Hypr Hyperbola(); - /****************** Init ******************/ - /**** md5 signature: 2ff95074e6eeaa569d953bead28f9ffd ****/ + /****** BiTgte_CurveOnVertex::Init ******/ + /****** md5 signature: 2ff95074e6eeaa569d953bead28f9ffd ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -1391,8 +1391,8 @@ No available documentation. ") Init; void Init(const TopoDS_Edge & EonF, const TopoDS_Vertex & V); - /****************** Intervals ******************/ - /**** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ****/ + /****** BiTgte_CurveOnVertex::Intervals ******/ + /****** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -1410,8 +1410,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsClosed ******************/ - /**** md5 signature: 00978070ec4cb5f00d1d002a8d5d3763 ****/ + /****** BiTgte_CurveOnVertex::IsClosed ******/ + /****** md5 signature: 00978070ec4cb5f00d1d002a8d5d3763 ******/ %feature("compactdefaultargs") IsClosed; %feature("autodoc", "Return ------- @@ -1423,8 +1423,8 @@ No available documentation. ") IsClosed; Standard_Boolean IsClosed(); - /****************** IsPeriodic ******************/ - /**** md5 signature: 15e3ccfd3ad4ae42959489f7f64aa8ca ****/ + /****** BiTgte_CurveOnVertex::IsPeriodic ******/ + /****** md5 signature: 15e3ccfd3ad4ae42959489f7f64aa8ca ******/ %feature("compactdefaultargs") IsPeriodic; %feature("autodoc", "Return ------- @@ -1436,8 +1436,8 @@ No available documentation. ") IsPeriodic; Standard_Boolean IsPeriodic(); - /****************** IsRational ******************/ - /**** md5 signature: 82ca56fad113156125f40128b25c0d8e ****/ + /****** BiTgte_CurveOnVertex::IsRational ******/ + /****** md5 signature: 82ca56fad113156125f40128b25c0d8e ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -1449,8 +1449,8 @@ No available documentation. ") IsRational; Standard_Boolean IsRational(); - /****************** LastParameter ******************/ - /**** md5 signature: cb4925a2d4a451ceec8f6ad486530f9c ****/ + /****** BiTgte_CurveOnVertex::LastParameter ******/ + /****** md5 signature: cb4925a2d4a451ceec8f6ad486530f9c ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", "Return ------- @@ -1462,8 +1462,8 @@ No available documentation. ") LastParameter; Standard_Real LastParameter(); - /****************** Line ******************/ - /**** md5 signature: cf28f5541e4e744dd8038e2a9ac75a8f ****/ + /****** BiTgte_CurveOnVertex::Line ******/ + /****** md5 signature: cf28f5541e4e744dd8038e2a9ac75a8f ******/ %feature("compactdefaultargs") Line; %feature("autodoc", "Return ------- @@ -1475,8 +1475,8 @@ No available documentation. ") Line; gp_Lin Line(); - /****************** NbIntervals ******************/ - /**** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ****/ + /****** BiTgte_CurveOnVertex::NbIntervals ******/ + /****** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -1493,8 +1493,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** NbKnots ******************/ - /**** md5 signature: 841663cbf96bec3b939f307c52df6c7c ****/ + /****** BiTgte_CurveOnVertex::NbKnots ******/ + /****** md5 signature: 841663cbf96bec3b939f307c52df6c7c ******/ %feature("compactdefaultargs") NbKnots; %feature("autodoc", "Return ------- @@ -1506,8 +1506,8 @@ No available documentation. ") NbKnots; Standard_Integer NbKnots(); - /****************** NbPoles ******************/ - /**** md5 signature: 52e5fadf897540545847ef59cc0ba942 ****/ + /****** BiTgte_CurveOnVertex::NbPoles ******/ + /****** md5 signature: 52e5fadf897540545847ef59cc0ba942 ******/ %feature("compactdefaultargs") NbPoles; %feature("autodoc", "Return ------- @@ -1519,8 +1519,8 @@ No available documentation. ") NbPoles; Standard_Integer NbPoles(); - /****************** Parabola ******************/ - /**** md5 signature: 68860abab63fd184ea5c7eb97f0762c1 ****/ + /****** BiTgte_CurveOnVertex::Parabola ******/ + /****** md5 signature: 68860abab63fd184ea5c7eb97f0762c1 ******/ %feature("compactdefaultargs") Parabola; %feature("autodoc", "Return ------- @@ -1532,8 +1532,8 @@ No available documentation. ") Parabola; gp_Parab Parabola(); - /****************** Period ******************/ - /**** md5 signature: 88909a321398632744c0d6841580c626 ****/ + /****** BiTgte_CurveOnVertex::Period ******/ + /****** md5 signature: 88909a321398632744c0d6841580c626 ******/ %feature("compactdefaultargs") Period; %feature("autodoc", "Return ------- @@ -1545,8 +1545,8 @@ No available documentation. ") Period; Standard_Real Period(); - /****************** Resolution ******************/ - /**** md5 signature: cc4a4d9111fadd20ad48e62bc4df1579 ****/ + /****** BiTgte_CurveOnVertex::Resolution ******/ + /****** md5 signature: cc4a4d9111fadd20ad48e62bc4df1579 ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -1563,8 +1563,8 @@ Returns the parametric resolution corresponding to the real space resolution between parameters and . Trim(const Standard_Real First, const Standard_Real Last, const Standard_Real Tol); - /****************** Value ******************/ - /**** md5 signature: d7f310c73762cbaa285ace0a141bc7bf ****/ + /****** BiTgte_CurveOnVertex::Value ******/ + /****** md5 signature: d7f310c73762cbaa285ace0a141bc7bf ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BinDrivers.i b/src/SWIG_files/wrapper/BinDrivers.i index c55a2845c..5d5e31cc7 100644 --- a/src/SWIG_files/wrapper/BinDrivers.i +++ b/src/SWIG_files/wrapper/BinDrivers.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BINDRIVERSDOCSTRING "BinDrivers module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_bindrivers.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_bindrivers.html" %enddef %module (package="OCC.Core", docstring=BINDRIVERSDOCSTRING) BinDrivers @@ -108,8 +108,8 @@ BinDrivers_ENDLABEL = BinDrivers_Marker.BinDrivers_ENDLABEL %rename(bindrivers) BinDrivers; class BinDrivers { public: - /****************** AttributeDrivers ******************/ - /**** md5 signature: a3052842141074dac4fa7742d5b7f7f0 ****/ + /****** BinDrivers::AttributeDrivers ******/ + /****** md5 signature: a3052842141074dac4fa7742d5b7f7f0 ******/ %feature("compactdefaultargs") AttributeDrivers; %feature("autodoc", " Parameters @@ -126,8 +126,8 @@ Creates the table of drivers of types supported. ") AttributeDrivers; static opencascade::handle AttributeDrivers(const opencascade::handle & MsgDrv); - /****************** DefineFormat ******************/ - /**** md5 signature: 2ae4ef4b935d04445595a5553ed3615b ****/ + /****** BinDrivers::DefineFormat ******/ + /****** md5 signature: 2ae4ef4b935d04445595a5553ed3615b ******/ %feature("compactdefaultargs") DefineFormat; %feature("autodoc", " Parameters @@ -144,8 +144,8 @@ Defines format 'binocaf' and registers its read and write drivers in the specifi ") DefineFormat; static void DefineFormat(const opencascade::handle & theApp); - /****************** Factory ******************/ - /**** md5 signature: 9e70ed3bca71e988f9b9e86628ed8ed4 ****/ + /****** BinDrivers::Factory ******/ + /****** md5 signature: 9e70ed3bca71e988f9b9e86628ed8ed4 ******/ %feature("compactdefaultargs") Factory; %feature("autodoc", " Parameters @@ -176,8 +176,8 @@ No available documentation. *******************************************/ class BinDrivers_DocumentRetrievalDriver : public BinLDrivers_DocumentRetrievalDriver { public: - /****************** BinDrivers_DocumentRetrievalDriver ******************/ - /**** md5 signature: 88a86fff6ba1732274c9249348dbc12e ****/ + /****** BinDrivers_DocumentRetrievalDriver::BinDrivers_DocumentRetrievalDriver ******/ + /****** md5 signature: 88a86fff6ba1732274c9249348dbc12e ******/ %feature("compactdefaultargs") BinDrivers_DocumentRetrievalDriver; %feature("autodoc", "Return ------- @@ -189,8 +189,8 @@ Constructor. ") BinDrivers_DocumentRetrievalDriver; BinDrivers_DocumentRetrievalDriver(); - /****************** AttributeDrivers ******************/ - /**** md5 signature: e2cb6a81c25c6d4dac001821709e8847 ****/ + /****** BinDrivers_DocumentRetrievalDriver::AttributeDrivers ******/ + /****** md5 signature: e2cb6a81c25c6d4dac001821709e8847 ******/ %feature("compactdefaultargs") AttributeDrivers; %feature("autodoc", " Parameters @@ -207,8 +207,8 @@ No available documentation. ") AttributeDrivers; virtual opencascade::handle AttributeDrivers(const opencascade::handle & theMsgDriver); - /****************** CheckShapeSection ******************/ - /**** md5 signature: 700e6a408d65152684bc7e5f46482651 ****/ + /****** BinDrivers_DocumentRetrievalDriver::CheckShapeSection ******/ + /****** md5 signature: 700e6a408d65152684bc7e5f46482651 ******/ %feature("compactdefaultargs") CheckShapeSection; %feature("autodoc", " Parameters @@ -226,8 +226,8 @@ No available documentation. ") CheckShapeSection; virtual void CheckShapeSection(const Storage_Position & thePos, std::istream & theIS); - /****************** Clear ******************/ - /**** md5 signature: f671931d03948860d0ead34afbe920aa ****/ + /****** BinDrivers_DocumentRetrievalDriver::Clear ******/ + /****** md5 signature: f671931d03948860d0ead34afbe920aa ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -239,8 +239,8 @@ Clears the namedshape driver. ") Clear; virtual void Clear(); - /****************** EnableQuickPartReading ******************/ - /**** md5 signature: f261e2d709a543f0a293a3d73e15d394 ****/ + /****** BinDrivers_DocumentRetrievalDriver::EnableQuickPartReading ******/ + /****** md5 signature: f261e2d709a543f0a293a3d73e15d394 ******/ %feature("compactdefaultargs") EnableQuickPartReading; %feature("autodoc", " Parameters @@ -258,8 +258,8 @@ Enables reading in the quick part access mode. ") EnableQuickPartReading; virtual void EnableQuickPartReading(const opencascade::handle & theMessageDriver, Standard_Boolean theValue); - /****************** ReadShapeSection ******************/ - /**** md5 signature: 7bf07d0fc30fd0c1486d23e896f3c271 ****/ + /****** BinDrivers_DocumentRetrievalDriver::ReadShapeSection ******/ + /****** md5 signature: 7bf07d0fc30fd0c1486d23e896f3c271 ******/ %feature("compactdefaultargs") ReadShapeSection; %feature("autodoc", " Parameters @@ -295,8 +295,8 @@ No available documentation. *****************************************/ class BinDrivers_DocumentStorageDriver : public BinLDrivers_DocumentStorageDriver { public: - /****************** BinDrivers_DocumentStorageDriver ******************/ - /**** md5 signature: ffc37e36fdced2b619cac020c0f0156f ****/ + /****** BinDrivers_DocumentStorageDriver::BinDrivers_DocumentStorageDriver ******/ + /****** md5 signature: ffc37e36fdced2b619cac020c0f0156f ******/ %feature("compactdefaultargs") BinDrivers_DocumentStorageDriver; %feature("autodoc", "Return ------- @@ -308,8 +308,8 @@ Constructor. ") BinDrivers_DocumentStorageDriver; BinDrivers_DocumentStorageDriver(); - /****************** AttributeDrivers ******************/ - /**** md5 signature: e2cb6a81c25c6d4dac001821709e8847 ****/ + /****** BinDrivers_DocumentStorageDriver::AttributeDrivers ******/ + /****** md5 signature: e2cb6a81c25c6d4dac001821709e8847 ******/ %feature("compactdefaultargs") AttributeDrivers; %feature("autodoc", " Parameters @@ -326,8 +326,8 @@ No available documentation. ") AttributeDrivers; virtual opencascade::handle AttributeDrivers(const opencascade::handle & theMsgDriver); - /****************** Clear ******************/ - /**** md5 signature: f671931d03948860d0ead34afbe920aa ****/ + /****** BinDrivers_DocumentStorageDriver::Clear ******/ + /****** md5 signature: f671931d03948860d0ead34afbe920aa ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -339,8 +339,8 @@ Clears the namedshape driver. ") Clear; virtual void Clear(); - /****************** EnableQuickPartWriting ******************/ - /**** md5 signature: 67669b500f4a4f57fa9f8e71b5f7bab8 ****/ + /****** BinDrivers_DocumentStorageDriver::EnableQuickPartWriting ******/ + /****** md5 signature: 67669b500f4a4f57fa9f8e71b5f7bab8 ******/ %feature("compactdefaultargs") EnableQuickPartWriting; %feature("autodoc", " Parameters @@ -358,8 +358,8 @@ Enables writing in the quick part access mode. ") EnableQuickPartWriting; void EnableQuickPartWriting(const opencascade::handle & theMessageDriver, const Standard_Boolean theValue); - /****************** IsWithNormals ******************/ - /**** md5 signature: 9d2bdcdcd1f884eaceb6d40879d090bb ****/ + /****** BinDrivers_DocumentStorageDriver::IsWithNormals ******/ + /****** md5 signature: 9d2bdcdcd1f884eaceb6d40879d090bb ******/ %feature("compactdefaultargs") IsWithNormals; %feature("autodoc", "Return ------- @@ -371,8 +371,8 @@ Return true if shape should be stored with triangulation normals. ") IsWithNormals; Standard_Boolean IsWithNormals(); - /****************** IsWithTriangles ******************/ - /**** md5 signature: 32c48a11bbc2ae55f906cde0d81b8f2d ****/ + /****** BinDrivers_DocumentStorageDriver::IsWithTriangles ******/ + /****** md5 signature: 32c48a11bbc2ae55f906cde0d81b8f2d ******/ %feature("compactdefaultargs") IsWithTriangles; %feature("autodoc", "Return ------- @@ -384,8 +384,8 @@ Return true if shape should be stored with triangles. ") IsWithTriangles; Standard_Boolean IsWithTriangles(); - /****************** SetWithNormals ******************/ - /**** md5 signature: 7fde6e7e5f05b8658b05741a6e66c3d2 ****/ + /****** BinDrivers_DocumentStorageDriver::SetWithNormals ******/ + /****** md5 signature: 7fde6e7e5f05b8658b05741a6e66c3d2 ******/ %feature("compactdefaultargs") SetWithNormals; %feature("autodoc", " Parameters @@ -403,8 +403,8 @@ Set if triangulation should be stored with normals or not. ") SetWithNormals; void SetWithNormals(const opencascade::handle & theMessageDriver, const Standard_Boolean theWithTriangulation); - /****************** SetWithTriangles ******************/ - /**** md5 signature: db0227376859215948d44ae6c914f15c ****/ + /****** BinDrivers_DocumentStorageDriver::SetWithTriangles ******/ + /****** md5 signature: db0227376859215948d44ae6c914f15c ******/ %feature("compactdefaultargs") SetWithTriangles; %feature("autodoc", " Parameters @@ -422,8 +422,8 @@ Set if triangulation should be stored or not. ") SetWithTriangles; void SetWithTriangles(const opencascade::handle & theMessageDriver, const Standard_Boolean theWithTriangulation); - /****************** WriteShapeSection ******************/ - /**** md5 signature: 64e554649673659ee22057bde5256cf5 ****/ + /****** BinDrivers_DocumentStorageDriver::WriteShapeSection ******/ + /****** md5 signature: 64e554649673659ee22057bde5256cf5 ******/ %feature("compactdefaultargs") WriteShapeSection; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BinLDrivers.i b/src/SWIG_files/wrapper/BinLDrivers.i index 9214efc88..49ba7fe24 100644 --- a/src/SWIG_files/wrapper/BinLDrivers.i +++ b/src/SWIG_files/wrapper/BinLDrivers.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BINLDRIVERSDOCSTRING "BinLDrivers module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_binldrivers.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_binldrivers.html" %enddef %module (package="OCC.Core", docstring=BINLDRIVERSDOCSTRING) BinLDrivers @@ -112,8 +112,8 @@ typedef NCollection_Vector BinLDrivers_VectorOfDocu %rename(binldrivers) BinLDrivers; class BinLDrivers { public: - /****************** AttributeDrivers ******************/ - /**** md5 signature: a3052842141074dac4fa7742d5b7f7f0 ****/ + /****** BinLDrivers::AttributeDrivers ******/ + /****** md5 signature: a3052842141074dac4fa7742d5b7f7f0 ******/ %feature("compactdefaultargs") AttributeDrivers; %feature("autodoc", " Parameters @@ -130,8 +130,8 @@ Creates a table of the supported drivers' types. ") AttributeDrivers; static opencascade::handle AttributeDrivers(const opencascade::handle & MsgDrv); - /****************** DefineFormat ******************/ - /**** md5 signature: 2ae4ef4b935d04445595a5553ed3615b ****/ + /****** BinLDrivers::DefineFormat ******/ + /****** md5 signature: 2ae4ef4b935d04445595a5553ed3615b ******/ %feature("compactdefaultargs") DefineFormat; %feature("autodoc", " Parameters @@ -148,8 +148,8 @@ Defines format 'binlocaf' and registers its read and write drivers in the specif ") DefineFormat; static void DefineFormat(const opencascade::handle & theApp); - /****************** Factory ******************/ - /**** md5 signature: 9e70ed3bca71e988f9b9e86628ed8ed4 ****/ + /****** BinLDrivers::Factory ******/ + /****** md5 signature: 9e70ed3bca71e988f9b9e86628ed8ed4 ******/ %feature("compactdefaultargs") Factory; %feature("autodoc", " Parameters @@ -180,8 +180,8 @@ No available documentation. ********************************************/ class BinLDrivers_DocumentRetrievalDriver : public PCDM_RetrievalDriver { public: - /****************** BinLDrivers_DocumentRetrievalDriver ******************/ - /**** md5 signature: 6e9f45f3c968879f6eba97c7d8d3db55 ****/ + /****** BinLDrivers_DocumentRetrievalDriver::BinLDrivers_DocumentRetrievalDriver ******/ + /****** md5 signature: 6e9f45f3c968879f6eba97c7d8d3db55 ******/ %feature("compactdefaultargs") BinLDrivers_DocumentRetrievalDriver; %feature("autodoc", "Return ------- @@ -193,8 +193,8 @@ Constructor. ") BinLDrivers_DocumentRetrievalDriver; BinLDrivers_DocumentRetrievalDriver(); - /****************** AttributeDrivers ******************/ - /**** md5 signature: f05b53d6e03fc4c0b1a43a8f6b8dcd60 ****/ + /****** BinLDrivers_DocumentRetrievalDriver::AttributeDrivers ******/ + /****** md5 signature: f05b53d6e03fc4c0b1a43a8f6b8dcd60 ******/ %feature("compactdefaultargs") AttributeDrivers; %feature("autodoc", " Parameters @@ -211,8 +211,8 @@ No available documentation. ") AttributeDrivers; virtual opencascade::handle AttributeDrivers(const opencascade::handle & theMsgDriver); - /****************** Read ******************/ - /**** md5 signature: f7b8bb13afb113e0cba89338b8e12a06 ****/ + /****** BinLDrivers_DocumentRetrievalDriver::Read ******/ + /****** md5 signature: f7b8bb13afb113e0cba89338b8e12a06 ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -233,8 +233,8 @@ Retrieves the content of the file into a new document. ") Read; virtual void Read(TCollection_ExtendedString theFileName, const opencascade::handle & theNewDocument, const opencascade::handle & theApplication, const opencascade::handle & theFilter = opencascade::handle(), const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Read ******************/ - /**** md5 signature: 771be11c877b12fef9f44e77dfdf48ba ****/ + /****** BinLDrivers_DocumentRetrievalDriver::Read ******/ + /****** md5 signature: 771be11c877b12fef9f44e77dfdf48ba ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -272,8 +272,8 @@ No available documentation. ************************************/ class BinLDrivers_DocumentSection { public: - /****************** BinLDrivers_DocumentSection ******************/ - /**** md5 signature: 4df81d4eb430d1816f9561d46f3e2c09 ****/ + /****** BinLDrivers_DocumentSection::BinLDrivers_DocumentSection ******/ + /****** md5 signature: 4df81d4eb430d1816f9561d46f3e2c09 ******/ %feature("compactdefaultargs") BinLDrivers_DocumentSection; %feature("autodoc", "Return ------- @@ -285,8 +285,8 @@ Empty constructor. ") BinLDrivers_DocumentSection; BinLDrivers_DocumentSection(); - /****************** BinLDrivers_DocumentSection ******************/ - /**** md5 signature: 5df5ec4768b7b05db6c9bd02b54b7460 ****/ + /****** BinLDrivers_DocumentSection::BinLDrivers_DocumentSection ******/ + /****** md5 signature: 5df5ec4768b7b05db6c9bd02b54b7460 ******/ %feature("compactdefaultargs") BinLDrivers_DocumentSection; %feature("autodoc", " Parameters @@ -304,8 +304,8 @@ Constructor. ") BinLDrivers_DocumentSection; BinLDrivers_DocumentSection(TCollection_AsciiString theName, const Standard_Boolean isPostRead); - /****************** IsPostRead ******************/ - /**** md5 signature: f46b74fd06908e5a3c055dc46ad8d664 ****/ + /****** BinLDrivers_DocumentSection::IsPostRead ******/ + /****** md5 signature: f46b74fd06908e5a3c055dc46ad8d664 ******/ %feature("compactdefaultargs") IsPostRead; %feature("autodoc", "Return ------- @@ -317,8 +317,8 @@ Query the status: if the section should be read after ocaf; false means that the ") IsPostRead; Standard_Boolean IsPostRead(); - /****************** Length ******************/ - /**** md5 signature: a276bfb2e4981ebb39eafe742d6a95f4 ****/ + /****** BinLDrivers_DocumentSection::Length ******/ + /****** md5 signature: a276bfb2e4981ebb39eafe742d6a95f4 ******/ %feature("compactdefaultargs") Length; %feature("autodoc", "Return ------- @@ -330,8 +330,8 @@ Query the length of the section in the persistent file. ") Length; uint64_t Length(); - /****************** Name ******************/ - /**** md5 signature: 8e64a3d42cb69d5f0c279aca58e35ec7 ****/ + /****** BinLDrivers_DocumentSection::Name ******/ + /****** md5 signature: 8e64a3d42cb69d5f0c279aca58e35ec7 ******/ %feature("compactdefaultargs") Name; %feature("autodoc", "Return ------- @@ -343,8 +343,8 @@ Query the name of the section. ") Name; const TCollection_AsciiString & Name(); - /****************** Offset ******************/ - /**** md5 signature: bf9bc651dd4a129b761429957eb0a0a6 ****/ + /****** BinLDrivers_DocumentSection::Offset ******/ + /****** md5 signature: bf9bc651dd4a129b761429957eb0a0a6 ******/ %feature("compactdefaultargs") Offset; %feature("autodoc", "Return ------- @@ -356,8 +356,8 @@ Query the offset of the section in the persistent file. ") Offset; uint64_t Offset(); - /****************** ReadTOC ******************/ - /**** md5 signature: 6d892ade1242a16e99246162955f59d3 ****/ + /****** BinLDrivers_DocumentSection::ReadTOC ******/ + /****** md5 signature: 6d892ade1242a16e99246162955f59d3 ******/ %feature("compactdefaultargs") ReadTOC; %feature("autodoc", " Parameters @@ -376,8 +376,8 @@ Fill a documentsection instance from the data that are read from toc. returns fa ") ReadTOC; static Standard_Boolean ReadTOC(BinLDrivers_DocumentSection & theSection, std::istream & theIS, const TDocStd_FormatVersion theDocFormatVersion); - /****************** SetLength ******************/ - /**** md5 signature: 9c89e70c52c75c8f071a4a8b0807f508 ****/ + /****** BinLDrivers_DocumentSection::SetLength ******/ + /****** md5 signature: 9c89e70c52c75c8f071a4a8b0807f508 ******/ %feature("compactdefaultargs") SetLength; %feature("autodoc", " Parameters @@ -394,8 +394,8 @@ Set the length of the section in the persistent file. ") SetLength; void SetLength(const uint64_t theLength); - /****************** SetOffset ******************/ - /**** md5 signature: 611eebeca4349b02d49fcf9ef5e8b099 ****/ + /****** BinLDrivers_DocumentSection::SetOffset ******/ + /****** md5 signature: 611eebeca4349b02d49fcf9ef5e8b099 ******/ %feature("compactdefaultargs") SetOffset; %feature("autodoc", " Parameters @@ -412,8 +412,8 @@ Set the offset of the section in the persistent file. ") SetOffset; void SetOffset(const uint64_t theOffset); - /****************** Write ******************/ - /**** md5 signature: f8a305892a9630863531b16bb0e8d748 ****/ + /****** BinLDrivers_DocumentSection::Write ******/ + /****** md5 signature: f8a305892a9630863531b16bb0e8d748 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -431,8 +431,8 @@ Save offset and length data into the section entry in the document toc (list of ") Write; void Write(std::ostream &OutValue, const uint64_t theOffset, const TDocStd_FormatVersion theDocFormatVersion); - /****************** WriteTOC ******************/ - /**** md5 signature: 1286c7467df97ba170437cf09bae7984 ****/ + /****** BinLDrivers_DocumentSection::WriteTOC ******/ + /****** md5 signature: 1286c7467df97ba170437cf09bae7984 ******/ %feature("compactdefaultargs") WriteTOC; %feature("autodoc", " Parameters @@ -463,8 +463,8 @@ Create a section entry in the document toc (list of sections). ******************************************/ class BinLDrivers_DocumentStorageDriver : public PCDM_StorageDriver { public: - /****************** BinLDrivers_DocumentStorageDriver ******************/ - /**** md5 signature: adfab2843bd0d5f2537c778fb6521d51 ****/ + /****** BinLDrivers_DocumentStorageDriver::BinLDrivers_DocumentStorageDriver ******/ + /****** md5 signature: adfab2843bd0d5f2537c778fb6521d51 ******/ %feature("compactdefaultargs") BinLDrivers_DocumentStorageDriver; %feature("autodoc", "Return ------- @@ -476,8 +476,8 @@ Constructor. ") BinLDrivers_DocumentStorageDriver; BinLDrivers_DocumentStorageDriver(); - /****************** AddSection ******************/ - /**** md5 signature: e2d4b6520ba2b320f1fcf33087c443c7 ****/ + /****** BinLDrivers_DocumentStorageDriver::AddSection ******/ + /****** md5 signature: e2d4b6520ba2b320f1fcf33087c443c7 ******/ %feature("compactdefaultargs") AddSection; %feature("autodoc", " Parameters @@ -495,8 +495,8 @@ Create a section that should be written after the ocaf data. ") AddSection; void AddSection(TCollection_AsciiString theName, const Standard_Boolean isPostRead = Standard_True); - /****************** AttributeDrivers ******************/ - /**** md5 signature: f05b53d6e03fc4c0b1a43a8f6b8dcd60 ****/ + /****** BinLDrivers_DocumentStorageDriver::AttributeDrivers ******/ + /****** md5 signature: f05b53d6e03fc4c0b1a43a8f6b8dcd60 ******/ %feature("compactdefaultargs") AttributeDrivers; %feature("autodoc", " Parameters @@ -513,8 +513,8 @@ No available documentation. ") AttributeDrivers; virtual opencascade::handle AttributeDrivers(const opencascade::handle & theMsgDriver); - /****************** IsQuickPart ******************/ - /**** md5 signature: 6353ee4c7a025e5e9aa62fb9950e7e78 ****/ + /****** BinLDrivers_DocumentStorageDriver::IsQuickPart ******/ + /****** md5 signature: 6353ee4c7a025e5e9aa62fb9950e7e78 ******/ %feature("compactdefaultargs") IsQuickPart; %feature("autodoc", " Parameters @@ -531,8 +531,8 @@ Return true if document should be stored in quick mode for partial reading. ") IsQuickPart; Standard_Boolean IsQuickPart(const Standard_Integer theVersion); - /****************** Write ******************/ - /**** md5 signature: 3ba5a4920118cfb01ca7cb6e94265c60 ****/ + /****** BinLDrivers_DocumentStorageDriver::Write ******/ + /****** md5 signature: 3ba5a4920118cfb01ca7cb6e94265c60 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -551,8 +551,8 @@ Write to the binary file . ") Write; virtual void Write(const opencascade::handle & theDocument, TCollection_ExtendedString theFileName, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Write ******************/ - /**** md5 signature: 1593005190d18463c833b2c78ffb13a5 ****/ + /****** BinLDrivers_DocumentStorageDriver::Write ******/ + /****** md5 signature: 1593005190d18463c833b2c78ffb13a5 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BinMDF.i b/src/SWIG_files/wrapper/BinMDF.i index 3f3cf5096..eba5126c7 100644 --- a/src/SWIG_files/wrapper/BinMDF.i +++ b/src/SWIG_files/wrapper/BinMDF.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BINMDFDOCSTRING "BinMDF module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_binmdf.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_binmdf.html" %enddef %module (package="OCC.Core", docstring=BINMDFDOCSTRING) BinMDF @@ -104,8 +104,8 @@ typedef NCollection_DoubleMap, Standard_Integ %rename(binmdf) BinMDF; class BinMDF { public: - /****************** AddDrivers ******************/ - /**** md5 signature: 9b16e0c464e556dc0dccd242954afcdf ****/ + /****** BinMDF::AddDrivers ******/ + /****** md5 signature: 9b16e0c464e556dc0dccd242954afcdf ******/ %feature("compactdefaultargs") AddDrivers; %feature("autodoc", " Parameters @@ -138,8 +138,8 @@ Adds the attribute storage drivers to . %nodefaultctor BinMDF_ADriver; class BinMDF_ADriver : public Standard_Transient { public: - /****************** MessageDriver ******************/ - /**** md5 signature: a2961f713aaae0ef5d0be03881abc817 ****/ + /****** BinMDF_ADriver::MessageDriver ******/ + /****** md5 signature: a2961f713aaae0ef5d0be03881abc817 ******/ %feature("compactdefaultargs") MessageDriver; %feature("autodoc", "Return ------- @@ -151,8 +151,8 @@ Returns the current message driver of this driver. ") MessageDriver; const opencascade::handle & MessageDriver(); - /****************** NewEmpty ******************/ - /**** md5 signature: 537251aec6cd2736ac1f1abe6868dc70 ****/ + /****** BinMDF_ADriver::NewEmpty ******/ + /****** md5 signature: 537251aec6cd2736ac1f1abe6868dc70 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -164,8 +164,8 @@ Creates a new attribute from tdf. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: dc52286c6599841f40e4bb4abe81b8f2 ****/ + /****** BinMDF_ADriver::Paste ******/ + /****** md5 signature: dc52286c6599841f40e4bb4abe81b8f2 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -184,8 +184,8 @@ Translate the contents of and put it into , using the relocat ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & aSource, const opencascade::handle & aTarget, BinObjMgt_RRelocationTable & aRelocTable); - /****************** Paste ******************/ - /**** md5 signature: 1c4ffe71c04d38a5ec160acbf17fa51f ****/ + /****** BinMDF_ADriver::Paste ******/ + /****** md5 signature: 1c4ffe71c04d38a5ec160acbf17fa51f ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -204,8 +204,8 @@ Translate the contents of and put it into , using the relocat ") Paste; virtual void Paste(const opencascade::handle & aSource, BinObjMgt_Persistent & aTarget, BinObjMgt_SRelocationTable & aRelocTable); - /****************** SourceType ******************/ - /**** md5 signature: b701df1c50a5570aedd2a6108c7e2344 ****/ + /****** BinMDF_ADriver::SourceType ******/ + /****** md5 signature: b701df1c50a5570aedd2a6108c7e2344 ******/ %feature("compactdefaultargs") SourceType; %feature("autodoc", "Return ------- @@ -217,8 +217,8 @@ Returns the type of source object, inheriting from attribute from tdf. ") SourceType; virtual const opencascade::handle & SourceType(); - /****************** TypeName ******************/ - /**** md5 signature: 191a1aa753fb8d39d56bcfd7505ea0e7 ****/ + /****** BinMDF_ADriver::TypeName ******/ + /****** md5 signature: 191a1aa753fb8d39d56bcfd7505ea0e7 ******/ %feature("compactdefaultargs") TypeName; %feature("autodoc", "Return ------- @@ -246,8 +246,8 @@ Returns the type name of the attribute object. ****************************/ class BinMDF_ADriverTable : public Standard_Transient { public: - /****************** BinMDF_ADriverTable ******************/ - /**** md5 signature: 708f7239ec8de4f8ee5349a3633a9833 ****/ + /****** BinMDF_ADriverTable::BinMDF_ADriverTable ******/ + /****** md5 signature: 708f7239ec8de4f8ee5349a3633a9833 ******/ %feature("compactdefaultargs") BinMDF_ADriverTable; %feature("autodoc", "Return ------- @@ -259,8 +259,8 @@ Constructor. ") BinMDF_ADriverTable; BinMDF_ADriverTable(); - /****************** AddDerivedDriver ******************/ - /**** md5 signature: d785bc7c368abacc51e9bcd52083ce5c ****/ + /****** BinMDF_ADriverTable::AddDerivedDriver ******/ + /****** md5 signature: d785bc7c368abacc51e9bcd52083ce5c ******/ %feature("compactdefaultargs") AddDerivedDriver; %feature("autodoc", " Parameters @@ -277,8 +277,8 @@ Adds a translation driver for the derived attribute. the base driver must be alr ") AddDerivedDriver; void AddDerivedDriver(const opencascade::handle & theInstance); - /****************** AddDerivedDriver ******************/ - /**** md5 signature: c08557200bb111bac7324de5048e9e2d ****/ + /****** BinMDF_ADriverTable::AddDerivedDriver ******/ + /****** md5 signature: c08557200bb111bac7324de5048e9e2d ******/ %feature("compactdefaultargs") AddDerivedDriver; %feature("autodoc", " Parameters @@ -295,8 +295,8 @@ Adds a translation driver for the derived attribute. the base driver must be alr ") AddDerivedDriver; const opencascade::handle & AddDerivedDriver(Standard_CString theDerivedType); - /****************** AddDriver ******************/ - /**** md5 signature: b535a4822476bdd281f04ff4cdbaa916 ****/ + /****** BinMDF_ADriverTable::AddDriver ******/ + /****** md5 signature: b535a4822476bdd281f04ff4cdbaa916 ******/ %feature("compactdefaultargs") AddDriver; %feature("autodoc", " Parameters @@ -313,8 +313,8 @@ Adds a translation driver . ") AddDriver; void AddDriver(const opencascade::handle & theDriver); - /****************** AssignIds ******************/ - /**** md5 signature: fdb45c5b6ad6a92c237fc9cc5b5155a5 ****/ + /****** BinMDF_ADriverTable::AssignIds ******/ + /****** md5 signature: fdb45c5b6ad6a92c237fc9cc5b5155a5 ******/ %feature("compactdefaultargs") AssignIds; %feature("autodoc", " Parameters @@ -331,8 +331,8 @@ Assigns the ids to the drivers of the given types. it uses indices in the map as ") AssignIds; void AssignIds(const TColStd_IndexedMapOfTransient & theTypes); - /****************** AssignIds ******************/ - /**** md5 signature: 152071a03ba941c15bd9ea23f8a6c564 ****/ + /****** BinMDF_ADriverTable::AssignIds ******/ + /****** md5 signature: 152071a03ba941c15bd9ea23f8a6c564 ******/ %feature("compactdefaultargs") AssignIds; %feature("autodoc", " Parameters @@ -349,8 +349,8 @@ Assigns the ids to the drivers of the given type names; it uses indices in the s ") AssignIds; void AssignIds(const TColStd_SequenceOfAsciiString & theTypeNames); - /****************** GetDriver ******************/ - /**** md5 signature: ecb31de6ad1797d5b75ad695a4fc66d2 ****/ + /****** BinMDF_ADriverTable::GetDriver ******/ + /****** md5 signature: ecb31de6ad1797d5b75ad695a4fc66d2 ******/ %feature("compactdefaultargs") GetDriver; %feature("autodoc", " Parameters @@ -368,8 +368,8 @@ Gets a driver according to . returns type id if the driver ") GetDriver; Standard_Integer GetDriver(const opencascade::handle & theType, opencascade::handle & theDriver); - /****************** GetDriver ******************/ - /**** md5 signature: fe72078ff43a559946a9375193758316 ****/ + /****** BinMDF_ADriverTable::GetDriver ******/ + /****** md5 signature: fe72078ff43a559946a9375193758316 ******/ %feature("compactdefaultargs") GetDriver; %feature("autodoc", " Parameters @@ -402,8 +402,8 @@ Returns a driver according to . returns null handle if a driver is no *****************************/ class BinMDF_DerivedDriver : public BinMDF_ADriver { public: - /****************** BinMDF_DerivedDriver ******************/ - /**** md5 signature: 577f5e9f1d04d82bf9ec7dbed2fcf96c ****/ + /****** BinMDF_DerivedDriver::BinMDF_DerivedDriver ******/ + /****** md5 signature: 577f5e9f1d04d82bf9ec7dbed2fcf96c ******/ %feature("compactdefaultargs") BinMDF_DerivedDriver; %feature("autodoc", " Parameters @@ -421,8 +421,8 @@ Creates a derivative persistence driver for thederivative attribute by reusage o ") BinMDF_DerivedDriver; BinMDF_DerivedDriver(const opencascade::handle & theDerivative, const opencascade::handle & theBaseDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 9fd03ebf4c88d0fd3efd748ca3107174 ****/ + /****** BinMDF_DerivedDriver::NewEmpty ******/ + /****** md5 signature: 9fd03ebf4c88d0fd3efd748ca3107174 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -434,8 +434,8 @@ Creates a new instance of the derivative attribute. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 94d718490cdbfada5fccaa9591bd47ee ****/ + /****** BinMDF_DerivedDriver::Paste ******/ + /****** md5 signature: 94d718490cdbfada5fccaa9591bd47ee ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -454,8 +454,8 @@ Reuses the base driver to read the base fields. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & theSource, const opencascade::handle & theTarget, BinObjMgt_RRelocationTable & theRelocTable); - /****************** Paste ******************/ - /**** md5 signature: 0c0cb5d03ba18d9ed340ec21f9be4994 ****/ + /****** BinMDF_DerivedDriver::Paste ******/ + /****** md5 signature: 0c0cb5d03ba18d9ed340ec21f9be4994 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -490,8 +490,8 @@ Reuses the base driver to store the base fields. *******************************/ class BinMDF_ReferenceDriver : public BinMDF_ADriver { public: - /****************** BinMDF_ReferenceDriver ******************/ - /**** md5 signature: 990a6786e7b4b68ec20bccf69c3d344a ****/ + /****** BinMDF_ReferenceDriver::BinMDF_ReferenceDriver ******/ + /****** md5 signature: 990a6786e7b4b68ec20bccf69c3d344a ******/ %feature("compactdefaultargs") BinMDF_ReferenceDriver; %feature("autodoc", " Parameters @@ -508,8 +508,8 @@ No available documentation. ") BinMDF_ReferenceDriver; BinMDF_ReferenceDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMDF_ReferenceDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -521,8 +521,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ****/ + /****** BinMDF_ReferenceDriver::Paste ******/ + /****** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -541,8 +541,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: da6a0a35498ea18a652c6a19d6364015 ****/ + /****** BinMDF_ReferenceDriver::Paste ******/ + /****** md5 signature: da6a0a35498ea18a652c6a19d6364015 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -577,8 +577,8 @@ No available documentation. *******************************/ class BinMDF_TagSourceDriver : public BinMDF_ADriver { public: - /****************** BinMDF_TagSourceDriver ******************/ - /**** md5 signature: acbec121f684354773d49a7bad54d867 ****/ + /****** BinMDF_TagSourceDriver::BinMDF_TagSourceDriver ******/ + /****** md5 signature: acbec121f684354773d49a7bad54d867 ******/ %feature("compactdefaultargs") BinMDF_TagSourceDriver; %feature("autodoc", " Parameters @@ -595,8 +595,8 @@ No available documentation. ") BinMDF_TagSourceDriver; BinMDF_TagSourceDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ****/ + /****** BinMDF_TagSourceDriver::NewEmpty ******/ + /****** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -608,8 +608,8 @@ No available documentation. ") NewEmpty; opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ****/ + /****** BinMDF_TagSourceDriver::Paste ******/ + /****** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -628,8 +628,8 @@ No available documentation. ") Paste; Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: 67b435110398ae49c79b33db64bbe228 ****/ + /****** BinMDF_TagSourceDriver::Paste ******/ + /****** md5 signature: 67b435110398ae49c79b33db64bbe228 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BinMDataStd.i b/src/SWIG_files/wrapper/BinMDataStd.i index 58059efd6..412e1c2f6 100644 --- a/src/SWIG_files/wrapper/BinMDataStd.i +++ b/src/SWIG_files/wrapper/BinMDataStd.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BINMDATASTDDOCSTRING "BinMDataStd module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_binmdatastd.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_binmdatastd.html" %enddef %module (package="OCC.Core", docstring=BINMDATASTDDOCSTRING) BinMDataStd @@ -112,8 +112,8 @@ from OCC.Core.Exception import * %rename(binmdatastd) BinMDataStd; class BinMDataStd { public: - /****************** AddDrivers ******************/ - /**** md5 signature: 3b175e0207523895c819eaf3e413231f ****/ + /****** BinMDataStd::AddDrivers ******/ + /****** md5 signature: 3b175e0207523895c819eaf3e413231f ******/ %feature("compactdefaultargs") AddDrivers; %feature("autodoc", " Parameters @@ -149,8 +149,8 @@ Adds the attribute drivers to . **************************************/ class BinMDataStd_AsciiStringDriver : public BinMDF_ADriver { public: - /****************** BinMDataStd_AsciiStringDriver ******************/ - /**** md5 signature: 188836d86692645c787f700473cd4701 ****/ + /****** BinMDataStd_AsciiStringDriver::BinMDataStd_AsciiStringDriver ******/ + /****** md5 signature: 188836d86692645c787f700473cd4701 ******/ %feature("compactdefaultargs") BinMDataStd_AsciiStringDriver; %feature("autodoc", " Parameters @@ -167,8 +167,8 @@ No available documentation. ") BinMDataStd_AsciiStringDriver; BinMDataStd_AsciiStringDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ****/ + /****** BinMDataStd_AsciiStringDriver::NewEmpty ******/ + /****** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -180,8 +180,8 @@ No available documentation. ") NewEmpty; opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ****/ + /****** BinMDataStd_AsciiStringDriver::Paste ******/ + /****** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -200,8 +200,8 @@ Persistent -> transient (retrieve). ") Paste; Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: 67b435110398ae49c79b33db64bbe228 ****/ + /****** BinMDataStd_AsciiStringDriver::Paste ******/ + /****** md5 signature: 67b435110398ae49c79b33db64bbe228 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -236,8 +236,8 @@ Transient -> persistent (store). ***************************************/ class BinMDataStd_BooleanArrayDriver : public BinMDF_ADriver { public: - /****************** BinMDataStd_BooleanArrayDriver ******************/ - /**** md5 signature: f5bb0d94c6ce1700a4890524ec6a435a ****/ + /****** BinMDataStd_BooleanArrayDriver::BinMDataStd_BooleanArrayDriver ******/ + /****** md5 signature: f5bb0d94c6ce1700a4890524ec6a435a ******/ %feature("compactdefaultargs") BinMDataStd_BooleanArrayDriver; %feature("autodoc", " Parameters @@ -254,8 +254,8 @@ No available documentation. ") BinMDataStd_BooleanArrayDriver; BinMDataStd_BooleanArrayDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMDataStd_BooleanArrayDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -267,8 +267,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ****/ + /****** BinMDataStd_BooleanArrayDriver::Paste ******/ + /****** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -287,8 +287,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: da6a0a35498ea18a652c6a19d6364015 ****/ + /****** BinMDataStd_BooleanArrayDriver::Paste ******/ + /****** md5 signature: da6a0a35498ea18a652c6a19d6364015 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -323,8 +323,8 @@ No available documentation. **************************************/ class BinMDataStd_BooleanListDriver : public BinMDF_ADriver { public: - /****************** BinMDataStd_BooleanListDriver ******************/ - /**** md5 signature: 27642213d0e2b698c2ecd0a9d507e751 ****/ + /****** BinMDataStd_BooleanListDriver::BinMDataStd_BooleanListDriver ******/ + /****** md5 signature: 27642213d0e2b698c2ecd0a9d507e751 ******/ %feature("compactdefaultargs") BinMDataStd_BooleanListDriver; %feature("autodoc", " Parameters @@ -341,8 +341,8 @@ No available documentation. ") BinMDataStd_BooleanListDriver; BinMDataStd_BooleanListDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMDataStd_BooleanListDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -354,8 +354,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ****/ + /****** BinMDataStd_BooleanListDriver::Paste ******/ + /****** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -374,8 +374,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: da6a0a35498ea18a652c6a19d6364015 ****/ + /****** BinMDataStd_BooleanListDriver::Paste ******/ + /****** md5 signature: da6a0a35498ea18a652c6a19d6364015 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -410,8 +410,8 @@ No available documentation. ************************************/ class BinMDataStd_ByteArrayDriver : public BinMDF_ADriver { public: - /****************** BinMDataStd_ByteArrayDriver ******************/ - /**** md5 signature: 7421ceb2628d7ffe6b7d210929b3f449 ****/ + /****** BinMDataStd_ByteArrayDriver::BinMDataStd_ByteArrayDriver ******/ + /****** md5 signature: 7421ceb2628d7ffe6b7d210929b3f449 ******/ %feature("compactdefaultargs") BinMDataStd_ByteArrayDriver; %feature("autodoc", " Parameters @@ -428,8 +428,8 @@ No available documentation. ") BinMDataStd_ByteArrayDriver; BinMDataStd_ByteArrayDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMDataStd_ByteArrayDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -441,8 +441,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ****/ + /****** BinMDataStd_ByteArrayDriver::Paste ******/ + /****** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -461,8 +461,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: da6a0a35498ea18a652c6a19d6364015 ****/ + /****** BinMDataStd_ByteArrayDriver::Paste ******/ + /****** md5 signature: da6a0a35498ea18a652c6a19d6364015 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -497,8 +497,8 @@ No available documentation. *************************************/ class BinMDataStd_ExpressionDriver : public BinMDF_ADriver { public: - /****************** BinMDataStd_ExpressionDriver ******************/ - /**** md5 signature: 44b8f4421d10d38a72ec459a6d734809 ****/ + /****** BinMDataStd_ExpressionDriver::BinMDataStd_ExpressionDriver ******/ + /****** md5 signature: 44b8f4421d10d38a72ec459a6d734809 ******/ %feature("compactdefaultargs") BinMDataStd_ExpressionDriver; %feature("autodoc", " Parameters @@ -515,8 +515,8 @@ No available documentation. ") BinMDataStd_ExpressionDriver; BinMDataStd_ExpressionDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ****/ + /****** BinMDataStd_ExpressionDriver::NewEmpty ******/ + /****** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -528,8 +528,8 @@ No available documentation. ") NewEmpty; opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ****/ + /****** BinMDataStd_ExpressionDriver::Paste ******/ + /****** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -548,8 +548,8 @@ No available documentation. ") Paste; Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: 67b435110398ae49c79b33db64bbe228 ****/ + /****** BinMDataStd_ExpressionDriver::Paste ******/ + /****** md5 signature: 67b435110398ae49c79b33db64bbe228 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -584,8 +584,8 @@ No available documentation. *****************************************/ class BinMDataStd_ExtStringArrayDriver : public BinMDF_ADriver { public: - /****************** BinMDataStd_ExtStringArrayDriver ******************/ - /**** md5 signature: e4594ab60a3ad31866ae4d5d389d8922 ****/ + /****** BinMDataStd_ExtStringArrayDriver::BinMDataStd_ExtStringArrayDriver ******/ + /****** md5 signature: e4594ab60a3ad31866ae4d5d389d8922 ******/ %feature("compactdefaultargs") BinMDataStd_ExtStringArrayDriver; %feature("autodoc", " Parameters @@ -602,8 +602,8 @@ No available documentation. ") BinMDataStd_ExtStringArrayDriver; BinMDataStd_ExtStringArrayDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMDataStd_ExtStringArrayDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -615,8 +615,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ****/ + /****** BinMDataStd_ExtStringArrayDriver::Paste ******/ + /****** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -635,8 +635,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: da6a0a35498ea18a652c6a19d6364015 ****/ + /****** BinMDataStd_ExtStringArrayDriver::Paste ******/ + /****** md5 signature: da6a0a35498ea18a652c6a19d6364015 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -671,8 +671,8 @@ No available documentation. ****************************************/ class BinMDataStd_ExtStringListDriver : public BinMDF_ADriver { public: - /****************** BinMDataStd_ExtStringListDriver ******************/ - /**** md5 signature: d8001b61a1b250aaef87b7d236283261 ****/ + /****** BinMDataStd_ExtStringListDriver::BinMDataStd_ExtStringListDriver ******/ + /****** md5 signature: d8001b61a1b250aaef87b7d236283261 ******/ %feature("compactdefaultargs") BinMDataStd_ExtStringListDriver; %feature("autodoc", " Parameters @@ -689,8 +689,8 @@ No available documentation. ") BinMDataStd_ExtStringListDriver; BinMDataStd_ExtStringListDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMDataStd_ExtStringListDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -702,8 +702,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ****/ + /****** BinMDataStd_ExtStringListDriver::Paste ******/ + /****** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -722,8 +722,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: da6a0a35498ea18a652c6a19d6364015 ****/ + /****** BinMDataStd_ExtStringListDriver::Paste ******/ + /****** md5 signature: da6a0a35498ea18a652c6a19d6364015 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -758,8 +758,8 @@ No available documentation. ***************************************/ class BinMDataStd_GenericEmptyDriver : public BinMDF_ADriver { public: - /****************** BinMDataStd_GenericEmptyDriver ******************/ - /**** md5 signature: 53eb6c4275aed57b97b6b324bdf02ba1 ****/ + /****** BinMDataStd_GenericEmptyDriver::BinMDataStd_GenericEmptyDriver ******/ + /****** md5 signature: 53eb6c4275aed57b97b6b324bdf02ba1 ******/ %feature("compactdefaultargs") BinMDataStd_GenericEmptyDriver; %feature("autodoc", " Parameters @@ -776,8 +776,8 @@ No available documentation. ") BinMDataStd_GenericEmptyDriver; BinMDataStd_GenericEmptyDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMDataStd_GenericEmptyDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -789,8 +789,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ****/ + /****** BinMDataStd_GenericEmptyDriver::Paste ******/ + /****** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -809,8 +809,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: da6a0a35498ea18a652c6a19d6364015 ****/ + /****** BinMDataStd_GenericEmptyDriver::Paste ******/ + /****** md5 signature: da6a0a35498ea18a652c6a19d6364015 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -829,8 +829,8 @@ No available documentation. ") Paste; virtual void Paste(const opencascade::handle & Source, BinObjMgt_Persistent & Target, BinObjMgt_SRelocationTable & RelocTable); - /****************** SourceType ******************/ - /**** md5 signature: a352980563a6f80ea43fdc689b280238 ****/ + /****** BinMDataStd_GenericEmptyDriver::SourceType ******/ + /****** md5 signature: a352980563a6f80ea43fdc689b280238 ******/ %feature("compactdefaultargs") SourceType; %feature("autodoc", "Return ------- @@ -858,8 +858,8 @@ No available documentation. *******************************************/ class BinMDataStd_GenericExtStringDriver : public BinMDF_ADriver { public: - /****************** BinMDataStd_GenericExtStringDriver ******************/ - /**** md5 signature: 3d9af25d9f8aae7f6799cceee169e52b ****/ + /****** BinMDataStd_GenericExtStringDriver::BinMDataStd_GenericExtStringDriver ******/ + /****** md5 signature: 3d9af25d9f8aae7f6799cceee169e52b ******/ %feature("compactdefaultargs") BinMDataStd_GenericExtStringDriver; %feature("autodoc", " Parameters @@ -876,8 +876,8 @@ No available documentation. ") BinMDataStd_GenericExtStringDriver; BinMDataStd_GenericExtStringDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ****/ + /****** BinMDataStd_GenericExtStringDriver::NewEmpty ******/ + /****** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -889,8 +889,8 @@ No available documentation. ") NewEmpty; opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ****/ + /****** BinMDataStd_GenericExtStringDriver::Paste ******/ + /****** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -909,8 +909,8 @@ Persistent -> transient (retrieve). ") Paste; Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: 67b435110398ae49c79b33db64bbe228 ****/ + /****** BinMDataStd_GenericExtStringDriver::Paste ******/ + /****** md5 signature: 67b435110398ae49c79b33db64bbe228 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -929,8 +929,8 @@ Transient -> persistent (store). ") Paste; void Paste(const opencascade::handle & Source, BinObjMgt_Persistent & Target, BinObjMgt_SRelocationTable & RelocTable); - /****************** SourceType ******************/ - /**** md5 signature: 386e0f76f2b398ec9a89eb891031bc89 ****/ + /****** BinMDataStd_GenericExtStringDriver::SourceType ******/ + /****** md5 signature: 386e0f76f2b398ec9a89eb891031bc89 ******/ %feature("compactdefaultargs") SourceType; %feature("autodoc", "Return ------- @@ -958,8 +958,8 @@ No available documentation. ***************************************/ class BinMDataStd_IntPackedMapDriver : public BinMDF_ADriver { public: - /****************** BinMDataStd_IntPackedMapDriver ******************/ - /**** md5 signature: 1c438d931e66ed4639378f15a9d51636 ****/ + /****** BinMDataStd_IntPackedMapDriver::BinMDataStd_IntPackedMapDriver ******/ + /****** md5 signature: 1c438d931e66ed4639378f15a9d51636 ******/ %feature("compactdefaultargs") BinMDataStd_IntPackedMapDriver; %feature("autodoc", " Parameters @@ -976,8 +976,8 @@ No available documentation. ") BinMDataStd_IntPackedMapDriver; BinMDataStd_IntPackedMapDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ****/ + /****** BinMDataStd_IntPackedMapDriver::NewEmpty ******/ + /****** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -989,8 +989,8 @@ No available documentation. ") NewEmpty; opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ****/ + /****** BinMDataStd_IntPackedMapDriver::Paste ******/ + /****** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1009,8 +1009,8 @@ Persistent -> transient (retrieve). ") Paste; Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: 67b435110398ae49c79b33db64bbe228 ****/ + /****** BinMDataStd_IntPackedMapDriver::Paste ******/ + /****** md5 signature: 67b435110398ae49c79b33db64bbe228 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1045,8 +1045,8 @@ Transient -> persistent (store). ***************************************/ class BinMDataStd_IntegerArrayDriver : public BinMDF_ADriver { public: - /****************** BinMDataStd_IntegerArrayDriver ******************/ - /**** md5 signature: ac3bf857f4f0a69b5c3fc00b747f3574 ****/ + /****** BinMDataStd_IntegerArrayDriver::BinMDataStd_IntegerArrayDriver ******/ + /****** md5 signature: ac3bf857f4f0a69b5c3fc00b747f3574 ******/ %feature("compactdefaultargs") BinMDataStd_IntegerArrayDriver; %feature("autodoc", " Parameters @@ -1063,8 +1063,8 @@ No available documentation. ") BinMDataStd_IntegerArrayDriver; BinMDataStd_IntegerArrayDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMDataStd_IntegerArrayDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -1076,8 +1076,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ****/ + /****** BinMDataStd_IntegerArrayDriver::Paste ******/ + /****** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1096,8 +1096,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: da6a0a35498ea18a652c6a19d6364015 ****/ + /****** BinMDataStd_IntegerArrayDriver::Paste ******/ + /****** md5 signature: da6a0a35498ea18a652c6a19d6364015 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1132,8 +1132,8 @@ No available documentation. **********************************/ class BinMDataStd_IntegerDriver : public BinMDF_ADriver { public: - /****************** BinMDataStd_IntegerDriver ******************/ - /**** md5 signature: f770b41e1007f40902117f8f9b9cfe91 ****/ + /****** BinMDataStd_IntegerDriver::BinMDataStd_IntegerDriver ******/ + /****** md5 signature: f770b41e1007f40902117f8f9b9cfe91 ******/ %feature("compactdefaultargs") BinMDataStd_IntegerDriver; %feature("autodoc", " Parameters @@ -1150,8 +1150,8 @@ No available documentation. ") BinMDataStd_IntegerDriver; BinMDataStd_IntegerDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMDataStd_IntegerDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -1163,8 +1163,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ****/ + /****** BinMDataStd_IntegerDriver::Paste ******/ + /****** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1183,8 +1183,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: da6a0a35498ea18a652c6a19d6364015 ****/ + /****** BinMDataStd_IntegerDriver::Paste ******/ + /****** md5 signature: da6a0a35498ea18a652c6a19d6364015 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1219,8 +1219,8 @@ No available documentation. **************************************/ class BinMDataStd_IntegerListDriver : public BinMDF_ADriver { public: - /****************** BinMDataStd_IntegerListDriver ******************/ - /**** md5 signature: f6e36c89eac46357557f49bf8bfc4f82 ****/ + /****** BinMDataStd_IntegerListDriver::BinMDataStd_IntegerListDriver ******/ + /****** md5 signature: f6e36c89eac46357557f49bf8bfc4f82 ******/ %feature("compactdefaultargs") BinMDataStd_IntegerListDriver; %feature("autodoc", " Parameters @@ -1237,8 +1237,8 @@ No available documentation. ") BinMDataStd_IntegerListDriver; BinMDataStd_IntegerListDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMDataStd_IntegerListDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -1250,8 +1250,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ****/ + /****** BinMDataStd_IntegerListDriver::Paste ******/ + /****** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1270,8 +1270,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: da6a0a35498ea18a652c6a19d6364015 ****/ + /****** BinMDataStd_IntegerListDriver::Paste ******/ + /****** md5 signature: da6a0a35498ea18a652c6a19d6364015 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1306,8 +1306,8 @@ No available documentation. ************************************/ class BinMDataStd_NamedDataDriver : public BinMDF_ADriver { public: - /****************** BinMDataStd_NamedDataDriver ******************/ - /**** md5 signature: 9630554939964fd88c768db697943156 ****/ + /****** BinMDataStd_NamedDataDriver::BinMDataStd_NamedDataDriver ******/ + /****** md5 signature: 9630554939964fd88c768db697943156 ******/ %feature("compactdefaultargs") BinMDataStd_NamedDataDriver; %feature("autodoc", " Parameters @@ -1324,8 +1324,8 @@ No available documentation. ") BinMDataStd_NamedDataDriver; BinMDataStd_NamedDataDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMDataStd_NamedDataDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -1337,8 +1337,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ****/ + /****** BinMDataStd_NamedDataDriver::Paste ******/ + /****** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1357,8 +1357,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: da6a0a35498ea18a652c6a19d6364015 ****/ + /****** BinMDataStd_NamedDataDriver::Paste ******/ + /****** md5 signature: da6a0a35498ea18a652c6a19d6364015 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1393,8 +1393,8 @@ No available documentation. ************************************/ class BinMDataStd_RealArrayDriver : public BinMDF_ADriver { public: - /****************** BinMDataStd_RealArrayDriver ******************/ - /**** md5 signature: 7957e537c1292ff19d2445c66ad7c5b2 ****/ + /****** BinMDataStd_RealArrayDriver::BinMDataStd_RealArrayDriver ******/ + /****** md5 signature: 7957e537c1292ff19d2445c66ad7c5b2 ******/ %feature("compactdefaultargs") BinMDataStd_RealArrayDriver; %feature("autodoc", " Parameters @@ -1411,8 +1411,8 @@ No available documentation. ") BinMDataStd_RealArrayDriver; BinMDataStd_RealArrayDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMDataStd_RealArrayDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -1424,8 +1424,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ****/ + /****** BinMDataStd_RealArrayDriver::Paste ******/ + /****** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1444,8 +1444,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: da6a0a35498ea18a652c6a19d6364015 ****/ + /****** BinMDataStd_RealArrayDriver::Paste ******/ + /****** md5 signature: da6a0a35498ea18a652c6a19d6364015 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1480,8 +1480,8 @@ No available documentation. *******************************/ class BinMDataStd_RealDriver : public BinMDF_ADriver { public: - /****************** BinMDataStd_RealDriver ******************/ - /**** md5 signature: 7848592ee60f06d3d879056b31225e0b ****/ + /****** BinMDataStd_RealDriver::BinMDataStd_RealDriver ******/ + /****** md5 signature: 7848592ee60f06d3d879056b31225e0b ******/ %feature("compactdefaultargs") BinMDataStd_RealDriver; %feature("autodoc", " Parameters @@ -1498,8 +1498,8 @@ No available documentation. ") BinMDataStd_RealDriver; BinMDataStd_RealDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMDataStd_RealDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -1511,8 +1511,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ****/ + /****** BinMDataStd_RealDriver::Paste ******/ + /****** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1531,8 +1531,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: da6a0a35498ea18a652c6a19d6364015 ****/ + /****** BinMDataStd_RealDriver::Paste ******/ + /****** md5 signature: da6a0a35498ea18a652c6a19d6364015 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1567,8 +1567,8 @@ No available documentation. ***********************************/ class BinMDataStd_RealListDriver : public BinMDF_ADriver { public: - /****************** BinMDataStd_RealListDriver ******************/ - /**** md5 signature: 4d917328831565da9e238c529f3dfca1 ****/ + /****** BinMDataStd_RealListDriver::BinMDataStd_RealListDriver ******/ + /****** md5 signature: 4d917328831565da9e238c529f3dfca1 ******/ %feature("compactdefaultargs") BinMDataStd_RealListDriver; %feature("autodoc", " Parameters @@ -1585,8 +1585,8 @@ No available documentation. ") BinMDataStd_RealListDriver; BinMDataStd_RealListDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMDataStd_RealListDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -1598,8 +1598,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ****/ + /****** BinMDataStd_RealListDriver::Paste ******/ + /****** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1618,8 +1618,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: da6a0a35498ea18a652c6a19d6364015 ****/ + /****** BinMDataStd_RealListDriver::Paste ******/ + /****** md5 signature: da6a0a35498ea18a652c6a19d6364015 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1654,8 +1654,8 @@ No available documentation. *****************************************/ class BinMDataStd_ReferenceArrayDriver : public BinMDF_ADriver { public: - /****************** BinMDataStd_ReferenceArrayDriver ******************/ - /**** md5 signature: 0d981c16e5fb7c8503ffb7223c5ddf44 ****/ + /****** BinMDataStd_ReferenceArrayDriver::BinMDataStd_ReferenceArrayDriver ******/ + /****** md5 signature: 0d981c16e5fb7c8503ffb7223c5ddf44 ******/ %feature("compactdefaultargs") BinMDataStd_ReferenceArrayDriver; %feature("autodoc", " Parameters @@ -1672,8 +1672,8 @@ No available documentation. ") BinMDataStd_ReferenceArrayDriver; BinMDataStd_ReferenceArrayDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMDataStd_ReferenceArrayDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -1685,8 +1685,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ****/ + /****** BinMDataStd_ReferenceArrayDriver::Paste ******/ + /****** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1705,8 +1705,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: da6a0a35498ea18a652c6a19d6364015 ****/ + /****** BinMDataStd_ReferenceArrayDriver::Paste ******/ + /****** md5 signature: da6a0a35498ea18a652c6a19d6364015 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1741,8 +1741,8 @@ No available documentation. ****************************************/ class BinMDataStd_ReferenceListDriver : public BinMDF_ADriver { public: - /****************** BinMDataStd_ReferenceListDriver ******************/ - /**** md5 signature: b6cec0295e9eb724a2ff7cf82c47ff5f ****/ + /****** BinMDataStd_ReferenceListDriver::BinMDataStd_ReferenceListDriver ******/ + /****** md5 signature: b6cec0295e9eb724a2ff7cf82c47ff5f ******/ %feature("compactdefaultargs") BinMDataStd_ReferenceListDriver; %feature("autodoc", " Parameters @@ -1759,8 +1759,8 @@ No available documentation. ") BinMDataStd_ReferenceListDriver; BinMDataStd_ReferenceListDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMDataStd_ReferenceListDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -1772,8 +1772,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ****/ + /****** BinMDataStd_ReferenceListDriver::Paste ******/ + /****** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1792,8 +1792,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: da6a0a35498ea18a652c6a19d6364015 ****/ + /****** BinMDataStd_ReferenceListDriver::Paste ******/ + /****** md5 signature: da6a0a35498ea18a652c6a19d6364015 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1828,8 +1828,8 @@ No available documentation. ***********************************/ class BinMDataStd_TreeNodeDriver : public BinMDF_ADriver { public: - /****************** BinMDataStd_TreeNodeDriver ******************/ - /**** md5 signature: ca7bdecd6842ce94f98736f13985710a ****/ + /****** BinMDataStd_TreeNodeDriver::BinMDataStd_TreeNodeDriver ******/ + /****** md5 signature: ca7bdecd6842ce94f98736f13985710a ******/ %feature("compactdefaultargs") BinMDataStd_TreeNodeDriver; %feature("autodoc", " Parameters @@ -1846,8 +1846,8 @@ No available documentation. ") BinMDataStd_TreeNodeDriver; BinMDataStd_TreeNodeDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ****/ + /****** BinMDataStd_TreeNodeDriver::NewEmpty ******/ + /****** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -1859,8 +1859,8 @@ No available documentation. ") NewEmpty; opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ****/ + /****** BinMDataStd_TreeNodeDriver::Paste ******/ + /****** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1879,8 +1879,8 @@ No available documentation. ") Paste; Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: 67b435110398ae49c79b33db64bbe228 ****/ + /****** BinMDataStd_TreeNodeDriver::Paste ******/ + /****** md5 signature: 67b435110398ae49c79b33db64bbe228 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1915,8 +1915,8 @@ No available documentation. *************************************/ class BinMDataStd_UAttributeDriver : public BinMDF_ADriver { public: - /****************** BinMDataStd_UAttributeDriver ******************/ - /**** md5 signature: d654807c685041b41f83e46af76ab304 ****/ + /****** BinMDataStd_UAttributeDriver::BinMDataStd_UAttributeDriver ******/ + /****** md5 signature: d654807c685041b41f83e46af76ab304 ******/ %feature("compactdefaultargs") BinMDataStd_UAttributeDriver; %feature("autodoc", " Parameters @@ -1933,8 +1933,8 @@ No available documentation. ") BinMDataStd_UAttributeDriver; BinMDataStd_UAttributeDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ****/ + /****** BinMDataStd_UAttributeDriver::NewEmpty ******/ + /****** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -1946,8 +1946,8 @@ No available documentation. ") NewEmpty; opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ****/ + /****** BinMDataStd_UAttributeDriver::Paste ******/ + /****** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1966,8 +1966,8 @@ No available documentation. ") Paste; Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: 67b435110398ae49c79b33db64bbe228 ****/ + /****** BinMDataStd_UAttributeDriver::Paste ******/ + /****** md5 signature: 67b435110398ae49c79b33db64bbe228 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -2002,8 +2002,8 @@ No available documentation. ***********************************/ class BinMDataStd_VariableDriver : public BinMDF_ADriver { public: - /****************** BinMDataStd_VariableDriver ******************/ - /**** md5 signature: 3e4e0a65242c346149a9c3a8042b175e ****/ + /****** BinMDataStd_VariableDriver::BinMDataStd_VariableDriver ******/ + /****** md5 signature: 3e4e0a65242c346149a9c3a8042b175e ******/ %feature("compactdefaultargs") BinMDataStd_VariableDriver; %feature("autodoc", " Parameters @@ -2020,8 +2020,8 @@ No available documentation. ") BinMDataStd_VariableDriver; BinMDataStd_VariableDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ****/ + /****** BinMDataStd_VariableDriver::NewEmpty ******/ + /****** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -2033,8 +2033,8 @@ No available documentation. ") NewEmpty; opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ****/ + /****** BinMDataStd_VariableDriver::Paste ******/ + /****** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -2053,8 +2053,8 @@ No available documentation. ") Paste; Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: 67b435110398ae49c79b33db64bbe228 ****/ + /****** BinMDataStd_VariableDriver::Paste ******/ + /****** md5 signature: 67b435110398ae49c79b33db64bbe228 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BinMDataXtd.i b/src/SWIG_files/wrapper/BinMDataXtd.i index c27d08255..736add690 100644 --- a/src/SWIG_files/wrapper/BinMDataXtd.i +++ b/src/SWIG_files/wrapper/BinMDataXtd.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BINMDATAXTDDOCSTRING "BinMDataXtd module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_binmdataxtd.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_binmdataxtd.html" %enddef %module (package="OCC.Core", docstring=BINMDATAXTDDOCSTRING) BinMDataXtd @@ -96,8 +96,8 @@ from OCC.Core.Exception import * %rename(binmdataxtd) BinMDataXtd; class BinMDataXtd { public: - /****************** AddDrivers ******************/ - /**** md5 signature: 3b175e0207523895c819eaf3e413231f ****/ + /****** BinMDataXtd::AddDrivers ******/ + /****** md5 signature: 3b175e0207523895c819eaf3e413231f ******/ %feature("compactdefaultargs") AddDrivers; %feature("autodoc", " Parameters @@ -115,8 +115,8 @@ Adds the attribute drivers to . ") AddDrivers; static void AddDrivers(const opencascade::handle & theDriverTable, const opencascade::handle & aMsgDrv); - /****************** DocumentVersion ******************/ - /**** md5 signature: 8b57e019ee3c812dbd005e3488c6e740 ****/ + /****** BinMDataXtd::DocumentVersion ******/ + /****** md5 signature: 8b57e019ee3c812dbd005e3488c6e740 ******/ %feature("compactdefaultargs") DocumentVersion; %feature("autodoc", "Return ------- @@ -128,8 +128,8 @@ No available documentation. ") DocumentVersion; static Standard_Integer DocumentVersion(); - /****************** SetDocumentVersion ******************/ - /**** md5 signature: 8b449cc197fc27f62f0af24f12357e84 ****/ + /****** BinMDataXtd::SetDocumentVersion ******/ + /****** md5 signature: 8b449cc197fc27f62f0af24f12357e84 ******/ %feature("compactdefaultargs") SetDocumentVersion; %feature("autodoc", " Parameters @@ -160,8 +160,8 @@ No available documentation. *************************************/ class BinMDataXtd_ConstraintDriver : public BinMDF_ADriver { public: - /****************** BinMDataXtd_ConstraintDriver ******************/ - /**** md5 signature: b632f588437c5b44b2d4d2d89db73828 ****/ + /****** BinMDataXtd_ConstraintDriver::BinMDataXtd_ConstraintDriver ******/ + /****** md5 signature: b632f588437c5b44b2d4d2d89db73828 ******/ %feature("compactdefaultargs") BinMDataXtd_ConstraintDriver; %feature("autodoc", " Parameters @@ -178,8 +178,8 @@ No available documentation. ") BinMDataXtd_ConstraintDriver; BinMDataXtd_ConstraintDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ****/ + /****** BinMDataXtd_ConstraintDriver::NewEmpty ******/ + /****** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -191,8 +191,8 @@ No available documentation. ") NewEmpty; opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ****/ + /****** BinMDataXtd_ConstraintDriver::Paste ******/ + /****** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -211,8 +211,8 @@ No available documentation. ") Paste; Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: 67b435110398ae49c79b33db64bbe228 ****/ + /****** BinMDataXtd_ConstraintDriver::Paste ******/ + /****** md5 signature: 67b435110398ae49c79b33db64bbe228 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -247,8 +247,8 @@ No available documentation. ***********************************/ class BinMDataXtd_GeometryDriver : public BinMDF_ADriver { public: - /****************** BinMDataXtd_GeometryDriver ******************/ - /**** md5 signature: a20e88688a61101dfde069e133d25e2e ****/ + /****** BinMDataXtd_GeometryDriver::BinMDataXtd_GeometryDriver ******/ + /****** md5 signature: a20e88688a61101dfde069e133d25e2e ******/ %feature("compactdefaultargs") BinMDataXtd_GeometryDriver; %feature("autodoc", " Parameters @@ -265,8 +265,8 @@ No available documentation. ") BinMDataXtd_GeometryDriver; BinMDataXtd_GeometryDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ****/ + /****** BinMDataXtd_GeometryDriver::NewEmpty ******/ + /****** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -278,8 +278,8 @@ No available documentation. ") NewEmpty; opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ****/ + /****** BinMDataXtd_GeometryDriver::Paste ******/ + /****** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -298,8 +298,8 @@ No available documentation. ") Paste; Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: 67b435110398ae49c79b33db64bbe228 ****/ + /****** BinMDataXtd_GeometryDriver::Paste ******/ + /****** md5 signature: 67b435110398ae49c79b33db64bbe228 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -334,8 +334,8 @@ No available documentation. *************************************/ class BinMDataXtd_PatternStdDriver : public BinMDF_ADriver { public: - /****************** BinMDataXtd_PatternStdDriver ******************/ - /**** md5 signature: 74bff32b099a795ecc4ec284c25aac0d ****/ + /****** BinMDataXtd_PatternStdDriver::BinMDataXtd_PatternStdDriver ******/ + /****** md5 signature: 74bff32b099a795ecc4ec284c25aac0d ******/ %feature("compactdefaultargs") BinMDataXtd_PatternStdDriver; %feature("autodoc", " Parameters @@ -352,8 +352,8 @@ No available documentation. ") BinMDataXtd_PatternStdDriver; BinMDataXtd_PatternStdDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ****/ + /****** BinMDataXtd_PatternStdDriver::NewEmpty ******/ + /****** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -365,8 +365,8 @@ No available documentation. ") NewEmpty; opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ****/ + /****** BinMDataXtd_PatternStdDriver::Paste ******/ + /****** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -385,8 +385,8 @@ No available documentation. ") Paste; Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: 67b435110398ae49c79b33db64bbe228 ****/ + /****** BinMDataXtd_PatternStdDriver::Paste ******/ + /****** md5 signature: 67b435110398ae49c79b33db64bbe228 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -421,8 +421,8 @@ No available documentation. ***********************************/ class BinMDataXtd_PositionDriver : public BinMDF_ADriver { public: - /****************** BinMDataXtd_PositionDriver ******************/ - /**** md5 signature: 22ee2199f912cc056071114676f73d2d ****/ + /****** BinMDataXtd_PositionDriver::BinMDataXtd_PositionDriver ******/ + /****** md5 signature: 22ee2199f912cc056071114676f73d2d ******/ %feature("compactdefaultargs") BinMDataXtd_PositionDriver; %feature("autodoc", " Parameters @@ -439,8 +439,8 @@ No available documentation. ") BinMDataXtd_PositionDriver; BinMDataXtd_PositionDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ****/ + /****** BinMDataXtd_PositionDriver::NewEmpty ******/ + /****** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -452,8 +452,8 @@ No available documentation. ") NewEmpty; opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ****/ + /****** BinMDataXtd_PositionDriver::Paste ******/ + /****** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -472,8 +472,8 @@ No available documentation. ") Paste; Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: 67b435110398ae49c79b33db64bbe228 ****/ + /****** BinMDataXtd_PositionDriver::Paste ******/ + /****** md5 signature: 67b435110398ae49c79b33db64bbe228 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -508,8 +508,8 @@ No available documentation. ***************************************/ class BinMDataXtd_PresentationDriver : public BinMDF_ADriver { public: - /****************** BinMDataXtd_PresentationDriver ******************/ - /**** md5 signature: e7c58a20c07e3651e261afe00921cbd6 ****/ + /****** BinMDataXtd_PresentationDriver::BinMDataXtd_PresentationDriver ******/ + /****** md5 signature: e7c58a20c07e3651e261afe00921cbd6 ******/ %feature("compactdefaultargs") BinMDataXtd_PresentationDriver; %feature("autodoc", " Parameters @@ -526,8 +526,8 @@ No available documentation. ") BinMDataXtd_PresentationDriver; BinMDataXtd_PresentationDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ****/ + /****** BinMDataXtd_PresentationDriver::NewEmpty ******/ + /****** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -539,8 +539,8 @@ No available documentation. ") NewEmpty; opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ****/ + /****** BinMDataXtd_PresentationDriver::Paste ******/ + /****** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -559,8 +559,8 @@ No available documentation. ") Paste; Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: 67b435110398ae49c79b33db64bbe228 ****/ + /****** BinMDataXtd_PresentationDriver::Paste ******/ + /****** md5 signature: 67b435110398ae49c79b33db64bbe228 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -595,8 +595,8 @@ No available documentation. ****************************************/ class BinMDataXtd_TriangulationDriver : public BinMDF_ADriver { public: - /****************** BinMDataXtd_TriangulationDriver ******************/ - /**** md5 signature: 36f8be4596af1159d32e8415b7c4af9d ****/ + /****** BinMDataXtd_TriangulationDriver::BinMDataXtd_TriangulationDriver ******/ + /****** md5 signature: 36f8be4596af1159d32e8415b7c4af9d ******/ %feature("compactdefaultargs") BinMDataXtd_TriangulationDriver; %feature("autodoc", " Parameters @@ -613,8 +613,8 @@ No available documentation. ") BinMDataXtd_TriangulationDriver; BinMDataXtd_TriangulationDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMDataXtd_TriangulationDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -626,8 +626,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ****/ + /****** BinMDataXtd_TriangulationDriver::Paste ******/ + /****** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -646,8 +646,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: da6a0a35498ea18a652c6a19d6364015 ****/ + /****** BinMDataXtd_TriangulationDriver::Paste ******/ + /****** md5 signature: da6a0a35498ea18a652c6a19d6364015 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BinMDocStd.i b/src/SWIG_files/wrapper/BinMDocStd.i index d6762faaf..307aab86e 100644 --- a/src/SWIG_files/wrapper/BinMDocStd.i +++ b/src/SWIG_files/wrapper/BinMDocStd.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BINMDOCSTDDOCSTRING "BinMDocStd module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_binmdocstd.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_binmdocstd.html" %enddef %module (package="OCC.Core", docstring=BINMDOCSTDDOCSTRING) BinMDocStd @@ -91,8 +91,8 @@ from OCC.Core.Exception import * %rename(binmdocstd) BinMDocStd; class BinMDocStd { public: - /****************** AddDrivers ******************/ - /**** md5 signature: 3b175e0207523895c819eaf3e413231f ****/ + /****** BinMDocStd::AddDrivers ******/ + /****** md5 signature: 3b175e0207523895c819eaf3e413231f ******/ %feature("compactdefaultargs") AddDrivers; %feature("autodoc", " Parameters @@ -124,8 +124,8 @@ Adds the attribute drivers to . *******************************/ class BinMDocStd_XLinkDriver : public BinMDF_ADriver { public: - /****************** BinMDocStd_XLinkDriver ******************/ - /**** md5 signature: a5195ef2d9e329387cf15b5356a946a2 ****/ + /****** BinMDocStd_XLinkDriver::BinMDocStd_XLinkDriver ******/ + /****** md5 signature: a5195ef2d9e329387cf15b5356a946a2 ******/ %feature("compactdefaultargs") BinMDocStd_XLinkDriver; %feature("autodoc", " Parameters @@ -142,8 +142,8 @@ No available documentation. ") BinMDocStd_XLinkDriver; BinMDocStd_XLinkDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMDocStd_XLinkDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -155,8 +155,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ****/ + /****** BinMDocStd_XLinkDriver::Paste ******/ + /****** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -175,8 +175,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: da6a0a35498ea18a652c6a19d6364015 ****/ + /****** BinMDocStd_XLinkDriver::Paste ******/ + /****** md5 signature: da6a0a35498ea18a652c6a19d6364015 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BinMFunction.i b/src/SWIG_files/wrapper/BinMFunction.i index 1bc790d81..8add2fee3 100644 --- a/src/SWIG_files/wrapper/BinMFunction.i +++ b/src/SWIG_files/wrapper/BinMFunction.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BINMFUNCTIONDOCSTRING "BinMFunction module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_binmfunction.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_binmfunction.html" %enddef %module (package="OCC.Core", docstring=BINMFUNCTIONDOCSTRING) BinMFunction @@ -93,8 +93,8 @@ from OCC.Core.Exception import * %rename(binmfunction) BinMFunction; class BinMFunction { public: - /****************** AddDrivers ******************/ - /**** md5 signature: 3b175e0207523895c819eaf3e413231f ****/ + /****** BinMFunction::AddDrivers ******/ + /****** md5 signature: 3b175e0207523895c819eaf3e413231f ******/ %feature("compactdefaultargs") AddDrivers; %feature("autodoc", " Parameters @@ -126,8 +126,8 @@ Adds the attribute drivers to . ************************************/ class BinMFunction_FunctionDriver : public BinMDF_ADriver { public: - /****************** BinMFunction_FunctionDriver ******************/ - /**** md5 signature: 62e3dca3fe9441ad4071a2e87b264bd7 ****/ + /****** BinMFunction_FunctionDriver::BinMFunction_FunctionDriver ******/ + /****** md5 signature: 62e3dca3fe9441ad4071a2e87b264bd7 ******/ %feature("compactdefaultargs") BinMFunction_FunctionDriver; %feature("autodoc", " Parameters @@ -144,8 +144,8 @@ No available documentation. ") BinMFunction_FunctionDriver; BinMFunction_FunctionDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMFunction_FunctionDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -157,8 +157,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ****/ + /****** BinMFunction_FunctionDriver::Paste ******/ + /****** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -177,8 +177,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: da6a0a35498ea18a652c6a19d6364015 ****/ + /****** BinMFunction_FunctionDriver::Paste ******/ + /****** md5 signature: da6a0a35498ea18a652c6a19d6364015 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -213,8 +213,8 @@ No available documentation. *************************************/ class BinMFunction_GraphNodeDriver : public BinMDF_ADriver { public: - /****************** BinMFunction_GraphNodeDriver ******************/ - /**** md5 signature: 923faf68df17a842690d977b6ae24d6f ****/ + /****** BinMFunction_GraphNodeDriver::BinMFunction_GraphNodeDriver ******/ + /****** md5 signature: 923faf68df17a842690d977b6ae24d6f ******/ %feature("compactdefaultargs") BinMFunction_GraphNodeDriver; %feature("autodoc", " Parameters @@ -231,8 +231,8 @@ No available documentation. ") BinMFunction_GraphNodeDriver; BinMFunction_GraphNodeDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMFunction_GraphNodeDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -244,8 +244,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ****/ + /****** BinMFunction_GraphNodeDriver::Paste ******/ + /****** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -264,8 +264,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: da6a0a35498ea18a652c6a19d6364015 ****/ + /****** BinMFunction_GraphNodeDriver::Paste ******/ + /****** md5 signature: da6a0a35498ea18a652c6a19d6364015 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -300,8 +300,8 @@ No available documentation. *********************************/ class BinMFunction_ScopeDriver : public BinMDF_ADriver { public: - /****************** BinMFunction_ScopeDriver ******************/ - /**** md5 signature: 3a3db8642700bda1d342da8279bc36cf ****/ + /****** BinMFunction_ScopeDriver::BinMFunction_ScopeDriver ******/ + /****** md5 signature: 3a3db8642700bda1d342da8279bc36cf ******/ %feature("compactdefaultargs") BinMFunction_ScopeDriver; %feature("autodoc", " Parameters @@ -318,8 +318,8 @@ No available documentation. ") BinMFunction_ScopeDriver; BinMFunction_ScopeDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMFunction_ScopeDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -331,8 +331,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ****/ + /****** BinMFunction_ScopeDriver::Paste ******/ + /****** md5 signature: 37851bb93a225f90250afe4fb5e61e60 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -351,8 +351,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: da6a0a35498ea18a652c6a19d6364015 ****/ + /****** BinMFunction_ScopeDriver::Paste ******/ + /****** md5 signature: da6a0a35498ea18a652c6a19d6364015 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BinMNaming.i b/src/SWIG_files/wrapper/BinMNaming.i index 67b4d5b9b..3577a0ec6 100644 --- a/src/SWIG_files/wrapper/BinMNaming.i +++ b/src/SWIG_files/wrapper/BinMNaming.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BINMNAMINGDOCSTRING "BinMNaming module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_binmnaming.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_binmnaming.html" %enddef %module (package="OCC.Core", docstring=BINMNAMINGDOCSTRING) BinMNaming @@ -99,8 +99,8 @@ from OCC.Core.Exception import * %rename(binmnaming) BinMNaming; class BinMNaming { public: - /****************** AddDrivers ******************/ - /**** md5 signature: 3b175e0207523895c819eaf3e413231f ****/ + /****** BinMNaming::AddDrivers ******/ + /****** md5 signature: 3b175e0207523895c819eaf3e413231f ******/ %feature("compactdefaultargs") AddDrivers; %feature("autodoc", " Parameters @@ -132,8 +132,8 @@ Adds the attribute drivers to . ************************************/ class BinMNaming_NamedShapeDriver : public BinMDF_ADriver { public: - /****************** BinMNaming_NamedShapeDriver ******************/ - /**** md5 signature: 3b7497ac148acc93869b3866b0dc9ece ****/ + /****** BinMNaming_NamedShapeDriver::BinMNaming_NamedShapeDriver ******/ + /****** md5 signature: 3b7497ac148acc93869b3866b0dc9ece ******/ %feature("compactdefaultargs") BinMNaming_NamedShapeDriver; %feature("autodoc", " Parameters @@ -150,8 +150,8 @@ No available documentation. ") BinMNaming_NamedShapeDriver; BinMNaming_NamedShapeDriver(const opencascade::handle & theMessageDriver); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** BinMNaming_NamedShapeDriver::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -163,8 +163,8 @@ Clear myshapeset. ") Clear; void Clear(); - /****************** EnableQuickPart ******************/ - /**** md5 signature: cec3cd0b4a2a26b64dabfcaa2c58ee1c ****/ + /****** BinMNaming_NamedShapeDriver::EnableQuickPart ******/ + /****** md5 signature: cec3cd0b4a2a26b64dabfcaa2c58ee1c ******/ %feature("compactdefaultargs") EnableQuickPart; %feature("autodoc", " Parameters @@ -181,8 +181,8 @@ Sets the flag for quick part of the document access: shapes are stored in the at ") EnableQuickPart; void EnableQuickPart(const Standard_Boolean theValue); - /****************** GetShapesLocations ******************/ - /**** md5 signature: 9cd92ab397d1145dc380f0edef6fc008 ****/ + /****** BinMNaming_NamedShapeDriver::GetShapesLocations ******/ + /****** md5 signature: 9cd92ab397d1145dc380f0edef6fc008 ******/ %feature("compactdefaultargs") GetShapesLocations; %feature("autodoc", "Return ------- @@ -194,8 +194,8 @@ Get the shapes locations. ") GetShapesLocations; BinTools_LocationSet & GetShapesLocations(); - /****************** IsQuickPart ******************/ - /**** md5 signature: 1b93209c8c5b5efc320465bf731b4acb ****/ + /****** BinMNaming_NamedShapeDriver::IsQuickPart ******/ + /****** md5 signature: 1b93209c8c5b5efc320465bf731b4acb ******/ %feature("compactdefaultargs") IsQuickPart; %feature("autodoc", "Return ------- @@ -207,8 +207,8 @@ Returns true if quick part of the document access is enabled: shapes are stored ") IsQuickPart; Standard_Boolean IsQuickPart(); - /****************** IsWithNormals ******************/ - /**** md5 signature: 49f5baecd893691e08f163fb559d8b06 ****/ + /****** BinMNaming_NamedShapeDriver::IsWithNormals ******/ + /****** md5 signature: 49f5baecd893691e08f163fb559d8b06 ******/ %feature("compactdefaultargs") IsWithNormals; %feature("autodoc", "Return ------- @@ -220,8 +220,8 @@ Return true if shape should be stored with triangulation normals. ") IsWithNormals; Standard_Boolean IsWithNormals(); - /****************** IsWithTriangles ******************/ - /**** md5 signature: 2adacf1f8e5d4c926108b4db84751e9a ****/ + /****** BinMNaming_NamedShapeDriver::IsWithTriangles ******/ + /****** md5 signature: 2adacf1f8e5d4c926108b4db84751e9a ******/ %feature("compactdefaultargs") IsWithTriangles; %feature("autodoc", "Return ------- @@ -233,8 +233,8 @@ Return true if shape should be stored with triangles. ") IsWithTriangles; Standard_Boolean IsWithTriangles(); - /****************** NewEmpty ******************/ - /**** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ****/ + /****** BinMNaming_NamedShapeDriver::NewEmpty ******/ + /****** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -246,8 +246,8 @@ No available documentation. ") NewEmpty; opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ****/ + /****** BinMNaming_NamedShapeDriver::Paste ******/ + /****** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -266,8 +266,8 @@ No available documentation. ") Paste; Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: 67b435110398ae49c79b33db64bbe228 ****/ + /****** BinMNaming_NamedShapeDriver::Paste ******/ + /****** md5 signature: 67b435110398ae49c79b33db64bbe228 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -286,8 +286,8 @@ No available documentation. ") Paste; void Paste(const opencascade::handle & Source, BinObjMgt_Persistent & Target, BinObjMgt_SRelocationTable & RelocTable); - /****************** ReadShapeSection ******************/ - /**** md5 signature: 66ff232ed5a17a346bcdcc9d0bc2b9ce ****/ + /****** BinMNaming_NamedShapeDriver::ReadShapeSection ******/ + /****** md5 signature: 66ff232ed5a17a346bcdcc9d0bc2b9ce ******/ %feature("compactdefaultargs") ReadShapeSection; %feature("autodoc", " Parameters @@ -305,8 +305,8 @@ Input the shapes from bin document file. ") ReadShapeSection; void ReadShapeSection(std::istream & theIS, const Message_ProgressRange & therange = Message_ProgressRange()); - /****************** SetWithNormals ******************/ - /**** md5 signature: 2f7757cd59d0573f368c1b217c28b7f5 ****/ + /****** BinMNaming_NamedShapeDriver::SetWithNormals ******/ + /****** md5 signature: 2f7757cd59d0573f368c1b217c28b7f5 ******/ %feature("compactdefaultargs") SetWithNormals; %feature("autodoc", " Parameters @@ -323,8 +323,8 @@ Set whether to store triangulation with normals. ") SetWithNormals; void SetWithNormals(const Standard_Boolean isWithNormals); - /****************** SetWithTriangles ******************/ - /**** md5 signature: ac168a6a3fad4f9bcc30c8362a1cf0c6 ****/ + /****** BinMNaming_NamedShapeDriver::SetWithTriangles ******/ + /****** md5 signature: ac168a6a3fad4f9bcc30c8362a1cf0c6 ******/ %feature("compactdefaultargs") SetWithTriangles; %feature("autodoc", " Parameters @@ -341,8 +341,8 @@ Set whether to store triangulation. ") SetWithTriangles; void SetWithTriangles(const Standard_Boolean isWithTriangles); - /****************** ShapeSet ******************/ - /**** md5 signature: 9b5007d7513ff5d1f7e764f2202870c2 ****/ + /****** BinMNaming_NamedShapeDriver::ShapeSet ******/ + /****** md5 signature: 9b5007d7513ff5d1f7e764f2202870c2 ******/ %feature("compactdefaultargs") ShapeSet; %feature("autodoc", " Parameters @@ -359,8 +359,8 @@ Returns shape-set of the needed type. ") ShapeSet; BinTools_ShapeSetBase * ShapeSet(const Standard_Boolean theReading); - /****************** WriteShapeSection ******************/ - /**** md5 signature: 257dfbc6e624d2b0bb9fa1de0712dd47 ****/ + /****** BinMNaming_NamedShapeDriver::WriteShapeSection ******/ + /****** md5 signature: 257dfbc6e624d2b0bb9fa1de0712dd47 ******/ %feature("compactdefaultargs") WriteShapeSection; %feature("autodoc", " Parameters @@ -394,8 +394,8 @@ Output the shapes into bin document file. ********************************/ class BinMNaming_NamingDriver : public BinMDF_ADriver { public: - /****************** BinMNaming_NamingDriver ******************/ - /**** md5 signature: 66ad4fbcadd530e903526cb2d9a97e31 ****/ + /****** BinMNaming_NamingDriver::BinMNaming_NamingDriver ******/ + /****** md5 signature: 66ad4fbcadd530e903526cb2d9a97e31 ******/ %feature("compactdefaultargs") BinMNaming_NamingDriver; %feature("autodoc", " Parameters @@ -412,8 +412,8 @@ No available documentation. ") BinMNaming_NamingDriver; BinMNaming_NamingDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ****/ + /****** BinMNaming_NamingDriver::NewEmpty ******/ + /****** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -425,8 +425,8 @@ No available documentation. ") NewEmpty; opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ****/ + /****** BinMNaming_NamingDriver::Paste ******/ + /****** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -445,8 +445,8 @@ No available documentation. ") Paste; Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: 67b435110398ae49c79b33db64bbe228 ****/ + /****** BinMNaming_NamingDriver::Paste ******/ + /****** md5 signature: 67b435110398ae49c79b33db64bbe228 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BinMXCAFDoc.i b/src/SWIG_files/wrapper/BinMXCAFDoc.i index 39a42ac33..b23b54819 100644 --- a/src/SWIG_files/wrapper/BinMXCAFDoc.i +++ b/src/SWIG_files/wrapper/BinMXCAFDoc.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BINMXCAFDOCDOCSTRING "BinMXCAFDoc module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_binmxcafdoc.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_binmxcafdoc.html" %enddef %module (package="OCC.Core", docstring=BINMXCAFDOCDOCSTRING) BinMXCAFDoc @@ -113,8 +113,8 @@ from OCC.Core.Exception import * %rename(binmxcafdoc) BinMXCAFDoc; class BinMXCAFDoc { public: - /****************** AddDrivers ******************/ - /**** md5 signature: 670f5b656e14f5858b9a49416984ce6b ****/ + /****** BinMXCAFDoc::AddDrivers ******/ + /****** md5 signature: 670f5b656e14f5858b9a49416984ce6b ******/ %feature("compactdefaultargs") AddDrivers; %feature("autodoc", " Parameters @@ -146,8 +146,8 @@ Adds the attribute drivers to . ******************************************/ class BinMXCAFDoc_AssemblyItemRefDriver : public BinMDF_ADriver { public: - /****************** BinMXCAFDoc_AssemblyItemRefDriver ******************/ - /**** md5 signature: 41bbe9ac47dbd8c9a8c5be34e43c5995 ****/ + /****** BinMXCAFDoc_AssemblyItemRefDriver::BinMXCAFDoc_AssemblyItemRefDriver ******/ + /****** md5 signature: 41bbe9ac47dbd8c9a8c5be34e43c5995 ******/ %feature("compactdefaultargs") BinMXCAFDoc_AssemblyItemRefDriver; %feature("autodoc", " Parameters @@ -164,8 +164,8 @@ No available documentation. ") BinMXCAFDoc_AssemblyItemRefDriver; BinMXCAFDoc_AssemblyItemRefDriver(const opencascade::handle & theMsgDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ****/ + /****** BinMXCAFDoc_AssemblyItemRefDriver::NewEmpty ******/ + /****** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -177,8 +177,8 @@ No available documentation. ") NewEmpty; opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 285cacb62018270002b8621b74089e7a ****/ + /****** BinMXCAFDoc_AssemblyItemRefDriver::Paste ******/ + /****** md5 signature: 285cacb62018270002b8621b74089e7a ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -197,8 +197,8 @@ No available documentation. ") Paste; Standard_Boolean Paste(const BinObjMgt_Persistent & theSource, const opencascade::handle & theTarget, BinObjMgt_RRelocationTable & theRelocTable); - /****************** Paste ******************/ - /**** md5 signature: 2f4b9505f848ac23f775b8398b7db225 ****/ + /****** BinMXCAFDoc_AssemblyItemRefDriver::Paste ******/ + /****** md5 signature: 2f4b9505f848ac23f775b8398b7db225 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -233,8 +233,8 @@ No available documentation. ***********************************/ class BinMXCAFDoc_CentroidDriver : public BinMDF_ADriver { public: - /****************** BinMXCAFDoc_CentroidDriver ******************/ - /**** md5 signature: 7f6dfda4a911bacab4ac3376e420c38c ****/ + /****** BinMXCAFDoc_CentroidDriver::BinMXCAFDoc_CentroidDriver ******/ + /****** md5 signature: 7f6dfda4a911bacab4ac3376e420c38c ******/ %feature("compactdefaultargs") BinMXCAFDoc_CentroidDriver; %feature("autodoc", " Parameters @@ -251,8 +251,8 @@ No available documentation. ") BinMXCAFDoc_CentroidDriver; BinMXCAFDoc_CentroidDriver(const opencascade::handle & theMsgDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMXCAFDoc_CentroidDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -264,8 +264,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 1e52cd985850eb2ad199c368fa7282ef ****/ + /****** BinMXCAFDoc_CentroidDriver::Paste ******/ + /****** md5 signature: 1e52cd985850eb2ad199c368fa7282ef ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -284,8 +284,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & theSource, const opencascade::handle & theTarget, BinObjMgt_RRelocationTable & theRelocTable); - /****************** Paste ******************/ - /**** md5 signature: 0d6af46154b0454b42333f770b1e15f1 ****/ + /****** BinMXCAFDoc_CentroidDriver::Paste ******/ + /****** md5 signature: 0d6af46154b0454b42333f770b1e15f1 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -320,8 +320,8 @@ No available documentation. ********************************/ class BinMXCAFDoc_ColorDriver : public BinMDF_ADriver { public: - /****************** BinMXCAFDoc_ColorDriver ******************/ - /**** md5 signature: 776a78672d34f4fea15a100f8a191783 ****/ + /****** BinMXCAFDoc_ColorDriver::BinMXCAFDoc_ColorDriver ******/ + /****** md5 signature: 776a78672d34f4fea15a100f8a191783 ******/ %feature("compactdefaultargs") BinMXCAFDoc_ColorDriver; %feature("autodoc", " Parameters @@ -338,8 +338,8 @@ No available documentation. ") BinMXCAFDoc_ColorDriver; BinMXCAFDoc_ColorDriver(const opencascade::handle & theMsgDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMXCAFDoc_ColorDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -351,8 +351,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 1e52cd985850eb2ad199c368fa7282ef ****/ + /****** BinMXCAFDoc_ColorDriver::Paste ******/ + /****** md5 signature: 1e52cd985850eb2ad199c368fa7282ef ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -371,8 +371,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & theSource, const opencascade::handle & theTarget, BinObjMgt_RRelocationTable & theRelocTable); - /****************** Paste ******************/ - /**** md5 signature: 0d6af46154b0454b42333f770b1e15f1 ****/ + /****** BinMXCAFDoc_ColorDriver::Paste ******/ + /****** md5 signature: 0d6af46154b0454b42333f770b1e15f1 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -407,8 +407,8 @@ No available documentation. ********************************/ class BinMXCAFDoc_DatumDriver : public BinMDF_ADriver { public: - /****************** BinMXCAFDoc_DatumDriver ******************/ - /**** md5 signature: 3a457d4af9e83c0fea428480b0dccaf8 ****/ + /****** BinMXCAFDoc_DatumDriver::BinMXCAFDoc_DatumDriver ******/ + /****** md5 signature: 3a457d4af9e83c0fea428480b0dccaf8 ******/ %feature("compactdefaultargs") BinMXCAFDoc_DatumDriver; %feature("autodoc", " Parameters @@ -425,8 +425,8 @@ No available documentation. ") BinMXCAFDoc_DatumDriver; BinMXCAFDoc_DatumDriver(const opencascade::handle & theMsgDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMXCAFDoc_DatumDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -438,8 +438,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 1e52cd985850eb2ad199c368fa7282ef ****/ + /****** BinMXCAFDoc_DatumDriver::Paste ******/ + /****** md5 signature: 1e52cd985850eb2ad199c368fa7282ef ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -458,8 +458,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & theSource, const opencascade::handle & theTarget, BinObjMgt_RRelocationTable & theRelocTable); - /****************** Paste ******************/ - /**** md5 signature: 0d6af46154b0454b42333f770b1e15f1 ****/ + /****** BinMXCAFDoc_DatumDriver::Paste ******/ + /****** md5 signature: 0d6af46154b0454b42333f770b1e15f1 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -494,8 +494,8 @@ No available documentation. *********************************/ class BinMXCAFDoc_DimTolDriver : public BinMDF_ADriver { public: - /****************** BinMXCAFDoc_DimTolDriver ******************/ - /**** md5 signature: e50bbc4c96324938fb53a373af2f039e ****/ + /****** BinMXCAFDoc_DimTolDriver::BinMXCAFDoc_DimTolDriver ******/ + /****** md5 signature: e50bbc4c96324938fb53a373af2f039e ******/ %feature("compactdefaultargs") BinMXCAFDoc_DimTolDriver; %feature("autodoc", " Parameters @@ -512,8 +512,8 @@ No available documentation. ") BinMXCAFDoc_DimTolDriver; BinMXCAFDoc_DimTolDriver(const opencascade::handle & theMsgDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMXCAFDoc_DimTolDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -525,8 +525,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 1e52cd985850eb2ad199c368fa7282ef ****/ + /****** BinMXCAFDoc_DimTolDriver::Paste ******/ + /****** md5 signature: 1e52cd985850eb2ad199c368fa7282ef ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -545,8 +545,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & theSource, const opencascade::handle & theTarget, BinObjMgt_RRelocationTable & theRelocTable); - /****************** Paste ******************/ - /**** md5 signature: 0d6af46154b0454b42333f770b1e15f1 ****/ + /****** BinMXCAFDoc_DimTolDriver::Paste ******/ + /****** md5 signature: 0d6af46154b0454b42333f770b1e15f1 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -581,8 +581,8 @@ No available documentation. ************************************/ class BinMXCAFDoc_GraphNodeDriver : public BinMDF_ADriver { public: - /****************** BinMXCAFDoc_GraphNodeDriver ******************/ - /**** md5 signature: 5983a4056a87bd3fcb1057502f2b3712 ****/ + /****** BinMXCAFDoc_GraphNodeDriver::BinMXCAFDoc_GraphNodeDriver ******/ + /****** md5 signature: 5983a4056a87bd3fcb1057502f2b3712 ******/ %feature("compactdefaultargs") BinMXCAFDoc_GraphNodeDriver; %feature("autodoc", " Parameters @@ -599,8 +599,8 @@ No available documentation. ") BinMXCAFDoc_GraphNodeDriver; BinMXCAFDoc_GraphNodeDriver(const opencascade::handle & theMsgDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMXCAFDoc_GraphNodeDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -612,8 +612,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 1e52cd985850eb2ad199c368fa7282ef ****/ + /****** BinMXCAFDoc_GraphNodeDriver::Paste ******/ + /****** md5 signature: 1e52cd985850eb2ad199c368fa7282ef ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -632,8 +632,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & theSource, const opencascade::handle & theTarget, BinObjMgt_RRelocationTable & theRelocTable); - /****************** Paste ******************/ - /**** md5 signature: 0d6af46154b0454b42333f770b1e15f1 ****/ + /****** BinMXCAFDoc_GraphNodeDriver::Paste ******/ + /****** md5 signature: 0d6af46154b0454b42333f770b1e15f1 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -668,8 +668,8 @@ No available documentation. *************************************/ class BinMXCAFDoc_LengthUnitDriver : public BinMDF_ADriver { public: - /****************** BinMXCAFDoc_LengthUnitDriver ******************/ - /**** md5 signature: 84791bd884b758ab125885102aed1181 ****/ + /****** BinMXCAFDoc_LengthUnitDriver::BinMXCAFDoc_LengthUnitDriver ******/ + /****** md5 signature: 84791bd884b758ab125885102aed1181 ******/ %feature("compactdefaultargs") BinMXCAFDoc_LengthUnitDriver; %feature("autodoc", " Parameters @@ -686,8 +686,8 @@ No available documentation. ") BinMXCAFDoc_LengthUnitDriver; BinMXCAFDoc_LengthUnitDriver(const opencascade::handle & theMsgDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMXCAFDoc_LengthUnitDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -699,8 +699,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 1e52cd985850eb2ad199c368fa7282ef ****/ + /****** BinMXCAFDoc_LengthUnitDriver::Paste ******/ + /****** md5 signature: 1e52cd985850eb2ad199c368fa7282ef ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -719,8 +719,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & theSource, const opencascade::handle & theTarget, BinObjMgt_RRelocationTable & theRelocTable); - /****************** Paste ******************/ - /**** md5 signature: 0d6af46154b0454b42333f770b1e15f1 ****/ + /****** BinMXCAFDoc_LengthUnitDriver::Paste ******/ + /****** md5 signature: 0d6af46154b0454b42333f770b1e15f1 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -755,8 +755,8 @@ No available documentation. ***********************************/ class BinMXCAFDoc_LocationDriver : public BinMDF_ADriver { public: - /****************** BinMXCAFDoc_LocationDriver ******************/ - /**** md5 signature: 0f8052cdebe1cfbc19d49d0f30fc30fe ****/ + /****** BinMXCAFDoc_LocationDriver::BinMXCAFDoc_LocationDriver ******/ + /****** md5 signature: 0f8052cdebe1cfbc19d49d0f30fc30fe ******/ %feature("compactdefaultargs") BinMXCAFDoc_LocationDriver; %feature("autodoc", " Parameters @@ -773,8 +773,8 @@ No available documentation. ") BinMXCAFDoc_LocationDriver; BinMXCAFDoc_LocationDriver(const opencascade::handle & theMsgDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMXCAFDoc_LocationDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -786,8 +786,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 1e52cd985850eb2ad199c368fa7282ef ****/ + /****** BinMXCAFDoc_LocationDriver::Paste ******/ + /****** md5 signature: 1e52cd985850eb2ad199c368fa7282ef ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -806,8 +806,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & theSource, const opencascade::handle & theTarget, BinObjMgt_RRelocationTable & theRelocTable); - /****************** Paste ******************/ - /**** md5 signature: 0d6af46154b0454b42333f770b1e15f1 ****/ + /****** BinMXCAFDoc_LocationDriver::Paste ******/ + /****** md5 signature: 0d6af46154b0454b42333f770b1e15f1 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -826,8 +826,8 @@ No available documentation. ") Paste; virtual void Paste(const opencascade::handle & theSource, BinObjMgt_Persistent & theTarget, BinObjMgt_SRelocationTable & theRelocTable); - /****************** SetNSDriver ******************/ - /**** md5 signature: f3cb65b5e43b312739ef39e2d6ebc688 ****/ + /****** BinMXCAFDoc_LocationDriver::SetNSDriver ******/ + /****** md5 signature: f3cb65b5e43b312739ef39e2d6ebc688 ******/ %feature("compactdefaultargs") SetNSDriver; %feature("autodoc", " Parameters @@ -844,8 +844,8 @@ No available documentation. ") SetNSDriver; void SetNSDriver(const opencascade::handle & theNSDriver); - /****************** Translate ******************/ - /**** md5 signature: 894ea8006cf844ca094b6b68a5b6b96f ****/ + /****** BinMXCAFDoc_LocationDriver::Translate ******/ + /****** md5 signature: 894ea8006cf844ca094b6b68a5b6b96f ******/ %feature("compactdefaultargs") Translate; %feature("autodoc", " Parameters @@ -864,8 +864,8 @@ No available documentation. ") Translate; Standard_Boolean Translate(const BinObjMgt_Persistent & theSource, TopLoc_Location & theLoc, BinObjMgt_RRelocationTable & theMap); - /****************** Translate ******************/ - /**** md5 signature: 842635d22abf5c4afae88eb581060ba7 ****/ + /****** BinMXCAFDoc_LocationDriver::Translate ******/ + /****** md5 signature: 842635d22abf5c4afae88eb581060ba7 ******/ %feature("compactdefaultargs") Translate; %feature("autodoc", " Parameters @@ -900,8 +900,8 @@ Translate transient location to storable. ***********************************/ class BinMXCAFDoc_MaterialDriver : public BinMDF_ADriver { public: - /****************** BinMXCAFDoc_MaterialDriver ******************/ - /**** md5 signature: 13e6b9590f464710ec094948d31668bd ****/ + /****** BinMXCAFDoc_MaterialDriver::BinMXCAFDoc_MaterialDriver ******/ + /****** md5 signature: 13e6b9590f464710ec094948d31668bd ******/ %feature("compactdefaultargs") BinMXCAFDoc_MaterialDriver; %feature("autodoc", " Parameters @@ -918,8 +918,8 @@ No available documentation. ") BinMXCAFDoc_MaterialDriver; BinMXCAFDoc_MaterialDriver(const opencascade::handle & theMsgDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMXCAFDoc_MaterialDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -931,8 +931,8 @@ No available documentation. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 1e52cd985850eb2ad199c368fa7282ef ****/ + /****** BinMXCAFDoc_MaterialDriver::Paste ******/ + /****** md5 signature: 1e52cd985850eb2ad199c368fa7282ef ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -951,8 +951,8 @@ No available documentation. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & theSource, const opencascade::handle & theTarget, BinObjMgt_RRelocationTable & theRelocTable); - /****************** Paste ******************/ - /**** md5 signature: 0d6af46154b0454b42333f770b1e15f1 ****/ + /****** BinMXCAFDoc_MaterialDriver::Paste ******/ + /****** md5 signature: 0d6af46154b0454b42333f770b1e15f1 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -988,8 +988,8 @@ No available documentation. %nodefaultctor BinMXCAFDoc_NoteDriver; class BinMXCAFDoc_NoteDriver : public BinMDF_ADriver { public: - /****************** Paste ******************/ - /**** md5 signature: 285cacb62018270002b8621b74089e7a ****/ + /****** BinMXCAFDoc_NoteDriver::Paste ******/ + /****** md5 signature: 285cacb62018270002b8621b74089e7a ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1008,8 +1008,8 @@ No available documentation. ") Paste; Standard_Boolean Paste(const BinObjMgt_Persistent & theSource, const opencascade::handle & theTarget, BinObjMgt_RRelocationTable & theRelocTable); - /****************** Paste ******************/ - /**** md5 signature: 2f4b9505f848ac23f775b8398b7db225 ****/ + /****** BinMXCAFDoc_NoteDriver::Paste ******/ + /****** md5 signature: 2f4b9505f848ac23f775b8398b7db225 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1044,8 +1044,8 @@ No available documentation. **************************************/ class BinMXCAFDoc_VisMaterialDriver : public BinMDF_ADriver { public: - /****************** BinMXCAFDoc_VisMaterialDriver ******************/ - /**** md5 signature: 8f9b1580f27735dca06ac2d625223ed7 ****/ + /****** BinMXCAFDoc_VisMaterialDriver::BinMXCAFDoc_VisMaterialDriver ******/ + /****** md5 signature: 8f9b1580f27735dca06ac2d625223ed7 ******/ %feature("compactdefaultargs") BinMXCAFDoc_VisMaterialDriver; %feature("autodoc", " Parameters @@ -1062,8 +1062,8 @@ Main constructor. ") BinMXCAFDoc_VisMaterialDriver; BinMXCAFDoc_VisMaterialDriver(const opencascade::handle & theMsgDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMXCAFDoc_VisMaterialDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -1075,8 +1075,8 @@ Create new instance of xcafdoc_vismaterial. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 1e52cd985850eb2ad199c368fa7282ef ****/ + /****** BinMXCAFDoc_VisMaterialDriver::Paste ******/ + /****** md5 signature: 1e52cd985850eb2ad199c368fa7282ef ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1095,8 +1095,8 @@ Paste attribute from persistence into document. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & theSource, const opencascade::handle & theTarget, BinObjMgt_RRelocationTable & theRelocTable); - /****************** Paste ******************/ - /**** md5 signature: 0d6af46154b0454b42333f770b1e15f1 ****/ + /****** BinMXCAFDoc_VisMaterialDriver::Paste ******/ + /****** md5 signature: 0d6af46154b0454b42333f770b1e15f1 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1131,8 +1131,8 @@ Paste attribute from document into persistence. ******************************************/ class BinMXCAFDoc_VisMaterialToolDriver : public BinMDF_ADriver { public: - /****************** BinMXCAFDoc_VisMaterialToolDriver ******************/ - /**** md5 signature: 66d94924f14c0912ad999f034e603399 ****/ + /****** BinMXCAFDoc_VisMaterialToolDriver::BinMXCAFDoc_VisMaterialToolDriver ******/ + /****** md5 signature: 66d94924f14c0912ad999f034e603399 ******/ %feature("compactdefaultargs") BinMXCAFDoc_VisMaterialToolDriver; %feature("autodoc", " Parameters @@ -1149,8 +1149,8 @@ Main constructor. ") BinMXCAFDoc_VisMaterialToolDriver; BinMXCAFDoc_VisMaterialToolDriver(const opencascade::handle & theMsgDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: 8be17a4d2a4deeee198571712e76805e ****/ + /****** BinMXCAFDoc_VisMaterialToolDriver::NewEmpty ******/ + /****** md5 signature: 8be17a4d2a4deeee198571712e76805e ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -1162,8 +1162,8 @@ Create new instance of xcafdoc_vismaterialtool. ") NewEmpty; virtual opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 1e52cd985850eb2ad199c368fa7282ef ****/ + /****** BinMXCAFDoc_VisMaterialToolDriver::Paste ******/ + /****** md5 signature: 1e52cd985850eb2ad199c368fa7282ef ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1182,8 +1182,8 @@ Paste attribute from persistence into document. ") Paste; virtual Standard_Boolean Paste(const BinObjMgt_Persistent & theSource, const opencascade::handle & theTarget, BinObjMgt_RRelocationTable & theRelocTable); - /****************** Paste ******************/ - /**** md5 signature: 0d6af46154b0454b42333f770b1e15f1 ****/ + /****** BinMXCAFDoc_VisMaterialToolDriver::Paste ******/ + /****** md5 signature: 0d6af46154b0454b42333f770b1e15f1 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1218,8 +1218,8 @@ Paste attribute from document into persistence. **************************************/ class BinMXCAFDoc_NoteBinDataDriver : public BinMXCAFDoc_NoteDriver { public: - /****************** BinMXCAFDoc_NoteBinDataDriver ******************/ - /**** md5 signature: 5021f107f2799f194bbf37237eaacfcd ****/ + /****** BinMXCAFDoc_NoteBinDataDriver::BinMXCAFDoc_NoteBinDataDriver ******/ + /****** md5 signature: 5021f107f2799f194bbf37237eaacfcd ******/ %feature("compactdefaultargs") BinMXCAFDoc_NoteBinDataDriver; %feature("autodoc", " Parameters @@ -1236,8 +1236,8 @@ No available documentation. ") BinMXCAFDoc_NoteBinDataDriver; BinMXCAFDoc_NoteBinDataDriver(const opencascade::handle & theMsgDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ****/ + /****** BinMXCAFDoc_NoteBinDataDriver::NewEmpty ******/ + /****** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -1249,8 +1249,8 @@ No available documentation. ") NewEmpty; opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 285cacb62018270002b8621b74089e7a ****/ + /****** BinMXCAFDoc_NoteBinDataDriver::Paste ******/ + /****** md5 signature: 285cacb62018270002b8621b74089e7a ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1269,8 +1269,8 @@ No available documentation. ") Paste; Standard_Boolean Paste(const BinObjMgt_Persistent & theSource, const opencascade::handle & theTarget, BinObjMgt_RRelocationTable & theRelocTable); - /****************** Paste ******************/ - /**** md5 signature: 2f4b9505f848ac23f775b8398b7db225 ****/ + /****** BinMXCAFDoc_NoteBinDataDriver::Paste ******/ + /****** md5 signature: 2f4b9505f848ac23f775b8398b7db225 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1305,8 +1305,8 @@ No available documentation. **************************************/ class BinMXCAFDoc_NoteCommentDriver : public BinMXCAFDoc_NoteDriver { public: - /****************** BinMXCAFDoc_NoteCommentDriver ******************/ - /**** md5 signature: 6bf0f6df4f57711b23cdbb0cfe95f41c ****/ + /****** BinMXCAFDoc_NoteCommentDriver::BinMXCAFDoc_NoteCommentDriver ******/ + /****** md5 signature: 6bf0f6df4f57711b23cdbb0cfe95f41c ******/ %feature("compactdefaultargs") BinMXCAFDoc_NoteCommentDriver; %feature("autodoc", " Parameters @@ -1323,8 +1323,8 @@ No available documentation. ") BinMXCAFDoc_NoteCommentDriver; BinMXCAFDoc_NoteCommentDriver(const opencascade::handle & theMsgDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ****/ + /****** BinMXCAFDoc_NoteCommentDriver::NewEmpty ******/ + /****** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -1336,8 +1336,8 @@ No available documentation. ") NewEmpty; opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 285cacb62018270002b8621b74089e7a ****/ + /****** BinMXCAFDoc_NoteCommentDriver::Paste ******/ + /****** md5 signature: 285cacb62018270002b8621b74089e7a ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -1356,8 +1356,8 @@ No available documentation. ") Paste; Standard_Boolean Paste(const BinObjMgt_Persistent & theSource, const opencascade::handle & theTarget, BinObjMgt_RRelocationTable & theRelocTable); - /****************** Paste ******************/ - /**** md5 signature: 2f4b9505f848ac23f775b8398b7db225 ****/ + /****** BinMXCAFDoc_NoteCommentDriver::Paste ******/ + /****** md5 signature: 2f4b9505f848ac23f775b8398b7db225 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BinObjMgt.i b/src/SWIG_files/wrapper/BinObjMgt.i index 924221ba9..e389fa383 100644 --- a/src/SWIG_files/wrapper/BinObjMgt.i +++ b/src/SWIG_files/wrapper/BinObjMgt.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BINOBJMGTDOCSTRING "BinObjMgt module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_binobjmgt.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_binobjmgt.html" %enddef %module (package="OCC.Core", docstring=BINOBJMGTDOCSTRING) BinObjMgt @@ -95,8 +95,8 @@ typedef TColStd_IndexedMapOfTransient BinObjMgt_SRelocationTable; *****************************/ class BinObjMgt_Persistent { public: - /****************** BinObjMgt_Persistent ******************/ - /**** md5 signature: b925cd444b8c72d67ffe633341437671 ****/ + /****** BinObjMgt_Persistent::BinObjMgt_Persistent ******/ + /****** md5 signature: b925cd444b8c72d67ffe633341437671 ******/ %feature("compactdefaultargs") BinObjMgt_Persistent; %feature("autodoc", "Return ------- @@ -108,8 +108,8 @@ Empty constructor. ") BinObjMgt_Persistent; BinObjMgt_Persistent(); - /****************** Destroy ******************/ - /**** md5 signature: 73111f72f4ab0474eb2cfbd7e4af4e1a ****/ + /****** BinObjMgt_Persistent::Destroy ******/ + /****** md5 signature: 73111f72f4ab0474eb2cfbd7e4af4e1a ******/ %feature("compactdefaultargs") Destroy; %feature("autodoc", "Return ------- @@ -121,8 +121,8 @@ Frees the allocated memory; this object can be reused after call to init. ") Destroy; void Destroy(); - /****************** GetAsciiString ******************/ - /**** md5 signature: 82220a6a62466250ff21132a496ecb41 ****/ + /****** BinObjMgt_Persistent::GetAsciiString ******/ + /****** md5 signature: 82220a6a62466250ff21132a496ecb41 ******/ %feature("compactdefaultargs") GetAsciiString; %feature("autodoc", " Parameters @@ -139,8 +139,8 @@ No available documentation. ") GetAsciiString; const BinObjMgt_Persistent & GetAsciiString(TCollection_AsciiString & theValue); - /****************** GetBoolean ******************/ - /**** md5 signature: 017b44d2b1e1e364f2d0655ca1511d39 ****/ + /****** BinObjMgt_Persistent::GetBoolean ******/ + /****** md5 signature: 017b44d2b1e1e364f2d0655ca1511d39 ******/ %feature("compactdefaultargs") GetBoolean; %feature("autodoc", " Parameters @@ -156,8 +156,8 @@ No available documentation. ") GetBoolean; const BinObjMgt_Persistent & GetBoolean(Standard_Boolean &OutValue); - /****************** GetByte ******************/ - /**** md5 signature: 33f12c94796e4f97c4d8fcbf351c2ade ****/ + /****** BinObjMgt_Persistent::GetByte ******/ + /****** md5 signature: 33f12c94796e4f97c4d8fcbf351c2ade ******/ %feature("compactdefaultargs") GetByte; %feature("autodoc", " Parameters @@ -174,8 +174,8 @@ No available documentation. ") GetByte; const BinObjMgt_Persistent & GetByte(Standard_Byte & theValue); - /****************** GetByteArray ******************/ - /**** md5 signature: 256f305bf958185a4c71be137224d245 ****/ + /****** BinObjMgt_Persistent::GetByteArray ******/ + /****** md5 signature: 256f305bf958185a4c71be137224d245 ******/ %feature("compactdefaultargs") GetByteArray; %feature("autodoc", " Parameters @@ -193,8 +193,8 @@ Get c array of unsigned chars, thelength is the number of elements; thearray mus ") GetByteArray; const BinObjMgt_Persistent & GetByteArray(const BinObjMgt_PByte theArray, const Standard_Integer theLength); - /****************** GetCharArray ******************/ - /**** md5 signature: 79ca5122aff93a3a2c997f6f7be0e0c2 ****/ + /****** BinObjMgt_Persistent::GetCharArray ******/ + /****** md5 signature: 79ca5122aff93a3a2c997f6f7be0e0c2 ******/ %feature("compactdefaultargs") GetCharArray; %feature("autodoc", " Parameters @@ -212,8 +212,8 @@ Get c array of char, thelength is the number of elements; thearray must point to ") GetCharArray; const BinObjMgt_Persistent & GetCharArray(const BinObjMgt_PChar theArray, const Standard_Integer theLength); - /****************** GetCharacter ******************/ - /**** md5 signature: 9a6951856c69a871acc236822716d8b0 ****/ + /****** BinObjMgt_Persistent::GetCharacter ******/ + /****** md5 signature: 9a6951856c69a871acc236822716d8b0 ******/ %feature("compactdefaultargs") GetCharacter; %feature("autodoc", " Parameters @@ -230,8 +230,8 @@ No available documentation. ") GetCharacter; const BinObjMgt_Persistent & GetCharacter(Standard_Character & theValue); - /****************** GetExtCharArray ******************/ - /**** md5 signature: f7860228db7636124e625995fbcfe9d6 ****/ + /****** BinObjMgt_Persistent::GetExtCharArray ******/ + /****** md5 signature: f7860228db7636124e625995fbcfe9d6 ******/ %feature("compactdefaultargs") GetExtCharArray; %feature("autodoc", " Parameters @@ -249,8 +249,8 @@ Get c array of extcharacter, thelength is the number of elements; thearray must ") GetExtCharArray; const BinObjMgt_Persistent & GetExtCharArray(const BinObjMgt_PExtChar theArray, const Standard_Integer theLength); - /****************** GetExtCharacter ******************/ - /**** md5 signature: 723f86ca19452bebb9f88b0b78d26826 ****/ + /****** BinObjMgt_Persistent::GetExtCharacter ******/ + /****** md5 signature: 723f86ca19452bebb9f88b0b78d26826 ******/ %feature("compactdefaultargs") GetExtCharacter; %feature("autodoc", " Parameters @@ -267,8 +267,8 @@ No available documentation. ") GetExtCharacter; const BinObjMgt_Persistent & GetExtCharacter(Standard_ExtCharacter & theValue); - /****************** GetExtendedString ******************/ - /**** md5 signature: 0049c3c4fd7726b41c30e549da54cd2b ****/ + /****** BinObjMgt_Persistent::GetExtendedString ******/ + /****** md5 signature: 0049c3c4fd7726b41c30e549da54cd2b ******/ %feature("compactdefaultargs") GetExtendedString; %feature("autodoc", " Parameters @@ -285,8 +285,8 @@ No available documentation. ") GetExtendedString; const BinObjMgt_Persistent & GetExtendedString(TCollection_ExtendedString & theValue); - /****************** GetGUID ******************/ - /**** md5 signature: eb1fec3cbfc0a0855014089ef38daae9 ****/ + /****** BinObjMgt_Persistent::GetGUID ******/ + /****** md5 signature: eb1fec3cbfc0a0855014089ef38daae9 ******/ %feature("compactdefaultargs") GetGUID; %feature("autodoc", " Parameters @@ -303,8 +303,8 @@ No available documentation. ") GetGUID; const BinObjMgt_Persistent & GetGUID(Standard_GUID & theValue); - /****************** GetIStream ******************/ - /**** md5 signature: b503fd0336753bf795bdd5b274984db6 ****/ + /****** BinObjMgt_Persistent::GetIStream ******/ + /****** md5 signature: b503fd0336753bf795bdd5b274984db6 ******/ %feature("compactdefaultargs") GetIStream; %feature("autodoc", "Return ------- @@ -316,8 +316,8 @@ Gets the stream for and enables direct reading. ") GetIStream; Standard_IStream * GetIStream(); - /****************** GetIntArray ******************/ - /**** md5 signature: 7c90fd62cbabd6cccece0887a773ce65 ****/ + /****** BinObjMgt_Persistent::GetIntArray ******/ + /****** md5 signature: 7c90fd62cbabd6cccece0887a773ce65 ******/ %feature("compactdefaultargs") GetIntArray; %feature("autodoc", " Parameters @@ -335,8 +335,8 @@ Get c array of int, thelength is the number of elements; thearray must point to ") GetIntArray; const BinObjMgt_Persistent & GetIntArray(const BinObjMgt_PInteger theArray, const Standard_Integer theLength); - /****************** GetInteger ******************/ - /**** md5 signature: a24d12c1aaeb5ed2ff5fd12501e0463f ****/ + /****** BinObjMgt_Persistent::GetInteger ******/ + /****** md5 signature: a24d12c1aaeb5ed2ff5fd12501e0463f ******/ %feature("compactdefaultargs") GetInteger; %feature("autodoc", " Parameters @@ -352,8 +352,8 @@ No available documentation. ") GetInteger; const BinObjMgt_Persistent & GetInteger(Standard_Integer &OutValue); - /****************** GetLabel ******************/ - /**** md5 signature: 6c1f51afade11fd797510d21a1757b06 ****/ + /****** BinObjMgt_Persistent::GetLabel ******/ + /****** md5 signature: 6c1f51afade11fd797510d21a1757b06 ******/ %feature("compactdefaultargs") GetLabel; %feature("autodoc", " Parameters @@ -371,8 +371,8 @@ No available documentation. ") GetLabel; const BinObjMgt_Persistent & GetLabel(const opencascade::handle & theDS, TDF_Label & theValue); - /****************** GetOStream ******************/ - /**** md5 signature: f315d3540d9d32727fa0b4bd7ff6fca0 ****/ + /****** BinObjMgt_Persistent::GetOStream ******/ + /****** md5 signature: f315d3540d9d32727fa0b4bd7ff6fca0 ******/ %feature("compactdefaultargs") GetOStream; %feature("autodoc", "Return ------- @@ -384,8 +384,8 @@ Gets the stream for and enables direct writing. ") GetOStream; Standard_OStream * GetOStream(); - /****************** GetReal ******************/ - /**** md5 signature: 65cbf27e92c882f039241743224d67d7 ****/ + /****** BinObjMgt_Persistent::GetReal ******/ + /****** md5 signature: 65cbf27e92c882f039241743224d67d7 ******/ %feature("compactdefaultargs") GetReal; %feature("autodoc", " Parameters @@ -401,8 +401,8 @@ No available documentation. ") GetReal; const BinObjMgt_Persistent & GetReal(Standard_Real &OutValue); - /****************** GetRealArray ******************/ - /**** md5 signature: 26dacf06164cc6d5d556170a1402de80 ****/ + /****** BinObjMgt_Persistent::GetRealArray ******/ + /****** md5 signature: 26dacf06164cc6d5d556170a1402de80 ******/ %feature("compactdefaultargs") GetRealArray; %feature("autodoc", " Parameters @@ -420,8 +420,8 @@ Get c array of double, thelength is the number of elements; thearray must point ") GetRealArray; const BinObjMgt_Persistent & GetRealArray(const BinObjMgt_PReal theArray, const Standard_Integer theLength); - /****************** GetShortReal ******************/ - /**** md5 signature: bd5d8caa6f982b61af2fc041ca40021e ****/ + /****** BinObjMgt_Persistent::GetShortReal ******/ + /****** md5 signature: bd5d8caa6f982b61af2fc041ca40021e ******/ %feature("compactdefaultargs") GetShortReal; %feature("autodoc", " Parameters @@ -437,8 +437,8 @@ No available documentation. ") GetShortReal; const BinObjMgt_Persistent & GetShortReal(Standard_ShortReal &OutValue); - /****************** GetShortRealArray ******************/ - /**** md5 signature: 241f5c28d908b020dc86c79662d7f205 ****/ + /****** BinObjMgt_Persistent::GetShortRealArray ******/ + /****** md5 signature: 241f5c28d908b020dc86c79662d7f205 ******/ %feature("compactdefaultargs") GetShortRealArray; %feature("autodoc", " Parameters @@ -456,8 +456,8 @@ Get c array of float, thelength is the number of elements; thearray must point t ") GetShortRealArray; const BinObjMgt_Persistent & GetShortRealArray(const BinObjMgt_PShortReal theArray, const Standard_Integer theLength); - /****************** Id ******************/ - /**** md5 signature: bad178b94960474569631e20c0ad1e69 ****/ + /****** BinObjMgt_Persistent::Id ******/ + /****** md5 signature: bad178b94960474569631e20c0ad1e69 ******/ %feature("compactdefaultargs") Id; %feature("autodoc", "Return ------- @@ -469,8 +469,8 @@ Returns the id of the object. ") Id; Standard_Integer Id(); - /****************** Init ******************/ - /**** md5 signature: 0de93ef32c53d091768788dca0e281fd ****/ + /****** BinObjMgt_Persistent::Init ******/ + /****** md5 signature: 0de93ef32c53d091768788dca0e281fd ******/ %feature("compactdefaultargs") Init; %feature("autodoc", "Return ------- @@ -482,8 +482,8 @@ Initializes me to reuse again. ") Init; void Init(); - /****************** IsDirect ******************/ - /**** md5 signature: b04590ab3394fe8ab96053fa1809efb5 ****/ + /****** BinObjMgt_Persistent::IsDirect ******/ + /****** md5 signature: b04590ab3394fe8ab96053fa1809efb5 ******/ %feature("compactdefaultargs") IsDirect; %feature("autodoc", "Return ------- @@ -495,8 +495,8 @@ Returns true if after this record a direct writing to the stream is performed. ") IsDirect; Standard_Boolean IsDirect(); - /****************** IsError ******************/ - /**** md5 signature: c52b85ee17e423925f2cd97bf6879614 ****/ + /****** BinObjMgt_Persistent::IsError ******/ + /****** md5 signature: c52b85ee17e423925f2cd97bf6879614 ******/ %feature("compactdefaultargs") IsError; %feature("autodoc", "Return ------- @@ -508,8 +508,8 @@ Indicates an error after get methods or setposition. ") IsError; Standard_Boolean IsError(); - /****************** IsOK ******************/ - /**** md5 signature: 8d4161ba0f81558df16789ba26c120df ****/ + /****** BinObjMgt_Persistent::IsOK ******/ + /****** md5 signature: 8d4161ba0f81558df16789ba26c120df ******/ %feature("compactdefaultargs") IsOK; %feature("autodoc", "Return ------- @@ -521,8 +521,8 @@ Indicates a good state after get methods or setposition. ") IsOK; Standard_Boolean IsOK(); - /****************** Length ******************/ - /**** md5 signature: 58bd40380acccb2733bfbd37bf3cbb11 ****/ + /****** BinObjMgt_Persistent::Length ******/ + /****** md5 signature: 58bd40380acccb2733bfbd37bf3cbb11 ******/ %feature("compactdefaultargs") Length; %feature("autodoc", "Return ------- @@ -534,8 +534,8 @@ Returns the length of data. ") Length; Standard_Integer Length(); - /****************** Position ******************/ - /**** md5 signature: 69c461acfbfd763a2ac7352bf69b5a98 ****/ + /****** BinObjMgt_Persistent::Position ******/ + /****** md5 signature: 69c461acfbfd763a2ac7352bf69b5a98 ******/ %feature("compactdefaultargs") Position; %feature("autodoc", "Return ------- @@ -547,8 +547,8 @@ Tells the current position for get/put. ") Position; Standard_Integer Position(); - /****************** PutAsciiString ******************/ - /**** md5 signature: b82776b3ea812baa2246aaec57fef89a ****/ + /****** BinObjMgt_Persistent::PutAsciiString ******/ + /****** md5 signature: b82776b3ea812baa2246aaec57fef89a ******/ %feature("compactdefaultargs") PutAsciiString; %feature("autodoc", " Parameters @@ -565,8 +565,8 @@ Offset in output buffer is word-aligned. ") PutAsciiString; BinObjMgt_Persistent & PutAsciiString(TCollection_AsciiString theValue); - /****************** PutBoolean ******************/ - /**** md5 signature: 0bedf2debedf8187cd7303777159cfb0 ****/ + /****** BinObjMgt_Persistent::PutBoolean ******/ + /****** md5 signature: 0bedf2debedf8187cd7303777159cfb0 ******/ %feature("compactdefaultargs") PutBoolean; %feature("autodoc", " Parameters @@ -583,8 +583,8 @@ No available documentation. ") PutBoolean; BinObjMgt_Persistent & PutBoolean(const Standard_Boolean theValue); - /****************** PutByte ******************/ - /**** md5 signature: a7ffb9565fc1746b445d2e1e6fe80a76 ****/ + /****** BinObjMgt_Persistent::PutByte ******/ + /****** md5 signature: a7ffb9565fc1746b445d2e1e6fe80a76 ******/ %feature("compactdefaultargs") PutByte; %feature("autodoc", " Parameters @@ -601,8 +601,8 @@ No available documentation. ") PutByte; BinObjMgt_Persistent & PutByte(const Standard_Byte theValue); - /****************** PutByteArray ******************/ - /**** md5 signature: b839761b42376dd50808d1e1b2178287 ****/ + /****** BinObjMgt_Persistent::PutByteArray ******/ + /****** md5 signature: b839761b42376dd50808d1e1b2178287 ******/ %feature("compactdefaultargs") PutByteArray; %feature("autodoc", " Parameters @@ -620,8 +620,8 @@ Put c array of unsigned chars, thelength is the number of elements. ") PutByteArray; BinObjMgt_Persistent & PutByteArray(const BinObjMgt_PByte theArray, const Standard_Integer theLength); - /****************** PutCString ******************/ - /**** md5 signature: 2c95420c567573daa6c5f49e89a10026 ****/ + /****** BinObjMgt_Persistent::PutCString ******/ + /****** md5 signature: 2c95420c567573daa6c5f49e89a10026 ******/ %feature("compactdefaultargs") PutCString; %feature("autodoc", " Parameters @@ -638,8 +638,8 @@ Offset in output buffer is not aligned. ") PutCString; BinObjMgt_Persistent & PutCString(Standard_CString theValue); - /****************** PutCharArray ******************/ - /**** md5 signature: 8048f0bf82735a8f2bf8b9ba58226a06 ****/ + /****** BinObjMgt_Persistent::PutCharArray ******/ + /****** md5 signature: 8048f0bf82735a8f2bf8b9ba58226a06 ******/ %feature("compactdefaultargs") PutCharArray; %feature("autodoc", " Parameters @@ -657,8 +657,8 @@ Put c array of char, thelength is the number of elements. ") PutCharArray; BinObjMgt_Persistent & PutCharArray(const BinObjMgt_PChar theArray, const Standard_Integer theLength); - /****************** PutCharacter ******************/ - /**** md5 signature: 4249bad50a8d96095d2a8dc346f17b1e ****/ + /****** BinObjMgt_Persistent::PutCharacter ******/ + /****** md5 signature: 4249bad50a8d96095d2a8dc346f17b1e ******/ %feature("compactdefaultargs") PutCharacter; %feature("autodoc", " Parameters @@ -675,8 +675,8 @@ No available documentation. ") PutCharacter; BinObjMgt_Persistent & PutCharacter(const Standard_Character theValue); - /****************** PutExtCharArray ******************/ - /**** md5 signature: e3d31877a31030af37baa10fa90842de ****/ + /****** BinObjMgt_Persistent::PutExtCharArray ******/ + /****** md5 signature: e3d31877a31030af37baa10fa90842de ******/ %feature("compactdefaultargs") PutExtCharArray; %feature("autodoc", " Parameters @@ -694,8 +694,8 @@ Put c array of extcharacter, thelength is the number of elements. ") PutExtCharArray; BinObjMgt_Persistent & PutExtCharArray(const BinObjMgt_PExtChar theArray, const Standard_Integer theLength); - /****************** PutExtCharacter ******************/ - /**** md5 signature: bc0233ab11e956a117ba5e36c37438d8 ****/ + /****** BinObjMgt_Persistent::PutExtCharacter ******/ + /****** md5 signature: bc0233ab11e956a117ba5e36c37438d8 ******/ %feature("compactdefaultargs") PutExtCharacter; %feature("autodoc", " Parameters @@ -712,8 +712,8 @@ No available documentation. ") PutExtCharacter; BinObjMgt_Persistent & PutExtCharacter(const Standard_ExtCharacter theValue); - /****************** PutExtendedString ******************/ - /**** md5 signature: 23edf3a9eab8036e38f9dcdd343911fd ****/ + /****** BinObjMgt_Persistent::PutExtendedString ******/ + /****** md5 signature: 23edf3a9eab8036e38f9dcdd343911fd ******/ %feature("compactdefaultargs") PutExtendedString; %feature("autodoc", " Parameters @@ -730,8 +730,8 @@ Offset in output buffer is word-aligned. ") PutExtendedString; BinObjMgt_Persistent & PutExtendedString(TCollection_ExtendedString theValue); - /****************** PutGUID ******************/ - /**** md5 signature: edc522528f33629d369a8c0ba78bee3d ****/ + /****** BinObjMgt_Persistent::PutGUID ******/ + /****** md5 signature: edc522528f33629d369a8c0ba78bee3d ******/ %feature("compactdefaultargs") PutGUID; %feature("autodoc", " Parameters @@ -748,8 +748,8 @@ No available documentation. ") PutGUID; BinObjMgt_Persistent & PutGUID(const Standard_GUID & theValue); - /****************** PutIntArray ******************/ - /**** md5 signature: b6dc63543094b91b8d7b79c5b8bc10c3 ****/ + /****** BinObjMgt_Persistent::PutIntArray ******/ + /****** md5 signature: b6dc63543094b91b8d7b79c5b8bc10c3 ******/ %feature("compactdefaultargs") PutIntArray; %feature("autodoc", " Parameters @@ -767,8 +767,8 @@ Put c array of int, thelength is the number of elements. ") PutIntArray; BinObjMgt_Persistent & PutIntArray(const BinObjMgt_PInteger theArray, const Standard_Integer theLength); - /****************** PutInteger ******************/ - /**** md5 signature: ed6106c58bb494bb7c63451256d4bd3f ****/ + /****** BinObjMgt_Persistent::PutInteger ******/ + /****** md5 signature: ed6106c58bb494bb7c63451256d4bd3f ******/ %feature("compactdefaultargs") PutInteger; %feature("autodoc", " Parameters @@ -785,8 +785,8 @@ No available documentation. ") PutInteger; BinObjMgt_Persistent & PutInteger(const Standard_Integer theValue); - /****************** PutLabel ******************/ - /**** md5 signature: 517ef015d653478deb80807e77fe2dfd ****/ + /****** BinObjMgt_Persistent::PutLabel ******/ + /****** md5 signature: 517ef015d653478deb80807e77fe2dfd ******/ %feature("compactdefaultargs") PutLabel; %feature("autodoc", " Parameters @@ -803,8 +803,8 @@ No available documentation. ") PutLabel; BinObjMgt_Persistent & PutLabel(const TDF_Label & theValue); - /****************** PutReal ******************/ - /**** md5 signature: e94f1ed0ccbd7da7f57a44413aafc780 ****/ + /****** BinObjMgt_Persistent::PutReal ******/ + /****** md5 signature: e94f1ed0ccbd7da7f57a44413aafc780 ******/ %feature("compactdefaultargs") PutReal; %feature("autodoc", " Parameters @@ -821,8 +821,8 @@ No available documentation. ") PutReal; BinObjMgt_Persistent & PutReal(const Standard_Real theValue); - /****************** PutRealArray ******************/ - /**** md5 signature: 27b88a13da1818a4872989462343d5ad ****/ + /****** BinObjMgt_Persistent::PutRealArray ******/ + /****** md5 signature: 27b88a13da1818a4872989462343d5ad ******/ %feature("compactdefaultargs") PutRealArray; %feature("autodoc", " Parameters @@ -840,8 +840,8 @@ Put c array of double, thelength is the number of elements. ") PutRealArray; BinObjMgt_Persistent & PutRealArray(const BinObjMgt_PReal theArray, const Standard_Integer theLength); - /****************** PutShortReal ******************/ - /**** md5 signature: 244084883945501ba96226d9b877943a ****/ + /****** BinObjMgt_Persistent::PutShortReal ******/ + /****** md5 signature: 244084883945501ba96226d9b877943a ******/ %feature("compactdefaultargs") PutShortReal; %feature("autodoc", " Parameters @@ -858,8 +858,8 @@ No available documentation. ") PutShortReal; BinObjMgt_Persistent & PutShortReal(const Standard_ShortReal theValue); - /****************** PutShortRealArray ******************/ - /**** md5 signature: bce365f2560da9a3752d6a28e6242c91 ****/ + /****** BinObjMgt_Persistent::PutShortRealArray ******/ + /****** md5 signature: bce365f2560da9a3752d6a28e6242c91 ******/ %feature("compactdefaultargs") PutShortRealArray; %feature("autodoc", " Parameters @@ -877,8 +877,8 @@ Put c array of float, thelength is the number of elements. ") PutShortRealArray; BinObjMgt_Persistent & PutShortRealArray(const BinObjMgt_PShortReal theArray, const Standard_Integer theLength); - /****************** Read ******************/ - /**** md5 signature: 703e11a3fb46f18575a45a43966aa937 ****/ + /****** BinObjMgt_Persistent::Read ******/ + /****** md5 signature: 703e11a3fb46f18575a45a43966aa937 ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -895,8 +895,8 @@ Retrieves from the stream. inline standard_istream& operator>> (standard_ ") Read; Standard_IStream & Read(std::istream & theIS); - /****************** SetIStream ******************/ - /**** md5 signature: 5d0249291c7182c496c2994cfe459a5d ****/ + /****** BinObjMgt_Persistent::SetIStream ******/ + /****** md5 signature: 5d0249291c7182c496c2994cfe459a5d ******/ %feature("compactdefaultargs") SetIStream; %feature("autodoc", " Parameters @@ -913,8 +913,8 @@ Sets the stream for direct reading. ") SetIStream; void SetIStream(std::istream & theStream); - /****************** SetId ******************/ - /**** md5 signature: 3131e8337f46d2a085b133db913d7e12 ****/ + /****** BinObjMgt_Persistent::SetId ******/ + /****** md5 signature: 3131e8337f46d2a085b133db913d7e12 ******/ %feature("compactdefaultargs") SetId; %feature("autodoc", " Parameters @@ -931,8 +931,8 @@ Sets the id of the object. ") SetId; void SetId(const Standard_Integer theId); - /****************** SetOStream ******************/ - /**** md5 signature: 05ebcdbd2bdd64c5cb2e8dd9a9b0f378 ****/ + /****** BinObjMgt_Persistent::SetOStream ******/ + /****** md5 signature: 05ebcdbd2bdd64c5cb2e8dd9a9b0f378 ******/ %feature("compactdefaultargs") SetOStream; %feature("autodoc", " Parameters @@ -948,8 +948,8 @@ Sets the stream for direct writing. ") SetOStream; void SetOStream(std::ostream &OutValue); - /****************** SetPosition ******************/ - /**** md5 signature: 734a09cc1c2f91af755a362f6ac9dbb1 ****/ + /****** BinObjMgt_Persistent::SetPosition ******/ + /****** md5 signature: 734a09cc1c2f91af755a362f6ac9dbb1 ******/ %feature("compactdefaultargs") SetPosition; %feature("autodoc", " Parameters @@ -966,8 +966,8 @@ Sets the current position for get/put. resets an error state depending on the va ") SetPosition; Standard_Boolean SetPosition(const Standard_Integer thePos); - /****************** SetTypeId ******************/ - /**** md5 signature: cf3acfd7b9bba1b066cb667c1086d194 ****/ + /****** BinObjMgt_Persistent::SetTypeId ******/ + /****** md5 signature: cf3acfd7b9bba1b066cb667c1086d194 ******/ %feature("compactdefaultargs") SetTypeId; %feature("autodoc", " Parameters @@ -984,8 +984,8 @@ Sets the id of the type of the object. ") SetTypeId; void SetTypeId(const Standard_Integer theId); - /****************** StreamStart ******************/ - /**** md5 signature: e0cf8d7c6c5cab9a0df41cc72760de1f ****/ + /****** BinObjMgt_Persistent::StreamStart ******/ + /****** md5 signature: e0cf8d7c6c5cab9a0df41cc72760de1f ******/ %feature("compactdefaultargs") StreamStart; %feature("autodoc", "Return ------- @@ -997,8 +997,8 @@ Returns the start position of the direct writing in the stream. ") StreamStart; opencascade::handle StreamStart(); - /****************** Truncate ******************/ - /**** md5 signature: 5d042d2aea73ae47c14d2c42d285a228 ****/ + /****** BinObjMgt_Persistent::Truncate ******/ + /****** md5 signature: 5d042d2aea73ae47c14d2c42d285a228 ******/ %feature("compactdefaultargs") Truncate; %feature("autodoc", "Return ------- @@ -1010,8 +1010,8 @@ Truncates the buffer by current position, i.e. updates mysize. ") Truncate; void Truncate(); - /****************** TypeId ******************/ - /**** md5 signature: 52d3b80a7e4f56b46c3832619c011afe ****/ + /****** BinObjMgt_Persistent::TypeId ******/ + /****** md5 signature: 52d3b80a7e4f56b46c3832619c011afe ******/ %feature("compactdefaultargs") TypeId; %feature("autodoc", "Return ------- @@ -1023,8 +1023,8 @@ Returns the id of the type of the object. ") TypeId; Standard_Integer TypeId(); - /****************** Write ******************/ - /**** md5 signature: 84710283a2afe6c7aea0d3158b3cf2ea ****/ + /****** BinObjMgt_Persistent::Write ******/ + /****** md5 signature: 84710283a2afe6c7aea0d3158b3cf2ea ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -1058,8 +1058,8 @@ Stores to the stream. inline standard_ostream& operator<< (standard_ostre ***********************************/ class BinObjMgt_RRelocationTable : public TColStd_DataMapOfIntegerTransient { public: - /****************** Clear ******************/ - /**** md5 signature: 9769dd3f09530d7a423c9cced022263b ****/ + /****** BinObjMgt_RRelocationTable::Clear ******/ + /****** md5 signature: 9769dd3f09530d7a423c9cced022263b ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", " Parameters @@ -1076,8 +1076,8 @@ No available documentation. ") Clear; void Clear(const Standard_Boolean doReleaseMemory = Standard_True); - /****************** GetHeaderData ******************/ - /**** md5 signature: ce7373453eff48a8fcde9d5cb66f15d5 ****/ + /****** BinObjMgt_RRelocationTable::GetHeaderData ******/ + /****** md5 signature: ce7373453eff48a8fcde9d5cb66f15d5 ******/ %feature("compactdefaultargs") GetHeaderData; %feature("autodoc", "Return ------- @@ -1089,8 +1089,8 @@ Returns a handle to the header data of the file that is begin read. ") GetHeaderData; const opencascade::handle & GetHeaderData(); - /****************** SetHeaderData ******************/ - /**** md5 signature: 5eb1ccbc6d11f56956cabbed4c44e21c ****/ + /****** BinObjMgt_RRelocationTable::SetHeaderData ******/ + /****** md5 signature: 5eb1ccbc6d11f56956cabbed4c44e21c ******/ %feature("compactdefaultargs") SetHeaderData; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BinTObjDrivers.i b/src/SWIG_files/wrapper/BinTObjDrivers.i index b77a9b7fa..7c8ede4fa 100644 --- a/src/SWIG_files/wrapper/BinTObjDrivers.i +++ b/src/SWIG_files/wrapper/BinTObjDrivers.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BINTOBJDRIVERSDOCSTRING "BinTObjDrivers module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_bintobjdrivers.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_bintobjdrivers.html" %enddef %module (package="OCC.Core", docstring=BINTOBJDRIVERSDOCSTRING) BinTObjDrivers @@ -104,8 +104,8 @@ from OCC.Core.Exception import * %rename(bintobjdrivers) BinTObjDrivers; class BinTObjDrivers { public: - /****************** AddDrivers ******************/ - /**** md5 signature: 9b16e0c464e556dc0dccd242954afcdf ****/ + /****** BinTObjDrivers::AddDrivers ******/ + /****** md5 signature: 9b16e0c464e556dc0dccd242954afcdf ******/ %feature("compactdefaultargs") AddDrivers; %feature("autodoc", " Parameters @@ -123,8 +123,8 @@ No available documentation. ") AddDrivers; static void AddDrivers(const opencascade::handle & aDriverTable, const opencascade::handle & aMsgDrv); - /****************** DefineFormat ******************/ - /**** md5 signature: 2ae4ef4b935d04445595a5553ed3615b ****/ + /****** BinTObjDrivers::DefineFormat ******/ + /****** md5 signature: 2ae4ef4b935d04445595a5553ed3615b ******/ %feature("compactdefaultargs") DefineFormat; %feature("autodoc", " Parameters @@ -141,8 +141,8 @@ Defines format 'tobjbin' and registers its read and write drivers in the specifi ") DefineFormat; static void DefineFormat(const opencascade::handle & theApp); - /****************** Factory ******************/ - /**** md5 signature: 3da280e6bb218a5037c98dc98a4e3815 ****/ + /****** BinTObjDrivers::Factory ******/ + /****** md5 signature: 3da280e6bb218a5037c98dc98a4e3815 ******/ %feature("compactdefaultargs") Factory; %feature("autodoc", " Parameters @@ -173,8 +173,8 @@ No available documentation. ***********************************************/ class BinTObjDrivers_DocumentRetrievalDriver : public BinLDrivers_DocumentRetrievalDriver { public: - /****************** BinTObjDrivers_DocumentRetrievalDriver ******************/ - /**** md5 signature: 765ef87bf58d193c24b6923fc9d07ea9 ****/ + /****** BinTObjDrivers_DocumentRetrievalDriver::BinTObjDrivers_DocumentRetrievalDriver ******/ + /****** md5 signature: 765ef87bf58d193c24b6923fc9d07ea9 ******/ %feature("compactdefaultargs") BinTObjDrivers_DocumentRetrievalDriver; %feature("autodoc", "Return ------- @@ -186,8 +186,8 @@ No available documentation. ") BinTObjDrivers_DocumentRetrievalDriver; BinTObjDrivers_DocumentRetrievalDriver(); - /****************** AttributeDrivers ******************/ - /**** md5 signature: e2cb6a81c25c6d4dac001821709e8847 ****/ + /****** BinTObjDrivers_DocumentRetrievalDriver::AttributeDrivers ******/ + /****** md5 signature: e2cb6a81c25c6d4dac001821709e8847 ******/ %feature("compactdefaultargs") AttributeDrivers; %feature("autodoc", " Parameters @@ -220,8 +220,8 @@ No available documentation. *********************************************/ class BinTObjDrivers_DocumentStorageDriver : public BinLDrivers_DocumentStorageDriver { public: - /****************** BinTObjDrivers_DocumentStorageDriver ******************/ - /**** md5 signature: 95d30e1a9ad5d17ebb868ad2712e1818 ****/ + /****** BinTObjDrivers_DocumentStorageDriver::BinTObjDrivers_DocumentStorageDriver ******/ + /****** md5 signature: 95d30e1a9ad5d17ebb868ad2712e1818 ******/ %feature("compactdefaultargs") BinTObjDrivers_DocumentStorageDriver; %feature("autodoc", "Return ------- @@ -233,8 +233,8 @@ No available documentation. ") BinTObjDrivers_DocumentStorageDriver; BinTObjDrivers_DocumentStorageDriver(); - /****************** AttributeDrivers ******************/ - /**** md5 signature: e2cb6a81c25c6d4dac001821709e8847 ****/ + /****** BinTObjDrivers_DocumentStorageDriver::AttributeDrivers ******/ + /****** md5 signature: e2cb6a81c25c6d4dac001821709e8847 ******/ %feature("compactdefaultargs") AttributeDrivers; %feature("autodoc", " Parameters @@ -267,8 +267,8 @@ No available documentation. ********************************************/ class BinTObjDrivers_IntSparseArrayDriver : public BinMDF_ADriver { public: - /****************** BinTObjDrivers_IntSparseArrayDriver ******************/ - /**** md5 signature: 32e4fe1c219c40df1d8ec9da8ed230d3 ****/ + /****** BinTObjDrivers_IntSparseArrayDriver::BinTObjDrivers_IntSparseArrayDriver ******/ + /****** md5 signature: 32e4fe1c219c40df1d8ec9da8ed230d3 ******/ %feature("compactdefaultargs") BinTObjDrivers_IntSparseArrayDriver; %feature("autodoc", " Parameters @@ -285,8 +285,8 @@ No available documentation. ") BinTObjDrivers_IntSparseArrayDriver; BinTObjDrivers_IntSparseArrayDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ****/ + /****** BinTObjDrivers_IntSparseArrayDriver::NewEmpty ******/ + /****** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -298,8 +298,8 @@ No available documentation. ") NewEmpty; opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 285cacb62018270002b8621b74089e7a ****/ + /****** BinTObjDrivers_IntSparseArrayDriver::Paste ******/ + /****** md5 signature: 285cacb62018270002b8621b74089e7a ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -318,8 +318,8 @@ No available documentation. ") Paste; Standard_Boolean Paste(const BinObjMgt_Persistent & theSource, const opencascade::handle & theTarget, BinObjMgt_RRelocationTable & theRelocTable); - /****************** Paste ******************/ - /**** md5 signature: 2f4b9505f848ac23f775b8398b7db225 ****/ + /****** BinTObjDrivers_IntSparseArrayDriver::Paste ******/ + /****** md5 signature: 2f4b9505f848ac23f775b8398b7db225 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -354,8 +354,8 @@ No available documentation. ***********************************/ class BinTObjDrivers_ModelDriver : public BinMDF_ADriver { public: - /****************** BinTObjDrivers_ModelDriver ******************/ - /**** md5 signature: b5f810dd1a758e144925453eece549a1 ****/ + /****** BinTObjDrivers_ModelDriver::BinTObjDrivers_ModelDriver ******/ + /****** md5 signature: b5f810dd1a758e144925453eece549a1 ******/ %feature("compactdefaultargs") BinTObjDrivers_ModelDriver; %feature("autodoc", " Parameters @@ -372,8 +372,8 @@ No available documentation. ") BinTObjDrivers_ModelDriver; BinTObjDrivers_ModelDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ****/ + /****** BinTObjDrivers_ModelDriver::NewEmpty ******/ + /****** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -385,8 +385,8 @@ No available documentation. ") NewEmpty; opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ****/ + /****** BinTObjDrivers_ModelDriver::Paste ******/ + /****** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -405,8 +405,8 @@ No available documentation. ") Paste; Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: 67b435110398ae49c79b33db64bbe228 ****/ + /****** BinTObjDrivers_ModelDriver::Paste ******/ + /****** md5 signature: 67b435110398ae49c79b33db64bbe228 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -441,8 +441,8 @@ No available documentation. ************************************/ class BinTObjDrivers_ObjectDriver : public BinMDF_ADriver { public: - /****************** BinTObjDrivers_ObjectDriver ******************/ - /**** md5 signature: ad39b8d34394d3ceccd856d5658ce519 ****/ + /****** BinTObjDrivers_ObjectDriver::BinTObjDrivers_ObjectDriver ******/ + /****** md5 signature: ad39b8d34394d3ceccd856d5658ce519 ******/ %feature("compactdefaultargs") BinTObjDrivers_ObjectDriver; %feature("autodoc", " Parameters @@ -459,8 +459,8 @@ No available documentation. ") BinTObjDrivers_ObjectDriver; BinTObjDrivers_ObjectDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ****/ + /****** BinTObjDrivers_ObjectDriver::NewEmpty ******/ + /****** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -472,8 +472,8 @@ No available documentation. ") NewEmpty; opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ****/ + /****** BinTObjDrivers_ObjectDriver::Paste ******/ + /****** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -492,8 +492,8 @@ No available documentation. ") Paste; Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: 67b435110398ae49c79b33db64bbe228 ****/ + /****** BinTObjDrivers_ObjectDriver::Paste ******/ + /****** md5 signature: 67b435110398ae49c79b33db64bbe228 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -528,8 +528,8 @@ No available documentation. ***************************************/ class BinTObjDrivers_ReferenceDriver : public BinMDF_ADriver { public: - /****************** BinTObjDrivers_ReferenceDriver ******************/ - /**** md5 signature: 675d245cb5c543ae64df23cfd74f762f ****/ + /****** BinTObjDrivers_ReferenceDriver::BinTObjDrivers_ReferenceDriver ******/ + /****** md5 signature: 675d245cb5c543ae64df23cfd74f762f ******/ %feature("compactdefaultargs") BinTObjDrivers_ReferenceDriver; %feature("autodoc", " Parameters @@ -546,8 +546,8 @@ No available documentation. ") BinTObjDrivers_ReferenceDriver; BinTObjDrivers_ReferenceDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ****/ + /****** BinTObjDrivers_ReferenceDriver::NewEmpty ******/ + /****** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -559,8 +559,8 @@ No available documentation. ") NewEmpty; opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ****/ + /****** BinTObjDrivers_ReferenceDriver::Paste ******/ + /****** md5 signature: 3bca84cbb3164ee155cf7623ceb16244 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -579,8 +579,8 @@ No available documentation. ") Paste; Standard_Boolean Paste(const BinObjMgt_Persistent & Source, const opencascade::handle & Target, BinObjMgt_RRelocationTable & RelocTable); - /****************** Paste ******************/ - /**** md5 signature: 67b435110398ae49c79b33db64bbe228 ****/ + /****** BinTObjDrivers_ReferenceDriver::Paste ******/ + /****** md5 signature: 67b435110398ae49c79b33db64bbe228 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -615,8 +615,8 @@ No available documentation. *********************************/ class BinTObjDrivers_XYZDriver : public BinMDF_ADriver { public: - /****************** BinTObjDrivers_XYZDriver ******************/ - /**** md5 signature: e5c21a4c769f8058ac37fe7c08e97272 ****/ + /****** BinTObjDrivers_XYZDriver::BinTObjDrivers_XYZDriver ******/ + /****** md5 signature: e5c21a4c769f8058ac37fe7c08e97272 ******/ %feature("compactdefaultargs") BinTObjDrivers_XYZDriver; %feature("autodoc", " Parameters @@ -633,8 +633,8 @@ No available documentation. ") BinTObjDrivers_XYZDriver; BinTObjDrivers_XYZDriver(const opencascade::handle & theMessageDriver); - /****************** NewEmpty ******************/ - /**** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ****/ + /****** BinTObjDrivers_XYZDriver::NewEmpty ******/ + /****** md5 signature: c6d13c9ecc64c6c803b6e119e8216934 ******/ %feature("compactdefaultargs") NewEmpty; %feature("autodoc", "Return ------- @@ -646,8 +646,8 @@ No available documentation. ") NewEmpty; opencascade::handle NewEmpty(); - /****************** Paste ******************/ - /**** md5 signature: 285cacb62018270002b8621b74089e7a ****/ + /****** BinTObjDrivers_XYZDriver::Paste ******/ + /****** md5 signature: 285cacb62018270002b8621b74089e7a ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters @@ -666,8 +666,8 @@ No available documentation. ") Paste; Standard_Boolean Paste(const BinObjMgt_Persistent & theSource, const opencascade::handle & theTarget, BinObjMgt_RRelocationTable & theRelocTable); - /****************** Paste ******************/ - /**** md5 signature: 2f4b9505f848ac23f775b8398b7db225 ****/ + /****** BinTObjDrivers_XYZDriver::Paste ******/ + /****** md5 signature: 2f4b9505f848ac23f775b8398b7db225 ******/ %feature("compactdefaultargs") Paste; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BinTools.i b/src/SWIG_files/wrapper/BinTools.i index 68162a230..ee39f6d77 100644 --- a/src/SWIG_files/wrapper/BinTools.i +++ b/src/SWIG_files/wrapper/BinTools.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BINTOOLSDOCSTRING "BinTools module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_bintools.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_bintools.html" %enddef %module (package="OCC.Core", docstring=BINTOOLSDOCSTRING) BinTools @@ -194,8 +194,8 @@ typedef BinTools_LocationSet * BinTools_LocationSetPtr; %rename(bintools) BinTools; class BinTools { public: - /****************** GetBool ******************/ - /**** md5 signature: 790955f4f4ba6908f582aee44fb265dd ****/ + /****** BinTools::GetBool ******/ + /****** md5 signature: 790955f4f4ba6908f582aee44fb265dd ******/ %feature("compactdefaultargs") GetBool; %feature("autodoc", " Parameters @@ -212,8 +212,8 @@ No available documentation. ") GetBool; static Standard_IStream & GetBool(std::istream & IS, Standard_Boolean &OutValue); - /****************** GetExtChar ******************/ - /**** md5 signature: 123b0c66c3051e9feb92d9bfbbb192e6 ****/ + /****** BinTools::GetExtChar ******/ + /****** md5 signature: 123b0c66c3051e9feb92d9bfbbb192e6 ******/ %feature("compactdefaultargs") GetExtChar; %feature("autodoc", " Parameters @@ -231,8 +231,8 @@ No available documentation. ") GetExtChar; static Standard_IStream & GetExtChar(std::istream & IS, Standard_ExtCharacter & theValue); - /****************** GetInteger ******************/ - /**** md5 signature: 651f0a33e9e7502671bc3ef42df123eb ****/ + /****** BinTools::GetInteger ******/ + /****** md5 signature: 651f0a33e9e7502671bc3ef42df123eb ******/ %feature("compactdefaultargs") GetInteger; %feature("autodoc", " Parameters @@ -249,8 +249,8 @@ No available documentation. ") GetInteger; static Standard_IStream & GetInteger(std::istream & IS, Standard_Integer &OutValue); - /****************** GetReal ******************/ - /**** md5 signature: 38bb080ad1790d03931bd0c0aa629b48 ****/ + /****** BinTools::GetReal ******/ + /****** md5 signature: 38bb080ad1790d03931bd0c0aa629b48 ******/ %feature("compactdefaultargs") GetReal; %feature("autodoc", " Parameters @@ -267,8 +267,8 @@ No available documentation. ") GetReal; static Standard_IStream & GetReal(std::istream & IS, Standard_Real &OutValue); - /****************** GetShortReal ******************/ - /**** md5 signature: 825f85854ff0d067143065401770de68 ****/ + /****** BinTools::GetShortReal ******/ + /****** md5 signature: 825f85854ff0d067143065401770de68 ******/ %feature("compactdefaultargs") GetShortReal; %feature("autodoc", " Parameters @@ -285,8 +285,8 @@ No available documentation. ") GetShortReal; static Standard_IStream & GetShortReal(std::istream & IS, Standard_ShortReal &OutValue); - /****************** PutBool ******************/ - /**** md5 signature: 0afdd320ec549f8b3da2cea1881b2e46 ****/ + /****** BinTools::PutBool ******/ + /****** md5 signature: 0afdd320ec549f8b3da2cea1881b2e46 ******/ %feature("compactdefaultargs") PutBool; %feature("autodoc", " Parameters @@ -303,8 +303,8 @@ No available documentation. ") PutBool; static Standard_OStream & PutBool(std::ostream &OutValue, const Standard_Boolean theValue); - /****************** PutExtChar ******************/ - /**** md5 signature: 6f5f97a4001fb0c14520fc2b5b0888a6 ****/ + /****** BinTools::PutExtChar ******/ + /****** md5 signature: 6f5f97a4001fb0c14520fc2b5b0888a6 ******/ %feature("compactdefaultargs") PutExtChar; %feature("autodoc", " Parameters @@ -321,8 +321,8 @@ No available documentation. ") PutExtChar; static Standard_OStream & PutExtChar(std::ostream &OutValue, const Standard_ExtCharacter theValue); - /****************** PutInteger ******************/ - /**** md5 signature: 9e70411996f2de65be7008dfb8c34a78 ****/ + /****** BinTools::PutInteger ******/ + /****** md5 signature: 9e70411996f2de65be7008dfb8c34a78 ******/ %feature("compactdefaultargs") PutInteger; %feature("autodoc", " Parameters @@ -339,8 +339,8 @@ No available documentation. ") PutInteger; static Standard_OStream & PutInteger(std::ostream &OutValue, const Standard_Integer theValue); - /****************** PutReal ******************/ - /**** md5 signature: f7775506bd4618f420e375baa72bb4b9 ****/ + /****** BinTools::PutReal ******/ + /****** md5 signature: f7775506bd4618f420e375baa72bb4b9 ******/ %feature("compactdefaultargs") PutReal; %feature("autodoc", " Parameters @@ -357,8 +357,8 @@ No available documentation. ") PutReal; static Standard_OStream & PutReal(std::ostream &OutValue, const Standard_Real & theValue); - /****************** PutShortReal ******************/ - /**** md5 signature: 042b4eea8e6fbf4023588ae3edf72eee ****/ + /****** BinTools::PutShortReal ******/ + /****** md5 signature: 042b4eea8e6fbf4023588ae3edf72eee ******/ %feature("compactdefaultargs") PutShortReal; %feature("autodoc", " Parameters @@ -375,8 +375,8 @@ No available documentation. ") PutShortReal; static Standard_OStream & PutShortReal(std::ostream &OutValue, const Standard_ShortReal & theValue); - /****************** Read ******************/ - /**** md5 signature: f85bd54e020fe6af72c5aebd07ae8a7b ****/ + /****** BinTools::Read ******/ + /****** md5 signature: f85bd54e020fe6af72c5aebd07ae8a7b ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -395,8 +395,8 @@ Reads a shape from and returns it in . ") Read; static void Read(TopoDS_Shape & theShape, std::istream & theStream, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Read ******************/ - /**** md5 signature: 8f3081f8c29c84c71da9267be3a08fa6 ****/ + /****** BinTools::Read ******/ + /****** md5 signature: 8f3081f8c29c84c71da9267be3a08fa6 ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -415,8 +415,8 @@ Reads a shape from and returns it in . ") Read; static Standard_Boolean Read(TopoDS_Shape & theShape, Standard_CString theFile, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Write ******************/ - /**** md5 signature: 66b06396144ebe349cc1d4ffe3194b4c ****/ + /****** BinTools::Write ******/ + /****** md5 signature: 66b06396144ebe349cc1d4ffe3194b4c ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -434,8 +434,8 @@ Writes the shape to the stream in binary format bintools_formatversion_current. ") Write; static void Write(const TopoDS_Shape & theShape, std::ostream &OutValue, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Write ******************/ - /**** md5 signature: cfe16f73efe24f22e21aa7c502d4ad33 ****/ + /****** BinTools::Write ******/ + /****** md5 signature: cfe16f73efe24f22e21aa7c502d4ad33 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -456,8 +456,8 @@ Writes the shape to the stream in binary format of specified version. @param the ") Write; static void Write(const TopoDS_Shape & theShape, std::ostream &OutValue, const Standard_Boolean theWithTriangles, const Standard_Boolean theWithNormals, const BinTools_FormatVersion theVersion, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Write ******************/ - /**** md5 signature: 3881a3762eede8c671fff2911d095012 ****/ + /****** BinTools::Write ******/ + /****** md5 signature: 3881a3762eede8c671fff2911d095012 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -476,8 +476,8 @@ Writes the shape to the file in binary format bintools_formatversion_current. @p ") Write; static Standard_Boolean Write(const TopoDS_Shape & theShape, Standard_CString theFile, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Write ******************/ - /**** md5 signature: b26fc24f9c2e022ffc6d11aa96e8af41 ****/ + /****** BinTools::Write ******/ + /****** md5 signature: b26fc24f9c2e022ffc6d11aa96e8af41 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -513,8 +513,8 @@ Writes the shape to the file in binary format of specified version. @param thesh ****************************/ class BinTools_Curve2dSet { public: - /****************** BinTools_Curve2dSet ******************/ - /**** md5 signature: d70cda135813c59090ea3f4c48ff061f ****/ + /****** BinTools_Curve2dSet::BinTools_Curve2dSet ******/ + /****** md5 signature: d70cda135813c59090ea3f4c48ff061f ******/ %feature("compactdefaultargs") BinTools_Curve2dSet; %feature("autodoc", "Return ------- @@ -526,8 +526,8 @@ Returns an empty set of curves. ") BinTools_Curve2dSet; BinTools_Curve2dSet(); - /****************** Add ******************/ - /**** md5 signature: 947264273ed6b5c72eac1f308b1f2487 ****/ + /****** BinTools_Curve2dSet::Add ******/ + /****** md5 signature: 947264273ed6b5c72eac1f308b1f2487 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -544,8 +544,8 @@ Incorporate a new curve in the set and returns its index. ") Add; Standard_Integer Add(const opencascade::handle & C); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** BinTools_Curve2dSet::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -557,8 +557,8 @@ Clears the content of the set. ") Clear; void Clear(); - /****************** Curve2d ******************/ - /**** md5 signature: aca04b75893a006fca996d6d157d858d ****/ + /****** BinTools_Curve2dSet::Curve2d ******/ + /****** md5 signature: aca04b75893a006fca996d6d157d858d ******/ %feature("compactdefaultargs") Curve2d; %feature("autodoc", " Parameters @@ -575,8 +575,8 @@ Returns the curve of index . ") Curve2d; opencascade::handle Curve2d(const Standard_Integer I); - /****************** Index ******************/ - /**** md5 signature: e1559320ddf80ce0263d324c781a3407 ****/ + /****** BinTools_Curve2dSet::Index ******/ + /****** md5 signature: e1559320ddf80ce0263d324c781a3407 ******/ %feature("compactdefaultargs") Index; %feature("autodoc", " Parameters @@ -593,8 +593,8 @@ Returns the index of . ") Index; Standard_Integer Index(const opencascade::handle & C); - /****************** Read ******************/ - /**** md5 signature: 5f2f4456946ffa93c620ea243e0f1362 ****/ + /****** BinTools_Curve2dSet::Read ******/ + /****** md5 signature: 5f2f4456946ffa93c620ea243e0f1362 ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -612,8 +612,8 @@ Reads the content of me from the stream . me is first cleared. ") Read; void Read(std::istream & IS, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** ReadCurve2d ******************/ - /**** md5 signature: 8e76149c6e11b24fea6111aef9de38d2 ****/ + /****** BinTools_Curve2dSet::ReadCurve2d ******/ + /****** md5 signature: 8e76149c6e11b24fea6111aef9de38d2 ******/ %feature("compactdefaultargs") ReadCurve2d; %feature("autodoc", " Parameters @@ -631,8 +631,8 @@ Reads the curve from the stream. the curve is assumed to have been written with ") ReadCurve2d; static Standard_IStream & ReadCurve2d(std::istream & IS, opencascade::handle & C); - /****************** Write ******************/ - /**** md5 signature: d5d3cef6bd5a493e7490071dfb7ee4a9 ****/ + /****** BinTools_Curve2dSet::Write ******/ + /****** md5 signature: d5d3cef6bd5a493e7490071dfb7ee4a9 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -649,8 +649,8 @@ Writes the content of me on the stream in a format that can be read back by ") Write; void Write(std::ostream &OutValue, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** WriteCurve2d ******************/ - /**** md5 signature: fb004cea29fe8c8fbe520368a3fabd33 ****/ + /****** BinTools_Curve2dSet::WriteCurve2d ******/ + /****** md5 signature: fb004cea29fe8c8fbe520368a3fabd33 ******/ %feature("compactdefaultargs") WriteCurve2d; %feature("autodoc", " Parameters @@ -686,8 +686,8 @@ Dumps the curve on the binary stream, that can be read back. **************************/ class BinTools_CurveSet { public: - /****************** BinTools_CurveSet ******************/ - /**** md5 signature: 704e116f502121bb0a6c7a57e0f9f8ac ****/ + /****** BinTools_CurveSet::BinTools_CurveSet ******/ + /****** md5 signature: 704e116f502121bb0a6c7a57e0f9f8ac ******/ %feature("compactdefaultargs") BinTools_CurveSet; %feature("autodoc", "Return ------- @@ -699,8 +699,8 @@ Returns an empty set of curves. ") BinTools_CurveSet; BinTools_CurveSet(); - /****************** Add ******************/ - /**** md5 signature: 4548eacacd2a36c829559b37d6b57411 ****/ + /****** BinTools_CurveSet::Add ******/ + /****** md5 signature: 4548eacacd2a36c829559b37d6b57411 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -717,8 +717,8 @@ Incorporate a new curve in the set and returns its index. ") Add; Standard_Integer Add(const opencascade::handle & C); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** BinTools_CurveSet::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -730,8 +730,8 @@ Clears the content of the set. ") Clear; void Clear(); - /****************** Curve ******************/ - /**** md5 signature: 3509a433898cb7510761da8b37eedb3b ****/ + /****** BinTools_CurveSet::Curve ******/ + /****** md5 signature: 3509a433898cb7510761da8b37eedb3b ******/ %feature("compactdefaultargs") Curve; %feature("autodoc", " Parameters @@ -748,8 +748,8 @@ Returns the curve of index . ") Curve; opencascade::handle Curve(const Standard_Integer I); - /****************** Index ******************/ - /**** md5 signature: c53cbf4d0efdfb90843e67e9b32c5252 ****/ + /****** BinTools_CurveSet::Index ******/ + /****** md5 signature: c53cbf4d0efdfb90843e67e9b32c5252 ******/ %feature("compactdefaultargs") Index; %feature("autodoc", " Parameters @@ -766,8 +766,8 @@ Returns the index of . ") Index; Standard_Integer Index(const opencascade::handle & C); - /****************** Read ******************/ - /**** md5 signature: 5f2f4456946ffa93c620ea243e0f1362 ****/ + /****** BinTools_CurveSet::Read ******/ + /****** md5 signature: 5f2f4456946ffa93c620ea243e0f1362 ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -785,8 +785,8 @@ Reads the content of me from the stream . me is first cleared. ") Read; void Read(std::istream & IS, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** ReadCurve ******************/ - /**** md5 signature: dd391fb5d956a43e1ec7bd591b8d99ee ****/ + /****** BinTools_CurveSet::ReadCurve ******/ + /****** md5 signature: dd391fb5d956a43e1ec7bd591b8d99ee ******/ %feature("compactdefaultargs") ReadCurve; %feature("autodoc", " Parameters @@ -804,8 +804,8 @@ Reads the curve from the stream. the curve is assumed to have been written with ") ReadCurve; static Standard_IStream & ReadCurve(std::istream & IS, opencascade::handle & C); - /****************** Write ******************/ - /**** md5 signature: d5d3cef6bd5a493e7490071dfb7ee4a9 ****/ + /****** BinTools_CurveSet::Write ******/ + /****** md5 signature: d5d3cef6bd5a493e7490071dfb7ee4a9 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -822,8 +822,8 @@ Writes the content of me on the stream in a format that can be read back by ") Write; void Write(std::ostream &OutValue, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** WriteCurve ******************/ - /**** md5 signature: 0fd9a95014467f2918a41d1253d1067c ****/ + /****** BinTools_CurveSet::WriteCurve ******/ + /****** md5 signature: 0fd9a95014467f2918a41d1253d1067c ******/ %feature("compactdefaultargs") WriteCurve; %feature("autodoc", " Parameters @@ -858,8 +858,8 @@ Dumps the curve on the stream in binary format that can be read back. *****************************/ class BinTools_LocationSet { public: - /****************** BinTools_LocationSet ******************/ - /**** md5 signature: a107009cfc36014e539e33dde2461af7 ****/ + /****** BinTools_LocationSet::BinTools_LocationSet ******/ + /****** md5 signature: a107009cfc36014e539e33dde2461af7 ******/ %feature("compactdefaultargs") BinTools_LocationSet; %feature("autodoc", "Return ------- @@ -871,8 +871,8 @@ Returns an empty set of locations. ") BinTools_LocationSet; BinTools_LocationSet(); - /****************** Add ******************/ - /**** md5 signature: 6d3b7662960d74b2d6e66b85d46b59f7 ****/ + /****** BinTools_LocationSet::Add ******/ + /****** md5 signature: 6d3b7662960d74b2d6e66b85d46b59f7 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -889,8 +889,8 @@ Incorporate a new location in the set and returns its index. ") Add; Standard_Integer Add(const TopLoc_Location & L); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** BinTools_LocationSet::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -902,8 +902,8 @@ Clears the content of the set. ") Clear; void Clear(); - /****************** Index ******************/ - /**** md5 signature: fbb01960bb9b443c36d99f6e7b11f6c5 ****/ + /****** BinTools_LocationSet::Index ******/ + /****** md5 signature: fbb01960bb9b443c36d99f6e7b11f6c5 ******/ %feature("compactdefaultargs") Index; %feature("autodoc", " Parameters @@ -920,8 +920,8 @@ Returns the index of . ") Index; Standard_Integer Index(const TopLoc_Location & L); - /****************** Location ******************/ - /**** md5 signature: dc46e30cfdcf3a3cf13e5f29298f5163 ****/ + /****** BinTools_LocationSet::Location ******/ + /****** md5 signature: dc46e30cfdcf3a3cf13e5f29298f5163 ******/ %feature("compactdefaultargs") Location; %feature("autodoc", " Parameters @@ -938,8 +938,8 @@ Returns the location of index . ") Location; const TopLoc_Location & Location(const Standard_Integer I); - /****************** NbLocations ******************/ - /**** md5 signature: e6c134b8d9aa92e37488cc54961e88e4 ****/ + /****** BinTools_LocationSet::NbLocations ******/ + /****** md5 signature: e6c134b8d9aa92e37488cc54961e88e4 ******/ %feature("compactdefaultargs") NbLocations; %feature("autodoc", "Return ------- @@ -951,8 +951,8 @@ Returns number of locations. ") NbLocations; Standard_Integer NbLocations(); - /****************** Read ******************/ - /**** md5 signature: e0ade46168fbfd205cb072426bbabac5 ****/ + /****** BinTools_LocationSet::Read ******/ + /****** md5 signature: e0ade46168fbfd205cb072426bbabac5 ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -969,8 +969,8 @@ Reads the content of me from the stream . me is first cleared. ") Read; void Read(std::istream & IS); - /****************** Write ******************/ - /**** md5 signature: 26d5c57dbc383da9144a6151592feb6a ****/ + /****** BinTools_LocationSet::Write ******/ + /****** md5 signature: 26d5c57dbc383da9144a6151592feb6a ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -1003,8 +1003,8 @@ Writes the content of me on the stream in a format that can be read back by ******************************/ class BinTools_ShapeSetBase { public: - /****************** BinTools_ShapeSetBase ******************/ - /**** md5 signature: 5e43c3efb8ab1132c1c4608ac75a31b0 ****/ + /****** BinTools_ShapeSetBase::BinTools_ShapeSetBase ******/ + /****** md5 signature: 5e43c3efb8ab1132c1c4608ac75a31b0 ******/ %feature("compactdefaultargs") BinTools_ShapeSetBase; %feature("autodoc", "Return ------- @@ -1016,8 +1016,8 @@ A default constructor. ") BinTools_ShapeSetBase; BinTools_ShapeSetBase(); - /****************** Clear ******************/ - /**** md5 signature: ee228ed41450ea46d6b542478ce426ba ****/ + /****** BinTools_ShapeSetBase::Clear ******/ + /****** md5 signature: ee228ed41450ea46d6b542478ce426ba ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -1029,8 +1029,8 @@ Clears the content of the set. ") Clear; virtual void Clear(); - /****************** FormatNb ******************/ - /**** md5 signature: 279a4e17d42738d62d3eac08d8631329 ****/ + /****** BinTools_ShapeSetBase::FormatNb ******/ + /****** md5 signature: 279a4e17d42738d62d3eac08d8631329 ******/ %feature("compactdefaultargs") FormatNb; %feature("autodoc", "Return ------- @@ -1042,8 +1042,8 @@ Returns the bintools_formatversion. ") FormatNb; Standard_Integer FormatNb(); - /****************** IsWithNormals ******************/ - /**** md5 signature: 49f5baecd893691e08f163fb559d8b06 ****/ + /****** BinTools_ShapeSetBase::IsWithNormals ******/ + /****** md5 signature: 49f5baecd893691e08f163fb559d8b06 ******/ %feature("compactdefaultargs") IsWithNormals; %feature("autodoc", "Return ------- @@ -1055,8 +1055,8 @@ Return true if shape should be stored triangulation with normals. ") IsWithNormals; Standard_Boolean IsWithNormals(); - /****************** IsWithTriangles ******************/ - /**** md5 signature: 2adacf1f8e5d4c926108b4db84751e9a ****/ + /****** BinTools_ShapeSetBase::IsWithTriangles ******/ + /****** md5 signature: 2adacf1f8e5d4c926108b4db84751e9a ******/ %feature("compactdefaultargs") IsWithTriangles; %feature("autodoc", "Return ------- @@ -1068,8 +1068,8 @@ Return true if shape should be stored with triangles. ") IsWithTriangles; Standard_Boolean IsWithTriangles(); - /****************** Read ******************/ - /**** md5 signature: 15d2ae9c24a20dde18a097c304597a5b ****/ + /****** BinTools_ShapeSetBase::Read ******/ + /****** md5 signature: 15d2ae9c24a20dde18a097c304597a5b ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -1087,8 +1087,8 @@ Reads the content of me from the binary stream . me is first cleared. //! re ") Read; virtual void Read(std::istream &, const Message_ProgressRange & = Message_ProgressRange()); - /****************** Read ******************/ - /**** md5 signature: 9e512dab6bca19a0eddcb7c7167d7163 ****/ + /****** BinTools_ShapeSetBase::Read ******/ + /****** md5 signature: 9e512dab6bca19a0eddcb7c7167d7163 ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -1106,8 +1106,8 @@ An empty virtual method for redefinition in shape-reader. ") Read; virtual void Read(std::istream &, TopoDS_Shape &); - /****************** SetFormatNb ******************/ - /**** md5 signature: efa61c5f0aa586c699f53e1139cd95f9 ****/ + /****** BinTools_ShapeSetBase::SetFormatNb ******/ + /****** md5 signature: efa61c5f0aa586c699f53e1139cd95f9 ******/ %feature("compactdefaultargs") SetFormatNb; %feature("autodoc", " Parameters @@ -1124,8 +1124,8 @@ Sets the bintools_formatversion. ") SetFormatNb; void SetFormatNb(const Standard_Integer theFormatNb); - /****************** SetWithNormals ******************/ - /**** md5 signature: 9f03f91e56766f46bd17d99a089a0a21 ****/ + /****** BinTools_ShapeSetBase::SetWithNormals ******/ + /****** md5 signature: 9f03f91e56766f46bd17d99a089a0a21 ******/ %feature("compactdefaultargs") SetWithNormals; %feature("autodoc", " Parameters @@ -1142,8 +1142,8 @@ Define if shape will be stored triangulation with normals. ignored (always writt ") SetWithNormals; void SetWithNormals(const Standard_Boolean theWithNormals); - /****************** SetWithTriangles ******************/ - /**** md5 signature: 7b7f7b1dd0aaac0992d59e75b5df79e1 ****/ + /****** BinTools_ShapeSetBase::SetWithTriangles ******/ + /****** md5 signature: 7b7f7b1dd0aaac0992d59e75b5df79e1 ******/ %feature("compactdefaultargs") SetWithTriangles; %feature("autodoc", " Parameters @@ -1160,8 +1160,8 @@ Define if shape will be stored with triangles. ignored (always written) if face ") SetWithTriangles; void SetWithTriangles(const Standard_Boolean theWithTriangles); - /****************** Write ******************/ - /**** md5 signature: eae5f683a0f7fae7ee4a50d676192413 ****/ + /****** BinTools_ShapeSetBase::Write ******/ + /****** md5 signature: eae5f683a0f7fae7ee4a50d676192413 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -1178,8 +1178,8 @@ Writes the content of me on the stream in binary format that can be read ba ") Write; virtual void Write(std::ostream &OutValue, const Message_ProgressRange & = Message_ProgressRange()); - /****************** Write ******************/ - /**** md5 signature: 7494fb2ca2dcbcd64d26ab29a1473ab5 ****/ + /****** BinTools_ShapeSetBase::Write ******/ + /****** md5 signature: 7494fb2ca2dcbcd64d26ab29a1473ab5 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -1210,8 +1210,8 @@ Writes on the shape . writes the orientation, the index of the tshape an ****************************/ class BinTools_SurfaceSet { public: - /****************** BinTools_SurfaceSet ******************/ - /**** md5 signature: ea04fcb2e657ae6371aebb78e4178d8d ****/ + /****** BinTools_SurfaceSet::BinTools_SurfaceSet ******/ + /****** md5 signature: ea04fcb2e657ae6371aebb78e4178d8d ******/ %feature("compactdefaultargs") BinTools_SurfaceSet; %feature("autodoc", "Return ------- @@ -1223,8 +1223,8 @@ Returns an empty set of surfaces. ") BinTools_SurfaceSet; BinTools_SurfaceSet(); - /****************** Add ******************/ - /**** md5 signature: 6108c9acf8995214a7cb8b8e5a0b937c ****/ + /****** BinTools_SurfaceSet::Add ******/ + /****** md5 signature: 6108c9acf8995214a7cb8b8e5a0b937c ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1241,8 +1241,8 @@ Incorporate a new surface in the set and returns its index. ") Add; Standard_Integer Add(const opencascade::handle & S); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** BinTools_SurfaceSet::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -1254,8 +1254,8 @@ Clears the content of the set. ") Clear; void Clear(); - /****************** Index ******************/ - /**** md5 signature: 7fc50802d17ebd7c660284e6560fb7f6 ****/ + /****** BinTools_SurfaceSet::Index ******/ + /****** md5 signature: 7fc50802d17ebd7c660284e6560fb7f6 ******/ %feature("compactdefaultargs") Index; %feature("autodoc", " Parameters @@ -1272,8 +1272,8 @@ Returns the index of . ") Index; Standard_Integer Index(const opencascade::handle & S); - /****************** Read ******************/ - /**** md5 signature: 5f2f4456946ffa93c620ea243e0f1362 ****/ + /****** BinTools_SurfaceSet::Read ******/ + /****** md5 signature: 5f2f4456946ffa93c620ea243e0f1362 ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -1291,8 +1291,8 @@ Reads the content of me from the stream . me is first cleared. ") Read; void Read(std::istream & IS, const Message_ProgressRange & therange = Message_ProgressRange()); - /****************** ReadSurface ******************/ - /**** md5 signature: aadfa21c3ae4baf4c6a6f03347b99a89 ****/ + /****** BinTools_SurfaceSet::ReadSurface ******/ + /****** md5 signature: aadfa21c3ae4baf4c6a6f03347b99a89 ******/ %feature("compactdefaultargs") ReadSurface; %feature("autodoc", " Parameters @@ -1310,8 +1310,8 @@ Reads the surface from the stream. the surface is assumed to have been written w ") ReadSurface; static Standard_IStream & ReadSurface(std::istream & IS, opencascade::handle & S); - /****************** Surface ******************/ - /**** md5 signature: f08a9f2a886e0a3933ae15a38f9b8dda ****/ + /****** BinTools_SurfaceSet::Surface ******/ + /****** md5 signature: f08a9f2a886e0a3933ae15a38f9b8dda ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", " Parameters @@ -1328,8 +1328,8 @@ Returns the surface of index . ") Surface; opencascade::handle Surface(const Standard_Integer I); - /****************** Write ******************/ - /**** md5 signature: d5d3cef6bd5a493e7490071dfb7ee4a9 ****/ + /****** BinTools_SurfaceSet::Write ******/ + /****** md5 signature: d5d3cef6bd5a493e7490071dfb7ee4a9 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -1346,8 +1346,8 @@ Writes the content of me on the stream in binary format that can be read ba ") Write; void Write(std::ostream &OutValue, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** WriteSurface ******************/ - /**** md5 signature: 41c510c34876aa6bbad25b27f75b3a30 ****/ + /****** BinTools_SurfaceSet::WriteSurface ******/ + /****** md5 signature: 41c510c34876aa6bbad25b27f75b3a30 ******/ %feature("compactdefaultargs") WriteSurface; %feature("autodoc", " Parameters @@ -1379,8 +1379,8 @@ Dumps the surface on the stream in binary format that can be read back. *****************************/ class BinTools_ShapeReader : public BinTools_ShapeSetBase { public: - /****************** BinTools_ShapeReader ******************/ - /**** md5 signature: 0d4b9cf10eed36a00f9df0f855784c98 ****/ + /****** BinTools_ShapeReader::BinTools_ShapeReader ******/ + /****** md5 signature: 0d4b9cf10eed36a00f9df0f855784c98 ******/ %feature("compactdefaultargs") BinTools_ShapeReader; %feature("autodoc", "Return ------- @@ -1392,8 +1392,8 @@ Initializes a shape reader. ") BinTools_ShapeReader; BinTools_ShapeReader(); - /****************** Clear ******************/ - /**** md5 signature: f671931d03948860d0ead34afbe920aa ****/ + /****** BinTools_ShapeReader::Clear ******/ + /****** md5 signature: f671931d03948860d0ead34afbe920aa ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -1405,8 +1405,8 @@ Clears the content of the set. ") Clear; virtual void Clear(); - /****************** Read ******************/ - /**** md5 signature: 25227b6e5e5f66e65787f684a82d38bd ****/ + /****** BinTools_ShapeReader::Read ******/ + /****** md5 signature: 25227b6e5e5f66e65787f684a82d38bd ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -1424,8 +1424,8 @@ Reads the shape from stream using previously restored shapes and objects by refe ") Read; void Read(std::istream & theStream, TopoDS_Shape & theShape); - /****************** ReadLocation ******************/ - /**** md5 signature: bd5aa45e9ea119dbeec11eb219039ce0 ****/ + /****** BinTools_ShapeReader::ReadLocation ******/ + /****** md5 signature: bd5aa45e9ea119dbeec11eb219039ce0 ******/ %feature("compactdefaultargs") ReadLocation; %feature("autodoc", " Parameters @@ -1456,8 +1456,8 @@ Reads location from the stream. **************************/ class BinTools_ShapeSet : public BinTools_ShapeSetBase { public: - /****************** BinTools_ShapeSet ******************/ - /**** md5 signature: 00998afe0732062ff7e083d4a72a15a0 ****/ + /****** BinTools_ShapeSet::BinTools_ShapeSet ******/ + /****** md5 signature: 00998afe0732062ff7e083d4a72a15a0 ******/ %feature("compactdefaultargs") BinTools_ShapeSet; %feature("autodoc", "Return ------- @@ -1469,8 +1469,8 @@ Builds an empty shapeset. @param thewithtriangles [in] flag to write triangulati ") BinTools_ShapeSet; BinTools_ShapeSet(); - /****************** Add ******************/ - /**** md5 signature: 53c72d7ee288afd721c7b0a7e7296012 ****/ + /****** BinTools_ShapeSet::Add ******/ + /****** md5 signature: 53c72d7ee288afd721c7b0a7e7296012 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1487,8 +1487,8 @@ Stores and its sub-shape. returns the index of . the method addgeometry i ") Add; Standard_Integer Add(const TopoDS_Shape & S); - /****************** AddShape ******************/ - /**** md5 signature: c53353d34d3c27129aeecdacd6371580 ****/ + /****** BinTools_ShapeSet::AddShape ******/ + /****** md5 signature: c53353d34d3c27129aeecdacd6371580 ******/ %feature("compactdefaultargs") AddShape; %feature("autodoc", " Parameters @@ -1505,8 +1505,8 @@ Stores the shape . ") AddShape; virtual void AddShape(const TopoDS_Shape & S); - /****************** AddShapes ******************/ - /**** md5 signature: e51de0c8f9d77467626b59e64779aeff ****/ + /****** BinTools_ShapeSet::AddShapes ******/ + /****** md5 signature: e51de0c8f9d77467626b59e64779aeff ******/ %feature("compactdefaultargs") AddShapes; %feature("autodoc", " Parameters @@ -1524,8 +1524,8 @@ Inserts the shape in the shape . ") AddShapes; virtual void AddShapes(TopoDS_Shape & S1, const TopoDS_Shape & S2); - /****************** ChangeLocations ******************/ - /**** md5 signature: 647c90bf8c4ec50f4f4adabd19dff9ef ****/ + /****** BinTools_ShapeSet::ChangeLocations ******/ + /****** md5 signature: 647c90bf8c4ec50f4f4adabd19dff9ef ******/ %feature("compactdefaultargs") ChangeLocations; %feature("autodoc", "Return ------- @@ -1537,8 +1537,8 @@ No available documentation. ") ChangeLocations; BinTools_LocationSet & ChangeLocations(); - /****************** Clear ******************/ - /**** md5 signature: 1badd2d119b64dbdb177834e510c3af9 ****/ + /****** BinTools_ShapeSet::Clear ******/ + /****** md5 signature: 1badd2d119b64dbdb177834e510c3af9 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -1550,8 +1550,8 @@ Clears the content of the set. ") Clear; virtual void Clear(); - /****************** Index ******************/ - /**** md5 signature: 9e94bb6d7b4221be4165f8639cd27d92 ****/ + /****** BinTools_ShapeSet::Index ******/ + /****** md5 signature: 9e94bb6d7b4221be4165f8639cd27d92 ******/ %feature("compactdefaultargs") Index; %feature("autodoc", " Parameters @@ -1568,8 +1568,8 @@ Returns the index of . ") Index; Standard_Integer Index(const TopoDS_Shape & S); - /****************** Locations ******************/ - /**** md5 signature: 1891bed2b7331683f81d8635ed2a6f3e ****/ + /****** BinTools_ShapeSet::Locations ******/ + /****** md5 signature: 1891bed2b7331683f81d8635ed2a6f3e ******/ %feature("compactdefaultargs") Locations; %feature("autodoc", "Return ------- @@ -1581,8 +1581,8 @@ No available documentation. ") Locations; const BinTools_LocationSet & Locations(); - /****************** NbShapes ******************/ - /**** md5 signature: ea90d1514db96ad18becf0e04a33abf6 ****/ + /****** BinTools_ShapeSet::NbShapes ******/ + /****** md5 signature: ea90d1514db96ad18becf0e04a33abf6 ******/ %feature("compactdefaultargs") NbShapes; %feature("autodoc", "Return ------- @@ -1594,8 +1594,8 @@ Returns number of shapes read from file. ") NbShapes; Standard_Integer NbShapes(); - /****************** Read ******************/ - /**** md5 signature: 4b07273aaddc061dc208ad849f29a02f ****/ + /****** BinTools_ShapeSet::Read ******/ + /****** md5 signature: 4b07273aaddc061dc208ad849f29a02f ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -1613,8 +1613,8 @@ Reads the content of me from the binary stream . me is first cleared. //! re ") Read; virtual void Read(std::istream & IS, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Read ******************/ - /**** md5 signature: 9e512dab6bca19a0eddcb7c7167d7163 ****/ + /****** BinTools_ShapeSet::Read ******/ + /****** md5 signature: 9e512dab6bca19a0eddcb7c7167d7163 ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -1632,8 +1632,8 @@ An empty virtual method for redefinition in shape-reader. ") Read; virtual void Read(std::istream &, TopoDS_Shape &); - /****************** ReadFlagsAndSubs ******************/ - /**** md5 signature: ec793d841cfc55e44fec35b171f31924 ****/ + /****** BinTools_ShapeSet::ReadFlagsAndSubs ******/ + /****** md5 signature: ec793d841cfc55e44fec35b171f31924 ******/ %feature("compactdefaultargs") ReadFlagsAndSubs; %feature("autodoc", " Parameters @@ -1653,8 +1653,8 @@ Reads from a shape flags and sub-shapes and modifies s. ") ReadFlagsAndSubs; virtual void ReadFlagsAndSubs(TopoDS_Shape & S, const TopAbs_ShapeEnum T, std::istream & IS, const Standard_Integer NbShapes); - /****************** ReadGeometry ******************/ - /**** md5 signature: 8c49d87428ea54564c18dee1e735e34e ****/ + /****** BinTools_ShapeSet::ReadGeometry ******/ + /****** md5 signature: 8c49d87428ea54564c18dee1e735e34e ******/ %feature("compactdefaultargs") ReadGeometry; %feature("autodoc", " Parameters @@ -1672,8 +1672,8 @@ Reads the geometry of me from the stream . ") ReadGeometry; virtual void ReadGeometry(std::istream & IS, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** ReadPolygon3D ******************/ - /**** md5 signature: cd88a23b4835946311db7bfe884e93c4 ****/ + /****** BinTools_ShapeSet::ReadPolygon3D ******/ + /****** md5 signature: cd88a23b4835946311db7bfe884e93c4 ******/ %feature("compactdefaultargs") ReadPolygon3D; %feature("autodoc", " Parameters @@ -1691,8 +1691,8 @@ Reads the 3d polygons of me from the stream . ") ReadPolygon3D; void ReadPolygon3D(std::istream & IS, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** ReadPolygonOnTriangulation ******************/ - /**** md5 signature: c12c2902aa15103beb764ae29fc6d436 ****/ + /****** BinTools_ShapeSet::ReadPolygonOnTriangulation ******/ + /****** md5 signature: c12c2902aa15103beb764ae29fc6d436 ******/ %feature("compactdefaultargs") ReadPolygonOnTriangulation; %feature("autodoc", " Parameters @@ -1710,8 +1710,8 @@ Reads the polygons on triangulation of me from the stream . ") ReadPolygonOnTriangulation; void ReadPolygonOnTriangulation(std::istream & IS, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** ReadShape ******************/ - /**** md5 signature: d4336c38e7a97a10044a8170fcfa8cf4 ****/ + /****** BinTools_ShapeSet::ReadShape ******/ + /****** md5 signature: d4336c38e7a97a10044a8170fcfa8cf4 ******/ %feature("compactdefaultargs") ReadShape; %feature("autodoc", " Parameters @@ -1730,8 +1730,8 @@ Reads a shape of type from the stream and returns it in . ") ReadShape; virtual void ReadShape(const TopAbs_ShapeEnum T, std::istream & IS, TopoDS_Shape & S); - /****************** ReadSubs ******************/ - /**** md5 signature: 7a4bfadead50fe32d0ef7d49caa4db13 ****/ + /****** BinTools_ShapeSet::ReadSubs ******/ + /****** md5 signature: 7a4bfadead50fe32d0ef7d49caa4db13 ******/ %feature("compactdefaultargs") ReadSubs; %feature("autodoc", " Parameters @@ -1750,8 +1750,8 @@ Reads from a shape and returns it in s. is the number of tshapes ") ReadSubs; virtual void ReadSubs(TopoDS_Shape & S, std::istream & IS, const Standard_Integer NbShapes); - /****************** ReadTriangulation ******************/ - /**** md5 signature: 90589deefe94d4f2b164d615d1250312 ****/ + /****** BinTools_ShapeSet::ReadTriangulation ******/ + /****** md5 signature: 90589deefe94d4f2b164d615d1250312 ******/ %feature("compactdefaultargs") ReadTriangulation; %feature("autodoc", " Parameters @@ -1769,8 +1769,8 @@ Reads the triangulation of me from the stream . ") ReadTriangulation; void ReadTriangulation(std::istream & IS, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Shape ******************/ - /**** md5 signature: e70e8ec038f807ea515f2fa1e45089cf ****/ + /****** BinTools_ShapeSet::Shape ******/ + /****** md5 signature: e70e8ec038f807ea515f2fa1e45089cf ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", " Parameters @@ -1787,8 +1787,8 @@ Returns the sub-shape of index . ") Shape; const TopoDS_Shape Shape(const Standard_Integer I); - /****************** Write ******************/ - /**** md5 signature: 2090695479553866c37ac063a125c102 ****/ + /****** BinTools_ShapeSet::Write ******/ + /****** md5 signature: 2090695479553866c37ac063a125c102 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -1805,8 +1805,8 @@ Writes the content of me on the stream in binary format that can be read ba ") Write; virtual void Write(std::ostream &OutValue, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Write ******************/ - /**** md5 signature: abb0b72362303f9400b3c04f195f92e2 ****/ + /****** BinTools_ShapeSet::Write ******/ + /****** md5 signature: abb0b72362303f9400b3c04f195f92e2 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -1823,8 +1823,8 @@ Writes on the shape . writes the orientation, the index of the tshape an ") Write; virtual void Write(const TopoDS_Shape & S, std::ostream &OutValue); - /****************** WriteGeometry ******************/ - /**** md5 signature: 79b02143ea9e44b9406698e1fc0e4a65 ****/ + /****** BinTools_ShapeSet::WriteGeometry ******/ + /****** md5 signature: 79b02143ea9e44b9406698e1fc0e4a65 ******/ %feature("compactdefaultargs") WriteGeometry; %feature("autodoc", " Parameters @@ -1841,8 +1841,8 @@ Writes the geometry of me on the stream in a binary format that can be read ") WriteGeometry; virtual void WriteGeometry(std::ostream &OutValue, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** WritePolygon3D ******************/ - /**** md5 signature: f7a844b3f174b4082764be44bdeba902 ****/ + /****** BinTools_ShapeSet::WritePolygon3D ******/ + /****** md5 signature: f7a844b3f174b4082764be44bdeba902 ******/ %feature("compactdefaultargs") WritePolygon3D; %feature("autodoc", " Parameters @@ -1859,8 +1859,8 @@ Writes the 3d polygons on the stream in a format that can be read back by r ") WritePolygon3D; void WritePolygon3D(std::ostream &OutValue, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** WritePolygonOnTriangulation ******************/ - /**** md5 signature: 42a0cb0fd4ac67791ede7550f408592e ****/ + /****** BinTools_ShapeSet::WritePolygonOnTriangulation ******/ + /****** md5 signature: 42a0cb0fd4ac67791ede7550f408592e ******/ %feature("compactdefaultargs") WritePolygonOnTriangulation; %feature("autodoc", " Parameters @@ -1877,8 +1877,8 @@ Writes the polygons on triangulation on the stream in a format that can be ") WritePolygonOnTriangulation; void WritePolygonOnTriangulation(std::ostream &OutValue, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** WriteShape ******************/ - /**** md5 signature: 7c621dc2ecbfe0ab8412c61c3966b71b ****/ + /****** BinTools_ShapeSet::WriteShape ******/ + /****** md5 signature: 7c621dc2ecbfe0ab8412c61c3966b71b ******/ %feature("compactdefaultargs") WriteShape; %feature("autodoc", " Parameters @@ -1895,8 +1895,8 @@ Writes the shape on the stream in a binary format that can be read back ") WriteShape; virtual void WriteShape(const TopoDS_Shape & S, std::ostream &OutValue); - /****************** WriteTriangulation ******************/ - /**** md5 signature: 86067a9cabf0d76ba9ca5aaa8394eeef ****/ + /****** BinTools_ShapeSet::WriteTriangulation ******/ + /****** md5 signature: 86067a9cabf0d76ba9ca5aaa8394eeef ******/ %feature("compactdefaultargs") WriteTriangulation; %feature("autodoc", " Parameters @@ -1927,8 +1927,8 @@ Writes the triangulation on the stream in a format that can be read back by *****************************/ class BinTools_ShapeWriter : public BinTools_ShapeSetBase { public: - /****************** BinTools_ShapeWriter ******************/ - /**** md5 signature: c3fd1614740ecac6a5e3b29e2072d4db ****/ + /****** BinTools_ShapeWriter::BinTools_ShapeWriter ******/ + /****** md5 signature: c3fd1614740ecac6a5e3b29e2072d4db ******/ %feature("compactdefaultargs") BinTools_ShapeWriter; %feature("autodoc", "Return ------- @@ -1940,8 +1940,8 @@ Builds an empty shapeset. parameter is added for xml persiste ") BinTools_ShapeWriter; BinTools_ShapeWriter(); - /****************** Clear ******************/ - /**** md5 signature: f671931d03948860d0ead34afbe920aa ****/ + /****** BinTools_ShapeWriter::Clear ******/ + /****** md5 signature: f671931d03948860d0ead34afbe920aa ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -1953,8 +1953,8 @@ Clears the content of the set. ") Clear; virtual void Clear(); - /****************** Write ******************/ - /**** md5 signature: 59a6a83cf3635e21cdb1e1ebc16aadda ****/ + /****** BinTools_ShapeWriter::Write ******/ + /****** md5 signature: 59a6a83cf3635e21cdb1e1ebc16aadda ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -1971,8 +1971,8 @@ Writes the shape to stream using previously stored shapes and objects to refer t ") Write; virtual void Write(const TopoDS_Shape & theShape, std::ostream &OutValue); - /****************** WriteLocation ******************/ - /**** md5 signature: 650139b9f368324efb64446489116d9f ****/ + /****** BinTools_ShapeWriter::WriteLocation ******/ + /****** md5 signature: 650139b9f368324efb64446489116d9f ******/ %feature("compactdefaultargs") WriteLocation; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BinXCAFDrivers.i b/src/SWIG_files/wrapper/BinXCAFDrivers.i index 738d89265..ac324115d 100644 --- a/src/SWIG_files/wrapper/BinXCAFDrivers.i +++ b/src/SWIG_files/wrapper/BinXCAFDrivers.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BINXCAFDRIVERSDOCSTRING "BinXCAFDrivers module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_binxcafdrivers.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_binxcafdrivers.html" %enddef %module (package="OCC.Core", docstring=BINXCAFDRIVERSDOCSTRING) BinXCAFDrivers @@ -95,8 +95,8 @@ from OCC.Core.Exception import * %rename(binxcafdrivers) BinXCAFDrivers; class BinXCAFDrivers { public: - /****************** AttributeDrivers ******************/ - /**** md5 signature: a3052842141074dac4fa7742d5b7f7f0 ****/ + /****** BinXCAFDrivers::AttributeDrivers ******/ + /****** md5 signature: a3052842141074dac4fa7742d5b7f7f0 ******/ %feature("compactdefaultargs") AttributeDrivers; %feature("autodoc", " Parameters @@ -113,8 +113,8 @@ Creates the table of drivers of types supported. ") AttributeDrivers; static opencascade::handle AttributeDrivers(const opencascade::handle & MsgDrv); - /****************** DefineFormat ******************/ - /**** md5 signature: 2ae4ef4b935d04445595a5553ed3615b ****/ + /****** BinXCAFDrivers::DefineFormat ******/ + /****** md5 signature: 2ae4ef4b935d04445595a5553ed3615b ******/ %feature("compactdefaultargs") DefineFormat; %feature("autodoc", " Parameters @@ -131,8 +131,8 @@ Defines format 'binxcaf' and registers its read and write drivers in the specifi ") DefineFormat; static void DefineFormat(const opencascade::handle & theApp); - /****************** Factory ******************/ - /**** md5 signature: 9e70ed3bca71e988f9b9e86628ed8ed4 ****/ + /****** BinXCAFDrivers::Factory ******/ + /****** md5 signature: 9e70ed3bca71e988f9b9e86628ed8ed4 ******/ %feature("compactdefaultargs") Factory; %feature("autodoc", " Parameters @@ -163,8 +163,8 @@ No available documentation. ***********************************************/ class BinXCAFDrivers_DocumentRetrievalDriver : public BinDrivers_DocumentRetrievalDriver { public: - /****************** BinXCAFDrivers_DocumentRetrievalDriver ******************/ - /**** md5 signature: b996bd3d7ecdeda355b84bdba5452cbd ****/ + /****** BinXCAFDrivers_DocumentRetrievalDriver::BinXCAFDrivers_DocumentRetrievalDriver ******/ + /****** md5 signature: b996bd3d7ecdeda355b84bdba5452cbd ******/ %feature("compactdefaultargs") BinXCAFDrivers_DocumentRetrievalDriver; %feature("autodoc", "Return ------- @@ -176,8 +176,8 @@ Constructor. ") BinXCAFDrivers_DocumentRetrievalDriver; BinXCAFDrivers_DocumentRetrievalDriver(); - /****************** AttributeDrivers ******************/ - /**** md5 signature: e2cb6a81c25c6d4dac001821709e8847 ****/ + /****** BinXCAFDrivers_DocumentRetrievalDriver::AttributeDrivers ******/ + /****** md5 signature: e2cb6a81c25c6d4dac001821709e8847 ******/ %feature("compactdefaultargs") AttributeDrivers; %feature("autodoc", " Parameters @@ -210,8 +210,8 @@ No available documentation. *********************************************/ class BinXCAFDrivers_DocumentStorageDriver : public BinDrivers_DocumentStorageDriver { public: - /****************** BinXCAFDrivers_DocumentStorageDriver ******************/ - /**** md5 signature: df3e8bf2e0cf21923e17f35b3771a100 ****/ + /****** BinXCAFDrivers_DocumentStorageDriver::BinXCAFDrivers_DocumentStorageDriver ******/ + /****** md5 signature: df3e8bf2e0cf21923e17f35b3771a100 ******/ %feature("compactdefaultargs") BinXCAFDrivers_DocumentStorageDriver; %feature("autodoc", "Return ------- @@ -223,8 +223,8 @@ Constructor. ") BinXCAFDrivers_DocumentStorageDriver; BinXCAFDrivers_DocumentStorageDriver(); - /****************** AttributeDrivers ******************/ - /**** md5 signature: e2cb6a81c25c6d4dac001821709e8847 ****/ + /****** BinXCAFDrivers_DocumentStorageDriver::AttributeDrivers ******/ + /****** md5 signature: e2cb6a81c25c6d4dac001821709e8847 ******/ %feature("compactdefaultargs") AttributeDrivers; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/Bisector.i b/src/SWIG_files/wrapper/Bisector.i index 833e0911d..6198e14ff 100644 --- a/src/SWIG_files/wrapper/Bisector.i +++ b/src/SWIG_files/wrapper/Bisector.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BISECTORDOCSTRING "Bisector module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_bisector.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_bisector.html" %enddef %module (package="OCC.Core", docstring=BISECTORDOCSTRING) Bisector @@ -95,8 +95,8 @@ from OCC.Core.Exception import * %rename(bisector) Bisector; class Bisector { public: - /****************** IsConvex ******************/ - /**** md5 signature: 0ba18f6d8c98db36f20014c406307bc3 ****/ + /****** Bisector::IsConvex ******/ + /****** md5 signature: 0ba18f6d8c98db36f20014c406307bc3 ******/ %feature("compactdefaultargs") IsConvex; %feature("autodoc", " Parameters @@ -128,8 +128,8 @@ No available documentation. ***********************/ class Bisector_Bisec { public: - /****************** Bisector_Bisec ******************/ - /**** md5 signature: 9cb9077f468a33c835bd5374ce193801 ****/ + /****** Bisector_Bisec::Bisector_Bisec ******/ + /****** md5 signature: 9cb9077f468a33c835bd5374ce193801 ******/ %feature("compactdefaultargs") Bisector_Bisec; %feature("autodoc", "Return ------- @@ -141,8 +141,8 @@ No available documentation. ") Bisector_Bisec; Bisector_Bisec(); - /****************** ChangeValue ******************/ - /**** md5 signature: b532e9246935d32759ba1ebe2025fb71 ****/ + /****** Bisector_Bisec::ChangeValue ******/ + /****** md5 signature: b532e9246935d32759ba1ebe2025fb71 ******/ %feature("compactdefaultargs") ChangeValue; %feature("autodoc", "Return ------- @@ -154,8 +154,8 @@ Returns the curve of . ") ChangeValue; const opencascade::handle & ChangeValue(); - /****************** Perform ******************/ - /**** md5 signature: 984dc45433ffefb0966e208c47581a11 ****/ + /****** Bisector_Bisec::Perform ******/ + /****** md5 signature: 984dc45433ffefb0966e208c47581a11 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -180,8 +180,8 @@ Performs the bisecting line between the curves and . is tru ") Perform; void Perform(const opencascade::handle & Cu1, const opencascade::handle & Cu2, const gp_Pnt2d & P, const gp_Vec2d & V1, const gp_Vec2d & V2, const Standard_Real Sense, const GeomAbs_JoinType ajointype, const Standard_Real Tolerance, const Standard_Boolean oncurve = Standard_True); - /****************** Perform ******************/ - /**** md5 signature: db93a55a64615589c218fc350bd5fc5b ****/ + /****** Bisector_Bisec::Perform ******/ + /****** md5 signature: db93a55a64615589c218fc350bd5fc5b ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -205,8 +205,8 @@ Performs the bisecting line between the curve and the point . & Cu, const opencascade::handle & Pnt, const gp_Pnt2d & P, const gp_Vec2d & V1, const gp_Vec2d & V2, const Standard_Real Sense, const Standard_Real Tolerance, const Standard_Boolean oncurve = Standard_True); - /****************** Perform ******************/ - /**** md5 signature: 4bc1957ebd7bba22e94551f1f80cb51e ****/ + /****** Bisector_Bisec::Perform ******/ + /****** md5 signature: 4bc1957ebd7bba22e94551f1f80cb51e ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -230,8 +230,8 @@ Performs the bisecting line between the curve and the point . & Pnt, const opencascade::handle & Cu, const gp_Pnt2d & P, const gp_Vec2d & V1, const gp_Vec2d & V2, const Standard_Real Sense, const Standard_Real Tolerance, const Standard_Boolean oncurve = Standard_True); - /****************** Perform ******************/ - /**** md5 signature: b02fc98be2a333e2fd00a9e617d3c1ab ****/ + /****** Bisector_Bisec::Perform ******/ + /****** md5 signature: b02fc98be2a333e2fd00a9e617d3c1ab ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -255,8 +255,8 @@ Performs the bisecting line between the two points and . ") Perform; void Perform(const opencascade::handle & Pnt1, const opencascade::handle & Pnt2, const gp_Pnt2d & P, const gp_Vec2d & V1, const gp_Vec2d & V2, const Standard_Real Sense, const Standard_Real Tolerance = 0.0, const Standard_Boolean oncurve = Standard_True); - /****************** Value ******************/ - /**** md5 signature: c4acd9e5da9de118f672d33c6f39b3b0 ****/ + /****** Bisector_Bisec::Value ******/ + /****** md5 signature: c4acd9e5da9de118f672d33c6f39b3b0 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -283,8 +283,8 @@ Returns the curve of . %nodefaultctor Bisector_Curve; class Bisector_Curve : public Geom2d_Curve { public: - /****************** IntervalFirst ******************/ - /**** md5 signature: 2b1fbcfb5912e085014bff551ebfdd6c ****/ + /****** Bisector_Curve::IntervalFirst ******/ + /****** md5 signature: 2b1fbcfb5912e085014bff551ebfdd6c ******/ %feature("compactdefaultargs") IntervalFirst; %feature("autodoc", " Parameters @@ -301,8 +301,8 @@ Returns the first parameter of the current interval. ") IntervalFirst; virtual Standard_Real IntervalFirst(const Standard_Integer Index); - /****************** IntervalLast ******************/ - /**** md5 signature: 8f41fb764bd83da682ac5f5e51609adc ****/ + /****** Bisector_Curve::IntervalLast ******/ + /****** md5 signature: 8f41fb764bd83da682ac5f5e51609adc ******/ %feature("compactdefaultargs") IntervalLast; %feature("autodoc", " Parameters @@ -319,8 +319,8 @@ Returns the last parameter of the current interval. ") IntervalLast; virtual Standard_Real IntervalLast(const Standard_Integer Index); - /****************** IsExtendAtEnd ******************/ - /**** md5 signature: fa46f2fc7438d2dbbba638e12e43145a ****/ + /****** Bisector_Curve::IsExtendAtEnd ******/ + /****** md5 signature: fa46f2fc7438d2dbbba638e12e43145a ******/ %feature("compactdefaultargs") IsExtendAtEnd; %feature("autodoc", "Return ------- @@ -332,8 +332,8 @@ No available documentation. ") IsExtendAtEnd; virtual Standard_Boolean IsExtendAtEnd(); - /****************** IsExtendAtStart ******************/ - /**** md5 signature: ff6f36b43fadbce1828324c35610c78a ****/ + /****** Bisector_Curve::IsExtendAtStart ******/ + /****** md5 signature: ff6f36b43fadbce1828324c35610c78a ******/ %feature("compactdefaultargs") IsExtendAtStart; %feature("autodoc", "Return ------- @@ -345,8 +345,8 @@ No available documentation. ") IsExtendAtStart; virtual Standard_Boolean IsExtendAtStart(); - /****************** NbIntervals ******************/ - /**** md5 signature: 7f7a34c736f32157e63c4165aa9e9fa0 ****/ + /****** Bisector_Curve::NbIntervals ******/ + /****** md5 signature: 7f7a34c736f32157e63c4165aa9e9fa0 ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", "Return ------- @@ -358,8 +358,8 @@ If necessary, breaks the curve in intervals of continuity . and returns the ") NbIntervals; virtual Standard_Integer NbIntervals(); - /****************** Parameter ******************/ - /**** md5 signature: 5ff4365826d38eeef8b73494499ec484 ****/ + /****** Bisector_Curve::Parameter ******/ + /****** md5 signature: 5ff4365826d38eeef8b73494499ec484 ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", " Parameters @@ -392,8 +392,8 @@ No available documentation. ***************************/ class Bisector_FunctionH : public math_FunctionWithDerivative { public: - /****************** Bisector_FunctionH ******************/ - /**** md5 signature: 9768bfcb4f08a5680c6f7b3125feb59d ****/ + /****** Bisector_FunctionH::Bisector_FunctionH ******/ + /****** md5 signature: 9768bfcb4f08a5680c6f7b3125feb59d ******/ %feature("compactdefaultargs") Bisector_FunctionH; %feature("autodoc", " Parameters @@ -412,8 +412,8 @@ No available documentation. ") Bisector_FunctionH; Bisector_FunctionH(const opencascade::handle & C2, const gp_Pnt2d & P1, const gp_Vec2d & T1); - /****************** Derivative ******************/ - /**** md5 signature: 95e91729f1fb548d9a62f690b302c323 ****/ + /****** Bisector_FunctionH::Derivative ******/ + /****** md5 signature: 95e91729f1fb548d9a62f690b302c323 ******/ %feature("compactdefaultargs") Derivative; %feature("autodoc", " Parameters @@ -430,8 +430,8 @@ No available documentation. ") Derivative; Standard_Boolean Derivative(const Standard_Real X, Standard_Real &OutValue); - /****************** Value ******************/ - /**** md5 signature: 860bcc3da162e9f9f232f07518550196 ****/ + /****** Bisector_FunctionH::Value ******/ + /****** md5 signature: 860bcc3da162e9f9f232f07518550196 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -448,8 +448,8 @@ Computes the values of the functions for the variable . ") Value; Standard_Boolean Value(const Standard_Real X, Standard_Real &OutValue); - /****************** Values ******************/ - /**** md5 signature: fd71eb9a1a2bd16185bbb032c3d29afc ****/ + /****** Bisector_FunctionH::Values ******/ + /****** md5 signature: fd71eb9a1a2bd16185bbb032c3d29afc ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -481,8 +481,8 @@ Returns the values of the functions and the derivatives for the variable . *******************************/ class Bisector_FunctionInter : public math_FunctionWithDerivative { public: - /****************** Bisector_FunctionInter ******************/ - /**** md5 signature: 6cb5bcae490faa74fe83040a70aae23b ****/ + /****** Bisector_FunctionInter::Bisector_FunctionInter ******/ + /****** md5 signature: 6cb5bcae490faa74fe83040a70aae23b ******/ %feature("compactdefaultargs") Bisector_FunctionInter; %feature("autodoc", "Return ------- @@ -494,8 +494,8 @@ No available documentation. ") Bisector_FunctionInter; Bisector_FunctionInter(); - /****************** Bisector_FunctionInter ******************/ - /**** md5 signature: 3914f9fdc180fc44bfa3f3d1bdc966e6 ****/ + /****** Bisector_FunctionInter::Bisector_FunctionInter ******/ + /****** md5 signature: 3914f9fdc180fc44bfa3f3d1bdc966e6 ******/ %feature("compactdefaultargs") Bisector_FunctionInter; %feature("autodoc", " Parameters @@ -514,8 +514,8 @@ No available documentation. ") Bisector_FunctionInter; Bisector_FunctionInter(const opencascade::handle & C, const opencascade::handle & Bis1, const opencascade::handle & Bis2); - /****************** Derivative ******************/ - /**** md5 signature: 95e91729f1fb548d9a62f690b302c323 ****/ + /****** Bisector_FunctionInter::Derivative ******/ + /****** md5 signature: 95e91729f1fb548d9a62f690b302c323 ******/ %feature("compactdefaultargs") Derivative; %feature("autodoc", " Parameters @@ -532,8 +532,8 @@ No available documentation. ") Derivative; Standard_Boolean Derivative(const Standard_Real X, Standard_Real &OutValue); - /****************** Perform ******************/ - /**** md5 signature: 46929876b3eebbfdf786161335a7b2c9 ****/ + /****** Bisector_FunctionInter::Perform ******/ + /****** md5 signature: 46929876b3eebbfdf786161335a7b2c9 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -552,8 +552,8 @@ No available documentation. ") Perform; void Perform(const opencascade::handle & C, const opencascade::handle & Bis1, const opencascade::handle & Bis2); - /****************** Value ******************/ - /**** md5 signature: 860bcc3da162e9f9f232f07518550196 ****/ + /****** Bisector_FunctionInter::Value ******/ + /****** md5 signature: 860bcc3da162e9f9f232f07518550196 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -570,8 +570,8 @@ Computes the values of the functions for the variable . ") Value; Standard_Boolean Value(const Standard_Real X, Standard_Real &OutValue); - /****************** Values ******************/ - /**** md5 signature: fd71eb9a1a2bd16185bbb032c3d29afc ****/ + /****** Bisector_FunctionInter::Values ******/ + /****** md5 signature: fd71eb9a1a2bd16185bbb032c3d29afc ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -603,8 +603,8 @@ Returns the values of the functions and the derivatives for the variable . ***********************/ class Bisector_Inter : public IntRes2d_Intersection { public: - /****************** Bisector_Inter ******************/ - /**** md5 signature: d35f206bd98e4cab68d3cf46bfe8c7fd ****/ + /****** Bisector_Inter::Bisector_Inter ******/ + /****** md5 signature: d35f206bd98e4cab68d3cf46bfe8c7fd ******/ %feature("compactdefaultargs") Bisector_Inter; %feature("autodoc", "Return ------- @@ -616,8 +616,8 @@ No available documentation. ") Bisector_Inter; Bisector_Inter(); - /****************** Bisector_Inter ******************/ - /**** md5 signature: aaeff3d8c72f22edd80968b7ffad5355 ****/ + /****** Bisector_Inter::Bisector_Inter ******/ + /****** md5 signature: aaeff3d8c72f22edd80968b7ffad5355 ******/ %feature("compactdefaultargs") Bisector_Inter; %feature("autodoc", " Parameters @@ -640,8 +640,8 @@ Intersection between 2 curves. c1 separates the element a and b. c2 separates th ") Bisector_Inter; Bisector_Inter(const Bisector_Bisec & C1, const IntRes2d_Domain & D1, const Bisector_Bisec & C2, const IntRes2d_Domain & D2, const Standard_Real TolConf, const Standard_Real Tol, const Standard_Boolean ComunElement); - /****************** Perform ******************/ - /**** md5 signature: ddbb1551e9c7cf37d31b930e3241d583 ****/ + /****** Bisector_Inter::Perform ******/ + /****** md5 signature: ddbb1551e9c7cf37d31b930e3241d583 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -678,8 +678,8 @@ Intersection between 2 curves. c1 separates the element a and b. c2 separates th ****************************/ class Bisector_PointOnBis { public: - /****************** Bisector_PointOnBis ******************/ - /**** md5 signature: 63e7f02317b094a6fec372232b767eb4 ****/ + /****** Bisector_PointOnBis::Bisector_PointOnBis ******/ + /****** md5 signature: 63e7f02317b094a6fec372232b767eb4 ******/ %feature("compactdefaultargs") Bisector_PointOnBis; %feature("autodoc", "Return ------- @@ -691,8 +691,8 @@ No available documentation. ") Bisector_PointOnBis; Bisector_PointOnBis(); - /****************** Bisector_PointOnBis ******************/ - /**** md5 signature: d20ced0f8cc3f3d622bc9e548bd213fe ****/ + /****** Bisector_PointOnBis::Bisector_PointOnBis ******/ + /****** md5 signature: d20ced0f8cc3f3d622bc9e548bd213fe ******/ %feature("compactdefaultargs") Bisector_PointOnBis; %feature("autodoc", " Parameters @@ -713,8 +713,8 @@ No available documentation. ") Bisector_PointOnBis; Bisector_PointOnBis(const Standard_Real Param1, const Standard_Real Param2, const Standard_Real ParamBis, const Standard_Real Distance, const gp_Pnt2d & Point); - /****************** Distance ******************/ - /**** md5 signature: 3d8e58dc0e28ccf0d2f126234669088c ****/ + /****** Bisector_PointOnBis::Distance ******/ + /****** md5 signature: 3d8e58dc0e28ccf0d2f126234669088c ******/ %feature("compactdefaultargs") Distance; %feature("autodoc", " Parameters @@ -731,8 +731,8 @@ No available documentation. ") Distance; void Distance(const Standard_Real Distance); - /****************** Distance ******************/ - /**** md5 signature: c054352e1b604c83d759bc4ccf6c526d ****/ + /****** Bisector_PointOnBis::Distance ******/ + /****** md5 signature: c054352e1b604c83d759bc4ccf6c526d ******/ %feature("compactdefaultargs") Distance; %feature("autodoc", "Return ------- @@ -744,8 +744,8 @@ No available documentation. ") Distance; Standard_Real Distance(); - /****************** Dump ******************/ - /**** md5 signature: 15b4b2e195645aebb43170ff7f15952a ****/ + /****** Bisector_PointOnBis::Dump ******/ + /****** md5 signature: 15b4b2e195645aebb43170ff7f15952a ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", "Return ------- @@ -757,8 +757,8 @@ No available documentation. ") Dump; void Dump(); - /****************** IsInfinite ******************/ - /**** md5 signature: c22d0728817de9ea8ad6f0a2d88a935b ****/ + /****** Bisector_PointOnBis::IsInfinite ******/ + /****** md5 signature: c22d0728817de9ea8ad6f0a2d88a935b ******/ %feature("compactdefaultargs") IsInfinite; %feature("autodoc", " Parameters @@ -775,8 +775,8 @@ No available documentation. ") IsInfinite; void IsInfinite(const Standard_Boolean Infinite); - /****************** IsInfinite ******************/ - /**** md5 signature: 800afae87f4e1f5e34cb9eb46c14c258 ****/ + /****** Bisector_PointOnBis::IsInfinite ******/ + /****** md5 signature: 800afae87f4e1f5e34cb9eb46c14c258 ******/ %feature("compactdefaultargs") IsInfinite; %feature("autodoc", "Return ------- @@ -788,8 +788,8 @@ No available documentation. ") IsInfinite; Standard_Boolean IsInfinite(); - /****************** ParamOnBis ******************/ - /**** md5 signature: 2a06a99e4b08f6296a85a2d8e73c5351 ****/ + /****** Bisector_PointOnBis::ParamOnBis ******/ + /****** md5 signature: 2a06a99e4b08f6296a85a2d8e73c5351 ******/ %feature("compactdefaultargs") ParamOnBis; %feature("autodoc", " Parameters @@ -806,8 +806,8 @@ No available documentation. ") ParamOnBis; void ParamOnBis(const Standard_Real Param); - /****************** ParamOnBis ******************/ - /**** md5 signature: f67c7c80951bdacb9684e5a4011ab759 ****/ + /****** Bisector_PointOnBis::ParamOnBis ******/ + /****** md5 signature: f67c7c80951bdacb9684e5a4011ab759 ******/ %feature("compactdefaultargs") ParamOnBis; %feature("autodoc", "Return ------- @@ -819,8 +819,8 @@ No available documentation. ") ParamOnBis; Standard_Real ParamOnBis(); - /****************** ParamOnC1 ******************/ - /**** md5 signature: 2db8bd05328faa84ee9d303902d8f2bf ****/ + /****** Bisector_PointOnBis::ParamOnC1 ******/ + /****** md5 signature: 2db8bd05328faa84ee9d303902d8f2bf ******/ %feature("compactdefaultargs") ParamOnC1; %feature("autodoc", " Parameters @@ -837,8 +837,8 @@ No available documentation. ") ParamOnC1; void ParamOnC1(const Standard_Real Param); - /****************** ParamOnC1 ******************/ - /**** md5 signature: b6583f639246f74ed76f20992798cf9c ****/ + /****** Bisector_PointOnBis::ParamOnC1 ******/ + /****** md5 signature: b6583f639246f74ed76f20992798cf9c ******/ %feature("compactdefaultargs") ParamOnC1; %feature("autodoc", "Return ------- @@ -850,8 +850,8 @@ No available documentation. ") ParamOnC1; Standard_Real ParamOnC1(); - /****************** ParamOnC2 ******************/ - /**** md5 signature: 98783de9a7c5ee8d0931b4c5f4a1872d ****/ + /****** Bisector_PointOnBis::ParamOnC2 ******/ + /****** md5 signature: 98783de9a7c5ee8d0931b4c5f4a1872d ******/ %feature("compactdefaultargs") ParamOnC2; %feature("autodoc", " Parameters @@ -868,8 +868,8 @@ No available documentation. ") ParamOnC2; void ParamOnC2(const Standard_Real Param); - /****************** ParamOnC2 ******************/ - /**** md5 signature: e502fc8d8313c7e88bcc270cff52b4e8 ****/ + /****** Bisector_PointOnBis::ParamOnC2 ******/ + /****** md5 signature: e502fc8d8313c7e88bcc270cff52b4e8 ******/ %feature("compactdefaultargs") ParamOnC2; %feature("autodoc", "Return ------- @@ -881,8 +881,8 @@ No available documentation. ") ParamOnC2; Standard_Real ParamOnC2(); - /****************** Point ******************/ - /**** md5 signature: fe253a4fee17763769a3905b741f0819 ****/ + /****** Bisector_PointOnBis::Point ******/ + /****** md5 signature: fe253a4fee17763769a3905b741f0819 ******/ %feature("compactdefaultargs") Point; %feature("autodoc", " Parameters @@ -899,8 +899,8 @@ No available documentation. ") Point; void Point(const gp_Pnt2d & P); - /****************** Point ******************/ - /**** md5 signature: f810beee1f685fcd6fb3b73efe41028f ****/ + /****** Bisector_PointOnBis::Point ******/ + /****** md5 signature: f810beee1f685fcd6fb3b73efe41028f ******/ %feature("compactdefaultargs") Point; %feature("autodoc", "Return ------- @@ -926,8 +926,8 @@ No available documentation. *************************/ class Bisector_PolyBis { public: - /****************** Bisector_PolyBis ******************/ - /**** md5 signature: 0cfd13bfdc232aa96631a171648e1b9d ****/ + /****** Bisector_PolyBis::Bisector_PolyBis ******/ + /****** md5 signature: 0cfd13bfdc232aa96631a171648e1b9d ******/ %feature("compactdefaultargs") Bisector_PolyBis; %feature("autodoc", "Return ------- @@ -939,8 +939,8 @@ No available documentation. ") Bisector_PolyBis; Bisector_PolyBis(); - /****************** Append ******************/ - /**** md5 signature: da3b82f65e563d5fdf7c58e07596946f ****/ + /****** Bisector_PolyBis::Append ******/ + /****** md5 signature: da3b82f65e563d5fdf7c58e07596946f ******/ %feature("compactdefaultargs") Append; %feature("autodoc", " Parameters @@ -957,8 +957,8 @@ No available documentation. ") Append; void Append(const Bisector_PointOnBis & Point); - /****************** First ******************/ - /**** md5 signature: 8a04854f4bd43f8bd98db514b401eb6e ****/ + /****** Bisector_PolyBis::First ******/ + /****** md5 signature: 8a04854f4bd43f8bd98db514b401eb6e ******/ %feature("compactdefaultargs") First; %feature("autodoc", "Return ------- @@ -970,8 +970,8 @@ No available documentation. ") First; const Bisector_PointOnBis & First(); - /****************** Interval ******************/ - /**** md5 signature: 74c2cabdf1ec19a1f24a392e69bb1d55 ****/ + /****** Bisector_PolyBis::Interval ******/ + /****** md5 signature: 74c2cabdf1ec19a1f24a392e69bb1d55 ******/ %feature("compactdefaultargs") Interval; %feature("autodoc", " Parameters @@ -988,8 +988,8 @@ No available documentation. ") Interval; Standard_Integer Interval(const Standard_Real U); - /****************** IsEmpty ******************/ - /**** md5 signature: 6ab5e1ad63f93168856ab126dd374b81 ****/ + /****** Bisector_PolyBis::IsEmpty ******/ + /****** md5 signature: 6ab5e1ad63f93168856ab126dd374b81 ******/ %feature("compactdefaultargs") IsEmpty; %feature("autodoc", "Return ------- @@ -1001,8 +1001,8 @@ No available documentation. ") IsEmpty; Standard_Boolean IsEmpty(); - /****************** Last ******************/ - /**** md5 signature: 5e27620ceac300d8b92d02d6453ba01a ****/ + /****** Bisector_PolyBis::Last ******/ + /****** md5 signature: 5e27620ceac300d8b92d02d6453ba01a ******/ %feature("compactdefaultargs") Last; %feature("autodoc", "Return ------- @@ -1014,8 +1014,8 @@ No available documentation. ") Last; const Bisector_PointOnBis & Last(); - /****************** Length ******************/ - /**** md5 signature: 58bd40380acccb2733bfbd37bf3cbb11 ****/ + /****** Bisector_PolyBis::Length ******/ + /****** md5 signature: 58bd40380acccb2733bfbd37bf3cbb11 ******/ %feature("compactdefaultargs") Length; %feature("autodoc", "Return ------- @@ -1027,8 +1027,8 @@ No available documentation. ") Length; Standard_Integer Length(); - /****************** Transform ******************/ - /**** md5 signature: dace16a29a39216c0dd584c6964e840b ****/ + /****** Bisector_PolyBis::Transform ******/ + /****** md5 signature: dace16a29a39216c0dd584c6964e840b ******/ %feature("compactdefaultargs") Transform; %feature("autodoc", " Parameters @@ -1045,8 +1045,8 @@ No available documentation. ") Transform; void Transform(const gp_Trsf2d & T); - /****************** Value ******************/ - /**** md5 signature: 4f2d15b5fff36e44f78586db4357d093 ****/ + /****** Bisector_PolyBis::Value ******/ + /****** md5 signature: 4f2d15b5fff36e44f78586db4357d093 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -1077,8 +1077,8 @@ No available documentation. **************************/ class Bisector_BisecAna : public Bisector_Curve { public: - /****************** Bisector_BisecAna ******************/ - /**** md5 signature: 0d65d11afa2cc569f4caba4128539b9a ****/ + /****** Bisector_BisecAna::Bisector_BisecAna ******/ + /****** md5 signature: 0d65d11afa2cc569f4caba4128539b9a ******/ %feature("compactdefaultargs") Bisector_BisecAna; %feature("autodoc", "Return ------- @@ -1090,8 +1090,8 @@ No available documentation. ") Bisector_BisecAna; Bisector_BisecAna(); - /****************** Continuity ******************/ - /**** md5 signature: 9381b370dfdd50af7f1b79ce202f0c6f ****/ + /****** Bisector_BisecAna::Continuity ******/ + /****** md5 signature: 9381b370dfdd50af7f1b79ce202f0c6f ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", "Return ------- @@ -1103,8 +1103,8 @@ No available documentation. ") Continuity; GeomAbs_Shape Continuity(); - /****************** Copy ******************/ - /**** md5 signature: e14f86fd39aef4f82b5296205cbd25eb ****/ + /****** Bisector_BisecAna::Copy ******/ + /****** md5 signature: e14f86fd39aef4f82b5296205cbd25eb ******/ %feature("compactdefaultargs") Copy; %feature("autodoc", "Return ------- @@ -1116,8 +1116,8 @@ No available documentation. ") Copy; opencascade::handle Copy(); - /****************** D0 ******************/ - /**** md5 signature: 01a5234aae6db090351bac35b3718fd9 ****/ + /****** Bisector_BisecAna::D0 ******/ + /****** md5 signature: 01a5234aae6db090351bac35b3718fd9 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -1135,8 +1135,8 @@ No available documentation. ") D0; void D0(const Standard_Real U, gp_Pnt2d & P); - /****************** D1 ******************/ - /**** md5 signature: 78ab988905058ca54a64c0ab51a90e46 ****/ + /****** Bisector_BisecAna::D1 ******/ + /****** md5 signature: 78ab988905058ca54a64c0ab51a90e46 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -1155,8 +1155,8 @@ No available documentation. ") D1; void D1(const Standard_Real U, gp_Pnt2d & P, gp_Vec2d & V1); - /****************** D2 ******************/ - /**** md5 signature: acc8c0955596bb0bf809102736ad1124 ****/ + /****** Bisector_BisecAna::D2 ******/ + /****** md5 signature: acc8c0955596bb0bf809102736ad1124 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -1176,8 +1176,8 @@ No available documentation. ") D2; void D2(const Standard_Real U, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2); - /****************** D3 ******************/ - /**** md5 signature: 28315b7efe2f6c64fe9497aa5c5ddaf6 ****/ + /****** Bisector_BisecAna::D3 ******/ + /****** md5 signature: 28315b7efe2f6c64fe9497aa5c5ddaf6 ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -1198,8 +1198,8 @@ No available documentation. ") D3; void D3(const Standard_Real U, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2, gp_Vec2d & V3); - /****************** DN ******************/ - /**** md5 signature: a05d2f76912764cef5ac7bb40ebda3d7 ****/ + /****** Bisector_BisecAna::DN ******/ + /****** md5 signature: a05d2f76912764cef5ac7bb40ebda3d7 ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -1217,8 +1217,8 @@ No available documentation. ") DN; gp_Vec2d DN(const Standard_Real U, const Standard_Integer N); - /****************** Dump ******************/ - /**** md5 signature: 23c1db28cacdaffb331052739c78df8b ****/ + /****** Bisector_BisecAna::Dump ******/ + /****** md5 signature: 23c1db28cacdaffb331052739c78df8b ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", " Parameters @@ -1236,8 +1236,8 @@ No available documentation. ") Dump; void Dump(const Standard_Integer Deep = 0, const Standard_Integer Offset = 0); - /****************** FirstParameter ******************/ - /**** md5 signature: eb9ebe94572bd67588fe8811eac261fb ****/ + /****** Bisector_BisecAna::FirstParameter ******/ + /****** md5 signature: eb9ebe94572bd67588fe8811eac261fb ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", "Return ------- @@ -1249,8 +1249,8 @@ No available documentation. ") FirstParameter; Standard_Real FirstParameter(); - /****************** Geom2dCurve ******************/ - /**** md5 signature: abcd44f52397ef0bfa09dd48df49f2c6 ****/ + /****** Bisector_BisecAna::Geom2dCurve ******/ + /****** md5 signature: abcd44f52397ef0bfa09dd48df49f2c6 ******/ %feature("compactdefaultargs") Geom2dCurve; %feature("autodoc", "Return ------- @@ -1262,8 +1262,8 @@ No available documentation. ") Geom2dCurve; opencascade::handle Geom2dCurve(); - /****************** Init ******************/ - /**** md5 signature: 07e89ee657e1bcfa1082e3c53ecfd222 ****/ + /****** Bisector_BisecAna::Init ******/ + /****** md5 signature: 07e89ee657e1bcfa1082e3c53ecfd222 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -1280,8 +1280,8 @@ No available documentation. ") Init; void Init(const opencascade::handle & bisector); - /****************** IntervalFirst ******************/ - /**** md5 signature: 26ceac01a62ec22c7e822fa07bd00ba8 ****/ + /****** Bisector_BisecAna::IntervalFirst ******/ + /****** md5 signature: 26ceac01a62ec22c7e822fa07bd00ba8 ******/ %feature("compactdefaultargs") IntervalFirst; %feature("autodoc", " Parameters @@ -1298,8 +1298,8 @@ Returns the first parameter of the current interval. ") IntervalFirst; Standard_Real IntervalFirst(const Standard_Integer Index); - /****************** IntervalLast ******************/ - /**** md5 signature: ac3f1afc626dcb57a8f90c42ab96a1a6 ****/ + /****** Bisector_BisecAna::IntervalLast ******/ + /****** md5 signature: ac3f1afc626dcb57a8f90c42ab96a1a6 ******/ %feature("compactdefaultargs") IntervalLast; %feature("autodoc", " Parameters @@ -1316,8 +1316,8 @@ Returns the last parameter of the current interval. ") IntervalLast; Standard_Real IntervalLast(const Standard_Integer Index); - /****************** IsCN ******************/ - /**** md5 signature: 73c2d9ecdd776a5227f0665f0702fcb3 ****/ + /****** Bisector_BisecAna::IsCN ******/ + /****** md5 signature: 73c2d9ecdd776a5227f0665f0702fcb3 ******/ %feature("compactdefaultargs") IsCN; %feature("autodoc", " Parameters @@ -1334,8 +1334,8 @@ Returns the order of continuity of the curve. raised if n < 0. ") IsCN; Standard_Boolean IsCN(const Standard_Integer N); - /****************** IsClosed ******************/ - /**** md5 signature: 00978070ec4cb5f00d1d002a8d5d3763 ****/ + /****** Bisector_BisecAna::IsClosed ******/ + /****** md5 signature: 00978070ec4cb5f00d1d002a8d5d3763 ******/ %feature("compactdefaultargs") IsClosed; %feature("autodoc", "Return ------- @@ -1347,8 +1347,8 @@ No available documentation. ") IsClosed; Standard_Boolean IsClosed(); - /****************** IsExtendAtEnd ******************/ - /**** md5 signature: 726d1a23c6824c1f3df11fa9c8594123 ****/ + /****** Bisector_BisecAna::IsExtendAtEnd ******/ + /****** md5 signature: 726d1a23c6824c1f3df11fa9c8594123 ******/ %feature("compactdefaultargs") IsExtendAtEnd; %feature("autodoc", "Return ------- @@ -1360,8 +1360,8 @@ No available documentation. ") IsExtendAtEnd; Standard_Boolean IsExtendAtEnd(); - /****************** IsExtendAtStart ******************/ - /**** md5 signature: eed6f2d113851eb819af3886c3a10ba0 ****/ + /****** Bisector_BisecAna::IsExtendAtStart ******/ + /****** md5 signature: eed6f2d113851eb819af3886c3a10ba0 ******/ %feature("compactdefaultargs") IsExtendAtStart; %feature("autodoc", "Return ------- @@ -1373,8 +1373,8 @@ No available documentation. ") IsExtendAtStart; Standard_Boolean IsExtendAtStart(); - /****************** IsPeriodic ******************/ - /**** md5 signature: 15e3ccfd3ad4ae42959489f7f64aa8ca ****/ + /****** Bisector_BisecAna::IsPeriodic ******/ + /****** md5 signature: 15e3ccfd3ad4ae42959489f7f64aa8ca ******/ %feature("compactdefaultargs") IsPeriodic; %feature("autodoc", "Return ------- @@ -1386,8 +1386,8 @@ No available documentation. ") IsPeriodic; Standard_Boolean IsPeriodic(); - /****************** LastParameter ******************/ - /**** md5 signature: cb4925a2d4a451ceec8f6ad486530f9c ****/ + /****** Bisector_BisecAna::LastParameter ******/ + /****** md5 signature: cb4925a2d4a451ceec8f6ad486530f9c ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", "Return ------- @@ -1399,8 +1399,8 @@ No available documentation. ") LastParameter; Standard_Real LastParameter(); - /****************** NbIntervals ******************/ - /**** md5 signature: 2f9f3a515d8495f09df4987b6d0933b4 ****/ + /****** Bisector_BisecAna::NbIntervals ******/ + /****** md5 signature: 2f9f3a515d8495f09df4987b6d0933b4 ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", "Return ------- @@ -1412,8 +1412,8 @@ If necessary, breaks the curve in intervals of continuity . and returns the ") NbIntervals; Standard_Integer NbIntervals(); - /****************** Parameter ******************/ - /**** md5 signature: ca089b85d2f90fc99bae6c7f4cfeb9e5 ****/ + /****** Bisector_BisecAna::Parameter ******/ + /****** md5 signature: ca089b85d2f90fc99bae6c7f4cfeb9e5 ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", " Parameters @@ -1430,8 +1430,8 @@ No available documentation. ") Parameter; Standard_Real Parameter(const gp_Pnt2d & P); - /****************** ParameterOfEndPoint ******************/ - /**** md5 signature: 2b155a85b659e36f13767bf9dd30f490 ****/ + /****** Bisector_BisecAna::ParameterOfEndPoint ******/ + /****** md5 signature: 2b155a85b659e36f13767bf9dd30f490 ******/ %feature("compactdefaultargs") ParameterOfEndPoint; %feature("autodoc", "Return ------- @@ -1443,8 +1443,8 @@ No available documentation. ") ParameterOfEndPoint; Standard_Real ParameterOfEndPoint(); - /****************** ParameterOfStartPoint ******************/ - /**** md5 signature: 21ad3f21ab318a397dc77908c2cf36cb ****/ + /****** Bisector_BisecAna::ParameterOfStartPoint ******/ + /****** md5 signature: 21ad3f21ab318a397dc77908c2cf36cb ******/ %feature("compactdefaultargs") ParameterOfStartPoint; %feature("autodoc", "Return ------- @@ -1456,8 +1456,8 @@ No available documentation. ") ParameterOfStartPoint; Standard_Real ParameterOfStartPoint(); - /****************** Perform ******************/ - /**** md5 signature: fb60162720d8c50ac1c9de9627e7e5f9 ****/ + /****** Bisector_BisecAna::Perform ******/ + /****** md5 signature: fb60162720d8c50ac1c9de9627e7e5f9 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1482,8 +1482,8 @@ Performs the bisecting line between the curves and . is tru ") Perform; void Perform(const opencascade::handle & Cu1, const opencascade::handle & Cu2, const gp_Pnt2d & P, const gp_Vec2d & V1, const gp_Vec2d & V2, const Standard_Real Sense, const GeomAbs_JoinType jointype, const Standard_Real Tolerance, const Standard_Boolean oncurve = Standard_True); - /****************** Perform ******************/ - /**** md5 signature: db93a55a64615589c218fc350bd5fc5b ****/ + /****** Bisector_BisecAna::Perform ******/ + /****** md5 signature: db93a55a64615589c218fc350bd5fc5b ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1507,8 +1507,8 @@ Performs the bisecting line between the curve and the point . & Cu, const opencascade::handle & Pnt, const gp_Pnt2d & P, const gp_Vec2d & V1, const gp_Vec2d & V2, const Standard_Real Sense, const Standard_Real Tolerance, const Standard_Boolean oncurve = Standard_True); - /****************** Perform ******************/ - /**** md5 signature: 4bc1957ebd7bba22e94551f1f80cb51e ****/ + /****** Bisector_BisecAna::Perform ******/ + /****** md5 signature: 4bc1957ebd7bba22e94551f1f80cb51e ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1532,8 +1532,8 @@ Performs the bisecting line between the curve and the point . & Pnt, const opencascade::handle & Cu, const gp_Pnt2d & P, const gp_Vec2d & V1, const gp_Vec2d & V2, const Standard_Real Sense, const Standard_Real Tolerance, const Standard_Boolean oncurve = Standard_True); - /****************** Perform ******************/ - /**** md5 signature: b02fc98be2a333e2fd00a9e617d3c1ab ****/ + /****** Bisector_BisecAna::Perform ******/ + /****** md5 signature: b02fc98be2a333e2fd00a9e617d3c1ab ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1557,8 +1557,8 @@ Performs the bisecting line between the two points and . ") Perform; void Perform(const opencascade::handle & Pnt1, const opencascade::handle & Pnt2, const gp_Pnt2d & P, const gp_Vec2d & V1, const gp_Vec2d & V2, const Standard_Real Sense, const Standard_Real Tolerance = 0.0, const Standard_Boolean oncurve = Standard_True); - /****************** Reverse ******************/ - /**** md5 signature: bff3d53d1cf0b268b7de85021a2bf3c4 ****/ + /****** Bisector_BisecAna::Reverse ******/ + /****** md5 signature: bff3d53d1cf0b268b7de85021a2bf3c4 ******/ %feature("compactdefaultargs") Reverse; %feature("autodoc", "Return ------- @@ -1570,8 +1570,8 @@ No available documentation. ") Reverse; void Reverse(); - /****************** ReversedParameter ******************/ - /**** md5 signature: 382721d5a4ea752fecc12f03ab0de9a1 ****/ + /****** Bisector_BisecAna::ReversedParameter ******/ + /****** md5 signature: 382721d5a4ea752fecc12f03ab0de9a1 ******/ %feature("compactdefaultargs") ReversedParameter; %feature("autodoc", " Parameters @@ -1588,8 +1588,8 @@ No available documentation. ") ReversedParameter; Standard_Real ReversedParameter(const Standard_Real U); - /****************** SetTrim ******************/ - /**** md5 signature: 7b91668841d99d4ce0903be5c9fe2ff8 ****/ + /****** Bisector_BisecAna::SetTrim ******/ + /****** md5 signature: 7b91668841d99d4ce0903be5c9fe2ff8 ******/ %feature("compactdefaultargs") SetTrim; %feature("autodoc", " Parameters @@ -1606,8 +1606,8 @@ Trim by a domain defined by the curve . this domain is the set of the ") SetTrim; void SetTrim(const opencascade::handle & Cu); - /****************** SetTrim ******************/ - /**** md5 signature: b905e29612c27e95bca2fd090f152e87 ****/ + /****** Bisector_BisecAna::SetTrim ******/ + /****** md5 signature: b905e29612c27e95bca2fd090f152e87 ******/ %feature("compactdefaultargs") SetTrim; %feature("autodoc", " Parameters @@ -1625,8 +1625,8 @@ Trim by a domain defined by uf and ul. ") SetTrim; void SetTrim(const Standard_Real uf, const Standard_Real ul); - /****************** Transform ******************/ - /**** md5 signature: 45c8e1b1d6196f6efcf8f7b40a0fb1f5 ****/ + /****** Bisector_BisecAna::Transform ******/ + /****** md5 signature: 45c8e1b1d6196f6efcf8f7b40a0fb1f5 ******/ %feature("compactdefaultargs") Transform; %feature("autodoc", " Parameters @@ -1659,8 +1659,8 @@ No available documentation. *************************/ class Bisector_BisecCC : public Bisector_Curve { public: - /****************** Bisector_BisecCC ******************/ - /**** md5 signature: 87b14a7e3b15d49238cbdddb2458f82b ****/ + /****** Bisector_BisecCC::Bisector_BisecCC ******/ + /****** md5 signature: 87b14a7e3b15d49238cbdddb2458f82b ******/ %feature("compactdefaultargs") Bisector_BisecCC; %feature("autodoc", "Return ------- @@ -1672,8 +1672,8 @@ No available documentation. ") Bisector_BisecCC; Bisector_BisecCC(); - /****************** Bisector_BisecCC ******************/ - /**** md5 signature: b7a10bfb46a2005b4bf2e5d04eb46d71 ****/ + /****** Bisector_BisecCC::Bisector_BisecCC ******/ + /****** md5 signature: b7a10bfb46a2005b4bf2e5d04eb46d71 ******/ %feature("compactdefaultargs") Bisector_BisecCC; %feature("autodoc", " Parameters @@ -1695,8 +1695,8 @@ Constructs the bisector between the curves and . //! (resp & Cu1, const opencascade::handle & Cu2, const Standard_Real Side1, const Standard_Real Side2, const gp_Pnt2d & Origin, const Standard_Real DistMax = 500); - /****************** ChangeGuide ******************/ - /**** md5 signature: ac2e0495e4a0d40e5db2cbf3fc1a0d37 ****/ + /****** Bisector_BisecCC::ChangeGuide ******/ + /****** md5 signature: ac2e0495e4a0d40e5db2cbf3fc1a0d37 ******/ %feature("compactdefaultargs") ChangeGuide; %feature("autodoc", "Return ------- @@ -1708,8 +1708,8 @@ The parameter on is linked to the parameter on the first curve. this meth ") ChangeGuide; opencascade::handle ChangeGuide(); - /****************** Continuity ******************/ - /**** md5 signature: 9381b370dfdd50af7f1b79ce202f0c6f ****/ + /****** Bisector_BisecCC::Continuity ******/ + /****** md5 signature: 9381b370dfdd50af7f1b79ce202f0c6f ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", "Return ------- @@ -1721,8 +1721,8 @@ No available documentation. ") Continuity; GeomAbs_Shape Continuity(); - /****************** Copy ******************/ - /**** md5 signature: e14f86fd39aef4f82b5296205cbd25eb ****/ + /****** Bisector_BisecCC::Copy ******/ + /****** md5 signature: e14f86fd39aef4f82b5296205cbd25eb ******/ %feature("compactdefaultargs") Copy; %feature("autodoc", "Return ------- @@ -1734,8 +1734,8 @@ No available documentation. ") Copy; opencascade::handle Copy(); - /****************** Curve ******************/ - /**** md5 signature: 4f7582321d8b4bbdb047c27b823a49c6 ****/ + /****** Bisector_BisecCC::Curve ******/ + /****** md5 signature: 4f7582321d8b4bbdb047c27b823a49c6 ******/ %feature("compactdefaultargs") Curve; %feature("autodoc", " Parameters @@ -1752,8 +1752,8 @@ No available documentation. ") Curve; opencascade::handle Curve(const Standard_Integer IndCurve); - /****************** D0 ******************/ - /**** md5 signature: 01a5234aae6db090351bac35b3718fd9 ****/ + /****** Bisector_BisecCC::D0 ******/ + /****** md5 signature: 01a5234aae6db090351bac35b3718fd9 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -1771,8 +1771,8 @@ No available documentation. ") D0; void D0(const Standard_Real U, gp_Pnt2d & P); - /****************** D1 ******************/ - /**** md5 signature: 79a293d0b91ab6d1359881075119fb56 ****/ + /****** Bisector_BisecCC::D1 ******/ + /****** md5 signature: 79a293d0b91ab6d1359881075119fb56 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -1791,8 +1791,8 @@ No available documentation. ") D1; void D1(const Standard_Real U, gp_Pnt2d & P, gp_Vec2d & V); - /****************** D2 ******************/ - /**** md5 signature: acc8c0955596bb0bf809102736ad1124 ****/ + /****** Bisector_BisecCC::D2 ******/ + /****** md5 signature: acc8c0955596bb0bf809102736ad1124 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -1812,8 +1812,8 @@ No available documentation. ") D2; void D2(const Standard_Real U, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2); - /****************** D3 ******************/ - /**** md5 signature: 28315b7efe2f6c64fe9497aa5c5ddaf6 ****/ + /****** Bisector_BisecCC::D3 ******/ + /****** md5 signature: 28315b7efe2f6c64fe9497aa5c5ddaf6 ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -1834,8 +1834,8 @@ No available documentation. ") D3; void D3(const Standard_Real U, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2, gp_Vec2d & V3); - /****************** DN ******************/ - /**** md5 signature: a05d2f76912764cef5ac7bb40ebda3d7 ****/ + /****** Bisector_BisecCC::DN ******/ + /****** md5 signature: a05d2f76912764cef5ac7bb40ebda3d7 ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -1853,8 +1853,8 @@ No available documentation. ") DN; gp_Vec2d DN(const Standard_Real U, const Standard_Integer N); - /****************** Dump ******************/ - /**** md5 signature: 23c1db28cacdaffb331052739c78df8b ****/ + /****** Bisector_BisecCC::Dump ******/ + /****** md5 signature: 23c1db28cacdaffb331052739c78df8b ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", " Parameters @@ -1872,8 +1872,8 @@ No available documentation. ") Dump; void Dump(const Standard_Integer Deep = 0, const Standard_Integer Offset = 0); - /****************** FirstParameter ******************/ - /**** md5 signature: eb9ebe94572bd67588fe8811eac261fb ****/ + /****** Bisector_BisecCC::FirstParameter ******/ + /****** md5 signature: eb9ebe94572bd67588fe8811eac261fb ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", "Return ------- @@ -1885,8 +1885,8 @@ No available documentation. ") FirstParameter; Standard_Real FirstParameter(); - /****************** IntervalContinuity ******************/ - /**** md5 signature: 4fe081a978745bbd0e32a19f5e1db952 ****/ + /****** Bisector_BisecCC::IntervalContinuity ******/ + /****** md5 signature: 4fe081a978745bbd0e32a19f5e1db952 ******/ %feature("compactdefaultargs") IntervalContinuity; %feature("autodoc", "Return ------- @@ -1898,8 +1898,8 @@ No available documentation. ") IntervalContinuity; GeomAbs_Shape IntervalContinuity(); - /****************** IntervalFirst ******************/ - /**** md5 signature: 26ceac01a62ec22c7e822fa07bd00ba8 ****/ + /****** Bisector_BisecCC::IntervalFirst ******/ + /****** md5 signature: 26ceac01a62ec22c7e822fa07bd00ba8 ******/ %feature("compactdefaultargs") IntervalFirst; %feature("autodoc", " Parameters @@ -1916,8 +1916,8 @@ Returns the first parameter of the current interval. ") IntervalFirst; Standard_Real IntervalFirst(const Standard_Integer Index); - /****************** IntervalLast ******************/ - /**** md5 signature: ac3f1afc626dcb57a8f90c42ab96a1a6 ****/ + /****** Bisector_BisecCC::IntervalLast ******/ + /****** md5 signature: ac3f1afc626dcb57a8f90c42ab96a1a6 ******/ %feature("compactdefaultargs") IntervalLast; %feature("autodoc", " Parameters @@ -1934,8 +1934,8 @@ Returns the last parameter of the current interval. ") IntervalLast; Standard_Real IntervalLast(const Standard_Integer Index); - /****************** IsCN ******************/ - /**** md5 signature: 73c2d9ecdd776a5227f0665f0702fcb3 ****/ + /****** Bisector_BisecCC::IsCN ******/ + /****** md5 signature: 73c2d9ecdd776a5227f0665f0702fcb3 ******/ %feature("compactdefaultargs") IsCN; %feature("autodoc", " Parameters @@ -1952,8 +1952,8 @@ Returns the order of continuity of the curve. raised if n < 0. ") IsCN; Standard_Boolean IsCN(const Standard_Integer N); - /****************** IsClosed ******************/ - /**** md5 signature: 00978070ec4cb5f00d1d002a8d5d3763 ****/ + /****** Bisector_BisecCC::IsClosed ******/ + /****** md5 signature: 00978070ec4cb5f00d1d002a8d5d3763 ******/ %feature("compactdefaultargs") IsClosed; %feature("autodoc", "Return ------- @@ -1965,8 +1965,8 @@ No available documentation. ") IsClosed; Standard_Boolean IsClosed(); - /****************** IsEmpty ******************/ - /**** md5 signature: 6ab5e1ad63f93168856ab126dd374b81 ****/ + /****** Bisector_BisecCC::IsEmpty ******/ + /****** md5 signature: 6ab5e1ad63f93168856ab126dd374b81 ******/ %feature("compactdefaultargs") IsEmpty; %feature("autodoc", "Return ------- @@ -1978,8 +1978,8 @@ No available documentation. ") IsEmpty; Standard_Boolean IsEmpty(); - /****************** IsExtendAtEnd ******************/ - /**** md5 signature: 726d1a23c6824c1f3df11fa9c8594123 ****/ + /****** Bisector_BisecCC::IsExtendAtEnd ******/ + /****** md5 signature: 726d1a23c6824c1f3df11fa9c8594123 ******/ %feature("compactdefaultargs") IsExtendAtEnd; %feature("autodoc", "Return ------- @@ -1991,8 +1991,8 @@ No available documentation. ") IsExtendAtEnd; Standard_Boolean IsExtendAtEnd(); - /****************** IsExtendAtStart ******************/ - /**** md5 signature: eed6f2d113851eb819af3886c3a10ba0 ****/ + /****** Bisector_BisecCC::IsExtendAtStart ******/ + /****** md5 signature: eed6f2d113851eb819af3886c3a10ba0 ******/ %feature("compactdefaultargs") IsExtendAtStart; %feature("autodoc", "Return ------- @@ -2004,8 +2004,8 @@ No available documentation. ") IsExtendAtStart; Standard_Boolean IsExtendAtStart(); - /****************** IsPeriodic ******************/ - /**** md5 signature: 15e3ccfd3ad4ae42959489f7f64aa8ca ****/ + /****** Bisector_BisecCC::IsPeriodic ******/ + /****** md5 signature: 15e3ccfd3ad4ae42959489f7f64aa8ca ******/ %feature("compactdefaultargs") IsPeriodic; %feature("autodoc", "Return ------- @@ -2017,8 +2017,8 @@ No available documentation. ") IsPeriodic; Standard_Boolean IsPeriodic(); - /****************** LastParameter ******************/ - /**** md5 signature: cb4925a2d4a451ceec8f6ad486530f9c ****/ + /****** Bisector_BisecCC::LastParameter ******/ + /****** md5 signature: cb4925a2d4a451ceec8f6ad486530f9c ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", "Return ------- @@ -2030,8 +2030,8 @@ No available documentation. ") LastParameter; Standard_Real LastParameter(); - /****************** LinkBisCurve ******************/ - /**** md5 signature: 55ab0cec865e9ea9faed38185d303c1b ****/ + /****** Bisector_BisecCC::LinkBisCurve ******/ + /****** md5 signature: 55ab0cec865e9ea9faed38185d303c1b ******/ %feature("compactdefaultargs") LinkBisCurve; %feature("autodoc", " Parameters @@ -2048,8 +2048,8 @@ Returns the parameter on the curve1 of the projection of the point of parameter ") LinkBisCurve; Standard_Real LinkBisCurve(const Standard_Real U); - /****************** LinkCurveBis ******************/ - /**** md5 signature: b0393e62df20de8ab3e4695b6cecfbc2 ****/ + /****** Bisector_BisecCC::LinkCurveBis ******/ + /****** md5 signature: b0393e62df20de8ab3e4695b6cecfbc2 ******/ %feature("compactdefaultargs") LinkCurveBis; %feature("autodoc", " Parameters @@ -2066,8 +2066,8 @@ Returns the reciproque of linkbiscurve. ") LinkCurveBis; Standard_Real LinkCurveBis(const Standard_Real U); - /****************** NbIntervals ******************/ - /**** md5 signature: 2f9f3a515d8495f09df4987b6d0933b4 ****/ + /****** Bisector_BisecCC::NbIntervals ******/ + /****** md5 signature: 2f9f3a515d8495f09df4987b6d0933b4 ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", "Return ------- @@ -2079,8 +2079,8 @@ If necessary, breaks the curve in intervals of continuity . and returns the ") NbIntervals; Standard_Integer NbIntervals(); - /****************** Parameter ******************/ - /**** md5 signature: ca089b85d2f90fc99bae6c7f4cfeb9e5 ****/ + /****** Bisector_BisecCC::Parameter ******/ + /****** md5 signature: ca089b85d2f90fc99bae6c7f4cfeb9e5 ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", " Parameters @@ -2097,8 +2097,8 @@ No available documentation. ") Parameter; Standard_Real Parameter(const gp_Pnt2d & P); - /****************** Perform ******************/ - /**** md5 signature: fae8efeaf20f5251b3bb2a78bdbbd0d6 ****/ + /****** Bisector_BisecCC::Perform ******/ + /****** md5 signature: fae8efeaf20f5251b3bb2a78bdbbd0d6 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2120,8 +2120,8 @@ Computes the bisector between the curves and . //! (resp & Cu1, const opencascade::handle & Cu2, const Standard_Real Side1, const Standard_Real Side2, const gp_Pnt2d & Origin, const Standard_Real DistMax = 500); - /****************** Polygon ******************/ - /**** md5 signature: 0adc7dc97a83bfc84693e7af983e76d4 ****/ + /****** Bisector_BisecCC::Polygon ******/ + /****** md5 signature: 0adc7dc97a83bfc84693e7af983e76d4 ******/ %feature("compactdefaultargs") Polygon; %feature("autodoc", "Return ------- @@ -2133,8 +2133,8 @@ No available documentation. ") Polygon; const Bisector_PolyBis & Polygon(); - /****************** Reverse ******************/ - /**** md5 signature: bff3d53d1cf0b268b7de85021a2bf3c4 ****/ + /****** Bisector_BisecCC::Reverse ******/ + /****** md5 signature: bff3d53d1cf0b268b7de85021a2bf3c4 ******/ %feature("compactdefaultargs") Reverse; %feature("autodoc", "Return ------- @@ -2146,8 +2146,8 @@ No available documentation. ") Reverse; void Reverse(); - /****************** ReversedParameter ******************/ - /**** md5 signature: 382721d5a4ea752fecc12f03ab0de9a1 ****/ + /****** Bisector_BisecCC::ReversedParameter ******/ + /****** md5 signature: 382721d5a4ea752fecc12f03ab0de9a1 ******/ %feature("compactdefaultargs") ReversedParameter; %feature("autodoc", " Parameters @@ -2164,8 +2164,8 @@ No available documentation. ") ReversedParameter; Standard_Real ReversedParameter(const Standard_Real U); - /****************** Transform ******************/ - /**** md5 signature: 45c8e1b1d6196f6efcf8f7b40a0fb1f5 ****/ + /****** Bisector_BisecCC::Transform ******/ + /****** md5 signature: 45c8e1b1d6196f6efcf8f7b40a0fb1f5 ******/ %feature("compactdefaultargs") Transform; %feature("autodoc", " Parameters @@ -2182,8 +2182,8 @@ Transformation of a geometric object. this tansformation can be a translation, a ") Transform; void Transform(const gp_Trsf2d & T); - /****************** ValueAndDist ******************/ - /**** md5 signature: c1e89ac2312e0b68d9e854a27a72ebb0 ****/ + /****** Bisector_BisecCC::ValueAndDist ******/ + /****** md5 signature: c1e89ac2312e0b68d9e854a27a72ebb0 ******/ %feature("compactdefaultargs") ValueAndDist; %feature("autodoc", " Parameters @@ -2202,8 +2202,8 @@ Returns the point of parameter u. computes the distance between the current poin ") ValueAndDist; gp_Pnt2d ValueAndDist(const Standard_Real U, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** ValueByInt ******************/ - /**** md5 signature: 887792daba949624653f20427d8b1fcd ****/ + /****** Bisector_BisecCC::ValueByInt ******/ + /****** md5 signature: 887792daba949624653f20427d8b1fcd ******/ %feature("compactdefaultargs") ValueByInt; %feature("autodoc", " Parameters @@ -2238,8 +2238,8 @@ Returns the point of parameter u. computes the distance between the current poin *************************/ class Bisector_BisecPC : public Bisector_Curve { public: - /****************** Bisector_BisecPC ******************/ - /**** md5 signature: cf514e534127a826f335e20c812871d7 ****/ + /****** Bisector_BisecPC::Bisector_BisecPC ******/ + /****** md5 signature: cf514e534127a826f335e20c812871d7 ******/ %feature("compactdefaultargs") Bisector_BisecPC; %feature("autodoc", "Return ------- @@ -2251,8 +2251,8 @@ No available documentation. ") Bisector_BisecPC; Bisector_BisecPC(); - /****************** Bisector_BisecPC ******************/ - /**** md5 signature: 1365427db49d7771559efb2b783b9495 ****/ + /****** Bisector_BisecPC::Bisector_BisecPC ******/ + /****** md5 signature: 1365427db49d7771559efb2b783b9495 ******/ %feature("compactdefaultargs") Bisector_BisecPC; %feature("autodoc", " Parameters @@ -2272,8 +2272,8 @@ Constructs the bisector between the point

and the curve . = 1. if ") Bisector_BisecPC; Bisector_BisecPC(const opencascade::handle & Cu, const gp_Pnt2d & P, const Standard_Real Side, const Standard_Real DistMax = 500); - /****************** Bisector_BisecPC ******************/ - /**** md5 signature: c4a1dc45924f741e58ac3ed6ac71fc88 ****/ + /****** Bisector_BisecPC::Bisector_BisecPC ******/ + /****** md5 signature: c4a1dc45924f741e58ac3ed6ac71fc88 ******/ %feature("compactdefaultargs") Bisector_BisecPC; %feature("autodoc", " Parameters @@ -2294,8 +2294,8 @@ Constructs the bisector between the point

and the curve trimmed by & Cu, const gp_Pnt2d & P, const Standard_Real Side, const Standard_Real UMin, const Standard_Real UMax); - /****************** Continuity ******************/ - /**** md5 signature: 9381b370dfdd50af7f1b79ce202f0c6f ****/ + /****** Bisector_BisecPC::Continuity ******/ + /****** md5 signature: 9381b370dfdd50af7f1b79ce202f0c6f ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", "Return ------- @@ -2307,8 +2307,8 @@ No available documentation. ") Continuity; GeomAbs_Shape Continuity(); - /****************** Copy ******************/ - /**** md5 signature: e14f86fd39aef4f82b5296205cbd25eb ****/ + /****** Bisector_BisecPC::Copy ******/ + /****** md5 signature: e14f86fd39aef4f82b5296205cbd25eb ******/ %feature("compactdefaultargs") Copy; %feature("autodoc", "Return ------- @@ -2320,8 +2320,8 @@ No available documentation. ") Copy; opencascade::handle Copy(); - /****************** D0 ******************/ - /**** md5 signature: 01a5234aae6db090351bac35b3718fd9 ****/ + /****** Bisector_BisecPC::D0 ******/ + /****** md5 signature: 01a5234aae6db090351bac35b3718fd9 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -2339,8 +2339,8 @@ No available documentation. ") D0; void D0(const Standard_Real U, gp_Pnt2d & P); - /****************** D1 ******************/ - /**** md5 signature: 79a293d0b91ab6d1359881075119fb56 ****/ + /****** Bisector_BisecPC::D1 ******/ + /****** md5 signature: 79a293d0b91ab6d1359881075119fb56 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -2359,8 +2359,8 @@ No available documentation. ") D1; void D1(const Standard_Real U, gp_Pnt2d & P, gp_Vec2d & V); - /****************** D2 ******************/ - /**** md5 signature: acc8c0955596bb0bf809102736ad1124 ****/ + /****** Bisector_BisecPC::D2 ******/ + /****** md5 signature: acc8c0955596bb0bf809102736ad1124 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -2380,8 +2380,8 @@ No available documentation. ") D2; void D2(const Standard_Real U, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2); - /****************** D3 ******************/ - /**** md5 signature: 28315b7efe2f6c64fe9497aa5c5ddaf6 ****/ + /****** Bisector_BisecPC::D3 ******/ + /****** md5 signature: 28315b7efe2f6c64fe9497aa5c5ddaf6 ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -2402,8 +2402,8 @@ No available documentation. ") D3; void D3(const Standard_Real U, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2, gp_Vec2d & V3); - /****************** DN ******************/ - /**** md5 signature: a05d2f76912764cef5ac7bb40ebda3d7 ****/ + /****** Bisector_BisecPC::DN ******/ + /****** md5 signature: a05d2f76912764cef5ac7bb40ebda3d7 ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -2421,8 +2421,8 @@ No available documentation. ") DN; gp_Vec2d DN(const Standard_Real U, const Standard_Integer N); - /****************** Distance ******************/ - /**** md5 signature: 2f53d099539d1d19d9f9030927d9cfd3 ****/ + /****** Bisector_BisecPC::Distance ******/ + /****** md5 signature: 2f53d099539d1d19d9f9030927d9cfd3 ******/ %feature("compactdefaultargs") Distance; %feature("autodoc", " Parameters @@ -2439,8 +2439,8 @@ Returns the distance between the point of parameter u on and my point or ") Distance; Standard_Real Distance(const Standard_Real U); - /****************** Dump ******************/ - /**** md5 signature: 23c1db28cacdaffb331052739c78df8b ****/ + /****** Bisector_BisecPC::Dump ******/ + /****** md5 signature: 23c1db28cacdaffb331052739c78df8b ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", " Parameters @@ -2458,8 +2458,8 @@ No available documentation. ") Dump; void Dump(const Standard_Integer Deep = 0, const Standard_Integer Offset = 0); - /****************** FirstParameter ******************/ - /**** md5 signature: eb9ebe94572bd67588fe8811eac261fb ****/ + /****** Bisector_BisecPC::FirstParameter ******/ + /****** md5 signature: eb9ebe94572bd67588fe8811eac261fb ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", "Return ------- @@ -2471,8 +2471,8 @@ Value of the first parameter. ") FirstParameter; Standard_Real FirstParameter(); - /****************** IntervalContinuity ******************/ - /**** md5 signature: 4fe081a978745bbd0e32a19f5e1db952 ****/ + /****** Bisector_BisecPC::IntervalContinuity ******/ + /****** md5 signature: 4fe081a978745bbd0e32a19f5e1db952 ******/ %feature("compactdefaultargs") IntervalContinuity; %feature("autodoc", "Return ------- @@ -2484,8 +2484,8 @@ No available documentation. ") IntervalContinuity; GeomAbs_Shape IntervalContinuity(); - /****************** IntervalFirst ******************/ - /**** md5 signature: 26ceac01a62ec22c7e822fa07bd00ba8 ****/ + /****** Bisector_BisecPC::IntervalFirst ******/ + /****** md5 signature: 26ceac01a62ec22c7e822fa07bd00ba8 ******/ %feature("compactdefaultargs") IntervalFirst; %feature("autodoc", " Parameters @@ -2502,8 +2502,8 @@ Returns the first parameter of the current interval. ") IntervalFirst; Standard_Real IntervalFirst(const Standard_Integer Index); - /****************** IntervalLast ******************/ - /**** md5 signature: ac3f1afc626dcb57a8f90c42ab96a1a6 ****/ + /****** Bisector_BisecPC::IntervalLast ******/ + /****** md5 signature: ac3f1afc626dcb57a8f90c42ab96a1a6 ******/ %feature("compactdefaultargs") IntervalLast; %feature("autodoc", " Parameters @@ -2520,8 +2520,8 @@ Returns the last parameter of the current interval. ") IntervalLast; Standard_Real IntervalLast(const Standard_Integer Index); - /****************** IsCN ******************/ - /**** md5 signature: 73c2d9ecdd776a5227f0665f0702fcb3 ****/ + /****** Bisector_BisecPC::IsCN ******/ + /****** md5 signature: 73c2d9ecdd776a5227f0665f0702fcb3 ******/ %feature("compactdefaultargs") IsCN; %feature("autodoc", " Parameters @@ -2538,8 +2538,8 @@ Returns the order of continuity of the curve. raised if n < 0. ") IsCN; Standard_Boolean IsCN(const Standard_Integer N); - /****************** IsClosed ******************/ - /**** md5 signature: 00978070ec4cb5f00d1d002a8d5d3763 ****/ + /****** Bisector_BisecPC::IsClosed ******/ + /****** md5 signature: 00978070ec4cb5f00d1d002a8d5d3763 ******/ %feature("compactdefaultargs") IsClosed; %feature("autodoc", "Return ------- @@ -2551,8 +2551,8 @@ No available documentation. ") IsClosed; Standard_Boolean IsClosed(); - /****************** IsEmpty ******************/ - /**** md5 signature: 6ab5e1ad63f93168856ab126dd374b81 ****/ + /****** Bisector_BisecPC::IsEmpty ******/ + /****** md5 signature: 6ab5e1ad63f93168856ab126dd374b81 ******/ %feature("compactdefaultargs") IsEmpty; %feature("autodoc", "Return ------- @@ -2564,8 +2564,8 @@ Returns if the bisector is empty. ") IsEmpty; Standard_Boolean IsEmpty(); - /****************** IsExtendAtEnd ******************/ - /**** md5 signature: 726d1a23c6824c1f3df11fa9c8594123 ****/ + /****** Bisector_BisecPC::IsExtendAtEnd ******/ + /****** md5 signature: 726d1a23c6824c1f3df11fa9c8594123 ******/ %feature("compactdefaultargs") IsExtendAtEnd; %feature("autodoc", "Return ------- @@ -2577,8 +2577,8 @@ Returns true if the bisector is extended at end. ") IsExtendAtEnd; Standard_Boolean IsExtendAtEnd(); - /****************** IsExtendAtStart ******************/ - /**** md5 signature: eed6f2d113851eb819af3886c3a10ba0 ****/ + /****** Bisector_BisecPC::IsExtendAtStart ******/ + /****** md5 signature: eed6f2d113851eb819af3886c3a10ba0 ******/ %feature("compactdefaultargs") IsExtendAtStart; %feature("autodoc", "Return ------- @@ -2590,8 +2590,8 @@ Returns true if the bisector is extended at start. ") IsExtendAtStart; Standard_Boolean IsExtendAtStart(); - /****************** IsPeriodic ******************/ - /**** md5 signature: 15e3ccfd3ad4ae42959489f7f64aa8ca ****/ + /****** Bisector_BisecPC::IsPeriodic ******/ + /****** md5 signature: 15e3ccfd3ad4ae42959489f7f64aa8ca ******/ %feature("compactdefaultargs") IsPeriodic; %feature("autodoc", "Return ------- @@ -2603,8 +2603,8 @@ No available documentation. ") IsPeriodic; Standard_Boolean IsPeriodic(); - /****************** LastParameter ******************/ - /**** md5 signature: cb4925a2d4a451ceec8f6ad486530f9c ****/ + /****** Bisector_BisecPC::LastParameter ******/ + /****** md5 signature: cb4925a2d4a451ceec8f6ad486530f9c ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", "Return ------- @@ -2616,8 +2616,8 @@ Value of the last parameter. ") LastParameter; Standard_Real LastParameter(); - /****************** LinkBisCurve ******************/ - /**** md5 signature: 55ab0cec865e9ea9faed38185d303c1b ****/ + /****** Bisector_BisecPC::LinkBisCurve ******/ + /****** md5 signature: 55ab0cec865e9ea9faed38185d303c1b ******/ %feature("compactdefaultargs") LinkBisCurve; %feature("autodoc", " Parameters @@ -2634,8 +2634,8 @@ Returns the parameter on the curve1 of the projection of the point of parameter ") LinkBisCurve; Standard_Real LinkBisCurve(const Standard_Real U); - /****************** LinkCurveBis ******************/ - /**** md5 signature: b0393e62df20de8ab3e4695b6cecfbc2 ****/ + /****** Bisector_BisecPC::LinkCurveBis ******/ + /****** md5 signature: b0393e62df20de8ab3e4695b6cecfbc2 ******/ %feature("compactdefaultargs") LinkCurveBis; %feature("autodoc", " Parameters @@ -2652,8 +2652,8 @@ Returns the reciproque of linkbiscurve. ") LinkCurveBis; Standard_Real LinkCurveBis(const Standard_Real U); - /****************** NbIntervals ******************/ - /**** md5 signature: 2f9f3a515d8495f09df4987b6d0933b4 ****/ + /****** Bisector_BisecPC::NbIntervals ******/ + /****** md5 signature: 2f9f3a515d8495f09df4987b6d0933b4 ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", "Return ------- @@ -2665,8 +2665,8 @@ If necessary, breaks the curve in intervals of continuity . and returns the ") NbIntervals; Standard_Integer NbIntervals(); - /****************** Parameter ******************/ - /**** md5 signature: ca089b85d2f90fc99bae6c7f4cfeb9e5 ****/ + /****** Bisector_BisecPC::Parameter ******/ + /****** md5 signature: ca089b85d2f90fc99bae6c7f4cfeb9e5 ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", " Parameters @@ -2683,8 +2683,8 @@ Returns the parameter on corresponding to

. ") Parameter; Standard_Real Parameter(const gp_Pnt2d & P); - /****************** Perform ******************/ - /**** md5 signature: 4f1397939b801b8c018eca1a300ed682 ****/ + /****** Bisector_BisecPC::Perform ******/ + /****** md5 signature: 4f1397939b801b8c018eca1a300ed682 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -2704,8 +2704,8 @@ Construct the bisector between the point

and the curve . = 1. if ") Perform; void Perform(const opencascade::handle & Cu, const gp_Pnt2d & P, const Standard_Real Side, const Standard_Real DistMax = 500); - /****************** Reverse ******************/ - /**** md5 signature: bff3d53d1cf0b268b7de85021a2bf3c4 ****/ + /****** Bisector_BisecPC::Reverse ******/ + /****** md5 signature: bff3d53d1cf0b268b7de85021a2bf3c4 ******/ %feature("compactdefaultargs") Reverse; %feature("autodoc", "Return ------- @@ -2717,8 +2717,8 @@ Changes the direction of parametrization of . the orientation of the curve ") Reverse; void Reverse(); - /****************** ReversedParameter ******************/ - /**** md5 signature: 382721d5a4ea752fecc12f03ab0de9a1 ****/ + /****** Bisector_BisecPC::ReversedParameter ******/ + /****** md5 signature: 382721d5a4ea752fecc12f03ab0de9a1 ******/ %feature("compactdefaultargs") ReversedParameter; %feature("autodoc", " Parameters @@ -2735,8 +2735,8 @@ Returns the parameter on the reversed curve for the point of parameter u on . */ %define BLENDDOCSTRING "Blend module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_blend.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_blend.html" %enddef %module (package="OCC.Core", docstring=BLENDDOCSTRING) Blend @@ -150,8 +150,8 @@ typedef NCollection_Sequence Blend_SequenceOfPoint; %nodefaultctor Blend_AppFunction; class Blend_AppFunction : public math_FunctionSetWithDerivatives { public: - /****************** Derivatives ******************/ - /**** md5 signature: 91510de453ada53b30c3a8ed85022935 ****/ + /****** Blend_AppFunction::Derivatives ******/ + /****** md5 signature: 91510de453ada53b30c3a8ed85022935 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -169,8 +169,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; virtual Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: ea9a426b36925ee5ee90867e063c6523 ****/ + /****** Blend_AppFunction::GetBounds ******/ + /****** md5 signature: ea9a426b36925ee5ee90867e063c6523 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -188,8 +188,8 @@ Returns in the vector infbound the lowest values allowed for each of the 4 varia ") GetBounds; virtual void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetMinimalDistance ******************/ - /**** md5 signature: cf2ae1edac6b9f39bab29773592817f0 ****/ + /****** Blend_AppFunction::GetMinimalDistance ******/ + /****** md5 signature: cf2ae1edac6b9f39bab29773592817f0 ******/ %feature("compactdefaultargs") GetMinimalDistance; %feature("autodoc", "Return ------- @@ -201,8 +201,8 @@ Returns the minimal distance between two extremities of calculated sections. ") GetMinimalDistance; virtual Standard_Real GetMinimalDistance(); - /****************** GetMinimalWeight ******************/ - /**** md5 signature: 12015ca7787e9fa6bcf5f820d6632375 ****/ + /****** Blend_AppFunction::GetMinimalWeight ******/ + /****** md5 signature: 12015ca7787e9fa6bcf5f820d6632375 ******/ %feature("compactdefaultargs") GetMinimalWeight; %feature("autodoc", " Parameters @@ -219,8 +219,8 @@ Compute the minimal value of weight for each poles of all sections. ") GetMinimalWeight; virtual void GetMinimalWeight(TColStd_Array1OfReal & Weigths); - /****************** GetSectionSize ******************/ - /**** md5 signature: f308791ef8ed681d6654100e81e995bd ****/ + /****** Blend_AppFunction::GetSectionSize ******/ + /****** md5 signature: f308791ef8ed681d6654100e81e995bd ******/ %feature("compactdefaultargs") GetSectionSize; %feature("autodoc", "Return ------- @@ -232,8 +232,8 @@ Returns the length of the maximum section. ") GetSectionSize; virtual Standard_Real GetSectionSize(); - /****************** GetShape ******************/ - /**** md5 signature: 4c9523caad94a60010e14bbca0ff20fc ****/ + /****** Blend_AppFunction::GetShape ******/ + /****** md5 signature: 4c9523caad94a60010e14bbca0ff20fc ******/ %feature("compactdefaultargs") GetShape; %feature("autodoc", " Parameters @@ -252,8 +252,8 @@ No available documentation. ") GetShape; virtual void GetShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** GetTolerance ******************/ - /**** md5 signature: 9c8b08d1f0aa3ef3a04b7834c06e849d ****/ + /****** Blend_AppFunction::GetTolerance ******/ + /****** md5 signature: 9c8b08d1f0aa3ef3a04b7834c06e849d ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -271,8 +271,8 @@ Returns in the vector tolerance the parametric tolerance for each of the 4 varia ") GetTolerance; virtual void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** GetTolerance ******************/ - /**** md5 signature: 715ff82186a1d1cd1f2816a9fc072567 ****/ + /****** Blend_AppFunction::GetTolerance ******/ + /****** md5 signature: 715ff82186a1d1cd1f2816a9fc072567 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -293,8 +293,8 @@ Returns the tolerance to reach in approximation to respecte boundtol error at th ") GetTolerance; virtual void GetTolerance(const Standard_Real BoundTol, const Standard_Real SurfTol, const Standard_Real AngleTol, math_Vector & Tol3d, math_Vector & Tol1D); - /****************** Intervals ******************/ - /**** md5 signature: 7d2bf038a9213acf1609cc1244a3ee03 ****/ + /****** Blend_AppFunction::Intervals ******/ + /****** md5 signature: 7d2bf038a9213acf1609cc1244a3ee03 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -312,8 +312,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; virtual void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsRational ******************/ - /**** md5 signature: e2d546fe827c13e22032dacc2ce90819 ****/ + /****** Blend_AppFunction::IsRational ******/ + /****** md5 signature: e2d546fe827c13e22032dacc2ce90819 ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -325,8 +325,8 @@ Returns if the section is rationnal. ") IsRational; virtual Standard_Boolean IsRational(); - /****************** IsSolution ******************/ - /**** md5 signature: 65e978e7c1aeb4e253d805ec1412cadd ****/ + /****** Blend_AppFunction::IsSolution ******/ + /****** md5 signature: 65e978e7c1aeb4e253d805ec1412cadd ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -344,8 +344,8 @@ Returns standard_true if sol is a zero of the function. tol is the tolerance use ") IsSolution; virtual Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** Knots ******************/ - /**** md5 signature: 12a741eefe4a6b12fefe540137e600a7 ****/ + /****** Blend_AppFunction::Knots ******/ + /****** md5 signature: 12a741eefe4a6b12fefe540137e600a7 ******/ %feature("compactdefaultargs") Knots; %feature("autodoc", " Parameters @@ -362,8 +362,8 @@ No available documentation. ") Knots; virtual void Knots(TColStd_Array1OfReal & TKnots); - /****************** Mults ******************/ - /**** md5 signature: eca3dd33252e6a889c9236a94758c0f8 ****/ + /****** Blend_AppFunction::Mults ******/ + /****** md5 signature: eca3dd33252e6a889c9236a94758c0f8 ******/ %feature("compactdefaultargs") Mults; %feature("autodoc", " Parameters @@ -380,8 +380,8 @@ No available documentation. ") Mults; virtual void Mults(TColStd_Array1OfInteger & TMults); - /****************** NbEquations ******************/ - /**** md5 signature: ba4fd9483f383d968d2ec54d4ae3fbf1 ****/ + /****** Blend_AppFunction::NbEquations ******/ + /****** md5 signature: ba4fd9483f383d968d2ec54d4ae3fbf1 ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -393,8 +393,8 @@ Returns the number of equations of the function. ") NbEquations; virtual Standard_Integer NbEquations(); - /****************** NbIntervals ******************/ - /**** md5 signature: cb7f68d4b2c30f29cd5ba6f81443d314 ****/ + /****** Blend_AppFunction::NbIntervals ******/ + /****** md5 signature: cb7f68d4b2c30f29cd5ba6f81443d314 ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -411,8 +411,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; virtual Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** NbVariables ******************/ - /**** md5 signature: 9592108ebf305562827d51d05d64eecc ****/ + /****** Blend_AppFunction::NbVariables ******/ + /****** md5 signature: 9592108ebf305562827d51d05d64eecc ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -424,8 +424,8 @@ Returns the number of variables of the function. ") NbVariables; virtual Standard_Integer NbVariables(); - /****************** Parameter ******************/ - /**** md5 signature: e076698f3af75bcd0d5e9b5ebefa203d ****/ + /****** Blend_AppFunction::Parameter ******/ + /****** md5 signature: e076698f3af75bcd0d5e9b5ebefa203d ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", " Parameters @@ -442,8 +442,8 @@ Returns the parameter of the point p. used to impose the parameters in the appro ") Parameter; Standard_Real Parameter(const Blend_Point & P); - /****************** Pnt1 ******************/ - /**** md5 signature: bb9bfa59c92a2029f6434d5fcd5fa96c ****/ + /****** Blend_AppFunction::Pnt1 ******/ + /****** md5 signature: bb9bfa59c92a2029f6434d5fcd5fa96c ******/ %feature("compactdefaultargs") Pnt1; %feature("autodoc", "Return ------- @@ -455,8 +455,8 @@ Returns the point on the first support. ") Pnt1; virtual const gp_Pnt Pnt1(); - /****************** Pnt2 ******************/ - /**** md5 signature: dfef6173347bf841f782a073bb54623f ****/ + /****** Blend_AppFunction::Pnt2 ******/ + /****** md5 signature: dfef6173347bf841f782a073bb54623f ******/ %feature("compactdefaultargs") Pnt2; %feature("autodoc", "Return ------- @@ -468,8 +468,8 @@ Returns the point on the first support. ") Pnt2; virtual const gp_Pnt Pnt2(); - /****************** Resolution ******************/ - /**** md5 signature: 9817e96f28a752e33f073053bde0ba81 ****/ + /****** Blend_AppFunction::Resolution ******/ + /****** md5 signature: 9817e96f28a752e33f073053bde0ba81 ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -488,8 +488,8 @@ No available documentation. ") Resolution; virtual void Resolution(const Standard_Integer IC2d, const Standard_Real Tol, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Section ******************/ - /**** md5 signature: e37bbcbd1ce3013637ce65f73847d93d ****/ + /****** Blend_AppFunction::Section ******/ + /****** md5 signature: e37bbcbd1ce3013637ce65f73847d93d ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -512,8 +512,8 @@ Used for the first and last section the method returns standard_true if the deri ") Section; virtual Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths); - /****************** Section ******************/ - /**** md5 signature: a53c7695ddb71364b3f1a57ab3437f2c ****/ + /****** Blend_AppFunction::Section ******/ + /****** md5 signature: a53c7695ddb71364b3f1a57ab3437f2c ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -533,8 +533,8 @@ No available documentation. ") Section; virtual void Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfPnt2d & Poles2d, TColStd_Array1OfReal & Weigths); - /****************** Section ******************/ - /**** md5 signature: 45cb2fd4a3176732a1653dca67ba6422 ****/ + /****** Blend_AppFunction::Section ******/ + /****** md5 signature: 45cb2fd4a3176732a1653dca67ba6422 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -560,8 +560,8 @@ Used for the first and last section the method returns standard_true if the deri ") Section; virtual Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfVec & D2Poles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColgp_Array1OfVec2d & D2Poles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths, TColStd_Array1OfReal & D2Weigths); - /****************** Set ******************/ - /**** md5 signature: 6ea1b4b1c732128de882a7f7a3bdd939 ****/ + /****** Blend_AppFunction::Set ******/ + /****** md5 signature: 6ea1b4b1c732128de882a7f7a3bdd939 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -578,8 +578,8 @@ Sets the value of the parameter along the guide line. this determines the plane ") Set; virtual void Set(const Standard_Real Param); - /****************** Set ******************/ - /**** md5 signature: 72dca3214392c1598e10f82965feedf7 ****/ + /****** Blend_AppFunction::Set ******/ + /****** md5 signature: 72dca3214392c1598e10f82965feedf7 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -597,8 +597,8 @@ Sets the bounds of the parametric interval on the guide line. this determines th ") Set; virtual void Set(const Standard_Real First, const Standard_Real Last); - /****************** Value ******************/ - /**** md5 signature: fbdd70146ff924dbae65883aeb76c6f7 ****/ + /****** Blend_AppFunction::Value ******/ + /****** md5 signature: fbdd70146ff924dbae65883aeb76c6f7 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -616,8 +616,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; virtual Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: 4dca620a1b80d0862f0bc5ceb7679845 ****/ + /****** Blend_AppFunction::Values ******/ + /****** md5 signature: 4dca620a1b80d0862f0bc5ceb7679845 ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -651,8 +651,8 @@ Returns the values of the functions and the derivatives for the variable %nodefaultctor Blend_CurvPointFuncInv; class Blend_CurvPointFuncInv : public math_FunctionSetWithDerivatives { public: - /****************** Derivatives ******************/ - /**** md5 signature: 91510de453ada53b30c3a8ed85022935 ****/ + /****** Blend_CurvPointFuncInv::Derivatives ******/ + /****** md5 signature: 91510de453ada53b30c3a8ed85022935 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -670,8 +670,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; virtual Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: ea9a426b36925ee5ee90867e063c6523 ****/ + /****** Blend_CurvPointFuncInv::GetBounds ******/ + /****** md5 signature: ea9a426b36925ee5ee90867e063c6523 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -689,8 +689,8 @@ Returns in the vector infbound the lowest values allowed for each of the 3 varia ") GetBounds; virtual void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetTolerance ******************/ - /**** md5 signature: 9c8b08d1f0aa3ef3a04b7834c06e849d ****/ + /****** Blend_CurvPointFuncInv::GetTolerance ******/ + /****** md5 signature: 9c8b08d1f0aa3ef3a04b7834c06e849d ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -708,8 +708,8 @@ Returns in the vector tolerance the parametric tolerance for each of the 3 varia ") GetTolerance; virtual void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** IsSolution ******************/ - /**** md5 signature: 65e978e7c1aeb4e253d805ec1412cadd ****/ + /****** Blend_CurvPointFuncInv::IsSolution ******/ + /****** md5 signature: 65e978e7c1aeb4e253d805ec1412cadd ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -727,8 +727,8 @@ Returns standard_true if sol is a zero of the function. tol is the tolerance use ") IsSolution; virtual Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** NbEquations ******************/ - /**** md5 signature: ba4fd9483f383d968d2ec54d4ae3fbf1 ****/ + /****** Blend_CurvPointFuncInv::NbEquations ******/ + /****** md5 signature: ba4fd9483f383d968d2ec54d4ae3fbf1 ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -740,8 +740,8 @@ Returns the number of equations of the function. ") NbEquations; virtual Standard_Integer NbEquations(); - /****************** NbVariables ******************/ - /**** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ****/ + /****** Blend_CurvPointFuncInv::NbVariables ******/ + /****** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -753,8 +753,8 @@ Returns 3. ") NbVariables; Standard_Integer NbVariables(); - /****************** Set ******************/ - /**** md5 signature: 4a9881a4a80757c31b5543d94b3ea3d9 ****/ + /****** Blend_CurvPointFuncInv::Set ******/ + /****** md5 signature: 4a9881a4a80757c31b5543d94b3ea3d9 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -771,8 +771,8 @@ Set the point on which a solution has to be found. ") Set; virtual void Set(const gp_Pnt & P); - /****************** Value ******************/ - /**** md5 signature: fbdd70146ff924dbae65883aeb76c6f7 ****/ + /****** Blend_CurvPointFuncInv::Value ******/ + /****** md5 signature: fbdd70146ff924dbae65883aeb76c6f7 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -790,8 +790,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; virtual Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: 4dca620a1b80d0862f0bc5ceb7679845 ****/ + /****** Blend_CurvPointFuncInv::Values ******/ + /****** md5 signature: 4dca620a1b80d0862f0bc5ceb7679845 ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -825,8 +825,8 @@ Returns the values of the functions and the derivatives for the variable %nodefaultctor Blend_FuncInv; class Blend_FuncInv : public math_FunctionSetWithDerivatives { public: - /****************** Derivatives ******************/ - /**** md5 signature: 91510de453ada53b30c3a8ed85022935 ****/ + /****** Blend_FuncInv::Derivatives ******/ + /****** md5 signature: 91510de453ada53b30c3a8ed85022935 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -844,8 +844,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; virtual Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: ea9a426b36925ee5ee90867e063c6523 ****/ + /****** Blend_FuncInv::GetBounds ******/ + /****** md5 signature: ea9a426b36925ee5ee90867e063c6523 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -863,8 +863,8 @@ Returns in the vector infbound the lowest values allowed for each of the 4 varia ") GetBounds; virtual void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetTolerance ******************/ - /**** md5 signature: 9c8b08d1f0aa3ef3a04b7834c06e849d ****/ + /****** Blend_FuncInv::GetTolerance ******/ + /****** md5 signature: 9c8b08d1f0aa3ef3a04b7834c06e849d ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -882,8 +882,8 @@ Returns in the vector tolerance the parametric tolerance for each of the 4 varia ") GetTolerance; virtual void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** IsSolution ******************/ - /**** md5 signature: 65e978e7c1aeb4e253d805ec1412cadd ****/ + /****** Blend_FuncInv::IsSolution ******/ + /****** md5 signature: 65e978e7c1aeb4e253d805ec1412cadd ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -901,8 +901,8 @@ Returns standard_true if sol is a zero of the function. tol is the tolerance use ") IsSolution; virtual Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** NbEquations ******************/ - /**** md5 signature: ba4fd9483f383d968d2ec54d4ae3fbf1 ****/ + /****** Blend_FuncInv::NbEquations ******/ + /****** md5 signature: ba4fd9483f383d968d2ec54d4ae3fbf1 ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -914,8 +914,8 @@ Returns the number of equations of the function. ") NbEquations; virtual Standard_Integer NbEquations(); - /****************** NbVariables ******************/ - /**** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ****/ + /****** Blend_FuncInv::NbVariables ******/ + /****** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -927,8 +927,8 @@ Returns 4. ") NbVariables; Standard_Integer NbVariables(); - /****************** Set ******************/ - /**** md5 signature: 3e783af1d10cfe5251f5d68b2e1a28b8 ****/ + /****** Blend_FuncInv::Set ******/ + /****** md5 signature: 3e783af1d10cfe5251f5d68b2e1a28b8 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -946,8 +946,8 @@ Sets the curveonsurface on which a solution has to be found. if is set ") Set; virtual void Set(const Standard_Boolean OnFirst, const opencascade::handle & COnSurf); - /****************** Value ******************/ - /**** md5 signature: fbdd70146ff924dbae65883aeb76c6f7 ****/ + /****** Blend_FuncInv::Value ******/ + /****** md5 signature: fbdd70146ff924dbae65883aeb76c6f7 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -965,8 +965,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; virtual Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: 4dca620a1b80d0862f0bc5ceb7679845 ****/ + /****** Blend_FuncInv::Values ******/ + /****** md5 signature: 4dca620a1b80d0862f0bc5ceb7679845 ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -999,8 +999,8 @@ Returns the values of the functions and the derivatives for the variable ********************/ class Blend_Point { public: - /****************** Blend_Point ******************/ - /**** md5 signature: a7dc6a3a5883092f5a0ad44324b7501d ****/ + /****** Blend_Point::Blend_Point ******/ + /****** md5 signature: a7dc6a3a5883092f5a0ad44324b7501d ******/ %feature("compactdefaultargs") Blend_Point; %feature("autodoc", "Return ------- @@ -1012,8 +1012,8 @@ No available documentation. ") Blend_Point; Blend_Point(); - /****************** Blend_Point ******************/ - /**** md5 signature: bfd92b440e1bbdd329053c69a4608140 ****/ + /****** Blend_Point::Blend_Point ******/ + /****** md5 signature: bfd92b440e1bbdd329053c69a4608140 ******/ %feature("compactdefaultargs") Blend_Point; %feature("autodoc", " Parameters @@ -1040,8 +1040,8 @@ Creates a point on 2 surfaces, with tangents. ") Blend_Point; Blend_Point(const gp_Pnt & Pt1, const gp_Pnt & Pt2, const Standard_Real Param, const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, const gp_Vec & Tg1, const gp_Vec & Tg2, const gp_Vec2d & Tg12d, const gp_Vec2d & Tg22d); - /****************** Blend_Point ******************/ - /**** md5 signature: 0fb76c701b6a53b225023640137583ef ****/ + /****** Blend_Point::Blend_Point ******/ + /****** md5 signature: 0fb76c701b6a53b225023640137583ef ******/ %feature("compactdefaultargs") Blend_Point; %feature("autodoc", " Parameters @@ -1064,8 +1064,8 @@ Creates a point on 2 surfaces, without tangents. ") Blend_Point; Blend_Point(const gp_Pnt & Pt1, const gp_Pnt & Pt2, const Standard_Real Param, const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2); - /****************** Blend_Point ******************/ - /**** md5 signature: 7601a289d490e51aebd651c222437121 ****/ + /****** Blend_Point::Blend_Point ******/ + /****** md5 signature: 7601a289d490e51aebd651c222437121 ******/ %feature("compactdefaultargs") Blend_Point; %feature("autodoc", " Parameters @@ -1090,8 +1090,8 @@ Creates a point on a surface and a curve, with tangents. ") Blend_Point; Blend_Point(const gp_Pnt & Pts, const gp_Pnt & Ptc, const Standard_Real Param, const Standard_Real U, const Standard_Real V, const Standard_Real W, const gp_Vec & Tgs, const gp_Vec & Tgc, const gp_Vec2d & Tg2d); - /****************** Blend_Point ******************/ - /**** md5 signature: 03f8ef157b71345a764df7379c28b348 ****/ + /****** Blend_Point::Blend_Point ******/ + /****** md5 signature: 03f8ef157b71345a764df7379c28b348 ******/ %feature("compactdefaultargs") Blend_Point; %feature("autodoc", " Parameters @@ -1113,8 +1113,8 @@ Creates a point on a surface and a curve, without tangents. ") Blend_Point; Blend_Point(const gp_Pnt & Pts, const gp_Pnt & Ptc, const Standard_Real Param, const Standard_Real U, const Standard_Real V, const Standard_Real W); - /****************** Blend_Point ******************/ - /**** md5 signature: aeb9c99a45a2b2f0e7c0a322d8eb1ec8 ****/ + /****** Blend_Point::Blend_Point ******/ + /****** md5 signature: aeb9c99a45a2b2f0e7c0a322d8eb1ec8 ******/ %feature("compactdefaultargs") Blend_Point; %feature("autodoc", " Parameters @@ -1142,8 +1142,8 @@ Creates a point on a surface and a curve on surface, with tangents. ") Blend_Point; Blend_Point(const gp_Pnt & Pt1, const gp_Pnt & Pt2, const Standard_Real Param, const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, const Standard_Real PC, const gp_Vec & Tg1, const gp_Vec & Tg2, const gp_Vec2d & Tg12d, const gp_Vec2d & Tg22d); - /****************** Blend_Point ******************/ - /**** md5 signature: 3ae3cb9415d4ffaa99cf099b121c1a74 ****/ + /****** Blend_Point::Blend_Point ******/ + /****** md5 signature: 3ae3cb9415d4ffaa99cf099b121c1a74 ******/ %feature("compactdefaultargs") Blend_Point; %feature("autodoc", " Parameters @@ -1167,8 +1167,8 @@ Creates a point on a surface and a curve on surface, without tangents. ") Blend_Point; Blend_Point(const gp_Pnt & Pt1, const gp_Pnt & Pt2, const Standard_Real Param, const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, const Standard_Real PC); - /****************** Blend_Point ******************/ - /**** md5 signature: 412dcf133da7d04dc340c64f4a96b385 ****/ + /****** Blend_Point::Blend_Point ******/ + /****** md5 signature: 412dcf133da7d04dc340c64f4a96b385 ******/ %feature("compactdefaultargs") Blend_Point; %feature("autodoc", " Parameters @@ -1197,8 +1197,8 @@ Creates a point on two curves on surfaces, with tangents. ") Blend_Point; Blend_Point(const gp_Pnt & Pt1, const gp_Pnt & Pt2, const Standard_Real Param, const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, const Standard_Real PC1, const Standard_Real PC2, const gp_Vec & Tg1, const gp_Vec & Tg2, const gp_Vec2d & Tg12d, const gp_Vec2d & Tg22d); - /****************** Blend_Point ******************/ - /**** md5 signature: 681c03baf2a5e55e7f0e7ea3fad4a3a7 ****/ + /****** Blend_Point::Blend_Point ******/ + /****** md5 signature: 681c03baf2a5e55e7f0e7ea3fad4a3a7 ******/ %feature("compactdefaultargs") Blend_Point; %feature("autodoc", " Parameters @@ -1223,8 +1223,8 @@ Creates a point on two curves on surfaces, with tangents. ") Blend_Point; Blend_Point(const gp_Pnt & Pt1, const gp_Pnt & Pt2, const Standard_Real Param, const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, const Standard_Real PC1, const Standard_Real PC2); - /****************** IsTangencyPoint ******************/ - /**** md5 signature: a9c9faea523a7d80ff8416e04b887e70 ****/ + /****** Blend_Point::IsTangencyPoint ******/ + /****** md5 signature: a9c9faea523a7d80ff8416e04b887e70 ******/ %feature("compactdefaultargs") IsTangencyPoint; %feature("autodoc", "Return ------- @@ -1236,8 +1236,8 @@ Returns standard_true if it was not possible to compute the tangent vectors at p ") IsTangencyPoint; Standard_Boolean IsTangencyPoint(); - /****************** Parameter ******************/ - /**** md5 signature: ecccdeaeaa0deed24f47e61ad75d24f1 ****/ + /****** Blend_Point::Parameter ******/ + /****** md5 signature: ecccdeaeaa0deed24f47e61ad75d24f1 ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", "Return ------- @@ -1249,8 +1249,8 @@ No available documentation. ") Parameter; Standard_Real Parameter(); - /****************** ParameterOnC ******************/ - /**** md5 signature: ec9af703468ce0fd8ed5aa736ef095ff ****/ + /****** Blend_Point::ParameterOnC ******/ + /****** md5 signature: ec9af703468ce0fd8ed5aa736ef095ff ******/ %feature("compactdefaultargs") ParameterOnC; %feature("autodoc", "Return ------- @@ -1262,8 +1262,8 @@ No available documentation. ") ParameterOnC; Standard_Real ParameterOnC(); - /****************** ParameterOnC1 ******************/ - /**** md5 signature: 9841a291b54b176d5fffb2beae83c142 ****/ + /****** Blend_Point::ParameterOnC1 ******/ + /****** md5 signature: 9841a291b54b176d5fffb2beae83c142 ******/ %feature("compactdefaultargs") ParameterOnC1; %feature("autodoc", "Return ------- @@ -1275,8 +1275,8 @@ No available documentation. ") ParameterOnC1; Standard_Real ParameterOnC1(); - /****************** ParameterOnC2 ******************/ - /**** md5 signature: 3edd96ad6a6089fd8c0830a29f8b8dec ****/ + /****** Blend_Point::ParameterOnC2 ******/ + /****** md5 signature: 3edd96ad6a6089fd8c0830a29f8b8dec ******/ %feature("compactdefaultargs") ParameterOnC2; %feature("autodoc", "Return ------- @@ -1288,8 +1288,8 @@ No available documentation. ") ParameterOnC2; Standard_Real ParameterOnC2(); - /****************** ParametersOnS ******************/ - /**** md5 signature: b7e9d5b50df021c8af5af493baffd0b4 ****/ + /****** Blend_Point::ParametersOnS ******/ + /****** md5 signature: b7e9d5b50df021c8af5af493baffd0b4 ******/ %feature("compactdefaultargs") ParametersOnS; %feature("autodoc", " Parameters @@ -1306,8 +1306,8 @@ No available documentation. ") ParametersOnS; void ParametersOnS(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** ParametersOnS1 ******************/ - /**** md5 signature: 65a097ef44a5cf9a58ab746f2da6c181 ****/ + /****** Blend_Point::ParametersOnS1 ******/ + /****** md5 signature: 65a097ef44a5cf9a58ab746f2da6c181 ******/ %feature("compactdefaultargs") ParametersOnS1; %feature("autodoc", " Parameters @@ -1324,8 +1324,8 @@ No available documentation. ") ParametersOnS1; void ParametersOnS1(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** ParametersOnS2 ******************/ - /**** md5 signature: 77976f8d675bab277c77e4c02c68ee8f ****/ + /****** Blend_Point::ParametersOnS2 ******/ + /****** md5 signature: 77976f8d675bab277c77e4c02c68ee8f ******/ %feature("compactdefaultargs") ParametersOnS2; %feature("autodoc", " Parameters @@ -1342,8 +1342,8 @@ No available documentation. ") ParametersOnS2; void ParametersOnS2(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** PointOnC ******************/ - /**** md5 signature: 86876235494ef8da7ca49324811ac0e0 ****/ + /****** Blend_Point::PointOnC ******/ + /****** md5 signature: 86876235494ef8da7ca49324811ac0e0 ******/ %feature("compactdefaultargs") PointOnC; %feature("autodoc", "Return ------- @@ -1355,8 +1355,8 @@ No available documentation. ") PointOnC; const gp_Pnt PointOnC(); - /****************** PointOnC1 ******************/ - /**** md5 signature: c2e08b2848fd3090c35b3eade37ef0ff ****/ + /****** Blend_Point::PointOnC1 ******/ + /****** md5 signature: c2e08b2848fd3090c35b3eade37ef0ff ******/ %feature("compactdefaultargs") PointOnC1; %feature("autodoc", "Return ------- @@ -1368,8 +1368,8 @@ No available documentation. ") PointOnC1; const gp_Pnt PointOnC1(); - /****************** PointOnC2 ******************/ - /**** md5 signature: 1a44b9d6f084b6ebd1d95746e937f2c5 ****/ + /****** Blend_Point::PointOnC2 ******/ + /****** md5 signature: 1a44b9d6f084b6ebd1d95746e937f2c5 ******/ %feature("compactdefaultargs") PointOnC2; %feature("autodoc", "Return ------- @@ -1381,8 +1381,8 @@ No available documentation. ") PointOnC2; const gp_Pnt PointOnC2(); - /****************** PointOnS ******************/ - /**** md5 signature: 7701a4dd49c389b38b1770bec82a60cd ****/ + /****** Blend_Point::PointOnS ******/ + /****** md5 signature: 7701a4dd49c389b38b1770bec82a60cd ******/ %feature("compactdefaultargs") PointOnS; %feature("autodoc", "Return ------- @@ -1394,8 +1394,8 @@ No available documentation. ") PointOnS; const gp_Pnt PointOnS(); - /****************** PointOnS1 ******************/ - /**** md5 signature: d0887da6b7c195fe6f26541a1fe42cb2 ****/ + /****** Blend_Point::PointOnS1 ******/ + /****** md5 signature: d0887da6b7c195fe6f26541a1fe42cb2 ******/ %feature("compactdefaultargs") PointOnS1; %feature("autodoc", "Return ------- @@ -1407,8 +1407,8 @@ No available documentation. ") PointOnS1; const gp_Pnt PointOnS1(); - /****************** PointOnS2 ******************/ - /**** md5 signature: 75828b1eec68cc5ffaaaa49216ae261a ****/ + /****** Blend_Point::PointOnS2 ******/ + /****** md5 signature: 75828b1eec68cc5ffaaaa49216ae261a ******/ %feature("compactdefaultargs") PointOnS2; %feature("autodoc", "Return ------- @@ -1420,8 +1420,8 @@ No available documentation. ") PointOnS2; const gp_Pnt PointOnS2(); - /****************** SetParameter ******************/ - /**** md5 signature: 26222f3f8c770197bec88d8e30e2baa3 ****/ + /****** Blend_Point::SetParameter ******/ + /****** md5 signature: 26222f3f8c770197bec88d8e30e2baa3 ******/ %feature("compactdefaultargs") SetParameter; %feature("autodoc", " Parameters @@ -1438,8 +1438,8 @@ Changes parameter on existing point. ") SetParameter; void SetParameter(const Standard_Real Param); - /****************** SetValue ******************/ - /**** md5 signature: 234a6a1e07e1c1d8d9bffffb81b4d76f ****/ + /****** Blend_Point::SetValue ******/ + /****** md5 signature: 234a6a1e07e1c1d8d9bffffb81b4d76f ******/ %feature("compactdefaultargs") SetValue; %feature("autodoc", " Parameters @@ -1466,8 +1466,8 @@ Set the values for a point on 2 surfaces, with tangents. ") SetValue; void SetValue(const gp_Pnt & Pt1, const gp_Pnt & Pt2, const Standard_Real Param, const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, const gp_Vec & Tg1, const gp_Vec & Tg2, const gp_Vec2d & Tg12d, const gp_Vec2d & Tg22d); - /****************** SetValue ******************/ - /**** md5 signature: 873da2d681b7c23b1554d86bc11bc682 ****/ + /****** Blend_Point::SetValue ******/ + /****** md5 signature: 873da2d681b7c23b1554d86bc11bc682 ******/ %feature("compactdefaultargs") SetValue; %feature("autodoc", " Parameters @@ -1490,8 +1490,8 @@ Set the values for a point on 2 surfaces, without tangents. ") SetValue; void SetValue(const gp_Pnt & Pt1, const gp_Pnt & Pt2, const Standard_Real Param, const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2); - /****************** SetValue ******************/ - /**** md5 signature: 41c56f1035ba568b921511edcae6b145 ****/ + /****** Blend_Point::SetValue ******/ + /****** md5 signature: 41c56f1035ba568b921511edcae6b145 ******/ %feature("compactdefaultargs") SetValue; %feature("autodoc", " Parameters @@ -1516,8 +1516,8 @@ Set the values for a point on a surface and a curve, with tangents. ") SetValue; void SetValue(const gp_Pnt & Pts, const gp_Pnt & Ptc, const Standard_Real Param, const Standard_Real U, const Standard_Real V, const Standard_Real W, const gp_Vec & Tgs, const gp_Vec & Tgc, const gp_Vec2d & Tg2d); - /****************** SetValue ******************/ - /**** md5 signature: 3df8f22482d57a6d0df3c49499af12d4 ****/ + /****** Blend_Point::SetValue ******/ + /****** md5 signature: 3df8f22482d57a6d0df3c49499af12d4 ******/ %feature("compactdefaultargs") SetValue; %feature("autodoc", " Parameters @@ -1539,8 +1539,8 @@ Set the values for a point on a surface and a curve, without tangents. ") SetValue; void SetValue(const gp_Pnt & Pts, const gp_Pnt & Ptc, const Standard_Real Param, const Standard_Real U, const Standard_Real V, const Standard_Real W); - /****************** SetValue ******************/ - /**** md5 signature: 79243c566947946429fbf9d45a4a270a ****/ + /****** Blend_Point::SetValue ******/ + /****** md5 signature: 79243c566947946429fbf9d45a4a270a ******/ %feature("compactdefaultargs") SetValue; %feature("autodoc", " Parameters @@ -1568,8 +1568,8 @@ Creates a point on a surface and a curve on surface, with tangents. ") SetValue; void SetValue(const gp_Pnt & Pt1, const gp_Pnt & Pt2, const Standard_Real Param, const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, const Standard_Real PC, const gp_Vec & Tg1, const gp_Vec & Tg2, const gp_Vec2d & Tg12d, const gp_Vec2d & Tg22d); - /****************** SetValue ******************/ - /**** md5 signature: fcfa5044db6ab2c8ff1ff3e7611086db ****/ + /****** Blend_Point::SetValue ******/ + /****** md5 signature: fcfa5044db6ab2c8ff1ff3e7611086db ******/ %feature("compactdefaultargs") SetValue; %feature("autodoc", " Parameters @@ -1593,8 +1593,8 @@ Creates a point on a surface and a curve on surface, without tangents. ") SetValue; void SetValue(const gp_Pnt & Pt1, const gp_Pnt & Pt2, const Standard_Real Param, const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, const Standard_Real PC); - /****************** SetValue ******************/ - /**** md5 signature: ca436d03badc3f9852ac9491c1653d76 ****/ + /****** Blend_Point::SetValue ******/ + /****** md5 signature: ca436d03badc3f9852ac9491c1653d76 ******/ %feature("compactdefaultargs") SetValue; %feature("autodoc", " Parameters @@ -1623,8 +1623,8 @@ Creates a point on two curves on surfaces, with tangents. ") SetValue; void SetValue(const gp_Pnt & Pt1, const gp_Pnt & Pt2, const Standard_Real Param, const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, const Standard_Real PC1, const Standard_Real PC2, const gp_Vec & Tg1, const gp_Vec & Tg2, const gp_Vec2d & Tg12d, const gp_Vec2d & Tg22d); - /****************** SetValue ******************/ - /**** md5 signature: b71555f540c1f3ef7c5e6745a1bfa800 ****/ + /****** Blend_Point::SetValue ******/ + /****** md5 signature: b71555f540c1f3ef7c5e6745a1bfa800 ******/ %feature("compactdefaultargs") SetValue; %feature("autodoc", " Parameters @@ -1649,8 +1649,8 @@ Creates a point on two curves on surfaces, without tangents. ") SetValue; void SetValue(const gp_Pnt & Pt1, const gp_Pnt & Pt2, const Standard_Real Param, const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, const Standard_Real PC1, const Standard_Real PC2); - /****************** SetValue ******************/ - /**** md5 signature: 49eafa49e2fecfee4281cb0ffd3f18b2 ****/ + /****** Blend_Point::SetValue ******/ + /****** md5 signature: 49eafa49e2fecfee4281cb0ffd3f18b2 ******/ %feature("compactdefaultargs") SetValue; %feature("autodoc", " Parameters @@ -1671,8 +1671,8 @@ Creates a point on two curves. ") SetValue; void SetValue(const gp_Pnt & Pt1, const gp_Pnt & Pt2, const Standard_Real Param, const Standard_Real PC1, const Standard_Real PC2); - /****************** Tangent2d ******************/ - /**** md5 signature: 45c4e6751bb86fa909ea384a33007ff3 ****/ + /****** Blend_Point::Tangent2d ******/ + /****** md5 signature: 45c4e6751bb86fa909ea384a33007ff3 ******/ %feature("compactdefaultargs") Tangent2d; %feature("autodoc", "Return ------- @@ -1684,8 +1684,8 @@ No available documentation. ") Tangent2d; gp_Vec2d Tangent2d(); - /****************** Tangent2dOnS1 ******************/ - /**** md5 signature: 1272a269793969dd1430e2756ce7faa2 ****/ + /****** Blend_Point::Tangent2dOnS1 ******/ + /****** md5 signature: 1272a269793969dd1430e2756ce7faa2 ******/ %feature("compactdefaultargs") Tangent2dOnS1; %feature("autodoc", "Return ------- @@ -1697,8 +1697,8 @@ No available documentation. ") Tangent2dOnS1; gp_Vec2d Tangent2dOnS1(); - /****************** Tangent2dOnS2 ******************/ - /**** md5 signature: 4dfd24a1437d0c42574ef4b6ea11a58e ****/ + /****** Blend_Point::Tangent2dOnS2 ******/ + /****** md5 signature: 4dfd24a1437d0c42574ef4b6ea11a58e ******/ %feature("compactdefaultargs") Tangent2dOnS2; %feature("autodoc", "Return ------- @@ -1710,8 +1710,8 @@ No available documentation. ") Tangent2dOnS2; gp_Vec2d Tangent2dOnS2(); - /****************** TangentOnC ******************/ - /**** md5 signature: b61d65d6519e567760e4657923cd2fc7 ****/ + /****** Blend_Point::TangentOnC ******/ + /****** md5 signature: b61d65d6519e567760e4657923cd2fc7 ******/ %feature("compactdefaultargs") TangentOnC; %feature("autodoc", "Return ------- @@ -1723,8 +1723,8 @@ No available documentation. ") TangentOnC; const gp_Vec TangentOnC(); - /****************** TangentOnC1 ******************/ - /**** md5 signature: f6d4e0b928aa813efbc0e69a661fbd6b ****/ + /****** Blend_Point::TangentOnC1 ******/ + /****** md5 signature: f6d4e0b928aa813efbc0e69a661fbd6b ******/ %feature("compactdefaultargs") TangentOnC1; %feature("autodoc", "Return ------- @@ -1736,8 +1736,8 @@ No available documentation. ") TangentOnC1; const gp_Vec TangentOnC1(); - /****************** TangentOnC2 ******************/ - /**** md5 signature: 1a02192f5a7755535661f3b54d08dad0 ****/ + /****** Blend_Point::TangentOnC2 ******/ + /****** md5 signature: 1a02192f5a7755535661f3b54d08dad0 ******/ %feature("compactdefaultargs") TangentOnC2; %feature("autodoc", "Return ------- @@ -1749,8 +1749,8 @@ No available documentation. ") TangentOnC2; const gp_Vec TangentOnC2(); - /****************** TangentOnS ******************/ - /**** md5 signature: 6a76df7a0ec21039226ae1d5b4797449 ****/ + /****** Blend_Point::TangentOnS ******/ + /****** md5 signature: 6a76df7a0ec21039226ae1d5b4797449 ******/ %feature("compactdefaultargs") TangentOnS; %feature("autodoc", "Return ------- @@ -1762,8 +1762,8 @@ No available documentation. ") TangentOnS; const gp_Vec TangentOnS(); - /****************** TangentOnS1 ******************/ - /**** md5 signature: 5f25bebb313d4cf43ba40f8884ebd1d5 ****/ + /****** Blend_Point::TangentOnS1 ******/ + /****** md5 signature: 5f25bebb313d4cf43ba40f8884ebd1d5 ******/ %feature("compactdefaultargs") TangentOnS1; %feature("autodoc", "Return ------- @@ -1775,8 +1775,8 @@ No available documentation. ") TangentOnS1; const gp_Vec TangentOnS1(); - /****************** TangentOnS2 ******************/ - /**** md5 signature: 669f5d85c695d94605c7169a969c3d0f ****/ + /****** Blend_Point::TangentOnS2 ******/ + /****** md5 signature: 669f5d85c695d94605c7169a969c3d0f ******/ %feature("compactdefaultargs") TangentOnS2; %feature("autodoc", "Return ------- @@ -1803,8 +1803,8 @@ No available documentation. %nodefaultctor Blend_SurfCurvFuncInv; class Blend_SurfCurvFuncInv : public math_FunctionSetWithDerivatives { public: - /****************** Derivatives ******************/ - /**** md5 signature: 91510de453ada53b30c3a8ed85022935 ****/ + /****** Blend_SurfCurvFuncInv::Derivatives ******/ + /****** md5 signature: 91510de453ada53b30c3a8ed85022935 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -1822,8 +1822,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; virtual Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: ea9a426b36925ee5ee90867e063c6523 ****/ + /****** Blend_SurfCurvFuncInv::GetBounds ******/ + /****** md5 signature: ea9a426b36925ee5ee90867e063c6523 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -1841,8 +1841,8 @@ Returns in the vector infbound the lowest values allowed for each of the 3 varia ") GetBounds; virtual void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetTolerance ******************/ - /**** md5 signature: 9c8b08d1f0aa3ef3a04b7834c06e849d ****/ + /****** Blend_SurfCurvFuncInv::GetTolerance ******/ + /****** md5 signature: 9c8b08d1f0aa3ef3a04b7834c06e849d ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -1860,8 +1860,8 @@ Returns in the vector tolerance the parametric tolerance for each of the 3 varia ") GetTolerance; virtual void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** IsSolution ******************/ - /**** md5 signature: 65e978e7c1aeb4e253d805ec1412cadd ****/ + /****** Blend_SurfCurvFuncInv::IsSolution ******/ + /****** md5 signature: 65e978e7c1aeb4e253d805ec1412cadd ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -1879,8 +1879,8 @@ Returns standard_true if sol is a zero of the function. tol is the tolerance use ") IsSolution; virtual Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** NbEquations ******************/ - /**** md5 signature: ba4fd9483f383d968d2ec54d4ae3fbf1 ****/ + /****** Blend_SurfCurvFuncInv::NbEquations ******/ + /****** md5 signature: ba4fd9483f383d968d2ec54d4ae3fbf1 ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -1892,8 +1892,8 @@ Returns the number of equations of the function. ") NbEquations; virtual Standard_Integer NbEquations(); - /****************** NbVariables ******************/ - /**** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ****/ + /****** Blend_SurfCurvFuncInv::NbVariables ******/ + /****** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -1905,8 +1905,8 @@ Returns 3. ") NbVariables; Standard_Integer NbVariables(); - /****************** Set ******************/ - /**** md5 signature: 0289f8e5f7cd6af48b5eae57db73f4e7 ****/ + /****** Blend_SurfCurvFuncInv::Set ******/ + /****** md5 signature: 0289f8e5f7cd6af48b5eae57db73f4e7 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -1923,8 +1923,8 @@ Set the point on which a solution has to be found. ") Set; virtual void Set(const opencascade::handle & Rst); - /****************** Value ******************/ - /**** md5 signature: fbdd70146ff924dbae65883aeb76c6f7 ****/ + /****** Blend_SurfCurvFuncInv::Value ******/ + /****** md5 signature: fbdd70146ff924dbae65883aeb76c6f7 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -1942,8 +1942,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; virtual Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: 4dca620a1b80d0862f0bc5ceb7679845 ****/ + /****** Blend_SurfCurvFuncInv::Values ******/ + /****** md5 signature: 4dca620a1b80d0862f0bc5ceb7679845 ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -1977,8 +1977,8 @@ Returns the values of the functions and the derivatives for the variable %nodefaultctor Blend_SurfPointFuncInv; class Blend_SurfPointFuncInv : public math_FunctionSetWithDerivatives { public: - /****************** Derivatives ******************/ - /**** md5 signature: 91510de453ada53b30c3a8ed85022935 ****/ + /****** Blend_SurfPointFuncInv::Derivatives ******/ + /****** md5 signature: 91510de453ada53b30c3a8ed85022935 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -1996,8 +1996,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; virtual Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: ea9a426b36925ee5ee90867e063c6523 ****/ + /****** Blend_SurfPointFuncInv::GetBounds ******/ + /****** md5 signature: ea9a426b36925ee5ee90867e063c6523 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -2015,8 +2015,8 @@ Returns in the vector infbound the lowest values allowed for each of the 3 varia ") GetBounds; virtual void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetTolerance ******************/ - /**** md5 signature: 9c8b08d1f0aa3ef3a04b7834c06e849d ****/ + /****** Blend_SurfPointFuncInv::GetTolerance ******/ + /****** md5 signature: 9c8b08d1f0aa3ef3a04b7834c06e849d ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -2034,8 +2034,8 @@ Returns in the vector tolerance the parametric tolerance for each of the 3 varia ") GetTolerance; virtual void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** IsSolution ******************/ - /**** md5 signature: 65e978e7c1aeb4e253d805ec1412cadd ****/ + /****** Blend_SurfPointFuncInv::IsSolution ******/ + /****** md5 signature: 65e978e7c1aeb4e253d805ec1412cadd ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -2053,8 +2053,8 @@ Returns standard_true if sol is a zero of the function. tol is the tolerance use ") IsSolution; virtual Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** NbEquations ******************/ - /**** md5 signature: ba4fd9483f383d968d2ec54d4ae3fbf1 ****/ + /****** Blend_SurfPointFuncInv::NbEquations ******/ + /****** md5 signature: ba4fd9483f383d968d2ec54d4ae3fbf1 ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -2066,8 +2066,8 @@ Returns the number of equations of the function. ") NbEquations; virtual Standard_Integer NbEquations(); - /****************** NbVariables ******************/ - /**** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ****/ + /****** Blend_SurfPointFuncInv::NbVariables ******/ + /****** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -2079,8 +2079,8 @@ Returns 3. ") NbVariables; Standard_Integer NbVariables(); - /****************** Set ******************/ - /**** md5 signature: 4a9881a4a80757c31b5543d94b3ea3d9 ****/ + /****** Blend_SurfPointFuncInv::Set ******/ + /****** md5 signature: 4a9881a4a80757c31b5543d94b3ea3d9 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -2097,8 +2097,8 @@ Set the point on which a solution has to be found. ") Set; virtual void Set(const gp_Pnt & P); - /****************** Value ******************/ - /**** md5 signature: fbdd70146ff924dbae65883aeb76c6f7 ****/ + /****** Blend_SurfPointFuncInv::Value ******/ + /****** md5 signature: fbdd70146ff924dbae65883aeb76c6f7 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -2116,8 +2116,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; virtual Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: 4dca620a1b80d0862f0bc5ceb7679845 ****/ + /****** Blend_SurfPointFuncInv::Values ******/ + /****** md5 signature: 4dca620a1b80d0862f0bc5ceb7679845 ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -2151,8 +2151,8 @@ Returns the values of the functions and the derivatives for the variable %nodefaultctor Blend_CSFunction; class Blend_CSFunction : public Blend_AppFunction { public: - /****************** Derivatives ******************/ - /**** md5 signature: c60b01ffce645ba10de0d0dd29e52621 ****/ + /****** Blend_CSFunction::Derivatives ******/ + /****** md5 signature: c60b01ffce645ba10de0d0dd29e52621 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -2170,8 +2170,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; virtual Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: a9cc8ec57e6a0e9552f8363868e13158 ****/ + /****** Blend_CSFunction::GetBounds ******/ + /****** md5 signature: a9cc8ec57e6a0e9552f8363868e13158 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -2189,8 +2189,8 @@ Returns in the vector infbound the lowest values allowed for each of the 3 varia ") GetBounds; virtual void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetMinimalDistance ******************/ - /**** md5 signature: b7112b2680da59932f7cc20412f85fda ****/ + /****** Blend_CSFunction::GetMinimalDistance ******/ + /****** md5 signature: b7112b2680da59932f7cc20412f85fda ******/ %feature("compactdefaultargs") GetMinimalDistance; %feature("autodoc", "Return ------- @@ -2202,8 +2202,8 @@ Returns the minimal distance between two extremities of calculated sections. ") GetMinimalDistance; virtual Standard_Real GetMinimalDistance(); - /****************** GetShape ******************/ - /**** md5 signature: d75b859b3c85b25da6eb170dbb54b253 ****/ + /****** Blend_CSFunction::GetShape ******/ + /****** md5 signature: d75b859b3c85b25da6eb170dbb54b253 ******/ %feature("compactdefaultargs") GetShape; %feature("autodoc", " Parameters @@ -2222,8 +2222,8 @@ No available documentation. ") GetShape; virtual void GetShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** GetTolerance ******************/ - /**** md5 signature: af65e9b58b7bf33236f13175c966b116 ****/ + /****** Blend_CSFunction::GetTolerance ******/ + /****** md5 signature: af65e9b58b7bf33236f13175c966b116 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -2241,8 +2241,8 @@ Returns in the vector tolerance the parametric tolerance for each of the 3 varia ") GetTolerance; virtual void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** GetTolerance ******************/ - /**** md5 signature: b003f4e25a542d1d51f0aa55a3ba3736 ****/ + /****** Blend_CSFunction::GetTolerance ******/ + /****** md5 signature: b003f4e25a542d1d51f0aa55a3ba3736 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -2263,8 +2263,8 @@ Returns the tolerance to reach in approximation to respecte boundtol error at th ") GetTolerance; virtual void GetTolerance(const Standard_Real BoundTol, const Standard_Real SurfTol, const Standard_Real AngleTol, math_Vector & Tol3d, math_Vector & Tol1D); - /****************** IsSolution ******************/ - /**** md5 signature: c4d9b6173080bbe41930f57f761b358a ****/ + /****** Blend_CSFunction::IsSolution ******/ + /****** md5 signature: c4d9b6173080bbe41930f57f761b358a ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -2282,8 +2282,8 @@ Returns standard_true if sol is a zero of the function. tol is the tolerance use ") IsSolution; virtual Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** IsTangencyPoint ******************/ - /**** md5 signature: bc14917d31fcf3cabe33ced86387ccb2 ****/ + /****** Blend_CSFunction::IsTangencyPoint ******/ + /****** md5 signature: bc14917d31fcf3cabe33ced86387ccb2 ******/ %feature("compactdefaultargs") IsTangencyPoint; %feature("autodoc", "Return ------- @@ -2295,8 +2295,8 @@ Returns true when it is not possible to compute the tangent vectors at pointons ") IsTangencyPoint; virtual Standard_Boolean IsTangencyPoint(); - /****************** Knots ******************/ - /**** md5 signature: 7217dc04d97a88d879fb10243ef0ff84 ****/ + /****** Blend_CSFunction::Knots ******/ + /****** md5 signature: 7217dc04d97a88d879fb10243ef0ff84 ******/ %feature("compactdefaultargs") Knots; %feature("autodoc", " Parameters @@ -2313,8 +2313,8 @@ No available documentation. ") Knots; virtual void Knots(TColStd_Array1OfReal & TKnots); - /****************** Mults ******************/ - /**** md5 signature: d5aaf85aa69579f8450d264b586aa0c5 ****/ + /****** Blend_CSFunction::Mults ******/ + /****** md5 signature: d5aaf85aa69579f8450d264b586aa0c5 ******/ %feature("compactdefaultargs") Mults; %feature("autodoc", " Parameters @@ -2331,8 +2331,8 @@ No available documentation. ") Mults; virtual void Mults(TColStd_Array1OfInteger & TMults); - /****************** NbEquations ******************/ - /**** md5 signature: 4d84b2deb010fe97e393013aa23555cb ****/ + /****** Blend_CSFunction::NbEquations ******/ + /****** md5 signature: 4d84b2deb010fe97e393013aa23555cb ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -2344,8 +2344,8 @@ Returns the number of equations of the function. ") NbEquations; virtual Standard_Integer NbEquations(); - /****************** NbVariables ******************/ - /**** md5 signature: 28ab91d0183585502101892aac2c5b98 ****/ + /****** Blend_CSFunction::NbVariables ******/ + /****** md5 signature: 28ab91d0183585502101892aac2c5b98 ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -2357,8 +2357,8 @@ Returns 3 (default value). can be redefined. ") NbVariables; virtual Standard_Integer NbVariables(); - /****************** ParameterOnC ******************/ - /**** md5 signature: 3ee25b1771c48c373d531895fa2c2541 ****/ + /****** Blend_CSFunction::ParameterOnC ******/ + /****** md5 signature: 3ee25b1771c48c373d531895fa2c2541 ******/ %feature("compactdefaultargs") ParameterOnC; %feature("autodoc", "Return ------- @@ -2370,8 +2370,8 @@ Returns parameter of the point on the curve. ") ParameterOnC; virtual Standard_Real ParameterOnC(); - /****************** Pnt1 ******************/ - /**** md5 signature: 4f470306a8227b896b7c05eb38438d0f ****/ + /****** Blend_CSFunction::Pnt1 ******/ + /****** md5 signature: 4f470306a8227b896b7c05eb38438d0f ******/ %feature("compactdefaultargs") Pnt1; %feature("autodoc", "Return ------- @@ -2383,8 +2383,8 @@ Returns the point on the first support. ") Pnt1; const gp_Pnt Pnt1(); - /****************** Pnt2 ******************/ - /**** md5 signature: 529484ef7f205d7eb6acc8c69fc3a526 ****/ + /****** Blend_CSFunction::Pnt2 ******/ + /****** md5 signature: 529484ef7f205d7eb6acc8c69fc3a526 ******/ %feature("compactdefaultargs") Pnt2; %feature("autodoc", "Return ------- @@ -2396,8 +2396,8 @@ Returns the point on the seconde support. ") Pnt2; const gp_Pnt Pnt2(); - /****************** Pnt2d ******************/ - /**** md5 signature: 98c5a7fd07fdcda4e5dba3da570105de ****/ + /****** Blend_CSFunction::Pnt2d ******/ + /****** md5 signature: 98c5a7fd07fdcda4e5dba3da570105de ******/ %feature("compactdefaultargs") Pnt2d; %feature("autodoc", "Return ------- @@ -2409,8 +2409,8 @@ Returns u,v coordinates of the point on the surface. ") Pnt2d; virtual const gp_Pnt2d Pnt2d(); - /****************** PointOnC ******************/ - /**** md5 signature: 72d1e1aab7382a71b140bd978aafe6e6 ****/ + /****** Blend_CSFunction::PointOnC ******/ + /****** md5 signature: 72d1e1aab7382a71b140bd978aafe6e6 ******/ %feature("compactdefaultargs") PointOnC; %feature("autodoc", "Return ------- @@ -2422,8 +2422,8 @@ Returns the point on the curve. ") PointOnC; virtual const gp_Pnt PointOnC(); - /****************** PointOnS ******************/ - /**** md5 signature: 013821b07617cbc53368c5db469ac944 ****/ + /****** Blend_CSFunction::PointOnS ******/ + /****** md5 signature: 013821b07617cbc53368c5db469ac944 ******/ %feature("compactdefaultargs") PointOnS; %feature("autodoc", "Return ------- @@ -2435,8 +2435,8 @@ Returns the point on the surface. ") PointOnS; virtual const gp_Pnt PointOnS(); - /****************** Section ******************/ - /**** md5 signature: d17c7b4e4429cd6da9985ae3038cac7b ****/ + /****** Blend_CSFunction::Section ******/ + /****** md5 signature: d17c7b4e4429cd6da9985ae3038cac7b ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -2459,8 +2459,8 @@ Used for the first and last section the method returns standard_true if the deri ") Section; virtual Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths); - /****************** Section ******************/ - /**** md5 signature: 9531086ca076494a0288f5c16aeced84 ****/ + /****** Blend_CSFunction::Section ******/ + /****** md5 signature: 9531086ca076494a0288f5c16aeced84 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -2480,8 +2480,8 @@ No available documentation. ") Section; virtual void Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfPnt2d & Poles2d, TColStd_Array1OfReal & Weigths); - /****************** Section ******************/ - /**** md5 signature: 97c961ad7d056aef4f3b86eb96e2c45f ****/ + /****** Blend_CSFunction::Section ******/ + /****** md5 signature: 97c961ad7d056aef4f3b86eb96e2c45f ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -2507,8 +2507,8 @@ Used for the first and last section the method returns standard_true if the deri ") Section; virtual Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfVec & D2Poles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColgp_Array1OfVec2d & D2Poles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths, TColStd_Array1OfReal & D2Weigths); - /****************** Set ******************/ - /**** md5 signature: 286270fbc9c8fb757614552f83022989 ****/ + /****** Blend_CSFunction::Set ******/ + /****** md5 signature: 286270fbc9c8fb757614552f83022989 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -2525,8 +2525,8 @@ Sets the value of the parameter along the guide line. this determines the plane ") Set; virtual void Set(const Standard_Real Param); - /****************** Set ******************/ - /**** md5 signature: b826ab2c56e152ee3d20beec43f6886a ****/ + /****** Blend_CSFunction::Set ******/ + /****** md5 signature: b826ab2c56e152ee3d20beec43f6886a ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -2544,8 +2544,8 @@ Sets the bounds of the parametric interval on the guide line. this determines th ") Set; virtual void Set(const Standard_Real First, const Standard_Real Last); - /****************** Tangent ******************/ - /**** md5 signature: 8100f17d5878c22baefba9bff6f0bbfc ****/ + /****** Blend_CSFunction::Tangent ******/ + /****** md5 signature: 8100f17d5878c22baefba9bff6f0bbfc ******/ %feature("compactdefaultargs") Tangent; %feature("autodoc", " Parameters @@ -2565,8 +2565,8 @@ Returns the tangent vector at the section, at the beginning and the end of the s ") Tangent; virtual void Tangent(const Standard_Real U, const Standard_Real V, gp_Vec & TgS, gp_Vec & NormS); - /****************** Tangent2d ******************/ - /**** md5 signature: c48013a45ce6ec3d80c1c72ade10ff86 ****/ + /****** Blend_CSFunction::Tangent2d ******/ + /****** md5 signature: c48013a45ce6ec3d80c1c72ade10ff86 ******/ %feature("compactdefaultargs") Tangent2d; %feature("autodoc", "Return ------- @@ -2578,8 +2578,8 @@ Returns the tangent vector at pointons, in the parametric space of the first sur ") Tangent2d; virtual const gp_Vec2d Tangent2d(); - /****************** TangentOnC ******************/ - /**** md5 signature: 58e664a9ca5473e0441364716f57cf5c ****/ + /****** Blend_CSFunction::TangentOnC ******/ + /****** md5 signature: 58e664a9ca5473e0441364716f57cf5c ******/ %feature("compactdefaultargs") TangentOnC; %feature("autodoc", "Return ------- @@ -2591,8 +2591,8 @@ Returns the tangent vector at pointonc, in 3d space. ") TangentOnC; virtual const gp_Vec TangentOnC(); - /****************** TangentOnS ******************/ - /**** md5 signature: bbacad8d903559279b1b81084b808831 ****/ + /****** Blend_CSFunction::TangentOnS ******/ + /****** md5 signature: bbacad8d903559279b1b81084b808831 ******/ %feature("compactdefaultargs") TangentOnS; %feature("autodoc", "Return ------- @@ -2604,8 +2604,8 @@ Returns the tangent vector at pointons, in 3d space. ") TangentOnS; virtual const gp_Vec TangentOnS(); - /****************** Value ******************/ - /**** md5 signature: b0387de9cd1734a40485d48cedef6a76 ****/ + /****** Blend_CSFunction::Value ******/ + /****** md5 signature: b0387de9cd1734a40485d48cedef6a76 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -2623,8 +2623,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; virtual Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: d556c7ffdb173f46002b6da3b467da1a ****/ + /****** Blend_CSFunction::Values ******/ + /****** md5 signature: d556c7ffdb173f46002b6da3b467da1a ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -2658,8 +2658,8 @@ Returns the values of the functions and the derivatives for the variable %nodefaultctor Blend_Function; class Blend_Function : public Blend_AppFunction { public: - /****************** IsTangencyPoint ******************/ - /**** md5 signature: bc14917d31fcf3cabe33ced86387ccb2 ****/ + /****** Blend_Function::IsTangencyPoint ******/ + /****** md5 signature: bc14917d31fcf3cabe33ced86387ccb2 ******/ %feature("compactdefaultargs") IsTangencyPoint; %feature("autodoc", "Return ------- @@ -2671,8 +2671,8 @@ Returns true when it is not possible to compute the tangent vectors at pointons1 ") IsTangencyPoint; virtual Standard_Boolean IsTangencyPoint(); - /****************** NbVariables ******************/ - /**** md5 signature: c99b0d96b9b2c7c3fd7890618502162b ****/ + /****** Blend_Function::NbVariables ******/ + /****** md5 signature: c99b0d96b9b2c7c3fd7890618502162b ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -2684,8 +2684,8 @@ Returns 4. ") NbVariables; Standard_Integer NbVariables(); - /****************** Pnt1 ******************/ - /**** md5 signature: 4f470306a8227b896b7c05eb38438d0f ****/ + /****** Blend_Function::Pnt1 ******/ + /****** md5 signature: 4f470306a8227b896b7c05eb38438d0f ******/ %feature("compactdefaultargs") Pnt1; %feature("autodoc", "Return ------- @@ -2697,8 +2697,8 @@ Returns the point on the first support. ") Pnt1; const gp_Pnt Pnt1(); - /****************** Pnt2 ******************/ - /**** md5 signature: 529484ef7f205d7eb6acc8c69fc3a526 ****/ + /****** Blend_Function::Pnt2 ******/ + /****** md5 signature: 529484ef7f205d7eb6acc8c69fc3a526 ******/ %feature("compactdefaultargs") Pnt2; %feature("autodoc", "Return ------- @@ -2710,8 +2710,8 @@ Returns the point on the seconde support. ") Pnt2; const gp_Pnt Pnt2(); - /****************** PointOnS1 ******************/ - /**** md5 signature: e58403c65e5edf32a9edbcf0e168fab8 ****/ + /****** Blend_Function::PointOnS1 ******/ + /****** md5 signature: e58403c65e5edf32a9edbcf0e168fab8 ******/ %feature("compactdefaultargs") PointOnS1; %feature("autodoc", "Return ------- @@ -2723,8 +2723,8 @@ Returns the point on the first surface, at parameter sol(1),sol(2) (sol is the v ") PointOnS1; virtual const gp_Pnt PointOnS1(); - /****************** PointOnS2 ******************/ - /**** md5 signature: 90f3bce294e1c981e6cda4d330349d11 ****/ + /****** Blend_Function::PointOnS2 ******/ + /****** md5 signature: 90f3bce294e1c981e6cda4d330349d11 ******/ %feature("compactdefaultargs") PointOnS2; %feature("autodoc", "Return ------- @@ -2736,8 +2736,8 @@ Returns the point on the second surface, at parameter sol(3),sol(4) (sol is the ") PointOnS2; virtual const gp_Pnt PointOnS2(); - /****************** Section ******************/ - /**** md5 signature: 9531086ca076494a0288f5c16aeced84 ****/ + /****** Blend_Function::Section ******/ + /****** md5 signature: 9531086ca076494a0288f5c16aeced84 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -2757,8 +2757,8 @@ No available documentation. ") Section; virtual void Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfPnt2d & Poles2d, TColStd_Array1OfReal & Weigths); - /****************** Section ******************/ - /**** md5 signature: 97c961ad7d056aef4f3b86eb96e2c45f ****/ + /****** Blend_Function::Section ******/ + /****** md5 signature: 97c961ad7d056aef4f3b86eb96e2c45f ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -2784,8 +2784,8 @@ Used for the first and last section the method returns standard_true if the deri ") Section; virtual Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfVec & D2Poles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColgp_Array1OfVec2d & D2Poles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths, TColStd_Array1OfReal & D2Weigths); - /****************** Tangent ******************/ - /**** md5 signature: 3252786305dce127fe04fa1e2579538c ****/ + /****** Blend_Function::Tangent ******/ + /****** md5 signature: 3252786305dce127fe04fa1e2579538c ******/ %feature("compactdefaultargs") Tangent; %feature("autodoc", " Parameters @@ -2809,8 +2809,8 @@ Returns the tangent vector at the section, at the beginning and the end of the s ") Tangent; virtual void Tangent(const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, gp_Vec & TgFirst, gp_Vec & TgLast, gp_Vec & NormFirst, gp_Vec & NormLast); - /****************** Tangent2dOnS1 ******************/ - /**** md5 signature: 2a59119466b3a4cdf5aa70fac0d4673e ****/ + /****** Blend_Function::Tangent2dOnS1 ******/ + /****** md5 signature: 2a59119466b3a4cdf5aa70fac0d4673e ******/ %feature("compactdefaultargs") Tangent2dOnS1; %feature("autodoc", "Return ------- @@ -2822,8 +2822,8 @@ Returns the tangent vector at pointons1, in the parametric space of the first su ") Tangent2dOnS1; virtual const gp_Vec2d Tangent2dOnS1(); - /****************** Tangent2dOnS2 ******************/ - /**** md5 signature: 7cba5607584f29ebc7287a1682ba057b ****/ + /****** Blend_Function::Tangent2dOnS2 ******/ + /****** md5 signature: 7cba5607584f29ebc7287a1682ba057b ******/ %feature("compactdefaultargs") Tangent2dOnS2; %feature("autodoc", "Return ------- @@ -2835,8 +2835,8 @@ Returns the tangent vector at pointons2, in the parametric space of the second s ") Tangent2dOnS2; virtual const gp_Vec2d Tangent2dOnS2(); - /****************** TangentOnS1 ******************/ - /**** md5 signature: ace4d9e311e56c4a9713d23ae479ef04 ****/ + /****** Blend_Function::TangentOnS1 ******/ + /****** md5 signature: ace4d9e311e56c4a9713d23ae479ef04 ******/ %feature("compactdefaultargs") TangentOnS1; %feature("autodoc", "Return ------- @@ -2848,8 +2848,8 @@ Returns the tangent vector at pointons1, in 3d space. ") TangentOnS1; virtual const gp_Vec TangentOnS1(); - /****************** TangentOnS2 ******************/ - /**** md5 signature: 42dd8da874c679c750083aa2087aaab2 ****/ + /****** Blend_Function::TangentOnS2 ******/ + /****** md5 signature: 42dd8da874c679c750083aa2087aaab2 ******/ %feature("compactdefaultargs") TangentOnS2; %feature("autodoc", "Return ------- @@ -2861,8 +2861,8 @@ Returns the tangent vector at pointons2, in 3d space. ") TangentOnS2; virtual const gp_Vec TangentOnS2(); - /****************** TwistOnS1 ******************/ - /**** md5 signature: dd9947ed547cb2cee949777b51c7c043 ****/ + /****** Blend_Function::TwistOnS1 ******/ + /****** md5 signature: dd9947ed547cb2cee949777b51c7c043 ******/ %feature("compactdefaultargs") TwistOnS1; %feature("autodoc", "Return ------- @@ -2874,8 +2874,8 @@ No available documentation. ") TwistOnS1; virtual Standard_Boolean TwistOnS1(); - /****************** TwistOnS2 ******************/ - /**** md5 signature: c424e63584af9a9bd189a3ad5a9cbe61 ****/ + /****** Blend_Function::TwistOnS2 ******/ + /****** md5 signature: c424e63584af9a9bd189a3ad5a9cbe61 ******/ %feature("compactdefaultargs") TwistOnS2; %feature("autodoc", "Return ------- @@ -2902,8 +2902,8 @@ No available documentation. %nodefaultctor Blend_RstRstFunction; class Blend_RstRstFunction : public Blend_AppFunction { public: - /****************** Decroch ******************/ - /**** md5 signature: da370598160a8d3edc9c9ec6cd6bbc5c ****/ + /****** Blend_RstRstFunction::Decroch ******/ + /****** md5 signature: da370598160a8d3edc9c9ec6cd6bbc5c ******/ %feature("compactdefaultargs") Decroch; %feature("autodoc", " Parameters @@ -2924,8 +2924,8 @@ Enables to implement a criterion of decrochage specific to the function. warning ") Decroch; virtual Blend_DecrochStatus Decroch(const math_Vector & Sol, gp_Vec & NRst1, gp_Vec & TgRst1, gp_Vec & NRst2, gp_Vec & TgRst2); - /****************** Derivatives ******************/ - /**** md5 signature: 91510de453ada53b30c3a8ed85022935 ****/ + /****** Blend_RstRstFunction::Derivatives ******/ + /****** md5 signature: 91510de453ada53b30c3a8ed85022935 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -2943,8 +2943,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; virtual Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: ea9a426b36925ee5ee90867e063c6523 ****/ + /****** Blend_RstRstFunction::GetBounds ******/ + /****** md5 signature: ea9a426b36925ee5ee90867e063c6523 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -2962,8 +2962,8 @@ Returns in the vector infbound the lowest values allowed for each variables. ret ") GetBounds; virtual void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetMinimalDistance ******************/ - /**** md5 signature: e8742e6ed5aa58b10280098f76f7ab1d ****/ + /****** Blend_RstRstFunction::GetMinimalDistance ******/ + /****** md5 signature: e8742e6ed5aa58b10280098f76f7ab1d ******/ %feature("compactdefaultargs") GetMinimalDistance; %feature("autodoc", "Return ------- @@ -2975,8 +2975,8 @@ Returns the minimal distance between two extremities of calculated sections. ") GetMinimalDistance; Standard_Real GetMinimalDistance(); - /****************** GetMinimalWeight ******************/ - /**** md5 signature: 12015ca7787e9fa6bcf5f820d6632375 ****/ + /****** Blend_RstRstFunction::GetMinimalWeight ******/ + /****** md5 signature: 12015ca7787e9fa6bcf5f820d6632375 ******/ %feature("compactdefaultargs") GetMinimalWeight; %feature("autodoc", " Parameters @@ -2993,8 +2993,8 @@ Compute the minimal value of weight for each poles of all sections. ") GetMinimalWeight; virtual void GetMinimalWeight(TColStd_Array1OfReal & Weigths); - /****************** GetSectionSize ******************/ - /**** md5 signature: f308791ef8ed681d6654100e81e995bd ****/ + /****** Blend_RstRstFunction::GetSectionSize ******/ + /****** md5 signature: f308791ef8ed681d6654100e81e995bd ******/ %feature("compactdefaultargs") GetSectionSize; %feature("autodoc", "Return ------- @@ -3006,8 +3006,8 @@ Returns the length of the maximum section. ") GetSectionSize; virtual Standard_Real GetSectionSize(); - /****************** GetShape ******************/ - /**** md5 signature: 4c9523caad94a60010e14bbca0ff20fc ****/ + /****** Blend_RstRstFunction::GetShape ******/ + /****** md5 signature: 4c9523caad94a60010e14bbca0ff20fc ******/ %feature("compactdefaultargs") GetShape; %feature("autodoc", " Parameters @@ -3026,8 +3026,8 @@ No available documentation. ") GetShape; virtual void GetShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** GetTolerance ******************/ - /**** md5 signature: 9c8b08d1f0aa3ef3a04b7834c06e849d ****/ + /****** Blend_RstRstFunction::GetTolerance ******/ + /****** md5 signature: 9c8b08d1f0aa3ef3a04b7834c06e849d ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -3045,8 +3045,8 @@ Returns in the vector tolerance the parametric tolerance for each variable; tol ") GetTolerance; virtual void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** GetTolerance ******************/ - /**** md5 signature: 715ff82186a1d1cd1f2816a9fc072567 ****/ + /****** Blend_RstRstFunction::GetTolerance ******/ + /****** md5 signature: 715ff82186a1d1cd1f2816a9fc072567 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -3067,8 +3067,8 @@ Returns the tolerance to reach in approximation to respecte boundtol error at th ") GetTolerance; virtual void GetTolerance(const Standard_Real BoundTol, const Standard_Real SurfTol, const Standard_Real AngleTol, math_Vector & Tol3d, math_Vector & Tol1D); - /****************** Intervals ******************/ - /**** md5 signature: 7d2bf038a9213acf1609cc1244a3ee03 ****/ + /****** Blend_RstRstFunction::Intervals ******/ + /****** md5 signature: 7d2bf038a9213acf1609cc1244a3ee03 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -3086,8 +3086,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; virtual void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsRational ******************/ - /**** md5 signature: e2d546fe827c13e22032dacc2ce90819 ****/ + /****** Blend_RstRstFunction::IsRational ******/ + /****** md5 signature: e2d546fe827c13e22032dacc2ce90819 ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -3099,8 +3099,8 @@ Returns if the section is rationnal. ") IsRational; virtual Standard_Boolean IsRational(); - /****************** IsSolution ******************/ - /**** md5 signature: 65e978e7c1aeb4e253d805ec1412cadd ****/ + /****** Blend_RstRstFunction::IsSolution ******/ + /****** md5 signature: 65e978e7c1aeb4e253d805ec1412cadd ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -3118,8 +3118,8 @@ Returns standard_true if sol is a zero of the function. tol is the tolerance use ") IsSolution; virtual Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** IsTangencyPoint ******************/ - /**** md5 signature: bc14917d31fcf3cabe33ced86387ccb2 ****/ + /****** Blend_RstRstFunction::IsTangencyPoint ******/ + /****** md5 signature: bc14917d31fcf3cabe33ced86387ccb2 ******/ %feature("compactdefaultargs") IsTangencyPoint; %feature("autodoc", "Return ------- @@ -3131,8 +3131,8 @@ Returns true when it is not possible to compute the tangent vectors at pointons ") IsTangencyPoint; virtual Standard_Boolean IsTangencyPoint(); - /****************** Knots ******************/ - /**** md5 signature: 12a741eefe4a6b12fefe540137e600a7 ****/ + /****** Blend_RstRstFunction::Knots ******/ + /****** md5 signature: 12a741eefe4a6b12fefe540137e600a7 ******/ %feature("compactdefaultargs") Knots; %feature("autodoc", " Parameters @@ -3149,8 +3149,8 @@ No available documentation. ") Knots; virtual void Knots(TColStd_Array1OfReal & TKnots); - /****************** Mults ******************/ - /**** md5 signature: eca3dd33252e6a889c9236a94758c0f8 ****/ + /****** Blend_RstRstFunction::Mults ******/ + /****** md5 signature: eca3dd33252e6a889c9236a94758c0f8 ******/ %feature("compactdefaultargs") Mults; %feature("autodoc", " Parameters @@ -3167,8 +3167,8 @@ No available documentation. ") Mults; virtual void Mults(TColStd_Array1OfInteger & TMults); - /****************** NbEquations ******************/ - /**** md5 signature: ba4fd9483f383d968d2ec54d4ae3fbf1 ****/ + /****** Blend_RstRstFunction::NbEquations ******/ + /****** md5 signature: ba4fd9483f383d968d2ec54d4ae3fbf1 ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -3180,8 +3180,8 @@ Returns the number of equations of the function. ") NbEquations; virtual Standard_Integer NbEquations(); - /****************** NbIntervals ******************/ - /**** md5 signature: cb7f68d4b2c30f29cd5ba6f81443d314 ****/ + /****** Blend_RstRstFunction::NbIntervals ******/ + /****** md5 signature: cb7f68d4b2c30f29cd5ba6f81443d314 ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -3198,8 +3198,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; virtual Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** NbVariables ******************/ - /**** md5 signature: 9592108ebf305562827d51d05d64eecc ****/ + /****** Blend_RstRstFunction::NbVariables ******/ + /****** md5 signature: 9592108ebf305562827d51d05d64eecc ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -3211,8 +3211,8 @@ Returns 2 (default value). can be redefined. ") NbVariables; virtual Standard_Integer NbVariables(); - /****************** ParameterOnRst1 ******************/ - /**** md5 signature: 2f829c76c7ed73562a7b20be5bc1f135 ****/ + /****** Blend_RstRstFunction::ParameterOnRst1 ******/ + /****** md5 signature: 2f829c76c7ed73562a7b20be5bc1f135 ******/ %feature("compactdefaultargs") ParameterOnRst1; %feature("autodoc", "Return ------- @@ -3224,8 +3224,8 @@ Returns parameter of the point on the curve. ") ParameterOnRst1; virtual Standard_Real ParameterOnRst1(); - /****************** ParameterOnRst2 ******************/ - /**** md5 signature: aa35bf5f29a385f78897174a6367f771 ****/ + /****** Blend_RstRstFunction::ParameterOnRst2 ******/ + /****** md5 signature: aa35bf5f29a385f78897174a6367f771 ******/ %feature("compactdefaultargs") ParameterOnRst2; %feature("autodoc", "Return ------- @@ -3237,8 +3237,8 @@ Returns parameter of the point on the curve. ") ParameterOnRst2; virtual Standard_Real ParameterOnRst2(); - /****************** Pnt1 ******************/ - /**** md5 signature: 0b50824c44f989dc0d6554d01a09841f ****/ + /****** Blend_RstRstFunction::Pnt1 ******/ + /****** md5 signature: 0b50824c44f989dc0d6554d01a09841f ******/ %feature("compactdefaultargs") Pnt1; %feature("autodoc", "Return ------- @@ -3250,8 +3250,8 @@ Returns the point on the first support. ") Pnt1; const gp_Pnt Pnt1(); - /****************** Pnt2 ******************/ - /**** md5 signature: 7674a11484a480e596351a7b8fae52d6 ****/ + /****** Blend_RstRstFunction::Pnt2 ******/ + /****** md5 signature: 7674a11484a480e596351a7b8fae52d6 ******/ %feature("compactdefaultargs") Pnt2; %feature("autodoc", "Return ------- @@ -3263,8 +3263,8 @@ Returns the point on the seconde support. ") Pnt2; const gp_Pnt Pnt2(); - /****************** Pnt2dOnRst1 ******************/ - /**** md5 signature: e3f75dcfdb45ec34883bee818cbdd115 ****/ + /****** Blend_RstRstFunction::Pnt2dOnRst1 ******/ + /****** md5 signature: e3f75dcfdb45ec34883bee818cbdd115 ******/ %feature("compactdefaultargs") Pnt2dOnRst1; %feature("autodoc", "Return ------- @@ -3276,8 +3276,8 @@ Returns u,v coordinates of the point on the surface. ") Pnt2dOnRst1; virtual const gp_Pnt2d Pnt2dOnRst1(); - /****************** Pnt2dOnRst2 ******************/ - /**** md5 signature: 26bff8e780bdddbf622a247cc3db85be ****/ + /****** Blend_RstRstFunction::Pnt2dOnRst2 ******/ + /****** md5 signature: 26bff8e780bdddbf622a247cc3db85be ******/ %feature("compactdefaultargs") Pnt2dOnRst2; %feature("autodoc", "Return ------- @@ -3289,8 +3289,8 @@ Returns u,v coordinates of the point on the curve on surface. ") Pnt2dOnRst2; virtual const gp_Pnt2d Pnt2dOnRst2(); - /****************** PointOnRst1 ******************/ - /**** md5 signature: d1ad11354f30bfbe23a20a972f215958 ****/ + /****** Blend_RstRstFunction::PointOnRst1 ******/ + /****** md5 signature: d1ad11354f30bfbe23a20a972f215958 ******/ %feature("compactdefaultargs") PointOnRst1; %feature("autodoc", "Return ------- @@ -3302,8 +3302,8 @@ Returns the point on the surface. ") PointOnRst1; virtual const gp_Pnt PointOnRst1(); - /****************** PointOnRst2 ******************/ - /**** md5 signature: bfbfaf7046c1d39ce1f0f458886fcd59 ****/ + /****** Blend_RstRstFunction::PointOnRst2 ******/ + /****** md5 signature: bfbfaf7046c1d39ce1f0f458886fcd59 ******/ %feature("compactdefaultargs") PointOnRst2; %feature("autodoc", "Return ------- @@ -3315,8 +3315,8 @@ Returns the point on the curve. ") PointOnRst2; virtual const gp_Pnt PointOnRst2(); - /****************** Section ******************/ - /**** md5 signature: a53c7695ddb71364b3f1a57ab3437f2c ****/ + /****** Blend_RstRstFunction::Section ******/ + /****** md5 signature: a53c7695ddb71364b3f1a57ab3437f2c ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -3336,8 +3336,8 @@ No available documentation. ") Section; virtual void Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfPnt2d & Poles2d, TColStd_Array1OfReal & Weigths); - /****************** Section ******************/ - /**** md5 signature: e37bbcbd1ce3013637ce65f73847d93d ****/ + /****** Blend_RstRstFunction::Section ******/ + /****** md5 signature: e37bbcbd1ce3013637ce65f73847d93d ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -3360,8 +3360,8 @@ Used for the first and last section the method returns standard_true if the deri ") Section; virtual Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths); - /****************** Section ******************/ - /**** md5 signature: 45cb2fd4a3176732a1653dca67ba6422 ****/ + /****** Blend_RstRstFunction::Section ******/ + /****** md5 signature: 45cb2fd4a3176732a1653dca67ba6422 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -3387,8 +3387,8 @@ Used for the first and last section the method returns standard_true if the deri ") Section; virtual Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfVec & D2Poles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColgp_Array1OfVec2d & D2Poles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths, TColStd_Array1OfReal & D2Weigths); - /****************** Set ******************/ - /**** md5 signature: 6ea1b4b1c732128de882a7f7a3bdd939 ****/ + /****** Blend_RstRstFunction::Set ******/ + /****** md5 signature: 6ea1b4b1c732128de882a7f7a3bdd939 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -3405,8 +3405,8 @@ Sets the value of the parameter along the guide line. this determines the plane ") Set; virtual void Set(const Standard_Real Param); - /****************** Set ******************/ - /**** md5 signature: 72dca3214392c1598e10f82965feedf7 ****/ + /****** Blend_RstRstFunction::Set ******/ + /****** md5 signature: 72dca3214392c1598e10f82965feedf7 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -3424,8 +3424,8 @@ Sets the bounds of the parametric interval on the guide line. this determines th ") Set; virtual void Set(const Standard_Real First, const Standard_Real Last); - /****************** Tangent2dOnRst1 ******************/ - /**** md5 signature: fcbf5456f50de851d444c4d79888de5d ****/ + /****** Blend_RstRstFunction::Tangent2dOnRst1 ******/ + /****** md5 signature: fcbf5456f50de851d444c4d79888de5d ******/ %feature("compactdefaultargs") Tangent2dOnRst1; %feature("autodoc", "Return ------- @@ -3437,8 +3437,8 @@ Returns the tangent vector at pointons, in the parametric space of the first sur ") Tangent2dOnRst1; virtual const gp_Vec2d Tangent2dOnRst1(); - /****************** Tangent2dOnRst2 ******************/ - /**** md5 signature: 48d9d4a9667de60f2ac5b84d62425cff ****/ + /****** Blend_RstRstFunction::Tangent2dOnRst2 ******/ + /****** md5 signature: 48d9d4a9667de60f2ac5b84d62425cff ******/ %feature("compactdefaultargs") Tangent2dOnRst2; %feature("autodoc", "Return ------- @@ -3450,8 +3450,8 @@ Returns the tangent vector at pointonrst, in the parametric space of the second ") Tangent2dOnRst2; virtual const gp_Vec2d Tangent2dOnRst2(); - /****************** TangentOnRst1 ******************/ - /**** md5 signature: 674e1a1cb641654717601d87e8a6a7af ****/ + /****** Blend_RstRstFunction::TangentOnRst1 ******/ + /****** md5 signature: 674e1a1cb641654717601d87e8a6a7af ******/ %feature("compactdefaultargs") TangentOnRst1; %feature("autodoc", "Return ------- @@ -3463,8 +3463,8 @@ Returns the tangent vector at pointons, in 3d space. ") TangentOnRst1; virtual const gp_Vec TangentOnRst1(); - /****************** TangentOnRst2 ******************/ - /**** md5 signature: 76af1c3787229190aa13d77740ee1d23 ****/ + /****** Blend_RstRstFunction::TangentOnRst2 ******/ + /****** md5 signature: 76af1c3787229190aa13d77740ee1d23 ******/ %feature("compactdefaultargs") TangentOnRst2; %feature("autodoc", "Return ------- @@ -3476,8 +3476,8 @@ Returns the tangent vector at pointonc, in 3d space. ") TangentOnRst2; virtual const gp_Vec TangentOnRst2(); - /****************** Value ******************/ - /**** md5 signature: fbdd70146ff924dbae65883aeb76c6f7 ****/ + /****** Blend_RstRstFunction::Value ******/ + /****** md5 signature: fbdd70146ff924dbae65883aeb76c6f7 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -3495,8 +3495,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; virtual Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: 4dca620a1b80d0862f0bc5ceb7679845 ****/ + /****** Blend_RstRstFunction::Values ******/ + /****** md5 signature: 4dca620a1b80d0862f0bc5ceb7679845 ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -3530,8 +3530,8 @@ Returns the values of the functions and the derivatives for the variable %nodefaultctor Blend_SurfRstFunction; class Blend_SurfRstFunction : public Blend_AppFunction { public: - /****************** Decroch ******************/ - /**** md5 signature: 7284c9bdbe5588f3acf463f1becb02e1 ****/ + /****** Blend_SurfRstFunction::Decroch ******/ + /****** md5 signature: 7284c9bdbe5588f3acf463f1becb02e1 ******/ %feature("compactdefaultargs") Decroch; %feature("autodoc", " Parameters @@ -3550,8 +3550,8 @@ Enables implementation of a criterion of decrochage specific to the function. ") Decroch; virtual Standard_Boolean Decroch(const math_Vector & Sol, gp_Vec & NS, gp_Vec & TgS); - /****************** Derivatives ******************/ - /**** md5 signature: 91510de453ada53b30c3a8ed85022935 ****/ + /****** Blend_SurfRstFunction::Derivatives ******/ + /****** md5 signature: 91510de453ada53b30c3a8ed85022935 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -3569,8 +3569,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; virtual Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: ea9a426b36925ee5ee90867e063c6523 ****/ + /****** Blend_SurfRstFunction::GetBounds ******/ + /****** md5 signature: ea9a426b36925ee5ee90867e063c6523 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -3588,8 +3588,8 @@ Returns in the vector infbound the lowest values allowed for each variables. ret ") GetBounds; virtual void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetMinimalDistance ******************/ - /**** md5 signature: e8742e6ed5aa58b10280098f76f7ab1d ****/ + /****** Blend_SurfRstFunction::GetMinimalDistance ******/ + /****** md5 signature: e8742e6ed5aa58b10280098f76f7ab1d ******/ %feature("compactdefaultargs") GetMinimalDistance; %feature("autodoc", "Return ------- @@ -3601,8 +3601,8 @@ Returns the minimal distance between two extremities of calculated sections. ") GetMinimalDistance; Standard_Real GetMinimalDistance(); - /****************** GetMinimalWeight ******************/ - /**** md5 signature: 12015ca7787e9fa6bcf5f820d6632375 ****/ + /****** Blend_SurfRstFunction::GetMinimalWeight ******/ + /****** md5 signature: 12015ca7787e9fa6bcf5f820d6632375 ******/ %feature("compactdefaultargs") GetMinimalWeight; %feature("autodoc", " Parameters @@ -3619,8 +3619,8 @@ Compute the minimal value of weight for each poles of all sections. ") GetMinimalWeight; virtual void GetMinimalWeight(TColStd_Array1OfReal & Weigths); - /****************** GetSectionSize ******************/ - /**** md5 signature: f308791ef8ed681d6654100e81e995bd ****/ + /****** Blend_SurfRstFunction::GetSectionSize ******/ + /****** md5 signature: f308791ef8ed681d6654100e81e995bd ******/ %feature("compactdefaultargs") GetSectionSize; %feature("autodoc", "Return ------- @@ -3632,8 +3632,8 @@ Returns the length of the maximum section. ") GetSectionSize; virtual Standard_Real GetSectionSize(); - /****************** GetShape ******************/ - /**** md5 signature: 4c9523caad94a60010e14bbca0ff20fc ****/ + /****** Blend_SurfRstFunction::GetShape ******/ + /****** md5 signature: 4c9523caad94a60010e14bbca0ff20fc ******/ %feature("compactdefaultargs") GetShape; %feature("autodoc", " Parameters @@ -3652,8 +3652,8 @@ No available documentation. ") GetShape; virtual void GetShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** GetTolerance ******************/ - /**** md5 signature: 9c8b08d1f0aa3ef3a04b7834c06e849d ****/ + /****** Blend_SurfRstFunction::GetTolerance ******/ + /****** md5 signature: 9c8b08d1f0aa3ef3a04b7834c06e849d ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -3671,8 +3671,8 @@ Returns in the vector tolerance the parametric tolerance for each variable; tol ") GetTolerance; virtual void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** GetTolerance ******************/ - /**** md5 signature: 715ff82186a1d1cd1f2816a9fc072567 ****/ + /****** Blend_SurfRstFunction::GetTolerance ******/ + /****** md5 signature: 715ff82186a1d1cd1f2816a9fc072567 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -3693,8 +3693,8 @@ Returns the tolerance to reach in approximation to respecte boundtol error at th ") GetTolerance; virtual void GetTolerance(const Standard_Real BoundTol, const Standard_Real SurfTol, const Standard_Real AngleTol, math_Vector & Tol3d, math_Vector & Tol1D); - /****************** Intervals ******************/ - /**** md5 signature: 7d2bf038a9213acf1609cc1244a3ee03 ****/ + /****** Blend_SurfRstFunction::Intervals ******/ + /****** md5 signature: 7d2bf038a9213acf1609cc1244a3ee03 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -3712,8 +3712,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; virtual void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsRational ******************/ - /**** md5 signature: e2d546fe827c13e22032dacc2ce90819 ****/ + /****** Blend_SurfRstFunction::IsRational ******/ + /****** md5 signature: e2d546fe827c13e22032dacc2ce90819 ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -3725,8 +3725,8 @@ Returns if the section is rationnal. ") IsRational; virtual Standard_Boolean IsRational(); - /****************** IsSolution ******************/ - /**** md5 signature: 65e978e7c1aeb4e253d805ec1412cadd ****/ + /****** Blend_SurfRstFunction::IsSolution ******/ + /****** md5 signature: 65e978e7c1aeb4e253d805ec1412cadd ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -3744,8 +3744,8 @@ Returns standard_true if sol is a zero of the function. tol is the tolerance use ") IsSolution; virtual Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** IsTangencyPoint ******************/ - /**** md5 signature: bc14917d31fcf3cabe33ced86387ccb2 ****/ + /****** Blend_SurfRstFunction::IsTangencyPoint ******/ + /****** md5 signature: bc14917d31fcf3cabe33ced86387ccb2 ******/ %feature("compactdefaultargs") IsTangencyPoint; %feature("autodoc", "Return ------- @@ -3757,8 +3757,8 @@ Returns true when it is not possible to compute the tangent vectors at pointons ") IsTangencyPoint; virtual Standard_Boolean IsTangencyPoint(); - /****************** Knots ******************/ - /**** md5 signature: 12a741eefe4a6b12fefe540137e600a7 ****/ + /****** Blend_SurfRstFunction::Knots ******/ + /****** md5 signature: 12a741eefe4a6b12fefe540137e600a7 ******/ %feature("compactdefaultargs") Knots; %feature("autodoc", " Parameters @@ -3775,8 +3775,8 @@ No available documentation. ") Knots; virtual void Knots(TColStd_Array1OfReal & TKnots); - /****************** Mults ******************/ - /**** md5 signature: eca3dd33252e6a889c9236a94758c0f8 ****/ + /****** Blend_SurfRstFunction::Mults ******/ + /****** md5 signature: eca3dd33252e6a889c9236a94758c0f8 ******/ %feature("compactdefaultargs") Mults; %feature("autodoc", " Parameters @@ -3793,8 +3793,8 @@ No available documentation. ") Mults; virtual void Mults(TColStd_Array1OfInteger & TMults); - /****************** NbEquations ******************/ - /**** md5 signature: ba4fd9483f383d968d2ec54d4ae3fbf1 ****/ + /****** Blend_SurfRstFunction::NbEquations ******/ + /****** md5 signature: ba4fd9483f383d968d2ec54d4ae3fbf1 ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -3806,8 +3806,8 @@ Returns the number of equations of the function. ") NbEquations; virtual Standard_Integer NbEquations(); - /****************** NbIntervals ******************/ - /**** md5 signature: cb7f68d4b2c30f29cd5ba6f81443d314 ****/ + /****** Blend_SurfRstFunction::NbIntervals ******/ + /****** md5 signature: cb7f68d4b2c30f29cd5ba6f81443d314 ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -3824,8 +3824,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; virtual Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** NbVariables ******************/ - /**** md5 signature: 9592108ebf305562827d51d05d64eecc ****/ + /****** Blend_SurfRstFunction::NbVariables ******/ + /****** md5 signature: 9592108ebf305562827d51d05d64eecc ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -3837,8 +3837,8 @@ Returns 3 (default value). can be redefined. ") NbVariables; virtual Standard_Integer NbVariables(); - /****************** ParameterOnRst ******************/ - /**** md5 signature: 01de2ff204e04e0ac9b34e5cb34bbb87 ****/ + /****** Blend_SurfRstFunction::ParameterOnRst ******/ + /****** md5 signature: 01de2ff204e04e0ac9b34e5cb34bbb87 ******/ %feature("compactdefaultargs") ParameterOnRst; %feature("autodoc", "Return ------- @@ -3850,8 +3850,8 @@ Returns parameter of the point on the curve. ") ParameterOnRst; virtual Standard_Real ParameterOnRst(); - /****************** Pnt1 ******************/ - /**** md5 signature: 0b50824c44f989dc0d6554d01a09841f ****/ + /****** Blend_SurfRstFunction::Pnt1 ******/ + /****** md5 signature: 0b50824c44f989dc0d6554d01a09841f ******/ %feature("compactdefaultargs") Pnt1; %feature("autodoc", "Return ------- @@ -3863,8 +3863,8 @@ Returns the point on the first support. ") Pnt1; const gp_Pnt Pnt1(); - /****************** Pnt2 ******************/ - /**** md5 signature: 7674a11484a480e596351a7b8fae52d6 ****/ + /****** Blend_SurfRstFunction::Pnt2 ******/ + /****** md5 signature: 7674a11484a480e596351a7b8fae52d6 ******/ %feature("compactdefaultargs") Pnt2; %feature("autodoc", "Return ------- @@ -3876,8 +3876,8 @@ Returns the point on the seconde support. ") Pnt2; const gp_Pnt Pnt2(); - /****************** Pnt2dOnRst ******************/ - /**** md5 signature: ebf44037fb3bdbcaa4184774d2037618 ****/ + /****** Blend_SurfRstFunction::Pnt2dOnRst ******/ + /****** md5 signature: ebf44037fb3bdbcaa4184774d2037618 ******/ %feature("compactdefaultargs") Pnt2dOnRst; %feature("autodoc", "Return ------- @@ -3889,8 +3889,8 @@ Returns u,v coordinates of the point on the curve on surface. ") Pnt2dOnRst; virtual const gp_Pnt2d Pnt2dOnRst(); - /****************** Pnt2dOnS ******************/ - /**** md5 signature: d615c6281ea9f9161996abd4b9a9fb73 ****/ + /****** Blend_SurfRstFunction::Pnt2dOnS ******/ + /****** md5 signature: d615c6281ea9f9161996abd4b9a9fb73 ******/ %feature("compactdefaultargs") Pnt2dOnS; %feature("autodoc", "Return ------- @@ -3902,8 +3902,8 @@ Returns u,v coordinates of the point on the surface. ") Pnt2dOnS; virtual const gp_Pnt2d Pnt2dOnS(); - /****************** PointOnRst ******************/ - /**** md5 signature: 9656ef3947b8f1b09af430ee1d1f4d1d ****/ + /****** Blend_SurfRstFunction::PointOnRst ******/ + /****** md5 signature: 9656ef3947b8f1b09af430ee1d1f4d1d ******/ %feature("compactdefaultargs") PointOnRst; %feature("autodoc", "Return ------- @@ -3915,8 +3915,8 @@ Returns the point on the curve. ") PointOnRst; virtual const gp_Pnt PointOnRst(); - /****************** PointOnS ******************/ - /**** md5 signature: 013821b07617cbc53368c5db469ac944 ****/ + /****** Blend_SurfRstFunction::PointOnS ******/ + /****** md5 signature: 013821b07617cbc53368c5db469ac944 ******/ %feature("compactdefaultargs") PointOnS; %feature("autodoc", "Return ------- @@ -3928,8 +3928,8 @@ Returns the point on the surface. ") PointOnS; virtual const gp_Pnt PointOnS(); - /****************** Section ******************/ - /**** md5 signature: e37bbcbd1ce3013637ce65f73847d93d ****/ + /****** Blend_SurfRstFunction::Section ******/ + /****** md5 signature: e37bbcbd1ce3013637ce65f73847d93d ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -3952,8 +3952,8 @@ Used for the first and last section the method returns standard_true if the deri ") Section; virtual Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths); - /****************** Section ******************/ - /**** md5 signature: 45cb2fd4a3176732a1653dca67ba6422 ****/ + /****** Blend_SurfRstFunction::Section ******/ + /****** md5 signature: 45cb2fd4a3176732a1653dca67ba6422 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -3979,8 +3979,8 @@ Used for the first and last section the method returns standard_true if the deri ") Section; virtual Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfVec & D2Poles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColgp_Array1OfVec2d & D2Poles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths, TColStd_Array1OfReal & D2Weigths); - /****************** Section ******************/ - /**** md5 signature: a53c7695ddb71364b3f1a57ab3437f2c ****/ + /****** Blend_SurfRstFunction::Section ******/ + /****** md5 signature: a53c7695ddb71364b3f1a57ab3437f2c ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -4000,8 +4000,8 @@ No available documentation. ") Section; virtual void Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfPnt2d & Poles2d, TColStd_Array1OfReal & Weigths); - /****************** Set ******************/ - /**** md5 signature: 6ea1b4b1c732128de882a7f7a3bdd939 ****/ + /****** Blend_SurfRstFunction::Set ******/ + /****** md5 signature: 6ea1b4b1c732128de882a7f7a3bdd939 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -4018,8 +4018,8 @@ Sets the value of the parameter along the guide line. this determines the plane ") Set; virtual void Set(const Standard_Real Param); - /****************** Set ******************/ - /**** md5 signature: 72dca3214392c1598e10f82965feedf7 ****/ + /****** Blend_SurfRstFunction::Set ******/ + /****** md5 signature: 72dca3214392c1598e10f82965feedf7 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -4037,8 +4037,8 @@ Sets the bounds of the parametric interval on the guide line. this determines th ") Set; virtual void Set(const Standard_Real First, const Standard_Real Last); - /****************** Tangent2dOnRst ******************/ - /**** md5 signature: e1bcaec74b4767508501bf2f7c1cdb3d ****/ + /****** Blend_SurfRstFunction::Tangent2dOnRst ******/ + /****** md5 signature: e1bcaec74b4767508501bf2f7c1cdb3d ******/ %feature("compactdefaultargs") Tangent2dOnRst; %feature("autodoc", "Return ------- @@ -4050,8 +4050,8 @@ Returns the tangent vector at pointonrst, in the parametric space of the second ") Tangent2dOnRst; virtual const gp_Vec2d Tangent2dOnRst(); - /****************** Tangent2dOnS ******************/ - /**** md5 signature: 7f46fc020c51a66db9c76684922235f0 ****/ + /****** Blend_SurfRstFunction::Tangent2dOnS ******/ + /****** md5 signature: 7f46fc020c51a66db9c76684922235f0 ******/ %feature("compactdefaultargs") Tangent2dOnS; %feature("autodoc", "Return ------- @@ -4063,8 +4063,8 @@ Returns the tangent vector at pointons, in the parametric space of the first sur ") Tangent2dOnS; virtual const gp_Vec2d Tangent2dOnS(); - /****************** TangentOnRst ******************/ - /**** md5 signature: 2df1ce073324d55483e131fc0c914949 ****/ + /****** Blend_SurfRstFunction::TangentOnRst ******/ + /****** md5 signature: 2df1ce073324d55483e131fc0c914949 ******/ %feature("compactdefaultargs") TangentOnRst; %feature("autodoc", "Return ------- @@ -4076,8 +4076,8 @@ Returns the tangent vector at pointonc, in 3d space. ") TangentOnRst; virtual const gp_Vec TangentOnRst(); - /****************** TangentOnS ******************/ - /**** md5 signature: bbacad8d903559279b1b81084b808831 ****/ + /****** Blend_SurfRstFunction::TangentOnS ******/ + /****** md5 signature: bbacad8d903559279b1b81084b808831 ******/ %feature("compactdefaultargs") TangentOnS; %feature("autodoc", "Return ------- @@ -4089,8 +4089,8 @@ Returns the tangent vector at pointons, in 3d space. ") TangentOnS; virtual const gp_Vec TangentOnS(); - /****************** Value ******************/ - /**** md5 signature: fbdd70146ff924dbae65883aeb76c6f7 ****/ + /****** Blend_SurfRstFunction::Value ******/ + /****** md5 signature: fbdd70146ff924dbae65883aeb76c6f7 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -4108,8 +4108,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; virtual Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: 4dca620a1b80d0862f0bc5ceb7679845 ****/ + /****** Blend_SurfRstFunction::Values ******/ + /****** md5 signature: 4dca620a1b80d0862f0bc5ceb7679845 ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BlendFunc.i b/src/SWIG_files/wrapper/BlendFunc.i index 798ef87cd..de9c0b7bc 100644 --- a/src/SWIG_files/wrapper/BlendFunc.i +++ b/src/SWIG_files/wrapper/BlendFunc.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BLENDFUNCDOCSTRING "BlendFunc module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_blendfunc.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_blendfunc.html" %enddef %module (package="OCC.Core", docstring=BLENDFUNCDOCSTRING) BlendFunc @@ -120,8 +120,8 @@ BlendFunc_Linear = BlendFunc_SectionShape.BlendFunc_Linear %rename(blendfunc) BlendFunc; class BlendFunc { public: - /****************** ComputeDNormal ******************/ - /**** md5 signature: cde71b23cab8a2f1227199266c8cb896 ****/ + /****** BlendFunc::ComputeDNormal ******/ + /****** md5 signature: cde71b23cab8a2f1227199266c8cb896 ******/ %feature("compactdefaultargs") ComputeDNormal; %feature("autodoc", " Parameters @@ -142,8 +142,8 @@ No available documentation. ") ComputeDNormal; static Standard_Boolean ComputeDNormal(const opencascade::handle & Surf, const gp_Pnt2d & p2d, gp_Vec & Normal, gp_Vec & DNu, gp_Vec & DNv); - /****************** ComputeNormal ******************/ - /**** md5 signature: b82124d6f2c9c1dff1a9cca5be99986f ****/ + /****** BlendFunc::ComputeNormal ******/ + /****** md5 signature: b82124d6f2c9c1dff1a9cca5be99986f ******/ %feature("compactdefaultargs") ComputeNormal; %feature("autodoc", " Parameters @@ -162,8 +162,8 @@ No available documentation. ") ComputeNormal; static Standard_Boolean ComputeNormal(const opencascade::handle & Surf, const gp_Pnt2d & p2d, gp_Vec & Normal); - /****************** GetMinimalWeights ******************/ - /**** md5 signature: 309c1f7f13e6d4dfd26fbb05a6dc9e40 ****/ + /****** BlendFunc::GetMinimalWeights ******/ + /****** md5 signature: 309c1f7f13e6d4dfd26fbb05a6dc9e40 ******/ %feature("compactdefaultargs") GetMinimalWeights; %feature("autodoc", " Parameters @@ -184,8 +184,8 @@ No available documentation. ") GetMinimalWeights; static void GetMinimalWeights(const BlendFunc_SectionShape SectShape, const Convert_ParameterisationType TConv, const Standard_Real AngleMin, const Standard_Real AngleMax, TColStd_Array1OfReal & Weigths); - /****************** GetShape ******************/ - /**** md5 signature: ca49e9ca7d2f8c164b0ef798b93782a3 ****/ + /****** BlendFunc::GetShape ******/ + /****** md5 signature: ca49e9ca7d2f8c164b0ef798b93782a3 ******/ %feature("compactdefaultargs") GetShape; %feature("autodoc", " Parameters @@ -206,8 +206,8 @@ No available documentation. ") GetShape; static void GetShape(const BlendFunc_SectionShape SectShape, const Standard_Real MaxAng, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Convert_ParameterisationType & TypeConv); - /****************** NextShape ******************/ - /**** md5 signature: 5efba1f9776f24ad69a107a235287f2c ****/ + /****** BlendFunc::NextShape ******/ + /****** md5 signature: 5efba1f9776f24ad69a107a235287f2c ******/ %feature("compactdefaultargs") NextShape; %feature("autodoc", " Parameters @@ -246,8 +246,8 @@ Used to obtain the next level of continuity. *****************************/ class BlendFunc_CSCircular : public Blend_CSFunction { public: - /****************** BlendFunc_CSCircular ******************/ - /**** md5 signature: d43560f235cf7a01ad5e6452468104a7 ****/ + /****** BlendFunc_CSCircular::BlendFunc_CSCircular ******/ + /****** md5 signature: d43560f235cf7a01ad5e6452468104a7 ******/ %feature("compactdefaultargs") BlendFunc_CSCircular; %feature("autodoc", " Parameters @@ -267,8 +267,8 @@ Creates a function for a circular blending between a curve and a surface ") BlendFunc_CSCircular; BlendFunc_CSCircular(const opencascade::handle & S, const opencascade::handle & C, const opencascade::handle & CGuide, const opencascade::handle & L); - /****************** Derivatives ******************/ - /**** md5 signature: 940fde1549012c9025c437a16f7d8c18 ****/ + /****** BlendFunc_CSCircular::Derivatives ******/ + /****** md5 signature: 940fde1549012c9025c437a16f7d8c18 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -286,8 +286,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: 7f39b43072461a3f70a63d3178e97743 ****/ + /****** BlendFunc_CSCircular::GetBounds ******/ + /****** md5 signature: 7f39b43072461a3f70a63d3178e97743 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -305,8 +305,8 @@ No available documentation. ") GetBounds; void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetMinimalWeight ******************/ - /**** md5 signature: f84aaf80601cfa818dfe6e9dd3bec152 ****/ + /****** BlendFunc_CSCircular::GetMinimalWeight ******/ + /****** md5 signature: f84aaf80601cfa818dfe6e9dd3bec152 ******/ %feature("compactdefaultargs") GetMinimalWeight; %feature("autodoc", " Parameters @@ -323,8 +323,8 @@ Compute the minimal value of weight for each poles of all sections. ") GetMinimalWeight; void GetMinimalWeight(TColStd_Array1OfReal & Weigths); - /****************** GetSection ******************/ - /**** md5 signature: 9f1c0c6229c95cd8346662c4ae052028 ****/ + /****** BlendFunc_CSCircular::GetSection ******/ + /****** md5 signature: 9f1c0c6229c95cd8346662c4ae052028 ******/ %feature("compactdefaultargs") GetSection; %feature("autodoc", " Parameters @@ -346,8 +346,8 @@ No available documentation. ") GetSection; Standard_Boolean GetSection(const Standard_Real Param, const Standard_Real U, const Standard_Real V, const Standard_Real W, TColgp_Array1OfPnt & tabP, TColgp_Array1OfVec & tabV); - /****************** GetSectionSize ******************/ - /**** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ****/ + /****** BlendFunc_CSCircular::GetSectionSize ******/ + /****** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ******/ %feature("compactdefaultargs") GetSectionSize; %feature("autodoc", "Return ------- @@ -359,8 +359,8 @@ Returns the length of the maximum section. ") GetSectionSize; Standard_Real GetSectionSize(); - /****************** GetShape ******************/ - /**** md5 signature: 6b9d3e113e9e6721b2abf4c094cdd226 ****/ + /****** BlendFunc_CSCircular::GetShape ******/ + /****** md5 signature: 6b9d3e113e9e6721b2abf4c094cdd226 ******/ %feature("compactdefaultargs") GetShape; %feature("autodoc", " Parameters @@ -379,8 +379,8 @@ No available documentation. ") GetShape; void GetShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** GetTolerance ******************/ - /**** md5 signature: db57a1b1119c0b1280472660909013c2 ****/ + /****** BlendFunc_CSCircular::GetTolerance ******/ + /****** md5 signature: db57a1b1119c0b1280472660909013c2 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -398,8 +398,8 @@ No available documentation. ") GetTolerance; void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** GetTolerance ******************/ - /**** md5 signature: be5e2f2cb95c7dbdff402ed78245d7d7 ****/ + /****** BlendFunc_CSCircular::GetTolerance ******/ + /****** md5 signature: be5e2f2cb95c7dbdff402ed78245d7d7 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -420,8 +420,8 @@ Returns the tolerance to reach in approximation to respecte boundtol error at th ") GetTolerance; void GetTolerance(const Standard_Real BoundTol, const Standard_Real SurfTol, const Standard_Real AngleTol, math_Vector & Tol3d, math_Vector & Tol1D); - /****************** Intervals ******************/ - /**** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ****/ + /****** BlendFunc_CSCircular::Intervals ******/ + /****** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -439,8 +439,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsRational ******************/ - /**** md5 signature: 82ca56fad113156125f40128b25c0d8e ****/ + /****** BlendFunc_CSCircular::IsRational ******/ + /****** md5 signature: 82ca56fad113156125f40128b25c0d8e ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -452,8 +452,8 @@ Returns if the section is rationnal. ") IsRational; Standard_Boolean IsRational(); - /****************** IsSolution ******************/ - /**** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ****/ + /****** BlendFunc_CSCircular::IsSolution ******/ + /****** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -471,8 +471,8 @@ No available documentation. ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** IsTangencyPoint ******************/ - /**** md5 signature: 6f3e518ba9796f381f39631e22124ef0 ****/ + /****** BlendFunc_CSCircular::IsTangencyPoint ******/ + /****** md5 signature: 6f3e518ba9796f381f39631e22124ef0 ******/ %feature("compactdefaultargs") IsTangencyPoint; %feature("autodoc", "Return ------- @@ -484,8 +484,8 @@ No available documentation. ") IsTangencyPoint; Standard_Boolean IsTangencyPoint(); - /****************** Knots ******************/ - /**** md5 signature: a226854cd9eac08cbe4282feaa46c20d ****/ + /****** BlendFunc_CSCircular::Knots ******/ + /****** md5 signature: a226854cd9eac08cbe4282feaa46c20d ******/ %feature("compactdefaultargs") Knots; %feature("autodoc", " Parameters @@ -502,8 +502,8 @@ No available documentation. ") Knots; void Knots(TColStd_Array1OfReal & TKnots); - /****************** Mults ******************/ - /**** md5 signature: 36c77711e4160fb27b24b90b8fa7c6de ****/ + /****** BlendFunc_CSCircular::Mults ******/ + /****** md5 signature: 36c77711e4160fb27b24b90b8fa7c6de ******/ %feature("compactdefaultargs") Mults; %feature("autodoc", " Parameters @@ -520,8 +520,8 @@ No available documentation. ") Mults; void Mults(TColStd_Array1OfInteger & TMults); - /****************** NbEquations ******************/ - /**** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ****/ + /****** BlendFunc_CSCircular::NbEquations ******/ + /****** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -533,8 +533,8 @@ Returns the number of equations of the function (3). ") NbEquations; Standard_Integer NbEquations(); - /****************** NbIntervals ******************/ - /**** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ****/ + /****** BlendFunc_CSCircular::NbIntervals ******/ + /****** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -551,8 +551,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** NbVariables ******************/ - /**** md5 signature: 28ab91d0183585502101892aac2c5b98 ****/ + /****** BlendFunc_CSCircular::NbVariables ******/ + /****** md5 signature: 28ab91d0183585502101892aac2c5b98 ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -564,8 +564,8 @@ No available documentation. ") NbVariables; virtual Standard_Integer NbVariables(); - /****************** ParameterOnC ******************/ - /**** md5 signature: 931c449549243312ddad1092e529a0b4 ****/ + /****** BlendFunc_CSCircular::ParameterOnC ******/ + /****** md5 signature: 931c449549243312ddad1092e529a0b4 ******/ %feature("compactdefaultargs") ParameterOnC; %feature("autodoc", "Return ------- @@ -577,8 +577,8 @@ Returns parameter of the point on the curve. ") ParameterOnC; Standard_Real ParameterOnC(); - /****************** Pnt2d ******************/ - /**** md5 signature: c0e2424281e3df0600c85feafc85476b ****/ + /****** BlendFunc_CSCircular::Pnt2d ******/ + /****** md5 signature: c0e2424281e3df0600c85feafc85476b ******/ %feature("compactdefaultargs") Pnt2d; %feature("autodoc", "Return ------- @@ -590,8 +590,8 @@ Returns u,v coordinates of the point on the surface. ") Pnt2d; const gp_Pnt2d Pnt2d(); - /****************** PointOnC ******************/ - /**** md5 signature: 6b0ebe8887a8345ce46800bc01420baf ****/ + /****** BlendFunc_CSCircular::PointOnC ******/ + /****** md5 signature: 6b0ebe8887a8345ce46800bc01420baf ******/ %feature("compactdefaultargs") PointOnC; %feature("autodoc", "Return ------- @@ -603,8 +603,8 @@ No available documentation. ") PointOnC; const gp_Pnt PointOnC(); - /****************** PointOnS ******************/ - /**** md5 signature: d0ce1246a72267935632a60d95848390 ****/ + /****** BlendFunc_CSCircular::PointOnS ******/ + /****** md5 signature: d0ce1246a72267935632a60d95848390 ******/ %feature("compactdefaultargs") PointOnS; %feature("autodoc", "Return ------- @@ -616,8 +616,8 @@ No available documentation. ") PointOnS; const gp_Pnt PointOnS(); - /****************** Resolution ******************/ - /**** md5 signature: 1f885646df74c72ec13d37a113377aaa ****/ + /****** BlendFunc_CSCircular::Resolution ******/ + /****** md5 signature: 1f885646df74c72ec13d37a113377aaa ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -636,8 +636,8 @@ No available documentation. ") Resolution; void Resolution(const Standard_Integer IC2d, const Standard_Real Tol, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Section ******************/ - /**** md5 signature: c6f45fdc6c5dce2cea7b90328e5e99d9 ****/ + /****** BlendFunc_CSCircular::Section ******/ + /****** md5 signature: c6f45fdc6c5dce2cea7b90328e5e99d9 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -659,8 +659,8 @@ No available documentation. ") Section; void Section(const Standard_Real Param, const Standard_Real U, const Standard_Real V, const Standard_Real W, Standard_Real &OutValue, Standard_Real &OutValue, gp_Circ & C); - /****************** Section ******************/ - /**** md5 signature: 97c961ad7d056aef4f3b86eb96e2c45f ****/ + /****** BlendFunc_CSCircular::Section ******/ + /****** md5 signature: 97c961ad7d056aef4f3b86eb96e2c45f ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -686,8 +686,8 @@ Used for the first and last section the method returns standard_true if the deri ") Section; virtual Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfVec & D2Poles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColgp_Array1OfVec2d & D2Poles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths, TColStd_Array1OfReal & D2Weigths); - /****************** Section ******************/ - /**** md5 signature: 906e6a4bef3056546e496b945ff8d788 ****/ + /****** BlendFunc_CSCircular::Section ******/ + /****** md5 signature: 906e6a4bef3056546e496b945ff8d788 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -710,8 +710,8 @@ Used for the first and last section. ") Section; Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths); - /****************** Section ******************/ - /**** md5 signature: 50af689ba5abf11bb271a06ac70b2d69 ****/ + /****** BlendFunc_CSCircular::Section ******/ + /****** md5 signature: 50af689ba5abf11bb271a06ac70b2d69 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -731,8 +731,8 @@ No available documentation. ") Section; void Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfPnt2d & Poles2d, TColStd_Array1OfReal & Weigths); - /****************** Set ******************/ - /**** md5 signature: a955f35e9076d1c844b9a2aa89b226bf ****/ + /****** BlendFunc_CSCircular::Set ******/ + /****** md5 signature: a955f35e9076d1c844b9a2aa89b226bf ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -749,8 +749,8 @@ No available documentation. ") Set; void Set(const Standard_Real Param); - /****************** Set ******************/ - /**** md5 signature: 7d0982b9e2ba9cb3c696f620150f4f9c ****/ + /****** BlendFunc_CSCircular::Set ******/ + /****** md5 signature: 7d0982b9e2ba9cb3c696f620150f4f9c ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -768,8 +768,8 @@ No available documentation. ") Set; void Set(const Standard_Real First, const Standard_Real Last); - /****************** Set ******************/ - /**** md5 signature: 99fe75aea7947575eb6b646d1797f9da ****/ + /****** BlendFunc_CSCircular::Set ******/ + /****** md5 signature: 99fe75aea7947575eb6b646d1797f9da ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -787,8 +787,8 @@ No available documentation. ") Set; void Set(const Standard_Real Radius, const Standard_Integer Choix); - /****************** Set ******************/ - /**** md5 signature: 94cfe331c662a2ba190837b24fee3b95 ****/ + /****** BlendFunc_CSCircular::Set ******/ + /****** md5 signature: 94cfe331c662a2ba190837b24fee3b95 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -805,8 +805,8 @@ Sets the type of section generation for the approximations. ") Set; void Set(const BlendFunc_SectionShape TypeSection); - /****************** Tangent ******************/ - /**** md5 signature: 8b5f8faeab6ac0129ce32e99e844f22e ****/ + /****** BlendFunc_CSCircular::Tangent ******/ + /****** md5 signature: 8b5f8faeab6ac0129ce32e99e844f22e ******/ %feature("compactdefaultargs") Tangent; %feature("autodoc", " Parameters @@ -826,8 +826,8 @@ Returns the tangent vector at the section, at the beginning and the end of the s ") Tangent; void Tangent(const Standard_Real U, const Standard_Real V, gp_Vec & TgS, gp_Vec & NormS); - /****************** Tangent2d ******************/ - /**** md5 signature: 0fe985b779a02d58ed5caae77019a3ea ****/ + /****** BlendFunc_CSCircular::Tangent2d ******/ + /****** md5 signature: 0fe985b779a02d58ed5caae77019a3ea ******/ %feature("compactdefaultargs") Tangent2d; %feature("autodoc", "Return ------- @@ -839,8 +839,8 @@ No available documentation. ") Tangent2d; const gp_Vec2d Tangent2d(); - /****************** TangentOnC ******************/ - /**** md5 signature: 9c5e999959c217a8456055e42ec88461 ****/ + /****** BlendFunc_CSCircular::TangentOnC ******/ + /****** md5 signature: 9c5e999959c217a8456055e42ec88461 ******/ %feature("compactdefaultargs") TangentOnC; %feature("autodoc", "Return ------- @@ -852,8 +852,8 @@ No available documentation. ") TangentOnC; const gp_Vec TangentOnC(); - /****************** TangentOnS ******************/ - /**** md5 signature: 48a27063e2cf1be2b2c56ad8f774bd84 ****/ + /****** BlendFunc_CSCircular::TangentOnS ******/ + /****** md5 signature: 48a27063e2cf1be2b2c56ad8f774bd84 ******/ %feature("compactdefaultargs") TangentOnS; %feature("autodoc", "Return ------- @@ -865,8 +865,8 @@ No available documentation. ") TangentOnS; const gp_Vec TangentOnS(); - /****************** Value ******************/ - /**** md5 signature: 1b689850305d8b13f289849027f0887b ****/ + /****** BlendFunc_CSCircular::Value ******/ + /****** md5 signature: 1b689850305d8b13f289849027f0887b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -884,8 +884,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: cb66193525cc0a7235a2cde2a228308b ****/ + /****** BlendFunc_CSCircular::Values ******/ + /****** md5 signature: cb66193525cc0a7235a2cde2a228308b ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -918,8 +918,8 @@ Returns the values of the functions and the derivatives for the variable *****************************/ class BlendFunc_CSConstRad : public Blend_CSFunction { public: - /****************** BlendFunc_CSConstRad ******************/ - /**** md5 signature: 168f276159a046c8f0cdc04c4ef368b0 ****/ + /****** BlendFunc_CSConstRad::BlendFunc_CSConstRad ******/ + /****** md5 signature: 168f276159a046c8f0cdc04c4ef368b0 ******/ %feature("compactdefaultargs") BlendFunc_CSConstRad; %feature("autodoc", " Parameters @@ -938,8 +938,8 @@ No available documentation. ") BlendFunc_CSConstRad; BlendFunc_CSConstRad(const opencascade::handle & S, const opencascade::handle & C, const opencascade::handle & CGuide); - /****************** Derivatives ******************/ - /**** md5 signature: 940fde1549012c9025c437a16f7d8c18 ****/ + /****** BlendFunc_CSConstRad::Derivatives ******/ + /****** md5 signature: 940fde1549012c9025c437a16f7d8c18 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -957,8 +957,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: 7f39b43072461a3f70a63d3178e97743 ****/ + /****** BlendFunc_CSConstRad::GetBounds ******/ + /****** md5 signature: 7f39b43072461a3f70a63d3178e97743 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -976,8 +976,8 @@ No available documentation. ") GetBounds; void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetMinimalWeight ******************/ - /**** md5 signature: f84aaf80601cfa818dfe6e9dd3bec152 ****/ + /****** BlendFunc_CSConstRad::GetMinimalWeight ******/ + /****** md5 signature: f84aaf80601cfa818dfe6e9dd3bec152 ******/ %feature("compactdefaultargs") GetMinimalWeight; %feature("autodoc", " Parameters @@ -994,8 +994,8 @@ Compute the minimal value of weight for each poles of all sections. ") GetMinimalWeight; void GetMinimalWeight(TColStd_Array1OfReal & Weigths); - /****************** GetSection ******************/ - /**** md5 signature: 9f1c0c6229c95cd8346662c4ae052028 ****/ + /****** BlendFunc_CSConstRad::GetSection ******/ + /****** md5 signature: 9f1c0c6229c95cd8346662c4ae052028 ******/ %feature("compactdefaultargs") GetSection; %feature("autodoc", " Parameters @@ -1017,8 +1017,8 @@ No available documentation. ") GetSection; Standard_Boolean GetSection(const Standard_Real Param, const Standard_Real U, const Standard_Real V, const Standard_Real W, TColgp_Array1OfPnt & tabP, TColgp_Array1OfVec & tabV); - /****************** GetSectionSize ******************/ - /**** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ****/ + /****** BlendFunc_CSConstRad::GetSectionSize ******/ + /****** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ******/ %feature("compactdefaultargs") GetSectionSize; %feature("autodoc", "Return ------- @@ -1030,8 +1030,8 @@ Returns the length of the maximum section. ") GetSectionSize; Standard_Real GetSectionSize(); - /****************** GetShape ******************/ - /**** md5 signature: 6b9d3e113e9e6721b2abf4c094cdd226 ****/ + /****** BlendFunc_CSConstRad::GetShape ******/ + /****** md5 signature: 6b9d3e113e9e6721b2abf4c094cdd226 ******/ %feature("compactdefaultargs") GetShape; %feature("autodoc", " Parameters @@ -1050,8 +1050,8 @@ No available documentation. ") GetShape; void GetShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** GetTolerance ******************/ - /**** md5 signature: db57a1b1119c0b1280472660909013c2 ****/ + /****** BlendFunc_CSConstRad::GetTolerance ******/ + /****** md5 signature: db57a1b1119c0b1280472660909013c2 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -1069,8 +1069,8 @@ No available documentation. ") GetTolerance; void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** GetTolerance ******************/ - /**** md5 signature: be5e2f2cb95c7dbdff402ed78245d7d7 ****/ + /****** BlendFunc_CSConstRad::GetTolerance ******/ + /****** md5 signature: be5e2f2cb95c7dbdff402ed78245d7d7 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -1091,8 +1091,8 @@ Returns the tolerance to reach in approximation to respecte boundtol error at th ") GetTolerance; void GetTolerance(const Standard_Real BoundTol, const Standard_Real SurfTol, const Standard_Real AngleTol, math_Vector & Tol3d, math_Vector & Tol1D); - /****************** Intervals ******************/ - /**** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ****/ + /****** BlendFunc_CSConstRad::Intervals ******/ + /****** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -1110,8 +1110,8 @@ Stores in the parameters bounding the intervals of continuity . the array ") Intervals; void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsRational ******************/ - /**** md5 signature: 82ca56fad113156125f40128b25c0d8e ****/ + /****** BlendFunc_CSConstRad::IsRational ******/ + /****** md5 signature: 82ca56fad113156125f40128b25c0d8e ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -1123,8 +1123,8 @@ Returns if the section is rationnal. ") IsRational; Standard_Boolean IsRational(); - /****************** IsSolution ******************/ - /**** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ****/ + /****** BlendFunc_CSConstRad::IsSolution ******/ + /****** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -1142,8 +1142,8 @@ No available documentation. ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** IsTangencyPoint ******************/ - /**** md5 signature: 6f3e518ba9796f381f39631e22124ef0 ****/ + /****** BlendFunc_CSConstRad::IsTangencyPoint ******/ + /****** md5 signature: 6f3e518ba9796f381f39631e22124ef0 ******/ %feature("compactdefaultargs") IsTangencyPoint; %feature("autodoc", "Return ------- @@ -1155,8 +1155,8 @@ No available documentation. ") IsTangencyPoint; Standard_Boolean IsTangencyPoint(); - /****************** Knots ******************/ - /**** md5 signature: a226854cd9eac08cbe4282feaa46c20d ****/ + /****** BlendFunc_CSConstRad::Knots ******/ + /****** md5 signature: a226854cd9eac08cbe4282feaa46c20d ******/ %feature("compactdefaultargs") Knots; %feature("autodoc", " Parameters @@ -1173,8 +1173,8 @@ No available documentation. ") Knots; void Knots(TColStd_Array1OfReal & TKnots); - /****************** Mults ******************/ - /**** md5 signature: 36c77711e4160fb27b24b90b8fa7c6de ****/ + /****** BlendFunc_CSConstRad::Mults ******/ + /****** md5 signature: 36c77711e4160fb27b24b90b8fa7c6de ******/ %feature("compactdefaultargs") Mults; %feature("autodoc", " Parameters @@ -1191,8 +1191,8 @@ No available documentation. ") Mults; void Mults(TColStd_Array1OfInteger & TMults); - /****************** NbEquations ******************/ - /**** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ****/ + /****** BlendFunc_CSConstRad::NbEquations ******/ + /****** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -1204,8 +1204,8 @@ Returns the number of equations of the function (3). ") NbEquations; Standard_Integer NbEquations(); - /****************** NbIntervals ******************/ - /**** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ****/ + /****** BlendFunc_CSConstRad::NbIntervals ******/ + /****** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -1222,8 +1222,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** ParameterOnC ******************/ - /**** md5 signature: 931c449549243312ddad1092e529a0b4 ****/ + /****** BlendFunc_CSConstRad::ParameterOnC ******/ + /****** md5 signature: 931c449549243312ddad1092e529a0b4 ******/ %feature("compactdefaultargs") ParameterOnC; %feature("autodoc", "Return ------- @@ -1235,8 +1235,8 @@ Returns parameter of the point on the curve. ") ParameterOnC; Standard_Real ParameterOnC(); - /****************** Pnt2d ******************/ - /**** md5 signature: c0e2424281e3df0600c85feafc85476b ****/ + /****** BlendFunc_CSConstRad::Pnt2d ******/ + /****** md5 signature: c0e2424281e3df0600c85feafc85476b ******/ %feature("compactdefaultargs") Pnt2d; %feature("autodoc", "Return ------- @@ -1248,8 +1248,8 @@ Returns u,v coordinates of the point on the surface. ") Pnt2d; const gp_Pnt2d Pnt2d(); - /****************** PointOnC ******************/ - /**** md5 signature: 6b0ebe8887a8345ce46800bc01420baf ****/ + /****** BlendFunc_CSConstRad::PointOnC ******/ + /****** md5 signature: 6b0ebe8887a8345ce46800bc01420baf ******/ %feature("compactdefaultargs") PointOnC; %feature("autodoc", "Return ------- @@ -1261,8 +1261,8 @@ No available documentation. ") PointOnC; const gp_Pnt PointOnC(); - /****************** PointOnS ******************/ - /**** md5 signature: d0ce1246a72267935632a60d95848390 ****/ + /****** BlendFunc_CSConstRad::PointOnS ******/ + /****** md5 signature: d0ce1246a72267935632a60d95848390 ******/ %feature("compactdefaultargs") PointOnS; %feature("autodoc", "Return ------- @@ -1274,8 +1274,8 @@ No available documentation. ") PointOnS; const gp_Pnt PointOnS(); - /****************** Resolution ******************/ - /**** md5 signature: 1f885646df74c72ec13d37a113377aaa ****/ + /****** BlendFunc_CSConstRad::Resolution ******/ + /****** md5 signature: 1f885646df74c72ec13d37a113377aaa ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -1294,8 +1294,8 @@ No available documentation. ") Resolution; void Resolution(const Standard_Integer IC2d, const Standard_Real Tol, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Section ******************/ - /**** md5 signature: c6f45fdc6c5dce2cea7b90328e5e99d9 ****/ + /****** BlendFunc_CSConstRad::Section ******/ + /****** md5 signature: c6f45fdc6c5dce2cea7b90328e5e99d9 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -1317,8 +1317,8 @@ No available documentation. ") Section; void Section(const Standard_Real Param, const Standard_Real U, const Standard_Real V, const Standard_Real W, Standard_Real &OutValue, Standard_Real &OutValue, gp_Circ & C); - /****************** Section ******************/ - /**** md5 signature: 97c961ad7d056aef4f3b86eb96e2c45f ****/ + /****** BlendFunc_CSConstRad::Section ******/ + /****** md5 signature: 97c961ad7d056aef4f3b86eb96e2c45f ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -1344,8 +1344,8 @@ Used for the first and last section the method returns standard_true if the deri ") Section; virtual Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfVec & D2Poles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColgp_Array1OfVec2d & D2Poles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths, TColStd_Array1OfReal & D2Weigths); - /****************** Section ******************/ - /**** md5 signature: 906e6a4bef3056546e496b945ff8d788 ****/ + /****** BlendFunc_CSConstRad::Section ******/ + /****** md5 signature: 906e6a4bef3056546e496b945ff8d788 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -1368,8 +1368,8 @@ Used for the first and last section. ") Section; Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths); - /****************** Section ******************/ - /**** md5 signature: 50af689ba5abf11bb271a06ac70b2d69 ****/ + /****** BlendFunc_CSConstRad::Section ******/ + /****** md5 signature: 50af689ba5abf11bb271a06ac70b2d69 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -1389,8 +1389,8 @@ No available documentation. ") Section; void Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfPnt2d & Poles2d, TColStd_Array1OfReal & Weigths); - /****************** Set ******************/ - /**** md5 signature: a955f35e9076d1c844b9a2aa89b226bf ****/ + /****** BlendFunc_CSConstRad::Set ******/ + /****** md5 signature: a955f35e9076d1c844b9a2aa89b226bf ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -1407,8 +1407,8 @@ No available documentation. ") Set; void Set(const Standard_Real Param); - /****************** Set ******************/ - /**** md5 signature: 7d0982b9e2ba9cb3c696f620150f4f9c ****/ + /****** BlendFunc_CSConstRad::Set ******/ + /****** md5 signature: 7d0982b9e2ba9cb3c696f620150f4f9c ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -1426,8 +1426,8 @@ No available documentation. ") Set; void Set(const Standard_Real First, const Standard_Real Last); - /****************** Set ******************/ - /**** md5 signature: 99fe75aea7947575eb6b646d1797f9da ****/ + /****** BlendFunc_CSConstRad::Set ******/ + /****** md5 signature: 99fe75aea7947575eb6b646d1797f9da ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -1445,8 +1445,8 @@ No available documentation. ") Set; void Set(const Standard_Real Radius, const Standard_Integer Choix); - /****************** Set ******************/ - /**** md5 signature: 94cfe331c662a2ba190837b24fee3b95 ****/ + /****** BlendFunc_CSConstRad::Set ******/ + /****** md5 signature: 94cfe331c662a2ba190837b24fee3b95 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -1463,8 +1463,8 @@ Sets the type of section generation for the approximations. ") Set; void Set(const BlendFunc_SectionShape TypeSection); - /****************** Tangent ******************/ - /**** md5 signature: 8b5f8faeab6ac0129ce32e99e844f22e ****/ + /****** BlendFunc_CSConstRad::Tangent ******/ + /****** md5 signature: 8b5f8faeab6ac0129ce32e99e844f22e ******/ %feature("compactdefaultargs") Tangent; %feature("autodoc", " Parameters @@ -1484,8 +1484,8 @@ Returns the tangent vector at the section, at the beginning and the end of the s ") Tangent; void Tangent(const Standard_Real U, const Standard_Real V, gp_Vec & TgS, gp_Vec & NormS); - /****************** Tangent2d ******************/ - /**** md5 signature: 0fe985b779a02d58ed5caae77019a3ea ****/ + /****** BlendFunc_CSConstRad::Tangent2d ******/ + /****** md5 signature: 0fe985b779a02d58ed5caae77019a3ea ******/ %feature("compactdefaultargs") Tangent2d; %feature("autodoc", "Return ------- @@ -1497,8 +1497,8 @@ No available documentation. ") Tangent2d; const gp_Vec2d Tangent2d(); - /****************** TangentOnC ******************/ - /**** md5 signature: 9c5e999959c217a8456055e42ec88461 ****/ + /****** BlendFunc_CSConstRad::TangentOnC ******/ + /****** md5 signature: 9c5e999959c217a8456055e42ec88461 ******/ %feature("compactdefaultargs") TangentOnC; %feature("autodoc", "Return ------- @@ -1510,8 +1510,8 @@ No available documentation. ") TangentOnC; const gp_Vec TangentOnC(); - /****************** TangentOnS ******************/ - /**** md5 signature: 48a27063e2cf1be2b2c56ad8f774bd84 ****/ + /****** BlendFunc_CSConstRad::TangentOnS ******/ + /****** md5 signature: 48a27063e2cf1be2b2c56ad8f774bd84 ******/ %feature("compactdefaultargs") TangentOnS; %feature("autodoc", "Return ------- @@ -1523,8 +1523,8 @@ No available documentation. ") TangentOnS; const gp_Vec TangentOnS(); - /****************** Value ******************/ - /**** md5 signature: 1b689850305d8b13f289849027f0887b ****/ + /****** BlendFunc_CSConstRad::Value ******/ + /****** md5 signature: 1b689850305d8b13f289849027f0887b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -1542,8 +1542,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: cb66193525cc0a7235a2cde2a228308b ****/ + /****** BlendFunc_CSConstRad::Values ******/ + /****** md5 signature: cb66193525cc0a7235a2cde2a228308b ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -1576,8 +1576,8 @@ Returns the values of the functions and the derivatives for the variable *************************/ class BlendFunc_ChAsym : public Blend_Function { public: - /****************** BlendFunc_ChAsym ******************/ - /**** md5 signature: b229d2c8a2fc1a7aa0dd5e5a3c42e55f ****/ + /****** BlendFunc_ChAsym::BlendFunc_ChAsym ******/ + /****** md5 signature: b229d2c8a2fc1a7aa0dd5e5a3c42e55f ******/ %feature("compactdefaultargs") BlendFunc_ChAsym; %feature("autodoc", " Parameters @@ -1596,8 +1596,8 @@ No available documentation. ") BlendFunc_ChAsym; BlendFunc_ChAsym(const opencascade::handle & S1, const opencascade::handle & S2, const opencascade::handle & C); - /****************** ComputeValues ******************/ - /**** md5 signature: 204816d5dcb99a46213f8c407defdb50 ****/ + /****** BlendFunc_ChAsym::ComputeValues ******/ + /****** md5 signature: 204816d5dcb99a46213f8c407defdb50 ******/ %feature("compactdefaultargs") ComputeValues; %feature("autodoc", " Parameters @@ -1616,8 +1616,8 @@ Computes the values of the derivatives for the variable between degf and ") ComputeValues; Standard_Boolean ComputeValues(const math_Vector & X, const Standard_Integer DegF, const Standard_Integer DegL); - /****************** Derivatives ******************/ - /**** md5 signature: 940fde1549012c9025c437a16f7d8c18 ****/ + /****** BlendFunc_ChAsym::Derivatives ******/ + /****** md5 signature: 940fde1549012c9025c437a16f7d8c18 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -1635,8 +1635,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: 7f39b43072461a3f70a63d3178e97743 ****/ + /****** BlendFunc_ChAsym::GetBounds ******/ + /****** md5 signature: 7f39b43072461a3f70a63d3178e97743 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -1654,8 +1654,8 @@ No available documentation. ") GetBounds; void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetMinimalDistance ******************/ - /**** md5 signature: 5c7d510e1dc489ba8fc7ea0c2c8156a3 ****/ + /****** BlendFunc_ChAsym::GetMinimalDistance ******/ + /****** md5 signature: 5c7d510e1dc489ba8fc7ea0c2c8156a3 ******/ %feature("compactdefaultargs") GetMinimalDistance; %feature("autodoc", "Return ------- @@ -1667,8 +1667,8 @@ Returns the minimal distance between two extremities of calculated sections. ") GetMinimalDistance; Standard_Real GetMinimalDistance(); - /****************** GetMinimalWeight ******************/ - /**** md5 signature: f84aaf80601cfa818dfe6e9dd3bec152 ****/ + /****** BlendFunc_ChAsym::GetMinimalWeight ******/ + /****** md5 signature: f84aaf80601cfa818dfe6e9dd3bec152 ******/ %feature("compactdefaultargs") GetMinimalWeight; %feature("autodoc", " Parameters @@ -1685,8 +1685,8 @@ Compute the minimal value of weight for each poles of all sections. ") GetMinimalWeight; void GetMinimalWeight(TColStd_Array1OfReal & Weigths); - /****************** GetSectionSize ******************/ - /**** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ****/ + /****** BlendFunc_ChAsym::GetSectionSize ******/ + /****** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ******/ %feature("compactdefaultargs") GetSectionSize; %feature("autodoc", "Return ------- @@ -1698,8 +1698,8 @@ Returns the length of the maximum section. ") GetSectionSize; Standard_Real GetSectionSize(); - /****************** GetShape ******************/ - /**** md5 signature: 6b9d3e113e9e6721b2abf4c094cdd226 ****/ + /****** BlendFunc_ChAsym::GetShape ******/ + /****** md5 signature: 6b9d3e113e9e6721b2abf4c094cdd226 ******/ %feature("compactdefaultargs") GetShape; %feature("autodoc", " Parameters @@ -1718,8 +1718,8 @@ No available documentation. ") GetShape; void GetShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** GetTolerance ******************/ - /**** md5 signature: db57a1b1119c0b1280472660909013c2 ****/ + /****** BlendFunc_ChAsym::GetTolerance ******/ + /****** md5 signature: db57a1b1119c0b1280472660909013c2 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -1737,8 +1737,8 @@ No available documentation. ") GetTolerance; void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** GetTolerance ******************/ - /**** md5 signature: be5e2f2cb95c7dbdff402ed78245d7d7 ****/ + /****** BlendFunc_ChAsym::GetTolerance ******/ + /****** md5 signature: be5e2f2cb95c7dbdff402ed78245d7d7 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -1759,8 +1759,8 @@ Returns the tolerance to reach in approximation to respecte boundtol error at th ") GetTolerance; void GetTolerance(const Standard_Real BoundTol, const Standard_Real SurfTol, const Standard_Real AngleTol, math_Vector & Tol3d, math_Vector & Tol1D); - /****************** Intervals ******************/ - /**** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ****/ + /****** BlendFunc_ChAsym::Intervals ******/ + /****** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -1778,8 +1778,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsRational ******************/ - /**** md5 signature: 82ca56fad113156125f40128b25c0d8e ****/ + /****** BlendFunc_ChAsym::IsRational ******/ + /****** md5 signature: 82ca56fad113156125f40128b25c0d8e ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -1791,8 +1791,8 @@ Returns if the section is rationnal. ") IsRational; Standard_Boolean IsRational(); - /****************** IsSolution ******************/ - /**** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ****/ + /****** BlendFunc_ChAsym::IsSolution ******/ + /****** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -1810,8 +1810,8 @@ No available documentation. ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** IsTangencyPoint ******************/ - /**** md5 signature: 6f3e518ba9796f381f39631e22124ef0 ****/ + /****** BlendFunc_ChAsym::IsTangencyPoint ******/ + /****** md5 signature: 6f3e518ba9796f381f39631e22124ef0 ******/ %feature("compactdefaultargs") IsTangencyPoint; %feature("autodoc", "Return ------- @@ -1823,8 +1823,8 @@ No available documentation. ") IsTangencyPoint; Standard_Boolean IsTangencyPoint(); - /****************** Knots ******************/ - /**** md5 signature: a226854cd9eac08cbe4282feaa46c20d ****/ + /****** BlendFunc_ChAsym::Knots ******/ + /****** md5 signature: a226854cd9eac08cbe4282feaa46c20d ******/ %feature("compactdefaultargs") Knots; %feature("autodoc", " Parameters @@ -1841,8 +1841,8 @@ No available documentation. ") Knots; void Knots(TColStd_Array1OfReal & TKnots); - /****************** Mults ******************/ - /**** md5 signature: 36c77711e4160fb27b24b90b8fa7c6de ****/ + /****** BlendFunc_ChAsym::Mults ******/ + /****** md5 signature: 36c77711e4160fb27b24b90b8fa7c6de ******/ %feature("compactdefaultargs") Mults; %feature("autodoc", " Parameters @@ -1859,8 +1859,8 @@ No available documentation. ") Mults; void Mults(TColStd_Array1OfInteger & TMults); - /****************** NbEquations ******************/ - /**** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ****/ + /****** BlendFunc_ChAsym::NbEquations ******/ + /****** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -1872,8 +1872,8 @@ Returns the number of equations of the function. ") NbEquations; Standard_Integer NbEquations(); - /****************** NbIntervals ******************/ - /**** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ****/ + /****** BlendFunc_ChAsym::NbIntervals ******/ + /****** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -1890,8 +1890,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** PointOnS1 ******************/ - /**** md5 signature: 31ba0cad339bf2eee3eaa6f297b2933d ****/ + /****** BlendFunc_ChAsym::PointOnS1 ******/ + /****** md5 signature: 31ba0cad339bf2eee3eaa6f297b2933d ******/ %feature("compactdefaultargs") PointOnS1; %feature("autodoc", "Return ------- @@ -1903,8 +1903,8 @@ No available documentation. ") PointOnS1; const gp_Pnt PointOnS1(); - /****************** PointOnS2 ******************/ - /**** md5 signature: 92a9e4c03669ab0b0f57f90257aae861 ****/ + /****** BlendFunc_ChAsym::PointOnS2 ******/ + /****** md5 signature: 92a9e4c03669ab0b0f57f90257aae861 ******/ %feature("compactdefaultargs") PointOnS2; %feature("autodoc", "Return ------- @@ -1916,8 +1916,8 @@ No available documentation. ") PointOnS2; const gp_Pnt PointOnS2(); - /****************** Resolution ******************/ - /**** md5 signature: 1f885646df74c72ec13d37a113377aaa ****/ + /****** BlendFunc_ChAsym::Resolution ******/ + /****** md5 signature: 1f885646df74c72ec13d37a113377aaa ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -1936,8 +1936,8 @@ No available documentation. ") Resolution; void Resolution(const Standard_Integer IC2d, const Standard_Real Tol, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Section ******************/ - /**** md5 signature: 08613591ef85c2aabd1650c70190523f ****/ + /****** BlendFunc_ChAsym::Section ******/ + /****** md5 signature: 08613591ef85c2aabd1650c70190523f ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -1960,8 +1960,8 @@ Utile pour une visu rapide et approximative de la surface. ") Section; void Section(const Standard_Real Param, const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, Standard_Real &OutValue, Standard_Real &OutValue, gp_Lin & C); - /****************** Section ******************/ - /**** md5 signature: 50af689ba5abf11bb271a06ac70b2d69 ****/ + /****** BlendFunc_ChAsym::Section ******/ + /****** md5 signature: 50af689ba5abf11bb271a06ac70b2d69 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -1981,8 +1981,8 @@ No available documentation. ") Section; void Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfPnt2d & Poles2d, TColStd_Array1OfReal & Weigths); - /****************** Section ******************/ - /**** md5 signature: cab230a655fc4e6bce41754b18837678 ****/ + /****** BlendFunc_ChAsym::Section ******/ + /****** md5 signature: cab230a655fc4e6bce41754b18837678 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -2005,8 +2005,8 @@ Used for the first and last section. ") Section; virtual Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths); - /****************** Section ******************/ - /**** md5 signature: 97c961ad7d056aef4f3b86eb96e2c45f ****/ + /****** BlendFunc_ChAsym::Section ******/ + /****** md5 signature: 97c961ad7d056aef4f3b86eb96e2c45f ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -2032,8 +2032,8 @@ Used for the first and last section. ") Section; virtual Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfVec & D2Poles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColgp_Array1OfVec2d & D2Poles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths, TColStd_Array1OfReal & D2Weigths); - /****************** Set ******************/ - /**** md5 signature: a955f35e9076d1c844b9a2aa89b226bf ****/ + /****** BlendFunc_ChAsym::Set ******/ + /****** md5 signature: a955f35e9076d1c844b9a2aa89b226bf ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -2050,8 +2050,8 @@ No available documentation. ") Set; void Set(const Standard_Real Param); - /****************** Set ******************/ - /**** md5 signature: 7d0982b9e2ba9cb3c696f620150f4f9c ****/ + /****** BlendFunc_ChAsym::Set ******/ + /****** md5 signature: 7d0982b9e2ba9cb3c696f620150f4f9c ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -2069,8 +2069,8 @@ No available documentation. ") Set; void Set(const Standard_Real First, const Standard_Real Last); - /****************** Set ******************/ - /**** md5 signature: 3d2665ead473e36c7266c389a87d886a ****/ + /****** BlendFunc_ChAsym::Set ******/ + /****** md5 signature: 3d2665ead473e36c7266c389a87d886a ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -2089,8 +2089,8 @@ Sets the distances and the angle. ") Set; void Set(const Standard_Real Dist1, const Standard_Real Angle, const Standard_Integer Choix); - /****************** Tangent ******************/ - /**** md5 signature: 13397954dafd053b9875c1007b2501b6 ****/ + /****** BlendFunc_ChAsym::Tangent ******/ + /****** md5 signature: 13397954dafd053b9875c1007b2501b6 ******/ %feature("compactdefaultargs") Tangent; %feature("autodoc", " Parameters @@ -2114,8 +2114,8 @@ Returns the tangent vector at the section, at the beginning and the end of the s ") Tangent; void Tangent(const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, gp_Vec & TgFirst, gp_Vec & TgLast, gp_Vec & NormFirst, gp_Vec & NormLast); - /****************** Tangent2dOnS1 ******************/ - /**** md5 signature: ed3fe23c28d6ac4c0a074084d164d41d ****/ + /****** BlendFunc_ChAsym::Tangent2dOnS1 ******/ + /****** md5 signature: ed3fe23c28d6ac4c0a074084d164d41d ******/ %feature("compactdefaultargs") Tangent2dOnS1; %feature("autodoc", "Return ------- @@ -2127,8 +2127,8 @@ No available documentation. ") Tangent2dOnS1; const gp_Vec2d Tangent2dOnS1(); - /****************** Tangent2dOnS2 ******************/ - /**** md5 signature: f57294e3963627cbeb43134bc6c1d88a ****/ + /****** BlendFunc_ChAsym::Tangent2dOnS2 ******/ + /****** md5 signature: f57294e3963627cbeb43134bc6c1d88a ******/ %feature("compactdefaultargs") Tangent2dOnS2; %feature("autodoc", "Return ------- @@ -2140,8 +2140,8 @@ No available documentation. ") Tangent2dOnS2; const gp_Vec2d Tangent2dOnS2(); - /****************** TangentOnS1 ******************/ - /**** md5 signature: b20f2a50fc3bd003b5bb0d17d261f9e7 ****/ + /****** BlendFunc_ChAsym::TangentOnS1 ******/ + /****** md5 signature: b20f2a50fc3bd003b5bb0d17d261f9e7 ******/ %feature("compactdefaultargs") TangentOnS1; %feature("autodoc", "Return ------- @@ -2153,8 +2153,8 @@ No available documentation. ") TangentOnS1; const gp_Vec TangentOnS1(); - /****************** TangentOnS2 ******************/ - /**** md5 signature: 5ee1080b2d5e8e29046ca62a01e3f639 ****/ + /****** BlendFunc_ChAsym::TangentOnS2 ******/ + /****** md5 signature: 5ee1080b2d5e8e29046ca62a01e3f639 ******/ %feature("compactdefaultargs") TangentOnS2; %feature("autodoc", "Return ------- @@ -2166,8 +2166,8 @@ No available documentation. ") TangentOnS2; const gp_Vec TangentOnS2(); - /****************** TwistOnS1 ******************/ - /**** md5 signature: bcab8c931932008ff46a37653f1cc038 ****/ + /****** BlendFunc_ChAsym::TwistOnS1 ******/ + /****** md5 signature: bcab8c931932008ff46a37653f1cc038 ******/ %feature("compactdefaultargs") TwistOnS1; %feature("autodoc", "Return ------- @@ -2179,8 +2179,8 @@ No available documentation. ") TwistOnS1; virtual Standard_Boolean TwistOnS1(); - /****************** TwistOnS2 ******************/ - /**** md5 signature: 2e0e0e8d012a93b95309a3593de0d937 ****/ + /****** BlendFunc_ChAsym::TwistOnS2 ******/ + /****** md5 signature: 2e0e0e8d012a93b95309a3593de0d937 ******/ %feature("compactdefaultargs") TwistOnS2; %feature("autodoc", "Return ------- @@ -2192,8 +2192,8 @@ No available documentation. ") TwistOnS2; virtual Standard_Boolean TwistOnS2(); - /****************** Value ******************/ - /**** md5 signature: 1b689850305d8b13f289849027f0887b ****/ + /****** BlendFunc_ChAsym::Value ******/ + /****** md5 signature: 1b689850305d8b13f289849027f0887b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -2211,8 +2211,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: cb66193525cc0a7235a2cde2a228308b ****/ + /****** BlendFunc_ChAsym::Values ******/ + /****** md5 signature: cb66193525cc0a7235a2cde2a228308b ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -2245,8 +2245,8 @@ Returns the values of the functions and the derivatives for the variable ****************************/ class BlendFunc_ChAsymInv : public Blend_FuncInv { public: - /****************** BlendFunc_ChAsymInv ******************/ - /**** md5 signature: 57d9c726e0f3e32ebb79dc260d6ff4e1 ****/ + /****** BlendFunc_ChAsymInv::BlendFunc_ChAsymInv ******/ + /****** md5 signature: 57d9c726e0f3e32ebb79dc260d6ff4e1 ******/ %feature("compactdefaultargs") BlendFunc_ChAsymInv; %feature("autodoc", " Parameters @@ -2265,8 +2265,8 @@ No available documentation. ") BlendFunc_ChAsymInv; BlendFunc_ChAsymInv(const opencascade::handle & S1, const opencascade::handle & S2, const opencascade::handle & C); - /****************** ComputeValues ******************/ - /**** md5 signature: 204816d5dcb99a46213f8c407defdb50 ****/ + /****** BlendFunc_ChAsymInv::ComputeValues ******/ + /****** md5 signature: 204816d5dcb99a46213f8c407defdb50 ******/ %feature("compactdefaultargs") ComputeValues; %feature("autodoc", " Parameters @@ -2285,8 +2285,8 @@ Computes the values of the derivatives for the variable between degf and ") ComputeValues; Standard_Boolean ComputeValues(const math_Vector & X, const Standard_Integer DegF, const Standard_Integer DegL); - /****************** Derivatives ******************/ - /**** md5 signature: 940fde1549012c9025c437a16f7d8c18 ****/ + /****** BlendFunc_ChAsymInv::Derivatives ******/ + /****** md5 signature: 940fde1549012c9025c437a16f7d8c18 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -2304,8 +2304,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: 7f39b43072461a3f70a63d3178e97743 ****/ + /****** BlendFunc_ChAsymInv::GetBounds ******/ + /****** md5 signature: 7f39b43072461a3f70a63d3178e97743 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -2323,8 +2323,8 @@ No available documentation. ") GetBounds; void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetTolerance ******************/ - /**** md5 signature: db57a1b1119c0b1280472660909013c2 ****/ + /****** BlendFunc_ChAsymInv::GetTolerance ******/ + /****** md5 signature: db57a1b1119c0b1280472660909013c2 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -2342,8 +2342,8 @@ No available documentation. ") GetTolerance; void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** IsSolution ******************/ - /**** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ****/ + /****** BlendFunc_ChAsymInv::IsSolution ******/ + /****** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -2361,8 +2361,8 @@ No available documentation. ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** NbEquations ******************/ - /**** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ****/ + /****** BlendFunc_ChAsymInv::NbEquations ******/ + /****** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -2374,8 +2374,8 @@ Returns the number of equations of the function. ") NbEquations; Standard_Integer NbEquations(); - /****************** Set ******************/ - /**** md5 signature: 229bdaddea2d80c843d774149f42a9d3 ****/ + /****** BlendFunc_ChAsymInv::Set ******/ + /****** md5 signature: 229bdaddea2d80c843d774149f42a9d3 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -2393,8 +2393,8 @@ No available documentation. ") Set; void Set(const Standard_Boolean OnFirst, const opencascade::handle & COnSurf); - /****************** Set ******************/ - /**** md5 signature: 3d2665ead473e36c7266c389a87d886a ****/ + /****** BlendFunc_ChAsymInv::Set ******/ + /****** md5 signature: 3d2665ead473e36c7266c389a87d886a ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -2413,8 +2413,8 @@ No available documentation. ") Set; void Set(const Standard_Real Dist1, const Standard_Real Angle, const Standard_Integer Choix); - /****************** Value ******************/ - /**** md5 signature: 1b689850305d8b13f289849027f0887b ****/ + /****** BlendFunc_ChAsymInv::Value ******/ + /****** md5 signature: 1b689850305d8b13f289849027f0887b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -2432,8 +2432,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: cb66193525cc0a7235a2cde2a228308b ****/ + /****** BlendFunc_ChAsymInv::Values ******/ + /****** md5 signature: cb66193525cc0a7235a2cde2a228308b ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -2466,8 +2466,8 @@ Returns the values of the functions and the derivatives for the variable ***************************/ class BlendFunc_ConstRad : public Blend_Function { public: - /****************** BlendFunc_ConstRad ******************/ - /**** md5 signature: ec463286ed779585c6f6c64e454c4923 ****/ + /****** BlendFunc_ConstRad::BlendFunc_ConstRad ******/ + /****** md5 signature: ec463286ed779585c6f6c64e454c4923 ******/ %feature("compactdefaultargs") BlendFunc_ConstRad; %feature("autodoc", " Parameters @@ -2486,8 +2486,8 @@ No available documentation. ") BlendFunc_ConstRad; BlendFunc_ConstRad(const opencascade::handle & S1, const opencascade::handle & S2, const opencascade::handle & C); - /****************** AxeRot ******************/ - /**** md5 signature: 0c9178d91224ee5e9d339eb0f66536ab ****/ + /****** BlendFunc_ConstRad::AxeRot ******/ + /****** md5 signature: 0c9178d91224ee5e9d339eb0f66536ab ******/ %feature("compactdefaultargs") AxeRot; %feature("autodoc", " Parameters @@ -2504,8 +2504,8 @@ No available documentation. ") AxeRot; gp_Ax1 AxeRot(const Standard_Real Prm); - /****************** Derivatives ******************/ - /**** md5 signature: 940fde1549012c9025c437a16f7d8c18 ****/ + /****** BlendFunc_ConstRad::Derivatives ******/ + /****** md5 signature: 940fde1549012c9025c437a16f7d8c18 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -2523,8 +2523,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: 7f39b43072461a3f70a63d3178e97743 ****/ + /****** BlendFunc_ConstRad::GetBounds ******/ + /****** md5 signature: 7f39b43072461a3f70a63d3178e97743 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -2542,8 +2542,8 @@ No available documentation. ") GetBounds; void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetMinimalDistance ******************/ - /**** md5 signature: 5c7d510e1dc489ba8fc7ea0c2c8156a3 ****/ + /****** BlendFunc_ConstRad::GetMinimalDistance ******/ + /****** md5 signature: 5c7d510e1dc489ba8fc7ea0c2c8156a3 ******/ %feature("compactdefaultargs") GetMinimalDistance; %feature("autodoc", "Return ------- @@ -2555,8 +2555,8 @@ Returns the minimal distance between two extremities of calculated sections. ") GetMinimalDistance; Standard_Real GetMinimalDistance(); - /****************** GetMinimalWeight ******************/ - /**** md5 signature: f84aaf80601cfa818dfe6e9dd3bec152 ****/ + /****** BlendFunc_ConstRad::GetMinimalWeight ******/ + /****** md5 signature: f84aaf80601cfa818dfe6e9dd3bec152 ******/ %feature("compactdefaultargs") GetMinimalWeight; %feature("autodoc", " Parameters @@ -2573,8 +2573,8 @@ Compute the minimal value of weight for each poles of all sections. ") GetMinimalWeight; void GetMinimalWeight(TColStd_Array1OfReal & Weigths); - /****************** GetSectionSize ******************/ - /**** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ****/ + /****** BlendFunc_ConstRad::GetSectionSize ******/ + /****** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ******/ %feature("compactdefaultargs") GetSectionSize; %feature("autodoc", "Return ------- @@ -2586,8 +2586,8 @@ Returns the length of the maximum section. ") GetSectionSize; Standard_Real GetSectionSize(); - /****************** GetShape ******************/ - /**** md5 signature: 6b9d3e113e9e6721b2abf4c094cdd226 ****/ + /****** BlendFunc_ConstRad::GetShape ******/ + /****** md5 signature: 6b9d3e113e9e6721b2abf4c094cdd226 ******/ %feature("compactdefaultargs") GetShape; %feature("autodoc", " Parameters @@ -2606,8 +2606,8 @@ No available documentation. ") GetShape; void GetShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** GetTolerance ******************/ - /**** md5 signature: db57a1b1119c0b1280472660909013c2 ****/ + /****** BlendFunc_ConstRad::GetTolerance ******/ + /****** md5 signature: db57a1b1119c0b1280472660909013c2 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -2625,8 +2625,8 @@ No available documentation. ") GetTolerance; void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** GetTolerance ******************/ - /**** md5 signature: be5e2f2cb95c7dbdff402ed78245d7d7 ****/ + /****** BlendFunc_ConstRad::GetTolerance ******/ + /****** md5 signature: be5e2f2cb95c7dbdff402ed78245d7d7 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -2647,8 +2647,8 @@ Returns the tolerance to reach in approximation to respecte boundtol error at th ") GetTolerance; void GetTolerance(const Standard_Real BoundTol, const Standard_Real SurfTol, const Standard_Real AngleTol, math_Vector & Tol3d, math_Vector & Tol1D); - /****************** Intervals ******************/ - /**** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ****/ + /****** BlendFunc_ConstRad::Intervals ******/ + /****** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -2666,8 +2666,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsRational ******************/ - /**** md5 signature: 82ca56fad113156125f40128b25c0d8e ****/ + /****** BlendFunc_ConstRad::IsRational ******/ + /****** md5 signature: 82ca56fad113156125f40128b25c0d8e ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -2679,8 +2679,8 @@ Returns if the section is rationnal. ") IsRational; Standard_Boolean IsRational(); - /****************** IsSolution ******************/ - /**** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ****/ + /****** BlendFunc_ConstRad::IsSolution ******/ + /****** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -2698,8 +2698,8 @@ No available documentation. ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** IsTangencyPoint ******************/ - /**** md5 signature: 6f3e518ba9796f381f39631e22124ef0 ****/ + /****** BlendFunc_ConstRad::IsTangencyPoint ******/ + /****** md5 signature: 6f3e518ba9796f381f39631e22124ef0 ******/ %feature("compactdefaultargs") IsTangencyPoint; %feature("autodoc", "Return ------- @@ -2711,8 +2711,8 @@ No available documentation. ") IsTangencyPoint; Standard_Boolean IsTangencyPoint(); - /****************** Knots ******************/ - /**** md5 signature: a226854cd9eac08cbe4282feaa46c20d ****/ + /****** BlendFunc_ConstRad::Knots ******/ + /****** md5 signature: a226854cd9eac08cbe4282feaa46c20d ******/ %feature("compactdefaultargs") Knots; %feature("autodoc", " Parameters @@ -2729,8 +2729,8 @@ No available documentation. ") Knots; void Knots(TColStd_Array1OfReal & TKnots); - /****************** Mults ******************/ - /**** md5 signature: 36c77711e4160fb27b24b90b8fa7c6de ****/ + /****** BlendFunc_ConstRad::Mults ******/ + /****** md5 signature: 36c77711e4160fb27b24b90b8fa7c6de ******/ %feature("compactdefaultargs") Mults; %feature("autodoc", " Parameters @@ -2747,8 +2747,8 @@ No available documentation. ") Mults; void Mults(TColStd_Array1OfInteger & TMults); - /****************** NbEquations ******************/ - /**** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ****/ + /****** BlendFunc_ConstRad::NbEquations ******/ + /****** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -2760,8 +2760,8 @@ Returns the number of equations of the function. ") NbEquations; Standard_Integer NbEquations(); - /****************** NbIntervals ******************/ - /**** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ****/ + /****** BlendFunc_ConstRad::NbIntervals ******/ + /****** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -2778,8 +2778,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** PointOnS1 ******************/ - /**** md5 signature: 31ba0cad339bf2eee3eaa6f297b2933d ****/ + /****** BlendFunc_ConstRad::PointOnS1 ******/ + /****** md5 signature: 31ba0cad339bf2eee3eaa6f297b2933d ******/ %feature("compactdefaultargs") PointOnS1; %feature("autodoc", "Return ------- @@ -2791,8 +2791,8 @@ No available documentation. ") PointOnS1; const gp_Pnt PointOnS1(); - /****************** PointOnS2 ******************/ - /**** md5 signature: 92a9e4c03669ab0b0f57f90257aae861 ****/ + /****** BlendFunc_ConstRad::PointOnS2 ******/ + /****** md5 signature: 92a9e4c03669ab0b0f57f90257aae861 ******/ %feature("compactdefaultargs") PointOnS2; %feature("autodoc", "Return ------- @@ -2804,8 +2804,8 @@ No available documentation. ") PointOnS2; const gp_Pnt PointOnS2(); - /****************** Resolution ******************/ - /**** md5 signature: 1f885646df74c72ec13d37a113377aaa ****/ + /****** BlendFunc_ConstRad::Resolution ******/ + /****** md5 signature: 1f885646df74c72ec13d37a113377aaa ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -2824,8 +2824,8 @@ No available documentation. ") Resolution; void Resolution(const Standard_Integer IC2d, const Standard_Real Tol, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Section ******************/ - /**** md5 signature: 1ac8474fa2de24fef2821831782ec53a ****/ + /****** BlendFunc_ConstRad::Section ******/ + /****** md5 signature: 1ac8474fa2de24fef2821831782ec53a ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -2848,8 +2848,8 @@ Utile pour une visu rapide et approximative de la surface. ") Section; void Section(const Standard_Real Param, const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, Standard_Real &OutValue, Standard_Real &OutValue, gp_Circ & C); - /****************** Section ******************/ - /**** md5 signature: 97c961ad7d056aef4f3b86eb96e2c45f ****/ + /****** BlendFunc_ConstRad::Section ******/ + /****** md5 signature: 97c961ad7d056aef4f3b86eb96e2c45f ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -2875,8 +2875,8 @@ Used for the first and last section. ") Section; virtual Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfVec & D2Poles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColgp_Array1OfVec2d & D2Poles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths, TColStd_Array1OfReal & D2Weigths); - /****************** Section ******************/ - /**** md5 signature: cab230a655fc4e6bce41754b18837678 ****/ + /****** BlendFunc_ConstRad::Section ******/ + /****** md5 signature: cab230a655fc4e6bce41754b18837678 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -2899,8 +2899,8 @@ Used for the first and last section. ") Section; virtual Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths); - /****************** Section ******************/ - /**** md5 signature: 50af689ba5abf11bb271a06ac70b2d69 ****/ + /****** BlendFunc_ConstRad::Section ******/ + /****** md5 signature: 50af689ba5abf11bb271a06ac70b2d69 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -2920,8 +2920,8 @@ No available documentation. ") Section; void Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfPnt2d & Poles2d, TColStd_Array1OfReal & Weigths); - /****************** Set ******************/ - /**** md5 signature: a955f35e9076d1c844b9a2aa89b226bf ****/ + /****** BlendFunc_ConstRad::Set ******/ + /****** md5 signature: a955f35e9076d1c844b9a2aa89b226bf ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -2938,8 +2938,8 @@ No available documentation. ") Set; void Set(const Standard_Real Param); - /****************** Set ******************/ - /**** md5 signature: 7d0982b9e2ba9cb3c696f620150f4f9c ****/ + /****** BlendFunc_ConstRad::Set ******/ + /****** md5 signature: 7d0982b9e2ba9cb3c696f620150f4f9c ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -2957,8 +2957,8 @@ No available documentation. ") Set; void Set(const Standard_Real First, const Standard_Real Last); - /****************** Set ******************/ - /**** md5 signature: 99fe75aea7947575eb6b646d1797f9da ****/ + /****** BlendFunc_ConstRad::Set ******/ + /****** md5 signature: 99fe75aea7947575eb6b646d1797f9da ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -2976,8 +2976,8 @@ Inits the value of radius, and the 'quadrant'. ") Set; void Set(const Standard_Real Radius, const Standard_Integer Choix); - /****************** Set ******************/ - /**** md5 signature: 94cfe331c662a2ba190837b24fee3b95 ****/ + /****** BlendFunc_ConstRad::Set ******/ + /****** md5 signature: 94cfe331c662a2ba190837b24fee3b95 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -2994,8 +2994,8 @@ Sets the type of section generation for the approximations. ") Set; void Set(const BlendFunc_SectionShape TypeSection); - /****************** Tangent ******************/ - /**** md5 signature: 13397954dafd053b9875c1007b2501b6 ****/ + /****** BlendFunc_ConstRad::Tangent ******/ + /****** md5 signature: 13397954dafd053b9875c1007b2501b6 ******/ %feature("compactdefaultargs") Tangent; %feature("autodoc", " Parameters @@ -3019,8 +3019,8 @@ Returns the tangent vector at the section, at the beginning and the end of the s ") Tangent; void Tangent(const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, gp_Vec & TgFirst, gp_Vec & TgLast, gp_Vec & NormFirst, gp_Vec & NormLast); - /****************** Tangent2dOnS1 ******************/ - /**** md5 signature: ed3fe23c28d6ac4c0a074084d164d41d ****/ + /****** BlendFunc_ConstRad::Tangent2dOnS1 ******/ + /****** md5 signature: ed3fe23c28d6ac4c0a074084d164d41d ******/ %feature("compactdefaultargs") Tangent2dOnS1; %feature("autodoc", "Return ------- @@ -3032,8 +3032,8 @@ No available documentation. ") Tangent2dOnS1; const gp_Vec2d Tangent2dOnS1(); - /****************** Tangent2dOnS2 ******************/ - /**** md5 signature: f57294e3963627cbeb43134bc6c1d88a ****/ + /****** BlendFunc_ConstRad::Tangent2dOnS2 ******/ + /****** md5 signature: f57294e3963627cbeb43134bc6c1d88a ******/ %feature("compactdefaultargs") Tangent2dOnS2; %feature("autodoc", "Return ------- @@ -3045,8 +3045,8 @@ No available documentation. ") Tangent2dOnS2; const gp_Vec2d Tangent2dOnS2(); - /****************** TangentOnS1 ******************/ - /**** md5 signature: b20f2a50fc3bd003b5bb0d17d261f9e7 ****/ + /****** BlendFunc_ConstRad::TangentOnS1 ******/ + /****** md5 signature: b20f2a50fc3bd003b5bb0d17d261f9e7 ******/ %feature("compactdefaultargs") TangentOnS1; %feature("autodoc", "Return ------- @@ -3058,8 +3058,8 @@ No available documentation. ") TangentOnS1; const gp_Vec TangentOnS1(); - /****************** TangentOnS2 ******************/ - /**** md5 signature: 5ee1080b2d5e8e29046ca62a01e3f639 ****/ + /****** BlendFunc_ConstRad::TangentOnS2 ******/ + /****** md5 signature: 5ee1080b2d5e8e29046ca62a01e3f639 ******/ %feature("compactdefaultargs") TangentOnS2; %feature("autodoc", "Return ------- @@ -3071,8 +3071,8 @@ No available documentation. ") TangentOnS2; const gp_Vec TangentOnS2(); - /****************** TwistOnS1 ******************/ - /**** md5 signature: bcab8c931932008ff46a37653f1cc038 ****/ + /****** BlendFunc_ConstRad::TwistOnS1 ******/ + /****** md5 signature: bcab8c931932008ff46a37653f1cc038 ******/ %feature("compactdefaultargs") TwistOnS1; %feature("autodoc", "Return ------- @@ -3084,8 +3084,8 @@ No available documentation. ") TwistOnS1; virtual Standard_Boolean TwistOnS1(); - /****************** TwistOnS2 ******************/ - /**** md5 signature: 2e0e0e8d012a93b95309a3593de0d937 ****/ + /****** BlendFunc_ConstRad::TwistOnS2 ******/ + /****** md5 signature: 2e0e0e8d012a93b95309a3593de0d937 ******/ %feature("compactdefaultargs") TwistOnS2; %feature("autodoc", "Return ------- @@ -3097,8 +3097,8 @@ No available documentation. ") TwistOnS2; virtual Standard_Boolean TwistOnS2(); - /****************** Value ******************/ - /**** md5 signature: 1b689850305d8b13f289849027f0887b ****/ + /****** BlendFunc_ConstRad::Value ******/ + /****** md5 signature: 1b689850305d8b13f289849027f0887b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -3116,8 +3116,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: cb66193525cc0a7235a2cde2a228308b ****/ + /****** BlendFunc_ConstRad::Values ******/ + /****** md5 signature: cb66193525cc0a7235a2cde2a228308b ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -3150,8 +3150,8 @@ Returns the values of the functions and the derivatives for the variable ******************************/ class BlendFunc_ConstRadInv : public Blend_FuncInv { public: - /****************** BlendFunc_ConstRadInv ******************/ - /**** md5 signature: c8f32f0129f68758453c9740132fe619 ****/ + /****** BlendFunc_ConstRadInv::BlendFunc_ConstRadInv ******/ + /****** md5 signature: c8f32f0129f68758453c9740132fe619 ******/ %feature("compactdefaultargs") BlendFunc_ConstRadInv; %feature("autodoc", " Parameters @@ -3170,8 +3170,8 @@ No available documentation. ") BlendFunc_ConstRadInv; BlendFunc_ConstRadInv(const opencascade::handle & S1, const opencascade::handle & S2, const opencascade::handle & C); - /****************** Derivatives ******************/ - /**** md5 signature: 940fde1549012c9025c437a16f7d8c18 ****/ + /****** BlendFunc_ConstRadInv::Derivatives ******/ + /****** md5 signature: 940fde1549012c9025c437a16f7d8c18 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -3189,8 +3189,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: 7f39b43072461a3f70a63d3178e97743 ****/ + /****** BlendFunc_ConstRadInv::GetBounds ******/ + /****** md5 signature: 7f39b43072461a3f70a63d3178e97743 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -3208,8 +3208,8 @@ No available documentation. ") GetBounds; void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetTolerance ******************/ - /**** md5 signature: db57a1b1119c0b1280472660909013c2 ****/ + /****** BlendFunc_ConstRadInv::GetTolerance ******/ + /****** md5 signature: db57a1b1119c0b1280472660909013c2 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -3227,8 +3227,8 @@ No available documentation. ") GetTolerance; void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** IsSolution ******************/ - /**** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ****/ + /****** BlendFunc_ConstRadInv::IsSolution ******/ + /****** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -3246,8 +3246,8 @@ No available documentation. ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** NbEquations ******************/ - /**** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ****/ + /****** BlendFunc_ConstRadInv::NbEquations ******/ + /****** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -3259,8 +3259,8 @@ Returns the number of equations of the function. ") NbEquations; Standard_Integer NbEquations(); - /****************** Set ******************/ - /**** md5 signature: 229bdaddea2d80c843d774149f42a9d3 ****/ + /****** BlendFunc_ConstRadInv::Set ******/ + /****** md5 signature: 229bdaddea2d80c843d774149f42a9d3 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -3278,8 +3278,8 @@ No available documentation. ") Set; void Set(const Standard_Boolean OnFirst, const opencascade::handle & COnSurf); - /****************** Set ******************/ - /**** md5 signature: 941166ee1a941569b8be371b05e6b601 ****/ + /****** BlendFunc_ConstRadInv::Set ******/ + /****** md5 signature: 941166ee1a941569b8be371b05e6b601 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -3297,8 +3297,8 @@ No available documentation. ") Set; void Set(const Standard_Real R, const Standard_Integer Choix); - /****************** Value ******************/ - /**** md5 signature: 1b689850305d8b13f289849027f0887b ****/ + /****** BlendFunc_ConstRadInv::Value ******/ + /****** md5 signature: 1b689850305d8b13f289849027f0887b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -3316,8 +3316,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: cb66193525cc0a7235a2cde2a228308b ****/ + /****** BlendFunc_ConstRadInv::Values ******/ + /****** md5 signature: cb66193525cc0a7235a2cde2a228308b ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -3350,8 +3350,8 @@ Returns the values of the functions and the derivatives for the variable ************************/ class BlendFunc_Corde { public: - /****************** BlendFunc_Corde ******************/ - /**** md5 signature: 09c11190c26094da844f7a5a6a6617c4 ****/ + /****** BlendFunc_Corde::BlendFunc_Corde ******/ + /****** md5 signature: 09c11190c26094da844f7a5a6a6617c4 ******/ %feature("compactdefaultargs") BlendFunc_Corde; %feature("autodoc", " Parameters @@ -3369,8 +3369,8 @@ No available documentation. ") BlendFunc_Corde; BlendFunc_Corde(const opencascade::handle & S, const opencascade::handle & CGuide); - /****************** DerFguide ******************/ - /**** md5 signature: 23a9f18e67908903d4dd5177d48fb2af ****/ + /****** BlendFunc_Corde::DerFguide ******/ + /****** md5 signature: 23a9f18e67908903d4dd5177d48fb2af ******/ %feature("compactdefaultargs") DerFguide; %feature("autodoc", " Parameters @@ -3388,8 +3388,8 @@ Derived of the function compared to the parameter of the guideline. ") DerFguide; void DerFguide(const math_Vector & Sol, gp_Vec2d & DerF); - /****************** Derivatives ******************/ - /**** md5 signature: 80ee5f16e62731c095910ad60228848b ****/ + /****** BlendFunc_Corde::Derivatives ******/ + /****** md5 signature: 80ee5f16e62731c095910ad60228848b ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -3407,8 +3407,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** IsSolution ******************/ - /**** md5 signature: 0884df902635922234b529dc88a260b5 ****/ + /****** BlendFunc_Corde::IsSolution ******/ + /****** md5 signature: 0884df902635922234b529dc88a260b5 ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -3426,8 +3426,8 @@ Returns false if sol is not solution else returns true and updates the fields tg ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** IsTangencyPoint ******************/ - /**** md5 signature: a9c9faea523a7d80ff8416e04b887e70 ****/ + /****** BlendFunc_Corde::IsTangencyPoint ******/ + /****** md5 signature: a9c9faea523a7d80ff8416e04b887e70 ******/ %feature("compactdefaultargs") IsTangencyPoint; %feature("autodoc", "Return ------- @@ -3439,8 +3439,8 @@ Returns true when it is not possible to compute the tangent vectors at pointons. ") IsTangencyPoint; Standard_Boolean IsTangencyPoint(); - /****************** NPlan ******************/ - /**** md5 signature: 1752f4f55cfe405bd67775b7f8e77006 ****/ + /****** BlendFunc_Corde::NPlan ******/ + /****** md5 signature: 1752f4f55cfe405bd67775b7f8e77006 ******/ %feature("compactdefaultargs") NPlan; %feature("autodoc", "Return ------- @@ -3452,8 +3452,8 @@ Returns the normal to cguide at ptgui. ") NPlan; const gp_Vec NPlan(); - /****************** PointOnGuide ******************/ - /**** md5 signature: e87472d23145a96f1fa3e3141ac7c2dd ****/ + /****** BlendFunc_Corde::PointOnGuide ******/ + /****** md5 signature: e87472d23145a96f1fa3e3141ac7c2dd ******/ %feature("compactdefaultargs") PointOnGuide; %feature("autodoc", "Return ------- @@ -3465,8 +3465,8 @@ Returns the point of parameter on cguide. ") PointOnGuide; const gp_Pnt PointOnGuide(); - /****************** PointOnS ******************/ - /**** md5 signature: 7701a4dd49c389b38b1770bec82a60cd ****/ + /****** BlendFunc_Corde::PointOnS ******/ + /****** md5 signature: 7701a4dd49c389b38b1770bec82a60cd ******/ %feature("compactdefaultargs") PointOnS; %feature("autodoc", "Return ------- @@ -3478,8 +3478,8 @@ No available documentation. ") PointOnS; const gp_Pnt PointOnS(); - /****************** SetDist ******************/ - /**** md5 signature: a0f41880e1eb0af062b3350ce3ca3532 ****/ + /****** BlendFunc_Corde::SetDist ******/ + /****** md5 signature: a0f41880e1eb0af062b3350ce3ca3532 ******/ %feature("compactdefaultargs") SetDist; %feature("autodoc", " Parameters @@ -3496,8 +3496,8 @@ No available documentation. ") SetDist; void SetDist(const Standard_Real Dist); - /****************** SetParam ******************/ - /**** md5 signature: afbb70d3463dbd3dc51af6c494b8ebef ****/ + /****** BlendFunc_Corde::SetParam ******/ + /****** md5 signature: afbb70d3463dbd3dc51af6c494b8ebef ******/ %feature("compactdefaultargs") SetParam; %feature("autodoc", " Parameters @@ -3514,8 +3514,8 @@ No available documentation. ") SetParam; void SetParam(const Standard_Real Param); - /****************** Tangent2dOnS ******************/ - /**** md5 signature: 277e1459ed99bd7331c01c470b757dad ****/ + /****** BlendFunc_Corde::Tangent2dOnS ******/ + /****** md5 signature: 277e1459ed99bd7331c01c470b757dad ******/ %feature("compactdefaultargs") Tangent2dOnS; %feature("autodoc", "Return ------- @@ -3527,8 +3527,8 @@ Returns the tangent vector at pointons, in the parametric space of the first sur ") Tangent2dOnS; const gp_Vec2d Tangent2dOnS(); - /****************** TangentOnS ******************/ - /**** md5 signature: 6a76df7a0ec21039226ae1d5b4797449 ****/ + /****** BlendFunc_Corde::TangentOnS ******/ + /****** md5 signature: 6a76df7a0ec21039226ae1d5b4797449 ******/ %feature("compactdefaultargs") TangentOnS; %feature("autodoc", "Return ------- @@ -3540,8 +3540,8 @@ Returns the tangent vector at pointons, in 3d space. ") TangentOnS; const gp_Vec TangentOnS(); - /****************** Value ******************/ - /**** md5 signature: 31f6ba581b8fae503400d98976418349 ****/ + /****** BlendFunc_Corde::Value ******/ + /****** md5 signature: 31f6ba581b8fae503400d98976418349 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -3573,8 +3573,8 @@ Computes the values of the function for the variable . returns true if th **************************/ class BlendFunc_EvolRad : public Blend_Function { public: - /****************** BlendFunc_EvolRad ******************/ - /**** md5 signature: 0d3aa13d1183ca5db26a2b0aa1b7ba32 ****/ + /****** BlendFunc_EvolRad::BlendFunc_EvolRad ******/ + /****** md5 signature: 0d3aa13d1183ca5db26a2b0aa1b7ba32 ******/ %feature("compactdefaultargs") BlendFunc_EvolRad; %feature("autodoc", " Parameters @@ -3594,8 +3594,8 @@ No available documentation. ") BlendFunc_EvolRad; BlendFunc_EvolRad(const opencascade::handle & S1, const opencascade::handle & S2, const opencascade::handle & C, const opencascade::handle & Law); - /****************** Derivatives ******************/ - /**** md5 signature: 940fde1549012c9025c437a16f7d8c18 ****/ + /****** BlendFunc_EvolRad::Derivatives ******/ + /****** md5 signature: 940fde1549012c9025c437a16f7d8c18 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -3613,8 +3613,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: 7f39b43072461a3f70a63d3178e97743 ****/ + /****** BlendFunc_EvolRad::GetBounds ******/ + /****** md5 signature: 7f39b43072461a3f70a63d3178e97743 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -3632,8 +3632,8 @@ No available documentation. ") GetBounds; void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetMinimalDistance ******************/ - /**** md5 signature: 5c7d510e1dc489ba8fc7ea0c2c8156a3 ****/ + /****** BlendFunc_EvolRad::GetMinimalDistance ******/ + /****** md5 signature: 5c7d510e1dc489ba8fc7ea0c2c8156a3 ******/ %feature("compactdefaultargs") GetMinimalDistance; %feature("autodoc", "Return ------- @@ -3645,8 +3645,8 @@ Returns the minimal distance between two extremities of calculated sections. ") GetMinimalDistance; Standard_Real GetMinimalDistance(); - /****************** GetMinimalWeight ******************/ - /**** md5 signature: f84aaf80601cfa818dfe6e9dd3bec152 ****/ + /****** BlendFunc_EvolRad::GetMinimalWeight ******/ + /****** md5 signature: f84aaf80601cfa818dfe6e9dd3bec152 ******/ %feature("compactdefaultargs") GetMinimalWeight; %feature("autodoc", " Parameters @@ -3663,8 +3663,8 @@ Compute the minimal value of weight for each poles of all sections. ") GetMinimalWeight; void GetMinimalWeight(TColStd_Array1OfReal & Weigths); - /****************** GetSectionSize ******************/ - /**** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ****/ + /****** BlendFunc_EvolRad::GetSectionSize ******/ + /****** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ******/ %feature("compactdefaultargs") GetSectionSize; %feature("autodoc", "Return ------- @@ -3676,8 +3676,8 @@ Returns the length of the maximum section. ") GetSectionSize; Standard_Real GetSectionSize(); - /****************** GetShape ******************/ - /**** md5 signature: 6b9d3e113e9e6721b2abf4c094cdd226 ****/ + /****** BlendFunc_EvolRad::GetShape ******/ + /****** md5 signature: 6b9d3e113e9e6721b2abf4c094cdd226 ******/ %feature("compactdefaultargs") GetShape; %feature("autodoc", " Parameters @@ -3696,8 +3696,8 @@ No available documentation. ") GetShape; void GetShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** GetTolerance ******************/ - /**** md5 signature: db57a1b1119c0b1280472660909013c2 ****/ + /****** BlendFunc_EvolRad::GetTolerance ******/ + /****** md5 signature: db57a1b1119c0b1280472660909013c2 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -3715,8 +3715,8 @@ No available documentation. ") GetTolerance; void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** GetTolerance ******************/ - /**** md5 signature: be5e2f2cb95c7dbdff402ed78245d7d7 ****/ + /****** BlendFunc_EvolRad::GetTolerance ******/ + /****** md5 signature: be5e2f2cb95c7dbdff402ed78245d7d7 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -3737,8 +3737,8 @@ Returns the tolerance to reach in approximation to respecte boundtol error at th ") GetTolerance; void GetTolerance(const Standard_Real BoundTol, const Standard_Real SurfTol, const Standard_Real AngleTol, math_Vector & Tol3d, math_Vector & Tol1D); - /****************** Intervals ******************/ - /**** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ****/ + /****** BlendFunc_EvolRad::Intervals ******/ + /****** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -3756,8 +3756,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsRational ******************/ - /**** md5 signature: 82ca56fad113156125f40128b25c0d8e ****/ + /****** BlendFunc_EvolRad::IsRational ******/ + /****** md5 signature: 82ca56fad113156125f40128b25c0d8e ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -3769,8 +3769,8 @@ Returns if the section is rationnal. ") IsRational; Standard_Boolean IsRational(); - /****************** IsSolution ******************/ - /**** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ****/ + /****** BlendFunc_EvolRad::IsSolution ******/ + /****** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -3788,8 +3788,8 @@ No available documentation. ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** IsTangencyPoint ******************/ - /**** md5 signature: 6f3e518ba9796f381f39631e22124ef0 ****/ + /****** BlendFunc_EvolRad::IsTangencyPoint ******/ + /****** md5 signature: 6f3e518ba9796f381f39631e22124ef0 ******/ %feature("compactdefaultargs") IsTangencyPoint; %feature("autodoc", "Return ------- @@ -3801,8 +3801,8 @@ No available documentation. ") IsTangencyPoint; Standard_Boolean IsTangencyPoint(); - /****************** Knots ******************/ - /**** md5 signature: a226854cd9eac08cbe4282feaa46c20d ****/ + /****** BlendFunc_EvolRad::Knots ******/ + /****** md5 signature: a226854cd9eac08cbe4282feaa46c20d ******/ %feature("compactdefaultargs") Knots; %feature("autodoc", " Parameters @@ -3819,8 +3819,8 @@ No available documentation. ") Knots; void Knots(TColStd_Array1OfReal & TKnots); - /****************** Mults ******************/ - /**** md5 signature: 36c77711e4160fb27b24b90b8fa7c6de ****/ + /****** BlendFunc_EvolRad::Mults ******/ + /****** md5 signature: 36c77711e4160fb27b24b90b8fa7c6de ******/ %feature("compactdefaultargs") Mults; %feature("autodoc", " Parameters @@ -3837,8 +3837,8 @@ No available documentation. ") Mults; void Mults(TColStd_Array1OfInteger & TMults); - /****************** NbEquations ******************/ - /**** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ****/ + /****** BlendFunc_EvolRad::NbEquations ******/ + /****** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -3850,8 +3850,8 @@ Returns the number of equations of the function. ") NbEquations; Standard_Integer NbEquations(); - /****************** NbIntervals ******************/ - /**** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ****/ + /****** BlendFunc_EvolRad::NbIntervals ******/ + /****** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -3868,8 +3868,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** PointOnS1 ******************/ - /**** md5 signature: 31ba0cad339bf2eee3eaa6f297b2933d ****/ + /****** BlendFunc_EvolRad::PointOnS1 ******/ + /****** md5 signature: 31ba0cad339bf2eee3eaa6f297b2933d ******/ %feature("compactdefaultargs") PointOnS1; %feature("autodoc", "Return ------- @@ -3881,8 +3881,8 @@ No available documentation. ") PointOnS1; const gp_Pnt PointOnS1(); - /****************** PointOnS2 ******************/ - /**** md5 signature: 92a9e4c03669ab0b0f57f90257aae861 ****/ + /****** BlendFunc_EvolRad::PointOnS2 ******/ + /****** md5 signature: 92a9e4c03669ab0b0f57f90257aae861 ******/ %feature("compactdefaultargs") PointOnS2; %feature("autodoc", "Return ------- @@ -3894,8 +3894,8 @@ No available documentation. ") PointOnS2; const gp_Pnt PointOnS2(); - /****************** Resolution ******************/ - /**** md5 signature: 1f885646df74c72ec13d37a113377aaa ****/ + /****** BlendFunc_EvolRad::Resolution ******/ + /****** md5 signature: 1f885646df74c72ec13d37a113377aaa ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -3914,8 +3914,8 @@ No available documentation. ") Resolution; void Resolution(const Standard_Integer IC2d, const Standard_Real Tol, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Section ******************/ - /**** md5 signature: 1ac8474fa2de24fef2821831782ec53a ****/ + /****** BlendFunc_EvolRad::Section ******/ + /****** md5 signature: 1ac8474fa2de24fef2821831782ec53a ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -3938,8 +3938,8 @@ Method for graphic traces. ") Section; void Section(const Standard_Real Param, const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, Standard_Real &OutValue, Standard_Real &OutValue, gp_Circ & C); - /****************** Section ******************/ - /**** md5 signature: 97c961ad7d056aef4f3b86eb96e2c45f ****/ + /****** BlendFunc_EvolRad::Section ******/ + /****** md5 signature: 97c961ad7d056aef4f3b86eb96e2c45f ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -3965,8 +3965,8 @@ Used for the first and last section. ") Section; virtual Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfVec & D2Poles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColgp_Array1OfVec2d & D2Poles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths, TColStd_Array1OfReal & D2Weigths); - /****************** Section ******************/ - /**** md5 signature: cab230a655fc4e6bce41754b18837678 ****/ + /****** BlendFunc_EvolRad::Section ******/ + /****** md5 signature: cab230a655fc4e6bce41754b18837678 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -3989,8 +3989,8 @@ Used for the first and last section. ") Section; virtual Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths); - /****************** Section ******************/ - /**** md5 signature: 50af689ba5abf11bb271a06ac70b2d69 ****/ + /****** BlendFunc_EvolRad::Section ******/ + /****** md5 signature: 50af689ba5abf11bb271a06ac70b2d69 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -4010,8 +4010,8 @@ No available documentation. ") Section; void Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfPnt2d & Poles2d, TColStd_Array1OfReal & Weigths); - /****************** Set ******************/ - /**** md5 signature: a955f35e9076d1c844b9a2aa89b226bf ****/ + /****** BlendFunc_EvolRad::Set ******/ + /****** md5 signature: a955f35e9076d1c844b9a2aa89b226bf ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -4028,8 +4028,8 @@ No available documentation. ") Set; void Set(const Standard_Real Param); - /****************** Set ******************/ - /**** md5 signature: 7d0982b9e2ba9cb3c696f620150f4f9c ****/ + /****** BlendFunc_EvolRad::Set ******/ + /****** md5 signature: 7d0982b9e2ba9cb3c696f620150f4f9c ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -4047,8 +4047,8 @@ No available documentation. ") Set; void Set(const Standard_Real First, const Standard_Real Last); - /****************** Set ******************/ - /**** md5 signature: d73c9c4058c0955fc8cd59888660f750 ****/ + /****** BlendFunc_EvolRad::Set ******/ + /****** md5 signature: d73c9c4058c0955fc8cd59888660f750 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -4065,8 +4065,8 @@ No available documentation. ") Set; void Set(const Standard_Integer Choix); - /****************** Set ******************/ - /**** md5 signature: 94cfe331c662a2ba190837b24fee3b95 ****/ + /****** BlendFunc_EvolRad::Set ******/ + /****** md5 signature: 94cfe331c662a2ba190837b24fee3b95 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -4083,8 +4083,8 @@ Sets the type of section generation for the approximations. ") Set; void Set(const BlendFunc_SectionShape TypeSection); - /****************** Tangent ******************/ - /**** md5 signature: 13397954dafd053b9875c1007b2501b6 ****/ + /****** BlendFunc_EvolRad::Tangent ******/ + /****** md5 signature: 13397954dafd053b9875c1007b2501b6 ******/ %feature("compactdefaultargs") Tangent; %feature("autodoc", " Parameters @@ -4108,8 +4108,8 @@ Returns the tangent vector at the section, at the beginning and the end of the s ") Tangent; void Tangent(const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, gp_Vec & TgFirst, gp_Vec & TgLast, gp_Vec & NormFirst, gp_Vec & NormLast); - /****************** Tangent2dOnS1 ******************/ - /**** md5 signature: ed3fe23c28d6ac4c0a074084d164d41d ****/ + /****** BlendFunc_EvolRad::Tangent2dOnS1 ******/ + /****** md5 signature: ed3fe23c28d6ac4c0a074084d164d41d ******/ %feature("compactdefaultargs") Tangent2dOnS1; %feature("autodoc", "Return ------- @@ -4121,8 +4121,8 @@ No available documentation. ") Tangent2dOnS1; const gp_Vec2d Tangent2dOnS1(); - /****************** Tangent2dOnS2 ******************/ - /**** md5 signature: f57294e3963627cbeb43134bc6c1d88a ****/ + /****** BlendFunc_EvolRad::Tangent2dOnS2 ******/ + /****** md5 signature: f57294e3963627cbeb43134bc6c1d88a ******/ %feature("compactdefaultargs") Tangent2dOnS2; %feature("autodoc", "Return ------- @@ -4134,8 +4134,8 @@ No available documentation. ") Tangent2dOnS2; const gp_Vec2d Tangent2dOnS2(); - /****************** TangentOnS1 ******************/ - /**** md5 signature: b20f2a50fc3bd003b5bb0d17d261f9e7 ****/ + /****** BlendFunc_EvolRad::TangentOnS1 ******/ + /****** md5 signature: b20f2a50fc3bd003b5bb0d17d261f9e7 ******/ %feature("compactdefaultargs") TangentOnS1; %feature("autodoc", "Return ------- @@ -4147,8 +4147,8 @@ No available documentation. ") TangentOnS1; const gp_Vec TangentOnS1(); - /****************** TangentOnS2 ******************/ - /**** md5 signature: 5ee1080b2d5e8e29046ca62a01e3f639 ****/ + /****** BlendFunc_EvolRad::TangentOnS2 ******/ + /****** md5 signature: 5ee1080b2d5e8e29046ca62a01e3f639 ******/ %feature("compactdefaultargs") TangentOnS2; %feature("autodoc", "Return ------- @@ -4160,8 +4160,8 @@ No available documentation. ") TangentOnS2; const gp_Vec TangentOnS2(); - /****************** TwistOnS1 ******************/ - /**** md5 signature: bcab8c931932008ff46a37653f1cc038 ****/ + /****** BlendFunc_EvolRad::TwistOnS1 ******/ + /****** md5 signature: bcab8c931932008ff46a37653f1cc038 ******/ %feature("compactdefaultargs") TwistOnS1; %feature("autodoc", "Return ------- @@ -4173,8 +4173,8 @@ No available documentation. ") TwistOnS1; virtual Standard_Boolean TwistOnS1(); - /****************** TwistOnS2 ******************/ - /**** md5 signature: 2e0e0e8d012a93b95309a3593de0d937 ****/ + /****** BlendFunc_EvolRad::TwistOnS2 ******/ + /****** md5 signature: 2e0e0e8d012a93b95309a3593de0d937 ******/ %feature("compactdefaultargs") TwistOnS2; %feature("autodoc", "Return ------- @@ -4186,8 +4186,8 @@ No available documentation. ") TwistOnS2; virtual Standard_Boolean TwistOnS2(); - /****************** Value ******************/ - /**** md5 signature: 1b689850305d8b13f289849027f0887b ****/ + /****** BlendFunc_EvolRad::Value ******/ + /****** md5 signature: 1b689850305d8b13f289849027f0887b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -4205,8 +4205,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: cb66193525cc0a7235a2cde2a228308b ****/ + /****** BlendFunc_EvolRad::Values ******/ + /****** md5 signature: cb66193525cc0a7235a2cde2a228308b ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -4239,8 +4239,8 @@ Returns the values of the functions and the derivatives for the variable *****************************/ class BlendFunc_EvolRadInv : public Blend_FuncInv { public: - /****************** BlendFunc_EvolRadInv ******************/ - /**** md5 signature: d0bf0a36455b752e44c89151c15747c3 ****/ + /****** BlendFunc_EvolRadInv::BlendFunc_EvolRadInv ******/ + /****** md5 signature: d0bf0a36455b752e44c89151c15747c3 ******/ %feature("compactdefaultargs") BlendFunc_EvolRadInv; %feature("autodoc", " Parameters @@ -4260,8 +4260,8 @@ No available documentation. ") BlendFunc_EvolRadInv; BlendFunc_EvolRadInv(const opencascade::handle & S1, const opencascade::handle & S2, const opencascade::handle & C, const opencascade::handle & Law); - /****************** Derivatives ******************/ - /**** md5 signature: 80ee5f16e62731c095910ad60228848b ****/ + /****** BlendFunc_EvolRadInv::Derivatives ******/ + /****** md5 signature: 80ee5f16e62731c095910ad60228848b ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -4279,8 +4279,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: 73d101c74e718085b2fc8de28383bce3 ****/ + /****** BlendFunc_EvolRadInv::GetBounds ******/ + /****** md5 signature: 73d101c74e718085b2fc8de28383bce3 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -4298,8 +4298,8 @@ No available documentation. ") GetBounds; void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetTolerance ******************/ - /**** md5 signature: 463e2084f8f6e4a4f87c36de6e9fd9c6 ****/ + /****** BlendFunc_EvolRadInv::GetTolerance ******/ + /****** md5 signature: 463e2084f8f6e4a4f87c36de6e9fd9c6 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -4317,8 +4317,8 @@ No available documentation. ") GetTolerance; void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** IsSolution ******************/ - /**** md5 signature: 0884df902635922234b529dc88a260b5 ****/ + /****** BlendFunc_EvolRadInv::IsSolution ******/ + /****** md5 signature: 0884df902635922234b529dc88a260b5 ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -4336,8 +4336,8 @@ No available documentation. ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** NbEquations ******************/ - /**** md5 signature: 42be0dc2e32c8e563393e8490171707e ****/ + /****** BlendFunc_EvolRadInv::NbEquations ******/ + /****** md5 signature: 42be0dc2e32c8e563393e8490171707e ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -4349,8 +4349,8 @@ Returns the number of equations of the function. ") NbEquations; Standard_Integer NbEquations(); - /****************** Set ******************/ - /**** md5 signature: cdc53548b1d92196db3a77124e819099 ****/ + /****** BlendFunc_EvolRadInv::Set ******/ + /****** md5 signature: cdc53548b1d92196db3a77124e819099 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -4368,8 +4368,8 @@ No available documentation. ") Set; void Set(const Standard_Boolean OnFirst, const opencascade::handle & COnSurf); - /****************** Set ******************/ - /**** md5 signature: d73c9c4058c0955fc8cd59888660f750 ****/ + /****** BlendFunc_EvolRadInv::Set ******/ + /****** md5 signature: d73c9c4058c0955fc8cd59888660f750 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -4386,8 +4386,8 @@ No available documentation. ") Set; void Set(const Standard_Integer Choix); - /****************** Value ******************/ - /**** md5 signature: 31f6ba581b8fae503400d98976418349 ****/ + /****** BlendFunc_EvolRadInv::Value ******/ + /****** md5 signature: 31f6ba581b8fae503400d98976418349 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -4405,8 +4405,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: 17c41f2c2b925e9ddfe2f61a9052313c ****/ + /****** BlendFunc_EvolRadInv::Values ******/ + /****** md5 signature: 17c41f2c2b925e9ddfe2f61a9052313c ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -4440,8 +4440,8 @@ Returns the values of the functions and the derivatives for the variable %nodefaultctor BlendFunc_GenChamfInv; class BlendFunc_GenChamfInv : public Blend_FuncInv { public: - /****************** GetBounds ******************/ - /**** md5 signature: 7f39b43072461a3f70a63d3178e97743 ****/ + /****** BlendFunc_GenChamfInv::GetBounds ******/ + /****** md5 signature: 7f39b43072461a3f70a63d3178e97743 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -4459,8 +4459,8 @@ No available documentation. ") GetBounds; void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetTolerance ******************/ - /**** md5 signature: db57a1b1119c0b1280472660909013c2 ****/ + /****** BlendFunc_GenChamfInv::GetTolerance ******/ + /****** md5 signature: db57a1b1119c0b1280472660909013c2 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -4478,8 +4478,8 @@ No available documentation. ") GetTolerance; void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** NbEquations ******************/ - /**** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ****/ + /****** BlendFunc_GenChamfInv::NbEquations ******/ + /****** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -4491,8 +4491,8 @@ Returns the number of equations of the function. ") NbEquations; Standard_Integer NbEquations(); - /****************** Set ******************/ - /**** md5 signature: 4eba17c1fe83cac47590d6f96738fedb ****/ + /****** BlendFunc_GenChamfInv::Set ******/ + /****** md5 signature: 4eba17c1fe83cac47590d6f96738fedb ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -4510,8 +4510,8 @@ No available documentation. ") Set; virtual void Set(const Standard_Boolean OnFirst, const opencascade::handle & COnSurf); - /****************** Set ******************/ - /**** md5 signature: ee1b691ca844b8dd605892e1ef6591ed ****/ + /****** BlendFunc_GenChamfInv::Set ******/ + /****** md5 signature: ee1b691ca844b8dd605892e1ef6591ed ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -4530,8 +4530,8 @@ No available documentation. ") Set; virtual void Set(const Standard_Real Dist1, const Standard_Real Dist2, const Standard_Integer Choix); - /****************** Values ******************/ - /**** md5 signature: cb66193525cc0a7235a2cde2a228308b ****/ + /****** BlendFunc_GenChamfInv::Values ******/ + /****** md5 signature: cb66193525cc0a7235a2cde2a228308b ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -4565,8 +4565,8 @@ Returns the values of the functions and the derivatives for the variable %nodefaultctor BlendFunc_GenChamfer; class BlendFunc_GenChamfer : public Blend_Function { public: - /****************** GetBounds ******************/ - /**** md5 signature: 7f39b43072461a3f70a63d3178e97743 ****/ + /****** BlendFunc_GenChamfer::GetBounds ******/ + /****** md5 signature: 7f39b43072461a3f70a63d3178e97743 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -4584,8 +4584,8 @@ No available documentation. ") GetBounds; void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetMinimalDistance ******************/ - /**** md5 signature: 5c7d510e1dc489ba8fc7ea0c2c8156a3 ****/ + /****** BlendFunc_GenChamfer::GetMinimalDistance ******/ + /****** md5 signature: 5c7d510e1dc489ba8fc7ea0c2c8156a3 ******/ %feature("compactdefaultargs") GetMinimalDistance; %feature("autodoc", "Return ------- @@ -4597,8 +4597,8 @@ Returns the minimal distance between two extremities of calculated sections. ") GetMinimalDistance; Standard_Real GetMinimalDistance(); - /****************** GetMinimalWeight ******************/ - /**** md5 signature: f84aaf80601cfa818dfe6e9dd3bec152 ****/ + /****** BlendFunc_GenChamfer::GetMinimalWeight ******/ + /****** md5 signature: f84aaf80601cfa818dfe6e9dd3bec152 ******/ %feature("compactdefaultargs") GetMinimalWeight; %feature("autodoc", " Parameters @@ -4615,8 +4615,8 @@ Compute the minimal value of weight for each poles of all sections. ") GetMinimalWeight; void GetMinimalWeight(TColStd_Array1OfReal & Weigths); - /****************** GetShape ******************/ - /**** md5 signature: 6b9d3e113e9e6721b2abf4c094cdd226 ****/ + /****** BlendFunc_GenChamfer::GetShape ******/ + /****** md5 signature: 6b9d3e113e9e6721b2abf4c094cdd226 ******/ %feature("compactdefaultargs") GetShape; %feature("autodoc", " Parameters @@ -4635,8 +4635,8 @@ No available documentation. ") GetShape; void GetShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** GetTolerance ******************/ - /**** md5 signature: db57a1b1119c0b1280472660909013c2 ****/ + /****** BlendFunc_GenChamfer::GetTolerance ******/ + /****** md5 signature: db57a1b1119c0b1280472660909013c2 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -4654,8 +4654,8 @@ No available documentation. ") GetTolerance; void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** GetTolerance ******************/ - /**** md5 signature: be5e2f2cb95c7dbdff402ed78245d7d7 ****/ + /****** BlendFunc_GenChamfer::GetTolerance ******/ + /****** md5 signature: be5e2f2cb95c7dbdff402ed78245d7d7 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -4676,8 +4676,8 @@ Returns the tolerance to reach in approximation to respecte boundtol error at th ") GetTolerance; void GetTolerance(const Standard_Real BoundTol, const Standard_Real SurfTol, const Standard_Real AngleTol, math_Vector & Tol3d, math_Vector & Tol1D); - /****************** Intervals ******************/ - /**** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ****/ + /****** BlendFunc_GenChamfer::Intervals ******/ + /****** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -4695,8 +4695,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsRational ******************/ - /**** md5 signature: 82ca56fad113156125f40128b25c0d8e ****/ + /****** BlendFunc_GenChamfer::IsRational ******/ + /****** md5 signature: 82ca56fad113156125f40128b25c0d8e ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -4708,8 +4708,8 @@ Returns false. ") IsRational; Standard_Boolean IsRational(); - /****************** Knots ******************/ - /**** md5 signature: a226854cd9eac08cbe4282feaa46c20d ****/ + /****** BlendFunc_GenChamfer::Knots ******/ + /****** md5 signature: a226854cd9eac08cbe4282feaa46c20d ******/ %feature("compactdefaultargs") Knots; %feature("autodoc", " Parameters @@ -4726,8 +4726,8 @@ No available documentation. ") Knots; void Knots(TColStd_Array1OfReal & TKnots); - /****************** Mults ******************/ - /**** md5 signature: 36c77711e4160fb27b24b90b8fa7c6de ****/ + /****** BlendFunc_GenChamfer::Mults ******/ + /****** md5 signature: 36c77711e4160fb27b24b90b8fa7c6de ******/ %feature("compactdefaultargs") Mults; %feature("autodoc", " Parameters @@ -4744,8 +4744,8 @@ No available documentation. ") Mults; void Mults(TColStd_Array1OfInteger & TMults); - /****************** NbEquations ******************/ - /**** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ****/ + /****** BlendFunc_GenChamfer::NbEquations ******/ + /****** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -4757,8 +4757,8 @@ Returns the number of equations of the function. ") NbEquations; Standard_Integer NbEquations(); - /****************** NbIntervals ******************/ - /**** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ****/ + /****** BlendFunc_GenChamfer::NbIntervals ******/ + /****** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -4775,8 +4775,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** Resolution ******************/ - /**** md5 signature: 1f885646df74c72ec13d37a113377aaa ****/ + /****** BlendFunc_GenChamfer::Resolution ******/ + /****** md5 signature: 1f885646df74c72ec13d37a113377aaa ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -4795,8 +4795,8 @@ No available documentation. ") Resolution; void Resolution(const Standard_Integer IC2d, const Standard_Real Tol, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Section ******************/ - /**** md5 signature: 08613591ef85c2aabd1650c70190523f ****/ + /****** BlendFunc_GenChamfer::Section ******/ + /****** md5 signature: 08613591ef85c2aabd1650c70190523f ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -4819,8 +4819,8 @@ Obsolete method. ") Section; void Section(const Standard_Real Param, const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, Standard_Real &OutValue, Standard_Real &OutValue, gp_Lin & C); - /****************** Section ******************/ - /**** md5 signature: b6f1107f21a9bc6524bdd8152abaed5f ****/ + /****** BlendFunc_GenChamfer::Section ******/ + /****** md5 signature: b6f1107f21a9bc6524bdd8152abaed5f ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -4846,8 +4846,8 @@ Used for the first and last section. ") Section; Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfVec & D2Poles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColgp_Array1OfVec2d & D2Poles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths, TColStd_Array1OfReal & D2Weigths); - /****************** Section ******************/ - /**** md5 signature: 906e6a4bef3056546e496b945ff8d788 ****/ + /****** BlendFunc_GenChamfer::Section ******/ + /****** md5 signature: 906e6a4bef3056546e496b945ff8d788 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -4870,8 +4870,8 @@ Used for the first and last section. ") Section; Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths); - /****************** Section ******************/ - /**** md5 signature: 50af689ba5abf11bb271a06ac70b2d69 ****/ + /****** BlendFunc_GenChamfer::Section ******/ + /****** md5 signature: 50af689ba5abf11bb271a06ac70b2d69 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -4891,8 +4891,8 @@ No available documentation. ") Section; void Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfPnt2d & Poles2d, TColStd_Array1OfReal & Weigths); - /****************** Set ******************/ - /**** md5 signature: ade0965988faf3dc4bb7b4c53f18e212 ****/ + /****** BlendFunc_GenChamfer::Set ******/ + /****** md5 signature: ade0965988faf3dc4bb7b4c53f18e212 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -4909,8 +4909,8 @@ Sets the value of the parameter along the guide line. this determines the plane ") Set; void Set(const Standard_Real Param); - /****************** Set ******************/ - /**** md5 signature: 7d0982b9e2ba9cb3c696f620150f4f9c ****/ + /****** BlendFunc_GenChamfer::Set ******/ + /****** md5 signature: 7d0982b9e2ba9cb3c696f620150f4f9c ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -4928,8 +4928,8 @@ Sets the bounds of the parametric interval on the guide line. this determines th ") Set; void Set(const Standard_Real First, const Standard_Real Last); - /****************** Set ******************/ - /**** md5 signature: ee1b691ca844b8dd605892e1ef6591ed ****/ + /****** BlendFunc_GenChamfer::Set ******/ + /****** md5 signature: ee1b691ca844b8dd605892e1ef6591ed ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -4948,8 +4948,8 @@ Sets the distances and the 'quadrant'. ") Set; virtual void Set(const Standard_Real Dist1, const Standard_Real Dist2, const Standard_Integer Choix); - /****************** Values ******************/ - /**** md5 signature: cb66193525cc0a7235a2cde2a228308b ****/ + /****** BlendFunc_GenChamfer::Values ******/ + /****** md5 signature: cb66193525cc0a7235a2cde2a228308b ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -4982,8 +4982,8 @@ Returns the values of the functions and the derivatives for the variable ************************/ class BlendFunc_Ruled : public Blend_Function { public: - /****************** BlendFunc_Ruled ******************/ - /**** md5 signature: e253035d359b127a63cfdd5fd602f572 ****/ + /****** BlendFunc_Ruled::BlendFunc_Ruled ******/ + /****** md5 signature: e253035d359b127a63cfdd5fd602f572 ******/ %feature("compactdefaultargs") BlendFunc_Ruled; %feature("autodoc", " Parameters @@ -5002,8 +5002,8 @@ No available documentation. ") BlendFunc_Ruled; BlendFunc_Ruled(const opencascade::handle & S1, const opencascade::handle & S2, const opencascade::handle & C); - /****************** AxeRot ******************/ - /**** md5 signature: 0c9178d91224ee5e9d339eb0f66536ab ****/ + /****** BlendFunc_Ruled::AxeRot ******/ + /****** md5 signature: 0c9178d91224ee5e9d339eb0f66536ab ******/ %feature("compactdefaultargs") AxeRot; %feature("autodoc", " Parameters @@ -5020,8 +5020,8 @@ No available documentation. ") AxeRot; gp_Ax1 AxeRot(const Standard_Real Prm); - /****************** Derivatives ******************/ - /**** md5 signature: 940fde1549012c9025c437a16f7d8c18 ****/ + /****** BlendFunc_Ruled::Derivatives ******/ + /****** md5 signature: 940fde1549012c9025c437a16f7d8c18 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -5039,8 +5039,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: 7f39b43072461a3f70a63d3178e97743 ****/ + /****** BlendFunc_Ruled::GetBounds ******/ + /****** md5 signature: 7f39b43072461a3f70a63d3178e97743 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -5058,8 +5058,8 @@ No available documentation. ") GetBounds; void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetMinimalDistance ******************/ - /**** md5 signature: 5c7d510e1dc489ba8fc7ea0c2c8156a3 ****/ + /****** BlendFunc_Ruled::GetMinimalDistance ******/ + /****** md5 signature: 5c7d510e1dc489ba8fc7ea0c2c8156a3 ******/ %feature("compactdefaultargs") GetMinimalDistance; %feature("autodoc", "Return ------- @@ -5071,8 +5071,8 @@ Returns the minimal distance between two extremities of calculated sections. ") GetMinimalDistance; Standard_Real GetMinimalDistance(); - /****************** GetMinimalWeight ******************/ - /**** md5 signature: f84aaf80601cfa818dfe6e9dd3bec152 ****/ + /****** BlendFunc_Ruled::GetMinimalWeight ******/ + /****** md5 signature: f84aaf80601cfa818dfe6e9dd3bec152 ******/ %feature("compactdefaultargs") GetMinimalWeight; %feature("autodoc", " Parameters @@ -5089,8 +5089,8 @@ Compute the minimal value of weight for each poles of all sections. ") GetMinimalWeight; void GetMinimalWeight(TColStd_Array1OfReal & Weigths); - /****************** GetSection ******************/ - /**** md5 signature: 3b1a617ddcc473f31a5d805861a150b8 ****/ + /****** BlendFunc_Ruled::GetSection ******/ + /****** md5 signature: 3b1a617ddcc473f31a5d805861a150b8 ******/ %feature("compactdefaultargs") GetSection; %feature("autodoc", " Parameters @@ -5113,8 +5113,8 @@ No available documentation. ") GetSection; Standard_Boolean GetSection(const Standard_Real Param, const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, TColgp_Array1OfPnt & tabP, TColgp_Array1OfVec & tabV); - /****************** GetSectionSize ******************/ - /**** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ****/ + /****** BlendFunc_Ruled::GetSectionSize ******/ + /****** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ******/ %feature("compactdefaultargs") GetSectionSize; %feature("autodoc", "Return ------- @@ -5126,8 +5126,8 @@ Returns the length of the maximum section. ") GetSectionSize; Standard_Real GetSectionSize(); - /****************** GetShape ******************/ - /**** md5 signature: 6b9d3e113e9e6721b2abf4c094cdd226 ****/ + /****** BlendFunc_Ruled::GetShape ******/ + /****** md5 signature: 6b9d3e113e9e6721b2abf4c094cdd226 ******/ %feature("compactdefaultargs") GetShape; %feature("autodoc", " Parameters @@ -5146,8 +5146,8 @@ No available documentation. ") GetShape; void GetShape(Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** GetTolerance ******************/ - /**** md5 signature: db57a1b1119c0b1280472660909013c2 ****/ + /****** BlendFunc_Ruled::GetTolerance ******/ + /****** md5 signature: db57a1b1119c0b1280472660909013c2 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -5165,8 +5165,8 @@ No available documentation. ") GetTolerance; void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** GetTolerance ******************/ - /**** md5 signature: be5e2f2cb95c7dbdff402ed78245d7d7 ****/ + /****** BlendFunc_Ruled::GetTolerance ******/ + /****** md5 signature: be5e2f2cb95c7dbdff402ed78245d7d7 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -5187,8 +5187,8 @@ Returns the tolerance to reach in approximation to respecte boundtol error at th ") GetTolerance; void GetTolerance(const Standard_Real BoundTol, const Standard_Real SurfTol, const Standard_Real AngleTol, math_Vector & Tol3d, math_Vector & Tol1D); - /****************** Intervals ******************/ - /**** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ****/ + /****** BlendFunc_Ruled::Intervals ******/ + /****** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -5206,8 +5206,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsRational ******************/ - /**** md5 signature: 82ca56fad113156125f40128b25c0d8e ****/ + /****** BlendFunc_Ruled::IsRational ******/ + /****** md5 signature: 82ca56fad113156125f40128b25c0d8e ******/ %feature("compactdefaultargs") IsRational; %feature("autodoc", "Return ------- @@ -5219,8 +5219,8 @@ Returns false. ") IsRational; Standard_Boolean IsRational(); - /****************** IsSolution ******************/ - /**** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ****/ + /****** BlendFunc_Ruled::IsSolution ******/ + /****** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -5238,8 +5238,8 @@ No available documentation. ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** IsTangencyPoint ******************/ - /**** md5 signature: 6f3e518ba9796f381f39631e22124ef0 ****/ + /****** BlendFunc_Ruled::IsTangencyPoint ******/ + /****** md5 signature: 6f3e518ba9796f381f39631e22124ef0 ******/ %feature("compactdefaultargs") IsTangencyPoint; %feature("autodoc", "Return ------- @@ -5251,8 +5251,8 @@ No available documentation. ") IsTangencyPoint; Standard_Boolean IsTangencyPoint(); - /****************** Knots ******************/ - /**** md5 signature: a226854cd9eac08cbe4282feaa46c20d ****/ + /****** BlendFunc_Ruled::Knots ******/ + /****** md5 signature: a226854cd9eac08cbe4282feaa46c20d ******/ %feature("compactdefaultargs") Knots; %feature("autodoc", " Parameters @@ -5269,8 +5269,8 @@ No available documentation. ") Knots; void Knots(TColStd_Array1OfReal & TKnots); - /****************** Mults ******************/ - /**** md5 signature: 36c77711e4160fb27b24b90b8fa7c6de ****/ + /****** BlendFunc_Ruled::Mults ******/ + /****** md5 signature: 36c77711e4160fb27b24b90b8fa7c6de ******/ %feature("compactdefaultargs") Mults; %feature("autodoc", " Parameters @@ -5287,8 +5287,8 @@ No available documentation. ") Mults; void Mults(TColStd_Array1OfInteger & TMults); - /****************** NbEquations ******************/ - /**** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ****/ + /****** BlendFunc_Ruled::NbEquations ******/ + /****** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -5300,8 +5300,8 @@ Returns the number of equations of the function. ") NbEquations; Standard_Integer NbEquations(); - /****************** NbIntervals ******************/ - /**** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ****/ + /****** BlendFunc_Ruled::NbIntervals ******/ + /****** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -5318,8 +5318,8 @@ Returns the number of intervals for continuity . may be one if continuity(me) ") NbIntervals; Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** PointOnS1 ******************/ - /**** md5 signature: 31ba0cad339bf2eee3eaa6f297b2933d ****/ + /****** BlendFunc_Ruled::PointOnS1 ******/ + /****** md5 signature: 31ba0cad339bf2eee3eaa6f297b2933d ******/ %feature("compactdefaultargs") PointOnS1; %feature("autodoc", "Return ------- @@ -5331,8 +5331,8 @@ No available documentation. ") PointOnS1; const gp_Pnt PointOnS1(); - /****************** PointOnS2 ******************/ - /**** md5 signature: 92a9e4c03669ab0b0f57f90257aae861 ****/ + /****** BlendFunc_Ruled::PointOnS2 ******/ + /****** md5 signature: 92a9e4c03669ab0b0f57f90257aae861 ******/ %feature("compactdefaultargs") PointOnS2; %feature("autodoc", "Return ------- @@ -5344,8 +5344,8 @@ No available documentation. ") PointOnS2; const gp_Pnt PointOnS2(); - /****************** Resolution ******************/ - /**** md5 signature: 1f885646df74c72ec13d37a113377aaa ****/ + /****** BlendFunc_Ruled::Resolution ******/ + /****** md5 signature: 1f885646df74c72ec13d37a113377aaa ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -5364,8 +5364,8 @@ No available documentation. ") Resolution; void Resolution(const Standard_Integer IC2d, const Standard_Real Tol, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Section ******************/ - /**** md5 signature: b6f1107f21a9bc6524bdd8152abaed5f ****/ + /****** BlendFunc_Ruled::Section ******/ + /****** md5 signature: b6f1107f21a9bc6524bdd8152abaed5f ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -5391,8 +5391,8 @@ Used for the first and last section. ") Section; Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfVec & D2Poles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColgp_Array1OfVec2d & D2Poles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths, TColStd_Array1OfReal & D2Weigths); - /****************** Section ******************/ - /**** md5 signature: 906e6a4bef3056546e496b945ff8d788 ****/ + /****** BlendFunc_Ruled::Section ******/ + /****** md5 signature: 906e6a4bef3056546e496b945ff8d788 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -5415,8 +5415,8 @@ Used for the first and last section. ") Section; Standard_Boolean Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfVec & DPoles, TColgp_Array1OfPnt2d & Poles2d, TColgp_Array1OfVec2d & DPoles2d, TColStd_Array1OfReal & Weigths, TColStd_Array1OfReal & DWeigths); - /****************** Section ******************/ - /**** md5 signature: 50af689ba5abf11bb271a06ac70b2d69 ****/ + /****** BlendFunc_Ruled::Section ******/ + /****** md5 signature: 50af689ba5abf11bb271a06ac70b2d69 ******/ %feature("compactdefaultargs") Section; %feature("autodoc", " Parameters @@ -5436,8 +5436,8 @@ No available documentation. ") Section; void Section(const Blend_Point & P, TColgp_Array1OfPnt & Poles, TColgp_Array1OfPnt2d & Poles2d, TColStd_Array1OfReal & Weigths); - /****************** Set ******************/ - /**** md5 signature: a955f35e9076d1c844b9a2aa89b226bf ****/ + /****** BlendFunc_Ruled::Set ******/ + /****** md5 signature: a955f35e9076d1c844b9a2aa89b226bf ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -5454,8 +5454,8 @@ No available documentation. ") Set; void Set(const Standard_Real Param); - /****************** Set ******************/ - /**** md5 signature: 7d0982b9e2ba9cb3c696f620150f4f9c ****/ + /****** BlendFunc_Ruled::Set ******/ + /****** md5 signature: 7d0982b9e2ba9cb3c696f620150f4f9c ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -5473,8 +5473,8 @@ No available documentation. ") Set; void Set(const Standard_Real First, const Standard_Real Last); - /****************** Tangent ******************/ - /**** md5 signature: 13397954dafd053b9875c1007b2501b6 ****/ + /****** BlendFunc_Ruled::Tangent ******/ + /****** md5 signature: 13397954dafd053b9875c1007b2501b6 ******/ %feature("compactdefaultargs") Tangent; %feature("autodoc", " Parameters @@ -5498,8 +5498,8 @@ Returns the tangent vector at the section, at the beginning and the end of the s ") Tangent; void Tangent(const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, gp_Vec & TgFirst, gp_Vec & TgLast, gp_Vec & NormFirst, gp_Vec & NormLast); - /****************** Tangent2dOnS1 ******************/ - /**** md5 signature: ed3fe23c28d6ac4c0a074084d164d41d ****/ + /****** BlendFunc_Ruled::Tangent2dOnS1 ******/ + /****** md5 signature: ed3fe23c28d6ac4c0a074084d164d41d ******/ %feature("compactdefaultargs") Tangent2dOnS1; %feature("autodoc", "Return ------- @@ -5511,8 +5511,8 @@ No available documentation. ") Tangent2dOnS1; const gp_Vec2d Tangent2dOnS1(); - /****************** Tangent2dOnS2 ******************/ - /**** md5 signature: f57294e3963627cbeb43134bc6c1d88a ****/ + /****** BlendFunc_Ruled::Tangent2dOnS2 ******/ + /****** md5 signature: f57294e3963627cbeb43134bc6c1d88a ******/ %feature("compactdefaultargs") Tangent2dOnS2; %feature("autodoc", "Return ------- @@ -5524,8 +5524,8 @@ No available documentation. ") Tangent2dOnS2; const gp_Vec2d Tangent2dOnS2(); - /****************** TangentOnS1 ******************/ - /**** md5 signature: b20f2a50fc3bd003b5bb0d17d261f9e7 ****/ + /****** BlendFunc_Ruled::TangentOnS1 ******/ + /****** md5 signature: b20f2a50fc3bd003b5bb0d17d261f9e7 ******/ %feature("compactdefaultargs") TangentOnS1; %feature("autodoc", "Return ------- @@ -5537,8 +5537,8 @@ No available documentation. ") TangentOnS1; const gp_Vec TangentOnS1(); - /****************** TangentOnS2 ******************/ - /**** md5 signature: 5ee1080b2d5e8e29046ca62a01e3f639 ****/ + /****** BlendFunc_Ruled::TangentOnS2 ******/ + /****** md5 signature: 5ee1080b2d5e8e29046ca62a01e3f639 ******/ %feature("compactdefaultargs") TangentOnS2; %feature("autodoc", "Return ------- @@ -5550,8 +5550,8 @@ No available documentation. ") TangentOnS2; const gp_Vec TangentOnS2(); - /****************** Value ******************/ - /**** md5 signature: 1b689850305d8b13f289849027f0887b ****/ + /****** BlendFunc_Ruled::Value ******/ + /****** md5 signature: 1b689850305d8b13f289849027f0887b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -5569,8 +5569,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: cb66193525cc0a7235a2cde2a228308b ****/ + /****** BlendFunc_Ruled::Values ******/ + /****** md5 signature: cb66193525cc0a7235a2cde2a228308b ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -5603,8 +5603,8 @@ Returns the values of the functions and the derivatives for the variable ***************************/ class BlendFunc_RuledInv : public Blend_FuncInv { public: - /****************** BlendFunc_RuledInv ******************/ - /**** md5 signature: f15fc82b59c0b2a87d88c3189053e8a5 ****/ + /****** BlendFunc_RuledInv::BlendFunc_RuledInv ******/ + /****** md5 signature: f15fc82b59c0b2a87d88c3189053e8a5 ******/ %feature("compactdefaultargs") BlendFunc_RuledInv; %feature("autodoc", " Parameters @@ -5623,8 +5623,8 @@ No available documentation. ") BlendFunc_RuledInv; BlendFunc_RuledInv(const opencascade::handle & S1, const opencascade::handle & S2, const opencascade::handle & C); - /****************** Derivatives ******************/ - /**** md5 signature: 940fde1549012c9025c437a16f7d8c18 ****/ + /****** BlendFunc_RuledInv::Derivatives ******/ + /****** md5 signature: 940fde1549012c9025c437a16f7d8c18 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -5642,8 +5642,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetBounds ******************/ - /**** md5 signature: 7f39b43072461a3f70a63d3178e97743 ****/ + /****** BlendFunc_RuledInv::GetBounds ******/ + /****** md5 signature: 7f39b43072461a3f70a63d3178e97743 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -5661,8 +5661,8 @@ No available documentation. ") GetBounds; void GetBounds(math_Vector & InfBound, math_Vector & SupBound); - /****************** GetTolerance ******************/ - /**** md5 signature: db57a1b1119c0b1280472660909013c2 ****/ + /****** BlendFunc_RuledInv::GetTolerance ******/ + /****** md5 signature: db57a1b1119c0b1280472660909013c2 ******/ %feature("compactdefaultargs") GetTolerance; %feature("autodoc", " Parameters @@ -5680,8 +5680,8 @@ No available documentation. ") GetTolerance; void GetTolerance(math_Vector & Tolerance, const Standard_Real Tol); - /****************** IsSolution ******************/ - /**** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ****/ + /****** BlendFunc_RuledInv::IsSolution ******/ + /****** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -5699,8 +5699,8 @@ No available documentation. ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** NbEquations ******************/ - /**** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ****/ + /****** BlendFunc_RuledInv::NbEquations ******/ + /****** md5 signature: 23bde6b2e3d1ee771730481f97ff7ae2 ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -5712,8 +5712,8 @@ Returns the number of equations of the function. ") NbEquations; Standard_Integer NbEquations(); - /****************** Set ******************/ - /**** md5 signature: 229bdaddea2d80c843d774149f42a9d3 ****/ + /****** BlendFunc_RuledInv::Set ******/ + /****** md5 signature: 229bdaddea2d80c843d774149f42a9d3 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -5731,8 +5731,8 @@ No available documentation. ") Set; void Set(const Standard_Boolean OnFirst, const opencascade::handle & COnSurf); - /****************** Value ******************/ - /**** md5 signature: 1b689850305d8b13f289849027f0887b ****/ + /****** BlendFunc_RuledInv::Value ******/ + /****** md5 signature: 1b689850305d8b13f289849027f0887b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -5750,8 +5750,8 @@ Computes the values of the functions for the variable . returns true if t ") Value; Standard_Boolean Value(const math_Vector & X, math_Vector & F); - /****************** Values ******************/ - /**** md5 signature: cb66193525cc0a7235a2cde2a228308b ****/ + /****** BlendFunc_RuledInv::Values ******/ + /****** md5 signature: cb66193525cc0a7235a2cde2a228308b ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -5784,8 +5784,8 @@ Returns the values of the functions and the derivatives for the variable *************************/ class BlendFunc_Tensor { public: - /****************** BlendFunc_Tensor ******************/ - /**** md5 signature: da51a6a7a08009ec08b575ec302d3494 ****/ + /****** BlendFunc_Tensor::BlendFunc_Tensor ******/ + /****** md5 signature: da51a6a7a08009ec08b575ec302d3494 ******/ %feature("compactdefaultargs") BlendFunc_Tensor; %feature("autodoc", " Parameters @@ -5817,8 +5817,8 @@ No available documentation. $self->ChangeValue(Row,Col,Mat)=value; } }; - /****************** Init ******************/ - /**** md5 signature: 6aef026ef1fcb18a844e723ac935cd4b ****/ + /****** BlendFunc_Tensor::Init ******/ + /****** md5 signature: 6aef026ef1fcb18a844e723ac935cd4b ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -5835,8 +5835,8 @@ Initialize all the elements of a tensor to initialvalue. ") Init; void Init(const Standard_Real InitialValue); - /****************** Multiply ******************/ - /**** md5 signature: 1744e84f6795d21ff935088da038d2e5 ****/ + /****** BlendFunc_Tensor::Multiply ******/ + /****** md5 signature: 1744e84f6795d21ff935088da038d2e5 ******/ %feature("compactdefaultargs") Multiply; %feature("autodoc", " Parameters @@ -5854,8 +5854,8 @@ No available documentation. ") Multiply; void Multiply(const math_Vector & Right, math_Matrix & Product); - /****************** Value ******************/ - /**** md5 signature: fd791f445ff1b5b7d6ca99e04d3b9805 ****/ + /****** BlendFunc_Tensor::Value ******/ + /****** md5 signature: fd791f445ff1b5b7d6ca99e04d3b9805 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -5888,8 +5888,8 @@ Accesses (in read or write mode) the value of index , and of a ***************************/ class BlendFunc_ChamfInv : public BlendFunc_GenChamfInv { public: - /****************** BlendFunc_ChamfInv ******************/ - /**** md5 signature: 03770f1d2075d29aa171bd8362874cff ****/ + /****** BlendFunc_ChamfInv::BlendFunc_ChamfInv ******/ + /****** md5 signature: 03770f1d2075d29aa171bd8362874cff ******/ %feature("compactdefaultargs") BlendFunc_ChamfInv; %feature("autodoc", " Parameters @@ -5908,8 +5908,8 @@ No available documentation. ") BlendFunc_ChamfInv; BlendFunc_ChamfInv(const opencascade::handle & S1, const opencascade::handle & S2, const opencascade::handle & C); - /****************** Derivatives ******************/ - /**** md5 signature: 940fde1549012c9025c437a16f7d8c18 ****/ + /****** BlendFunc_ChamfInv::Derivatives ******/ + /****** md5 signature: 940fde1549012c9025c437a16f7d8c18 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -5927,8 +5927,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** IsSolution ******************/ - /**** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ****/ + /****** BlendFunc_ChamfInv::IsSolution ******/ + /****** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -5946,8 +5946,8 @@ No available documentation. ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** Set ******************/ - /**** md5 signature: e496fd995a5894c8dcf67747e2a803cb ****/ + /****** BlendFunc_ChamfInv::Set ******/ + /****** md5 signature: e496fd995a5894c8dcf67747e2a803cb ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -5966,8 +5966,8 @@ No available documentation. ") Set; virtual void Set(const Standard_Real Dist1, const Standard_Real Dist2, const Standard_Integer Choix); - /****************** Value ******************/ - /**** md5 signature: 1b689850305d8b13f289849027f0887b ****/ + /****** BlendFunc_ChamfInv::Value ******/ + /****** md5 signature: 1b689850305d8b13f289849027f0887b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -5999,8 +5999,8 @@ Computes the values of the functions for the variable . returns true if t **************************/ class BlendFunc_Chamfer : public BlendFunc_GenChamfer { public: - /****************** BlendFunc_Chamfer ******************/ - /**** md5 signature: 95f7dc1cb02ec7d245aeb0d13e68126f ****/ + /****** BlendFunc_Chamfer::BlendFunc_Chamfer ******/ + /****** md5 signature: 95f7dc1cb02ec7d245aeb0d13e68126f ******/ %feature("compactdefaultargs") BlendFunc_Chamfer; %feature("autodoc", " Parameters @@ -6019,8 +6019,8 @@ No available documentation. ") BlendFunc_Chamfer; BlendFunc_Chamfer(const opencascade::handle & S1, const opencascade::handle & S2, const opencascade::handle & CG); - /****************** Derivatives ******************/ - /**** md5 signature: 940fde1549012c9025c437a16f7d8c18 ****/ + /****** BlendFunc_Chamfer::Derivatives ******/ + /****** md5 signature: 940fde1549012c9025c437a16f7d8c18 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -6038,8 +6038,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetSectionSize ******************/ - /**** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ****/ + /****** BlendFunc_Chamfer::GetSectionSize ******/ + /****** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ******/ %feature("compactdefaultargs") GetSectionSize; %feature("autodoc", "Return ------- @@ -6051,8 +6051,8 @@ Returns the length of the maximum section. ") GetSectionSize; Standard_Real GetSectionSize(); - /****************** IsSolution ******************/ - /**** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ****/ + /****** BlendFunc_Chamfer::IsSolution ******/ + /****** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -6070,8 +6070,8 @@ No available documentation. ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** IsTangencyPoint ******************/ - /**** md5 signature: 6f3e518ba9796f381f39631e22124ef0 ****/ + /****** BlendFunc_Chamfer::IsTangencyPoint ******/ + /****** md5 signature: 6f3e518ba9796f381f39631e22124ef0 ******/ %feature("compactdefaultargs") IsTangencyPoint; %feature("autodoc", "Return ------- @@ -6083,8 +6083,8 @@ No available documentation. ") IsTangencyPoint; Standard_Boolean IsTangencyPoint(); - /****************** PointOnS1 ******************/ - /**** md5 signature: 31ba0cad339bf2eee3eaa6f297b2933d ****/ + /****** BlendFunc_Chamfer::PointOnS1 ******/ + /****** md5 signature: 31ba0cad339bf2eee3eaa6f297b2933d ******/ %feature("compactdefaultargs") PointOnS1; %feature("autodoc", "Return ------- @@ -6096,8 +6096,8 @@ No available documentation. ") PointOnS1; const gp_Pnt PointOnS1(); - /****************** PointOnS2 ******************/ - /**** md5 signature: 92a9e4c03669ab0b0f57f90257aae861 ****/ + /****** BlendFunc_Chamfer::PointOnS2 ******/ + /****** md5 signature: 92a9e4c03669ab0b0f57f90257aae861 ******/ %feature("compactdefaultargs") PointOnS2; %feature("autodoc", "Return ------- @@ -6109,8 +6109,8 @@ No available documentation. ") PointOnS2; const gp_Pnt PointOnS2(); - /****************** Set ******************/ - /**** md5 signature: a955f35e9076d1c844b9a2aa89b226bf ****/ + /****** BlendFunc_Chamfer::Set ******/ + /****** md5 signature: a955f35e9076d1c844b9a2aa89b226bf ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -6127,8 +6127,8 @@ No available documentation. ") Set; void Set(const Standard_Real Param); - /****************** Set ******************/ - /**** md5 signature: 78f9e2c80c7864a7b03452bb77fff0ef ****/ + /****** BlendFunc_Chamfer::Set ******/ + /****** md5 signature: 78f9e2c80c7864a7b03452bb77fff0ef ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -6147,8 +6147,8 @@ Sets the distances and the 'quadrant'. ") Set; void Set(const Standard_Real Dist1, const Standard_Real Dist2, const Standard_Integer Choix); - /****************** Tangent ******************/ - /**** md5 signature: 13397954dafd053b9875c1007b2501b6 ****/ + /****** BlendFunc_Chamfer::Tangent ******/ + /****** md5 signature: 13397954dafd053b9875c1007b2501b6 ******/ %feature("compactdefaultargs") Tangent; %feature("autodoc", " Parameters @@ -6172,8 +6172,8 @@ Returns the tangent vector at the section, at the beginning and the end of the s ") Tangent; void Tangent(const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, gp_Vec & TgFirst, gp_Vec & TgLast, gp_Vec & NormFirst, gp_Vec & NormLast); - /****************** Tangent2dOnS1 ******************/ - /**** md5 signature: ed3fe23c28d6ac4c0a074084d164d41d ****/ + /****** BlendFunc_Chamfer::Tangent2dOnS1 ******/ + /****** md5 signature: ed3fe23c28d6ac4c0a074084d164d41d ******/ %feature("compactdefaultargs") Tangent2dOnS1; %feature("autodoc", "Return ------- @@ -6185,8 +6185,8 @@ No available documentation. ") Tangent2dOnS1; const gp_Vec2d Tangent2dOnS1(); - /****************** Tangent2dOnS2 ******************/ - /**** md5 signature: f57294e3963627cbeb43134bc6c1d88a ****/ + /****** BlendFunc_Chamfer::Tangent2dOnS2 ******/ + /****** md5 signature: f57294e3963627cbeb43134bc6c1d88a ******/ %feature("compactdefaultargs") Tangent2dOnS2; %feature("autodoc", "Return ------- @@ -6198,8 +6198,8 @@ No available documentation. ") Tangent2dOnS2; const gp_Vec2d Tangent2dOnS2(); - /****************** TangentOnS1 ******************/ - /**** md5 signature: b20f2a50fc3bd003b5bb0d17d261f9e7 ****/ + /****** BlendFunc_Chamfer::TangentOnS1 ******/ + /****** md5 signature: b20f2a50fc3bd003b5bb0d17d261f9e7 ******/ %feature("compactdefaultargs") TangentOnS1; %feature("autodoc", "Return ------- @@ -6211,8 +6211,8 @@ No available documentation. ") TangentOnS1; const gp_Vec TangentOnS1(); - /****************** TangentOnS2 ******************/ - /**** md5 signature: 5ee1080b2d5e8e29046ca62a01e3f639 ****/ + /****** BlendFunc_Chamfer::TangentOnS2 ******/ + /****** md5 signature: 5ee1080b2d5e8e29046ca62a01e3f639 ******/ %feature("compactdefaultargs") TangentOnS2; %feature("autodoc", "Return ------- @@ -6224,8 +6224,8 @@ No available documentation. ") TangentOnS2; const gp_Vec TangentOnS2(); - /****************** Value ******************/ - /**** md5 signature: 1b689850305d8b13f289849027f0887b ****/ + /****** BlendFunc_Chamfer::Value ******/ + /****** md5 signature: 1b689850305d8b13f289849027f0887b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -6257,8 +6257,8 @@ Computes the values of the functions for the variable . returns true if t ******************************/ class BlendFunc_ConstThroat : public BlendFunc_GenChamfer { public: - /****************** BlendFunc_ConstThroat ******************/ - /**** md5 signature: cbea5b84841b251171871eebe4d6cd9e ****/ + /****** BlendFunc_ConstThroat::BlendFunc_ConstThroat ******/ + /****** md5 signature: cbea5b84841b251171871eebe4d6cd9e ******/ %feature("compactdefaultargs") BlendFunc_ConstThroat; %feature("autodoc", " Parameters @@ -6277,8 +6277,8 @@ No available documentation. ") BlendFunc_ConstThroat; BlendFunc_ConstThroat(const opencascade::handle & S1, const opencascade::handle & S2, const opencascade::handle & C); - /****************** Derivatives ******************/ - /**** md5 signature: 940fde1549012c9025c437a16f7d8c18 ****/ + /****** BlendFunc_ConstThroat::Derivatives ******/ + /****** md5 signature: 940fde1549012c9025c437a16f7d8c18 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -6296,8 +6296,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetSectionSize ******************/ - /**** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ****/ + /****** BlendFunc_ConstThroat::GetSectionSize ******/ + /****** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ******/ %feature("compactdefaultargs") GetSectionSize; %feature("autodoc", "Return ------- @@ -6309,8 +6309,8 @@ Returns the length of the maximum section. ") GetSectionSize; Standard_Real GetSectionSize(); - /****************** IsSolution ******************/ - /**** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ****/ + /****** BlendFunc_ConstThroat::IsSolution ******/ + /****** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -6328,8 +6328,8 @@ No available documentation. ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** IsTangencyPoint ******************/ - /**** md5 signature: 6f3e518ba9796f381f39631e22124ef0 ****/ + /****** BlendFunc_ConstThroat::IsTangencyPoint ******/ + /****** md5 signature: 6f3e518ba9796f381f39631e22124ef0 ******/ %feature("compactdefaultargs") IsTangencyPoint; %feature("autodoc", "Return ------- @@ -6341,8 +6341,8 @@ No available documentation. ") IsTangencyPoint; Standard_Boolean IsTangencyPoint(); - /****************** PointOnS1 ******************/ - /**** md5 signature: 31ba0cad339bf2eee3eaa6f297b2933d ****/ + /****** BlendFunc_ConstThroat::PointOnS1 ******/ + /****** md5 signature: 31ba0cad339bf2eee3eaa6f297b2933d ******/ %feature("compactdefaultargs") PointOnS1; %feature("autodoc", "Return ------- @@ -6354,8 +6354,8 @@ No available documentation. ") PointOnS1; const gp_Pnt PointOnS1(); - /****************** PointOnS2 ******************/ - /**** md5 signature: 92a9e4c03669ab0b0f57f90257aae861 ****/ + /****** BlendFunc_ConstThroat::PointOnS2 ******/ + /****** md5 signature: 92a9e4c03669ab0b0f57f90257aae861 ******/ %feature("compactdefaultargs") PointOnS2; %feature("autodoc", "Return ------- @@ -6367,8 +6367,8 @@ No available documentation. ") PointOnS2; const gp_Pnt PointOnS2(); - /****************** Set ******************/ - /**** md5 signature: a955f35e9076d1c844b9a2aa89b226bf ****/ + /****** BlendFunc_ConstThroat::Set ******/ + /****** md5 signature: a955f35e9076d1c844b9a2aa89b226bf ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -6385,8 +6385,8 @@ No available documentation. ") Set; void Set(const Standard_Real Param); - /****************** Set ******************/ - /**** md5 signature: 1bdd5799d0a739d4dad4e3ec0319d08f ****/ + /****** BlendFunc_ConstThroat::Set ******/ + /****** md5 signature: 1bdd5799d0a739d4dad4e3ec0319d08f ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -6405,8 +6405,8 @@ Sets the throat and the 'quadrant'. ") Set; void Set(const Standard_Real aThroat, const Standard_Real, const Standard_Integer Choix); - /****************** Tangent ******************/ - /**** md5 signature: 13397954dafd053b9875c1007b2501b6 ****/ + /****** BlendFunc_ConstThroat::Tangent ******/ + /****** md5 signature: 13397954dafd053b9875c1007b2501b6 ******/ %feature("compactdefaultargs") Tangent; %feature("autodoc", " Parameters @@ -6430,8 +6430,8 @@ Returns the tangent vector at the section, at the beginning and the end of the s ") Tangent; void Tangent(const Standard_Real U1, const Standard_Real V1, const Standard_Real U2, const Standard_Real V2, gp_Vec & TgFirst, gp_Vec & TgLast, gp_Vec & NormFirst, gp_Vec & NormLast); - /****************** Tangent2dOnS1 ******************/ - /**** md5 signature: ed3fe23c28d6ac4c0a074084d164d41d ****/ + /****** BlendFunc_ConstThroat::Tangent2dOnS1 ******/ + /****** md5 signature: ed3fe23c28d6ac4c0a074084d164d41d ******/ %feature("compactdefaultargs") Tangent2dOnS1; %feature("autodoc", "Return ------- @@ -6443,8 +6443,8 @@ No available documentation. ") Tangent2dOnS1; const gp_Vec2d Tangent2dOnS1(); - /****************** Tangent2dOnS2 ******************/ - /**** md5 signature: f57294e3963627cbeb43134bc6c1d88a ****/ + /****** BlendFunc_ConstThroat::Tangent2dOnS2 ******/ + /****** md5 signature: f57294e3963627cbeb43134bc6c1d88a ******/ %feature("compactdefaultargs") Tangent2dOnS2; %feature("autodoc", "Return ------- @@ -6456,8 +6456,8 @@ No available documentation. ") Tangent2dOnS2; const gp_Vec2d Tangent2dOnS2(); - /****************** TangentOnS1 ******************/ - /**** md5 signature: b20f2a50fc3bd003b5bb0d17d261f9e7 ****/ + /****** BlendFunc_ConstThroat::TangentOnS1 ******/ + /****** md5 signature: b20f2a50fc3bd003b5bb0d17d261f9e7 ******/ %feature("compactdefaultargs") TangentOnS1; %feature("autodoc", "Return ------- @@ -6469,8 +6469,8 @@ No available documentation. ") TangentOnS1; const gp_Vec TangentOnS1(); - /****************** TangentOnS2 ******************/ - /**** md5 signature: 5ee1080b2d5e8e29046ca62a01e3f639 ****/ + /****** BlendFunc_ConstThroat::TangentOnS2 ******/ + /****** md5 signature: 5ee1080b2d5e8e29046ca62a01e3f639 ******/ %feature("compactdefaultargs") TangentOnS2; %feature("autodoc", "Return ------- @@ -6482,8 +6482,8 @@ No available documentation. ") TangentOnS2; const gp_Vec TangentOnS2(); - /****************** Value ******************/ - /**** md5 signature: 1b689850305d8b13f289849027f0887b ****/ + /****** BlendFunc_ConstThroat::Value ******/ + /****** md5 signature: 1b689850305d8b13f289849027f0887b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -6515,8 +6515,8 @@ Computes the values of the functions for the variable . returns true if t *********************************/ class BlendFunc_ConstThroatInv : public BlendFunc_GenChamfInv { public: - /****************** BlendFunc_ConstThroatInv ******************/ - /**** md5 signature: 95409ba97313f153bfd0f5ac1ebb3f61 ****/ + /****** BlendFunc_ConstThroatInv::BlendFunc_ConstThroatInv ******/ + /****** md5 signature: 95409ba97313f153bfd0f5ac1ebb3f61 ******/ %feature("compactdefaultargs") BlendFunc_ConstThroatInv; %feature("autodoc", " Parameters @@ -6535,8 +6535,8 @@ No available documentation. ") BlendFunc_ConstThroatInv; BlendFunc_ConstThroatInv(const opencascade::handle & S1, const opencascade::handle & S2, const opencascade::handle & C); - /****************** Derivatives ******************/ - /**** md5 signature: 940fde1549012c9025c437a16f7d8c18 ****/ + /****** BlendFunc_ConstThroatInv::Derivatives ******/ + /****** md5 signature: 940fde1549012c9025c437a16f7d8c18 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -6554,8 +6554,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** IsSolution ******************/ - /**** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ****/ + /****** BlendFunc_ConstThroatInv::IsSolution ******/ + /****** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -6573,8 +6573,8 @@ No available documentation. ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** Set ******************/ - /**** md5 signature: ed48a688c0043088f72c032534118aef ****/ + /****** BlendFunc_ConstThroatInv::Set ******/ + /****** md5 signature: ed48a688c0043088f72c032534118aef ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -6593,8 +6593,8 @@ No available documentation. ") Set; virtual void Set(const Standard_Real theThroat, const Standard_Real, const Standard_Integer Choix); - /****************** Value ******************/ - /**** md5 signature: 1b689850305d8b13f289849027f0887b ****/ + /****** BlendFunc_ConstThroatInv::Value ******/ + /****** md5 signature: 1b689850305d8b13f289849027f0887b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -6626,8 +6626,8 @@ Computes the values of the functions for the variable . returns true if t *********************************************/ class BlendFunc_ConstThroatWithPenetration : public BlendFunc_ConstThroat { public: - /****************** BlendFunc_ConstThroatWithPenetration ******************/ - /**** md5 signature: ea57eb46c007f8b6b82e5faf10c5067c ****/ + /****** BlendFunc_ConstThroatWithPenetration::BlendFunc_ConstThroatWithPenetration ******/ + /****** md5 signature: ea57eb46c007f8b6b82e5faf10c5067c ******/ %feature("compactdefaultargs") BlendFunc_ConstThroatWithPenetration; %feature("autodoc", " Parameters @@ -6646,8 +6646,8 @@ No available documentation. ") BlendFunc_ConstThroatWithPenetration; BlendFunc_ConstThroatWithPenetration(const opencascade::handle & S1, const opencascade::handle & S2, const opencascade::handle & C); - /****************** Derivatives ******************/ - /**** md5 signature: 940fde1549012c9025c437a16f7d8c18 ****/ + /****** BlendFunc_ConstThroatWithPenetration::Derivatives ******/ + /****** md5 signature: 940fde1549012c9025c437a16f7d8c18 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -6665,8 +6665,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** GetSectionSize ******************/ - /**** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ****/ + /****** BlendFunc_ConstThroatWithPenetration::GetSectionSize ******/ + /****** md5 signature: bf1917f305e490b557c33ddc30e16dc7 ******/ %feature("compactdefaultargs") GetSectionSize; %feature("autodoc", "Return ------- @@ -6678,8 +6678,8 @@ Returns the length of the maximum section. ") GetSectionSize; Standard_Real GetSectionSize(); - /****************** IsSolution ******************/ - /**** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ****/ + /****** BlendFunc_ConstThroatWithPenetration::IsSolution ******/ + /****** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -6697,8 +6697,8 @@ No available documentation. ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** Tangent2dOnS1 ******************/ - /**** md5 signature: ed3fe23c28d6ac4c0a074084d164d41d ****/ + /****** BlendFunc_ConstThroatWithPenetration::Tangent2dOnS1 ******/ + /****** md5 signature: ed3fe23c28d6ac4c0a074084d164d41d ******/ %feature("compactdefaultargs") Tangent2dOnS1; %feature("autodoc", "Return ------- @@ -6710,8 +6710,8 @@ No available documentation. ") Tangent2dOnS1; const gp_Vec2d Tangent2dOnS1(); - /****************** Tangent2dOnS2 ******************/ - /**** md5 signature: f57294e3963627cbeb43134bc6c1d88a ****/ + /****** BlendFunc_ConstThroatWithPenetration::Tangent2dOnS2 ******/ + /****** md5 signature: f57294e3963627cbeb43134bc6c1d88a ******/ %feature("compactdefaultargs") Tangent2dOnS2; %feature("autodoc", "Return ------- @@ -6723,8 +6723,8 @@ No available documentation. ") Tangent2dOnS2; const gp_Vec2d Tangent2dOnS2(); - /****************** TangentOnS1 ******************/ - /**** md5 signature: b20f2a50fc3bd003b5bb0d17d261f9e7 ****/ + /****** BlendFunc_ConstThroatWithPenetration::TangentOnS1 ******/ + /****** md5 signature: b20f2a50fc3bd003b5bb0d17d261f9e7 ******/ %feature("compactdefaultargs") TangentOnS1; %feature("autodoc", "Return ------- @@ -6736,8 +6736,8 @@ No available documentation. ") TangentOnS1; const gp_Vec TangentOnS1(); - /****************** TangentOnS2 ******************/ - /**** md5 signature: 5ee1080b2d5e8e29046ca62a01e3f639 ****/ + /****** BlendFunc_ConstThroatWithPenetration::TangentOnS2 ******/ + /****** md5 signature: 5ee1080b2d5e8e29046ca62a01e3f639 ******/ %feature("compactdefaultargs") TangentOnS2; %feature("autodoc", "Return ------- @@ -6749,8 +6749,8 @@ No available documentation. ") TangentOnS2; const gp_Vec TangentOnS2(); - /****************** Value ******************/ - /**** md5 signature: 1b689850305d8b13f289849027f0887b ****/ + /****** BlendFunc_ConstThroatWithPenetration::Value ******/ + /****** md5 signature: 1b689850305d8b13f289849027f0887b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -6782,8 +6782,8 @@ Computes the values of the functions for the variable . returns true if t ************************************************/ class BlendFunc_ConstThroatWithPenetrationInv : public BlendFunc_ConstThroatInv { public: - /****************** BlendFunc_ConstThroatWithPenetrationInv ******************/ - /**** md5 signature: 4f8493ab3f5eb8a9ea5778e7a093e544 ****/ + /****** BlendFunc_ConstThroatWithPenetrationInv::BlendFunc_ConstThroatWithPenetrationInv ******/ + /****** md5 signature: 4f8493ab3f5eb8a9ea5778e7a093e544 ******/ %feature("compactdefaultargs") BlendFunc_ConstThroatWithPenetrationInv; %feature("autodoc", " Parameters @@ -6802,8 +6802,8 @@ No available documentation. ") BlendFunc_ConstThroatWithPenetrationInv; BlendFunc_ConstThroatWithPenetrationInv(const opencascade::handle & S1, const opencascade::handle & S2, const opencascade::handle & C); - /****************** Derivatives ******************/ - /**** md5 signature: 940fde1549012c9025c437a16f7d8c18 ****/ + /****** BlendFunc_ConstThroatWithPenetrationInv::Derivatives ******/ + /****** md5 signature: 940fde1549012c9025c437a16f7d8c18 ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -6821,8 +6821,8 @@ Returns the values of the derivatives for the variable . returns true if ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** IsSolution ******************/ - /**** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ****/ + /****** BlendFunc_ConstThroatWithPenetrationInv::IsSolution ******/ + /****** md5 signature: 89ff6b5b0ad96a1e505d615e14235bad ******/ %feature("compactdefaultargs") IsSolution; %feature("autodoc", " Parameters @@ -6840,8 +6840,8 @@ No available documentation. ") IsSolution; Standard_Boolean IsSolution(const math_Vector & Sol, const Standard_Real Tol); - /****************** Value ******************/ - /**** md5 signature: 1b689850305d8b13f289849027f0887b ****/ + /****** BlendFunc_ConstThroatWithPenetrationInv::Value ******/ + /****** md5 signature: 1b689850305d8b13f289849027f0887b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/Bnd.i b/src/SWIG_files/wrapper/Bnd.i index 9fedade99..770f889d1 100644 --- a/src/SWIG_files/wrapper/Bnd.i +++ b/src/SWIG_files/wrapper/Bnd.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BNDDOCSTRING "Bnd module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_bnd.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_bnd.html" %enddef %module (package="OCC.Core", docstring=BNDDOCSTRING) Bnd @@ -102,8 +102,8 @@ typedef NCollection_Array1 Bnd_Array1OfSphere; ****************/ class Bnd_B2d { public: - /****************** Bnd_B2d ******************/ - /**** md5 signature: 05a153cc9a0364ca513b5e6967e6a5da ****/ + /****** Bnd_B2d::Bnd_B2d ******/ + /****** md5 signature: 05a153cc9a0364ca513b5e6967e6a5da ******/ %feature("compactdefaultargs") Bnd_B2d; %feature("autodoc", "Return ------- @@ -115,8 +115,8 @@ Empty constructor. ") Bnd_B2d; Bnd_B2d(); - /****************** Bnd_B2d ******************/ - /**** md5 signature: 17c0f6ccddd56941af01972030df2ef0 ****/ + /****** Bnd_B2d::Bnd_B2d ******/ + /****** md5 signature: 17c0f6ccddd56941af01972030df2ef0 ******/ %feature("compactdefaultargs") Bnd_B2d; %feature("autodoc", " Parameters @@ -134,8 +134,8 @@ Constructor. ") Bnd_B2d; Bnd_B2d(const gp_XY & theCenter, const gp_XY & theHSize); - /****************** Add ******************/ - /**** md5 signature: 5a41b83e8ddc3a1a1cd39a55664162f1 ****/ + /****** Bnd_B2d::Add ******/ + /****** md5 signature: 5a41b83e8ddc3a1a1cd39a55664162f1 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -152,8 +152,8 @@ Update the box by a point. ") Add; void Add(const gp_XY & thePnt); - /****************** Add ******************/ - /**** md5 signature: fb47cc9ae52067b7096ec0cb90c2918b ****/ + /****** Bnd_B2d::Add ******/ + /****** md5 signature: fb47cc9ae52067b7096ec0cb90c2918b ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -170,8 +170,8 @@ Update the box by a point. ") Add; void Add(const gp_Pnt2d & thePnt); - /****************** Add ******************/ - /**** md5 signature: e289c685a30a7d3b0627615ece9fc885 ****/ + /****** Bnd_B2d::Add ******/ + /****** md5 signature: e289c685a30a7d3b0627615ece9fc885 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -188,8 +188,8 @@ Update the box by another box. ") Add; void Add(const Bnd_B2d & theBox); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** Bnd_B2d::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -201,8 +201,8 @@ Reset the box data. ") Clear; void Clear(); - /****************** CornerMax ******************/ - /**** md5 signature: 1784dd584e8cfc31d3728e09a86439e2 ****/ + /****** Bnd_B2d::CornerMax ******/ + /****** md5 signature: 1784dd584e8cfc31d3728e09a86439e2 ******/ %feature("compactdefaultargs") CornerMax; %feature("autodoc", "Return ------- @@ -214,8 +214,8 @@ Query a box corner: (center + hsize). you must make sure that the box is not voi ") CornerMax; gp_XY CornerMax(); - /****************** CornerMin ******************/ - /**** md5 signature: 8b095240ce7231f536a8f6e8d516be6d ****/ + /****** Bnd_B2d::CornerMin ******/ + /****** md5 signature: 8b095240ce7231f536a8f6e8d516be6d ******/ %feature("compactdefaultargs") CornerMin; %feature("autodoc", "Return ------- @@ -227,8 +227,8 @@ Query a box corner: (center - hsize). you must make sure that the box is not voi ") CornerMin; gp_XY CornerMin(); - /****************** Enlarge ******************/ - /**** md5 signature: 321829e5514bc3ec051eaf36066b1620 ****/ + /****** Bnd_B2d::Enlarge ******/ + /****** md5 signature: 321829e5514bc3ec051eaf36066b1620 ******/ %feature("compactdefaultargs") Enlarge; %feature("autodoc", " Parameters @@ -245,8 +245,8 @@ Extend the box by the absolute value of thediff. ") Enlarge; void Enlarge(const Standard_Real theDiff); - /****************** IsIn ******************/ - /**** md5 signature: c091f390e40f1292d67eceb838cf06c3 ****/ + /****** Bnd_B2d::IsIn ******/ + /****** md5 signature: c091f390e40f1292d67eceb838cf06c3 ******/ %feature("compactdefaultargs") IsIn; %feature("autodoc", " Parameters @@ -263,8 +263,8 @@ Check that the box 'this' is inside the given box 'thebox'. returns true if 'thi ") IsIn; Standard_Boolean IsIn(const Bnd_B2d & theBox); - /****************** IsIn ******************/ - /**** md5 signature: 3117362dd5da71da488979e19940f735 ****/ + /****** Bnd_B2d::IsIn ******/ + /****** md5 signature: 3117362dd5da71da488979e19940f735 ******/ %feature("compactdefaultargs") IsIn; %feature("autodoc", " Parameters @@ -282,8 +282,8 @@ Check that the box 'this' is inside the given box 'thebox' transformed by 'thetr ") IsIn; Standard_Boolean IsIn(const Bnd_B2d & theBox, const gp_Trsf2d & theTrsf); - /****************** IsOut ******************/ - /**** md5 signature: 48b93dd797eeb546fd3a80a4a2ca84e0 ****/ + /****** Bnd_B2d::IsOut ******/ + /****** md5 signature: 48b93dd797eeb546fd3a80a4a2ca84e0 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -300,8 +300,8 @@ Check the given point for the inclusion in the box. returns true if the point is ") IsOut; Standard_Boolean IsOut(const gp_XY & thePnt); - /****************** IsOut ******************/ - /**** md5 signature: 7e5b89128cba75308e659a6defc8371a ****/ + /****** Bnd_B2d::IsOut ******/ + /****** md5 signature: 7e5b89128cba75308e659a6defc8371a ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -320,8 +320,8 @@ Check a circle for the intersection with the current box. returns true if there ") IsOut; Standard_Boolean IsOut(const gp_XY & theCenter, const Standard_Real theRadius, const Standard_Boolean isCircleHollow = Standard_False); - /****************** IsOut ******************/ - /**** md5 signature: 3efb653c8dc72246420846203eea1273 ****/ + /****** Bnd_B2d::IsOut ******/ + /****** md5 signature: 3efb653c8dc72246420846203eea1273 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -338,8 +338,8 @@ Check the given box for the intersection with the current box. returns true if t ") IsOut; Standard_Boolean IsOut(const Bnd_B2d & theOtherBox); - /****************** IsOut ******************/ - /**** md5 signature: 17a8b8e51727f4ca60578072d43469ce ****/ + /****** Bnd_B2d::IsOut ******/ + /****** md5 signature: 17a8b8e51727f4ca60578072d43469ce ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -357,8 +357,8 @@ Check the given box oriented by the given transformation for the intersection wi ") IsOut; Standard_Boolean IsOut(const Bnd_B2d & theOtherBox, const gp_Trsf2d & theTrsf); - /****************** IsOut ******************/ - /**** md5 signature: c77260c57f172e19b7fad4eb2644fd1b ****/ + /****** Bnd_B2d::IsOut ******/ + /****** md5 signature: c77260c57f172e19b7fad4eb2644fd1b ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -375,8 +375,8 @@ Check the given line for the intersection with the current box. returns true if ") IsOut; Standard_Boolean IsOut(const gp_Ax2d & theLine); - /****************** IsOut ******************/ - /**** md5 signature: ada8aa32f1aad828e603480ce3ff6843 ****/ + /****** Bnd_B2d::IsOut ******/ + /****** md5 signature: ada8aa32f1aad828e603480ce3ff6843 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -394,8 +394,8 @@ Check the segment defined by the couple of input points for the intersection wit ") IsOut; Standard_Boolean IsOut(const gp_XY & theP0, const gp_XY & theP1); - /****************** IsVoid ******************/ - /**** md5 signature: 471af316c61141ba4fc7aec86f38760a ****/ + /****** Bnd_B2d::IsVoid ******/ + /****** md5 signature: 471af316c61141ba4fc7aec86f38760a ******/ %feature("compactdefaultargs") IsVoid; %feature("autodoc", "Return ------- @@ -407,8 +407,8 @@ Returns true if the box is void (non-initialized). ") IsVoid; Standard_Boolean IsVoid(); - /****************** Limit ******************/ - /**** md5 signature: 26119e1da9381e96c05dac51ecd1771d ****/ + /****** Bnd_B2d::Limit ******/ + /****** md5 signature: 26119e1da9381e96c05dac51ecd1771d ******/ %feature("compactdefaultargs") Limit; %feature("autodoc", " Parameters @@ -425,8 +425,8 @@ Limit the box by the internals of theotherbox. returns true if the limitation ta ") Limit; Standard_Boolean Limit(const Bnd_B2d & theOtherBox); - /****************** SetCenter ******************/ - /**** md5 signature: 41a8b8fdf5b972f76105a79658b692fb ****/ + /****** Bnd_B2d::SetCenter ******/ + /****** md5 signature: 41a8b8fdf5b972f76105a79658b692fb ******/ %feature("compactdefaultargs") SetCenter; %feature("autodoc", " Parameters @@ -443,8 +443,8 @@ Set the center coordinates. ") SetCenter; void SetCenter(const gp_XY & theCenter); - /****************** SetHSize ******************/ - /**** md5 signature: 846be3e6c71e2aec529678889adc7fa9 ****/ + /****** Bnd_B2d::SetHSize ******/ + /****** md5 signature: 846be3e6c71e2aec529678889adc7fa9 ******/ %feature("compactdefaultargs") SetHSize; %feature("autodoc", " Parameters @@ -461,8 +461,8 @@ Set the hsize (half-diagonal) coordinates. all components of thehsize must be no ") SetHSize; void SetHSize(const gp_XY & theHSize); - /****************** SquareExtent ******************/ - /**** md5 signature: f26f4f9c0289ab73c82a48183db937a6 ****/ + /****** Bnd_B2d::SquareExtent ******/ + /****** md5 signature: f26f4f9c0289ab73c82a48183db937a6 ******/ %feature("compactdefaultargs") SquareExtent; %feature("autodoc", "Return ------- @@ -474,8 +474,8 @@ Query the square diagonal. if the box is void (see method isvoid()) then a very ") SquareExtent; Standard_Real SquareExtent(); - /****************** Transformed ******************/ - /**** md5 signature: d5a8b9e4551432e6f8ecaa019e4a6d02 ****/ + /****** Bnd_B2d::Transformed ******/ + /****** md5 signature: d5a8b9e4551432e6f8ecaa019e4a6d02 ******/ %feature("compactdefaultargs") Transformed; %feature("autodoc", " Parameters @@ -506,8 +506,8 @@ Transform the bounding box with the given transformation. the resulting box will ****************/ class Bnd_B2f { public: - /****************** Bnd_B2f ******************/ - /**** md5 signature: a12513a02a694b42fe55f996d7ec05b4 ****/ + /****** Bnd_B2f::Bnd_B2f ******/ + /****** md5 signature: a12513a02a694b42fe55f996d7ec05b4 ******/ %feature("compactdefaultargs") Bnd_B2f; %feature("autodoc", "Return ------- @@ -519,8 +519,8 @@ Empty constructor. ") Bnd_B2f; Bnd_B2f(); - /****************** Bnd_B2f ******************/ - /**** md5 signature: 28163395c311e95645f15de688091b62 ****/ + /****** Bnd_B2f::Bnd_B2f ******/ + /****** md5 signature: 28163395c311e95645f15de688091b62 ******/ %feature("compactdefaultargs") Bnd_B2f; %feature("autodoc", " Parameters @@ -538,8 +538,8 @@ Constructor. ") Bnd_B2f; Bnd_B2f(const gp_XY & theCenter, const gp_XY & theHSize); - /****************** Add ******************/ - /**** md5 signature: 5a41b83e8ddc3a1a1cd39a55664162f1 ****/ + /****** Bnd_B2f::Add ******/ + /****** md5 signature: 5a41b83e8ddc3a1a1cd39a55664162f1 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -556,8 +556,8 @@ Update the box by a point. ") Add; void Add(const gp_XY & thePnt); - /****************** Add ******************/ - /**** md5 signature: fb47cc9ae52067b7096ec0cb90c2918b ****/ + /****** Bnd_B2f::Add ******/ + /****** md5 signature: fb47cc9ae52067b7096ec0cb90c2918b ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -574,8 +574,8 @@ Update the box by a point. ") Add; void Add(const gp_Pnt2d & thePnt); - /****************** Add ******************/ - /**** md5 signature: 0e6f8cf7d7789e610f8bcd27bbe067ff ****/ + /****** Bnd_B2f::Add ******/ + /****** md5 signature: 0e6f8cf7d7789e610f8bcd27bbe067ff ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -592,8 +592,8 @@ Update the box by another box. ") Add; void Add(const Bnd_B2f & theBox); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** Bnd_B2f::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -605,8 +605,8 @@ Reset the box data. ") Clear; void Clear(); - /****************** CornerMax ******************/ - /**** md5 signature: 1784dd584e8cfc31d3728e09a86439e2 ****/ + /****** Bnd_B2f::CornerMax ******/ + /****** md5 signature: 1784dd584e8cfc31d3728e09a86439e2 ******/ %feature("compactdefaultargs") CornerMax; %feature("autodoc", "Return ------- @@ -618,8 +618,8 @@ Query a box corner: (center + hsize). you must make sure that the box is not voi ") CornerMax; gp_XY CornerMax(); - /****************** CornerMin ******************/ - /**** md5 signature: 8b095240ce7231f536a8f6e8d516be6d ****/ + /****** Bnd_B2f::CornerMin ******/ + /****** md5 signature: 8b095240ce7231f536a8f6e8d516be6d ******/ %feature("compactdefaultargs") CornerMin; %feature("autodoc", "Return ------- @@ -631,8 +631,8 @@ Query a box corner: (center - hsize). you must make sure that the box is not voi ") CornerMin; gp_XY CornerMin(); - /****************** Enlarge ******************/ - /**** md5 signature: 321829e5514bc3ec051eaf36066b1620 ****/ + /****** Bnd_B2f::Enlarge ******/ + /****** md5 signature: 321829e5514bc3ec051eaf36066b1620 ******/ %feature("compactdefaultargs") Enlarge; %feature("autodoc", " Parameters @@ -649,8 +649,8 @@ Extend the box by the absolute value of thediff. ") Enlarge; void Enlarge(const Standard_Real theDiff); - /****************** IsIn ******************/ - /**** md5 signature: 80f43a0cf5df9126a456ea7cfaeb1e12 ****/ + /****** Bnd_B2f::IsIn ******/ + /****** md5 signature: 80f43a0cf5df9126a456ea7cfaeb1e12 ******/ %feature("compactdefaultargs") IsIn; %feature("autodoc", " Parameters @@ -667,8 +667,8 @@ Check that the box 'this' is inside the given box 'thebox'. returns true if 'thi ") IsIn; Standard_Boolean IsIn(const Bnd_B2f & theBox); - /****************** IsIn ******************/ - /**** md5 signature: c776c579366bf15500e8c2b58f87cc1c ****/ + /****** Bnd_B2f::IsIn ******/ + /****** md5 signature: c776c579366bf15500e8c2b58f87cc1c ******/ %feature("compactdefaultargs") IsIn; %feature("autodoc", " Parameters @@ -686,8 +686,8 @@ Check that the box 'this' is inside the given box 'thebox' transformed by 'thetr ") IsIn; Standard_Boolean IsIn(const Bnd_B2f & theBox, const gp_Trsf2d & theTrsf); - /****************** IsOut ******************/ - /**** md5 signature: 48b93dd797eeb546fd3a80a4a2ca84e0 ****/ + /****** Bnd_B2f::IsOut ******/ + /****** md5 signature: 48b93dd797eeb546fd3a80a4a2ca84e0 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -704,8 +704,8 @@ Check the given point for the inclusion in the box. returns true if the point is ") IsOut; Standard_Boolean IsOut(const gp_XY & thePnt); - /****************** IsOut ******************/ - /**** md5 signature: 7e5b89128cba75308e659a6defc8371a ****/ + /****** Bnd_B2f::IsOut ******/ + /****** md5 signature: 7e5b89128cba75308e659a6defc8371a ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -724,8 +724,8 @@ Check a circle for the intersection with the current box. returns true if there ") IsOut; Standard_Boolean IsOut(const gp_XY & theCenter, const Standard_Real theRadius, const Standard_Boolean isCircleHollow = Standard_False); - /****************** IsOut ******************/ - /**** md5 signature: 9fc7759f5aec28ee60f32f1d24857da1 ****/ + /****** Bnd_B2f::IsOut ******/ + /****** md5 signature: 9fc7759f5aec28ee60f32f1d24857da1 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -742,8 +742,8 @@ Check the given box for the intersection with the current box. returns true if t ") IsOut; Standard_Boolean IsOut(const Bnd_B2f & theOtherBox); - /****************** IsOut ******************/ - /**** md5 signature: 554b1f02376c7f46b6dd15c72ede7567 ****/ + /****** Bnd_B2f::IsOut ******/ + /****** md5 signature: 554b1f02376c7f46b6dd15c72ede7567 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -761,8 +761,8 @@ Check the given box oriented by the given transformation for the intersection wi ") IsOut; Standard_Boolean IsOut(const Bnd_B2f & theOtherBox, const gp_Trsf2d & theTrsf); - /****************** IsOut ******************/ - /**** md5 signature: c77260c57f172e19b7fad4eb2644fd1b ****/ + /****** Bnd_B2f::IsOut ******/ + /****** md5 signature: c77260c57f172e19b7fad4eb2644fd1b ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -779,8 +779,8 @@ Check the given line for the intersection with the current box. returns true if ") IsOut; Standard_Boolean IsOut(const gp_Ax2d & theLine); - /****************** IsOut ******************/ - /**** md5 signature: ada8aa32f1aad828e603480ce3ff6843 ****/ + /****** Bnd_B2f::IsOut ******/ + /****** md5 signature: ada8aa32f1aad828e603480ce3ff6843 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -798,8 +798,8 @@ Check the segment defined by the couple of input points for the intersection wit ") IsOut; Standard_Boolean IsOut(const gp_XY & theP0, const gp_XY & theP1); - /****************** IsVoid ******************/ - /**** md5 signature: 471af316c61141ba4fc7aec86f38760a ****/ + /****** Bnd_B2f::IsVoid ******/ + /****** md5 signature: 471af316c61141ba4fc7aec86f38760a ******/ %feature("compactdefaultargs") IsVoid; %feature("autodoc", "Return ------- @@ -811,8 +811,8 @@ Returns true if the box is void (non-initialized). ") IsVoid; Standard_Boolean IsVoid(); - /****************** Limit ******************/ - /**** md5 signature: 2e96cb9f9c5946fd77091ed749cba3e4 ****/ + /****** Bnd_B2f::Limit ******/ + /****** md5 signature: 2e96cb9f9c5946fd77091ed749cba3e4 ******/ %feature("compactdefaultargs") Limit; %feature("autodoc", " Parameters @@ -829,8 +829,8 @@ Limit the box by the internals of theotherbox. returns true if the limitation ta ") Limit; Standard_Boolean Limit(const Bnd_B2f & theOtherBox); - /****************** SetCenter ******************/ - /**** md5 signature: 41a8b8fdf5b972f76105a79658b692fb ****/ + /****** Bnd_B2f::SetCenter ******/ + /****** md5 signature: 41a8b8fdf5b972f76105a79658b692fb ******/ %feature("compactdefaultargs") SetCenter; %feature("autodoc", " Parameters @@ -847,8 +847,8 @@ Set the center coordinates. ") SetCenter; void SetCenter(const gp_XY & theCenter); - /****************** SetHSize ******************/ - /**** md5 signature: 846be3e6c71e2aec529678889adc7fa9 ****/ + /****** Bnd_B2f::SetHSize ******/ + /****** md5 signature: 846be3e6c71e2aec529678889adc7fa9 ******/ %feature("compactdefaultargs") SetHSize; %feature("autodoc", " Parameters @@ -865,8 +865,8 @@ Set the hsize (half-diagonal) coordinates. all components of thehsize must be no ") SetHSize; void SetHSize(const gp_XY & theHSize); - /****************** SquareExtent ******************/ - /**** md5 signature: f26f4f9c0289ab73c82a48183db937a6 ****/ + /****** Bnd_B2f::SquareExtent ******/ + /****** md5 signature: f26f4f9c0289ab73c82a48183db937a6 ******/ %feature("compactdefaultargs") SquareExtent; %feature("autodoc", "Return ------- @@ -878,8 +878,8 @@ Query the square diagonal. if the box is void (see method isvoid()) then a very ") SquareExtent; Standard_Real SquareExtent(); - /****************** Transformed ******************/ - /**** md5 signature: 5f9413beb7d8b1fce20f0c331d05fa3f ****/ + /****** Bnd_B2f::Transformed ******/ + /****** md5 signature: 5f9413beb7d8b1fce20f0c331d05fa3f ******/ %feature("compactdefaultargs") Transformed; %feature("autodoc", " Parameters @@ -910,8 +910,8 @@ Transform the bounding box with the given transformation. the resulting box will ****************/ class Bnd_B3d { public: - /****************** Bnd_B3d ******************/ - /**** md5 signature: c716f51e2a145210c8940ea886dd7c16 ****/ + /****** Bnd_B3d::Bnd_B3d ******/ + /****** md5 signature: c716f51e2a145210c8940ea886dd7c16 ******/ %feature("compactdefaultargs") Bnd_B3d; %feature("autodoc", "Return ------- @@ -923,8 +923,8 @@ Empty constructor. ") Bnd_B3d; Bnd_B3d(); - /****************** Bnd_B3d ******************/ - /**** md5 signature: e2040c30570b4b2cb5d8085510e9c95e ****/ + /****** Bnd_B3d::Bnd_B3d ******/ + /****** md5 signature: e2040c30570b4b2cb5d8085510e9c95e ******/ %feature("compactdefaultargs") Bnd_B3d; %feature("autodoc", " Parameters @@ -942,8 +942,8 @@ Constructor. ") Bnd_B3d; Bnd_B3d(const gp_XYZ & theCenter, const gp_XYZ & theHSize); - /****************** Add ******************/ - /**** md5 signature: 4bb564ba66db61afbaab5d2355c0458e ****/ + /****** Bnd_B3d::Add ******/ + /****** md5 signature: 4bb564ba66db61afbaab5d2355c0458e ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -960,8 +960,8 @@ Update the box by a point. ") Add; void Add(const gp_XYZ & thePnt); - /****************** Add ******************/ - /**** md5 signature: a6a1f5636f85eb3cb786a035cac1298a ****/ + /****** Bnd_B3d::Add ******/ + /****** md5 signature: a6a1f5636f85eb3cb786a035cac1298a ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -978,8 +978,8 @@ Update the box by a point. ") Add; void Add(const gp_Pnt & thePnt); - /****************** Add ******************/ - /**** md5 signature: 331ca3351a2a0134eb1a5e205e7112ba ****/ + /****** Bnd_B3d::Add ******/ + /****** md5 signature: 331ca3351a2a0134eb1a5e205e7112ba ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -996,8 +996,8 @@ Update the box by another box. ") Add; void Add(const Bnd_B3d & theBox); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** Bnd_B3d::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -1009,8 +1009,8 @@ Reset the box data. ") Clear; void Clear(); - /****************** CornerMax ******************/ - /**** md5 signature: b53a8ce9727bd17e67a3d7ca6c71bf27 ****/ + /****** Bnd_B3d::CornerMax ******/ + /****** md5 signature: b53a8ce9727bd17e67a3d7ca6c71bf27 ******/ %feature("compactdefaultargs") CornerMax; %feature("autodoc", "Return ------- @@ -1022,8 +1022,8 @@ Query the upper corner: (center + hsize). you must make sure that the box is not ") CornerMax; gp_XYZ CornerMax(); - /****************** CornerMin ******************/ - /**** md5 signature: 50fe116283d2afe62e829147d21c8f48 ****/ + /****** Bnd_B3d::CornerMin ******/ + /****** md5 signature: 50fe116283d2afe62e829147d21c8f48 ******/ %feature("compactdefaultargs") CornerMin; %feature("autodoc", "Return ------- @@ -1035,8 +1035,8 @@ Query the lower corner: (center - hsize). you must make sure that the box is not ") CornerMin; gp_XYZ CornerMin(); - /****************** Enlarge ******************/ - /**** md5 signature: 321829e5514bc3ec051eaf36066b1620 ****/ + /****** Bnd_B3d::Enlarge ******/ + /****** md5 signature: 321829e5514bc3ec051eaf36066b1620 ******/ %feature("compactdefaultargs") Enlarge; %feature("autodoc", " Parameters @@ -1053,8 +1053,8 @@ Extend the box by the absolute value of thediff. ") Enlarge; void Enlarge(const Standard_Real theDiff); - /****************** IsIn ******************/ - /**** md5 signature: ad082b8aa93a8141ea08b5fd81cd4942 ****/ + /****** Bnd_B3d::IsIn ******/ + /****** md5 signature: ad082b8aa93a8141ea08b5fd81cd4942 ******/ %feature("compactdefaultargs") IsIn; %feature("autodoc", " Parameters @@ -1071,8 +1071,8 @@ Check that the box 'this' is inside the given box 'thebox'. returns true if 'thi ") IsIn; Standard_Boolean IsIn(const Bnd_B3d & theBox); - /****************** IsIn ******************/ - /**** md5 signature: d163a00066ab25259fdcded548ff9487 ****/ + /****** Bnd_B3d::IsIn ******/ + /****** md5 signature: d163a00066ab25259fdcded548ff9487 ******/ %feature("compactdefaultargs") IsIn; %feature("autodoc", " Parameters @@ -1090,8 +1090,8 @@ Check that the box 'this' is inside the given box 'thebox' transformed by 'thetr ") IsIn; Standard_Boolean IsIn(const Bnd_B3d & theBox, const gp_Trsf & theTrsf); - /****************** IsOut ******************/ - /**** md5 signature: 77f148dd0ff43ac75607650d2b2ca5c6 ****/ + /****** Bnd_B3d::IsOut ******/ + /****** md5 signature: 77f148dd0ff43ac75607650d2b2ca5c6 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -1108,8 +1108,8 @@ Check the given point for the inclusion in the box. returns true if the point is ") IsOut; Standard_Boolean IsOut(const gp_XYZ & thePnt); - /****************** IsOut ******************/ - /**** md5 signature: 991259fb20604eb8484572991f5f852f ****/ + /****** Bnd_B3d::IsOut ******/ + /****** md5 signature: 991259fb20604eb8484572991f5f852f ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -1128,8 +1128,8 @@ Check a sphere for the intersection with the current box. returns true if there ") IsOut; Standard_Boolean IsOut(const gp_XYZ & theCenter, const Standard_Real theRadius, const Standard_Boolean isSphereHollow = Standard_False); - /****************** IsOut ******************/ - /**** md5 signature: 36608ede356d85c57a7d843ab5185fd9 ****/ + /****** Bnd_B3d::IsOut ******/ + /****** md5 signature: 36608ede356d85c57a7d843ab5185fd9 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -1146,8 +1146,8 @@ Check the given box for the intersection with the current box. returns true if t ") IsOut; Standard_Boolean IsOut(const Bnd_B3d & theOtherBox); - /****************** IsOut ******************/ - /**** md5 signature: 124c734a96e8ecfd7bef2a61831976f2 ****/ + /****** Bnd_B3d::IsOut ******/ + /****** md5 signature: 124c734a96e8ecfd7bef2a61831976f2 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -1165,8 +1165,8 @@ Check the given box oriented by the given transformation for the intersection wi ") IsOut; Standard_Boolean IsOut(const Bnd_B3d & theOtherBox, const gp_Trsf & theTrsf); - /****************** IsOut ******************/ - /**** md5 signature: d91c6eb2ee4af9f9c10c98c2980cae87 ****/ + /****** Bnd_B3d::IsOut ******/ + /****** md5 signature: d91c6eb2ee4af9f9c10c98c2980cae87 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -1185,8 +1185,8 @@ Check the given line for the intersection with the current box. returns true if ") IsOut; Standard_Boolean IsOut(const gp_Ax1 & theLine, const Standard_Boolean isRay = Standard_False, const Standard_Real theOverthickness = 0.0); - /****************** IsOut ******************/ - /**** md5 signature: e213dc75cd4024056d6783fd970900a8 ****/ + /****** Bnd_B3d::IsOut ******/ + /****** md5 signature: e213dc75cd4024056d6783fd970900a8 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -1203,8 +1203,8 @@ Check the given plane for the intersection with the current box. returns true if ") IsOut; Standard_Boolean IsOut(const gp_Ax3 & thePlane); - /****************** IsVoid ******************/ - /**** md5 signature: 471af316c61141ba4fc7aec86f38760a ****/ + /****** Bnd_B3d::IsVoid ******/ + /****** md5 signature: 471af316c61141ba4fc7aec86f38760a ******/ %feature("compactdefaultargs") IsVoid; %feature("autodoc", "Return ------- @@ -1216,8 +1216,8 @@ Returns true if the box is void (non-initialized). ") IsVoid; Standard_Boolean IsVoid(); - /****************** Limit ******************/ - /**** md5 signature: ae29e5f8ea98d06b64aca1e41ff98057 ****/ + /****** Bnd_B3d::Limit ******/ + /****** md5 signature: ae29e5f8ea98d06b64aca1e41ff98057 ******/ %feature("compactdefaultargs") Limit; %feature("autodoc", " Parameters @@ -1234,8 +1234,8 @@ Limit the box by the internals of theotherbox. returns true if the limitation ta ") Limit; Standard_Boolean Limit(const Bnd_B3d & theOtherBox); - /****************** SetCenter ******************/ - /**** md5 signature: 4480b29433441c49607a67067923d325 ****/ + /****** Bnd_B3d::SetCenter ******/ + /****** md5 signature: 4480b29433441c49607a67067923d325 ******/ %feature("compactdefaultargs") SetCenter; %feature("autodoc", " Parameters @@ -1252,8 +1252,8 @@ Set the center coordinates. ") SetCenter; void SetCenter(const gp_XYZ & theCenter); - /****************** SetHSize ******************/ - /**** md5 signature: 031cb1273b6bb49a7e7a82266bdf1e6b ****/ + /****** Bnd_B3d::SetHSize ******/ + /****** md5 signature: 031cb1273b6bb49a7e7a82266bdf1e6b ******/ %feature("compactdefaultargs") SetHSize; %feature("autodoc", " Parameters @@ -1270,8 +1270,8 @@ Set the hsize (half-diagonal) coordinates. all components of thehsize must be no ") SetHSize; void SetHSize(const gp_XYZ & theHSize); - /****************** SquareExtent ******************/ - /**** md5 signature: f26f4f9c0289ab73c82a48183db937a6 ****/ + /****** Bnd_B3d::SquareExtent ******/ + /****** md5 signature: f26f4f9c0289ab73c82a48183db937a6 ******/ %feature("compactdefaultargs") SquareExtent; %feature("autodoc", "Return ------- @@ -1283,8 +1283,8 @@ Query the square diagonal. if the box is void (see method isvoid()) then a very ") SquareExtent; Standard_Real SquareExtent(); - /****************** Transformed ******************/ - /**** md5 signature: b78cd089e43b13810f743901534ce5d0 ****/ + /****** Bnd_B3d::Transformed ******/ + /****** md5 signature: b78cd089e43b13810f743901534ce5d0 ******/ %feature("compactdefaultargs") Transformed; %feature("autodoc", " Parameters @@ -1315,8 +1315,8 @@ Transform the bounding box with the given transformation. the resulting box will ****************/ class Bnd_B3f { public: - /****************** Bnd_B3f ******************/ - /**** md5 signature: 7ac75dcf75b83316efb3587b52c61985 ****/ + /****** Bnd_B3f::Bnd_B3f ******/ + /****** md5 signature: 7ac75dcf75b83316efb3587b52c61985 ******/ %feature("compactdefaultargs") Bnd_B3f; %feature("autodoc", "Return ------- @@ -1328,8 +1328,8 @@ Empty constructor. ") Bnd_B3f; Bnd_B3f(); - /****************** Bnd_B3f ******************/ - /**** md5 signature: 413abb4d0731c8cb93381c3a6969033b ****/ + /****** Bnd_B3f::Bnd_B3f ******/ + /****** md5 signature: 413abb4d0731c8cb93381c3a6969033b ******/ %feature("compactdefaultargs") Bnd_B3f; %feature("autodoc", " Parameters @@ -1347,8 +1347,8 @@ Constructor. ") Bnd_B3f; Bnd_B3f(const gp_XYZ & theCenter, const gp_XYZ & theHSize); - /****************** Add ******************/ - /**** md5 signature: 4bb564ba66db61afbaab5d2355c0458e ****/ + /****** Bnd_B3f::Add ******/ + /****** md5 signature: 4bb564ba66db61afbaab5d2355c0458e ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1365,8 +1365,8 @@ Update the box by a point. ") Add; void Add(const gp_XYZ & thePnt); - /****************** Add ******************/ - /**** md5 signature: a6a1f5636f85eb3cb786a035cac1298a ****/ + /****** Bnd_B3f::Add ******/ + /****** md5 signature: a6a1f5636f85eb3cb786a035cac1298a ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1383,8 +1383,8 @@ Update the box by a point. ") Add; void Add(const gp_Pnt & thePnt); - /****************** Add ******************/ - /**** md5 signature: fae70ede421e32eafed983497dd86c44 ****/ + /****** Bnd_B3f::Add ******/ + /****** md5 signature: fae70ede421e32eafed983497dd86c44 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1401,8 +1401,8 @@ Update the box by another box. ") Add; void Add(const Bnd_B3f & theBox); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** Bnd_B3f::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -1414,8 +1414,8 @@ Reset the box data. ") Clear; void Clear(); - /****************** CornerMax ******************/ - /**** md5 signature: b53a8ce9727bd17e67a3d7ca6c71bf27 ****/ + /****** Bnd_B3f::CornerMax ******/ + /****** md5 signature: b53a8ce9727bd17e67a3d7ca6c71bf27 ******/ %feature("compactdefaultargs") CornerMax; %feature("autodoc", "Return ------- @@ -1427,8 +1427,8 @@ Query the upper corner: (center + hsize). you must make sure that the box is not ") CornerMax; gp_XYZ CornerMax(); - /****************** CornerMin ******************/ - /**** md5 signature: 50fe116283d2afe62e829147d21c8f48 ****/ + /****** Bnd_B3f::CornerMin ******/ + /****** md5 signature: 50fe116283d2afe62e829147d21c8f48 ******/ %feature("compactdefaultargs") CornerMin; %feature("autodoc", "Return ------- @@ -1440,8 +1440,8 @@ Query the lower corner: (center - hsize). you must make sure that the box is not ") CornerMin; gp_XYZ CornerMin(); - /****************** Enlarge ******************/ - /**** md5 signature: 321829e5514bc3ec051eaf36066b1620 ****/ + /****** Bnd_B3f::Enlarge ******/ + /****** md5 signature: 321829e5514bc3ec051eaf36066b1620 ******/ %feature("compactdefaultargs") Enlarge; %feature("autodoc", " Parameters @@ -1458,8 +1458,8 @@ Extend the box by the absolute value of thediff. ") Enlarge; void Enlarge(const Standard_Real theDiff); - /****************** IsIn ******************/ - /**** md5 signature: e026c88f1974400424c832426bf5ec41 ****/ + /****** Bnd_B3f::IsIn ******/ + /****** md5 signature: e026c88f1974400424c832426bf5ec41 ******/ %feature("compactdefaultargs") IsIn; %feature("autodoc", " Parameters @@ -1476,8 +1476,8 @@ Check that the box 'this' is inside the given box 'thebox'. returns true if 'thi ") IsIn; Standard_Boolean IsIn(const Bnd_B3f & theBox); - /****************** IsIn ******************/ - /**** md5 signature: bac81427b018657e242568d3bd11311a ****/ + /****** Bnd_B3f::IsIn ******/ + /****** md5 signature: bac81427b018657e242568d3bd11311a ******/ %feature("compactdefaultargs") IsIn; %feature("autodoc", " Parameters @@ -1495,8 +1495,8 @@ Check that the box 'this' is inside the given box 'thebox' transformed by 'thetr ") IsIn; Standard_Boolean IsIn(const Bnd_B3f & theBox, const gp_Trsf & theTrsf); - /****************** IsOut ******************/ - /**** md5 signature: 77f148dd0ff43ac75607650d2b2ca5c6 ****/ + /****** Bnd_B3f::IsOut ******/ + /****** md5 signature: 77f148dd0ff43ac75607650d2b2ca5c6 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -1513,8 +1513,8 @@ Check the given point for the inclusion in the box. returns true if the point is ") IsOut; Standard_Boolean IsOut(const gp_XYZ & thePnt); - /****************** IsOut ******************/ - /**** md5 signature: 991259fb20604eb8484572991f5f852f ****/ + /****** Bnd_B3f::IsOut ******/ + /****** md5 signature: 991259fb20604eb8484572991f5f852f ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -1533,8 +1533,8 @@ Check a sphere for the intersection with the current box. returns true if there ") IsOut; Standard_Boolean IsOut(const gp_XYZ & theCenter, const Standard_Real theRadius, const Standard_Boolean isSphereHollow = Standard_False); - /****************** IsOut ******************/ - /**** md5 signature: ec21879a0e85422b918e364aee4e7ed1 ****/ + /****** Bnd_B3f::IsOut ******/ + /****** md5 signature: ec21879a0e85422b918e364aee4e7ed1 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -1551,8 +1551,8 @@ Check the given box for the intersection with the current box. returns true if t ") IsOut; Standard_Boolean IsOut(const Bnd_B3f & theOtherBox); - /****************** IsOut ******************/ - /**** md5 signature: 4e6289bb03e357679bc6b1d1146a96be ****/ + /****** Bnd_B3f::IsOut ******/ + /****** md5 signature: 4e6289bb03e357679bc6b1d1146a96be ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -1570,8 +1570,8 @@ Check the given box oriented by the given transformation for the intersection wi ") IsOut; Standard_Boolean IsOut(const Bnd_B3f & theOtherBox, const gp_Trsf & theTrsf); - /****************** IsOut ******************/ - /**** md5 signature: d91c6eb2ee4af9f9c10c98c2980cae87 ****/ + /****** Bnd_B3f::IsOut ******/ + /****** md5 signature: d91c6eb2ee4af9f9c10c98c2980cae87 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -1590,8 +1590,8 @@ Check the given line for the intersection with the current box. returns true if ") IsOut; Standard_Boolean IsOut(const gp_Ax1 & theLine, const Standard_Boolean isRay = Standard_False, const Standard_Real theOverthickness = 0.0); - /****************** IsOut ******************/ - /**** md5 signature: e213dc75cd4024056d6783fd970900a8 ****/ + /****** Bnd_B3f::IsOut ******/ + /****** md5 signature: e213dc75cd4024056d6783fd970900a8 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -1608,8 +1608,8 @@ Check the given plane for the intersection with the current box. returns true if ") IsOut; Standard_Boolean IsOut(const gp_Ax3 & thePlane); - /****************** IsVoid ******************/ - /**** md5 signature: 471af316c61141ba4fc7aec86f38760a ****/ + /****** Bnd_B3f::IsVoid ******/ + /****** md5 signature: 471af316c61141ba4fc7aec86f38760a ******/ %feature("compactdefaultargs") IsVoid; %feature("autodoc", "Return ------- @@ -1621,8 +1621,8 @@ Returns true if the box is void (non-initialized). ") IsVoid; Standard_Boolean IsVoid(); - /****************** Limit ******************/ - /**** md5 signature: 492a5258cedbfa5b5587d22bf1bdbf97 ****/ + /****** Bnd_B3f::Limit ******/ + /****** md5 signature: 492a5258cedbfa5b5587d22bf1bdbf97 ******/ %feature("compactdefaultargs") Limit; %feature("autodoc", " Parameters @@ -1639,8 +1639,8 @@ Limit the box by the internals of theotherbox. returns true if the limitation ta ") Limit; Standard_Boolean Limit(const Bnd_B3f & theOtherBox); - /****************** SetCenter ******************/ - /**** md5 signature: 4480b29433441c49607a67067923d325 ****/ + /****** Bnd_B3f::SetCenter ******/ + /****** md5 signature: 4480b29433441c49607a67067923d325 ******/ %feature("compactdefaultargs") SetCenter; %feature("autodoc", " Parameters @@ -1657,8 +1657,8 @@ Set the center coordinates. ") SetCenter; void SetCenter(const gp_XYZ & theCenter); - /****************** SetHSize ******************/ - /**** md5 signature: 031cb1273b6bb49a7e7a82266bdf1e6b ****/ + /****** Bnd_B3f::SetHSize ******/ + /****** md5 signature: 031cb1273b6bb49a7e7a82266bdf1e6b ******/ %feature("compactdefaultargs") SetHSize; %feature("autodoc", " Parameters @@ -1675,8 +1675,8 @@ Set the hsize (half-diagonal) coordinates. all components of thehsize must be no ") SetHSize; void SetHSize(const gp_XYZ & theHSize); - /****************** SquareExtent ******************/ - /**** md5 signature: f26f4f9c0289ab73c82a48183db937a6 ****/ + /****** Bnd_B3f::SquareExtent ******/ + /****** md5 signature: f26f4f9c0289ab73c82a48183db937a6 ******/ %feature("compactdefaultargs") SquareExtent; %feature("autodoc", "Return ------- @@ -1688,8 +1688,8 @@ Query the square diagonal. if the box is void (see method isvoid()) then a very ") SquareExtent; Standard_Real SquareExtent(); - /****************** Transformed ******************/ - /**** md5 signature: 9b00f2708ad3e2a9b03868d6f3a16ca5 ****/ + /****** Bnd_B3f::Transformed ******/ + /****** md5 signature: 9b00f2708ad3e2a9b03868d6f3a16ca5 ******/ %feature("compactdefaultargs") Transformed; %feature("autodoc", " Parameters @@ -1720,8 +1720,8 @@ Transform the bounding box with the given transformation. the resulting box will *************************/ class Bnd_BoundSortBox { public: - /****************** Bnd_BoundSortBox ******************/ - /**** md5 signature: 432937775309e427743273a6bdbe335c ****/ + /****** Bnd_BoundSortBox::Bnd_BoundSortBox ******/ + /****** md5 signature: 432937775309e427743273a6bdbe335c ******/ %feature("compactdefaultargs") Bnd_BoundSortBox; %feature("autodoc", "Return ------- @@ -1733,8 +1733,8 @@ Constructs an empty comparison algorithm for bounding boxes. the bounding boxes ") Bnd_BoundSortBox; Bnd_BoundSortBox(); - /****************** Add ******************/ - /**** md5 signature: c11cd3957b9f1b070bd4a139bc72cc6d ****/ + /****** Bnd_BoundSortBox::Add ******/ + /****** md5 signature: c11cd3957b9f1b070bd4a139bc72cc6d ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1752,8 +1752,8 @@ Adds the bounding box thebox at position boxindex in the array of boxes to be so ") Add; void Add(const Bnd_Box & theBox, const Standard_Integer boxIndex); - /****************** Compare ******************/ - /**** md5 signature: 69a2f5d307cbc61a4ae04451922de8ea ****/ + /****** Bnd_BoundSortBox::Compare ******/ + /****** md5 signature: 69a2f5d307cbc61a4ae04451922de8ea ******/ %feature("compactdefaultargs") Compare; %feature("autodoc", " Parameters @@ -1770,8 +1770,8 @@ Compares the bounding box thebox, with the set of bounding boxes to be sorted by ") Compare; const TColStd_ListOfInteger & Compare(const Bnd_Box & theBox); - /****************** Compare ******************/ - /**** md5 signature: bc068b36bfc32657d5d4d471cd5172bd ****/ + /****** Bnd_BoundSortBox::Compare ******/ + /****** md5 signature: bc068b36bfc32657d5d4d471cd5172bd ******/ %feature("compactdefaultargs") Compare; %feature("autodoc", " Parameters @@ -1788,8 +1788,8 @@ Compares the plane p with the set of bounding boxes to be sorted by this compari ") Compare; const TColStd_ListOfInteger & Compare(const gp_Pln & P); - /****************** Destroy ******************/ - /**** md5 signature: 73111f72f4ab0474eb2cfbd7e4af4e1a ****/ + /****** Bnd_BoundSortBox::Destroy ******/ + /****** md5 signature: 73111f72f4ab0474eb2cfbd7e4af4e1a ******/ %feature("compactdefaultargs") Destroy; %feature("autodoc", "Return ------- @@ -1801,8 +1801,8 @@ No available documentation. ") Destroy; void Destroy(); - /****************** Dump ******************/ - /**** md5 signature: 15b4b2e195645aebb43170ff7f15952a ****/ + /****** Bnd_BoundSortBox::Dump ******/ + /****** md5 signature: 15b4b2e195645aebb43170ff7f15952a ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", "Return ------- @@ -1814,8 +1814,8 @@ No available documentation. ") Dump; void Dump(); - /****************** Initialize ******************/ - /**** md5 signature: dbb5dab5abfd063e114422a2e03ca032 ****/ + /****** Bnd_BoundSortBox::Initialize ******/ + /****** md5 signature: dbb5dab5abfd063e114422a2e03ca032 ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -1833,8 +1833,8 @@ Initializes this comparison algorithm with - the set of bounding boxes setofbox. ") Initialize; void Initialize(const Bnd_Box & CompleteBox, const opencascade::handle & SetOfBox); - /****************** Initialize ******************/ - /**** md5 signature: d9688715260aa4c9c4aebee632738183 ****/ + /****** Bnd_BoundSortBox::Initialize ******/ + /****** md5 signature: d9688715260aa4c9c4aebee632738183 ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -1851,8 +1851,8 @@ Initializes this comparison algorithm with - the set of bounding boxes setofbox, ") Initialize; void Initialize(const opencascade::handle & SetOfBox); - /****************** Initialize ******************/ - /**** md5 signature: 7b0c87c850b9c7ae88cab54c565bb25d ****/ + /****** Bnd_BoundSortBox::Initialize ******/ + /****** md5 signature: 7b0c87c850b9c7ae88cab54c565bb25d ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -1884,8 +1884,8 @@ Initializes this comparison algorithm, giving it only - the maximum number nbcom ****************/ class Bnd_Box { public: - /****************** Bnd_Box ******************/ - /**** md5 signature: 1329baa12aa709d3897638f91bd6d327 ****/ + /****** Bnd_Box::Bnd_Box ******/ + /****** md5 signature: 1329baa12aa709d3897638f91bd6d327 ******/ %feature("compactdefaultargs") Bnd_Box; %feature("autodoc", "Return ------- @@ -1897,8 +1897,8 @@ Creates an empty box. the constructed box is qualified void. its gap is null. ") Bnd_Box; Bnd_Box(); - /****************** Bnd_Box ******************/ - /**** md5 signature: e97cf06d6d1b2ccd51edf64dd6ab76e2 ****/ + /****** Bnd_Box::Bnd_Box ******/ + /****** md5 signature: e97cf06d6d1b2ccd51edf64dd6ab76e2 ******/ %feature("compactdefaultargs") Bnd_Box; %feature("autodoc", " Parameters @@ -1916,8 +1916,8 @@ Creates a bounding box, it contains: - minimum/maximum point of bounding box, th ") Bnd_Box; Bnd_Box(const gp_Pnt & theMin, const gp_Pnt & theMax); - /****************** Add ******************/ - /**** md5 signature: f26c3b18c425c9af5e181dcf97365f7d ****/ + /****** Bnd_Box::Add ******/ + /****** md5 signature: f26c3b18c425c9af5e181dcf97365f7d ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1934,8 +1934,8 @@ Adds the box to . ") Add; void Add(const Bnd_Box & Other); - /****************** Add ******************/ - /**** md5 signature: b714bfb888eecda75b87221b873365bd ****/ + /****** Bnd_Box::Add ******/ + /****** md5 signature: b714bfb888eecda75b87221b873365bd ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1952,8 +1952,8 @@ Adds a pnt to the box. ") Add; void Add(const gp_Pnt & P); - /****************** Add ******************/ - /**** md5 signature: 7e55d9c284ce09cd4dd63f85011cde45 ****/ + /****** Bnd_Box::Add ******/ + /****** md5 signature: 7e55d9c284ce09cd4dd63f85011cde45 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1971,8 +1971,8 @@ Extends from the pnt

in the direction . ") Add; void Add(const gp_Pnt & P, const gp_Dir & D); - /****************** Add ******************/ - /**** md5 signature: f5e67a29cde6a6d52768287ab5d77897 ****/ + /****** Bnd_Box::Add ******/ + /****** md5 signature: f5e67a29cde6a6d52768287ab5d77897 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1989,8 +1989,8 @@ Extends the box in the given direction, i.e. adds an half-line. the box may beco ") Add; void Add(const gp_Dir & D); - /****************** CornerMax ******************/ - /**** md5 signature: ba66cc3b9f07809e242d6acf3b7b399a ****/ + /****** Bnd_Box::CornerMax ******/ + /****** md5 signature: ba66cc3b9f07809e242d6acf3b7b399a ******/ %feature("compactdefaultargs") CornerMax; %feature("autodoc", "Return ------- @@ -2002,8 +2002,8 @@ Returns the upper corner of this bounding box. the gap is included. if this boun ") CornerMax; gp_Pnt CornerMax(); - /****************** CornerMin ******************/ - /**** md5 signature: 986487b80ef67f31dfd8ba819cb4b46e ****/ + /****** Bnd_Box::CornerMin ******/ + /****** md5 signature: 986487b80ef67f31dfd8ba819cb4b46e ******/ %feature("compactdefaultargs") CornerMin; %feature("autodoc", "Return ------- @@ -2015,8 +2015,8 @@ Returns the lower corner of this bounding box. the gap is included. if this boun ") CornerMin; gp_Pnt CornerMin(); - /****************** Distance ******************/ - /**** md5 signature: 1a425f6da349f7a4118ac35c1d8396bd ****/ + /****** Bnd_Box::Distance ******/ + /****** md5 signature: 1a425f6da349f7a4118ac35c1d8396bd ******/ %feature("compactdefaultargs") Distance; %feature("autodoc", " Parameters @@ -2033,8 +2033,8 @@ Computes the minimum distance between two boxes. ") Distance; Standard_Real Distance(const Bnd_Box & Other); - /****************** Dump ******************/ - /**** md5 signature: 15b4b2e195645aebb43170ff7f15952a ****/ + /****** Bnd_Box::Dump ******/ + /****** md5 signature: 15b4b2e195645aebb43170ff7f15952a ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", "Return ------- @@ -2067,8 +2067,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** Enlarge ******************/ - /**** md5 signature: b5dbc37ffece9eaee81e33bf3b715eef ****/ + /****** Bnd_Box::Enlarge ******/ + /****** md5 signature: b5dbc37ffece9eaee81e33bf3b715eef ******/ %feature("compactdefaultargs") Enlarge; %feature("autodoc", " Parameters @@ -2085,8 +2085,8 @@ Enlarges the box with a tolerance value. (minvalues-abs() and maxvalues+abs ") Enlarge; void Enlarge(const Standard_Real Tol); - /****************** FinitePart ******************/ - /**** md5 signature: b23462d45984e16bcf876321f08f3673 ****/ + /****** Bnd_Box::FinitePart ******/ + /****** md5 signature: b23462d45984e16bcf876321f08f3673 ******/ %feature("compactdefaultargs") FinitePart; %feature("autodoc", "Return ------- @@ -2098,8 +2098,8 @@ Returns a finite part of an infinite bounding box (returns self if this is alrea ") FinitePart; Bnd_Box FinitePart(); - /****************** Get ******************/ - /**** md5 signature: fdcfde34f207fdeac6d324f55d7a58eb ****/ + /****** Bnd_Box::Get ******/ + /****** md5 signature: fdcfde34f207fdeac6d324f55d7a58eb ******/ %feature("compactdefaultargs") Get; %feature("autodoc", " Parameters @@ -2120,8 +2120,8 @@ Returns the bounds of this bounding box. the gap is included. if this bounding b ") Get; void Get(Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** GetGap ******************/ - /**** md5 signature: d6c52fd6b86efef444629668df8883f2 ****/ + /****** Bnd_Box::GetGap ******/ + /****** md5 signature: d6c52fd6b86efef444629668df8883f2 ******/ %feature("compactdefaultargs") GetGap; %feature("autodoc", "Return ------- @@ -2133,8 +2133,8 @@ Returns the gap of this bounding box. ") GetGap; Standard_Real GetGap(); - /****************** HasFinitePart ******************/ - /**** md5 signature: 6ad99adddd3d87ef1c65c750f8e0d220 ****/ + /****** Bnd_Box::HasFinitePart ******/ + /****** md5 signature: 6ad99adddd3d87ef1c65c750f8e0d220 ******/ %feature("compactdefaultargs") HasFinitePart; %feature("autodoc", "Return ------- @@ -2167,8 +2167,8 @@ Init the object from a JSON string. Standard_Integer pos=2; return self->InitFromJson(s, pos);} }; - /****************** IsOpen ******************/ - /**** md5 signature: 49b225479601710d1c8888cb2f18ffcf ****/ + /****** Bnd_Box::IsOpen ******/ + /****** md5 signature: 49b225479601710d1c8888cb2f18ffcf ******/ %feature("compactdefaultargs") IsOpen; %feature("autodoc", "Return ------- @@ -2180,8 +2180,8 @@ Returns true if this bounding box has at least one open direction. ") IsOpen; Standard_Boolean IsOpen(); - /****************** IsOpenXmax ******************/ - /**** md5 signature: 5eb2255a5bab3f2bc582219e0faf64da ****/ + /****** Bnd_Box::IsOpenXmax ******/ + /****** md5 signature: 5eb2255a5bab3f2bc582219e0faf64da ******/ %feature("compactdefaultargs") IsOpenXmax; %feature("autodoc", "Return ------- @@ -2193,8 +2193,8 @@ Returns true if this bounding box is open in the xmax direction. ") IsOpenXmax; Standard_Boolean IsOpenXmax(); - /****************** IsOpenXmin ******************/ - /**** md5 signature: 4a3ade2dd87cecd20ab6184f8ecaf60f ****/ + /****** Bnd_Box::IsOpenXmin ******/ + /****** md5 signature: 4a3ade2dd87cecd20ab6184f8ecaf60f ******/ %feature("compactdefaultargs") IsOpenXmin; %feature("autodoc", "Return ------- @@ -2206,8 +2206,8 @@ Returns true if this bounding box is open in the xmin direction. ") IsOpenXmin; Standard_Boolean IsOpenXmin(); - /****************** IsOpenYmax ******************/ - /**** md5 signature: 8d1ec673e6124a1b526a06e1d5a0cfcb ****/ + /****** Bnd_Box::IsOpenYmax ******/ + /****** md5 signature: 8d1ec673e6124a1b526a06e1d5a0cfcb ******/ %feature("compactdefaultargs") IsOpenYmax; %feature("autodoc", "Return ------- @@ -2219,8 +2219,8 @@ Returns true if this bounding box is open in the ymax direction. ") IsOpenYmax; Standard_Boolean IsOpenYmax(); - /****************** IsOpenYmin ******************/ - /**** md5 signature: 127e30414ce069b633717ba26051232c ****/ + /****** Bnd_Box::IsOpenYmin ******/ + /****** md5 signature: 127e30414ce069b633717ba26051232c ******/ %feature("compactdefaultargs") IsOpenYmin; %feature("autodoc", "Return ------- @@ -2232,8 +2232,8 @@ Returns true if this bounding box is open in the ymix direction. ") IsOpenYmin; Standard_Boolean IsOpenYmin(); - /****************** IsOpenZmax ******************/ - /**** md5 signature: 0aeb25bdfc6d9155a40cd6f7296cd574 ****/ + /****** Bnd_Box::IsOpenZmax ******/ + /****** md5 signature: 0aeb25bdfc6d9155a40cd6f7296cd574 ******/ %feature("compactdefaultargs") IsOpenZmax; %feature("autodoc", "Return ------- @@ -2245,8 +2245,8 @@ Returns true if this bounding box is open in the zmax direction. ") IsOpenZmax; Standard_Boolean IsOpenZmax(); - /****************** IsOpenZmin ******************/ - /**** md5 signature: 5f71eec5d0881e37cb676487995acd94 ****/ + /****** Bnd_Box::IsOpenZmin ******/ + /****** md5 signature: 5f71eec5d0881e37cb676487995acd94 ******/ %feature("compactdefaultargs") IsOpenZmin; %feature("autodoc", "Return ------- @@ -2258,8 +2258,8 @@ Returns true if this bounding box is open in the zmin direction. ") IsOpenZmin; Standard_Boolean IsOpenZmin(); - /****************** IsOut ******************/ - /**** md5 signature: f348a24dbf7e40c755152f8a70e3187a ****/ + /****** Bnd_Box::IsOut ******/ + /****** md5 signature: f348a24dbf7e40c755152f8a70e3187a ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -2276,8 +2276,8 @@ Returns true if the pnt is out the box. ") IsOut; Standard_Boolean IsOut(const gp_Pnt & P); - /****************** IsOut ******************/ - /**** md5 signature: 17652ecbd2ac3703da0006c5128dc63a ****/ + /****** Bnd_Box::IsOut ******/ + /****** md5 signature: 17652ecbd2ac3703da0006c5128dc63a ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -2294,8 +2294,8 @@ Returns false if the line intersects the box. ") IsOut; Standard_Boolean IsOut(const gp_Lin & L); - /****************** IsOut ******************/ - /**** md5 signature: 90ccbbde205392ec532b3171f3e59f37 ****/ + /****** Bnd_Box::IsOut ******/ + /****** md5 signature: 90ccbbde205392ec532b3171f3e59f37 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -2312,8 +2312,8 @@ Returns false if the plane intersects the box. ") IsOut; Standard_Boolean IsOut(const gp_Pln & P); - /****************** IsOut ******************/ - /**** md5 signature: 80b9d1a0a52f6e56a8774d1bdf0ade38 ****/ + /****** Bnd_Box::IsOut ******/ + /****** md5 signature: 80b9d1a0a52f6e56a8774d1bdf0ade38 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -2330,8 +2330,8 @@ Returns false if the intersects or is inside . ") IsOut; Standard_Boolean IsOut(const Bnd_Box & Other); - /****************** IsOut ******************/ - /**** md5 signature: 178d03e597d92d4cb58b27b941435df1 ****/ + /****** Bnd_Box::IsOut ******/ + /****** md5 signature: 178d03e597d92d4cb58b27b941435df1 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -2349,8 +2349,8 @@ Returns false if the transformed intersects or is inside . ") IsOut; Standard_Boolean IsOut(const Bnd_Box & Other, const gp_Trsf & T); - /****************** IsOut ******************/ - /**** md5 signature: bc2c0188a7939d0ab743d2dd96d12728 ****/ + /****** Bnd_Box::IsOut ******/ + /****** md5 signature: bc2c0188a7939d0ab743d2dd96d12728 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -2369,8 +2369,8 @@ Returns false if the transformed intersects or is inside the transformed b ") IsOut; Standard_Boolean IsOut(const gp_Trsf & T1, const Bnd_Box & Other, const gp_Trsf & T2); - /****************** IsOut ******************/ - /**** md5 signature: d6a1e498867d5cdc9886a23004f4fd8c ****/ + /****** Bnd_Box::IsOut ******/ + /****** md5 signature: d6a1e498867d5cdc9886a23004f4fd8c ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -2389,8 +2389,8 @@ Returns false if the flat band lying between two parallel lines represented by t ") IsOut; Standard_Boolean IsOut(const gp_Pnt & P1, const gp_Pnt & P2, const gp_Dir & D); - /****************** IsThin ******************/ - /**** md5 signature: 0254e00c3c2058c3088e4a3e19a6cd91 ****/ + /****** Bnd_Box::IsThin ******/ + /****** md5 signature: 0254e00c3c2058c3088e4a3e19a6cd91 ******/ %feature("compactdefaultargs") IsThin; %feature("autodoc", " Parameters @@ -2407,8 +2407,8 @@ Returns true if isxthin, isythin and iszthin are all true, i.e. if the box is th ") IsThin; Standard_Boolean IsThin(const Standard_Real tol); - /****************** IsVoid ******************/ - /**** md5 signature: 9aa2fb0e94327ea2b13fa6dbf2b30845 ****/ + /****** Bnd_Box::IsVoid ******/ + /****** md5 signature: 9aa2fb0e94327ea2b13fa6dbf2b30845 ******/ %feature("compactdefaultargs") IsVoid; %feature("autodoc", "Return ------- @@ -2420,8 +2420,8 @@ Returns true if this bounding box is empty (void flag). ") IsVoid; Standard_Boolean IsVoid(); - /****************** IsWhole ******************/ - /**** md5 signature: 0a8318ed765ec359e07b16b26f838d8e ****/ + /****** Bnd_Box::IsWhole ******/ + /****** md5 signature: 0a8318ed765ec359e07b16b26f838d8e ******/ %feature("compactdefaultargs") IsWhole; %feature("autodoc", "Return ------- @@ -2433,8 +2433,8 @@ Returns true if this bounding box is infinite in all 6 directions (wholespace fl ") IsWhole; Standard_Boolean IsWhole(); - /****************** IsXThin ******************/ - /**** md5 signature: dad1e5627442e4703d7b7ad8e0c74cdb ****/ + /****** Bnd_Box::IsXThin ******/ + /****** md5 signature: dad1e5627442e4703d7b7ad8e0c74cdb ******/ %feature("compactdefaultargs") IsXThin; %feature("autodoc", " Parameters @@ -2451,8 +2451,8 @@ True if xmax-xmin < tol. ") IsXThin; Standard_Boolean IsXThin(const Standard_Real tol); - /****************** IsYThin ******************/ - /**** md5 signature: 76bbc838755a83a7cd3d118ceea8aa53 ****/ + /****** Bnd_Box::IsYThin ******/ + /****** md5 signature: 76bbc838755a83a7cd3d118ceea8aa53 ******/ %feature("compactdefaultargs") IsYThin; %feature("autodoc", " Parameters @@ -2469,8 +2469,8 @@ True if ymax-ymin < tol. ") IsYThin; Standard_Boolean IsYThin(const Standard_Real tol); - /****************** IsZThin ******************/ - /**** md5 signature: c4fcc02c36e9759b78c1ceb3680d1b99 ****/ + /****** Bnd_Box::IsZThin ******/ + /****** md5 signature: c4fcc02c36e9759b78c1ceb3680d1b99 ******/ %feature("compactdefaultargs") IsZThin; %feature("autodoc", " Parameters @@ -2487,8 +2487,8 @@ True if zmax-zmin < tol. ") IsZThin; Standard_Boolean IsZThin(const Standard_Real tol); - /****************** OpenXmax ******************/ - /**** md5 signature: 011b84ef137ac1ffb641f2c1a9ac63e2 ****/ + /****** Bnd_Box::OpenXmax ******/ + /****** md5 signature: 011b84ef137ac1ffb641f2c1a9ac63e2 ******/ %feature("compactdefaultargs") OpenXmax; %feature("autodoc", "Return ------- @@ -2500,8 +2500,8 @@ The box will be infinitely long in the xmax direction. ") OpenXmax; void OpenXmax(); - /****************** OpenXmin ******************/ - /**** md5 signature: 0cb5023d1c04bb9f8d3afb0c66dc3550 ****/ + /****** Bnd_Box::OpenXmin ******/ + /****** md5 signature: 0cb5023d1c04bb9f8d3afb0c66dc3550 ******/ %feature("compactdefaultargs") OpenXmin; %feature("autodoc", "Return ------- @@ -2513,8 +2513,8 @@ The box will be infinitely long in the xmin direction. ") OpenXmin; void OpenXmin(); - /****************** OpenYmax ******************/ - /**** md5 signature: c73a2152a30be1e92daf823e7bff7593 ****/ + /****** Bnd_Box::OpenYmax ******/ + /****** md5 signature: c73a2152a30be1e92daf823e7bff7593 ******/ %feature("compactdefaultargs") OpenYmax; %feature("autodoc", "Return ------- @@ -2526,8 +2526,8 @@ The box will be infinitely long in the ymax direction. ") OpenYmax; void OpenYmax(); - /****************** OpenYmin ******************/ - /**** md5 signature: 4bcf368c4cb64b3755b7b035d5243c28 ****/ + /****** Bnd_Box::OpenYmin ******/ + /****** md5 signature: 4bcf368c4cb64b3755b7b035d5243c28 ******/ %feature("compactdefaultargs") OpenYmin; %feature("autodoc", "Return ------- @@ -2539,8 +2539,8 @@ The box will be infinitely long in the ymin direction. ") OpenYmin; void OpenYmin(); - /****************** OpenZmax ******************/ - /**** md5 signature: d434332e53f7c60ae595a0a8a5d503ef ****/ + /****** Bnd_Box::OpenZmax ******/ + /****** md5 signature: d434332e53f7c60ae595a0a8a5d503ef ******/ %feature("compactdefaultargs") OpenZmax; %feature("autodoc", "Return ------- @@ -2552,8 +2552,8 @@ The box will be infinitely long in the zmax direction. ") OpenZmax; void OpenZmax(); - /****************** OpenZmin ******************/ - /**** md5 signature: 91a795a7b168cc777c5c18df8e8b6cba ****/ + /****** Bnd_Box::OpenZmin ******/ + /****** md5 signature: 91a795a7b168cc777c5c18df8e8b6cba ******/ %feature("compactdefaultargs") OpenZmin; %feature("autodoc", "Return ------- @@ -2565,8 +2565,8 @@ The box will be infinitely long in the zmin direction. ") OpenZmin; void OpenZmin(); - /****************** Set ******************/ - /**** md5 signature: db883cf63ff497749765a1588d5f0509 ****/ + /****** Bnd_Box::Set ******/ + /****** md5 signature: db883cf63ff497749765a1588d5f0509 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -2583,8 +2583,8 @@ Sets this bounding box so that it bounds - the point p. this involves first sett ") Set; void Set(const gp_Pnt & P); - /****************** Set ******************/ - /**** md5 signature: 945d824f108c7dfcd3451b159d172d3a ****/ + /****** Bnd_Box::Set ******/ + /****** md5 signature: 945d824f108c7dfcd3451b159d172d3a ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -2602,8 +2602,8 @@ Sets this bounding box so that it bounds the half-line defined by point p and di ") Set; void Set(const gp_Pnt & P, const gp_Dir & D); - /****************** SetGap ******************/ - /**** md5 signature: 76801688da89431c55a524bd10939352 ****/ + /****** Bnd_Box::SetGap ******/ + /****** md5 signature: 76801688da89431c55a524bd10939352 ******/ %feature("compactdefaultargs") SetGap; %feature("autodoc", " Parameters @@ -2620,8 +2620,8 @@ Set the gap of this bounding box to abs(tol). ") SetGap; void SetGap(const Standard_Real Tol); - /****************** SetVoid ******************/ - /**** md5 signature: 4e44fd52f6a76368c77b381fe1482a21 ****/ + /****** Bnd_Box::SetVoid ******/ + /****** md5 signature: 4e44fd52f6a76368c77b381fe1482a21 ******/ %feature("compactdefaultargs") SetVoid; %feature("autodoc", "Return ------- @@ -2633,8 +2633,8 @@ Sets this bounding box so that it is empty. all points are outside a void box. ") SetVoid; void SetVoid(); - /****************** SetWhole ******************/ - /**** md5 signature: a40c374c51cbe4a88447c330252451e9 ****/ + /****** Bnd_Box::SetWhole ******/ + /****** md5 signature: a40c374c51cbe4a88447c330252451e9 ******/ %feature("compactdefaultargs") SetWhole; %feature("autodoc", "Return ------- @@ -2646,8 +2646,8 @@ Sets this bounding box so that it covers the whole of 3d space. it is infinitely ") SetWhole; void SetWhole(); - /****************** SquareExtent ******************/ - /**** md5 signature: 25897f4ea5ade71bb993b0f1c6520c54 ****/ + /****** Bnd_Box::SquareExtent ******/ + /****** md5 signature: 25897f4ea5ade71bb993b0f1c6520c54 ******/ %feature("compactdefaultargs") SquareExtent; %feature("autodoc", "Return ------- @@ -2659,8 +2659,8 @@ Computes the squared diagonal of me. ") SquareExtent; Standard_Real SquareExtent(); - /****************** Transformed ******************/ - /**** md5 signature: f8f0492ba8a9ca40222a08025b8b8169 ****/ + /****** Bnd_Box::Transformed ******/ + /****** md5 signature: f8f0492ba8a9ca40222a08025b8b8169 ******/ %feature("compactdefaultargs") Transformed; %feature("autodoc", " Parameters @@ -2677,8 +2677,8 @@ Returns a bounding box which is the result of applying the transformation t to t ") Transformed; Bnd_Box Transformed(const gp_Trsf & T); - /****************** Update ******************/ - /**** md5 signature: c3930f0ed60b103221ac4d75e154bf2d ****/ + /****** Bnd_Box::Update ******/ + /****** md5 signature: c3930f0ed60b103221ac4d75e154bf2d ******/ %feature("compactdefaultargs") Update; %feature("autodoc", " Parameters @@ -2700,8 +2700,8 @@ Enlarges this bounding box, if required, so that it contains at least: - interva ") Update; void Update(const Standard_Real aXmin, const Standard_Real aYmin, const Standard_Real aZmin, const Standard_Real aXmax, const Standard_Real aYmax, const Standard_Real aZmax); - /****************** Update ******************/ - /**** md5 signature: e8dbda4a342ab03c84b2e5bee720848f ****/ + /****** Bnd_Box::Update ******/ + /****** md5 signature: e8dbda4a342ab03c84b2e5bee720848f ******/ %feature("compactdefaultargs") Update; %feature("autodoc", " Parameters @@ -2752,8 +2752,8 @@ Adds a point of coordinates (x,y,z) to this bounding box. ******************/ class Bnd_Box2d { public: - /****************** Bnd_Box2d ******************/ - /**** md5 signature: 18bdb98247d9982c9bb8ed597d8523b6 ****/ + /****** Bnd_Box2d::Bnd_Box2d ******/ + /****** md5 signature: 18bdb98247d9982c9bb8ed597d8523b6 ******/ %feature("compactdefaultargs") Bnd_Box2d; %feature("autodoc", "Return ------- @@ -2765,8 +2765,8 @@ Creates an empty 2d bounding box. the constructed box is qualified void. its gap ") Bnd_Box2d; Bnd_Box2d(); - /****************** Add ******************/ - /**** md5 signature: 6f044365f28f5f8cfea2a8ef87b5d3d8 ****/ + /****** Bnd_Box2d::Add ******/ + /****** md5 signature: 6f044365f28f5f8cfea2a8ef87b5d3d8 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -2783,8 +2783,8 @@ Adds the 2d box to . ") Add; void Add(const Bnd_Box2d & Other); - /****************** Add ******************/ - /**** md5 signature: 3345fd755af32d4addfbfcf462343566 ****/ + /****** Bnd_Box2d::Add ******/ + /****** md5 signature: 3345fd755af32d4addfbfcf462343566 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -2801,8 +2801,8 @@ Adds the 2d point. ") Add; void Add(const gp_Pnt2d & thePnt); - /****************** Add ******************/ - /**** md5 signature: 766d7f8bedbbfef7f57fba624ff81449 ****/ + /****** Bnd_Box2d::Add ******/ + /****** md5 signature: 766d7f8bedbbfef7f57fba624ff81449 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -2820,8 +2820,8 @@ Extends bounding box from thepnt in the direction thedir. ") Add; void Add(const gp_Pnt2d & thePnt, const gp_Dir2d & theDir); - /****************** Add ******************/ - /**** md5 signature: 17bccdca6c22026d7b33e0b35baadcc7 ****/ + /****** Bnd_Box2d::Add ******/ + /****** md5 signature: 17bccdca6c22026d7b33e0b35baadcc7 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -2838,8 +2838,8 @@ Extends the box in the given direction, i.e. adds a half-line. the box may becom ") Add; void Add(const gp_Dir2d & D); - /****************** Dump ******************/ - /**** md5 signature: 15b4b2e195645aebb43170ff7f15952a ****/ + /****** Bnd_Box2d::Dump ******/ + /****** md5 signature: 15b4b2e195645aebb43170ff7f15952a ******/ %feature("compactdefaultargs") Dump; %feature("autodoc", "Return ------- @@ -2851,8 +2851,8 @@ No available documentation. ") Dump; void Dump(); - /****************** Enlarge ******************/ - /**** md5 signature: d42b828f55c3eec07d633e1786debcb8 ****/ + /****** Bnd_Box2d::Enlarge ******/ + /****** md5 signature: d42b828f55c3eec07d633e1786debcb8 ******/ %feature("compactdefaultargs") Enlarge; %feature("autodoc", " Parameters @@ -2869,8 +2869,8 @@ Enlarges the box with a tolerance value. this means that the minimum values of i ") Enlarge; void Enlarge(const Standard_Real theTol); - /****************** Get ******************/ - /**** md5 signature: 4f65ca439016927ed6232461d417c140 ****/ + /****** Bnd_Box2d::Get ******/ + /****** md5 signature: 4f65ca439016927ed6232461d417c140 ******/ %feature("compactdefaultargs") Get; %feature("autodoc", " Parameters @@ -2889,8 +2889,8 @@ Returns the bounds of this 2d bounding box. the gap is included. if this boundin ") Get; void Get(Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** GetGap ******************/ - /**** md5 signature: 6750af4846e7c73d2306166a820dd5a3 ****/ + /****** Bnd_Box2d::GetGap ******/ + /****** md5 signature: 6750af4846e7c73d2306166a820dd5a3 ******/ %feature("compactdefaultargs") GetGap; %feature("autodoc", "Return ------- @@ -2902,8 +2902,8 @@ Returns the gap of this 2d bounding box. ") GetGap; Standard_Real GetGap(); - /****************** IsOpenXmax ******************/ - /**** md5 signature: 5eb2255a5bab3f2bc582219e0faf64da ****/ + /****** Bnd_Box2d::IsOpenXmax ******/ + /****** md5 signature: 5eb2255a5bab3f2bc582219e0faf64da ******/ %feature("compactdefaultargs") IsOpenXmax; %feature("autodoc", "Return ------- @@ -2915,8 +2915,8 @@ Returns true if this bounding box is open in the xmax direction. ") IsOpenXmax; Standard_Boolean IsOpenXmax(); - /****************** IsOpenXmin ******************/ - /**** md5 signature: 4a3ade2dd87cecd20ab6184f8ecaf60f ****/ + /****** Bnd_Box2d::IsOpenXmin ******/ + /****** md5 signature: 4a3ade2dd87cecd20ab6184f8ecaf60f ******/ %feature("compactdefaultargs") IsOpenXmin; %feature("autodoc", "Return ------- @@ -2928,8 +2928,8 @@ Returns true if this bounding box is open in the xmin direction. ") IsOpenXmin; Standard_Boolean IsOpenXmin(); - /****************** IsOpenYmax ******************/ - /**** md5 signature: 8d1ec673e6124a1b526a06e1d5a0cfcb ****/ + /****** Bnd_Box2d::IsOpenYmax ******/ + /****** md5 signature: 8d1ec673e6124a1b526a06e1d5a0cfcb ******/ %feature("compactdefaultargs") IsOpenYmax; %feature("autodoc", "Return ------- @@ -2941,8 +2941,8 @@ Returns true if this bounding box is open in the ymax direction. ") IsOpenYmax; Standard_Boolean IsOpenYmax(); - /****************** IsOpenYmin ******************/ - /**** md5 signature: 127e30414ce069b633717ba26051232c ****/ + /****** Bnd_Box2d::IsOpenYmin ******/ + /****** md5 signature: 127e30414ce069b633717ba26051232c ******/ %feature("compactdefaultargs") IsOpenYmin; %feature("autodoc", "Return ------- @@ -2954,8 +2954,8 @@ Returns true if this bounding box is open in the ymin direction. ") IsOpenYmin; Standard_Boolean IsOpenYmin(); - /****************** IsOut ******************/ - /**** md5 signature: d03cb9c8d7fe01e19de4b31ec8638b96 ****/ + /****** Bnd_Box2d::IsOut ******/ + /****** md5 signature: d03cb9c8d7fe01e19de4b31ec8638b96 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -2972,8 +2972,8 @@ Returns true if the 2d pnt

is out . ") IsOut; Standard_Boolean IsOut(const gp_Pnt2d & P); - /****************** IsOut ******************/ - /**** md5 signature: b38b06569c00369b03abed2049a1c3e3 ****/ + /****** Bnd_Box2d::IsOut ******/ + /****** md5 signature: b38b06569c00369b03abed2049a1c3e3 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -2990,8 +2990,8 @@ Returns true if the line doesn't intersect the box. ") IsOut; Standard_Boolean IsOut(const gp_Lin2d & theL); - /****************** IsOut ******************/ - /**** md5 signature: a23d5456f0cccf334434731d2ce66f73 ****/ + /****** Bnd_Box2d::IsOut ******/ + /****** md5 signature: a23d5456f0cccf334434731d2ce66f73 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -3009,8 +3009,8 @@ Returns true if the segment doesn't intersect the box. ") IsOut; Standard_Boolean IsOut(const gp_Pnt2d & theP0, const gp_Pnt2d & theP1); - /****************** IsOut ******************/ - /**** md5 signature: 76ce93721d21d2f47dd476b923763317 ****/ + /****** Bnd_Box2d::IsOut ******/ + /****** md5 signature: 76ce93721d21d2f47dd476b923763317 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -3027,8 +3027,8 @@ Returns true if is out . ") IsOut; Standard_Boolean IsOut(const Bnd_Box2d & Other); - /****************** IsOut ******************/ - /**** md5 signature: 242bdc5eb7d739c8e58bf1ccf125794e ****/ + /****** Bnd_Box2d::IsOut ******/ + /****** md5 signature: 242bdc5eb7d739c8e58bf1ccf125794e ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -3046,8 +3046,8 @@ Returns true if transformed is out . ") IsOut; Standard_Boolean IsOut(const Bnd_Box2d & theOther, const gp_Trsf2d & theTrsf); - /****************** IsOut ******************/ - /**** md5 signature: 1de5bddfb807ee17935c8101289b1b30 ****/ + /****** Bnd_Box2d::IsOut ******/ + /****** md5 signature: 1de5bddfb807ee17935c8101289b1b30 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -3066,8 +3066,8 @@ Compares a transformed bounding with a transformed bounding. the default impleme ") IsOut; Standard_Boolean IsOut(const gp_Trsf2d & T1, const Bnd_Box2d & Other, const gp_Trsf2d & T2); - /****************** IsVoid ******************/ - /**** md5 signature: 9aa2fb0e94327ea2b13fa6dbf2b30845 ****/ + /****** Bnd_Box2d::IsVoid ******/ + /****** md5 signature: 9aa2fb0e94327ea2b13fa6dbf2b30845 ******/ %feature("compactdefaultargs") IsVoid; %feature("autodoc", "Return ------- @@ -3079,8 +3079,8 @@ Returns true if this 2d bounding box is empty (void flag). ") IsVoid; Standard_Boolean IsVoid(); - /****************** IsWhole ******************/ - /**** md5 signature: 0a8318ed765ec359e07b16b26f838d8e ****/ + /****** Bnd_Box2d::IsWhole ******/ + /****** md5 signature: 0a8318ed765ec359e07b16b26f838d8e ******/ %feature("compactdefaultargs") IsWhole; %feature("autodoc", "Return ------- @@ -3092,8 +3092,8 @@ Returns true if this bounding box is infinite in all 4 directions (whole space f ") IsWhole; Standard_Boolean IsWhole(); - /****************** OpenXmax ******************/ - /**** md5 signature: 011b84ef137ac1ffb641f2c1a9ac63e2 ****/ + /****** Bnd_Box2d::OpenXmax ******/ + /****** md5 signature: 011b84ef137ac1ffb641f2c1a9ac63e2 ******/ %feature("compactdefaultargs") OpenXmax; %feature("autodoc", "Return ------- @@ -3105,8 +3105,8 @@ The box will be infinitely long in the xmax direction. ") OpenXmax; void OpenXmax(); - /****************** OpenXmin ******************/ - /**** md5 signature: 0cb5023d1c04bb9f8d3afb0c66dc3550 ****/ + /****** Bnd_Box2d::OpenXmin ******/ + /****** md5 signature: 0cb5023d1c04bb9f8d3afb0c66dc3550 ******/ %feature("compactdefaultargs") OpenXmin; %feature("autodoc", "Return ------- @@ -3118,8 +3118,8 @@ The box will be infinitely long in the xmin direction. ") OpenXmin; void OpenXmin(); - /****************** OpenYmax ******************/ - /**** md5 signature: c73a2152a30be1e92daf823e7bff7593 ****/ + /****** Bnd_Box2d::OpenYmax ******/ + /****** md5 signature: c73a2152a30be1e92daf823e7bff7593 ******/ %feature("compactdefaultargs") OpenYmax; %feature("autodoc", "Return ------- @@ -3131,8 +3131,8 @@ The box will be infinitely long in the ymax direction. ") OpenYmax; void OpenYmax(); - /****************** OpenYmin ******************/ - /**** md5 signature: 4bcf368c4cb64b3755b7b035d5243c28 ****/ + /****** Bnd_Box2d::OpenYmin ******/ + /****** md5 signature: 4bcf368c4cb64b3755b7b035d5243c28 ******/ %feature("compactdefaultargs") OpenYmin; %feature("autodoc", "Return ------- @@ -3144,8 +3144,8 @@ The box will be infinitely long in the ymin direction. ") OpenYmin; void OpenYmin(); - /****************** Set ******************/ - /**** md5 signature: 20e194d14a202c4fee73c68b1bd68f73 ****/ + /****** Bnd_Box2d::Set ******/ + /****** md5 signature: 20e194d14a202c4fee73c68b1bd68f73 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -3162,8 +3162,8 @@ Sets this 2d bounding box so that it bounds the point p. this involves first set ") Set; void Set(const gp_Pnt2d & thePnt); - /****************** Set ******************/ - /**** md5 signature: 3c944f7f0f286da9b8af1532b3c8f1d6 ****/ + /****** Bnd_Box2d::Set ******/ + /****** md5 signature: 3c944f7f0f286da9b8af1532b3c8f1d6 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -3181,8 +3181,8 @@ Sets this 2d bounding box so that it bounds the half-line defined by point p and ") Set; void Set(const gp_Pnt2d & thePnt, const gp_Dir2d & theDir); - /****************** SetGap ******************/ - /**** md5 signature: fd1e2e1d937f82e7bd6e34746a51db57 ****/ + /****** Bnd_Box2d::SetGap ******/ + /****** md5 signature: fd1e2e1d937f82e7bd6e34746a51db57 ******/ %feature("compactdefaultargs") SetGap; %feature("autodoc", " Parameters @@ -3199,8 +3199,8 @@ Set the gap of this 2d bounding box to abs(tol). ") SetGap; void SetGap(const Standard_Real Tol); - /****************** SetVoid ******************/ - /**** md5 signature: 4e44fd52f6a76368c77b381fe1482a21 ****/ + /****** Bnd_Box2d::SetVoid ******/ + /****** md5 signature: 4e44fd52f6a76368c77b381fe1482a21 ******/ %feature("compactdefaultargs") SetVoid; %feature("autodoc", "Return ------- @@ -3212,8 +3212,8 @@ Sets this 2d bounding box so that it is empty. all points are outside a void box ") SetVoid; void SetVoid(); - /****************** SetWhole ******************/ - /**** md5 signature: a40c374c51cbe4a88447c330252451e9 ****/ + /****** Bnd_Box2d::SetWhole ******/ + /****** md5 signature: a40c374c51cbe4a88447c330252451e9 ******/ %feature("compactdefaultargs") SetWhole; %feature("autodoc", "Return ------- @@ -3225,8 +3225,8 @@ Sets this bounding box so that it covers the whole 2d space, i.e. it is infinite ") SetWhole; void SetWhole(); - /****************** SquareExtent ******************/ - /**** md5 signature: 25897f4ea5ade71bb993b0f1c6520c54 ****/ + /****** Bnd_Box2d::SquareExtent ******/ + /****** md5 signature: 25897f4ea5ade71bb993b0f1c6520c54 ******/ %feature("compactdefaultargs") SquareExtent; %feature("autodoc", "Return ------- @@ -3238,8 +3238,8 @@ Computes the squared diagonal of me. ") SquareExtent; Standard_Real SquareExtent(); - /****************** Transformed ******************/ - /**** md5 signature: 9f68554d14860db57f14fcdad98487d8 ****/ + /****** Bnd_Box2d::Transformed ******/ + /****** md5 signature: 9f68554d14860db57f14fcdad98487d8 ******/ %feature("compactdefaultargs") Transformed; %feature("autodoc", " Parameters @@ -3256,8 +3256,8 @@ Returns a bounding box which is the result of applying the transformation t to t ") Transformed; Bnd_Box2d Transformed(const gp_Trsf2d & T); - /****************** Update ******************/ - /**** md5 signature: cbab599f6b79a58e1c4829eb37ff50ae ****/ + /****** Bnd_Box2d::Update ******/ + /****** md5 signature: cbab599f6b79a58e1c4829eb37ff50ae ******/ %feature("compactdefaultargs") Update; %feature("autodoc", " Parameters @@ -3277,8 +3277,8 @@ Enlarges this 2d bounding box, if required, so that it contains at least: - inte ") Update; void Update(const Standard_Real aXmin, const Standard_Real aYmin, const Standard_Real aXmax, const Standard_Real aYmax); - /****************** Update ******************/ - /**** md5 signature: 755b71c46d0e1aef441564ce8d7b156a ****/ + /****** Bnd_Box2d::Update ******/ + /****** md5 signature: 755b71c46d0e1aef441564ce8d7b156a ******/ %feature("compactdefaultargs") Update; %feature("autodoc", " Parameters @@ -3328,8 +3328,8 @@ Adds a point of coordinates (x,y) to this bounding box. ****************/ class Bnd_OBB { public: - /****************** Bnd_OBB ******************/ - /**** md5 signature: 89e871e268e0b019a1a62d73fd55eb19 ****/ + /****** Bnd_OBB::Bnd_OBB ******/ + /****** md5 signature: 89e871e268e0b019a1a62d73fd55eb19 ******/ %feature("compactdefaultargs") Bnd_OBB; %feature("autodoc", "Return ------- @@ -3341,8 +3341,8 @@ Empty constructor. ") Bnd_OBB; Bnd_OBB(); - /****************** Bnd_OBB ******************/ - /**** md5 signature: 9217a828a0fc36ef6ace41d448b130b0 ****/ + /****** Bnd_OBB::Bnd_OBB ******/ + /****** md5 signature: 9217a828a0fc36ef6ace41d448b130b0 ******/ %feature("compactdefaultargs") Bnd_OBB; %feature("autodoc", " Parameters @@ -3365,8 +3365,8 @@ Constructor taking all defining parameters. ") Bnd_OBB; Bnd_OBB(const gp_Pnt & theCenter, const gp_Dir & theXDirection, const gp_Dir & theYDirection, const gp_Dir & theZDirection, const Standard_Real theHXSize, const Standard_Real theHYSize, const Standard_Real theHZSize); - /****************** Bnd_OBB ******************/ - /**** md5 signature: 5c80c49300d6c6d28ac3791ffa9f9dfb ****/ + /****** Bnd_OBB::Bnd_OBB ******/ + /****** md5 signature: 5c80c49300d6c6d28ac3791ffa9f9dfb ******/ %feature("compactdefaultargs") Bnd_OBB; %feature("autodoc", " Parameters @@ -3383,8 +3383,8 @@ Constructor to create obb from aabb. ") Bnd_OBB; Bnd_OBB(const Bnd_Box & theBox); - /****************** Add ******************/ - /**** md5 signature: 1f61a26817c8d333e27dfcdd5e33f7c7 ****/ + /****** Bnd_OBB::Add ******/ + /****** md5 signature: 1f61a26817c8d333e27dfcdd5e33f7c7 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -3401,8 +3401,8 @@ Rebuilds this in order to include all previous objects (which it was created fro ") Add; void Add(const Bnd_OBB & theOther); - /****************** Add ******************/ - /**** md5 signature: 67fb36a9dbd11d4528c03db6f935bcb9 ****/ + /****** Bnd_OBB::Add ******/ + /****** md5 signature: 67fb36a9dbd11d4528c03db6f935bcb9 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -3419,8 +3419,8 @@ Rebuilds this in order to include all previous objects (which it was created fro ") Add; void Add(const gp_Pnt & theP); - /****************** Center ******************/ - /**** md5 signature: 46cca58f8b29223ae05354ea8a3e5417 ****/ + /****** Bnd_OBB::Center ******/ + /****** md5 signature: 46cca58f8b29223ae05354ea8a3e5417 ******/ %feature("compactdefaultargs") Center; %feature("autodoc", "Return ------- @@ -3453,8 +3453,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** Enlarge ******************/ - /**** md5 signature: d759fcc6f239218e61510f561f9d7a30 ****/ + /****** Bnd_OBB::Enlarge ******/ + /****** md5 signature: d759fcc6f239218e61510f561f9d7a30 ******/ %feature("compactdefaultargs") Enlarge; %feature("autodoc", " Parameters @@ -3471,8 +3471,8 @@ Enlarges the box with the given value. ") Enlarge; void Enlarge(const Standard_Real theGapAdd); - /****************** GetVertex ******************/ - /**** md5 signature: dd70008164910fd933486ee1e89b66ea ****/ + /****** Bnd_OBB::GetVertex ******/ + /****** md5 signature: dd70008164910fd933486ee1e89b66ea ******/ %feature("compactdefaultargs") GetVertex; %feature("autodoc", " Parameters @@ -3489,8 +3489,8 @@ Returns the array of vertices in . the local coordinate of the vertex depe ") GetVertex; Standard_Boolean GetVertex(gp_Pnt theP[8]); - /****************** IsAABox ******************/ - /**** md5 signature: 7148a9fa3dfaccda890cea457298eb25 ****/ + /****** Bnd_OBB::IsAABox ******/ + /****** md5 signature: 7148a9fa3dfaccda890cea457298eb25 ******/ %feature("compactdefaultargs") IsAABox; %feature("autodoc", "Return ------- @@ -3502,8 +3502,8 @@ Returns true if the box is axes aligned. ") IsAABox; Standard_Boolean IsAABox(); - /****************** IsCompletelyInside ******************/ - /**** md5 signature: 148285a41cd36b32b1b047410e1cb231 ****/ + /****** Bnd_OBB::IsCompletelyInside ******/ + /****** md5 signature: 148285a41cd36b32b1b047410e1cb231 ******/ %feature("compactdefaultargs") IsCompletelyInside; %feature("autodoc", " Parameters @@ -3520,8 +3520,8 @@ Check if the theother is completely inside *this. ") IsCompletelyInside; Standard_Boolean IsCompletelyInside(const Bnd_OBB & theOther); - /****************** IsOut ******************/ - /**** md5 signature: 3095c5adc40292ad8ea01e1ff6f5e59c ****/ + /****** Bnd_OBB::IsOut ******/ + /****** md5 signature: 3095c5adc40292ad8ea01e1ff6f5e59c ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -3538,8 +3538,8 @@ Check if the box do not interfere the other box. ") IsOut; Standard_Boolean IsOut(const Bnd_OBB & theOther); - /****************** IsOut ******************/ - /**** md5 signature: 228da6a39bbd69e9e6af11076e8f64ec ****/ + /****** Bnd_OBB::IsOut ******/ + /****** md5 signature: 228da6a39bbd69e9e6af11076e8f64ec ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -3556,8 +3556,8 @@ Check if the point is inside of . ") IsOut; Standard_Boolean IsOut(const gp_Pnt & theP); - /****************** IsVoid ******************/ - /**** md5 signature: 9aa2fb0e94327ea2b13fa6dbf2b30845 ****/ + /****** Bnd_OBB::IsVoid ******/ + /****** md5 signature: 9aa2fb0e94327ea2b13fa6dbf2b30845 ******/ %feature("compactdefaultargs") IsVoid; %feature("autodoc", "Return ------- @@ -3569,8 +3569,8 @@ Checks if the box is empty. ") IsVoid; Standard_Boolean IsVoid(); - /****************** Position ******************/ - /**** md5 signature: abac85ad2868eb73ea9b953e87e8f5a6 ****/ + /****** Bnd_OBB::Position ******/ + /****** md5 signature: abac85ad2868eb73ea9b953e87e8f5a6 ******/ %feature("compactdefaultargs") Position; %feature("autodoc", "Return ------- @@ -3582,8 +3582,8 @@ Returns the local coordinates system of this oriented box. so that applying it t ") Position; gp_Ax3 Position(); - /****************** ReBuild ******************/ - /**** md5 signature: acf5bcc5aed4bfb9e587af3a3f44a66c ****/ + /****** Bnd_OBB::ReBuild ******/ + /****** md5 signature: acf5bcc5aed4bfb9e587af3a3f44a66c ******/ %feature("compactdefaultargs") ReBuild; %feature("autodoc", " Parameters @@ -3602,8 +3602,8 @@ Creates new obb covering every point in thelistofpoints. tolerance of every such ") ReBuild; void ReBuild(const TColgp_Array1OfPnt & theListOfPoints, const TColStd_Array1OfReal * theListOfTolerances = 0, const Standard_Boolean theIsOptimal = Standard_False); - /****************** SetAABox ******************/ - /**** md5 signature: 5682f586345a83106e4cd6132b55253e ****/ + /****** Bnd_OBB::SetAABox ******/ + /****** md5 signature: 5682f586345a83106e4cd6132b55253e ******/ %feature("compactdefaultargs") SetAABox; %feature("autodoc", " Parameters @@ -3620,8 +3620,8 @@ Sets the flag for axes aligned box. ") SetAABox; void SetAABox(const Standard_Boolean & theFlag); - /****************** SetCenter ******************/ - /**** md5 signature: ecf3b6f0e545b80cc6040218013c7da9 ****/ + /****** Bnd_OBB::SetCenter ******/ + /****** md5 signature: ecf3b6f0e545b80cc6040218013c7da9 ******/ %feature("compactdefaultargs") SetCenter; %feature("autodoc", " Parameters @@ -3638,8 +3638,8 @@ Sets the center of obb. ") SetCenter; void SetCenter(const gp_Pnt & theCenter); - /****************** SetVoid ******************/ - /**** md5 signature: 4e44fd52f6a76368c77b381fe1482a21 ****/ + /****** Bnd_OBB::SetVoid ******/ + /****** md5 signature: 4e44fd52f6a76368c77b381fe1482a21 ******/ %feature("compactdefaultargs") SetVoid; %feature("autodoc", "Return ------- @@ -3651,8 +3651,8 @@ Clears this box. ") SetVoid; void SetVoid(); - /****************** SetXComponent ******************/ - /**** md5 signature: 3fd434ed4f088b8cf0c305d42d7f8a32 ****/ + /****** Bnd_OBB::SetXComponent ******/ + /****** md5 signature: 3fd434ed4f088b8cf0c305d42d7f8a32 ******/ %feature("compactdefaultargs") SetXComponent; %feature("autodoc", " Parameters @@ -3670,8 +3670,8 @@ Sets the x component of obb - direction and size. ") SetXComponent; void SetXComponent(const gp_Dir & theXDirection, const Standard_Real theHXSize); - /****************** SetYComponent ******************/ - /**** md5 signature: 1d3f648489c5c7522cfa155c34eb06c8 ****/ + /****** Bnd_OBB::SetYComponent ******/ + /****** md5 signature: 1d3f648489c5c7522cfa155c34eb06c8 ******/ %feature("compactdefaultargs") SetYComponent; %feature("autodoc", " Parameters @@ -3689,8 +3689,8 @@ Sets the y component of obb - direction and size. ") SetYComponent; void SetYComponent(const gp_Dir & theYDirection, const Standard_Real theHYSize); - /****************** SetZComponent ******************/ - /**** md5 signature: 066b299320bec5e6edce21a4bec1a6dd ****/ + /****** Bnd_OBB::SetZComponent ******/ + /****** md5 signature: 066b299320bec5e6edce21a4bec1a6dd ******/ %feature("compactdefaultargs") SetZComponent; %feature("autodoc", " Parameters @@ -3708,8 +3708,8 @@ Sets the z component of obb - direction and size. ") SetZComponent; void SetZComponent(const gp_Dir & theZDirection, const Standard_Real theHZSize); - /****************** SquareExtent ******************/ - /**** md5 signature: 25897f4ea5ade71bb993b0f1c6520c54 ****/ + /****** Bnd_OBB::SquareExtent ******/ + /****** md5 signature: 25897f4ea5ade71bb993b0f1c6520c54 ******/ %feature("compactdefaultargs") SquareExtent; %feature("autodoc", "Return ------- @@ -3721,8 +3721,8 @@ Returns square diagonal of this box. ") SquareExtent; Standard_Real SquareExtent(); - /****************** XDirection ******************/ - /**** md5 signature: 0a83cc2971cb7167c60ad6b3d7dca376 ****/ + /****** Bnd_OBB::XDirection ******/ + /****** md5 signature: 0a83cc2971cb7167c60ad6b3d7dca376 ******/ %feature("compactdefaultargs") XDirection; %feature("autodoc", "Return ------- @@ -3734,8 +3734,8 @@ Returns the x direction of obb. ") XDirection; const gp_XYZ XDirection(); - /****************** XHSize ******************/ - /**** md5 signature: 526802efb4402c85f127c7018b567c47 ****/ + /****** Bnd_OBB::XHSize ******/ + /****** md5 signature: 526802efb4402c85f127c7018b567c47 ******/ %feature("compactdefaultargs") XHSize; %feature("autodoc", "Return ------- @@ -3747,8 +3747,8 @@ Returns the x dimension of obb. ") XHSize; Standard_Real XHSize(); - /****************** YDirection ******************/ - /**** md5 signature: 744e806c5058127dad2ce76fc00590ec ****/ + /****** Bnd_OBB::YDirection ******/ + /****** md5 signature: 744e806c5058127dad2ce76fc00590ec ******/ %feature("compactdefaultargs") YDirection; %feature("autodoc", "Return ------- @@ -3760,8 +3760,8 @@ Returns the y direction of obb. ") YDirection; const gp_XYZ YDirection(); - /****************** YHSize ******************/ - /**** md5 signature: 6d522f889ae8adf72911e2195e043099 ****/ + /****** Bnd_OBB::YHSize ******/ + /****** md5 signature: 6d522f889ae8adf72911e2195e043099 ******/ %feature("compactdefaultargs") YHSize; %feature("autodoc", "Return ------- @@ -3773,8 +3773,8 @@ Returns the y dimension of obb. ") YHSize; Standard_Real YHSize(); - /****************** ZDirection ******************/ - /**** md5 signature: 27b712f9ed3424a7a71c33e6948ec3cc ****/ + /****** Bnd_OBB::ZDirection ******/ + /****** md5 signature: 27b712f9ed3424a7a71c33e6948ec3cc ******/ %feature("compactdefaultargs") ZDirection; %feature("autodoc", "Return ------- @@ -3786,8 +3786,8 @@ Returns the z direction of obb. ") ZDirection; const gp_XYZ ZDirection(); - /****************** ZHSize ******************/ - /**** md5 signature: 5638a8c206b8e411b11abbef19373825 ****/ + /****** Bnd_OBB::ZHSize ******/ + /****** md5 signature: 5638a8c206b8e411b11abbef19373825 ******/ %feature("compactdefaultargs") ZHSize; %feature("autodoc", "Return ------- @@ -3831,8 +3831,8 @@ Returns the z dimension of obb. ******************/ class Bnd_Range { public: - /****************** Bnd_Range ******************/ - /**** md5 signature: c4e1ef542ad0477e9971285d75047d7d ****/ + /****** Bnd_Range::Bnd_Range ******/ + /****** md5 signature: c4e1ef542ad0477e9971285d75047d7d ******/ %feature("compactdefaultargs") Bnd_Range; %feature("autodoc", "Return ------- @@ -3844,8 +3844,8 @@ Default constructor. creates void range. ") Bnd_Range; Bnd_Range(); - /****************** Bnd_Range ******************/ - /**** md5 signature: 39d4d1bfbab659fc681a5eaf9d4bcdd7 ****/ + /****** Bnd_Range::Bnd_Range ******/ + /****** md5 signature: 39d4d1bfbab659fc681a5eaf9d4bcdd7 ******/ %feature("compactdefaultargs") Bnd_Range; %feature("autodoc", " Parameters @@ -3863,8 +3863,8 @@ Constructor. never creates void range. ") Bnd_Range; Bnd_Range(const Standard_Real theMin, const Standard_Real theMax); - /****************** Add ******************/ - /**** md5 signature: b9e6176b78191d36c23b46360c711cd9 ****/ + /****** Bnd_Range::Add ******/ + /****** md5 signature: b9e6176b78191d36c23b46360c711cd9 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -3881,8 +3881,8 @@ Extends to include theparameter. ") Add; void Add(const Standard_Real theParameter); - /****************** Add ******************/ - /**** md5 signature: 49550d5c240c310670e3adabff0f2431 ****/ + /****** Bnd_Range::Add ******/ + /****** md5 signature: 49550d5c240c310670e3adabff0f2431 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -3899,8 +3899,8 @@ Extends this range to include both ranges. @sa use method ::union() to check if ") Add; void Add(const Bnd_Range & theRange); - /****************** Common ******************/ - /**** md5 signature: 9f5a37a4e8b0025ffc11bc0d0f8c7cd1 ****/ + /****** Bnd_Range::Common ******/ + /****** md5 signature: 9f5a37a4e8b0025ffc11bc0d0f8c7cd1 ******/ %feature("compactdefaultargs") Common; %feature("autodoc", " Parameters @@ -3917,8 +3917,8 @@ Replaces with common-part of and theother. ") Common; void Common(const Bnd_Range & theOther); - /****************** Delta ******************/ - /**** md5 signature: e52c84a425b733662cba593f9fa45ed5 ****/ + /****** Bnd_Range::Delta ******/ + /****** md5 signature: e52c84a425b733662cba593f9fa45ed5 ******/ %feature("compactdefaultargs") Delta; %feature("autodoc", "Return ------- @@ -3951,8 +3951,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** Enlarge ******************/ - /**** md5 signature: 2c37569c59dcd99db9a5ddf54944897c ****/ + /****** Bnd_Range::Enlarge ******/ + /****** md5 signature: 2c37569c59dcd99db9a5ddf54944897c ******/ %feature("compactdefaultargs") Enlarge; %feature("autodoc", " Parameters @@ -3969,8 +3969,8 @@ Extends this to the given value (in both side). ") Enlarge; void Enlarge(const Standard_Real theDelta); - /****************** GetBounds ******************/ - /**** md5 signature: aa339ecf3a64a71836ac94404be96f14 ****/ + /****** Bnd_Range::GetBounds ******/ + /****** md5 signature: aa339ecf3a64a71836ac94404be96f14 ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -3987,8 +3987,8 @@ Obtain first and last boundary of . if is void the method returns f ") GetBounds; Standard_Boolean GetBounds(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** GetIntermediatePoint ******************/ - /**** md5 signature: c6225a019c036447a5a4ba58a34915ea ****/ + /****** Bnd_Range::GetIntermediatePoint ******/ + /****** md5 signature: c6225a019c036447a5a4ba58a34915ea ******/ %feature("compactdefaultargs") GetIntermediatePoint; %feature("autodoc", " Parameters @@ -4005,8 +4005,8 @@ Obtain theparameter satisfied to the equation (theparameter-min)/(max-min) == th ") GetIntermediatePoint; Standard_Boolean GetIntermediatePoint(const Standard_Real theLambda, Standard_Real &OutValue); - /****************** GetMax ******************/ - /**** md5 signature: 5d8b155ad152e8e5b0e41b224ac467a0 ****/ + /****** Bnd_Range::GetMax ******/ + /****** md5 signature: 5d8b155ad152e8e5b0e41b224ac467a0 ******/ %feature("compactdefaultargs") GetMax; %feature("autodoc", " Parameters @@ -4022,8 +4022,8 @@ Obtain max boundary of . if is void the method returns false. ") GetMax; Standard_Boolean GetMax(Standard_Real &OutValue); - /****************** GetMin ******************/ - /**** md5 signature: 074bd660b5e6316ea49fb8983bf41670 ****/ + /****** Bnd_Range::GetMin ******/ + /****** md5 signature: 074bd660b5e6316ea49fb8983bf41670 ******/ %feature("compactdefaultargs") GetMin; %feature("autodoc", " Parameters @@ -4039,8 +4039,8 @@ Obtain min boundary of . if is void the method returns false. ") GetMin; Standard_Boolean GetMin(Standard_Real &OutValue); - /****************** IsIntersected ******************/ - /**** md5 signature: 123db05445d1a166445329a30c97e68b ****/ + /****** Bnd_Range::IsIntersected ******/ + /****** md5 signature: 123db05445d1a166445329a30c97e68b ******/ %feature("compactdefaultargs") IsIntersected; %feature("autodoc", " Parameters @@ -4058,8 +4058,8 @@ Checks if intersects values like theval+k*theperiod, where k is an intege ") IsIntersected; Standard_Integer IsIntersected(const Standard_Real theVal, const Standard_Real thePeriod = 0.0); - /****************** IsOut ******************/ - /**** md5 signature: 92f904495367c13bf088bf6ede0d150a ****/ + /****** Bnd_Range::IsOut ******/ + /****** md5 signature: 92f904495367c13bf088bf6ede0d150a ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -4076,8 +4076,8 @@ Returns true if the value is out of this range. ") IsOut; Standard_Boolean IsOut(Standard_Real theValue); - /****************** IsOut ******************/ - /**** md5 signature: a06de79ff8a89a245c86f2e37b66f2ce ****/ + /****** Bnd_Range::IsOut ******/ + /****** md5 signature: a06de79ff8a89a245c86f2e37b66f2ce ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -4094,8 +4094,8 @@ Returns true if the given range is out of this range. ") IsOut; Standard_Boolean IsOut(const Bnd_Range & theRange); - /****************** IsVoid ******************/ - /**** md5 signature: 9aa2fb0e94327ea2b13fa6dbf2b30845 ****/ + /****** Bnd_Range::IsVoid ******/ + /****** md5 signature: 9aa2fb0e94327ea2b13fa6dbf2b30845 ******/ %feature("compactdefaultargs") IsVoid; %feature("autodoc", "Return ------- @@ -4107,8 +4107,8 @@ Is initialized. ") IsVoid; Standard_Boolean IsVoid(); - /****************** SetVoid ******************/ - /**** md5 signature: 4e44fd52f6a76368c77b381fe1482a21 ****/ + /****** Bnd_Range::SetVoid ******/ + /****** md5 signature: 4e44fd52f6a76368c77b381fe1482a21 ******/ %feature("compactdefaultargs") SetVoid; %feature("autodoc", "Return ------- @@ -4120,8 +4120,8 @@ Initializes by default parameters. makes void. ") SetVoid; void SetVoid(); - /****************** Shift ******************/ - /**** md5 signature: ed2755c188238cd9b289703de65e61c2 ****/ + /****** Bnd_Range::Shift ******/ + /****** md5 signature: ed2755c188238cd9b289703de65e61c2 ******/ %feature("compactdefaultargs") Shift; %feature("autodoc", " Parameters @@ -4138,8 +4138,8 @@ Shifts <*this> by theval. ") Shift; void Shift(const Standard_Real theVal); - /****************** Shifted ******************/ - /**** md5 signature: ec2717e15f9fbc7fbbdfc0a45ff5d722 ****/ + /****** Bnd_Range::Shifted ******/ + /****** md5 signature: ec2717e15f9fbc7fbbdfc0a45ff5d722 ******/ %feature("compactdefaultargs") Shifted; %feature("autodoc", " Parameters @@ -4156,8 +4156,8 @@ Returns the copy of <*this> shifted by theval. ") Shifted; Bnd_Range Shifted(const Standard_Real theVal); - /****************** Split ******************/ - /**** md5 signature: 0590e3e907e57ad90c413cd74383099a ****/ + /****** Bnd_Range::Split ******/ + /****** md5 signature: 0590e3e907e57ad90c413cd74383099a ******/ %feature("compactdefaultargs") Split; %feature("autodoc", " Parameters @@ -4176,8 +4176,8 @@ Splits to several sub-ranges by theval value (e.g. range [3, 15] will be ") Split; void Split(const Standard_Real theVal, NCollection_List & theList, const Standard_Real thePeriod = 0.0); - /****************** TrimFrom ******************/ - /**** md5 signature: 5c6dae4ea6e830ab5b0c80e8f5a7f485 ****/ + /****** Bnd_Range::TrimFrom ******/ + /****** md5 signature: 5c6dae4ea6e830ab5b0c80e8f5a7f485 ******/ %feature("compactdefaultargs") TrimFrom; %feature("autodoc", " Parameters @@ -4194,8 +4194,8 @@ Trims the first value in range by the given lower limit. marks range as void if ") TrimFrom; void TrimFrom(const Standard_Real theValLower); - /****************** TrimTo ******************/ - /**** md5 signature: aa2a091d624f5f01b4647b1374ab8df0 ****/ + /****** Bnd_Range::TrimTo ******/ + /****** md5 signature: aa2a091d624f5f01b4647b1374ab8df0 ******/ %feature("compactdefaultargs") TrimTo; %feature("autodoc", " Parameters @@ -4212,8 +4212,8 @@ Trim the last value in range by the given upper limit. marks range as void if th ") TrimTo; void TrimTo(const Standard_Real theValUpper); - /****************** Union ******************/ - /**** md5 signature: a12c3e67aa639d72862c6a3a201b7784 ****/ + /****** Bnd_Range::Union ******/ + /****** md5 signature: a12c3e67aa639d72862c6a3a201b7784 ******/ %feature("compactdefaultargs") Union; %feature("autodoc", " Parameters @@ -4276,8 +4276,8 @@ def __eq__(self, right): *******************/ class Bnd_Sphere { public: - /****************** Bnd_Sphere ******************/ - /**** md5 signature: c7419981813f88f5869f6cf8e039de21 ****/ + /****** Bnd_Sphere::Bnd_Sphere ******/ + /****** md5 signature: c7419981813f88f5869f6cf8e039de21 ******/ %feature("compactdefaultargs") Bnd_Sphere; %feature("autodoc", "Return ------- @@ -4289,8 +4289,8 @@ Empty constructor. ") Bnd_Sphere; Bnd_Sphere(); - /****************** Bnd_Sphere ******************/ - /**** md5 signature: c3f8a006c1c390e8f88e5d3c045ceb48 ****/ + /****** Bnd_Sphere::Bnd_Sphere ******/ + /****** md5 signature: c3f8a006c1c390e8f88e5d3c045ceb48 ******/ %feature("compactdefaultargs") Bnd_Sphere; %feature("autodoc", " Parameters @@ -4310,8 +4310,8 @@ Constructor of a definite sphere. ") Bnd_Sphere; Bnd_Sphere(const gp_XYZ & theCntr, const Standard_Real theRad, const Standard_Integer theU, const Standard_Integer theV); - /****************** Add ******************/ - /**** md5 signature: e63556631cbf2ba437d3318f36771c8b ****/ + /****** Bnd_Sphere::Add ******/ + /****** md5 signature: e63556631cbf2ba437d3318f36771c8b ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -4328,8 +4328,8 @@ No available documentation. ") Add; void Add(const Bnd_Sphere & theOther); - /****************** Center ******************/ - /**** md5 signature: c0f204842bb3fee8d6fd43ddb0e66ea1 ****/ + /****** Bnd_Sphere::Center ******/ + /****** md5 signature: c0f204842bb3fee8d6fd43ddb0e66ea1 ******/ %feature("compactdefaultargs") Center; %feature("autodoc", "Return ------- @@ -4341,8 +4341,8 @@ Returns center of sphere object. ") Center; const gp_XYZ Center(); - /****************** Distance ******************/ - /**** md5 signature: a56aeb5272160f8dff3400c26d338428 ****/ + /****** Bnd_Sphere::Distance ******/ + /****** md5 signature: a56aeb5272160f8dff3400c26d338428 ******/ %feature("compactdefaultargs") Distance; %feature("autodoc", " Parameters @@ -4359,8 +4359,8 @@ No available documentation. ") Distance; Standard_Real Distance(const gp_XYZ & theNode); - /****************** Distances ******************/ - /**** md5 signature: 50de2161c1d914223675c67632adce8e ****/ + /****** Bnd_Sphere::Distances ******/ + /****** md5 signature: 50de2161c1d914223675c67632adce8e ******/ %feature("compactdefaultargs") Distances; %feature("autodoc", " Parameters @@ -4378,8 +4378,8 @@ Calculate and return minimal and maximal distance to sphere. note: this function ") Distances; void Distances(const gp_XYZ & theXYZ, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** IsOut ******************/ - /**** md5 signature: 58212268d92d4726dde0412ccb4e0901 ****/ + /****** Bnd_Sphere::IsOut ******/ + /****** md5 signature: 58212268d92d4726dde0412ccb4e0901 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -4396,8 +4396,8 @@ No available documentation. ") IsOut; Standard_Boolean IsOut(const Bnd_Sphere & theOther); - /****************** IsOut ******************/ - /**** md5 signature: 0960ab8022e734d37aad310b0486e970 ****/ + /****** Bnd_Sphere::IsOut ******/ + /****** md5 signature: 0960ab8022e734d37aad310b0486e970 ******/ %feature("compactdefaultargs") IsOut; %feature("autodoc", " Parameters @@ -4414,8 +4414,8 @@ No available documentation. ") IsOut; Standard_Boolean IsOut(const gp_XYZ & thePnt, Standard_Real &OutValue); - /****************** IsValid ******************/ - /**** md5 signature: 2809e700423e4fe6ecd395953f3a2406 ****/ + /****** Bnd_Sphere::IsValid ******/ + /****** md5 signature: 2809e700423e4fe6ecd395953f3a2406 ******/ %feature("compactdefaultargs") IsValid; %feature("autodoc", "Return ------- @@ -4427,8 +4427,8 @@ Returns validity status, indicating that this sphere corresponds to a real entit ") IsValid; Standard_Boolean IsValid(); - /****************** Project ******************/ - /**** md5 signature: afce8f38342e2faa636831f45756a1f8 ****/ + /****** Bnd_Sphere::Project ******/ + /****** md5 signature: afce8f38342e2faa636831f45756a1f8 ******/ %feature("compactdefaultargs") Project; %feature("autodoc", " Parameters @@ -4447,8 +4447,8 @@ Projects a point on entity. returns true if success. ") Project; Standard_Boolean Project(const gp_XYZ & theNode, gp_XYZ & theProjNode, Standard_Real &OutValue, Standard_Boolean &OutValue); - /****************** Radius ******************/ - /**** md5 signature: 506a8dc1140a54bd4146c24bb5357fbf ****/ + /****** Bnd_Sphere::Radius ******/ + /****** md5 signature: 506a8dc1140a54bd4146c24bb5357fbf ******/ %feature("compactdefaultargs") Radius; %feature("autodoc", "Return ------- @@ -4460,8 +4460,8 @@ Returns the radius value. ") Radius; Standard_Real Radius(); - /****************** SetValid ******************/ - /**** md5 signature: 027a3b33b6159b61ed6210ad45f0f977 ****/ + /****** Bnd_Sphere::SetValid ******/ + /****** md5 signature: 027a3b33b6159b61ed6210ad45f0f977 ******/ %feature("compactdefaultargs") SetValid; %feature("autodoc", " Parameters @@ -4478,8 +4478,8 @@ No available documentation. ") SetValid; void SetValid(const Standard_Boolean isValid); - /****************** SquareDistance ******************/ - /**** md5 signature: 44a8f70b9596aee83a101854ca831bdd ****/ + /****** Bnd_Sphere::SquareDistance ******/ + /****** md5 signature: 44a8f70b9596aee83a101854ca831bdd ******/ %feature("compactdefaultargs") SquareDistance; %feature("autodoc", " Parameters @@ -4496,8 +4496,8 @@ No available documentation. ") SquareDistance; Standard_Real SquareDistance(const gp_XYZ & theNode); - /****************** SquareDistances ******************/ - /**** md5 signature: 0115354ec7c961d10a14dc6ca650e8d9 ****/ + /****** Bnd_Sphere::SquareDistances ******/ + /****** md5 signature: 0115354ec7c961d10a14dc6ca650e8d9 ******/ %feature("compactdefaultargs") SquareDistances; %feature("autodoc", " Parameters @@ -4515,8 +4515,8 @@ Calculate and return minimal and maximal distance to sphere. note: this function ") SquareDistances; void SquareDistances(const gp_XYZ & theXYZ, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** SquareExtent ******************/ - /**** md5 signature: f26f4f9c0289ab73c82a48183db937a6 ****/ + /****** Bnd_Sphere::SquareExtent ******/ + /****** md5 signature: f26f4f9c0289ab73c82a48183db937a6 ******/ %feature("compactdefaultargs") SquareExtent; %feature("autodoc", "Return ------- @@ -4528,8 +4528,8 @@ No available documentation. ") SquareExtent; Standard_Real SquareExtent(); - /****************** U ******************/ - /**** md5 signature: 4386b8f210f0e77f0b54d3c67203a6aa ****/ + /****** Bnd_Sphere::U ******/ + /****** md5 signature: 4386b8f210f0e77f0b54d3c67203a6aa ******/ %feature("compactdefaultargs") U; %feature("autodoc", "Return ------- @@ -4541,8 +4541,8 @@ Returns the u parameter on shape. ") U; Standard_Integer U(); - /****************** V ******************/ - /**** md5 signature: ec40bf56ed7e6d7231afb79a2fb7ca46 ****/ + /****** Bnd_Sphere::V ******/ + /****** md5 signature: ec40bf56ed7e6d7231afb79a2fb7ca46 ******/ %feature("compactdefaultargs") V; %feature("autodoc", "Return ------- @@ -4586,8 +4586,8 @@ Returns the v parameter on shape. ******************/ class Bnd_Tools { public: - /****************** Bnd2BVH ******************/ - /**** md5 signature: cb874faf532c5f417d96e7f24657756b ****/ + /****** Bnd_Tools::Bnd2BVH ******/ + /****** md5 signature: cb874faf532c5f417d96e7f24657756b ******/ %feature("compactdefaultargs") Bnd2BVH; %feature("autodoc", " Parameters @@ -4604,8 +4604,8 @@ Converts the given bnd_box2d to bvh_box. ") Bnd2BVH; static BVH_Box Bnd2BVH(const Bnd_Box2d & theBox); - /****************** Bnd2BVH ******************/ - /**** md5 signature: 91eae1d8889c489de53fa29abb792a4c ****/ + /****** Bnd_Tools::Bnd2BVH ******/ + /****** md5 signature: 91eae1d8889c489de53fa29abb792a4c ******/ %feature("compactdefaultargs") Bnd2BVH; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/BndLib.i b/src/SWIG_files/wrapper/BndLib.i index f12caad13..35fa0c480 100644 --- a/src/SWIG_files/wrapper/BndLib.i +++ b/src/SWIG_files/wrapper/BndLib.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define BNDLIBDOCSTRING "BndLib module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_bndlib.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_bndlib.html" %enddef %module (package="OCC.Core", docstring=BNDLIBDOCSTRING) BndLib @@ -92,8 +92,8 @@ from OCC.Core.Exception import * %rename(bndlib) BndLib; class BndLib { public: - /****************** Add ******************/ - /**** md5 signature: 9e863879ef8ae6ec63335c0c92f20f7b ****/ + /****** BndLib::Add ******/ + /****** md5 signature: 9e863879ef8ae6ec63335c0c92f20f7b ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -114,8 +114,8 @@ Bounding box for a surface trimmed or not adds the segment of the line l limited ") Add; static void Add(const gp_Lin & L, const Standard_Real P1, const Standard_Real P2, const Standard_Real Tol, Bnd_Box & B); - /****************** Add ******************/ - /**** md5 signature: 23242c6543bab1a14b6154ff3697b979 ****/ + /****** BndLib::Add ******/ + /****** md5 signature: 23242c6543bab1a14b6154ff3697b979 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -136,8 +136,8 @@ No available documentation. ") Add; static void Add(const gp_Lin2d & L, const Standard_Real P1, const Standard_Real P2, const Standard_Real Tol, Bnd_Box2d & B); - /****************** Add ******************/ - /**** md5 signature: 753571845c48cb9251f86d609d2a89ca ****/ + /****** BndLib::Add ******/ + /****** md5 signature: 753571845c48cb9251f86d609d2a89ca ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -156,8 +156,8 @@ No available documentation. ") Add; static void Add(const gp_Circ & C, const Standard_Real Tol, Bnd_Box & B); - /****************** Add ******************/ - /**** md5 signature: 1efdca2670db70fa6a2871b88bab74b4 ****/ + /****** BndLib::Add ******/ + /****** md5 signature: 1efdca2670db70fa6a2871b88bab74b4 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -178,8 +178,8 @@ P2-p1 can be in [0,2*pi]. ") Add; static void Add(const gp_Circ & C, const Standard_Real P1, const Standard_Real P2, const Standard_Real Tol, Bnd_Box & B); - /****************** Add ******************/ - /**** md5 signature: 8837ea6283b5c8754ea403c115415767 ****/ + /****** BndLib::Add ******/ + /****** md5 signature: 8837ea6283b5c8754ea403c115415767 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -198,8 +198,8 @@ No available documentation. ") Add; static void Add(const gp_Circ2d & C, const Standard_Real Tol, Bnd_Box2d & B); - /****************** Add ******************/ - /**** md5 signature: 6db3619ed210691eb9ab660e55d2db14 ****/ + /****** BndLib::Add ******/ + /****** md5 signature: 6db3619ed210691eb9ab660e55d2db14 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -220,8 +220,8 @@ Adds the circle c, or the arc of the circle c limited by the two parameter value ") Add; static void Add(const gp_Circ2d & C, const Standard_Real P1, const Standard_Real P2, const Standard_Real Tol, Bnd_Box2d & B); - /****************** Add ******************/ - /**** md5 signature: cb7aaeb4b7002b79e968d392d8e00c7d ****/ + /****** BndLib::Add ******/ + /****** md5 signature: cb7aaeb4b7002b79e968d392d8e00c7d ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -240,8 +240,8 @@ No available documentation. ") Add; static void Add(const gp_Elips & C, const Standard_Real Tol, Bnd_Box & B); - /****************** Add ******************/ - /**** md5 signature: bc333447be55ac79ebc2a052fb825ec5 ****/ + /****** BndLib::Add ******/ + /****** md5 signature: bc333447be55ac79ebc2a052fb825ec5 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -262,8 +262,8 @@ P2-p1 can be in [0,2*pi]. ") Add; static void Add(const gp_Elips & C, const Standard_Real P1, const Standard_Real P2, const Standard_Real Tol, Bnd_Box & B); - /****************** Add ******************/ - /**** md5 signature: d6fcbe939ee0e34ebf1192f8621954bf ****/ + /****** BndLib::Add ******/ + /****** md5 signature: d6fcbe939ee0e34ebf1192f8621954bf ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -282,8 +282,8 @@ No available documentation. ") Add; static void Add(const gp_Elips2d & C, const Standard_Real Tol, Bnd_Box2d & B); - /****************** Add ******************/ - /**** md5 signature: f804f0a213c11c017f412d35ab696701 ****/ + /****** BndLib::Add ******/ + /****** md5 signature: f804f0a213c11c017f412d35ab696701 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -304,8 +304,8 @@ Adds the ellipse e, or the arc of the ellipse e limited by the two parameter val ") Add; static void Add(const gp_Elips2d & C, const Standard_Real P1, const Standard_Real P2, const Standard_Real Tol, Bnd_Box2d & B); - /****************** Add ******************/ - /**** md5 signature: c9a99ceb4a019c07e9c40c77ed28e6c0 ****/ + /****** BndLib::Add ******/ + /****** md5 signature: c9a99ceb4a019c07e9c40c77ed28e6c0 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -326,8 +326,8 @@ No available documentation. ") Add; static void Add(const gp_Parab & P, const Standard_Real P1, const Standard_Real P2, const Standard_Real Tol, Bnd_Box & B); - /****************** Add ******************/ - /**** md5 signature: 3cce29a85482026eb4c7eeea20837f22 ****/ + /****** BndLib::Add ******/ + /****** md5 signature: 3cce29a85482026eb4c7eeea20837f22 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -348,8 +348,8 @@ Adds the arc of the parabola p limited by the two parameter values p1 and p2, to ") Add; static void Add(const gp_Parab2d & P, const Standard_Real P1, const Standard_Real P2, const Standard_Real Tol, Bnd_Box2d & B); - /****************** Add ******************/ - /**** md5 signature: b684391ac023124c9da0c3e41193c63d ****/ + /****** BndLib::Add ******/ + /****** md5 signature: b684391ac023124c9da0c3e41193c63d ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -370,8 +370,8 @@ No available documentation. ") Add; static void Add(const gp_Hypr & H, const Standard_Real P1, const Standard_Real P2, const Standard_Real Tol, Bnd_Box & B); - /****************** Add ******************/ - /**** md5 signature: ec0e75237003f2d23d26e6b7e90d83dc ****/ + /****** BndLib::Add ******/ + /****** md5 signature: ec0e75237003f2d23d26e6b7e90d83dc ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -392,8 +392,8 @@ Adds the arc of the branch of hyperbola h limited by the two parameter values p1 ") Add; static void Add(const gp_Hypr2d & H, const Standard_Real P1, const Standard_Real P2, const Standard_Real Tol, Bnd_Box2d & B); - /****************** Add ******************/ - /**** md5 signature: e0a1ce63019468c2b8490dabeb0bad71 ****/ + /****** BndLib::Add ******/ + /****** md5 signature: e0a1ce63019468c2b8490dabeb0bad71 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -416,8 +416,8 @@ Umax -umin can be in [0,2*pi]. ") Add; static void Add(const gp_Cylinder & S, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax, const Standard_Real Tol, Bnd_Box & B); - /****************** Add ******************/ - /**** md5 signature: aab8c9916d1ceda6b0efb646a4117ebd ****/ + /****** BndLib::Add ******/ + /****** md5 signature: aab8c9916d1ceda6b0efb646a4117ebd ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -438,8 +438,8 @@ Adds to the bounding box b, the patch of the cylinder s limited - in the v param ") Add; static void Add(const gp_Cylinder & S, const Standard_Real VMin, const Standard_Real VMax, const Standard_Real Tol, Bnd_Box & B); - /****************** Add ******************/ - /**** md5 signature: 52017d305dc6b6b7d30a7d1995a06376 ****/ + /****** BndLib::Add ******/ + /****** md5 signature: 52017d305dc6b6b7d30a7d1995a06376 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -462,8 +462,8 @@ Umax-umin can be in [0,2*pi]. ") Add; static void Add(const gp_Cone & S, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax, const Standard_Real Tol, Bnd_Box & B); - /****************** Add ******************/ - /**** md5 signature: e2e2228fc1fdd5275af97416214161a9 ****/ + /****** BndLib::Add ******/ + /****** md5 signature: e2e2228fc1fdd5275af97416214161a9 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -484,8 +484,8 @@ Adds to the bounding box b, the patch of the cone s limited - in the v parametri ") Add; static void Add(const gp_Cone & S, const Standard_Real VMin, const Standard_Real VMax, const Standard_Real Tol, Bnd_Box & B); - /****************** Add ******************/ - /**** md5 signature: 0a24fd63fa0454b7f2f51a783d6507be ****/ + /****** BndLib::Add ******/ + /****** md5 signature: 0a24fd63fa0454b7f2f51a783d6507be ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -504,8 +504,8 @@ No available documentation. ") Add; static void Add(const gp_Sphere & S, const Standard_Real Tol, Bnd_Box & B); - /****************** Add ******************/ - /**** md5 signature: 2fb2aa38bcd30008a28df565d3d4d05c ****/ + /****** BndLib::Add ******/ + /****** md5 signature: 2fb2aa38bcd30008a28df565d3d4d05c ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -528,8 +528,8 @@ Adds to the bounding box b the sphere s, or - the patch of the sphere s, limited ") Add; static void Add(const gp_Sphere & S, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax, const Standard_Real Tol, Bnd_Box & B); - /****************** Add ******************/ - /**** md5 signature: 6fff0fb723f01427006c4572caa954e0 ****/ + /****** BndLib::Add ******/ + /****** md5 signature: 6fff0fb723f01427006c4572caa954e0 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -548,8 +548,8 @@ No available documentation. ") Add; static void Add(const gp_Torus & P, const Standard_Real Tol, Bnd_Box & B); - /****************** Add ******************/ - /**** md5 signature: b9c657fe7b6d0e95c04873218635802b ****/ + /****** BndLib::Add ******/ + /****** md5 signature: b9c657fe7b6d0e95c04873218635802b ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -586,8 +586,8 @@ Adds to the bounding box b - the torus s, or - the patch of the torus s, limited **************************/ class BndLib_Add2dCurve { public: - /****************** Add ******************/ - /**** md5 signature: 24ba478f5e879db98be904c511fd4dd5 ****/ + /****** BndLib_Add2dCurve::Add ******/ + /****** md5 signature: 24ba478f5e879db98be904c511fd4dd5 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -606,8 +606,8 @@ Adds to the bounding box b the curve c b is then enlarged by the tolerance value ") Add; static void Add(const Adaptor2d_Curve2d & C, const Standard_Real Tol, Bnd_Box2d & B); - /****************** Add ******************/ - /**** md5 signature: 7534a60c213292f46585ce5a36173676 ****/ + /****** BndLib_Add2dCurve::Add ******/ + /****** md5 signature: 7534a60c213292f46585ce5a36173676 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -628,8 +628,8 @@ Adds to the bounding box bthe arc of the curve c limited by the two parameter va ") Add; static void Add(const Adaptor2d_Curve2d & C, const Standard_Real U1, const Standard_Real U2, const Standard_Real Tol, Bnd_Box2d & B); - /****************** Add ******************/ - /**** md5 signature: 50b9721fa8ed9d9c41295d649bdd32af ****/ + /****** BndLib_Add2dCurve::Add ******/ + /****** md5 signature: 50b9721fa8ed9d9c41295d649bdd32af ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -648,8 +648,8 @@ Adds to the bounding box b the curve c b is then enlarged by the tolerance value ") Add; static void Add(const opencascade::handle & C, const Standard_Real Tol, Bnd_Box2d & Box); - /****************** Add ******************/ - /**** md5 signature: eedfe68de0380d5f37d16bc918c0d037 ****/ + /****** BndLib_Add2dCurve::Add ******/ + /****** md5 signature: eedfe68de0380d5f37d16bc918c0d037 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -670,8 +670,8 @@ Adds to the bounding box b the part of curve c b is then enlarged by the toleran ") Add; static void Add(const opencascade::handle & C, const Standard_Real U1, const Standard_Real U2, const Standard_Real Tol, Bnd_Box2d & B); - /****************** AddOptimal ******************/ - /**** md5 signature: bd6bfafd3a4edaae34079bdd6693208f ****/ + /****** BndLib_Add2dCurve::AddOptimal ******/ + /****** md5 signature: bd6bfafd3a4edaae34079bdd6693208f ******/ %feature("compactdefaultargs") AddOptimal; %feature("autodoc", " Parameters @@ -706,8 +706,8 @@ Adds to the bounding box b the part of curve c b is then enlarged by the toleran **************************/ class BndLib_Add3dCurve { public: - /****************** Add ******************/ - /**** md5 signature: feeae1972ee1704fc60fe0fe7da1239b ****/ + /****** BndLib_Add3dCurve::Add ******/ + /****** md5 signature: feeae1972ee1704fc60fe0fe7da1239b ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -726,8 +726,8 @@ Adds to the bounding box b the curve c b is then enlarged by the tolerance value ") Add; static void Add(const Adaptor3d_Curve & C, const Standard_Real Tol, Bnd_Box & B); - /****************** Add ******************/ - /**** md5 signature: 47adc866a9340ea705f29d3eda6a5159 ****/ + /****** BndLib_Add3dCurve::Add ******/ + /****** md5 signature: 47adc866a9340ea705f29d3eda6a5159 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -748,8 +748,8 @@ Adds to the bounding box b the curve c the arc of the curve c limited by the two ") Add; static void Add(const Adaptor3d_Curve & C, const Standard_Real U1, const Standard_Real U2, const Standard_Real Tol, Bnd_Box & B); - /****************** AddGenCurv ******************/ - /**** md5 signature: 8eff7d11e8817d862d3149011310b4d0 ****/ + /****** BndLib_Add3dCurve::AddGenCurv ******/ + /****** md5 signature: 8eff7d11e8817d862d3149011310b4d0 ******/ %feature("compactdefaultargs") AddGenCurv; %feature("autodoc", " Parameters @@ -770,8 +770,8 @@ Adds to the bounding box b the curve c using numerical minimization algorithms t ") AddGenCurv; static void AddGenCurv(const Adaptor3d_Curve & C, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real Tol, Bnd_Box & B); - /****************** AddOptimal ******************/ - /**** md5 signature: eb89dbca3787f6245593b68962baf91d ****/ + /****** BndLib_Add3dCurve::AddOptimal ******/ + /****** md5 signature: eb89dbca3787f6245593b68962baf91d ******/ %feature("compactdefaultargs") AddOptimal; %feature("autodoc", " Parameters @@ -790,8 +790,8 @@ Adds to the bounding box b the curve c these methods use more precise algorithms ") AddOptimal; static void AddOptimal(const Adaptor3d_Curve & C, const Standard_Real Tol, Bnd_Box & B); - /****************** AddOptimal ******************/ - /**** md5 signature: 0140fcda0ee2d13032232592e46f42c8 ****/ + /****** BndLib_Add3dCurve::AddOptimal ******/ + /****** md5 signature: 0140fcda0ee2d13032232592e46f42c8 ******/ %feature("compactdefaultargs") AddOptimal; %feature("autodoc", " Parameters @@ -826,8 +826,8 @@ No available documentation. **************************/ class BndLib_AddSurface { public: - /****************** Add ******************/ - /**** md5 signature: 57d43d60c64d1900d9b7cf8d3c4c9d65 ****/ + /****** BndLib_AddSurface::Add ******/ + /****** md5 signature: 57d43d60c64d1900d9b7cf8d3c4c9d65 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -846,8 +846,8 @@ Adds to the bounding box b the surface s b is then enlarged by the tolerance val ") Add; static void Add(const Adaptor3d_Surface & S, const Standard_Real Tol, Bnd_Box & B); - /****************** Add ******************/ - /**** md5 signature: 6eeef39d1ef98304142d45b0bdfeebb3 ****/ + /****** BndLib_AddSurface::Add ******/ + /****** md5 signature: 6eeef39d1ef98304142d45b0bdfeebb3 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -870,8 +870,8 @@ Adds to the bounding box b the surface s the patch of the surface s limited in t ") Add; static void Add(const Adaptor3d_Surface & S, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax, const Standard_Real Tol, Bnd_Box & B); - /****************** AddGenSurf ******************/ - /**** md5 signature: b14f5e9ed365aa271c910dd838bef5ec ****/ + /****** BndLib_AddSurface::AddGenSurf ******/ + /****** md5 signature: b14f5e9ed365aa271c910dd838bef5ec ******/ %feature("compactdefaultargs") AddGenSurf; %feature("autodoc", " Parameters @@ -894,8 +894,8 @@ Adds to the bounding box b the surface s using numerical minimization algorithms ") AddGenSurf; static void AddGenSurf(const Adaptor3d_Surface & S, const Standard_Real UMin, const Standard_Real UMax, const Standard_Real VMin, const Standard_Real VMax, const Standard_Real Tol, Bnd_Box & B); - /****************** AddOptimal ******************/ - /**** md5 signature: 8a4f780b04453b509615616b28d119e2 ****/ + /****** BndLib_AddSurface::AddOptimal ******/ + /****** md5 signature: 8a4f780b04453b509615616b28d119e2 ******/ %feature("compactdefaultargs") AddOptimal; %feature("autodoc", " Parameters @@ -914,8 +914,8 @@ No available documentation. ") AddOptimal; static void AddOptimal(const Adaptor3d_Surface & S, const Standard_Real Tol, Bnd_Box & B); - /****************** AddOptimal ******************/ - /**** md5 signature: e93fe299fd887a5aea45a80df9482141 ****/ + /****** BndLib_AddSurface::AddOptimal ******/ + /****** md5 signature: e93fe299fd887a5aea45a80df9482141 ******/ %feature("compactdefaultargs") AddOptimal; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/CDF.i b/src/SWIG_files/wrapper/CDF.i index 0a37abb64..4f9449b1b 100644 --- a/src/SWIG_files/wrapper/CDF.i +++ b/src/SWIG_files/wrapper/CDF.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define CDFDOCSTRING "CDF module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_cdf.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_cdf.html" %enddef %module (package="OCC.Core", docstring=CDFDOCSTRING) CDF @@ -160,8 +160,8 @@ class CDF_Application : public CDM_Application { public: opencascade::handle myMetaDataDriver; opencascade::handle myDirectory; - /****************** CanClose ******************/ - /**** md5 signature: c6d5b2cf0ce51a973521c5b4c25f2ec1 ****/ + /****** CDF_Application::CanClose ******/ + /****** md5 signature: c6d5b2cf0ce51a973521c5b4c25f2ec1 ******/ %feature("compactdefaultargs") CanClose; %feature("autodoc", " Parameters @@ -178,8 +178,8 @@ No available documentation. ") CanClose; CDM_CanCloseStatus CanClose(const opencascade::handle & aDocument); - /****************** CanRetrieve ******************/ - /**** md5 signature: 0d61ed06c73aeded6f513d70d206870f ****/ + /****** CDF_Application::CanRetrieve ******/ + /****** md5 signature: 0d61ed06c73aeded6f513d70d206870f ******/ %feature("compactdefaultargs") CanRetrieve; %feature("autodoc", " Parameters @@ -198,8 +198,8 @@ No available documentation. ") CanRetrieve; PCDM_ReaderStatus CanRetrieve(TCollection_ExtendedString theFolder, TCollection_ExtendedString theName, const bool theAppendMode); - /****************** CanRetrieve ******************/ - /**** md5 signature: 64f35736d7773166005363b757a7c8ee ****/ + /****** CDF_Application::CanRetrieve ******/ + /****** md5 signature: 64f35736d7773166005363b757a7c8ee ******/ %feature("compactdefaultargs") CanRetrieve; %feature("autodoc", " Parameters @@ -219,8 +219,8 @@ No available documentation. ") CanRetrieve; PCDM_ReaderStatus CanRetrieve(TCollection_ExtendedString theFolder, TCollection_ExtendedString theName, TCollection_ExtendedString theVersion, const bool theAppendMode); - /****************** Close ******************/ - /**** md5 signature: 18e2edbb6413a2dad4b76efdcffb5374 ****/ + /****** CDF_Application::Close ******/ + /****** md5 signature: 18e2edbb6413a2dad4b76efdcffb5374 ******/ %feature("compactdefaultargs") Close; %feature("autodoc", " Parameters @@ -237,8 +237,8 @@ Removes the document of the current session directory and closes the document;. ") Close; void Close(const opencascade::handle & aDocument); - /****************** DefaultFolder ******************/ - /**** md5 signature: dc87db815026b0834c349d2449d986f6 ****/ + /****** CDF_Application::DefaultFolder ******/ + /****** md5 signature: dc87db815026b0834c349d2449d986f6 ******/ %feature("compactdefaultargs") DefaultFolder; %feature("autodoc", "Return ------- @@ -250,8 +250,8 @@ No available documentation. ") DefaultFolder; Standard_ExtString DefaultFolder(); - /****************** Format ******************/ - /**** md5 signature: cd21d8c27cab310899ac9e2c6ebf7f85 ****/ + /****** CDF_Application::Format ******/ + /****** md5 signature: cd21d8c27cab310899ac9e2c6ebf7f85 ******/ %feature("compactdefaultargs") Format; %feature("autodoc", " Parameters @@ -269,8 +269,8 @@ Try to retrieve a format directly in the file or in application resource by usin ") Format; Standard_Boolean Format(TCollection_ExtendedString aFileName, TCollection_ExtendedString & theFormat); - /****************** GetRetrieveStatus ******************/ - /**** md5 signature: 5a9523dbf252a1564feb97c9e6a00909 ****/ + /****** CDF_Application::GetRetrieveStatus ******/ + /****** md5 signature: 5a9523dbf252a1564feb97c9e6a00909 ******/ %feature("compactdefaultargs") GetRetrieveStatus; %feature("autodoc", "Return ------- @@ -282,8 +282,8 @@ Checks status after retrieve. ") GetRetrieveStatus; PCDM_ReaderStatus GetRetrieveStatus(); - /****************** InitDocument ******************/ - /**** md5 signature: 71633d306d5c5cc6ec7824c1818ae992 ****/ + /****** CDF_Application::InitDocument ******/ + /****** md5 signature: 71633d306d5c5cc6ec7824c1818ae992 ******/ %feature("compactdefaultargs") InitDocument; %feature("autodoc", " Parameters @@ -300,8 +300,8 @@ Initialize a document for the applicative session. this virtual function is call ") InitDocument; virtual void InitDocument(const opencascade::handle & theDoc); - /****************** Load ******************/ - /**** md5 signature: 6f28094ffe0ccd3492096f784ee50c07 ****/ + /****** CDF_Application::Load ******/ + /****** md5 signature: 6f28094ffe0ccd3492096f784ee50c07 ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -318,8 +318,8 @@ Plugs an application. //! open is used - for opening a document that has been cr ") Load; static opencascade::handle Load(const Standard_GUID & aGUID); - /****************** MetaDataDriver ******************/ - /**** md5 signature: 65b9cb7e9445542f433cc5ea23630479 ****/ + /****** CDF_Application::MetaDataDriver ******/ + /****** md5 signature: 65b9cb7e9445542f433cc5ea23630479 ******/ %feature("compactdefaultargs") MetaDataDriver; %feature("autodoc", "Return ------- @@ -331,8 +331,8 @@ Returns metadatddriver of this application. ") MetaDataDriver; opencascade::handle MetaDataDriver(); - /****************** NewDocument ******************/ - /**** md5 signature: 8948e39f4c19a050838644ef4dd96de3 ****/ + /****** CDF_Application::NewDocument ******/ + /****** md5 signature: 8948e39f4c19a050838644ef4dd96de3 ******/ %feature("compactdefaultargs") NewDocument; %feature("autodoc", " Parameters @@ -350,8 +350,8 @@ Constructs an new empty document. this document will have the specified format. ") NewDocument; virtual void NewDocument(TCollection_ExtendedString theFormat, opencascade::handle & theDoc); - /****************** Open ******************/ - /**** md5 signature: 5e6498f06bf961c0c0c61cc007aa0a28 ****/ + /****** CDF_Application::Open ******/ + /****** md5 signature: 5e6498f06bf961c0c0c61cc007aa0a28 ******/ %feature("compactdefaultargs") Open; %feature("autodoc", " Parameters @@ -368,8 +368,8 @@ Puts the document in the current session directory and calls the virtual method ") Open; void Open(const opencascade::handle & aDocument); - /****************** Read ******************/ - /**** md5 signature: fed3647299064218aa4c2d8dceec103f ****/ + /****** CDF_Application::Read ******/ + /****** md5 signature: fed3647299064218aa4c2d8dceec103f ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -389,8 +389,8 @@ Reads thedocument from standard seekable stream theistream, the stream should su ") Read; void Read(std::istream & theIStream, opencascade::handle & theDocument, const opencascade::handle & theFilter = opencascade::handle(), const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** ReaderFromFormat ******************/ - /**** md5 signature: aab6344d555db3220a1fcf7db3c7d59e ****/ + /****** CDF_Application::ReaderFromFormat ******/ + /****** md5 signature: aab6344d555db3220a1fcf7db3c7d59e ******/ %feature("compactdefaultargs") ReaderFromFormat; %feature("autodoc", " Parameters @@ -407,8 +407,8 @@ Returns instance of read driver for specified format. //! default implementation ") ReaderFromFormat; virtual opencascade::handle ReaderFromFormat(TCollection_ExtendedString aFormat); - /****************** Retrieve ******************/ - /**** md5 signature: 529a7c29af3c51fd8c94c064e0b3dbcb ****/ + /****** CDF_Application::Retrieve ******/ + /****** md5 signature: 529a7c29af3c51fd8c94c064e0b3dbcb ******/ %feature("compactdefaultargs") Retrieve; %feature("autodoc", " Parameters @@ -429,8 +429,8 @@ This method retrieves a document from the database. if the document references o ") Retrieve; opencascade::handle Retrieve(TCollection_ExtendedString aFolder, TCollection_ExtendedString aName, const Standard_Boolean UseStorageConfiguration = Standard_True, const opencascade::handle & theFilter = opencascade::handle(), const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Retrieve ******************/ - /**** md5 signature: dd78ce93c0b60ff0965f3c7e69833777 ****/ + /****** CDF_Application::Retrieve ******/ + /****** md5 signature: dd78ce93c0b60ff0965f3c7e69833777 ******/ %feature("compactdefaultargs") Retrieve; %feature("autodoc", " Parameters @@ -452,8 +452,8 @@ This method retrieves a document from the database. if the document references o ") Retrieve; opencascade::handle Retrieve(TCollection_ExtendedString aFolder, TCollection_ExtendedString aName, TCollection_ExtendedString aVersion, const Standard_Boolean UseStorageConfiguration = Standard_True, const opencascade::handle & theFilter = opencascade::handle(), const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** SetDefaultFolder ******************/ - /**** md5 signature: b5857edec14e8dcab31bb5ac39a5223a ****/ + /****** CDF_Application::SetDefaultFolder ******/ + /****** md5 signature: b5857edec14e8dcab31bb5ac39a5223a ******/ %feature("compactdefaultargs") SetDefaultFolder; %feature("autodoc", " Parameters @@ -470,8 +470,8 @@ No available documentation. ") SetDefaultFolder; Standard_Boolean SetDefaultFolder(const Standard_ExtString aFolder); - /****************** WriterFromFormat ******************/ - /**** md5 signature: 2039925e39207c83df1666eea6efb175 ****/ + /****** CDF_Application::WriterFromFormat ******/ + /****** md5 signature: 2039925e39207c83df1666eea6efb175 ******/ %feature("compactdefaultargs") WriterFromFormat; %feature("autodoc", " Parameters @@ -504,8 +504,8 @@ Returns instance of storage driver for specified format. //! default implementat **********************/ class CDF_Directory : public Standard_Transient { public: - /****************** CDF_Directory ******************/ - /**** md5 signature: 46be2128bdcbbd3ab4afafabd80860e0 ****/ + /****** CDF_Directory::CDF_Directory ******/ + /****** md5 signature: 46be2128bdcbbd3ab4afafabd80860e0 ******/ %feature("compactdefaultargs") CDF_Directory; %feature("autodoc", "Return ------- @@ -517,8 +517,8 @@ Creates an empty directory. ") CDF_Directory; CDF_Directory(); - /****************** Add ******************/ - /**** md5 signature: b6b784134819ac5d900cf7ccf0994349 ****/ + /****** CDF_Directory::Add ******/ + /****** md5 signature: b6b784134819ac5d900cf7ccf0994349 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -535,8 +535,8 @@ Adds a document into the directory. ") Add; void Add(const opencascade::handle & aDocument); - /****************** Contains ******************/ - /**** md5 signature: e701764a85b62396106114052f5091ce ****/ + /****** CDF_Directory::Contains ******/ + /****** md5 signature: e701764a85b62396106114052f5091ce ******/ %feature("compactdefaultargs") Contains; %feature("autodoc", " Parameters @@ -553,8 +553,8 @@ Returns true if the document adocument is in the directory. ") Contains; Standard_Boolean Contains(const opencascade::handle & aDocument); - /****************** IsEmpty ******************/ - /**** md5 signature: 6ab5e1ad63f93168856ab126dd374b81 ****/ + /****** CDF_Directory::IsEmpty ******/ + /****** md5 signature: 6ab5e1ad63f93168856ab126dd374b81 ******/ %feature("compactdefaultargs") IsEmpty; %feature("autodoc", "Return ------- @@ -566,8 +566,8 @@ Returns true if the directory is empty. ") IsEmpty; Standard_Boolean IsEmpty(); - /****************** Last ******************/ - /**** md5 signature: 315f5b609ccef6e8a0c865d973889a7c ****/ + /****** CDF_Directory::Last ******/ + /****** md5 signature: 315f5b609ccef6e8a0c865d973889a7c ******/ %feature("compactdefaultargs") Last; %feature("autodoc", "Return ------- @@ -579,8 +579,8 @@ Returns the last document (if any) which has been added in the directory. ") Last; opencascade::handle Last(); - /****************** Length ******************/ - /**** md5 signature: 58bd40380acccb2733bfbd37bf3cbb11 ****/ + /****** CDF_Directory::Length ******/ + /****** md5 signature: 58bd40380acccb2733bfbd37bf3cbb11 ******/ %feature("compactdefaultargs") Length; %feature("autodoc", "Return ------- @@ -592,8 +592,8 @@ Returns the number of documents of the directory. ") Length; Standard_Integer Length(); - /****************** Remove ******************/ - /**** md5 signature: 9a20bceb09f550258abc1a5ffcd3575d ****/ + /****** CDF_Directory::Remove ******/ + /****** md5 signature: 9a20bceb09f550258abc1a5ffcd3575d ******/ %feature("compactdefaultargs") Remove; %feature("autodoc", " Parameters @@ -630,8 +630,8 @@ Removes the document. %nodefaultctor CDF_MetaDataDriver; class CDF_MetaDataDriver : public Standard_Transient { public: - /****************** BuildFileName ******************/ - /**** md5 signature: 805bb09da5d1d397a25adbb9a5d24005 ****/ + /****** CDF_MetaDataDriver::BuildFileName ******/ + /****** md5 signature: 805bb09da5d1d397a25adbb9a5d24005 ******/ %feature("compactdefaultargs") BuildFileName; %feature("autodoc", " Parameters @@ -648,8 +648,8 @@ No available documentation. ") BuildFileName; virtual TCollection_ExtendedString BuildFileName(const opencascade::handle & aDocument); - /****************** CreateDependsOn ******************/ - /**** md5 signature: b8890e513eb264013f073c1a6b02e2e2 ****/ + /****** CDF_MetaDataDriver::CreateDependsOn ******/ + /****** md5 signature: b8890e513eb264013f073c1a6b02e2e2 ******/ %feature("compactdefaultargs") CreateDependsOn; %feature("autodoc", " Parameters @@ -667,8 +667,8 @@ Creates a 'depends on' relation between two datas. by default does nothing. ") CreateDependsOn; virtual void CreateDependsOn(const opencascade::handle & aFirstData, const opencascade::handle & aSecondData); - /****************** CreateMetaData ******************/ - /**** md5 signature: 38159ffc0f1a18d77efc3d7a8362b043 ****/ + /****** CDF_MetaDataDriver::CreateMetaData ******/ + /****** md5 signature: 38159ffc0f1a18d77efc3d7a8362b043 ******/ %feature("compactdefaultargs") CreateMetaData; %feature("autodoc", " Parameters @@ -686,8 +686,8 @@ Should create meta-data corresponding to adata and maintaining a meta-link betwe ") CreateMetaData; virtual opencascade::handle CreateMetaData(const opencascade::handle & aDocument, TCollection_ExtendedString aFileName); - /****************** CreateReference ******************/ - /**** md5 signature: ee0ba7d2788f0a828e0d919b0d1b98e9 ****/ + /****** CDF_MetaDataDriver::CreateReference ******/ + /****** md5 signature: ee0ba7d2788f0a828e0d919b0d1b98e9 ******/ %feature("compactdefaultargs") CreateReference; %feature("autodoc", " Parameters @@ -707,8 +707,8 @@ No available documentation. ") CreateReference; virtual void CreateReference(const opencascade::handle & aFrom, const opencascade::handle & aTo, const Standard_Integer aReferenceIdentifier, const Standard_Integer aToDocumentVersion); - /****************** DefaultFolder ******************/ - /**** md5 signature: 8f25b151d43bdae5827f4c1016790f5d ****/ + /****** CDF_MetaDataDriver::DefaultFolder ******/ + /****** md5 signature: 8f25b151d43bdae5827f4c1016790f5d ******/ %feature("compactdefaultargs") DefaultFolder; %feature("autodoc", "Return ------- @@ -720,8 +720,8 @@ No available documentation. ") DefaultFolder; virtual TCollection_ExtendedString DefaultFolder(); - /****************** Find ******************/ - /**** md5 signature: ac1d26274189761830708e2d8787984d ****/ + /****** CDF_MetaDataDriver::Find ******/ + /****** md5 signature: ac1d26274189761830708e2d8787984d ******/ %feature("compactdefaultargs") Find; %feature("autodoc", " Parameters @@ -740,8 +740,8 @@ Should indicate whether meta-data exist in the dbms corresponding to the data. a ") Find; virtual Standard_Boolean Find(TCollection_ExtendedString aFolder, TCollection_ExtendedString aName, TCollection_ExtendedString aVersion); - /****************** Find ******************/ - /**** md5 signature: 3790cd3f2b3362c62018b1d3652970dd ****/ + /****** CDF_MetaDataDriver::Find ******/ + /****** md5 signature: 3790cd3f2b3362c62018b1d3652970dd ******/ %feature("compactdefaultargs") Find; %feature("autodoc", " Parameters @@ -759,8 +759,8 @@ Calls find with an empty version. ") Find; Standard_Boolean Find(TCollection_ExtendedString aFolder, TCollection_ExtendedString aName); - /****************** FindFolder ******************/ - /**** md5 signature: 9a5e2cbe4eefa1eae2149c38651a75a9 ****/ + /****** CDF_MetaDataDriver::FindFolder ******/ + /****** md5 signature: 9a5e2cbe4eefa1eae2149c38651a75a9 ******/ %feature("compactdefaultargs") FindFolder; %feature("autodoc", " Parameters @@ -777,8 +777,8 @@ No available documentation. ") FindFolder; virtual Standard_Boolean FindFolder(TCollection_ExtendedString aFolder); - /****************** HasReadPermission ******************/ - /**** md5 signature: 18f97899c0a5d2e41387449551ecf940 ****/ + /****** CDF_MetaDataDriver::HasReadPermission ******/ + /****** md5 signature: 18f97899c0a5d2e41387449551ecf940 ******/ %feature("compactdefaultargs") HasReadPermission; %feature("autodoc", " Parameters @@ -797,8 +797,8 @@ No available documentation. ") HasReadPermission; virtual Standard_Boolean HasReadPermission(TCollection_ExtendedString aFolder, TCollection_ExtendedString aName, TCollection_ExtendedString aVersion); - /****************** HasVersion ******************/ - /**** md5 signature: 3e209adcc54fe62e2e5697f2ed0d2d8c ****/ + /****** CDF_MetaDataDriver::HasVersion ******/ + /****** md5 signature: 3e209adcc54fe62e2e5697f2ed0d2d8c ******/ %feature("compactdefaultargs") HasVersion; %feature("autodoc", " Parameters @@ -816,8 +816,8 @@ By default return standard_true. ") HasVersion; virtual Standard_Boolean HasVersion(TCollection_ExtendedString aFolder, TCollection_ExtendedString aName); - /****************** HasVersionCapability ******************/ - /**** md5 signature: 0e4f0bbd26688c9b437cf5bee430c353 ****/ + /****** CDF_MetaDataDriver::HasVersionCapability ******/ + /****** md5 signature: 0e4f0bbd26688c9b437cf5bee430c353 ******/ %feature("compactdefaultargs") HasVersionCapability; %feature("autodoc", "Return ------- @@ -829,8 +829,8 @@ Returns true if the metadatadriver can manage different versions of a data. by d ") HasVersionCapability; virtual Standard_Boolean HasVersionCapability(); - /****************** LastVersion ******************/ - /**** md5 signature: 9d9316bfcc062ca6089c234c0ce83791 ****/ + /****** CDF_MetaDataDriver::LastVersion ******/ + /****** md5 signature: 9d9316bfcc062ca6089c234c0ce83791 ******/ %feature("compactdefaultargs") LastVersion; %feature("autodoc", " Parameters @@ -847,8 +847,8 @@ By default returns ametadata should return the metadata stored in the dbms with ") LastVersion; virtual opencascade::handle LastVersion(const opencascade::handle & aMetaData); - /****************** MetaData ******************/ - /**** md5 signature: 4662f97988f934c8a08742039341d0de ****/ + /****** CDF_MetaDataDriver::MetaData ******/ + /****** md5 signature: 4662f97988f934c8a08742039341d0de ******/ %feature("compactdefaultargs") MetaData; %feature("autodoc", " Parameters @@ -867,8 +867,8 @@ Should return the metadata stored in the dbms with the meta-data corresponding t ") MetaData; virtual opencascade::handle MetaData(TCollection_ExtendedString aFolder, TCollection_ExtendedString aName, TCollection_ExtendedString aVersion); - /****************** MetaData ******************/ - /**** md5 signature: d6c67f068a67123fd1d2e0024518d5e4 ****/ + /****** CDF_MetaDataDriver::MetaData ******/ + /****** md5 signature: d6c67f068a67123fd1d2e0024518d5e4 ******/ %feature("compactdefaultargs") MetaData; %feature("autodoc", " Parameters @@ -886,8 +886,8 @@ Calls metadata with an empty version. ") MetaData; opencascade::handle MetaData(TCollection_ExtendedString aFolder, TCollection_ExtendedString aName); - /****************** ReferenceIterator ******************/ - /**** md5 signature: 6d4c044d33dd6f42be200285a2b215e5 ****/ + /****** CDF_MetaDataDriver::ReferenceIterator ******/ + /****** md5 signature: 6d4c044d33dd6f42be200285a2b215e5 ******/ %feature("compactdefaultargs") ReferenceIterator; %feature("autodoc", " Parameters @@ -904,8 +904,8 @@ No available documentation. ") ReferenceIterator; virtual opencascade::handle ReferenceIterator(const opencascade::handle & theMessageDriver); - /****************** SetName ******************/ - /**** md5 signature: 10c6e80103256298f85d47fc462c3021 ****/ + /****** CDF_MetaDataDriver::SetName ******/ + /****** md5 signature: 10c6e80103256298f85d47fc462c3021 ******/ %feature("compactdefaultargs") SetName; %feature("autodoc", " Parameters @@ -940,8 +940,8 @@ This method is useful if the name of an object -- depends on the metadatadriver. %nodefaultctor CDF_MetaDataDriverFactory; class CDF_MetaDataDriverFactory : public Standard_Transient { public: - /****************** Build ******************/ - /**** md5 signature: 00964348e662a6a0ab28dcfcc6c0ef54 ****/ + /****** CDF_MetaDataDriverFactory::Build ******/ + /****** md5 signature: 00964348e662a6a0ab28dcfcc6c0ef54 ******/ %feature("compactdefaultargs") Build; %feature("autodoc", "Return ------- @@ -969,8 +969,8 @@ No available documentation. ******************/ class CDF_Store { public: - /****************** CDF_Store ******************/ - /**** md5 signature: 74a9583ede7295ce2ee9cd44d9a6eb94 ****/ + /****** CDF_Store::CDF_Store ******/ + /****** md5 signature: 74a9583ede7295ce2ee9cd44d9a6eb94 ******/ %feature("compactdefaultargs") CDF_Store; %feature("autodoc", " Parameters @@ -987,8 +987,8 @@ Creates a store list from the document of the current selection. ") CDF_Store; CDF_Store(const opencascade::handle & aDocument); - /****************** AssociatedStatusText ******************/ - /**** md5 signature: 9c2a2cc4635869ea6cbe44120e51d8f9 ****/ + /****** CDF_Store::AssociatedStatusText ******/ + /****** md5 signature: 9c2a2cc4635869ea6cbe44120e51d8f9 ******/ %feature("compactdefaultargs") AssociatedStatusText; %feature("autodoc", "Return ------- @@ -1000,8 +1000,8 @@ No available documentation. ") AssociatedStatusText; Standard_ExtString AssociatedStatusText(); - /****************** Comment ******************/ - /**** md5 signature: 5dfb2f1d86286c98eb50db6b2ec9776a ****/ + /****** CDF_Store::Comment ******/ + /****** md5 signature: 5dfb2f1d86286c98eb50db6b2ec9776a ******/ %feature("compactdefaultargs") Comment; %feature("autodoc", "Return ------- @@ -1013,8 +1013,8 @@ No available documentation. ") Comment; opencascade::handle Comment(); - /****************** CurrentIsConsistent ******************/ - /**** md5 signature: ed98cb46a82669a61995271d69dd9107 ****/ + /****** CDF_Store::CurrentIsConsistent ******/ + /****** md5 signature: ed98cb46a82669a61995271d69dd9107 ******/ %feature("compactdefaultargs") CurrentIsConsistent; %feature("autodoc", "Return ------- @@ -1026,8 +1026,8 @@ No available documentation. ") CurrentIsConsistent; Standard_Boolean CurrentIsConsistent(); - /****************** Description ******************/ - /**** md5 signature: 0f5a6da911401296c8b30f075d3be212 ****/ + /****** CDF_Store::Description ******/ + /****** md5 signature: 0f5a6da911401296c8b30f075d3be212 ******/ %feature("compactdefaultargs") Description; %feature("autodoc", "Return ------- @@ -1039,8 +1039,8 @@ Returns the description of the format of the main object. ") Description; opencascade::handle Description(); - /****************** Folder ******************/ - /**** md5 signature: 73105a79a5d36e1f7de58c6236ff69b5 ****/ + /****** CDF_Store::Folder ******/ + /****** md5 signature: 73105a79a5d36e1f7de58c6236ff69b5 ******/ %feature("compactdefaultargs") Folder; %feature("autodoc", "Return ------- @@ -1052,8 +1052,8 @@ Returns the folder in which the current document will be stored. ") Folder; opencascade::handle Folder(); - /****************** HasAPreviousVersion ******************/ - /**** md5 signature: 2de8556e4a503e119b5d11cf435187d6 ****/ + /****** CDF_Store::HasAPreviousVersion ******/ + /****** md5 signature: 2de8556e4a503e119b5d11cf435187d6 ******/ %feature("compactdefaultargs") HasAPreviousVersion; %feature("autodoc", "Return ------- @@ -1065,8 +1065,8 @@ No available documentation. ") HasAPreviousVersion; Standard_Boolean HasAPreviousVersion(); - /****************** IsConsistent ******************/ - /**** md5 signature: b90ed696be4c8f35165851c36e3a9592 ****/ + /****** CDF_Store::IsConsistent ******/ + /****** md5 signature: b90ed696be4c8f35165851c36e3a9592 ******/ %feature("compactdefaultargs") IsConsistent; %feature("autodoc", "Return ------- @@ -1078,8 +1078,8 @@ No available documentation. ") IsConsistent; Standard_Boolean IsConsistent(); - /****************** IsMainDocument ******************/ - /**** md5 signature: 97a981e2305064fbd665d8c94b60dd38 ****/ + /****** CDF_Store::IsMainDocument ******/ + /****** md5 signature: 97a981e2305064fbd665d8c94b60dd38 ******/ %feature("compactdefaultargs") IsMainDocument; %feature("autodoc", "Return ------- @@ -1091,8 +1091,8 @@ Returns true if the currentdocument is the main one, ie the document of the curr ") IsMainDocument; Standard_Boolean IsMainDocument(); - /****************** IsModified ******************/ - /**** md5 signature: 9c75f71ece8c473c12f072739ddc9f63 ****/ + /****** CDF_Store::IsModified ******/ + /****** md5 signature: 9c75f71ece8c473c12f072739ddc9f63 ******/ %feature("compactdefaultargs") IsModified; %feature("autodoc", "Return ------- @@ -1104,8 +1104,8 @@ No available documentation. ") IsModified; Standard_Boolean IsModified(); - /****************** IsStored ******************/ - /**** md5 signature: 0accc82ecbcf65967dcdbcbc0b39163c ****/ + /****** CDF_Store::IsStored ******/ + /****** md5 signature: 0accc82ecbcf65967dcdbcbc0b39163c ******/ %feature("compactdefaultargs") IsStored; %feature("autodoc", "Return ------- @@ -1117,8 +1117,8 @@ Returns true if the current document is already stored. ") IsStored; Standard_Boolean IsStored(); - /****************** MetaDataPath ******************/ - /**** md5 signature: 835d7c7f39245f9133772b983dcc3304 ****/ + /****** CDF_Store::MetaDataPath ******/ + /****** md5 signature: 835d7c7f39245f9133772b983dcc3304 ******/ %feature("compactdefaultargs") MetaDataPath; %feature("autodoc", "Return ------- @@ -1130,8 +1130,8 @@ Returns the path of the previous store is the object is already stored, otherwis ") MetaDataPath; opencascade::handle MetaDataPath(); - /****************** Name ******************/ - /**** md5 signature: 03ea3f3ee5fa94844fd4d36cdbd9cbbd ****/ + /****** CDF_Store::Name ******/ + /****** md5 signature: 03ea3f3ee5fa94844fd4d36cdbd9cbbd ******/ %feature("compactdefaultargs") Name; %feature("autodoc", "Return ------- @@ -1143,8 +1143,8 @@ Returns the name under which the current document will be stored. ") Name; opencascade::handle Name(); - /****************** Path ******************/ - /**** md5 signature: 5b9cb02835fedd9ac6afe6651eb8b11d ****/ + /****** CDF_Store::Path ******/ + /****** md5 signature: 5b9cb02835fedd9ac6afe6651eb8b11d ******/ %feature("compactdefaultargs") Path; %feature("autodoc", "Return ------- @@ -1156,8 +1156,8 @@ Returns the complete path of the created meta-data. ") Path; Standard_ExtString Path(); - /****************** PreviousVersion ******************/ - /**** md5 signature: ad90ed1fb5b96a052d0f5ad3d9c8b43d ****/ + /****** CDF_Store::PreviousVersion ******/ + /****** md5 signature: ad90ed1fb5b96a052d0f5ad3d9c8b43d ******/ %feature("compactdefaultargs") PreviousVersion; %feature("autodoc", "Return ------- @@ -1169,8 +1169,8 @@ No available documentation. ") PreviousVersion; opencascade::handle PreviousVersion(); - /****************** Realize ******************/ - /**** md5 signature: d59c3600fa85f189069750fcb7bd399b ****/ + /****** CDF_Store::Realize ******/ + /****** md5 signature: d59c3600fa85f189069750fcb7bd399b ******/ %feature("compactdefaultargs") Realize; %feature("autodoc", " Parameters @@ -1187,8 +1187,8 @@ No available documentation. ") Realize; void Realize(const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** RecheckName ******************/ - /**** md5 signature: 67223e0099da9a98b079d45cadef07e4 ****/ + /****** CDF_Store::RecheckName ******/ + /****** md5 signature: 67223e0099da9a98b079d45cadef07e4 ******/ %feature("compactdefaultargs") RecheckName; %feature("autodoc", "Return ------- @@ -1200,8 +1200,8 @@ Defines the name under which the document should be stored. uses for example aft ") RecheckName; CDF_StoreSetNameStatus RecheckName(); - /****************** SetComment ******************/ - /**** md5 signature: 60d8b5fed8f2853931f87d0698f7f61b ****/ + /****** CDF_Store::SetComment ******/ + /****** md5 signature: 60d8b5fed8f2853931f87d0698f7f61b ******/ %feature("compactdefaultargs") SetComment; %feature("autodoc", " Parameters @@ -1218,8 +1218,8 @@ No available documentation. ") SetComment; void SetComment(const Standard_ExtString aComment); - /****************** SetCurrent ******************/ - /**** md5 signature: e37db584b7563caf052bddaaef868e65 ****/ + /****** CDF_Store::SetCurrent ******/ + /****** md5 signature: e37db584b7563caf052bddaaef868e65 ******/ %feature("compactdefaultargs") SetCurrent; %feature("autodoc", " Parameters @@ -1236,8 +1236,8 @@ No available documentation. ") SetCurrent; void SetCurrent(const Standard_ExtString aPresentation); - /****************** SetFolder ******************/ - /**** md5 signature: b5573393a1ebe307b50d228fbe5e9cc3 ****/ + /****** CDF_Store::SetFolder ******/ + /****** md5 signature: b5573393a1ebe307b50d228fbe5e9cc3 ******/ %feature("compactdefaultargs") SetFolder; %feature("autodoc", " Parameters @@ -1254,8 +1254,8 @@ Defines the folder in which the document should be stored. returns standard_true ") SetFolder; Standard_Boolean SetFolder(TCollection_ExtendedString aFolder); - /****************** SetFolder ******************/ - /**** md5 signature: 801d484ce7c807a9dba40870f26f3b9c ****/ + /****** CDF_Store::SetFolder ******/ + /****** md5 signature: 801d484ce7c807a9dba40870f26f3b9c ******/ %feature("compactdefaultargs") SetFolder; %feature("autodoc", " Parameters @@ -1272,8 +1272,8 @@ Defines the folder in which the document should be stored. returns standard_true ") SetFolder; Standard_Boolean SetFolder(const Standard_ExtString aFolder); - /****************** SetMain ******************/ - /**** md5 signature: a7a1239199c6e8d991408789f7045a98 ****/ + /****** CDF_Store::SetMain ******/ + /****** md5 signature: a7a1239199c6e8d991408789f7045a98 ******/ %feature("compactdefaultargs") SetMain; %feature("autodoc", "Return ------- @@ -1285,8 +1285,8 @@ The two following methods can be used just after realize or import -- method to ") SetMain; void SetMain(); - /****************** SetName ******************/ - /**** md5 signature: 5156018271f857517ed09dcbec38d977 ****/ + /****** CDF_Store::SetName ******/ + /****** md5 signature: 5156018271f857517ed09dcbec38d977 ******/ %feature("compactdefaultargs") SetName; %feature("autodoc", " Parameters @@ -1303,8 +1303,8 @@ Defines the name under which the document should be stored. ") SetName; CDF_StoreSetNameStatus SetName(const Standard_ExtString aName); - /****************** SetName ******************/ - /**** md5 signature: 62a6f4de5c52880dd94476733e959ce4 ****/ + /****** CDF_Store::SetName ******/ + /****** md5 signature: 62a6f4de5c52880dd94476733e959ce4 ******/ %feature("compactdefaultargs") SetName; %feature("autodoc", " Parameters @@ -1321,8 +1321,8 @@ Defines the name under which the document should be stored. ") SetName; CDF_StoreSetNameStatus SetName(TCollection_ExtendedString aName); - /****************** SetPreviousVersion ******************/ - /**** md5 signature: db8a5d8d68bb5cba7556c0e7f948b226 ****/ + /****** CDF_Store::SetPreviousVersion ******/ + /****** md5 signature: db8a5d8d68bb5cba7556c0e7f948b226 ******/ %feature("compactdefaultargs") SetPreviousVersion; %feature("autodoc", " Parameters @@ -1339,8 +1339,8 @@ No available documentation. ") SetPreviousVersion; Standard_Boolean SetPreviousVersion(const Standard_ExtString aPreviousVersion); - /****************** StoreStatus ******************/ - /**** md5 signature: 0ea2be88f8e37cedd973fe034f3c1d11 ****/ + /****** CDF_Store::StoreStatus ******/ + /****** md5 signature: 0ea2be88f8e37cedd973fe034f3c1d11 ******/ %feature("compactdefaultargs") StoreStatus; %feature("autodoc", "Return ------- @@ -1366,8 +1366,8 @@ No available documentation. **********************/ class CDF_StoreList : public Standard_Transient { public: - /****************** CDF_StoreList ******************/ - /**** md5 signature: 2eca53e06d6546011dd7b0f27c5911a9 ****/ + /****** CDF_StoreList::CDF_StoreList ******/ + /****** md5 signature: 2eca53e06d6546011dd7b0f27c5911a9 ******/ %feature("compactdefaultargs") CDF_StoreList; %feature("autodoc", " Parameters @@ -1384,8 +1384,8 @@ No available documentation. ") CDF_StoreList; CDF_StoreList(const opencascade::handle & aDocument); - /****************** Init ******************/ - /**** md5 signature: 0de93ef32c53d091768788dca0e281fd ****/ + /****** CDF_StoreList::Init ******/ + /****** md5 signature: 0de93ef32c53d091768788dca0e281fd ******/ %feature("compactdefaultargs") Init; %feature("autodoc", "Return ------- @@ -1397,8 +1397,8 @@ No available documentation. ") Init; void Init(); - /****************** IsConsistent ******************/ - /**** md5 signature: b90ed696be4c8f35165851c36e3a9592 ****/ + /****** CDF_StoreList::IsConsistent ******/ + /****** md5 signature: b90ed696be4c8f35165851c36e3a9592 ******/ %feature("compactdefaultargs") IsConsistent; %feature("autodoc", "Return ------- @@ -1410,8 +1410,8 @@ No available documentation. ") IsConsistent; Standard_Boolean IsConsistent(); - /****************** More ******************/ - /**** md5 signature: 6f6e915c9a3dca758c059d9e8af02dff ****/ + /****** CDF_StoreList::More ******/ + /****** md5 signature: 6f6e915c9a3dca758c059d9e8af02dff ******/ %feature("compactdefaultargs") More; %feature("autodoc", "Return ------- @@ -1423,8 +1423,8 @@ No available documentation. ") More; Standard_Boolean More(); - /****************** Next ******************/ - /**** md5 signature: f35c0df5f1d7c877986db18081404532 ****/ + /****** CDF_StoreList::Next ******/ + /****** md5 signature: f35c0df5f1d7c877986db18081404532 ******/ %feature("compactdefaultargs") Next; %feature("autodoc", "Return ------- @@ -1436,8 +1436,8 @@ No available documentation. ") Next; void Next(); - /****************** Store ******************/ - /**** md5 signature: 084ae73e13859cdf324c211495d2ab38 ****/ + /****** CDF_StoreList::Store ******/ + /****** md5 signature: 084ae73e13859cdf324c211495d2ab38 ******/ %feature("compactdefaultargs") Store; %feature("autodoc", " Parameters @@ -1456,8 +1456,8 @@ Stores each object of the storelist in the reverse order of which they had been ") Store; PCDM_StoreStatus Store(opencascade::handle & aMetaData, TCollection_ExtendedString & aStatusAssociatedText, const Message_ProgressRange & theRange = Message_ProgressRange()); - /****************** Value ******************/ - /**** md5 signature: 83b1ae63785c8877d821cb336792d4bc ****/ + /****** CDF_StoreList::Value ******/ + /****** md5 signature: 83b1ae63785c8877d821cb336792d4bc ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -1485,8 +1485,8 @@ No available documentation. ***********************/ class CDF_FWOSDriver : public CDF_MetaDataDriver { public: - /****************** CDF_FWOSDriver ******************/ - /**** md5 signature: 5a093179f3514d10faf44a50b08ae4ba ****/ + /****** CDF_FWOSDriver::CDF_FWOSDriver ******/ + /****** md5 signature: 5a093179f3514d10faf44a50b08ae4ba ******/ %feature("compactdefaultargs") CDF_FWOSDriver; %feature("autodoc", " Parameters @@ -1503,8 +1503,8 @@ Initializes the metadatadriver connected to specified look-up table. note that t ") CDF_FWOSDriver; CDF_FWOSDriver(CDM_MetaDataLookUpTable & theLookUpTable); - /****************** BuildFileName ******************/ - /**** md5 signature: 1c38ab2ab19e4b54d478d4f310d7a582 ****/ + /****** CDF_FWOSDriver::BuildFileName ******/ + /****** md5 signature: 1c38ab2ab19e4b54d478d4f310d7a582 ******/ %feature("compactdefaultargs") BuildFileName; %feature("autodoc", " Parameters @@ -1521,8 +1521,8 @@ No available documentation. ") BuildFileName; TCollection_ExtendedString BuildFileName(const opencascade::handle & aDocument); - /****************** DefaultFolder ******************/ - /**** md5 signature: ac13ff4b9ece454471b16d82ee8fc228 ****/ + /****** CDF_FWOSDriver::DefaultFolder ******/ + /****** md5 signature: ac13ff4b9ece454471b16d82ee8fc228 ******/ %feature("compactdefaultargs") DefaultFolder; %feature("autodoc", "Return ------- @@ -1534,8 +1534,8 @@ No available documentation. ") DefaultFolder; TCollection_ExtendedString DefaultFolder(); - /****************** Find ******************/ - /**** md5 signature: af96c0bc77591fb0d1a5ac71b5dc009d ****/ + /****** CDF_FWOSDriver::Find ******/ + /****** md5 signature: af96c0bc77591fb0d1a5ac71b5dc009d ******/ %feature("compactdefaultargs") Find; %feature("autodoc", " Parameters @@ -1554,8 +1554,8 @@ Indicate whether a file exists corresponding to the folder and the name. ") Find; Standard_Boolean Find(TCollection_ExtendedString aFolder, TCollection_ExtendedString aName, TCollection_ExtendedString aVersion); - /****************** FindFolder ******************/ - /**** md5 signature: 876d6b8f179e719bd5cd5d7750be1f28 ****/ + /****** CDF_FWOSDriver::FindFolder ******/ + /****** md5 signature: 876d6b8f179e719bd5cd5d7750be1f28 ******/ %feature("compactdefaultargs") FindFolder; %feature("autodoc", " Parameters @@ -1572,8 +1572,8 @@ No available documentation. ") FindFolder; Standard_Boolean FindFolder(TCollection_ExtendedString aFolder); - /****************** HasReadPermission ******************/ - /**** md5 signature: a56965c6bd74688f05fbee219b9c4232 ****/ + /****** CDF_FWOSDriver::HasReadPermission ******/ + /****** md5 signature: a56965c6bd74688f05fbee219b9c4232 ******/ %feature("compactdefaultargs") HasReadPermission; %feature("autodoc", " Parameters @@ -1592,8 +1592,8 @@ No available documentation. ") HasReadPermission; Standard_Boolean HasReadPermission(TCollection_ExtendedString aFolder, TCollection_ExtendedString aName, TCollection_ExtendedString aVersion); - /****************** SetName ******************/ - /**** md5 signature: 274c7654cce9308e93e9edd7b5ee5d9d ****/ + /****** CDF_FWOSDriver::SetName ******/ + /****** md5 signature: 274c7654cce9308e93e9edd7b5ee5d9d ******/ %feature("compactdefaultargs") SetName; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/CDM.i b/src/SWIG_files/wrapper/CDM.i index 90d45a399..1e31a8fee 100644 --- a/src/SWIG_files/wrapper/CDM.i +++ b/src/SWIG_files/wrapper/CDM.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define CDMDOCSTRING "CDM module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_cdm.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_cdm.html" %enddef %module (package="OCC.Core", docstring=CDMDOCSTRING) CDM @@ -142,8 +142,8 @@ typedef TColStd_DataMapOfStringInteger CDM_NamesDirectory; %nodefaultctor CDM_Application; class CDM_Application : public Standard_Transient { public: - /****************** BeginOfUpdate ******************/ - /**** md5 signature: 0af0b7d32d1a2f5708cb026b8c02ce44 ****/ + /****** CDM_Application::BeginOfUpdate ******/ + /****** md5 signature: 0af0b7d32d1a2f5708cb026b8c02ce44 ******/ %feature("compactdefaultargs") BeginOfUpdate; %feature("autodoc", " Parameters @@ -181,8 +181,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** EndOfUpdate ******************/ - /**** md5 signature: 1300f7eaea13e12939c9e78edc2d7e82 ****/ + /****** CDM_Application::EndOfUpdate ******/ + /****** md5 signature: 1300f7eaea13e12939c9e78edc2d7e82 ******/ %feature("compactdefaultargs") EndOfUpdate; %feature("autodoc", " Parameters @@ -201,8 +201,8 @@ This method is called affter the update of a document. by default, writes in mes ") EndOfUpdate; virtual void EndOfUpdate(const opencascade::handle & aDocument, const Standard_Boolean theStatus, TCollection_ExtendedString ErrorString); - /****************** MessageDriver ******************/ - /**** md5 signature: 9c7cdb55e9a82d7cef41788491b5a1ec ****/ + /****** CDM_Application::MessageDriver ******/ + /****** md5 signature: 9c7cdb55e9a82d7cef41788491b5a1ec ******/ %feature("compactdefaultargs") MessageDriver; %feature("autodoc", "Return ------- @@ -214,8 +214,8 @@ Returns default messenger;. ") MessageDriver; virtual opencascade::handle MessageDriver(); - /****************** MetaDataLookUpTable ******************/ - /**** md5 signature: a73a07c624cf8f3d04f8c1775645863c ****/ + /****** CDM_Application::MetaDataLookUpTable ******/ + /****** md5 signature: a73a07c624cf8f3d04f8c1775645863c ******/ %feature("compactdefaultargs") MetaDataLookUpTable; %feature("autodoc", "Return ------- @@ -227,8 +227,8 @@ Returns metadata lookuptable. ") MetaDataLookUpTable; virtual CDM_MetaDataLookUpTable & MetaDataLookUpTable(); - /****************** Name ******************/ - /**** md5 signature: 80292bf2fe0db1e304d129c2054da361 ****/ + /****** CDM_Application::Name ******/ + /****** md5 signature: 80292bf2fe0db1e304d129c2054da361 ******/ %feature("compactdefaultargs") Name; %feature("autodoc", "Return ------- @@ -240,8 +240,8 @@ Returns the application name. ") Name; virtual TCollection_ExtendedString Name(); - /****************** Resources ******************/ - /**** md5 signature: 807a657145c6d6be6b1fcc9cf2d99f89 ****/ + /****** CDM_Application::Resources ******/ + /****** md5 signature: 807a657145c6d6be6b1fcc9cf2d99f89 ******/ %feature("compactdefaultargs") Resources; %feature("autodoc", "Return ------- @@ -253,8 +253,8 @@ The manager returned by this virtual method will be used to search for format.re ") Resources; virtual opencascade::handle Resources(); - /****************** Version ******************/ - /**** md5 signature: f0502fbab556d6295e4fc793720e980f ****/ + /****** CDM_Application::Version ******/ + /****** md5 signature: f0502fbab556d6295e4fc793720e980f ******/ %feature("compactdefaultargs") Version; %feature("autodoc", "Return ------- @@ -266,8 +266,8 @@ Returns the application version. ") Version; virtual TCollection_AsciiString Version(); - /****************** Write ******************/ - /**** md5 signature: 53ecbdb2e873292857c5aac0b98f58b3 ****/ + /****** CDM_Application::Write ******/ + /****** md5 signature: 53ecbdb2e873292857c5aac0b98f58b3 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -302,8 +302,8 @@ Writes the string in the application messagerdriver. %ignore CDM_Document::~CDM_Document(); class CDM_Document : public Standard_Transient { public: - /****************** AddComment ******************/ - /**** md5 signature: 06c808db266b5347e2900c1f468bea31 ****/ + /****** CDM_Document::AddComment ******/ + /****** md5 signature: 06c808db266b5347e2900c1f468bea31 ******/ %feature("compactdefaultargs") AddComment; %feature("autodoc", " Parameters @@ -320,8 +320,8 @@ Appends a comment into comments of this document. ") AddComment; void AddComment(TCollection_ExtendedString aComment); - /****************** Application ******************/ - /**** md5 signature: 64aab7c43cb82115fa37ae0c99da8f75 ****/ + /****** CDM_Document::Application ******/ + /****** md5 signature: 64aab7c43cb82115fa37ae0c99da8f75 ******/ %feature("compactdefaultargs") Application; %feature("autodoc", "Return ------- @@ -333,8 +333,8 @@ No available documentation. ") Application; const opencascade::handle & Application(); - /****************** CanClose ******************/ - /**** md5 signature: d92aa68a8f8c78b75ae7c150bd4a2d5b ****/ + /****** CDM_Document::CanClose ******/ + /****** md5 signature: d92aa68a8f8c78b75ae7c150bd4a2d5b ******/ %feature("compactdefaultargs") CanClose; %feature("autodoc", "Return ------- @@ -346,8 +346,8 @@ No available documentation. ") CanClose; CDM_CanCloseStatus CanClose(); - /****************** CanCloseReference ******************/ - /**** md5 signature: 1140aead780f6c5f5344930b6e6db09b ****/ + /****** CDM_Document::CanCloseReference ******/ + /****** md5 signature: 1140aead780f6c5f5344930b6e6db09b ******/ %feature("compactdefaultargs") CanCloseReference; %feature("autodoc", " Parameters @@ -365,8 +365,8 @@ A referenced document may indicate through this virtual method that it does not ") CanCloseReference; virtual Standard_Boolean CanCloseReference(const opencascade::handle & aDocument, const Standard_Integer aReferenceIdentifier); - /****************** Close ******************/ - /**** md5 signature: d50d7ba65c2beb3eb436584b5735f108 ****/ + /****** CDM_Document::Close ******/ + /****** md5 signature: d50d7ba65c2beb3eb436584b5735f108 ******/ %feature("compactdefaultargs") Close; %feature("autodoc", "Return ------- @@ -378,8 +378,8 @@ No available documentation. ") Close; void Close(); - /****************** CloseReference ******************/ - /**** md5 signature: 6864eb1b746e4174e03f6398e4a62e45 ****/ + /****** CDM_Document::CloseReference ******/ + /****** md5 signature: 6864eb1b746e4174e03f6398e4a62e45 ******/ %feature("compactdefaultargs") CloseReference; %feature("autodoc", " Parameters @@ -397,8 +397,8 @@ A referenced document may update its internal data structure when {adocument} wh ") CloseReference; virtual void CloseReference(const opencascade::handle & aDocument, const Standard_Integer aReferenceIdentifier); - /****************** Comment ******************/ - /**** md5 signature: da330a9b0b5e37badd51cb0b90f32906 ****/ + /****** CDM_Document::Comment ******/ + /****** md5 signature: da330a9b0b5e37badd51cb0b90f32906 ******/ %feature("compactdefaultargs") Comment; %feature("autodoc", "Return ------- @@ -410,8 +410,8 @@ Returns the first of associated comments. by default the comment is an empty str ") Comment; Standard_ExtString Comment(); - /****************** Comments ******************/ - /**** md5 signature: d097d5458a50345161ad38ca79347c2b ****/ + /****** CDM_Document::Comments ******/ + /****** md5 signature: d097d5458a50345161ad38ca79347c2b ******/ %feature("compactdefaultargs") Comments; %feature("autodoc", " Parameters @@ -428,8 +428,8 @@ Returns the associated comments through . returns empty sequence if n ") Comments; void Comments(TColStd_SequenceOfExtendedString & aComments); - /****************** CopyReference ******************/ - /**** md5 signature: f5014e895ae3cfcd8f2a7732865706b9 ****/ + /****** CDM_Document::CopyReference ******/ + /****** md5 signature: f5014e895ae3cfcd8f2a7732865706b9 ******/ %feature("compactdefaultargs") CopyReference; %feature("autodoc", " Parameters @@ -447,8 +447,8 @@ Copies a reference to this document. this method avoid retrieval of referenced d ") CopyReference; Standard_Integer CopyReference(const opencascade::handle & aFromDocument, const Standard_Integer aReferenceIdentifier); - /****************** CreateReference ******************/ - /**** md5 signature: 70b61347a0dba1031a37a4d6a4f096fc ****/ + /****** CDM_Document::CreateReference ******/ + /****** md5 signature: 70b61347a0dba1031a37a4d6a4f096fc ******/ %feature("compactdefaultargs") CreateReference; %feature("autodoc", " Parameters @@ -465,8 +465,8 @@ Creates a reference from this document to {anotherdocument}. returns a reference ") CreateReference; Standard_Integer CreateReference(const opencascade::handle & anOtherDocument); - /****************** CreateReference ******************/ - /**** md5 signature: 9a9061502dbb1319ebf6c20b8c206a40 ****/ + /****** CDM_Document::CreateReference ******/ + /****** md5 signature: 9a9061502dbb1319ebf6c20b8c206a40 ******/ %feature("compactdefaultargs") CreateReference; %feature("autodoc", " Parameters @@ -487,8 +487,8 @@ No available documentation. ") CreateReference; void CreateReference(const opencascade::handle & aMetaData, const Standard_Integer aReferenceIdentifier, const opencascade::handle & anApplication, const Standard_Integer aToDocumentVersion, const Standard_Boolean UseStorageConfiguration); - /****************** CreateReference ******************/ - /**** md5 signature: 73155220bf15097893e98eeaa6c45625 ****/ + /****** CDM_Document::CreateReference ******/ + /****** md5 signature: 73155220bf15097893e98eeaa6c45625 ******/ %feature("compactdefaultargs") CreateReference; %feature("autodoc", " Parameters @@ -508,8 +508,8 @@ No available documentation. ") CreateReference; Standard_Integer CreateReference(const opencascade::handle & aMetaData, const opencascade::handle & anApplication, const Standard_Integer aDocumentVersion, const Standard_Boolean UseStorageConfiguration); - /****************** DeepReferences ******************/ - /**** md5 signature: e16f988328ffa73c1ca387730b2190fa ****/ + /****** CDM_Document::DeepReferences ******/ + /****** md5 signature: e16f988328ffa73c1ca387730b2190fa ******/ %feature("compactdefaultargs") DeepReferences; %feature("autodoc", " Parameters @@ -526,8 +526,8 @@ Returns true is this document references adocument;. ") DeepReferences; Standard_Boolean DeepReferences(const opencascade::handle & aDocument); - /****************** Description ******************/ - /**** md5 signature: 4ea5e8b06a38637bc4a4e6f3a5b7d927 ****/ + /****** CDM_Document::Description ******/ + /****** md5 signature: 4ea5e8b06a38637bc4a4e6f3a5b7d927 ******/ %feature("compactdefaultargs") Description; %feature("autodoc", "Return ------- @@ -539,8 +539,8 @@ Gets the `fileformat`.description resource. ") Description; TCollection_ExtendedString Description(); - /****************** Document ******************/ - /**** md5 signature: 8eb99c67c36b1fb3f295093dbdfd69cc ****/ + /****** CDM_Document::Document ******/ + /****** md5 signature: 8eb99c67c36b1fb3f295093dbdfd69cc ******/ %feature("compactdefaultargs") Document; %feature("autodoc", " Parameters @@ -578,8 +578,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** Extensions ******************/ - /**** md5 signature: 562af3bed83550e86f6e9f1cc27905e7 ****/ + /****** CDM_Document::Extensions ******/ + /****** md5 signature: 562af3bed83550e86f6e9f1cc27905e7 ******/ %feature("compactdefaultargs") Extensions; %feature("autodoc", " Parameters @@ -596,8 +596,8 @@ By default empties the extensions. ") Extensions; virtual void Extensions(TColStd_SequenceOfExtendedString & Extensions); - /****************** FileExtension ******************/ - /**** md5 signature: dc32da120ea382590e37e02d5e00fb9e ****/ + /****** CDM_Document::FileExtension ******/ + /****** md5 signature: dc32da120ea382590e37e02d5e00fb9e ******/ %feature("compactdefaultargs") FileExtension; %feature("autodoc", "Return ------- @@ -609,8 +609,8 @@ Gets the desktop.domain.application.`fileformat`.fileextension resource. ") FileExtension; TCollection_ExtendedString FileExtension(); - /****************** FindDescription ******************/ - /**** md5 signature: af3bb67c33b1f02d6f772909eee92676 ****/ + /****** CDM_Document::FindDescription ******/ + /****** md5 signature: af3bb67c33b1f02d6f772909eee92676 ******/ %feature("compactdefaultargs") FindDescription; %feature("autodoc", "Return ------- @@ -622,8 +622,8 @@ No available documentation. ") FindDescription; Standard_Boolean FindDescription(); - /****************** FindFileExtension ******************/ - /**** md5 signature: 8f91e8289675fe02ffd3f710fad4831b ****/ + /****** CDM_Document::FindFileExtension ******/ + /****** md5 signature: 8f91e8289675fe02ffd3f710fad4831b ******/ %feature("compactdefaultargs") FindFileExtension; %feature("autodoc", "Return ------- @@ -635,8 +635,8 @@ No available documentation. ") FindFileExtension; Standard_Boolean FindFileExtension(); - /****************** Folder ******************/ - /**** md5 signature: 6e4f71ec7a138611fba2655a4d9e2a6c ****/ + /****** CDM_Document::Folder ******/ + /****** md5 signature: 6e4f71ec7a138611fba2655a4d9e2a6c ******/ %feature("compactdefaultargs") Folder; %feature("autodoc", "Return ------- @@ -648,8 +648,8 @@ No available documentation. ") Folder; TCollection_ExtendedString Folder(); - /****************** FromReferencesNumber ******************/ - /**** md5 signature: 25816b3f96b43878489f4e6d996dc26a ****/ + /****** CDM_Document::FromReferencesNumber ******/ + /****** md5 signature: 25816b3f96b43878489f4e6d996dc26a ******/ %feature("compactdefaultargs") FromReferencesNumber; %feature("autodoc", "Return ------- @@ -661,8 +661,8 @@ Returns the number of references having this document as to document. ") FromReferencesNumber; Standard_Integer FromReferencesNumber(); - /****************** GetAlternativeDocument ******************/ - /**** md5 signature: 932a6b6d84c79c3da90d4ce47bf5554d ****/ + /****** CDM_Document::GetAlternativeDocument ******/ + /****** md5 signature: 932a6b6d84c79c3da90d4ce47bf5554d ******/ %feature("compactdefaultargs") GetAlternativeDocument; %feature("autodoc", " Parameters @@ -680,8 +680,8 @@ This method can be redefined to extract another document in a different format. ") GetAlternativeDocument; virtual Standard_Boolean GetAlternativeDocument(TCollection_ExtendedString aFormat, opencascade::handle & anAlternativeDocument); - /****************** HasRequestedFolder ******************/ - /**** md5 signature: da91e14ce6ae50fe9ebda6e45778d6fc ****/ + /****** CDM_Document::HasRequestedFolder ******/ + /****** md5 signature: da91e14ce6ae50fe9ebda6e45778d6fc ******/ %feature("compactdefaultargs") HasRequestedFolder; %feature("autodoc", "Return ------- @@ -693,8 +693,8 @@ No available documentation. ") HasRequestedFolder; Standard_Boolean HasRequestedFolder(); - /****************** HasRequestedPreviousVersion ******************/ - /**** md5 signature: 016d0ffafe8cf6beb45d2f56183bddfe ****/ + /****** CDM_Document::HasRequestedPreviousVersion ******/ + /****** md5 signature: 016d0ffafe8cf6beb45d2f56183bddfe ******/ %feature("compactdefaultargs") HasRequestedPreviousVersion; %feature("autodoc", "Return ------- @@ -706,8 +706,8 @@ No available documentation. ") HasRequestedPreviousVersion; Standard_Boolean HasRequestedPreviousVersion(); - /****************** IsInSession ******************/ - /**** md5 signature: 55aa5c1a1cd34e6b278620a607aed883 ****/ + /****** CDM_Document::IsInSession ******/ + /****** md5 signature: 55aa5c1a1cd34e6b278620a607aed883 ******/ %feature("compactdefaultargs") IsInSession; %feature("autodoc", " Parameters @@ -724,8 +724,8 @@ Returns true if the to document of the reference identified by areferenceidentif ") IsInSession; Standard_Boolean IsInSession(const Standard_Integer aReferenceIdentifier); - /****************** IsModified ******************/ - /**** md5 signature: 9c75f71ece8c473c12f072739ddc9f63 ****/ + /****** CDM_Document::IsModified ******/ + /****** md5 signature: 9c75f71ece8c473c12f072739ddc9f63 ******/ %feature("compactdefaultargs") IsModified; %feature("autodoc", "Return ------- @@ -737,8 +737,8 @@ Returns true if the version is greater than the storage version. ") IsModified; Standard_Boolean IsModified(); - /****************** IsOpened ******************/ - /**** md5 signature: 523448479755dd859d720fcc78551e3d ****/ + /****** CDM_Document::IsOpened ******/ + /****** md5 signature: 523448479755dd859d720fcc78551e3d ******/ %feature("compactdefaultargs") IsOpened; %feature("autodoc", "Return ------- @@ -750,8 +750,8 @@ No available documentation. ") IsOpened; Standard_Boolean IsOpened(); - /****************** IsOpened ******************/ - /**** md5 signature: 9876c2f350454b050aaab9f4f47c295b ****/ + /****** CDM_Document::IsOpened ******/ + /****** md5 signature: 9876c2f350454b050aaab9f4f47c295b ******/ %feature("compactdefaultargs") IsOpened; %feature("autodoc", " Parameters @@ -768,8 +768,8 @@ Returns true if the document corresponding to the given reference has been retri ") IsOpened; Standard_Boolean IsOpened(const Standard_Integer aReferenceIdentifier); - /****************** IsReadOnly ******************/ - /**** md5 signature: fa96cbb7774919470076f35f8b884f77 ****/ + /****** CDM_Document::IsReadOnly ******/ + /****** md5 signature: fa96cbb7774919470076f35f8b884f77 ******/ %feature("compactdefaultargs") IsReadOnly; %feature("autodoc", "Return ------- @@ -781,8 +781,8 @@ Indicates that this document cannot be modified. ") IsReadOnly; Standard_Boolean IsReadOnly(); - /****************** IsReadOnly ******************/ - /**** md5 signature: 4c358cefb201e05add20e7ea214cab46 ****/ + /****** CDM_Document::IsReadOnly ******/ + /****** md5 signature: 4c358cefb201e05add20e7ea214cab46 ******/ %feature("compactdefaultargs") IsReadOnly; %feature("autodoc", " Parameters @@ -799,8 +799,8 @@ Indicates that the referenced document cannot be modified,. ") IsReadOnly; Standard_Boolean IsReadOnly(const Standard_Integer aReferenceIdentifier); - /****************** IsStored ******************/ - /**** md5 signature: 2a9c914c3ea53a7b0112d3f96174940d ****/ + /****** CDM_Document::IsStored ******/ + /****** md5 signature: 2a9c914c3ea53a7b0112d3f96174940d ******/ %feature("compactdefaultargs") IsStored; %feature("autodoc", " Parameters @@ -817,8 +817,8 @@ Returns true if the to document of the reference identified by areferenceidentif ") IsStored; Standard_Boolean IsStored(const Standard_Integer aReferenceIdentifier); - /****************** IsStored ******************/ - /**** md5 signature: 0accc82ecbcf65967dcdbcbc0b39163c ****/ + /****** CDM_Document::IsStored ******/ + /****** md5 signature: 0accc82ecbcf65967dcdbcbc0b39163c ******/ %feature("compactdefaultargs") IsStored; %feature("autodoc", "Return ------- @@ -830,8 +830,8 @@ No available documentation. ") IsStored; Standard_Boolean IsStored(); - /****************** IsUpToDate ******************/ - /**** md5 signature: 452911df138a97af1629dc6e74872cce ****/ + /****** CDM_Document::IsUpToDate ******/ + /****** md5 signature: 452911df138a97af1629dc6e74872cce ******/ %feature("compactdefaultargs") IsUpToDate; %feature("autodoc", " Parameters @@ -848,8 +848,8 @@ Returns true if the modification counter found in the given reference is equal t ") IsUpToDate; Standard_Boolean IsUpToDate(const Standard_Integer aReferenceIdentifier); - /****************** LoadResources ******************/ - /**** md5 signature: e42c9588671d5e90c5bd95f9735418c2 ****/ + /****** CDM_Document::LoadResources ******/ + /****** md5 signature: e42c9588671d5e90c5bd95f9735418c2 ******/ %feature("compactdefaultargs") LoadResources; %feature("autodoc", "Return ------- @@ -861,8 +861,8 @@ Read (or rereads) the following resource. ") LoadResources; void LoadResources(); - /****************** MetaData ******************/ - /**** md5 signature: c9a180852f421cb9762c9ab4be4b79ab ****/ + /****** CDM_Document::MetaData ******/ + /****** md5 signature: c9a180852f421cb9762c9ab4be4b79ab ******/ %feature("compactdefaultargs") MetaData; %feature("autodoc", "Return ------- @@ -874,8 +874,8 @@ No available documentation. ") MetaData; opencascade::handle MetaData(); - /****************** Modifications ******************/ - /**** md5 signature: 3724ba0881224cbd02f10fd6280917aa ****/ + /****** CDM_Document::Modifications ******/ + /****** md5 signature: 3724ba0881224cbd02f10fd6280917aa ******/ %feature("compactdefaultargs") Modifications; %feature("autodoc", "Return ------- @@ -887,8 +887,8 @@ Returns the current modification counter. ") Modifications; Standard_Integer Modifications(); - /****************** Modify ******************/ - /**** md5 signature: 44fbaa7237dd1010519534b2d6fc44f0 ****/ + /****** CDM_Document::Modify ******/ + /****** md5 signature: 44fbaa7237dd1010519534b2d6fc44f0 ******/ %feature("compactdefaultargs") Modify; %feature("autodoc", "Return ------- @@ -900,8 +900,8 @@ Indicates that this document has been modified. this method increments the modif ") Modify; void Modify(); - /****************** Name ******************/ - /**** md5 signature: c5a61ad170fbf4cb3eaba703b96b3427 ****/ + /****** CDM_Document::Name ******/ + /****** md5 signature: c5a61ad170fbf4cb3eaba703b96b3427 ******/ %feature("compactdefaultargs") Name; %feature("autodoc", " Parameters @@ -918,8 +918,8 @@ Returns the name of the metadata of the to document of the reference identified ") Name; TCollection_ExtendedString Name(const Standard_Integer aReferenceIdentifier); - /****************** Open ******************/ - /**** md5 signature: f1ab173c076c622888436649c485a8d3 ****/ + /****** CDM_Document::Open ******/ + /****** md5 signature: f1ab173c076c622888436649c485a8d3 ******/ %feature("compactdefaultargs") Open; %feature("autodoc", " Parameters @@ -936,8 +936,8 @@ No available documentation. ") Open; void Open(const opencascade::handle & anApplication); - /****************** Print ******************/ - /**** md5 signature: fb65164879bb8268c90b67d68359a682 ****/ + /****** CDM_Document::Print ******/ + /****** md5 signature: fb65164879bb8268c90b67d68359a682 ******/ %feature("compactdefaultargs") Print; %feature("autodoc", " Parameters @@ -953,8 +953,8 @@ No available documentation. ") Print; Standard_OStream & Print(std::ostream &OutValue); - /****************** Reference ******************/ - /**** md5 signature: 8fb9128b48e5f8568694a49ff83331ff ****/ + /****** CDM_Document::Reference ******/ + /****** md5 signature: 8fb9128b48e5f8568694a49ff83331ff ******/ %feature("compactdefaultargs") Reference; %feature("autodoc", " Parameters @@ -971,8 +971,8 @@ No available documentation. ") Reference; opencascade::handle Reference(const Standard_Integer aReferenceIdentifier); - /****************** ReferenceCounter ******************/ - /**** md5 signature: 47d083a8fd4b8a72bd6f39ed448e103e ****/ + /****** CDM_Document::ReferenceCounter ******/ + /****** md5 signature: 47d083a8fd4b8a72bd6f39ed448e103e ******/ %feature("compactdefaultargs") ReferenceCounter; %feature("autodoc", "Return ------- @@ -984,8 +984,8 @@ No available documentation. ") ReferenceCounter; Standard_Integer ReferenceCounter(); - /****************** RemoveAllReferences ******************/ - /**** md5 signature: 6b9e122ba37998fb6a05a073acdd9b92 ****/ + /****** CDM_Document::RemoveAllReferences ******/ + /****** md5 signature: 6b9e122ba37998fb6a05a073acdd9b92 ******/ %feature("compactdefaultargs") RemoveAllReferences; %feature("autodoc", "Return ------- @@ -997,8 +997,8 @@ Removes all references having this document for from document. ") RemoveAllReferences; void RemoveAllReferences(); - /****************** RemoveReference ******************/ - /**** md5 signature: 4529742436960f07b87af71b701a2171 ****/ + /****** CDM_Document::RemoveReference ******/ + /****** md5 signature: 4529742436960f07b87af71b701a2171 ******/ %feature("compactdefaultargs") RemoveReference; %feature("autodoc", " Parameters @@ -1015,8 +1015,8 @@ Removes the reference between the from document and the to document identified b ") RemoveReference; void RemoveReference(const Standard_Integer aReferenceIdentifier); - /****************** RequestedComment ******************/ - /**** md5 signature: 2c8f0c5900e0c2cbeee3ca380fbc6985 ****/ + /****** CDM_Document::RequestedComment ******/ + /****** md5 signature: 2c8f0c5900e0c2cbeee3ca380fbc6985 ******/ %feature("compactdefaultargs") RequestedComment; %feature("autodoc", "Return ------- @@ -1028,8 +1028,8 @@ No available documentation. ") RequestedComment; TCollection_ExtendedString RequestedComment(); - /****************** RequestedFolder ******************/ - /**** md5 signature: c8a38ab2903ef3a11e8a84768aa8c528 ****/ + /****** CDM_Document::RequestedFolder ******/ + /****** md5 signature: c8a38ab2903ef3a11e8a84768aa8c528 ******/ %feature("compactdefaultargs") RequestedFolder; %feature("autodoc", "Return ------- @@ -1041,8 +1041,8 @@ No available documentation. ") RequestedFolder; TCollection_ExtendedString RequestedFolder(); - /****************** RequestedName ******************/ - /**** md5 signature: 4009a2976cb03e37a1f0f29540b865f5 ****/ + /****** CDM_Document::RequestedName ******/ + /****** md5 signature: 4009a2976cb03e37a1f0f29540b865f5 ******/ %feature("compactdefaultargs") RequestedName; %feature("autodoc", "Return ------- @@ -1054,8 +1054,8 @@ Determines under which the document is going to be store. by default the name of ") RequestedName; TCollection_ExtendedString RequestedName(); - /****************** RequestedPreviousVersion ******************/ - /**** md5 signature: 2971d8814c0ad9cd518a42eaadb2aff4 ****/ + /****** CDM_Document::RequestedPreviousVersion ******/ + /****** md5 signature: 2971d8814c0ad9cd518a42eaadb2aff4 ******/ %feature("compactdefaultargs") RequestedPreviousVersion; %feature("autodoc", "Return ------- @@ -1067,8 +1067,8 @@ No available documentation. ") RequestedPreviousVersion; TCollection_ExtendedString RequestedPreviousVersion(); - /****************** SetComment ******************/ - /**** md5 signature: 1a203fc1f3ae6ef1999a38cc9e5f3001 ****/ + /****** CDM_Document::SetComment ******/ + /****** md5 signature: 1a203fc1f3ae6ef1999a38cc9e5f3001 ******/ %feature("compactdefaultargs") SetComment; %feature("autodoc", " Parameters @@ -1085,8 +1085,8 @@ Associates a comment with this document. ") SetComment; void SetComment(TCollection_ExtendedString aComment); - /****************** SetComments ******************/ - /**** md5 signature: 9a6226c9c4e9d40c44b0c40fcfd457e5 ****/ + /****** CDM_Document::SetComments ******/ + /****** md5 signature: 9a6226c9c4e9d40c44b0c40fcfd457e5 ******/ %feature("compactdefaultargs") SetComments; %feature("autodoc", " Parameters @@ -1103,8 +1103,8 @@ Associates a comments with this document. ") SetComments; void SetComments(const TColStd_SequenceOfExtendedString & aComments); - /****************** SetIsReadOnly ******************/ - /**** md5 signature: 9f4f8649234a1411f6086a147fb0f5ad ****/ + /****** CDM_Document::SetIsReadOnly ******/ + /****** md5 signature: 9f4f8649234a1411f6086a147fb0f5ad ******/ %feature("compactdefaultargs") SetIsReadOnly; %feature("autodoc", "Return ------- @@ -1116,8 +1116,8 @@ No available documentation. ") SetIsReadOnly; void SetIsReadOnly(); - /****************** SetIsUpToDate ******************/ - /**** md5 signature: 4cf820e27e2c2ee1a5694cc34938d213 ****/ + /****** CDM_Document::SetIsUpToDate ******/ + /****** md5 signature: 4cf820e27e2c2ee1a5694cc34938d213 ******/ %feature("compactdefaultargs") SetIsUpToDate; %feature("autodoc", " Parameters @@ -1134,8 +1134,8 @@ Resets the modification counter in the given reference to the actual modificatio ") SetIsUpToDate; void SetIsUpToDate(const Standard_Integer aReferenceIdentifier); - /****************** SetMetaData ******************/ - /**** md5 signature: dc927976a3aa403aac8b90b594da511a ****/ + /****** CDM_Document::SetMetaData ******/ + /****** md5 signature: dc927976a3aa403aac8b90b594da511a ******/ %feature("compactdefaultargs") SetMetaData; %feature("autodoc", " Parameters @@ -1152,8 +1152,8 @@ Associates database information to a document which has been stored. the name of ") SetMetaData; void SetMetaData(const opencascade::handle & aMetaData); - /****************** SetModifications ******************/ - /**** md5 signature: 1d8646a65052776ce5cd54b79be20e6b ****/ + /****** CDM_Document::SetModifications ******/ + /****** md5 signature: 1d8646a65052776ce5cd54b79be20e6b ******/ %feature("compactdefaultargs") SetModifications; %feature("autodoc", " Parameters @@ -1170,8 +1170,8 @@ No available documentation. ") SetModifications; void SetModifications(const Standard_Integer Modifications); - /****************** SetReferenceCounter ******************/ - /**** md5 signature: 34d1c32056f0fedcd106c986c1fd8176 ****/ + /****** CDM_Document::SetReferenceCounter ******/ + /****** md5 signature: 34d1c32056f0fedcd106c986c1fd8176 ******/ %feature("compactdefaultargs") SetReferenceCounter; %feature("autodoc", " Parameters @@ -1188,8 +1188,8 @@ No available documentation. ") SetReferenceCounter; void SetReferenceCounter(const Standard_Integer aReferenceCounter); - /****************** SetRequestedComment ******************/ - /**** md5 signature: f34268b9079cda82757c3f2978722f10 ****/ + /****** CDM_Document::SetRequestedComment ******/ + /****** md5 signature: f34268b9079cda82757c3f2978722f10 ******/ %feature("compactdefaultargs") SetRequestedComment; %feature("autodoc", " Parameters @@ -1206,8 +1206,8 @@ Defines the comment with which the object should be stored. ") SetRequestedComment; void SetRequestedComment(TCollection_ExtendedString aComment); - /****************** SetRequestedFolder ******************/ - /**** md5 signature: 0957d8571358ae23729144fc08074f17 ****/ + /****** CDM_Document::SetRequestedFolder ******/ + /****** md5 signature: 0957d8571358ae23729144fc08074f17 ******/ %feature("compactdefaultargs") SetRequestedFolder; %feature("autodoc", " Parameters @@ -1224,8 +1224,8 @@ Defines the folder in which the object should be stored. ") SetRequestedFolder; void SetRequestedFolder(TCollection_ExtendedString aFolder); - /****************** SetRequestedName ******************/ - /**** md5 signature: 298752a1535e4ce720f8d2943f6c93d5 ****/ + /****** CDM_Document::SetRequestedName ******/ + /****** md5 signature: 298752a1535e4ce720f8d2943f6c93d5 ******/ %feature("compactdefaultargs") SetRequestedName; %feature("autodoc", " Parameters @@ -1242,8 +1242,8 @@ Defines the name under which the object should be stored. ") SetRequestedName; void SetRequestedName(TCollection_ExtendedString aName); - /****************** SetRequestedPreviousVersion ******************/ - /**** md5 signature: 1503faefc17021dc37f68166bf2a089c ****/ + /****** CDM_Document::SetRequestedPreviousVersion ******/ + /****** md5 signature: 1503faefc17021dc37f68166bf2a089c ******/ %feature("compactdefaultargs") SetRequestedPreviousVersion; %feature("autodoc", " Parameters @@ -1260,8 +1260,8 @@ No available documentation. ") SetRequestedPreviousVersion; void SetRequestedPreviousVersion(TCollection_ExtendedString aPreviousVersion); - /****************** ShallowReferences ******************/ - /**** md5 signature: aa297a568fbd85c49d8f09dcb24692ae ****/ + /****** CDM_Document::ShallowReferences ******/ + /****** md5 signature: aa297a568fbd85c49d8f09dcb24692ae ******/ %feature("compactdefaultargs") ShallowReferences; %feature("autodoc", " Parameters @@ -1278,8 +1278,8 @@ Returns true is this document references adocument;. ") ShallowReferences; Standard_Boolean ShallowReferences(const opencascade::handle & aDocument); - /****************** StorageFormat ******************/ - /**** md5 signature: 645330f0637961ced097e10cfe63d1a3 ****/ + /****** CDM_Document::StorageFormat ******/ + /****** md5 signature: 645330f0637961ced097e10cfe63d1a3 ******/ %feature("compactdefaultargs") StorageFormat; %feature("autodoc", "Return ------- @@ -1291,8 +1291,8 @@ The storage format is the key which is used to determine in the application reso ") StorageFormat; virtual TCollection_ExtendedString StorageFormat(); - /****************** StorageVersion ******************/ - /**** md5 signature: cfa5fceedf718765fa0109d82c3e0482 ****/ + /****** CDM_Document::StorageVersion ******/ + /****** md5 signature: cfa5fceedf718765fa0109d82c3e0482 ******/ %feature("compactdefaultargs") StorageVersion; %feature("autodoc", "Return ------- @@ -1304,8 +1304,8 @@ Returns the value of the modification counter at the time of storage. by default ") StorageVersion; Standard_Integer StorageVersion(); - /****************** ToReferencesNumber ******************/ - /**** md5 signature: 9ab7b7be8ebb8b32b4348f01bcfc580e ****/ + /****** CDM_Document::ToReferencesNumber ******/ + /****** md5 signature: 9ab7b7be8ebb8b32b4348f01bcfc580e ******/ %feature("compactdefaultargs") ToReferencesNumber; %feature("autodoc", "Return ------- @@ -1317,8 +1317,8 @@ Returns the number of references having this document as from document. ") ToReferencesNumber; Standard_Integer ToReferencesNumber(); - /****************** UnModify ******************/ - /**** md5 signature: 176026c3fd8351d101ca2563c78a92a8 ****/ + /****** CDM_Document::UnModify ******/ + /****** md5 signature: 176026c3fd8351d101ca2563c78a92a8 ******/ %feature("compactdefaultargs") UnModify; %feature("autodoc", "Return ------- @@ -1330,8 +1330,8 @@ No available documentation. ") UnModify; void UnModify(); - /****************** UnsetIsReadOnly ******************/ - /**** md5 signature: ad239bc1afe0a11934bb15c8844a6d1a ****/ + /****** CDM_Document::UnsetIsReadOnly ******/ + /****** md5 signature: ad239bc1afe0a11934bb15c8844a6d1a ******/ %feature("compactdefaultargs") UnsetIsReadOnly; %feature("autodoc", "Return ------- @@ -1343,8 +1343,8 @@ No available documentation. ") UnsetIsReadOnly; void UnsetIsReadOnly(); - /****************** UnsetIsStored ******************/ - /**** md5 signature: f9ec6a01bb2ee0e5c06cb3d363b2d4b7 ****/ + /****** CDM_Document::UnsetIsStored ******/ + /****** md5 signature: f9ec6a01bb2ee0e5c06cb3d363b2d4b7 ******/ %feature("compactdefaultargs") UnsetIsStored; %feature("autodoc", "Return ------- @@ -1356,8 +1356,8 @@ No available documentation. ") UnsetIsStored; void UnsetIsStored(); - /****************** UnsetRequestedPreviousVersion ******************/ - /**** md5 signature: 25c4d7340344fdb157fa9bf559bb8053 ****/ + /****** CDM_Document::UnsetRequestedPreviousVersion ******/ + /****** md5 signature: 25c4d7340344fdb157fa9bf559bb8053 ******/ %feature("compactdefaultargs") UnsetRequestedPreviousVersion; %feature("autodoc", "Return ------- @@ -1369,8 +1369,8 @@ No available documentation. ") UnsetRequestedPreviousVersion; void UnsetRequestedPreviousVersion(); - /****************** Update ******************/ - /**** md5 signature: 489e8b43103ceb1bedae872987b0cd2f ****/ + /****** CDM_Document::Update ******/ + /****** md5 signature: 489e8b43103ceb1bedae872987b0cd2f ******/ %feature("compactdefaultargs") Update; %feature("autodoc", " Parameters @@ -1389,8 +1389,8 @@ The update method will be called once for each reference, but it should not perf ") Update; virtual void Update(const opencascade::handle & aToDocument, const Standard_Integer aReferenceIdentifier, const Standard_Address aModifContext); - /****************** Update ******************/ - /**** md5 signature: 9fad82e8b94c706a007753d3361fc125 ****/ + /****** CDM_Document::Update ******/ + /****** md5 signature: 9fad82e8b94c706a007753d3361fc125 ******/ %feature("compactdefaultargs") Update; %feature("autodoc", " Parameters @@ -1407,8 +1407,8 @@ This method update will be called to signal the end of the modified references l ") Update; virtual Standard_Boolean Update(TCollection_ExtendedString & ErrorString); - /****************** Update ******************/ - /**** md5 signature: 39b31f53ec35285afdd1d13bf1b04e26 ****/ + /****** CDM_Document::Update ******/ + /****** md5 signature: 39b31f53ec35285afdd1d13bf1b04e26 ******/ %feature("compactdefaultargs") Update; %feature("autodoc", "Return ------- @@ -1420,8 +1420,8 @@ The following method should be used instead: //! update(me:mutable; errorstring: ") Update; virtual void Update(); - /****************** UpdateFromDocuments ******************/ - /**** md5 signature: 2007516be66761b05006844559207c16 ****/ + /****** CDM_Document::UpdateFromDocuments ******/ + /****** md5 signature: 2007516be66761b05006844559207c16 ******/ %feature("compactdefaultargs") UpdateFromDocuments; %feature("autodoc", " Parameters @@ -1455,8 +1455,8 @@ Call virtual method update on all referencing documents. this method keeps the l %nodefaultctor CDM_MetaData; class CDM_MetaData : public Standard_Transient { public: - /****************** Document ******************/ - /**** md5 signature: e16dc9e733287c94251ebd2305fccdda ****/ + /****** CDM_MetaData::Document ******/ + /****** md5 signature: e16dc9e733287c94251ebd2305fccdda ******/ %feature("compactdefaultargs") Document; %feature("autodoc", "Return ------- @@ -1489,8 +1489,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** FileName ******************/ - /**** md5 signature: 55453540d5ecaade8ddcde5846f5b88f ****/ + /****** CDM_MetaData::FileName ******/ + /****** md5 signature: 55453540d5ecaade8ddcde5846f5b88f ******/ %feature("compactdefaultargs") FileName; %feature("autodoc", "Return ------- @@ -1502,8 +1502,8 @@ No available documentation. ") FileName; TCollection_ExtendedString FileName(); - /****************** Folder ******************/ - /**** md5 signature: 6e4f71ec7a138611fba2655a4d9e2a6c ****/ + /****** CDM_MetaData::Folder ******/ + /****** md5 signature: 6e4f71ec7a138611fba2655a4d9e2a6c ******/ %feature("compactdefaultargs") Folder; %feature("autodoc", "Return ------- @@ -1515,8 +1515,8 @@ Returns the folder in which the meta-data has to be created or has to be found. ") Folder; TCollection_ExtendedString Folder(); - /****************** HasVersion ******************/ - /**** md5 signature: bb5780573c7c237fa50d67bc9fae80aa ****/ + /****** CDM_MetaData::HasVersion ******/ + /****** md5 signature: bb5780573c7c237fa50d67bc9fae80aa ******/ %feature("compactdefaultargs") HasVersion; %feature("autodoc", "Return ------- @@ -1528,8 +1528,8 @@ Indicates that the version has to be taken into account when searching the corre ") HasVersion; Standard_Boolean HasVersion(); - /****************** IsReadOnly ******************/ - /**** md5 signature: fa96cbb7774919470076f35f8b884f77 ****/ + /****** CDM_MetaData::IsReadOnly ******/ + /****** md5 signature: fa96cbb7774919470076f35f8b884f77 ******/ %feature("compactdefaultargs") IsReadOnly; %feature("autodoc", "Return ------- @@ -1541,8 +1541,8 @@ No available documentation. ") IsReadOnly; Standard_Boolean IsReadOnly(); - /****************** IsRetrieved ******************/ - /**** md5 signature: 23effb2d4afa2a6e9b927e4ae98051f1 ****/ + /****** CDM_MetaData::IsRetrieved ******/ + /****** md5 signature: 23effb2d4afa2a6e9b927e4ae98051f1 ******/ %feature("compactdefaultargs") IsRetrieved; %feature("autodoc", "Return ------- @@ -1554,8 +1554,8 @@ No available documentation. ") IsRetrieved; Standard_Boolean IsRetrieved(); - /****************** LookUp ******************/ - /**** md5 signature: 264e1c1cc539b8fdedbde10237de56db ****/ + /****** CDM_MetaData::LookUp ******/ + /****** md5 signature: 264e1c1cc539b8fdedbde10237de56db ******/ %feature("compactdefaultargs") LookUp; %feature("autodoc", " Parameters @@ -1577,8 +1577,8 @@ No available documentation. ") LookUp; static opencascade::handle LookUp(CDM_MetaDataLookUpTable & theLookUpTable, TCollection_ExtendedString aFolder, TCollection_ExtendedString aName, TCollection_ExtendedString aPath, TCollection_ExtendedString aFileName, const Standard_Boolean ReadOnly); - /****************** LookUp ******************/ - /**** md5 signature: 87e49a80556489bc1976c2417d858c6c ****/ + /****** CDM_MetaData::LookUp ******/ + /****** md5 signature: 87e49a80556489bc1976c2417d858c6c ******/ %feature("compactdefaultargs") LookUp; %feature("autodoc", " Parameters @@ -1601,8 +1601,8 @@ No available documentation. ") LookUp; static opencascade::handle LookUp(CDM_MetaDataLookUpTable & theLookUpTable, TCollection_ExtendedString aFolder, TCollection_ExtendedString aName, TCollection_ExtendedString aPath, TCollection_ExtendedString aVersion, TCollection_ExtendedString aFileName, const Standard_Boolean ReadOnly); - /****************** Name ******************/ - /**** md5 signature: a9e55299a1405b3a2863469f1a67f9cd ****/ + /****** CDM_MetaData::Name ******/ + /****** md5 signature: a9e55299a1405b3a2863469f1a67f9cd ******/ %feature("compactdefaultargs") Name; %feature("autodoc", "Return ------- @@ -1614,8 +1614,8 @@ Returns the name under which the meta-data has to be created or has to be found. ") Name; TCollection_ExtendedString Name(); - /****************** Path ******************/ - /**** md5 signature: f6c1194d39f76de7fb92f5471518f512 ****/ + /****** CDM_MetaData::Path ******/ + /****** md5 signature: f6c1194d39f76de7fb92f5471518f512 ******/ %feature("compactdefaultargs") Path; %feature("autodoc", "Return ------- @@ -1627,8 +1627,8 @@ No available documentation. ") Path; TCollection_ExtendedString Path(); - /****************** Print ******************/ - /**** md5 signature: fb65164879bb8268c90b67d68359a682 ****/ + /****** CDM_MetaData::Print ******/ + /****** md5 signature: fb65164879bb8268c90b67d68359a682 ******/ %feature("compactdefaultargs") Print; %feature("autodoc", " Parameters @@ -1644,8 +1644,8 @@ No available documentation. ") Print; Standard_OStream & Print(std::ostream &OutValue); - /****************** SetIsReadOnly ******************/ - /**** md5 signature: 9f4f8649234a1411f6086a147fb0f5ad ****/ + /****** CDM_MetaData::SetIsReadOnly ******/ + /****** md5 signature: 9f4f8649234a1411f6086a147fb0f5ad ******/ %feature("compactdefaultargs") SetIsReadOnly; %feature("autodoc", "Return ------- @@ -1657,8 +1657,8 @@ No available documentation. ") SetIsReadOnly; void SetIsReadOnly(); - /****************** UnsetDocument ******************/ - /**** md5 signature: d023d84ac523885764cfd5d5732edb98 ****/ + /****** CDM_MetaData::UnsetDocument ******/ + /****** md5 signature: d023d84ac523885764cfd5d5732edb98 ******/ %feature("compactdefaultargs") UnsetDocument; %feature("autodoc", "Return ------- @@ -1670,8 +1670,8 @@ No available documentation. ") UnsetDocument; void UnsetDocument(); - /****************** UnsetIsReadOnly ******************/ - /**** md5 signature: ad239bc1afe0a11934bb15c8844a6d1a ****/ + /****** CDM_MetaData::UnsetIsReadOnly ******/ + /****** md5 signature: ad239bc1afe0a11934bb15c8844a6d1a ******/ %feature("compactdefaultargs") UnsetIsReadOnly; %feature("autodoc", "Return ------- @@ -1683,8 +1683,8 @@ No available documentation. ") UnsetIsReadOnly; void UnsetIsReadOnly(); - /****************** Version ******************/ - /**** md5 signature: 82a6659ee5865225bff1f5a6263d6ca8 ****/ + /****** CDM_MetaData::Version ******/ + /****** md5 signature: 82a6659ee5865225bff1f5a6263d6ca8 ******/ %feature("compactdefaultargs") Version; %feature("autodoc", "Return ------- @@ -1713,8 +1713,8 @@ Returns the version under which the meta-data has to be found. warning: raises n %nodefaultctor CDM_Reference; class CDM_Reference : public Standard_Transient { public: - /****************** DocumentVersion ******************/ - /**** md5 signature: bf19019d65def7107fbf722b45605af2 ****/ + /****** CDM_Reference::DocumentVersion ******/ + /****** md5 signature: bf19019d65def7107fbf722b45605af2 ******/ %feature("compactdefaultargs") DocumentVersion; %feature("autodoc", "Return ------- @@ -1747,8 +1747,8 @@ Dump the object to JSON string. self->DumpJson(s, depth); return "{" + s.str() + "}" ;} }; - /****************** FromDocument ******************/ - /**** md5 signature: 074d50b6a0fbd464042f670a2a5d9430 ****/ + /****** CDM_Reference::FromDocument ******/ + /****** md5 signature: 074d50b6a0fbd464042f670a2a5d9430 ******/ %feature("compactdefaultargs") FromDocument; %feature("autodoc", "Return ------- @@ -1760,8 +1760,8 @@ No available documentation. ") FromDocument; opencascade::handle FromDocument(); - /****************** IsReadOnly ******************/ - /**** md5 signature: fa96cbb7774919470076f35f8b884f77 ****/ + /****** CDM_Reference::IsReadOnly ******/ + /****** md5 signature: fa96cbb7774919470076f35f8b884f77 ******/ %feature("compactdefaultargs") IsReadOnly; %feature("autodoc", "Return ------- @@ -1773,8 +1773,8 @@ No available documentation. ") IsReadOnly; Standard_Boolean IsReadOnly(); - /****************** ReferenceIdentifier ******************/ - /**** md5 signature: 3aa5e98e8d6049efe315cf6d973322f8 ****/ + /****** CDM_Reference::ReferenceIdentifier ******/ + /****** md5 signature: 3aa5e98e8d6049efe315cf6d973322f8 ******/ %feature("compactdefaultargs") ReferenceIdentifier; %feature("autodoc", "Return ------- @@ -1786,8 +1786,8 @@ No available documentation. ") ReferenceIdentifier; Standard_Integer ReferenceIdentifier(); - /****************** ToDocument ******************/ - /**** md5 signature: 3cdc7a527106d97d66a66516fc680b2d ****/ + /****** CDM_Reference::ToDocument ******/ + /****** md5 signature: 3cdc7a527106d97d66a66516fc680b2d ******/ %feature("compactdefaultargs") ToDocument; %feature("autodoc", "Return ------- @@ -1815,8 +1815,8 @@ No available documentation. ******************************/ class CDM_ReferenceIterator { public: - /****************** CDM_ReferenceIterator ******************/ - /**** md5 signature: ac629575b6c6ce3e0dda06341cd98b11 ****/ + /****** CDM_ReferenceIterator::CDM_ReferenceIterator ******/ + /****** md5 signature: ac629575b6c6ce3e0dda06341cd98b11 ******/ %feature("compactdefaultargs") CDM_ReferenceIterator; %feature("autodoc", " Parameters @@ -1833,8 +1833,8 @@ No available documentation. ") CDM_ReferenceIterator; CDM_ReferenceIterator(const opencascade::handle & aDocument); - /****************** Document ******************/ - /**** md5 signature: e16dc9e733287c94251ebd2305fccdda ****/ + /****** CDM_ReferenceIterator::Document ******/ + /****** md5 signature: e16dc9e733287c94251ebd2305fccdda ******/ %feature("compactdefaultargs") Document; %feature("autodoc", "Return ------- @@ -1846,8 +1846,8 @@ No available documentation. ") Document; opencascade::handle Document(); - /****************** DocumentVersion ******************/ - /**** md5 signature: bf19019d65def7107fbf722b45605af2 ****/ + /****** CDM_ReferenceIterator::DocumentVersion ******/ + /****** md5 signature: bf19019d65def7107fbf722b45605af2 ******/ %feature("compactdefaultargs") DocumentVersion; %feature("autodoc", "Return ------- @@ -1859,8 +1859,8 @@ Returns the document version in the reference. ") DocumentVersion; Standard_Integer DocumentVersion(); - /****************** More ******************/ - /**** md5 signature: 6f6e915c9a3dca758c059d9e8af02dff ****/ + /****** CDM_ReferenceIterator::More ******/ + /****** md5 signature: 6f6e915c9a3dca758c059d9e8af02dff ******/ %feature("compactdefaultargs") More; %feature("autodoc", "Return ------- @@ -1872,8 +1872,8 @@ No available documentation. ") More; Standard_Boolean More(); - /****************** Next ******************/ - /**** md5 signature: f35c0df5f1d7c877986db18081404532 ****/ + /****** CDM_ReferenceIterator::Next ******/ + /****** md5 signature: f35c0df5f1d7c877986db18081404532 ******/ %feature("compactdefaultargs") Next; %feature("autodoc", "Return ------- @@ -1885,8 +1885,8 @@ No available documentation. ") Next; void Next(); - /****************** ReferenceIdentifier ******************/ - /**** md5 signature: 0b6f1d6aeee20151c55bab21628d6c27 ****/ + /****** CDM_ReferenceIterator::ReferenceIdentifier ******/ + /****** md5 signature: 0b6f1d6aeee20151c55bab21628d6c27 ******/ %feature("compactdefaultargs") ReferenceIdentifier; %feature("autodoc", "Return ------- diff --git a/src/SWIG_files/wrapper/CPnts.i b/src/SWIG_files/wrapper/CPnts.i index 81cf533e7..5f2370569 100644 --- a/src/SWIG_files/wrapper/CPnts.i +++ b/src/SWIG_files/wrapper/CPnts.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define CPNTSDOCSTRING "CPnts module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_cpnts.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_cpnts.html" %enddef %module (package="OCC.Core", docstring=CPNTSDOCSTRING) CPnts @@ -91,8 +91,8 @@ typedef Standard_Real ( * CPnts_RealFunction ) ( const Standard_Real, const Stan ****************************/ class CPnts_AbscissaPoint { public: - /****************** CPnts_AbscissaPoint ******************/ - /**** md5 signature: 565b68db0c8347723f0d4d0ebae69cc2 ****/ + /****** CPnts_AbscissaPoint::CPnts_AbscissaPoint ******/ + /****** md5 signature: 565b68db0c8347723f0d4d0ebae69cc2 ******/ %feature("compactdefaultargs") CPnts_AbscissaPoint; %feature("autodoc", "Return ------- @@ -104,8 +104,8 @@ No available documentation. ") CPnts_AbscissaPoint; CPnts_AbscissaPoint(); - /****************** CPnts_AbscissaPoint ******************/ - /**** md5 signature: dcc9a717899dec558afa4d9cafe504b2 ****/ + /****** CPnts_AbscissaPoint::CPnts_AbscissaPoint ******/ + /****** md5 signature: dcc9a717899dec558afa4d9cafe504b2 ******/ %feature("compactdefaultargs") CPnts_AbscissaPoint; %feature("autodoc", " Parameters @@ -125,8 +125,8 @@ The algorithm computes a point on a curve at the distance fro ") CPnts_AbscissaPoint; CPnts_AbscissaPoint(const Adaptor3d_Curve & C, const Standard_Real Abscissa, const Standard_Real U0, const Standard_Real Resolution); - /****************** CPnts_AbscissaPoint ******************/ - /**** md5 signature: f61108658c8a9b1f7e88a63a0a95e128 ****/ + /****** CPnts_AbscissaPoint::CPnts_AbscissaPoint ******/ + /****** md5 signature: f61108658c8a9b1f7e88a63a0a95e128 ******/ %feature("compactdefaultargs") CPnts_AbscissaPoint; %feature("autodoc", " Parameters @@ -146,8 +146,8 @@ The algorithm computes a point on a curve at the distance fro ") CPnts_AbscissaPoint; CPnts_AbscissaPoint(const Adaptor2d_Curve2d & C, const Standard_Real Abscissa, const Standard_Real U0, const Standard_Real Resolution); - /****************** CPnts_AbscissaPoint ******************/ - /**** md5 signature: 4b965b4c1e38cd5c5c61839c0aa0c443 ****/ + /****** CPnts_AbscissaPoint::CPnts_AbscissaPoint ******/ + /****** md5 signature: 4b965b4c1e38cd5c5c61839c0aa0c443 ******/ %feature("compactdefaultargs") CPnts_AbscissaPoint; %feature("autodoc", " Parameters @@ -168,8 +168,8 @@ The algorithm computes a point on a curve at the distance fro ") CPnts_AbscissaPoint; CPnts_AbscissaPoint(const Adaptor3d_Curve & C, const Standard_Real Abscissa, const Standard_Real U0, const Standard_Real Ui, const Standard_Real Resolution); - /****************** CPnts_AbscissaPoint ******************/ - /**** md5 signature: 55d5c42afa69db1719eeacb7e8767154 ****/ + /****** CPnts_AbscissaPoint::CPnts_AbscissaPoint ******/ + /****** md5 signature: 55d5c42afa69db1719eeacb7e8767154 ******/ %feature("compactdefaultargs") CPnts_AbscissaPoint; %feature("autodoc", " Parameters @@ -190,8 +190,8 @@ The algorithm computes a point on a curve at the distance fro ") CPnts_AbscissaPoint; CPnts_AbscissaPoint(const Adaptor2d_Curve2d & C, const Standard_Real Abscissa, const Standard_Real U0, const Standard_Real Ui, const Standard_Real Resolution); - /****************** AdvPerform ******************/ - /**** md5 signature: 951d7d00a89f35f930b917ffe12a10e6 ****/ + /****** CPnts_AbscissaPoint::AdvPerform ******/ + /****** md5 signature: 951d7d00a89f35f930b917ffe12a10e6 ******/ %feature("compactdefaultargs") AdvPerform; %feature("autodoc", " Parameters @@ -211,8 +211,8 @@ Computes the point at the distance of the curve; performs more approp ") AdvPerform; void AdvPerform(const Standard_Real Abscissa, const Standard_Real U0, const Standard_Real Ui, const Standard_Real Resolution); - /****************** Init ******************/ - /**** md5 signature: 05d67a73334304f898ea37473bae91e6 ****/ + /****** CPnts_AbscissaPoint::Init ******/ + /****** md5 signature: 05d67a73334304f898ea37473bae91e6 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -229,8 +229,8 @@ Initializes the resolution function with . ") Init; void Init(const Adaptor3d_Curve & C); - /****************** Init ******************/ - /**** md5 signature: ce4e00d59388afb7768b24cb988bf1fb ****/ + /****** CPnts_AbscissaPoint::Init ******/ + /****** md5 signature: ce4e00d59388afb7768b24cb988bf1fb ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -247,8 +247,8 @@ Initializes the resolution function with . ") Init; void Init(const Adaptor2d_Curve2d & C); - /****************** Init ******************/ - /**** md5 signature: e92216eb760349ca106506e6088e055d ****/ + /****** CPnts_AbscissaPoint::Init ******/ + /****** md5 signature: e92216eb760349ca106506e6088e055d ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -266,8 +266,8 @@ Initializes the resolution function with . ") Init; void Init(const Adaptor3d_Curve & C, const Standard_Real Tol); - /****************** Init ******************/ - /**** md5 signature: 939717cae9848f8ded250dc6fa561c85 ****/ + /****** CPnts_AbscissaPoint::Init ******/ + /****** md5 signature: 939717cae9848f8ded250dc6fa561c85 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -285,8 +285,8 @@ Initializes the resolution function with . ") Init; void Init(const Adaptor2d_Curve2d & C, const Standard_Real Tol); - /****************** Init ******************/ - /**** md5 signature: 87ca1eea65e2958f5df2b13a0b5e6780 ****/ + /****** CPnts_AbscissaPoint::Init ******/ + /****** md5 signature: 87ca1eea65e2958f5df2b13a0b5e6780 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -305,8 +305,8 @@ Initializes the resolution function with between u1 and u2. ") Init; void Init(const Adaptor3d_Curve & C, const Standard_Real U1, const Standard_Real U2); - /****************** Init ******************/ - /**** md5 signature: b77983d5b38237e26121dc1c95e5c88b ****/ + /****** CPnts_AbscissaPoint::Init ******/ + /****** md5 signature: b77983d5b38237e26121dc1c95e5c88b ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -325,8 +325,8 @@ Initializes the resolution function with between u1 and u2. ") Init; void Init(const Adaptor2d_Curve2d & C, const Standard_Real U1, const Standard_Real U2); - /****************** Init ******************/ - /**** md5 signature: cb69652f51f723a9243f4f750acb1157 ****/ + /****** CPnts_AbscissaPoint::Init ******/ + /****** md5 signature: cb69652f51f723a9243f4f750acb1157 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -346,8 +346,8 @@ Initializes the resolution function with between u1 and u2. ") Init; void Init(const Adaptor3d_Curve & C, const Standard_Real U1, const Standard_Real U2, const Standard_Real Tol); - /****************** Init ******************/ - /**** md5 signature: 3e59992846d9e8300e2f40695942e4c6 ****/ + /****** CPnts_AbscissaPoint::Init ******/ + /****** md5 signature: 3e59992846d9e8300e2f40695942e4c6 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -367,8 +367,8 @@ Initializes the resolution function with between u1 and u2. ") Init; void Init(const Adaptor2d_Curve2d & C, const Standard_Real U1, const Standard_Real U2, const Standard_Real Tol); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** CPnts_AbscissaPoint::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -380,8 +380,8 @@ True if the computation was successful, false otherwise. ") IsDone; Standard_Boolean IsDone(); - /****************** Length ******************/ - /**** md5 signature: eba769e16675af7987425cafd53458ca ****/ + /****** CPnts_AbscissaPoint::Length ******/ + /****** md5 signature: eba769e16675af7987425cafd53458ca ******/ %feature("compactdefaultargs") Length; %feature("autodoc", " Parameters @@ -398,8 +398,8 @@ Computes the length of the curve . ") Length; static Standard_Real Length(const Adaptor3d_Curve & C); - /****************** Length ******************/ - /**** md5 signature: 765cbebd0c62408a590e139d7941ff63 ****/ + /****** CPnts_AbscissaPoint::Length ******/ + /****** md5 signature: 765cbebd0c62408a590e139d7941ff63 ******/ %feature("compactdefaultargs") Length; %feature("autodoc", " Parameters @@ -416,8 +416,8 @@ Computes the length of the curve . ") Length; static Standard_Real Length(const Adaptor2d_Curve2d & C); - /****************** Length ******************/ - /**** md5 signature: 0c294f64dbc0f6a4115eef7dd6094c0a ****/ + /****** CPnts_AbscissaPoint::Length ******/ + /****** md5 signature: 0c294f64dbc0f6a4115eef7dd6094c0a ******/ %feature("compactdefaultargs") Length; %feature("autodoc", " Parameters @@ -435,8 +435,8 @@ Computes the length of the curve with the given tolerance. ") Length; static Standard_Real Length(const Adaptor3d_Curve & C, const Standard_Real Tol); - /****************** Length ******************/ - /**** md5 signature: 2369489a44197d1ca38f55d75b7ed4bb ****/ + /****** CPnts_AbscissaPoint::Length ******/ + /****** md5 signature: 2369489a44197d1ca38f55d75b7ed4bb ******/ %feature("compactdefaultargs") Length; %feature("autodoc", " Parameters @@ -454,8 +454,8 @@ Computes the length of the curve with the given tolerance. ") Length; static Standard_Real Length(const Adaptor2d_Curve2d & C, const Standard_Real Tol); - /****************** Length ******************/ - /**** md5 signature: 0ff9ac31546f5bd02057bb36f563f5d4 ****/ + /****** CPnts_AbscissaPoint::Length ******/ + /****** md5 signature: 0ff9ac31546f5bd02057bb36f563f5d4 ******/ %feature("compactdefaultargs") Length; %feature("autodoc", " Parameters @@ -474,8 +474,8 @@ Computes the length of the curve between and . ") Length; static Standard_Real Length(const Adaptor3d_Curve & C, const Standard_Real U1, const Standard_Real U2); - /****************** Length ******************/ - /**** md5 signature: 1e46daf657fccb259b7d9f58dc7e413b ****/ + /****** CPnts_AbscissaPoint::Length ******/ + /****** md5 signature: 1e46daf657fccb259b7d9f58dc7e413b ******/ %feature("compactdefaultargs") Length; %feature("autodoc", " Parameters @@ -494,8 +494,8 @@ Computes the length of the curve between and . ") Length; static Standard_Real Length(const Adaptor2d_Curve2d & C, const Standard_Real U1, const Standard_Real U2); - /****************** Length ******************/ - /**** md5 signature: 2e36ed9a5703e01dfe14dffcfd406a78 ****/ + /****** CPnts_AbscissaPoint::Length ******/ + /****** md5 signature: 2e36ed9a5703e01dfe14dffcfd406a78 ******/ %feature("compactdefaultargs") Length; %feature("autodoc", " Parameters @@ -515,8 +515,8 @@ Computes the length of the curve between and with the given tolera ") Length; static Standard_Real Length(const Adaptor3d_Curve & C, const Standard_Real U1, const Standard_Real U2, const Standard_Real Tol); - /****************** Length ******************/ - /**** md5 signature: 01305edaf2437396737fa3c58ad94127 ****/ + /****** CPnts_AbscissaPoint::Length ******/ + /****** md5 signature: 01305edaf2437396737fa3c58ad94127 ******/ %feature("compactdefaultargs") Length; %feature("autodoc", " Parameters @@ -536,8 +536,8 @@ Computes the length of the curve between and with the given tolera ") Length; static Standard_Real Length(const Adaptor2d_Curve2d & C, const Standard_Real U1, const Standard_Real U2, const Standard_Real Tol); - /****************** Parameter ******************/ - /**** md5 signature: ecccdeaeaa0deed24f47e61ad75d24f1 ****/ + /****** CPnts_AbscissaPoint::Parameter ******/ + /****** md5 signature: ecccdeaeaa0deed24f47e61ad75d24f1 ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", "Return ------- @@ -549,8 +549,8 @@ Returns the parameter of the solution. ") Parameter; Standard_Real Parameter(); - /****************** Perform ******************/ - /**** md5 signature: 2e65ba72858d674b8c44518b7193d998 ****/ + /****** CPnts_AbscissaPoint::Perform ******/ + /****** md5 signature: 2e65ba72858d674b8c44518b7193d998 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -569,8 +569,8 @@ Computes the point at the distance of the curve. u0 is the parameter ") Perform; void Perform(const Standard_Real Abscissa, const Standard_Real U0, const Standard_Real Resolution); - /****************** Perform ******************/ - /**** md5 signature: 022ad22512c6b945dc45153665cc57d8 ****/ + /****** CPnts_AbscissaPoint::Perform ******/ + /****** md5 signature: 022ad22512c6b945dc45153665cc57d8 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -590,8 +590,8 @@ Computes the point at the distance of the curve. u0 is the parameter ") Perform; void Perform(const Standard_Real Abscissa, const Standard_Real U0, const Standard_Real Ui, const Standard_Real Resolution); - /****************** SetParameter ******************/ - /**** md5 signature: d3a5f0f306e71f1174aeb726bf74eacc ****/ + /****** CPnts_AbscissaPoint::SetParameter ******/ + /****** md5 signature: d3a5f0f306e71f1174aeb726bf74eacc ******/ %feature("compactdefaultargs") SetParameter; %feature("autodoc", " Parameters @@ -622,8 +622,8 @@ Enforce the solution, used by gcpnts. ******************************/ class CPnts_MyGaussFunction : public math_Function { public: - /****************** CPnts_MyGaussFunction ******************/ - /**** md5 signature: f30ae6546be9a0f114d2ac5c57bb772c ****/ + /****** CPnts_MyGaussFunction::CPnts_MyGaussFunction ******/ + /****** md5 signature: f30ae6546be9a0f114d2ac5c57bb772c ******/ %feature("compactdefaultargs") CPnts_MyGaussFunction; %feature("autodoc", "Return ------- @@ -635,8 +635,8 @@ No available documentation. ") CPnts_MyGaussFunction; CPnts_MyGaussFunction(); - /****************** Init ******************/ - /**** md5 signature: 39f39a8070dd6270a565421459f5d889 ****/ + /****** CPnts_MyGaussFunction::Init ******/ + /****** md5 signature: 39f39a8070dd6270a565421459f5d889 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -654,8 +654,8 @@ F is a pointer on a function d is a client data //! each value is computed with ") Init; void Init(const CPnts_RealFunction & F, const Standard_Address D); - /****************** Value ******************/ - /**** md5 signature: 860bcc3da162e9f9f232f07518550196 ****/ + /****** CPnts_MyGaussFunction::Value ******/ + /****** md5 signature: 860bcc3da162e9f9f232f07518550196 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -686,8 +686,8 @@ No available documentation. *****************************/ class CPnts_MyRootFunction : public math_FunctionWithDerivative { public: - /****************** CPnts_MyRootFunction ******************/ - /**** md5 signature: d6e7e5bf2fd8d0eb826cd67d903c4dec ****/ + /****** CPnts_MyRootFunction::CPnts_MyRootFunction ******/ + /****** md5 signature: d6e7e5bf2fd8d0eb826cd67d903c4dec ******/ %feature("compactdefaultargs") CPnts_MyRootFunction; %feature("autodoc", "Return ------- @@ -699,8 +699,8 @@ No available documentation. ") CPnts_MyRootFunction; CPnts_MyRootFunction(); - /****************** Derivative ******************/ - /**** md5 signature: 07088c713b316ad61988ae53e107d4d9 ****/ + /****** CPnts_MyRootFunction::Derivative ******/ + /****** md5 signature: 07088c713b316ad61988ae53e107d4d9 ******/ %feature("compactdefaultargs") Derivative; %feature("autodoc", " Parameters @@ -717,8 +717,8 @@ This is f(x,d). ") Derivative; Standard_Boolean Derivative(const Standard_Real X, Standard_Real &OutValue); - /****************** Init ******************/ - /**** md5 signature: 5f1c4dc9119754c59956235d7e867190 ****/ + /****** CPnts_MyRootFunction::Init ******/ + /****** md5 signature: 5f1c4dc9119754c59956235d7e867190 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -737,8 +737,8 @@ F is a pointer on a function d is a client data order is the order of integratio ") Init; void Init(const CPnts_RealFunction & F, const Standard_Address D, const Standard_Integer Order); - /****************** Init ******************/ - /**** md5 signature: fe427beeb4a20724629011bcd7029afd ****/ + /****** CPnts_MyRootFunction::Init ******/ + /****** md5 signature: fe427beeb4a20724629011bcd7029afd ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -756,8 +756,8 @@ We want to solve integral(x0,x,f(x,d)) = l. ") Init; void Init(const Standard_Real X0, const Standard_Real L); - /****************** Init ******************/ - /**** md5 signature: 5f72356df0e880274ae4484b7237a98d ****/ + /****** CPnts_MyRootFunction::Init ******/ + /****** md5 signature: 5f72356df0e880274ae4484b7237a98d ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -776,8 +776,8 @@ We want to solve integral(x0,x,f(x,d)) = l with given tolerance. ") Init; void Init(const Standard_Real X0, const Standard_Real L, const Standard_Real Tol); - /****************** Value ******************/ - /**** md5 signature: 860bcc3da162e9f9f232f07518550196 ****/ + /****** CPnts_MyRootFunction::Value ******/ + /****** md5 signature: 860bcc3da162e9f9f232f07518550196 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -794,8 +794,8 @@ This is integral(x0,x,f(x,d)) - l. ") Value; Standard_Boolean Value(const Standard_Real X, Standard_Real &OutValue); - /****************** Values ******************/ - /**** md5 signature: c949600f2bbcaa0e904a51394da59e1d ****/ + /****** CPnts_MyRootFunction::Values ******/ + /****** md5 signature: c949600f2bbcaa0e904a51394da59e1d ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -827,8 +827,8 @@ No available documentation. ********************************/ class CPnts_UniformDeflection { public: - /****************** CPnts_UniformDeflection ******************/ - /**** md5 signature: 1536f4244052fbb6d354dccdb7754fe1 ****/ + /****** CPnts_UniformDeflection::CPnts_UniformDeflection ******/ + /****** md5 signature: 1536f4244052fbb6d354dccdb7754fe1 ******/ %feature("compactdefaultargs") CPnts_UniformDeflection; %feature("autodoc", "Return ------- @@ -840,8 +840,8 @@ Creation of a indefinite uniformdeflection. ") CPnts_UniformDeflection; CPnts_UniformDeflection(); - /****************** CPnts_UniformDeflection ******************/ - /**** md5 signature: 84fa75f241a11f8ce3c7710f14125eee ****/ + /****** CPnts_UniformDeflection::CPnts_UniformDeflection ******/ + /****** md5 signature: 84fa75f241a11f8ce3c7710f14125eee ******/ %feature("compactdefaultargs") CPnts_UniformDeflection; %feature("autodoc", " Parameters @@ -861,8 +861,8 @@ Computes a uniform deflection distribution of points on the curve . ") CPnts_UniformDeflection; CPnts_UniformDeflection(const Adaptor3d_Curve & C, const Standard_Real Deflection, const Standard_Real U1, const Standard_Real U2, const Standard_Real Resolution, const Standard_Boolean WithControl); - /****************** CPnts_UniformDeflection ******************/ - /**** md5 signature: b92aad6ac27525ef3e2fa6be7730b792 ****/ + /****** CPnts_UniformDeflection::CPnts_UniformDeflection ******/ + /****** md5 signature: b92aad6ac27525ef3e2fa6be7730b792 ******/ %feature("compactdefaultargs") CPnts_UniformDeflection; %feature("autodoc", " Parameters @@ -928,8 +928,8 @@ As above with 2d curve. ") CPnts_UniformDeflection; CPnts_UniformDeflection(const Adaptor2d_Curve2d & C, const Standard_Real Deflection, const Standard_Real U1, const Standard_Real U2, const Standard_Real Resolution, const Standard_Boolean WithControl); - /****************** Initialize ******************/ - /**** md5 signature: 3e04248745b7abf1ca127fe927a9d03a ****/ + /****** CPnts_UniformDeflection::Initialize ******/ + /****** md5 signature: 3e04248745b7abf1ca127fe927a9d03a ******/ %feature("compactdefaultargs") Initialize; %feature("autodoc", " Parameters @@ -949,8 +949,8 @@ Initialize the algorithms with , , , and , , , and , , , , and , , , , and . */ %define CSLIBDOCSTRING "CSLib module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_cslib.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_cslib.html" %enddef %module (package="OCC.Core", docstring=CSLIBDOCSTRING) CSLib @@ -147,8 +147,8 @@ CSLib_D1NuIsParallelD1Nv = CSLib_NormalStatus.CSLib_D1NuIsParallelD1Nv %rename(cslib) CSLib; class CSLib { public: - /****************** DNNUV ******************/ - /**** md5 signature: f674d5bb3da7d5c8ec8964019c53fd6f ****/ + /****** CSLib::DNNUV ******/ + /****** md5 signature: f674d5bb3da7d5c8ec8964019c53fd6f ******/ %feature("compactdefaultargs") DNNUV; %feature("autodoc", " Parameters @@ -167,8 +167,8 @@ Description ") DNNUV; static gp_Vec DNNUV(const Standard_Integer Nu, const Standard_Integer Nv, const TColgp_Array2OfVec & DerSurf); - /****************** DNNUV ******************/ - /**** md5 signature: b9480cb99392e18e493b1734f5a8bb7a ****/ + /****** CSLib::DNNUV ******/ + /****** md5 signature: b9480cb99392e18e493b1734f5a8bb7a ******/ %feature("compactdefaultargs") DNNUV; %feature("autodoc", " Parameters @@ -188,8 +188,8 @@ Computes the derivatives of order nu in the direction nu and nv in the direction ") DNNUV; static gp_Vec DNNUV(const Standard_Integer Nu, const Standard_Integer Nv, const TColgp_Array2OfVec & DerSurf1, const TColgp_Array2OfVec & DerSurf2); - /****************** DNNormal ******************/ - /**** md5 signature: 69065aef058eb5e08acc436add152f29 ****/ + /****** CSLib::DNNormal ******/ + /****** md5 signature: 69065aef058eb5e08acc436add152f29 ******/ %feature("compactdefaultargs") DNNormal; %feature("autodoc", " Parameters @@ -210,8 +210,8 @@ Description ") DNNormal; static gp_Vec DNNormal(const Standard_Integer Nu, const Standard_Integer Nv, const TColgp_Array2OfVec & DerNUV, const Standard_Integer Iduref = 0, const Standard_Integer Idvref = 0); - /****************** Normal ******************/ - /**** md5 signature: 981b761b520114039d71ca5786f4799c ****/ + /****** CSLib::Normal ******/ + /****** md5 signature: 981b761b520114039d71ca5786f4799c ******/ %feature("compactdefaultargs") Normal; %feature("autodoc", " Parameters @@ -231,8 +231,8 @@ The following functions computes the normal to a surface inherits functionwithde ") Normal; static void Normal(const gp_Vec & D1U, const gp_Vec & D1V, const Standard_Real SinTol, CSLib_DerivativeStatus &OutValue, gp_Dir & Normal); - /****************** Normal ******************/ - /**** md5 signature: c6f714a72df04467bcde57a861427ba8 ****/ + /****** CSLib::Normal ******/ + /****** md5 signature: c6f714a72df04467bcde57a861427ba8 ******/ %feature("compactdefaultargs") Normal; %feature("autodoc", " Parameters @@ -256,8 +256,8 @@ If there is a singularity on the surface the previous method cannot compute the ") Normal; static void Normal(const gp_Vec & D1U, const gp_Vec & D1V, const gp_Vec & D2U, const gp_Vec & D2V, const gp_Vec & D2UV, const Standard_Real SinTol, Standard_Boolean &OutValue, CSLib_NormalStatus &OutValue, gp_Dir & Normal); - /****************** Normal ******************/ - /**** md5 signature: c279b71fb514c274c1c831d9fc8fe04b ****/ + /****** CSLib::Normal ******/ + /****** md5 signature: c279b71fb514c274c1c831d9fc8fe04b ******/ %feature("compactdefaultargs") Normal; %feature("autodoc", " Parameters @@ -277,8 +277,8 @@ Computes the normal direction of a surface as the cross product between d1u and ") Normal; static void Normal(const gp_Vec & D1U, const gp_Vec & D1V, const Standard_Real MagTol, CSLib_NormalStatus &OutValue, gp_Dir & Normal); - /****************** Normal ******************/ - /**** md5 signature: 88a6c5086247b570883b6e6a97c94c26 ****/ + /****** CSLib::Normal ******/ + /****** md5 signature: 88a6c5086247b570883b6e6a97c94c26 ******/ %feature("compactdefaultargs") Normal; %feature("autodoc", " Parameters @@ -320,8 +320,8 @@ Find the first order k0 of deriviative of nuv where: foreach order < k0 all the **********************/ class CSLib_Class2d { public: - /****************** CSLib_Class2d ******************/ - /**** md5 signature: 58ef837df944717c9a99b4d352cbc9e8 ****/ + /****** CSLib_Class2d::CSLib_Class2d ******/ + /****** md5 signature: 58ef837df944717c9a99b4d352cbc9e8 ******/ %feature("compactdefaultargs") CSLib_Class2d; %feature("autodoc", " Parameters @@ -344,8 +344,8 @@ Constructs the 2d-polygon. thepnts2d is the set of the vertices (closed polygon ") CSLib_Class2d; CSLib_Class2d(const TColgp_Array1OfPnt2d & thePnts2d, const Standard_Real theTolU, const Standard_Real theTolV, const Standard_Real theUMin, const Standard_Real theVMin, const Standard_Real theUMax, const Standard_Real theVMax); - /****************** CSLib_Class2d ******************/ - /**** md5 signature: 5f71d219685ae532f521ddc75d2d90b2 ****/ + /****** CSLib_Class2d::CSLib_Class2d ******/ + /****** md5 signature: 5f71d219685ae532f521ddc75d2d90b2 ******/ %feature("compactdefaultargs") CSLib_Class2d; %feature("autodoc", " Parameters @@ -368,8 +368,8 @@ Constructs the 2d-polygon. thepnts2d is the set of the vertices (closed polygon ") CSLib_Class2d; CSLib_Class2d(const TColgp_SequenceOfPnt2d & thePnts2d, const Standard_Real theTolU, const Standard_Real theTolV, const Standard_Real theUMin, const Standard_Real theVMin, const Standard_Real theUMax, const Standard_Real theVMax); - /****************** InternalSiDans ******************/ - /**** md5 signature: 6857130ec6a90b704692bb0184af3b71 ****/ + /****** CSLib_Class2d::InternalSiDans ******/ + /****** md5 signature: 6857130ec6a90b704692bb0184af3b71 ******/ %feature("compactdefaultargs") InternalSiDans; %feature("autodoc", " Parameters @@ -387,8 +387,8 @@ No available documentation. ") InternalSiDans; Standard_Integer InternalSiDans(const Standard_Real X, const Standard_Real Y); - /****************** InternalSiDansOuOn ******************/ - /**** md5 signature: f60153c16f80cdf69aaea130d49abd02 ****/ + /****** CSLib_Class2d::InternalSiDansOuOn ******/ + /****** md5 signature: f60153c16f80cdf69aaea130d49abd02 ******/ %feature("compactdefaultargs") InternalSiDansOuOn; %feature("autodoc", " Parameters @@ -406,8 +406,8 @@ No available documentation. ") InternalSiDansOuOn; Standard_Integer InternalSiDansOuOn(const Standard_Real X, const Standard_Real Y); - /****************** SiDans ******************/ - /**** md5 signature: 9b220e8bf6a2497107b0da19cdf5412c ****/ + /****** CSLib_Class2d::SiDans ******/ + /****** md5 signature: 9b220e8bf6a2497107b0da19cdf5412c ******/ %feature("compactdefaultargs") SiDans; %feature("autodoc", " Parameters @@ -424,8 +424,8 @@ No available documentation. ") SiDans; Standard_Integer SiDans(const gp_Pnt2d & P); - /****************** SiDans_OnMode ******************/ - /**** md5 signature: e555cb83d2160f5058edabf2250efcbf ****/ + /****** CSLib_Class2d::SiDans_OnMode ******/ + /****** md5 signature: e555cb83d2160f5058edabf2250efcbf ******/ %feature("compactdefaultargs") SiDans_OnMode; %feature("autodoc", " Parameters @@ -457,8 +457,8 @@ No available documentation. ****************************/ class CSLib_NormalPolyDef : public math_FunctionWithDerivative { public: - /****************** CSLib_NormalPolyDef ******************/ - /**** md5 signature: 7c0615f71d5d9d2b2644fff475bf64ce ****/ + /****** CSLib_NormalPolyDef::CSLib_NormalPolyDef ******/ + /****** md5 signature: 7c0615f71d5d9d2b2644fff475bf64ce ******/ %feature("compactdefaultargs") CSLib_NormalPolyDef; %feature("autodoc", " Parameters @@ -476,8 +476,8 @@ No available documentation. ") CSLib_NormalPolyDef; CSLib_NormalPolyDef(const Standard_Integer k0, const TColStd_Array1OfReal & li); - /****************** Derivative ******************/ - /**** md5 signature: 95e91729f1fb548d9a62f690b302c323 ****/ + /****** CSLib_NormalPolyDef::Derivative ******/ + /****** md5 signature: 95e91729f1fb548d9a62f690b302c323 ******/ %feature("compactdefaultargs") Derivative; %feature("autodoc", " Parameters @@ -494,8 +494,8 @@ Computes the derivative of the function for the variable . returns true i ") Derivative; Standard_Boolean Derivative(const Standard_Real X, Standard_Real &OutValue); - /****************** Value ******************/ - /**** md5 signature: 860bcc3da162e9f9f232f07518550196 ****/ + /****** CSLib_NormalPolyDef::Value ******/ + /****** md5 signature: 860bcc3da162e9f9f232f07518550196 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -512,8 +512,8 @@ Computes the value of the function for the variable . returns true if the ") Value; Standard_Boolean Value(const Standard_Real X, Standard_Real &OutValue); - /****************** Values ******************/ - /**** md5 signature: fd71eb9a1a2bd16185bbb032c3d29afc ****/ + /****** CSLib_NormalPolyDef::Values ******/ + /****** md5 signature: fd71eb9a1a2bd16185bbb032c3d29afc ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/ChFi2d.i b/src/SWIG_files/wrapper/ChFi2d.i index 52fa67e1f..42b7c453d 100644 --- a/src/SWIG_files/wrapper/ChFi2d.i +++ b/src/SWIG_files/wrapper/ChFi2d.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define CHFI2DDOCSTRING "ChFi2d module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_chfi2d.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_chfi2d.html" %enddef %module (package="OCC.Core", docstring=CHFI2DDOCSTRING) ChFi2d @@ -132,8 +132,8 @@ ChFi2d_NotAuthorized = ChFi2d_ConstructionError.ChFi2d_NotAuthorized %rename(chfi2d) ChFi2d; class ChFi2d { public: - /****************** CommonVertex ******************/ - /**** md5 signature: 988ba28b6b8eed9cf889373017dc105e ****/ + /****** ChFi2d::CommonVertex ******/ + /****** md5 signature: 988ba28b6b8eed9cf889373017dc105e ******/ %feature("compactdefaultargs") CommonVertex; %feature("autodoc", " Parameters @@ -152,8 +152,8 @@ No available documentation. ") CommonVertex; static Standard_Boolean CommonVertex(const TopoDS_Edge & E1, const TopoDS_Edge & E2, TopoDS_Vertex & V); - /****************** FindConnectedEdges ******************/ - /**** md5 signature: f30016be75d67e3942406dcd4bb2a68a ****/ + /****** ChFi2d::FindConnectedEdges ******/ + /****** md5 signature: f30016be75d67e3942406dcd4bb2a68a ******/ %feature("compactdefaultargs") FindConnectedEdges; %feature("autodoc", " Parameters @@ -187,8 +187,8 @@ No available documentation. *****************************/ class ChFi2d_AnaFilletAlgo { public: - /****************** ChFi2d_AnaFilletAlgo ******************/ - /**** md5 signature: 21d0d1b7a94b448a4140e98f20f17340 ****/ + /****** ChFi2d_AnaFilletAlgo::ChFi2d_AnaFilletAlgo ******/ + /****** md5 signature: 21d0d1b7a94b448a4140e98f20f17340 ******/ %feature("compactdefaultargs") ChFi2d_AnaFilletAlgo; %feature("autodoc", "Return ------- @@ -200,8 +200,8 @@ An empty constructor. use the method init() to initialize the class. ") ChFi2d_AnaFilletAlgo; ChFi2d_AnaFilletAlgo(); - /****************** ChFi2d_AnaFilletAlgo ******************/ - /**** md5 signature: 449576dadb51bb526c64091844c56734 ****/ + /****** ChFi2d_AnaFilletAlgo::ChFi2d_AnaFilletAlgo ******/ + /****** md5 signature: 449576dadb51bb526c64091844c56734 ******/ %feature("compactdefaultargs") ChFi2d_AnaFilletAlgo; %feature("autodoc", " Parameters @@ -219,8 +219,8 @@ A constructor. it expects a wire consisting of two edges of type (any combinatio ") ChFi2d_AnaFilletAlgo; ChFi2d_AnaFilletAlgo(const TopoDS_Wire & theWire, const gp_Pln & thePlane); - /****************** ChFi2d_AnaFilletAlgo ******************/ - /**** md5 signature: 862aecdf22004ff111806b6621966f3b ****/ + /****** ChFi2d_AnaFilletAlgo::ChFi2d_AnaFilletAlgo ******/ + /****** md5 signature: 862aecdf22004ff111806b6621966f3b ******/ %feature("compactdefaultargs") ChFi2d_AnaFilletAlgo; %feature("autodoc", " Parameters @@ -239,8 +239,8 @@ A constructor. it expects two edges having a common point of type: - segment - a ") ChFi2d_AnaFilletAlgo; ChFi2d_AnaFilletAlgo(const TopoDS_Edge & theEdge1, const TopoDS_Edge & theEdge2, const gp_Pln & thePlane); - /****************** Init ******************/ - /**** md5 signature: e8c2c152c60d4cde5933a70fdf270367 ****/ + /****** ChFi2d_AnaFilletAlgo::Init ******/ + /****** md5 signature: e8c2c152c60d4cde5933a70fdf270367 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -258,8 +258,8 @@ Initializes the class by a wire consisting of two edges. ") Init; void Init(const TopoDS_Wire & theWire, const gp_Pln & thePlane); - /****************** Init ******************/ - /**** md5 signature: 3303addb30b77521be03e6b5b28255c0 ****/ + /****** ChFi2d_AnaFilletAlgo::Init ******/ + /****** md5 signature: 3303addb30b77521be03e6b5b28255c0 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -278,8 +278,8 @@ Initializes the class by two edges. ") Init; void Init(const TopoDS_Edge & theEdge1, const TopoDS_Edge & theEdge2, const gp_Pln & thePlane); - /****************** Perform ******************/ - /**** md5 signature: 296d0629ab2caa2b37bca9b5eca4a0fb ****/ + /****** ChFi2d_AnaFilletAlgo::Perform ******/ + /****** md5 signature: 296d0629ab2caa2b37bca9b5eca4a0fb ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -296,8 +296,8 @@ Calculates a fillet. ") Perform; Standard_Boolean Perform(const Standard_Real radius); - /****************** Result ******************/ - /**** md5 signature: 5744648d3de9eb104f52c7316465172c ****/ + /****** ChFi2d_AnaFilletAlgo::Result ******/ + /****** md5 signature: 5744648d3de9eb104f52c7316465172c ******/ %feature("compactdefaultargs") Result; %feature("autodoc", " Parameters @@ -329,8 +329,8 @@ Retrieves a result (fillet and shrinked neighbours). ***********************/ class ChFi2d_Builder { public: - /****************** ChFi2d_Builder ******************/ - /**** md5 signature: 3f86ae433ee00d11038ea767a4db5f27 ****/ + /****** ChFi2d_Builder::ChFi2d_Builder ******/ + /****** md5 signature: 3f86ae433ee00d11038ea767a4db5f27 ******/ %feature("compactdefaultargs") ChFi2d_Builder; %feature("autodoc", "Return ------- @@ -342,8 +342,8 @@ No available documentation. ") ChFi2d_Builder; ChFi2d_Builder(); - /****************** ChFi2d_Builder ******************/ - /**** md5 signature: 45a9b36a9d446c861cb1d72485d909ab ****/ + /****** ChFi2d_Builder::ChFi2d_Builder ******/ + /****** md5 signature: 45a9b36a9d446c861cb1d72485d909ab ******/ %feature("compactdefaultargs") ChFi2d_Builder; %feature("autodoc", " Parameters @@ -360,8 +360,8 @@ The face can be build on a closed or an open wire. ") ChFi2d_Builder; ChFi2d_Builder(const TopoDS_Face & F); - /****************** AddChamfer ******************/ - /**** md5 signature: 8ab56100a5f8fd93f4f3849863205ed2 ****/ + /****** ChFi2d_Builder::AddChamfer ******/ + /****** md5 signature: 8ab56100a5f8fd93f4f3849863205ed2 ******/ %feature("compactdefaultargs") AddChamfer; %feature("autodoc", " Parameters @@ -381,8 +381,8 @@ Add a chamfer on the wire between the two edges connected and . . the ") AddChamfer; TopoDS_Edge AddChamfer(const TopoDS_Edge & E, const TopoDS_Vertex & V, const Standard_Real D, const Standard_Real Ang); - /****************** AddFillet ******************/ - /**** md5 signature: 0537608457b4aa5c0d47332a8668ac27 ****/ + /****** ChFi2d_Builder::AddFillet ******/ + /****** md5 signature: 0537608457b4aa5c0d47332a8668ac27 ******/ %feature("compactdefaultargs") AddFillet; %feature("autodoc", " Parameters @@ -421,8 +421,8 @@ Add a fillet of radius on the wire between the two edges connected to t ") AddFillet; TopoDS_Edge AddFillet(const TopoDS_Vertex & V, const Standard_Real Radius); - /****************** BasisEdge ******************/ - /**** md5 signature: c244b8627d4ba515112f85786021bf15 ****/ + /****** ChFi2d_Builder::BasisEdge ******/ + /****** md5 signature: c244b8627d4ba515112f85786021bf15 ******/ %feature("compactdefaultargs") BasisEdge; %feature("autodoc", " Parameters @@ -439,8 +439,8 @@ Returns the parent edge of warning: if is a basis edge, the returned edge ") BasisEdge; const TopoDS_Edge BasisEdge(const TopoDS_Edge & E); - /****************** ChamferEdges ******************/ - /**** md5 signature: 66edbe74780ce3ab689192aa27e7b595 ****/ + /****** ChFi2d_Builder::ChamferEdges ******/ + /****** md5 signature: 66edbe74780ce3ab689192aa27e7b595 ******/ %feature("compactdefaultargs") ChamferEdges; %feature("autodoc", "Return ------- @@ -452,8 +452,8 @@ Returns the list of new edges. ") ChamferEdges; const TopTools_SequenceOfShape & ChamferEdges(); - /****************** DescendantEdge ******************/ - /**** md5 signature: aeb8944df5eff8bc10450ec6f2cf0e76 ****/ + /****** ChFi2d_Builder::DescendantEdge ******/ + /****** md5 signature: aeb8944df5eff8bc10450ec6f2cf0e76 ******/ %feature("compactdefaultargs") DescendantEdge; %feature("autodoc", " Parameters @@ -470,8 +470,8 @@ Returns the modified edge if has descendant or in the other case. ") DescendantEdge; const TopoDS_Edge DescendantEdge(const TopoDS_Edge & E); - /****************** FilletEdges ******************/ - /**** md5 signature: 937d4c9906e8077f48db789584514415 ****/ + /****** ChFi2d_Builder::FilletEdges ******/ + /****** md5 signature: 937d4c9906e8077f48db789584514415 ******/ %feature("compactdefaultargs") FilletEdges; %feature("autodoc", "Return ------- @@ -483,8 +483,8 @@ Returns the list of new edges. ") FilletEdges; const TopTools_SequenceOfShape & FilletEdges(); - /****************** HasDescendant ******************/ - /**** md5 signature: 0541f95951f0773111d16c04ab78f51f ****/ + /****** ChFi2d_Builder::HasDescendant ******/ + /****** md5 signature: 0541f95951f0773111d16c04ab78f51f ******/ %feature("compactdefaultargs") HasDescendant; %feature("autodoc", " Parameters @@ -501,8 +501,8 @@ No available documentation. ") HasDescendant; Standard_Boolean HasDescendant(const TopoDS_Edge & E); - /****************** Init ******************/ - /**** md5 signature: a8dfaa68079e743e08190fe58d950a9a ****/ + /****** ChFi2d_Builder::Init ******/ + /****** md5 signature: a8dfaa68079e743e08190fe58d950a9a ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -519,8 +519,8 @@ No available documentation. ") Init; void Init(const TopoDS_Face & F); - /****************** Init ******************/ - /**** md5 signature: 7b460233038b2f415eaddf1e321fc705 ****/ + /****** ChFi2d_Builder::Init ******/ + /****** md5 signature: 7b460233038b2f415eaddf1e321fc705 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -538,8 +538,8 @@ No available documentation. ") Init; void Init(const TopoDS_Face & RefFace, const TopoDS_Face & ModFace); - /****************** IsModified ******************/ - /**** md5 signature: 16d68e049352482fa8e513ef481ee475 ****/ + /****** ChFi2d_Builder::IsModified ******/ + /****** md5 signature: 16d68e049352482fa8e513ef481ee475 ******/ %feature("compactdefaultargs") IsModified; %feature("autodoc", " Parameters @@ -556,8 +556,8 @@ No available documentation. ") IsModified; Standard_Boolean IsModified(const TopoDS_Edge & E); - /****************** ModifyChamfer ******************/ - /**** md5 signature: f4b34f1306057c0cc8ca5f84d6421d3a ****/ + /****** ChFi2d_Builder::ModifyChamfer ******/ + /****** md5 signature: f4b34f1306057c0cc8ca5f84d6421d3a ******/ %feature("compactdefaultargs") ModifyChamfer; %feature("autodoc", " Parameters @@ -578,8 +578,8 @@ Modify the chamfer and returns the new chamfer edge. this edge as sens ") ModifyChamfer; TopoDS_Edge ModifyChamfer(const TopoDS_Edge & Chamfer, const TopoDS_Edge & E1, const TopoDS_Edge & E2, const Standard_Real D1, const Standard_Real D2); - /****************** ModifyChamfer ******************/ - /**** md5 signature: 5dc8140e76c07e7e78ad0bb92d51e1c8 ****/ + /****** ChFi2d_Builder::ModifyChamfer ******/ + /****** md5 signature: 5dc8140e76c07e7e78ad0bb92d51e1c8 ******/ %feature("compactdefaultargs") ModifyChamfer; %feature("autodoc", " Parameters @@ -599,8 +599,8 @@ Modify the chamfer and returns the new chamfer edge. this edge as sens ") ModifyChamfer; TopoDS_Edge ModifyChamfer(const TopoDS_Edge & Chamfer, const TopoDS_Edge & E, const Standard_Real D, const Standard_Real Ang); - /****************** ModifyFillet ******************/ - /**** md5 signature: 4ba37be14168b13373613def465683a2 ****/ + /****** ChFi2d_Builder::ModifyFillet ******/ + /****** md5 signature: 4ba37be14168b13373613def465683a2 ******/ %feature("compactdefaultargs") ModifyFillet; %feature("autodoc", " Parameters @@ -618,8 +618,8 @@ Modify the fillet radius and return the new fillet edge. this edge has sense onl ") ModifyFillet; TopoDS_Edge ModifyFillet(const TopoDS_Edge & Fillet, const Standard_Real Radius); - /****************** NbChamfer ******************/ - /**** md5 signature: 1531286606ef0261ac4850615d79f229 ****/ + /****** ChFi2d_Builder::NbChamfer ******/ + /****** md5 signature: 1531286606ef0261ac4850615d79f229 ******/ %feature("compactdefaultargs") NbChamfer; %feature("autodoc", "Return ------- @@ -631,8 +631,8 @@ No available documentation. ") NbChamfer; Standard_Integer NbChamfer(); - /****************** NbFillet ******************/ - /**** md5 signature: 213e984e2e53209ba86769e63c780c6f ****/ + /****** ChFi2d_Builder::NbFillet ******/ + /****** md5 signature: 213e984e2e53209ba86769e63c780c6f ******/ %feature("compactdefaultargs") NbFillet; %feature("autodoc", "Return ------- @@ -644,8 +644,8 @@ No available documentation. ") NbFillet; Standard_Integer NbFillet(); - /****************** RemoveChamfer ******************/ - /**** md5 signature: e2fe904642b9955c8a660d5a9fc1f9db ****/ + /****** ChFi2d_Builder::RemoveChamfer ******/ + /****** md5 signature: e2fe904642b9955c8a660d5a9fc1f9db ******/ %feature("compactdefaultargs") RemoveChamfer; %feature("autodoc", " Parameters @@ -662,8 +662,8 @@ Removes the chamfer and returns the vertex connecting the two adjacent ") RemoveChamfer; TopoDS_Vertex RemoveChamfer(const TopoDS_Edge & Chamfer); - /****************** RemoveFillet ******************/ - /**** md5 signature: c523feaddfccc8fecd7b796c40383670 ****/ + /****** ChFi2d_Builder::RemoveFillet ******/ + /****** md5 signature: c523feaddfccc8fecd7b796c40383670 ******/ %feature("compactdefaultargs") RemoveFillet; %feature("autodoc", " Parameters @@ -680,8 +680,8 @@ Removes the fillet and returns the vertex connecting the two adjacent e ") RemoveFillet; TopoDS_Vertex RemoveFillet(const TopoDS_Edge & Fillet); - /****************** Result ******************/ - /**** md5 signature: 1480234eab43dd16d306ca94328a9d8d ****/ + /****** ChFi2d_Builder::Result ******/ + /****** md5 signature: 1480234eab43dd16d306ca94328a9d8d ******/ %feature("compactdefaultargs") Result; %feature("autodoc", "Return ------- @@ -693,8 +693,8 @@ Returns the modified face. ") Result; TopoDS_Face Result(); - /****************** Status ******************/ - /**** md5 signature: d156d199c4dfd8fe1ae3da07b3861e60 ****/ + /****** ChFi2d_Builder::Status ******/ + /****** md5 signature: d156d199c4dfd8fe1ae3da07b3861e60 ******/ %feature("compactdefaultargs") Status; %feature("autodoc", "Return ------- @@ -720,8 +720,8 @@ No available documentation. **************************/ class ChFi2d_ChamferAPI { public: - /****************** ChFi2d_ChamferAPI ******************/ - /**** md5 signature: b9cd31e1f8121990c06abf40877d0300 ****/ + /****** ChFi2d_ChamferAPI::ChFi2d_ChamferAPI ******/ + /****** md5 signature: b9cd31e1f8121990c06abf40877d0300 ******/ %feature("compactdefaultargs") ChFi2d_ChamferAPI; %feature("autodoc", "Return ------- @@ -733,8 +733,8 @@ An empty constructor. ") ChFi2d_ChamferAPI; ChFi2d_ChamferAPI(); - /****************** ChFi2d_ChamferAPI ******************/ - /**** md5 signature: 8938dc914966247537a1b4f01e13de66 ****/ + /****** ChFi2d_ChamferAPI::ChFi2d_ChamferAPI ******/ + /****** md5 signature: 8938dc914966247537a1b4f01e13de66 ******/ %feature("compactdefaultargs") ChFi2d_ChamferAPI; %feature("autodoc", " Parameters @@ -751,8 +751,8 @@ A constructor accepting a wire consisting of two linear edges. ") ChFi2d_ChamferAPI; ChFi2d_ChamferAPI(const TopoDS_Wire & theWire); - /****************** ChFi2d_ChamferAPI ******************/ - /**** md5 signature: 3dd3a936dc9ed531e13b33cbc7876f45 ****/ + /****** ChFi2d_ChamferAPI::ChFi2d_ChamferAPI ******/ + /****** md5 signature: 3dd3a936dc9ed531e13b33cbc7876f45 ******/ %feature("compactdefaultargs") ChFi2d_ChamferAPI; %feature("autodoc", " Parameters @@ -770,8 +770,8 @@ A constructor accepting two linear edges. ") ChFi2d_ChamferAPI; ChFi2d_ChamferAPI(const TopoDS_Edge & theEdge1, const TopoDS_Edge & theEdge2); - /****************** Init ******************/ - /**** md5 signature: ed16fa62288b3a0405e5a9a04635dc04 ****/ + /****** ChFi2d_ChamferAPI::Init ******/ + /****** md5 signature: ed16fa62288b3a0405e5a9a04635dc04 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -788,8 +788,8 @@ Initializes the class by a wire consisting of two libear edges. ") Init; void Init(const TopoDS_Wire & theWire); - /****************** Init ******************/ - /**** md5 signature: b4f8e1f2c356366585a27c517a9813ae ****/ + /****** ChFi2d_ChamferAPI::Init ******/ + /****** md5 signature: b4f8e1f2c356366585a27c517a9813ae ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -807,8 +807,8 @@ Initializes the class by two linear edges. ") Init; void Init(const TopoDS_Edge & theEdge1, const TopoDS_Edge & theEdge2); - /****************** Perform ******************/ - /**** md5 signature: dc83e5133003c9f9c7b166df8b5a4192 ****/ + /****** ChFi2d_ChamferAPI::Perform ******/ + /****** md5 signature: dc83e5133003c9f9c7b166df8b5a4192 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", "Return ------- @@ -820,8 +820,8 @@ Constructs a chamfer edge. returns true if the edge is constructed. ") Perform; Standard_Boolean Perform(); - /****************** Result ******************/ - /**** md5 signature: 6eae4611de5834ad67d8abd68f9a58f2 ****/ + /****** ChFi2d_ChamferAPI::Result ******/ + /****** md5 signature: 6eae4611de5834ad67d8abd68f9a58f2 ******/ %feature("compactdefaultargs") Result; %feature("autodoc", " Parameters @@ -855,8 +855,8 @@ No available documentation. *************************/ class ChFi2d_FilletAPI { public: - /****************** ChFi2d_FilletAPI ******************/ - /**** md5 signature: d6d7a1d84e387cac22ee37b78be973d5 ****/ + /****** ChFi2d_FilletAPI::ChFi2d_FilletAPI ******/ + /****** md5 signature: d6d7a1d84e387cac22ee37b78be973d5 ******/ %feature("compactdefaultargs") ChFi2d_FilletAPI; %feature("autodoc", "Return ------- @@ -868,8 +868,8 @@ An empty constructor of the fillet algorithm. call a method init() to initialize ") ChFi2d_FilletAPI; ChFi2d_FilletAPI(); - /****************** ChFi2d_FilletAPI ******************/ - /**** md5 signature: c08e06913ce086487ed3a44c9b9a5ad5 ****/ + /****** ChFi2d_FilletAPI::ChFi2d_FilletAPI ******/ + /****** md5 signature: c08e06913ce086487ed3a44c9b9a5ad5 ******/ %feature("compactdefaultargs") ChFi2d_FilletAPI; %feature("autodoc", " Parameters @@ -887,8 +887,8 @@ A constructor of a fillet algorithm: accepts a wire consisting of two edges in a ") ChFi2d_FilletAPI; ChFi2d_FilletAPI(const TopoDS_Wire & theWire, const gp_Pln & thePlane); - /****************** ChFi2d_FilletAPI ******************/ - /**** md5 signature: 8a4385b065acd0ec34522a5a83518fc0 ****/ + /****** ChFi2d_FilletAPI::ChFi2d_FilletAPI ******/ + /****** md5 signature: 8a4385b065acd0ec34522a5a83518fc0 ******/ %feature("compactdefaultargs") ChFi2d_FilletAPI; %feature("autodoc", " Parameters @@ -907,8 +907,8 @@ A constructor of a fillet algorithm: accepts two edges in a plane. ") ChFi2d_FilletAPI; ChFi2d_FilletAPI(const TopoDS_Edge & theEdge1, const TopoDS_Edge & theEdge2, const gp_Pln & thePlane); - /****************** Init ******************/ - /**** md5 signature: e8c2c152c60d4cde5933a70fdf270367 ****/ + /****** ChFi2d_FilletAPI::Init ******/ + /****** md5 signature: e8c2c152c60d4cde5933a70fdf270367 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -926,8 +926,8 @@ Initializes a fillet algorithm: accepts a wire consisting of two edges in a plan ") Init; void Init(const TopoDS_Wire & theWire, const gp_Pln & thePlane); - /****************** Init ******************/ - /**** md5 signature: 3303addb30b77521be03e6b5b28255c0 ****/ + /****** ChFi2d_FilletAPI::Init ******/ + /****** md5 signature: 3303addb30b77521be03e6b5b28255c0 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -946,8 +946,8 @@ Initializes a fillet algorithm: accepts two edges in a plane. ") Init; void Init(const TopoDS_Edge & theEdge1, const TopoDS_Edge & theEdge2, const gp_Pln & thePlane); - /****************** NbResults ******************/ - /**** md5 signature: 1940d6bde20fdd8d7cc964038ca6aa79 ****/ + /****** ChFi2d_FilletAPI::NbResults ******/ + /****** md5 signature: 1940d6bde20fdd8d7cc964038ca6aa79 ******/ %feature("compactdefaultargs") NbResults; %feature("autodoc", " Parameters @@ -964,8 +964,8 @@ Returns number of possible solutions. chooses a particular fillet in ") NbResults; Standard_Integer NbResults(const gp_Pnt & thePoint); - /****************** Perform ******************/ - /**** md5 signature: 2b447cf377f0784629ef68c6d522b2f1 ****/ + /****** ChFi2d_FilletAPI::Perform ******/ + /****** md5 signature: 2b447cf377f0784629ef68c6d522b2f1 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -982,8 +982,8 @@ Constructs a fillet edge. returns true if at least one result was found. ") Perform; Standard_Boolean Perform(const Standard_Real theRadius); - /****************** Result ******************/ - /**** md5 signature: 47609a9593530a1c197f05dabded44c9 ****/ + /****** ChFi2d_FilletAPI::Result ******/ + /****** md5 signature: 47609a9593530a1c197f05dabded44c9 ******/ %feature("compactdefaultargs") Result; %feature("autodoc", " Parameters @@ -1017,8 +1017,8 @@ Returns result (fillet edge, modified edge1, modified edge2), nearest to the giv **************************/ class ChFi2d_FilletAlgo { public: - /****************** ChFi2d_FilletAlgo ******************/ - /**** md5 signature: fc489062fd31ea48752549eb4287c14d ****/ + /****** ChFi2d_FilletAlgo::ChFi2d_FilletAlgo ******/ + /****** md5 signature: fc489062fd31ea48752549eb4287c14d ******/ %feature("compactdefaultargs") ChFi2d_FilletAlgo; %feature("autodoc", "Return ------- @@ -1030,8 +1030,8 @@ An empty constructor of the fillet algorithm. call a method init() to initialize ") ChFi2d_FilletAlgo; ChFi2d_FilletAlgo(); - /****************** ChFi2d_FilletAlgo ******************/ - /**** md5 signature: 9d97283b99193e0d155ef1ba9a421036 ****/ + /****** ChFi2d_FilletAlgo::ChFi2d_FilletAlgo ******/ + /****** md5 signature: 9d97283b99193e0d155ef1ba9a421036 ******/ %feature("compactdefaultargs") ChFi2d_FilletAlgo; %feature("autodoc", " Parameters @@ -1049,8 +1049,8 @@ A constructor of a fillet algorithm: accepts a wire consisting of two edges in a ") ChFi2d_FilletAlgo; ChFi2d_FilletAlgo(const TopoDS_Wire & theWire, const gp_Pln & thePlane); - /****************** ChFi2d_FilletAlgo ******************/ - /**** md5 signature: 45a3c0afcad6601436a8e4730723dc4e ****/ + /****** ChFi2d_FilletAlgo::ChFi2d_FilletAlgo ******/ + /****** md5 signature: 45a3c0afcad6601436a8e4730723dc4e ******/ %feature("compactdefaultargs") ChFi2d_FilletAlgo; %feature("autodoc", " Parameters @@ -1069,8 +1069,8 @@ A constructor of a fillet algorithm: accepts two edges in a plane. ") ChFi2d_FilletAlgo; ChFi2d_FilletAlgo(const TopoDS_Edge & theEdge1, const TopoDS_Edge & theEdge2, const gp_Pln & thePlane); - /****************** Init ******************/ - /**** md5 signature: e8c2c152c60d4cde5933a70fdf270367 ****/ + /****** ChFi2d_FilletAlgo::Init ******/ + /****** md5 signature: e8c2c152c60d4cde5933a70fdf270367 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -1088,8 +1088,8 @@ Initializes a fillet algorithm: accepts a wire consisting of two edges in a plan ") Init; void Init(const TopoDS_Wire & theWire, const gp_Pln & thePlane); - /****************** Init ******************/ - /**** md5 signature: 3303addb30b77521be03e6b5b28255c0 ****/ + /****** ChFi2d_FilletAlgo::Init ******/ + /****** md5 signature: 3303addb30b77521be03e6b5b28255c0 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -1108,8 +1108,8 @@ Initializes a fillet algorithm: accepts two edges in a plane. ") Init; void Init(const TopoDS_Edge & theEdge1, const TopoDS_Edge & theEdge2, const gp_Pln & thePlane); - /****************** NbResults ******************/ - /**** md5 signature: 1940d6bde20fdd8d7cc964038ca6aa79 ****/ + /****** ChFi2d_FilletAlgo::NbResults ******/ + /****** md5 signature: 1940d6bde20fdd8d7cc964038ca6aa79 ******/ %feature("compactdefaultargs") NbResults; %feature("autodoc", " Parameters @@ -1126,8 +1126,8 @@ Returns number of possible solutions. chooses a particular fillet in ") NbResults; Standard_Integer NbResults(const gp_Pnt & thePoint); - /****************** Perform ******************/ - /**** md5 signature: 2b447cf377f0784629ef68c6d522b2f1 ****/ + /****** ChFi2d_FilletAlgo::Perform ******/ + /****** md5 signature: 2b447cf377f0784629ef68c6d522b2f1 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1144,8 +1144,8 @@ Constructs a fillet edge. returns true, if at least one result was found. ") Perform; Standard_Boolean Perform(const Standard_Real theRadius); - /****************** Result ******************/ - /**** md5 signature: 47609a9593530a1c197f05dabded44c9 ****/ + /****** ChFi2d_FilletAlgo::Result ******/ + /****** md5 signature: 47609a9593530a1c197f05dabded44c9 ******/ %feature("compactdefaultargs") Result; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/ChFi3d.i b/src/SWIG_files/wrapper/ChFi3d.i index 000f33abb..0d7812f33 100644 --- a/src/SWIG_files/wrapper/ChFi3d.i +++ b/src/SWIG_files/wrapper/ChFi3d.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define CHFI3DDOCSTRING "ChFi3d module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_chfi3d.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_chfi3d.html" %enddef %module (package="OCC.Core", docstring=CHFI3DDOCSTRING) ChFi3d @@ -146,8 +146,8 @@ ChFi3d_Polynomial = ChFi3d_FilletShape.ChFi3d_Polynomial %rename(chfi3d) ChFi3d; class ChFi3d { public: - /****************** ConcaveSide ******************/ - /**** md5 signature: 7bec3b7502316353ebdd49b4cbee0996 ****/ + /****** ChFi3d::ConcaveSide ******/ + /****** md5 signature: 7bec3b7502316353ebdd49b4cbee0996 ******/ %feature("compactdefaultargs") ConcaveSide; %feature("autodoc", " Parameters @@ -168,8 +168,8 @@ Returns reversed in or1 and(or) or2 if the concave edge defined by the interior ") ConcaveSide; static Standard_Integer ConcaveSide(const BRepAdaptor_Surface & S1, const BRepAdaptor_Surface & S2, const TopoDS_Edge & E, TopAbs_Orientation & Or1, TopAbs_Orientation & Or2); - /****************** DefineConnectType ******************/ - /**** md5 signature: cff62fae1d6d67c4fc161f59e5544eaa ****/ + /****** ChFi3d::DefineConnectType ******/ + /****** md5 signature: cff62fae1d6d67c4fc161f59e5544eaa ******/ %feature("compactdefaultargs") DefineConnectType; %feature("autodoc", " Parameters @@ -190,8 +190,8 @@ Defines the type of concavity in the edge of connection of two faces. ") DefineConnectType; static ChFiDS_TypeOfConcavity DefineConnectType(const TopoDS_Edge & E, const TopoDS_Face & F1, const TopoDS_Face & F2, const Standard_Real SinTol, const Standard_Boolean CorrectPoint); - /****************** IsTangentFaces ******************/ - /**** md5 signature: fdf2d5839a8c81341919b74382cbe60c ****/ + /****** ChFi3d::IsTangentFaces ******/ + /****** md5 signature: fdf2d5839a8c81341919b74382cbe60c ******/ %feature("compactdefaultargs") IsTangentFaces; %feature("autodoc", " Parameters @@ -211,8 +211,8 @@ Returns true if theedge between theface1 and theface2 is tangent. ") IsTangentFaces; static Standard_Boolean IsTangentFaces(const TopoDS_Edge & theEdge, const TopoDS_Face & theFace1, const TopoDS_Face & theFace2, const GeomAbs_Shape Order = GeomAbs_G1); - /****************** NextSide ******************/ - /**** md5 signature: 14be854cdfa62a2c6440b8491c5042f8 ****/ + /****** ChFi3d::NextSide ******/ + /****** md5 signature: 14be854cdfa62a2c6440b8491c5042f8 ******/ %feature("compactdefaultargs") NextSide; %feature("autodoc", " Parameters @@ -233,8 +233,8 @@ Same as concaveside, but the orientations are logically deduced from the result ") NextSide; static Standard_Integer NextSide(TopAbs_Orientation & Or1, TopAbs_Orientation & Or2, const TopAbs_Orientation OrSave1, const TopAbs_Orientation OrSave2, const Standard_Integer ChoixSauv); - /****************** NextSide ******************/ - /**** md5 signature: cdb55087e2f58002d8dd06337ade33f1 ****/ + /****** ChFi3d::NextSide ******/ + /****** md5 signature: cdb55087e2f58002d8dd06337ade33f1 ******/ %feature("compactdefaultargs") NextSide; %feature("autodoc", " Parameters @@ -253,8 +253,8 @@ Same as the other nextside, but the calculation is done on an edge only. ") NextSide; static void NextSide(TopAbs_Orientation & Or, const TopAbs_Orientation OrSave, const TopAbs_Orientation OrFace); - /****************** SameSide ******************/ - /**** md5 signature: cb26ae9b069d0a97c5fa9e8f947264b7 ****/ + /****** ChFi3d::SameSide ******/ + /****** md5 signature: cb26ae9b069d0a97c5fa9e8f947264b7 ******/ %feature("compactdefaultargs") SameSide; %feature("autodoc", " Parameters @@ -290,8 +290,8 @@ Enables to determine while processing an angle, if two fillets or chamfers const %nodefaultctor ChFi3d_Builder; class ChFi3d_Builder { public: - /****************** Abscissa ******************/ - /**** md5 signature: 31f4e656f81ac45f0650f2aa0cf2b692 ****/ + /****** ChFi3d_Builder::Abscissa ******/ + /****** md5 signature: 31f4e656f81ac45f0650f2aa0cf2b692 ******/ %feature("compactdefaultargs") Abscissa; %feature("autodoc", " Parameters @@ -309,8 +309,8 @@ Returns the abscissa of the vertex v on the contour of index ic. ") Abscissa; Standard_Real Abscissa(const Standard_Integer IC, const TopoDS_Vertex & V); - /****************** BadShape ******************/ - /**** md5 signature: bc4bc683dd2daee18cd73177f824f6ce ****/ + /****** ChFi3d_Builder::BadShape ******/ + /****** md5 signature: bc4bc683dd2daee18cd73177f824f6ce ******/ %feature("compactdefaultargs") BadShape; %feature("autodoc", "Return ------- @@ -322,8 +322,8 @@ If (hasresult()) returns partial result if (!hasresult()). ") BadShape; TopoDS_Shape BadShape(); - /****************** Builder ******************/ - /**** md5 signature: c97c63149316e999abd03e780cc959bf ****/ + /****** ChFi3d_Builder::Builder ******/ + /****** md5 signature: c97c63149316e999abd03e780cc959bf ******/ %feature("compactdefaultargs") Builder; %feature("autodoc", "Return ------- @@ -335,8 +335,8 @@ Returns the builder of topologic operations. ") Builder; opencascade::handle Builder(); - /****************** Closed ******************/ - /**** md5 signature: 7ea06a053a6bd104436927e72ec2d7e1 ****/ + /****** ChFi3d_Builder::Closed ******/ + /****** md5 signature: 7ea06a053a6bd104436927e72ec2d7e1 ******/ %feature("compactdefaultargs") Closed; %feature("autodoc", " Parameters @@ -353,8 +353,8 @@ Returns true if the contour of index ic is closed. ") Closed; Standard_Boolean Closed(const Standard_Integer IC); - /****************** ClosedAndTangent ******************/ - /**** md5 signature: 012c335e427742eb278e7fcc80b2f309 ****/ + /****** ChFi3d_Builder::ClosedAndTangent ******/ + /****** md5 signature: 012c335e427742eb278e7fcc80b2f309 ******/ %feature("compactdefaultargs") ClosedAndTangent; %feature("autodoc", " Parameters @@ -371,8 +371,8 @@ Returns true if the contour of index ic is closed an tangent. ") ClosedAndTangent; Standard_Boolean ClosedAndTangent(const Standard_Integer IC); - /****************** Compute ******************/ - /**** md5 signature: 3472bca0870d21fcbdb4784495b49568 ****/ + /****** ChFi3d_Builder::Compute ******/ + /****** md5 signature: 3472bca0870d21fcbdb4784495b49568 ******/ %feature("compactdefaultargs") Compute; %feature("autodoc", "Return ------- @@ -384,8 +384,8 @@ General calculation of geometry on all edges, topologic reconstruction. ") Compute; void Compute(); - /****************** ComputedSurface ******************/ - /**** md5 signature: 96c489b28233f30f53d28540eaf6a6c2 ****/ + /****** ChFi3d_Builder::ComputedSurface ******/ + /****** md5 signature: 96c489b28233f30f53d28540eaf6a6c2 ******/ %feature("compactdefaultargs") ComputedSurface; %feature("autodoc", " Parameters @@ -403,8 +403,8 @@ Returns the is'th surface calculated on the contour ic. ") ComputedSurface; opencascade::handle ComputedSurface(const Standard_Integer IC, const Standard_Integer IS); - /****************** Contains ******************/ - /**** md5 signature: cfbf83d97f78344c872414bbe2cb7740 ****/ + /****** ChFi3d_Builder::Contains ******/ + /****** md5 signature: cfbf83d97f78344c872414bbe2cb7740 ******/ %feature("compactdefaultargs") Contains; %feature("autodoc", " Parameters @@ -421,8 +421,8 @@ Gives the number of the contour containing e or 0 if e does not belong to any co ") Contains; Standard_Integer Contains(const TopoDS_Edge & E); - /****************** Contains ******************/ - /**** md5 signature: 0aafac7e6ba54066fec64bc0173fc538 ****/ + /****** ChFi3d_Builder::Contains ******/ + /****** md5 signature: 0aafac7e6ba54066fec64bc0173fc538 ******/ %feature("compactdefaultargs") Contains; %feature("autodoc", " Parameters @@ -439,8 +439,8 @@ Gives the number of the contour containing e or 0 if e does not belong to any co ") Contains; Standard_Integer Contains(const TopoDS_Edge & E, Standard_Integer &OutValue); - /****************** FaultyContour ******************/ - /**** md5 signature: 21156686a769d644f96890ea34047e80 ****/ + /****** ChFi3d_Builder::FaultyContour ******/ + /****** md5 signature: 21156686a769d644f96890ea34047e80 ******/ %feature("compactdefaultargs") FaultyContour; %feature("autodoc", " Parameters @@ -457,8 +457,8 @@ Returns the number of i'th contour on which the calculation has failed. ") FaultyContour; Standard_Integer FaultyContour(const Standard_Integer I); - /****************** FaultyVertex ******************/ - /**** md5 signature: a045d17950f9e0d223a11a5a00a22d52 ****/ + /****** ChFi3d_Builder::FaultyVertex ******/ + /****** md5 signature: a045d17950f9e0d223a11a5a00a22d52 ******/ %feature("compactdefaultargs") FaultyVertex; %feature("autodoc", " Parameters @@ -475,8 +475,8 @@ Returns the iv'th vertex on which the calculation has failed. ") FaultyVertex; TopoDS_Vertex FaultyVertex(const Standard_Integer IV); - /****************** FirstVertex ******************/ - /**** md5 signature: c5b47847648295bc6810b4445914591d ****/ + /****** ChFi3d_Builder::FirstVertex ******/ + /****** md5 signature: c5b47847648295bc6810b4445914591d ******/ %feature("compactdefaultargs") FirstVertex; %feature("autodoc", " Parameters @@ -493,8 +493,8 @@ Returns the first vertex v of the contour of index ic. ") FirstVertex; TopoDS_Vertex FirstVertex(const Standard_Integer IC); - /****************** Generated ******************/ - /**** md5 signature: d0e5ef4174eea6373e77527c2c26c346 ****/ + /****** ChFi3d_Builder::Generated ******/ + /****** md5 signature: d0e5ef4174eea6373e77527c2c26c346 ******/ %feature("compactdefaultargs") Generated; %feature("autodoc", " Parameters @@ -511,8 +511,8 @@ Advanced function for the history. ") Generated; const TopTools_ListOfShape & Generated(const TopoDS_Shape & EouV); - /****************** HasResult ******************/ - /**** md5 signature: 345d4b0f7e88f528928167976d8256d5 ****/ + /****** ChFi3d_Builder::HasResult ******/ + /****** md5 signature: 345d4b0f7e88f528928167976d8256d5 ******/ %feature("compactdefaultargs") HasResult; %feature("autodoc", "Return ------- @@ -524,8 +524,8 @@ Returns true if a partial result has been calculated. ") HasResult; Standard_Boolean HasResult(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** ChFi3d_Builder::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -537,8 +537,8 @@ Returns true if the computation is success. ") IsDone; Standard_Boolean IsDone(); - /****************** LastVertex ******************/ - /**** md5 signature: 57e948c557679f9fdc9d75aa4466c614 ****/ + /****** ChFi3d_Builder::LastVertex ******/ + /****** md5 signature: 57e948c557679f9fdc9d75aa4466c614 ******/ %feature("compactdefaultargs") LastVertex; %feature("autodoc", " Parameters @@ -555,8 +555,8 @@ Returns the last vertex v of the contour of index ic. ") LastVertex; TopoDS_Vertex LastVertex(const Standard_Integer IC); - /****************** Length ******************/ - /**** md5 signature: ecc1081662dff3d3783bd541b86356db ****/ + /****** ChFi3d_Builder::Length ******/ + /****** md5 signature: ecc1081662dff3d3783bd541b86356db ******/ %feature("compactdefaultargs") Length; %feature("autodoc", " Parameters @@ -573,8 +573,8 @@ Returns the length of the contour of index ic. ") Length; Standard_Real Length(const Standard_Integer IC); - /****************** NbComputedSurfaces ******************/ - /**** md5 signature: 164cfd056526b3a43cae9bf77f5c8661 ****/ + /****** ChFi3d_Builder::NbComputedSurfaces ******/ + /****** md5 signature: 164cfd056526b3a43cae9bf77f5c8661 ******/ %feature("compactdefaultargs") NbComputedSurfaces; %feature("autodoc", " Parameters @@ -591,8 +591,8 @@ Returns the number of surfaces calculated on the contour ic. ") NbComputedSurfaces; Standard_Integer NbComputedSurfaces(const Standard_Integer IC); - /****************** NbElements ******************/ - /**** md5 signature: bda4abdd1e5bc28bcadae491494177fe ****/ + /****** ChFi3d_Builder::NbElements ******/ + /****** md5 signature: bda4abdd1e5bc28bcadae491494177fe ******/ %feature("compactdefaultargs") NbElements; %feature("autodoc", "Return ------- @@ -604,8 +604,8 @@ Gives the number of disjoint contours on which the fillets are calculated. ") NbElements; Standard_Integer NbElements(); - /****************** NbFaultyContours ******************/ - /**** md5 signature: f1fb95ba8b7e9b0d24a588c92bfcc422 ****/ + /****** ChFi3d_Builder::NbFaultyContours ******/ + /****** md5 signature: f1fb95ba8b7e9b0d24a588c92bfcc422 ******/ %feature("compactdefaultargs") NbFaultyContours; %feature("autodoc", "Return ------- @@ -617,8 +617,8 @@ Returns the number of contours on which the calculation has failed. ") NbFaultyContours; Standard_Integer NbFaultyContours(); - /****************** NbFaultyVertices ******************/ - /**** md5 signature: e14cf31fcf2094c6ecb0e40d167aeb3c ****/ + /****** ChFi3d_Builder::NbFaultyVertices ******/ + /****** md5 signature: e14cf31fcf2094c6ecb0e40d167aeb3c ******/ %feature("compactdefaultargs") NbFaultyVertices; %feature("autodoc", "Return ------- @@ -630,8 +630,8 @@ Returns the number of vertices on which the calculation has failed. ") NbFaultyVertices; Standard_Integer NbFaultyVertices(); - /****************** PerformTwoCornerbyInter ******************/ - /**** md5 signature: fac07bab468e6cb117f5f3b768bb2ff8 ****/ + /****** ChFi3d_Builder::PerformTwoCornerbyInter ******/ + /****** md5 signature: fac07bab468e6cb117f5f3b768bb2ff8 ******/ %feature("compactdefaultargs") PerformTwoCornerbyInter; %feature("autodoc", " Parameters @@ -648,8 +648,8 @@ No available documentation. ") PerformTwoCornerbyInter; Standard_Boolean PerformTwoCornerbyInter(const Standard_Integer Index); - /****************** RelativeAbscissa ******************/ - /**** md5 signature: cdfd6a6c8172a0c2723e1521a0997ef5 ****/ + /****** ChFi3d_Builder::RelativeAbscissa ******/ + /****** md5 signature: cdfd6a6c8172a0c2723e1521a0997ef5 ******/ %feature("compactdefaultargs") RelativeAbscissa; %feature("autodoc", " Parameters @@ -667,8 +667,8 @@ Returns the relative abscissa([0.,1.]) of the vertex v on the contour of index i ") RelativeAbscissa; Standard_Real RelativeAbscissa(const Standard_Integer IC, const TopoDS_Vertex & V); - /****************** Remove ******************/ - /**** md5 signature: aa3df62745888f577321042865e84120 ****/ + /****** ChFi3d_Builder::Remove ******/ + /****** md5 signature: aa3df62745888f577321042865e84120 ******/ %feature("compactdefaultargs") Remove; %feature("autodoc", " Parameters @@ -685,8 +685,8 @@ Extracts from the list the contour containing edge e. ") Remove; void Remove(const TopoDS_Edge & E); - /****************** Reset ******************/ - /**** md5 signature: 7beb446fe26b948f797f8de87e46c23d ****/ + /****** ChFi3d_Builder::Reset ******/ + /****** md5 signature: 7beb446fe26b948f797f8de87e46c23d ******/ %feature("compactdefaultargs") Reset; %feature("autodoc", "Return ------- @@ -698,8 +698,8 @@ Reset all results of compute and returns the algorithm in the state of the last ") Reset; void Reset(); - /****************** SetContinuity ******************/ - /**** md5 signature: c492356a15562b146506665d8c5d1b77 ****/ + /****** ChFi3d_Builder::SetContinuity ******/ + /****** md5 signature: c492356a15562b146506665d8c5d1b77 ******/ %feature("compactdefaultargs") SetContinuity; %feature("autodoc", " Parameters @@ -717,8 +717,8 @@ No available documentation. ") SetContinuity; void SetContinuity(const GeomAbs_Shape InternalContinuity, const Standard_Real AngularTolerance); - /****************** SetParams ******************/ - /**** md5 signature: dd3731c1527f95a9443df47a6b3a54d4 ****/ + /****** ChFi3d_Builder::SetParams ******/ + /****** md5 signature: dd3731c1527f95a9443df47a6b3a54d4 ******/ %feature("compactdefaultargs") SetParams; %feature("autodoc", " Parameters @@ -740,8 +740,8 @@ No available documentation. ") SetParams; void SetParams(const Standard_Real Tang, const Standard_Real Tesp, const Standard_Real T2d, const Standard_Real TApp3d, const Standard_Real TolApp2d, const Standard_Real Fleche); - /****************** Shape ******************/ - /**** md5 signature: 3aece276415d56b8bd9afa5bf371db57 ****/ + /****** ChFi3d_Builder::Shape ******/ + /****** md5 signature: 3aece276415d56b8bd9afa5bf371db57 ******/ %feature("compactdefaultargs") Shape; %feature("autodoc", "Return ------- @@ -753,8 +753,8 @@ If (isdone()) makes the result. if (!isdone()). ") Shape; TopoDS_Shape Shape(); - /****************** SplitKPart ******************/ - /**** md5 signature: ddaca9d1804baacb3415aca8212a6fa9 ****/ + /****** ChFi3d_Builder::SplitKPart ******/ + /****** md5 signature: ddaca9d1804baacb3415aca8212a6fa9 ******/ %feature("compactdefaultargs") SplitKPart; %feature("autodoc", " Parameters @@ -779,8 +779,8 @@ Method, implemented in the inheritants, calculates the elements of construction ") SplitKPart; Standard_Boolean SplitKPart(const opencascade::handle & Data, ChFiDS_SequenceOfSurfData & SetData, const opencascade::handle & Spine, const Standard_Integer Iedge, const opencascade::handle & S1, const opencascade::handle & I1, const opencascade::handle & S2, const opencascade::handle & I2, Standard_Boolean &OutValue, Standard_Boolean &OutValue); - /****************** StripeStatus ******************/ - /**** md5 signature: 7b8afd101ec5ebd9cd37e2bc2cfd73ff ****/ + /****** ChFi3d_Builder::StripeStatus ******/ + /****** md5 signature: 7b8afd101ec5ebd9cd37e2bc2cfd73ff ******/ %feature("compactdefaultargs") StripeStatus; %feature("autodoc", " Parameters @@ -797,8 +797,8 @@ For the stripe ic ,indication on the cause of failure walkingfailure,twistedsurf ") StripeStatus; ChFiDS_ErrorStatus StripeStatus(const Standard_Integer IC); - /****************** Value ******************/ - /**** md5 signature: 73f8510698b95ab6280a8aadb140271b ****/ + /****** ChFi3d_Builder::Value ******/ + /****** md5 signature: 73f8510698b95ab6280a8aadb140271b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -829,8 +829,8 @@ Gives the n'th set of edges (contour) if i >nbelements(). **************************/ class ChFi3d_SearchSing : public math_FunctionWithDerivative { public: - /****************** ChFi3d_SearchSing ******************/ - /**** md5 signature: e24325a0ec023d7744e001f363a8c4b8 ****/ + /****** ChFi3d_SearchSing::ChFi3d_SearchSing ******/ + /****** md5 signature: e24325a0ec023d7744e001f363a8c4b8 ******/ %feature("compactdefaultargs") ChFi3d_SearchSing; %feature("autodoc", " Parameters @@ -848,8 +848,8 @@ No available documentation. ") ChFi3d_SearchSing; ChFi3d_SearchSing(const opencascade::handle & C1, const opencascade::handle & C2); - /****************** Derivative ******************/ - /**** md5 signature: 95e91729f1fb548d9a62f690b302c323 ****/ + /****** ChFi3d_SearchSing::Derivative ******/ + /****** md5 signature: 95e91729f1fb548d9a62f690b302c323 ******/ %feature("compactdefaultargs") Derivative; %feature("autodoc", " Parameters @@ -866,8 +866,8 @@ Computes the derivative of the function for the variable . returns true i ") Derivative; Standard_Boolean Derivative(const Standard_Real X, Standard_Real &OutValue); - /****************** Value ******************/ - /**** md5 signature: 860bcc3da162e9f9f232f07518550196 ****/ + /****** ChFi3d_SearchSing::Value ******/ + /****** md5 signature: 860bcc3da162e9f9f232f07518550196 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -884,8 +884,8 @@ Computes the value of the function for the variable . returns true if the ") Value; Standard_Boolean Value(const Standard_Real X, Standard_Real &OutValue); - /****************** Values ******************/ - /**** md5 signature: fd71eb9a1a2bd16185bbb032c3d29afc ****/ + /****** ChFi3d_SearchSing::Values ******/ + /****** md5 signature: fd71eb9a1a2bd16185bbb032c3d29afc ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -917,8 +917,8 @@ Computes the value and the derivative of the function for the variable < *************************/ class ChFi3d_ChBuilder : public ChFi3d_Builder { public: - /****************** ChFi3d_ChBuilder ******************/ - /**** md5 signature: 7120384ca6dcfe48f81eab9aea9d69e2 ****/ + /****** ChFi3d_ChBuilder::ChFi3d_ChBuilder ******/ + /****** md5 signature: 7120384ca6dcfe48f81eab9aea9d69e2 ******/ %feature("compactdefaultargs") ChFi3d_ChBuilder; %feature("autodoc", " Parameters @@ -936,8 +936,8 @@ Initializes the builder with the shape for the computation of chamfers. ") ChFi3d_ChBuilder; ChFi3d_ChBuilder(const TopoDS_Shape & S, const Standard_Real Ta = 1.0e-2); - /****************** Add ******************/ - /**** md5 signature: 2689ece383041802da1cd80a0167e44a ****/ + /****** ChFi3d_ChBuilder::Add ******/ + /****** md5 signature: 2689ece383041802da1cd80a0167e44a ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -954,8 +954,8 @@ Initializes a contour with the edge as first (the next are found by propagat ") Add; void Add(const TopoDS_Edge & E); - /****************** Add ******************/ - /**** md5 signature: 5df832e06f6a2a3e7dd74bbc479baf92 ****/ + /****** ChFi3d_ChBuilder::Add ******/ + /****** md5 signature: 5df832e06f6a2a3e7dd74bbc479baf92 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -973,8 +973,8 @@ Initializes a new contour with the edge as first (the next are found by prop ") Add; void Add(const Standard_Real Dis, const TopoDS_Edge & E); - /****************** Add ******************/ - /**** md5 signature: 3d413aacf4fbe519a69cb102312acd8a ****/ + /****** ChFi3d_ChBuilder::Add ******/ + /****** md5 signature: 3d413aacf4fbe519a69cb102312acd8a ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -994,8 +994,8 @@ Initializes a new contour with the edge as first (the next are found by prop ") Add; void Add(const Standard_Real Dis1, const Standard_Real Dis2, const TopoDS_Edge & E, const TopoDS_Face & F); - /****************** AddDA ******************/ - /**** md5 signature: b13fc907617fc4fffa48eb6ecc1c875f ****/ + /****** ChFi3d_ChBuilder::AddDA ******/ + /****** md5 signature: b13fc907617fc4fffa48eb6ecc1c875f ******/ %feature("compactdefaultargs") AddDA; %feature("autodoc", " Parameters @@ -1015,8 +1015,8 @@ Initializes a new contour with the edge as first (the next are found by prop ") AddDA; void AddDA(const Standard_Real Dis, const Standard_Real Angle, const TopoDS_Edge & E, const TopoDS_Face & F); - /****************** Dists ******************/ - /**** md5 signature: 25b55d4bd35e93f2afa86c7ba6682d7e ****/ + /****** ChFi3d_ChBuilder::Dists ******/ + /****** md5 signature: 25b55d4bd35e93f2afa86c7ba6682d7e ******/ %feature("compactdefaultargs") Dists; %feature("autodoc", " Parameters @@ -1034,8 +1034,8 @@ Gives the distances and of the fillet contour of index in the ") Dists; void Dists(const Standard_Integer IC, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** GetDist ******************/ - /**** md5 signature: 84c7d3c61b94e48d768b0bb3c4924f47 ****/ + /****** ChFi3d_ChBuilder::GetDist ******/ + /****** md5 signature: 84c7d3c61b94e48d768b0bb3c4924f47 ******/ %feature("compactdefaultargs") GetDist; %feature("autodoc", " Parameters @@ -1052,8 +1052,8 @@ Gives the distances of the fillet contour of index in the ds. ") GetDist; void GetDist(const Standard_Integer IC, Standard_Real &OutValue); - /****************** GetDistAngle ******************/ - /**** md5 signature: ccc047433212c6a4b18b05da6f614d32 ****/ + /****** ChFi3d_ChBuilder::GetDistAngle ******/ + /****** md5 signature: ccc047433212c6a4b18b05da6f614d32 ******/ %feature("compactdefaultargs") GetDistAngle; %feature("autodoc", " Parameters @@ -1071,8 +1071,8 @@ Gives the distances and of the fillet contour of index in the ") GetDistAngle; void GetDistAngle(const Standard_Integer IC, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** IsChamfer ******************/ - /**** md5 signature: 661b4ca5cdc6256cec105065329c70a1 ****/ + /****** ChFi3d_ChBuilder::IsChamfer ******/ + /****** md5 signature: 661b4ca5cdc6256cec105065329c70a1 ******/ %feature("compactdefaultargs") IsChamfer; %feature("autodoc", " Parameters @@ -1089,8 +1089,8 @@ Renvoi la methode des chanfreins utilisee. ") IsChamfer; ChFiDS_ChamfMethod IsChamfer(const Standard_Integer IC); - /****************** Mode ******************/ - /**** md5 signature: 646b757cb6ae4ed9f283015af34597e7 ****/ + /****** ChFi3d_ChBuilder::Mode ******/ + /****** md5 signature: 646b757cb6ae4ed9f283015af34597e7 ******/ %feature("compactdefaultargs") Mode; %feature("autodoc", "Return ------- @@ -1102,8 +1102,8 @@ Returns the mode of chamfer used. ") Mode; ChFiDS_ChamfMode Mode(); - /****************** NbSurf ******************/ - /**** md5 signature: 3ba1e0286f267bc085d79a266b5090c0 ****/ + /****** ChFi3d_ChBuilder::NbSurf ******/ + /****** md5 signature: 3ba1e0286f267bc085d79a266b5090c0 ******/ %feature("compactdefaultargs") NbSurf; %feature("autodoc", " Parameters @@ -1120,8 +1120,8 @@ No available documentation. ") NbSurf; Standard_Integer NbSurf(const Standard_Integer IC); - /****************** PerformSurf ******************/ - /**** md5 signature: 01d67c8421da2eaa3e036d64149614d9 ****/ + /****** ChFi3d_ChBuilder::PerformSurf ******/ + /****** md5 signature: 01d67c8421da2eaa3e036d64149614d9 ******/ %feature("compactdefaultargs") PerformSurf; %feature("autodoc", " Parameters @@ -1157,8 +1157,8 @@ Methode, implemented in inheritants, calculates the elements of construction of ") PerformSurf; virtual Standard_Boolean PerformSurf(ChFiDS_SequenceOfSurfData & Data, const opencascade::handle & Guide, const opencascade::handle & Spine, const Standard_Integer Choix, const opencascade::handle & S1, const opencascade::handle & I1, const opencascade::handle & S2, const opencascade::handle & I2, const Standard_Real MaxStep, const Standard_Real Fleche, const Standard_Real TolGuide, Standard_Real &OutValue, Standard_Real &OutValue, const Standard_Boolean Inside, const Standard_Boolean Appro, const Standard_Boolean Forward, const Standard_Boolean RecOnS1, const Standard_Boolean RecOnS2, const math_Vector & Soldep, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** PerformSurf ******************/ - /**** md5 signature: 27fad33178796b889491ae5a65ffaa83 ****/ + /****** ChFi3d_ChBuilder::PerformSurf ******/ + /****** md5 signature: 27fad33178796b889491ae5a65ffaa83 ******/ %feature("compactdefaultargs") PerformSurf; %feature("autodoc", " Parameters @@ -1198,8 +1198,8 @@ Method, implemented in the inheritants, calculates the elements of construction ") PerformSurf; virtual void PerformSurf(ChFiDS_SequenceOfSurfData & Data, const opencascade::handle & Guide, const opencascade::handle & Spine, const Standard_Integer Choix, const opencascade::handle & S1, const opencascade::handle & I1, const opencascade::handle & PC1, const opencascade::handle & Sref1, const opencascade::handle & PCref1, Standard_Boolean &OutValue, const opencascade::handle & S2, const opencascade::handle & I2, const TopAbs_Orientation Or2, const Standard_Real MaxStep, const Standard_Real Fleche, const Standard_Real TolGuide, Standard_Real &OutValue, Standard_Real &OutValue, const Standard_Boolean Inside, const Standard_Boolean Appro, const Standard_Boolean Forward, const Standard_Boolean RecP, const Standard_Boolean RecS, const Standard_Boolean RecRst, const math_Vector & Soldep); - /****************** PerformSurf ******************/ - /**** md5 signature: b6fc74634dcc7a5b9a1787473dff3cb2 ****/ + /****** ChFi3d_ChBuilder::PerformSurf ******/ + /****** md5 signature: b6fc74634dcc7a5b9a1787473dff3cb2 ******/ %feature("compactdefaultargs") PerformSurf; %feature("autodoc", " Parameters @@ -1239,8 +1239,8 @@ Method, implemented in inheritants, calculates the elements of construction of t ") PerformSurf; virtual void PerformSurf(ChFiDS_SequenceOfSurfData & Data, const opencascade::handle & Guide, const opencascade::handle & Spine, const Standard_Integer Choix, const opencascade::handle & S1, const opencascade::handle & I1, const TopAbs_Orientation Or1, const opencascade::handle & S2, const opencascade::handle & I2, const opencascade::handle & PC2, const opencascade::handle & Sref2, const opencascade::handle & PCref2, Standard_Boolean &OutValue, const Standard_Real MaxStep, const Standard_Real Fleche, const Standard_Real TolGuide, Standard_Real &OutValue, Standard_Real &OutValue, const Standard_Boolean Inside, const Standard_Boolean Appro, const Standard_Boolean Forward, const Standard_Boolean RecP, const Standard_Boolean RecS, const Standard_Boolean RecRst, const math_Vector & Soldep); - /****************** PerformSurf ******************/ - /**** md5 signature: 55427c62cfb96c3cbbd5aec277672cd2 ****/ + /****** ChFi3d_ChBuilder::PerformSurf ******/ + /****** md5 signature: 55427c62cfb96c3cbbd5aec277672cd2 ******/ %feature("compactdefaultargs") PerformSurf; %feature("autodoc", " Parameters @@ -1286,8 +1286,8 @@ Method, implemented in inheritants, calculates the elements of construction of t ") PerformSurf; virtual void PerformSurf(ChFiDS_SequenceOfSurfData & Data, const opencascade::handle & Guide, const opencascade::handle & Spine, const Standard_Integer Choix, const opencascade::handle & S1, const opencascade::handle & I1, const opencascade::handle & PC1, const opencascade::handle & Sref1, const opencascade::handle & PCref1, Standard_Boolean &OutValue, const TopAbs_Orientation Or1, const opencascade::handle & S2, const opencascade::handle & I2, const opencascade::handle & PC2, const opencascade::handle & Sref2, const opencascade::handle & PCref2, Standard_Boolean &OutValue, const TopAbs_Orientation Or2, const Standard_Real MaxStep, const Standard_Real Fleche, const Standard_Real TolGuide, Standard_Real &OutValue, Standard_Real &OutValue, const Standard_Boolean Inside, const Standard_Boolean Appro, const Standard_Boolean Forward, const Standard_Boolean RecP1, const Standard_Boolean RecRst1, const Standard_Boolean RecP2, const Standard_Boolean RecRst2, const math_Vector & Soldep); - /****************** ResetContour ******************/ - /**** md5 signature: 654a75a6070237897ac136e282153619 ****/ + /****** ChFi3d_ChBuilder::ResetContour ******/ + /****** md5 signature: 654a75a6070237897ac136e282153619 ******/ %feature("compactdefaultargs") ResetContour; %feature("autodoc", " Parameters @@ -1304,8 +1304,8 @@ Reset tous rayons du contour ic. ") ResetContour; void ResetContour(const Standard_Integer IC); - /****************** Sect ******************/ - /**** md5 signature: 92e5ad2e9df2d2372c7f126adea80e1f ****/ + /****** ChFi3d_ChBuilder::Sect ******/ + /****** md5 signature: 92e5ad2e9df2d2372c7f126adea80e1f ******/ %feature("compactdefaultargs") Sect; %feature("autodoc", " Parameters @@ -1323,8 +1323,8 @@ No available documentation. ") Sect; opencascade::handle Sect(const Standard_Integer IC, const Standard_Integer IS); - /****************** SetDist ******************/ - /**** md5 signature: 789e30011f188a91019292809e2bc8e3 ****/ + /****** ChFi3d_ChBuilder::SetDist ******/ + /****** md5 signature: 789e30011f188a91019292809e2bc8e3 ******/ %feature("compactdefaultargs") SetDist; %feature("autodoc", " Parameters @@ -1343,8 +1343,8 @@ Set the distance of the fillet contour of index in the ds with ") SetDist; void SetDist(const Standard_Real Dis, const Standard_Integer IC, const TopoDS_Face & F); - /****************** SetDistAngle ******************/ - /**** md5 signature: 9a08ff085bc7ed451624212f4387c5cd ****/ + /****** ChFi3d_ChBuilder::SetDistAngle ******/ + /****** md5 signature: 9a08ff085bc7ed451624212f4387c5cd ******/ %feature("compactdefaultargs") SetDistAngle; %feature("autodoc", " Parameters @@ -1364,8 +1364,8 @@ Set the distance and of the fillet contour of index in the ds ") SetDistAngle; void SetDistAngle(const Standard_Real Dis, const Standard_Real Angle, const Standard_Integer IC, const TopoDS_Face & F); - /****************** SetDists ******************/ - /**** md5 signature: 74f8c6096ad0cd9495a44c102ab48955 ****/ + /****** ChFi3d_ChBuilder::SetDists ******/ + /****** md5 signature: 74f8c6096ad0cd9495a44c102ab48955 ******/ %feature("compactdefaultargs") SetDists; %feature("autodoc", " Parameters @@ -1385,8 +1385,8 @@ Set the distances and of the fillet contour of index in the d ") SetDists; void SetDists(const Standard_Real Dis1, const Standard_Real Dis2, const Standard_Integer IC, const TopoDS_Face & F); - /****************** SetMode ******************/ - /**** md5 signature: 85103d8a8712f2721bdad80918d54319 ****/ + /****** ChFi3d_ChBuilder::SetMode ******/ + /****** md5 signature: 85103d8a8712f2721bdad80918d54319 ******/ %feature("compactdefaultargs") SetMode; %feature("autodoc", " Parameters @@ -1403,8 +1403,8 @@ Set the mode of shamfer. ") SetMode; void SetMode(const ChFiDS_ChamfMode theMode); - /****************** SimulSurf ******************/ - /**** md5 signature: 6293666f943c89cae5e253ba901392fd ****/ + /****** ChFi3d_ChBuilder::SimulSurf ******/ + /****** md5 signature: 6293666f943c89cae5e253ba901392fd ******/ %feature("compactdefaultargs") SimulSurf; %feature("autodoc", " Parameters @@ -1443,8 +1443,8 @@ No available documentation. ") SimulSurf; virtual void SimulSurf(opencascade::handle & Data, const opencascade::handle & Guide, const opencascade::handle & Spine, const Standard_Integer Choix, const opencascade::handle & S1, const opencascade::handle & I1, const opencascade::handle & PC1, const opencascade::handle & Sref1, const opencascade::handle & PCref1, Standard_Boolean &OutValue, const opencascade::handle & S2, const opencascade::handle & I2, const TopAbs_Orientation Or2, const Standard_Real Fleche, const Standard_Real TolGuide, Standard_Real &OutValue, Standard_Real &OutValue, const Standard_Boolean Inside, const Standard_Boolean Appro, const Standard_Boolean Forward, const Standard_Boolean RecP, const Standard_Boolean RecS, const Standard_Boolean RecRst, const math_Vector & Soldep); - /****************** SimulSurf ******************/ - /**** md5 signature: 01823619c7721126962ad7cff175c347 ****/ + /****** ChFi3d_ChBuilder::SimulSurf ******/ + /****** md5 signature: 01823619c7721126962ad7cff175c347 ******/ %feature("compactdefaultargs") SimulSurf; %feature("autodoc", " Parameters @@ -1483,8 +1483,8 @@ No available documentation. ") SimulSurf; virtual void SimulSurf(opencascade::handle & Data, const opencascade::handle & Guide, const opencascade::handle & Spine, const Standard_Integer Choix, const opencascade::handle & S1, const opencascade::handle & I1, const TopAbs_Orientation Or1, const opencascade::handle & S2, const opencascade::handle & I2, const opencascade::handle & PC2, const opencascade::handle & Sref2, const opencascade::handle & PCref2, Standard_Boolean &OutValue, const Standard_Real Fleche, const Standard_Real TolGuide, Standard_Real &OutValue, Standard_Real &OutValue, const Standard_Boolean Inside, const Standard_Boolean Appro, const Standard_Boolean Forward, const Standard_Boolean RecP, const Standard_Boolean RecS, const Standard_Boolean RecRst, const math_Vector & Soldep); - /****************** SimulSurf ******************/ - /**** md5 signature: 9ab815476dc2b2cfb5dc838b763cb628 ****/ + /****** ChFi3d_ChBuilder::SimulSurf ******/ + /****** md5 signature: 9ab815476dc2b2cfb5dc838b763cb628 ******/ %feature("compactdefaultargs") SimulSurf; %feature("autodoc", " Parameters @@ -1529,8 +1529,8 @@ No available documentation. ") SimulSurf; virtual void SimulSurf(opencascade::handle & Data, const opencascade::handle & Guide, const opencascade::handle & Spine, const Standard_Integer Choix, const opencascade::handle & S1, const opencascade::handle & I1, const opencascade::handle & PC1, const opencascade::handle & Sref1, const opencascade::handle & PCref1, Standard_Boolean &OutValue, const TopAbs_Orientation Or1, const opencascade::handle & S2, const opencascade::handle & I2, const opencascade::handle & PC2, const opencascade::handle & Sref2, const opencascade::handle & PCref2, Standard_Boolean &OutValue, const TopAbs_Orientation Or2, const Standard_Real Fleche, const Standard_Real TolGuide, Standard_Real &OutValue, Standard_Real &OutValue, const Standard_Boolean Inside, const Standard_Boolean Appro, const Standard_Boolean Forward, const Standard_Boolean RecP1, const Standard_Boolean RecRst1, const Standard_Boolean RecP2, const Standard_Boolean RecRst2, const math_Vector & Soldep); - /****************** Simulate ******************/ - /**** md5 signature: 2cd119960e597a9f622fcb1f996b7f10 ****/ + /****** ChFi3d_ChBuilder::Simulate ******/ + /****** md5 signature: 2cd119960e597a9f622fcb1f996b7f10 ******/ %feature("compactdefaultargs") Simulate; %feature("autodoc", " Parameters @@ -1561,8 +1561,8 @@ No available documentation. **************************/ class ChFi3d_FilBuilder : public ChFi3d_Builder { public: - /****************** ChFi3d_FilBuilder ******************/ - /**** md5 signature: bc0ee30d6b71dcd56f616701c06e9417 ****/ + /****** ChFi3d_FilBuilder::ChFi3d_FilBuilder ******/ + /****** md5 signature: bc0ee30d6b71dcd56f616701c06e9417 ******/ %feature("compactdefaultargs") ChFi3d_FilBuilder; %feature("autodoc", " Parameters @@ -1581,8 +1581,8 @@ No available documentation. ") ChFi3d_FilBuilder; ChFi3d_FilBuilder(const TopoDS_Shape & S, const ChFi3d_FilletShape FShape = ChFi3d_Rational, const Standard_Real Ta = 1.0e-2); - /****************** Add ******************/ - /**** md5 signature: 2689ece383041802da1cd80a0167e44a ****/ + /****** ChFi3d_FilBuilder::Add ******/ + /****** md5 signature: 2689ece383041802da1cd80a0167e44a ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1599,8 +1599,8 @@ Initialisation of a contour with the first edge (the following are found by prop ") Add; void Add(const TopoDS_Edge & E); - /****************** Add ******************/ - /**** md5 signature: 76561d24a6bc7a4c8b9703f8ada723d1 ****/ + /****** ChFi3d_FilBuilder::Add ******/ + /****** md5 signature: 76561d24a6bc7a4c8b9703f8ada723d1 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1618,8 +1618,8 @@ Initialisation of the constant vector the corresponding 1st edge. ") Add; void Add(const Standard_Real Radius, const TopoDS_Edge & E); - /****************** GetBounds ******************/ - /**** md5 signature: e9c8e7eca8571ba8660235024489488f ****/ + /****** ChFi3d_FilBuilder::GetBounds ******/ + /****** md5 signature: e9c8e7eca8571ba8660235024489488f ******/ %feature("compactdefaultargs") GetBounds; %feature("autodoc", " Parameters @@ -1638,8 +1638,8 @@ Returns in first and last les extremities of the part of variable vector framing ") GetBounds; Standard_Boolean GetBounds(const Standard_Integer IC, const TopoDS_Edge & E, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** GetFilletShape ******************/ - /**** md5 signature: 20984b7354615dd8cd27c08187d0e0c2 ****/ + /****** ChFi3d_FilBuilder::GetFilletShape ******/ + /****** md5 signature: 20984b7354615dd8cd27c08187d0e0c2 ******/ %feature("compactdefaultargs") GetFilletShape; %feature("autodoc", "Return ------- @@ -1651,8 +1651,8 @@ Returns the type of fillet surface. ") GetFilletShape; ChFi3d_FilletShape GetFilletShape(); - /****************** GetLaw ******************/ - /**** md5 signature: ddf4e7699933a83df3959c22378f680c ****/ + /****** ChFi3d_FilBuilder::GetLaw ******/ + /****** md5 signature: ddf4e7699933a83df3959c22378f680c ******/ %feature("compactdefaultargs") GetLaw; %feature("autodoc", " Parameters @@ -1670,8 +1670,8 @@ Returns the rule of elementary evolution of the part to variable vector framing ") GetLaw; opencascade::handle GetLaw(const Standard_Integer IC, const TopoDS_Edge & E); - /****************** IsConstant ******************/ - /**** md5 signature: 524ff18247c3bd6dd3b77ea2fbe631ab ****/ + /****** ChFi3d_FilBuilder::IsConstant ******/ + /****** md5 signature: 524ff18247c3bd6dd3b77ea2fbe631ab ******/ %feature("compactdefaultargs") IsConstant; %feature("autodoc", " Parameters @@ -1688,8 +1688,8 @@ Returns true the contour is flagged as edge constant. ") IsConstant; Standard_Boolean IsConstant(const Standard_Integer IC); - /****************** IsConstant ******************/ - /**** md5 signature: 257d5c150f15059bb7c72ce611d410fc ****/ + /****** ChFi3d_FilBuilder::IsConstant ******/ + /****** md5 signature: 257d5c150f15059bb7c72ce611d410fc ******/ %feature("compactdefaultargs") IsConstant; %feature("autodoc", " Parameters @@ -1707,8 +1707,8 @@ Returns true e is flagged as edge constant. ") IsConstant; Standard_Boolean IsConstant(const Standard_Integer IC, const TopoDS_Edge & E); - /****************** NbSurf ******************/ - /**** md5 signature: 3ba1e0286f267bc085d79a266b5090c0 ****/ + /****** ChFi3d_FilBuilder::NbSurf ******/ + /****** md5 signature: 3ba1e0286f267bc085d79a266b5090c0 ******/ %feature("compactdefaultargs") NbSurf; %feature("autodoc", " Parameters @@ -1725,8 +1725,8 @@ No available documentation. ") NbSurf; Standard_Integer NbSurf(const Standard_Integer IC); - /****************** Radius ******************/ - /**** md5 signature: fa1b61b1f5b63be2bd1c45ff84f2e774 ****/ + /****** ChFi3d_FilBuilder::Radius ******/ + /****** md5 signature: fa1b61b1f5b63be2bd1c45ff84f2e774 ******/ %feature("compactdefaultargs") Radius; %feature("autodoc", " Parameters @@ -1743,8 +1743,8 @@ Returns the vector if the contour is flagged as edge constant. ") Radius; Standard_Real Radius(const Standard_Integer IC); - /****************** Radius ******************/ - /**** md5 signature: f7159c67e3b0c71e38b6204368bc2c9e ****/ + /****** ChFi3d_FilBuilder::Radius ******/ + /****** md5 signature: f7159c67e3b0c71e38b6204368bc2c9e ******/ %feature("compactdefaultargs") Radius; %feature("autodoc", " Parameters @@ -1762,8 +1762,8 @@ Returns the vector if e is flagged as edge constant. ") Radius; Standard_Real Radius(const Standard_Integer IC, const TopoDS_Edge & E); - /****************** ResetContour ******************/ - /**** md5 signature: 654a75a6070237897ac136e282153619 ****/ + /****** ChFi3d_FilBuilder::ResetContour ******/ + /****** md5 signature: 654a75a6070237897ac136e282153619 ******/ %feature("compactdefaultargs") ResetContour; %feature("autodoc", " Parameters @@ -1780,8 +1780,8 @@ Reset all vectors of contour ic. ") ResetContour; void ResetContour(const Standard_Integer IC); - /****************** Sect ******************/ - /**** md5 signature: 92e5ad2e9df2d2372c7f126adea80e1f ****/ + /****** ChFi3d_FilBuilder::Sect ******/ + /****** md5 signature: 92e5ad2e9df2d2372c7f126adea80e1f ******/ %feature("compactdefaultargs") Sect; %feature("autodoc", " Parameters @@ -1799,8 +1799,8 @@ No available documentation. ") Sect; opencascade::handle Sect(const Standard_Integer IC, const Standard_Integer IS); - /****************** SetFilletShape ******************/ - /**** md5 signature: e06a9b29defc75fed749ac6b4289246e ****/ + /****** ChFi3d_FilBuilder::SetFilletShape ******/ + /****** md5 signature: e06a9b29defc75fed749ac6b4289246e ******/ %feature("compactdefaultargs") SetFilletShape; %feature("autodoc", " Parameters @@ -1817,8 +1817,8 @@ Sets the type of fillet surface. ") SetFilletShape; void SetFilletShape(const ChFi3d_FilletShape FShape); - /****************** SetLaw ******************/ - /**** md5 signature: 6b759d0a0e31e3dac6b56c3c9951b79f ****/ + /****** ChFi3d_FilBuilder::SetLaw ******/ + /****** md5 signature: 6b759d0a0e31e3dac6b56c3c9951b79f ******/ %feature("compactdefaultargs") SetLaw; %feature("autodoc", " Parameters @@ -1837,8 +1837,8 @@ Sets the rule of elementary evolution of the part to variable vector framing e. ") SetLaw; void SetLaw(const Standard_Integer IC, const TopoDS_Edge & E, const opencascade::handle & L); - /****************** SetRadius ******************/ - /**** md5 signature: 21488f68e7c80ebbc1e1d896c4c61405 ****/ + /****** ChFi3d_FilBuilder::SetRadius ******/ + /****** md5 signature: 21488f68e7c80ebbc1e1d896c4c61405 ******/ %feature("compactdefaultargs") SetRadius; %feature("autodoc", " Parameters @@ -1857,8 +1857,8 @@ Set the radius of the contour of index ic. ") SetRadius; void SetRadius(const opencascade::handle & C, const Standard_Integer IC, const Standard_Integer IinC); - /****************** SetRadius ******************/ - /**** md5 signature: 56cd0b711b7c7a0a5ac3f46e84fd6fe3 ****/ + /****** ChFi3d_FilBuilder::SetRadius ******/ + /****** md5 signature: 56cd0b711b7c7a0a5ac3f46e84fd6fe3 ******/ %feature("compactdefaultargs") SetRadius; %feature("autodoc", " Parameters @@ -1877,8 +1877,8 @@ Set a constant on edge e of the contour of index ic. since then e is flagged as ") SetRadius; void SetRadius(const Standard_Real Radius, const Standard_Integer IC, const TopoDS_Edge & E); - /****************** SetRadius ******************/ - /**** md5 signature: 8c455c2795828e4085759369fbb8b830 ****/ + /****** ChFi3d_FilBuilder::SetRadius ******/ + /****** md5 signature: 8c455c2795828e4085759369fbb8b830 ******/ %feature("compactdefaultargs") SetRadius; %feature("autodoc", " Parameters @@ -1897,8 +1897,8 @@ Set a vector on vertex v of the contour of index ic. ") SetRadius; void SetRadius(const Standard_Real Radius, const Standard_Integer IC, const TopoDS_Vertex & V); - /****************** SetRadius ******************/ - /**** md5 signature: e751199546621edad98f6bfbc943fbd8 ****/ + /****** ChFi3d_FilBuilder::SetRadius ******/ + /****** md5 signature: e751199546621edad98f6bfbc943fbd8 ******/ %feature("compactdefaultargs") SetRadius; %feature("autodoc", " Parameters @@ -1917,8 +1917,8 @@ Set a vertex on the point of parametre u in the edge iinc of the contour of inde ") SetRadius; void SetRadius(const gp_XY & UandR, const Standard_Integer IC, const Standard_Integer IinC); - /****************** Simulate ******************/ - /**** md5 signature: 2cd119960e597a9f622fcb1f996b7f10 ****/ + /****** ChFi3d_FilBuilder::Simulate ******/ + /****** md5 signature: 2cd119960e597a9f622fcb1f996b7f10 ******/ %feature("compactdefaultargs") Simulate; %feature("autodoc", " Parameters @@ -1935,8 +1935,8 @@ No available documentation. ") Simulate; void Simulate(const Standard_Integer IC); - /****************** UnSet ******************/ - /**** md5 signature: 5bea14e65811e9d97ebe70e8d9051345 ****/ + /****** ChFi3d_FilBuilder::UnSet ******/ + /****** md5 signature: 5bea14e65811e9d97ebe70e8d9051345 ******/ %feature("compactdefaultargs") UnSet; %feature("autodoc", " Parameters @@ -1954,8 +1954,8 @@ Extracts the flag constant and the vector of edge e. ") UnSet; void UnSet(const Standard_Integer IC, const TopoDS_Edge & E); - /****************** UnSet ******************/ - /**** md5 signature: 51b9d66d8fbc64376b2995567ecc007f ****/ + /****** ChFi3d_FilBuilder::UnSet ******/ + /****** md5 signature: 51b9d66d8fbc64376b2995567ecc007f ******/ %feature("compactdefaultargs") UnSet; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/ChFiDS.i b/src/SWIG_files/wrapper/ChFiDS.i index 091a84988..daf802679 100644 --- a/src/SWIG_files/wrapper/ChFiDS.i +++ b/src/SWIG_files/wrapper/ChFiDS.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define CHFIDSDOCSTRING "ChFiDS module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_chfids.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_chfids.html" %enddef %module (package="OCC.Core", docstring=CHFIDSDOCSTRING) ChFiDS @@ -272,8 +272,8 @@ typedef NCollection_Array1> ChFiDS_StripeArra ***************************/ class ChFiDS_CircSection { public: - /****************** ChFiDS_CircSection ******************/ - /**** md5 signature: 6523e873553d9df45ab3ab97e227ce1f ****/ + /****** ChFiDS_CircSection::ChFiDS_CircSection ******/ + /****** md5 signature: 6523e873553d9df45ab3ab97e227ce1f ******/ %feature("compactdefaultargs") ChFiDS_CircSection; %feature("autodoc", "Return ------- @@ -285,8 +285,8 @@ No available documentation. ") ChFiDS_CircSection; ChFiDS_CircSection(); - /****************** Get ******************/ - /**** md5 signature: a1f8c105562696f8f7b9cb3c76886f3b ****/ + /****** ChFiDS_CircSection::Get ******/ + /****** md5 signature: a1f8c105562696f8f7b9cb3c76886f3b ******/ %feature("compactdefaultargs") Get; %feature("autodoc", " Parameters @@ -304,8 +304,8 @@ No available documentation. ") Get; void Get(gp_Circ & C, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Get ******************/ - /**** md5 signature: 308ba452ddd6c0ba74516bc55b787d5c ****/ + /****** ChFiDS_CircSection::Get ******/ + /****** md5 signature: 308ba452ddd6c0ba74516bc55b787d5c ******/ %feature("compactdefaultargs") Get; %feature("autodoc", " Parameters @@ -323,8 +323,8 @@ No available documentation. ") Get; void Get(gp_Lin & C, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Set ******************/ - /**** md5 signature: f809c774b4f408588ecfa44007642c36 ****/ + /****** ChFiDS_CircSection::Set ******/ + /****** md5 signature: f809c774b4f408588ecfa44007642c36 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -343,8 +343,8 @@ No available documentation. ") Set; void Set(const gp_Circ & C, const Standard_Real F, const Standard_Real L); - /****************** Set ******************/ - /**** md5 signature: 51063ff92fa3854b20788a299c724e02 ****/ + /****** ChFiDS_CircSection::Set ******/ + /****** md5 signature: 51063ff92fa3854b20788a299c724e02 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -377,8 +377,8 @@ No available documentation. ***************************/ class ChFiDS_CommonPoint { public: - /****************** ChFiDS_CommonPoint ******************/ - /**** md5 signature: 1caa644f6c5ddee79ec165570f0bf85e ****/ + /****** ChFiDS_CommonPoint::ChFiDS_CommonPoint ******/ + /****** md5 signature: 1caa644f6c5ddee79ec165570f0bf85e ******/ %feature("compactdefaultargs") ChFiDS_CommonPoint; %feature("autodoc", "Return ------- @@ -390,8 +390,8 @@ Empty constructor. ") ChFiDS_CommonPoint; ChFiDS_CommonPoint(); - /****************** Arc ******************/ - /**** md5 signature: 5ad70ec93182770590e68292096cc021 ****/ + /****** ChFiDS_CommonPoint::Arc ******/ + /****** md5 signature: 5ad70ec93182770590e68292096cc021 ******/ %feature("compactdefaultargs") Arc; %feature("autodoc", "Return ------- @@ -403,8 +403,8 @@ Returns the arc of restriction containing the vertex. ") Arc; const TopoDS_Edge Arc(); - /****************** HasVector ******************/ - /**** md5 signature: cdf1102fba87269c204cf4398c655af3 ****/ + /****** ChFiDS_CommonPoint::HasVector ******/ + /****** md5 signature: cdf1102fba87269c204cf4398c655af3 ******/ %feature("compactdefaultargs") HasVector; %feature("autodoc", "Return ------- @@ -416,8 +416,8 @@ Returns true if the output vector is stored. ") HasVector; Standard_Boolean HasVector(); - /****************** IsOnArc ******************/ - /**** md5 signature: b03b70dd2ee9f895b787f6dbe3e85ce3 ****/ + /****** ChFiDS_CommonPoint::IsOnArc ******/ + /****** md5 signature: b03b70dd2ee9f895b787f6dbe3e85ce3 ******/ %feature("compactdefaultargs") IsOnArc; %feature("autodoc", "Return ------- @@ -429,8 +429,8 @@ Returns true if the point is a on an edge of the initial restriction facet of th ") IsOnArc; Standard_Boolean IsOnArc(); - /****************** IsVertex ******************/ - /**** md5 signature: 856b3bdfdec770bc63025788388af574 ****/ + /****** ChFiDS_CommonPoint::IsVertex ******/ + /****** md5 signature: 856b3bdfdec770bc63025788388af574 ******/ %feature("compactdefaultargs") IsVertex; %feature("autodoc", "Return ------- @@ -442,8 +442,8 @@ Returns true if the point is a vertex on the initial restriction facet of the su ") IsVertex; Standard_Boolean IsVertex(); - /****************** Parameter ******************/ - /**** md5 signature: ecccdeaeaa0deed24f47e61ad75d24f1 ****/ + /****** ChFiDS_CommonPoint::Parameter ******/ + /****** md5 signature: ecccdeaeaa0deed24f47e61ad75d24f1 ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", "Return ------- @@ -455,8 +455,8 @@ Returns the parameter on the spine. ") Parameter; Standard_Real Parameter(); - /****************** ParameterOnArc ******************/ - /**** md5 signature: 53d2051734836b1f3c7d9edd7c3c1884 ****/ + /****** ChFiDS_CommonPoint::ParameterOnArc ******/ + /****** md5 signature: 53d2051734836b1f3c7d9edd7c3c1884 ******/ %feature("compactdefaultargs") ParameterOnArc; %feature("autodoc", "Return ------- @@ -468,8 +468,8 @@ Returns the parameter of the point on the arc returned by the method arc(). ") ParameterOnArc; Standard_Real ParameterOnArc(); - /****************** Point ******************/ - /**** md5 signature: 4e742d9ca138939180edee86d3b37a8f ****/ + /****** ChFiDS_CommonPoint::Point ******/ + /****** md5 signature: 4e742d9ca138939180edee86d3b37a8f ******/ %feature("compactdefaultargs") Point; %feature("autodoc", "Return ------- @@ -481,8 +481,8 @@ Returns the 3d point. ") Point; const gp_Pnt Point(); - /****************** Reset ******************/ - /**** md5 signature: 7beb446fe26b948f797f8de87e46c23d ****/ + /****** ChFiDS_CommonPoint::Reset ******/ + /****** md5 signature: 7beb446fe26b948f797f8de87e46c23d ******/ %feature("compactdefaultargs") Reset; %feature("autodoc", "Return ------- @@ -494,8 +494,8 @@ Default value for all fields. ") Reset; void Reset(); - /****************** SetArc ******************/ - /**** md5 signature: dd555be3b4e20b36002df68268f8cf7b ****/ + /****** ChFiDS_CommonPoint::SetArc ******/ + /****** md5 signature: dd555be3b4e20b36002df68268f8cf7b ******/ %feature("compactdefaultargs") SetArc; %feature("autodoc", " Parameters @@ -515,8 +515,8 @@ Sets the values of a point which is on the arc a, at parameter param. ") SetArc; void SetArc(const Standard_Real Tol, const TopoDS_Edge & A, const Standard_Real Param, const TopAbs_Orientation TArc); - /****************** SetParameter ******************/ - /**** md5 signature: 26222f3f8c770197bec88d8e30e2baa3 ****/ + /****** ChFiDS_CommonPoint::SetParameter ******/ + /****** md5 signature: 26222f3f8c770197bec88d8e30e2baa3 ******/ %feature("compactdefaultargs") SetParameter; %feature("autodoc", " Parameters @@ -533,8 +533,8 @@ Sets the value of the parameter on the spine. ") SetParameter; void SetParameter(const Standard_Real Param); - /****************** SetPoint ******************/ - /**** md5 signature: 68bd126cf7c8875dfaa4eadfc6d81506 ****/ + /****** ChFiDS_CommonPoint::SetPoint ******/ + /****** md5 signature: 68bd126cf7c8875dfaa4eadfc6d81506 ******/ %feature("compactdefaultargs") SetPoint; %feature("autodoc", " Parameters @@ -551,8 +551,8 @@ Set the 3d point for a commonpoint that is not a vertex or on an arc. ") SetPoint; void SetPoint(const gp_Pnt & thePoint); - /****************** SetTolerance ******************/ - /**** md5 signature: 44b5b8eb060c2e3cbf3e6124065a0e26 ****/ + /****** ChFiDS_CommonPoint::SetTolerance ******/ + /****** md5 signature: 44b5b8eb060c2e3cbf3e6124065a0e26 ******/ %feature("compactdefaultargs") SetTolerance; %feature("autodoc", " Parameters @@ -569,8 +569,8 @@ This method set the fuzziness on the point. ") SetTolerance; void SetTolerance(const Standard_Real Tol); - /****************** SetVector ******************/ - /**** md5 signature: f00faab372d6b4314d8a10832bbb9931 ****/ + /****** ChFiDS_CommonPoint::SetVector ******/ + /****** md5 signature: f00faab372d6b4314d8a10832bbb9931 ******/ %feature("compactdefaultargs") SetVector; %feature("autodoc", " Parameters @@ -587,8 +587,8 @@ Set the output 3d vector. ") SetVector; void SetVector(const gp_Vec & theVector); - /****************** SetVertex ******************/ - /**** md5 signature: a34e1fba1fe64766525e67d94c7483ae ****/ + /****** ChFiDS_CommonPoint::SetVertex ******/ + /****** md5 signature: a34e1fba1fe64766525e67d94c7483ae ******/ %feature("compactdefaultargs") SetVertex; %feature("autodoc", " Parameters @@ -605,8 +605,8 @@ Sets the values of a point which is a vertex on the initial facet of restriction ") SetVertex; void SetVertex(const TopoDS_Vertex & theVertex); - /****************** Tolerance ******************/ - /**** md5 signature: 327dcbe220ae5ba3e0203f32c61c38db ****/ + /****** ChFiDS_CommonPoint::Tolerance ******/ + /****** md5 signature: 327dcbe220ae5ba3e0203f32c61c38db ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", "Return ------- @@ -618,8 +618,8 @@ This method returns the fuzziness on the point. ") Tolerance; Standard_Real Tolerance(); - /****************** TransitionOnArc ******************/ - /**** md5 signature: e46e4c017a4b2c34dda6e6f7744be5bc ****/ + /****** ChFiDS_CommonPoint::TransitionOnArc ******/ + /****** md5 signature: e46e4c017a4b2c34dda6e6f7744be5bc ******/ %feature("compactdefaultargs") TransitionOnArc; %feature("autodoc", "Return ------- @@ -631,8 +631,8 @@ Returns the transition of the point on the arc returned by arc(). ") TransitionOnArc; TopAbs_Orientation TransitionOnArc(); - /****************** Vector ******************/ - /**** md5 signature: 1a7a96c96ed619e286fdaba7a529667d ****/ + /****** ChFiDS_CommonPoint::Vector ******/ + /****** md5 signature: 1a7a96c96ed619e286fdaba7a529667d ******/ %feature("compactdefaultargs") Vector; %feature("autodoc", "Return ------- @@ -644,8 +644,8 @@ Returns the output 3d vector. ") Vector; const gp_Vec Vector(); - /****************** Vertex ******************/ - /**** md5 signature: f6b9d30df043abdbae2c9dffcc672395 ****/ + /****** ChFiDS_CommonPoint::Vertex ******/ + /****** md5 signature: f6b9d30df043abdbae2c9dffcc672395 ******/ %feature("compactdefaultargs") Vertex; %feature("autodoc", "Return ------- @@ -671,8 +671,8 @@ Returns the information about the point when it is on the domain of the first pa ***********************/ class ChFiDS_ElSpine : public Adaptor3d_Curve { public: - /****************** ChFiDS_ElSpine ******************/ - /**** md5 signature: a9de632b7a9fa8e53f36b2ec4b34338f ****/ + /****** ChFiDS_ElSpine::ChFiDS_ElSpine ******/ + /****** md5 signature: a9de632b7a9fa8e53f36b2ec4b34338f ******/ %feature("compactdefaultargs") ChFiDS_ElSpine; %feature("autodoc", "Return ------- @@ -684,8 +684,8 @@ No available documentation. ") ChFiDS_ElSpine; ChFiDS_ElSpine(); - /****************** AddVertexWithTangent ******************/ - /**** md5 signature: d4168c525b75434c9db32f9bfffa9982 ****/ + /****** ChFiDS_ElSpine::AddVertexWithTangent ******/ + /****** md5 signature: d4168c525b75434c9db32f9bfffa9982 ******/ %feature("compactdefaultargs") AddVertexWithTangent; %feature("autodoc", " Parameters @@ -702,8 +702,8 @@ No available documentation. ") AddVertexWithTangent; void AddVertexWithTangent(const gp_Ax1 & anAx1); - /****************** BSpline ******************/ - /**** md5 signature: 3ccc0d851302bffb5de6344e3eb3e58d ****/ + /****** ChFiDS_ElSpine::BSpline ******/ + /****** md5 signature: 3ccc0d851302bffb5de6344e3eb3e58d ******/ %feature("compactdefaultargs") BSpline; %feature("autodoc", "Return ------- @@ -715,8 +715,8 @@ No available documentation. ") BSpline; opencascade::handle BSpline(); - /****************** Bezier ******************/ - /**** md5 signature: 092280fc6ee0e7104fbbe3460d73e83c ****/ + /****** ChFiDS_ElSpine::Bezier ******/ + /****** md5 signature: 092280fc6ee0e7104fbbe3460d73e83c ******/ %feature("compactdefaultargs") Bezier; %feature("autodoc", "Return ------- @@ -728,8 +728,8 @@ No available documentation. ") Bezier; opencascade::handle Bezier(); - /****************** ChangeNext ******************/ - /**** md5 signature: faf634b7d93d7e19adce6371de2a76ac ****/ + /****** ChFiDS_ElSpine::ChangeNext ******/ + /****** md5 signature: faf634b7d93d7e19adce6371de2a76ac ******/ %feature("compactdefaultargs") ChangeNext; %feature("autodoc", "Return ------- @@ -741,8 +741,8 @@ No available documentation. ") ChangeNext; opencascade::handle & ChangeNext(); - /****************** ChangePrevious ******************/ - /**** md5 signature: 227fdc4f29720a58cc13f577ea0b5ba4 ****/ + /****** ChFiDS_ElSpine::ChangePrevious ******/ + /****** md5 signature: 227fdc4f29720a58cc13f577ea0b5ba4 ******/ %feature("compactdefaultargs") ChangePrevious; %feature("autodoc", "Return ------- @@ -754,8 +754,8 @@ No available documentation. ") ChangePrevious; opencascade::handle & ChangePrevious(); - /****************** Circle ******************/ - /**** md5 signature: 5f382e7a6af009845ea6e16d54814298 ****/ + /****** ChFiDS_ElSpine::Circle ******/ + /****** md5 signature: 5f382e7a6af009845ea6e16d54814298 ******/ %feature("compactdefaultargs") Circle; %feature("autodoc", "Return ------- @@ -767,8 +767,8 @@ No available documentation. ") Circle; gp_Circ Circle(); - /****************** Continuity ******************/ - /**** md5 signature: 9381b370dfdd50af7f1b79ce202f0c6f ****/ + /****** ChFiDS_ElSpine::Continuity ******/ + /****** md5 signature: 9381b370dfdd50af7f1b79ce202f0c6f ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", "Return ------- @@ -780,8 +780,8 @@ No available documentation. ") Continuity; GeomAbs_Shape Continuity(); - /****************** D0 ******************/ - /**** md5 signature: df369f5511c6c7a731860654c0a9c298 ****/ + /****** ChFiDS_ElSpine::D0 ******/ + /****** md5 signature: df369f5511c6c7a731860654c0a9c298 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -799,8 +799,8 @@ No available documentation. ") D0; virtual void D0(const Standard_Real AbsC, gp_Pnt & P); - /****************** D1 ******************/ - /**** md5 signature: 3b92546c7cd3f352b04381c39c25dd0a ****/ + /****** ChFiDS_ElSpine::D1 ******/ + /****** md5 signature: 3b92546c7cd3f352b04381c39c25dd0a ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -819,8 +819,8 @@ No available documentation. ") D1; virtual void D1(const Standard_Real AbsC, gp_Pnt & P, gp_Vec & V1); - /****************** D2 ******************/ - /**** md5 signature: 28864d9f51b38b7472bc2136e503c2d9 ****/ + /****** ChFiDS_ElSpine::D2 ******/ + /****** md5 signature: 28864d9f51b38b7472bc2136e503c2d9 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -840,8 +840,8 @@ No available documentation. ") D2; virtual void D2(const Standard_Real AbsC, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2); - /****************** D3 ******************/ - /**** md5 signature: 34fe4c1ec1dee0428cc3c133ef021b7c ****/ + /****** ChFiDS_ElSpine::D3 ******/ + /****** md5 signature: 34fe4c1ec1dee0428cc3c133ef021b7c ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -862,8 +862,8 @@ No available documentation. ") D3; virtual void D3(const Standard_Real AbsC, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2, gp_Vec & V3); - /****************** Ellipse ******************/ - /**** md5 signature: e9a77f14e9bbca29370202de404ea9c1 ****/ + /****** ChFiDS_ElSpine::Ellipse ******/ + /****** md5 signature: e9a77f14e9bbca29370202de404ea9c1 ******/ %feature("compactdefaultargs") Ellipse; %feature("autodoc", "Return ------- @@ -875,8 +875,8 @@ No available documentation. ") Ellipse; gp_Elips Ellipse(); - /****************** FirstParameter ******************/ - /**** md5 signature: 4764beb92499e70705c5628a20961327 ****/ + /****** ChFiDS_ElSpine::FirstParameter ******/ + /****** md5 signature: 4764beb92499e70705c5628a20961327 ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", "Return ------- @@ -888,8 +888,8 @@ No available documentation. ") FirstParameter; virtual Standard_Real FirstParameter(); - /****************** FirstParameter ******************/ - /**** md5 signature: f70a98e5455eda40d623400b3a7621bd ****/ + /****** ChFiDS_ElSpine::FirstParameter ******/ + /****** md5 signature: f70a98e5455eda40d623400b3a7621bd ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", " Parameters @@ -906,8 +906,8 @@ No available documentation. ") FirstParameter; void FirstParameter(const Standard_Real P); - /****************** FirstPointAndTgt ******************/ - /**** md5 signature: 9251482358a41a8213a518ba9d7054fd ****/ + /****** ChFiDS_ElSpine::FirstPointAndTgt ******/ + /****** md5 signature: 9251482358a41a8213a518ba9d7054fd ******/ %feature("compactdefaultargs") FirstPointAndTgt; %feature("autodoc", " Parameters @@ -925,8 +925,8 @@ No available documentation. ") FirstPointAndTgt; void FirstPointAndTgt(gp_Pnt & P, gp_Vec & T); - /****************** GetSavedFirstParameter ******************/ - /**** md5 signature: 75db463c8364b8f77f9e3de51ecbedc6 ****/ + /****** ChFiDS_ElSpine::GetSavedFirstParameter ******/ + /****** md5 signature: 75db463c8364b8f77f9e3de51ecbedc6 ******/ %feature("compactdefaultargs") GetSavedFirstParameter; %feature("autodoc", "Return ------- @@ -938,8 +938,8 @@ No available documentation. ") GetSavedFirstParameter; Standard_Real GetSavedFirstParameter(); - /****************** GetSavedLastParameter ******************/ - /**** md5 signature: 6c55b3c4ecd4337f064cf9ed6c0eecaa ****/ + /****** ChFiDS_ElSpine::GetSavedLastParameter ******/ + /****** md5 signature: 6c55b3c4ecd4337f064cf9ed6c0eecaa ******/ %feature("compactdefaultargs") GetSavedLastParameter; %feature("autodoc", "Return ------- @@ -951,8 +951,8 @@ No available documentation. ") GetSavedLastParameter; Standard_Real GetSavedLastParameter(); - /****************** GetType ******************/ - /**** md5 signature: 33b481526e57ba1551397943374a197a ****/ + /****** ChFiDS_ElSpine::GetType ******/ + /****** md5 signature: 33b481526e57ba1551397943374a197a ******/ %feature("compactdefaultargs") GetType; %feature("autodoc", "Return ------- @@ -964,8 +964,8 @@ No available documentation. ") GetType; virtual GeomAbs_CurveType GetType(); - /****************** Hyperbola ******************/ - /**** md5 signature: a96ca49b2ad017b35bb09d0b86cb690d ****/ + /****** ChFiDS_ElSpine::Hyperbola ******/ + /****** md5 signature: a96ca49b2ad017b35bb09d0b86cb690d ******/ %feature("compactdefaultargs") Hyperbola; %feature("autodoc", "Return ------- @@ -977,8 +977,8 @@ No available documentation. ") Hyperbola; gp_Hypr Hyperbola(); - /****************** Intervals ******************/ - /**** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ****/ + /****** ChFiDS_ElSpine::Intervals ******/ + /****** md5 signature: fc573cb56cf1a9c05ee189fd913ff6f5 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -996,8 +996,8 @@ No available documentation. ") Intervals; void Intervals(TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsPeriodic ******************/ - /**** md5 signature: 13a0a38f32e22e8a1ec5aa34cbf9bbea ****/ + /****** ChFiDS_ElSpine::IsPeriodic ******/ + /****** md5 signature: 13a0a38f32e22e8a1ec5aa34cbf9bbea ******/ %feature("compactdefaultargs") IsPeriodic; %feature("autodoc", "Return ------- @@ -1009,8 +1009,8 @@ No available documentation. ") IsPeriodic; virtual Standard_Boolean IsPeriodic(); - /****************** LastParameter ******************/ - /**** md5 signature: 51650ab8b3afb0a24f930d23afae31ca ****/ + /****** ChFiDS_ElSpine::LastParameter ******/ + /****** md5 signature: 51650ab8b3afb0a24f930d23afae31ca ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", "Return ------- @@ -1022,8 +1022,8 @@ No available documentation. ") LastParameter; virtual Standard_Real LastParameter(); - /****************** LastParameter ******************/ - /**** md5 signature: 960ed927a400b05e09d04421f57f40c3 ****/ + /****** ChFiDS_ElSpine::LastParameter ******/ + /****** md5 signature: 960ed927a400b05e09d04421f57f40c3 ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", " Parameters @@ -1040,8 +1040,8 @@ No available documentation. ") LastParameter; void LastParameter(const Standard_Real P); - /****************** LastPointAndTgt ******************/ - /**** md5 signature: 93100e74cc6db5e39d9d8d1a6cf42013 ****/ + /****** ChFiDS_ElSpine::LastPointAndTgt ******/ + /****** md5 signature: 93100e74cc6db5e39d9d8d1a6cf42013 ******/ %feature("compactdefaultargs") LastPointAndTgt; %feature("autodoc", " Parameters @@ -1059,8 +1059,8 @@ No available documentation. ") LastPointAndTgt; void LastPointAndTgt(gp_Pnt & P, gp_Vec & T); - /****************** Line ******************/ - /**** md5 signature: cf28f5541e4e744dd8038e2a9ac75a8f ****/ + /****** ChFiDS_ElSpine::Line ******/ + /****** md5 signature: cf28f5541e4e744dd8038e2a9ac75a8f ******/ %feature("compactdefaultargs") Line; %feature("autodoc", "Return ------- @@ -1072,8 +1072,8 @@ No available documentation. ") Line; gp_Lin Line(); - /****************** NbIntervals ******************/ - /**** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ****/ + /****** ChFiDS_ElSpine::NbIntervals ******/ + /****** md5 signature: 8ce4f61bff96d1ce0784028b47edd8dc ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -1090,8 +1090,8 @@ No available documentation. ") NbIntervals; Standard_Integer NbIntervals(const GeomAbs_Shape S); - /****************** NbVertices ******************/ - /**** md5 signature: 435b05539d6b9d704dc04d9218f26996 ****/ + /****** ChFiDS_ElSpine::NbVertices ******/ + /****** md5 signature: 435b05539d6b9d704dc04d9218f26996 ******/ %feature("compactdefaultargs") NbVertices; %feature("autodoc", "Return ------- @@ -1103,8 +1103,8 @@ No available documentation. ") NbVertices; Standard_Integer NbVertices(); - /****************** Next ******************/ - /**** md5 signature: 39ca926c37bee1c887d1f87f377ea7fd ****/ + /****** ChFiDS_ElSpine::Next ******/ + /****** md5 signature: 39ca926c37bee1c887d1f87f377ea7fd ******/ %feature("compactdefaultargs") Next; %feature("autodoc", "Return ------- @@ -1116,8 +1116,8 @@ No available documentation. ") Next; const opencascade::handle & Next(); - /****************** Parabola ******************/ - /**** md5 signature: 68860abab63fd184ea5c7eb97f0762c1 ****/ + /****** ChFiDS_ElSpine::Parabola ******/ + /****** md5 signature: 68860abab63fd184ea5c7eb97f0762c1 ******/ %feature("compactdefaultargs") Parabola; %feature("autodoc", "Return ------- @@ -1129,8 +1129,8 @@ No available documentation. ") Parabola; gp_Parab Parabola(); - /****************** Period ******************/ - /**** md5 signature: a0af1de0407384df43b0e76d6b472231 ****/ + /****** ChFiDS_ElSpine::Period ******/ + /****** md5 signature: a0af1de0407384df43b0e76d6b472231 ******/ %feature("compactdefaultargs") Period; %feature("autodoc", "Return ------- @@ -1142,8 +1142,8 @@ No available documentation. ") Period; virtual Standard_Real Period(); - /****************** Previous ******************/ - /**** md5 signature: e96ad254506925dd4b71cfbc11e5467e ****/ + /****** ChFiDS_ElSpine::Previous ******/ + /****** md5 signature: e96ad254506925dd4b71cfbc11e5467e ******/ %feature("compactdefaultargs") Previous; %feature("autodoc", "Return ------- @@ -1155,8 +1155,8 @@ No available documentation. ") Previous; const opencascade::handle & Previous(); - /****************** Resolution ******************/ - /**** md5 signature: ff921b502a972d22db1a77196e34d53d ****/ + /****** ChFiDS_ElSpine::Resolution ******/ + /****** md5 signature: ff921b502a972d22db1a77196e34d53d ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -1173,8 +1173,8 @@ No available documentation. ") Resolution; virtual Standard_Real Resolution(const Standard_Real R3d); - /****************** SaveFirstParameter ******************/ - /**** md5 signature: ef62d193c97ecc49ce192ba3a979c7aa ****/ + /****** ChFiDS_ElSpine::SaveFirstParameter ******/ + /****** md5 signature: ef62d193c97ecc49ce192ba3a979c7aa ******/ %feature("compactdefaultargs") SaveFirstParameter; %feature("autodoc", "Return ------- @@ -1186,8 +1186,8 @@ No available documentation. ") SaveFirstParameter; void SaveFirstParameter(); - /****************** SaveLastParameter ******************/ - /**** md5 signature: 213b0924cd909f6165eac15bb3180fd1 ****/ + /****** ChFiDS_ElSpine::SaveLastParameter ******/ + /****** md5 signature: 213b0924cd909f6165eac15bb3180fd1 ******/ %feature("compactdefaultargs") SaveLastParameter; %feature("autodoc", "Return ------- @@ -1199,8 +1199,8 @@ No available documentation. ") SaveLastParameter; void SaveLastParameter(); - /****************** SetCurve ******************/ - /**** md5 signature: 33a6119977a9c465ffe7769b5dc4e7f5 ****/ + /****** ChFiDS_ElSpine::SetCurve ******/ + /****** md5 signature: 33a6119977a9c465ffe7769b5dc4e7f5 ******/ %feature("compactdefaultargs") SetCurve; %feature("autodoc", " Parameters @@ -1217,8 +1217,8 @@ No available documentation. ") SetCurve; void SetCurve(const opencascade::handle & C); - /****************** SetFirstPointAndTgt ******************/ - /**** md5 signature: bfdf2f3c452f6d8c0a2157549e43a8fc ****/ + /****** ChFiDS_ElSpine::SetFirstPointAndTgt ******/ + /****** md5 signature: bfdf2f3c452f6d8c0a2157549e43a8fc ******/ %feature("compactdefaultargs") SetFirstPointAndTgt; %feature("autodoc", " Parameters @@ -1236,8 +1236,8 @@ No available documentation. ") SetFirstPointAndTgt; void SetFirstPointAndTgt(const gp_Pnt & P, const gp_Vec & T); - /****************** SetLastPointAndTgt ******************/ - /**** md5 signature: 4197c08886ae9cb26ecc386f3c2dc846 ****/ + /****** ChFiDS_ElSpine::SetLastPointAndTgt ******/ + /****** md5 signature: 4197c08886ae9cb26ecc386f3c2dc846 ******/ %feature("compactdefaultargs") SetLastPointAndTgt; %feature("autodoc", " Parameters @@ -1255,8 +1255,8 @@ No available documentation. ") SetLastPointAndTgt; void SetLastPointAndTgt(const gp_Pnt & P, const gp_Vec & T); - /****************** SetOrigin ******************/ - /**** md5 signature: 90772090782b64db2bef099a0d3c0950 ****/ + /****** ChFiDS_ElSpine::SetOrigin ******/ + /****** md5 signature: 90772090782b64db2bef099a0d3c0950 ******/ %feature("compactdefaultargs") SetOrigin; %feature("autodoc", " Parameters @@ -1273,8 +1273,8 @@ No available documentation. ") SetOrigin; void SetOrigin(const Standard_Real O); - /****************** SetPeriodic ******************/ - /**** md5 signature: 350f9c15209db2caa06ef8c73d0952ea ****/ + /****** ChFiDS_ElSpine::SetPeriodic ******/ + /****** md5 signature: 350f9c15209db2caa06ef8c73d0952ea ******/ %feature("compactdefaultargs") SetPeriodic; %feature("autodoc", " Parameters @@ -1291,8 +1291,8 @@ No available documentation. ") SetPeriodic; void SetPeriodic(const Standard_Boolean I); - /****************** ShallowCopy ******************/ - /**** md5 signature: 1b6b0927543eab9d05e2c875c0c3efb6 ****/ + /****** ChFiDS_ElSpine::ShallowCopy ******/ + /****** md5 signature: 1b6b0927543eab9d05e2c875c0c3efb6 ******/ %feature("compactdefaultargs") ShallowCopy; %feature("autodoc", "Return ------- @@ -1304,8 +1304,8 @@ Shallow copy of adaptor. ") ShallowCopy; virtual opencascade::handle ShallowCopy(); - /****************** Trim ******************/ - /**** md5 signature: 974fe27e2868c6786b8c68ef515f97f8 ****/ + /****** ChFiDS_ElSpine::Trim ******/ + /****** md5 signature: 974fe27e2868c6786b8c68ef515f97f8 ******/ %feature("compactdefaultargs") Trim; %feature("autodoc", " Parameters @@ -1324,8 +1324,8 @@ Returns a curve equivalent of between parameters and . Trim(const Standard_Real First, const Standard_Real Last, const Standard_Real Tol); - /****************** Value ******************/ - /**** md5 signature: ba8231e7dc3a72ecafee01b4eb348bbe ****/ + /****** ChFiDS_ElSpine::Value ******/ + /****** md5 signature: ba8231e7dc3a72ecafee01b4eb348bbe ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -1342,8 +1342,8 @@ No available documentation. ") Value; virtual gp_Pnt Value(const Standard_Real AbsC); - /****************** VertexWithTangent ******************/ - /**** md5 signature: 8a3fc0491ddd2e2bccd694dc8b3d06ef ****/ + /****** ChFiDS_ElSpine::VertexWithTangent ******/ + /****** md5 signature: 8a3fc0491ddd2e2bccd694dc8b3d06ef ******/ %feature("compactdefaultargs") VertexWithTangent; %feature("autodoc", " Parameters @@ -1376,8 +1376,8 @@ No available documentation. ********************************/ class ChFiDS_FaceInterference { public: - /****************** ChFiDS_FaceInterference ******************/ - /**** md5 signature: 726bb55f5f15f401281cd7e8a0f99392 ****/ + /****** ChFiDS_FaceInterference::ChFiDS_FaceInterference ******/ + /****** md5 signature: 726bb55f5f15f401281cd7e8a0f99392 ******/ %feature("compactdefaultargs") ChFiDS_FaceInterference; %feature("autodoc", "Return ------- @@ -1389,8 +1389,8 @@ No available documentation. ") ChFiDS_FaceInterference; ChFiDS_FaceInterference(); - /****************** ChangePCurveOnFace ******************/ - /**** md5 signature: a4ac08e5cc5b6094d4ba91d7988200d3 ****/ + /****** ChFiDS_FaceInterference::ChangePCurveOnFace ******/ + /****** md5 signature: a4ac08e5cc5b6094d4ba91d7988200d3 ******/ %feature("compactdefaultargs") ChangePCurveOnFace; %feature("autodoc", "Return ------- @@ -1402,8 +1402,8 @@ No available documentation. ") ChangePCurveOnFace; opencascade::handle & ChangePCurveOnFace(); - /****************** ChangePCurveOnSurf ******************/ - /**** md5 signature: 93c521145058d145231b405856b20de6 ****/ + /****** ChFiDS_FaceInterference::ChangePCurveOnSurf ******/ + /****** md5 signature: 93c521145058d145231b405856b20de6 ******/ %feature("compactdefaultargs") ChangePCurveOnSurf; %feature("autodoc", "Return ------- @@ -1415,8 +1415,8 @@ No available documentation. ") ChangePCurveOnSurf; opencascade::handle & ChangePCurveOnSurf(); - /****************** FirstParameter ******************/ - /**** md5 signature: 4ccedbaad83be904f510b4760c75f69c ****/ + /****** ChFiDS_FaceInterference::FirstParameter ******/ + /****** md5 signature: 4ccedbaad83be904f510b4760c75f69c ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", "Return ------- @@ -1428,8 +1428,8 @@ No available documentation. ") FirstParameter; Standard_Real FirstParameter(); - /****************** LastParameter ******************/ - /**** md5 signature: 7cdf630921ee47ad365a5a6bafd4b46e ****/ + /****** ChFiDS_FaceInterference::LastParameter ******/ + /****** md5 signature: 7cdf630921ee47ad365a5a6bafd4b46e ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", "Return ------- @@ -1441,8 +1441,8 @@ No available documentation. ") LastParameter; Standard_Real LastParameter(); - /****************** LineIndex ******************/ - /**** md5 signature: af9fb0debe68e98e2e0bb7899c89cba3 ****/ + /****** ChFiDS_FaceInterference::LineIndex ******/ + /****** md5 signature: af9fb0debe68e98e2e0bb7899c89cba3 ******/ %feature("compactdefaultargs") LineIndex; %feature("autodoc", "Return ------- @@ -1454,8 +1454,8 @@ No available documentation. ") LineIndex; Standard_Integer LineIndex(); - /****************** PCurveOnFace ******************/ - /**** md5 signature: 9ffab450fa8f2ab4e8bb4275bd561666 ****/ + /****** ChFiDS_FaceInterference::PCurveOnFace ******/ + /****** md5 signature: 9ffab450fa8f2ab4e8bb4275bd561666 ******/ %feature("compactdefaultargs") PCurveOnFace; %feature("autodoc", "Return ------- @@ -1467,8 +1467,8 @@ No available documentation. ") PCurveOnFace; const opencascade::handle & PCurveOnFace(); - /****************** PCurveOnSurf ******************/ - /**** md5 signature: 8e550434dd2628b5a0b4330a9c950bb2 ****/ + /****** ChFiDS_FaceInterference::PCurveOnSurf ******/ + /****** md5 signature: 8e550434dd2628b5a0b4330a9c950bb2 ******/ %feature("compactdefaultargs") PCurveOnSurf; %feature("autodoc", "Return ------- @@ -1480,8 +1480,8 @@ No available documentation. ") PCurveOnSurf; const opencascade::handle & PCurveOnSurf(); - /****************** Parameter ******************/ - /**** md5 signature: 6e1a73f976dcd9d42920accd4007f409 ****/ + /****** ChFiDS_FaceInterference::Parameter ******/ + /****** md5 signature: 6e1a73f976dcd9d42920accd4007f409 ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", " Parameters @@ -1498,8 +1498,8 @@ No available documentation. ") Parameter; Standard_Real Parameter(const Standard_Boolean IsFirst); - /****************** SetFirstParameter ******************/ - /**** md5 signature: 66a146ecdaa6c152259c9690094161f5 ****/ + /****** ChFiDS_FaceInterference::SetFirstParameter ******/ + /****** md5 signature: 66a146ecdaa6c152259c9690094161f5 ******/ %feature("compactdefaultargs") SetFirstParameter; %feature("autodoc", " Parameters @@ -1516,8 +1516,8 @@ No available documentation. ") SetFirstParameter; void SetFirstParameter(const Standard_Real U1); - /****************** SetInterference ******************/ - /**** md5 signature: a98dba3aad417a54ca288a277242d9c2 ****/ + /****** ChFiDS_FaceInterference::SetInterference ******/ + /****** md5 signature: a98dba3aad417a54ca288a277242d9c2 ******/ %feature("compactdefaultargs") SetInterference; %feature("autodoc", " Parameters @@ -1537,8 +1537,8 @@ No available documentation. ") SetInterference; void SetInterference(const Standard_Integer LineIndex, const TopAbs_Orientation Trans, const opencascade::handle & PCurv1, const opencascade::handle & PCurv2); - /****************** SetLastParameter ******************/ - /**** md5 signature: 4fb4fec24280eed5cf49207ba2a859cb ****/ + /****** ChFiDS_FaceInterference::SetLastParameter ******/ + /****** md5 signature: 4fb4fec24280eed5cf49207ba2a859cb ******/ %feature("compactdefaultargs") SetLastParameter; %feature("autodoc", " Parameters @@ -1555,8 +1555,8 @@ No available documentation. ") SetLastParameter; void SetLastParameter(const Standard_Real U1); - /****************** SetLineIndex ******************/ - /**** md5 signature: a5c84457c710effed03309c68b7e0080 ****/ + /****** ChFiDS_FaceInterference::SetLineIndex ******/ + /****** md5 signature: a5c84457c710effed03309c68b7e0080 ******/ %feature("compactdefaultargs") SetLineIndex; %feature("autodoc", " Parameters @@ -1573,8 +1573,8 @@ No available documentation. ") SetLineIndex; void SetLineIndex(const Standard_Integer I); - /****************** SetParameter ******************/ - /**** md5 signature: d404d706cf6c6419b8088620190503fe ****/ + /****** ChFiDS_FaceInterference::SetParameter ******/ + /****** md5 signature: d404d706cf6c6419b8088620190503fe ******/ %feature("compactdefaultargs") SetParameter; %feature("autodoc", " Parameters @@ -1592,8 +1592,8 @@ No available documentation. ") SetParameter; void SetParameter(const Standard_Real U1, const Standard_Boolean IsFirst); - /****************** SetTransition ******************/ - /**** md5 signature: c6b23800a90c4cbe4b35094ba16f44ff ****/ + /****** ChFiDS_FaceInterference::SetTransition ******/ + /****** md5 signature: c6b23800a90c4cbe4b35094ba16f44ff ******/ %feature("compactdefaultargs") SetTransition; %feature("autodoc", " Parameters @@ -1610,8 +1610,8 @@ No available documentation. ") SetTransition; void SetTransition(const TopAbs_Orientation Trans); - /****************** Transition ******************/ - /**** md5 signature: 054591dc4fd0ee1810f89fdf4fe89b33 ****/ + /****** ChFiDS_FaceInterference::Transition ******/ + /****** md5 signature: 054591dc4fd0ee1810f89fdf4fe89b33 ******/ %feature("compactdefaultargs") Transition; %feature("autodoc", "Return ------- @@ -1637,8 +1637,8 @@ No available documentation. *******************/ class ChFiDS_Map { public: - /****************** ChFiDS_Map ******************/ - /**** md5 signature: 973dad57111b92e094842a23e8548091 ****/ + /****** ChFiDS_Map::ChFiDS_Map ******/ + /****** md5 signature: 973dad57111b92e094842a23e8548091 ******/ %feature("compactdefaultargs") ChFiDS_Map; %feature("autodoc", "Return ------- @@ -1650,8 +1650,8 @@ Create an empty map. ") ChFiDS_Map; ChFiDS_Map(); - /****************** Contains ******************/ - /**** md5 signature: f099b22f53dc3705b9de7f86b775b20a ****/ + /****** ChFiDS_Map::Contains ******/ + /****** md5 signature: f099b22f53dc3705b9de7f86b775b20a ******/ %feature("compactdefaultargs") Contains; %feature("autodoc", " Parameters @@ -1668,8 +1668,8 @@ No available documentation. ") Contains; Standard_Boolean Contains(const TopoDS_Shape & S); - /****************** Fill ******************/ - /**** md5 signature: 5e4d793db169463c7138d45a1bebb3bd ****/ + /****** ChFiDS_Map::Fill ******/ + /****** md5 signature: 5e4d793db169463c7138d45a1bebb3bd ******/ %feature("compactdefaultargs") Fill; %feature("autodoc", " Parameters @@ -1688,8 +1688,8 @@ Fills the map with the subshapes of type t1 as keys and the list of ancestors of ") Fill; void Fill(const TopoDS_Shape & S, const TopAbs_ShapeEnum T1, const TopAbs_ShapeEnum T2); - /****************** FindFromIndex ******************/ - /**** md5 signature: e27fc1939ed1a458284d9db1fe7832e5 ****/ + /****** ChFiDS_Map::FindFromIndex ******/ + /****** md5 signature: e27fc1939ed1a458284d9db1fe7832e5 ******/ %feature("compactdefaultargs") FindFromIndex; %feature("autodoc", " Parameters @@ -1706,8 +1706,8 @@ No available documentation. ") FindFromIndex; const TopTools_ListOfShape & FindFromIndex(const Standard_Integer I); - /****************** FindFromKey ******************/ - /**** md5 signature: f822fc0350ed0d0f3926ef4f484545ff ****/ + /****** ChFiDS_Map::FindFromKey ******/ + /****** md5 signature: f822fc0350ed0d0f3926ef4f484545ff ******/ %feature("compactdefaultargs") FindFromKey; %feature("autodoc", " Parameters @@ -1738,8 +1738,8 @@ No available documentation. *********************/ class ChFiDS_Regul { public: - /****************** ChFiDS_Regul ******************/ - /**** md5 signature: b643b3f2994d7987080efae23eeb868b ****/ + /****** ChFiDS_Regul::ChFiDS_Regul ******/ + /****** md5 signature: b643b3f2994d7987080efae23eeb868b ******/ %feature("compactdefaultargs") ChFiDS_Regul; %feature("autodoc", "Return ------- @@ -1751,8 +1751,8 @@ No available documentation. ") ChFiDS_Regul; ChFiDS_Regul(); - /****************** Curve ******************/ - /**** md5 signature: 246fcc6b84e8ea0976c82438745a18e2 ****/ + /****** ChFiDS_Regul::Curve ******/ + /****** md5 signature: 246fcc6b84e8ea0976c82438745a18e2 ******/ %feature("compactdefaultargs") Curve; %feature("autodoc", "Return ------- @@ -1764,8 +1764,8 @@ No available documentation. ") Curve; Standard_Integer Curve(); - /****************** IsSurface1 ******************/ - /**** md5 signature: 1c53bb199493b75cd867c8b8f1857b7e ****/ + /****** ChFiDS_Regul::IsSurface1 ******/ + /****** md5 signature: 1c53bb199493b75cd867c8b8f1857b7e ******/ %feature("compactdefaultargs") IsSurface1; %feature("autodoc", "Return ------- @@ -1777,8 +1777,8 @@ No available documentation. ") IsSurface1; Standard_Boolean IsSurface1(); - /****************** IsSurface2 ******************/ - /**** md5 signature: 3786cfa4e1033fd0661f2149711c4979 ****/ + /****** ChFiDS_Regul::IsSurface2 ******/ + /****** md5 signature: 3786cfa4e1033fd0661f2149711c4979 ******/ %feature("compactdefaultargs") IsSurface2; %feature("autodoc", "Return ------- @@ -1790,8 +1790,8 @@ No available documentation. ") IsSurface2; Standard_Boolean IsSurface2(); - /****************** S1 ******************/ - /**** md5 signature: 7361e2dcae16373490107e5583aaf589 ****/ + /****** ChFiDS_Regul::S1 ******/ + /****** md5 signature: 7361e2dcae16373490107e5583aaf589 ******/ %feature("compactdefaultargs") S1; %feature("autodoc", "Return ------- @@ -1803,8 +1803,8 @@ No available documentation. ") S1; Standard_Integer S1(); - /****************** S2 ******************/ - /**** md5 signature: c836932bf1af4e841c58b4c6a36aeaf0 ****/ + /****** ChFiDS_Regul::S2 ******/ + /****** md5 signature: c836932bf1af4e841c58b4c6a36aeaf0 ******/ %feature("compactdefaultargs") S2; %feature("autodoc", "Return ------- @@ -1816,8 +1816,8 @@ No available documentation. ") S2; Standard_Integer S2(); - /****************** SetCurve ******************/ - /**** md5 signature: ba1234c816a1bb5dd773be07b8fffae8 ****/ + /****** ChFiDS_Regul::SetCurve ******/ + /****** md5 signature: ba1234c816a1bb5dd773be07b8fffae8 ******/ %feature("compactdefaultargs") SetCurve; %feature("autodoc", " Parameters @@ -1834,8 +1834,8 @@ No available documentation. ") SetCurve; void SetCurve(const Standard_Integer IC); - /****************** SetS1 ******************/ - /**** md5 signature: d114cea9a6abd7c04e0272eb6007472c ****/ + /****** ChFiDS_Regul::SetS1 ******/ + /****** md5 signature: d114cea9a6abd7c04e0272eb6007472c ******/ %feature("compactdefaultargs") SetS1; %feature("autodoc", " Parameters @@ -1853,8 +1853,8 @@ No available documentation. ") SetS1; void SetS1(const Standard_Integer IS1, const Standard_Boolean IsFace = Standard_True); - /****************** SetS2 ******************/ - /**** md5 signature: 5178f4086ad526928fce374b96c2fec1 ****/ + /****** ChFiDS_Regul::SetS2 ******/ + /****** md5 signature: 5178f4086ad526928fce374b96c2fec1 ******/ %feature("compactdefaultargs") SetS2; %feature("autodoc", " Parameters @@ -1886,8 +1886,8 @@ No available documentation. *********************/ class ChFiDS_Spine : public Standard_Transient { public: - /****************** ChFiDS_Spine ******************/ - /**** md5 signature: 0e6c96be283b45848a0526cfc52ba787 ****/ + /****** ChFiDS_Spine::ChFiDS_Spine ******/ + /****** md5 signature: 0e6c96be283b45848a0526cfc52ba787 ******/ %feature("compactdefaultargs") ChFiDS_Spine; %feature("autodoc", "Return ------- @@ -1899,8 +1899,8 @@ No available documentation. ") ChFiDS_Spine; ChFiDS_Spine(); - /****************** ChFiDS_Spine ******************/ - /**** md5 signature: 69bf141eeae74093a4bfd1758f04012c ****/ + /****** ChFiDS_Spine::ChFiDS_Spine ******/ + /****** md5 signature: 69bf141eeae74093a4bfd1758f04012c ******/ %feature("compactdefaultargs") ChFiDS_Spine; %feature("autodoc", " Parameters @@ -1917,8 +1917,8 @@ No available documentation. ") ChFiDS_Spine; ChFiDS_Spine(const Standard_Real Tol); - /****************** Absc ******************/ - /**** md5 signature: 0fcb71e8c4d0991d4bf628fec7467762 ****/ + /****** ChFiDS_Spine::Absc ******/ + /****** md5 signature: 0fcb71e8c4d0991d4bf628fec7467762 ******/ %feature("compactdefaultargs") Absc; %feature("autodoc", " Parameters @@ -1935,8 +1935,8 @@ No available documentation. ") Absc; Standard_Real Absc(const Standard_Real U); - /****************** Absc ******************/ - /**** md5 signature: 675de99f7389e5730307190bef4c9a62 ****/ + /****** ChFiDS_Spine::Absc ******/ + /****** md5 signature: 675de99f7389e5730307190bef4c9a62 ******/ %feature("compactdefaultargs") Absc; %feature("autodoc", " Parameters @@ -1954,8 +1954,8 @@ No available documentation. ") Absc; Standard_Real Absc(const Standard_Real U, const Standard_Integer I); - /****************** Absc ******************/ - /**** md5 signature: 73e436bf62d13ac2b7905d3f4ff661eb ****/ + /****** ChFiDS_Spine::Absc ******/ + /****** md5 signature: 73e436bf62d13ac2b7905d3f4ff661eb ******/ %feature("compactdefaultargs") Absc; %feature("autodoc", " Parameters @@ -1972,8 +1972,8 @@ No available documentation. ") Absc; Standard_Real Absc(const TopoDS_Vertex & V); - /****************** AppendElSpine ******************/ - /**** md5 signature: ede48293dc1624531bd53eae90637b01 ****/ + /****** ChFiDS_Spine::AppendElSpine ******/ + /****** md5 signature: ede48293dc1624531bd53eae90637b01 ******/ %feature("compactdefaultargs") AppendElSpine; %feature("autodoc", " Parameters @@ -1990,8 +1990,8 @@ No available documentation. ") AppendElSpine; virtual void AppendElSpine(const opencascade::handle & Els); - /****************** AppendOffsetElSpine ******************/ - /**** md5 signature: 95d04dc7c2b33d672976bf39c81489b8 ****/ + /****** ChFiDS_Spine::AppendOffsetElSpine ******/ + /****** md5 signature: 95d04dc7c2b33d672976bf39c81489b8 ******/ %feature("compactdefaultargs") AppendOffsetElSpine; %feature("autodoc", " Parameters @@ -2008,8 +2008,8 @@ No available documentation. ") AppendOffsetElSpine; virtual void AppendOffsetElSpine(const opencascade::handle & Els); - /****************** ChangeElSpines ******************/ - /**** md5 signature: da07220d851808a3a9bd3eb7b7c1f436 ****/ + /****** ChFiDS_Spine::ChangeElSpines ******/ + /****** md5 signature: da07220d851808a3a9bd3eb7b7c1f436 ******/ %feature("compactdefaultargs") ChangeElSpines; %feature("autodoc", "Return ------- @@ -2021,8 +2021,8 @@ No available documentation. ") ChangeElSpines; ChFiDS_ListOfHElSpine & ChangeElSpines(); - /****************** ChangeOffsetElSpines ******************/ - /**** md5 signature: df5b593fad1988821c82858086d7da93 ****/ + /****** ChFiDS_Spine::ChangeOffsetElSpines ******/ + /****** md5 signature: df5b593fad1988821c82858086d7da93 ******/ %feature("compactdefaultargs") ChangeOffsetElSpines; %feature("autodoc", "Return ------- @@ -2034,8 +2034,8 @@ No available documentation. ") ChangeOffsetElSpines; ChFiDS_ListOfHElSpine & ChangeOffsetElSpines(); - /****************** Circle ******************/ - /**** md5 signature: cab8b08988d177bd7107adbbccc4ef89 ****/ + /****** ChFiDS_Spine::Circle ******/ + /****** md5 signature: cab8b08988d177bd7107adbbccc4ef89 ******/ %feature("compactdefaultargs") Circle; %feature("autodoc", "Return ------- @@ -2047,8 +2047,8 @@ No available documentation. ") Circle; gp_Circ Circle(); - /****************** CurrentElementarySpine ******************/ - /**** md5 signature: ebf570cca4dd01a3b354a55130d60083 ****/ + /****** ChFiDS_Spine::CurrentElementarySpine ******/ + /****** md5 signature: ebf570cca4dd01a3b354a55130d60083 ******/ %feature("compactdefaultargs") CurrentElementarySpine; %feature("autodoc", " Parameters @@ -2065,8 +2065,8 @@ Sets the current curve and returns it. ") CurrentElementarySpine; BRepAdaptor_Curve CurrentElementarySpine(const Standard_Integer Index); - /****************** CurrentIndexOfElementarySpine ******************/ - /**** md5 signature: 6987473580f0e6e3e57d9cf51fd473ea ****/ + /****** ChFiDS_Spine::CurrentIndexOfElementarySpine ******/ + /****** md5 signature: 6987473580f0e6e3e57d9cf51fd473ea ******/ %feature("compactdefaultargs") CurrentIndexOfElementarySpine; %feature("autodoc", "Return ------- @@ -2078,8 +2078,8 @@ No available documentation. ") CurrentIndexOfElementarySpine; Standard_Integer CurrentIndexOfElementarySpine(); - /****************** D0 ******************/ - /**** md5 signature: 44a3de94c03d6c53050ebe26e6846129 ****/ + /****** ChFiDS_Spine::D0 ******/ + /****** md5 signature: 44a3de94c03d6c53050ebe26e6846129 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -2097,8 +2097,8 @@ No available documentation. ") D0; void D0(const Standard_Real AbsC, gp_Pnt & P); - /****************** D1 ******************/ - /**** md5 signature: 5d82740615c70fe17ed6f28d75ed8f63 ****/ + /****** ChFiDS_Spine::D1 ******/ + /****** md5 signature: 5d82740615c70fe17ed6f28d75ed8f63 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -2117,8 +2117,8 @@ No available documentation. ") D1; void D1(const Standard_Real AbsC, gp_Pnt & P, gp_Vec & V1); - /****************** D2 ******************/ - /**** md5 signature: c983c708a57ca80b2c76c9a6dfcbd6d5 ****/ + /****** ChFiDS_Spine::D2 ******/ + /****** md5 signature: c983c708a57ca80b2c76c9a6dfcbd6d5 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -2138,8 +2138,8 @@ No available documentation. ") D2; void D2(const Standard_Real AbsC, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2); - /****************** Edges ******************/ - /**** md5 signature: 9520525f1c3103f30fb61fd68a118272 ****/ + /****** ChFiDS_Spine::Edges ******/ + /****** md5 signature: 9520525f1c3103f30fb61fd68a118272 ******/ %feature("compactdefaultargs") Edges; %feature("autodoc", " Parameters @@ -2156,8 +2156,8 @@ No available documentation. ") Edges; const TopoDS_Edge Edges(const Standard_Integer I); - /****************** ElSpine ******************/ - /**** md5 signature: 4f2d3b9c01c3241e7da904843452e45a ****/ + /****** ChFiDS_Spine::ElSpine ******/ + /****** md5 signature: 4f2d3b9c01c3241e7da904843452e45a ******/ %feature("compactdefaultargs") ElSpine; %feature("autodoc", " Parameters @@ -2174,8 +2174,8 @@ No available documentation. ") ElSpine; opencascade::handle ElSpine(const Standard_Integer IE); - /****************** ElSpine ******************/ - /**** md5 signature: ca68c09c1a4fca52b0ec8982006abd2f ****/ + /****** ChFiDS_Spine::ElSpine ******/ + /****** md5 signature: ca68c09c1a4fca52b0ec8982006abd2f ******/ %feature("compactdefaultargs") ElSpine; %feature("autodoc", " Parameters @@ -2192,8 +2192,8 @@ No available documentation. ") ElSpine; opencascade::handle ElSpine(const TopoDS_Edge & E); - /****************** ElSpine ******************/ - /**** md5 signature: dea9d922cd6fd6701ac14ca526f46966 ****/ + /****** ChFiDS_Spine::ElSpine ******/ + /****** md5 signature: dea9d922cd6fd6701ac14ca526f46966 ******/ %feature("compactdefaultargs") ElSpine; %feature("autodoc", " Parameters @@ -2210,8 +2210,8 @@ No available documentation. ") ElSpine; opencascade::handle ElSpine(const Standard_Real W); - /****************** ErrorStatus ******************/ - /**** md5 signature: 2f7016f891923155aac331ba8260eaa0 ****/ + /****** ChFiDS_Spine::ErrorStatus ******/ + /****** md5 signature: 2f7016f891923155aac331ba8260eaa0 ******/ %feature("compactdefaultargs") ErrorStatus; %feature("autodoc", "Return ------- @@ -2223,8 +2223,8 @@ No available documentation. ") ErrorStatus; ChFiDS_ErrorStatus ErrorStatus(); - /****************** FirstParameter ******************/ - /**** md5 signature: 4ccedbaad83be904f510b4760c75f69c ****/ + /****** ChFiDS_Spine::FirstParameter ******/ + /****** md5 signature: 4ccedbaad83be904f510b4760c75f69c ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", "Return ------- @@ -2236,8 +2236,8 @@ No available documentation. ") FirstParameter; Standard_Real FirstParameter(); - /****************** FirstParameter ******************/ - /**** md5 signature: 43e78c2d3dcec0442b4c6f7d4e9d550a ****/ + /****** ChFiDS_Spine::FirstParameter ******/ + /****** md5 signature: 43e78c2d3dcec0442b4c6f7d4e9d550a ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", " Parameters @@ -2254,8 +2254,8 @@ Gives the total length of all arcs before the number indexsp. ") FirstParameter; Standard_Real FirstParameter(const Standard_Integer IndexSpine); - /****************** FirstStatus ******************/ - /**** md5 signature: 50597ffb992e45ab92d72d217bf44f0d ****/ + /****** ChFiDS_Spine::FirstStatus ******/ + /****** md5 signature: 50597ffb992e45ab92d72d217bf44f0d ******/ %feature("compactdefaultargs") FirstStatus; %feature("autodoc", "Return ------- @@ -2267,8 +2267,8 @@ Returns if the set of edges starts on a free boundary or if the first vertex is ") FirstStatus; ChFiDS_State FirstStatus(); - /****************** FirstVertex ******************/ - /**** md5 signature: a9d0a449a5497cf4780955cbe0b44200 ****/ + /****** ChFiDS_Spine::FirstVertex ******/ + /****** md5 signature: a9d0a449a5497cf4780955cbe0b44200 ******/ %feature("compactdefaultargs") FirstVertex; %feature("autodoc", "Return ------- @@ -2280,8 +2280,8 @@ No available documentation. ") FirstVertex; TopoDS_Vertex FirstVertex(); - /****************** GetTolesp ******************/ - /**** md5 signature: 217c13748b3cb2bf2cc59e96cafe8207 ****/ + /****** ChFiDS_Spine::GetTolesp ******/ + /****** md5 signature: 217c13748b3cb2bf2cc59e96cafe8207 ******/ %feature("compactdefaultargs") GetTolesp; %feature("autodoc", "Return ------- @@ -2293,8 +2293,8 @@ Return tolesp parameter. ") GetTolesp; Standard_Real GetTolesp(); - /****************** GetType ******************/ - /**** md5 signature: 6d4e6ae7972633971ba343e8afc91aa1 ****/ + /****** ChFiDS_Spine::GetType ******/ + /****** md5 signature: 6d4e6ae7972633971ba343e8afc91aa1 ******/ %feature("compactdefaultargs") GetType; %feature("autodoc", "Return ------- @@ -2306,8 +2306,8 @@ No available documentation. ") GetType; GeomAbs_CurveType GetType(); - /****************** GetTypeOfConcavity ******************/ - /**** md5 signature: 03c88f7995e55bceb70d1b6aab2e61f4 ****/ + /****** ChFiDS_Spine::GetTypeOfConcavity ******/ + /****** md5 signature: 03c88f7995e55bceb70d1b6aab2e61f4 ******/ %feature("compactdefaultargs") GetTypeOfConcavity; %feature("autodoc", "Return ------- @@ -2319,8 +2319,8 @@ Returns the type of concavity in the connection. ") GetTypeOfConcavity; ChFiDS_TypeOfConcavity GetTypeOfConcavity(); - /****************** HasFirstTgt ******************/ - /**** md5 signature: 9b196c93880f437114c8ea979581acea ****/ + /****** ChFiDS_Spine::HasFirstTgt ******/ + /****** md5 signature: 9b196c93880f437114c8ea979581acea ******/ %feature("compactdefaultargs") HasFirstTgt; %feature("autodoc", "Return ------- @@ -2332,8 +2332,8 @@ No available documentation. ") HasFirstTgt; Standard_Boolean HasFirstTgt(); - /****************** HasLastTgt ******************/ - /**** md5 signature: 2cba4c4f6e09df1a2f01573597139cdc ****/ + /****** ChFiDS_Spine::HasLastTgt ******/ + /****** md5 signature: 2cba4c4f6e09df1a2f01573597139cdc ******/ %feature("compactdefaultargs") HasLastTgt; %feature("autodoc", "Return ------- @@ -2345,8 +2345,8 @@ No available documentation. ") HasLastTgt; Standard_Boolean HasLastTgt(); - /****************** Index ******************/ - /**** md5 signature: 3f748690e0677200c2dc24172c072dfb ****/ + /****** ChFiDS_Spine::Index ******/ + /****** md5 signature: 3f748690e0677200c2dc24172c072dfb ******/ %feature("compactdefaultargs") Index; %feature("autodoc", " Parameters @@ -2364,8 +2364,8 @@ No available documentation. ") Index; Standard_Integer Index(const Standard_Real W, const Standard_Boolean Forward = Standard_True); - /****************** Index ******************/ - /**** md5 signature: 49ccac80c083800f0efd13d0804ff82b ****/ + /****** ChFiDS_Spine::Index ******/ + /****** md5 signature: 49ccac80c083800f0efd13d0804ff82b ******/ %feature("compactdefaultargs") Index; %feature("autodoc", " Parameters @@ -2382,8 +2382,8 @@ No available documentation. ") Index; Standard_Integer Index(const TopoDS_Edge & E); - /****************** IsClosed ******************/ - /**** md5 signature: 29709d02fadc9fcb79a766bc9679271b ****/ + /****** ChFiDS_Spine::IsClosed ******/ + /****** md5 signature: 29709d02fadc9fcb79a766bc9679271b ******/ %feature("compactdefaultargs") IsClosed; %feature("autodoc", "Return ------- @@ -2395,8 +2395,8 @@ No available documentation. ") IsClosed; Standard_Boolean IsClosed(); - /****************** IsPeriodic ******************/ - /**** md5 signature: 62d7f554b0b7785e1f3919569dfbc68f ****/ + /****** ChFiDS_Spine::IsPeriodic ******/ + /****** md5 signature: 62d7f554b0b7785e1f3919569dfbc68f ******/ %feature("compactdefaultargs") IsPeriodic; %feature("autodoc", "Return ------- @@ -2408,8 +2408,8 @@ No available documentation. ") IsPeriodic; Standard_Boolean IsPeriodic(); - /****************** IsTangencyExtremity ******************/ - /**** md5 signature: a8210f1da4c1179547e590586db2e9fc ****/ + /****** ChFiDS_Spine::IsTangencyExtremity ******/ + /****** md5 signature: a8210f1da4c1179547e590586db2e9fc ******/ %feature("compactdefaultargs") IsTangencyExtremity; %feature("autodoc", " Parameters @@ -2426,8 +2426,8 @@ Returns if the set of edges starts (or end) on tangency point. ") IsTangencyExtremity; Standard_Boolean IsTangencyExtremity(const Standard_Boolean IsFirst); - /****************** LastParameter ******************/ - /**** md5 signature: 7cdf630921ee47ad365a5a6bafd4b46e ****/ + /****** ChFiDS_Spine::LastParameter ******/ + /****** md5 signature: 7cdf630921ee47ad365a5a6bafd4b46e ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", "Return ------- @@ -2439,8 +2439,8 @@ No available documentation. ") LastParameter; Standard_Real LastParameter(); - /****************** LastParameter ******************/ - /**** md5 signature: 366210a41f77093ca4e26a0a007fd1c7 ****/ + /****** ChFiDS_Spine::LastParameter ******/ + /****** md5 signature: 366210a41f77093ca4e26a0a007fd1c7 ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", " Parameters @@ -2457,8 +2457,8 @@ Gives the total length till the ark with number indexspine (inclus). ") LastParameter; Standard_Real LastParameter(const Standard_Integer IndexSpine); - /****************** LastStatus ******************/ - /**** md5 signature: b6ecda5b6d98b4e6874281ffca404974 ****/ + /****** ChFiDS_Spine::LastStatus ******/ + /****** md5 signature: b6ecda5b6d98b4e6874281ffca404974 ******/ %feature("compactdefaultargs") LastStatus; %feature("autodoc", "Return ------- @@ -2470,8 +2470,8 @@ Returns the state at the end of the set. ") LastStatus; ChFiDS_State LastStatus(); - /****************** LastVertex ******************/ - /**** md5 signature: 51a30300c8c457be7fee4de369d38666 ****/ + /****** ChFiDS_Spine::LastVertex ******/ + /****** md5 signature: 51a30300c8c457be7fee4de369d38666 ******/ %feature("compactdefaultargs") LastVertex; %feature("autodoc", "Return ------- @@ -2483,8 +2483,8 @@ No available documentation. ") LastVertex; TopoDS_Vertex LastVertex(); - /****************** Length ******************/ - /**** md5 signature: 926b764d195681905675afe57b7fea5c ****/ + /****** ChFiDS_Spine::Length ******/ + /****** md5 signature: 926b764d195681905675afe57b7fea5c ******/ %feature("compactdefaultargs") Length; %feature("autodoc", " Parameters @@ -2501,8 +2501,8 @@ Gives the length of ark with number indexsp. ") Length; Standard_Real Length(const Standard_Integer IndexSpine); - /****************** Line ******************/ - /**** md5 signature: 63e1fa189ca3bcfdb401241217a93bfb ****/ + /****** ChFiDS_Spine::Line ******/ + /****** md5 signature: 63e1fa189ca3bcfdb401241217a93bfb ******/ %feature("compactdefaultargs") Line; %feature("autodoc", "Return ------- @@ -2514,8 +2514,8 @@ No available documentation. ") Line; gp_Lin Line(); - /****************** Load ******************/ - /**** md5 signature: 14bc79a16a4ba0fe93224560bb579cb0 ****/ + /****** ChFiDS_Spine::Load ******/ + /****** md5 signature: 14bc79a16a4ba0fe93224560bb579cb0 ******/ %feature("compactdefaultargs") Load; %feature("autodoc", "Return ------- @@ -2527,8 +2527,8 @@ Prepare the guideline depending on the edges that are elementary arks (take para ") Load; void Load(); - /****************** Mode ******************/ - /**** md5 signature: 646b757cb6ae4ed9f283015af34597e7 ****/ + /****** ChFiDS_Spine::Mode ******/ + /****** md5 signature: 646b757cb6ae4ed9f283015af34597e7 ******/ %feature("compactdefaultargs") Mode; %feature("autodoc", "Return ------- @@ -2540,8 +2540,8 @@ Return the mode of chamfers used. ") Mode; ChFiDS_ChamfMode Mode(); - /****************** NbEdges ******************/ - /**** md5 signature: b4dae8fc9e9992109d200aaac9bd9ada ****/ + /****** ChFiDS_Spine::NbEdges ******/ + /****** md5 signature: b4dae8fc9e9992109d200aaac9bd9ada ******/ %feature("compactdefaultargs") NbEdges; %feature("autodoc", "Return ------- @@ -2553,8 +2553,8 @@ No available documentation. ") NbEdges; Standard_Integer NbEdges(); - /****************** OffsetEdges ******************/ - /**** md5 signature: 023ae8426dd348d41da1fc3390821a18 ****/ + /****** ChFiDS_Spine::OffsetEdges ******/ + /****** md5 signature: 023ae8426dd348d41da1fc3390821a18 ******/ %feature("compactdefaultargs") OffsetEdges; %feature("autodoc", " Parameters @@ -2571,8 +2571,8 @@ No available documentation. ") OffsetEdges; const TopoDS_Edge OffsetEdges(const Standard_Integer I); - /****************** Parameter ******************/ - /**** md5 signature: f6408694e8db59cfea682b2df277b46e ****/ + /****** ChFiDS_Spine::Parameter ******/ + /****** md5 signature: f6408694e8db59cfea682b2df277b46e ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", " Parameters @@ -2590,8 +2590,8 @@ No available documentation. ") Parameter; void Parameter(const Standard_Real AbsC, Standard_Real &OutValue, const Standard_Boolean Oriented = Standard_True); - /****************** Parameter ******************/ - /**** md5 signature: b0623594a2f8c3e8d9682053b9bc9428 ****/ + /****** ChFiDS_Spine::Parameter ******/ + /****** md5 signature: b0623594a2f8c3e8d9682053b9bc9428 ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", " Parameters @@ -2610,8 +2610,8 @@ No available documentation. ") Parameter; void Parameter(const Standard_Integer Index, const Standard_Real AbsC, Standard_Real &OutValue, const Standard_Boolean Oriented = Standard_True); - /****************** Period ******************/ - /**** md5 signature: 0270204961d3b0052ffe029cbcdbacd9 ****/ + /****** ChFiDS_Spine::Period ******/ + /****** md5 signature: 0270204961d3b0052ffe029cbcdbacd9 ******/ %feature("compactdefaultargs") Period; %feature("autodoc", "Return ------- @@ -2623,8 +2623,8 @@ No available documentation. ") Period; Standard_Real Period(); - /****************** PutInFirst ******************/ - /**** md5 signature: 42323ad897907ad53dba909bcf69916c ****/ + /****** ChFiDS_Spine::PutInFirst ******/ + /****** md5 signature: 42323ad897907ad53dba909bcf69916c ******/ %feature("compactdefaultargs") PutInFirst; %feature("autodoc", " Parameters @@ -2641,8 +2641,8 @@ Store the edge at the first position before all others. ") PutInFirst; void PutInFirst(const TopoDS_Edge & E); - /****************** PutInFirstOffset ******************/ - /**** md5 signature: 8ecfdbf9078cc56964347649621d6b37 ****/ + /****** ChFiDS_Spine::PutInFirstOffset ******/ + /****** md5 signature: 8ecfdbf9078cc56964347649621d6b37 ******/ %feature("compactdefaultargs") PutInFirstOffset; %feature("autodoc", " Parameters @@ -2659,8 +2659,8 @@ Store the offset edge at the first position before all others. ") PutInFirstOffset; void PutInFirstOffset(const TopoDS_Edge & E); - /****************** Reset ******************/ - /**** md5 signature: b38141635965f0cadd351580233542fa ****/ + /****** ChFiDS_Spine::Reset ******/ + /****** md5 signature: b38141635965f0cadd351580233542fa ******/ %feature("compactdefaultargs") Reset; %feature("autodoc", " Parameters @@ -2677,8 +2677,8 @@ No available documentation. ") Reset; virtual void Reset(const Standard_Boolean AllData = Standard_False); - /****************** Resolution ******************/ - /**** md5 signature: 955dbc498c06516d62e17e1e8d38cba7 ****/ + /****** ChFiDS_Spine::Resolution ******/ + /****** md5 signature: 955dbc498c06516d62e17e1e8d38cba7 ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -2695,8 +2695,8 @@ No available documentation. ") Resolution; Standard_Real Resolution(const Standard_Real R3d); - /****************** SetCurrent ******************/ - /**** md5 signature: b163c78c1924d8c473179ae0f702e2b8 ****/ + /****** ChFiDS_Spine::SetCurrent ******/ + /****** md5 signature: b163c78c1924d8c473179ae0f702e2b8 ******/ %feature("compactdefaultargs") SetCurrent; %feature("autodoc", " Parameters @@ -2713,8 +2713,8 @@ No available documentation. ") SetCurrent; void SetCurrent(const Standard_Integer Index); - /****************** SetEdges ******************/ - /**** md5 signature: fe28ef02235441ee10e561bb0206a043 ****/ + /****** ChFiDS_Spine::SetEdges ******/ + /****** md5 signature: fe28ef02235441ee10e561bb0206a043 ******/ %feature("compactdefaultargs") SetEdges; %feature("autodoc", " Parameters @@ -2731,8 +2731,8 @@ Store edges composing the guideline. ") SetEdges; void SetEdges(const TopoDS_Edge & E); - /****************** SetErrorStatus ******************/ - /**** md5 signature: f9de54b1f1fa50526f053773a4c2fa64 ****/ + /****** ChFiDS_Spine::SetErrorStatus ******/ + /****** md5 signature: f9de54b1f1fa50526f053773a4c2fa64 ******/ %feature("compactdefaultargs") SetErrorStatus; %feature("autodoc", " Parameters @@ -2749,8 +2749,8 @@ No available documentation. ") SetErrorStatus; void SetErrorStatus(const ChFiDS_ErrorStatus state); - /****************** SetFirstParameter ******************/ - /**** md5 signature: 6a2e52e0e61601a1f5ba51e18658c5ce ****/ + /****** ChFiDS_Spine::SetFirstParameter ******/ + /****** md5 signature: 6a2e52e0e61601a1f5ba51e18658c5ce ******/ %feature("compactdefaultargs") SetFirstParameter; %feature("autodoc", " Parameters @@ -2767,8 +2767,8 @@ No available documentation. ") SetFirstParameter; void SetFirstParameter(const Standard_Real Par); - /****************** SetFirstStatus ******************/ - /**** md5 signature: d77c159df2076b6b62b20f6985d86432 ****/ + /****** ChFiDS_Spine::SetFirstStatus ******/ + /****** md5 signature: d77c159df2076b6b62b20f6985d86432 ******/ %feature("compactdefaultargs") SetFirstStatus; %feature("autodoc", " Parameters @@ -2785,8 +2785,8 @@ Stores if the start of a set of edges starts on a section of free border or form ") SetFirstStatus; void SetFirstStatus(const ChFiDS_State S); - /****************** SetFirstTgt ******************/ - /**** md5 signature: d975ed3950244fc7eabbe6c08e8a2878 ****/ + /****** ChFiDS_Spine::SetFirstTgt ******/ + /****** md5 signature: d975ed3950244fc7eabbe6c08e8a2878 ******/ %feature("compactdefaultargs") SetFirstTgt; %feature("autodoc", " Parameters @@ -2803,8 +2803,8 @@ No available documentation. ") SetFirstTgt; void SetFirstTgt(const Standard_Real W); - /****************** SetLastParameter ******************/ - /**** md5 signature: ee92068a5cb2a54f8f050c2704670a1b ****/ + /****** ChFiDS_Spine::SetLastParameter ******/ + /****** md5 signature: ee92068a5cb2a54f8f050c2704670a1b ******/ %feature("compactdefaultargs") SetLastParameter; %feature("autodoc", " Parameters @@ -2821,8 +2821,8 @@ No available documentation. ") SetLastParameter; void SetLastParameter(const Standard_Real Par); - /****************** SetLastStatus ******************/ - /**** md5 signature: a8144c2e2ced4bb9cfd41e3485bbe1b2 ****/ + /****** ChFiDS_Spine::SetLastStatus ******/ + /****** md5 signature: a8144c2e2ced4bb9cfd41e3485bbe1b2 ******/ %feature("compactdefaultargs") SetLastStatus; %feature("autodoc", " Parameters @@ -2839,8 +2839,8 @@ Stores if the end of a set of edges starts on a section of free border or forms ") SetLastStatus; void SetLastStatus(const ChFiDS_State S); - /****************** SetLastTgt ******************/ - /**** md5 signature: e03b8adbbab3a9d6e9fd1f49184126ea ****/ + /****** ChFiDS_Spine::SetLastTgt ******/ + /****** md5 signature: e03b8adbbab3a9d6e9fd1f49184126ea ******/ %feature("compactdefaultargs") SetLastTgt; %feature("autodoc", " Parameters @@ -2857,8 +2857,8 @@ No available documentation. ") SetLastTgt; void SetLastTgt(const Standard_Real W); - /****************** SetOffsetEdges ******************/ - /**** md5 signature: 87a9a0e91bf387d101e8a06a591da1b1 ****/ + /****** ChFiDS_Spine::SetOffsetEdges ******/ + /****** md5 signature: 87a9a0e91bf387d101e8a06a591da1b1 ******/ %feature("compactdefaultargs") SetOffsetEdges; %feature("autodoc", " Parameters @@ -2875,8 +2875,8 @@ Store offset edges composing the offset guideline. ") SetOffsetEdges; void SetOffsetEdges(const TopoDS_Edge & E); - /****************** SetReference ******************/ - /**** md5 signature: 3a8b5dd00fd5d7398ee966850f76fe13 ****/ + /****** ChFiDS_Spine::SetReference ******/ + /****** md5 signature: 3a8b5dd00fd5d7398ee966850f76fe13 ******/ %feature("compactdefaultargs") SetReference; %feature("autodoc", " Parameters @@ -2893,8 +2893,8 @@ Set a parameter reference for the approx. ") SetReference; void SetReference(const Standard_Real W); - /****************** SetReference ******************/ - /**** md5 signature: 0f054f194fe4862ac635de5ef9c15f94 ****/ + /****** ChFiDS_Spine::SetReference ******/ + /****** md5 signature: 0f054f194fe4862ac635de5ef9c15f94 ******/ %feature("compactdefaultargs") SetReference; %feature("autodoc", " Parameters @@ -2911,8 +2911,8 @@ Set a parameter reference for the approx, at the middle of edge i. ") SetReference; void SetReference(const Standard_Integer I); - /****************** SetStatus ******************/ - /**** md5 signature: 5fd64ab9882277f6b1fc7a49a50d1342 ****/ + /****** ChFiDS_Spine::SetStatus ******/ + /****** md5 signature: 5fd64ab9882277f6b1fc7a49a50d1342 ******/ %feature("compactdefaultargs") SetStatus; %feature("autodoc", " Parameters @@ -2930,8 +2930,8 @@ No available documentation. ") SetStatus; void SetStatus(const ChFiDS_State S, const Standard_Boolean IsFirst); - /****************** SetTangencyExtremity ******************/ - /**** md5 signature: fd36b4a0e9cda0189944269998d8e8fd ****/ + /****** ChFiDS_Spine::SetTangencyExtremity ******/ + /****** md5 signature: fd36b4a0e9cda0189944269998d8e8fd ******/ %feature("compactdefaultargs") SetTangencyExtremity; %feature("autodoc", " Parameters @@ -2949,8 +2949,8 @@ No available documentation. ") SetTangencyExtremity; void SetTangencyExtremity(const Standard_Boolean IsTangency, const Standard_Boolean IsFirst); - /****************** SetTypeOfConcavity ******************/ - /**** md5 signature: ee22fc43cd6253adde8756526c94bf06 ****/ + /****** ChFiDS_Spine::SetTypeOfConcavity ******/ + /****** md5 signature: ee22fc43cd6253adde8756526c94bf06 ******/ %feature("compactdefaultargs") SetTypeOfConcavity; %feature("autodoc", " Parameters @@ -2967,8 +2967,8 @@ Sets the type of concavity in the connection. ") SetTypeOfConcavity; void SetTypeOfConcavity(const ChFiDS_TypeOfConcavity theType); - /****************** SplitDone ******************/ - /**** md5 signature: fe2c9168a5cde6a3136bcf314c46600a ****/ + /****** ChFiDS_Spine::SplitDone ******/ + /****** md5 signature: fe2c9168a5cde6a3136bcf314c46600a ******/ %feature("compactdefaultargs") SplitDone; %feature("autodoc", "Return ------- @@ -2980,8 +2980,8 @@ No available documentation. ") SplitDone; Standard_Boolean SplitDone(); - /****************** SplitDone ******************/ - /**** md5 signature: 51227265bfba30085217e0dddb32ef11 ****/ + /****** ChFiDS_Spine::SplitDone ******/ + /****** md5 signature: 51227265bfba30085217e0dddb32ef11 ******/ %feature("compactdefaultargs") SplitDone; %feature("autodoc", " Parameters @@ -2998,8 +2998,8 @@ No available documentation. ") SplitDone; void SplitDone(const Standard_Boolean B); - /****************** Status ******************/ - /**** md5 signature: 2d1d2e8edcc0c537fdec0b339a92e500 ****/ + /****** ChFiDS_Spine::Status ******/ + /****** md5 signature: 2d1d2e8edcc0c537fdec0b339a92e500 ******/ %feature("compactdefaultargs") Status; %feature("autodoc", " Parameters @@ -3016,8 +3016,8 @@ No available documentation. ") Status; ChFiDS_State Status(const Standard_Boolean IsFirst); - /****************** UnsetReference ******************/ - /**** md5 signature: 5b60ccb91b7978ec5de638bf27913a17 ****/ + /****** ChFiDS_Spine::UnsetReference ******/ + /****** md5 signature: 5b60ccb91b7978ec5de638bf27913a17 ******/ %feature("compactdefaultargs") UnsetReference; %feature("autodoc", "Return ------- @@ -3029,8 +3029,8 @@ No available documentation. ") UnsetReference; void UnsetReference(); - /****************** Value ******************/ - /**** md5 signature: 8f4832a5df54c11193b328e54fef02cd ****/ + /****** ChFiDS_Spine::Value ******/ + /****** md5 signature: 8f4832a5df54c11193b328e54fef02cd ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -3063,8 +3063,8 @@ No available documentation. **********************/ class ChFiDS_Stripe : public Standard_Transient { public: - /****************** ChFiDS_Stripe ******************/ - /**** md5 signature: cd5f6e9ec67c7963807c2979dc44998f ****/ + /****** ChFiDS_Stripe::ChFiDS_Stripe ******/ + /****** md5 signature: cd5f6e9ec67c7963807c2979dc44998f ******/ %feature("compactdefaultargs") ChFiDS_Stripe; %feature("autodoc", "Return ------- @@ -3076,8 +3076,8 @@ No available documentation. ") ChFiDS_Stripe; ChFiDS_Stripe(); - /****************** ChangeFirstCurve ******************/ - /**** md5 signature: 64afe48b2b2e0de75967baed9ae805b2 ****/ + /****** ChFiDS_Stripe::ChangeFirstCurve ******/ + /****** md5 signature: 64afe48b2b2e0de75967baed9ae805b2 ******/ %feature("compactdefaultargs") ChangeFirstCurve; %feature("autodoc", " Parameters @@ -3094,8 +3094,8 @@ No available documentation. ") ChangeFirstCurve; void ChangeFirstCurve(const Standard_Integer Index); - /****************** ChangeFirstPCurve ******************/ - /**** md5 signature: 4c3a2910e0a4ada6305295597483d2b7 ****/ + /****** ChFiDS_Stripe::ChangeFirstPCurve ******/ + /****** md5 signature: 4c3a2910e0a4ada6305295597483d2b7 ******/ %feature("compactdefaultargs") ChangeFirstPCurve; %feature("autodoc", "Return ------- @@ -3107,8 +3107,8 @@ No available documentation. ") ChangeFirstPCurve; opencascade::handle & ChangeFirstPCurve(); - /****************** ChangeFirstParameters ******************/ - /**** md5 signature: 1405a444bb650f1cff1e8f70dd710961 ****/ + /****** ChFiDS_Stripe::ChangeFirstParameters ******/ + /****** md5 signature: 1405a444bb650f1cff1e8f70dd710961 ******/ %feature("compactdefaultargs") ChangeFirstParameters; %feature("autodoc", " Parameters @@ -3126,8 +3126,8 @@ No available documentation. ") ChangeFirstParameters; void ChangeFirstParameters(const Standard_Real Pdeb, const Standard_Real Pfin); - /****************** ChangeIndexFirstPointOnS1 ******************/ - /**** md5 signature: dd0905ce8f519caac604d0878819752b ****/ + /****** ChFiDS_Stripe::ChangeIndexFirstPointOnS1 ******/ + /****** md5 signature: dd0905ce8f519caac604d0878819752b ******/ %feature("compactdefaultargs") ChangeIndexFirstPointOnS1; %feature("autodoc", " Parameters @@ -3144,8 +3144,8 @@ No available documentation. ") ChangeIndexFirstPointOnS1; void ChangeIndexFirstPointOnS1(const Standard_Integer Index); - /****************** ChangeIndexFirstPointOnS2 ******************/ - /**** md5 signature: e717349708084d2ba0268af2f99bae5e ****/ + /****** ChFiDS_Stripe::ChangeIndexFirstPointOnS2 ******/ + /****** md5 signature: e717349708084d2ba0268af2f99bae5e ******/ %feature("compactdefaultargs") ChangeIndexFirstPointOnS2; %feature("autodoc", " Parameters @@ -3162,8 +3162,8 @@ No available documentation. ") ChangeIndexFirstPointOnS2; void ChangeIndexFirstPointOnS2(const Standard_Integer Index); - /****************** ChangeIndexLastPointOnS1 ******************/ - /**** md5 signature: ae86e60291183382f929be0f0181777b ****/ + /****** ChFiDS_Stripe::ChangeIndexLastPointOnS1 ******/ + /****** md5 signature: ae86e60291183382f929be0f0181777b ******/ %feature("compactdefaultargs") ChangeIndexLastPointOnS1; %feature("autodoc", " Parameters @@ -3180,8 +3180,8 @@ No available documentation. ") ChangeIndexLastPointOnS1; void ChangeIndexLastPointOnS1(const Standard_Integer Index); - /****************** ChangeIndexLastPointOnS2 ******************/ - /**** md5 signature: be14a55f58ce51c0c7e8d3ae2a94acc0 ****/ + /****** ChFiDS_Stripe::ChangeIndexLastPointOnS2 ******/ + /****** md5 signature: be14a55f58ce51c0c7e8d3ae2a94acc0 ******/ %feature("compactdefaultargs") ChangeIndexLastPointOnS2; %feature("autodoc", " Parameters @@ -3198,8 +3198,8 @@ No available documentation. ") ChangeIndexLastPointOnS2; void ChangeIndexLastPointOnS2(const Standard_Integer Index); - /****************** ChangeLastCurve ******************/ - /**** md5 signature: ec90f9463a1b17f9446b2ffd17f81783 ****/ + /****** ChFiDS_Stripe::ChangeLastCurve ******/ + /****** md5 signature: ec90f9463a1b17f9446b2ffd17f81783 ******/ %feature("compactdefaultargs") ChangeLastCurve; %feature("autodoc", " Parameters @@ -3216,8 +3216,8 @@ No available documentation. ") ChangeLastCurve; void ChangeLastCurve(const Standard_Integer Index); - /****************** ChangeLastPCurve ******************/ - /**** md5 signature: 26816c8546bc85460a1d73fc2ba2ed1a ****/ + /****** ChFiDS_Stripe::ChangeLastPCurve ******/ + /****** md5 signature: 26816c8546bc85460a1d73fc2ba2ed1a ******/ %feature("compactdefaultargs") ChangeLastPCurve; %feature("autodoc", "Return ------- @@ -3229,8 +3229,8 @@ No available documentation. ") ChangeLastPCurve; opencascade::handle & ChangeLastPCurve(); - /****************** ChangeLastParameters ******************/ - /**** md5 signature: be44a3b27b758b559e9cd0b16c1a19b8 ****/ + /****** ChFiDS_Stripe::ChangeLastParameters ******/ + /****** md5 signature: be44a3b27b758b559e9cd0b16c1a19b8 ******/ %feature("compactdefaultargs") ChangeLastParameters; %feature("autodoc", " Parameters @@ -3248,8 +3248,8 @@ No available documentation. ") ChangeLastParameters; void ChangeLastParameters(const Standard_Real Pdeb, const Standard_Real Pfin); - /****************** ChangePCurve ******************/ - /**** md5 signature: 4d15bb5c05522fd834cba04b802760b2 ****/ + /****** ChFiDS_Stripe::ChangePCurve ******/ + /****** md5 signature: 4d15bb5c05522fd834cba04b802760b2 ******/ %feature("compactdefaultargs") ChangePCurve; %feature("autodoc", " Parameters @@ -3266,8 +3266,8 @@ No available documentation. ") ChangePCurve; opencascade::handle & ChangePCurve(const Standard_Boolean First); - /****************** ChangeSetOfSurfData ******************/ - /**** md5 signature: b816f955dbe517b2d321f59f961a85db ****/ + /****** ChFiDS_Stripe::ChangeSetOfSurfData ******/ + /****** md5 signature: b816f955dbe517b2d321f59f961a85db ******/ %feature("compactdefaultargs") ChangeSetOfSurfData; %feature("autodoc", "Return ------- @@ -3279,8 +3279,8 @@ No available documentation. ") ChangeSetOfSurfData; opencascade::handle & ChangeSetOfSurfData(); - /****************** ChangeSpine ******************/ - /**** md5 signature: 111982dc16f5c59f6e1f0e0a045654cf ****/ + /****** ChFiDS_Stripe::ChangeSpine ******/ + /****** md5 signature: 111982dc16f5c59f6e1f0e0a045654cf ******/ %feature("compactdefaultargs") ChangeSpine; %feature("autodoc", "Return ------- @@ -3292,8 +3292,8 @@ No available documentation. ") ChangeSpine; opencascade::handle & ChangeSpine(); - /****************** Choix ******************/ - /**** md5 signature: 56d44f443206b1fa3fc4d5896c29d333 ****/ + /****** ChFiDS_Stripe::Choix ******/ + /****** md5 signature: 56d44f443206b1fa3fc4d5896c29d333 ******/ %feature("compactdefaultargs") Choix; %feature("autodoc", "Return ------- @@ -3305,8 +3305,8 @@ No available documentation. ") Choix; Standard_Integer Choix(); - /****************** Choix ******************/ - /**** md5 signature: 7098bc3f3221f811ff516ed38dbafc43 ****/ + /****** ChFiDS_Stripe::Choix ******/ + /****** md5 signature: 7098bc3f3221f811ff516ed38dbafc43 ******/ %feature("compactdefaultargs") Choix; %feature("autodoc", " Parameters @@ -3323,8 +3323,8 @@ No available documentation. ") Choix; void Choix(const Standard_Integer C); - /****************** Curve ******************/ - /**** md5 signature: c42994028e166e54fa54a45e4ff3466f ****/ + /****** ChFiDS_Stripe::Curve ******/ + /****** md5 signature: c42994028e166e54fa54a45e4ff3466f ******/ %feature("compactdefaultargs") Curve; %feature("autodoc", " Parameters @@ -3341,8 +3341,8 @@ No available documentation. ") Curve; Standard_Integer Curve(const Standard_Boolean First); - /****************** FirstCurve ******************/ - /**** md5 signature: 60996397389363fc426c2e9259e80745 ****/ + /****** ChFiDS_Stripe::FirstCurve ******/ + /****** md5 signature: 60996397389363fc426c2e9259e80745 ******/ %feature("compactdefaultargs") FirstCurve; %feature("autodoc", "Return ------- @@ -3354,8 +3354,8 @@ No available documentation. ") FirstCurve; Standard_Integer FirstCurve(); - /****************** FirstPCurve ******************/ - /**** md5 signature: 3275b667b2b0b6418edc91afc7389f29 ****/ + /****** ChFiDS_Stripe::FirstPCurve ******/ + /****** md5 signature: 3275b667b2b0b6418edc91afc7389f29 ******/ %feature("compactdefaultargs") FirstPCurve; %feature("autodoc", "Return ------- @@ -3367,8 +3367,8 @@ No available documentation. ") FirstPCurve; const opencascade::handle & FirstPCurve(); - /****************** FirstPCurveOrientation ******************/ - /**** md5 signature: f941a3a9194fdca769d8d5a48fb4bf2e ****/ + /****** ChFiDS_Stripe::FirstPCurveOrientation ******/ + /****** md5 signature: f941a3a9194fdca769d8d5a48fb4bf2e ******/ %feature("compactdefaultargs") FirstPCurveOrientation; %feature("autodoc", "Return ------- @@ -3380,8 +3380,8 @@ No available documentation. ") FirstPCurveOrientation; TopAbs_Orientation FirstPCurveOrientation(); - /****************** FirstPCurveOrientation ******************/ - /**** md5 signature: 7378d4fdf054f6803ef4d1b1c3bfebe1 ****/ + /****** ChFiDS_Stripe::FirstPCurveOrientation ******/ + /****** md5 signature: 7378d4fdf054f6803ef4d1b1c3bfebe1 ******/ %feature("compactdefaultargs") FirstPCurveOrientation; %feature("autodoc", " Parameters @@ -3398,8 +3398,8 @@ No available documentation. ") FirstPCurveOrientation; void FirstPCurveOrientation(const TopAbs_Orientation O); - /****************** FirstParameters ******************/ - /**** md5 signature: b43cd7691f73448e706863640f0dca48 ****/ + /****** ChFiDS_Stripe::FirstParameters ******/ + /****** md5 signature: b43cd7691f73448e706863640f0dca48 ******/ %feature("compactdefaultargs") FirstParameters; %feature("autodoc", " Parameters @@ -3416,8 +3416,8 @@ No available documentation. ") FirstParameters; void FirstParameters(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** InDS ******************/ - /**** md5 signature: a5871e23609fcaa44d3f69008692f43a ****/ + /****** ChFiDS_Stripe::InDS ******/ + /****** md5 signature: a5871e23609fcaa44d3f69008692f43a ******/ %feature("compactdefaultargs") InDS; %feature("autodoc", " Parameters @@ -3435,8 +3435,8 @@ Set nb of surfdata's at end put in ds. ") InDS; void InDS(const Standard_Boolean First, const Standard_Integer Nb = 1); - /****************** IndexFirstPointOnS1 ******************/ - /**** md5 signature: 0cb214af2c656e7adaca42c868ab4c95 ****/ + /****** ChFiDS_Stripe::IndexFirstPointOnS1 ******/ + /****** md5 signature: 0cb214af2c656e7adaca42c868ab4c95 ******/ %feature("compactdefaultargs") IndexFirstPointOnS1; %feature("autodoc", "Return ------- @@ -3448,8 +3448,8 @@ No available documentation. ") IndexFirstPointOnS1; Standard_Integer IndexFirstPointOnS1(); - /****************** IndexFirstPointOnS2 ******************/ - /**** md5 signature: 6fc8025c2af83728a43c896a6e828c5d ****/ + /****** ChFiDS_Stripe::IndexFirstPointOnS2 ******/ + /****** md5 signature: 6fc8025c2af83728a43c896a6e828c5d ******/ %feature("compactdefaultargs") IndexFirstPointOnS2; %feature("autodoc", "Return ------- @@ -3461,8 +3461,8 @@ No available documentation. ") IndexFirstPointOnS2; Standard_Integer IndexFirstPointOnS2(); - /****************** IndexLastPointOnS1 ******************/ - /**** md5 signature: 87ccadbfd52d6d960ecd36487129ed37 ****/ + /****** ChFiDS_Stripe::IndexLastPointOnS1 ******/ + /****** md5 signature: 87ccadbfd52d6d960ecd36487129ed37 ******/ %feature("compactdefaultargs") IndexLastPointOnS1; %feature("autodoc", "Return ------- @@ -3474,8 +3474,8 @@ No available documentation. ") IndexLastPointOnS1; Standard_Integer IndexLastPointOnS1(); - /****************** IndexLastPointOnS2 ******************/ - /**** md5 signature: 604bbd01c4500957c46c3939b989aac6 ****/ + /****** ChFiDS_Stripe::IndexLastPointOnS2 ******/ + /****** md5 signature: 604bbd01c4500957c46c3939b989aac6 ******/ %feature("compactdefaultargs") IndexLastPointOnS2; %feature("autodoc", "Return ------- @@ -3487,8 +3487,8 @@ No available documentation. ") IndexLastPointOnS2; Standard_Integer IndexLastPointOnS2(); - /****************** IndexPoint ******************/ - /**** md5 signature: b6c9341a0da84b7f7c54cf09ce53baf1 ****/ + /****** ChFiDS_Stripe::IndexPoint ******/ + /****** md5 signature: b6c9341a0da84b7f7c54cf09ce53baf1 ******/ %feature("compactdefaultargs") IndexPoint; %feature("autodoc", " Parameters @@ -3506,8 +3506,8 @@ No available documentation. ") IndexPoint; Standard_Integer IndexPoint(const Standard_Boolean First, const Standard_Integer OnS); - /****************** IsInDS ******************/ - /**** md5 signature: cd05c727dce6b8210afc351e5ac7fd91 ****/ + /****** ChFiDS_Stripe::IsInDS ******/ + /****** md5 signature: cd05c727dce6b8210afc351e5ac7fd91 ******/ %feature("compactdefaultargs") IsInDS; %feature("autodoc", " Parameters @@ -3524,8 +3524,8 @@ Returns nb of surfdata's at end being in ds. ") IsInDS; Standard_Integer IsInDS(const Standard_Boolean First); - /****************** LastCurve ******************/ - /**** md5 signature: d6610cdfb3323f36ef3f5b49a9fc1453 ****/ + /****** ChFiDS_Stripe::LastCurve ******/ + /****** md5 signature: d6610cdfb3323f36ef3f5b49a9fc1453 ******/ %feature("compactdefaultargs") LastCurve; %feature("autodoc", "Return ------- @@ -3537,8 +3537,8 @@ No available documentation. ") LastCurve; Standard_Integer LastCurve(); - /****************** LastPCurve ******************/ - /**** md5 signature: cb9a448d17d26a7972588092a53e1ea9 ****/ + /****** ChFiDS_Stripe::LastPCurve ******/ + /****** md5 signature: cb9a448d17d26a7972588092a53e1ea9 ******/ %feature("compactdefaultargs") LastPCurve; %feature("autodoc", "Return ------- @@ -3550,8 +3550,8 @@ No available documentation. ") LastPCurve; const opencascade::handle & LastPCurve(); - /****************** LastPCurveOrientation ******************/ - /**** md5 signature: 260fa231af1e53202bfa91a250f41e7b ****/ + /****** ChFiDS_Stripe::LastPCurveOrientation ******/ + /****** md5 signature: 260fa231af1e53202bfa91a250f41e7b ******/ %feature("compactdefaultargs") LastPCurveOrientation; %feature("autodoc", "Return ------- @@ -3563,8 +3563,8 @@ No available documentation. ") LastPCurveOrientation; TopAbs_Orientation LastPCurveOrientation(); - /****************** LastPCurveOrientation ******************/ - /**** md5 signature: 0b20502ae503e6be8ea2762a18bbd386 ****/ + /****** ChFiDS_Stripe::LastPCurveOrientation ******/ + /****** md5 signature: 0b20502ae503e6be8ea2762a18bbd386 ******/ %feature("compactdefaultargs") LastPCurveOrientation; %feature("autodoc", " Parameters @@ -3581,8 +3581,8 @@ No available documentation. ") LastPCurveOrientation; void LastPCurveOrientation(const TopAbs_Orientation O); - /****************** LastParameters ******************/ - /**** md5 signature: 339528eb2397be639136e26491e13a98 ****/ + /****** ChFiDS_Stripe::LastParameters ******/ + /****** md5 signature: 339528eb2397be639136e26491e13a98 ******/ %feature("compactdefaultargs") LastParameters; %feature("autodoc", " Parameters @@ -3599,8 +3599,8 @@ No available documentation. ") LastParameters; void LastParameters(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Orientation ******************/ - /**** md5 signature: e459d64aa914c0c6260ec32e9a5b7eae ****/ + /****** ChFiDS_Stripe::Orientation ******/ + /****** md5 signature: e459d64aa914c0c6260ec32e9a5b7eae ******/ %feature("compactdefaultargs") Orientation; %feature("autodoc", " Parameters @@ -3617,8 +3617,8 @@ No available documentation. ") Orientation; TopAbs_Orientation Orientation(const Standard_Integer OnS); - /****************** Orientation ******************/ - /**** md5 signature: 5e69f6fd26a9a3ace7299c96327f2db6 ****/ + /****** ChFiDS_Stripe::Orientation ******/ + /****** md5 signature: 5e69f6fd26a9a3ace7299c96327f2db6 ******/ %feature("compactdefaultargs") Orientation; %feature("autodoc", " Parameters @@ -3635,8 +3635,8 @@ No available documentation. ") Orientation; TopAbs_Orientation Orientation(const Standard_Boolean First); - /****************** OrientationOnFace1 ******************/ - /**** md5 signature: 99a202362c7060da6590bb4c43c41e5e ****/ + /****** ChFiDS_Stripe::OrientationOnFace1 ******/ + /****** md5 signature: 99a202362c7060da6590bb4c43c41e5e ******/ %feature("compactdefaultargs") OrientationOnFace1; %feature("autodoc", "Return ------- @@ -3648,8 +3648,8 @@ No available documentation. ") OrientationOnFace1; TopAbs_Orientation OrientationOnFace1(); - /****************** OrientationOnFace1 ******************/ - /**** md5 signature: d95a2afb74307fb681f8466deee684df ****/ + /****** ChFiDS_Stripe::OrientationOnFace1 ******/ + /****** md5 signature: d95a2afb74307fb681f8466deee684df ******/ %feature("compactdefaultargs") OrientationOnFace1; %feature("autodoc", " Parameters @@ -3666,8 +3666,8 @@ No available documentation. ") OrientationOnFace1; void OrientationOnFace1(const TopAbs_Orientation Or1); - /****************** OrientationOnFace2 ******************/ - /**** md5 signature: 0e0542fc626ccc4d814180eacbb452b6 ****/ + /****** ChFiDS_Stripe::OrientationOnFace2 ******/ + /****** md5 signature: 0e0542fc626ccc4d814180eacbb452b6 ******/ %feature("compactdefaultargs") OrientationOnFace2; %feature("autodoc", "Return ------- @@ -3679,8 +3679,8 @@ No available documentation. ") OrientationOnFace2; TopAbs_Orientation OrientationOnFace2(); - /****************** OrientationOnFace2 ******************/ - /**** md5 signature: 16661c6f48616178d38edd0d539a2187 ****/ + /****** ChFiDS_Stripe::OrientationOnFace2 ******/ + /****** md5 signature: 16661c6f48616178d38edd0d539a2187 ******/ %feature("compactdefaultargs") OrientationOnFace2; %feature("autodoc", " Parameters @@ -3697,8 +3697,8 @@ No available documentation. ") OrientationOnFace2; void OrientationOnFace2(const TopAbs_Orientation Or2); - /****************** PCurve ******************/ - /**** md5 signature: 9fa93399392272abea49fa61f719aa07 ****/ + /****** ChFiDS_Stripe::PCurve ******/ + /****** md5 signature: 9fa93399392272abea49fa61f719aa07 ******/ %feature("compactdefaultargs") PCurve; %feature("autodoc", " Parameters @@ -3715,8 +3715,8 @@ No available documentation. ") PCurve; const opencascade::handle & PCurve(const Standard_Boolean First); - /****************** Parameters ******************/ - /**** md5 signature: e434f92bc401b080e1f82d4278f0b49d ****/ + /****** ChFiDS_Stripe::Parameters ******/ + /****** md5 signature: e434f92bc401b080e1f82d4278f0b49d ******/ %feature("compactdefaultargs") Parameters; %feature("autodoc", " Parameters @@ -3734,8 +3734,8 @@ No available documentation. ") Parameters; void Parameters(const Standard_Boolean First, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Reset ******************/ - /**** md5 signature: 7beb446fe26b948f797f8de87e46c23d ****/ + /****** ChFiDS_Stripe::Reset ******/ + /****** md5 signature: 7beb446fe26b948f797f8de87e46c23d ******/ %feature("compactdefaultargs") Reset; %feature("autodoc", "Return ------- @@ -3747,8 +3747,8 @@ Reset everything except spine. ") Reset; void Reset(); - /****************** SetCurve ******************/ - /**** md5 signature: 33d4a3b4d710b3b8650fa405c30f22f4 ****/ + /****** ChFiDS_Stripe::SetCurve ******/ + /****** md5 signature: 33d4a3b4d710b3b8650fa405c30f22f4 ******/ %feature("compactdefaultargs") SetCurve; %feature("autodoc", " Parameters @@ -3766,8 +3766,8 @@ No available documentation. ") SetCurve; void SetCurve(const Standard_Integer Index, const Standard_Boolean First); - /****************** SetIndexPoint ******************/ - /**** md5 signature: c41b722b86a09aa685a4475ec2df0601 ****/ + /****** ChFiDS_Stripe::SetIndexPoint ******/ + /****** md5 signature: c41b722b86a09aa685a4475ec2df0601 ******/ %feature("compactdefaultargs") SetIndexPoint; %feature("autodoc", " Parameters @@ -3786,8 +3786,8 @@ No available documentation. ") SetIndexPoint; void SetIndexPoint(const Standard_Integer Index, const Standard_Boolean First, const Standard_Integer OnS); - /****************** SetOfSurfData ******************/ - /**** md5 signature: a442d39e57ce35749e899380e2ecc9bc ****/ + /****** ChFiDS_Stripe::SetOfSurfData ******/ + /****** md5 signature: a442d39e57ce35749e899380e2ecc9bc ******/ %feature("compactdefaultargs") SetOfSurfData; %feature("autodoc", "Return ------- @@ -3799,8 +3799,8 @@ No available documentation. ") SetOfSurfData; const opencascade::handle & SetOfSurfData(); - /****************** SetOrientation ******************/ - /**** md5 signature: 749bd92540850256c711d2ad35ac8cad ****/ + /****** ChFiDS_Stripe::SetOrientation ******/ + /****** md5 signature: 749bd92540850256c711d2ad35ac8cad ******/ %feature("compactdefaultargs") SetOrientation; %feature("autodoc", " Parameters @@ -3818,8 +3818,8 @@ No available documentation. ") SetOrientation; void SetOrientation(const TopAbs_Orientation Or, const Standard_Integer OnS); - /****************** SetOrientation ******************/ - /**** md5 signature: ae28934bf0dabf2c291cc15de55030e3 ****/ + /****** ChFiDS_Stripe::SetOrientation ******/ + /****** md5 signature: ae28934bf0dabf2c291cc15de55030e3 ******/ %feature("compactdefaultargs") SetOrientation; %feature("autodoc", " Parameters @@ -3837,8 +3837,8 @@ No available documentation. ") SetOrientation; void SetOrientation(const TopAbs_Orientation Or, const Standard_Boolean First); - /****************** SetParameters ******************/ - /**** md5 signature: 4db950b9a62330a8ee989fda40f71a20 ****/ + /****** ChFiDS_Stripe::SetParameters ******/ + /****** md5 signature: 4db950b9a62330a8ee989fda40f71a20 ******/ %feature("compactdefaultargs") SetParameters; %feature("autodoc", " Parameters @@ -3857,8 +3857,8 @@ No available documentation. ") SetParameters; void SetParameters(const Standard_Boolean First, const Standard_Real Pdeb, const Standard_Real Pfin); - /****************** SetSolidIndex ******************/ - /**** md5 signature: 8eadbe97c4c76389094efc550670c7a2 ****/ + /****** ChFiDS_Stripe::SetSolidIndex ******/ + /****** md5 signature: 8eadbe97c4c76389094efc550670c7a2 ******/ %feature("compactdefaultargs") SetSolidIndex; %feature("autodoc", " Parameters @@ -3875,8 +3875,8 @@ No available documentation. ") SetSolidIndex; void SetSolidIndex(const Standard_Integer Index); - /****************** SolidIndex ******************/ - /**** md5 signature: a8fd277f867e1d86dd72f41ff6395800 ****/ + /****** ChFiDS_Stripe::SolidIndex ******/ + /****** md5 signature: a8fd277f867e1d86dd72f41ff6395800 ******/ %feature("compactdefaultargs") SolidIndex; %feature("autodoc", "Return ------- @@ -3888,8 +3888,8 @@ No available documentation. ") SolidIndex; Standard_Integer SolidIndex(); - /****************** Spine ******************/ - /**** md5 signature: 131048b17dbd5a413d557d000aa4f6ee ****/ + /****** ChFiDS_Stripe::Spine ******/ + /****** md5 signature: 131048b17dbd5a413d557d000aa4f6ee ******/ %feature("compactdefaultargs") Spine; %feature("autodoc", "Return ------- @@ -3917,8 +3917,8 @@ No available documentation. *************************/ class ChFiDS_StripeMap { public: - /****************** ChFiDS_StripeMap ******************/ - /**** md5 signature: f2096cdef1c87c863c6adeff2eb996a6 ****/ + /****** ChFiDS_StripeMap::ChFiDS_StripeMap ******/ + /****** md5 signature: f2096cdef1c87c863c6adeff2eb996a6 ******/ %feature("compactdefaultargs") ChFiDS_StripeMap; %feature("autodoc", "Return ------- @@ -3930,8 +3930,8 @@ No available documentation. ") ChFiDS_StripeMap; ChFiDS_StripeMap(); - /****************** Add ******************/ - /**** md5 signature: 92a3a1f4eea65565b67b2c2cb1beb02b ****/ + /****** ChFiDS_StripeMap::Add ******/ + /****** md5 signature: 92a3a1f4eea65565b67b2c2cb1beb02b ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -3949,8 +3949,8 @@ No available documentation. ") Add; void Add(const TopoDS_Vertex & V, const opencascade::handle & F); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** ChFiDS_StripeMap::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -3962,8 +3962,8 @@ No available documentation. ") Clear; void Clear(); - /****************** Extent ******************/ - /**** md5 signature: 8da0d7e03de513b08d57e17232ac7391 ****/ + /****** ChFiDS_StripeMap::Extent ******/ + /****** md5 signature: 8da0d7e03de513b08d57e17232ac7391 ******/ %feature("compactdefaultargs") Extent; %feature("autodoc", "Return ------- @@ -3975,8 +3975,8 @@ No available documentation. ") Extent; Standard_Integer Extent(); - /****************** FindFromIndex ******************/ - /**** md5 signature: a4cb4e0913cfb62cd51ca90fc6e045c2 ****/ + /****** ChFiDS_StripeMap::FindFromIndex ******/ + /****** md5 signature: a4cb4e0913cfb62cd51ca90fc6e045c2 ******/ %feature("compactdefaultargs") FindFromIndex; %feature("autodoc", " Parameters @@ -3993,8 +3993,8 @@ No available documentation. ") FindFromIndex; const ChFiDS_ListOfStripe & FindFromIndex(const Standard_Integer I); - /****************** FindFromKey ******************/ - /**** md5 signature: 3e35c916c2d4713eae2d9d28b14b97f0 ****/ + /****** ChFiDS_StripeMap::FindFromKey ******/ + /****** md5 signature: 3e35c916c2d4713eae2d9d28b14b97f0 ******/ %feature("compactdefaultargs") FindFromKey; %feature("autodoc", " Parameters @@ -4011,8 +4011,8 @@ No available documentation. ") FindFromKey; const ChFiDS_ListOfStripe & FindFromKey(const TopoDS_Vertex & V); - /****************** FindKey ******************/ - /**** md5 signature: 8178cd24d0bbc4f0a4efae070c360666 ****/ + /****** ChFiDS_StripeMap::FindKey ******/ + /****** md5 signature: 8178cd24d0bbc4f0a4efae070c360666 ******/ %feature("compactdefaultargs") FindKey; %feature("autodoc", " Parameters @@ -4043,8 +4043,8 @@ No available documentation. ************************/ class ChFiDS_SurfData : public Standard_Transient { public: - /****************** ChFiDS_SurfData ******************/ - /**** md5 signature: d342b06a90e71e18178dddceee0ad15b ****/ + /****** ChFiDS_SurfData::ChFiDS_SurfData ******/ + /****** md5 signature: d342b06a90e71e18178dddceee0ad15b ******/ %feature("compactdefaultargs") ChFiDS_SurfData; %feature("autodoc", "Return ------- @@ -4056,8 +4056,8 @@ No available documentation. ") ChFiDS_SurfData; ChFiDS_SurfData(); - /****************** ChangeIndexOfS1 ******************/ - /**** md5 signature: 464a81c4ded1d461524d80d6a6781808 ****/ + /****** ChFiDS_SurfData::ChangeIndexOfS1 ******/ + /****** md5 signature: 464a81c4ded1d461524d80d6a6781808 ******/ %feature("compactdefaultargs") ChangeIndexOfS1; %feature("autodoc", " Parameters @@ -4074,8 +4074,8 @@ No available documentation. ") ChangeIndexOfS1; void ChangeIndexOfS1(const Standard_Integer Index); - /****************** ChangeIndexOfS2 ******************/ - /**** md5 signature: 836ea02facf61fa10ec5efea297795bf ****/ + /****** ChFiDS_SurfData::ChangeIndexOfS2 ******/ + /****** md5 signature: 836ea02facf61fa10ec5efea297795bf ******/ %feature("compactdefaultargs") ChangeIndexOfS2; %feature("autodoc", " Parameters @@ -4092,8 +4092,8 @@ No available documentation. ") ChangeIndexOfS2; void ChangeIndexOfS2(const Standard_Integer Index); - /****************** ChangeInterference ******************/ - /**** md5 signature: 765d18b794185e8b4adc52e73713512a ****/ + /****** ChFiDS_SurfData::ChangeInterference ******/ + /****** md5 signature: 765d18b794185e8b4adc52e73713512a ******/ %feature("compactdefaultargs") ChangeInterference; %feature("autodoc", " Parameters @@ -4110,8 +4110,8 @@ No available documentation. ") ChangeInterference; ChFiDS_FaceInterference & ChangeInterference(const Standard_Integer OnS); - /****************** ChangeInterferenceOnS1 ******************/ - /**** md5 signature: f0413a5ac7c0de69a5d4a3d529a10583 ****/ + /****** ChFiDS_SurfData::ChangeInterferenceOnS1 ******/ + /****** md5 signature: f0413a5ac7c0de69a5d4a3d529a10583 ******/ %feature("compactdefaultargs") ChangeInterferenceOnS1; %feature("autodoc", "Return ------- @@ -4123,8 +4123,8 @@ No available documentation. ") ChangeInterferenceOnS1; ChFiDS_FaceInterference & ChangeInterferenceOnS1(); - /****************** ChangeInterferenceOnS2 ******************/ - /**** md5 signature: 81ec062a7aad7e9b8aa3621e75ff7ee2 ****/ + /****** ChFiDS_SurfData::ChangeInterferenceOnS2 ******/ + /****** md5 signature: 81ec062a7aad7e9b8aa3621e75ff7ee2 ******/ %feature("compactdefaultargs") ChangeInterferenceOnS2; %feature("autodoc", "Return ------- @@ -4136,8 +4136,8 @@ No available documentation. ") ChangeInterferenceOnS2; ChFiDS_FaceInterference & ChangeInterferenceOnS2(); - /****************** ChangeOrientation ******************/ - /**** md5 signature: 7d02e9bc719430918056169f5b73af48 ****/ + /****** ChFiDS_SurfData::ChangeOrientation ******/ + /****** md5 signature: 7d02e9bc719430918056169f5b73af48 ******/ %feature("compactdefaultargs") ChangeOrientation; %feature("autodoc", "Return ------- @@ -4149,8 +4149,8 @@ No available documentation. ") ChangeOrientation; TopAbs_Orientation & ChangeOrientation(); - /****************** ChangeSurf ******************/ - /**** md5 signature: 04810584e755bde58033397adab639cd ****/ + /****** ChFiDS_SurfData::ChangeSurf ******/ + /****** md5 signature: 04810584e755bde58033397adab639cd ******/ %feature("compactdefaultargs") ChangeSurf; %feature("autodoc", " Parameters @@ -4167,8 +4167,8 @@ No available documentation. ") ChangeSurf; void ChangeSurf(const Standard_Integer Index); - /****************** ChangeVertex ******************/ - /**** md5 signature: a8ddf20f93239324ee9ea0b0bd371c2a ****/ + /****** ChFiDS_SurfData::ChangeVertex ******/ + /****** md5 signature: a8ddf20f93239324ee9ea0b0bd371c2a ******/ %feature("compactdefaultargs") ChangeVertex; %feature("autodoc", " Parameters @@ -4186,8 +4186,8 @@ Returns one of the four vertices whether first is true or wrong and ons equals 1 ") ChangeVertex; ChFiDS_CommonPoint & ChangeVertex(const Standard_Boolean First, const Standard_Integer OnS); - /****************** ChangeVertexFirstOnS1 ******************/ - /**** md5 signature: 3108659a3a5bf4019308c76481ef6d62 ****/ + /****** ChFiDS_SurfData::ChangeVertexFirstOnS1 ******/ + /****** md5 signature: 3108659a3a5bf4019308c76481ef6d62 ******/ %feature("compactdefaultargs") ChangeVertexFirstOnS1; %feature("autodoc", "Return ------- @@ -4199,8 +4199,8 @@ No available documentation. ") ChangeVertexFirstOnS1; ChFiDS_CommonPoint & ChangeVertexFirstOnS1(); - /****************** ChangeVertexFirstOnS2 ******************/ - /**** md5 signature: 06d669b9caf772c897d0582d11b7c013 ****/ + /****** ChFiDS_SurfData::ChangeVertexFirstOnS2 ******/ + /****** md5 signature: 06d669b9caf772c897d0582d11b7c013 ******/ %feature("compactdefaultargs") ChangeVertexFirstOnS2; %feature("autodoc", "Return ------- @@ -4212,8 +4212,8 @@ No available documentation. ") ChangeVertexFirstOnS2; ChFiDS_CommonPoint & ChangeVertexFirstOnS2(); - /****************** ChangeVertexLastOnS1 ******************/ - /**** md5 signature: eeeb7d2961ba36134fb72bc84375907f ****/ + /****** ChFiDS_SurfData::ChangeVertexLastOnS1 ******/ + /****** md5 signature: eeeb7d2961ba36134fb72bc84375907f ******/ %feature("compactdefaultargs") ChangeVertexLastOnS1; %feature("autodoc", "Return ------- @@ -4225,8 +4225,8 @@ No available documentation. ") ChangeVertexLastOnS1; ChFiDS_CommonPoint & ChangeVertexLastOnS1(); - /****************** ChangeVertexLastOnS2 ******************/ - /**** md5 signature: c449ad55b0517485ef3ee2434c55704f ****/ + /****** ChFiDS_SurfData::ChangeVertexLastOnS2 ******/ + /****** md5 signature: c449ad55b0517485ef3ee2434c55704f ******/ %feature("compactdefaultargs") ChangeVertexLastOnS2; %feature("autodoc", "Return ------- @@ -4238,8 +4238,8 @@ No available documentation. ") ChangeVertexLastOnS2; ChFiDS_CommonPoint & ChangeVertexLastOnS2(); - /****************** Copy ******************/ - /**** md5 signature: ac62b6fd0b6f486fcd7879ad104ed8ee ****/ + /****** ChFiDS_SurfData::Copy ******/ + /****** md5 signature: ac62b6fd0b6f486fcd7879ad104ed8ee ******/ %feature("compactdefaultargs") Copy; %feature("autodoc", " Parameters @@ -4256,8 +4256,8 @@ No available documentation. ") Copy; void Copy(const opencascade::handle & Other); - /****************** FirstExtensionValue ******************/ - /**** md5 signature: 5762a3564e85ee2c2d5a982d2d5be2b6 ****/ + /****** ChFiDS_SurfData::FirstExtensionValue ******/ + /****** md5 signature: 5762a3564e85ee2c2d5a982d2d5be2b6 ******/ %feature("compactdefaultargs") FirstExtensionValue; %feature("autodoc", "Return ------- @@ -4269,8 +4269,8 @@ No available documentation. ") FirstExtensionValue; Standard_Real FirstExtensionValue(); - /****************** FirstExtensionValue ******************/ - /**** md5 signature: dffd070f2463c275043731ce8aaa835a ****/ + /****** ChFiDS_SurfData::FirstExtensionValue ******/ + /****** md5 signature: dffd070f2463c275043731ce8aaa835a ******/ %feature("compactdefaultargs") FirstExtensionValue; %feature("autodoc", " Parameters @@ -4287,8 +4287,8 @@ No available documentation. ") FirstExtensionValue; void FirstExtensionValue(const Standard_Real Extend); - /****************** FirstSpineParam ******************/ - /**** md5 signature: 85cb7fa56a31345ca448ea81a805d5a6 ****/ + /****** ChFiDS_SurfData::FirstSpineParam ******/ + /****** md5 signature: 85cb7fa56a31345ca448ea81a805d5a6 ******/ %feature("compactdefaultargs") FirstSpineParam; %feature("autodoc", "Return ------- @@ -4300,8 +4300,8 @@ No available documentation. ") FirstSpineParam; Standard_Real FirstSpineParam(); - /****************** FirstSpineParam ******************/ - /**** md5 signature: a9bff714e1565d13d5330c6d7db44b07 ****/ + /****** ChFiDS_SurfData::FirstSpineParam ******/ + /****** md5 signature: a9bff714e1565d13d5330c6d7db44b07 ******/ %feature("compactdefaultargs") FirstSpineParam; %feature("autodoc", " Parameters @@ -4318,8 +4318,8 @@ No available documentation. ") FirstSpineParam; void FirstSpineParam(const Standard_Real Par); - /****************** Get2dPoints ******************/ - /**** md5 signature: c0b76123de363b14c9d65851a4731623 ****/ + /****** ChFiDS_SurfData::Get2dPoints ******/ + /****** md5 signature: c0b76123de363b14c9d65851a4731623 ******/ %feature("compactdefaultargs") Get2dPoints; %feature("autodoc", " Parameters @@ -4337,8 +4337,8 @@ No available documentation. ") Get2dPoints; gp_Pnt2d Get2dPoints(const Standard_Boolean First, const Standard_Integer OnS); - /****************** Get2dPoints ******************/ - /**** md5 signature: 532fbd8ec9795a1c784ff3fd2dfa42ce ****/ + /****** ChFiDS_SurfData::Get2dPoints ******/ + /****** md5 signature: 532fbd8ec9795a1c784ff3fd2dfa42ce ******/ %feature("compactdefaultargs") Get2dPoints; %feature("autodoc", " Parameters @@ -4358,8 +4358,8 @@ No available documentation. ") Get2dPoints; void Get2dPoints(gp_Pnt2d & P2df1, gp_Pnt2d & P2dl1, gp_Pnt2d & P2df2, gp_Pnt2d & P2dl2); - /****************** Index ******************/ - /**** md5 signature: aa936d15dc38493d194d98f4e3620447 ****/ + /****** ChFiDS_SurfData::Index ******/ + /****** md5 signature: aa936d15dc38493d194d98f4e3620447 ******/ %feature("compactdefaultargs") Index; %feature("autodoc", " Parameters @@ -4376,8 +4376,8 @@ No available documentation. ") Index; Standard_Integer Index(const Standard_Integer OfS); - /****************** IndexOfC ******************/ - /**** md5 signature: 79cb134274da4314c248ce29add33a2d ****/ + /****** ChFiDS_SurfData::IndexOfC ******/ + /****** md5 signature: 79cb134274da4314c248ce29add33a2d ******/ %feature("compactdefaultargs") IndexOfC; %feature("autodoc", " Parameters @@ -4394,8 +4394,8 @@ No available documentation. ") IndexOfC; Standard_Integer IndexOfC(const Standard_Integer OnS); - /****************** IndexOfC1 ******************/ - /**** md5 signature: 7b68134b11c71080846dd64a481e6cf3 ****/ + /****** ChFiDS_SurfData::IndexOfC1 ******/ + /****** md5 signature: 7b68134b11c71080846dd64a481e6cf3 ******/ %feature("compactdefaultargs") IndexOfC1; %feature("autodoc", "Return ------- @@ -4407,8 +4407,8 @@ No available documentation. ") IndexOfC1; Standard_Integer IndexOfC1(); - /****************** IndexOfC2 ******************/ - /**** md5 signature: e15a0488edee7b0d89e07059e021e999 ****/ + /****** ChFiDS_SurfData::IndexOfC2 ******/ + /****** md5 signature: e15a0488edee7b0d89e07059e021e999 ******/ %feature("compactdefaultargs") IndexOfC2; %feature("autodoc", "Return ------- @@ -4420,8 +4420,8 @@ No available documentation. ") IndexOfC2; Standard_Integer IndexOfC2(); - /****************** IndexOfS1 ******************/ - /**** md5 signature: cae260f6fc1b135c75d40e23b72662b6 ****/ + /****** ChFiDS_SurfData::IndexOfS1 ******/ + /****** md5 signature: cae260f6fc1b135c75d40e23b72662b6 ******/ %feature("compactdefaultargs") IndexOfS1; %feature("autodoc", "Return ------- @@ -4433,8 +4433,8 @@ No available documentation. ") IndexOfS1; Standard_Integer IndexOfS1(); - /****************** IndexOfS2 ******************/ - /**** md5 signature: 65bb5d204d53ff0a6f2b801ef29c59c2 ****/ + /****** ChFiDS_SurfData::IndexOfS2 ******/ + /****** md5 signature: 65bb5d204d53ff0a6f2b801ef29c59c2 ******/ %feature("compactdefaultargs") IndexOfS2; %feature("autodoc", "Return ------- @@ -4446,8 +4446,8 @@ No available documentation. ") IndexOfS2; Standard_Integer IndexOfS2(); - /****************** Interference ******************/ - /**** md5 signature: 721126f8fff1ec76678eac4e5dabfaa8 ****/ + /****** ChFiDS_SurfData::Interference ******/ + /****** md5 signature: 721126f8fff1ec76678eac4e5dabfaa8 ******/ %feature("compactdefaultargs") Interference; %feature("autodoc", " Parameters @@ -4464,8 +4464,8 @@ No available documentation. ") Interference; const ChFiDS_FaceInterference & Interference(const Standard_Integer OnS); - /****************** InterferenceOnS1 ******************/ - /**** md5 signature: 84de26124a5e0740b80f38705ca471b3 ****/ + /****** ChFiDS_SurfData::InterferenceOnS1 ******/ + /****** md5 signature: 84de26124a5e0740b80f38705ca471b3 ******/ %feature("compactdefaultargs") InterferenceOnS1; %feature("autodoc", "Return ------- @@ -4477,8 +4477,8 @@ No available documentation. ") InterferenceOnS1; const ChFiDS_FaceInterference & InterferenceOnS1(); - /****************** InterferenceOnS2 ******************/ - /**** md5 signature: f749302ca0babe17f787eff908650488 ****/ + /****** ChFiDS_SurfData::InterferenceOnS2 ******/ + /****** md5 signature: f749302ca0babe17f787eff908650488 ******/ %feature("compactdefaultargs") InterferenceOnS2; %feature("autodoc", "Return ------- @@ -4490,8 +4490,8 @@ No available documentation. ") InterferenceOnS2; const ChFiDS_FaceInterference & InterferenceOnS2(); - /****************** IsOnCurve ******************/ - /**** md5 signature: c7ef125fb459f6494dcf4ad0b12f2685 ****/ + /****** ChFiDS_SurfData::IsOnCurve ******/ + /****** md5 signature: c7ef125fb459f6494dcf4ad0b12f2685 ******/ %feature("compactdefaultargs") IsOnCurve; %feature("autodoc", " Parameters @@ -4508,8 +4508,8 @@ No available documentation. ") IsOnCurve; Standard_Boolean IsOnCurve(const Standard_Integer OnS); - /****************** IsOnCurve1 ******************/ - /**** md5 signature: af913d0df1bfdaa10c15b69b831a5528 ****/ + /****** ChFiDS_SurfData::IsOnCurve1 ******/ + /****** md5 signature: af913d0df1bfdaa10c15b69b831a5528 ******/ %feature("compactdefaultargs") IsOnCurve1; %feature("autodoc", "Return ------- @@ -4521,8 +4521,8 @@ No available documentation. ") IsOnCurve1; Standard_Boolean IsOnCurve1(); - /****************** IsOnCurve2 ******************/ - /**** md5 signature: 461844d6cb2ec1f6b2f31eed5d129109 ****/ + /****** ChFiDS_SurfData::IsOnCurve2 ******/ + /****** md5 signature: 461844d6cb2ec1f6b2f31eed5d129109 ******/ %feature("compactdefaultargs") IsOnCurve2; %feature("autodoc", "Return ------- @@ -4534,8 +4534,8 @@ No available documentation. ") IsOnCurve2; Standard_Boolean IsOnCurve2(); - /****************** LastExtensionValue ******************/ - /**** md5 signature: 23c75e037feda815b5430178c48b5b00 ****/ + /****** ChFiDS_SurfData::LastExtensionValue ******/ + /****** md5 signature: 23c75e037feda815b5430178c48b5b00 ******/ %feature("compactdefaultargs") LastExtensionValue; %feature("autodoc", "Return ------- @@ -4547,8 +4547,8 @@ No available documentation. ") LastExtensionValue; Standard_Real LastExtensionValue(); - /****************** LastExtensionValue ******************/ - /**** md5 signature: b91d11693c0b645a15a8f54908977d42 ****/ + /****** ChFiDS_SurfData::LastExtensionValue ******/ + /****** md5 signature: b91d11693c0b645a15a8f54908977d42 ******/ %feature("compactdefaultargs") LastExtensionValue; %feature("autodoc", " Parameters @@ -4565,8 +4565,8 @@ No available documentation. ") LastExtensionValue; void LastExtensionValue(const Standard_Real Extend); - /****************** LastSpineParam ******************/ - /**** md5 signature: e486c269dbc2903bdab7750b7673bcd2 ****/ + /****** ChFiDS_SurfData::LastSpineParam ******/ + /****** md5 signature: e486c269dbc2903bdab7750b7673bcd2 ******/ %feature("compactdefaultargs") LastSpineParam; %feature("autodoc", "Return ------- @@ -4578,8 +4578,8 @@ No available documentation. ") LastSpineParam; Standard_Real LastSpineParam(); - /****************** LastSpineParam ******************/ - /**** md5 signature: cbf1f2f51110a7d4048655e2098604ac ****/ + /****** ChFiDS_SurfData::LastSpineParam ******/ + /****** md5 signature: cbf1f2f51110a7d4048655e2098604ac ******/ %feature("compactdefaultargs") LastSpineParam; %feature("autodoc", " Parameters @@ -4596,8 +4596,8 @@ No available documentation. ") LastSpineParam; void LastSpineParam(const Standard_Real Par); - /****************** Orientation ******************/ - /**** md5 signature: 328242fe19b1f80489d8169681ebc029 ****/ + /****** ChFiDS_SurfData::Orientation ******/ + /****** md5 signature: 328242fe19b1f80489d8169681ebc029 ******/ %feature("compactdefaultargs") Orientation; %feature("autodoc", "Return ------- @@ -4609,8 +4609,8 @@ No available documentation. ") Orientation; TopAbs_Orientation Orientation(); - /****************** ResetSimul ******************/ - /**** md5 signature: ef9a205f289935b753cf7e7b693562a5 ****/ + /****** ChFiDS_SurfData::ResetSimul ******/ + /****** md5 signature: ef9a205f289935b753cf7e7b693562a5 ******/ %feature("compactdefaultargs") ResetSimul; %feature("autodoc", "Return ------- @@ -4622,8 +4622,8 @@ No available documentation. ") ResetSimul; void ResetSimul(); - /****************** Set2dPoints ******************/ - /**** md5 signature: c164003b5eb904f6a11f248c01e5e125 ****/ + /****** ChFiDS_SurfData::Set2dPoints ******/ + /****** md5 signature: c164003b5eb904f6a11f248c01e5e125 ******/ %feature("compactdefaultargs") Set2dPoints; %feature("autodoc", " Parameters @@ -4643,8 +4643,8 @@ No available documentation. ") Set2dPoints; void Set2dPoints(const gp_Pnt2d & P2df1, const gp_Pnt2d & P2dl1, const gp_Pnt2d & P2df2, const gp_Pnt2d & P2dl2); - /****************** SetIndexOfC1 ******************/ - /**** md5 signature: e9e20dfa0037167b3db1039fdf9ddbd4 ****/ + /****** ChFiDS_SurfData::SetIndexOfC1 ******/ + /****** md5 signature: e9e20dfa0037167b3db1039fdf9ddbd4 ******/ %feature("compactdefaultargs") SetIndexOfC1; %feature("autodoc", " Parameters @@ -4661,8 +4661,8 @@ No available documentation. ") SetIndexOfC1; void SetIndexOfC1(const Standard_Integer Index); - /****************** SetIndexOfC2 ******************/ - /**** md5 signature: 699facddccc422aedc676f7ce2d4ae70 ****/ + /****** ChFiDS_SurfData::SetIndexOfC2 ******/ + /****** md5 signature: 699facddccc422aedc676f7ce2d4ae70 ******/ %feature("compactdefaultargs") SetIndexOfC2; %feature("autodoc", " Parameters @@ -4679,8 +4679,8 @@ No available documentation. ") SetIndexOfC2; void SetIndexOfC2(const Standard_Integer Index); - /****************** SetSimul ******************/ - /**** md5 signature: 0b9016e6717c670bf80fee8060fff7f8 ****/ + /****** ChFiDS_SurfData::SetSimul ******/ + /****** md5 signature: 0b9016e6717c670bf80fee8060fff7f8 ******/ %feature("compactdefaultargs") SetSimul; %feature("autodoc", " Parameters @@ -4697,8 +4697,8 @@ No available documentation. ") SetSimul; void SetSimul(const opencascade::handle & S); - /****************** Simul ******************/ - /**** md5 signature: 5a64a66fd42dcaca497381aacb1dc73d ****/ + /****** ChFiDS_SurfData::Simul ******/ + /****** md5 signature: 5a64a66fd42dcaca497381aacb1dc73d ******/ %feature("compactdefaultargs") Simul; %feature("autodoc", "Return ------- @@ -4710,8 +4710,8 @@ No available documentation. ") Simul; opencascade::handle Simul(); - /****************** Surf ******************/ - /**** md5 signature: 1098b0d819c18c444ca2aaecf83fe6fe ****/ + /****** ChFiDS_SurfData::Surf ******/ + /****** md5 signature: 1098b0d819c18c444ca2aaecf83fe6fe ******/ %feature("compactdefaultargs") Surf; %feature("autodoc", "Return ------- @@ -4723,8 +4723,8 @@ No available documentation. ") Surf; Standard_Integer Surf(); - /****************** TwistOnS1 ******************/ - /**** md5 signature: 9e7cba134041c48814f8e911bc7ceb7d ****/ + /****** ChFiDS_SurfData::TwistOnS1 ******/ + /****** md5 signature: 9e7cba134041c48814f8e911bc7ceb7d ******/ %feature("compactdefaultargs") TwistOnS1; %feature("autodoc", "Return ------- @@ -4736,8 +4736,8 @@ No available documentation. ") TwistOnS1; Standard_Boolean TwistOnS1(); - /****************** TwistOnS1 ******************/ - /**** md5 signature: 0acb5632246f7d8546f899592bf293f6 ****/ + /****** ChFiDS_SurfData::TwistOnS1 ******/ + /****** md5 signature: 0acb5632246f7d8546f899592bf293f6 ******/ %feature("compactdefaultargs") TwistOnS1; %feature("autodoc", " Parameters @@ -4754,8 +4754,8 @@ No available documentation. ") TwistOnS1; void TwistOnS1(const Standard_Boolean T); - /****************** TwistOnS2 ******************/ - /**** md5 signature: d09d14bd26a5c6922f795ecb44cf2f66 ****/ + /****** ChFiDS_SurfData::TwistOnS2 ******/ + /****** md5 signature: d09d14bd26a5c6922f795ecb44cf2f66 ******/ %feature("compactdefaultargs") TwistOnS2; %feature("autodoc", "Return ------- @@ -4767,8 +4767,8 @@ No available documentation. ") TwistOnS2; Standard_Boolean TwistOnS2(); - /****************** TwistOnS2 ******************/ - /**** md5 signature: 86b835475f2f1a22123081c9ad1406c3 ****/ + /****** ChFiDS_SurfData::TwistOnS2 ******/ + /****** md5 signature: 86b835475f2f1a22123081c9ad1406c3 ******/ %feature("compactdefaultargs") TwistOnS2; %feature("autodoc", " Parameters @@ -4785,8 +4785,8 @@ No available documentation. ") TwistOnS2; void TwistOnS2(const Standard_Boolean T); - /****************** Vertex ******************/ - /**** md5 signature: 18d5b7a519c656abcce6733eb3f805bc ****/ + /****** ChFiDS_SurfData::Vertex ******/ + /****** md5 signature: 18d5b7a519c656abcce6733eb3f805bc ******/ %feature("compactdefaultargs") Vertex; %feature("autodoc", " Parameters @@ -4804,8 +4804,8 @@ Returns one of the four vertices whether first is true or wrong and ons equals 1 ") Vertex; const ChFiDS_CommonPoint & Vertex(const Standard_Boolean First, const Standard_Integer OnS); - /****************** VertexFirstOnS1 ******************/ - /**** md5 signature: fbdcb24d9af55411ab7405474d1a35b9 ****/ + /****** ChFiDS_SurfData::VertexFirstOnS1 ******/ + /****** md5 signature: fbdcb24d9af55411ab7405474d1a35b9 ******/ %feature("compactdefaultargs") VertexFirstOnS1; %feature("autodoc", "Return ------- @@ -4817,8 +4817,8 @@ No available documentation. ") VertexFirstOnS1; const ChFiDS_CommonPoint & VertexFirstOnS1(); - /****************** VertexFirstOnS2 ******************/ - /**** md5 signature: 7c85c07345dd8348e664b3ab7bf9f189 ****/ + /****** ChFiDS_SurfData::VertexFirstOnS2 ******/ + /****** md5 signature: 7c85c07345dd8348e664b3ab7bf9f189 ******/ %feature("compactdefaultargs") VertexFirstOnS2; %feature("autodoc", "Return ------- @@ -4830,8 +4830,8 @@ No available documentation. ") VertexFirstOnS2; const ChFiDS_CommonPoint & VertexFirstOnS2(); - /****************** VertexLastOnS1 ******************/ - /**** md5 signature: 6427caa61f0bf9234fd05e296984ac27 ****/ + /****** ChFiDS_SurfData::VertexLastOnS1 ******/ + /****** md5 signature: 6427caa61f0bf9234fd05e296984ac27 ******/ %feature("compactdefaultargs") VertexLastOnS1; %feature("autodoc", "Return ------- @@ -4843,8 +4843,8 @@ No available documentation. ") VertexLastOnS1; const ChFiDS_CommonPoint & VertexLastOnS1(); - /****************** VertexLastOnS2 ******************/ - /**** md5 signature: c890925b005a346f489bb09d9ca4839f ****/ + /****** ChFiDS_SurfData::VertexLastOnS2 ******/ + /****** md5 signature: c890925b005a346f489bb09d9ca4839f ******/ %feature("compactdefaultargs") VertexLastOnS2; %feature("autodoc", "Return ------- @@ -4872,8 +4872,8 @@ No available documentation. **************************/ class ChFiDS_ChamfSpine : public ChFiDS_Spine { public: - /****************** ChFiDS_ChamfSpine ******************/ - /**** md5 signature: 41553b44dd772e00fe86fab46e7d904c ****/ + /****** ChFiDS_ChamfSpine::ChFiDS_ChamfSpine ******/ + /****** md5 signature: 41553b44dd772e00fe86fab46e7d904c ******/ %feature("compactdefaultargs") ChFiDS_ChamfSpine; %feature("autodoc", "Return ------- @@ -4885,8 +4885,8 @@ No available documentation. ") ChFiDS_ChamfSpine; ChFiDS_ChamfSpine(); - /****************** ChFiDS_ChamfSpine ******************/ - /**** md5 signature: 33f39a16a9e9fd99378615ca285c48a9 ****/ + /****** ChFiDS_ChamfSpine::ChFiDS_ChamfSpine ******/ + /****** md5 signature: 33f39a16a9e9fd99378615ca285c48a9 ******/ %feature("compactdefaultargs") ChFiDS_ChamfSpine; %feature("autodoc", " Parameters @@ -4903,8 +4903,8 @@ No available documentation. ") ChFiDS_ChamfSpine; ChFiDS_ChamfSpine(const Standard_Real Tol); - /****************** Dists ******************/ - /**** md5 signature: 2e7b681679b701fdc1f1a885c6746b43 ****/ + /****** ChFiDS_ChamfSpine::Dists ******/ + /****** md5 signature: 2e7b681679b701fdc1f1a885c6746b43 ******/ %feature("compactdefaultargs") Dists; %feature("autodoc", " Parameters @@ -4921,8 +4921,8 @@ No available documentation. ") Dists; void Dists(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** GetDist ******************/ - /**** md5 signature: 6f22d39c9d38288e6a9d1e40741e84b4 ****/ + /****** ChFiDS_ChamfSpine::GetDist ******/ + /****** md5 signature: 6f22d39c9d38288e6a9d1e40741e84b4 ******/ %feature("compactdefaultargs") GetDist; %feature("autodoc", " Parameters @@ -4938,8 +4938,8 @@ No available documentation. ") GetDist; void GetDist(Standard_Real &OutValue); - /****************** GetDistAngle ******************/ - /**** md5 signature: b7e8c4f4dca6f7925ece8caaf424f067 ****/ + /****** ChFiDS_ChamfSpine::GetDistAngle ******/ + /****** md5 signature: b7e8c4f4dca6f7925ece8caaf424f067 ******/ %feature("compactdefaultargs") GetDistAngle; %feature("autodoc", " Parameters @@ -4956,8 +4956,8 @@ No available documentation. ") GetDistAngle; void GetDistAngle(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** IsChamfer ******************/ - /**** md5 signature: d658319093da8e4029525963f6dcf77f ****/ + /****** ChFiDS_ChamfSpine::IsChamfer ******/ + /****** md5 signature: d658319093da8e4029525963f6dcf77f ******/ %feature("compactdefaultargs") IsChamfer; %feature("autodoc", "Return ------- @@ -4969,8 +4969,8 @@ Return the method of chamfers used. ") IsChamfer; ChFiDS_ChamfMethod IsChamfer(); - /****************** SetDist ******************/ - /**** md5 signature: 3234cee1a1528df7657370712255a4e9 ****/ + /****** ChFiDS_ChamfSpine::SetDist ******/ + /****** md5 signature: 3234cee1a1528df7657370712255a4e9 ******/ %feature("compactdefaultargs") SetDist; %feature("autodoc", " Parameters @@ -4987,8 +4987,8 @@ No available documentation. ") SetDist; void SetDist(const Standard_Real Dis); - /****************** SetDistAngle ******************/ - /**** md5 signature: dc437b103bb0ff46b0c641a081c767b1 ****/ + /****** ChFiDS_ChamfSpine::SetDistAngle ******/ + /****** md5 signature: dc437b103bb0ff46b0c641a081c767b1 ******/ %feature("compactdefaultargs") SetDistAngle; %feature("autodoc", " Parameters @@ -5006,8 +5006,8 @@ No available documentation. ") SetDistAngle; void SetDistAngle(const Standard_Real Dis, const Standard_Real Angle); - /****************** SetDists ******************/ - /**** md5 signature: e2a0b86c65b45aa81960cb17a64c4df1 ****/ + /****** ChFiDS_ChamfSpine::SetDists ******/ + /****** md5 signature: e2a0b86c65b45aa81960cb17a64c4df1 ******/ %feature("compactdefaultargs") SetDists; %feature("autodoc", " Parameters @@ -5025,8 +5025,8 @@ No available documentation. ") SetDists; void SetDists(const Standard_Real Dis1, const Standard_Real Dis2); - /****************** SetMode ******************/ - /**** md5 signature: 85103d8a8712f2721bdad80918d54319 ****/ + /****** ChFiDS_ChamfSpine::SetMode ******/ + /****** md5 signature: 85103d8a8712f2721bdad80918d54319 ******/ %feature("compactdefaultargs") SetMode; %feature("autodoc", " Parameters @@ -5059,8 +5059,8 @@ No available documentation. ************************/ class ChFiDS_FilSpine : public ChFiDS_Spine { public: - /****************** ChFiDS_FilSpine ******************/ - /**** md5 signature: cba6306b427db3f36fc8b4403f44bd5b ****/ + /****** ChFiDS_FilSpine::ChFiDS_FilSpine ******/ + /****** md5 signature: cba6306b427db3f36fc8b4403f44bd5b ******/ %feature("compactdefaultargs") ChFiDS_FilSpine; %feature("autodoc", "Return ------- @@ -5072,8 +5072,8 @@ No available documentation. ") ChFiDS_FilSpine; ChFiDS_FilSpine(); - /****************** ChFiDS_FilSpine ******************/ - /**** md5 signature: 62b18d0760aa4d6ecc105f7fa320840e ****/ + /****** ChFiDS_FilSpine::ChFiDS_FilSpine ******/ + /****** md5 signature: 62b18d0760aa4d6ecc105f7fa320840e ******/ %feature("compactdefaultargs") ChFiDS_FilSpine; %feature("autodoc", " Parameters @@ -5090,8 +5090,8 @@ No available documentation. ") ChFiDS_FilSpine; ChFiDS_FilSpine(const Standard_Real Tol); - /****************** AppendElSpine ******************/ - /**** md5 signature: 372916a9ea66113bdf5cde8ef4cde52f ****/ + /****** ChFiDS_FilSpine::AppendElSpine ******/ + /****** md5 signature: 372916a9ea66113bdf5cde8ef4cde52f ******/ %feature("compactdefaultargs") AppendElSpine; %feature("autodoc", " Parameters @@ -5108,8 +5108,8 @@ No available documentation. ") AppendElSpine; virtual void AppendElSpine(const opencascade::handle & Els); - /****************** ChangeLaw ******************/ - /**** md5 signature: 8ae71aa7535429ad90f7a710389558b8 ****/ + /****** ChFiDS_FilSpine::ChangeLaw ******/ + /****** md5 signature: 8ae71aa7535429ad90f7a710389558b8 ******/ %feature("compactdefaultargs") ChangeLaw; %feature("autodoc", " Parameters @@ -5126,8 +5126,8 @@ Returns the elementary law. ") ChangeLaw; opencascade::handle & ChangeLaw(const TopoDS_Edge & E); - /****************** IsConstant ******************/ - /**** md5 signature: d04428c0cc470abb832fd48242d18c6c ****/ + /****** ChFiDS_FilSpine::IsConstant ******/ + /****** md5 signature: d04428c0cc470abb832fd48242d18c6c ******/ %feature("compactdefaultargs") IsConstant; %feature("autodoc", "Return ------- @@ -5139,8 +5139,8 @@ Returns true if the radius is constant all along the spine. ") IsConstant; Standard_Boolean IsConstant(); - /****************** IsConstant ******************/ - /**** md5 signature: bc11f93510cfff4e44a25f3e84ce1ada ****/ + /****** ChFiDS_FilSpine::IsConstant ******/ + /****** md5 signature: bc11f93510cfff4e44a25f3e84ce1ada ******/ %feature("compactdefaultargs") IsConstant; %feature("autodoc", " Parameters @@ -5157,8 +5157,8 @@ Returns true if the radius is constant all along the edge e. ") IsConstant; Standard_Boolean IsConstant(const Standard_Integer IE); - /****************** Law ******************/ - /**** md5 signature: 7cf16ab410922973e30dbb370c179506 ****/ + /****** ChFiDS_FilSpine::Law ******/ + /****** md5 signature: 7cf16ab410922973e30dbb370c179506 ******/ %feature("compactdefaultargs") Law; %feature("autodoc", " Parameters @@ -5175,8 +5175,8 @@ No available documentation. ") Law; opencascade::handle Law(const opencascade::handle & Els); - /****************** MaxRadFromSeqAndLaws ******************/ - /**** md5 signature: 5d0ba972a5439e16c0aae93c053bd63b ****/ + /****** ChFiDS_FilSpine::MaxRadFromSeqAndLaws ******/ + /****** md5 signature: 5d0ba972a5439e16c0aae93c053bd63b ******/ %feature("compactdefaultargs") MaxRadFromSeqAndLaws; %feature("autodoc", "Return ------- @@ -5188,8 +5188,8 @@ Returns the maximum radius if the fillet is non-constant. ") MaxRadFromSeqAndLaws; Standard_Real MaxRadFromSeqAndLaws(); - /****************** Radius ******************/ - /**** md5 signature: 506a8dc1140a54bd4146c24bb5357fbf ****/ + /****** ChFiDS_FilSpine::Radius ******/ + /****** md5 signature: 506a8dc1140a54bd4146c24bb5357fbf ******/ %feature("compactdefaultargs") Radius; %feature("autodoc", "Return ------- @@ -5201,8 +5201,8 @@ Returns the radius if the fillet is constant all along the spine. ") Radius; Standard_Real Radius(); - /****************** Radius ******************/ - /**** md5 signature: 75a8a890fcaa49d59f2a13a8dfdd6194 ****/ + /****** ChFiDS_FilSpine::Radius ******/ + /****** md5 signature: 75a8a890fcaa49d59f2a13a8dfdd6194 ******/ %feature("compactdefaultargs") Radius; %feature("autodoc", " Parameters @@ -5219,8 +5219,8 @@ Returns the radius if the fillet is constant all along the edge e. ") Radius; Standard_Real Radius(const Standard_Integer IE); - /****************** Radius ******************/ - /**** md5 signature: a7dbde136b0aff6df13e784d945befee ****/ + /****** ChFiDS_FilSpine::Radius ******/ + /****** md5 signature: a7dbde136b0aff6df13e784d945befee ******/ %feature("compactdefaultargs") Radius; %feature("autodoc", " Parameters @@ -5237,8 +5237,8 @@ Returns the radius if the fillet is constant all along the edge e. ") Radius; Standard_Real Radius(const TopoDS_Edge & E); - /****************** Reset ******************/ - /**** md5 signature: e8db21712db75c0ab3a6d44938480832 ****/ + /****** ChFiDS_FilSpine::Reset ******/ + /****** md5 signature: e8db21712db75c0ab3a6d44938480832 ******/ %feature("compactdefaultargs") Reset; %feature("autodoc", " Parameters @@ -5255,8 +5255,8 @@ No available documentation. ") Reset; virtual void Reset(const Standard_Boolean AllData = Standard_False); - /****************** SetRadius ******************/ - /**** md5 signature: 91641ed1cc49aed497341c2960fe1ef2 ****/ + /****** ChFiDS_FilSpine::SetRadius ******/ + /****** md5 signature: 91641ed1cc49aed497341c2960fe1ef2 ******/ %feature("compactdefaultargs") SetRadius; %feature("autodoc", " Parameters @@ -5274,8 +5274,8 @@ Initializes the constant vector on edge e. ") SetRadius; void SetRadius(const Standard_Real Radius, const TopoDS_Edge & E); - /****************** SetRadius ******************/ - /**** md5 signature: 0b731947b724fee5a279be1cdface2f5 ****/ + /****** ChFiDS_FilSpine::SetRadius ******/ + /****** md5 signature: 0b731947b724fee5a279be1cdface2f5 ******/ %feature("compactdefaultargs") SetRadius; %feature("autodoc", " Parameters @@ -5293,8 +5293,8 @@ Initializes the vector on vertex v. ") SetRadius; void SetRadius(const Standard_Real Radius, const TopoDS_Vertex & V); - /****************** SetRadius ******************/ - /**** md5 signature: c46a36f7aea3dca4657dbb13bc50b145 ****/ + /****** ChFiDS_FilSpine::SetRadius ******/ + /****** md5 signature: c46a36f7aea3dca4657dbb13bc50b145 ******/ %feature("compactdefaultargs") SetRadius; %feature("autodoc", " Parameters @@ -5312,8 +5312,8 @@ Initializes the vector on the point of parameter w. ") SetRadius; void SetRadius(const gp_XY & UandR, const Standard_Integer IinC); - /****************** SetRadius ******************/ - /**** md5 signature: 021f3150e83db7a660562352251b37b0 ****/ + /****** ChFiDS_FilSpine::SetRadius ******/ + /****** md5 signature: 021f3150e83db7a660562352251b37b0 ******/ %feature("compactdefaultargs") SetRadius; %feature("autodoc", " Parameters @@ -5330,8 +5330,8 @@ Initializes the constant vector on all spine. ") SetRadius; void SetRadius(const Standard_Real Radius); - /****************** SetRadius ******************/ - /**** md5 signature: 99c895e6b68282335620180e915bf49e ****/ + /****** ChFiDS_FilSpine::SetRadius ******/ + /****** md5 signature: 99c895e6b68282335620180e915bf49e ******/ %feature("compactdefaultargs") SetRadius; %feature("autodoc", " Parameters @@ -5349,8 +5349,8 @@ Initializes the rule of evolution on all spine. ") SetRadius; void SetRadius(const opencascade::handle & C, const Standard_Integer IinC); - /****************** UnSetRadius ******************/ - /**** md5 signature: 5be1b8d2f909f7cad1be8a39d04d1ce1 ****/ + /****** ChFiDS_FilSpine::UnSetRadius ******/ + /****** md5 signature: 5be1b8d2f909f7cad1be8a39d04d1ce1 ******/ %feature("compactdefaultargs") UnSetRadius; %feature("autodoc", " Parameters @@ -5367,8 +5367,8 @@ Resets the constant vector on edge e. ") UnSetRadius; void UnSetRadius(const TopoDS_Edge & E); - /****************** UnSetRadius ******************/ - /**** md5 signature: 5d2002bb5639afbef66d96320c17409b ****/ + /****** ChFiDS_FilSpine::UnSetRadius ******/ + /****** md5 signature: 5d2002bb5639afbef66d96320c17409b ******/ %feature("compactdefaultargs") UnSetRadius; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/ChFiKPart.i b/src/SWIG_files/wrapper/ChFiKPart.i index 97bd2a976..224e4b008 100644 --- a/src/SWIG_files/wrapper/ChFiKPart.i +++ b/src/SWIG_files/wrapper/ChFiKPart.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define CHFIKPARTDOCSTRING "ChFiKPart module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_chfikpart.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_chfikpart.html" %enddef %module (package="OCC.Core", docstring=CHFIKPARTDOCSTRING) ChFiKPart @@ -132,8 +132,8 @@ typedef NCollection_DataMap & Data, const opencascade::handle & S1, const opencascade::handle & S2, const TopAbs_Orientation Or1, const TopAbs_Orientation Or2, const opencascade::handle & Sp, const Standard_Integer Iedge); - /****************** ComputeCorner ******************/ - /**** md5 signature: 865640977aad8d495cda6b0205404703 ****/ + /****** ChFiKPart_ComputeData::ComputeCorner ******/ + /****** md5 signature: 865640977aad8d495cda6b0205404703 ******/ %feature("compactdefaultargs") ComputeCorner; %feature("autodoc", " Parameters @@ -188,8 +188,8 @@ Computes a toric or spheric corner fillet. ") ComputeCorner; static Standard_Boolean ComputeCorner(TopOpeBRepDS_DataStructure & DStr, const opencascade::handle & Data, const opencascade::handle & S1, const opencascade::handle & S2, const TopAbs_Orientation OrFace1, const TopAbs_Orientation OrFace2, const TopAbs_Orientation Or1, const TopAbs_Orientation Or2, const Standard_Real minRad, const Standard_Real majRad, const gp_Pnt2d & P1S1, const gp_Pnt2d & P2S1, const gp_Pnt2d & P1S2, const gp_Pnt2d & P2S2); - /****************** ComputeCorner ******************/ - /**** md5 signature: 85d29cbe50ebb6a374a60f8829eb98a3 ****/ + /****** ChFiKPart_ComputeData::ComputeCorner ******/ + /****** md5 signature: 85d29cbe50ebb6a374a60f8829eb98a3 ******/ %feature("compactdefaultargs") ComputeCorner; %feature("autodoc", " Parameters @@ -217,8 +217,8 @@ Computes spheric corner fillet with non iso pcurve on s2. ") ComputeCorner; static Standard_Boolean ComputeCorner(TopOpeBRepDS_DataStructure & DStr, const opencascade::handle & Data, const opencascade::handle & S1, const opencascade::handle & S2, const TopAbs_Orientation OrFace1, const TopAbs_Orientation OrFace2, const TopAbs_Orientation Or1, const TopAbs_Orientation Or2, const Standard_Real Rad, const gp_Pnt2d & PS1, const gp_Pnt2d & P1S2, const gp_Pnt2d & P2S2); - /****************** ComputeCorner ******************/ - /**** md5 signature: bafab55c65e7ea7e93485d2309ea19e0 ****/ + /****** ChFiKPart_ComputeData::ComputeCorner ******/ + /****** md5 signature: bafab55c65e7ea7e93485d2309ea19e0 ******/ %feature("compactdefaultargs") ComputeCorner; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/Contap.i b/src/SWIG_files/wrapper/Contap.i index 75e798fa3..950eafad0 100644 --- a/src/SWIG_files/wrapper/Contap.i +++ b/src/SWIG_files/wrapper/Contap.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define CONTAPDOCSTRING "Contap module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_contap.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_contap.html" %enddef %module (package="OCC.Core", docstring=CONTAPDOCSTRING) Contap @@ -181,8 +181,8 @@ typedef NCollection_Sequence Contap_TheSequenceOfPoint; ***************************/ class Contap_ArcFunction : public math_FunctionWithDerivative { public: - /****************** Contap_ArcFunction ******************/ - /**** md5 signature: cece6392d8a41c80644c929adb23fb57 ****/ + /****** Contap_ArcFunction::Contap_ArcFunction ******/ + /****** md5 signature: cece6392d8a41c80644c929adb23fb57 ******/ %feature("compactdefaultargs") Contap_ArcFunction; %feature("autodoc", "Return ------- @@ -194,8 +194,8 @@ No available documentation. ") Contap_ArcFunction; Contap_ArcFunction(); - /****************** Derivative ******************/ - /**** md5 signature: 99d758c6c475cdb086620552a67d08e7 ****/ + /****** Contap_ArcFunction::Derivative ******/ + /****** md5 signature: 99d758c6c475cdb086620552a67d08e7 ******/ %feature("compactdefaultargs") Derivative; %feature("autodoc", " Parameters @@ -212,8 +212,8 @@ No available documentation. ") Derivative; Standard_Boolean Derivative(const Standard_Real X, Standard_Real &OutValue); - /****************** GetStateNumber ******************/ - /**** md5 signature: 49c44bd66dd4ec2381671c72ebd88158 ****/ + /****** Contap_ArcFunction::GetStateNumber ******/ + /****** md5 signature: 49c44bd66dd4ec2381671c72ebd88158 ******/ %feature("compactdefaultargs") GetStateNumber; %feature("autodoc", "Return ------- @@ -225,8 +225,8 @@ No available documentation. ") GetStateNumber; virtual Standard_Integer GetStateNumber(); - /****************** LastComputedPoint ******************/ - /**** md5 signature: 151ab65e948ef31dff9bbbd66f058a30 ****/ + /****** Contap_ArcFunction::LastComputedPoint ******/ + /****** md5 signature: 151ab65e948ef31dff9bbbd66f058a30 ******/ %feature("compactdefaultargs") LastComputedPoint; %feature("autodoc", "Return ------- @@ -238,8 +238,8 @@ Returns the point, which has been computed while the last calling value() method ") LastComputedPoint; const gp_Pnt LastComputedPoint(); - /****************** NbSamples ******************/ - /**** md5 signature: 1e61299a12ab2ebed2590e1021ec4bae ****/ + /****** Contap_ArcFunction::NbSamples ******/ + /****** md5 signature: 1e61299a12ab2ebed2590e1021ec4bae ******/ %feature("compactdefaultargs") NbSamples; %feature("autodoc", "Return ------- @@ -251,8 +251,8 @@ No available documentation. ") NbSamples; Standard_Integer NbSamples(); - /****************** Quadric ******************/ - /**** md5 signature: 412540fe449bd77bf89b8085f1fe1701 ****/ + /****** Contap_ArcFunction::Quadric ******/ + /****** md5 signature: 412540fe449bd77bf89b8085f1fe1701 ******/ %feature("compactdefaultargs") Quadric; %feature("autodoc", "Return ------- @@ -264,8 +264,8 @@ No available documentation. ") Quadric; const IntSurf_Quadric & Quadric(); - /****************** Set ******************/ - /**** md5 signature: fe1f4e54b6d838c88f545f7975616591 ****/ + /****** Contap_ArcFunction::Set ******/ + /****** md5 signature: fe1f4e54b6d838c88f545f7975616591 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -282,8 +282,8 @@ No available documentation. ") Set; void Set(const opencascade::handle & S); - /****************** Set ******************/ - /**** md5 signature: 7b60fb3b1252eb4013a37f792be86766 ****/ + /****** Contap_ArcFunction::Set ******/ + /****** md5 signature: 7b60fb3b1252eb4013a37f792be86766 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -300,8 +300,8 @@ No available documentation. ") Set; void Set(const gp_Dir & Direction); - /****************** Set ******************/ - /**** md5 signature: 9cf83fdf904bc30ff499b59d9a3cd4a0 ****/ + /****** Contap_ArcFunction::Set ******/ + /****** md5 signature: 9cf83fdf904bc30ff499b59d9a3cd4a0 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -319,8 +319,8 @@ No available documentation. ") Set; void Set(const gp_Dir & Direction, const Standard_Real Angle); - /****************** Set ******************/ - /**** md5 signature: 82e61fcbcd023e361c983ac9b10b051a ****/ + /****** Contap_ArcFunction::Set ******/ + /****** md5 signature: 82e61fcbcd023e361c983ac9b10b051a ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -337,8 +337,8 @@ No available documentation. ") Set; void Set(const gp_Pnt & Eye); - /****************** Set ******************/ - /**** md5 signature: df4b9353625a35b43eacf0999ffe2b0e ****/ + /****** Contap_ArcFunction::Set ******/ + /****** md5 signature: df4b9353625a35b43eacf0999ffe2b0e ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -356,8 +356,8 @@ No available documentation. ") Set; void Set(const gp_Pnt & Eye, const Standard_Real Angle); - /****************** Set ******************/ - /**** md5 signature: 70ab888f546bf04b92c8032f862436af ****/ + /****** Contap_ArcFunction::Set ******/ + /****** md5 signature: 70ab888f546bf04b92c8032f862436af ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -374,8 +374,8 @@ No available documentation. ") Set; void Set(const opencascade::handle & A); - /****************** Surface ******************/ - /**** md5 signature: d36dc8d293d03901e5a1cace2e167115 ****/ + /****** Contap_ArcFunction::Surface ******/ + /****** md5 signature: d36dc8d293d03901e5a1cace2e167115 ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", "Return ------- @@ -387,8 +387,8 @@ Returns mysurf field. ") Surface; const opencascade::handle & Surface(); - /****************** Valpoint ******************/ - /**** md5 signature: 3a2ceb97db1e39a13d0a9061e49cb920 ****/ + /****** Contap_ArcFunction::Valpoint ******/ + /****** md5 signature: 3a2ceb97db1e39a13d0a9061e49cb920 ******/ %feature("compactdefaultargs") Valpoint; %feature("autodoc", " Parameters @@ -405,8 +405,8 @@ No available documentation. ") Valpoint; const gp_Pnt Valpoint(const Standard_Integer Index); - /****************** Value ******************/ - /**** md5 signature: af675141386b20e819be1017ca5afac2 ****/ + /****** Contap_ArcFunction::Value ******/ + /****** md5 signature: af675141386b20e819be1017ca5afac2 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -423,8 +423,8 @@ No available documentation. ") Value; Standard_Boolean Value(const Standard_Real X, Standard_Real &OutValue); - /****************** Values ******************/ - /**** md5 signature: 3835d085291235e285cceabd6d1dd2b9 ****/ + /****** Contap_ArcFunction::Values ******/ + /****** md5 signature: 3835d085291235e285cceabd6d1dd2b9 ******/ %feature("compactdefaultargs") Values; %feature("autodoc", " Parameters @@ -456,8 +456,8 @@ No available documentation. ***********************/ class Contap_ContAna { public: - /****************** Contap_ContAna ******************/ - /**** md5 signature: 34b8def8c8965bff09152db88478f3eb ****/ + /****** Contap_ContAna::Contap_ContAna ******/ + /****** md5 signature: 34b8def8c8965bff09152db88478f3eb ******/ %feature("compactdefaultargs") Contap_ContAna; %feature("autodoc", "Return ------- @@ -469,8 +469,8 @@ No available documentation. ") Contap_ContAna; Contap_ContAna(); - /****************** Circle ******************/ - /**** md5 signature: cab8b08988d177bd7107adbbccc4ef89 ****/ + /****** Contap_ContAna::Circle ******/ + /****** md5 signature: cab8b08988d177bd7107adbbccc4ef89 ******/ %feature("compactdefaultargs") Circle; %feature("autodoc", "Return ------- @@ -482,8 +482,8 @@ No available documentation. ") Circle; gp_Circ Circle(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** Contap_ContAna::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -495,8 +495,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** Line ******************/ - /**** md5 signature: f891b9d0be5f66ff9a406dfed37e1991 ****/ + /****** Contap_ContAna::Line ******/ + /****** md5 signature: f891b9d0be5f66ff9a406dfed37e1991 ******/ %feature("compactdefaultargs") Line; %feature("autodoc", " Parameters @@ -513,8 +513,8 @@ No available documentation. ") Line; gp_Lin Line(const Standard_Integer Index); - /****************** NbContours ******************/ - /**** md5 signature: 9bc6c7042c1b062de00f5626f3ec367e ****/ + /****** Contap_ContAna::NbContours ******/ + /****** md5 signature: 9bc6c7042c1b062de00f5626f3ec367e ******/ %feature("compactdefaultargs") NbContours; %feature("autodoc", "Return ------- @@ -526,8 +526,8 @@ No available documentation. ") NbContours; Standard_Integer NbContours(); - /****************** Perform ******************/ - /**** md5 signature: b9f75b8393c6cd183c564d2cf1768f58 ****/ + /****** Contap_ContAna::Perform ******/ + /****** md5 signature: b9f75b8393c6cd183c564d2cf1768f58 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -545,8 +545,8 @@ No available documentation. ") Perform; void Perform(const gp_Sphere & S, const gp_Dir & D); - /****************** Perform ******************/ - /**** md5 signature: 9e3a7f6299476f22fc94426b5f6eb15a ****/ + /****** Contap_ContAna::Perform ******/ + /****** md5 signature: 9e3a7f6299476f22fc94426b5f6eb15a ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -565,8 +565,8 @@ No available documentation. ") Perform; void Perform(const gp_Sphere & S, const gp_Dir & D, const Standard_Real Ang); - /****************** Perform ******************/ - /**** md5 signature: 83e5be324f2e2c73bbe8c50fd37f8fc0 ****/ + /****** Contap_ContAna::Perform ******/ + /****** md5 signature: 83e5be324f2e2c73bbe8c50fd37f8fc0 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -584,8 +584,8 @@ No available documentation. ") Perform; void Perform(const gp_Sphere & S, const gp_Pnt & Eye); - /****************** Perform ******************/ - /**** md5 signature: a11a7f0b0850419c1c57238048e54f31 ****/ + /****** Contap_ContAna::Perform ******/ + /****** md5 signature: a11a7f0b0850419c1c57238048e54f31 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -603,8 +603,8 @@ No available documentation. ") Perform; void Perform(const gp_Cylinder & C, const gp_Dir & D); - /****************** Perform ******************/ - /**** md5 signature: 6677b9abfa575ea86b1cb2c3d80cbb21 ****/ + /****** Contap_ContAna::Perform ******/ + /****** md5 signature: 6677b9abfa575ea86b1cb2c3d80cbb21 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -623,8 +623,8 @@ No available documentation. ") Perform; void Perform(const gp_Cylinder & C, const gp_Dir & D, const Standard_Real Ang); - /****************** Perform ******************/ - /**** md5 signature: f7fbe617dc60d1ff7b48291ef8af9b77 ****/ + /****** Contap_ContAna::Perform ******/ + /****** md5 signature: f7fbe617dc60d1ff7b48291ef8af9b77 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -642,8 +642,8 @@ No available documentation. ") Perform; void Perform(const gp_Cylinder & C, const gp_Pnt & Eye); - /****************** Perform ******************/ - /**** md5 signature: 7412caececa5d30e287fc66233cf2264 ****/ + /****** Contap_ContAna::Perform ******/ + /****** md5 signature: 7412caececa5d30e287fc66233cf2264 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -661,8 +661,8 @@ No available documentation. ") Perform; void Perform(const gp_Cone & C, const gp_Dir & D); - /****************** Perform ******************/ - /**** md5 signature: b0bdcde5ac71912f96c9d22de0c98e9c ****/ + /****** Contap_ContAna::Perform ******/ + /****** md5 signature: b0bdcde5ac71912f96c9d22de0c98e9c ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -681,8 +681,8 @@ No available documentation. ") Perform; void Perform(const gp_Cone & C, const gp_Dir & D, const Standard_Real Ang); - /****************** Perform ******************/ - /**** md5 signature: 879c7165991c9f0ff7be8883e8f0e98c ****/ + /****** Contap_ContAna::Perform ******/ + /****** md5 signature: 879c7165991c9f0ff7be8883e8f0e98c ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -700,8 +700,8 @@ No available documentation. ") Perform; void Perform(const gp_Cone & C, const gp_Pnt & Eye); - /****************** TypeContour ******************/ - /**** md5 signature: d3534623a7f7cecab5a391d5a853d774 ****/ + /****** Contap_ContAna::TypeContour ******/ + /****** md5 signature: d3534623a7f7cecab5a391d5a853d774 ******/ %feature("compactdefaultargs") TypeContour; %feature("autodoc", "Return ------- @@ -727,8 +727,8 @@ Returns geomabs_line or geomabs_circle, when isdone() returns true. ***********************/ class Contap_Contour { public: - /****************** Contap_Contour ******************/ - /**** md5 signature: 32102b3b6d93dd029f6dde0e589735e0 ****/ + /****** Contap_Contour::Contap_Contour ******/ + /****** md5 signature: 32102b3b6d93dd029f6dde0e589735e0 ******/ %feature("compactdefaultargs") Contap_Contour; %feature("autodoc", "Return ------- @@ -740,8 +740,8 @@ No available documentation. ") Contap_Contour; Contap_Contour(); - /****************** Contap_Contour ******************/ - /**** md5 signature: bd91b0d3a8a64bcd82393bb6259770cf ****/ + /****** Contap_Contour::Contap_Contour ******/ + /****** md5 signature: bd91b0d3a8a64bcd82393bb6259770cf ******/ %feature("compactdefaultargs") Contap_Contour; %feature("autodoc", " Parameters @@ -758,8 +758,8 @@ No available documentation. ") Contap_Contour; Contap_Contour(const gp_Vec & Direction); - /****************** Contap_Contour ******************/ - /**** md5 signature: f347113f128de03764c976388dd763fa ****/ + /****** Contap_Contour::Contap_Contour ******/ + /****** md5 signature: f347113f128de03764c976388dd763fa ******/ %feature("compactdefaultargs") Contap_Contour; %feature("autodoc", " Parameters @@ -777,8 +777,8 @@ No available documentation. ") Contap_Contour; Contap_Contour(const gp_Vec & Direction, const Standard_Real Angle); - /****************** Contap_Contour ******************/ - /**** md5 signature: a1d711354b1cae160e79b4e231bd07b4 ****/ + /****** Contap_Contour::Contap_Contour ******/ + /****** md5 signature: a1d711354b1cae160e79b4e231bd07b4 ******/ %feature("compactdefaultargs") Contap_Contour; %feature("autodoc", " Parameters @@ -795,8 +795,8 @@ No available documentation. ") Contap_Contour; Contap_Contour(const gp_Pnt & Eye); - /****************** Contap_Contour ******************/ - /**** md5 signature: 25645dae103420d74f7a669531e03e3a ****/ + /****** Contap_Contour::Contap_Contour ******/ + /****** md5 signature: 25645dae103420d74f7a669531e03e3a ******/ %feature("compactdefaultargs") Contap_Contour; %feature("autodoc", " Parameters @@ -815,8 +815,8 @@ Creates the contour in a given direction. ") Contap_Contour; Contap_Contour(const opencascade::handle & Surf, const opencascade::handle & Domain, const gp_Vec & Direction); - /****************** Contap_Contour ******************/ - /**** md5 signature: 477d93fc923faa8291a1a3940a1672cc ****/ + /****** Contap_Contour::Contap_Contour ******/ + /****** md5 signature: 477d93fc923faa8291a1a3940a1672cc ******/ %feature("compactdefaultargs") Contap_Contour; %feature("autodoc", " Parameters @@ -836,8 +836,8 @@ Creates the contour in a given direction. ") Contap_Contour; Contap_Contour(const opencascade::handle & Surf, const opencascade::handle & Domain, const gp_Vec & Direction, const Standard_Real Angle); - /****************** Contap_Contour ******************/ - /**** md5 signature: 56cac3764cf1b3b815e5af09b9b8027c ****/ + /****** Contap_Contour::Contap_Contour ******/ + /****** md5 signature: 56cac3764cf1b3b815e5af09b9b8027c ******/ %feature("compactdefaultargs") Contap_Contour; %feature("autodoc", " Parameters @@ -856,8 +856,8 @@ Creates the contour for a perspective view. ") Contap_Contour; Contap_Contour(const opencascade::handle & Surf, const opencascade::handle & Domain, const gp_Pnt & Eye); - /****************** Init ******************/ - /**** md5 signature: deab7f18a5b73dea8633b272c74ec953 ****/ + /****** Contap_Contour::Init ******/ + /****** md5 signature: deab7f18a5b73dea8633b272c74ec953 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -874,8 +874,8 @@ No available documentation. ") Init; void Init(const gp_Vec & Direction); - /****************** Init ******************/ - /**** md5 signature: 54e24371bc5b544519382c90e6ae1c36 ****/ + /****** Contap_Contour::Init ******/ + /****** md5 signature: 54e24371bc5b544519382c90e6ae1c36 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -893,8 +893,8 @@ No available documentation. ") Init; void Init(const gp_Vec & Direction, const Standard_Real Angle); - /****************** Init ******************/ - /**** md5 signature: 44a2c71985162287cc60ada71418f1d1 ****/ + /****** Contap_Contour::Init ******/ + /****** md5 signature: 44a2c71985162287cc60ada71418f1d1 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -911,8 +911,8 @@ No available documentation. ") Init; void Init(const gp_Pnt & Eye); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** Contap_Contour::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -924,8 +924,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** IsEmpty ******************/ - /**** md5 signature: 6ab5e1ad63f93168856ab126dd374b81 ****/ + /****** Contap_Contour::IsEmpty ******/ + /****** md5 signature: 6ab5e1ad63f93168856ab126dd374b81 ******/ %feature("compactdefaultargs") IsEmpty; %feature("autodoc", "Return ------- @@ -937,8 +937,8 @@ Returns true if the is no line. ") IsEmpty; Standard_Boolean IsEmpty(); - /****************** Line ******************/ - /**** md5 signature: e1f84a12db582fc2be0b030fbc71189b ****/ + /****** Contap_Contour::Line ******/ + /****** md5 signature: e1f84a12db582fc2be0b030fbc71189b ******/ %feature("compactdefaultargs") Line; %feature("autodoc", " Parameters @@ -955,8 +955,8 @@ No available documentation. ") Line; const Contap_Line & Line(const Standard_Integer Index); - /****************** NbLines ******************/ - /**** md5 signature: 4f8001fdc02f82f8f981f090a37ac7d4 ****/ + /****** Contap_Contour::NbLines ******/ + /****** md5 signature: 4f8001fdc02f82f8f981f090a37ac7d4 ******/ %feature("compactdefaultargs") NbLines; %feature("autodoc", "Return ------- @@ -968,8 +968,8 @@ No available documentation. ") NbLines; Standard_Integer NbLines(); - /****************** Perform ******************/ - /**** md5 signature: f325c0d93f36bc064924753d683f809a ****/ + /****** Contap_Contour::Perform ******/ + /****** md5 signature: f325c0d93f36bc064924753d683f809a ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -987,8 +987,8 @@ Creates the contour in a given direction. ") Perform; void Perform(const opencascade::handle & Surf, const opencascade::handle & Domain); - /****************** Perform ******************/ - /**** md5 signature: 0b4fd3b0fec6772a0904131288cdfdd2 ****/ + /****** Contap_Contour::Perform ******/ + /****** md5 signature: 0b4fd3b0fec6772a0904131288cdfdd2 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1007,8 +1007,8 @@ Creates the contour in a given direction. ") Perform; void Perform(const opencascade::handle & Surf, const opencascade::handle & Domain, const gp_Vec & Direction); - /****************** Perform ******************/ - /**** md5 signature: 3262b2a18ac7cca247352dff7df5c35a ****/ + /****** Contap_Contour::Perform ******/ + /****** md5 signature: 3262b2a18ac7cca247352dff7df5c35a ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1028,8 +1028,8 @@ Creates the contour in a given direction. ") Perform; void Perform(const opencascade::handle & Surf, const opencascade::handle & Domain, const gp_Vec & Direction, const Standard_Real Angle); - /****************** Perform ******************/ - /**** md5 signature: 1211ae19df2ef1905fcbbf0375510d47 ****/ + /****** Contap_Contour::Perform ******/ + /****** md5 signature: 1211ae19df2ef1905fcbbf0375510d47 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1048,8 +1048,8 @@ Creates the contour for a perspective view. ") Perform; void Perform(const opencascade::handle & Surf, const opencascade::handle & Domain, const gp_Pnt & Eye); - /****************** SurfaceFunction ******************/ - /**** md5 signature: 4a38b2f929c85d9d66c55cb5e593a36b ****/ + /****** Contap_Contour::SurfaceFunction ******/ + /****** md5 signature: 4a38b2f929c85d9d66c55cb5e593a36b ******/ %feature("compactdefaultargs") SurfaceFunction; %feature("autodoc", "Return ------- @@ -1075,8 +1075,8 @@ Returns a reference on the internal surfacefunction. this is used to compute tan *************************/ class Contap_HContTool { public: - /****************** Bounds ******************/ - /**** md5 signature: 14979ddc3175e995d5548477ac5bcd4b ****/ + /****** Contap_HContTool::Bounds ******/ + /****** md5 signature: 14979ddc3175e995d5548477ac5bcd4b ******/ %feature("compactdefaultargs") Bounds; %feature("autodoc", " Parameters @@ -1094,8 +1094,8 @@ Returns the parametric limits on the arc c. these limits must be finite: they ar ") Bounds; static void Bounds(const opencascade::handle & C, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** HasBeenSeen ******************/ - /**** md5 signature: 52a722c5d4a9984d26ad321cf3630b48 ****/ + /****** Contap_HContTool::HasBeenSeen ******/ + /****** md5 signature: 52a722c5d4a9984d26ad321cf3630b48 ******/ %feature("compactdefaultargs") HasBeenSeen; %feature("autodoc", " Parameters @@ -1112,8 +1112,8 @@ Returns true if all the intersection point and edges are known on the arc. the i ") HasBeenSeen; static Standard_Boolean HasBeenSeen(const opencascade::handle & C); - /****************** HasFirstPoint ******************/ - /**** md5 signature: af276ff6ae83b4e53affd31093f8bfdc ****/ + /****** Contap_HContTool::HasFirstPoint ******/ + /****** md5 signature: af276ff6ae83b4e53affd31093f8bfdc ******/ %feature("compactdefaultargs") HasFirstPoint; %feature("autodoc", " Parameters @@ -1131,8 +1131,8 @@ Returns true when the segment of range index is not open at the left side. in th ") HasFirstPoint; static Standard_Boolean HasFirstPoint(const opencascade::handle & C, const Standard_Integer Index, Standard_Integer &OutValue); - /****************** HasLastPoint ******************/ - /**** md5 signature: a28a12263a39eecc4acc9708fdf256c7 ****/ + /****** Contap_HContTool::HasLastPoint ******/ + /****** md5 signature: a28a12263a39eecc4acc9708fdf256c7 ******/ %feature("compactdefaultargs") HasLastPoint; %feature("autodoc", " Parameters @@ -1150,8 +1150,8 @@ Returns true when the segment of range index is not open at the right side. in t ") HasLastPoint; static Standard_Boolean HasLastPoint(const opencascade::handle & C, const Standard_Integer Index, Standard_Integer &OutValue); - /****************** IsAllSolution ******************/ - /**** md5 signature: a0e5f5bbe827235fe1ddb52793e5eb42 ****/ + /****** Contap_HContTool::IsAllSolution ******/ + /****** md5 signature: a0e5f5bbe827235fe1ddb52793e5eb42 ******/ %feature("compactdefaultargs") IsAllSolution; %feature("autodoc", " Parameters @@ -1168,8 +1168,8 @@ Returns true when the whole restriction is solution of the intersection problem. ") IsAllSolution; static Standard_Boolean IsAllSolution(const opencascade::handle & C); - /****************** IsVertex ******************/ - /**** md5 signature: ffecad0cdf7d56d3c7a670cde7e75bc2 ****/ + /****** Contap_HContTool::IsVertex ******/ + /****** md5 signature: ffecad0cdf7d56d3c7a670cde7e75bc2 ******/ %feature("compactdefaultargs") IsVertex; %feature("autodoc", " Parameters @@ -1187,8 +1187,8 @@ Returns true if the intersection point of range index corresponds with a vertex ") IsVertex; static Standard_Boolean IsVertex(const opencascade::handle & C, const Standard_Integer Index); - /****************** NbPoints ******************/ - /**** md5 signature: 54aec07f3b6dd332421dfbc4dec3568c ****/ + /****** Contap_HContTool::NbPoints ******/ + /****** md5 signature: 54aec07f3b6dd332421dfbc4dec3568c ******/ %feature("compactdefaultargs") NbPoints; %feature("autodoc", " Parameters @@ -1205,8 +1205,8 @@ Returns the number of intersection points on the arc a. ") NbPoints; static Standard_Integer NbPoints(const opencascade::handle & C); - /****************** NbSamplePoints ******************/ - /**** md5 signature: f9bf587e348ded4c9e8073b6938de72d ****/ + /****** Contap_HContTool::NbSamplePoints ******/ + /****** md5 signature: f9bf587e348ded4c9e8073b6938de72d ******/ %feature("compactdefaultargs") NbSamplePoints; %feature("autodoc", " Parameters @@ -1223,8 +1223,8 @@ No available documentation. ") NbSamplePoints; static Standard_Integer NbSamplePoints(const opencascade::handle & S); - /****************** NbSamplesOnArc ******************/ - /**** md5 signature: 99a1330c1c671d353c2bee9fd23c27cc ****/ + /****** Contap_HContTool::NbSamplesOnArc ******/ + /****** md5 signature: 99a1330c1c671d353c2bee9fd23c27cc ******/ %feature("compactdefaultargs") NbSamplesOnArc; %feature("autodoc", " Parameters @@ -1241,8 +1241,8 @@ Returns the number of points which is used to make a sample on the arc. this num ") NbSamplesOnArc; static Standard_Integer NbSamplesOnArc(const opencascade::handle & A); - /****************** NbSamplesU ******************/ - /**** md5 signature: 7ffe816252db97bdbf2950cea2ca2037 ****/ + /****** Contap_HContTool::NbSamplesU ******/ + /****** md5 signature: 7ffe816252db97bdbf2950cea2ca2037 ******/ %feature("compactdefaultargs") NbSamplesU; %feature("autodoc", " Parameters @@ -1261,8 +1261,8 @@ No available documentation. ") NbSamplesU; static Standard_Integer NbSamplesU(const opencascade::handle & S, const Standard_Real u1, const Standard_Real u2); - /****************** NbSamplesV ******************/ - /**** md5 signature: 183861bdb84cb1597bd3a1324a097e8e ****/ + /****** Contap_HContTool::NbSamplesV ******/ + /****** md5 signature: 183861bdb84cb1597bd3a1324a097e8e ******/ %feature("compactdefaultargs") NbSamplesV; %feature("autodoc", " Parameters @@ -1281,8 +1281,8 @@ No available documentation. ") NbSamplesV; static Standard_Integer NbSamplesV(const opencascade::handle & S, const Standard_Real v1, const Standard_Real v2); - /****************** NbSegments ******************/ - /**** md5 signature: 2689aa0fe05c64574e603c4eb512caa4 ****/ + /****** Contap_HContTool::NbSegments ******/ + /****** md5 signature: 2689aa0fe05c64574e603c4eb512caa4 ******/ %feature("compactdefaultargs") NbSegments; %feature("autodoc", " Parameters @@ -1299,8 +1299,8 @@ Returns the number of part of a solution of the of intersection problem. ") NbSegments; static Standard_Integer NbSegments(const opencascade::handle & C); - /****************** Parameter ******************/ - /**** md5 signature: f5a937c546746bb35bafec928fdc442d ****/ + /****** Contap_HContTool::Parameter ******/ + /****** md5 signature: f5a937c546746bb35bafec928fdc442d ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", " Parameters @@ -1318,8 +1318,8 @@ Returns the parameter of the vertex v on the arc a. ") Parameter; static Standard_Real Parameter(const opencascade::handle & V, const opencascade::handle & C); - /****************** Project ******************/ - /**** md5 signature: b602a334ba1cfcdefae0bd304b479ee8 ****/ + /****** Contap_HContTool::Project ******/ + /****** md5 signature: b602a334ba1cfcdefae0bd304b479ee8 ******/ %feature("compactdefaultargs") Project; %feature("autodoc", " Parameters @@ -1338,8 +1338,8 @@ Projects the point p on the arc c. if the methods returns standard_true, the pro ") Project; static Standard_Boolean Project(const opencascade::handle & C, const gp_Pnt2d & P, Standard_Real &OutValue, gp_Pnt2d & Ptproj); - /****************** SamplePoint ******************/ - /**** md5 signature: da2e08ebb1b31e85cabbb780a9cea7b5 ****/ + /****** Contap_HContTool::SamplePoint ******/ + /****** md5 signature: da2e08ebb1b31e85cabbb780a9cea7b5 ******/ %feature("compactdefaultargs") SamplePoint; %feature("autodoc", " Parameters @@ -1358,8 +1358,8 @@ No available documentation. ") SamplePoint; static void SamplePoint(const opencascade::handle & S, const Standard_Integer Index, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Tolerance ******************/ - /**** md5 signature: 35f5531e9c358e20c7f5723f26e0a7ba ****/ + /****** Contap_HContTool::Tolerance ******/ + /****** md5 signature: 35f5531e9c358e20c7f5723f26e0a7ba ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", " Parameters @@ -1377,8 +1377,8 @@ Returns the parametric tolerance used to consider that the vertex and another po ") Tolerance; static Standard_Real Tolerance(const opencascade::handle & V, const opencascade::handle & C); - /****************** Value ******************/ - /**** md5 signature: ba54f1e0e4e6802571668cb2c0638480 ****/ + /****** Contap_HContTool::Value ******/ + /****** md5 signature: ba54f1e0e4e6802571668cb2c0638480 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -1398,8 +1398,8 @@ Returns the value (pt), the tolerance (tol), and the parameter (u) on the arc a ") Value; static void Value(const opencascade::handle & C, const Standard_Integer Index, gp_Pnt & Pt, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** Vertex ******************/ - /**** md5 signature: f58ee2175cbc1af1161d7220a9c11ff1 ****/ + /****** Contap_HContTool::Vertex ******/ + /****** md5 signature: f58ee2175cbc1af1161d7220a9c11ff1 ******/ %feature("compactdefaultargs") Vertex; %feature("autodoc", " Parameters @@ -1432,8 +1432,8 @@ When isvertex returns true, this method returns the vertex on the arc a. ****************************/ class Contap_HCurve2dTool { public: - /****************** BSpline ******************/ - /**** md5 signature: 1151b84776305bc0a5c8aaee6f50252d ****/ + /****** Contap_HCurve2dTool::BSpline ******/ + /****** md5 signature: 1151b84776305bc0a5c8aaee6f50252d ******/ %feature("compactdefaultargs") BSpline; %feature("autodoc", " Parameters @@ -1450,8 +1450,8 @@ No available documentation. ") BSpline; static opencascade::handle BSpline(const opencascade::handle & C); - /****************** Bezier ******************/ - /**** md5 signature: 55afc4c0fc79e07de6077214558af461 ****/ + /****** Contap_HCurve2dTool::Bezier ******/ + /****** md5 signature: 55afc4c0fc79e07de6077214558af461 ******/ %feature("compactdefaultargs") Bezier; %feature("autodoc", " Parameters @@ -1468,8 +1468,8 @@ No available documentation. ") Bezier; static opencascade::handle Bezier(const opencascade::handle & C); - /****************** Circle ******************/ - /**** md5 signature: 3e4b216e090c5747e712418f4fa66d2c ****/ + /****** Contap_HCurve2dTool::Circle ******/ + /****** md5 signature: 3e4b216e090c5747e712418f4fa66d2c ******/ %feature("compactdefaultargs") Circle; %feature("autodoc", " Parameters @@ -1486,8 +1486,8 @@ No available documentation. ") Circle; static gp_Circ2d Circle(const opencascade::handle & C); - /****************** Continuity ******************/ - /**** md5 signature: 93cd5f75c1ce867aba7a7f12421275f0 ****/ + /****** Contap_HCurve2dTool::Continuity ******/ + /****** md5 signature: 93cd5f75c1ce867aba7a7f12421275f0 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", " Parameters @@ -1504,8 +1504,8 @@ No available documentation. ") Continuity; static GeomAbs_Shape Continuity(const opencascade::handle & C); - /****************** D0 ******************/ - /**** md5 signature: 54c6bd0c456279db2610c0ff0808eb84 ****/ + /****** Contap_HCurve2dTool::D0 ******/ + /****** md5 signature: 54c6bd0c456279db2610c0ff0808eb84 ******/ %feature("compactdefaultargs") D0; %feature("autodoc", " Parameters @@ -1524,8 +1524,8 @@ Computes the point of parameter u on the curve. ") D0; static void D0(const opencascade::handle & C, const Standard_Real U, gp_Pnt2d & P); - /****************** D1 ******************/ - /**** md5 signature: 918bee38d3c31b02180315ab8bd4beb7 ****/ + /****** Contap_HCurve2dTool::D1 ******/ + /****** md5 signature: 918bee38d3c31b02180315ab8bd4beb7 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -1545,8 +1545,8 @@ Computes the point of parameter u on the curve with its first derivative. raised ") D1; static void D1(const opencascade::handle & C, const Standard_Real U, gp_Pnt2d & P, gp_Vec2d & V); - /****************** D2 ******************/ - /**** md5 signature: d9e326efa98865a213fce49a3626a678 ****/ + /****** Contap_HCurve2dTool::D2 ******/ + /****** md5 signature: d9e326efa98865a213fce49a3626a678 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -1567,8 +1567,8 @@ Returns the point p of parameter u, the first and second derivatives v1 and v2. ") D2; static void D2(const opencascade::handle & C, const Standard_Real U, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2); - /****************** D3 ******************/ - /**** md5 signature: 4951d7379750f8dbc9e426361fa2b365 ****/ + /****** Contap_HCurve2dTool::D3 ******/ + /****** md5 signature: 4951d7379750f8dbc9e426361fa2b365 ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -1590,8 +1590,8 @@ Returns the point p of parameter u, the first, the second and the third derivati ") D3; static void D3(const opencascade::handle & C, const Standard_Real U, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2, gp_Vec2d & V3); - /****************** DN ******************/ - /**** md5 signature: edb6f0f7cc5bdd7864a248db788f4d84 ****/ + /****** Contap_HCurve2dTool::DN ******/ + /****** md5 signature: edb6f0f7cc5bdd7864a248db788f4d84 ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -1610,8 +1610,8 @@ The returned vector gives the value of the derivative for the order of derivatio ") DN; static gp_Vec2d DN(const opencascade::handle & C, const Standard_Real U, const Standard_Integer N); - /****************** Ellipse ******************/ - /**** md5 signature: 9ddecf68838c4598b17a43e7ee186e6e ****/ + /****** Contap_HCurve2dTool::Ellipse ******/ + /****** md5 signature: 9ddecf68838c4598b17a43e7ee186e6e ******/ %feature("compactdefaultargs") Ellipse; %feature("autodoc", " Parameters @@ -1628,8 +1628,8 @@ No available documentation. ") Ellipse; static gp_Elips2d Ellipse(const opencascade::handle & C); - /****************** FirstParameter ******************/ - /**** md5 signature: a4d9a6241f0c3cafc57f60a68d9c9127 ****/ + /****** Contap_HCurve2dTool::FirstParameter ******/ + /****** md5 signature: a4d9a6241f0c3cafc57f60a68d9c9127 ******/ %feature("compactdefaultargs") FirstParameter; %feature("autodoc", " Parameters @@ -1646,8 +1646,8 @@ No available documentation. ") FirstParameter; static Standard_Real FirstParameter(const opencascade::handle & C); - /****************** GetType ******************/ - /**** md5 signature: 29ec5067d7e913f214c553444ec99b6a ****/ + /****** Contap_HCurve2dTool::GetType ******/ + /****** md5 signature: 29ec5067d7e913f214c553444ec99b6a ******/ %feature("compactdefaultargs") GetType; %feature("autodoc", " Parameters @@ -1664,8 +1664,8 @@ Returns the type of the curve in the current interval: line, circle, ellipse, hy ") GetType; static GeomAbs_CurveType GetType(const opencascade::handle & C); - /****************** Hyperbola ******************/ - /**** md5 signature: d710d90c07a9bd6c6e8e1ba3fc1c92bf ****/ + /****** Contap_HCurve2dTool::Hyperbola ******/ + /****** md5 signature: d710d90c07a9bd6c6e8e1ba3fc1c92bf ******/ %feature("compactdefaultargs") Hyperbola; %feature("autodoc", " Parameters @@ -1682,8 +1682,8 @@ No available documentation. ") Hyperbola; static gp_Hypr2d Hyperbola(const opencascade::handle & C); - /****************** Intervals ******************/ - /**** md5 signature: 7f25b6c48f712ccc9ec416d83eb97ef8 ****/ + /****** Contap_HCurve2dTool::Intervals ******/ + /****** md5 signature: 7f25b6c48f712ccc9ec416d83eb97ef8 ******/ %feature("compactdefaultargs") Intervals; %feature("autodoc", " Parameters @@ -1702,8 +1702,8 @@ Stores in the parameters bounding the intervals of continuity . //! the a ") Intervals; static void Intervals(const opencascade::handle & C, TColStd_Array1OfReal & T, const GeomAbs_Shape S); - /****************** IsClosed ******************/ - /**** md5 signature: e2e4c5d0ae21ac59c815ef761d7e7eb0 ****/ + /****** Contap_HCurve2dTool::IsClosed ******/ + /****** md5 signature: e2e4c5d0ae21ac59c815ef761d7e7eb0 ******/ %feature("compactdefaultargs") IsClosed; %feature("autodoc", " Parameters @@ -1720,8 +1720,8 @@ No available documentation. ") IsClosed; static Standard_Boolean IsClosed(const opencascade::handle & C); - /****************** IsPeriodic ******************/ - /**** md5 signature: 343c2522f84a0271d505fb5a7b6123ee ****/ + /****** Contap_HCurve2dTool::IsPeriodic ******/ + /****** md5 signature: 343c2522f84a0271d505fb5a7b6123ee ******/ %feature("compactdefaultargs") IsPeriodic; %feature("autodoc", " Parameters @@ -1738,8 +1738,8 @@ No available documentation. ") IsPeriodic; static Standard_Boolean IsPeriodic(const opencascade::handle & C); - /****************** LastParameter ******************/ - /**** md5 signature: a84c73d5efee27b935b3bc64eba5e8ab ****/ + /****** Contap_HCurve2dTool::LastParameter ******/ + /****** md5 signature: a84c73d5efee27b935b3bc64eba5e8ab ******/ %feature("compactdefaultargs") LastParameter; %feature("autodoc", " Parameters @@ -1756,8 +1756,8 @@ No available documentation. ") LastParameter; static Standard_Real LastParameter(const opencascade::handle & C); - /****************** Line ******************/ - /**** md5 signature: cc50bf5bbcfff1340d1951ad804f481d ****/ + /****** Contap_HCurve2dTool::Line ******/ + /****** md5 signature: cc50bf5bbcfff1340d1951ad804f481d ******/ %feature("compactdefaultargs") Line; %feature("autodoc", " Parameters @@ -1774,8 +1774,8 @@ No available documentation. ") Line; static gp_Lin2d Line(const opencascade::handle & C); - /****************** NbIntervals ******************/ - /**** md5 signature: 296d2d406ae6365ab4187665e47f6beb ****/ + /****** Contap_HCurve2dTool::NbIntervals ******/ + /****** md5 signature: 296d2d406ae6365ab4187665e47f6beb ******/ %feature("compactdefaultargs") NbIntervals; %feature("autodoc", " Parameters @@ -1793,8 +1793,8 @@ Returns the number of intervals for continuity . may be one if continuity(myc ") NbIntervals; static Standard_Integer NbIntervals(const opencascade::handle & C, const GeomAbs_Shape S); - /****************** NbSamples ******************/ - /**** md5 signature: 4846c46ec026f7e5cf2080eb1601445a ****/ + /****** Contap_HCurve2dTool::NbSamples ******/ + /****** md5 signature: 4846c46ec026f7e5cf2080eb1601445a ******/ %feature("compactdefaultargs") NbSamples; %feature("autodoc", " Parameters @@ -1813,8 +1813,8 @@ No available documentation. ") NbSamples; static Standard_Integer NbSamples(const opencascade::handle & C, const Standard_Real U0, const Standard_Real U1); - /****************** Parabola ******************/ - /**** md5 signature: 638d7ecde6dd9f67180eadf45347f22e ****/ + /****** Contap_HCurve2dTool::Parabola ******/ + /****** md5 signature: 638d7ecde6dd9f67180eadf45347f22e ******/ %feature("compactdefaultargs") Parabola; %feature("autodoc", " Parameters @@ -1831,8 +1831,8 @@ No available documentation. ") Parabola; static gp_Parab2d Parabola(const opencascade::handle & C); - /****************** Period ******************/ - /**** md5 signature: 2a78d8fc20cccabaa0fb7d52397ae7ba ****/ + /****** Contap_HCurve2dTool::Period ******/ + /****** md5 signature: 2a78d8fc20cccabaa0fb7d52397ae7ba ******/ %feature("compactdefaultargs") Period; %feature("autodoc", " Parameters @@ -1849,8 +1849,8 @@ No available documentation. ") Period; static Standard_Real Period(const opencascade::handle & C); - /****************** Resolution ******************/ - /**** md5 signature: 1567f92dacdcdb24e1f4d21710c525e2 ****/ + /****** Contap_HCurve2dTool::Resolution ******/ + /****** md5 signature: 1567f92dacdcdb24e1f4d21710c525e2 ******/ %feature("compactdefaultargs") Resolution; %feature("autodoc", " Parameters @@ -1868,8 +1868,8 @@ Returns the parametric resolution corresponding to the real space resolution & C, const Standard_Real R3d); - /****************** Value ******************/ - /**** md5 signature: f88e121e984f9cbec46065eb86a1e379 ****/ + /****** Contap_HCurve2dTool::Value ******/ + /****** md5 signature: f88e121e984f9cbec46065eb86a1e379 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -1901,8 +1901,8 @@ Computes the point of parameter u on the curve. ********************/ class Contap_Line { public: - /****************** Contap_Line ******************/ - /**** md5 signature: 31a4005b50852e1945ca19d1e047ab86 ****/ + /****** Contap_Line::Contap_Line ******/ + /****** md5 signature: 31a4005b50852e1945ca19d1e047ab86 ******/ %feature("compactdefaultargs") Contap_Line; %feature("autodoc", "Return ------- @@ -1914,8 +1914,8 @@ No available documentation. ") Contap_Line; Contap_Line(); - /****************** Add ******************/ - /**** md5 signature: 01be3efa9c74c4d8432a102f97f9361d ****/ + /****** Contap_Line::Add ******/ + /****** md5 signature: 01be3efa9c74c4d8432a102f97f9361d ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1932,8 +1932,8 @@ No available documentation. ") Add; void Add(const IntSurf_PntOn2S & P); - /****************** Add ******************/ - /**** md5 signature: 056936562dcf77b940ba3130c47afdae ****/ + /****** Contap_Line::Add ******/ + /****** md5 signature: 056936562dcf77b940ba3130c47afdae ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -1950,8 +1950,8 @@ No available documentation. ") Add; void Add(const Contap_Point & P); - /****************** Arc ******************/ - /**** md5 signature: de8e47510fc50811ee5a3e0bc98029e6 ****/ + /****** Contap_Line::Arc ******/ + /****** md5 signature: de8e47510fc50811ee5a3e0bc98029e6 ******/ %feature("compactdefaultargs") Arc; %feature("autodoc", "Return ------- @@ -1963,8 +1963,8 @@ No available documentation. ") Arc; const opencascade::handle & Arc(); - /****************** Circle ******************/ - /**** md5 signature: cab8b08988d177bd7107adbbccc4ef89 ****/ + /****** Contap_Line::Circle ******/ + /****** md5 signature: cab8b08988d177bd7107adbbccc4ef89 ******/ %feature("compactdefaultargs") Circle; %feature("autodoc", "Return ------- @@ -1976,8 +1976,8 @@ No available documentation. ") Circle; gp_Circ Circle(); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** Contap_Line::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -1989,8 +1989,8 @@ No available documentation. ") Clear; void Clear(); - /****************** Line ******************/ - /**** md5 signature: 63e1fa189ca3bcfdb401241217a93bfb ****/ + /****** Contap_Line::Line ******/ + /****** md5 signature: 63e1fa189ca3bcfdb401241217a93bfb ******/ %feature("compactdefaultargs") Line; %feature("autodoc", "Return ------- @@ -2002,8 +2002,8 @@ No available documentation. ") Line; gp_Lin Line(); - /****************** LineOn2S ******************/ - /**** md5 signature: 31b349cb17d652cab4ad0cf52e88a2aa ****/ + /****** Contap_Line::LineOn2S ******/ + /****** md5 signature: 31b349cb17d652cab4ad0cf52e88a2aa ******/ %feature("compactdefaultargs") LineOn2S; %feature("autodoc", "Return ------- @@ -2015,8 +2015,8 @@ No available documentation. ") LineOn2S; const opencascade::handle & LineOn2S(); - /****************** NbPnts ******************/ - /**** md5 signature: 11421df812eef5f47a644a70b75ab60a ****/ + /****** Contap_Line::NbPnts ******/ + /****** md5 signature: 11421df812eef5f47a644a70b75ab60a ******/ %feature("compactdefaultargs") NbPnts; %feature("autodoc", "Return ------- @@ -2028,8 +2028,8 @@ No available documentation. ") NbPnts; Standard_Integer NbPnts(); - /****************** NbVertex ******************/ - /**** md5 signature: b2d226bac64a106c7941ef45ff4e07f1 ****/ + /****** Contap_Line::NbVertex ******/ + /****** md5 signature: b2d226bac64a106c7941ef45ff4e07f1 ******/ %feature("compactdefaultargs") NbVertex; %feature("autodoc", "Return ------- @@ -2041,8 +2041,8 @@ No available documentation. ") NbVertex; Standard_Integer NbVertex(); - /****************** Point ******************/ - /**** md5 signature: f91b2c05b43dfb8aaadba8068bf4b32a ****/ + /****** Contap_Line::Point ******/ + /****** md5 signature: f91b2c05b43dfb8aaadba8068bf4b32a ******/ %feature("compactdefaultargs") Point; %feature("autodoc", " Parameters @@ -2059,8 +2059,8 @@ No available documentation. ") Point; const IntSurf_PntOn2S & Point(const Standard_Integer Index); - /****************** ResetSeqOfVertex ******************/ - /**** md5 signature: a6c5afb6e069ea40eab99b45a50ab6bd ****/ + /****** Contap_Line::ResetSeqOfVertex ******/ + /****** md5 signature: a6c5afb6e069ea40eab99b45a50ab6bd ******/ %feature("compactdefaultargs") ResetSeqOfVertex; %feature("autodoc", "Return ------- @@ -2072,8 +2072,8 @@ No available documentation. ") ResetSeqOfVertex; void ResetSeqOfVertex(); - /****************** SetLineOn2S ******************/ - /**** md5 signature: 10da8691bc4dbff6817878acc12fd279 ****/ + /****** Contap_Line::SetLineOn2S ******/ + /****** md5 signature: 10da8691bc4dbff6817878acc12fd279 ******/ %feature("compactdefaultargs") SetLineOn2S; %feature("autodoc", " Parameters @@ -2090,8 +2090,8 @@ No available documentation. ") SetLineOn2S; void SetLineOn2S(const opencascade::handle & L); - /****************** SetTransitionOnS ******************/ - /**** md5 signature: 3e11bbe314ad3435d0d0c939af6c7e0c ****/ + /****** Contap_Line::SetTransitionOnS ******/ + /****** md5 signature: 3e11bbe314ad3435d0d0c939af6c7e0c ******/ %feature("compactdefaultargs") SetTransitionOnS; %feature("autodoc", " Parameters @@ -2108,8 +2108,8 @@ Set the tansition of the line. ") SetTransitionOnS; void SetTransitionOnS(const IntSurf_TypeTrans T); - /****************** SetValue ******************/ - /**** md5 signature: 1ae32c88ce581ccde7cd37fbe879a748 ****/ + /****** Contap_Line::SetValue ******/ + /****** md5 signature: 1ae32c88ce581ccde7cd37fbe879a748 ******/ %feature("compactdefaultargs") SetValue; %feature("autodoc", " Parameters @@ -2126,8 +2126,8 @@ No available documentation. ") SetValue; void SetValue(const gp_Lin & L); - /****************** SetValue ******************/ - /**** md5 signature: df8c025f756bd837345d152a2edc2a47 ****/ + /****** Contap_Line::SetValue ******/ + /****** md5 signature: df8c025f756bd837345d152a2edc2a47 ******/ %feature("compactdefaultargs") SetValue; %feature("autodoc", " Parameters @@ -2144,8 +2144,8 @@ No available documentation. ") SetValue; void SetValue(const gp_Circ & C); - /****************** SetValue ******************/ - /**** md5 signature: 53ce9238106071febf6db57a0ff8a99c ****/ + /****** Contap_Line::SetValue ******/ + /****** md5 signature: 53ce9238106071febf6db57a0ff8a99c ******/ %feature("compactdefaultargs") SetValue; %feature("autodoc", " Parameters @@ -2162,8 +2162,8 @@ No available documentation. ") SetValue; void SetValue(const opencascade::handle & A); - /****************** TransitionOnS ******************/ - /**** md5 signature: ac2f27afdd16ab93ea1f959cb2bf6e33 ****/ + /****** Contap_Line::TransitionOnS ******/ + /****** md5 signature: ac2f27afdd16ab93ea1f959cb2bf6e33 ******/ %feature("compactdefaultargs") TransitionOnS; %feature("autodoc", "Return ------- @@ -2175,8 +2175,8 @@ Returns in if at the 'left' of the line, the normale of the surface is oriented ") TransitionOnS; IntSurf_TypeTrans TransitionOnS(); - /****************** TypeContour ******************/ - /**** md5 signature: ccb9b7428ffec80adf355a2d32ee6f36 ****/ + /****** Contap_Line::TypeContour ******/ + /****** md5 signature: ccb9b7428ffec80adf355a2d32ee6f36 ******/ %feature("compactdefaultargs") TypeContour; %feature("autodoc", "Return ------- @@ -2188,8 +2188,8 @@ Returns contap_lin for a line, contap_circle for a circle, and contap_walking fo ") TypeContour; Contap_IType TypeContour(); - /****************** Vertex ******************/ - /**** md5 signature: a9752a4d0f1a95aac4c22e2cbc715081 ****/ + /****** Contap_Line::Vertex ******/ + /****** md5 signature: a9752a4d0f1a95aac4c22e2cbc715081 ******/ %feature("compactdefaultargs") Vertex; %feature("autodoc", " Parameters @@ -2220,8 +2220,8 @@ No available documentation. *********************/ class Contap_Point { public: - /****************** Contap_Point ******************/ - /**** md5 signature: 7f542237bdf60ef9ad56bb116a72608a ****/ + /****** Contap_Point::Contap_Point ******/ + /****** md5 signature: 7f542237bdf60ef9ad56bb116a72608a ******/ %feature("compactdefaultargs") Contap_Point; %feature("autodoc", "Return ------- @@ -2233,8 +2233,8 @@ Empty constructor. ") Contap_Point; Contap_Point(); - /****************** Contap_Point ******************/ - /**** md5 signature: e63a495e15d3f926ffe70feb26e98122 ****/ + /****** Contap_Point::Contap_Point ******/ + /****** md5 signature: e63a495e15d3f926ffe70feb26e98122 ******/ %feature("compactdefaultargs") Contap_Point; %feature("autodoc", " Parameters @@ -2253,8 +2253,8 @@ Creates a point. ") Contap_Point; Contap_Point(const gp_Pnt & Pt, const Standard_Real U, const Standard_Real V); - /****************** Arc ******************/ - /**** md5 signature: de8e47510fc50811ee5a3e0bc98029e6 ****/ + /****** Contap_Point::Arc ******/ + /****** md5 signature: de8e47510fc50811ee5a3e0bc98029e6 ******/ %feature("compactdefaultargs") Arc; %feature("autodoc", "Return ------- @@ -2266,8 +2266,8 @@ Returns the arc of restriction containing the vertex. ") Arc; const opencascade::handle & Arc(); - /****************** IsInternal ******************/ - /**** md5 signature: d02f8c187f927a9ba16cc17de3466e18 ****/ + /****** Contap_Point::IsInternal ******/ + /****** md5 signature: d02f8c187f927a9ba16cc17de3466e18 ******/ %feature("compactdefaultargs") IsInternal; %feature("autodoc", "Return ------- @@ -2279,8 +2279,8 @@ Returns true if the point is an internal one, i.e if the tangent to the line on ") IsInternal; Standard_Boolean IsInternal(); - /****************** IsMultiple ******************/ - /**** md5 signature: d5ff9ea3f75ee3e6e0efda5814b9e44e ****/ + /****** Contap_Point::IsMultiple ******/ + /****** md5 signature: d5ff9ea3f75ee3e6e0efda5814b9e44e ******/ %feature("compactdefaultargs") IsMultiple; %feature("autodoc", "Return ------- @@ -2292,8 +2292,8 @@ Returns true if the point belongs to several lines. ") IsMultiple; Standard_Boolean IsMultiple(); - /****************** IsOnArc ******************/ - /**** md5 signature: f74dbf32a42236bf36dcd24dd76a342c ****/ + /****** Contap_Point::IsOnArc ******/ + /****** md5 signature: f74dbf32a42236bf36dcd24dd76a342c ******/ %feature("compactdefaultargs") IsOnArc; %feature("autodoc", "Return ------- @@ -2305,8 +2305,8 @@ Returns true when the point is an intersection between the contour and a restric ") IsOnArc; Standard_Boolean IsOnArc(); - /****************** IsVertex ******************/ - /**** md5 signature: 7dbb6189450b7f2ae76146c6d5d6e875 ****/ + /****** Contap_Point::IsVertex ******/ + /****** md5 signature: 7dbb6189450b7f2ae76146c6d5d6e875 ******/ %feature("compactdefaultargs") IsVertex; %feature("autodoc", "Return ------- @@ -2318,8 +2318,8 @@ Returns true if the point is a vertex on the initial restriction facet of the su ") IsVertex; Standard_Boolean IsVertex(); - /****************** ParameterOnArc ******************/ - /**** md5 signature: 53d2051734836b1f3c7d9edd7c3c1884 ****/ + /****** Contap_Point::ParameterOnArc ******/ + /****** md5 signature: 53d2051734836b1f3c7d9edd7c3c1884 ******/ %feature("compactdefaultargs") ParameterOnArc; %feature("autodoc", "Return ------- @@ -2331,8 +2331,8 @@ Returns the parameter of the point on the arc returned by the method arc(). ") ParameterOnArc; Standard_Real ParameterOnArc(); - /****************** ParameterOnLine ******************/ - /**** md5 signature: 737a2a57e32e63a1ba587dea488e9583 ****/ + /****** Contap_Point::ParameterOnLine ******/ + /****** md5 signature: 737a2a57e32e63a1ba587dea488e9583 ******/ %feature("compactdefaultargs") ParameterOnLine; %feature("autodoc", "Return ------- @@ -2344,8 +2344,8 @@ This method returns the parameter of the point on the intersection line. if the ") ParameterOnLine; Standard_Real ParameterOnLine(); - /****************** Parameters ******************/ - /**** md5 signature: 27c7f851c77cf6105be13a7890f1f0e0 ****/ + /****** Contap_Point::Parameters ******/ + /****** md5 signature: 27c7f851c77cf6105be13a7890f1f0e0 ******/ %feature("compactdefaultargs") Parameters; %feature("autodoc", " Parameters @@ -2362,8 +2362,8 @@ Returns the parameters on the surface of the point. ") Parameters; void Parameters(Standard_Real &OutValue, Standard_Real &OutValue); - /****************** SetArc ******************/ - /**** md5 signature: ceabf78102f113c25de4b4f678682f05 ****/ + /****** Contap_Point::SetArc ******/ + /****** md5 signature: ceabf78102f113c25de4b4f678682f05 ******/ %feature("compactdefaultargs") SetArc; %feature("autodoc", " Parameters @@ -2383,8 +2383,8 @@ Sets the value of the arc and of the parameter on this arc of the point. ") SetArc; void SetArc(const opencascade::handle & A, const Standard_Real Param, const IntSurf_Transition & TLine, const IntSurf_Transition & TArc); - /****************** SetInternal ******************/ - /**** md5 signature: f29227e746cced65920ee7fe48924495 ****/ + /****** Contap_Point::SetInternal ******/ + /****** md5 signature: f29227e746cced65920ee7fe48924495 ******/ %feature("compactdefaultargs") SetInternal; %feature("autodoc", "Return ------- @@ -2396,8 +2396,8 @@ No available documentation. ") SetInternal; void SetInternal(); - /****************** SetMultiple ******************/ - /**** md5 signature: 1ac6220c2c8c7b2e4c947976b7d1c954 ****/ + /****** Contap_Point::SetMultiple ******/ + /****** md5 signature: 1ac6220c2c8c7b2e4c947976b7d1c954 ******/ %feature("compactdefaultargs") SetMultiple; %feature("autodoc", "Return ------- @@ -2409,8 +2409,8 @@ No available documentation. ") SetMultiple; void SetMultiple(); - /****************** SetParameter ******************/ - /**** md5 signature: 9c20628bfb58eb45593287ce353000c6 ****/ + /****** Contap_Point::SetParameter ******/ + /****** md5 signature: 9c20628bfb58eb45593287ce353000c6 ******/ %feature("compactdefaultargs") SetParameter; %feature("autodoc", " Parameters @@ -2427,8 +2427,8 @@ Set the value of the parameter on the intersection line. ") SetParameter; void SetParameter(const Standard_Real Para); - /****************** SetValue ******************/ - /**** md5 signature: c88313e81258115c4934b9fff4b38a78 ****/ + /****** Contap_Point::SetValue ******/ + /****** md5 signature: c88313e81258115c4934b9fff4b38a78 ******/ %feature("compactdefaultargs") SetValue; %feature("autodoc", " Parameters @@ -2447,8 +2447,8 @@ Sets the values for a point. ") SetValue; void SetValue(const gp_Pnt & Pt, const Standard_Real U, const Standard_Real V); - /****************** SetVertex ******************/ - /**** md5 signature: 1c2d847f9895dadcabe6f5a142550e35 ****/ + /****** Contap_Point::SetVertex ******/ + /****** md5 signature: 1c2d847f9895dadcabe6f5a142550e35 ******/ %feature("compactdefaultargs") SetVertex; %feature("autodoc", " Parameters @@ -2465,8 +2465,8 @@ Sets the values of a point which is a vertex on the initial facet of restriction ") SetVertex; void SetVertex(const opencascade::handle & V); - /****************** TransitionOnArc ******************/ - /**** md5 signature: adc9ee508ec8cbe59ce8b05248cd454a ****/ + /****** Contap_Point::TransitionOnArc ******/ + /****** md5 signature: adc9ee508ec8cbe59ce8b05248cd454a ******/ %feature("compactdefaultargs") TransitionOnArc; %feature("autodoc", "Return ------- @@ -2478,8 +2478,8 @@ Returns the transition of the point on the arc. ") TransitionOnArc; const IntSurf_Transition & TransitionOnArc(); - /****************** TransitionOnLine ******************/ - /**** md5 signature: 1ffbcf064eb110daaac7ceebff0fcde5 ****/ + /****** Contap_Point::TransitionOnLine ******/ + /****** md5 signature: 1ffbcf064eb110daaac7ceebff0fcde5 ******/ %feature("compactdefaultargs") TransitionOnLine; %feature("autodoc", "Return ------- @@ -2491,8 +2491,8 @@ Returns the transition of the point on the contour. ") TransitionOnLine; const IntSurf_Transition & TransitionOnLine(); - /****************** Value ******************/ - /**** md5 signature: eddd2908948849b73f6d8aacab318652 ****/ + /****** Contap_Point::Value ******/ + /****** md5 signature: eddd2908948849b73f6d8aacab318652 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -2504,8 +2504,8 @@ Returns the intersection point (geometric information). ") Value; const gp_Pnt Value(); - /****************** Vertex ******************/ - /**** md5 signature: 7213fb18dc3be1f48818ab739bb98dfa ****/ + /****** Contap_Point::Vertex ******/ + /****** md5 signature: 7213fb18dc3be1f48818ab739bb98dfa ******/ %feature("compactdefaultargs") Vertex; %feature("autodoc", "Return ------- @@ -2531,8 +2531,8 @@ Returns the information about the point when it is on the domain of the patch, i ****************************/ class Contap_SurfFunction : public math_FunctionSetWithDerivatives { public: - /****************** Contap_SurfFunction ******************/ - /**** md5 signature: 551ec67d4c15a771ab94a5939f31e633 ****/ + /****** Contap_SurfFunction::Contap_SurfFunction ******/ + /****** md5 signature: 551ec67d4c15a771ab94a5939f31e633 ******/ %feature("compactdefaultargs") Contap_SurfFunction; %feature("autodoc", "Return ------- @@ -2544,8 +2544,8 @@ No available documentation. ") Contap_SurfFunction; Contap_SurfFunction(); - /****************** Angle ******************/ - /**** md5 signature: dce50192c350c43b54f2e88e94e5372a ****/ + /****** Contap_SurfFunction::Angle ******/ + /****** md5 signature: dce50192c350c43b54f2e88e94e5372a ******/ %feature("compactdefaultargs") Angle; %feature("autodoc", "Return ------- @@ -2557,8 +2557,8 @@ No available documentation. ") Angle; Standard_Real Angle(); - /****************** Derivatives ******************/ - /**** md5 signature: 80ee5f16e62731c095910ad60228848b ****/ + /****** Contap_SurfFunction::Derivatives ******/ + /****** md5 signature: 80ee5f16e62731c095910ad60228848b ******/ %feature("compactdefaultargs") Derivatives; %feature("autodoc", " Parameters @@ -2576,8 +2576,8 @@ The dimension of d is (1,2). ") Derivatives; Standard_Boolean Derivatives(const math_Vector & X, math_Matrix & D); - /****************** Direction ******************/ - /**** md5 signature: 6107c9113155a9ae9007c5c8e526a738 ****/ + /****** Contap_SurfFunction::Direction ******/ + /****** md5 signature: 6107c9113155a9ae9007c5c8e526a738 ******/ %feature("compactdefaultargs") Direction; %feature("autodoc", "Return ------- @@ -2589,8 +2589,8 @@ No available documentation. ") Direction; const gp_Dir Direction(); - /****************** Direction2d ******************/ - /**** md5 signature: e46e583c3b745511fb8654831bfa19d7 ****/ + /****** Contap_SurfFunction::Direction2d ******/ + /****** md5 signature: e46e583c3b745511fb8654831bfa19d7 ******/ %feature("compactdefaultargs") Direction2d; %feature("autodoc", "Return ------- @@ -2602,8 +2602,8 @@ No available documentation. ") Direction2d; const gp_Dir2d Direction2d(); - /****************** Direction3d ******************/ - /**** md5 signature: ceda05eba57d20f6f3ce262f42faf157 ****/ + /****** Contap_SurfFunction::Direction3d ******/ + /****** md5 signature: ceda05eba57d20f6f3ce262f42faf157 ******/ %feature("compactdefaultargs") Direction3d; %feature("autodoc", "Return ------- @@ -2615,8 +2615,8 @@ No available documentation. ") Direction3d; const gp_Vec Direction3d(); - /****************** Eye ******************/ - /**** md5 signature: aa99970f6e90715f8213e1ab0b8ace3e ****/ + /****** Contap_SurfFunction::Eye ******/ + /****** md5 signature: aa99970f6e90715f8213e1ab0b8ace3e ******/ %feature("compactdefaultargs") Eye; %feature("autodoc", "Return ------- @@ -2628,8 +2628,8 @@ No available documentation. ") Eye; const gp_Pnt Eye(); - /****************** FunctionType ******************/ - /**** md5 signature: be07ad13be6828eeadd86e0c10f87452 ****/ + /****** Contap_SurfFunction::FunctionType ******/ + /****** md5 signature: be07ad13be6828eeadd86e0c10f87452 ******/ %feature("compactdefaultargs") FunctionType; %feature("autodoc", "Return ------- @@ -2641,8 +2641,8 @@ No available documentation. ") FunctionType; Contap_TFunction FunctionType(); - /****************** IsTangent ******************/ - /**** md5 signature: 52337431677eb50512a9391c1db95a81 ****/ + /****** Contap_SurfFunction::IsTangent ******/ + /****** md5 signature: 52337431677eb50512a9391c1db95a81 ******/ %feature("compactdefaultargs") IsTangent; %feature("autodoc", "Return ------- @@ -2654,8 +2654,8 @@ No available documentation. ") IsTangent; Standard_Boolean IsTangent(); - /****************** NbEquations ******************/ - /**** md5 signature: 42be0dc2e32c8e563393e8490171707e ****/ + /****** Contap_SurfFunction::NbEquations ******/ + /****** md5 signature: 42be0dc2e32c8e563393e8490171707e ******/ %feature("compactdefaultargs") NbEquations; %feature("autodoc", "Return ------- @@ -2667,8 +2667,8 @@ This method has to return 1. ") NbEquations; Standard_Integer NbEquations(); - /****************** NbVariables ******************/ - /**** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ****/ + /****** Contap_SurfFunction::NbVariables ******/ + /****** md5 signature: a3de6b8a577fc113199e11b2b0bcdced ******/ %feature("compactdefaultargs") NbVariables; %feature("autodoc", "Return ------- @@ -2680,8 +2680,8 @@ This method has to return 2. ") NbVariables; Standard_Integer NbVariables(); - /****************** PSurface ******************/ - /**** md5 signature: e04a186cf5fc0c76577d479297dac08c ****/ + /****** Contap_SurfFunction::PSurface ******/ + /****** md5 signature: e04a186cf5fc0c76577d479297dac08c ******/ %feature("compactdefaultargs") PSurface; %feature("autodoc", "Return ------- @@ -2693,8 +2693,8 @@ Method is entered for compatibility with intpatch_thesurffunction. ") PSurface; const opencascade::handle & PSurface(); - /****************** Point ******************/ - /**** md5 signature: 177e376cc11d1fedb2819bac56591ea8 ****/ + /****** Contap_SurfFunction::Point ******/ + /****** md5 signature: 177e376cc11d1fedb2819bac56591ea8 ******/ %feature("compactdefaultargs") Point; %feature("autodoc", "Return ------- @@ -2706,8 +2706,8 @@ Returns the value of the solution point on the surface. ") Point; const gp_Pnt Point(); - /****************** Root ******************/ - /**** md5 signature: 1f1a437be6bd034392962de6cf04ded1 ****/ + /****** Contap_SurfFunction::Root ******/ + /****** md5 signature: 1f1a437be6bd034392962de6cf04ded1 ******/ %feature("compactdefaultargs") Root; %feature("autodoc", "Return ------- @@ -2719,8 +2719,8 @@ Root is the value of the function at the solution. it is a vector of dimension 1 ") Root; Standard_Real Root(); - /****************** Set ******************/ - /**** md5 signature: fe1f4e54b6d838c88f545f7975616591 ****/ + /****** Contap_SurfFunction::Set ******/ + /****** md5 signature: fe1f4e54b6d838c88f545f7975616591 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -2737,8 +2737,8 @@ No available documentation. ") Set; void Set(const opencascade::handle & S); - /****************** Set ******************/ - /**** md5 signature: 82e61fcbcd023e361c983ac9b10b051a ****/ + /****** Contap_SurfFunction::Set ******/ + /****** md5 signature: 82e61fcbcd023e361c983ac9b10b051a ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -2755,8 +2755,8 @@ No available documentation. ") Set; void Set(const gp_Pnt & Eye); - /****************** Set ******************/ - /**** md5 signature: 15b1468c79fc4757515151f835f2d3d0 ****/ + /****** Contap_SurfFunction::Set ******/ + /****** md5 signature: 15b1468c79fc4757515151f835f2d3d0 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -2773,8 +2773,8 @@ No available documentation. ") Set; void Set(const gp_Dir & Dir); - /****************** Set ******************/ - /**** md5 signature: a5b90781feaa7ec1e0840ad075ed12d1 ****/ + /****** Contap_SurfFunction::Set ******/ + /****** md5 signature: a5b90781feaa7ec1e0840ad075ed12d1 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -2792,8 +2792,8 @@ No available documentation. ") Set; void Set(const gp_Dir & Dir, const Standard_Real Angle); - /****************** Set ******************/ - /**** md5 signature: df4b9353625a35b43eacf0999ffe2b0e ****/ + /****** Contap_SurfFunction::Set ******/ + /****** md5 signature: df4b9353625a35b43eacf0999ffe2b0e ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -2811,8 +2811,8 @@ No available documentation. ") Set; void Set(const gp_Pnt & Eye, const Standard_Real Angle); - /****************** Set ******************/ - /**** md5 signature: 7e3e1092ebe5da1f71e965a1091893e3 ****/ + /****** Contap_SurfFunction::Set ******/ + /****** md5 signature: 7e3e1092ebe5da1f71e965a1091893e3 ******/ %feature("compactdefaultargs") Set; %feature("autodoc", " Parameters @@ -2829,8 +2829,8 @@ No available documentation. ") Set; void Set(const Standard_Real Tolerance); - /****************** Surface ******************/ - /**** md5 signature: d36dc8d293d03901e5a1cace2e167115 ****/ + /****** Contap_SurfFunction::Surface ******/ + /****** md5 signature: d36dc8d293d03901e5a1cace2e167115 ******/ %feature("compactdefaultargs") Surface; %feature("autodoc", "Return ------- @@ -2842,8 +2842,8 @@ No available documentation. ") Surface; const opencascade::handle & Surface(); - /****************** Tolerance ******************/ - /**** md5 signature: 9e5775014410d884d1a1adc1cd47930b ****/ + /****** Contap_SurfFunction::Tolerance ******/ + /****** md5 signature: 9e5775014410d884d1a1adc1cd47930b ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", "Return ------- @@ -2855,8 +2855,8 @@ Returns the value tol so that if abs(func.root()), and normal vector on at parameters u,v. ") DerivAndNorm; static void DerivAndNorm(const opencascade::handle & S, const Standard_Real U, const Standard_Real V, gp_Pnt & P, gp_Vec & d1u, gp_Vec & d1v, gp_Vec & N); - /****************** NormAndDn ******************/ - /**** md5 signature: 7ef18f7af52a8716166a07f9a349d010 ****/ + /****** Contap_SurfProps::NormAndDn ******/ + /****** md5 signature: 7ef18f7af52a8716166a07f9a349d010 ******/ %feature("compactdefaultargs") NormAndDn; %feature("autodoc", " Parameters @@ -2956,8 +2956,8 @@ Computes the point

, normal vector , and its derivatives and o ") NormAndDn; static void NormAndDn(const opencascade::handle & S, const Standard_Real U, const Standard_Real V, gp_Pnt & P, gp_Vec & N, gp_Vec & Dnu, gp_Vec & Dnv); - /****************** Normale ******************/ - /**** md5 signature: b3f97a0775cb34601ed9b104b4252c02 ****/ + /****** Contap_SurfProps::Normale ******/ + /****** md5 signature: b3f97a0775cb34601ed9b104b4252c02 ******/ %feature("compactdefaultargs") Normale; %feature("autodoc", " Parameters @@ -2992,8 +2992,8 @@ Computes the point

, and normal vector on at parameters u,v. **************************************/ class Contap_TheIWLineOfTheIWalking : public Standard_Transient { public: - /****************** Contap_TheIWLineOfTheIWalking ******************/ - /**** md5 signature: ab259db8b2077633153b44fa739f81e2 ****/ + /****** Contap_TheIWLineOfTheIWalking::Contap_TheIWLineOfTheIWalking ******/ + /****** md5 signature: ab259db8b2077633153b44fa739f81e2 ******/ %feature("compactdefaultargs") Contap_TheIWLineOfTheIWalking; %feature("autodoc", " Parameters @@ -3010,8 +3010,8 @@ No available documentation. ") Contap_TheIWLineOfTheIWalking; Contap_TheIWLineOfTheIWalking(const IntSurf_Allocator & theAllocator = 0); - /****************** AddIndexPassing ******************/ - /**** md5 signature: 5211f3a2dbfeb4744c3451bde1b6a45c ****/ + /****** Contap_TheIWLineOfTheIWalking::AddIndexPassing ******/ + /****** md5 signature: 5211f3a2dbfeb4744c3451bde1b6a45c ******/ %feature("compactdefaultargs") AddIndexPassing; %feature("autodoc", " Parameters @@ -3028,8 +3028,8 @@ Associer a l 'indice du point sur la ligne l'indice du point passant dans l'iter ") AddIndexPassing; void AddIndexPassing(const Standard_Integer Index); - /****************** AddPoint ******************/ - /**** md5 signature: 806b6da489848ff70e42ef52b8d76d5c ****/ + /****** Contap_TheIWLineOfTheIWalking::AddPoint ******/ + /****** md5 signature: 806b6da489848ff70e42ef52b8d76d5c ******/ %feature("compactdefaultargs") AddPoint; %feature("autodoc", " Parameters @@ -3046,8 +3046,8 @@ Add a point in the line. ") AddPoint; void AddPoint(const IntSurf_PntOn2S & P); - /****************** AddStatusFirst ******************/ - /**** md5 signature: 57c24fab44c44bc9f08fb80e64391777 ****/ + /****** Contap_TheIWLineOfTheIWalking::AddStatusFirst ******/ + /****** md5 signature: 57c24fab44c44bc9f08fb80e64391777 ******/ %feature("compactdefaultargs") AddStatusFirst; %feature("autodoc", " Parameters @@ -3065,8 +3065,8 @@ No available documentation. ") AddStatusFirst; void AddStatusFirst(const Standard_Boolean Closed, const Standard_Boolean HasFirst); - /****************** AddStatusFirst ******************/ - /**** md5 signature: 3bcc39dd9b427e47834d54029a984cdb ****/ + /****** Contap_TheIWLineOfTheIWalking::AddStatusFirst ******/ + /****** md5 signature: 3bcc39dd9b427e47834d54029a984cdb ******/ %feature("compactdefaultargs") AddStatusFirst; %feature("autodoc", " Parameters @@ -3086,8 +3086,8 @@ No available documentation. ") AddStatusFirst; void AddStatusFirst(const Standard_Boolean Closed, const Standard_Boolean HasLast, const Standard_Integer Index, const IntSurf_PathPoint & P); - /****************** AddStatusFirstLast ******************/ - /**** md5 signature: 9b5b9adcff3655cf97dda89c630e8677 ****/ + /****** Contap_TheIWLineOfTheIWalking::AddStatusFirstLast ******/ + /****** md5 signature: 9b5b9adcff3655cf97dda89c630e8677 ******/ %feature("compactdefaultargs") AddStatusFirstLast; %feature("autodoc", " Parameters @@ -3106,8 +3106,8 @@ No available documentation. ") AddStatusFirstLast; void AddStatusFirstLast(const Standard_Boolean Closed, const Standard_Boolean HasFirst, const Standard_Boolean HasLast); - /****************** AddStatusLast ******************/ - /**** md5 signature: 9df59b95ec4c6ad4a61e31770913147d ****/ + /****** Contap_TheIWLineOfTheIWalking::AddStatusLast ******/ + /****** md5 signature: 9df59b95ec4c6ad4a61e31770913147d ******/ %feature("compactdefaultargs") AddStatusLast; %feature("autodoc", " Parameters @@ -3124,8 +3124,8 @@ No available documentation. ") AddStatusLast; void AddStatusLast(const Standard_Boolean HasLast); - /****************** AddStatusLast ******************/ - /**** md5 signature: 9af95226c154f17c39d5609cdec7266e ****/ + /****** Contap_TheIWLineOfTheIWalking::AddStatusLast ******/ + /****** md5 signature: 9af95226c154f17c39d5609cdec7266e ******/ %feature("compactdefaultargs") AddStatusLast; %feature("autodoc", " Parameters @@ -3144,8 +3144,8 @@ No available documentation. ") AddStatusLast; void AddStatusLast(const Standard_Boolean HasLast, const Standard_Integer Index, const IntSurf_PathPoint & P); - /****************** Cut ******************/ - /**** md5 signature: f0e9f7dd0e1c0316cdc67bc759be51c9 ****/ + /****** Contap_TheIWLineOfTheIWalking::Cut ******/ + /****** md5 signature: f0e9f7dd0e1c0316cdc67bc759be51c9 ******/ %feature("compactdefaultargs") Cut; %feature("autodoc", " Parameters @@ -3162,8 +3162,8 @@ Cut the line at the point of rank index. ") Cut; void Cut(const Standard_Integer Index); - /****************** FirstPoint ******************/ - /**** md5 signature: e0c1dbe8c28165db2dbe2ecf721fcc02 ****/ + /****** Contap_TheIWLineOfTheIWalking::FirstPoint ******/ + /****** md5 signature: e0c1dbe8c28165db2dbe2ecf721fcc02 ******/ %feature("compactdefaultargs") FirstPoint; %feature("autodoc", "Return ------- @@ -3175,8 +3175,8 @@ Returns the first point of the line when it is a marching point. an exception is ") FirstPoint; const IntSurf_PathPoint & FirstPoint(); - /****************** FirstPointIndex ******************/ - /**** md5 signature: 286ccb2e16a94010c49f690b00f54ac3 ****/ + /****** Contap_TheIWLineOfTheIWalking::FirstPointIndex ******/ + /****** md5 signature: 286ccb2e16a94010c49f690b00f54ac3 ******/ %feature("compactdefaultargs") FirstPointIndex; %feature("autodoc", "Return ------- @@ -3188,8 +3188,8 @@ Returns the index of first point of the line when it is a marching point.this in ") FirstPointIndex; Standard_Integer FirstPointIndex(); - /****************** HasFirstPoint ******************/ - /**** md5 signature: 76549d304d78c4a9c8d3c420139524d3 ****/ + /****** Contap_TheIWLineOfTheIWalking::HasFirstPoint ******/ + /****** md5 signature: 76549d304d78c4a9c8d3c420139524d3 ******/ %feature("compactdefaultargs") HasFirstPoint; %feature("autodoc", "Return ------- @@ -3201,8 +3201,8 @@ Returns true if the first point of the line is a marching point . when is hasfir ") HasFirstPoint; Standard_Boolean HasFirstPoint(); - /****************** HasLastPoint ******************/ - /**** md5 signature: 66b261e1c2b182701ee59bfbc6bde915 ****/ + /****** Contap_TheIWLineOfTheIWalking::HasLastPoint ******/ + /****** md5 signature: 66b261e1c2b182701ee59bfbc6bde915 ******/ %feature("compactdefaultargs") HasLastPoint; %feature("autodoc", "Return ------- @@ -3214,8 +3214,8 @@ Returns true if the end point of the line is a marching point (point from intws) ") HasLastPoint; Standard_Boolean HasLastPoint(); - /****************** IsClosed ******************/ - /**** md5 signature: 29709d02fadc9fcb79a766bc9679271b ****/ + /****** Contap_TheIWLineOfTheIWalking::IsClosed ******/ + /****** md5 signature: 29709d02fadc9fcb79a766bc9679271b ******/ %feature("compactdefaultargs") IsClosed; %feature("autodoc", "Return ------- @@ -3227,8 +3227,8 @@ Returns true if the line is closed. ") IsClosed; Standard_Boolean IsClosed(); - /****************** IsTangentAtBegining ******************/ - /**** md5 signature: a56d1f9469c98eadc8b6f319bc216c7b ****/ + /****** Contap_TheIWLineOfTheIWalking::IsTangentAtBegining ******/ + /****** md5 signature: a56d1f9469c98eadc8b6f319bc216c7b ******/ %feature("compactdefaultargs") IsTangentAtBegining; %feature("autodoc", "Return ------- @@ -3240,8 +3240,8 @@ No available documentation. ") IsTangentAtBegining; Standard_Boolean IsTangentAtBegining(); - /****************** IsTangentAtEnd ******************/ - /**** md5 signature: 105311500b205bba41fd4ab317165070 ****/ + /****** Contap_TheIWLineOfTheIWalking::IsTangentAtEnd ******/ + /****** md5 signature: 105311500b205bba41fd4ab317165070 ******/ %feature("compactdefaultargs") IsTangentAtEnd; %feature("autodoc", "Return ------- @@ -3253,8 +3253,8 @@ No available documentation. ") IsTangentAtEnd; Standard_Boolean IsTangentAtEnd(); - /****************** LastPoint ******************/ - /**** md5 signature: 7876841b5cf564c633cdd87a1ac1e722 ****/ + /****** Contap_TheIWLineOfTheIWalking::LastPoint ******/ + /****** md5 signature: 7876841b5cf564c633cdd87a1ac1e722 ******/ %feature("compactdefaultargs") LastPoint; %feature("autodoc", "Return ------- @@ -3266,8 +3266,8 @@ Returns the last point of the line when it is a marching point. an exception is ") LastPoint; const IntSurf_PathPoint & LastPoint(); - /****************** LastPointIndex ******************/ - /**** md5 signature: 03702a2b3ccf8f424cd597daef257efb ****/ + /****** Contap_TheIWLineOfTheIWalking::LastPointIndex ******/ + /****** md5 signature: 03702a2b3ccf8f424cd597daef257efb ******/ %feature("compactdefaultargs") LastPointIndex; %feature("autodoc", "Return ------- @@ -3279,8 +3279,8 @@ Returns the index of last point of the line when it is a marching point.this ind ") LastPointIndex; Standard_Integer LastPointIndex(); - /****************** Line ******************/ - /**** md5 signature: d5c2cd917d9e773fdb8b23c68d6a1fdc ****/ + /****** Contap_TheIWLineOfTheIWalking::Line ******/ + /****** md5 signature: d5c2cd917d9e773fdb8b23c68d6a1fdc ******/ %feature("compactdefaultargs") Line; %feature("autodoc", "Return ------- @@ -3292,8 +3292,8 @@ Returns the lineon2s contained in the walking line. ") Line; const opencascade::handle & Line(); - /****************** NbPassingPoint ******************/ - /**** md5 signature: d0f6265bbd27e7d9360e0b1105cff054 ****/ + /****** Contap_TheIWLineOfTheIWalking::NbPassingPoint ******/ + /****** md5 signature: d0f6265bbd27e7d9360e0b1105cff054 ******/ %feature("compactdefaultargs") NbPassingPoint; %feature("autodoc", "Return ------- @@ -3305,8 +3305,8 @@ Returns the number of points belonging to pnts1 which are passing point. ") NbPassingPoint; Standard_Integer NbPassingPoint(); - /****************** NbPoints ******************/ - /**** md5 signature: 1d4bbbd7c4dda4f1e56c00ae994bedbe ****/ + /****** Contap_TheIWLineOfTheIWalking::NbPoints ******/ + /****** md5 signature: 1d4bbbd7c4dda4f1e56c00ae994bedbe ******/ %feature("compactdefaultargs") NbPoints; %feature("autodoc", "Return ------- @@ -3318,8 +3318,8 @@ Returns the number of points of the line (including first point and end point: s ") NbPoints; Standard_Integer NbPoints(); - /****************** PassingPoint ******************/ - /**** md5 signature: 1ecf07ef770669b4329e847aa98917ae ****/ + /****** Contap_TheIWLineOfTheIWalking::PassingPoint ******/ + /****** md5 signature: 1ecf07ef770669b4329e847aa98917ae ******/ %feature("compactdefaultargs") PassingPoint; %feature("autodoc", " Parameters @@ -3337,8 +3337,8 @@ Returns the index of the point belonging to the line which is associated to the ") PassingPoint; void PassingPoint(const Standard_Integer Index, Standard_Integer &OutValue, Standard_Integer &OutValue); - /****************** Reverse ******************/ - /**** md5 signature: b751d6874fc026e19a7a6cb37e9ac1b4 ****/ + /****** Contap_TheIWLineOfTheIWalking::Reverse ******/ + /****** md5 signature: b751d6874fc026e19a7a6cb37e9ac1b4 ******/ %feature("compactdefaultargs") Reverse; %feature("autodoc", "Return ------- @@ -3350,8 +3350,8 @@ Reverse the points in the line. hasfirst, haslast are kept. ") Reverse; void Reverse(); - /****************** SetTangencyAtBegining ******************/ - /**** md5 signature: ea533706f2c44ba6eebb50b37aa11bce ****/ + /****** Contap_TheIWLineOfTheIWalking::SetTangencyAtBegining ******/ + /****** md5 signature: ea533706f2c44ba6eebb50b37aa11bce ******/ %feature("compactdefaultargs") SetTangencyAtBegining; %feature("autodoc", " Parameters @@ -3368,8 +3368,8 @@ No available documentation. ") SetTangencyAtBegining; void SetTangencyAtBegining(const Standard_Boolean IsTangent); - /****************** SetTangencyAtEnd ******************/ - /**** md5 signature: e69c7af21e7cb5c30f8431e2a8de655b ****/ + /****** Contap_TheIWLineOfTheIWalking::SetTangencyAtEnd ******/ + /****** md5 signature: e69c7af21e7cb5c30f8431e2a8de655b ******/ %feature("compactdefaultargs") SetTangencyAtEnd; %feature("autodoc", " Parameters @@ -3386,8 +3386,8 @@ No available documentation. ") SetTangencyAtEnd; void SetTangencyAtEnd(const Standard_Boolean IsTangent); - /****************** SetTangentVector ******************/ - /**** md5 signature: 0e32ea065ed79437c3090e852108262e ****/ + /****** Contap_TheIWLineOfTheIWalking::SetTangentVector ******/ + /****** md5 signature: 0e32ea065ed79437c3090e852108262e ******/ %feature("compactdefaultargs") SetTangentVector; %feature("autodoc", " Parameters @@ -3405,8 +3405,8 @@ No available documentation. ") SetTangentVector; void SetTangentVector(const gp_Vec & V, const Standard_Integer Index); - /****************** TangentVector ******************/ - /**** md5 signature: e2d9d7aae22a66c0f8d3bfaf92d891c0 ****/ + /****** Contap_TheIWLineOfTheIWalking::TangentVector ******/ + /****** md5 signature: e2d9d7aae22a66c0f8d3bfaf92d891c0 ******/ %feature("compactdefaultargs") TangentVector; %feature("autodoc", " Parameters @@ -3422,8 +3422,8 @@ No available documentation. ") TangentVector; const gp_Vec TangentVector(Standard_Integer &OutValue); - /****************** Value ******************/ - /**** md5 signature: 8dd9e41f579d9d6e26d29bbd4f60e2b9 ****/ + /****** Contap_TheIWLineOfTheIWalking::Value ******/ + /****** md5 signature: 8dd9e41f579d9d6e26d29bbd4f60e2b9 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -3456,8 +3456,8 @@ Returns the point of range index. if index <= 0 or index > nbpoints, an exceptio ***************************/ class Contap_TheIWalking { public: - /****************** Contap_TheIWalking ******************/ - /**** md5 signature: 4f71e64347c62202a5b4b03cbe630737 ****/ + /****** Contap_TheIWalking::Contap_TheIWalking ******/ + /****** md5 signature: 4f71e64347c62202a5b4b03cbe630737 ******/ %feature("compactdefaultargs") Contap_TheIWalking; %feature("autodoc", " Parameters @@ -3477,8 +3477,8 @@ Deflection is the maximum deflection admitted between two consecutive points on ") Contap_TheIWalking; Contap_TheIWalking(const Standard_Real Epsilon, const Standard_Real Deflection, const Standard_Real Step, const Standard_Boolean theToFillHoles = Standard_False); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** Contap_TheIWalking::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -3490,8 +3490,8 @@ Returns true if the calculus was successful. ") IsDone; Standard_Boolean IsDone(); - /****************** NbLines ******************/ - /**** md5 signature: 4f8001fdc02f82f8f981f090a37ac7d4 ****/ + /****** Contap_TheIWalking::NbLines ******/ + /****** md5 signature: 4f8001fdc02f82f8f981f090a37ac7d4 ******/ %feature("compactdefaultargs") NbLines; %feature("autodoc", "Return ------- @@ -3503,8 +3503,8 @@ Returns the number of resulting polylines. an exception is raised if isdone retu ") NbLines; Standard_Integer NbLines(); - /****************** NbSinglePnts ******************/ - /**** md5 signature: 8a33644475ee84e2750fa4624ebcf8c0 ****/ + /****** Contap_TheIWalking::NbSinglePnts ******/ + /****** md5 signature: 8a33644475ee84e2750fa4624ebcf8c0 ******/ %feature("compactdefaultargs") NbSinglePnts; %feature("autodoc", "Return ------- @@ -3516,8 +3516,8 @@ Returns the number of points belonging to pnts on which no line starts or ends. ") NbSinglePnts; Standard_Integer NbSinglePnts(); - /****************** Perform ******************/ - /**** md5 signature: 6ee1d46056a60420bd507e5e36581550 ****/ + /****** Contap_TheIWalking::Perform ******/ + /****** md5 signature: 6ee1d46056a60420bd507e5e36581550 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -3538,8 +3538,8 @@ Searches a set of polylines starting on a point of pnts1 or pnts2. each point on ") Perform; void Perform(const IntSurf_SequenceOfPathPoint & Pnts1, const IntSurf_SequenceOfInteriorPoint & Pnts2, Contap_SurfFunction & Func, const opencascade::handle & S, const Standard_Boolean Reversed = Standard_False); - /****************** Perform ******************/ - /**** md5 signature: 93b19c25eeba3691dea16acebbbf8ef7 ****/ + /****** Contap_TheIWalking::Perform ******/ + /****** md5 signature: 93b19c25eeba3691dea16acebbbf8ef7 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -3559,8 +3559,8 @@ Searches a set of polylines starting on a point of pnts1. each point on a result ") Perform; void Perform(const IntSurf_SequenceOfPathPoint & Pnts1, Contap_SurfFunction & Func, const opencascade::handle & S, const Standard_Boolean Reversed = Standard_False); - /****************** SetTolerance ******************/ - /**** md5 signature: 081b0efb39976d786ea1e8e9992511b4 ****/ + /****** Contap_TheIWalking::SetTolerance ******/ + /****** md5 signature: 081b0efb39976d786ea1e8e9992511b4 ******/ %feature("compactdefaultargs") SetTolerance; %feature("autodoc", " Parameters @@ -3579,8 +3579,8 @@ Deflection is the maximum deflection admitted between two consecutive points on ") SetTolerance; void SetTolerance(const Standard_Real Epsilon, const Standard_Real Deflection, const Standard_Real Step); - /****************** SinglePnt ******************/ - /**** md5 signature: 6dd92e40051e4e916aa83e976db4a997 ****/ + /****** Contap_TheIWalking::SinglePnt ******/ + /****** md5 signature: 6dd92e40051e4e916aa83e976db4a997 ******/ %feature("compactdefaultargs") SinglePnt; %feature("autodoc", " Parameters @@ -3597,8 +3597,8 @@ Returns the point of range index . an exception is raised if isdone returns fals ") SinglePnt; const IntSurf_PathPoint & SinglePnt(const Standard_Integer Index); - /****************** Value ******************/ - /**** md5 signature: 71e95ff141784c73dc31a05edff86b0b ****/ + /****** Contap_TheIWalking::Value ******/ + /****** md5 signature: 71e95ff141784c73dc31a05edff86b0b ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -3629,8 +3629,8 @@ Returns the polyline of range index. an exception is raised if isdone is false. ***************************************/ class Contap_ThePathPointOfTheSearch { public: - /****************** Contap_ThePathPointOfTheSearch ******************/ - /**** md5 signature: 5503b331f6af653d85c09254453a08e7 ****/ + /****** Contap_ThePathPointOfTheSearch::Contap_ThePathPointOfTheSearch ******/ + /****** md5 signature: 5503b331f6af653d85c09254453a08e7 ******/ %feature("compactdefaultargs") Contap_ThePathPointOfTheSearch; %feature("autodoc", "Return ------- @@ -3642,8 +3642,8 @@ No available documentation. ") Contap_ThePathPointOfTheSearch; Contap_ThePathPointOfTheSearch(); - /****************** Contap_ThePathPointOfTheSearch ******************/ - /**** md5 signature: 84947d4a9220cf3839150816fa8ebebf ****/ + /****** Contap_ThePathPointOfTheSearch::Contap_ThePathPointOfTheSearch ******/ + /****** md5 signature: 84947d4a9220cf3839150816fa8ebebf ******/ %feature("compactdefaultargs") Contap_ThePathPointOfTheSearch; %feature("autodoc", " Parameters @@ -3664,8 +3664,8 @@ No available documentation. ") Contap_ThePathPointOfTheSearch; Contap_ThePathPointOfTheSearch(const gp_Pnt & P, const Standard_Real Tol, const opencascade::handle & V, const opencascade::handle & A, const Standard_Real Parameter); - /****************** Contap_ThePathPointOfTheSearch ******************/ - /**** md5 signature: 131c6fd3d17dfa54a07c3c9a5ab67447 ****/ + /****** Contap_ThePathPointOfTheSearch::Contap_ThePathPointOfTheSearch ******/ + /****** md5 signature: 131c6fd3d17dfa54a07c3c9a5ab67447 ******/ %feature("compactdefaultargs") Contap_ThePathPointOfTheSearch; %feature("autodoc", " Parameters @@ -3685,8 +3685,8 @@ No available documentation. ") Contap_ThePathPointOfTheSearch; Contap_ThePathPointOfTheSearch(const gp_Pnt & P, const Standard_Real Tol, const opencascade::handle & A, const Standard_Real Parameter); - /****************** Arc ******************/ - /**** md5 signature: de8e47510fc50811ee5a3e0bc98029e6 ****/ + /****** Contap_ThePathPointOfTheSearch::Arc ******/ + /****** md5 signature: de8e47510fc50811ee5a3e0bc98029e6 ******/ %feature("compactdefaultargs") Arc; %feature("autodoc", "Return ------- @@ -3698,8 +3698,8 @@ No available documentation. ") Arc; const opencascade::handle & Arc(); - /****************** IsNew ******************/ - /**** md5 signature: 3a3a8bc6ebd2fc2c25f224ff9e99af70 ****/ + /****** Contap_ThePathPointOfTheSearch::IsNew ******/ + /****** md5 signature: 3a3a8bc6ebd2fc2c25f224ff9e99af70 ******/ %feature("compactdefaultargs") IsNew; %feature("autodoc", "Return ------- @@ -3711,8 +3711,8 @@ No available documentation. ") IsNew; Standard_Boolean IsNew(); - /****************** Parameter ******************/ - /**** md5 signature: ecccdeaeaa0deed24f47e61ad75d24f1 ****/ + /****** Contap_ThePathPointOfTheSearch::Parameter ******/ + /****** md5 signature: ecccdeaeaa0deed24f47e61ad75d24f1 ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", "Return ------- @@ -3724,8 +3724,8 @@ No available documentation. ") Parameter; Standard_Real Parameter(); - /****************** SetValue ******************/ - /**** md5 signature: 03dce41028774d848e3e96d2ef0ca499 ****/ + /****** Contap_ThePathPointOfTheSearch::SetValue ******/ + /****** md5 signature: 03dce41028774d848e3e96d2ef0ca499 ******/ %feature("compactdefaultargs") SetValue; %feature("autodoc", " Parameters @@ -3746,8 +3746,8 @@ No available documentation. ") SetValue; void SetValue(const gp_Pnt & P, const Standard_Real Tol, const opencascade::handle & V, const opencascade::handle & A, const Standard_Real Parameter); - /****************** SetValue ******************/ - /**** md5 signature: a4bb4cd1b8bb6bbe4fb31de340a9931c ****/ + /****** Contap_ThePathPointOfTheSearch::SetValue ******/ + /****** md5 signature: a4bb4cd1b8bb6bbe4fb31de340a9931c ******/ %feature("compactdefaultargs") SetValue; %feature("autodoc", " Parameters @@ -3767,8 +3767,8 @@ No available documentation. ") SetValue; void SetValue(const gp_Pnt & P, const Standard_Real Tol, const opencascade::handle & A, const Standard_Real Parameter); - /****************** Tolerance ******************/ - /**** md5 signature: 9e5775014410d884d1a1adc1cd47930b ****/ + /****** Contap_ThePathPointOfTheSearch::Tolerance ******/ + /****** md5 signature: 9e5775014410d884d1a1adc1cd47930b ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", "Return ------- @@ -3780,8 +3780,8 @@ No available documentation. ") Tolerance; Standard_Real Tolerance(); - /****************** Value ******************/ - /**** md5 signature: eddd2908948849b73f6d8aacab318652 ****/ + /****** Contap_ThePathPointOfTheSearch::Value ******/ + /****** md5 signature: eddd2908948849b73f6d8aacab318652 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", "Return ------- @@ -3793,8 +3793,8 @@ No available documentation. ") Value; const gp_Pnt Value(); - /****************** Vertex ******************/ - /**** md5 signature: 7213fb18dc3be1f48818ab739bb98dfa ****/ + /****** Contap_ThePathPointOfTheSearch::Vertex ******/ + /****** md5 signature: 7213fb18dc3be1f48818ab739bb98dfa ******/ %feature("compactdefaultargs") Vertex; %feature("autodoc", "Return ------- @@ -3820,8 +3820,8 @@ No available documentation. *************************/ class Contap_TheSearch { public: - /****************** Contap_TheSearch ******************/ - /**** md5 signature: a7b004399382c1df1c7a307ba64b5fcc ****/ + /****** Contap_TheSearch::Contap_TheSearch ******/ + /****** md5 signature: a7b004399382c1df1c7a307ba64b5fcc ******/ %feature("compactdefaultargs") Contap_TheSearch; %feature("autodoc", "Return ------- @@ -3833,8 +3833,8 @@ Empty constructor. ") Contap_TheSearch; Contap_TheSearch(); - /****************** AllArcSolution ******************/ - /**** md5 signature: fd074d16584452fef4f16b506eae3de1 ****/ + /****** Contap_TheSearch::AllArcSolution ******/ + /****** md5 signature: fd074d16584452fef4f16b506eae3de1 ******/ %feature("compactdefaultargs") AllArcSolution; %feature("autodoc", "Return ------- @@ -3846,8 +3846,8 @@ Returns true if all arc of the arcs are solution (inside the surface). an except ") AllArcSolution; Standard_Boolean AllArcSolution(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** Contap_TheSearch::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -3859,8 +3859,8 @@ Returns true if the calculus was successful. ") IsDone; Standard_Boolean IsDone(); - /****************** NbPoints ******************/ - /**** md5 signature: 1d4bbbd7c4dda4f1e56c00ae994bedbe ****/ + /****** Contap_TheSearch::NbPoints ******/ + /****** md5 signature: 1d4bbbd7c4dda4f1e56c00ae994bedbe ******/ %feature("compactdefaultargs") NbPoints; %feature("autodoc", "Return ------- @@ -3872,8 +3872,8 @@ Returns the number of resulting points. an exception is raised if isdone returns ") NbPoints; Standard_Integer NbPoints(); - /****************** NbSegments ******************/ - /**** md5 signature: 6791e2039921b3bb6b2ff0f8e741d76b ****/ + /****** Contap_TheSearch::NbSegments ******/ + /****** md5 signature: 6791e2039921b3bb6b2ff0f8e741d76b ******/ %feature("compactdefaultargs") NbSegments; %feature("autodoc", "Return ------- @@ -3885,8 +3885,8 @@ Returns the number of the resulting segments. an exception is raised if isdone r ") NbSegments; Standard_Integer NbSegments(); - /****************** Perform ******************/ - /**** md5 signature: bd400ef409e0f615858d49e533cc7623 ****/ + /****** Contap_TheSearch::Perform ******/ + /****** md5 signature: bd400ef409e0f615858d49e533cc7623 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -3907,8 +3907,8 @@ Algorithm to find the points and parts of curves of domain (domain of of restric ") Perform; void Perform(Contap_ArcFunction & F, const opencascade::handle & Domain, const Standard_Real TolBoundary, const Standard_Real TolTangency, const Standard_Boolean RecheckOnRegularity = Standard_False); - /****************** Point ******************/ - /**** md5 signature: 42cacb4a4712c4ca6505f55590e76eeb ****/ + /****** Contap_TheSearch::Point ******/ + /****** md5 signature: 42cacb4a4712c4ca6505f55590e76eeb ******/ %feature("compactdefaultargs") Point; %feature("autodoc", " Parameters @@ -3925,8 +3925,8 @@ Returns the resulting point of range index. the exception notdone is raised if i ") Point; const Contap_ThePathPointOfTheSearch & Point(const Standard_Integer Index); - /****************** Segment ******************/ - /**** md5 signature: 63b49e816a04d69ef4920a463a3974dc ****/ + /****** Contap_TheSearch::Segment ******/ + /****** md5 signature: 63b49e816a04d69ef4920a463a3974dc ******/ %feature("compactdefaultargs") Segment; %feature("autodoc", " Parameters @@ -3957,8 +3957,8 @@ Returns the resulting segment of range index. the exception notdone is raised if *******************************/ class Contap_TheSearchInside { public: - /****************** Contap_TheSearchInside ******************/ - /**** md5 signature: 9b83ea07cc6d12c653098cd9fa891ec3 ****/ + /****** Contap_TheSearchInside::Contap_TheSearchInside ******/ + /****** md5 signature: 9b83ea07cc6d12c653098cd9fa891ec3 ******/ %feature("compactdefaultargs") Contap_TheSearchInside; %feature("autodoc", "Return ------- @@ -3970,8 +3970,8 @@ No available documentation. ") Contap_TheSearchInside; Contap_TheSearchInside(); - /****************** Contap_TheSearchInside ******************/ - /**** md5 signature: be026f64fb11d6b5faa1920177122e51 ****/ + /****** Contap_TheSearchInside::Contap_TheSearchInside ******/ + /****** md5 signature: be026f64fb11d6b5faa1920177122e51 ******/ %feature("compactdefaultargs") Contap_TheSearchInside; %feature("autodoc", " Parameters @@ -3991,8 +3991,8 @@ No available documentation. ") Contap_TheSearchInside; Contap_TheSearchInside(Contap_SurfFunction & F, const opencascade::handle & Surf, const opencascade::handle & T, const Standard_Real Epsilon); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** Contap_TheSearchInside::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -4004,8 +4004,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** NbPoints ******************/ - /**** md5 signature: 1d4bbbd7c4dda4f1e56c00ae994bedbe ****/ + /****** Contap_TheSearchInside::NbPoints ******/ + /****** md5 signature: 1d4bbbd7c4dda4f1e56c00ae994bedbe ******/ %feature("compactdefaultargs") NbPoints; %feature("autodoc", "Return ------- @@ -4017,8 +4017,8 @@ Returns the number of points. the exception notdone if raised if isdone returns ") NbPoints; Standard_Integer NbPoints(); - /****************** Perform ******************/ - /**** md5 signature: e2775fe4590ca17de96cf8a00b01ec25 ****/ + /****** Contap_TheSearchInside::Perform ******/ + /****** md5 signature: e2775fe4590ca17de96cf8a00b01ec25 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -4038,8 +4038,8 @@ No available documentation. ") Perform; void Perform(Contap_SurfFunction & F, const opencascade::handle & Surf, const opencascade::handle & T, const Standard_Real Epsilon); - /****************** Perform ******************/ - /**** md5 signature: 50494323939fb97c348431e61a02fda6 ****/ + /****** Contap_TheSearchInside::Perform ******/ + /****** md5 signature: 50494323939fb97c348431e61a02fda6 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -4059,8 +4059,8 @@ No available documentation. ") Perform; void Perform(Contap_SurfFunction & F, const opencascade::handle & Surf, const Standard_Real UStart, const Standard_Real VStart); - /****************** Value ******************/ - /**** md5 signature: 32b603bd5d3112334230c3e7fbb789a7 ****/ + /****** Contap_TheSearchInside::Value ******/ + /****** md5 signature: 32b603bd5d3112334230c3e7fbb789a7 ******/ %feature("compactdefaultargs") Value; %feature("autodoc", " Parameters @@ -4091,8 +4091,8 @@ Returns the point of range index. the exception notdone if raised if isdone retu *************************************/ class Contap_TheSegmentOfTheSearch { public: - /****************** Contap_TheSegmentOfTheSearch ******************/ - /**** md5 signature: 1d285dd74c990245cf5f590658f7423b ****/ + /****** Contap_TheSegmentOfTheSearch::Contap_TheSegmentOfTheSearch ******/ + /****** md5 signature: 1d285dd74c990245cf5f590658f7423b ******/ %feature("compactdefaultargs") Contap_TheSegmentOfTheSearch; %feature("autodoc", "Return ------- @@ -4104,8 +4104,8 @@ Empty constructor. ") Contap_TheSegmentOfTheSearch; Contap_TheSegmentOfTheSearch(); - /****************** Curve ******************/ - /**** md5 signature: 7869036a594a0e406162d60b4f92dc85 ****/ + /****** Contap_TheSegmentOfTheSearch::Curve ******/ + /****** md5 signature: 7869036a594a0e406162d60b4f92dc85 ******/ %feature("compactdefaultargs") Curve; %feature("autodoc", "Return ------- @@ -4117,8 +4117,8 @@ Returns the geometric curve on the surface 's domain which is solution. ") Curve; const opencascade::handle & Curve(); - /****************** FirstPoint ******************/ - /**** md5 signature: e40c5283a03725d6ebc8922755a1d1ca ****/ + /****** Contap_TheSegmentOfTheSearch::FirstPoint ******/ + /****** md5 signature: e40c5283a03725d6ebc8922755a1d1ca ******/ %feature("compactdefaultargs") FirstPoint; %feature("autodoc", "Return ------- @@ -4130,8 +4130,8 @@ Returns the first point. ") FirstPoint; const Contap_ThePathPointOfTheSearch & FirstPoint(); - /****************** HasFirstPoint ******************/ - /**** md5 signature: 76549d304d78c4a9c8d3c420139524d3 ****/ + /****** Contap_TheSegmentOfTheSearch::HasFirstPoint ******/ + /****** md5 signature: 76549d304d78c4a9c8d3c420139524d3 ******/ %feature("compactdefaultargs") HasFirstPoint; %feature("autodoc", "Return ------- @@ -4143,8 +4143,8 @@ Returns true if there is a vertex (thepathpoint) defining the lowest valid param ") HasFirstPoint; Standard_Boolean HasFirstPoint(); - /****************** HasLastPoint ******************/ - /**** md5 signature: 66b261e1c2b182701ee59bfbc6bde915 ****/ + /****** Contap_TheSegmentOfTheSearch::HasLastPoint ******/ + /****** md5 signature: 66b261e1c2b182701ee59bfbc6bde915 ******/ %feature("compactdefaultargs") HasLastPoint; %feature("autodoc", "Return ------- @@ -4156,8 +4156,8 @@ Returns true if there is a vertex (thepathpoint) defining the greatest valid par ") HasLastPoint; Standard_Boolean HasLastPoint(); - /****************** LastPoint ******************/ - /**** md5 signature: 7278121f151ef35144b484648f11d70b ****/ + /****** Contap_TheSegmentOfTheSearch::LastPoint ******/ + /****** md5 signature: 7278121f151ef35144b484648f11d70b ******/ %feature("compactdefaultargs") LastPoint; %feature("autodoc", "Return ------- @@ -4169,8 +4169,8 @@ Returns the last point. ") LastPoint; const Contap_ThePathPointOfTheSearch & LastPoint(); - /****************** SetLimitPoint ******************/ - /**** md5 signature: 652ce8c8bcf5a5337b319397afec1f06 ****/ + /****** Contap_TheSegmentOfTheSearch::SetLimitPoint ******/ + /****** md5 signature: 652ce8c8bcf5a5337b319397afec1f06 ******/ %feature("compactdefaultargs") SetLimitPoint; %feature("autodoc", " Parameters @@ -4188,8 +4188,8 @@ Defines the first point or the last point, depending on the value of the boolean ") SetLimitPoint; void SetLimitPoint(const Contap_ThePathPointOfTheSearch & V, const Standard_Boolean First); - /****************** SetValue ******************/ - /**** md5 signature: 53ce9238106071febf6db57a0ff8a99c ****/ + /****** Contap_TheSegmentOfTheSearch::SetValue ******/ + /****** md5 signature: 53ce9238106071febf6db57a0ff8a99c ******/ %feature("compactdefaultargs") SetValue; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/Convert.i b/src/SWIG_files/wrapper/Convert.i index dc44861a1..d1f42f90d 100644 --- a/src/SWIG_files/wrapper/Convert.i +++ b/src/SWIG_files/wrapper/Convert.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define CONVERTDOCSTRING "Convert module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_convert.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_convert.html" %enddef %module (package="OCC.Core", docstring=CONVERTDOCSTRING) Convert @@ -125,8 +125,8 @@ typedef TColgp_SequenceOfArray1OfPnt2d Convert_SequenceOfArray1OfPoles2d; ***************************************************/ class Convert_CompBezierCurves2dToBSplineCurve2d { public: - /****************** Convert_CompBezierCurves2dToBSplineCurve2d ******************/ - /**** md5 signature: c4cb0ce36704d61d9beb20d5c2f63d01 ****/ + /****** Convert_CompBezierCurves2dToBSplineCurve2d::Convert_CompBezierCurves2dToBSplineCurve2d ******/ + /****** md5 signature: c4cb0ce36704d61d9beb20d5c2f63d01 ******/ %feature("compactdefaultargs") Convert_CompBezierCurves2dToBSplineCurve2d; %feature("autodoc", " Parameters @@ -143,8 +143,8 @@ Constructs a framework for converting a sequence of adjacent non-rational bezier ") Convert_CompBezierCurves2dToBSplineCurve2d; Convert_CompBezierCurves2dToBSplineCurve2d(const Standard_Real AngularTolerance = 1.0e-4); - /****************** AddCurve ******************/ - /**** md5 signature: 0feacd0dc6d81d7f4b85c1af937b5233 ****/ + /****** Convert_CompBezierCurves2dToBSplineCurve2d::AddCurve ******/ + /****** md5 signature: 0feacd0dc6d81d7f4b85c1af937b5233 ******/ %feature("compactdefaultargs") AddCurve; %feature("autodoc", " Parameters @@ -161,8 +161,8 @@ Adds the bezier curve defined by the table of poles poles, to the sequence (stil ") AddCurve; void AddCurve(const TColgp_Array1OfPnt2d & Poles); - /****************** Degree ******************/ - /**** md5 signature: e3276df1ce733e2c8e940db548a26d03 ****/ + /****** Convert_CompBezierCurves2dToBSplineCurve2d::Degree ******/ + /****** md5 signature: e3276df1ce733e2c8e940db548a26d03 ******/ %feature("compactdefaultargs") Degree; %feature("autodoc", "Return ------- @@ -174,8 +174,8 @@ Returns the degree of the bspline curve whose data is computed in this framework ") Degree; Standard_Integer Degree(); - /****************** KnotsAndMults ******************/ - /**** md5 signature: 19787aa39b0400d3a08b5785b90459e8 ****/ + /****** Convert_CompBezierCurves2dToBSplineCurve2d::KnotsAndMults ******/ + /****** md5 signature: 19787aa39b0400d3a08b5785b90459e8 ******/ %feature("compactdefaultargs") KnotsAndMults; %feature("autodoc", " Parameters @@ -193,8 +193,8 @@ Loads the knots table with the knots and the mults table with the corresponding ") KnotsAndMults; void KnotsAndMults(TColStd_Array1OfReal & Knots, TColStd_Array1OfInteger & Mults); - /****************** NbKnots ******************/ - /**** md5 signature: ccda669299f8eba1ba0d3387af4c950e ****/ + /****** Convert_CompBezierCurves2dToBSplineCurve2d::NbKnots ******/ + /****** md5 signature: ccda669299f8eba1ba0d3387af4c950e ******/ %feature("compactdefaultargs") NbKnots; %feature("autodoc", "Return ------- @@ -206,8 +206,8 @@ Returns the number of knots of the bspline curve whose data is computed in this ") NbKnots; Standard_Integer NbKnots(); - /****************** NbPoles ******************/ - /**** md5 signature: 9a7d6d5f8a21c5833786e951bce99604 ****/ + /****** Convert_CompBezierCurves2dToBSplineCurve2d::NbPoles ******/ + /****** md5 signature: 9a7d6d5f8a21c5833786e951bce99604 ******/ %feature("compactdefaultargs") NbPoles; %feature("autodoc", "Return ------- @@ -219,8 +219,8 @@ Returns the number of poles of the bspline curve whose data is computed in this ") NbPoles; Standard_Integer NbPoles(); - /****************** Perform ******************/ - /**** md5 signature: c04b01412cba7220c024b5eb4532697f ****/ + /****** Convert_CompBezierCurves2dToBSplineCurve2d::Perform ******/ + /****** md5 signature: c04b01412cba7220c024b5eb4532697f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", "Return ------- @@ -232,8 +232,8 @@ Computes all the data needed to build a bspline curve equivalent to the sequence ") Perform; void Perform(); - /****************** Poles ******************/ - /**** md5 signature: e0f05ca95d0265dffb43e3a1c5806664 ****/ + /****** Convert_CompBezierCurves2dToBSplineCurve2d::Poles ******/ + /****** md5 signature: e0f05ca95d0265dffb43e3a1c5806664 ******/ %feature("compactdefaultargs") Poles; %feature("autodoc", " Parameters @@ -264,8 +264,8 @@ Loads the poles table with the poles of the bspline curve whose data is computed ***********************************************/ class Convert_CompBezierCurvesToBSplineCurve { public: - /****************** Convert_CompBezierCurvesToBSplineCurve ******************/ - /**** md5 signature: dd8780df5cd999b8ccbcf0298accf006 ****/ + /****** Convert_CompBezierCurvesToBSplineCurve::Convert_CompBezierCurvesToBSplineCurve ******/ + /****** md5 signature: dd8780df5cd999b8ccbcf0298accf006 ******/ %feature("compactdefaultargs") Convert_CompBezierCurvesToBSplineCurve; %feature("autodoc", " Parameters @@ -282,8 +282,8 @@ Constructs a framework for converting a sequence of adjacent non-rational bezier ") Convert_CompBezierCurvesToBSplineCurve; Convert_CompBezierCurvesToBSplineCurve(const Standard_Real AngularTolerance = 1.0e-4); - /****************** AddCurve ******************/ - /**** md5 signature: 34c9c031fdd448cd83d9d5d7c8bd0d34 ****/ + /****** Convert_CompBezierCurvesToBSplineCurve::AddCurve ******/ + /****** md5 signature: 34c9c031fdd448cd83d9d5d7c8bd0d34 ******/ %feature("compactdefaultargs") AddCurve; %feature("autodoc", " Parameters @@ -300,8 +300,8 @@ Adds the bezier curve defined by the table of poles poles, to the sequence (stil ") AddCurve; void AddCurve(const TColgp_Array1OfPnt & Poles); - /****************** Degree ******************/ - /**** md5 signature: e3276df1ce733e2c8e940db548a26d03 ****/ + /****** Convert_CompBezierCurvesToBSplineCurve::Degree ******/ + /****** md5 signature: e3276df1ce733e2c8e940db548a26d03 ******/ %feature("compactdefaultargs") Degree; %feature("autodoc", "Return ------- @@ -313,8 +313,8 @@ Returns the degree of the bspline curve whose data is computed in this framework ") Degree; Standard_Integer Degree(); - /****************** KnotsAndMults ******************/ - /**** md5 signature: 19787aa39b0400d3a08b5785b90459e8 ****/ + /****** Convert_CompBezierCurvesToBSplineCurve::KnotsAndMults ******/ + /****** md5 signature: 19787aa39b0400d3a08b5785b90459e8 ******/ %feature("compactdefaultargs") KnotsAndMults; %feature("autodoc", " Parameters @@ -332,8 +332,8 @@ Description ") KnotsAndMults; void KnotsAndMults(TColStd_Array1OfReal & Knots, TColStd_Array1OfInteger & Mults); - /****************** NbKnots ******************/ - /**** md5 signature: ccda669299f8eba1ba0d3387af4c950e ****/ + /****** Convert_CompBezierCurvesToBSplineCurve::NbKnots ******/ + /****** md5 signature: ccda669299f8eba1ba0d3387af4c950e ******/ %feature("compactdefaultargs") NbKnots; %feature("autodoc", "Return ------- @@ -345,8 +345,8 @@ Returns the number of knots of the bspline curve whose data is computed in this ") NbKnots; Standard_Integer NbKnots(); - /****************** NbPoles ******************/ - /**** md5 signature: 9a7d6d5f8a21c5833786e951bce99604 ****/ + /****** Convert_CompBezierCurvesToBSplineCurve::NbPoles ******/ + /****** md5 signature: 9a7d6d5f8a21c5833786e951bce99604 ******/ %feature("compactdefaultargs") NbPoles; %feature("autodoc", "Return ------- @@ -358,8 +358,8 @@ Returns the number of poles of the bspline curve whose data is computed in this ") NbPoles; Standard_Integer NbPoles(); - /****************** Perform ******************/ - /**** md5 signature: c04b01412cba7220c024b5eb4532697f ****/ + /****** Convert_CompBezierCurvesToBSplineCurve::Perform ******/ + /****** md5 signature: c04b01412cba7220c024b5eb4532697f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", "Return ------- @@ -371,8 +371,8 @@ Computes all the data needed to build a bspline curve equivalent to the adjacent ") Perform; void Perform(); - /****************** Poles ******************/ - /**** md5 signature: 912b8e52236ad45599d7c99cda7e4145 ****/ + /****** Convert_CompBezierCurvesToBSplineCurve::Poles ******/ + /****** md5 signature: 912b8e52236ad45599d7c99cda7e4145 ******/ %feature("compactdefaultargs") Poles; %feature("autodoc", " Parameters @@ -403,8 +403,8 @@ Loads the poles table with the poles of the bspline curve whose data is computed **************************************/ class Convert_CompPolynomialToPoles { public: - /****************** Convert_CompPolynomialToPoles ******************/ - /**** md5 signature: de288f2f04c458673b45ed6fd19833fe ****/ + /****** Convert_CompPolynomialToPoles::Convert_CompPolynomialToPoles ******/ + /****** md5 signature: de288f2f04c458673b45ed6fd19833fe ******/ %feature("compactdefaultargs") Convert_CompPolynomialToPoles; %feature("autodoc", " Parameters @@ -428,8 +428,8 @@ Warning! continuity can be at most the maximum degree of the polynomial function ") Convert_CompPolynomialToPoles; Convert_CompPolynomialToPoles(const Standard_Integer NumCurves, const Standard_Integer Continuity, const Standard_Integer Dimension, const Standard_Integer MaxDegree, const opencascade::handle & NumCoeffPerCurve, const opencascade::handle & Coefficients, const opencascade::handle & PolynomialIntervals, const opencascade::handle & TrueIntervals); - /****************** Convert_CompPolynomialToPoles ******************/ - /**** md5 signature: 1b14a4df4907be7d6fdaf67362ef7c34 ****/ + /****** Convert_CompPolynomialToPoles::Convert_CompPolynomialToPoles ******/ + /****** md5 signature: 1b14a4df4907be7d6fdaf67362ef7c34 ******/ %feature("compactdefaultargs") Convert_CompPolynomialToPoles; %feature("autodoc", " Parameters @@ -453,8 +453,8 @@ To convert sevral span with different order of continuity. warning: the length o ") Convert_CompPolynomialToPoles; Convert_CompPolynomialToPoles(const Standard_Integer NumCurves, const Standard_Integer Dimension, const Standard_Integer MaxDegree, const TColStd_Array1OfInteger & Continuity, const TColStd_Array1OfInteger & NumCoeffPerCurve, const TColStd_Array1OfReal & Coefficients, const TColStd_Array2OfReal & PolynomialIntervals, const TColStd_Array1OfReal & TrueIntervals); - /****************** Convert_CompPolynomialToPoles ******************/ - /**** md5 signature: 0f3a42e92e00e47d2761b90c1de482fb ****/ + /****** Convert_CompPolynomialToPoles::Convert_CompPolynomialToPoles ******/ + /****** md5 signature: 0f3a42e92e00e47d2761b90c1de482fb ******/ %feature("compactdefaultargs") Convert_CompPolynomialToPoles; %feature("autodoc", " Parameters @@ -476,8 +476,8 @@ To convert only one span. ") Convert_CompPolynomialToPoles; Convert_CompPolynomialToPoles(const Standard_Integer Dimension, const Standard_Integer MaxDegree, const Standard_Integer Degree, const TColStd_Array1OfReal & Coefficients, const TColStd_Array1OfReal & PolynomialIntervals, const TColStd_Array1OfReal & TrueIntervals); - /****************** Degree ******************/ - /**** md5 signature: e3276df1ce733e2c8e940db548a26d03 ****/ + /****** Convert_CompPolynomialToPoles::Degree ******/ + /****** md5 signature: e3276df1ce733e2c8e940db548a26d03 ******/ %feature("compactdefaultargs") Degree; %feature("autodoc", "Return ------- @@ -489,8 +489,8 @@ No available documentation. ") Degree; Standard_Integer Degree(); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** Convert_CompPolynomialToPoles::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -502,8 +502,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** Knots ******************/ - /**** md5 signature: c5c37fcf0cef117abb6c7b6ce8979316 ****/ + /****** Convert_CompPolynomialToPoles::Knots ******/ + /****** md5 signature: c5c37fcf0cef117abb6c7b6ce8979316 ******/ %feature("compactdefaultargs") Knots; %feature("autodoc", " Parameters @@ -520,8 +520,8 @@ Knots of the n-dimensional bspline. ") Knots; void Knots(opencascade::handle & K); - /****************** Multiplicities ******************/ - /**** md5 signature: 66b76e38789dbc2d221ed6266fa78593 ****/ + /****** Convert_CompPolynomialToPoles::Multiplicities ******/ + /****** md5 signature: 66b76e38789dbc2d221ed6266fa78593 ******/ %feature("compactdefaultargs") Multiplicities; %feature("autodoc", " Parameters @@ -538,8 +538,8 @@ Multiplicities of the knots in the bspline. ") Multiplicities; void Multiplicities(opencascade::handle & M); - /****************** NbKnots ******************/ - /**** md5 signature: ccda669299f8eba1ba0d3387af4c950e ****/ + /****** Convert_CompPolynomialToPoles::NbKnots ******/ + /****** md5 signature: ccda669299f8eba1ba0d3387af4c950e ******/ %feature("compactdefaultargs") NbKnots; %feature("autodoc", "Return ------- @@ -551,8 +551,8 @@ Degree of the n-dimensional bspline. ") NbKnots; Standard_Integer NbKnots(); - /****************** NbPoles ******************/ - /**** md5 signature: 9a7d6d5f8a21c5833786e951bce99604 ****/ + /****** Convert_CompPolynomialToPoles::NbPoles ******/ + /****** md5 signature: 9a7d6d5f8a21c5833786e951bce99604 ******/ %feature("compactdefaultargs") NbPoles; %feature("autodoc", "Return ------- @@ -564,8 +564,8 @@ Number of poles of the n-dimensional bspline. ") NbPoles; Standard_Integer NbPoles(); - /****************** Poles ******************/ - /**** md5 signature: e7e979b838fd5189d931c8757f3c41a0 ****/ + /****** Convert_CompPolynomialToPoles::Poles ******/ + /****** md5 signature: e7e979b838fd5189d931c8757f3c41a0 ******/ %feature("compactdefaultargs") Poles; %feature("autodoc", " Parameters @@ -597,8 +597,8 @@ Returns the poles of the n-dimensional bspline in the following format: [1..nump %nodefaultctor Convert_ConicToBSplineCurve; class Convert_ConicToBSplineCurve { public: - /****************** BuildCosAndSin ******************/ - /**** md5 signature: aac1f775057dc2da3fac7888659e735a ****/ + /****** Convert_ConicToBSplineCurve::BuildCosAndSin ******/ + /****** md5 signature: aac1f775057dc2da3fac7888659e735a ******/ %feature("compactdefaultargs") BuildCosAndSin; %feature("autodoc", " Parameters @@ -620,8 +620,8 @@ No available documentation. ") BuildCosAndSin; void BuildCosAndSin(const Convert_ParameterisationType Parametrisation, opencascade::handle & CosNumerator, opencascade::handle & SinNumerator, opencascade::handle & Denominator, Standard_Integer &OutValue, opencascade::handle & Knots, opencascade::handle & Mults); - /****************** BuildCosAndSin ******************/ - /**** md5 signature: 37f37faf568f45a053c3573858f6f670 ****/ + /****** Convert_ConicToBSplineCurve::BuildCosAndSin ******/ + /****** md5 signature: 37f37faf568f45a053c3573858f6f670 ******/ %feature("compactdefaultargs") BuildCosAndSin; %feature("autodoc", " Parameters @@ -645,8 +645,8 @@ No available documentation. ") BuildCosAndSin; void BuildCosAndSin(const Convert_ParameterisationType Parametrisation, const Standard_Real UFirst, const Standard_Real ULast, opencascade::handle & CosNumerator, opencascade::handle & SinNumerator, opencascade::handle & Denominator, Standard_Integer &OutValue, opencascade::handle & Knots, opencascade::handle & Mults); - /****************** Degree ******************/ - /**** md5 signature: e3276df1ce733e2c8e940db548a26d03 ****/ + /****** Convert_ConicToBSplineCurve::Degree ******/ + /****** md5 signature: e3276df1ce733e2c8e940db548a26d03 ******/ %feature("compactdefaultargs") Degree; %feature("autodoc", "Return ------- @@ -658,8 +658,8 @@ Returns the degree of the bspline curve whose data is computed in this framework ") Degree; Standard_Integer Degree(); - /****************** IsPeriodic ******************/ - /**** md5 signature: 62d7f554b0b7785e1f3919569dfbc68f ****/ + /****** Convert_ConicToBSplineCurve::IsPeriodic ******/ + /****** md5 signature: 62d7f554b0b7785e1f3919569dfbc68f ******/ %feature("compactdefaultargs") IsPeriodic; %feature("autodoc", "Return ------- @@ -671,8 +671,8 @@ Returns true if the bspline curve whose data is computed in this framework is pe ") IsPeriodic; Standard_Boolean IsPeriodic(); - /****************** Knot ******************/ - /**** md5 signature: 87780028b98a8253068f050487c4f4d5 ****/ + /****** Convert_ConicToBSplineCurve::Knot ******/ + /****** md5 signature: 87780028b98a8253068f050487c4f4d5 ******/ %feature("compactdefaultargs") Knot; %feature("autodoc", " Parameters @@ -689,8 +689,8 @@ Returns the knot of index index to the knots table of the bspline curve whose da ") Knot; Standard_Real Knot(const Standard_Integer Index); - /****************** Multiplicity ******************/ - /**** md5 signature: 0b00002ea9c75b6fa0f22b159f127931 ****/ + /****** Convert_ConicToBSplineCurve::Multiplicity ******/ + /****** md5 signature: 0b00002ea9c75b6fa0f22b159f127931 ******/ %feature("compactdefaultargs") Multiplicity; %feature("autodoc", " Parameters @@ -707,8 +707,8 @@ Returns the multiplicity of the knot of index index to the knots table of the bs ") Multiplicity; Standard_Integer Multiplicity(const Standard_Integer Index); - /****************** NbKnots ******************/ - /**** md5 signature: ccda669299f8eba1ba0d3387af4c950e ****/ + /****** Convert_ConicToBSplineCurve::NbKnots ******/ + /****** md5 signature: ccda669299f8eba1ba0d3387af4c950e ******/ %feature("compactdefaultargs") NbKnots; %feature("autodoc", "Return ------- @@ -720,8 +720,8 @@ Returns the number of knots of the bspline curve whose data is computed in this ") NbKnots; Standard_Integer NbKnots(); - /****************** NbPoles ******************/ - /**** md5 signature: 9a7d6d5f8a21c5833786e951bce99604 ****/ + /****** Convert_ConicToBSplineCurve::NbPoles ******/ + /****** md5 signature: 9a7d6d5f8a21c5833786e951bce99604 ******/ %feature("compactdefaultargs") NbPoles; %feature("autodoc", "Return ------- @@ -733,8 +733,8 @@ Returns the number of poles of the bspline curve whose data is computed in this ") NbPoles; Standard_Integer NbPoles(); - /****************** Pole ******************/ - /**** md5 signature: e0902cc9b257d7d33c4c27e0ed977e8a ****/ + /****** Convert_ConicToBSplineCurve::Pole ******/ + /****** md5 signature: e0902cc9b257d7d33c4c27e0ed977e8a ******/ %feature("compactdefaultargs") Pole; %feature("autodoc", " Parameters @@ -751,8 +751,8 @@ Returns the pole of index index to the poles table of the bspline curve whose da ") Pole; gp_Pnt2d Pole(const Standard_Integer Index); - /****************** Weight ******************/ - /**** md5 signature: 70cf193bf7498ec22102a906ea9db6f5 ****/ + /****** Convert_ConicToBSplineCurve::Weight ******/ + /****** md5 signature: 70cf193bf7498ec22102a906ea9db6f5 ******/ %feature("compactdefaultargs") Weight; %feature("autodoc", " Parameters @@ -784,8 +784,8 @@ Returns the weight of the pole of index index to the poles table of the bspline %nodefaultctor Convert_ElementarySurfaceToBSplineSurface; class Convert_ElementarySurfaceToBSplineSurface { public: - /****************** IsUPeriodic ******************/ - /**** md5 signature: 3115f09325238f13df1a22947495381e ****/ + /****** Convert_ElementarySurfaceToBSplineSurface::IsUPeriodic ******/ + /****** md5 signature: 3115f09325238f13df1a22947495381e ******/ %feature("compactdefaultargs") IsUPeriodic; %feature("autodoc", "Return ------- @@ -797,8 +797,8 @@ No available documentation. ") IsUPeriodic; Standard_Boolean IsUPeriodic(); - /****************** IsVPeriodic ******************/ - /**** md5 signature: 1c89d32f35a2ad1870438aec5474569f ****/ + /****** Convert_ElementarySurfaceToBSplineSurface::IsVPeriodic ******/ + /****** md5 signature: 1c89d32f35a2ad1870438aec5474569f ******/ %feature("compactdefaultargs") IsVPeriodic; %feature("autodoc", "Return ------- @@ -810,8 +810,8 @@ Returns true if the bspline surface whose data is computed in this framework is ") IsVPeriodic; Standard_Boolean IsVPeriodic(); - /****************** NbUKnots ******************/ - /**** md5 signature: dad62b27d386c8d79ed8a3faddece815 ****/ + /****** Convert_ElementarySurfaceToBSplineSurface::NbUKnots ******/ + /****** md5 signature: dad62b27d386c8d79ed8a3faddece815 ******/ %feature("compactdefaultargs") NbUKnots; %feature("autodoc", "Return ------- @@ -823,8 +823,8 @@ No available documentation. ") NbUKnots; Standard_Integer NbUKnots(); - /****************** NbUPoles ******************/ - /**** md5 signature: fb7c625af5aeee8be8cffdd28f1b08d5 ****/ + /****** Convert_ElementarySurfaceToBSplineSurface::NbUPoles ******/ + /****** md5 signature: fb7c625af5aeee8be8cffdd28f1b08d5 ******/ %feature("compactdefaultargs") NbUPoles; %feature("autodoc", "Return ------- @@ -836,8 +836,8 @@ No available documentation. ") NbUPoles; Standard_Integer NbUPoles(); - /****************** NbVKnots ******************/ - /**** md5 signature: c5483500ef062c3949009d9a2ec75b29 ****/ + /****** Convert_ElementarySurfaceToBSplineSurface::NbVKnots ******/ + /****** md5 signature: c5483500ef062c3949009d9a2ec75b29 ******/ %feature("compactdefaultargs") NbVKnots; %feature("autodoc", "Return ------- @@ -849,8 +849,8 @@ Returns the number of knots for the u or v parametric direction of the bspline s ") NbVKnots; Standard_Integer NbVKnots(); - /****************** NbVPoles ******************/ - /**** md5 signature: 098754ae7893287e442d0a3c48b39cf0 ****/ + /****** Convert_ElementarySurfaceToBSplineSurface::NbVPoles ******/ + /****** md5 signature: 098754ae7893287e442d0a3c48b39cf0 ******/ %feature("compactdefaultargs") NbVPoles; %feature("autodoc", "Return ------- @@ -862,8 +862,8 @@ Returns the number of poles for the u or v parametric direction of the bspline s ") NbVPoles; Standard_Integer NbVPoles(); - /****************** Pole ******************/ - /**** md5 signature: 6573a55d7077cd8547a0b702bb3396eb ****/ + /****** Convert_ElementarySurfaceToBSplineSurface::Pole ******/ + /****** md5 signature: 6573a55d7077cd8547a0b702bb3396eb ******/ %feature("compactdefaultargs") Pole; %feature("autodoc", " Parameters @@ -881,8 +881,8 @@ Returns the pole of index (uindex,vindex) to the poles table of the bspline surf ") Pole; gp_Pnt Pole(const Standard_Integer UIndex, const Standard_Integer VIndex); - /****************** UDegree ******************/ - /**** md5 signature: f204e5fbf1c49e3d9e4889dfead5a190 ****/ + /****** Convert_ElementarySurfaceToBSplineSurface::UDegree ******/ + /****** md5 signature: f204e5fbf1c49e3d9e4889dfead5a190 ******/ %feature("compactdefaultargs") UDegree; %feature("autodoc", "Return ------- @@ -894,8 +894,8 @@ No available documentation. ") UDegree; Standard_Integer UDegree(); - /****************** UKnot ******************/ - /**** md5 signature: ea5353985fdf78f530adfdba4dac6b0b ****/ + /****** Convert_ElementarySurfaceToBSplineSurface::UKnot ******/ + /****** md5 signature: ea5353985fdf78f530adfdba4dac6b0b ******/ %feature("compactdefaultargs") UKnot; %feature("autodoc", " Parameters @@ -912,8 +912,8 @@ Returns the u-knot of range uindex. raised if uindex < 1 or uindex > nbuknots. ") UKnot; Standard_Real UKnot(const Standard_Integer UIndex); - /****************** UMultiplicity ******************/ - /**** md5 signature: dad23f162889ff220e8176306861eaa1 ****/ + /****** Convert_ElementarySurfaceToBSplineSurface::UMultiplicity ******/ + /****** md5 signature: dad23f162889ff220e8176306861eaa1 ******/ %feature("compactdefaultargs") UMultiplicity; %feature("autodoc", " Parameters @@ -930,8 +930,8 @@ Returns the multiplicity of the u-knot of range uindex. raised if uindex < 1 or ") UMultiplicity; Standard_Integer UMultiplicity(const Standard_Integer UIndex); - /****************** VDegree ******************/ - /**** md5 signature: 4901bdb3b29a5c2410ca93d6a7816f06 ****/ + /****** Convert_ElementarySurfaceToBSplineSurface::VDegree ******/ + /****** md5 signature: 4901bdb3b29a5c2410ca93d6a7816f06 ******/ %feature("compactdefaultargs") VDegree; %feature("autodoc", "Return ------- @@ -943,8 +943,8 @@ Returns the degree for the u or v parametric direction of the bspline surface wh ") VDegree; Standard_Integer VDegree(); - /****************** VKnot ******************/ - /**** md5 signature: 4d13bae76c1f4c639082e46dad241e7d ****/ + /****** Convert_ElementarySurfaceToBSplineSurface::VKnot ******/ + /****** md5 signature: 4d13bae76c1f4c639082e46dad241e7d ******/ %feature("compactdefaultargs") VKnot; %feature("autodoc", " Parameters @@ -961,8 +961,8 @@ Returns the v-knot of range vindex. raised if vindex < 1 or vindex > nbvknots. ") VKnot; Standard_Real VKnot(const Standard_Integer UIndex); - /****************** VMultiplicity ******************/ - /**** md5 signature: d21b3a277f002a7f3b2fcadb35374bc1 ****/ + /****** Convert_ElementarySurfaceToBSplineSurface::VMultiplicity ******/ + /****** md5 signature: d21b3a277f002a7f3b2fcadb35374bc1 ******/ %feature("compactdefaultargs") VMultiplicity; %feature("autodoc", " Parameters @@ -979,8 +979,8 @@ Returns the multiplicity of the v-knot of range vindex. raised if vindex < 1 or ") VMultiplicity; Standard_Integer VMultiplicity(const Standard_Integer VIndex); - /****************** Weight ******************/ - /**** md5 signature: 3f3d90bfc32174f677371ed3017fc02e ****/ + /****** Convert_ElementarySurfaceToBSplineSurface::Weight ******/ + /****** md5 signature: 3f3d90bfc32174f677371ed3017fc02e ******/ %feature("compactdefaultargs") Weight; %feature("autodoc", " Parameters @@ -1012,8 +1012,8 @@ Returns the weight of the pole of index (uindex,vindex) to the poles table of th **************************************/ class Convert_GridPolynomialToPoles { public: - /****************** Convert_GridPolynomialToPoles ******************/ - /**** md5 signature: 5e19d6f7859f6437990e41ac8561873f ****/ + /****** Convert_GridPolynomialToPoles::Convert_GridPolynomialToPoles ******/ + /****** md5 signature: 5e19d6f7859f6437990e41ac8561873f ******/ %feature("compactdefaultargs") Convert_GridPolynomialToPoles; %feature("autodoc", " Parameters @@ -1035,8 +1035,8 @@ To only one polynomial surface. the length of and & NumCoeff, const opencascade::handle & Coefficients, const opencascade::handle & PolynomialUIntervals, const opencascade::handle & PolynomialVIntervals); - /****************** Convert_GridPolynomialToPoles ******************/ - /**** md5 signature: 51ca2d3289a0e8c21e7e42881ac480e0 ****/ + /****** Convert_GridPolynomialToPoles::Convert_GridPolynomialToPoles ******/ + /****** md5 signature: 51ca2d3289a0e8c21e7e42881ac480e0 ******/ %feature("compactdefaultargs") Convert_GridPolynomialToPoles; %feature("autodoc", " Parameters @@ -1064,8 +1064,8 @@ To one grid of polynomial surface. warning! continuity in each parametric direct ") Convert_GridPolynomialToPoles; Convert_GridPolynomialToPoles(const Standard_Integer NbUSurfaces, const Standard_Integer NBVSurfaces, const Standard_Integer UContinuity, const Standard_Integer VContinuity, const Standard_Integer MaxUDegree, const Standard_Integer MaxVDegree, const opencascade::handle & NumCoeffPerSurface, const opencascade::handle & Coefficients, const opencascade::handle & PolynomialUIntervals, const opencascade::handle & PolynomialVIntervals, const opencascade::handle & TrueUIntervals, const opencascade::handle & TrueVIntervals); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** Convert_GridPolynomialToPoles::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -1077,8 +1077,8 @@ No available documentation. ") IsDone; Standard_Boolean IsDone(); - /****************** NbUKnots ******************/ - /**** md5 signature: dad62b27d386c8d79ed8a3faddece815 ****/ + /****** Convert_GridPolynomialToPoles::NbUKnots ******/ + /****** md5 signature: dad62b27d386c8d79ed8a3faddece815 ******/ %feature("compactdefaultargs") NbUKnots; %feature("autodoc", "Return ------- @@ -1090,8 +1090,8 @@ No available documentation. ") NbUKnots; Standard_Integer NbUKnots(); - /****************** NbUPoles ******************/ - /**** md5 signature: fb7c625af5aeee8be8cffdd28f1b08d5 ****/ + /****** Convert_GridPolynomialToPoles::NbUPoles ******/ + /****** md5 signature: fb7c625af5aeee8be8cffdd28f1b08d5 ******/ %feature("compactdefaultargs") NbUPoles; %feature("autodoc", "Return ------- @@ -1103,8 +1103,8 @@ No available documentation. ") NbUPoles; Standard_Integer NbUPoles(); - /****************** NbVKnots ******************/ - /**** md5 signature: c5483500ef062c3949009d9a2ec75b29 ****/ + /****** Convert_GridPolynomialToPoles::NbVKnots ******/ + /****** md5 signature: c5483500ef062c3949009d9a2ec75b29 ******/ %feature("compactdefaultargs") NbVKnots; %feature("autodoc", "Return ------- @@ -1116,8 +1116,8 @@ No available documentation. ") NbVKnots; Standard_Integer NbVKnots(); - /****************** NbVPoles ******************/ - /**** md5 signature: 098754ae7893287e442d0a3c48b39cf0 ****/ + /****** Convert_GridPolynomialToPoles::NbVPoles ******/ + /****** md5 signature: 098754ae7893287e442d0a3c48b39cf0 ******/ %feature("compactdefaultargs") NbVPoles; %feature("autodoc", "Return ------- @@ -1129,8 +1129,8 @@ No available documentation. ") NbVPoles; Standard_Integer NbVPoles(); - /****************** Perform ******************/ - /**** md5 signature: 0d0e95444a993fbb95629a0bb85d48a8 ****/ + /****** Convert_GridPolynomialToPoles::Perform ******/ + /****** md5 signature: 0d0e95444a993fbb95629a0bb85d48a8 ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", " Parameters @@ -1156,8 +1156,8 @@ No available documentation. ") Perform; void Perform(const Standard_Integer UContinuity, const Standard_Integer VContinuity, const Standard_Integer MaxUDegree, const Standard_Integer MaxVDegree, const opencascade::handle & NumCoeffPerSurface, const opencascade::handle & Coefficients, const opencascade::handle & PolynomialUIntervals, const opencascade::handle & PolynomialVIntervals, const opencascade::handle & TrueUIntervals, const opencascade::handle & TrueVIntervals); - /****************** Poles ******************/ - /**** md5 signature: 4e616536627e10a4a11def3d5743d611 ****/ + /****** Convert_GridPolynomialToPoles::Poles ******/ + /****** md5 signature: 4e616536627e10a4a11def3d5743d611 ******/ %feature("compactdefaultargs") Poles; %feature("autodoc", "Return ------- @@ -1169,8 +1169,8 @@ Returns the poles of the bspline surface. ") Poles; const opencascade::handle & Poles(); - /****************** UDegree ******************/ - /**** md5 signature: f204e5fbf1c49e3d9e4889dfead5a190 ****/ + /****** Convert_GridPolynomialToPoles::UDegree ******/ + /****** md5 signature: f204e5fbf1c49e3d9e4889dfead5a190 ******/ %feature("compactdefaultargs") UDegree; %feature("autodoc", "Return ------- @@ -1182,8 +1182,8 @@ No available documentation. ") UDegree; Standard_Integer UDegree(); - /****************** UKnots ******************/ - /**** md5 signature: e4c765c1a34f73676b6a0f23e63a42f7 ****/ + /****** Convert_GridPolynomialToPoles::UKnots ******/ + /****** md5 signature: e4c765c1a34f73676b6a0f23e63a42f7 ******/ %feature("compactdefaultargs") UKnots; %feature("autodoc", "Return ------- @@ -1195,8 +1195,8 @@ Knots in the u direction. ") UKnots; const opencascade::handle & UKnots(); - /****************** UMultiplicities ******************/ - /**** md5 signature: dd6df83c242f8c2d61f6fb2cc00d6d9a ****/ + /****** Convert_GridPolynomialToPoles::UMultiplicities ******/ + /****** md5 signature: dd6df83c242f8c2d61f6fb2cc00d6d9a ******/ %feature("compactdefaultargs") UMultiplicities; %feature("autodoc", "Return ------- @@ -1208,8 +1208,8 @@ Multiplicities of the knots in the u direction. ") UMultiplicities; const opencascade::handle & UMultiplicities(); - /****************** VDegree ******************/ - /**** md5 signature: 4901bdb3b29a5c2410ca93d6a7816f06 ****/ + /****** Convert_GridPolynomialToPoles::VDegree ******/ + /****** md5 signature: 4901bdb3b29a5c2410ca93d6a7816f06 ******/ %feature("compactdefaultargs") VDegree; %feature("autodoc", "Return ------- @@ -1221,8 +1221,8 @@ No available documentation. ") VDegree; Standard_Integer VDegree(); - /****************** VKnots ******************/ - /**** md5 signature: 56d691f001e3cbff620cca50aeeea333 ****/ + /****** Convert_GridPolynomialToPoles::VKnots ******/ + /****** md5 signature: 56d691f001e3cbff620cca50aeeea333 ******/ %feature("compactdefaultargs") VKnots; %feature("autodoc", "Return ------- @@ -1234,8 +1234,8 @@ Knots in the v direction. ") VKnots; const opencascade::handle & VKnots(); - /****************** VMultiplicities ******************/ - /**** md5 signature: 36fc4847dd11076b629833ec28b74b5a ****/ + /****** Convert_GridPolynomialToPoles::VMultiplicities ******/ + /****** md5 signature: 36fc4847dd11076b629833ec28b74b5a ******/ %feature("compactdefaultargs") VMultiplicities; %feature("autodoc", "Return ------- @@ -1261,8 +1261,8 @@ Multiplicities of the knots in the v direction. *************************************/ class Convert_CircleToBSplineCurve : public Convert_ConicToBSplineCurve { public: - /****************** Convert_CircleToBSplineCurve ******************/ - /**** md5 signature: 1e97bd4399c8fac8360cc6f278f56d58 ****/ + /****** Convert_CircleToBSplineCurve::Convert_CircleToBSplineCurve ******/ + /****** md5 signature: 1e97bd4399c8fac8360cc6f278f56d58 ******/ %feature("compactdefaultargs") Convert_CircleToBSplineCurve; %feature("autodoc", " Parameters @@ -1280,8 +1280,8 @@ The equivalent b-spline curve has the same orientation as the circle c. ") Convert_CircleToBSplineCurve; Convert_CircleToBSplineCurve(const gp_Circ2d & C, const Convert_ParameterisationType Parameterisation = Convert_TgtThetaOver2); - /****************** Convert_CircleToBSplineCurve ******************/ - /**** md5 signature: e91e4e93afdc662004fe2d142e748a55 ****/ + /****** Convert_CircleToBSplineCurve::Convert_CircleToBSplineCurve ******/ + /****** md5 signature: e91e4e93afdc662004fe2d142e748a55 ******/ %feature("compactdefaultargs") Convert_CircleToBSplineCurve; %feature("autodoc", " Parameters @@ -1315,8 +1315,8 @@ The circle c is limited between the parametric values u1, u2 in radians. u1 and *************************************/ class Convert_ConeToBSplineSurface : public Convert_ElementarySurfaceToBSplineSurface { public: - /****************** Convert_ConeToBSplineSurface ******************/ - /**** md5 signature: 628910965d1881fda009c3a9e158145f ****/ + /****** Convert_ConeToBSplineSurface::Convert_ConeToBSplineSurface ******/ + /****** md5 signature: 628910965d1881fda009c3a9e158145f ******/ %feature("compactdefaultargs") Convert_ConeToBSplineSurface; %feature("autodoc", " Parameters @@ -1337,8 +1337,8 @@ The equivalent b-spline surface as the same orientation as the cone in the u and ") Convert_ConeToBSplineSurface; Convert_ConeToBSplineSurface(const gp_Cone & C, const Standard_Real U1, const Standard_Real U2, const Standard_Real V1, const Standard_Real V2); - /****************** Convert_ConeToBSplineSurface ******************/ - /**** md5 signature: 79e4e6f2d39208d83752f73cd28a02df ****/ + /****** Convert_ConeToBSplineSurface::Convert_ConeToBSplineSurface ******/ + /****** md5 signature: 79e4e6f2d39208d83752f73cd28a02df ******/ %feature("compactdefaultargs") Convert_ConeToBSplineSurface; %feature("autodoc", " Parameters @@ -1371,8 +1371,8 @@ The equivalent b-spline surface as the same orientation as the cone in the u and *****************************************/ class Convert_CylinderToBSplineSurface : public Convert_ElementarySurfaceToBSplineSurface { public: - /****************** Convert_CylinderToBSplineSurface ******************/ - /**** md5 signature: d2051a6454cc4de8531a03ee12f0eece ****/ + /****** Convert_CylinderToBSplineSurface::Convert_CylinderToBSplineSurface ******/ + /****** md5 signature: d2051a6454cc4de8531a03ee12f0eece ******/ %feature("compactdefaultargs") Convert_CylinderToBSplineSurface; %feature("autodoc", " Parameters @@ -1393,8 +1393,8 @@ The equivalent b-splinesurface as the same orientation as the cylinder in the u ") Convert_CylinderToBSplineSurface; Convert_CylinderToBSplineSurface(const gp_Cylinder & Cyl, const Standard_Real U1, const Standard_Real U2, const Standard_Real V1, const Standard_Real V2); - /****************** Convert_CylinderToBSplineSurface ******************/ - /**** md5 signature: 611c8c81889e027674efa7f4f5043198 ****/ + /****** Convert_CylinderToBSplineSurface::Convert_CylinderToBSplineSurface ******/ + /****** md5 signature: 611c8c81889e027674efa7f4f5043198 ******/ %feature("compactdefaultargs") Convert_CylinderToBSplineSurface; %feature("autodoc", " Parameters @@ -1427,8 +1427,8 @@ The equivalent b-splinesurface as the same orientation as the cylinder in the u **************************************/ class Convert_EllipseToBSplineCurve : public Convert_ConicToBSplineCurve { public: - /****************** Convert_EllipseToBSplineCurve ******************/ - /**** md5 signature: 9c542704f67a7fac8fcc89dbccd7a3bd ****/ + /****** Convert_EllipseToBSplineCurve::Convert_EllipseToBSplineCurve ******/ + /****** md5 signature: 9c542704f67a7fac8fcc89dbccd7a3bd ******/ %feature("compactdefaultargs") Convert_EllipseToBSplineCurve; %feature("autodoc", " Parameters @@ -1446,8 +1446,8 @@ The equivalent b-spline curve has the same orientation as the ellipse e. ") Convert_EllipseToBSplineCurve; Convert_EllipseToBSplineCurve(const gp_Elips2d & E, const Convert_ParameterisationType Parameterisation = Convert_TgtThetaOver2); - /****************** Convert_EllipseToBSplineCurve ******************/ - /**** md5 signature: b92f7f2b44aff0d80c4670fd74987a31 ****/ + /****** Convert_EllipseToBSplineCurve::Convert_EllipseToBSplineCurve ******/ + /****** md5 signature: b92f7f2b44aff0d80c4670fd74987a31 ******/ %feature("compactdefaultargs") Convert_EllipseToBSplineCurve; %feature("autodoc", " Parameters @@ -1481,8 +1481,8 @@ The ellipse e is limited between the parametric values u1, u2. the equivalent b- ****************************************/ class Convert_HyperbolaToBSplineCurve : public Convert_ConicToBSplineCurve { public: - /****************** Convert_HyperbolaToBSplineCurve ******************/ - /**** md5 signature: a968a5d2b5ca09e2e267d214e9c95428 ****/ + /****** Convert_HyperbolaToBSplineCurve::Convert_HyperbolaToBSplineCurve ******/ + /****** md5 signature: a968a5d2b5ca09e2e267d214e9c95428 ******/ %feature("compactdefaultargs") Convert_HyperbolaToBSplineCurve; %feature("autodoc", " Parameters @@ -1515,8 +1515,8 @@ The hyperbola h is limited between the parametric values u1, u2 and the equivale ***************************************/ class Convert_ParabolaToBSplineCurve : public Convert_ConicToBSplineCurve { public: - /****************** Convert_ParabolaToBSplineCurve ******************/ - /**** md5 signature: 9b7db99737c85ce6fb0bba3c6d8790cc ****/ + /****** Convert_ParabolaToBSplineCurve::Convert_ParabolaToBSplineCurve ******/ + /****** md5 signature: 9b7db99737c85ce6fb0bba3c6d8790cc ******/ %feature("compactdefaultargs") Convert_ParabolaToBSplineCurve; %feature("autodoc", " Parameters @@ -1549,8 +1549,8 @@ The parabola prb is limited between the parametric values u1, u2 and the equival ***************************************/ class Convert_SphereToBSplineSurface : public Convert_ElementarySurfaceToBSplineSurface { public: - /****************** Convert_SphereToBSplineSurface ******************/ - /**** md5 signature: 2fc090f20fd08c42cdb17c6556154e61 ****/ + /****** Convert_SphereToBSplineSurface::Convert_SphereToBSplineSurface ******/ + /****** md5 signature: 2fc090f20fd08c42cdb17c6556154e61 ******/ %feature("compactdefaultargs") Convert_SphereToBSplineSurface; %feature("autodoc", " Parameters @@ -1571,8 +1571,8 @@ The equivalent b-spline surface as the same orientation as the sphere in the u a ") Convert_SphereToBSplineSurface; Convert_SphereToBSplineSurface(const gp_Sphere & Sph, const Standard_Real U1, const Standard_Real U2, const Standard_Real V1, const Standard_Real V2); - /****************** Convert_SphereToBSplineSurface ******************/ - /**** md5 signature: ae7e60cab30de1fcabe19b199968346e ****/ + /****** Convert_SphereToBSplineSurface::Convert_SphereToBSplineSurface ******/ + /****** md5 signature: ae7e60cab30de1fcabe19b199968346e ******/ %feature("compactdefaultargs") Convert_SphereToBSplineSurface; %feature("autodoc", " Parameters @@ -1592,8 +1592,8 @@ The equivalent b-spline surface as the same orientation as the sphere in the u a ") Convert_SphereToBSplineSurface; Convert_SphereToBSplineSurface(const gp_Sphere & Sph, const Standard_Real Param1, const Standard_Real Param2, const Standard_Boolean UTrim = Standard_True); - /****************** Convert_SphereToBSplineSurface ******************/ - /**** md5 signature: b811c1ff160c29e5d3c8c9ae1cadb216 ****/ + /****** Convert_SphereToBSplineSurface::Convert_SphereToBSplineSurface ******/ + /****** md5 signature: b811c1ff160c29e5d3c8c9ae1cadb216 ******/ %feature("compactdefaultargs") Convert_SphereToBSplineSurface; %feature("autodoc", " Parameters @@ -1624,8 +1624,8 @@ The equivalent b-spline surface as the same orientation as the sphere in the u a **************************************/ class Convert_TorusToBSplineSurface : public Convert_ElementarySurfaceToBSplineSurface { public: - /****************** Convert_TorusToBSplineSurface ******************/ - /**** md5 signature: 5a383bfb4e718af6b8f56e424593d26f ****/ + /****** Convert_TorusToBSplineSurface::Convert_TorusToBSplineSurface ******/ + /****** md5 signature: 5a383bfb4e718af6b8f56e424593d26f ******/ %feature("compactdefaultargs") Convert_TorusToBSplineSurface; %feature("autodoc", " Parameters @@ -1646,8 +1646,8 @@ The equivalent b-spline surface as the same orientation as the torus in the u an ") Convert_TorusToBSplineSurface; Convert_TorusToBSplineSurface(const gp_Torus & T, const Standard_Real U1, const Standard_Real U2, const Standard_Real V1, const Standard_Real V2); - /****************** Convert_TorusToBSplineSurface ******************/ - /**** md5 signature: ba4763404d74aa517f9c00b9ecdbadf9 ****/ + /****** Convert_TorusToBSplineSurface::Convert_TorusToBSplineSurface ******/ + /****** md5 signature: ba4763404d74aa517f9c00b9ecdbadf9 ******/ %feature("compactdefaultargs") Convert_TorusToBSplineSurface; %feature("autodoc", " Parameters @@ -1667,8 +1667,8 @@ The equivalent b-spline surface as the same orientation as the torus in the u an ") Convert_TorusToBSplineSurface; Convert_TorusToBSplineSurface(const gp_Torus & T, const Standard_Real Param1, const Standard_Real Param2, const Standard_Boolean UTrim = Standard_True); - /****************** Convert_TorusToBSplineSurface ******************/ - /**** md5 signature: 2d9b33e6b26b0c16a9b3b6bd957b94eb ****/ + /****** Convert_TorusToBSplineSurface::Convert_TorusToBSplineSurface ******/ + /****** md5 signature: 2d9b33e6b26b0c16a9b3b6bd957b94eb ******/ %feature("compactdefaultargs") Convert_TorusToBSplineSurface; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/DE.i b/src/SWIG_files/wrapper/DE.i index 009f3af8f..75f1e54e9 100644 --- a/src/SWIG_files/wrapper/DE.i +++ b/src/SWIG_files/wrapper/DE.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define DEDOCSTRING "DE module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_de.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_de.html" %enddef %module (package="OCC.Core", docstring=DEDOCSTRING) DE @@ -111,8 +111,8 @@ typedef NCollection_DataMap DE ********************************/ class DE_ConfigurationContext : public Standard_Transient { public: - /****************** DE_ConfigurationContext ******************/ - /**** md5 signature: 6f8978b1213ccbf2324cb57020cddb9e ****/ + /****** DE_ConfigurationContext::DE_ConfigurationContext ******/ + /****** md5 signature: 6f8978b1213ccbf2324cb57020cddb9e ******/ %feature("compactdefaultargs") DE_ConfigurationContext; %feature("autodoc", "Return ------- @@ -124,8 +124,8 @@ Creates an empty tool. ") DE_ConfigurationContext; DE_ConfigurationContext(); - /****************** BooleanVal ******************/ - /**** md5 signature: 39a405c397dbbfd6b8ad8f1477e31469 ****/ + /****** DE_ConfigurationContext::BooleanVal ******/ + /****** md5 signature: 39a405c397dbbfd6b8ad8f1477e31469 ******/ %feature("compactdefaultargs") BooleanVal; %feature("autodoc", " Parameters @@ -144,8 +144,8 @@ Gets value of parameter as being of specific type @param[in] theparam complex pa ") BooleanVal; Standard_Boolean BooleanVal(TCollection_AsciiString theParam, const Standard_Boolean theDefValue, TCollection_AsciiString theScope = ""); - /****************** GetBoolean ******************/ - /**** md5 signature: 306703583f727555f4b7620b1de3e55e ****/ + /****** DE_ConfigurationContext::GetBoolean ******/ + /****** md5 signature: 306703583f727555f4b7620b1de3e55e ******/ %feature("compactdefaultargs") GetBoolean; %feature("autodoc", " Parameters @@ -163,8 +163,8 @@ Gets value of parameter as being of specific type @param[in] theparam complex pa ") GetBoolean; Standard_Boolean GetBoolean(TCollection_AsciiString theParam, Standard_Boolean &OutValue, TCollection_AsciiString theScope = ""); - /****************** GetInteger ******************/ - /**** md5 signature: 88fba8515b9407a97f258d961c684f50 ****/ + /****** DE_ConfigurationContext::GetInteger ******/ + /****** md5 signature: 88fba8515b9407a97f258d961c684f50 ******/ %feature("compactdefaultargs") GetInteger; %feature("autodoc", " Parameters @@ -182,8 +182,8 @@ Gets value of parameter as being of specific type @param[in] theparam complex pa ") GetInteger; Standard_Boolean GetInteger(TCollection_AsciiString theParam, Standard_Integer &OutValue, TCollection_AsciiString theScope = ""); - /****************** GetInternalMap ******************/ - /**** md5 signature: 8008565a02e4edcec3f31a539c3e3790 ****/ + /****** DE_ConfigurationContext::GetInternalMap ******/ + /****** md5 signature: 8008565a02e4edcec3f31a539c3e3790 ******/ %feature("compactdefaultargs") GetInternalMap; %feature("autodoc", "Return ------- @@ -195,8 +195,8 @@ Gets internal resource map return map with resource value. ") GetInternalMap; const DE_ResourceMap & GetInternalMap(); - /****************** GetReal ******************/ - /**** md5 signature: 5c258f8e0dc09497a133e3fb2aa542ec ****/ + /****** DE_ConfigurationContext::GetReal ******/ + /****** md5 signature: 5c258f8e0dc09497a133e3fb2aa542ec ******/ %feature("compactdefaultargs") GetReal; %feature("autodoc", " Parameters @@ -214,8 +214,8 @@ Gets value of parameter as being of specific type @param[in] theparam complex pa ") GetReal; Standard_Boolean GetReal(TCollection_AsciiString theParam, Standard_Real &OutValue, TCollection_AsciiString theScope = ""); - /****************** GetString ******************/ - /**** md5 signature: 173aecee56d4aebec31415bb2c10a9d5 ****/ + /****** DE_ConfigurationContext::GetString ******/ + /****** md5 signature: 173aecee56d4aebec31415bb2c10a9d5 ******/ %feature("compactdefaultargs") GetString; %feature("autodoc", " Parameters @@ -234,8 +234,8 @@ Gets value of parameter as being of specific type @param[in] theparam complex pa ") GetString; Standard_Boolean GetString(TCollection_AsciiString theParam, TCollection_AsciiString & theValue, TCollection_AsciiString theScope = ""); - /****************** GetStringSeq ******************/ - /**** md5 signature: 7087b14b95eaad840e609bb71fd8f86f ****/ + /****** DE_ConfigurationContext::GetStringSeq ******/ + /****** md5 signature: 7087b14b95eaad840e609bb71fd8f86f ******/ %feature("compactdefaultargs") GetStringSeq; %feature("autodoc", " Parameters @@ -254,8 +254,8 @@ Gets value of parameter as being of specific type @param[in] theparam complex pa ") GetStringSeq; Standard_Boolean GetStringSeq(TCollection_AsciiString theParam, TColStd_ListOfAsciiString & theValue, TCollection_AsciiString theScope = ""); - /****************** IntegerVal ******************/ - /**** md5 signature: 2328fede3f47d9dc4e0421406847f927 ****/ + /****** DE_ConfigurationContext::IntegerVal ******/ + /****** md5 signature: 2328fede3f47d9dc4e0421406847f927 ******/ %feature("compactdefaultargs") IntegerVal; %feature("autodoc", " Parameters @@ -274,8 +274,8 @@ Gets value of parameter as being of specific type @param[in] theparam complex pa ") IntegerVal; Standard_Integer IntegerVal(TCollection_AsciiString theParam, const Standard_Integer theDefValue, TCollection_AsciiString theScope = ""); - /****************** IsParamSet ******************/ - /**** md5 signature: 514011ad24f2fe71af50c4db2aa4f335 ****/ + /****** DE_ConfigurationContext::IsParamSet ******/ + /****** md5 signature: 514011ad24f2fe71af50c4db2aa4f335 ******/ %feature("compactdefaultargs") IsParamSet; %feature("autodoc", " Parameters @@ -293,8 +293,8 @@ Checks for existing the parameter name @param[in] theparam complex parameter nam ") IsParamSet; Standard_Boolean IsParamSet(TCollection_AsciiString theParam, TCollection_AsciiString theScope = ""); - /****************** Load ******************/ - /**** md5 signature: 4e8a302be9369683c07217887175d412 ****/ + /****** DE_ConfigurationContext::Load ******/ + /****** md5 signature: 4e8a302be9369683c07217887175d412 ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -311,8 +311,8 @@ Import the custom configuration save all parameters with their values. @param[in ") Load; Standard_Boolean Load(TCollection_AsciiString theConfiguration); - /****************** LoadFile ******************/ - /**** md5 signature: 18e80d660da0dece9383ef8c96a1925f ****/ + /****** DE_ConfigurationContext::LoadFile ******/ + /****** md5 signature: 18e80d660da0dece9383ef8c96a1925f ******/ %feature("compactdefaultargs") LoadFile; %feature("autodoc", " Parameters @@ -329,8 +329,8 @@ Import the resource file. save all parameters with their values. @param[in] thef ") LoadFile; Standard_Boolean LoadFile(TCollection_AsciiString theFile); - /****************** LoadStr ******************/ - /**** md5 signature: b4c4f75492d28f07b4e7f36ad6859270 ****/ + /****** DE_ConfigurationContext::LoadStr ******/ + /****** md5 signature: b4c4f75492d28f07b4e7f36ad6859270 ******/ %feature("compactdefaultargs") LoadStr; %feature("autodoc", " Parameters @@ -347,8 +347,8 @@ Import the resource string. save all parameters with their values. @param[in] th ") LoadStr; Standard_Boolean LoadStr(TCollection_AsciiString theResource); - /****************** RealVal ******************/ - /**** md5 signature: fb5bc95b5b186eec2c62b384c68e6789 ****/ + /****** DE_ConfigurationContext::RealVal ******/ + /****** md5 signature: fb5bc95b5b186eec2c62b384c68e6789 ******/ %feature("compactdefaultargs") RealVal; %feature("autodoc", " Parameters @@ -367,8 +367,8 @@ Gets value of parameter as being of specific type @param[in] theparam complex pa ") RealVal; Standard_Real RealVal(TCollection_AsciiString theParam, const Standard_Real theDefValue, TCollection_AsciiString theScope = ""); - /****************** StringVal ******************/ - /**** md5 signature: 9e1849b2727da98db2b1bf37b408bfab ****/ + /****** DE_ConfigurationContext::StringVal ******/ + /****** md5 signature: 9e1849b2727da98db2b1bf37b408bfab ******/ %feature("compactdefaultargs") StringVal; %feature("autodoc", " Parameters @@ -406,8 +406,8 @@ class DE_ConfigurationNode : public Standard_Transient { public: class DE_SectionGlobal {}; DE_SectionGlobal GlobalParameters; - /****************** BuildProvider ******************/ - /**** md5 signature: 36ab78b32f0a19a9158d4d9237830452 ****/ + /****** DE_ConfigurationNode::BuildProvider ******/ + /****** md5 signature: 36ab78b32f0a19a9158d4d9237830452 ******/ %feature("compactdefaultargs") BuildProvider; %feature("autodoc", "Return ------- @@ -419,8 +419,8 @@ Creates new provider for the own format return new created provider. ") BuildProvider; virtual opencascade::handle BuildProvider(); - /****************** CheckContent ******************/ - /**** md5 signature: 95f1f32c115dbc98287bae8e93cac461 ****/ + /****** DE_ConfigurationNode::CheckContent ******/ + /****** md5 signature: 95f1f32c115dbc98287bae8e93cac461 ******/ %feature("compactdefaultargs") CheckContent; %feature("autodoc", " Parameters @@ -437,8 +437,8 @@ Checks the file content to verify a format @param[in] thebuffer read stream buff ") CheckContent; virtual bool CheckContent(const opencascade::handle & theBuffer); - /****************** CheckExtension ******************/ - /**** md5 signature: 27100baf59d3bd02b88ea571e16cbcd3 ****/ + /****** DE_ConfigurationNode::CheckExtension ******/ + /****** md5 signature: 27100baf59d3bd02b88ea571e16cbcd3 ******/ %feature("compactdefaultargs") CheckExtension; %feature("autodoc", " Parameters @@ -455,8 +455,8 @@ Checks the file extension to verify a format @param[in] theextension input file ") CheckExtension; virtual bool CheckExtension(TCollection_AsciiString theExtension); - /****************** Copy ******************/ - /**** md5 signature: 04e01affadd9be62ec4a6bf2cb421681 ****/ + /****** DE_ConfigurationNode::Copy ******/ + /****** md5 signature: 04e01affadd9be62ec4a6bf2cb421681 ******/ %feature("compactdefaultargs") Copy; %feature("autodoc", "Return ------- @@ -468,8 +468,8 @@ Copies values of all fields return new object with the same field values. ") Copy; virtual opencascade::handle Copy(); - /****************** GetExtensions ******************/ - /**** md5 signature: 6817e63aa129d8a185e6f5a2ec2a2914 ****/ + /****** DE_ConfigurationNode::GetExtensions ******/ + /****** md5 signature: 6817e63aa129d8a185e6f5a2ec2a2914 ******/ %feature("compactdefaultargs") GetExtensions; %feature("autodoc", "Return ------- @@ -481,8 +481,8 @@ Gets list of supported file extensions return list of extensions. ") GetExtensions; virtual TColStd_ListOfAsciiString GetExtensions(); - /****************** GetFormat ******************/ - /**** md5 signature: 463cfc83b2259fc53dc9328af3a9b59c ****/ + /****** DE_ConfigurationNode::GetFormat ******/ + /****** md5 signature: 463cfc83b2259fc53dc9328af3a9b59c ******/ %feature("compactdefaultargs") GetFormat; %feature("autodoc", "Return ------- @@ -494,8 +494,8 @@ Gets cad format name of associated provider return provider cad format. ") GetFormat; virtual TCollection_AsciiString GetFormat(); - /****************** GetVendor ******************/ - /**** md5 signature: ffb781bf88c8a183adbcecdbc3d3b042 ****/ + /****** DE_ConfigurationNode::GetVendor ******/ + /****** md5 signature: ffb781bf88c8a183adbcecdbc3d3b042 ******/ %feature("compactdefaultargs") GetVendor; %feature("autodoc", "Return ------- @@ -507,8 +507,8 @@ Gets provider's vendor name of associated provider return provider's vendor name ") GetVendor; virtual TCollection_AsciiString GetVendor(); - /****************** IsEnabled ******************/ - /**** md5 signature: cf6340b5d1701025377d42db5601a57b ****/ + /****** DE_ConfigurationNode::IsEnabled ******/ + /****** md5 signature: cf6340b5d1701025377d42db5601a57b ******/ %feature("compactdefaultargs") IsEnabled; %feature("autodoc", "Return ------- @@ -520,8 +520,8 @@ Gets the provider loading status return standard_true if the load is correct. ") IsEnabled; Standard_Boolean IsEnabled(); - /****************** IsExportSupported ******************/ - /**** md5 signature: be38b1e13370efd225253f651dabd3e4 ****/ + /****** DE_ConfigurationNode::IsExportSupported ******/ + /****** md5 signature: be38b1e13370efd225253f651dabd3e4 ******/ %feature("compactdefaultargs") IsExportSupported; %feature("autodoc", "Return ------- @@ -533,8 +533,8 @@ Checks the export supporting return standard_true if export is support. ") IsExportSupported; virtual bool IsExportSupported(); - /****************** IsImportSupported ******************/ - /**** md5 signature: 53c532301573c0465fbcc177f134f054 ****/ + /****** DE_ConfigurationNode::IsImportSupported ******/ + /****** md5 signature: 53c532301573c0465fbcc177f134f054 ******/ %feature("compactdefaultargs") IsImportSupported; %feature("autodoc", "Return ------- @@ -546,8 +546,8 @@ Checks the import supporting return standard_true if import is support. ") IsImportSupported; virtual bool IsImportSupported(); - /****************** Load ******************/ - /**** md5 signature: 9b5cc764241d5877675334ad8da3c1e3 ****/ + /****** DE_ConfigurationNode::Load ******/ + /****** md5 signature: 9b5cc764241d5877675334ad8da3c1e3 ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -564,8 +564,8 @@ Updates values according the resource file @param[in] theresourcepath file path ") Load; virtual bool Load(TCollection_AsciiString theResourcePath = ""); - /****************** Load ******************/ - /**** md5 signature: 1322ab703d21119666bf65dd309eecc1 ****/ + /****** DE_ConfigurationNode::Load ******/ + /****** md5 signature: 1322ab703d21119666bf65dd309eecc1 ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -582,8 +582,8 @@ Updates values according the resource @param[in] theresource input resource to u ") Load; virtual bool Load(const opencascade::handle & theResource); - /****************** Save ******************/ - /**** md5 signature: 300b6c1565eb95b4415a1d3dabc4aceb ****/ + /****** DE_ConfigurationNode::Save ******/ + /****** md5 signature: 300b6c1565eb95b4415a1d3dabc4aceb ******/ %feature("compactdefaultargs") Save; %feature("autodoc", " Parameters @@ -600,8 +600,8 @@ Writes configuration to the resource file @param[in] theresourcepath file path t ") Save; bool Save(TCollection_AsciiString theResourcePath); - /****************** Save ******************/ - /**** md5 signature: f2660a91e37cf35a2de94d1989e1425d ****/ + /****** DE_ConfigurationNode::Save ******/ + /****** md5 signature: f2660a91e37cf35a2de94d1989e1425d ******/ %feature("compactdefaultargs") Save; %feature("autodoc", "Return ------- @@ -613,8 +613,8 @@ Writes configuration to the string return result resource string. ") Save; virtual TCollection_AsciiString Save(); - /****************** SetEnabled ******************/ - /**** md5 signature: 08fbab9585baa2c996daa67d3fe8cb2d ****/ + /****** DE_ConfigurationNode::SetEnabled ******/ + /****** md5 signature: 08fbab9585baa2c996daa67d3fe8cb2d ******/ %feature("compactdefaultargs") SetEnabled; %feature("autodoc", " Parameters @@ -631,8 +631,8 @@ Sets the provider loading status @param[in] theisloaded input load status. ") SetEnabled; void SetEnabled(const Standard_Boolean theIsLoaded); - /****************** UpdateLoad ******************/ - /**** md5 signature: e4d00b4aa4bb21adbf62beb264cc06cd ****/ + /****** DE_ConfigurationNode::UpdateLoad ******/ + /****** md5 signature: e4d00b4aa4bb21adbf62beb264cc06cd ******/ %feature("compactdefaultargs") UpdateLoad; %feature("autodoc", " Parameters @@ -670,8 +670,8 @@ Update loading status. checking for the ability to read and write. @param[in] th %nodefaultctor DE_Provider; class DE_Provider : public Standard_Transient { public: - /****************** GetFormat ******************/ - /**** md5 signature: 463cfc83b2259fc53dc9328af3a9b59c ****/ + /****** DE_Provider::GetFormat ******/ + /****** md5 signature: 463cfc83b2259fc53dc9328af3a9b59c ******/ %feature("compactdefaultargs") GetFormat; %feature("autodoc", "Return ------- @@ -683,8 +683,8 @@ Gets cad format name of associated provider return provider cad format. ") GetFormat; virtual TCollection_AsciiString GetFormat(); - /****************** GetNode ******************/ - /**** md5 signature: 8a3b88dcc8774135ce97bdb944c8228c ****/ + /****** DE_Provider::GetNode ******/ + /****** md5 signature: 8a3b88dcc8774135ce97bdb944c8228c ******/ %feature("compactdefaultargs") GetNode; %feature("autodoc", "Return ------- @@ -696,8 +696,8 @@ Gets internal configuration node return configuration node object. ") GetNode; opencascade::handle GetNode(); - /****************** GetVendor ******************/ - /**** md5 signature: ffb781bf88c8a183adbcecdbc3d3b042 ****/ + /****** DE_Provider::GetVendor ******/ + /****** md5 signature: ffb781bf88c8a183adbcecdbc3d3b042 ******/ %feature("compactdefaultargs") GetVendor; %feature("autodoc", "Return ------- @@ -709,8 +709,8 @@ Gets provider's vendor name of associated provider return provider's vendor name ") GetVendor; virtual TCollection_AsciiString GetVendor(); - /****************** Read ******************/ - /**** md5 signature: ffd5e83c299a2aac49b58d0084ab11d6 ****/ + /****** DE_Provider::Read ******/ + /****** md5 signature: ffd5e83c299a2aac49b58d0084ab11d6 ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -730,8 +730,8 @@ Reads a cad file, according internal configuration @param[in] thepath path to th ") Read; virtual Standard_Boolean Read(TCollection_AsciiString thePath, const opencascade::handle & theDocument, opencascade::handle & theWS, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Read ******************/ - /**** md5 signature: c1e34bf06baf1ea974ad18b724413618 ****/ + /****** DE_Provider::Read ******/ + /****** md5 signature: c1e34bf06baf1ea974ad18b724413618 ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -750,8 +750,8 @@ Reads a cad file, according internal configuration @param[in] thepath path to th ") Read; virtual Standard_Boolean Read(TCollection_AsciiString thePath, const opencascade::handle & theDocument, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Read ******************/ - /**** md5 signature: 55639ad04662343e547548226928d55b ****/ + /****** DE_Provider::Read ******/ + /****** md5 signature: 55639ad04662343e547548226928d55b ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -771,8 +771,8 @@ Reads a cad file, according internal configuration @param[in] thepath path to th ") Read; virtual Standard_Boolean Read(TCollection_AsciiString thePath, TopoDS_Shape & theShape, opencascade::handle & theWS, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Read ******************/ - /**** md5 signature: dccc17e0a0a544feace2161f02bcc4e6 ****/ + /****** DE_Provider::Read ******/ + /****** md5 signature: dccc17e0a0a544feace2161f02bcc4e6 ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -791,8 +791,8 @@ Reads a cad file, according internal configuration @param[in] thepath path to th ") Read; virtual Standard_Boolean Read(TCollection_AsciiString thePath, TopoDS_Shape & theShape, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** SetNode ******************/ - /**** md5 signature: 6357926adf4af2af0332dfba77e7d554 ****/ + /****** DE_Provider::SetNode ******/ + /****** md5 signature: 6357926adf4af2af0332dfba77e7d554 ******/ %feature("compactdefaultargs") SetNode; %feature("autodoc", " Parameters @@ -809,8 +809,8 @@ Sets internal configuration node @param[in] thenode configuration node to set. ") SetNode; void SetNode(const opencascade::handle & theNode); - /****************** Write ******************/ - /**** md5 signature: f341356a003498c8128edb7fbe413575 ****/ + /****** DE_Provider::Write ******/ + /****** md5 signature: f341356a003498c8128edb7fbe413575 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -830,8 +830,8 @@ Writes a cad file, according internal configuration @param[in] thepath path to t ") Write; virtual Standard_Boolean Write(TCollection_AsciiString thePath, const opencascade::handle & theDocument, opencascade::handle & theWS, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Write ******************/ - /**** md5 signature: 2e47d8fb696b938e5600c74ce12da037 ****/ + /****** DE_Provider::Write ******/ + /****** md5 signature: 2e47d8fb696b938e5600c74ce12da037 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -850,8 +850,8 @@ Writes a cad file, according internal configuration @param[in] thepath path to t ") Write; virtual Standard_Boolean Write(TCollection_AsciiString thePath, const opencascade::handle & theDocument, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Write ******************/ - /**** md5 signature: 368389284ef9549d28132af2ec7852cc ****/ + /****** DE_Provider::Write ******/ + /****** md5 signature: 368389284ef9549d28132af2ec7852cc ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -871,8 +871,8 @@ Writes a cad file, according internal configuration @param[in] thepath path to t ") Write; virtual Standard_Boolean Write(TCollection_AsciiString thePath, const TopoDS_Shape & theShape, opencascade::handle & theWS, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Write ******************/ - /**** md5 signature: 73e0be0cefb41c11946f9e840381252b ****/ + /****** DE_Provider::Write ******/ + /****** md5 signature: 73e0be0cefb41c11946f9e840381252b ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -908,8 +908,8 @@ Writes a cad file, according internal configuration @param[in] thepath path to t class DE_Wrapper : public Standard_Transient { public: DE_ConfigurationNode::DE_SectionGlobal GlobalParameters; - /****************** DE_Wrapper ******************/ - /**** md5 signature: cab56560ee66ff0a167a8682110f3c23 ****/ + /****** DE_Wrapper::DE_Wrapper ******/ + /****** md5 signature: cab56560ee66ff0a167a8682110f3c23 ******/ %feature("compactdefaultargs") DE_Wrapper; %feature("autodoc", "Return ------- @@ -921,8 +921,8 @@ Initializes all field by default. ") DE_Wrapper; DE_Wrapper(); - /****************** DE_Wrapper ******************/ - /**** md5 signature: 9df7a61d716d7fb9cf09f05b39fff19e ****/ + /****** DE_Wrapper::DE_Wrapper ******/ + /****** md5 signature: 9df7a61d716d7fb9cf09f05b39fff19e ******/ %feature("compactdefaultargs") DE_Wrapper; %feature("autodoc", " Parameters @@ -939,8 +939,8 @@ Copies values of all fields @param[in] thewrapper object to copy. ") DE_Wrapper; DE_Wrapper(const opencascade::handle & theWrapper); - /****************** Bind ******************/ - /**** md5 signature: 25c481436cdaae1e3ed686394dd61ae2 ****/ + /****** DE_Wrapper::Bind ******/ + /****** md5 signature: 25c481436cdaae1e3ed686394dd61ae2 ******/ %feature("compactdefaultargs") Bind; %feature("autodoc", " Parameters @@ -957,8 +957,8 @@ Creates new node copy and adds to the map @param[in] thenode input node to copy ") Bind; Standard_Boolean Bind(const opencascade::handle & theNode); - /****************** ChangePriority ******************/ - /**** md5 signature: e156ca6527dd6624205892852e05b609 ****/ + /****** DE_Wrapper::ChangePriority ******/ + /****** md5 signature: e156ca6527dd6624205892852e05b609 ******/ %feature("compactdefaultargs") ChangePriority; %feature("autodoc", " Parameters @@ -977,8 +977,8 @@ Changes provider priority to one format if it exists @param[in] theformat input ") ChangePriority; void ChangePriority(TCollection_AsciiString theFormat, const TColStd_ListOfAsciiString & theVendorPriority, const Standard_Boolean theToDisable = Standard_False); - /****************** ChangePriority ******************/ - /**** md5 signature: 9ae8e808309bf1f6a3804b1ac5811235 ****/ + /****** DE_Wrapper::ChangePriority ******/ + /****** md5 signature: 9ae8e808309bf1f6a3804b1ac5811235 ******/ %feature("compactdefaultargs") ChangePriority; %feature("autodoc", " Parameters @@ -996,8 +996,8 @@ Changes provider priority to all loaded nodes @param[in] thevendorpriority prior ") ChangePriority; void ChangePriority(const TColStd_ListOfAsciiString & theVendorPriority, const Standard_Boolean theToDisable = Standard_False); - /****************** Copy ******************/ - /**** md5 signature: eda87f309cc4af4bc0dc983df7323008 ****/ + /****** DE_Wrapper::Copy ******/ + /****** md5 signature: eda87f309cc4af4bc0dc983df7323008 ******/ %feature("compactdefaultargs") Copy; %feature("autodoc", "Return ------- @@ -1009,8 +1009,8 @@ Copies values of all fields return new object with the same field values. ") Copy; virtual opencascade::handle Copy(); - /****************** Find ******************/ - /**** md5 signature: 98cf7f9b76f8dd3c2ea6d6377f80054b ****/ + /****** DE_Wrapper::Find ******/ + /****** md5 signature: 98cf7f9b76f8dd3c2ea6d6377f80054b ******/ %feature("compactdefaultargs") Find; %feature("autodoc", " Parameters @@ -1029,8 +1029,8 @@ Finds a node associated with input format and vendor @param[in] theformat input ") Find; Standard_Boolean Find(TCollection_AsciiString theFormat, TCollection_AsciiString theVendor, opencascade::handle & theNode); - /****************** FindProvider ******************/ - /**** md5 signature: 7de521c2a889b057519978daf75f4f9c ****/ + /****** DE_Wrapper::FindProvider ******/ + /****** md5 signature: 7de521c2a889b057519978daf75f4f9c ******/ %feature("compactdefaultargs") FindProvider; %feature("autodoc", " Parameters @@ -1049,8 +1049,8 @@ Find available provider from the configuration. if there are several providers, ") FindProvider; virtual Standard_Boolean FindProvider(TCollection_AsciiString thePath, const Standard_Boolean theToImport, opencascade::handle & theProvider); - /****************** GlobalLoadMutex ******************/ - /**** md5 signature: 697f6434ea0d77c8fc11f1d70733107a ****/ + /****** DE_Wrapper::GlobalLoadMutex ******/ + /****** md5 signature: 697f6434ea0d77c8fc11f1d70733107a ******/ %feature("compactdefaultargs") GlobalLoadMutex; %feature("autodoc", "Return ------- @@ -1062,8 +1062,8 @@ No available documentation. ") GlobalLoadMutex; static Standard_Mutex & GlobalLoadMutex(); - /****************** GlobalWrapper ******************/ - /**** md5 signature: ace26dd3eb9eb53a4aa43a02d795749b ****/ + /****** DE_Wrapper::GlobalWrapper ******/ + /****** md5 signature: ace26dd3eb9eb53a4aa43a02d795749b ******/ %feature("compactdefaultargs") GlobalWrapper; %feature("autodoc", "Return ------- @@ -1075,8 +1075,8 @@ Gets global configuration singleton. if wrapper is not set, create it by default ") GlobalWrapper; static const opencascade::handle & GlobalWrapper(); - /****************** KeepUpdates ******************/ - /**** md5 signature: 544bb1c1219d5ad8a52415cd9d472045 ****/ + /****** DE_Wrapper::KeepUpdates ******/ + /****** md5 signature: 544bb1c1219d5ad8a52415cd9d472045 ******/ %feature("compactdefaultargs") KeepUpdates; %feature("autodoc", "Return ------- @@ -1088,8 +1088,8 @@ Gets flag that keeps changes on configuration nodes which are being updated, fal ") KeepUpdates; Standard_Boolean KeepUpdates(); - /****************** Load ******************/ - /**** md5 signature: e38468f71a09d1e0264cdd36b0ce0aec ****/ + /****** DE_Wrapper::Load ******/ + /****** md5 signature: e38468f71a09d1e0264cdd36b0ce0aec ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -1107,8 +1107,8 @@ Updates values according the resource file @param[in] theresource file path to r ") Load; Standard_Boolean Load(TCollection_AsciiString theResource = "", const Standard_Boolean theIsRecursive = Standard_True); - /****************** Load ******************/ - /**** md5 signature: d8568a3d1c2509fb6a86ee649f6b430c ****/ + /****** DE_Wrapper::Load ******/ + /****** md5 signature: d8568a3d1c2509fb6a86ee649f6b430c ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -1126,8 +1126,8 @@ Updates values according the resource @param[in] theresource input resource to u ") Load; Standard_Boolean Load(const opencascade::handle & theResource, const Standard_Boolean theIsRecursive = Standard_True); - /****************** Nodes ******************/ - /**** md5 signature: cd4f7b408a19aecbbaabce1f082f6f4b ****/ + /****** DE_Wrapper::Nodes ******/ + /****** md5 signature: cd4f7b408a19aecbbaabce1f082f6f4b ******/ %feature("compactdefaultargs") Nodes; %feature("autodoc", "Return ------- @@ -1139,8 +1139,8 @@ Gets format map, contains vendor map with nodes return internal map of formats. ") Nodes; const DE_ConfigurationFormatMap & Nodes(); - /****************** Read ******************/ - /**** md5 signature: 07afd098e3ea845271c66b1665ad0b77 ****/ + /****** DE_Wrapper::Read ******/ + /****** md5 signature: 07afd098e3ea845271c66b1665ad0b77 ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -1160,8 +1160,8 @@ Reads a cad file, according internal configuration @param[in] thepath path to th ") Read; Standard_Boolean Read(TCollection_AsciiString thePath, const opencascade::handle & theDocument, opencascade::handle & theWS, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Read ******************/ - /**** md5 signature: 6d5a018f6898d40e701b1edd5451a141 ****/ + /****** DE_Wrapper::Read ******/ + /****** md5 signature: 6d5a018f6898d40e701b1edd5451a141 ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -1180,8 +1180,8 @@ Reads a cad file, according internal configuration @param[in] thepath path to th ") Read; Standard_Boolean Read(TCollection_AsciiString thePath, const opencascade::handle & theDocument, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Read ******************/ - /**** md5 signature: 33ad960c8c398403758f27e8591bde70 ****/ + /****** DE_Wrapper::Read ******/ + /****** md5 signature: 33ad960c8c398403758f27e8591bde70 ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -1201,8 +1201,8 @@ Reads a cad file, according internal configuration @param[in] thepath path to th ") Read; Standard_Boolean Read(TCollection_AsciiString thePath, TopoDS_Shape & theShape, opencascade::handle & theWS, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Read ******************/ - /**** md5 signature: ba650fdec802d5e46b2a5c384d97cdcb ****/ + /****** DE_Wrapper::Read ******/ + /****** md5 signature: ba650fdec802d5e46b2a5c384d97cdcb ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -1221,8 +1221,8 @@ Reads a cad file, according internal configuration @param[in] thepath path to th ") Read; Standard_Boolean Read(TCollection_AsciiString thePath, TopoDS_Shape & theShape, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Save ******************/ - /**** md5 signature: 7d9531bb632f8f4fce109a1374d3bb53 ****/ + /****** DE_Wrapper::Save ******/ + /****** md5 signature: 7d9531bb632f8f4fce109a1374d3bb53 ******/ %feature("compactdefaultargs") Save; %feature("autodoc", " Parameters @@ -1242,8 +1242,8 @@ Writes configuration to the resource file @param[in] theresourcepath file path t ") Save; Standard_Boolean Save(TCollection_AsciiString theResourcePath, const Standard_Boolean theIsRecursive = Standard_True, const TColStd_ListOfAsciiString & theFormats = TColStd_ListOfAsciiString(), const TColStd_ListOfAsciiString & theVendors = TColStd_ListOfAsciiString()); - /****************** Save ******************/ - /**** md5 signature: 53550bbdecde27c0dd886095bf29bd98 ****/ + /****** DE_Wrapper::Save ******/ + /****** md5 signature: 53550bbdecde27c0dd886095bf29bd98 ******/ %feature("compactdefaultargs") Save; %feature("autodoc", " Parameters @@ -1262,8 +1262,8 @@ Writes configuration to the string @param[in] theisrecursive flag to write value ") Save; TCollection_AsciiString Save(const Standard_Boolean theIsRecursive = Standard_True, const TColStd_ListOfAsciiString & theFormats = TColStd_ListOfAsciiString(), const TColStd_ListOfAsciiString & theVendors = TColStd_ListOfAsciiString()); - /****************** SetGlobalWrapper ******************/ - /**** md5 signature: c12f22416c96f19cad70ed542d976aec ****/ + /****** DE_Wrapper::SetGlobalWrapper ******/ + /****** md5 signature: c12f22416c96f19cad70ed542d976aec ******/ %feature("compactdefaultargs") SetGlobalWrapper; %feature("autodoc", " Parameters @@ -1280,8 +1280,8 @@ Sets global configuration singleton @param[in] thewrapper object to set as globa ") SetGlobalWrapper; static void SetGlobalWrapper(const opencascade::handle & theWrapper); - /****************** SetKeepUpdates ******************/ - /**** md5 signature: 93e00676fa5dea60bfa87b89e1017a3f ****/ + /****** DE_Wrapper::SetKeepUpdates ******/ + /****** md5 signature: 93e00676fa5dea60bfa87b89e1017a3f ******/ %feature("compactdefaultargs") SetKeepUpdates; %feature("autodoc", " Parameters @@ -1298,8 +1298,8 @@ Sets flag that keeps changes on configuration nodes which are being updated, fal ") SetKeepUpdates; void SetKeepUpdates(const Standard_Boolean theToKeepUpdates); - /****************** UnBind ******************/ - /**** md5 signature: a24be7b2a3b0d23c7167000ca320b6d1 ****/ + /****** DE_Wrapper::UnBind ******/ + /****** md5 signature: a24be7b2a3b0d23c7167000ca320b6d1 ******/ %feature("compactdefaultargs") UnBind; %feature("autodoc", " Parameters @@ -1316,8 +1316,8 @@ Removes node with the same type from the map @param[in] thenode input node to re ") UnBind; Standard_Boolean UnBind(const opencascade::handle & theNode); - /****************** UpdateLoad ******************/ - /**** md5 signature: e6ea8d1aa59c1e0ab1496dac5ec01fcf ****/ + /****** DE_Wrapper::UpdateLoad ******/ + /****** md5 signature: e6ea8d1aa59c1e0ab1496dac5ec01fcf ******/ %feature("compactdefaultargs") UpdateLoad; %feature("autodoc", " Parameters @@ -1334,8 +1334,8 @@ Updates all registered nodes, all changes will be saved in nodes @param[in] thet ") UpdateLoad; void UpdateLoad(const Standard_Boolean theToForceUpdate = Standard_False); - /****************** Write ******************/ - /**** md5 signature: 854c168c488f764c7b691b8074994e37 ****/ + /****** DE_Wrapper::Write ******/ + /****** md5 signature: 854c168c488f764c7b691b8074994e37 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -1355,8 +1355,8 @@ Writes a cad file, according internal configuration @param[in] thepath path to t ") Write; Standard_Boolean Write(TCollection_AsciiString thePath, const opencascade::handle & theDocument, opencascade::handle & theWS, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Write ******************/ - /**** md5 signature: 43124dc92a954a7ec3b4993ab1810406 ****/ + /****** DE_Wrapper::Write ******/ + /****** md5 signature: 43124dc92a954a7ec3b4993ab1810406 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -1375,8 +1375,8 @@ Writes a cad file, according internal configuration @param[in] thepath path to t ") Write; Standard_Boolean Write(TCollection_AsciiString thePath, const opencascade::handle & theDocument, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Write ******************/ - /**** md5 signature: 0a31da375f98721ebf0da0ae8fdec42d ****/ + /****** DE_Wrapper::Write ******/ + /****** md5 signature: 0a31da375f98721ebf0da0ae8fdec42d ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -1396,8 +1396,8 @@ Writes a cad file, according internal configuration @param[in] thepath path to t ") Write; Standard_Boolean Write(TCollection_AsciiString thePath, const TopoDS_Shape & theShape, opencascade::handle & theWS, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Write ******************/ - /**** md5 signature: 6aee5229322f053659fa9a59408599ad ****/ + /****** DE_Wrapper::Write ******/ + /****** md5 signature: 6aee5229322f053659fa9a59408599ad ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/DEBRepCascade.i b/src/SWIG_files/wrapper/DEBRepCascade.i index 56ebb5d8c..be0583d8d 100644 --- a/src/SWIG_files/wrapper/DEBRepCascade.i +++ b/src/SWIG_files/wrapper/DEBRepCascade.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define DEBREPCASCADEDOCSTRING "DEBRepCascade module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_debrepcascade.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_debrepcascade.html" %enddef %module (package="OCC.Core", docstring=DEBREPCASCADEDOCSTRING) DEBRepCascade @@ -107,8 +107,8 @@ class DEBRepCascade_ConfigurationNode : public DE_ConfigurationNode { public: class DEBRep_InternalSection {}; DEBRep_InternalSection InternalParameters; - /****************** DEBRepCascade_ConfigurationNode ******************/ - /**** md5 signature: fec3c8e82c462df89bb2c327879d19ca ****/ + /****** DEBRepCascade_ConfigurationNode::DEBRepCascade_ConfigurationNode ******/ + /****** md5 signature: fec3c8e82c462df89bb2c327879d19ca ******/ %feature("compactdefaultargs") DEBRepCascade_ConfigurationNode; %feature("autodoc", "Return ------- @@ -120,8 +120,8 @@ Initializes all field by default. ") DEBRepCascade_ConfigurationNode; DEBRepCascade_ConfigurationNode(); - /****************** DEBRepCascade_ConfigurationNode ******************/ - /**** md5 signature: 1b6dc3286b5e6646ee8f39c1df6ed0b7 ****/ + /****** DEBRepCascade_ConfigurationNode::DEBRepCascade_ConfigurationNode ******/ + /****** md5 signature: 1b6dc3286b5e6646ee8f39c1df6ed0b7 ******/ %feature("compactdefaultargs") DEBRepCascade_ConfigurationNode; %feature("autodoc", " Parameters @@ -138,8 +138,8 @@ Copies values of all fields @param[in] thenode object to copy. ") DEBRepCascade_ConfigurationNode; DEBRepCascade_ConfigurationNode(const opencascade::handle & theNode); - /****************** BuildProvider ******************/ - /**** md5 signature: 732af66bf7bddbff6fa20c9629ec35a7 ****/ + /****** DEBRepCascade_ConfigurationNode::BuildProvider ******/ + /****** md5 signature: 732af66bf7bddbff6fa20c9629ec35a7 ******/ %feature("compactdefaultargs") BuildProvider; %feature("autodoc", "Return ------- @@ -151,8 +151,8 @@ Creates new provider for the own format return new created provider. ") BuildProvider; virtual opencascade::handle BuildProvider(); - /****************** CheckContent ******************/ - /**** md5 signature: 2a770b41fb754bfe0ef0260c549f4919 ****/ + /****** DEBRepCascade_ConfigurationNode::CheckContent ******/ + /****** md5 signature: 2a770b41fb754bfe0ef0260c549f4919 ******/ %feature("compactdefaultargs") CheckContent; %feature("autodoc", " Parameters @@ -169,8 +169,8 @@ Checks the file content to verify a format @param[in] thebuffer read stream buff ") CheckContent; virtual bool CheckContent(const opencascade::handle & theBuffer); - /****************** Copy ******************/ - /**** md5 signature: 4559608ebdab2961e97de40732291656 ****/ + /****** DEBRepCascade_ConfigurationNode::Copy ******/ + /****** md5 signature: 4559608ebdab2961e97de40732291656 ******/ %feature("compactdefaultargs") Copy; %feature("autodoc", "Return ------- @@ -182,8 +182,8 @@ Copies values of all fields return new object with the same field values. ") Copy; virtual opencascade::handle Copy(); - /****************** GetExtensions ******************/ - /**** md5 signature: a58fd9c22a501a38d695eed6406f94bb ****/ + /****** DEBRepCascade_ConfigurationNode::GetExtensions ******/ + /****** md5 signature: a58fd9c22a501a38d695eed6406f94bb ******/ %feature("compactdefaultargs") GetExtensions; %feature("autodoc", "Return ------- @@ -195,8 +195,8 @@ Gets list of supported file extensions return list of extensions. ") GetExtensions; virtual TColStd_ListOfAsciiString GetExtensions(); - /****************** GetFormat ******************/ - /**** md5 signature: 3a7e97ac1131aefae2f717c160d31ca9 ****/ + /****** DEBRepCascade_ConfigurationNode::GetFormat ******/ + /****** md5 signature: 3a7e97ac1131aefae2f717c160d31ca9 ******/ %feature("compactdefaultargs") GetFormat; %feature("autodoc", "Return ------- @@ -208,8 +208,8 @@ Gets cad format name of associated provider return provider cad format. ") GetFormat; virtual TCollection_AsciiString GetFormat(); - /****************** GetVendor ******************/ - /**** md5 signature: dec3ae3842639c0f3f7b51f11891135d ****/ + /****** DEBRepCascade_ConfigurationNode::GetVendor ******/ + /****** md5 signature: dec3ae3842639c0f3f7b51f11891135d ******/ %feature("compactdefaultargs") GetVendor; %feature("autodoc", "Return ------- @@ -221,8 +221,8 @@ Gets provider's vendor name of associated provider return provider's vendor name ") GetVendor; virtual TCollection_AsciiString GetVendor(); - /****************** IsExportSupported ******************/ - /**** md5 signature: 7b5a27f839d52b595deb06dd28df5230 ****/ + /****** DEBRepCascade_ConfigurationNode::IsExportSupported ******/ + /****** md5 signature: 7b5a27f839d52b595deb06dd28df5230 ******/ %feature("compactdefaultargs") IsExportSupported; %feature("autodoc", "Return ------- @@ -234,8 +234,8 @@ Checks the export supporting return true if export is supported. ") IsExportSupported; virtual bool IsExportSupported(); - /****************** IsImportSupported ******************/ - /**** md5 signature: 54f008ecb7de4dd5dcaeefb3d1d06abc ****/ + /****** DEBRepCascade_ConfigurationNode::IsImportSupported ******/ + /****** md5 signature: 54f008ecb7de4dd5dcaeefb3d1d06abc ******/ %feature("compactdefaultargs") IsImportSupported; %feature("autodoc", "Return ------- @@ -247,8 +247,8 @@ Checks the import supporting return true if import is supported. ") IsImportSupported; virtual bool IsImportSupported(); - /****************** Load ******************/ - /**** md5 signature: 994009254510d81a5f0f9a326a356850 ****/ + /****** DEBRepCascade_ConfigurationNode::Load ******/ + /****** md5 signature: 994009254510d81a5f0f9a326a356850 ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -265,8 +265,8 @@ Updates values according the resource @param[in] theresource input resource to u ") Load; virtual bool Load(const opencascade::handle & theResource); - /****************** Save ******************/ - /**** md5 signature: d6023e92d8565d8e19b0fc2ce7e2a326 ****/ + /****** DEBRepCascade_ConfigurationNode::Save ******/ + /****** md5 signature: d6023e92d8565d8e19b0fc2ce7e2a326 ******/ %feature("compactdefaultargs") Save; %feature("autodoc", "Return ------- @@ -294,8 +294,8 @@ Writes configuration to the string return result resource string. *******************************/ class DEBRepCascade_Provider : public DE_Provider { public: - /****************** DEBRepCascade_Provider ******************/ - /**** md5 signature: 6bd6dbf02ce8868a36511462f0ecb46d ****/ + /****** DEBRepCascade_Provider::DEBRepCascade_Provider ******/ + /****** md5 signature: 6bd6dbf02ce8868a36511462f0ecb46d ******/ %feature("compactdefaultargs") DEBRepCascade_Provider; %feature("autodoc", "Return ------- @@ -307,8 +307,8 @@ Default constructor configure translation process with global configuration. ") DEBRepCascade_Provider; DEBRepCascade_Provider(); - /****************** DEBRepCascade_Provider ******************/ - /**** md5 signature: e594eaa8b32df3508c5c521e6fcb8375 ****/ + /****** DEBRepCascade_Provider::DEBRepCascade_Provider ******/ + /****** md5 signature: e594eaa8b32df3508c5c521e6fcb8375 ******/ %feature("compactdefaultargs") DEBRepCascade_Provider; %feature("autodoc", " Parameters @@ -325,8 +325,8 @@ Configure translation process @param[in] thenode object to init the de_provider. ") DEBRepCascade_Provider; DEBRepCascade_Provider(const opencascade::handle & theNode); - /****************** GetFormat ******************/ - /**** md5 signature: 3a7e97ac1131aefae2f717c160d31ca9 ****/ + /****** DEBRepCascade_Provider::GetFormat ******/ + /****** md5 signature: 3a7e97ac1131aefae2f717c160d31ca9 ******/ %feature("compactdefaultargs") GetFormat; %feature("autodoc", "Return ------- @@ -338,8 +338,8 @@ Gets cad format name of associated provider return provider cad format. ") GetFormat; virtual TCollection_AsciiString GetFormat(); - /****************** GetVendor ******************/ - /**** md5 signature: dec3ae3842639c0f3f7b51f11891135d ****/ + /****** DEBRepCascade_Provider::GetVendor ******/ + /****** md5 signature: dec3ae3842639c0f3f7b51f11891135d ******/ %feature("compactdefaultargs") GetVendor; %feature("autodoc", "Return ------- @@ -351,8 +351,8 @@ Gets provider's vendor name of associated provider return provider's vendor name ") GetVendor; virtual TCollection_AsciiString GetVendor(); - /****************** Read ******************/ - /**** md5 signature: 5da3d196d6292385962a1e60f3dec8a0 ****/ + /****** DEBRepCascade_Provider::Read ******/ + /****** md5 signature: 5da3d196d6292385962a1e60f3dec8a0 ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -372,8 +372,8 @@ Reads a cad file, according internal configuration @param[in] thepath path to th ") Read; virtual bool Read(TCollection_AsciiString thePath, const opencascade::handle & theDocument, opencascade::handle & theWS, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Read ******************/ - /**** md5 signature: ec9914af037216c0502c72d0c8784072 ****/ + /****** DEBRepCascade_Provider::Read ******/ + /****** md5 signature: ec9914af037216c0502c72d0c8784072 ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -392,8 +392,8 @@ Reads a cad file, according internal configuration @param[in] thepath path to th ") Read; virtual bool Read(TCollection_AsciiString thePath, const opencascade::handle & theDocument, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Read ******************/ - /**** md5 signature: f5c487132f5fe207a43ed7a7e7ce6afc ****/ + /****** DEBRepCascade_Provider::Read ******/ + /****** md5 signature: f5c487132f5fe207a43ed7a7e7ce6afc ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -413,8 +413,8 @@ Reads a cad file, according internal configuration @param[in] thepath path to th ") Read; virtual bool Read(TCollection_AsciiString thePath, TopoDS_Shape & theShape, opencascade::handle & theWS, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Read ******************/ - /**** md5 signature: 25ccf35b1d33bce5d3311fc0dff44615 ****/ + /****** DEBRepCascade_Provider::Read ******/ + /****** md5 signature: 25ccf35b1d33bce5d3311fc0dff44615 ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -433,8 +433,8 @@ Reads a cad file, according internal configuration @param[in] thepath path to th ") Read; virtual bool Read(TCollection_AsciiString thePath, TopoDS_Shape & theShape, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Write ******************/ - /**** md5 signature: d1d3f520ef648333a2d1d51e7ecf7636 ****/ + /****** DEBRepCascade_Provider::Write ******/ + /****** md5 signature: d1d3f520ef648333a2d1d51e7ecf7636 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -454,8 +454,8 @@ Writes a cad file, according internal configuration @param[in] thepath path to t ") Write; virtual bool Write(TCollection_AsciiString thePath, const opencascade::handle & theDocument, opencascade::handle & theWS, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Write ******************/ - /**** md5 signature: 5d65a8a954decd50174318516f7bc4f8 ****/ + /****** DEBRepCascade_Provider::Write ******/ + /****** md5 signature: 5d65a8a954decd50174318516f7bc4f8 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -474,8 +474,8 @@ Writes a cad file, according internal configuration @param[in] thepath path to t ") Write; virtual bool Write(TCollection_AsciiString thePath, const opencascade::handle & theDocument, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Write ******************/ - /**** md5 signature: 0d58c2b5e69c703850ad85ac36436410 ****/ + /****** DEBRepCascade_Provider::Write ******/ + /****** md5 signature: 0d58c2b5e69c703850ad85ac36436410 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -495,8 +495,8 @@ Writes a cad file, according internal configuration @param[in] thepath path to t ") Write; virtual bool Write(TCollection_AsciiString thePath, const TopoDS_Shape & theShape, opencascade::handle & theWS, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Write ******************/ - /**** md5 signature: 2e3eef7d4e677163a76bbbdf8a15c79f ****/ + /****** DEBRepCascade_Provider::Write ******/ + /****** md5 signature: 2e3eef7d4e677163a76bbbdf8a15c79f ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/DEXCAFCascade.i b/src/SWIG_files/wrapper/DEXCAFCascade.i index 4e10dbd2f..f7273c7a7 100644 --- a/src/SWIG_files/wrapper/DEXCAFCascade.i +++ b/src/SWIG_files/wrapper/DEXCAFCascade.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define DEXCAFCASCADEDOCSTRING "DEXCAFCascade module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_dexcafcascade.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_dexcafcascade.html" %enddef %module (package="OCC.Core", docstring=DEXCAFCASCADEDOCSTRING) DEXCAFCascade @@ -107,8 +107,8 @@ class DEXCAFCascade_ConfigurationNode : public DE_ConfigurationNode { public: class XCAFDoc_InternalSection {}; XCAFDoc_InternalSection InternalParameters; - /****************** DEXCAFCascade_ConfigurationNode ******************/ - /**** md5 signature: 9e2a4140d3abc36bc0fde2d09df7737f ****/ + /****** DEXCAFCascade_ConfigurationNode::DEXCAFCascade_ConfigurationNode ******/ + /****** md5 signature: 9e2a4140d3abc36bc0fde2d09df7737f ******/ %feature("compactdefaultargs") DEXCAFCascade_ConfigurationNode; %feature("autodoc", "Return ------- @@ -120,8 +120,8 @@ Initializes all field by default. ") DEXCAFCascade_ConfigurationNode; DEXCAFCascade_ConfigurationNode(); - /****************** DEXCAFCascade_ConfigurationNode ******************/ - /**** md5 signature: 3e6d3c17f636e845ab2492dcf8531bb0 ****/ + /****** DEXCAFCascade_ConfigurationNode::DEXCAFCascade_ConfigurationNode ******/ + /****** md5 signature: 3e6d3c17f636e845ab2492dcf8531bb0 ******/ %feature("compactdefaultargs") DEXCAFCascade_ConfigurationNode; %feature("autodoc", " Parameters @@ -138,8 +138,8 @@ Copies values of all fields @param[in] thenode object to copy. ") DEXCAFCascade_ConfigurationNode; DEXCAFCascade_ConfigurationNode(const opencascade::handle & theNode); - /****************** BuildProvider ******************/ - /**** md5 signature: 732af66bf7bddbff6fa20c9629ec35a7 ****/ + /****** DEXCAFCascade_ConfigurationNode::BuildProvider ******/ + /****** md5 signature: 732af66bf7bddbff6fa20c9629ec35a7 ******/ %feature("compactdefaultargs") BuildProvider; %feature("autodoc", "Return ------- @@ -151,8 +151,8 @@ Creates new provider for the own format return new created provider. ") BuildProvider; virtual opencascade::handle BuildProvider(); - /****************** CheckContent ******************/ - /**** md5 signature: 2a770b41fb754bfe0ef0260c549f4919 ****/ + /****** DEXCAFCascade_ConfigurationNode::CheckContent ******/ + /****** md5 signature: 2a770b41fb754bfe0ef0260c549f4919 ******/ %feature("compactdefaultargs") CheckContent; %feature("autodoc", " Parameters @@ -169,8 +169,8 @@ Checks the file content to verify a format @param[in] thebuffer read stream buff ") CheckContent; virtual bool CheckContent(const opencascade::handle & theBuffer); - /****************** Copy ******************/ - /**** md5 signature: 4559608ebdab2961e97de40732291656 ****/ + /****** DEXCAFCascade_ConfigurationNode::Copy ******/ + /****** md5 signature: 4559608ebdab2961e97de40732291656 ******/ %feature("compactdefaultargs") Copy; %feature("autodoc", "Return ------- @@ -182,8 +182,8 @@ Copies values of all fields return new object with the same field values. ") Copy; virtual opencascade::handle Copy(); - /****************** GetExtensions ******************/ - /**** md5 signature: a58fd9c22a501a38d695eed6406f94bb ****/ + /****** DEXCAFCascade_ConfigurationNode::GetExtensions ******/ + /****** md5 signature: a58fd9c22a501a38d695eed6406f94bb ******/ %feature("compactdefaultargs") GetExtensions; %feature("autodoc", "Return ------- @@ -195,8 +195,8 @@ Gets list of supported file extensions return list of extensions. ") GetExtensions; virtual TColStd_ListOfAsciiString GetExtensions(); - /****************** GetFormat ******************/ - /**** md5 signature: 3a7e97ac1131aefae2f717c160d31ca9 ****/ + /****** DEXCAFCascade_ConfigurationNode::GetFormat ******/ + /****** md5 signature: 3a7e97ac1131aefae2f717c160d31ca9 ******/ %feature("compactdefaultargs") GetFormat; %feature("autodoc", "Return ------- @@ -208,8 +208,8 @@ Gets cad format name of associated provider return provider cad format. ") GetFormat; virtual TCollection_AsciiString GetFormat(); - /****************** GetVendor ******************/ - /**** md5 signature: dec3ae3842639c0f3f7b51f11891135d ****/ + /****** DEXCAFCascade_ConfigurationNode::GetVendor ******/ + /****** md5 signature: dec3ae3842639c0f3f7b51f11891135d ******/ %feature("compactdefaultargs") GetVendor; %feature("autodoc", "Return ------- @@ -221,8 +221,8 @@ Gets provider's vendor name of associated provider return provider's vendor name ") GetVendor; virtual TCollection_AsciiString GetVendor(); - /****************** IsExportSupported ******************/ - /**** md5 signature: 7b5a27f839d52b595deb06dd28df5230 ****/ + /****** DEXCAFCascade_ConfigurationNode::IsExportSupported ******/ + /****** md5 signature: 7b5a27f839d52b595deb06dd28df5230 ******/ %feature("compactdefaultargs") IsExportSupported; %feature("autodoc", "Return ------- @@ -234,8 +234,8 @@ Checks the export supporting return true if export is supported. ") IsExportSupported; virtual bool IsExportSupported(); - /****************** IsImportSupported ******************/ - /**** md5 signature: 54f008ecb7de4dd5dcaeefb3d1d06abc ****/ + /****** DEXCAFCascade_ConfigurationNode::IsImportSupported ******/ + /****** md5 signature: 54f008ecb7de4dd5dcaeefb3d1d06abc ******/ %feature("compactdefaultargs") IsImportSupported; %feature("autodoc", "Return ------- @@ -247,8 +247,8 @@ Checks the import supporting return true if import is supported. ") IsImportSupported; virtual bool IsImportSupported(); - /****************** Load ******************/ - /**** md5 signature: 994009254510d81a5f0f9a326a356850 ****/ + /****** DEXCAFCascade_ConfigurationNode::Load ******/ + /****** md5 signature: 994009254510d81a5f0f9a326a356850 ******/ %feature("compactdefaultargs") Load; %feature("autodoc", " Parameters @@ -265,8 +265,8 @@ Updates values according the resource @param[in] theresource input resource to u ") Load; virtual bool Load(const opencascade::handle & theResource); - /****************** Save ******************/ - /**** md5 signature: d6023e92d8565d8e19b0fc2ce7e2a326 ****/ + /****** DEXCAFCascade_ConfigurationNode::Save ******/ + /****** md5 signature: d6023e92d8565d8e19b0fc2ce7e2a326 ******/ %feature("compactdefaultargs") Save; %feature("autodoc", "Return ------- @@ -294,8 +294,8 @@ Writes configuration to the string return result resource string. *******************************/ class DEXCAFCascade_Provider : public DE_Provider { public: - /****************** DEXCAFCascade_Provider ******************/ - /**** md5 signature: 1ba19e86b0cd88b901698efeb1b2609f ****/ + /****** DEXCAFCascade_Provider::DEXCAFCascade_Provider ******/ + /****** md5 signature: 1ba19e86b0cd88b901698efeb1b2609f ******/ %feature("compactdefaultargs") DEXCAFCascade_Provider; %feature("autodoc", "Return ------- @@ -307,8 +307,8 @@ Default constructor configure translation process with global configuration. ") DEXCAFCascade_Provider; DEXCAFCascade_Provider(); - /****************** DEXCAFCascade_Provider ******************/ - /**** md5 signature: 365504e35c3fa3970317c40f3a0f5b34 ****/ + /****** DEXCAFCascade_Provider::DEXCAFCascade_Provider ******/ + /****** md5 signature: 365504e35c3fa3970317c40f3a0f5b34 ******/ %feature("compactdefaultargs") DEXCAFCascade_Provider; %feature("autodoc", " Parameters @@ -325,8 +325,8 @@ Configure translation process @param[in] thenode object to copy. ") DEXCAFCascade_Provider; DEXCAFCascade_Provider(const opencascade::handle & theNode); - /****************** GetFormat ******************/ - /**** md5 signature: 3a7e97ac1131aefae2f717c160d31ca9 ****/ + /****** DEXCAFCascade_Provider::GetFormat ******/ + /****** md5 signature: 3a7e97ac1131aefae2f717c160d31ca9 ******/ %feature("compactdefaultargs") GetFormat; %feature("autodoc", "Return ------- @@ -338,8 +338,8 @@ Gets cad format name of associated provider return provider cad format. ") GetFormat; virtual TCollection_AsciiString GetFormat(); - /****************** GetVendor ******************/ - /**** md5 signature: dec3ae3842639c0f3f7b51f11891135d ****/ + /****** DEXCAFCascade_Provider::GetVendor ******/ + /****** md5 signature: dec3ae3842639c0f3f7b51f11891135d ******/ %feature("compactdefaultargs") GetVendor; %feature("autodoc", "Return ------- @@ -351,8 +351,8 @@ Gets provider's vendor name of associated provider return provider's vendor name ") GetVendor; virtual TCollection_AsciiString GetVendor(); - /****************** Read ******************/ - /**** md5 signature: 5da3d196d6292385962a1e60f3dec8a0 ****/ + /****** DEXCAFCascade_Provider::Read ******/ + /****** md5 signature: 5da3d196d6292385962a1e60f3dec8a0 ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -372,8 +372,8 @@ Reads a cad file, according internal configuration @param[in] thepath path to th ") Read; virtual bool Read(TCollection_AsciiString thePath, const opencascade::handle & theDocument, opencascade::handle & theWS, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Read ******************/ - /**** md5 signature: ec9914af037216c0502c72d0c8784072 ****/ + /****** DEXCAFCascade_Provider::Read ******/ + /****** md5 signature: ec9914af037216c0502c72d0c8784072 ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -392,8 +392,8 @@ Reads a cad file, according internal configuration @param[in] thepath path to th ") Read; virtual bool Read(TCollection_AsciiString thePath, const opencascade::handle & theDocument, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Read ******************/ - /**** md5 signature: f5c487132f5fe207a43ed7a7e7ce6afc ****/ + /****** DEXCAFCascade_Provider::Read ******/ + /****** md5 signature: f5c487132f5fe207a43ed7a7e7ce6afc ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -413,8 +413,8 @@ Reads a cad file, according internal configuration @param[in] thepath path to th ") Read; virtual bool Read(TCollection_AsciiString thePath, TopoDS_Shape & theShape, opencascade::handle & theWS, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Read ******************/ - /**** md5 signature: 25ccf35b1d33bce5d3311fc0dff44615 ****/ + /****** DEXCAFCascade_Provider::Read ******/ + /****** md5 signature: 25ccf35b1d33bce5d3311fc0dff44615 ******/ %feature("compactdefaultargs") Read; %feature("autodoc", " Parameters @@ -433,8 +433,8 @@ Reads a cad file, according internal configuration @param[in] thepath path to th ") Read; virtual bool Read(TCollection_AsciiString thePath, TopoDS_Shape & theShape, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Write ******************/ - /**** md5 signature: d1d3f520ef648333a2d1d51e7ecf7636 ****/ + /****** DEXCAFCascade_Provider::Write ******/ + /****** md5 signature: d1d3f520ef648333a2d1d51e7ecf7636 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -454,8 +454,8 @@ Writes a cad file, according internal configuration @param[in] thepath path to t ") Write; virtual bool Write(TCollection_AsciiString thePath, const opencascade::handle & theDocument, opencascade::handle & theWS, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Write ******************/ - /**** md5 signature: 5d65a8a954decd50174318516f7bc4f8 ****/ + /****** DEXCAFCascade_Provider::Write ******/ + /****** md5 signature: 5d65a8a954decd50174318516f7bc4f8 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -474,8 +474,8 @@ Writes a cad file, according internal configuration @param[in] thepath path to t ") Write; virtual bool Write(TCollection_AsciiString thePath, const opencascade::handle & theDocument, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Write ******************/ - /**** md5 signature: 0d58c2b5e69c703850ad85ac36436410 ****/ + /****** DEXCAFCascade_Provider::Write ******/ + /****** md5 signature: 0d58c2b5e69c703850ad85ac36436410 ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters @@ -495,8 +495,8 @@ Writes a cad file, according internal configuration @param[in] thepath path to t ") Write; virtual bool Write(TCollection_AsciiString thePath, const TopoDS_Shape & theShape, opencascade::handle & theWS, const Message_ProgressRange & theProgress = Message_ProgressRange()); - /****************** Write ******************/ - /**** md5 signature: 2e3eef7d4e677163a76bbbdf8a15c79f ****/ + /****** DEXCAFCascade_Provider::Write ******/ + /****** md5 signature: 2e3eef7d4e677163a76bbbdf8a15c79f ******/ %feature("compactdefaultargs") Write; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/Draft.i b/src/SWIG_files/wrapper/Draft.i index 09a6127d9..f5cf15349 100644 --- a/src/SWIG_files/wrapper/Draft.i +++ b/src/SWIG_files/wrapper/Draft.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define DRAFTDOCSTRING "Draft module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_draft.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_draft.html" %enddef %module (package="OCC.Core", docstring=DRAFTDOCSTRING) Draft @@ -125,8 +125,8 @@ typedef NCollection_IndexedDataMap using the direction . the met ***********************/ class Draft_EdgeInfo { public: - /****************** Draft_EdgeInfo ******************/ - /**** md5 signature: 550c9df9a0488d69cdca7e28fb62ed7d ****/ + /****** Draft_EdgeInfo::Draft_EdgeInfo ******/ + /****** md5 signature: 550c9df9a0488d69cdca7e28fb62ed7d ******/ %feature("compactdefaultargs") Draft_EdgeInfo; %feature("autodoc", "Return ------- @@ -171,8 +171,8 @@ No available documentation. ") Draft_EdgeInfo; Draft_EdgeInfo(); - /****************** Draft_EdgeInfo ******************/ - /**** md5 signature: 32faf9b533f6634f32c06fc744729696 ****/ + /****** Draft_EdgeInfo::Draft_EdgeInfo ******/ + /****** md5 signature: 32faf9b533f6634f32c06fc744729696 ******/ %feature("compactdefaultargs") Draft_EdgeInfo; %feature("autodoc", " Parameters @@ -189,8 +189,8 @@ No available documentation. ") Draft_EdgeInfo; Draft_EdgeInfo(const Standard_Boolean HasNewGeometry); - /****************** Add ******************/ - /**** md5 signature: 6a18239b90a20cc9cb60c404eb3bcb6e ****/ + /****** Draft_EdgeInfo::Add ******/ + /****** md5 signature: 6a18239b90a20cc9cb60c404eb3bcb6e ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -207,8 +207,8 @@ No available documentation. ") Add; void Add(const TopoDS_Face & F); - /****************** ChangeFirstPC ******************/ - /**** md5 signature: c39973b37168c95f36ff56bd99525b44 ****/ + /****** Draft_EdgeInfo::ChangeFirstPC ******/ + /****** md5 signature: c39973b37168c95f36ff56bd99525b44 ******/ %feature("compactdefaultargs") ChangeFirstPC; %feature("autodoc", "Return ------- @@ -220,8 +220,8 @@ No available documentation. ") ChangeFirstPC; opencascade::handle & ChangeFirstPC(); - /****************** ChangeGeometry ******************/ - /**** md5 signature: ab61f00777a78cbf8ad401fefb57e065 ****/ + /****** Draft_EdgeInfo::ChangeGeometry ******/ + /****** md5 signature: ab61f00777a78cbf8ad401fefb57e065 ******/ %feature("compactdefaultargs") ChangeGeometry; %feature("autodoc", "Return ------- @@ -233,8 +233,8 @@ No available documentation. ") ChangeGeometry; opencascade::handle & ChangeGeometry(); - /****************** ChangeSecondPC ******************/ - /**** md5 signature: edde882d9b53da4f63b6d7da71b6e7b7 ****/ + /****** Draft_EdgeInfo::ChangeSecondPC ******/ + /****** md5 signature: edde882d9b53da4f63b6d7da71b6e7b7 ******/ %feature("compactdefaultargs") ChangeSecondPC; %feature("autodoc", "Return ------- @@ -246,8 +246,8 @@ No available documentation. ") ChangeSecondPC; opencascade::handle & ChangeSecondPC(); - /****************** FirstFace ******************/ - /**** md5 signature: 73d5fe614486030d467267b05674294d ****/ + /****** Draft_EdgeInfo::FirstFace ******/ + /****** md5 signature: 73d5fe614486030d467267b05674294d ******/ %feature("compactdefaultargs") FirstFace; %feature("autodoc", "Return ------- @@ -259,8 +259,8 @@ No available documentation. ") FirstFace; const TopoDS_Face FirstFace(); - /****************** FirstPC ******************/ - /**** md5 signature: bdfdf78dfbeeb49141a4f72206191bf1 ****/ + /****** Draft_EdgeInfo::FirstPC ******/ + /****** md5 signature: bdfdf78dfbeeb49141a4f72206191bf1 ******/ %feature("compactdefaultargs") FirstPC; %feature("autodoc", "Return ------- @@ -272,8 +272,8 @@ No available documentation. ") FirstPC; const opencascade::handle & FirstPC(); - /****************** Geometry ******************/ - /**** md5 signature: d58817627a13637ceca1407ecdc19cd0 ****/ + /****** Draft_EdgeInfo::Geometry ******/ + /****** md5 signature: d58817627a13637ceca1407ecdc19cd0 ******/ %feature("compactdefaultargs") Geometry; %feature("autodoc", "Return ------- @@ -285,8 +285,8 @@ No available documentation. ") Geometry; const opencascade::handle & Geometry(); - /****************** IsTangent ******************/ - /**** md5 signature: a19d139d03b1a16c5545791a57f0513c ****/ + /****** Draft_EdgeInfo::IsTangent ******/ + /****** md5 signature: a19d139d03b1a16c5545791a57f0513c ******/ %feature("compactdefaultargs") IsTangent; %feature("autodoc", " Parameters @@ -303,8 +303,8 @@ No available documentation. ") IsTangent; Standard_Boolean IsTangent(gp_Pnt & P); - /****************** NewGeometry ******************/ - /**** md5 signature: 737e33ae76e3be5f43dd03c59c3068fa ****/ + /****** Draft_EdgeInfo::NewGeometry ******/ + /****** md5 signature: 737e33ae76e3be5f43dd03c59c3068fa ******/ %feature("compactdefaultargs") NewGeometry; %feature("autodoc", "Return ------- @@ -316,8 +316,8 @@ No available documentation. ") NewGeometry; Standard_Boolean NewGeometry(); - /****************** RootFace ******************/ - /**** md5 signature: 8ddaa1bb319cc46fc9731294149bd597 ****/ + /****** Draft_EdgeInfo::RootFace ******/ + /****** md5 signature: 8ddaa1bb319cc46fc9731294149bd597 ******/ %feature("compactdefaultargs") RootFace; %feature("autodoc", " Parameters @@ -334,8 +334,8 @@ No available documentation. ") RootFace; void RootFace(const TopoDS_Face & F); - /****************** RootFace ******************/ - /**** md5 signature: 98f13ed3fe4d31fdc140449b0bef108c ****/ + /****** Draft_EdgeInfo::RootFace ******/ + /****** md5 signature: 98f13ed3fe4d31fdc140449b0bef108c ******/ %feature("compactdefaultargs") RootFace; %feature("autodoc", "Return ------- @@ -347,8 +347,8 @@ No available documentation. ") RootFace; const TopoDS_Face RootFace(); - /****************** SecondFace ******************/ - /**** md5 signature: 571cd9cc57d087d6b77c1f9cf1da6348 ****/ + /****** Draft_EdgeInfo::SecondFace ******/ + /****** md5 signature: 571cd9cc57d087d6b77c1f9cf1da6348 ******/ %feature("compactdefaultargs") SecondFace; %feature("autodoc", "Return ------- @@ -360,8 +360,8 @@ No available documentation. ") SecondFace; const TopoDS_Face SecondFace(); - /****************** SecondPC ******************/ - /**** md5 signature: 8b570b150499ccc186067191e3f72b58 ****/ + /****** Draft_EdgeInfo::SecondPC ******/ + /****** md5 signature: 8b570b150499ccc186067191e3f72b58 ******/ %feature("compactdefaultargs") SecondPC; %feature("autodoc", "Return ------- @@ -373,8 +373,8 @@ No available documentation. ") SecondPC; const opencascade::handle & SecondPC(); - /****************** SetNewGeometry ******************/ - /**** md5 signature: 074b98438d51c46dd5f6a30b1690133a ****/ + /****** Draft_EdgeInfo::SetNewGeometry ******/ + /****** md5 signature: 074b98438d51c46dd5f6a30b1690133a ******/ %feature("compactdefaultargs") SetNewGeometry; %feature("autodoc", " Parameters @@ -391,8 +391,8 @@ No available documentation. ") SetNewGeometry; void SetNewGeometry(const Standard_Boolean NewGeom); - /****************** Tangent ******************/ - /**** md5 signature: d59a769e05ec5e0c96c6f84def24f7e9 ****/ + /****** Draft_EdgeInfo::Tangent ******/ + /****** md5 signature: d59a769e05ec5e0c96c6f84def24f7e9 ******/ %feature("compactdefaultargs") Tangent; %feature("autodoc", " Parameters @@ -409,8 +409,8 @@ No available documentation. ") Tangent; void Tangent(const gp_Pnt & P); - /****************** Tolerance ******************/ - /**** md5 signature: e925b87131cc380a2e6cb497cb7384fa ****/ + /****** Draft_EdgeInfo::Tolerance ******/ + /****** md5 signature: e925b87131cc380a2e6cb497cb7384fa ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", " Parameters @@ -427,8 +427,8 @@ No available documentation. ") Tolerance; void Tolerance(const Standard_Real tol); - /****************** Tolerance ******************/ - /**** md5 signature: 9e5775014410d884d1a1adc1cd47930b ****/ + /****** Draft_EdgeInfo::Tolerance ******/ + /****** md5 signature: 9e5775014410d884d1a1adc1cd47930b ******/ %feature("compactdefaultargs") Tolerance; %feature("autodoc", "Return ------- @@ -454,8 +454,8 @@ No available documentation. ***********************/ class Draft_FaceInfo { public: - /****************** Draft_FaceInfo ******************/ - /**** md5 signature: f6edc453c2684f1ce978cd05942f8bfa ****/ + /****** Draft_FaceInfo::Draft_FaceInfo ******/ + /****** md5 signature: f6edc453c2684f1ce978cd05942f8bfa ******/ %feature("compactdefaultargs") Draft_FaceInfo; %feature("autodoc", "Return ------- @@ -467,8 +467,8 @@ No available documentation. ") Draft_FaceInfo; Draft_FaceInfo(); - /****************** Draft_FaceInfo ******************/ - /**** md5 signature: d3e40a7c43b56d2afb934b980f03dbb3 ****/ + /****** Draft_FaceInfo::Draft_FaceInfo ******/ + /****** md5 signature: d3e40a7c43b56d2afb934b980f03dbb3 ******/ %feature("compactdefaultargs") Draft_FaceInfo; %feature("autodoc", " Parameters @@ -486,8 +486,8 @@ No available documentation. ") Draft_FaceInfo; Draft_FaceInfo(const opencascade::handle & S, const Standard_Boolean HasNewGeometry); - /****************** Add ******************/ - /**** md5 signature: 6a18239b90a20cc9cb60c404eb3bcb6e ****/ + /****** Draft_FaceInfo::Add ******/ + /****** md5 signature: 6a18239b90a20cc9cb60c404eb3bcb6e ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -504,8 +504,8 @@ No available documentation. ") Add; void Add(const TopoDS_Face & F); - /****************** ChangeCurve ******************/ - /**** md5 signature: e819346faf86cc2bea5f869865af9ed2 ****/ + /****** Draft_FaceInfo::ChangeCurve ******/ + /****** md5 signature: e819346faf86cc2bea5f869865af9ed2 ******/ %feature("compactdefaultargs") ChangeCurve; %feature("autodoc", "Return ------- @@ -517,8 +517,8 @@ No available documentation. ") ChangeCurve; opencascade::handle & ChangeCurve(); - /****************** ChangeGeometry ******************/ - /**** md5 signature: d5e0995865ff37f1bbb71d3d0296f44f ****/ + /****** Draft_FaceInfo::ChangeGeometry ******/ + /****** md5 signature: d5e0995865ff37f1bbb71d3d0296f44f ******/ %feature("compactdefaultargs") ChangeGeometry; %feature("autodoc", "Return ------- @@ -530,8 +530,8 @@ No available documentation. ") ChangeGeometry; opencascade::handle & ChangeGeometry(); - /****************** Curve ******************/ - /**** md5 signature: 976a03829ec92d091e0b58dd7f58e869 ****/ + /****** Draft_FaceInfo::Curve ******/ + /****** md5 signature: 976a03829ec92d091e0b58dd7f58e869 ******/ %feature("compactdefaultargs") Curve; %feature("autodoc", "Return ------- @@ -543,8 +543,8 @@ No available documentation. ") Curve; const opencascade::handle & Curve(); - /****************** FirstFace ******************/ - /**** md5 signature: 73d5fe614486030d467267b05674294d ****/ + /****** Draft_FaceInfo::FirstFace ******/ + /****** md5 signature: 73d5fe614486030d467267b05674294d ******/ %feature("compactdefaultargs") FirstFace; %feature("autodoc", "Return ------- @@ -556,8 +556,8 @@ No available documentation. ") FirstFace; const TopoDS_Face FirstFace(); - /****************** Geometry ******************/ - /**** md5 signature: 363c7d30b26691ad16b94ef8fafddf85 ****/ + /****** Draft_FaceInfo::Geometry ******/ + /****** md5 signature: 363c7d30b26691ad16b94ef8fafddf85 ******/ %feature("compactdefaultargs") Geometry; %feature("autodoc", "Return ------- @@ -569,8 +569,8 @@ No available documentation. ") Geometry; const opencascade::handle & Geometry(); - /****************** NewGeometry ******************/ - /**** md5 signature: 737e33ae76e3be5f43dd03c59c3068fa ****/ + /****** Draft_FaceInfo::NewGeometry ******/ + /****** md5 signature: 737e33ae76e3be5f43dd03c59c3068fa ******/ %feature("compactdefaultargs") NewGeometry; %feature("autodoc", "Return ------- @@ -582,8 +582,8 @@ No available documentation. ") NewGeometry; Standard_Boolean NewGeometry(); - /****************** RootFace ******************/ - /**** md5 signature: 8ddaa1bb319cc46fc9731294149bd597 ****/ + /****** Draft_FaceInfo::RootFace ******/ + /****** md5 signature: 8ddaa1bb319cc46fc9731294149bd597 ******/ %feature("compactdefaultargs") RootFace; %feature("autodoc", " Parameters @@ -600,8 +600,8 @@ No available documentation. ") RootFace; void RootFace(const TopoDS_Face & F); - /****************** RootFace ******************/ - /**** md5 signature: 98f13ed3fe4d31fdc140449b0bef108c ****/ + /****** Draft_FaceInfo::RootFace ******/ + /****** md5 signature: 98f13ed3fe4d31fdc140449b0bef108c ******/ %feature("compactdefaultargs") RootFace; %feature("autodoc", "Return ------- @@ -613,8 +613,8 @@ No available documentation. ") RootFace; const TopoDS_Face RootFace(); - /****************** SecondFace ******************/ - /**** md5 signature: 571cd9cc57d087d6b77c1f9cf1da6348 ****/ + /****** Draft_FaceInfo::SecondFace ******/ + /****** md5 signature: 571cd9cc57d087d6b77c1f9cf1da6348 ******/ %feature("compactdefaultargs") SecondFace; %feature("autodoc", "Return ------- @@ -640,8 +640,8 @@ No available documentation. ***************************/ class Draft_Modification : public BRepTools_Modification { public: - /****************** Draft_Modification ******************/ - /**** md5 signature: 3d3a6ed4845283beaa7fffc60cb99c41 ****/ + /****** Draft_Modification::Draft_Modification ******/ + /****** md5 signature: 3d3a6ed4845283beaa7fffc60cb99c41 ******/ %feature("compactdefaultargs") Draft_Modification; %feature("autodoc", " Parameters @@ -658,8 +658,8 @@ No available documentation. ") Draft_Modification; Draft_Modification(const TopoDS_Shape & S); - /****************** Add ******************/ - /**** md5 signature: 27bb34ce100b2d99d741b10ebd3c13e3 ****/ + /****** Draft_Modification::Add ******/ + /****** md5 signature: 27bb34ce100b2d99d741b10ebd3c13e3 ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -680,8 +680,8 @@ Adds the face f and propagates the draft modification to its neighbour faces if ") Add; Standard_Boolean Add(const TopoDS_Face & F, const gp_Dir & Direction, const Standard_Real Angle, const gp_Pln & NeutralPlane, const Standard_Boolean Flag = Standard_True); - /****************** Clear ******************/ - /**** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ****/ + /****** Draft_Modification::Clear ******/ + /****** md5 signature: ae54be580b423a6eadbe062e0bdb44c2 ******/ %feature("compactdefaultargs") Clear; %feature("autodoc", "Return ------- @@ -693,8 +693,8 @@ Resets on the same shape. ") Clear; void Clear(); - /****************** ConnectedFaces ******************/ - /**** md5 signature: a4fc3d2c43b1adbbbe06cce811df08da ****/ + /****** Draft_Modification::ConnectedFaces ******/ + /****** md5 signature: a4fc3d2c43b1adbbbe06cce811df08da ******/ %feature("compactdefaultargs") ConnectedFaces; %feature("autodoc", " Parameters @@ -711,8 +711,8 @@ Returns all the faces which have been added together with the face . ") ConnectedFaces; const TopTools_ListOfShape & ConnectedFaces(const TopoDS_Face & F); - /****************** Continuity ******************/ - /**** md5 signature: a3c3d5a955b90f2e1cefb3c12dc67277 ****/ + /****** Draft_Modification::Continuity ******/ + /****** md5 signature: a3c3d5a955b90f2e1cefb3c12dc67277 ******/ %feature("compactdefaultargs") Continuity; %feature("autodoc", " Parameters @@ -734,8 +734,8 @@ Returns the continuity of between and . //! is the ") Continuity; GeomAbs_Shape Continuity(const TopoDS_Edge & E, const TopoDS_Face & F1, const TopoDS_Face & F2, const TopoDS_Edge & NewE, const TopoDS_Face & NewF1, const TopoDS_Face & NewF2); - /****************** Error ******************/ - /**** md5 signature: e3e881b71c6af27537c889ff1dd4e542 ****/ + /****** Draft_Modification::Error ******/ + /****** md5 signature: e3e881b71c6af27537c889ff1dd4e542 ******/ %feature("compactdefaultargs") Error; %feature("autodoc", "Return ------- @@ -747,8 +747,8 @@ No available documentation. ") Error; Draft_ErrorStatus Error(); - /****************** Init ******************/ - /**** md5 signature: 5b69b32485b3d9f82ae4abb9c853c3c7 ****/ + /****** Draft_Modification::Init ******/ + /****** md5 signature: 5b69b32485b3d9f82ae4abb9c853c3c7 ******/ %feature("compactdefaultargs") Init; %feature("autodoc", " Parameters @@ -765,8 +765,8 @@ Changes the basis shape and resets. ") Init; void Init(const TopoDS_Shape & S); - /****************** IsDone ******************/ - /**** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ****/ + /****** Draft_Modification::IsDone ******/ + /****** md5 signature: ec0624071ec7da54b3d9dacc7bcb05f9 ******/ %feature("compactdefaultargs") IsDone; %feature("autodoc", "Return ------- @@ -778,8 +778,8 @@ Returns true if perform has been successfully called. otherwise more information ") IsDone; Standard_Boolean IsDone(); - /****************** ModifiedFaces ******************/ - /**** md5 signature: 73e8015abae16637419c4ff99016a307 ****/ + /****** Draft_Modification::ModifiedFaces ******/ + /****** md5 signature: 73e8015abae16637419c4ff99016a307 ******/ %feature("compactdefaultargs") ModifiedFaces; %feature("autodoc", "Return ------- @@ -791,8 +791,8 @@ Returns all the faces on which a modification has been given. ") ModifiedFaces; const TopTools_ListOfShape & ModifiedFaces(); - /****************** NewCurve ******************/ - /**** md5 signature: fae0c201ae8f07a170a1eb576572768a ****/ + /****** Draft_Modification::NewCurve ******/ + /****** md5 signature: fae0c201ae8f07a170a1eb576572768a ******/ %feature("compactdefaultargs") NewCurve; %feature("autodoc", " Parameters @@ -811,8 +811,8 @@ Returns standard_true if the edge has been modified. in this case, is th ") NewCurve; Standard_Boolean NewCurve(const TopoDS_Edge & E, opencascade::handle & C, TopLoc_Location & L, Standard_Real &OutValue); - /****************** NewCurve2d ******************/ - /**** md5 signature: ea858177828b71b789a2564d89f64210 ****/ + /****** Draft_Modification::NewCurve2d ******/ + /****** md5 signature: ea858177828b71b789a2564d89f64210 ******/ %feature("compactdefaultargs") NewCurve2d; %feature("autodoc", " Parameters @@ -833,8 +833,8 @@ Returns standard_true if the edge has a new curve on surface on the face ") NewCurve2d; Standard_Boolean NewCurve2d(const TopoDS_Edge & E, const TopoDS_Face & F, const TopoDS_Edge & NewE, const TopoDS_Face & NewF, opencascade::handle & C, Standard_Real &OutValue); - /****************** NewParameter ******************/ - /**** md5 signature: e14926b54c8548936ba9a49d140b8da3 ****/ + /****** Draft_Modification::NewParameter ******/ + /****** md5 signature: e14926b54c8548936ba9a49d140b8da3 ******/ %feature("compactdefaultargs") NewParameter; %feature("autodoc", " Parameters @@ -853,8 +853,8 @@ Returns standard_true if the vertex has a new parameter on the edge . in ") NewParameter; Standard_Boolean NewParameter(const TopoDS_Vertex & V, const TopoDS_Edge & E, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** NewPoint ******************/ - /**** md5 signature: 936cfe13f9c774f9038d7f0e2f3e521b ****/ + /****** Draft_Modification::NewPoint ******/ + /****** md5 signature: 936cfe13f9c774f9038d7f0e2f3e521b ******/ %feature("compactdefaultargs") NewPoint; %feature("autodoc", " Parameters @@ -872,8 +872,8 @@ Returns standard_true if the vertex has been modified. in this case,

is ") NewPoint; Standard_Boolean NewPoint(const TopoDS_Vertex & V, gp_Pnt & P, Standard_Real &OutValue); - /****************** NewSurface ******************/ - /**** md5 signature: 001097e1d949f85581f605ce49276ada ****/ + /****** Draft_Modification::NewSurface ******/ + /****** md5 signature: 001097e1d949f85581f605ce49276ada ******/ %feature("compactdefaultargs") NewSurface; %feature("autodoc", " Parameters @@ -894,8 +894,8 @@ Returns standard_true if the face has been modified. in this case, is th ") NewSurface; Standard_Boolean NewSurface(const TopoDS_Face & F, opencascade::handle & S, TopLoc_Location & L, Standard_Real &OutValue, Standard_Boolean &OutValue, Standard_Boolean &OutValue); - /****************** Perform ******************/ - /**** md5 signature: c04b01412cba7220c024b5eb4532697f ****/ + /****** Draft_Modification::Perform ******/ + /****** md5 signature: c04b01412cba7220c024b5eb4532697f ******/ %feature("compactdefaultargs") Perform; %feature("autodoc", "Return ------- @@ -907,8 +907,8 @@ Performs the draft angle modification and sets the value returned by the method ") Perform; void Perform(); - /****************** ProblematicShape ******************/ - /**** md5 signature: 4b993ee84b1645cd4a03936d51cfc6ec ****/ + /****** Draft_Modification::ProblematicShape ******/ + /****** md5 signature: 4b993ee84b1645cd4a03936d51cfc6ec ******/ %feature("compactdefaultargs") ProblematicShape; %feature("autodoc", "Return ------- @@ -920,8 +920,8 @@ Returns the shape (face, edge or vertex) on which an error occurred. ") ProblematicShape; const TopoDS_Shape ProblematicShape(); - /****************** Remove ******************/ - /**** md5 signature: 2dda97e74bdcd077a8ecce9d227e7fa7 ****/ + /****** Draft_Modification::Remove ******/ + /****** md5 signature: 2dda97e74bdcd077a8ecce9d227e7fa7 ******/ %feature("compactdefaultargs") Remove; %feature("autodoc", " Parameters @@ -954,8 +954,8 @@ Removes the face f and the neighbour faces if they are tangent. it will be neces *************************/ class Draft_VertexInfo { public: - /****************** Draft_VertexInfo ******************/ - /**** md5 signature: 30edb4a202df1c872899ce3a030bfa34 ****/ + /****** Draft_VertexInfo::Draft_VertexInfo ******/ + /****** md5 signature: 30edb4a202df1c872899ce3a030bfa34 ******/ %feature("compactdefaultargs") Draft_VertexInfo; %feature("autodoc", "Return ------- @@ -967,8 +967,8 @@ No available documentation. ") Draft_VertexInfo; Draft_VertexInfo(); - /****************** Add ******************/ - /**** md5 signature: 2689ece383041802da1cd80a0167e44a ****/ + /****** Draft_VertexInfo::Add ******/ + /****** md5 signature: 2689ece383041802da1cd80a0167e44a ******/ %feature("compactdefaultargs") Add; %feature("autodoc", " Parameters @@ -985,8 +985,8 @@ No available documentation. ") Add; void Add(const TopoDS_Edge & E); - /****************** ChangeGeometry ******************/ - /**** md5 signature: 6b1487abcc29a2eb7c668f853e2ca436 ****/ + /****** Draft_VertexInfo::ChangeGeometry ******/ + /****** md5 signature: 6b1487abcc29a2eb7c668f853e2ca436 ******/ %feature("compactdefaultargs") ChangeGeometry; %feature("autodoc", "Return ------- @@ -1011,8 +1011,8 @@ No available documentation. $self->ChangeParameter(E)=value; } }; - /****************** Edge ******************/ - /**** md5 signature: be590cff987799d8b7c28083399d0e9f ****/ + /****** Draft_VertexInfo::Edge ******/ + /****** md5 signature: be590cff987799d8b7c28083399d0e9f ******/ %feature("compactdefaultargs") Edge; %feature("autodoc", "Return ------- @@ -1024,8 +1024,8 @@ No available documentation. ") Edge; const TopoDS_Edge Edge(); - /****************** Geometry ******************/ - /**** md5 signature: 98a4d8790fc14c68177e7e159ed08a37 ****/ + /****** Draft_VertexInfo::Geometry ******/ + /****** md5 signature: 98a4d8790fc14c68177e7e159ed08a37 ******/ %feature("compactdefaultargs") Geometry; %feature("autodoc", "Return ------- @@ -1037,8 +1037,8 @@ No available documentation. ") Geometry; const gp_Pnt Geometry(); - /****************** InitEdgeIterator ******************/ - /**** md5 signature: 33903e2afb34dc5222bb42326d13a964 ****/ + /****** Draft_VertexInfo::InitEdgeIterator ******/ + /****** md5 signature: 33903e2afb34dc5222bb42326d13a964 ******/ %feature("compactdefaultargs") InitEdgeIterator; %feature("autodoc", "Return ------- @@ -1050,8 +1050,8 @@ No available documentation. ") InitEdgeIterator; void InitEdgeIterator(); - /****************** MoreEdge ******************/ - /**** md5 signature: 3deabda73e93b20e8a72f2f0ebea4e02 ****/ + /****** Draft_VertexInfo::MoreEdge ******/ + /****** md5 signature: 3deabda73e93b20e8a72f2f0ebea4e02 ******/ %feature("compactdefaultargs") MoreEdge; %feature("autodoc", "Return ------- @@ -1063,8 +1063,8 @@ No available documentation. ") MoreEdge; Standard_Boolean MoreEdge(); - /****************** NextEdge ******************/ - /**** md5 signature: 8103c946a7f7c0a3d885514a8a740502 ****/ + /****** Draft_VertexInfo::NextEdge ******/ + /****** md5 signature: 8103c946a7f7c0a3d885514a8a740502 ******/ %feature("compactdefaultargs") NextEdge; %feature("autodoc", "Return ------- @@ -1076,8 +1076,8 @@ No available documentation. ") NextEdge; void NextEdge(); - /****************** Parameter ******************/ - /**** md5 signature: 3f70b30d659d0fce4ed446c734d378ee ****/ + /****** Draft_VertexInfo::Parameter ******/ + /****** md5 signature: 3f70b30d659d0fce4ed446c734d378ee ******/ %feature("compactdefaultargs") Parameter; %feature("autodoc", " Parameters diff --git a/src/SWIG_files/wrapper/DsgPrs.i b/src/SWIG_files/wrapper/DsgPrs.i index a2206938d..ea94a21e1 100644 --- a/src/SWIG_files/wrapper/DsgPrs.i +++ b/src/SWIG_files/wrapper/DsgPrs.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define DSGPRSDOCSTRING "DsgPrs module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_dsgprs.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_dsgprs.html" %enddef %module (package="OCC.Core", docstring=DSGPRSDOCSTRING) DsgPrs diff --git a/src/SWIG_files/wrapper/ElCLib.i b/src/SWIG_files/wrapper/ElCLib.i index 64eb3371f..c6b3fba48 100644 --- a/src/SWIG_files/wrapper/ElCLib.i +++ b/src/SWIG_files/wrapper/ElCLib.i @@ -17,7 +17,7 @@ along with pythonOCC. If not, see . */ %define ELCLIBDOCSTRING "ElCLib module, see official documentation at -https://dev.opencascade.org/doc/occt-7.7.0/refman/html/package_elclib.html" +https://dev.opencascade.org/doc/occt-7.8.0/refman/html/package_elclib.html" %enddef %module (package="OCC.Core", docstring=ELCLIBDOCSTRING) ElCLib @@ -82,8 +82,8 @@ from OCC.Core.Exception import * %rename(elclib) ElCLib; class ElCLib { public: - /****************** AdjustPeriodic ******************/ - /**** md5 signature: 7e4e736e11484939c8dff18f732b6618 ****/ + /****** ElCLib::AdjustPeriodic ******/ + /****** md5 signature: 7e4e736e11484939c8dff18f732b6618 ******/ %feature("compactdefaultargs") AdjustPeriodic; %feature("autodoc", " Parameters @@ -103,8 +103,8 @@ Adjust u1 and u2 in the parametric range ufirst ulast of a periodic curve, where ") AdjustPeriodic; static void AdjustPeriodic(const Standard_Real UFirst, const Standard_Real ULast, const Standard_Real Precision, Standard_Real &OutValue, Standard_Real &OutValue); - /****************** CircleD1 ******************/ - /**** md5 signature: 1732223aff472369d5a24b4ce7e8c1b2 ****/ + /****** ElCLib::CircleD1 ******/ + /****** md5 signature: 1732223aff472369d5a24b4ce7e8c1b2 ******/ %feature("compactdefaultargs") CircleD1; %feature("autodoc", " Parameters @@ -125,8 +125,8 @@ No available documentation. ") CircleD1; static void CircleD1(const Standard_Real U, const gp_Ax2 & Pos, const Standard_Real Radius, gp_Pnt & P, gp_Vec & V1); - /****************** CircleD1 ******************/ - /**** md5 signature: 6044b15cc56f7cdb76cf5e9f3221b800 ****/ + /****** ElCLib::CircleD1 ******/ + /****** md5 signature: 6044b15cc56f7cdb76cf5e9f3221b800 ******/ %feature("compactdefaultargs") CircleD1; %feature("autodoc", " Parameters @@ -147,8 +147,8 @@ No available documentation. ") CircleD1; static void CircleD1(const Standard_Real U, const gp_Ax22d & Pos, const Standard_Real Radius, gp_Pnt2d & P, gp_Vec2d & V1); - /****************** CircleD2 ******************/ - /**** md5 signature: 061f949b4f38b316133e8a7030c1979a ****/ + /****** ElCLib::CircleD2 ******/ + /****** md5 signature: 061f949b4f38b316133e8a7030c1979a ******/ %feature("compactdefaultargs") CircleD2; %feature("autodoc", " Parameters @@ -170,8 +170,8 @@ No available documentation. ") CircleD2; static void CircleD2(const Standard_Real U, const gp_Ax2 & Pos, const Standard_Real Radius, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2); - /****************** CircleD2 ******************/ - /**** md5 signature: 94490ed36a73babf84f582d37201ac87 ****/ + /****** ElCLib::CircleD2 ******/ + /****** md5 signature: 94490ed36a73babf84f582d37201ac87 ******/ %feature("compactdefaultargs") CircleD2; %feature("autodoc", " Parameters @@ -193,8 +193,8 @@ No available documentation. ") CircleD2; static void CircleD2(const Standard_Real U, const gp_Ax22d & Pos, const Standard_Real Radius, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2); - /****************** CircleD3 ******************/ - /**** md5 signature: 6e27ee9ae6fd48002ff421549b3557ae ****/ + /****** ElCLib::CircleD3 ******/ + /****** md5 signature: 6e27ee9ae6fd48002ff421549b3557ae ******/ %feature("compactdefaultargs") CircleD3; %feature("autodoc", " Parameters @@ -217,8 +217,8 @@ No available documentation. ") CircleD3; static void CircleD3(const Standard_Real U, const gp_Ax2 & Pos, const Standard_Real Radius, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2, gp_Vec & V3); - /****************** CircleD3 ******************/ - /**** md5 signature: abdeacc35ed48e6fde962dc0dceb8902 ****/ + /****** ElCLib::CircleD3 ******/ + /****** md5 signature: abdeacc35ed48e6fde962dc0dceb8902 ******/ %feature("compactdefaultargs") CircleD3; %feature("autodoc", " Parameters @@ -241,8 +241,8 @@ No available documentation. ") CircleD3; static void CircleD3(const Standard_Real U, const gp_Ax22d & Pos, const Standard_Real Radius, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2, gp_Vec2d & V3); - /****************** CircleDN ******************/ - /**** md5 signature: 5c8adfb9e6b9466f039573c51d124f27 ****/ + /****** ElCLib::CircleDN ******/ + /****** md5 signature: 5c8adfb9e6b9466f039573c51d124f27 ******/ %feature("compactdefaultargs") CircleDN; %feature("autodoc", " Parameters @@ -262,8 +262,8 @@ No available documentation. ") CircleDN; static gp_Vec CircleDN(const Standard_Real U, const gp_Ax2 & Pos, const Standard_Real Radius, const Standard_Integer N); - /****************** CircleDN ******************/ - /**** md5 signature: 7d799cf3237462c7e93916f300ba5a96 ****/ + /****** ElCLib::CircleDN ******/ + /****** md5 signature: 7d799cf3237462c7e93916f300ba5a96 ******/ %feature("compactdefaultargs") CircleDN; %feature("autodoc", " Parameters @@ -283,8 +283,8 @@ No available documentation. ") CircleDN; static gp_Vec2d CircleDN(const Standard_Real U, const gp_Ax22d & Pos, const Standard_Real Radius, const Standard_Integer N); - /****************** CircleParameter ******************/ - /**** md5 signature: 26a6c62dffefcf8a3d41e5df4c618fb4 ****/ + /****** ElCLib::CircleParameter ******/ + /****** md5 signature: 26a6c62dffefcf8a3d41e5df4c618fb4 ******/ %feature("compactdefaultargs") CircleParameter; %feature("autodoc", " Parameters @@ -302,8 +302,8 @@ No available documentation. ") CircleParameter; static Standard_Real CircleParameter(const gp_Ax2 & Pos, const gp_Pnt & P); - /****************** CircleParameter ******************/ - /**** md5 signature: ba68b13a794fae7ac895861855220d57 ****/ + /****** ElCLib::CircleParameter ******/ + /****** md5 signature: ba68b13a794fae7ac895861855220d57 ******/ %feature("compactdefaultargs") CircleParameter; %feature("autodoc", " Parameters @@ -321,8 +321,8 @@ Pos is the axis of the circle parametrization in the local coordinate system of ") CircleParameter; static Standard_Real CircleParameter(const gp_Ax22d & Pos, const gp_Pnt2d & P); - /****************** CircleValue ******************/ - /**** md5 signature: f1c4f3dd63490877f61a734b1473fd15 ****/ + /****** ElCLib::CircleValue ******/ + /****** md5 signature: f1c4f3dd63490877f61a734b1473fd15 ******/ %feature("compactdefaultargs") CircleValue; %feature("autodoc", " Parameters @@ -341,8 +341,8 @@ No available documentation. ") CircleValue; static gp_Pnt CircleValue(const Standard_Real U, const gp_Ax2 & Pos, const Standard_Real Radius); - /****************** CircleValue ******************/ - /**** md5 signature: a254ad35f2d5ff777499e60061cecbf0 ****/ + /****** ElCLib::CircleValue ******/ + /****** md5 signature: a254ad35f2d5ff777499e60061cecbf0 ******/ %feature("compactdefaultargs") CircleValue; %feature("autodoc", " Parameters @@ -361,8 +361,8 @@ No available documentation. ") CircleValue; static gp_Pnt2d CircleValue(const Standard_Real U, const gp_Ax22d & Pos, const Standard_Real Radius); - /****************** D1 ******************/ - /**** md5 signature: 2348e372c613ae0b91de8a60ff4c1d96 ****/ + /****** ElCLib::D1 ******/ + /****** md5 signature: 2348e372c613ae0b91de8a60ff4c1d96 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -382,8 +382,8 @@ For elementary curves (lines, circles and conics) from the gp package, computes: ") D1; static void D1(const Standard_Real U, const gp_Lin & L, gp_Pnt & P, gp_Vec & V1); - /****************** D1 ******************/ - /**** md5 signature: 5764c3935590a35e746844167678c383 ****/ + /****** ElCLib::D1 ******/ + /****** md5 signature: 5764c3935590a35e746844167678c383 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -403,8 +403,8 @@ No available documentation. ") D1; static void D1(const Standard_Real U, const gp_Circ & C, gp_Pnt & P, gp_Vec & V1); - /****************** D1 ******************/ - /**** md5 signature: 5aa41c2b42fa990f167d06b62da72a60 ****/ + /****** ElCLib::D1 ******/ + /****** md5 signature: 5aa41c2b42fa990f167d06b62da72a60 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -424,8 +424,8 @@ No available documentation. ") D1; static void D1(const Standard_Real U, const gp_Elips & E, gp_Pnt & P, gp_Vec & V1); - /****************** D1 ******************/ - /**** md5 signature: f33366e613106b45ca1fa0b63ec1a193 ****/ + /****** ElCLib::D1 ******/ + /****** md5 signature: f33366e613106b45ca1fa0b63ec1a193 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -445,8 +445,8 @@ No available documentation. ") D1; static void D1(const Standard_Real U, const gp_Hypr & H, gp_Pnt & P, gp_Vec & V1); - /****************** D1 ******************/ - /**** md5 signature: bcd87a30e4fb1b4185175041d43b84b4 ****/ + /****** ElCLib::D1 ******/ + /****** md5 signature: bcd87a30e4fb1b4185175041d43b84b4 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -466,8 +466,8 @@ No available documentation. ") D1; static void D1(const Standard_Real U, const gp_Parab & Prb, gp_Pnt & P, gp_Vec & V1); - /****************** D1 ******************/ - /**** md5 signature: 5e08453e4d72f76c239039b9fcf805af ****/ + /****** ElCLib::D1 ******/ + /****** md5 signature: 5e08453e4d72f76c239039b9fcf805af ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -487,8 +487,8 @@ No available documentation. ") D1; static void D1(const Standard_Real U, const gp_Lin2d & L, gp_Pnt2d & P, gp_Vec2d & V1); - /****************** D1 ******************/ - /**** md5 signature: cb123a1582eec6ad30ae203aa5b3dd5b ****/ + /****** ElCLib::D1 ******/ + /****** md5 signature: cb123a1582eec6ad30ae203aa5b3dd5b ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -508,8 +508,8 @@ No available documentation. ") D1; static void D1(const Standard_Real U, const gp_Circ2d & C, gp_Pnt2d & P, gp_Vec2d & V1); - /****************** D1 ******************/ - /**** md5 signature: 50be3a7f16ec4ee1e8cb046024b4e091 ****/ + /****** ElCLib::D1 ******/ + /****** md5 signature: 50be3a7f16ec4ee1e8cb046024b4e091 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -529,8 +529,8 @@ No available documentation. ") D1; static void D1(const Standard_Real U, const gp_Elips2d & E, gp_Pnt2d & P, gp_Vec2d & V1); - /****************** D1 ******************/ - /**** md5 signature: 2c1cb396fe733147144fdabd58e5b9b8 ****/ + /****** ElCLib::D1 ******/ + /****** md5 signature: 2c1cb396fe733147144fdabd58e5b9b8 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -550,8 +550,8 @@ No available documentation. ") D1; static void D1(const Standard_Real U, const gp_Hypr2d & H, gp_Pnt2d & P, gp_Vec2d & V1); - /****************** D1 ******************/ - /**** md5 signature: e3323af4d4584a4719fee23df6a2cfd1 ****/ + /****** ElCLib::D1 ******/ + /****** md5 signature: e3323af4d4584a4719fee23df6a2cfd1 ******/ %feature("compactdefaultargs") D1; %feature("autodoc", " Parameters @@ -571,8 +571,8 @@ No available documentation. ") D1; static void D1(const Standard_Real U, const gp_Parab2d & Prb, gp_Pnt2d & P, gp_Vec2d & V1); - /****************** D2 ******************/ - /**** md5 signature: f220a759c5390f272acbdf7473bf89c5 ****/ + /****** ElCLib::D2 ******/ + /****** md5 signature: f220a759c5390f272acbdf7473bf89c5 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -593,8 +593,8 @@ For elementary curves (circles and conics) from the gp package, computes: - the ") D2; static void D2(const Standard_Real U, const gp_Circ & C, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2); - /****************** D2 ******************/ - /**** md5 signature: 9f99502ea2bb4230feece4e7519388eb ****/ + /****** ElCLib::D2 ******/ + /****** md5 signature: 9f99502ea2bb4230feece4e7519388eb ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -615,8 +615,8 @@ No available documentation. ") D2; static void D2(const Standard_Real U, const gp_Elips & E, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2); - /****************** D2 ******************/ - /**** md5 signature: ae81bfd7063ec89ba29dedd16adfa97c ****/ + /****** ElCLib::D2 ******/ + /****** md5 signature: ae81bfd7063ec89ba29dedd16adfa97c ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -637,8 +637,8 @@ No available documentation. ") D2; static void D2(const Standard_Real U, const gp_Hypr & H, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2); - /****************** D2 ******************/ - /**** md5 signature: af24c765387cb94b2673a43c40a395f3 ****/ + /****** ElCLib::D2 ******/ + /****** md5 signature: af24c765387cb94b2673a43c40a395f3 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -659,8 +659,8 @@ No available documentation. ") D2; static void D2(const Standard_Real U, const gp_Parab & Prb, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2); - /****************** D2 ******************/ - /**** md5 signature: b71866e4b68be26ce3861d909a3db5ab ****/ + /****** ElCLib::D2 ******/ + /****** md5 signature: b71866e4b68be26ce3861d909a3db5ab ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -681,8 +681,8 @@ No available documentation. ") D2; static void D2(const Standard_Real U, const gp_Circ2d & C, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2); - /****************** D2 ******************/ - /**** md5 signature: ef9a85e18324dde449ab962fe75d0de0 ****/ + /****** ElCLib::D2 ******/ + /****** md5 signature: ef9a85e18324dde449ab962fe75d0de0 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -703,8 +703,8 @@ No available documentation. ") D2; static void D2(const Standard_Real U, const gp_Elips2d & E, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2); - /****************** D2 ******************/ - /**** md5 signature: 7e73a41bf37e135bd7dcd253f7c005f5 ****/ + /****** ElCLib::D2 ******/ + /****** md5 signature: 7e73a41bf37e135bd7dcd253f7c005f5 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -725,8 +725,8 @@ No available documentation. ") D2; static void D2(const Standard_Real U, const gp_Hypr2d & H, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2); - /****************** D2 ******************/ - /**** md5 signature: c574c1139e0e7d2678634d07213fd831 ****/ + /****** ElCLib::D2 ******/ + /****** md5 signature: c574c1139e0e7d2678634d07213fd831 ******/ %feature("compactdefaultargs") D2; %feature("autodoc", " Parameters @@ -747,8 +747,8 @@ No available documentation. ") D2; static void D2(const Standard_Real U, const gp_Parab2d & Prb, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2); - /****************** D3 ******************/ - /**** md5 signature: 88a0f31d8d88acd9379427f8056f536e ****/ + /****** ElCLib::D3 ******/ + /****** md5 signature: 88a0f31d8d88acd9379427f8056f536e ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -770,8 +770,8 @@ For elementary curves (circles, ellipses and hyperbolae) from the gp package, co ") D3; static void D3(const Standard_Real U, const gp_Circ & C, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2, gp_Vec & V3); - /****************** D3 ******************/ - /**** md5 signature: 3f664f004eb6420555d34db3336d8ffc ****/ + /****** ElCLib::D3 ******/ + /****** md5 signature: 3f664f004eb6420555d34db3336d8ffc ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -793,8 +793,8 @@ No available documentation. ") D3; static void D3(const Standard_Real U, const gp_Elips & E, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2, gp_Vec & V3); - /****************** D3 ******************/ - /**** md5 signature: bf8de95ac722e89f12108e313766c3ca ****/ + /****** ElCLib::D3 ******/ + /****** md5 signature: bf8de95ac722e89f12108e313766c3ca ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -816,8 +816,8 @@ No available documentation. ") D3; static void D3(const Standard_Real U, const gp_Hypr & H, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2, gp_Vec & V3); - /****************** D3 ******************/ - /**** md5 signature: 1ed246904267606ef73603a752190250 ****/ + /****** ElCLib::D3 ******/ + /****** md5 signature: 1ed246904267606ef73603a752190250 ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -839,8 +839,8 @@ No available documentation. ") D3; static void D3(const Standard_Real U, const gp_Circ2d & C, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2, gp_Vec2d & V3); - /****************** D3 ******************/ - /**** md5 signature: f364e91b0c7b85480d4dc2f59acb2ef4 ****/ + /****** ElCLib::D3 ******/ + /****** md5 signature: f364e91b0c7b85480d4dc2f59acb2ef4 ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -862,8 +862,8 @@ No available documentation. ") D3; static void D3(const Standard_Real U, const gp_Elips2d & E, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2, gp_Vec2d & V3); - /****************** D3 ******************/ - /**** md5 signature: 6f375725aae2577b37e04467cea54a5c ****/ + /****** ElCLib::D3 ******/ + /****** md5 signature: 6f375725aae2577b37e04467cea54a5c ******/ %feature("compactdefaultargs") D3; %feature("autodoc", " Parameters @@ -885,8 +885,8 @@ In the following functions n is the order of derivation and should be greater th ") D3; static void D3(const Standard_Real U, const gp_Hypr2d & H, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2, gp_Vec2d & V3); - /****************** DN ******************/ - /**** md5 signature: 906dd97634ae8e18db20f8c3ba953acb ****/ + /****** ElCLib::DN ******/ + /****** md5 signature: 906dd97634ae8e18db20f8c3ba953acb ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -905,8 +905,8 @@ For elementary curves (lines, circles and conics) from the gp package, computes ") DN; static gp_Vec DN(const Standard_Real U, const gp_Lin & L, const Standard_Integer N); - /****************** DN ******************/ - /**** md5 signature: 47f8242822c8cea0c08c698c6bbcdfe3 ****/ + /****** ElCLib::DN ******/ + /****** md5 signature: 47f8242822c8cea0c08c698c6bbcdfe3 ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -925,8 +925,8 @@ No available documentation. ") DN; static gp_Vec DN(const Standard_Real U, const gp_Circ & C, const Standard_Integer N); - /****************** DN ******************/ - /**** md5 signature: 5a6acea0b3373b42b9c4e893f6261cba ****/ + /****** ElCLib::DN ******/ + /****** md5 signature: 5a6acea0b3373b42b9c4e893f6261cba ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -945,8 +945,8 @@ No available documentation. ") DN; static gp_Vec DN(const Standard_Real U, const gp_Elips & E, const Standard_Integer N); - /****************** DN ******************/ - /**** md5 signature: 49583a74ba80488d4c4ad2e6926b78df ****/ + /****** ElCLib::DN ******/ + /****** md5 signature: 49583a74ba80488d4c4ad2e6926b78df ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -965,8 +965,8 @@ No available documentation. ") DN; static gp_Vec DN(const Standard_Real U, const gp_Hypr & H, const Standard_Integer N); - /****************** DN ******************/ - /**** md5 signature: 903db7d628a4fcb02e293930cab55cbd ****/ + /****** ElCLib::DN ******/ + /****** md5 signature: 903db7d628a4fcb02e293930cab55cbd ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -985,8 +985,8 @@ No available documentation. ") DN; static gp_Vec DN(const Standard_Real U, const gp_Parab & Prb, const Standard_Integer N); - /****************** DN ******************/ - /**** md5 signature: 17e6278397b957ffc39900585a83f3d3 ****/ + /****** ElCLib::DN ******/ + /****** md5 signature: 17e6278397b957ffc39900585a83f3d3 ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -1005,8 +1005,8 @@ No available documentation. ") DN; static gp_Vec2d DN(const Standard_Real U, const gp_Lin2d & L, const Standard_Integer N); - /****************** DN ******************/ - /**** md5 signature: 1a4ae9e4518239fc3f7b2739e72360c5 ****/ + /****** ElCLib::DN ******/ + /****** md5 signature: 1a4ae9e4518239fc3f7b2739e72360c5 ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -1025,8 +1025,8 @@ No available documentation. ") DN; static gp_Vec2d DN(const Standard_Real U, const gp_Circ2d & C, const Standard_Integer N); - /****************** DN ******************/ - /**** md5 signature: 8112c6ea5074c210244d783558f657af ****/ + /****** ElCLib::DN ******/ + /****** md5 signature: 8112c6ea5074c210244d783558f657af ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -1045,8 +1045,8 @@ No available documentation. ") DN; static gp_Vec2d DN(const Standard_Real U, const gp_Elips2d & E, const Standard_Integer N); - /****************** DN ******************/ - /**** md5 signature: 0f4adb9b37809fe774928577eacfadd4 ****/ + /****** ElCLib::DN ******/ + /****** md5 signature: 0f4adb9b37809fe774928577eacfadd4 ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -1065,8 +1065,8 @@ No available documentation. ") DN; static gp_Vec2d DN(const Standard_Real U, const gp_Hypr2d & H, const Standard_Integer N); - /****************** DN ******************/ - /**** md5 signature: e67031172b84f3a3b132c1cfa1e007a5 ****/ + /****** ElCLib::DN ******/ + /****** md5 signature: e67031172b84f3a3b132c1cfa1e007a5 ******/ %feature("compactdefaultargs") DN; %feature("autodoc", " Parameters @@ -1085,8 +1085,8 @@ No available documentation. ") DN; static gp_Vec2d DN(const Standard_Real U, const gp_Parab2d & Prb, const Standard_Integer N); - /****************** EllipseD1 ******************/ - /**** md5 signature: 6593b6832008eb1e08ba875629ec6f2d ****/ + /****** ElCLib::EllipseD1 ******/ + /****** md5 signature: 6593b6832008eb1e08ba875629ec6f2d ******/ %feature("compactdefaultargs") EllipseD1; %feature("autodoc", " Parameters @@ -1108,8 +1108,8 @@ No available documentation. ") EllipseD1; static void EllipseD1(const Standard_Real U, const gp_Ax2 & Pos, const Standard_Real MajorRadius, const Standard_Real MinorRadius, gp_Pnt & P, gp_Vec & V1); - /****************** EllipseD1 ******************/ - /**** md5 signature: 093400b65d5ddd2d995df1f71658bd2f ****/ + /****** ElCLib::EllipseD1 ******/ + /****** md5 signature: 093400b65d5ddd2d995df1f71658bd2f ******/ %feature("compactdefaultargs") EllipseD1; %feature("autodoc", " Parameters @@ -1131,8 +1131,8 @@ No available documentation. ") EllipseD1; static void EllipseD1(const Standard_Real U, const gp_Ax22d & Pos, const Standard_Real MajorRadius, const Standard_Real MinorRadius, gp_Pnt2d & P, gp_Vec2d & V1); - /****************** EllipseD2 ******************/ - /**** md5 signature: 94e6352d82f5a718596085ae6192b0f4 ****/ + /****** ElCLib::EllipseD2 ******/ + /****** md5 signature: 94e6352d82f5a718596085ae6192b0f4 ******/ %feature("compactdefaultargs") EllipseD2; %feature("autodoc", " Parameters @@ -1155,8 +1155,8 @@ No available documentation. ") EllipseD2; static void EllipseD2(const Standard_Real U, const gp_Ax2 & Pos, const Standard_Real MajorRadius, const Standard_Real MinorRadius, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2); - /****************** EllipseD2 ******************/ - /**** md5 signature: f1ac8bac2488b01be483ca73b4d96525 ****/ + /****** ElCLib::EllipseD2 ******/ + /****** md5 signature: f1ac8bac2488b01be483ca73b4d96525 ******/ %feature("compactdefaultargs") EllipseD2; %feature("autodoc", " Parameters @@ -1179,8 +1179,8 @@ No available documentation. ") EllipseD2; static void EllipseD2(const Standard_Real U, const gp_Ax22d & Pos, const Standard_Real MajorRadius, const Standard_Real MinorRadius, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2); - /****************** EllipseD3 ******************/ - /**** md5 signature: a8d0a37bfdd61c8132ad02bcd42abf97 ****/ + /****** ElCLib::EllipseD3 ******/ + /****** md5 signature: a8d0a37bfdd61c8132ad02bcd42abf97 ******/ %feature("compactdefaultargs") EllipseD3; %feature("autodoc", " Parameters @@ -1204,8 +1204,8 @@ No available documentation. ") EllipseD3; static void EllipseD3(const Standard_Real U, const gp_Ax2 & Pos, const Standard_Real MajorRadius, const Standard_Real MinorRadius, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2, gp_Vec & V3); - /****************** EllipseD3 ******************/ - /**** md5 signature: bdd32b73f0c9829834faf35dd0229e32 ****/ + /****** ElCLib::EllipseD3 ******/ + /****** md5 signature: bdd32b73f0c9829834faf35dd0229e32 ******/ %feature("compactdefaultargs") EllipseD3; %feature("autodoc", " Parameters @@ -1229,8 +1229,8 @@ No available documentation. ") EllipseD3; static void EllipseD3(const Standard_Real U, const gp_Ax22d & Pos, const Standard_Real MajorRadius, const Standard_Real MinorRadius, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2, gp_Vec2d & V3); - /****************** EllipseDN ******************/ - /**** md5 signature: f8970908a0d6bbf296e004aee7c8dd5f ****/ + /****** ElCLib::EllipseDN ******/ + /****** md5 signature: f8970908a0d6bbf296e004aee7c8dd5f ******/ %feature("compactdefaultargs") EllipseDN; %feature("autodoc", " Parameters @@ -1251,8 +1251,8 @@ No available documentation. ") EllipseDN; static gp_Vec EllipseDN(const Standard_Real U, const gp_Ax2 & Pos, const Standard_Real MajorRadius, const Standard_Real MinorRadius, const Standard_Integer N); - /****************** EllipseDN ******************/ - /**** md5 signature: fa95cba3bb71049e0dbda3c5897cf3f7 ****/ + /****** ElCLib::EllipseDN ******/ + /****** md5 signature: fa95cba3bb71049e0dbda3c5897cf3f7 ******/ %feature("compactdefaultargs") EllipseDN; %feature("autodoc", " Parameters @@ -1273,8 +1273,8 @@ No available documentation. ") EllipseDN; static gp_Vec2d EllipseDN(const Standard_Real U, const gp_Ax22d & Pos, const Standard_Real MajorRadius, const Standard_Real MinorRadius, const Standard_Integer N); - /****************** EllipseParameter ******************/ - /**** md5 signature: 7ea0af8a159007b224c805cd6b2750fb ****/ + /****** ElCLib::EllipseParameter ******/ + /****** md5 signature: 7ea0af8a159007b224c805cd6b2750fb ******/ %feature("compactdefaultargs") EllipseParameter; %feature("autodoc", " Parameters @@ -1294,8 +1294,8 @@ No available documentation. ") EllipseParameter; static Standard_Real EllipseParameter(const gp_Ax2 & Pos, const Standard_Real MajorRadius, const Standard_Real MinorRadius, const gp_Pnt & P); - /****************** EllipseParameter ******************/ - /**** md5 signature: 9adc5af57d198107ea118e0a5118ff8b ****/ + /****** ElCLib::EllipseParameter ******/ + /****** md5 signature: 9adc5af57d198107ea118e0a5118ff8b ******/ %feature("compactdefaultargs") EllipseParameter; %feature("autodoc", " Parameters @@ -1315,8 +1315,8 @@ Pos is the axis of the ellipse parametrization in the local coordinate system of ") EllipseParameter; static Standard_Real EllipseParameter(const gp_Ax22d & Pos, const Standard_Real MajorRadius, const Standard_Real MinorRadius, const gp_Pnt2d & P); - /****************** EllipseValue ******************/ - /**** md5 signature: d54582fecc06252f293f1a1e61001a89 ****/ + /****** ElCLib::EllipseValue ******/ + /****** md5 signature: d54582fecc06252f293f1a1e61001a89 ******/ %feature("compactdefaultargs") EllipseValue; %feature("autodoc", " Parameters @@ -1336,8 +1336,8 @@ No available documentation. ") EllipseValue; static gp_Pnt EllipseValue(const Standard_Real U, const gp_Ax2 & Pos, const Standard_Real MajorRadius, const Standard_Real MinorRadius); - /****************** EllipseValue ******************/ - /**** md5 signature: fa1d15069b68a59764b437be76d05088 ****/ + /****** ElCLib::EllipseValue ******/ + /****** md5 signature: fa1d15069b68a59764b437be76d05088 ******/ %feature("compactdefaultargs") EllipseValue; %feature("autodoc", " Parameters @@ -1357,8 +1357,8 @@ No available documentation. ") EllipseValue; static gp_Pnt2d EllipseValue(const Standard_Real U, const gp_Ax22d & Pos, const Standard_Real MajorRadius, const Standard_Real MinorRadius); - /****************** HyperbolaD1 ******************/ - /**** md5 signature: 033ede559cba6ac21a9fef26462ef8f3 ****/ + /****** ElCLib::HyperbolaD1 ******/ + /****** md5 signature: 033ede559cba6ac21a9fef26462ef8f3 ******/ %feature("compactdefaultargs") HyperbolaD1; %feature("autodoc", " Parameters @@ -1380,8 +1380,8 @@ No available documentation. ") HyperbolaD1; static void HyperbolaD1(const Standard_Real U, const gp_Ax2 & Pos, const Standard_Real MajorRadius, const Standard_Real MinorRadius, gp_Pnt & P, gp_Vec & V1); - /****************** HyperbolaD1 ******************/ - /**** md5 signature: 3a363cda94c2cd01407e26d1c78ade9f ****/ + /****** ElCLib::HyperbolaD1 ******/ + /****** md5 signature: 3a363cda94c2cd01407e26d1c78ade9f ******/ %feature("compactdefaultargs") HyperbolaD1; %feature("autodoc", " Parameters @@ -1403,8 +1403,8 @@ No available documentation. ") HyperbolaD1; static void HyperbolaD1(const Standard_Real U, const gp_Ax22d & Pos, const Standard_Real MajorRadius, const Standard_Real MinorRadius, gp_Pnt2d & P, gp_Vec2d & V1); - /****************** HyperbolaD2 ******************/ - /**** md5 signature: 03a91b782355142e9ddd64b2e17c1677 ****/ + /****** ElCLib::HyperbolaD2 ******/ + /****** md5 signature: 03a91b782355142e9ddd64b2e17c1677 ******/ %feature("compactdefaultargs") HyperbolaD2; %feature("autodoc", " Parameters @@ -1427,8 +1427,8 @@ No available documentation. ") HyperbolaD2; static void HyperbolaD2(const Standard_Real U, const gp_Ax2 & Pos, const Standard_Real MajorRadius, const Standard_Real MinorRadius, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2); - /****************** HyperbolaD2 ******************/ - /**** md5 signature: b2e405bb7c4b37e6d87915716f83a4e8 ****/ + /****** ElCLib::HyperbolaD2 ******/ + /****** md5 signature: b2e405bb7c4b37e6d87915716f83a4e8 ******/ %feature("compactdefaultargs") HyperbolaD2; %feature("autodoc", " Parameters @@ -1451,8 +1451,8 @@ No available documentation. ") HyperbolaD2; static void HyperbolaD2(const Standard_Real U, const gp_Ax22d & Pos, const Standard_Real MajorRadius, const Standard_Real MinorRadius, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2); - /****************** HyperbolaD3 ******************/ - /**** md5 signature: 238469a3dbbc424fea9a1937c9e00668 ****/ + /****** ElCLib::HyperbolaD3 ******/ + /****** md5 signature: 238469a3dbbc424fea9a1937c9e00668 ******/ %feature("compactdefaultargs") HyperbolaD3; %feature("autodoc", " Parameters @@ -1476,8 +1476,8 @@ No available documentation. ") HyperbolaD3; static void HyperbolaD3(const Standard_Real U, const gp_Ax2 & Pos, const Standard_Real MajorRadius, const Standard_Real MinorRadius, gp_Pnt & P, gp_Vec & V1, gp_Vec & V2, gp_Vec & V3); - /****************** HyperbolaD3 ******************/ - /**** md5 signature: b906249598c170d7267f6ac98714d87f ****/ + /****** ElCLib::HyperbolaD3 ******/ + /****** md5 signature: b906249598c170d7267f6ac98714d87f ******/ %feature("compactdefaultargs") HyperbolaD3; %feature("autodoc", " Parameters @@ -1501,8 +1501,8 @@ In the following functions n is the order of derivation and should be greater th ") HyperbolaD3; static void HyperbolaD3(const Standard_Real U, const gp_Ax22d & Pos, const Standard_Real MajorRadius, const Standard_Real MinorRadius, gp_Pnt2d & P, gp_Vec2d & V1, gp_Vec2d & V2, gp_Vec2d & V3); - /****************** HyperbolaDN ******************/ - /**** md5 signature: 64606ed51d58295ebd5231b094c367fe ****/ + /****** ElCLib::HyperbolaDN ******/ + /****** md5 signature: 64606ed51d58295ebd5231b094c367fe ******/ %feature("compactdefaultargs") HyperbolaDN; %feature("autodoc", " Parameters @@ -1523,8 +1523,8 @@ No available documentation. ") HyperbolaDN; static gp_Vec HyperbolaDN(const Standard_Real U, const gp_Ax2 & Pos, const Standard_Real MajorRadius, const Standard_Real MinorRadius, const Standard_Integer N); - /****************** HyperbolaDN ******************/ - /**** md5 signature: 3abfa8458baef677bbe28fcc2d8aa4f9 ****/ + /****** ElCLib::HyperbolaDN ******/ + /****** md5 signature: 3abfa8458baef677bbe28fcc2d8aa4f9 ******/ %feature("compactdefaultargs") HyperbolaDN; %feature("autodoc", " Parameters @@ -1545,8 +1545,8 @@ No available documentation. ") HyperbolaDN; static gp_Vec2d HyperbolaDN(const Standard_Real U, const gp_Ax22d & Pos, const Standard_Real MajorRadius, const Standard_Real MinorRadius, const Standard_Integer N); - /****************** HyperbolaParameter ******************/ - /**** md5 signature: 1ac7c151e92a90a9c54f6feecb124b3a ****/ + /****** ElCLib::HyperbolaParameter ******/ + /****** md5 signature: 1ac7c151e92a90a9c54f6feecb124b3a ******/ %feature("compactdefaultargs") HyperbolaParameter; %feature("autodoc", " Parameters @@ -1566,8 +1566,8 @@ No available documentation. ") HyperbolaParameter; static Standard_Real HyperbolaParameter(const gp_Ax2 & Pos, const Standard_Real MajorRadius, const Standard_Real MinorRadius, const gp_Pnt & P); - /****************** HyperbolaParameter ******************/ - /**** md5 signature: 6f3595272e2a586d186798eb561dd223 ****/ + /****** ElCLib::HyperbolaParameter ******/ + /****** md5 signature: 6f3595272e2a586d186798eb561dd223 ******/ %feature("compactdefaultargs") HyperbolaParameter; %feature("autodoc", " Parameters @@ -1587,8 +1587,8 @@ Pos is the axis of the hyperbola parametrization in the local coordinate system ") HyperbolaParameter; static Standard_Real HyperbolaParameter(const gp_Ax22d & Pos, const Standard_Real MajorRadius, const Standard_Real MinorRadius, const gp_Pnt2d & P); - /****************** HyperbolaValue ******************/ - /**** md5 signature: b83b776e2657cd56ddc82e5ef6298410 ****/ + /****** ElCLib::HyperbolaValue ******/ + /****** md5 signature: b83b776e2657cd56ddc82e5ef6298410 ******/ %feature("compactdefaultargs") HyperbolaValue; %feature("autodoc", " Parameters @@ -1608,8 +1608,8 @@ No available documentation. ") HyperbolaValue; static gp_Pnt HyperbolaValue(const Standard_Real U, const gp_Ax2 & Pos, const Standard_Real MajorRadius, const Standard_Real MinorRadius); - /****************** HyperbolaValue ******************/ - /**** md5 signature: c40c27b385ce364d0b3257da8e1ec87a ****/ + /****** ElCLib::HyperbolaValue ******/ + /****** md5 signature: c40c27b385ce364d0b3257da8e1ec87a ******/ %feature("compactdefaultargs") HyperbolaValue; %feature("autodoc", " Parameters @@ -1629,8 +1629,8 @@ No available documentation. ") HyperbolaValue; static gp_Pnt2d HyperbolaValue(const Standard_Real U, const gp_Ax22d & Pos, const Standard_Real MajorRadius, const Standard_Real MinorRadius); - /****************** InPeriod ******************/ - /**** md5 signature: 883a590c13e6d39257033db941d4e702 ****/ + /****** ElCLib::InPeriod ******/ + /****** md5 signature: 883a590c13e6d39257033db941d4e702 ******/ %feature("compactdefaultargs") InPeriod; %feature("autodoc", " Parameters @@ -1649,8 +1649,8 @@ Return a value in the range by adding or removing the period